diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index 4a37c26284..54a518a5ef 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -6,6 +6,8 @@ name: CI
on:
pull_request:
branches: [ main ]
+ push:
+ branches: [ main ]
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
@@ -17,14 +19,14 @@ jobs:
matrix: ${{ steps.set-matrix.outputs.matrix }}
steps:
- name: Checkout code
- uses: actions/checkout@v2
+ uses: actions/checkout@v4
- id: set-matrix
run: |
$obj = @{
languagePack = Get-ChildItem i18n | ForEach-Object Name
}
- Write-Host "::set-output name=matrix::$($obj | ConvertTo-Json -Depth 100 -Compress)"
+ "matrix=$($obj | ConvertTo-Json -Depth 100 -Compress)" >> $env:GITHUB_OUTPUT
shell: pwsh
build:
name: Build
@@ -34,7 +36,7 @@ jobs:
matrix: ${{fromJSON(needs.determine-matrix.outputs.matrix)}}
steps:
- name: Checkout code
- uses: actions/checkout@v2
+ uses: actions/checkout@v4
- name: Generate Name
run: node -e "console.log('PACKAGE_NAME=' + require('./i18n/${{ matrix.languagePack }}/package.json').name + '-v' + require('./i18n/${{ matrix.languagePack }}/package.json').version)" >> $GITHUB_ENV
@@ -43,10 +45,10 @@ jobs:
run: cd ./i18n/${{ matrix.languagePack }} && npm i
- name: Build Extension
- run: cd ./i18n/${{ matrix.languagePack }} && npx vsce package -o ${{ env.PACKAGE_NAME }}.vsix
+ run: cd ./i18n/${{ matrix.languagePack }} && npx @vscode/vsce package -o ${{ env.PACKAGE_NAME }}.vsix
- name: Publish Test Artifact
- uses: actions/upload-artifact@v2
+ uses: actions/upload-artifact@v4
with:
name: ${{ env.PACKAGE_NAME }}.vsix
path: ./i18n/${{ matrix.languagePack }}/${{ env.PACKAGE_NAME }}.vsix
diff --git a/LICENSE.md b/LICENSE.md
index 1adca5b75d..1f8b73f13d 100644
--- a/LICENSE.md
+++ b/LICENSE.md
@@ -4,6 +4,7 @@ Copyright (c) Microsoft Corporation
All rights reserved.
+
MIT License
Permission is hereby granted, free of charge, to any person obtaining a copy
@@ -23,3 +24,4 @@ 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
+
diff --git a/README.md b/README.md
index f1cb197fd2..081220a24e 100644
--- a/README.md
+++ b/README.md
@@ -1,14 +1,12 @@
# Visual Studio Code Language Packs
-[](https://github.com/microsoft/vscode-loc/actions/workflows/ci.yml)
+Visual Studio Code is localized into many different languages using the concept of Language Packs. Language Packs can be installed by running the `>Configure Display Language` command in Visual Studio Code's Command Palette or installed via the [Visual Studio Code Marketplace](https://marketplace.visualstudio.com/search?target=VSCode&category=Language%20Packs&sortBy=Installs).
-This repository contains files to build localized Language Pack extensions for Visual Studio Code. A Language Pack contains the localized string resources for a particular language.
+The original English strings can be found in the source code of the [open source repository](https://github.com/microsoft/vscode), and the localized strings for supported languages can be found in this repository.
-Localized resource files are managed and edited in Microsoft Localization Community. Files will be exported to this repository when prepare the publishing of language pack.
+Localized resource files are managed and edited by Microsoft. Files will be exported to this repository when strings are updated to prepare for the publishing of language packs.
-Language pack extensions are published to the [Visual Studio Code Marketplace](https://marketplace.visualstudio.com/search?target=VSCode&category=Language%20Packs&sortBy=Installs)
-
-There are currently 14 "Core" languages for Visual Studio Code.
+There are currently 14 supported languages for Visual Studio Code.
|Language|Visual Studio Code Language ID|MLCP Language Code|
|--------|--------|--------|
@@ -24,23 +22,23 @@ There are currently 14 "Core" languages for Visual Studio Code.
|**Czech**|cs|Czech (cs-CZ)
|**Portuguese (Brazil)**|pt-br|Portuguese (Brazil) (pt-br)
|**Turkish**|tr|Turkish (tr-tr)
-|**Polish**|pl| Polish (pl-pl)
+|**Polish**|pl|Polish (pl-pl)
|**Pseudo Language**|qps-ploc|Pseudo (qps-ploc)
## Contributing
-If you want to give feedback or report issue, please create a [new GitHub issue](https://github.com/microsoft/vscode-loc/issues/new). Please check if a topic about your issue already exists!.
-Since translation strings are managed and edited in Microsoft Localization Platform. Change can only be made there. So pull request won't be accepted in vscode-loc repo except language pack readme.md.
+If you want to give feedback or report an issue with a translation, please create a [new GitHub issue](https://github.com/microsoft/vscode-loc/issues/new). Please check if a topic about your issue already exists!
+Translation strings are managed on the Microsoft Localization Platform, and changes to strings can only be made there. Consequently, pull requests fixing translations won't be accepted. All other PRs to things like `README.md`, `package.json`, etc., will be accepted at the discretion of the maintainers.
## Legal
-Before we can accept your pull request you will need to sign a **Contribution License Agreement**. All you need to do is to submit a pull request, then the PR will get appropriately labelled (e.g. `cla-required`, `cla-norequired`, `cla-signed`, `cla-already-signed`). If you already signed the agreement we will continue with reviewing the PR, otherwise system will tell you how you can sign the CLA. Once you sign the CLA all future PR's will be labeled as `cla-signed`.
+Before we can accept your pull request, you will need to sign a **Contribution License Agreement**. All you need to do is submit a pull request. It will then be appropriately labeled (e.g., `cla-required`, `cla-norequired`, `cla-signed`, `cla-already-signed`). If you already signed the agreement, we will continue with reviewing the PR; otherwise, our system will tell you how you can sign the CLA. Once you sign the CLA, all future PRs will be labeled as `cla-signed`.
# Microsoft Open Source Code of Conduct
This project has adopted the [**Microsoft Open Source Code of Conduct**](https://opensource.microsoft.com/codeofconduct/).
-For more information see the [**Code of Conduct FAQ**](https://opensource.microsoft.com/codeofconduct/faq/) or
-contact [**opencode@microsoft.com**](mailto:opencode@microsoft.com) with any additional questions or comments.
+For more information, see the [**Code of Conduct FAQ**](https://opensource.microsoft.com/codeofconduct/faq/) or contact [**opencode@microsoft.com**](mailto:opencode@microsoft.com) with any additional questions or comments.
+
+## License
-## License
[MIT](LICENSE.md)
diff --git a/SECURITY.md b/SECURITY.md
new file mode 100644
index 0000000000..e138ec5d6a
--- /dev/null
+++ b/SECURITY.md
@@ -0,0 +1,41 @@
+
+
+## Security
+
+Microsoft takes the security of our software products and services seriously, which includes all source code repositories managed through our GitHub organizations, which include [Microsoft](https://github.com/microsoft), [Azure](https://github.com/Azure), [DotNet](https://github.com/dotnet), [AspNet](https://github.com/aspnet), [Xamarin](https://github.com/xamarin), and [our GitHub organizations](https://opensource.microsoft.com/).
+
+If you believe you have found a security vulnerability in any Microsoft-owned repository that meets [Microsoft's definition of a security vulnerability](https://aka.ms/opensource/security/definition), please report it to us as described below.
+
+## Reporting Security Issues
+
+**Please do not report security vulnerabilities through public GitHub issues.**
+
+Instead, please report them to the Microsoft Security Response Center (MSRC) at [https://msrc.microsoft.com/create-report](https://aka.ms/opensource/security/create-report).
+
+If you prefer to submit without logging in, send email to [secure@microsoft.com](mailto:secure@microsoft.com). If possible, encrypt your message with our PGP key; please download it from the [Microsoft Security Response Center PGP Key page](https://aka.ms/opensource/security/pgpkey).
+
+You should receive a response within 24 hours. If for some reason you do not, please follow up via email to ensure we received your original message. Additional information can be found at [microsoft.com/msrc](https://aka.ms/opensource/security/msrc).
+
+Please include the requested information listed below (as much as you can provide) to help us better understand the nature and scope of the possible issue:
+
+ * Type of issue (e.g. buffer overflow, SQL injection, cross-site scripting, etc.)
+ * Full paths of source file(s) related to the manifestation of the issue
+ * The location of the affected source code (tag/branch/commit or direct URL)
+ * Any special configuration required to reproduce the issue
+ * Step-by-step instructions to reproduce the issue
+ * Proof-of-concept or exploit code (if possible)
+ * Impact of the issue, including how an attacker might exploit the issue
+
+This information will help us triage your report more quickly.
+
+If you are reporting for a bug bounty, more complete reports can contribute to a higher bounty award. Please visit our [Microsoft Bug Bounty Program](https://aka.ms/opensource/security/bounty) page for more details about our active programs.
+
+## Preferred Languages
+
+We prefer all communications to be in English.
+
+## Policy
+
+Microsoft follows the principle of [Coordinated Vulnerability Disclosure](https://aka.ms/opensource/security/cvd).
+
+
diff --git a/build/release.yml b/build/release.yml
index 14cf7387d6..297a172909 100644
--- a/build/release.yml
+++ b/build/release.yml
@@ -29,12 +29,20 @@ resources:
extends:
template: azure-pipelines/extension/pre-release.yml@templates
parameters:
+ publishExtension: true
+ useContinuousReleaseSignal: false
usePreReleaseChannel: false
+ ghCreateRelease: false
workingDirectory: $(Build.SourcesDirectory)/i18n/$(languagePack)
buildSteps:
- pwsh: |
[version]$version = Get-Content -Raw ./package.json | ConvertFrom-Json | Select-Object -ExpandProperty version
- $patch = Get-Date -Format MddHHmm
+ $patch = Get-Date -Format yyyyMMddHH
npm version "$($version.Major).$($version.Minor).$patch"
displayName: Update version
workingDirectory: $(Build.SourcesDirectory)/i18n/$(languagePack)
+
+ - pwsh: |
+ Join-Path $env:BUILD_SOURCESDIRECTORY LICENSE.md | Copy-Item -Destination .
+ displayName: Copy LICENSE.md file
+ workingDirectory: $(Build.SourcesDirectory)/i18n/$(languagePack)
diff --git a/i18n/vscode-language-pack-cs/package.json b/i18n/vscode-language-pack-cs/package.json
index 1b5c3c98a3..6ed92975d7 100644
--- a/i18n/vscode-language-pack-cs/package.json
+++ b/i18n/vscode-language-pack-cs/package.json
@@ -2,7 +2,7 @@
"name": "vscode-language-pack-cs",
"displayName": "Czech Language Pack for Visual Studio Code",
"description": "Language pack extension for Czech",
- "version": "1.70.0",
+ "version": "1.108.0",
"publisher": "MS-CEINTL",
"repository": {
"type": "git",
@@ -10,12 +10,15 @@
},
"license": "SEE MIT LICENSE IN LICENSE.md",
"engines": {
- "vscode": "^1.70.0"
+ "vscode": "^1.108.0"
},
"icon": "languagepack.png",
"categories": [
"Language Packs"
],
+ "keywords": [
+ "čeština"
+ ],
"contributes": {
"localizations": [
{
@@ -27,601 +30,369 @@
"id": "vscode",
"path": "./translations/main.i18n.json"
},
+ {
+ "id": "ms-vscode.js-debug",
+ "path": "./translations/extensions/ms-vscode.js-debug.i18n.json"
+ },
{
"id": "vscode.bat",
- "path": "./translations/extensions/bat.i18n.json"
+ "path": "./translations/extensions/vscode.bat.i18n.json"
+ },
+ {
+ "id": "vscode.builtin-notebook-renderers",
+ "path": "./translations/extensions/vscode.builtin-notebook-renderers.i18n.json"
},
{
"id": "vscode.clojure",
- "path": "./translations/extensions/clojure.i18n.json"
+ "path": "./translations/extensions/vscode.clojure.i18n.json"
},
{
"id": "vscode.coffeescript",
- "path": "./translations/extensions/coffeescript.i18n.json"
+ "path": "./translations/extensions/vscode.coffeescript.i18n.json"
},
{
"id": "vscode.configuration-editing",
- "path": "./translations/extensions/configuration-editing.i18n.json"
+ "path": "./translations/extensions/vscode.configuration-editing.i18n.json"
},
{
"id": "vscode.cpp",
- "path": "./translations/extensions/cpp.i18n.json"
+ "path": "./translations/extensions/vscode.cpp.i18n.json"
},
{
"id": "vscode.csharp",
- "path": "./translations/extensions/csharp.i18n.json"
+ "path": "./translations/extensions/vscode.csharp.i18n.json"
},
{
"id": "vscode.css-language-features",
- "path": "./translations/extensions/css-language-features.i18n.json"
+ "path": "./translations/extensions/vscode.css-language-features.i18n.json"
},
{
"id": "vscode.css",
- "path": "./translations/extensions/css.i18n.json"
+ "path": "./translations/extensions/vscode.css.i18n.json"
},
{
"id": "vscode.dart",
- "path": "./translations/extensions/dart.i18n.json"
+ "path": "./translations/extensions/vscode.dart.i18n.json"
},
{
"id": "vscode.debug-auto-launch",
- "path": "./translations/extensions/debug-auto-launch.i18n.json"
+ "path": "./translations/extensions/vscode.debug-auto-launch.i18n.json"
},
{
"id": "vscode.debug-server-ready",
- "path": "./translations/extensions/debug-server-ready.i18n.json"
+ "path": "./translations/extensions/vscode.debug-server-ready.i18n.json"
},
{
"id": "vscode.diff",
- "path": "./translations/extensions/diff.i18n.json"
+ "path": "./translations/extensions/vscode.diff.i18n.json"
},
{
"id": "vscode.docker",
- "path": "./translations/extensions/docker.i18n.json"
+ "path": "./translations/extensions/vscode.docker.i18n.json"
+ },
+ {
+ "id": "vscode.dotenv",
+ "path": "./translations/extensions/vscode.dotenv.i18n.json"
},
{
"id": "vscode.emmet",
- "path": "./translations/extensions/emmet.i18n.json"
+ "path": "./translations/extensions/vscode.emmet.i18n.json"
},
{
"id": "vscode.extension-editing",
- "path": "./translations/extensions/extension-editing.i18n.json"
+ "path": "./translations/extensions/vscode.extension-editing.i18n.json"
},
{
"id": "vscode.fsharp",
- "path": "./translations/extensions/fsharp.i18n.json"
+ "path": "./translations/extensions/vscode.fsharp.i18n.json"
},
{
"id": "vscode.git-base",
- "path": "./translations/extensions/git-base.i18n.json"
- },
- {
- "id": "vscode.git-ui",
- "path": "./translations/extensions/git-ui.i18n.json"
+ "path": "./translations/extensions/vscode.git-base.i18n.json"
},
{
"id": "vscode.git",
- "path": "./translations/extensions/git.i18n.json"
+ "path": "./translations/extensions/vscode.git.i18n.json"
},
{
"id": "vscode.github-authentication",
- "path": "./translations/extensions/github-authentication.i18n.json"
- },
- {
- "id": "vscode.github-browser",
- "path": "./translations/extensions/github-browser.i18n.json"
+ "path": "./translations/extensions/vscode.github-authentication.i18n.json"
},
{
"id": "vscode.github",
- "path": "./translations/extensions/github.i18n.json"
+ "path": "./translations/extensions/vscode.github.i18n.json"
},
{
"id": "vscode.go",
- "path": "./translations/extensions/go.i18n.json"
+ "path": "./translations/extensions/vscode.go.i18n.json"
},
{
"id": "vscode.groovy",
- "path": "./translations/extensions/groovy.i18n.json"
+ "path": "./translations/extensions/vscode.groovy.i18n.json"
},
{
"id": "vscode.grunt",
- "path": "./translations/extensions/grunt.i18n.json"
+ "path": "./translations/extensions/vscode.grunt.i18n.json"
},
{
"id": "vscode.gulp",
- "path": "./translations/extensions/gulp.i18n.json"
+ "path": "./translations/extensions/vscode.gulp.i18n.json"
},
{
"id": "vscode.handlebars",
- "path": "./translations/extensions/handlebars.i18n.json"
+ "path": "./translations/extensions/vscode.handlebars.i18n.json"
},
{
"id": "vscode.hlsl",
- "path": "./translations/extensions/hlsl.i18n.json"
+ "path": "./translations/extensions/vscode.hlsl.i18n.json"
},
{
"id": "vscode.html-language-features",
- "path": "./translations/extensions/html-language-features.i18n.json"
+ "path": "./translations/extensions/vscode.html-language-features.i18n.json"
},
{
"id": "vscode.html",
- "path": "./translations/extensions/html.i18n.json"
- },
- {
- "id": "vscode.image-preview",
- "path": "./translations/extensions/image-preview.i18n.json"
+ "path": "./translations/extensions/vscode.html.i18n.json"
},
{
"id": "vscode.ini",
- "path": "./translations/extensions/ini.i18n.json"
+ "path": "./translations/extensions/vscode.ini.i18n.json"
},
{
"id": "vscode.ipynb",
- "path": "./translations/extensions/ipynb.i18n.json"
+ "path": "./translations/extensions/vscode.ipynb.i18n.json"
},
{
"id": "vscode.jake",
- "path": "./translations/extensions/jake.i18n.json"
+ "path": "./translations/extensions/vscode.jake.i18n.json"
},
{
"id": "vscode.java",
- "path": "./translations/extensions/java.i18n.json"
+ "path": "./translations/extensions/vscode.java.i18n.json"
},
{
"id": "vscode.javascript",
- "path": "./translations/extensions/javascript.i18n.json"
+ "path": "./translations/extensions/vscode.javascript.i18n.json"
},
{
"id": "vscode.json-language-features",
- "path": "./translations/extensions/json-language-features.i18n.json"
+ "path": "./translations/extensions/vscode.json-language-features.i18n.json"
},
{
"id": "vscode.json",
- "path": "./translations/extensions/json.i18n.json"
+ "path": "./translations/extensions/vscode.json.i18n.json"
},
{
"id": "vscode.julia",
- "path": "./translations/extensions/julia.i18n.json"
+ "path": "./translations/extensions/vscode.julia.i18n.json"
},
{
"id": "vscode.latex",
- "path": "./translations/extensions/latex.i18n.json"
+ "path": "./translations/extensions/vscode.latex.i18n.json"
},
{
"id": "vscode.less",
- "path": "./translations/extensions/less.i18n.json"
+ "path": "./translations/extensions/vscode.less.i18n.json"
},
{
"id": "vscode.log",
- "path": "./translations/extensions/log.i18n.json"
+ "path": "./translations/extensions/vscode.log.i18n.json"
},
{
"id": "vscode.lua",
- "path": "./translations/extensions/lua.i18n.json"
+ "path": "./translations/extensions/vscode.lua.i18n.json"
},
{
"id": "vscode.make",
- "path": "./translations/extensions/make.i18n.json"
- },
- {
- "id": "vscode.markdown-basics",
- "path": "./translations/extensions/markdown-basics.i18n.json"
+ "path": "./translations/extensions/vscode.make.i18n.json"
},
{
"id": "vscode.markdown-language-features",
- "path": "./translations/extensions/markdown-language-features.i18n.json"
+ "path": "./translations/extensions/vscode.markdown-language-features.i18n.json"
},
{
"id": "vscode.markdown-math",
- "path": "./translations/extensions/markdown-math.i18n.json"
- },
- {
- "id": "vscode.markdown-notebook-math",
- "path": "./translations/extensions/markdown-notebook-math.i18n.json"
- },
- {
- "id": "vscode.merge-conflict",
- "path": "./translations/extensions/merge-conflict.i18n.json"
- },
- {
- "id": "vscode.microsoft-authentication",
- "path": "./translations/extensions/microsoft-authentication.i18n.json"
+ "path": "./translations/extensions/vscode.markdown-math.i18n.json"
},
{
- "id": "vscode.ms-vscode.github-browser",
- "path": "./translations/extensions/ms-vscode.github-browser.i18n.json"
- },
- {
- "id": "vscode.ms-vscode.js-debug",
- "path": "./translations/extensions/ms-vscode.js-debug.i18n.json"
- },
- {
- "id": "vscode.ms-vscode.node-debug",
- "path": "./translations/extensions/ms-vscode.node-debug.i18n.json"
+ "id": "vscode.markdown",
+ "path": "./translations/extensions/vscode.markdown.i18n.json"
},
{
- "id": "vscode.ms-vscode.node-debug2",
- "path": "./translations/extensions/ms-vscode.node-debug2.i18n.json"
+ "id": "vscode.media-preview",
+ "path": "./translations/extensions/vscode.media-preview.i18n.json"
},
{
- "id": "vscode.ms-vscode.remotehub",
- "path": "./translations/extensions/ms-vscode.remotehub.i18n.json"
+ "id": "vscode.merge-conflict",
+ "path": "./translations/extensions/vscode.merge-conflict.i18n.json"
},
{
- "id": "vscode.notebook-markdown-extensions",
- "path": "./translations/extensions/notebook-markdown-extensions.i18n.json"
+ "id": "vscode.mermaid-chat-features",
+ "path": "./translations/extensions/vscode.mermaid-chat-features.i18n.json"
},
{
- "id": "vscode.notebook-renderers",
- "path": "./translations/extensions/notebook-renderers.i18n.json"
+ "id": "vscode.microsoft-authentication",
+ "path": "./translations/extensions/vscode.microsoft-authentication.i18n.json"
},
{
"id": "vscode.npm",
- "path": "./translations/extensions/npm.i18n.json"
+ "path": "./translations/extensions/vscode.npm.i18n.json"
},
{
"id": "vscode.objective-c",
- "path": "./translations/extensions/objective-c.i18n.json"
+ "path": "./translations/extensions/vscode.objective-c.i18n.json"
},
{
"id": "vscode.perl",
- "path": "./translations/extensions/perl.i18n.json"
+ "path": "./translations/extensions/vscode.perl.i18n.json"
},
{
"id": "vscode.php-language-features",
- "path": "./translations/extensions/php-language-features.i18n.json"
+ "path": "./translations/extensions/vscode.php-language-features.i18n.json"
},
{
"id": "vscode.php",
- "path": "./translations/extensions/php.i18n.json"
+ "path": "./translations/extensions/vscode.php.i18n.json"
},
{
"id": "vscode.powershell",
- "path": "./translations/extensions/powershell.i18n.json"
+ "path": "./translations/extensions/vscode.powershell.i18n.json"
+ },
+ {
+ "id": "vscode.prompt",
+ "path": "./translations/extensions/vscode.prompt.i18n.json"
},
{
"id": "vscode.pug",
- "path": "./translations/extensions/pug.i18n.json"
+ "path": "./translations/extensions/vscode.pug.i18n.json"
},
{
"id": "vscode.python",
- "path": "./translations/extensions/python.i18n.json"
+ "path": "./translations/extensions/vscode.python.i18n.json"
},
{
"id": "vscode.r",
- "path": "./translations/extensions/r.i18n.json"
+ "path": "./translations/extensions/vscode.r.i18n.json"
},
{
"id": "vscode.razor",
- "path": "./translations/extensions/razor.i18n.json"
+ "path": "./translations/extensions/vscode.razor.i18n.json"
},
{
"id": "vscode.references-view",
- "path": "./translations/extensions/references-view.i18n.json"
+ "path": "./translations/extensions/vscode.references-view.i18n.json"
},
{
"id": "vscode.restructuredtext",
- "path": "./translations/extensions/restructuredtext.i18n.json"
+ "path": "./translations/extensions/vscode.restructuredtext.i18n.json"
},
{
"id": "vscode.ruby",
- "path": "./translations/extensions/ruby.i18n.json"
+ "path": "./translations/extensions/vscode.ruby.i18n.json"
},
{
"id": "vscode.rust",
- "path": "./translations/extensions/rust.i18n.json"
+ "path": "./translations/extensions/vscode.rust.i18n.json"
},
{
"id": "vscode.scss",
- "path": "./translations/extensions/scss.i18n.json"
+ "path": "./translations/extensions/vscode.scss.i18n.json"
},
{
"id": "vscode.search-result",
- "path": "./translations/extensions/search-result.i18n.json"
+ "path": "./translations/extensions/vscode.search-result.i18n.json"
},
{
"id": "vscode.shaderlab",
- "path": "./translations/extensions/shaderlab.i18n.json"
+ "path": "./translations/extensions/vscode.shaderlab.i18n.json"
},
{
"id": "vscode.shellscript",
- "path": "./translations/extensions/shellscript.i18n.json"
+ "path": "./translations/extensions/vscode.shellscript.i18n.json"
},
{
"id": "vscode.simple-browser",
- "path": "./translations/extensions/simple-browser.i18n.json"
+ "path": "./translations/extensions/vscode.simple-browser.i18n.json"
},
{
"id": "vscode.sql",
- "path": "./translations/extensions/sql.i18n.json"
+ "path": "./translations/extensions/vscode.sql.i18n.json"
},
{
"id": "vscode.swift",
- "path": "./translations/extensions/swift.i18n.json"
+ "path": "./translations/extensions/vscode.swift.i18n.json"
},
{
- "id": "vscode.testing-editor-contributions",
- "path": "./translations/extensions/testing-editor-contributions.i18n.json"
+ "id": "vscode.terminal-suggest",
+ "path": "./translations/extensions/vscode.terminal-suggest.i18n.json"
},
{
"id": "vscode.theme-abyss",
- "path": "./translations/extensions/theme-abyss.i18n.json"
+ "path": "./translations/extensions/vscode.theme-abyss.i18n.json"
},
{
"id": "vscode.theme-defaults",
- "path": "./translations/extensions/theme-defaults.i18n.json"
+ "path": "./translations/extensions/vscode.theme-defaults.i18n.json"
},
{
"id": "vscode.theme-kimbie-dark",
- "path": "./translations/extensions/theme-kimbie-dark.i18n.json"
+ "path": "./translations/extensions/vscode.theme-kimbie-dark.i18n.json"
},
{
"id": "vscode.theme-monokai-dimmed",
- "path": "./translations/extensions/theme-monokai-dimmed.i18n.json"
+ "path": "./translations/extensions/vscode.theme-monokai-dimmed.i18n.json"
},
{
"id": "vscode.theme-monokai",
- "path": "./translations/extensions/theme-monokai.i18n.json"
+ "path": "./translations/extensions/vscode.theme-monokai.i18n.json"
},
{
"id": "vscode.theme-quietlight",
- "path": "./translations/extensions/theme-quietlight.i18n.json"
+ "path": "./translations/extensions/vscode.theme-quietlight.i18n.json"
},
{
"id": "vscode.theme-red",
- "path": "./translations/extensions/theme-red.i18n.json"
- },
- {
- "id": "vscode.theme-seti",
- "path": "./translations/extensions/theme-seti.i18n.json"
+ "path": "./translations/extensions/vscode.theme-red.i18n.json"
},
{
"id": "vscode.theme-solarized-dark",
- "path": "./translations/extensions/theme-solarized-dark.i18n.json"
+ "path": "./translations/extensions/vscode.theme-solarized-dark.i18n.json"
},
{
"id": "vscode.theme-solarized-light",
- "path": "./translations/extensions/theme-solarized-light.i18n.json"
+ "path": "./translations/extensions/vscode.theme-solarized-light.i18n.json"
},
{
"id": "vscode.theme-tomorrow-night-blue",
- "path": "./translations/extensions/theme-tomorrow-night-blue.i18n.json"
+ "path": "./translations/extensions/vscode.theme-tomorrow-night-blue.i18n.json"
},
{
- "id": "vscode.typescript-basics",
- "path": "./translations/extensions/typescript-basics.i18n.json"
+ "id": "vscode.tunnel-forwarding",
+ "path": "./translations/extensions/vscode.tunnel-forwarding.i18n.json"
},
{
"id": "vscode.typescript-language-features",
- "path": "./translations/extensions/typescript-language-features.i18n.json"
- },
- {
- "id": "vscode.vb",
- "path": "./translations/extensions/vb.i18n.json"
- },
- {
- "id": "vscode.vscode-chrome-debug-core",
- "path": "./translations/extensions/vscode-chrome-debug-core.i18n.json"
- },
- {
- "id": "ms-vscode.node-debug",
- "path": "./translations/extensions/vscode-node-debug.i18n.json"
- },
- {
- "id": "ms-vscode.node-debug2",
- "path": "./translations/extensions/vscode-node-debug2.i18n.json"
+ "path": "./translations/extensions/vscode.typescript-language-features.i18n.json"
},
{
- "id": "vscode.vscode.bat",
- "path": "./translations/extensions/vscode.bat.i18n.json"
- },
- {
- "id": "vscode.vscode.clojure",
- "path": "./translations/extensions/vscode.clojure.i18n.json"
- },
- {
- "id": "vscode.vscode.coffeescript",
- "path": "./translations/extensions/vscode.coffeescript.i18n.json"
- },
- {
- "id": "vscode.vscode.cpp",
- "path": "./translations/extensions/vscode.cpp.i18n.json"
- },
- {
- "id": "vscode.vscode.csharp",
- "path": "./translations/extensions/vscode.csharp.i18n.json"
- },
- {
- "id": "vscode.vscode.css",
- "path": "./translations/extensions/vscode.css.i18n.json"
- },
- {
- "id": "vscode.vscode.docker",
- "path": "./translations/extensions/vscode.docker.i18n.json"
- },
- {
- "id": "vscode.vscode.fsharp",
- "path": "./translations/extensions/vscode.fsharp.i18n.json"
- },
- {
- "id": "vscode.vscode.go",
- "path": "./translations/extensions/vscode.go.i18n.json"
- },
- {
- "id": "vscode.vscode.groovy",
- "path": "./translations/extensions/vscode.groovy.i18n.json"
- },
- {
- "id": "vscode.vscode.handlebars",
- "path": "./translations/extensions/vscode.handlebars.i18n.json"
- },
- {
- "id": "vscode.vscode.hlsl",
- "path": "./translations/extensions/vscode.hlsl.i18n.json"
- },
- {
- "id": "vscode.vscode.html",
- "path": "./translations/extensions/vscode.html.i18n.json"
- },
- {
- "id": "vscode.vscode.ini",
- "path": "./translations/extensions/vscode.ini.i18n.json"
- },
- {
- "id": "vscode.vscode.java",
- "path": "./translations/extensions/vscode.java.i18n.json"
- },
- {
- "id": "vscode.vscode.javascript",
- "path": "./translations/extensions/vscode.javascript.i18n.json"
- },
- {
- "id": "vscode.vscode.json",
- "path": "./translations/extensions/vscode.json.i18n.json"
- },
- {
- "id": "vscode.vscode.less",
- "path": "./translations/extensions/vscode.less.i18n.json"
- },
- {
- "id": "vscode.vscode.log",
- "path": "./translations/extensions/vscode.log.i18n.json"
- },
- {
- "id": "vscode.vscode.lua",
- "path": "./translations/extensions/vscode.lua.i18n.json"
- },
- {
- "id": "vscode.vscode.make",
- "path": "./translations/extensions/vscode.make.i18n.json"
- },
- {
- "id": "vscode.vscode.markdown",
- "path": "./translations/extensions/vscode.markdown.i18n.json"
- },
- {
- "id": "vscode.vscode.objective-c",
- "path": "./translations/extensions/vscode.objective-c.i18n.json"
- },
- {
- "id": "vscode.vscode.perl",
- "path": "./translations/extensions/vscode.perl.i18n.json"
- },
- {
- "id": "vscode.vscode.php",
- "path": "./translations/extensions/vscode.php.i18n.json"
- },
- {
- "id": "vscode.vscode.powershell",
- "path": "./translations/extensions/vscode.powershell.i18n.json"
- },
- {
- "id": "vscode.vscode.pug",
- "path": "./translations/extensions/vscode.pug.i18n.json"
- },
- {
- "id": "vscode.vscode.r",
- "path": "./translations/extensions/vscode.r.i18n.json"
- },
- {
- "id": "vscode.vscode.razor",
- "path": "./translations/extensions/vscode.razor.i18n.json"
- },
- {
- "id": "vscode.vscode.ruby",
- "path": "./translations/extensions/vscode.ruby.i18n.json"
- },
- {
- "id": "vscode.vscode.rust",
- "path": "./translations/extensions/vscode.rust.i18n.json"
- },
- {
- "id": "vscode.vscode.scss",
- "path": "./translations/extensions/vscode.scss.i18n.json"
- },
- {
- "id": "vscode.vscode.shaderlab",
- "path": "./translations/extensions/vscode.shaderlab.i18n.json"
- },
- {
- "id": "vscode.vscode.shellscript",
- "path": "./translations/extensions/vscode.shellscript.i18n.json"
- },
- {
- "id": "vscode.vscode.sql",
- "path": "./translations/extensions/vscode.sql.i18n.json"
- },
- {
- "id": "vscode.vscode.swift",
- "path": "./translations/extensions/vscode.swift.i18n.json"
- },
- {
- "id": "vscode.vscode.theme-abyss",
- "path": "./translations/extensions/vscode.theme-abyss.i18n.json"
- },
- {
- "id": "vscode.vscode.theme-defaults",
- "path": "./translations/extensions/vscode.theme-defaults.i18n.json"
- },
- {
- "id": "vscode.vscode.theme-kimbie-dark",
- "path": "./translations/extensions/vscode.theme-kimbie-dark.i18n.json"
- },
- {
- "id": "vscode.vscode.theme-monokai-dimmed",
- "path": "./translations/extensions/vscode.theme-monokai-dimmed.i18n.json"
- },
- {
- "id": "vscode.vscode.theme-monokai",
- "path": "./translations/extensions/vscode.theme-monokai.i18n.json"
- },
- {
- "id": "vscode.vscode.theme-quietlight",
- "path": "./translations/extensions/vscode.theme-quietlight.i18n.json"
- },
- {
- "id": "vscode.vscode.theme-red",
- "path": "./translations/extensions/vscode.theme-red.i18n.json"
- },
- {
- "id": "vscode.vscode.theme-solarized-dark",
- "path": "./translations/extensions/vscode.theme-solarized-dark.i18n.json"
- },
- {
- "id": "vscode.vscode.theme-solarized-light",
- "path": "./translations/extensions/vscode.theme-solarized-light.i18n.json"
- },
- {
- "id": "vscode.vscode.theme-tomorrow-night-blue",
- "path": "./translations/extensions/vscode.theme-tomorrow-night-blue.i18n.json"
- },
- {
- "id": "vscode.vscode.typescript",
+ "id": "vscode.typescript",
"path": "./translations/extensions/vscode.typescript.i18n.json"
},
{
- "id": "vscode.vscode.vb",
+ "id": "vscode.vb",
"path": "./translations/extensions/vscode.vb.i18n.json"
},
{
- "id": "vscode.vscode.vscode-theme-seti",
+ "id": "vscode.vscode-theme-seti",
"path": "./translations/extensions/vscode.vscode-theme-seti.i18n.json"
},
- {
- "id": "vscode.vscode.xml",
- "path": "./translations/extensions/vscode.xml.i18n.json"
- },
- {
- "id": "vscode.vscode.yaml",
- "path": "./translations/extensions/vscode.yaml.i18n.json"
- },
{
"id": "vscode.xml",
- "path": "./translations/extensions/xml.i18n.json"
+ "path": "./translations/extensions/vscode.xml.i18n.json"
},
{
"id": "vscode.yaml",
- "path": "./translations/extensions/yaml.i18n.json"
+ "path": "./translations/extensions/vscode.yaml.i18n.json"
}
]
}
diff --git a/i18n/vscode-language-pack-cs/translations/extensions/bat.i18n.json b/i18n/vscode-language-pack-cs/translations/extensions/bat.i18n.json
deleted file mode 100644
index 357acf4af3..0000000000
--- a/i18n/vscode-language-pack-cs/translations/extensions/bat.i18n.json
+++ /dev/null
@@ -1,16 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "package": {
- "description": "Poskytuje fragmenty kódu, zvýrazňování syntaxe, párování závorek a sbalování kódu v dávkových souborech Windows.",
- "displayName": "Základy jazyka Windows Bat"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-cs/translations/extensions/clojure.i18n.json b/i18n/vscode-language-pack-cs/translations/extensions/clojure.i18n.json
deleted file mode 100644
index 6bb17cf9a5..0000000000
--- a/i18n/vscode-language-pack-cs/translations/extensions/clojure.i18n.json
+++ /dev/null
@@ -1,16 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "package": {
- "description": "Poskytuje zvýrazňování syntaxe a párování závorek v souborech Clojure.",
- "displayName": "Základy jazyka Clojure"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-cs/translations/extensions/coffeescript.i18n.json b/i18n/vscode-language-pack-cs/translations/extensions/coffeescript.i18n.json
deleted file mode 100644
index 41d4b1ce49..0000000000
--- a/i18n/vscode-language-pack-cs/translations/extensions/coffeescript.i18n.json
+++ /dev/null
@@ -1,16 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "package": {
- "description": "Poskytuje fragmenty kódu, zvýrazňování syntaxe, párování závorek a sbalování kódu v souborech jazyka CoffeeScript.",
- "displayName": "Základy jazyka CoffeeScript"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-cs/translations/extensions/configuration-editing.i18n.json b/i18n/vscode-language-pack-cs/translations/extensions/configuration-editing.i18n.json
deleted file mode 100644
index 14438f813b..0000000000
--- a/i18n/vscode-language-pack-cs/translations/extensions/configuration-editing.i18n.json
+++ /dev/null
@@ -1,70 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "dist/configurationEditingMain": {
- "cwd": "Aktuální pracovní adresář spouštěče úloh při spuštění",
- "defaultBuildTask": "Název výchozí úlohy sestavení. Pokud neexistuje žádná výchozí úloha sestavení, zobrazí se nabídka rychlého výběru pro zvolení úlohy sestavení.",
- "extensionInstallFolder": "Cesta, kde je nainstalováno rozšíření.",
- "file": "Aktuálně otevřený soubor",
- "fileBasename": "Základní název aktuálně otevřeného souboru",
- "fileBasenameNoExtension": "Základní název aktuálně otevřeného souboru bez přípony souboru",
- "fileDirname": "Název adresáře aktuálně otevřeného souboru",
- "fileExtname": "Přípona aktuálně otevřeného souboru",
- "lineNumber": "Číslo aktuálně vybraného řádku v aktivním souboru",
- "pathSeparator": "Znak používaný operačním systémem k oddělení komponent v cestách k souborům",
- "relativeFile": "Aktuálně otevřený soubor relativně ke složce ${workspaceFolder}",
- "relativeFileDirname": "Název adresáře aktuálně otevřeného souboru relativně ke složce ${workspaceFolder}",
- "selectedText": "Aktuálně vybraný text v aktivním souboru",
- "workspaceFolder": "Cesta ke složce otevřené ve VS Code",
- "workspaceFolderBasename": "Název složky otevřené ve VS Code bez lomítek (/)"
- },
- "dist/extensionsProposals": {
- "exampleExtension": "Příklad"
- },
- "dist/settingsDocumentHelper": {
- "activeEditor": "Použít jazyk aktuálně aktivního textového editoru, pokud existuje",
- "activeEditorLong": "úplná cesta k souboru (například /Users/Development/myFolder/myFileFolder/myFile.txt)",
- "activeEditorMedium": "cesta k souboru relativně ke složce pracovního prostoru (například myFolder/myFileFolder/myFile.txt)",
- "activeEditorShort": "název souboru (například myFile.txt)",
- "activeFolderLong": "úplná cesta ke složce, ve které je soubor obsažen (například /Users/Development/myFolder/myFileFolder)",
- "activeFolderMedium": "cesta ke složce, ve které je soubor obsažen, relativně ke složce pracovního prostoru (například myFolder/myFileFolder)",
- "activeFolderShort": "název složky, ve které je soubor obsažen (například myFileFolder)",
- "appName": "například VS Code",
- "assocDescriptionFile": "Umožňuje namapovat všechny soubory odpovídající vzoru glob v názvu souboru na jazyk s daným identifikátorem.",
- "assocDescriptionPath": "Umožňuje namapovat všechny soubory odpovídající vzoru glob absolutní cesty v jejich cestě na jazyk s daným identifikátorem.",
- "assocLabelFile": "Soubory s příponou",
- "assocLabelPath": "Soubory s cestou",
- "derivedDescription": "Umožňuje vyhledat soubory, které mají položky na stejné úrovni se stejným názvem, ale jiným rozšířením",
- "derivedLabel": "Soubory s položkami na stejné úrovni podle názvu",
- "dirty": "indikuje, jestli aktivní editor obsahuje neuložené změny",
- "fileDescription": "Umožňuje vyhledat všechny soubory s konkrétní příponou.",
- "fileLabel": "Soubory podle přípony",
- "filesDescription": "Umožňuje vyhledat všechny soubory s kteroukoli z uvedených přípon.",
- "filesLabel": "Soubory s více příponami",
- "folderDescription": "Umožňuje vyhledat složku s určitým názvem v libovolném umístění.",
- "folderLabel": "Složka podle názvu (libovolné umístění)",
- "folderName": "název složky pracovního prostoru, ve které je soubor obsažen (například myFolder)",
- "folderPath": "cesta ke složce pracovního prostoru, ve které je soubor obsažen (například /Users/Development/myFolder)",
- "remoteName": "například SSH",
- "rootName": "název pracovního prostoru (například myFolder nebo myWorkspace)",
- "rootPath": "cesta k souboru pracovního prostoru (například /Users/Development/myWorkspace)",
- "separator": "podmíněný oddělovač (-), který se zobrazí pouze v případě uzavření do proměnných s hodnotami",
- "siblingsDescription": "Umožňuje vyhledat soubory, které mají položky na stejné úrovni se stejným názvem, ale jiným rozšířením",
- "topFolderDescription": "Umožňuje vyhledat složku nejvyšší úrovně s určitým názvem.",
- "topFolderLabel": "Složka podle názvu (nejvyšší úroveň)",
- "topFoldersDescription": "Umožňuje vyhledat více složek nejvyšší úrovně.",
- "topFoldersLabel": "Složky s více názvy (nejvyšší úroveň)"
- },
- "package": {
- "description": "Poskytuje funkce (pokročilá funkce IntelliSense, automatické opravy) v konfiguračních souborech, jako jsou například soubory nastavení, soubory spuštění a soubory doporučení rozšíření.",
- "displayName": "Úpravy konfigurace"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-cs/translations/extensions/cpp.i18n.json b/i18n/vscode-language-pack-cs/translations/extensions/cpp.i18n.json
deleted file mode 100644
index bf326b29fe..0000000000
--- a/i18n/vscode-language-pack-cs/translations/extensions/cpp.i18n.json
+++ /dev/null
@@ -1,16 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "package": {
- "description": "Poskytuje fragmenty kódu, zvýrazňování syntaxe, párování závorek a sbalování kódu v souborech jazyka C/C++.",
- "displayName": "Základy jazyka C/C++"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-cs/translations/extensions/csharp.i18n.json b/i18n/vscode-language-pack-cs/translations/extensions/csharp.i18n.json
deleted file mode 100644
index 5a3bbf5aae..0000000000
--- a/i18n/vscode-language-pack-cs/translations/extensions/csharp.i18n.json
+++ /dev/null
@@ -1,16 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "package": {
- "description": "Poskytuje fragmenty kódu, zvýrazňování syntaxe, párování závorek a sbalování kódu v souborech jazyka C#.",
- "displayName": "Základy jazyka C#"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-cs/translations/extensions/css-language-features.i18n.json b/i18n/vscode-language-pack-cs/translations/extensions/css-language-features.i18n.json
deleted file mode 100644
index 273837c365..0000000000
--- a/i18n/vscode-language-pack-cs/translations/extensions/css-language-features.i18n.json
+++ /dev/null
@@ -1,128 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "client\\dist\\node/cssClient": {
- "cssserver.name": "Server jazyka CSS",
- "folding.end": "Konec oblasti sbalení",
- "folding.start": "Začátek oblasti sbalení"
- },
- "package": {
- "css.colorDecorators.enable.deprecationMessage": "Nastavení css.colorDecorators.enable je zastaralé. Místo něj se používá nastavení editor.colorDecorators.",
- "css.completion.completePropertyWithSemicolon.desc": "Při dokončování vlastností CSS vkládat na konec řádku středník",
- "css.completion.triggerPropertyValueCompletion.desc": "Ve výchozím nastavení VS Code aktivuje dokončování hodnot vlastností po výběru vlastnosti CSS. Toto chování můžete pomocí tohoto nastavení zakázat.",
- "css.customData.desc": "Seznam relativních cest k souborům odkazující na soubory JSON používající [formát vlastních dat](https://github.com/microsoft/vscode-css-languageservice/blob/master/docs/customData.md).\r\n\r\nVS Code načte vlastní data při spuštění a rozšíří svou podporu CSS o vlastní vlastnosti CSS, direktivy at, pseudotřídy a pseudoelementy, které zadáte v souborech JSON.\r\n\r\nCesty k souborům jsou relativní vzhledem k pracovnímu prostoru a zvažují se jenom nastavení složek pracovního prostoru.",
- "css.format.braceStyle.desc": "Vložte složené závorky na stejný řádek jako pravidla (collapse) nebo vložte složené závorky na vlastní řádek (expand).",
- "css.format.enable.desc": "Umožňuje povolit nebo zakázat výchozí formátovací modul CSS.",
- "css.format.maxPreserveNewLines.desc": "Maximální počet konců řádků, které se mají zachovat v jednom bloku, pokud je povolená možnost #css.format.preserveNewLines#.",
- "css.format.newlineBetweenRules.desc": "Sady pravidel oddělte prázdným řádkem.",
- "css.format.newlineBetweenSelectors.desc": "Selektory oddělte novým řádkem.",
- "css.format.preserveNewLines.desc": "Určuje, jestli se mají před elementy zachovat stávající konce řádků.",
- "css.format.spaceAroundSelectorSeparator.desc": "Ujistěte se, že kolem oddělovačů selektorů >, +, ~ (např. a > b) je znak mezery.",
- "css.hover.documentation": "Po najetí myší zobrazovat značku a dokumentaci k atributu pomocí šablon stylů CSS",
- "css.hover.references": "Po najetí myší zobrazovat odkazy na MDN pomocí šablon stylů CSS",
- "css.lint.argumentsInColorFunction.desc": "Neplatný počet parametrů",
- "css.lint.boxModel.desc": "Při použití vlastnosti padding nebo border nepoužívejte vlastnost width nebo height.",
- "css.lint.compatibleVendorPrefixes.desc": "Při použití předpony specifické pro dodavatele nezapomeňte uvést i všechny ostatní vlastnosti specifické pro dodavatele.",
- "css.lint.duplicateProperties.desc": "Nepoužívejte duplicitní definice stylů.",
- "css.lint.emptyRules.desc": "Nepoužívejte prázdné sady pravidel.",
- "css.lint.float.desc": "Nepoužívejte datový typ float. Při používání datového typu float se může kód CSS snadno poškodit, pokud se změní jeden aspekt rozložení.",
- "css.lint.fontFaceProperties.desc": "Pravidlo @font-face musí definovat vlastnosti src a font-family.",
- "css.lint.hexColorLength.desc": "Hexadecimální barvy musí být definovány třemi nebo šesti hexadecimálními (šestnáctkovými) číslicemi.",
- "css.lint.idSelector.desc": "Selektory by neměly obsahovat ID, protože tato pravidla jsou příliš pevně spojena s HTML.",
- "css.lint.ieHack.desc": "IE hacky jsou nezbytné pouze pro podporu Internetu Exploreru verze 7 a starších verzí.",
- "css.lint.importStatement.desc": "Příkazy importu se nenačítají paralelně.",
- "css.lint.important.desc": "Nepoužívejte vlastnost !important. Indikuje, že specificita celého kódu CSS není pod kontrolou a vyžaduje refaktorování.",
- "css.lint.propertyIgnoredDueToDisplay.desc": "Vlastnost je ignorována kvůli vlastnosti display. Například s vlastností display: inline nemají vlastnosti width, height, margin-top, margin-bottom žádný vliv.",
- "css.lint.universalSelector.desc": "Univerzální selektor (*) bývá pomalý.",
- "css.lint.unknownAtRules.desc": "Neznámé pravidlo at",
- "css.lint.unknownProperties.desc": "Neznámá vlastnost",
- "css.lint.unknownVendorSpecificProperties.desc": "Neznámá vlastnost specifická pro dodavatele",
- "css.lint.validProperties.desc": "Seznam vlastností, které nejsou ověřovány podle pravidla unknownProperties",
- "css.lint.vendorPrefix.desc": "Při použití předpony specifické pro dodavatele je potřeba uvést také standardní vlastnost.",
- "css.lint.zeroUnits.desc": "Pro nulu nejsou potřeba žádné jednotky.",
- "css.title": "CSS",
- "css.trace.server.desc": "Umožňuje sledovat komunikaci mezi VS Code a serverem jazyka CSS.",
- "css.validate.desc": "Povolí nebo zakáže všechna ověřování.",
- "css.validate.title": "Řídí ověřování a závažnosti problémů jazyka CSS.",
- "description": "Poskytuje pokročilou jazykovou podporu pro soubory CSS, LESS a SCSS.",
- "displayName": "Funkce jazyka CSS",
- "less.colorDecorators.enable.deprecationMessage": "Nastavení less.colorDecorators.enable je zastaralé. Místo něj se používá nastavení editor.colorDecorators.",
- "less.completion.completePropertyWithSemicolon.desc": "Při dokončování vlastností CSS vkládat na konec řádku středník",
- "less.completion.triggerPropertyValueCompletion.desc": "Ve výchozím nastavení VS Code aktivuje dokončování hodnot vlastností po výběru vlastnosti CSS. Toto chování můžete pomocí tohoto nastavení zakázat.",
- "less.format.braceStyle.desc": "Vložte složené závorky na stejný řádek jako pravidla (collapse) nebo vložte složené závorky na vlastní řádek (expand).",
- "less.format.enable.desc": "Umožňuje povolit nebo zakázat výchozí formátovací modul LESS.",
- "less.format.maxPreserveNewLines.desc": "Maximální počet konců řádků, které se mají zachovat v jednom bloku, pokud je povolená možnost #less.format.preserveNewLines#.",
- "less.format.newlineBetweenRules.desc": "Sady pravidel oddělte prázdným řádkem.",
- "less.format.newlineBetweenSelectors.desc": "Selektory oddělte novým řádkem.",
- "less.format.preserveNewLines.desc": "Určuje, jestli se mají před elementy zachovat stávající konce řádků.",
- "less.format.spaceAroundSelectorSeparator.desc": "Ujistěte se, že kolem oddělovačů selektorů >, +, ~ (např. a > b) je znak mezery.",
- "less.hover.documentation": "Po najetí myší zobrazovat značku a dokumentaci k atributu pomocí LESS",
- "less.hover.references": "Po najetí myší zobrazovat odkazy na MDN pomocí LESS",
- "less.lint.argumentsInColorFunction.desc": "Neplatný počet parametrů",
- "less.lint.boxModel.desc": "Při použití vlastnosti padding nebo border nepoužívejte vlastnost width nebo height.",
- "less.lint.compatibleVendorPrefixes.desc": "Při použití předpony specifické pro dodavatele nezapomeňte uvést i všechny ostatní vlastnosti specifické pro dodavatele.",
- "less.lint.duplicateProperties.desc": "Nepoužívejte duplicitní definice stylů.",
- "less.lint.emptyRules.desc": "Nepoužívejte prázdné sady pravidel.",
- "less.lint.float.desc": "Nepoužívejte datový typ float. Při používání datového typu float se může kód CSS snadno poškodit, pokud se změní jeden aspekt rozložení.",
- "less.lint.fontFaceProperties.desc": "Pravidlo @font-face musí definovat vlastnosti src a font-family.",
- "less.lint.hexColorLength.desc": "Hexadecimální barvy musí být definovány třemi nebo šesti hexadecimálními (šestnáctkovými) číslicemi.",
- "less.lint.idSelector.desc": "Selektory by neměly obsahovat ID, protože tato pravidla jsou příliš pevně spojena s HTML.",
- "less.lint.ieHack.desc": "IE hacky jsou nezbytné pouze pro podporu Internetu Exploreru verze 7 a starších verzí.",
- "less.lint.importStatement.desc": "Příkazy importu se nenačítají paralelně.",
- "less.lint.important.desc": "Nepoužívejte vlastnost !important. Indikuje, že specificita celého kódu CSS není pod kontrolou a vyžaduje refaktorování.",
- "less.lint.propertyIgnoredDueToDisplay.desc": "Vlastnost je ignorována kvůli vlastnosti display. Například s vlastností display: inline nemají vlastnosti width, height, margin-top, margin-bottom žádný vliv.",
- "less.lint.universalSelector.desc": "Univerzální selektor (*) bývá pomalý.",
- "less.lint.unknownAtRules.desc": "Neznámé pravidlo at",
- "less.lint.unknownProperties.desc": "Neznámá vlastnost",
- "less.lint.unknownVendorSpecificProperties.desc": "Neznámá vlastnost specifická pro dodavatele",
- "less.lint.validProperties.desc": "Seznam vlastností, které nejsou ověřovány podle pravidla unknownProperties",
- "less.lint.vendorPrefix.desc": "Při použití předpony specifické pro dodavatele je potřeba uvést také standardní vlastnost.",
- "less.lint.zeroUnits.desc": "Pro nulu nejsou potřeba žádné jednotky.",
- "less.title": "LESS",
- "less.validate.desc": "Povolí nebo zakáže všechna ověřování.",
- "less.validate.title": "Řídí ověřování a závažnosti problémů jazyka LESS.",
- "scss.colorDecorators.enable.deprecationMessage": "Nastavení scss.colorDecorators.enable je zastaralé. Místo něj se používá nastavení editor.colorDecorators.",
- "scss.completion.completePropertyWithSemicolon.desc": "Při dokončování vlastností CSS vkládat na konec řádku středník",
- "scss.completion.triggerPropertyValueCompletion.desc": "Ve výchozím nastavení VS Code aktivuje dokončování hodnot vlastností po výběru vlastnosti CSS. Toto chování můžete pomocí tohoto nastavení zakázat.",
- "scss.format.braceStyle.desc": "Vložte složené závorky na stejný řádek jako pravidla (collapse) nebo vložte složené závorky na vlastní řádek (expand).",
- "scss.format.enable.desc": "Umožňuje povolit nebo zakázat výchozí formátovací modul SCSS.",
- "scss.format.maxPreserveNewLines.desc": "Maximální počet konců řádků, které se mají zachovat v jednom bloku, pokud je povolená možnost #scss.format.preserveNewLines#.",
- "scss.format.newlineBetweenRules.desc": "Sady pravidel oddělte prázdným řádkem.",
- "scss.format.newlineBetweenSelectors.desc": "Selektory oddělte novým řádkem.",
- "scss.format.preserveNewLines.desc": "Určuje, jestli se mají před elementy zachovat stávající konce řádků.",
- "scss.format.spaceAroundSelectorSeparator.desc": "Ujistěte se, že kolem oddělovačů selektorů >, +, ~ (např. a > b) je znak mezery.",
- "scss.hover.documentation": "Po najetí myší zobrazovat značku a dokumentaci k atributu pomocí SCSS",
- "scss.hover.references": "Po najetí myší zobrazovat odkazy na MDN pomocí SCSS",
- "scss.lint.argumentsInColorFunction.desc": "Neplatný počet parametrů",
- "scss.lint.boxModel.desc": "Při použití vlastnosti padding nebo border nepoužívejte vlastnost width nebo height.",
- "scss.lint.compatibleVendorPrefixes.desc": "Při použití předpony specifické pro dodavatele nezapomeňte uvést i všechny ostatní vlastnosti specifické pro dodavatele.",
- "scss.lint.duplicateProperties.desc": "Nepoužívejte duplicitní definice stylů.",
- "scss.lint.emptyRules.desc": "Nepoužívejte prázdné sady pravidel.",
- "scss.lint.float.desc": "Nepoužívejte datový typ float. Při používání datového typu float se může kód CSS snadno poškodit, pokud se změní jeden aspekt rozložení.",
- "scss.lint.fontFaceProperties.desc": "Pravidlo @font-face musí definovat vlastnosti src a font-family.",
- "scss.lint.hexColorLength.desc": "Hexadecimální barvy musí být definovány třemi nebo šesti hexadecimálními (šestnáctkovými) číslicemi.",
- "scss.lint.idSelector.desc": "Selektory by neměly obsahovat ID, protože tato pravidla jsou příliš pevně spojena s HTML.",
- "scss.lint.ieHack.desc": "IE hacky jsou nezbytné pouze pro podporu Internetu Exploreru verze 7 a starších verzí.",
- "scss.lint.importStatement.desc": "Příkazy importu se nenačítají paralelně.",
- "scss.lint.important.desc": "Nepoužívejte vlastnost !important. Indikuje, že specificita celého kódu CSS není pod kontrolou a vyžaduje refaktorování.",
- "scss.lint.propertyIgnoredDueToDisplay.desc": "Vlastnost je ignorována kvůli vlastnosti display. Například s vlastností display: inline nemají vlastnosti width, height, margin-top, margin-bottom žádný vliv.",
- "scss.lint.universalSelector.desc": "Univerzální selektor (*) bývá pomalý.",
- "scss.lint.unknownAtRules.desc": "Neznámé pravidlo at",
- "scss.lint.unknownProperties.desc": "Neznámá vlastnost",
- "scss.lint.unknownVendorSpecificProperties.desc": "Neznámá vlastnost specifická pro dodavatele",
- "scss.lint.validProperties.desc": "Seznam vlastností, které nejsou ověřovány podle pravidla unknownProperties",
- "scss.lint.vendorPrefix.desc": "Při použití předpony specifické pro dodavatele je potřeba uvést také standardní vlastnost.",
- "scss.lint.zeroUnits.desc": "Pro nulu nejsou potřeba žádné jednotky.",
- "scss.title": "SCSS (Sass)",
- "scss.validate.desc": "Povolí nebo zakáže všechna ověřování.",
- "scss.validate.title": "Řídí ověřování a závažnosti problémů jazyka SCSS."
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-cs/translations/extensions/css.i18n.json b/i18n/vscode-language-pack-cs/translations/extensions/css.i18n.json
deleted file mode 100644
index bb9e1f9820..0000000000
--- a/i18n/vscode-language-pack-cs/translations/extensions/css.i18n.json
+++ /dev/null
@@ -1,16 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "package": {
- "description": "Poskytuje zvýrazňování syntaxe a párování závorek pro soubory CSS, LESS a SCSS.",
- "displayName": "Základy jazyka CSS"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-cs/translations/extensions/debug-auto-launch.i18n.json b/i18n/vscode-language-pack-cs/translations/extensions/debug-auto-launch.i18n.json
deleted file mode 100644
index 43014a1653..0000000000
--- a/i18n/vscode-language-pack-cs/translations/extensions/debug-auto-launch.i18n.json
+++ /dev/null
@@ -1,38 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "dist/extension": {
- "debug.javascript.autoAttach.always.description": "Bude se automaticky připojovat ke každému procesu Node.js spuštěnému v terminálu.",
- "debug.javascript.autoAttach.always.label": "Vždy",
- "debug.javascript.autoAttach.disabled.description": "Automatické připojování je zakázané a nezobrazuje se na stavovém řádku.",
- "debug.javascript.autoAttach.disabled.label": "Zakázáno",
- "debug.javascript.autoAttach.onlyWithFlag.description": "Bude se automaticky připojovat jenom v případě, že je zadaný příznak --inspect.",
- "debug.javascript.autoAttach.onlyWithFlag.label": "Jenom s příznakem",
- "debug.javascript.autoAttach.smart.description": "Bude se automaticky připojovat při spouštění skriptů, které nejsou ve složce node_modules.",
- "debug.javascript.autoAttach.smart.label": "Inteligentní",
- "scope.global": "Zapnout automatické připojování na tomto počítači",
- "scope.workspace": "Zapnout automatické připojování v tomto pracovním prostoru",
- "status.name.auto.attach": "Automatické připojení ladění",
- "status.text.auto.attach.always": "Automaticky připojit: Vždy",
- "status.text.auto.attach.disabled": "Automaticky připojit: zakázáno",
- "status.text.auto.attach.smart": "Automaticky připojit: Inteligentní",
- "status.text.auto.attach.withFlag": "Automaticky připojit: S příznakem",
- "status.tooltip.auto.attach": "Automaticky připojovat k procesům node.js v režimu ladění",
- "tempDisable.disable": "Dočasně zakázat automatické připojování v této relaci",
- "tempDisable.enable": "Znovu povolit automatické připojování",
- "tempDisable.suffix": "Automaticky připojit: zakázáno"
- },
- "package": {
- "description": "Pomocná rutina pro funkci automatického připojení, když nejsou aktivní rozšíření ladění uzlu",
- "displayName": "Automatické připojení ladění uzlů",
- "toggle.auto.attach": "Přepnout automatické připojení"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-cs/translations/extensions/debug-server-ready.i18n.json b/i18n/vscode-language-pack-cs/translations/extensions/debug-server-ready.i18n.json
deleted file mode 100644
index 8eef65e32a..0000000000
--- a/i18n/vscode-language-pack-cs/translations/extensions/debug-server-ready.i18n.json
+++ /dev/null
@@ -1,29 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "dist/extension": {
- "server.ready.nocapture.error": "Identifikátor URI formátu ({0}) používá zástupný symbol pro nahrazování, ale vzor nic nezachytil.",
- "server.ready.placeholder.error": "Identifikátor URI formátu ({0}) musí obsahovat přesně jeden zástupný symbol pro nahrazování."
- },
- "package": {
- "debug.server.ready.action.debugWithChrome.description": "Spustit ladění pomocí ladicího programu pro Chrome",
- "debug.server.ready.action.description": "Co dělat s identifikátorem URI, když je server připravený",
- "debug.server.ready.action.openExternally.description": "Otevřít identifikátor URI externě pomocí výchozí aplikace",
- "debug.server.ready.action.startDebugging.description": "Spusťte další konfiguraci spuštění.",
- "debug.server.ready.debugConfigName.description": "Název konfigurace spuštění, která se má spustit",
- "debug.server.ready.pattern.description": "Server je připravený, pokud se tento vzor zobrazí v konzole ladění. První skupina zachycování musí zahrnovat identifikátor URI nebo číslo portu.",
- "debug.server.ready.serverReadyAction.description": "Až bude připraven laděný program serveru, provést akci podle identifikátoru URI (indikováno odesláním výstupu v podobě „naslouchání na portu 3000“ nebo „Naslouchání na: https://localhost:5001“ do konzoly ladění)",
- "debug.server.ready.uriFormat.description": "Formátovací řetězec, který se používá při vytváření identifikátoru URI z čísla portu. První prvek %s je nahrazen číslem portu.",
- "debug.server.ready.webRoot.description": "Hodnota předaná konfiguraci ladění pro ladicí program pro Chrome",
- "description": "Pokud je laděný server připravený, umožňuje otevřít identifikátor URI v prohlížeči.",
- "displayName": "Akce při připravenosti serveru"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-cs/translations/extensions/docker.i18n.json b/i18n/vscode-language-pack-cs/translations/extensions/docker.i18n.json
deleted file mode 100644
index 25e1dc662d..0000000000
--- a/i18n/vscode-language-pack-cs/translations/extensions/docker.i18n.json
+++ /dev/null
@@ -1,16 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "package": {
- "description": "Poskytuje zvýrazňování syntaxe a párování závorek v souborech Dockeru.",
- "displayName": "Základy jazyka Docker"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-cs/translations/extensions/emmet.i18n.json b/i18n/vscode-language-pack-cs/translations/extensions/emmet.i18n.json
deleted file mode 100644
index b0ad92843e..0000000000
--- a/i18n/vscode-language-pack-cs/translations/extensions/emmet.i18n.json
+++ /dev/null
@@ -1,79 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "dist\\node/abbreviationActions": {
- "wrapWithAbbreviationPrompt": "Zadejte zkratku."
- },
- "package": {
- "command.balanceIn": "Vyvážení (směrem dovnitř)",
- "command.balanceOut": "Vyvážení (směrem ven)",
- "command.decrementNumberByOne": "Snížit o 1",
- "command.decrementNumberByOneTenth": "Snížit o 0,1",
- "command.decrementNumberByTen": "Snížit o 10",
- "command.evaluateMathExpression": "Vyhodnotit matematický výraz",
- "command.incrementNumberByOne": "Zvýšit o 1",
- "command.incrementNumberByOneTenth": "Zvýšit o 0,1",
- "command.incrementNumberByTen": "Zvýšit o 10",
- "command.matchTag": "Přejít na odpovídající pár",
- "command.mergeLines": "Sloučit řádky",
- "command.nextEditPoint": "Přejít na další bod úprav",
- "command.prevEditPoint": "Přejít na předchozí bod úprav",
- "command.reflectCSSValue": "Rozkopírovat hodnotu CSS",
- "command.removeTag": "Odebrat značku",
- "command.selectNextItem": "Vybrat další položku",
- "command.selectPrevItem": "Vybrat předchozí položku",
- "command.showEmmetCommands": "Zobrazit příkazy Emmet",
- "command.splitJoinTag": "Značka rozdělení/spojení",
- "command.toggleComment": "Přepnout komentář",
- "command.updateImageSize": "Aktualizovat velikost obrázku",
- "command.updateTag": "Aktualizovat značku",
- "command.wrapWithAbbreviation": "Zabalit pomocí zkratky",
- "description": "Podpora modulu plug-in Emmet pro VS Code",
- "emmetExclude": "Pole hodnot jazyků, kde by se neměly rozbalovat zkratky Emmet",
- "emmetExtensionsPath": "Pole cest, kde každá cesta může obsahovat Emmet syntaxProfiles nebo soubory výstřižku.\r\nV případě konfliktu profily nebo výstřižky z pozdějších cest přepíší hodnoty dřívějších cest.\r\nDalší informace a ukázku souboru výstřižku najdete na https://code.visualstudio.com/docs/editor/emmet.",
- "emmetExtensionsPathItem": "Cesta obsahující Emmet syntaxProfiles nebo výstřižky.",
- "emmetIncludeLanguages": "Umožňuje povolit zkratky Emmet v jazycích, které nejsou ve výchozím nastavení podporovány. Sem přidejte mapování mezi jazykem a jazykem podporovaným modulem plug-in Emmet.\r\n Příklad: {\"vue-html\": \"html\", \"javascript\": \"javascriptreact\"}",
- "emmetOptimizeStylesheetParsing": "Pokud je nastaveno na hodnotu false, parsuje se celý soubor, aby se zjistilo, jestli je aktuální pozice platná pro rozbalení zkratek Emmet. Pokud je nastaveno na hodnotu true, bude parsován pouze obsah na aktuální pozici v souborech CSS/SCSS/Less.",
- "emmetPreferences": "Předvolby používané k úpravě chování určitých akcí a překladačů v modulu plug-in Emmet",
- "emmetPreferencesAllowCompactBoolean": "Při hodnotě true se vytvoří kompaktní notace logických atributů.",
- "emmetPreferencesBemElementSeparator": "Oddělovač elementů používaný pro třídy při použití filtru BEM",
- "emmetPreferencesBemModifierSeparator": "Oddělovač modifikátorů používaný pro třídy při použití filtru BEM",
- "emmetPreferencesCssAfter": "Symbol, který se má umístit na konec vlastnosti CSS při rozbalování zkratek CSS",
- "emmetPreferencesCssBetween": "Symbol, který se má umístit mezi vlastnost CSS a hodnotu při rozbalování zkratek CSS",
- "emmetPreferencesCssColorShort": "Když se nastaví na true, hodnoty barev, třeba #f, se rozšíří na #fff namísto #ffffff.",
- "emmetPreferencesCssFuzzySearchMinScore": "Minimální skóre (0 až 1), kterého by měla dosáhnout zkratka s částečnou shodou. Nižší hodnoty mohou mít za následek mnoho falešně pozitivních shod, vyšší hodnoty mohou snížit počet možných shod.",
- "emmetPreferencesCssMozProperties": "Vlastnosti CSS oddělené čárkami, které dostanou předponu dodavatele „moz“ při použití ve zkratce Emmet, která začíná znakem „-“. Pokud chcete vždy zabránit použití předpony „moz“, nastavte prázdný řetězec.",
- "emmetPreferencesCssMsProperties": "Vlastnosti CSS oddělené čárkami, které dostanou předponu dodavatele „ms“ při použití ve zkratce Emmet, která začíná znakem „-“. Pokud chcete vždy zabránit použití předpony „ms“, nastavte prázdný řetězec.",
- "emmetPreferencesCssOProperties": "Vlastnosti CSS oddělené čárkami, které dostanou předponu dodavatele „o“ při použití ve zkratce Emmet, která začíná znakem „-“. Pokud chcete vždy zabránit použití předpony „o“, nastavte prázdný řetězec.",
- "emmetPreferencesCssWebkitProperties": "Vlastnosti CSS oddělené čárkami, které dostanou předponu dodavatele „webkit“ při použití ve zkratce Emmet, která začíná znakem „-“. Pokud chcete vždy zabránit použití předpony „webkit“, nastavte prázdný řetězec.",
- "emmetPreferencesFilterCommentAfter": "Definice komentáře, který by měl být umístěn za odpovídající element, když je aplikován filtr komentáře",
- "emmetPreferencesFilterCommentBefore": "Definice komentáře, který by měl být umístěn před odpovídajícím elementem, když je aplikován filtr komentáře",
- "emmetPreferencesFilterCommentTrigger": "Seznam názvů atributů oddělených čárkami, které se musí ve zkratce objevit, aby se aplikoval filtr komentářů",
- "emmetPreferencesFloatUnit": "Výchozí jednotka pro hodnoty float",
- "emmetPreferencesFormatForceIndentTags": "Pole hodnot názvů značek, které by mělo vždy získávat vnitřní odsazení",
- "emmetPreferencesFormatNoIndentTags": "Pole hodnot názvů značek, které by nikdy nemělo získávat vnitřní odsazení",
- "emmetPreferencesIntUnit": "Výchozí jednotka pro hodnoty integer",
- "emmetPreferencesOutputInlineBreak": "Počet sousedních vložených elementů, které se vyžadují, aby se mezi tyto elementy vložila zalomení řádků. Pokud se nastaví na 0, vložené elementy se vždy rozšíří na jeden řádek.",
- "emmetPreferencesOutputReverseAttributes": "Pokud se nastaví na true, při vyhodnocování fragmentů obrací směry slučování atributů.",
- "emmetPreferencesOutputSelfClosingStyle": "Styl samouzavíracích značek: HTML ( ), XML ( ) nebo XHTML ( ).",
- "emmetPreferencesSassAfter": "Symbol, který se má umístit na konec vlastnosti CSS při rozbalování zkratek CSS v souborech Sass",
- "emmetPreferencesSassBetween": "Symbol, který se má umístit mezi vlastnost CSS a hodnotu při rozbalování zkratek CSS v souborech Sass",
- "emmetPreferencesStylusAfter": "Symbol, který se má umístit na konec vlastnosti CSS při rozbalování zkratek CSS v souborech Stylus",
- "emmetPreferencesStylusBetween": "Symbol, který se má umístit mezi vlastnost CSS a hodnotu při rozbalování zkratek CSS v souborech Stylus",
- "emmetShowAbbreviationSuggestions": "Umožňuje zobrazovat možné zkratky Emmet jako návrhy. Nelze použít v šablonách stylů nebo v případě, že má nastavení emmet.showExpandedAbbreviation hodnotu never.",
- "emmetShowExpandedAbbreviation": "Umožňuje zobrazovat rozbalené zkratky Emmet jako návrhy.\r\nMožnost inMarkupAndStylesheetFilesOnly platí pro html, haml, jade, slim, xml, xsl, css, scss, sass, less a stylus.\r\nMožnost always se vztahuje na všechny části souboru bez ohledu na značky/css.",
- "emmetShowSuggestionsAsSnippets": "Pokud má hodnotu true, návrhy Emmet se zobrazí jako fragmenty kódu, což vám umožní uspořádat je podle nastavení #editor.snippetSuggestions#.",
- "emmetSyntaxProfiles": "Definujte profil pro zadanou syntaxi nebo použijte svůj vlastní profil se specifickými pravidly.",
- "emmetTriggerExpansionOnTab": "Pokud je povoleno, zkratky Emmet se rozbalí při stisknutí klávesy Tab.",
- "emmetUseInlineCompletions": "V případě hodnoty true bude Emmet navrhovat rozšíření prostřednictvím vloženého dokončování. Pokud chcete (když má toto nastavení hodnotu true) zabránit tomu, aby se poskytovatel položek k dokončení, který není vložený, zobrazoval tak často, pak u položky other přepněte #editor.quickSuggestions# na inline nebo off.",
- "emmetVariables": "Proměnné, které se mají používat ve fragmentech kódu Emmet"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-cs/translations/extensions/extension-editing.i18n.json b/i18n/vscode-language-pack-cs/translations/extensions/extension-editing.i18n.json
deleted file mode 100644
index fb10aef8dc..0000000000
--- a/i18n/vscode-language-pack-cs/translations/extensions/extension-editing.i18n.json
+++ /dev/null
@@ -1,30 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "dist/extensionLinter": {
- "apiProposalNotListed": "Tento návrh nejde použít, protože produkt definuje pro toto rozšíření pevnou sadu návrhů rozhraní API. Rozšíření můžete otestovat, ale před publikováním se MUSÍTE spojit s týmem VS Code.",
- "dataUrlsNotValid": "Adresy URL dat nepředstavují platný zdroj obrázků.",
- "embeddedSvgsNotValid": "Vložené soubory SVG nepředstavují platný zdroj obrázků.",
- "httpsRequired": "Obrázky musí používat protokol HTTPS.",
- "relativeBadgeUrlRequiresHttpsRepository": "Relativní adresy URL odznáčků vyžadují úložiště s protokolem HTTPS uvedené v tomto souboru package.json.",
- "relativeIconUrlRequiresHttpsRepository": "Ikona vyžaduje, abyste v tomto souboru package.json zadali úložiště s protokolem HTTPS.",
- "relativeUrlRequiresHttpsRepository": "Relativní adresy URL obrázků vyžadují úložiště s protokolem HTTPS uvedené v tomto souboru package.json.",
- "svgsNotValid": "Obrázky SVG nepředstavují platný zdroj obrázků."
- },
- "dist/packageDocumentHelper": {
- "languageSpecificEditorSettings": "Nastavení editoru specifická pro daný jazyk",
- "languageSpecificEditorSettingsDescription": "Přepsat nastavení editoru pro daný jazyk"
- },
- "package": {
- "description": "Poskytuje možnosti lintování pro vytváření rozšíření.",
- "displayName": "Vytváření rozšíření"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-cs/translations/extensions/fsharp.i18n.json b/i18n/vscode-language-pack-cs/translations/extensions/fsharp.i18n.json
deleted file mode 100644
index 1d27d8dec1..0000000000
--- a/i18n/vscode-language-pack-cs/translations/extensions/fsharp.i18n.json
+++ /dev/null
@@ -1,16 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "package": {
- "description": "Poskytuje fragmenty kódu, zvýrazňování syntaxe, párování závorek a sbalování kódu v souborech jazyka F#.",
- "displayName": "Základy jazyka F#"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-cs/translations/extensions/git-base.i18n.json b/i18n/vscode-language-pack-cs/translations/extensions/git-base.i18n.json
deleted file mode 100644
index 3b245409e9..0000000000
--- a/i18n/vscode-language-pack-cs/translations/extensions/git-base.i18n.json
+++ /dev/null
@@ -1,30 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "dist/remoteSource": {
- "branch name": "Název větve",
- "error": "{0} Chyba: {1}",
- "none found": "Nenašla se žádná vzdálená úložiště.",
- "pick url": "Zvolte adresu URL, ze které chcete klonovat.",
- "provide url": "Zadejte adresu URL úložiště.",
- "provide url or pick": "Zadejte adresu URL úložiště nebo vyberte zdroj úložiště.",
- "recently opened": "naposledy otevřeno",
- "remote sources": "vzdálené zdroje",
- "type to filter": "Název úložiště",
- "type to search": "Název úložiště (zadejte hledaný text)",
- "url": "Adresa URL"
- },
- "package": {
- "command.api.getRemoteSources": "Načíst vzdálené prostředky",
- "description": "Statické příspěvky a nástroje pro výběr v Gitu.",
- "displayName": "Základ Gitu"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-cs/translations/extensions/git-ui.i18n.json b/i18n/vscode-language-pack-cs/translations/extensions/git-ui.i18n.json
deleted file mode 100644
index ae573258e4..0000000000
--- a/i18n/vscode-language-pack-cs/translations/extensions/git-ui.i18n.json
+++ /dev/null
@@ -1,16 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "package": {
- "displayName": "Uživatelské rozhraní Git",
- "description": "Integrace s uživatelským rozhraním Git SCM"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-cs/translations/extensions/git.i18n.json b/i18n/vscode-language-pack-cs/translations/extensions/git.i18n.json
deleted file mode 100644
index 0c1fd97375..0000000000
--- a/i18n/vscode-language-pack-cs/translations/extensions/git.i18n.json
+++ /dev/null
@@ -1,577 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "dist/actionButton": {
- "scm button commit and push title": "{0} Potvrdit a odeslat",
- "scm button commit and push tooltip": "Potvrdit a nasdílet změny",
- "scm button commit and sync title": "{0} Potvrdit a synchronizovat",
- "scm button commit and sync tooltip": "Potvrdit a synchronizovat změny",
- "scm button commit title": "{0} Potvrdit",
- "scm button commit to new branch and push tooltip": "Potvrdit změny do nové větve a nasdílet změny",
- "scm button commit to new branch and sync tooltip": "Potvrdit změny do nové větve a synchronizovat změny",
- "scm button commit to new branch tooltip": "Potvrdit změny do nové větve",
- "scm button commit tooltip": "Potvrdit změny",
- "scm button committing and pushing tooltip": "Potvrzování a sdílení změn...",
- "scm button committing and synching tooltip": "Potvrzování a synchronizace změn...",
- "scm button committing to new branch and pushing tooltip": "Potvrzování změn do nové větve a nasdílení změn...",
- "scm button committing to new branch and synching tooltip": "Potvrzování změn do nové větve a synchronizace...",
- "scm button committing to new branch tooltip": "Potvrzují se změny do nové větve...",
- "scm button committing tooltip": "Potvrzují se změny...",
- "scm button continue title": "{0} Continue",
- "scm button continue tooltip": "Continue Rebase",
- "scm button continuing tooltip": "Continuing Rebase...",
- "scm button publish branch": "Publikovat Branch",
- "scm button publish branch running": "Branch se publikuje",
- "scm button sync description": "{0} Synchronizovat změny{1}{2}",
- "scm publish branch action button title": "{0} Publikovat Branch",
- "scm secondary button commit": "Potvrdit",
- "syncing changes": "Synchronizují se změny"
- },
- "dist/askpass-main": {
- "missOrInvalid": "Chybějící nebo neplatné přihlašovací údaje"
- },
- "dist/autofetch": {
- "no": "Ne",
- "not now": "Požádat později",
- "suggest auto fetch": "Chcete, aby Code [pravidelně spouštěl příkaz git fetch]({0})?",
- "yes": "Ano"
- },
- "dist/commands": {
- "HEAD not available": "Verze {0} v oddílu HEAD není k dispozici.",
- "Theirs": "Jejich",
- "Yours": "Váš",
- "add": "Přidat do pracovního prostoru",
- "add remote": "Přidat nové vzdálené úložiště...",
- "addFrom": "Přidat vzdálené úložiště z adresy URL",
- "addfrom": "Přidat vzdálené úložiště z {0}",
- "addremote": "Přidat vzdálené úložiště",
- "always": "Vždy",
- "are you sure": "Tato akce vytvoří úložiště Git v {0}. Opravdu chcete pokračovat?",
- "auth failed": "Selhalo ověření ve vzdáleném úložišti Git.",
- "auth failed specific": "Selhalo ověření ve vzdáleném úložišti Git:\r\n\r\n{0}",
- "branch already exists": "Větev s názvem {0} už existuje.",
- "branch name": "Název větve",
- "branch name does not match sanitized": "Nová větev bude {0}",
- "branch name format invalid": "Název větve musí odpovídat regulárnímu výrazu: {0}.",
- "cant push": "Odkazy nelze nasdílet do vzdáleného úložiště. Před integrací změn zkuste nejdříve spustit příkaz Pull.",
- "checkout detached": "Rezervace se odpojila...",
- "choose": "Zvolit složku...",
- "clean repo": "Před rezervováním prosím vyčistěte pracovní strom úložiště.",
- "clonefrom": "Klonovat z {0}",
- "cloning": "Klonuje se úložiště Git {0}...",
- "commit": "Potvrdit připravené změny",
- "commit anyway": "Vytvořit prázdné potvrzení",
- "commit changes": "Přesto potvrdit",
- "commit hash": "Hodnota hash potvrzení",
- "commit message": "Zpráva o potvrzení",
- "commit to branch": "Potvrdit do nové větve",
- "commitMessageWithHeadLabel2": "Zpráva (potvrdit na {0})",
- "confirm branch protection commit": "Pokoušíte se potvrdit změny do chráněné větve a možná nemáte oprávnění k odeslání změn do vzdáleného úložiště.\r\n\r\nJak chcete pokračovat?",
- "confirm delete": "Opravdu chcete ODSTRANIT soubor {0}?\r\nOdstranění je NEVRATNÉ!\r\nKdyž budete pokračovat, tento soubor se NAVŽDY ZTRATÍ.",
- "confirm delete multiple": "Opravdu chcete ODSTRANIT soubory {0}?\r\nOdstranění je NEVRATNÉ!\r\nKdyž budete pokračovat, tyto soubory se NAVŽDY ZTRATÍ.",
- "confirm discard": "Opravdu chcete zahodit změny v {0}?",
- "confirm discard all": "Opravdu chcete zahodit VŠECHNY změny v souborech (celkem {0})?\r\nOdstranění je NEVRATNÉ!\r\nKdyž budete pokračovat, vaše aktuální pracovní sada se NAVŽDY ZTRATÍ.",
- "confirm discard all 2": "{0}\r\n\r\nThis is IRREVERSIBLE, your current working set will be FOREVER LOST.",
- "confirm discard all single": "Opravdu chcete zahodit změny v {0}?",
- "confirm discard multiple": "Opravdu chcete zahodit změny v souborech (celkem {0})?",
- "confirm empty commit": "Are you sure you want to create an empty commit?",
- "confirm force delete branch": "Větev {0} není úplně sloučená. Chcete ji přesto odstranit?",
- "confirm force push": "Chystáte se vynutit nasdílení svých změn. Může to být destruktivní akce, při které se můžou nechtěně přepsat změny provedené jinými uživateli.\r\n\r\nOpravdu chcete pokračovat?",
- "confirm no verify commit": "Chystáte se potvrdit změny bez ověření. Tím přeskočíte hooky typu pre-commit, což může být nežádoucí.\r\n\r\nOpravdu chcete pokračovat?",
- "confirm publish branch": "Větev {0} nemá žádnou vzdálenou větev. Chcete tuto větev publikovat?",
- "confirm restore": "Opravdu chcete obnovit {0}?",
- "confirm restore multiple": "Opravdu chcete obnovit soubory (celkem {0})?",
- "confirm stage file with merge conflicts": "Opravdu chcete připravit soubor {0} s konflikty sloučení?",
- "confirm stage files with merge conflicts": "Opravdu chcete připravit soubory (celkem {0}) s konflikty sloučení?",
- "create branch": "Vytvořit novou větev...",
- "create branch from": "Vytvořit novou větev z...",
- "create repo": "Inicializovat úložiště",
- "current": "Aktuální",
- "default": "Výchozí",
- "delete": "Odstranit soubor",
- "delete branch": "Odstranit větev",
- "delete file": "Odstranit soubor",
- "delete files": "Odstranit soubory",
- "deleted by them": "Protistrana soubor {0} odstranila a místní strana ho upravila.\r\n\r\nCo chcete udělat?",
- "deleted by us": "Místní strana soubor {0} odstranila a protistrana ho upravila.\r\n\r\nCo chcete udělat?",
- "discard": "Zahodit změny",
- "discardAll": "Zahodit všechny soubory (celkem {0})",
- "discardAll multiple": "Zahodit 1 soubor",
- "drop all stashes": "Opravdu chcete přemístit VŠECHNA dočasná úložiště? Existuje určité množství ( {0} ) dočasných úložišť, které podlehnou vyřazení, a JEJICH OBNOVENÍ NEMUSÍ BÝT MOŽNÉ.",
- "drop one stash": "Opravdu chcete přemístit VŠECHNA dočasná úložiště? Existuje 1 dočasné úložiště, které podlehne vyřazení, a JEHO OBNOVENÍ NEMUSÍ BÝT MOŽNÉ.",
- "empty commit": "Operace potvrzení se zrušila, protože zpráva potvrzení byla prázdná.",
- "force": "Vynutit rezervaci",
- "force push not allowed": "Vynucení nasdílení změn není povolené. Povolte ho prosím pomocí nastavení git.allowForcePush.",
- "git error": "Chyba Gitu",
- "git error details": "Git: {0}",
- "git.timeline.openDiffCommand": "Otevřít porovnání",
- "git.title.diff": "{0} ↔ {1}",
- "git.title.diffRefs": "{0} ({1}) ↔ {0} ({2})",
- "git.title.index": "{0} (index)",
- "git.title.ref": "{0} ({1})",
- "git.title.workingTree": "{0} (pracovní strom)",
- "init": "Vyberte složku pracovního prostoru, kde chcete inicializovat úložiště Git.",
- "init repo": "Inicializovat úložiště",
- "invalid branch name": "Neplatný název větve",
- "keep ours": "Zachovat verzi místní strany",
- "keep theirs": "Zachovat verzi protistrany",
- "learn more": "Další informace",
- "local changes": "Rezervací se přepíšou vaše místní změny.",
- "merge commit": "Poslední potvrzení je potvrzení sloučení. Opravdu chcete akci vrátit zpět?",
- "merge conflicts": "Došlo ke konfliktům sloučení. Před potvrzením je vyřešte.",
- "missing user info": "Nakonfigurujte v Gitu nastavení user.name a user.e-mail.",
- "never": "Nikdy",
- "never again": "OK, příště už nezobrazovat",
- "never ask again": "OK, dotaz už příště nezobrazovat",
- "no changes": "Nejsou k dispozici žádné změny, které by bylo možné potvrdit.",
- "no changes stash": "Neexistují žádné změny, které by bylo možné uložit do dočasného úložiště.",
- "no more": "Nelze vrátit zpět, protože oddíl HEAD neodkazuje na žádné potvrzení.",
- "no rebase": "Neprobíhá žádné přenesení změn.",
- "no remotes added": "Vaše úložiště nemá žádné vzdálené úložiště.",
- "no remotes to fetch": "Pro toto úložiště není nakonfigurované žádné vzdálené úložiště pro načítání.",
- "no remotes to publish": "Pro vaše úložiště není nakonfigurované žádné vzdálené úložiště pro publikování.",
- "no remotes to pull": "Pro vaše úložiště není nakonfigurované žádné vzdálené úložiště pro přijetí změn.",
- "no remotes to push": "Pro vaše úložiště není nakonfigurované žádné vzdálené úložiště pro nasdílení změn.",
- "no staged changes": "Neexistují žádné připravené změny, které by bylo možné potvrdit.\r\n\r\nChcete připravit všechny své změny a potvrdit je přímo?",
- "no stashes": "V úložišti nejsou žádná dočasná úložiště.",
- "no tags": "Toto úložiště nemá žádné značky.",
- "no verify commit not allowed": "Potvrzení bez ověření nejsou povolená. Povolte je prosím nastavením git.allowNoVerifyCommit.",
- "nobranch": "Pokud chcete nasdílet změny do vzdálené úložiště, rezervujte prosím větev.",
- "ok": "OK",
- "open git log": "Otevřít protokol Gitu",
- "open repo": "Otevřít úložiště",
- "openrepo": "Otevřít",
- "openreponew": "Otevřít v novém okně",
- "pick branch pull": "Vyberte větev, ze které chcete přijmout změny.",
- "pick provider": "Vyberte zprostředkovatele, do kterého chcete publikovat větev {0}:",
- "pick remote": "Vyberte vzdálené úložiště, do kterého chcete publikovat větev {0}:",
- "pick remote pull repo": "Vyberte vzdálené úložiště, ze kterého chcete přijmout změny.",
- "pick stash to apply": "Vyberte dočasné úložiště, které se má použít.",
- "pick stash to drop": "Vyberte dočasné úložiště, které se má zahodit.",
- "pick stash to pop": "Vyberte dočasné úložiště, na které chcete přejít.",
- "proposeopen": "Chcete otevřít naklonované úložiště?",
- "proposeopen init": "Chcete otevřít inicializované úložiště?",
- "proposeopen2": "Chcete naklonované úložiště otevřít nebo ho přidat do aktuálního pracovního prostoru?",
- "proposeopen2 init": "Chcete inicializované úložiště otevřít nebo ho přidat do aktuálního pracovního prostoru?",
- "provide branch name": "Zadejte prosím nový název větve.",
- "provide commit hash": "Zadejte prosím hodnotu hash potvrzení.",
- "provide commit message": "Zadejte prosím zprávu potvrzení.",
- "provide remote name": "Zadejte prosím název vzdáleného úložiště.",
- "provide stash message": "Volitelně můžete zadat zprávu pro dočasné úložiště.",
- "provide tag message": "Zadejte prosím zprávu pro anotaci značky.",
- "provide tag name": "Zadejte prosím název značky.",
- "publish to": "Publikovat do {0}",
- "remote already exists": "Vzdálené úložiště {0} už existuje.",
- "remote branch at": "Vzdálená větev v {0}",
- "remote name": "Název vzdáleného úložiště",
- "remote name format invalid": "Neplatný formát názvu vzdáleného úložiště",
- "remove remote": "Vyberte vzdálené úložiště, které chcete odebrat.",
- "repourl": "Klonovat z adresy URL",
- "restore file": "Obnovit soubor",
- "restore files": "Obnovit soubory",
- "save and commit": "Uložit vše a potvrdit",
- "save and stash": "Uložit vše a dočasně uložit",
- "select a branch to merge from": "Vyberte větev, ze které se má provést sloučení.",
- "select a branch to rebase onto": "Vyberte větev, do které chcete přenést změny.",
- "select a ref to checkout": "Vyberte odkaz, který se má rezervovat.",
- "select a ref to checkout detached": "Vyberte odkaz, který se má rezervovat v odpojeném režimu.",
- "select a ref to create a new branch from": "Vyberte odkaz, ze kterého se má vytvořit větev {0}.",
- "select a tag to delete": "Vyberte značku, která se má odstranit.",
- "select branch to delete": "Vyberte větev, která se má odstranit.",
- "select log level": "Vybrat úroveň protokolu",
- "selectFolder": "Vybrat umístění úložiště",
- "show command output": "Zobrazit výstup příkazu",
- "stash": "Přesto dočasně uložit",
- "stash merge conflicts": "Při aplikování dočasného úložiště došlo ke konfliktům sloučení.",
- "stash message": "Zpráva k dočasnému úložišti",
- "stashcheckout": "Dočasné uložit a rezervovat",
- "sure drop": "Opravdu chcete odstranit tuto položku dočasného ukládání: {0}?",
- "sync is unpredictable": "Tato akce přijme a nasdílí potvrzení z {0} / do {1}.",
- "tag at": "Značka v {0}",
- "tag message": "Zpráva",
- "tag name": "Název značky",
- "there are untracked files": "Existují nesledované soubory (celkem {0}), které se v případě jejich zahození ODSTRANÍ Z DISKU.",
- "there are untracked files single": "Následující nesledovaný soubor se v případě jeho zahození ODSTRANÍ Z DISKU: {0}.",
- "undo commit": "Vrátit zpět potvrzení sloučení",
- "unsaved files": "There are {0} unsaved files.\r\n\r\nWould you like to save them before committing?",
- "unsaved files single": "The following file has unsaved changes which won't be included in the commit if you proceed: {0}.\r\n\r\nWould you like to save it before committing?",
- "unsaved stash files": "Existují neuložené soubory (celkem {0}).\r\n\r\nChcete je před dočasným uložením uložit?",
- "unsaved stash files single": "Následující soubor obsahuje neuložené změny, které v případě, že budete pokračovat, nebudou zahrnuté do dočasného uložení: {0}.\r\n\r\nChcete soubor před dočasným uložením uložit?",
- "warn untracked": "This will DELETE {0} untracked files!\r\nThis is IRREVERSIBLE!\r\nThese files will be FOREVER LOST.",
- "yes": "Ano",
- "yes discard tracked": "Zahodit 1 sledovaný soubor",
- "yes discard tracked multiple": "Zahodit sledované soubory (celkem {0})",
- "yes never again": "Ano, příště už nezobrazovat"
- },
- "dist/log": {
- "gitLogLevel": "Úroveň protokolování: {0}"
- },
- "dist/main": {
- "downloadgit": "Stáhnout Git",
- "git20": "Zdá se, že máte nainstalované úložiště Git {0}. Code funguje nejlépe s úložištěm Git verze >= 2.",
- "git2526": "Nainstalované úložiště Git {0} má známé problémy. Aktualizujte si prosím Git na verzi >= 2.27, aby funkce Git fungovaly správně.",
- "neverShowAgain": "Znovu nezobrazovat",
- "notfound": "Úložiště Git se nenašlo. Nainstalujte ho nebo ho nakonfigurujte pomocí nastavení git.path.",
- "skipped": "Vynechané nalezeno Git v: {0}",
- "updateGit": "Aktualizovat Git",
- "using git": "Používá se úložiště Git {0} z {1}",
- "validating": "Ověřování nalezeného gitu v: {0}"
- },
- "dist/model": {
- "no repositories": "K dispozici nejsou žádná úložiště.",
- "not supported": "V nastavení git.scanRepositories se nepodporují absolutní cesty.",
- "pick repo": "Zvolte úložiště.",
- "repoOnHomeDriveRootWarning": "Nepodařilo se automaticky otevřít úložiště Git na {0}. Pokud chcete toto úložiště Git otevřít, otevřete ho přímo jako složku v nástroji VS Code.",
- "too many submodules": "Úložiště {0} má dílčí moduly (celkem {1}), které se neotevřou automaticky. Každý dílčí modul můžete otevřít jednotlivě otevřením odpovídajícího souboru obsaženého v úložišti."
- },
- "dist/postCommitCommands": {
- "scm secondary button commit and push": "Potvrdit a odeslat",
- "scm secondary button commit and sync": "Potvrdit a synchronizovat"
- },
- "dist/repository": {
- "add known": "Chcete přidat {0} do souboru .gitignore?",
- "added by them": "Konflikt: Přidáno protistranou",
- "added by us": "Konflikt: Přidáno místní stranou",
- "always pull": "Vždy přijmout změny",
- "both added": "Konflikt: Obojí přidáno",
- "both deleted": "Konflikt: Obojí odstraněno",
- "both modified": "Konflikt: Obojí změněno",
- "changes": "Změny",
- "commit": "Potvrdit",
- "commit in rebase": "Nemůžete změnit zprávu potvrzení v průběhu přenášení změn. Dokončete prosím operaci přenesení změn a místo toho použijte interaktivní přenesení změn.",
- "commitMessage": "Zpráva ({0} pro potvrzení)",
- "commitMessageCountdown": "Zbývající počet znaků na aktuálním řádku: {0}",
- "commitMessageWarning": "Počet znaků nad {1} na aktuálním řádku: {0}",
- "commitMessageWhitespacesOnlyWarning": "Aktuální zpráva potvrzení obsahuje pouze prázdné znaky.",
- "commitMessageWithHeadLabel": "Zpráva ({0} k potvrzení na {1})",
- "deleted": "Odstraněno",
- "deleted by them": "Konflikt: Odstraněno protistranou",
- "deleted by us": "Konflikt: Odstraněno místní stranou",
- "dont pull": "Nepřijímat změny",
- "git.title.deleted": "{0} (odstraněno)",
- "git.title.index": "{0} (index)",
- "git.title.ours": "{0} (místní strana)",
- "git.title.theirs": "{0} (protistrana)",
- "git.title.untracked": "{0} (nesledováno)",
- "git.title.workingTree": "{0} (pracovní strom)",
- "huge": "Úložiště Git v umístění {0} obsahuje příliš mnoho aktivních změn. Bude povolena pouze podmnožina funkcí Gitu.",
- "ignored": "Ignorováno",
- "index added": "Přidán index",
- "index copied": "Zkopírován index",
- "index deleted": "Odstraněn index",
- "index modified": "Změněn index",
- "index renamed": "Přejmenován index",
- "intent to add": "Záměr, který se má přidat",
- "merge changes": "Sloučit změny",
- "modified": "Změněno",
- "neveragain": "Znovu nezobrazovat",
- "no": "Ne",
- "ok": "OK",
- "open": "Otevřít",
- "open.merge": "Otevřít sloučení",
- "pull": "Přijetí změn",
- "pull branch maybe rebased": "Vypadá to, že se přenesly změny aktuální větve {0}. Opravdu stále chcete do této větve přijmout změny?",
- "pull maybe rebased": "Vypadá to, že se přenesly změny aktuální větve. Opravdu stále chcete do této větve přijmout změny?",
- "pull n": "Přijmout {0} potvrzení z {1}/{2}",
- "pull push n": "Přijmout {0} a nasdílet {1} potvrzení mezi {2}/{3}",
- "push n": "Nasdílet {0} potvrzení do {1}/{2}",
- "push success": "Změny byly úspěšně nasdíleny.",
- "staged changes": "Připravené změny",
- "sync changes": "Synchronizovat změny",
- "sync is unpredictable": "Probíhá synchronizace. Zrušení může způsobit vážné škody v úložišti.",
- "tooManyChangesWarning": "Bylo zjištěno příliš mnoho změn. Níže se zobrazí jenom první {0} změny.",
- "untracked": "Nesledováno",
- "untracked changes": "Nesledované změny",
- "yes": "Ano"
- },
- "dist/statusbar": {
- "checkout": "Zarezervovat větev nebo značku...",
- "publish branch": "Publikovat větev",
- "publish to": "Publikovat do {0}",
- "publish to...": "Publikovat do...",
- "rebasing": "Přenášení změn",
- "syncing changes": "Synchronizují se změny..."
- },
- "dist/timelineProvider": {
- "git.timeline.email": "E-mail",
- "git.timeline.openComparison": "Otevřít porovnání",
- "git.timeline.source": "Historie Gitu",
- "git.timeline.stagedChanges": "Připravené změny",
- "git.timeline.uncommitedChanges": "Nepotvrzené změny",
- "git.timeline.you": "Vy"
- },
- "package": {
- "colors.added": "Barva pro přidané prostředky",
- "colors.conflict": "Barva pro prostředky s konflikty",
- "colors.deleted": "Barva pro odstraněné prostředky",
- "colors.ignored": "Barva pro ignorované prostředky",
- "colors.modified": "Barva pro upravené prostředky",
- "colors.renamed": "Barva pro přejmenované nebo zkopírované prostředky",
- "colors.stageDeleted": "Barva pro odstraněné prostředky, které byly připraveny",
- "colors.stageModified": "Barva pro změněné prostředky, které byly připraveny",
- "colors.submodule": "Barva pro prostředky dílčího modulu",
- "colors.untracked": "Barva pro nesledované prostředky",
- "command.addRemote": "Přidat vzdálené úložiště...",
- "command.api.getRemoteSources": "Načíst vzdálené prostředky",
- "command.api.getRepositories": "Načíst úložiště",
- "command.api.getRepositoryState": "Načíst stav úložiště",
- "command.branch": "Vytvořit větev...",
- "command.branchFrom": "Vytvořit větev z...",
- "command.checkout": "Přechod na aktuální…",
- "command.checkoutDetached": "Rezervovat do (odpojeno)...",
- "command.cherryPick": "Výběr určitých položek...",
- "command.clean": "Zahodit změny",
- "command.cleanAll": "Zahodit všechny změny",
- "command.cleanAllTracked": "Zahodit všechny sledované změny",
- "command.cleanAllUntracked": "Zahodit všechny nesledované změny",
- "command.clone": "Klonovat",
- "command.cloneRecursive": "Klonovat (rekurzivně)",
- "command.close": "Zavřít úložiště",
- "command.closeAllDiffEditors": "Zavřít všechny editory rozdílů",
- "command.commit": "Potvrdit",
- "command.commitAll": "Potvrdit vše",
- "command.commitAllAmend": "Potvrdit vše (upravit)",
- "command.commitAllAmendNoVerify": "Potvrdit vše (pozměnit, bez ověření)",
- "command.commitAllNoVerify": "Potvrdit vše (bez ověření)",
- "command.commitAllSigned": "Potvrdit vše (finálně verifikováno)",
- "command.commitAllSignedNoVerify": "Potvrdit vše (odhlášení, bez ověření)",
- "command.commitEmpty": "Potvrdit prázdné",
- "command.commitEmptyNoVerify": "Potvrdit prázdné (bez ověření)",
- "command.commitMessageAccept": "Přijmout zprávu potvrzení",
- "command.commitMessageDiscard": "Zahodit zprávu potvrzení",
- "command.commitNoVerify": "Potvrdit (bez ověření)",
- "command.commitStaged": "Potvrdit připravené",
- "command.commitStagedAmend": "Potvrdit připravené (upravit)",
- "command.commitStagedAmendNoVerify": "Připraveno na potvrzení (pozměnit, bez ověření)",
- "command.commitStagedNoVerify": "Připraveno na potvrzení (bez ověření)",
- "command.commitStagedSigned": "Potvrdit připravené (finálně verifikováno)",
- "command.commitStagedSignedNoVerify": "Připraveno na potvrzení (odhlášení, bez ověření)",
- "command.createTag": "Vytvořit značku",
- "command.deleteBranch": "Odstranit větev...",
- "command.deleteTag": "Odstranit značku",
- "command.fetch": "Načíst",
- "command.fetchAll": "Načíst ze všech vzdálených úložišť",
- "command.fetchPrune": "Načíst (vyřadit)",
- "command.git.acceptMerge": "Přijmout sloučení",
- "command.ignore": "Přidat do souboru .gitignore",
- "command.init": "Inicializovat úložiště",
- "command.merge": "Sloučit větev...",
- "command.openAllChanges": "Otevřít všechny změny",
- "command.openChange": "Otevřít změny",
- "command.openFile": "Otevřít soubor",
- "command.openHEADFile": "Otevřít soubor (HEAD)",
- "command.openRepository": "Otevřít úložiště",
- "command.publish": "Publikovat větev...",
- "command.pull": "Přijetí změn",
- "command.pullFrom": "Přijmout změny z...",
- "command.pullRebase": "Přijmout změny (přenést)",
- "command.push": "Nasdílení změn",
- "command.pushFollowTags": "Nasdílet změny (sledovat značky)",
- "command.pushFollowTagsForce": "Nasdílet změny (sledovat značky, vynutit)",
- "command.pushForce": "Nasdílet změny (vynutit)",
- "command.pushTags": "Nasdílet změny značek",
- "command.pushTo": "Nasdílet změny do...",
- "command.pushToForce": "Nasdílet změny do... (vynutit)",
- "command.rebase": "Přenést změny větve...",
- "command.rebaseAbort": "Přerušit přenášení změn",
- "command.refresh": "Aktualizovat",
- "command.removeRemote": "Odebrat vzdálené úložiště",
- "command.rename": "Přejmenovat",
- "command.renameBranch": "Přejmenovat větev...",
- "command.restoreCommitTemplate": "Obnovit šablonu potvrzení",
- "command.revealFileInOS.linux": "Otevřít nadřazenou složku",
- "command.revealFileInOS.mac": "Zobrazit ve Finderu",
- "command.revealFileInOS.windows": "Zobrazit v Průzkumníkovi souborů",
- "command.revealInExplorer": "Zobrazit v zobrazení Průzkumníka",
- "command.revertChange": "Obnovit změnu",
- "command.revertSelectedRanges": "Obnovit vybrané rozsahy",
- "command.setLogLevel": "Nastavit úroveň protokolu...",
- "command.showOutput": "Zobrazit výstup Gitu",
- "command.stage": "Připravit změny",
- "command.stageAll": "Připravit všechny změny",
- "command.stageAllMerge": "Připravit všechny změny sloučení",
- "command.stageAllTracked": "Připravit všechny sledované změny",
- "command.stageAllUntracked": "Připravit všechny nesledované změny",
- "command.stageChange": "Připravit změnu",
- "command.stageSelectedRanges": "Připravit vybrané rozsahy",
- "command.stash": "Dočasné úložiště",
- "command.stashApply": "Použít dočasné úložiště...",
- "command.stashApplyLatest": "Použít poslední dočasné úložiště",
- "command.stashDrop": "Zrušit dočasné úložiště...",
- "command.stashDropAll": "Přemístit všechna dočasná úložiště",
- "command.stashIncludeUntracked": "Dočasně uložit (zahrnout nesledované)",
- "command.stashPop": "Přejít na dočasné úložiště...",
- "command.stashPopLatest": "Přejít na nejnovější dočasné úložiště",
- "command.sync": "Synchronizovat",
- "command.syncRebase": "Synchronizovat (přenést změny)",
- "command.timelineCompareWithSelected": "Porovnat s vybraným",
- "command.timelineCopyCommitId": "Kopírovat ID potvrzení změn",
- "command.timelineCopyCommitMessage": "Kopírovat zprávu potvrzení",
- "command.timelineOpenDiff": "Otevřít změny",
- "command.timelineSelectForCompare": "Vybrat pro porovnání",
- "command.undoCommit": "Vrátit zpět poslední potvrzení",
- "command.unstage": "Zrušit přípravu změn",
- "command.unstageAll": "Zrušit přípravu všech změn",
- "command.unstageSelectedRanges": "Zrušit přípravu vybraných rozsahů",
- "config.allowForcePush": "Určuje, jestli je povoleno vynucené nasdílení změn (se zapůjčením nebo bez něj).",
- "config.allowNoVerifyCommit": "Určuje, jestli jsou povolena potvrzení bez spouštění hooků typu pre-commit a commit-msg.",
- "config.alwaysShowStagedChangesResourceGroup": "Vždy zobrazovat skupinu prostředků Připravené změny",
- "config.alwaysSignOff": "Řídí příznak finální verifikace pro všechna potvrzení změn.",
- "config.autoRepositoryDetection": "Nakonfiguruje, kdy se mají automaticky detekovat úložiště.",
- "config.autoRepositoryDetection.false": "Zakáže automatické prohledávání úložiště.",
- "config.autoRepositoryDetection.openEditors": "Umožňuje vyhledat nadřazené složky otevřených souborů.",
- "config.autoRepositoryDetection.subFolders": "Umožňuje vyhledat podsložky otevřené složky.",
- "config.autoRepositoryDetection.true": "Umožňuje vyhledat podsložky aktuálně otevřené složky a nadřazené složky otevřených souborů.",
- "config.autoStash": "Umožňuje dočasně uložit změny před přijetím změn a po úspěšném přijetí změn je obnovit.",
- "config.autofetch": "Když se nastaví na true, potvrzení se budou automaticky načítat z výchozího vzdáleného úložiště aktuálního úložiště Gitu. Nastavením na all se načtou všechna vzdálená úložiště.",
- "config.autofetchPeriod": "Doba trvání v sekundách mezi každým automatickým načtením z úložiště Git, když je povolené nastavení #git.autofetch#",
- "config.autorefresh": "Určuje, jestli je povolena automatická aktualizace.",
- "config.branchPrefix": "Předpona použitá při vytváření nové větve.",
- "config.branchProtection": "Seznam chráněných větví. Ve výchozím nastavení se před potvrzením změn do chráněné větve zobrazí dotaz. Tento dotaz lze řídit pomocí nastavení #git.branchProtectionPrompt#.",
- "config.branchProtectionPrompt": "Určuje, jestli se před potvrzením změn v chráněné větvi zobrazí dotaz.",
- "config.branchProtectionPrompt.alwaysCommit": "Vždy potvrzovat změny v chráněné větvi",
- "config.branchProtectionPrompt.alwaysCommitToNewBranch": "Vždy potvrzovat změny do nové větve",
- "config.branchProtectionPrompt.alwaysPrompt": "Před potvrzením změn v chráněné větvi se vždy dotazovat",
- "config.branchRandomNameDictionary": "Seznam slovníků používaných u náhodně generovaného názvu větve. Každá hodnota představuje slovník použitý k vygenerování segmentu názvu větve. Podporované slovníky: „přídavná jména“, „zvířata“, „barvy“ a „čísla“.",
- "config.branchRandomNameDictionary.adjectives": "Náhodné přídavné jméno",
- "config.branchRandomNameDictionary.animals": "Náhodný název zvířete",
- "config.branchRandomNameDictionary.colors": "Náhodný název barvy",
- "config.branchRandomNameDictionary.numbers": "Náhodné číslo od 100 do 999",
- "config.branchRandomNameEnable": "Řídí, jestli se při vytváření nové větve vygeneruje náhodný název.",
- "config.branchSortOrder": "Určuje pořadí řazení pro větve.",
- "config.branchValidationRegex": "Regulární výraz, který má ověřovat nové názvy větví",
- "config.branchWhitespaceChar": "Znak, který nahradí prázdné znaky v nových názvech větví a oddělí segmenty náhodně generovaného názvu větve.",
- "config.checkoutType": "Určuje, jaký typ odkazů Git se má zobrazit při provedení akce Rezervovat do.",
- "config.checkoutType.local": "Místní větve",
- "config.checkoutType.remote": "Vzdálené větve",
- "config.checkoutType.tags": "Značky",
- "config.closeDiffOnOperation": "Určuje, jestli se má editor rozdílů automaticky uzavřít, když se změny dočasně uloží, potvrdí, zahodí, připraví nebo když dojde ke zrušení jejich přípravy.",
- "config.commandsToLog": "Seznam příkazů Gitu (např. potvrdit, sdílet změny), které by měly jejich stdout zaprotokolované do [git output](command:git.showOutput). Pokud má příkaz git nakonfigurované zavěšení na straně klienta, bude i stdout zavěšení na straně klienta zaprotokolované do [git output](command:git.showOutput).",
- "config.confirmEmptyCommits": "Vždy potvrzovat vytváření prázdných potvrzení pro příkaz Git: Commit Empty",
- "config.confirmForcePush": "Určuje, jestli se má žádat o potvrzení před nasdílením změn s vynucením.",
- "config.confirmNoVerifyCommit": "Určuje, jestli se má před potvrzením bez ověření zobrazit žádost o potvrzení.",
- "config.confirmSync": "Potvrdit před synchronizací úložišť Git",
- "config.countBadge": "Řídí odznáček s počtem pro Git.",
- "config.countBadge.all": "Počítat všechny změny",
- "config.countBadge.off": "Vypnout čítač",
- "config.countBadge.tracked": "Počítat pouze sledované změny",
- "config.decorations.enabled": "Určuje, jestli Git přidává barvy a odznáčky pro zobrazení průzkumníka a otevřených editorů.",
- "config.defaultCloneDirectory": "Výchozí umístění pro klonování úložiště Git",
- "config.detectSubmodules": "Určuje, jestli se mají automaticky zjišťovat dílčí moduly Gitu.",
- "config.detectSubmodulesLimit": "Řídí limit počtu zjištěných dílčích modulů Gitu.",
- "config.discardAllScope": "Určuje, jaké změny jsou zahozeny příkazem Zahodit všechny změny. Možnost all zahodí všechny změny. Možnost tracked zahodí pouze sledované soubory. Možnost prompt při každém spuštění akce zobrazí dialogové okno s dotazem.",
- "config.enableCommitSigning": "Povolí podepisování potvrzení pomocí klíčů GPG nebo X.509.",
- "config.enableSmartCommit": "Potvrdit všechny změny, pokud neexistují žádné připravené změny",
- "config.enableStatusBarSync": "Určuje, jestli se na stavovém řádku zobrazí příkaz synchronizace Gitu.",
- "config.enabled": "Určuje, jestli je povolené úložiště Git.",
- "config.experimental.installGuide": "Experimentální vylepšení toku nastavení Gitu.",
- "config.fetchOnPull": "Pokud je povoleno, načítají se při přijímání změn všechny větve. V opačném případě se načte pouze aktuální větev.",
- "config.followTagsWhenSync": "Při spuštění příkazu Synchronizovat také nasdílet změny všech značek",
- "config.ignoreLegacyWarning": "Ignoruje starší upozornění Gitu.",
- "config.ignoreLimitWarning": "Ignoruje upozornění, pokud je v úložišti příliš mnoho změn.",
- "config.ignoreMissingGitWarning": "Ignoruje upozornění, když chybí Git.",
- "config.ignoreRebaseWarning": "Ignoruje upozornění, když to vypadá, že se změny větve při přijímání změn mohly přesunout.",
- "config.ignoreSubmodules": "Ignorovat změny dílčích modulů ve stromu souborů",
- "config.ignoreWindowsGit27Warning": "Ignoruje upozornění, pokud je v systému Windows nainstalován Git verze 2.25–2.26.",
- "config.ignoredRepositories": "Seznam úložišť Git, která se mají ignorovat",
- "config.inputValidation": "Určuje, kdy se má zobrazit ověření vstupu pro zprávu potvrzení.",
- "config.inputValidationLength": "Určuje prahovou hodnotu délky zprávy potvrzení pro zobrazení upozornění.",
- "config.inputValidationSubjectLength": "Určuje prahovou hodnotu délky předmětu zprávy potvrzení pro zobrazení upozornění. Nenastavujte, pokud má toto nastavení dědit hodnotu nastavení config.inputValidationLength.",
- "config.logLevel": "Určuje, kolik informací (pokud existují) se má protokolovat do [git output](command:git.showOutput).",
- "config.logLevel.critical": "Protokolovat pouze důležité informace",
- "config.logLevel.debug": "Protokolovat pouze ladění, informace, upozornění, chyby a důležité informace",
- "config.logLevel.error": "Protokolovat pouze chyby a důležité informace",
- "config.logLevel.info": "Protokolovat pouze informace, upozornění, chyby a důležité informace",
- "config.logLevel.off": "Nic neprotokolovat",
- "config.logLevel.trace": "Protokolovat všechny informace",
- "config.logLevel.warn": "Protokolovat pouze upozornění, chyby a důležité informace",
- "config.mergeEditor": "Otevřete editor sloučení pro soubory, u kterých dochází ke konfliktu.",
- "config.openAfterClone": "Určuje, jestli se má úložiště po klonování automaticky otevřít.",
- "config.openAfterClone.always": "Vždy otevřít v aktuálním okně",
- "config.openAfterClone.alwaysNewWindow": "Vždy otevřít v novém okně",
- "config.openAfterClone.prompt": "Vždy se zeptat na akci",
- "config.openAfterClone.whenNoFolderOpen": "Otevřít v aktuálním okně jenom v případě, že není otevřená žádná složka",
- "config.openDiffOnClick": "Určuje, jestli se má při kliknutí na změnu otevřít editor rozdílů. V opačném případě se otevře běžný editor.",
- "config.path": "Cesta a název spustitelného souboru Git, třeba C:\\Program Files\\Git\\bin\\git.exe (Windows). Může to být také pole řetězcových hodnot obsahující několik cest, které se mají vyhledat.",
- "config.postCommitCommand": "Umožňuje po úspěšném potvrzení spustit příkaz Git.",
- "config.postCommitCommand.none": "Po potvrzení nespouštět žádný příkaz",
- "config.postCommitCommand.push": "Po úspěšném potvrzení spustit příkaz Git Push",
- "config.postCommitCommand.sync": "Po úspěšném potvrzení spustit příkaz Git Sync",
- "config.promptToSaveFilesBeforeCommit": "Určuje, jestli má Git před potvrzením zjišťovat neuložené soubory.",
- "config.promptToSaveFilesBeforeCommit.always": "Zjišťovat všechny neuložené soubory",
- "config.promptToSaveFilesBeforeCommit.never": "Zakázat tuto kontrolu",
- "config.promptToSaveFilesBeforeCommit.staged": "Zjišťovat pouze neuložené připravené soubory",
- "config.promptToSaveFilesBeforeStash": "Určuje, jestli má Git před dočasným uložením změn zjišťovat neuložené soubory.",
- "config.promptToSaveFilesBeforeStash.always": "Zjišťovat všechny neuložené soubory",
- "config.promptToSaveFilesBeforeStash.never": "Zakázat tuto kontrolu",
- "config.promptToSaveFilesBeforeStash.staged": "Zjišťovat pouze neuložené připravené soubory",
- "config.pruneOnFetch": "Vyřadit při načítání",
- "config.pullTags": "Při přijímání změn načíst všechny značky",
- "config.rebaseWhenSync": "Vynutit, aby Git při spuštění příkazu synchronizace použil přenesení změn",
- "config.repositoryScanIgnoredFolders": "Seznam složek, které se při vyhledávání úložišť Git ignorují, když je možnost #git.autoRepositoryDetection# nastavená na true nebo subFolders",
- "config.repositoryScanMaxDepth": "Určuje hloubku použitou při kontrole složek pracovního prostoru pro úložiště Git, když je možnost #git.autoRepositoryDetection# nastavená na true nebo subFolders. Dá se nastavit na -1 aby se odstranily omezení.",
- "config.requireGitUserConfig": "Určuje, jestli se má vyžadovat explicitní konfigurace uživatele Git, nebo umožnit Gitu ji zkusit určit, pokud chybí.",
- "config.scanRepositories": "Seznam cest, ve kterých se mají hledat úložiště Git",
- "config.showActionButton": "Určuje, jestli se v zobrazení správy zdrojového kódu zobrazuje tlačítko akce.",
- "config.showActionButton.commit": "Umožňuje zobrazit tlačítko akce pro potvrzení změn, když místní větev upraví soubory připravené k potvrzení.",
- "config.showActionButton.publish": "Umožňuje zobrazit tlačítko akce pro publikování místní větve, pokud nemá sledovací vzdálenou větev.",
- "config.showActionButton.sync": "Umožňuje zobrazit tlačítko akce pro synchronizaci změn, když je místní větev před nebo za vzdálenou větví.",
- "config.showCommitInput": "Určuje, jestli se vstup potvrzení zobrazí na ovládacím panelu zdrojového kódu Git.",
- "config.showInlineOpenFileAction": "Určuje, jestli se má v zobrazení změn Gitu zobrazit vložená (inline) akce Otevřít soubor.",
- "config.showProgress": "Určuje, jestli se má pro akce Gitu zobrazovat průběh.",
- "config.showPushSuccessNotification": "Určuje, jestli se má při úspěšném nasdílení změn zobrazit oznámení.",
- "config.smartCommitChanges": "Určuje, které změny jsou automaticky připraveny pomocí inteligentního potvrzení.",
- "config.smartCommitChanges.all": "Automaticky připravit všechny změny",
- "config.smartCommitChanges.tracked": "Automaticky připravit pouze sledované změny",
- "config.statusLimit": "Určuje, jak omezit počet změn, které se dají parsovat z příkazu stavu Git. Pro stav bez omezení se dá nastavit na 0.",
- "config.suggestSmartCommit": "Navrhuje povolit inteligentní potvrzení (potvrdit všechny změny, pokud neexistují žádné připravené změny).",
- "config.supportCancellation": "Určuje, jestli se při spuštění akce synchronizace objeví oznámení, které uživateli umožňuje operaci zrušit.",
- "config.terminalAuthentication": "Určuje, jestli by měl být VS Code povolen jako obslužný program ověřování pro procesy Gitu vytvořené v integrovaném terminálu. Poznámka: Aby se projevila změna tohoto nastavení, je nutné restartovat terminály.",
- "config.terminalGitEditor": "Určuje, jestli by měl být VS Code povolen jako obslužný program ověřování pro procesy git vytvořené v integrovaném terminálu. Poznámka: Aby se projevila změna tohoto nastavení, je nutné restartovat terminály.",
- "config.timeline.date": "Určuje, které datum se má použít pro položky v zobrazení Časová osa.",
- "config.timeline.date.authored": "Použít datum vytvoření",
- "config.timeline.date.committed": "Použít datum potvrzení",
- "config.timeline.showAuthor": "Určuje, jestli se v zobrazení Časová osa má zobrazovat autor potvrzení.",
- "config.timeline.showUncommitted": "Určuje, jestli se mají v zobrazení časové osy zobrazovat nepotvrzené změny.",
- "config.untrackedChanges": "Určuje, jak se chovají nesledované změny.",
- "config.untrackedChanges.hidden": "Nesledované změny jsou skryty a vyloučeny z několika akcí.",
- "config.untrackedChanges.mixed": "Všechny změny (sledované i nesledované) se zobrazují společně a chovají se stejně.",
- "config.untrackedChanges.separate": "Nesledované změny se v zobrazení správy zdrojového kódu zobrazují samostatně. Jsou také vyloučeny z několika akcí.",
- "config.useCommitInputAsStashMessage": "Určuje, jestli se má zpráva ze vstupního pole pro potvrzení použít jako výchozí zpráva pro dočasné uložení.",
- "config.useEditorAsCommitInput": "Určuje, jestli se má k vytváření potvrzování zpráv použít fulltextový editor, kdykoli se do vstupního pole potvrzení nezadá žádná zpráva.",
- "config.useForcePushWithLease": "Určuje, jestli se pro nasdílení změn s vynucením používá bezpečnější varianta vynucení se zapůjčením (force-with-lease).",
- "config.useIntegratedAskPass": "Určuje, jestli se má GIT_ASKPASS přepsat, aby se používala integrovaná verze.",
- "config.verboseCommit": "Když je povolená možnost #git.useEditorAsCommitInput#, povolí podrobný výstup.",
- "description": "Integrace s Git SCM",
- "displayName": "Git",
- "submenu.branch": "Rozvětvit",
- "submenu.changes": "Změny",
- "submenu.commit": "Potvrdit",
- "submenu.commit.amend": "Upravit",
- "submenu.commit.signoff": "Finálně verifikovat",
- "submenu.explorer": "Git",
- "submenu.pullpush": "Přijetí změn, nasdílení změn",
- "submenu.remotes": "Vzdálené",
- "submenu.stash": "Dočasné úložiště",
- "submenu.tags": "Značky",
- "view.workbench.cloneRepository": "Úložiště můžete klonovat místně.\r\n[Naklonovat úložiště](command:git.clone 'Naklonovat úložiště, jakmile se aktivuje rozšíření Gitu')",
- "view.workbench.learnMore": "Další informace, jak používat Git a správu zdrojového kódu ve VS Code, najdete [v naší dokumentaci](https://aka.ms/vscode-scm).",
- "view.workbench.scm.disabled": "If you would like to use git features, please enable git in your [settings](command:workbench.action.openSettings?%5B%22git.enabled%22%5D).\r\nTo learn more about how to use git and source control in VS Code [read our docs](https://aka.ms/vscode-scm).",
- "view.workbench.scm.empty": "In order to use git features, you can open a folder containing a git repository or clone from a URL.\r\n[Open Folder](command:vscode.openFolder)\r\n[Clone Repository](command:git.clone)\r\nTo learn more about how to use git and source control in VS Code [read our docs](https://aka.ms/vscode-scm).",
- "view.workbench.scm.emptyWorkspace": "The workspace currently open doesn't have any folders containing git repositories.\r\n[Add Folder to Workspace](command:workbench.action.addRootFolder)\r\nTo learn more about how to use git and source control in VS Code [read our docs](https://aka.ms/vscode-scm).",
- "view.workbench.scm.folder": "Aktuálně otevřená složka nemá úložiště Git. Můžete inicializovat úložiště, v němž budou povolené funkce pro správu zdrojů, které zajišťuje Git.\r\n[Inicializovat úložiště](command:git.init?%5Btrue%5D)\r\nDalší informace o tom, jak používat Git a správu zdrojů v sadě VS Code, najdete v [naší dokumentaci](https://aka.ms/vscode-scm).",
- "view.workbench.scm.missing": "Nainstalujte si Git, oblíbený systém správy zdrojového kódu, abyste mohli sledovat změny kódu a spolupracovat s ostatními. Další informace najdete v našem [Git guides](https://aka.ms/vscode-scm).",
- "view.workbench.scm.missing.linux": "Správa zdrojového kódu závisí na nainstalovaném Gitu.\r\n[Download Git for Linux](https://git-scm.com/download/linux)\r\nPo instalaci prosím [reload](command:workbench.action.reloadWindow) (nebo [troubleshoot](command:git.showOutput)). Další poskytovatele správy zdrojového kódu je možné nainstalovat [from the Marketplace](command:workbench.extensions.search?%22%40category%3A%5C%22scm%20providers%5C%22%22).",
- "view.workbench.scm.missing.mac": "[Download Git for macOS](https://git-scm.com/download/mac)\r\nPo instalaci prosím [reload](command:workbench.action.reloadWindow) (nebo [troubleshoot](command:git.showOutput)). Další poskytovatele správy zdrojů je možné nainstalovat [from the Marketplace](command:workbench.extensions.search?%22%40category%3A%5C%22scm%20providers%5C%22%22).",
- "view.workbench.scm.missing.windows": "[Download Git for Windows](https://git-scm.com/download/win)\r\nPo instalaci prosím [reload](command:workbench.action.reloadWindow) (nebo [troubleshoot](command:git.showOutput)). Další poskytovatele správy zdrojů je možné nainstalovat [from the Marketplace](command:workbench.extensions.search?%22%40category%3A%5C%22scm%20providers%5C%22%22).",
- "view.workbench.scm.workspace": "Aktuálně otevřený pracovní prostor nezahrnuje žádné složky obsahující úložiště Git. Můžete inicializovat úložiště ve složce, v níž budou povolené funkce pro správu zdrojů, které zajišťuje Git.\r\n[Inicializovat úložiště](command:git.init)\r\nDalší informace o tom, jak používat Git a správu zdrojů v sadě VS Code, najdete v [naší dokumentaci](https://aka.ms/vscode-scm)."
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-cs/translations/extensions/github-authentication.i18n.json b/i18n/vscode-language-pack-cs/translations/extensions/github-authentication.i18n.json
deleted file mode 100644
index 4385a078a6..0000000000
--- a/i18n/vscode-language-pack-cs/translations/extensions/github-authentication.i18n.json
+++ /dev/null
@@ -1,27 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "dist/githubServer": {
- "code.detail": "Ověřování dokončíte tak, že přejdete na GitHub a vložíte výše uvedený jednorázový kód.",
- "code.title": "Váš kód: {0}",
- "no": "Ne",
- "otherReasonMessage": "Ještě jste nedokončili autorizaci tohoto rozšíření pro používání GitHubu. Chcete to dál zkoušet?",
- "progress": "Otevřete [{0}]({0}) na nové kartě a vložte svůj jednorázový kód: {1}",
- "signingIn": "Přihlašování ke github.com…",
- "signingInAnotherWay": "Přihlašování ke github.com…",
- "userCancelledMessage": "Máte potíže s přihlášením? Chcete zkusit jiný způsob?",
- "yes": "Ano"
- },
- "package": {
- "description": "Zprostředkovatel ověřování GitHubu",
- "displayName": "Ověřování GitHubu"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-cs/translations/extensions/github-browser.i18n.json b/i18n/vscode-language-pack-cs/translations/extensions/github-browser.i18n.json
deleted file mode 100644
index 42771bdde4..0000000000
--- a/i18n/vscode-language-pack-cs/translations/extensions/github-browser.i18n.json
+++ /dev/null
@@ -1,19 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "package": {
- "displayName": "Prohlížeč GitHub",
- "description": "Vzdáleně procházet úložiště GitHubu"
- },
- "dist/scm": {
- "no changes": "Nejsou k dispozici žádné změny, které by bylo možné potvrdit."
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-cs/translations/extensions/github.i18n.json b/i18n/vscode-language-pack-cs/translations/extensions/github.i18n.json
deleted file mode 100644
index 23e62ee9d4..0000000000
--- a/i18n/vscode-language-pack-cs/translations/extensions/github.i18n.json
+++ /dev/null
@@ -1,46 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "dist/publish": {
- "ignore": "Vyberte soubory, které by měly být zahrnuty do úložiště.",
- "openingithub": "Otevřít v GitHubu",
- "pick folder": "Vyberte složku, která se má publikovat do GitHubu.",
- "publishing_done": "Úložiště {0} se úspěšně publikovalo do GitHubu.",
- "publishing_firstcommit": "Vytváří se první potvrzení.",
- "publishing_private": "Probíhá publikování do privátního úložiště GitHubu.",
- "publishing_public": "Probíhá publikování do veřejného úložiště GitHubu.",
- "publishing_uploading": "Nahrávají se soubory."
- },
- "dist/pushErrorHandler": {
- "create a fork": "Vytvořit fork",
- "create fork": "Vytvořit fork GitHubu",
- "createghpr": "Vytváří se žádost o přijetí změn GitHubu...",
- "createpr": "Vytvořit žádost o přijetí změn",
- "donepr": "Žádost o přijetí změn {0}/{1}#{2} byla úspěšně vytvořena na GitHubu.",
- "fork": "Nemáte oprávnění k nasdílení změn do {0}/{1} na GitHubu. Chcete vytvořit fork a místo toho nasdílet změny do něj?",
- "forking": "Vytváří se fork {0}/{1}...",
- "forking_done": "Fork {0} se úspěšně vytvořil na GitHubu.",
- "forking_pushing": "Probíhá nasdílení změn...",
- "no": "Ne",
- "no pr template": "Žádná šablona",
- "openingithub": "Otevřít v GitHubu",
- "openpr": "Otevřít žádost o přijetí změn",
- "select pr template": "Vyberte šablonu žádosti o přijetí změn."
- },
- "package": {
- "config.gitAuthentication": "Určuje, jestli se má ve VS Code povolit automatické ověřování GitHubu pro příkazy Git.",
- "config.gitProtocol": "Určuje, který protokol se používá ke klonování úložiště GitHubu.",
- "description": "Funkce GitHubu pro VS Code",
- "displayName": "GitHub",
- "welcome.publishFolder": "Tuto složku můžete také přímo publikovat do úložiště GitHubu. Po publikování budete mít přístup k funkcím správy zdrojů, které zajišťuje Git a GitHub.\r\n[$(github) Publikovat na GitHub](command:github.publish)",
- "welcome.publishWorkspaceFolder": "Složku pracovního prostoru můžete také přímo publikovat do úložiště GitHubu. Po publikování budete mít přístup k funkcím správy zdrojů, které zajišťuje Git a GitHub.\r\n[$(github) Publikovat na GitHub](command:github.publish)"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-cs/translations/extensions/go.i18n.json b/i18n/vscode-language-pack-cs/translations/extensions/go.i18n.json
deleted file mode 100644
index fa48b5b271..0000000000
--- a/i18n/vscode-language-pack-cs/translations/extensions/go.i18n.json
+++ /dev/null
@@ -1,16 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "package": {
- "description": "Poskytuje zvýrazňování syntaxe a párování závorek v souborech Go.",
- "displayName": "Základy jazyka Go"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-cs/translations/extensions/groovy.i18n.json b/i18n/vscode-language-pack-cs/translations/extensions/groovy.i18n.json
deleted file mode 100644
index 3fd1e4d638..0000000000
--- a/i18n/vscode-language-pack-cs/translations/extensions/groovy.i18n.json
+++ /dev/null
@@ -1,16 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "package": {
- "description": "Poskytuje fragmenty kódu, zvýrazňování syntaxe a párování závorek v souborech jazyka Groovy.",
- "displayName": "Základy jazyka Groovy"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-cs/translations/extensions/grunt.i18n.json b/i18n/vscode-language-pack-cs/translations/extensions/grunt.i18n.json
deleted file mode 100644
index deb80625f0..0000000000
--- a/i18n/vscode-language-pack-cs/translations/extensions/grunt.i18n.json
+++ /dev/null
@@ -1,25 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "dist/main": {
- "execFailed": "Nepovedlo se automaticky zjistit nástroj Grunt pro složku {0}. Došlo k chybě: {1}",
- "gruntShowOutput": "Přejít na výstup",
- "gruntTaskDetectError": "Při hledání úloh grunt došlo k problému. Další informace najdete ve výstupu."
- },
- "package": {
- "config.grunt.autoDetect": "Ovládá povolení detekce úloh Grunt. Detekce úloh Grunt může způsobit, že se soubory spustí v libovolném otevřeném pracovním prostoru.",
- "description": "Rozšíření pro přidání schopností Grunt do VS Code",
- "displayName": "Podpora Gruntu pro VS Code",
- "grunt.taskDefinition.args.description": "Argumenty příkazového řádku, které se mají předat úloze grunt",
- "grunt.taskDefinition.file.description": "Soubor Grunt, který poskytuje úlohu. Lze vynechat.",
- "grunt.taskDefinition.type.description": "Úloha Grunt, která se má přizpůsobit"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-cs/translations/extensions/gulp.i18n.json b/i18n/vscode-language-pack-cs/translations/extensions/gulp.i18n.json
deleted file mode 100644
index 4bc0252634..0000000000
--- a/i18n/vscode-language-pack-cs/translations/extensions/gulp.i18n.json
+++ /dev/null
@@ -1,24 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "dist/main": {
- "execFailed": "Nepovedlo se automaticky zjistit nástroj Gulp pro složku {0}. Došlo k chybě: {1}",
- "gulpShowOutput": "Přejít na výstup",
- "gulpTaskDetectError": "Při hledání úloh gulp došlo k problému. Další informace najdete ve výstupu."
- },
- "package": {
- "config.gulp.autoDetect": "Ovládá povolení detekce úloh Gulp. Detekce úloh Gulp může způsobit, že se soubory spustí v libovolném otevřeném pracovním prostoru.",
- "description": "Rozšíření pro přidání schopností Gulp do VSCode",
- "displayName": "Podpora Gulpu pro VSCode",
- "gulp.taskDefinition.file.description": "Soubor Gulp, který poskytuje úlohu. Lze vynechat.",
- "gulp.taskDefinition.type.description": "Úloha Gulp, která se má přizpůsobit"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-cs/translations/extensions/handlebars.i18n.json b/i18n/vscode-language-pack-cs/translations/extensions/handlebars.i18n.json
deleted file mode 100644
index f8667e2510..0000000000
--- a/i18n/vscode-language-pack-cs/translations/extensions/handlebars.i18n.json
+++ /dev/null
@@ -1,16 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "package": {
- "description": "Poskytuje zvýrazňování syntaxe a párování závorek v souborech Handlebars.",
- "displayName": "Základy jazyka Handlebars"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-cs/translations/extensions/hlsl.i18n.json b/i18n/vscode-language-pack-cs/translations/extensions/hlsl.i18n.json
deleted file mode 100644
index 0272ac9434..0000000000
--- a/i18n/vscode-language-pack-cs/translations/extensions/hlsl.i18n.json
+++ /dev/null
@@ -1,16 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "package": {
- "description": "Poskytuje zvýrazňování syntaxe a párování závorek v souborech HLSL.",
- "displayName": "Základy jazyka HLSL"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-cs/translations/extensions/html-language-features.i18n.json b/i18n/vscode-language-pack-cs/translations/extensions/html-language-features.i18n.json
deleted file mode 100644
index 61f3e7ca5f..0000000000
--- a/i18n/vscode-language-pack-cs/translations/extensions/html-language-features.i18n.json
+++ /dev/null
@@ -1,59 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "client\\dist\\node/htmlClient": {
- "configureButton": "Konfigurovat",
- "folding.end": "Konec oblasti sbalení",
- "folding.html": "Jednoduchý výchozí bod pro HTML5",
- "folding.start": "Začátek oblasti sbalení",
- "htmlserver.name": "Server jazyka HTML",
- "linkedEditingQuestion": "VS Code má nyní integrovanou podporu pro automatické přejmenovávání značek. Chcete ji povolit?"
- },
- "package": {
- "description": "Poskytuje rozšířenou podporu jazyka pro soubory HTML a Handlebar.",
- "displayName": "Funkce jazyka HTML",
- "html.autoClosingTags": "Umožňuje povolit nebo zakázat automatické uzavírání značek HTML.",
- "html.autoCreateQuotes": "Umožňuje povolit nebo zakázat automatické vytváření uvozovek pro přiřazení atributů HTML. Typ uvozovek lze nakonfigurovat pomocí #html.completion.attributeDefaultValue#.",
- "html.completion.attributeDefaultValue": "Určuje výchozí hodnotu atributů při přijetí dokončení.",
- "html.completion.attributeDefaultValue.doublequotes": "Hodnota atributu je nastavena na \"\".",
- "html.completion.attributeDefaultValue.empty": "Hodnota atributu není nastavena.",
- "html.completion.attributeDefaultValue.singlequotes": "Hodnota atributu je nastavena na ''.",
- "html.customData.desc": "Seznam relativních cest k souborům odkazující na soubory JSON používající [formát vlastních dat](https://github.com/microsoft/vscode-html-languageservice/blob/master/docs/customData.md).\r\n\r\nVS Code načte vlastní data při spuštění a rozšíří svou podporu HTML o vlastní značky HTML, atributy a hodnoty atributů, které zadáte v souborech JSON.\r\n\r\nCesty k souborům jsou relativní vzhledem k pracovnímu prostoru a zvažují se jenom nastavení složek pracovního prostoru.",
- "html.format.contentUnformatted.desc": "Seznam značek oddělených čárkami, ve kterých by se neměl přeformátovávat obsah. Výchozím nastavením při hodnotě null je značka pre.",
- "html.format.enable.desc": "Umožňuje povolit nebo zakázat výchozí formátovací modul HTML.",
- "html.format.extraLiners.desc": "Seznam značek oddělených čárkami, před kterými by měl být navíc doplněn symbol nového řádku. Výchozím nastavením při hodnotě null je \"head, body, /html\".",
- "html.format.indentHandlebars.desc": "Naformátovat a odsadit {{#foo}} a {{/foo}}",
- "html.format.indentInnerHtml.desc": "Odsadit oddíly
a ",
- "html.format.maxPreserveNewLines.desc": "Maximální počet konců řádků, které mají být zachovány v jednom bloku. Pro neomezený počet použijte hodnotu null.",
- "html.format.preserveNewLines.desc": "Určuje, jestli mají být zachovány existující konce řádků před elementy. Funguje pouze před elementy, nikoli uvnitř značek nebo pro text.",
- "html.format.templating.desc": "Dodržovat značky jazyka django, erb, handlebars a php pro šablonování",
- "html.format.unformatted.desc": "Seznam značek oddělených čárkami, které by neměly být přeformátovávány. Výchozím nastavením při hodnotě null jsou všechny značky uvedené na https://www.w3.org/TR/html5/dom.html#phrasing-content.",
- "html.format.unformattedContentDelimiter.desc": "Mezi tímto řetězcem uchovávat obsah textu pohromadě",
- "html.format.wrapAttributes.alignedmultiple": "Zalamovat při překročení délky řádku, zarovnat atributy svisle",
- "html.format.wrapAttributes.auto": "Atributy zalamovat pouze v případě překročení délky řádku",
- "html.format.wrapAttributes.desc": "Zalamovat atributy",
- "html.format.wrapAttributes.force": "Zalomit každý atribut s výjimkou prvního",
- "html.format.wrapAttributes.forcealign": "Zalomit každý atribut s výjimkou prvního a zachovat zarovnání",
- "html.format.wrapAttributes.forcemultiline": "Zalomit každý atribut",
- "html.format.wrapAttributes.preserve": "Zachovat zalamování atributů",
- "html.format.wrapAttributes.preservealigned": "Zachovat zalamování atributů, ale zarovnávat",
- "html.format.wrapAttributesIndentSize.desc": "Odsadit zalomené atributy po N znacích. Pokud chcete použít výchozí velikost odsazení, použijte „null“. Toto nastavení se ignoruje, pokud je vlastnost #html.format.wrapAttributes# nastavena na hodnotu „aligned“.",
- "html.format.wrapLineLength.desc": "Maximální počet znaků na řádek (0 = zakázat)",
- "html.hover.documentation": "Po najetí myší zobrazovat značku a dokumentaci k atributu",
- "html.hover.references": "Po najetí myší zobrazovat odkazy na MDN",
- "html.mirrorCursorOnMatchingTag": "Umožňuje povolit nebo zakázat zrcadlení kurzoru pro párovou značku HTML.",
- "html.mirrorCursorOnMatchingTagDeprecationMessage": "Tato možnost je zastaralá. Místo ní se používá možnost editor.linkedEditing.",
- "html.suggest.html5.desc": "Určuje, jestli integrovaná podpora jazyka HTML navrhuje hodnoty, vlastnosti a značky jazyka HTML5.",
- "html.trace.server.desc": "Sleduje komunikaci mezi VS Code a serverem jazyka HTML.",
- "html.validate.scripts": "Určuje, jestli integrovaná podpora jazyka HTML ověřuje vložené skripty.",
- "html.validate.styles": "Určuje, jestli integrovaná podpora jazyka HTML ověřuje vložené styly."
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-cs/translations/extensions/html.i18n.json b/i18n/vscode-language-pack-cs/translations/extensions/html.i18n.json
deleted file mode 100644
index 611f4e87a0..0000000000
--- a/i18n/vscode-language-pack-cs/translations/extensions/html.i18n.json
+++ /dev/null
@@ -1,16 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "package": {
- "description": "Poskytuje zvýrazňování syntaxe, párování závorek a fragmenty kódu v souborech HTML.",
- "displayName": "Základy jazyka HTML"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-cs/translations/extensions/image-preview.i18n.json b/i18n/vscode-language-pack-cs/translations/extensions/image-preview.i18n.json
deleted file mode 100644
index ece5ebd568..0000000000
--- a/i18n/vscode-language-pack-cs/translations/extensions/image-preview.i18n.json
+++ /dev/null
@@ -1,39 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "dist/binarySizeStatusBarEntry": {
- "sizeB": "{0} B",
- "sizeGB": "{0} GB",
- "sizeKB": "{0} kB",
- "sizeMB": "{0} MB",
- "sizeStatusBar.name": "Velikost binárního souboru obrázku",
- "sizeTB": "{0} TB"
- },
- "dist/preview": {
- "preview.imageLoadError": "Při načítání obrázku došlo k chybě.",
- "preview.imageLoadErrorLink": "Chcete soubor otevřít pomocí standardního textového/binárního editoru VS Code?"
- },
- "dist/sizeStatusBarEntry": {
- "sizeStatusBar.name": "Velikost obrázku"
- },
- "dist/zoomStatusBarEntry": {
- "zoomStatusBar.name": "Přiblížení obrázku",
- "zoomStatusBar.placeholder": "Vybrat úroveň přiblížení",
- "zoomStatusBar.wholeImageLabel": "Celý obrázek"
- },
- "package": {
- "command.zoomIn": "Přiblížit",
- "command.zoomOut": "Oddálit",
- "customEditors.displayName": "Náhled obrázku",
- "description": "Poskytuje integrovaný náhled obrázku VS Code",
- "displayName": "Náhled obrázku"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-cs/translations/extensions/ini.i18n.json b/i18n/vscode-language-pack-cs/translations/extensions/ini.i18n.json
deleted file mode 100644
index 0971851dbb..0000000000
--- a/i18n/vscode-language-pack-cs/translations/extensions/ini.i18n.json
+++ /dev/null
@@ -1,16 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "package": {
- "description": "Poskytuje zvýrazňování syntaxe a párování závorek v souborech Ini.",
- "displayName": "Základy jazyka Ini"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-cs/translations/extensions/ipynb.i18n.json b/i18n/vscode-language-pack-cs/translations/extensions/ipynb.i18n.json
deleted file mode 100644
index 457f444235..0000000000
--- a/i18n/vscode-language-pack-cs/translations/extensions/ipynb.i18n.json
+++ /dev/null
@@ -1,16 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "package": {
- "description": "Poskytuje základní podporu pro otevírání a čtení souborů poznámkového bloku Jupyter .ipynb.",
- "displayName": "Podpora .ipynb"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-cs/translations/extensions/jake.i18n.json b/i18n/vscode-language-pack-cs/translations/extensions/jake.i18n.json
deleted file mode 100644
index a2f1b3a446..0000000000
--- a/i18n/vscode-language-pack-cs/translations/extensions/jake.i18n.json
+++ /dev/null
@@ -1,24 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "dist/main": {
- "execFailed": "Nepovedlo se automaticky zjistit nástroj Jake pro složku {0}. Došlo k chybě: {1}",
- "jakeShowOutput": "Přejít na výstup",
- "jakeTaskDetectError": "Při hledání úloh jake došlo k problému. Další informace najdete ve výstupu."
- },
- "package": {
- "config.jake.autoDetect": "Ovládá povolení detekce úloh Jake. Detekce úloh Jake může způsobit, že se soubory spustí v libovolném otevřeném pracovním prostoru.",
- "description": "Rozšíření pro přidání schopností Jake do VS Code",
- "displayName": "Podpora jazyka Jake pro VS Code",
- "jake.taskDefinition.file.description": "Soubor Jake, který poskytuje úlohu. Lze vynechat.",
- "jake.taskDefinition.type.description": "Úloha Jake, která se má přizpůsobit"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-cs/translations/extensions/java.i18n.json b/i18n/vscode-language-pack-cs/translations/extensions/java.i18n.json
deleted file mode 100644
index 18e39c59b3..0000000000
--- a/i18n/vscode-language-pack-cs/translations/extensions/java.i18n.json
+++ /dev/null
@@ -1,16 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "package": {
- "description": "Poskytuje fragmenty kódu, zvýrazňování syntaxe, párování závorek a sbalování kódu v souborech jazyka Java.",
- "displayName": "Základy jazyka Java"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-cs/translations/extensions/javascript.i18n.json b/i18n/vscode-language-pack-cs/translations/extensions/javascript.i18n.json
deleted file mode 100644
index 3b301e5e68..0000000000
--- a/i18n/vscode-language-pack-cs/translations/extensions/javascript.i18n.json
+++ /dev/null
@@ -1,16 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "package": {
- "description": "Poskytuje fragmenty kódu, zvýrazňování syntaxe, párování závorek a sbalování kódu v souborech jazyka JavaScript.",
- "displayName": "Základy jazyka JavaScript"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-cs/translations/extensions/json-language-features.i18n.json b/i18n/vscode-language-pack-cs/translations/extensions/json-language-features.i18n.json
deleted file mode 100644
index 624ff4064e..0000000000
--- a/i18n/vscode-language-pack-cs/translations/extensions/json-language-features.i18n.json
+++ /dev/null
@@ -1,73 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "client\\dist\\node/jsonClient": {
- "json.clearCache.completed": "Mezipaměť schémat JSON byla vymazána.",
- "json.resolveError": "JSON: chyba vyhodnocení schématu",
- "json.schemaResolutionDisabledMessage": "Stahování schémat je zakázané. Po kliknutí ho můžete nakonfigurovat.",
- "json.schemaResolutionErrorMessage": "Schéma nelze vyhodnotit. Kliknutím to můžete zkusit znovu.",
- "jsonserver.name": "Server jazyka JSON",
- "schemaDownloadDisabled": "Stahování schémat je prostřednictvím nastavení {0} zakázané.",
- "untitled.schema": "Nelze načíst {0}."
- },
- "client\\dist\\node/languageStatus": {
- "documentColorsStatusItem.name": "Stav barevného symbolu JSON",
- "documentSymbolsStatusItem.name": "Stav osnovy JSON",
- "foldingRangesStatusItem.name": "Stav sbalování JSON",
- "openExtension": "Otevřít rozšíření",
- "openSettings": "Otevřít nastavení",
- "pending.detail": "Načítají se informace JSON.",
- "schema.noSchema": "Pro tento soubor není nakonfigurované žádné schéma.",
- "schema.showdocs": "Další informace o konfiguraci schématu JSON…",
- "schemaFromFolderSettings": "Nakonfigurováno v nastavení pracovního prostoru",
- "schemaFromUserSettings": "Nakonfigurováno v uživatelských nastaveních",
- "schemaFromextension": "Nakonfigurováno rozšířením: {0}",
- "schemaPicker.title": "Schémata JSON používaná pro {0}",
- "status.button.configure": "Konfigurovat",
- "status.error": "Nepovedlo se vypočítat použitá schémata.",
- "status.limitedDocumentColors.details": "zobrazují se jen barevné dekorátory: {0}",
- "status.limitedDocumentColors.short": "Omezené barevné symboly",
- "status.limitedDocumentSymbols.details": "zobrazují se jen symboly dokumentu: {0}",
- "status.limitedDocumentSymbols.short": "Omezená osnova",
- "status.limitedFoldingRanges.details": "zobrazují se jen rozsahy sbalování: {0}",
- "status.limitedFoldingRanges.short": "Omezené rozsahy sbalování",
- "status.multipleSchema": "nakonfigurovalo se několik schémat JSON",
- "status.noSchema": "není nakonfigurované žádné schéma JSON",
- "status.noSchema.short": "Žádné ověření schématu",
- "status.notJSON": "Nejde o editor JSON.",
- "status.openSchemasLink": "Zobrazit schémata",
- "status.singleSchema": "schéma JSON je nakonfigurované",
- "status.withSchema.short": "Schéma ověřeno",
- "status.withSchemas.short": "Schéma ověřeno",
- "statusItem.name": "Stav ověření JSON"
- },
- "package": {
- "description": "Poskytuje rozšířenou podporu jazyka pro soubory JSON.",
- "displayName": "Funkce jazyka JSON",
- "json.clickToRetry": "Kliknutím to můžete zkusit znovu.",
- "json.colorDecorators.enable.deprecationMessage": "Nastavení json.colorDecorators.enable je zastaralé. Místo něj se používá nastavení editor.colorDecorators.",
- "json.colorDecorators.enable.desc": "Povolí nebo zakáže dekoratéry barev.",
- "json.command.clearCache": "Vymazat mezipaměť schématu",
- "json.enableSchemaDownload.desc": "Pokud je tato možnost povolená, schémata JSON se dají načíst z umístění HTTP a HTTPS.",
- "json.format.enable.desc": "Umožňuje povolit nebo zakázat výchozí formátovací modul JSON.",
- "json.format.keepLines.desc": "Při formátování zachovejte všechny existující nové řádky.",
- "json.maxItemsComputed.desc": "Maximální počet symbolů osnovy a vypočítaných oblastí sbalení (omezeno kvůli výkonu)",
- "json.maxItemsExceededInformation.desc": "Zobrazí oznámení při překročení maximálního počtu symbolů osnovy a oblastí sbalení.",
- "json.schemaResolutionErrorMessage": "Schéma nelze vyhodnotit.",
- "json.schemas.desc": "Přidružit schémata k souborům JSON v aktuálním projektu",
- "json.schemas.fileMatch.desc": "Pole hodnot vzorů souborů, které se používají k porovnávání při překladu souborů JSON na schémata. Znak „*“ lze použít jako zástupný znak. Můžete také definovat vzory vyloučení začínající symbolem „!“. Soubor se shoduje, když existuje minimálně jeden odpovídající vzor a poslední odpovídající vzor není vzorem vyloučení.",
- "json.schemas.fileMatch.item.desc": "Vzor souboru, který může obsahovat hvězdičku (*) a který umožňuje vyhledat shody při překladu souborů JSON na schémata.",
- "json.schemas.schema.desc": "Definice schématu pro danou adresu URL. Schéma musí být zadáno pouze proto, aby se zabránilo přístupu k adrese URL schématu.",
- "json.schemas.url.desc": "Adresa URL schématu nebo relativní cesta ke schématu v aktuálním adresáři",
- "json.tracing.desc": "Umožňuje sledovat komunikaci mezi VS Code a serverem jazyka JSON.",
- "json.validate.enable.desc": "Povolí nebo zakáže ověřování JSON."
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-cs/translations/extensions/json.i18n.json b/i18n/vscode-language-pack-cs/translations/extensions/json.i18n.json
deleted file mode 100644
index bd48063720..0000000000
--- a/i18n/vscode-language-pack-cs/translations/extensions/json.i18n.json
+++ /dev/null
@@ -1,16 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "package": {
- "description": "Poskytuje zvýrazňování syntaxe a párování závorek v souborech JSON.",
- "displayName": "Základy jazyka JSON"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-cs/translations/extensions/less.i18n.json b/i18n/vscode-language-pack-cs/translations/extensions/less.i18n.json
deleted file mode 100644
index 0d67ed786b..0000000000
--- a/i18n/vscode-language-pack-cs/translations/extensions/less.i18n.json
+++ /dev/null
@@ -1,16 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "package": {
- "description": "Poskytuje zvýrazňování syntaxe, párování závorek a sbalování kódu v souborech Less.",
- "displayName": "Základy jazyka Less"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-cs/translations/extensions/log.i18n.json b/i18n/vscode-language-pack-cs/translations/extensions/log.i18n.json
deleted file mode 100644
index ea5bd34b64..0000000000
--- a/i18n/vscode-language-pack-cs/translations/extensions/log.i18n.json
+++ /dev/null
@@ -1,16 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "package": {
- "description": "Poskytuje zvýrazňování syntaxe pro soubory s příponou .log.",
- "displayName": "Protokol"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-cs/translations/extensions/lua.i18n.json b/i18n/vscode-language-pack-cs/translations/extensions/lua.i18n.json
deleted file mode 100644
index e5a921c601..0000000000
--- a/i18n/vscode-language-pack-cs/translations/extensions/lua.i18n.json
+++ /dev/null
@@ -1,16 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "package": {
- "description": "Poskytuje zvýrazňování syntaxe a párování závorek v souborech Lua.",
- "displayName": "Základy jazyka Lua"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-cs/translations/extensions/make.i18n.json b/i18n/vscode-language-pack-cs/translations/extensions/make.i18n.json
deleted file mode 100644
index ef0349de63..0000000000
--- a/i18n/vscode-language-pack-cs/translations/extensions/make.i18n.json
+++ /dev/null
@@ -1,16 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "package": {
- "description": "Poskytuje zvýrazňování syntaxe a párování závorek v souborech Make.",
- "displayName": "Základy jazyka Make"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-cs/translations/extensions/markdown-basics.i18n.json b/i18n/vscode-language-pack-cs/translations/extensions/markdown-basics.i18n.json
deleted file mode 100644
index 84e4ccb826..0000000000
--- a/i18n/vscode-language-pack-cs/translations/extensions/markdown-basics.i18n.json
+++ /dev/null
@@ -1,16 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "package": {
- "description": "Poskytuje fragmenty kódu a zvýrazňování syntaxe pro Markdown.",
- "displayName": "Základy jazyka Markdown"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-cs/translations/extensions/markdown-language-features.i18n.json b/i18n/vscode-language-pack-cs/translations/extensions/markdown-language-features.i18n.json
deleted file mode 100644
index c4fdb6da50..0000000000
--- a/i18n/vscode-language-pack-cs/translations/extensions/markdown-language-features.i18n.json
+++ /dev/null
@@ -1,90 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "dist/client": {
- "markdownServer.name": "Jazykový server Markdown"
- },
- "dist/languageFeatures/diagnostics": {
- "ignoreLinksQuickFix.title": "Vyloučení {0} z ověření odkazu"
- },
- "dist/languageFeatures/fileReferences": {
- "error.noResource": "Operace vyhledání odkazů na soubory neproběhla úspěšně. Neposkytl se žádný prostředek.",
- "progress.title": "Hledání odkazů na soubory"
- },
- "dist/preview/documentRenderer": {
- "preview.notFound": "{0} nelze najít.",
- "preview.securityMessage.label": "Upozornění zabezpečení na zakázání obsahu",
- "preview.securityMessage.text": "Některý obsah v tomto dokumentu byl zakázán.",
- "preview.securityMessage.title": "V náhledu Markdownu byl zakázán potenciálně nebezpečný nebo nezabezpečený obsah. Pokud chcete povolit nezabezpečený obsah nebo pokud chcete povolit skripty, změňte nastavení zabezpečení náhledu Markdownu."
- },
- "dist/preview/preview": {
- "lockedPreviewTitle": "[Preview] {0}",
- "onPreviewStyleLoadError": "Nepovedlo se načíst markdown.styles: {0}",
- "preview.clickOpenFailed": "{0} se nepovedlo otevřít.",
- "previewTitle": "Náhled: {0}"
- },
- "dist/preview/security": {
- "disable.description": "Povolit veškerý obsah a skriptování (nedoporučuje se)",
- "disable.title": "Zakázat",
- "disableSecurityWarning.title": "Zakázat upozornění zabezpečení náhledu v tomto pracovním prostoru",
- "enableSecurityWarning.title": "Povolit upozornění zabezpečení náhledu v tomto pracovním prostoru",
- "insecureContent.description": "Povolit načítání obsahu přes protokol http",
- "insecureContent.title": "Povolit nezabezpečený obsah",
- "insecureLocalContent.description": "Povolit načítání obsahu přes protokol HTTP z místního hostitele (localhost)",
- "insecureLocalContent.title": "Povolit nezabezpečený místní obsah",
- "moreInfo.title": "Další informace",
- "preview.showPreviewSecuritySelector.title": "Vybrat nastavení zabezpečení pro náhledy Markdownu v tomto pracovním prostoru",
- "strict.description": "Načítat pouze zabezpečený obsah",
- "strict.title": "Striktní",
- "toggleSecurityWarning.description": "Nemá vliv na úroveň zabezpečení obsahu."
- },
- "package": {
- "configuration.markdown.editor.drop.enabled": "Enable/disable dropping into the markdown editor to insert shift. Requires enabling `#editor.dropIntoEditor.enabled#`.",
- "configuration.markdown.editor.pasteLinks.enabled": "Když povolíte nebo zakážete vkládání souborů do Markdown editoru, vloží se odkazy Markdownu. Vyžaduje povolení #editor.experimental.pasteActions.enabled#.",
- "configuration.markdown.experimental.validate.enabled.description": "Umožňuje povolit nebo zakázat všechna hlášení chyb v souborech markdownu.",
- "configuration.markdown.experimental.validate.fileLinks.enabled.description": "Ověřte odkazy na jiné soubory v souborech markdownu, například [link](/cesta/k/souboru.md). Tím zkontrolujete, jestli cílové soubory existují. Vyžaduje povolení #markdown.experimental.validate.enabled#.",
- "configuration.markdown.experimental.validate.fileLinks.markdownFragmentLinks.description": "Ověřte část fragmentu odkazů na hlavičky v jiných souborech v souborech Markdown, třeba [link](/path/to/file.md#header). Ve výchozím nastavení dědí hodnotu nastavení z #markdown.experimental.validate.fragmentLinks.enabled#.",
- "configuration.markdown.experimental.validate.fragmentLinks.enabled.description": "Ověřte odkazy na hlavičky v souborech Markdown, třeba [link](#header). Vyžaduje povolení #markdown.experimental.validate.enabled#.",
- "configuration.markdown.experimental.validate.ignoreLinks.description": "Nakonfigurujte odkazy, které by se neměly ověřovat. Například /about by neověřoval odkaz [about](/about), zatímco glob /assets/**/*.svg by umožňoval přeskočit ověření pro jakýkoli odkaz na soubory .svg v adresáři assets.",
- "configuration.markdown.experimental.validate.referenceLinks.enabled.description": "Ověřte referenční odkazy v souborech markdownu, třeba [link](#header). Vyžaduje povolení #markdown.experimental.validate.enabled#.",
- "configuration.markdown.links.openLocation.beside": "Otevírat odkazy vedle aktivního editoru",
- "configuration.markdown.links.openLocation.currentGroup": "Otevírat odkazy v aktivní skupině editorů",
- "configuration.markdown.links.openLocation.description": "Určuje, kde se mají otevírat odkazy v souborech Markdownu.",
- "configuration.markdown.preview.openMarkdownLinks.description": "Určuje, jak se mají otevírat odkazy na jiné soubory Markdownu v náhledu Markdownu.",
- "configuration.markdown.preview.openMarkdownLinks.inEditor": "Zkusit odkazy otevřít v editoru",
- "configuration.markdown.preview.openMarkdownLinks.inPreview": "Zkusit odkazy otevřít v náhledu Markdownu",
- "configuration.markdown.suggest.paths.enabled.description": "Povolit nebo zakázat návrhy cest pro odkazy Markdown",
- "description": "Poskytuje rozšířenou podporu jazyka pro Markdown.",
- "displayName": "Funkce jazyka Markdown",
- "markdown.findAllFileReferences": "Vyhledat odkazy na soubory",
- "markdown.preview.breaks.desc": "Nastaví způsob vykreslování konců řádků v náhledu Markdownu. Pokud je nastaveno na hodnotu true, pro každý nový řádek v odstavcích se vytvoří značka.",
- "markdown.preview.doubleClickToSwitchToEditor.desc": "Poklikáním na náhled Markdownu přepnete do editoru.",
- "markdown.preview.fontFamily.desc": "Určuje rodinu písem používanou v náhledu Markdownu.",
- "markdown.preview.fontSize.desc": "Určuje velikost písma v pixelech používanou v náhledu Markdownu.",
- "markdown.preview.lineHeight.desc": "Určuje výšku řádku používanou v náhledu Markdownu. Toto číslo je relativní k velikosti písma.",
- "markdown.preview.linkify": "Povolí nebo zakáže převod textu v podobě adresy URL na odkazy v náhledu Markdownu.",
- "markdown.preview.markEditorSelection.desc": "Označí aktuální výběr editoru v náhledu Markdownu.",
- "markdown.preview.refresh.title": "Aktualizovat náhled",
- "markdown.preview.scrollEditorWithPreview.desc": "Při procházení zobrazení náhledu Markdownu aktualizovat zobrazení editoru",
- "markdown.preview.scrollPreviewWithEditor.desc": "Při procházení zobrazení editoru Markdownu aktualizovat zobrazení náhledu",
- "markdown.preview.title": "Otevřít náhled",
- "markdown.preview.toggleLock.title": "Přepnout zamykání náhledu",
- "markdown.preview.typographer": "Umožňuje povolit nebo zakázat některá nahrazení nezávislá na jazyku a úpravu uvozovek v náhledu Markdownu.",
- "markdown.previewSide.title": "Otevřít náhled na boku",
- "markdown.showLockedPreviewToSide.title": "Otevřít zamknutý náhled na boku",
- "markdown.showPreviewSecuritySelector.title": "Změnit nastavení zabezpečení náhledu",
- "markdown.showSource.title": "Zobrazit zdroj",
- "markdown.styles.dec": "Seznam adres URL nebo místních cest k šablonám stylů CSS, které se mají použít z náhledu Markdownu. Relativní cesty jsou interpretovány relativně ke složce otevřené v Exploreru. Pokud není otevřená žádná složka, budou se interpretovat relativně k umístění souboru Markdownu. Všechna dvojitá zpětná lomítka (\\) musí být zapsána jako čtyři zpětná lomítka (\\\\).",
- "markdown.trace.extension.desc": "Povolit protokolování ladění pro rozšíření Markdownu",
- "markdown.trace.server.desc": "Sleduje komunikaci mezi VS Code a serverem jazyka Markdown.",
- "workspaceTrust": "Vyžadováno pro načítání stylů konfigurovaných v pracovním prostoru."
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-cs/translations/extensions/markdown-math.i18n.json b/i18n/vscode-language-pack-cs/translations/extensions/markdown-math.i18n.json
deleted file mode 100644
index 30deadcd8b..0000000000
--- a/i18n/vscode-language-pack-cs/translations/extensions/markdown-math.i18n.json
+++ /dev/null
@@ -1,17 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "package": {
- "config.markdown.math.enabled": "Povolí nebo zakáže vykreslování matematiky v integrovaném náhledu Markdownu.",
- "description": "Přidá podporu matematiky do Markdownu v poznámkových blocích.",
- "displayName": "Markdown – matematika"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-cs/translations/extensions/markdown-notebook-math.i18n.json b/i18n/vscode-language-pack-cs/translations/extensions/markdown-notebook-math.i18n.json
deleted file mode 100644
index aacd1a93b8..0000000000
--- a/i18n/vscode-language-pack-cs/translations/extensions/markdown-notebook-math.i18n.json
+++ /dev/null
@@ -1,16 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "package": {
- "displayName": "Matematika v poznámkovém bloku Markdown",
- "description": "Poskytuje rozšířenou podporu jazyka pro Markdown."
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-cs/translations/extensions/merge-conflict.i18n.json b/i18n/vscode-language-pack-cs/translations/extensions/merge-conflict.i18n.json
deleted file mode 100644
index ae9d05bf86..0000000000
--- a/i18n/vscode-language-pack-cs/translations/extensions/merge-conflict.i18n.json
+++ /dev/null
@@ -1,35 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "package": {
- "command.accept.all-both": "Přijmout obojí (vše)",
- "command.accept.all-current": "Přijmout aktuální (vše)",
- "command.accept.all-incoming": "Přijmout příchozí (vše)",
- "command.accept.both": "Přijmout obojí",
- "command.accept.current": "Přijmout aktuální",
- "command.accept.incoming": "Přijmout příchozí",
- "command.accept.selection": "Přijmout výběr",
- "command.category": "Konflikt sloučení",
- "command.compare": "Porovnat aktuální konflikt",
- "command.next": "Další konflikt",
- "command.previous": "Předchozí konflikt",
- "config.autoNavigateNextConflictEnabled": "Určuje, jestli se má po vyřešení konfliktu sloučení automaticky přejít na další konflikt sloučení.",
- "config.codeLensEnabled": "Vytvořit CodeLens pro bloky konfliktů sloučení v editoru",
- "config.decoratorsEnabled": "Vytvořit dekoratéry pro bloky konfliktů sloučení v editoru",
- "config.diffViewPosition": "Určuje, kde by se mělo při porovnávání změn v konfliktech sloučení otevřít rozdílové zobrazení.",
- "config.diffViewPosition.below": "Otevřít rozdílové zobrazení pod aktuální skupinou editorů",
- "config.diffViewPosition.beside": "Otevřít rozdílové zobrazení vedle aktuální skupiny editorů",
- "config.diffViewPosition.current": "Otevřít rozdílové zobrazení v aktuální skupině editorů",
- "config.title": "Konflikt sloučení",
- "description": "Zvýraznění a příkazy pro vložené (inline) konflikty sloučení",
- "displayName": "Konflikt sloučení"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-cs/translations/extensions/microsoft-authentication.i18n.json b/i18n/vscode-language-pack-cs/translations/extensions/microsoft-authentication.i18n.json
deleted file mode 100644
index ce398bf629..0000000000
--- a/i18n/vscode-language-pack-cs/translations/extensions/microsoft-authentication.i18n.json
+++ /dev/null
@@ -1,24 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "dist/AADHelper": {
- "pasteCodePlaceholder": "Paste authorization code here...",
- "pasteCodePrompt": "Provide the authorization code to complete the sign in flow.",
- "pasteCodeTitle": "Microsoft Authentication",
- "signOut": "Byli jste odhlášeni, protože se nepovedlo načíst uložené ověřovací informace."
- },
- "package": {
- "description": "Zprostředkovatel ověřování společnosti Microsoft",
- "displayName": "Učet Microsoft",
- "signIn": "Přihlásit se",
- "signOut": "Odhlásit se"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-cs/translations/extensions/ms-vscode.github-browser.i18n.json b/i18n/vscode-language-pack-cs/translations/extensions/ms-vscode.github-browser.i18n.json
deleted file mode 100644
index b60c276bb0..0000000000
--- a/i18n/vscode-language-pack-cs/translations/extensions/ms-vscode.github-browser.i18n.json
+++ /dev/null
@@ -1,16 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "package": {
- "displayName": "Prohlížeč GitHub",
- "description": "Vzdáleně procházet úložiště GitHubu"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-cs/translations/extensions/ms-vscode.js-debug.i18n.json b/i18n/vscode-language-pack-cs/translations/extensions/ms-vscode.js-debug.i18n.json
index 080d6c65bb..582f690889 100644
--- a/i18n/vscode-language-pack-cs/translations/extensions/ms-vscode.js-debug.i18n.json
+++ b/i18n/vscode-language-pack-cs/translations/extensions/ms-vscode.js-debug.i18n.json
@@ -8,319 +8,54 @@
],
"version": "1.0.0",
"contents": {
- "/src/adapter/breakpoints/userDefinedBreakpoint": {
- "breakpoint.provisionalBreakpoint": "Nevázaná zarážka"
- },
- "/src/adapter/console/queryObjectsMessage": {
- "queryObject.couldNotQuery": "Nepovedlo se zadat dotaz na zadaný objekt.",
- "queryObject.errorPreview": "Povedlo se vygenerovat náhled: {0}",
- "queryObject.invalidObject": "Dotazy lze zadávat pouze na objekty."
- },
- "/src/adapter/console/textualMessage": {
- "console.assert": "Kontrolní výraz selhal."
- },
- "/src/adapter/customBreakpoints": {
- "breakpoint.animationFrameFired": "Vyvolán snímek animace",
- "breakpoint.cancelAnimationFrame": "Zrušit snímek animace",
- "breakpoint.closeAudioContext": "Zavřít AudioContext",
- "breakpoint.createAudioContext": "Vytvořit AudioContext",
- "breakpoint.createCanvasContext": "Vytvořit kontext plátna",
- "breakpoint.cspViolation": "Skript zablokován zásadami zabezpečení obsahu",
- "breakpoint.cspViolationNamed": "Porušení zásad zabezpečení obsahu (CSP) {0}",
- "breakpoint.cspViolationNamedDetails": "Pozastaveno na zarážce instrumentace porušení zásad zabezpečení obsahu (CSP), direktiva {0}",
- "breakpoint.eventListenerNamed": "Pozastaveno na zarážce naslouchacího procesu události {0}, vyvoláno na {1}",
- "breakpoint.instrumentationNamed": "Pozastaveno na zarážce instrumentace {0}",
- "breakpoint.requestAnimationFrame": "Požádat o snímek animace",
- "breakpoint.resumeAudioContext": "Obnovit AudioContext",
- "breakpoint.scriptFirstStatement": "První příkaz skriptu",
- "breakpoint.setInnerHtml": "Nastavit innerHTML",
- "breakpoint.setIntervalFired": "Vyvoláno setInterval",
- "breakpoint.setTimeoutFired": "Vyvoláno setTimeout",
- "breakpoint.suspendAudioContext": "Pozastavit AudioContext",
- "breakpoint.webglErrorFired": "Vyvolána chyba WebGL",
- "breakpoint.webglErrorNamed": "Chyba WebGL {0}",
- "breakpoint.webglErrorNamedDetails": "Pozastaveno na zarážce instrumentace chyby WebGL. Chyba: {0}",
- "breakpoint.webglWarningFired": "Vyvoláno upozornění WebGL"
- },
- "/src/adapter/debugAdapter": {
- "breakpoint.caughtExceptions": "Zachycené výjimky",
- "breakpoint.caughtExceptions.description": "Pozastaví se na všech vyvolaných chybách, i když se zachytí později.",
- "breakpoint.uncaughtExceptions": "Nezachycené výjimky",
- "error.cannotPrettyPrint": "Nelze provést přehledný výpis.",
- "error.sourceContentDidFail": "Nelze načíst zdrojový obsah.",
- "error.sourceNotFound": "Zdroj nenalezen",
- "error.variableNotFound": "Proměnná se nenašla."
- },
- "/src/adapter/profiling/basicCpuProfiler": {
- "profile.cpu.description": "Vygeneruje soubor .cpuprofile, který můžete otevřít v Chrome DevTools.",
- "profile.cpu.label": "Profil CPU"
- },
- "/src/adapter/profiling/basicHeapProfiler": {
- "profile.heap.description": "Vygeneruje soubor .heapprofile, který můžete otevřít v Chrome DevTools.",
- "profile.heap.label": "Profil haldy"
- },
- "/src/adapter/profiling/heapDumpProfiler": {
- "profile.heap.description": "Vygeneruje soubor .heapsnapshot, který můžete otevřít v nástroji Chrome DevTools.",
- "profile.heap.label": "Snímek haldy"
- },
- "/src/adapter/sources": {
- "source.skipFiles": "Přeskočeno přes skipFiles"
- },
- "/src/adapter/stackTrace": {
- "scope.block": "Blok",
- "scope.catch": "Blok catch",
- "scope.closure": "Uzavření",
- "scope.closureNamed": "Zavření ({0})",
- "scope.eval": "Vyhodnocení",
- "scope.global": "Globální",
- "scope.local": "Místní",
- "scope.module": "Modul",
- "scope.returnValue": "Návratová hodnota",
- "scope.script": "Skript",
- "scope.with": "Blok With",
- "smartStepSkipLabel": "Přeskočeno přes smartStep",
- "source.skipFiles": "Přeskočeno podle nastavení skipFiles"
- },
- "/src/adapter/threads": {
- "error.evaluateDidFail": "Nelze vyhodnotit.",
- "error.evaluateOnAsyncStackFrame": "Nelze vyhodnotit v asynchronním bloku zásobníku.",
- "error.pauseDidFail": "Nelze pozastavit.",
- "error.restartFrameAsync": "Nelze restartovat asynchronní blok zásobníku.",
- "error.resumeDidFail": "Nelze pokračovat.",
- "error.stackFrameNotFound": "Blok zásobníku nebyl nalezen.",
- "error.stepInDidFail": "Nelze krokovat s vnořením.",
- "error.stepOutDidFail": "Nelze krokovat s vystoupením.",
- "error.stepOverDidFail": "Nelze krokovat na další.",
- "error.threadNotPaused": "Podproces není pozastaven.",
- "error.threadNotPausedOnException": "Podproces není pozastaven při výjimce.",
- "error.unknownRestartError": "Rámec se nepovedlo restartovat.",
- "pause.DomBreakpoint": "Pozastaveno na zarážce DOM",
- "pause.assert": "Pozastaveno na kontrolním příkazu",
- "pause.breakpoint": "Pozastaveno na zarážce",
- "pause.debugCommand": "Pozastaveno při volání metody debug()",
- "pause.default": "Pozastaveno",
- "pause.eventListener": "Pozastaveno na naslouchacím procesu událostí",
- "pause.exception": "Pozastaveno na výjimce",
- "pause.instrumentation": "Pozastaveno na zarážce instrumentace",
- "pause.oom": "Pozastaveno před výjimkou při nedostatku paměti",
- "pause.promiseRejection": "Pozastaveno na zamítnutí příslibu",
- "pause.xhr": "Pozastaveno na XMLHttpRequest nebo při načtení",
- "reason.description.restart": "Pozastaveno na položce rámce",
- "warnings.handleSourceMapPause.didNotWait": "UPOZORNĚNÍ: Zpracování mapování zdroje {0} trvalo přes {1} ms, takže jsme pokračovali v provádění bez čekání na nastavení všech zarážek pro skript."
- },
- "/src/adapter/variableStore": {
- "error.customValueDescriptionGeneratorFailed": "{0} (nepovedlo se popsat: {1})",
- "error.emptyExpression": "Nelze nastavit prázdnou hodnotu.",
- "error.invalidExpression": "Neplatný výraz",
- "error.setVariableDidFail": "Nelze nastavit hodnotu proměnné.",
- "error.unknown": "Neznámá chyba",
- "error.variableNotFound": "Proměnná se nenašla"
- },
- "/src/binder": {
- "breakpoint.provisionalBreakpoint": "Nevázaná zarážka"
- },
- "/src/dap/errors": {
- "NVM_HOME.not.found.message": "Atribut runtimeVersion vyžaduje správce verzí Node.js nvm-windows nebo nvs.",
- "NVS_HOME.not.found.message": "Atribut runtimeVersion vyžaduje, aby byl nainstalován správce verzí Node.js nvs nebo nvm.",
- "VSND2011": "Nelze spustit cíl ladění v terminálu ({0}).",
- "VSND2029": "Nelze načíst proměnné prostředí ze souboru ({0}).",
- "asyncScopesNotAvailable": "Proměnné nejsou dostupné v asynchronních zásobnících.",
- "breakpointSyntaxError": "Chyba syntaxe při nastavování zarážky s podmínkou {0} na řádku {1}: {2}",
- "browserVersionNotFound": "Nelze najít {0} verze {1}. Dostupné automaticky zjištěné verze: {2}. Jednu z těchto verzí můžete určit jako hodnotu parametru runtimeExecutable v souboru launch.json nebo můžete zadat absolutní cestu ke spustitelnému souboru prohlížeče.",
- "error.browserAttachError": "Nelze připojit k prohlížeči.",
- "error.browserLaunchError": "Nelze spustit prohlížeč: {0}.",
- "error.threadNotFound": "Cílová stránka nebyla nalezena. Možná budete muset aktualizovat nastavení urlFilter tak, aby odpovídalo stránce, kterou chcete ladit.",
- "invalidHitCondition": "Neplatná podmínka průchodu {0}. Očekává se výraz, například > 42 nebo == 2.",
- "noBrowserInstallFound": "V systému se nepovedlo najít instalaci prohlížeče. Zkuste ji nainstalovat nebo v souboru launch.json zadejte v parametru runtimeExecutable absolutní cestu k prohlížeči.",
- "noUwpPipeFound": "Nelze se připojit k žádnému kanálu webového zobrazení UPW. Ujistěte se, že je vaše webové zobrazení hostované v režimu ladění a že „pipeName“ v souboru „launch.json“ je správné.",
- "profile.error.concurrent": "Před spuštěním nového profilu prosím zastavte běžící profil.",
- "profile.error.generic": "Při načítání profilu z cíle došlo k chybě.",
- "runtime.node.notfound": "Nelze najít binární soubor Node.js {0}: {1}. Zkontrolujte, že je Node.js nainstalovaný a je uveden v proměnné PATH, nebo nastavte runtimeExecutable v souboru launch.json.",
- "runtime.node.outdated": "Verze Node v „{0}“ je zastaralá (verze {1}). Je vyžadován Node 8.x nebo vyšší verze.",
- "runtime.version.not.found.message": "Node.js verze {0} není nainstalovaný pomocí správce verzí {1}.",
- "sourcemapParseError": "Nepovedlo se přečíst mapování zdroje pro {0}: {1}",
- "uwpPipeNotAvailable": "Ladění webového zobrazení UPW není na vaší platformě k dispozici."
- },
- "/src/debugServer": {
- "breakpoint.provisionalBreakpoint": "Nevázaná zarážka"
- },
- "/src/targets/browser/browserAttacher": {
- "attach.cannotConnect": "Nelze se připojit k cíli: {0}: {1}",
- "chrome.targets.placeholder": "Vyberte kartu."
- },
- "/src/targets/node/nodeAttacher": {
- "node.attach.restart.message": "Bylo ztraceno připojení k laděné součásti. Pokus o opětovné připojení bude proveden za {0} ms.\r\n"
- },
- "/src/targets/node/nodeBinaryProvider": {
- "outOfDate": "{0} Chtěli byste i tak ladění zkusit?",
- "runtime.node.notfound.enoent": "cesta neexistuje",
- "runtime.node.notfound.spawnErr": "chyba při získávání verze: {0}",
- "warning.16bpIssue": "Některé zarážky nemusí ve vaší verzi Node.js fungovat. Doporučujeme upgradovat, abyste získali nejnovější opravy chyb, výkonu a zabezpečení. Podrobnosti: https://aka.ms/AAcsvqm",
- "warning.8outdated": "Používáte zastaralou verzi Node.js. Doporučujeme upgradovat, abyste získali nejnovější opravy chyb, výkonu a zabezpečení.",
- "yes": "Ano"
- },
- "/src/ui/autoAttach": {
- "details": "Podrobnosti"
- },
- "/src/ui/companionBrowserLaunch": {
- "cannotDebugInBrowser": "Prohlížeč odsud nemůžeme spustit v režimu ladění. Pokud chcete povolit ladění, otevřete tento pracovní prostor ve VS Code na počítači."
- },
- "/src/ui/configuration/chromiumDebugConfigurationProvider": {
- "chrome.launch.name": "Spustit Chrome proti localhostu",
- "existingBrowser.alert": "Vypadá to, že prohlížeč je již spuštěn z {0}. Před pokusem o ladění ho prosím zavřete, jinak by se k němu VS Code nemusel být schopen připojit.",
- "existingBrowser.debugAnyway": "Přesto ladit",
- "existingBrowser.location.default": "stará relace ladění",
- "existingBrowser.location.userDataDir": "nakonfigurovaný adresář userDataDir"
- },
- "/src/ui/configuration/edgeDebugConfigurationProvider": {
- "chrome.launch.name": "Spustit Microsoft Edge proti místnímu hostiteli"
- },
- "/src/ui/configuration/nodeDebugConfigurationProvider": {
- "debug.terminal.label": "Terminál pro ladění JavaScriptu",
- "node.launch.currentFile": "Spustit aktuální soubor",
- "node.launch.script": "Spustit skript: {0}"
- },
- "/src/ui/configuration/nodeDebugConfigurationResolver": {
- "cwd.notFound": "Nakonfigurovaný cwd {0} neexistuje.",
- "mern.starter.explanation": "Spustit konfiguraci pro vytvořený projekt {0}",
- "node.launch.config.name": "Spustit program",
- "outFiles.explanation": "Upravte vzory glob v atributu outFiles tak, aby pokrývaly vygenerovaný JavaScript.",
- "program.guessed.from.package.json.explanation": "Spustit konfiguraci vytvořenou na základě souboru package.json",
- "program.not.found.message": "Nelze najít program k ladění."
- },
- "/src/ui/debugLinkUI": {
- "debugLink.invalidUrl": "Zadaná adresa URL je neplatná.",
- "debugLink.savePrompt": "Chcete si uložit konfiguraci do souboru launch.json, abyste k ní měli snadný přístup později?",
- "never": "Nikdy",
- "no": "Ne",
- "yes": "Ano"
- },
- "/src/ui/debugNpmScript": {
- "debug.npm.noScripts": "Ve vašem souboru package.json nebyly nalezeny žádné skripty npm.",
- "debug.npm.noWorkspaceFolder": "Pokud chcete ladit skripty npm, musíte otevřít složku pracovního prostoru.",
- "debug.npm.notFound.open": "Upravit soubor package.json",
- "debug.npm.parseError": "Nelze přečíst {0}: {1}"
- },
- "/src/ui/debugTerminalUI": {
- "terminal.cwdpick": "Select current working directory for new terminal"
- },
- "/src/ui/diagnosticsUI": {
- "inspectSessionEnded": "Vypadá to, že vaše ladicí relace už skončila. Zkuste ladění opakovat a potom spusťte příkaz „Debug: Diagnose Breakpoint Problems“ (Ladit: Diagnostikovat problémy zarážek).",
- "never": "Nikdy",
- "notNow": "Teď ne",
- "selectInspectSession": "Vyberte relaci, kterou chcete zkontrolovat:",
- "yes": "Ano"
- },
- "/src/ui/disableSourceMapUI": {
- "always": "Vždy",
- "disableSourceMapUi.msg": "Jedná se o chybějící cestu k souboru, na kterou odkazuje sourcemap. Chcete místo toho ladit zkompilovanou verzi?",
- "no": "Ne",
- "yes": "Ano"
- },
- "/src/ui/edgeDevToolOpener": {
- "selectEdgeToolSession": "Vyberte stránku, na které chcete vývojářské nástroje otevřít."
- },
- "/src/ui/linkedBreakpointLocationUI": {
- "ignore": "Ignorovat",
- "readMore": "Další informace"
- },
- "/src/ui/longPredictionUI": {
- "longPredictionWarning.disable": "Znovu nezobrazovat",
- "longPredictionWarning.message": "Konfigurace zarážek trvá delší dobu. Můžete ji urychlit aktualizací nastavení outFiles v souboru launch.json.",
- "longPredictionWarning.noFolder": "Není otevřená žádná složka pracovního prostoru.",
- "longPredictionWarning.open": "Otevřít soubor launch.json"
- },
- "/src/ui/processPicker": {
- "cannot.enable.debug.mode.error": "Připojit k procesu: Nelze povolit režim ladění pro proces {0} ({1}).",
- "pickNodeProcess": "Vyberte proces node.js, ke kterému se má provést připojení.",
- "process.id.error": "Připojit k procesu: {0} nevypadá jako ID procesu.",
- "process.id.port.signal": "ID procesu: {0}, port ladění: {1} ({2})",
- "process.id.signal": "ID procesu: {0} ({1})",
- "process.picker.error": "Výběr procesu selhal ({0})"
- },
- "/src/ui/profiling/breakpointTerminationCondition": {
- "breakpointTerminationWarnConfirm": "OK",
- "breakpointTerminationWarnSlow": "Profilování s povolenými zarážkami může změnit výkon vašeho kódu. Může být užitečné ověřit zjištěné výsledky pomocí podmínek ukončení duration (doba trvání) nebo manual (ručně).",
- "profile.termination.breakpoint.description": "Provádět, dokud nebude dosaženo konkrétní zarážky",
- "profile.termination.breakpoint.label": "Vybrat zarážku"
- },
- "/src/ui/profiling/durationTerminationCondition": {
- "profile.termination.duration.description": "Provádět po konkrétní dobu",
- "profile.termination.duration.inputTitle": "Doba trvání profilu",
- "profile.termination.duration.invalidFormat": "Zadejte prosím číslo.",
- "profile.termination.duration.invalidLength": "Zadejte prosím číslo větší než 1.",
- "profile.termination.duration.label": "Doba trvání",
- "profile.termination.duration.placeholder": "Doba trvání profilu v sekundách, například 5"
- },
- "/src/ui/profiling/manualTerminationCondition": {
- "profile.termination.duration.description": "Provádět do ručního zastavení",
- "profile.termination.duration.label": "Ručně"
- },
- "/src/ui/profiling/uiProfileManager": {
- "no": "Ne",
- "profile.alreadyRunning": "Relace profilování je už spuštěná. Chcete ji zastavit a spustit novou relaci?",
- "profile.sessionState": "Profilování",
- "profile.status.default": "$(loading~spin) Kliknutím zastavíte profilování.",
- "profile.status.multiSession": "$(loading~spin) Kliknutím zastavíte profilování (počet relací: {0}).",
- "profile.status.single": "$(loading~spin) Kliknutím zastavíte profilování ({0}).",
- "profile.termination.title": "Jak dlouho má být profil spuštěn:",
- "profile.type.title": "Typ profilu:",
- "yes": "Ano"
- },
- "/src/ui/profiling/uiProfileSession": {
- "profile.saving": "Ukládání",
- "progress.profile.start": "Spouští se profil…",
- "progress.profile.stop": "Zastavuje se profil…"
- },
- "/src/ui/terminalLinkHandler": {
- "cantOpenChromeOnWeb": "Prohlížeč odsud nemůžeme spustit v režimu ladění. Pokud chcete ladit tuto webovou stránku, otevřete tento pracovní prostor z VS Code na počítači.",
- "terminalLinkHover.debug": "Ladit adresu URL"
- },
- "/src/vsDebugServer": {
- "session.rootSessionName": "Adaptér ladění JavaScriptu"
- },
"package": {
- "add.browser.breakpoint": "Přidat zarážku prohlížeče",
+ "add.eventListener.breakpoint": "Přepnout zarážky naslouchacího procesu událostí",
+ "add.xhr.breakpoint": "Přidat zarážku XHR/Fetch",
"attach.node.process": "Připojit k procesu uzlu",
"base.cascadeTerminateToConfigurations.label": "Seznam relací ladění, které budou také zastaveny, když bude ukončena tato relace ladění",
+ "base.enableDWARF.label": "Přepíná, jestli se ladicí program pokusí přečíst ladicí symboly DWARF z WebAssembly, což může být náročné na prostředky. Aby bylo možné fungovat, vyžaduje rozšíření ms-vscode.wasm-vm-debugging.",
+ "breakpoint.xhr.any": "Jakékoli XHR/Fetch",
+ "breakpoint.xhr.contains": "Přerušit, pokud adresa URL obsahuje:",
"browser.address.description": "IP adresa nebo název hostitele, na kterých naslouchá laděný prohlížeč",
"browser.attach.port.description": "Port, který se má použít ke vzdálenému ladění prohlížeče, zadaný jako --remote-debugging-port při spuštění prohlížeče",
- "browser.baseUrl.description": "Základní adresa URL pro překlad cest baseUrl. BaseURL se při mapování adres URL na soubory na disku zkracuje. Ve výchozím nastavení je to doména adresy URL spuštění.",
+ "browser.baseUrl.description": "Base URL to resolve paths baseUrl. baseURL is trimmed when mapping URLs to the files on disk. Defaults to the launch URL domain.",
"browser.browserAttachLocation.description": "Vynutí připojení prohlížeče v jednom umístění. Ve vzdáleném pracovním prostoru (například přes SSH nebo WSL) lze pomocí tohoto nastavení připojit prohlížeč na vzdáleném počítači (místo toho, aby byl připojen místně).",
"browser.browserLaunchLocation.description": "Vynutí spuštění prohlížeče v jednom umístění. Ve vzdáleném pracovním prostoru (například přes SSH nebo WSL) lze pomocí tohoto nastavení otevřít prohlížeč na vzdáleném počítači (místo toho, aby byl připojen místně).",
"browser.cleanUp.description": "Jaké čištění se má provést po dokončení relace ladění. Určuje, jestli se má zavřít pouze laděná karta nebo celý prohlížeč.",
"browser.cwd.description": "Volitelný pracovní adresář pro spustitelný soubor modulu runtime",
"browser.disableNetworkCache.description": "Určuje, jestli se má u každého požadavku přeskočit mezipaměť sítě.",
- "browser.env.description": "Volitelný slovník dvojic klíč/hodnota prostředí pro prohlížeč",
+ "browser.env.description": "Optional dictionary of environment key/value pairs for the browser.",
"browser.file.description": "Místní soubor HTML, který se má otevřít v prohlížeči",
"browser.includeDefaultArgs.description": "Určuje, jestli se pro spuštění použijí výchozí argumenty pro spuštění prohlížeče (k zakázání funkcí, které by mohly ladění ztížit).",
+ "browser.includeLaunchArgs.description": "Pokročilé: Určuje, jestli jsou v prohlížeči nastavené nějaké výchozí argumenty spuštění/ladění. Ladicí program bude předpokládat, že prohlížeč bude používat ladění kanálu, například ladění, které je k dispozici s parametrem --remote-debugging-pipe.",
"browser.inspectUri.description": "Formát pro přepis inspectUri: Jde o šablonu, která interpoluje klíče v {curlyBraces}. Dostupné klíče:\r\n – url.* je parsovaná adresa běžící aplikace. Například {url.port}, {url.hostname}.\r\n – port je ladicí port, na kterém naslouchá Chrome.\r\n – browserInspectUri je identifikátor URI inspektoru ve spuštěném prohlížeči.\r\n – browserInspectUriPath je část cesty v identifikátoru URI inspektoru ve spuštěném prohlížeči (např.: /devtools/browser/e9ec0098-306e-472a-8133-5e42488929c2).\r\n – wsProtocol je doporučený protokol websocket. Nastaví se na wss, pokud původní adresa URL začíná na https, jinak ws.\r\n",
+ "browser.killBehavior.description": "Konfiguruje, jak se ukončují procesy prohlížeče při zastavování relace pomocí příkazu cleanUp: wholeBrowser. Možnosti:\r\n\r\n- forceful (výchozí): Vynutí okamžité zrušení stromu procesu. Odešle příkaz SIGKILL v posixu nebo taskkill.exe /F ve Windows.\r\n- polite: Strom procesu se zruší řádně. Je možné, že procesy, které se nechovají správně, po vypnutí tímto způsobem nadále poběží. Odešle příkaz SIGTERM v posixu nebo taskkill.exe bez příznaku /F (force) ve Windows.\r\n- none: Nedojde k žádnému ukončení.",
"browser.launch.port.description": "Port, na kterém má prohlížeč naslouchat. Výchozí nastavení 0 způsobí, že prohlížeč bude laděn přes kanály, což je obecně bezpečnější možnost, kterou se doporučuje zvolit, pokud se nebudete chtít k prohlížeči připojovat z jiného nástroje.",
- "browser.pathMapping.description": "Mapování adres URL / cest na místní složky pro překlad skriptů v prohlížeči na skripty na disku",
+ "browser.pathMapping.description": "A mapping of URLs/paths to local folders, to resolve scripts in the Browser to scripts on disk",
"browser.perScriptSourcemaps.description": "Určuje, jestli se skripty načítají jednotlivě s jedinečnými soubory sourcemap, které obsahují základní název zdrojového souboru. Tato možnost se dá nastavit, aby se optimalizovalo zpracování souboru sourcemap při práci s velkým počtem malých skriptů. Když se nastaví auto, zjistíme známé případy, kdy je to žádoucí.",
"browser.profileStartup.description": "V případě hodnoty true bude profilování spuštěno při spuštění procesu.",
"browser.restart": "Určuje, jestli se má obnovit připojení při zavření připojení prohlížeče.",
"browser.revealPage": "Přepnout fokus na kartu",
"browser.runtimeArgs.description": "Nepovinné argumenty se předaly do spustitelného souboru modulu runtime.",
- "browser.runtimeExecutable.description": "Může mít hodnotu canary, stable nebo custom, případně to může být cesta ke spustitelnému souboru prohlížeče. Možnost custom znamená vlastní obálku, vlastní sestavení nebo proměnnou prostředí CHROME_PATH.",
+ "browser.runtimeExecutable.description": "Either 'canary', 'stable', 'custom' or path to the browser executable. Custom means a custom wrapper, custom build or CHROME_PATH environment variable.",
"browser.runtimeExecutable.edge.description": "Může mít hodnotu canary, stable, dev nebo custom, případně to může být cesta ke spustitelnému souboru prohlížeče. Možnost custom znamená vlastní obálku, vlastní sestavení nebo proměnnou prostředí EDGE_PATH.",
- "browser.server.description": "Nakonfiguruje webový server, který má být spuštěn. Používá stejnou konfiguraci jako úloha spuštění node.",
- "browser.skipFiles.description": "Pole s názvy souborů či složek nebo globy cesty, které se mají při ladění přeskočit",
+ "browser.server.description": "Configures a web server to start up. Takes the same configuration as the 'node' launch task.",
+ "browser.skipFiles.description": "Pole názvů souborů, složek nebo globů cest, které se mají při ladění přeskočit. Hvězdicové vzory a negace jsou povolené, například: [\"**/node_modules/**\", \"!**/node_modules/my-module/**\"].",
"browser.smartStep.description": "Automatické krokování pro nenamapované řádky v souborech sourcemap. Například kód, který TypeScript vytváří automaticky při kompilaci async/await nebo jiných funkcí.",
"browser.sourceMapPathOverrides.description": "Sada mapování pro přepsání umístění zdrojových souborů z umístění podle sourcemapu na jejich umístění na disku. Podrobnosti najdete v souboru README.",
"browser.sourceMapRenames.description": "Určuje, zda se má v zdrojovém mapování použít mapování „names“. Tato možnost vyžaduje požadavek na zdrojový obsah, který může být u určitých ladicích programů pomalý.",
"browser.sourceMaps.description": "Použijí se soubory sourcemap JavaScriptu (pokud existují).",
"browser.targetSelection": "Určuje, jestli se má provést připojení ke všem cílům, které odpovídají filtru adresy URL (automatic), nebo jestli se má zobrazit výzva k výběru jednoho z nich (pick).",
- "browser.timeout.description": "Doba opakování pokusů o připojení k prohlížeči v milisekundách. Výchozí hodnota je 10 000 ms.",
- "browser.url.description": "Bude hledat kartu s touto přesnou adresou URL a připojí se k ní, pokud bude nalezena.",
+ "browser.timeout.description": "Retry for this number of milliseconds to connect to the browser. Default is 10000 ms.",
+ "browser.url.description": "Will search for a tab with this exact url and attach to it, if found",
"browser.urlFilter.description": "Bude hledat stránku s touto adresou URL, a pokud ji najde, připojí se k ní. Může obsahovat zástupné znaky *.",
"browser.userDataDir.description": "Ve výchozím nastavení je prohlížeč spuštěn se samostatným profilem uživatele v dočasné složce. Pomocí této možnosti to lze přepsat. Pokud chcete prohlížeč spustit s výchozím profilem uživatele, nastavte hodnotu false. Nový prohlížeč nelze spustit, pokud je instance již spuštěna z „userDataDir“. ",
"browser.vueComponentPaths": "Seznam vzorů glob souboru pro hledání komponent *.vue. Ve výchozím nastavení se vyhledávání provádí v celém pracovním prostoru. Tento seznam musí být specifikován z důvodu dalších vyhledávání požadovaných mapováními zdroje ve Vue CLI 4. Pokud chcete toto speciální zpracovávání zakázat, zadejte jako hodnotu tohoto nastavení prázdné pole hodnot.",
"browser.webRoot.description": "Určuje absolutní cestu pracovního prostoru ke kořenovému adresáři webového serveru. Používá se pro překlad cest k souborům na disku, například /app.js. Zkratka pro pathMapping pro /",
- "chrome.attach.description": "Připojit k instanci Chromu, která už je v režimu ladění",
+ "chrome.attach.description": "Attach to an instance of Chrome already in debug mode",
"chrome.attach.label": "Chrome: připojení",
"chrome.label": "Webová aplikace (Chrome)",
- "chrome.launch.description": "Spustit Chrome pro ladění adresy URL",
+ "chrome.launch.description": "Launch Chrome to debug a URL",
"chrome.launch.label": "Chrome: spustit",
"commands.callersAdd.label": "Vyloučit volajícího",
"commands.callersAdd.paletteLabel": "Vyloučit volajícího z pozastavení v aktuálním umístění",
@@ -330,9 +65,15 @@
"commands.callersRemoveAll.label": "Odebrat všechny vyloučené volající",
"commands.disableSourceMapStepping.label": "Zakázat krokování namapovaného zdroje",
"commands.enableSourceMapStepping.label": "Povolit krokování namapovaného zdroje",
+ "commands.networkClear.label": "Vymazat protokol sítě",
+ "commands.networkCopyURI.label": "Zkopírovat adresu URL žádosti",
+ "commands.networkOpenBody.label": "Otevřít text odpovědi",
+ "commands.networkOpenBodyInHexEditor.label": "Otevřít text odpovědi v šestnáctkovém editoru",
+ "commands.networkReplayXHR.label": "Žádost o opětovné přehrání",
+ "commands.networkViewRequest.label": "Zobrazit žádost jako cURL",
"configuration.autoAttachMode": "Konfiguruje, které procesy se mají automaticky připojovat a ladit, když je zapnuté nastavení #debug.node.autoAttach#. Proces uzlu spuštěný s příznakem --inspect bude bez ohledu na toto nastavení připojen vždy.",
"configuration.autoAttachMode.always": "Automaticky připojovat ke každému procesu Node.js spuštěnému v terminálu",
- "configuration.autoAttachMode.disabled": "Automatické připojení je zakázáno a nezobrazuje se na stavovém řádku.",
+ "configuration.autoAttachMode.disabled": "Auto attach is disabled and not shown in status bar.",
"configuration.autoAttachMode.explicit": "Připojit, pouze pokud je zadán parametr --inspect",
"configuration.autoAttachMode.smart": "Automaticky připojit při spouštění skriptů, které nejsou ve složce node_modules",
"configuration.autoAttachSmartPatterns": "Konfiguruje vzory globů pro určení, kdy se má k připojení použít inteligentní režim #debug.javascript.autoAttachFilter#. Parametr $KNOWN_TOOLS$ se nahradí seznamem názvů běžných spouštěčů testů a kódu. [Další informace najdete v dokumentaci pro VS Code](https://code.visualstudio.com/docs/nodejs/nodejs-debugging#_auto-attach-smart-patterns).",
@@ -340,10 +81,11 @@
"configuration.breakOnConditionalError": "Určuje, jestli se má ukončit, když podmíněné zarážky způsobí chybu.",
"configuration.debugByLinkOptions": "Možnosti použité při ladění otevřených odkazů, na které se kliklo z terminálu ladění JavaScriptu. Pokud chcete toto chování zakázat, můžete pro toto nastavení zadat hodnotu off (vypnuto). Hodnota always (vždy) povolí ladění na všech terminálech.",
"configuration.defaultRuntimeExecutables": "Výchozí hodnota runtimeExecutable používaná pro spouštění konfigurací, pokud není zadaná. Toto možnost se dá použít ke konfiguraci vlastních cest k instalacím Node.js nebo prohlížeče.",
- "configuration.npmScriptLensLocation": "Kde chcete ve svých skriptech npm zobrazit informace CodeLens pro možnosti Run (Spustit) a Debug (Ladit). Možné hodnoty: all (všechny skripty), top (v horní části oddílu skriptů) nebo never (nikdy)",
+ "configuration.enableNetworkView": "Povolí experimentální zobrazení sítě pro cíle, které ho podporují.",
+ "configuration.npmScriptLensLocation": "Where a \"Run\" and \"Debug\" code lens should be shown in your npm scripts. It may be on \"all\", scripts, on \"top\" of the script section, or \"never\".",
"configuration.pickAndAttachOptions": "Výchozí možnosti používané při ladění procesu pomocí příkazu Ladit: připojit k procesu Node.js",
"configuration.resourceRequestOptions": "Možnosti požadavku, které se mají použít při načítání prostředků, třeba map zdrojů, v ladicím programu. Možná je bude nutné nakonfigurovat, pokud vaše mapy zdrojů například vyžadují ověření nebo používají certifikát podepsaný svým držitelem (self-signed certificate). Možnosti se používají při vytváření požadavku pomocí knihovny [`got`](https://github.com/sindresorhus/got).\r\n\r\nBěžný způsob, jak zakázat ověřování certifikátu, je předáním `{ \"https\": { \"rejectUnauthorized\": false } }`.",
- "configuration.terminalOptions": "Výchozí možnosti spuštění pro terminál ladění JavaScriptu a skripty npm",
+ "configuration.terminalOptions": "Default launch options for the JavaScript debug terminal and npm scripts.",
"configuration.unmapMissingSources": "Konfiguruje, jestli se automaticky zruší mapování souboru sourcemapped v případech, kdy se původní soubor nedá přečíst. Pokud je tato hodnota false (výchozí), zobrazí se výzva.",
"createDiagnostics.label": "Diagnostikovat problémy zarážky",
"customDescriptionGenerator.description": "Přizpůsobte si textový popis, který ladicí program zobrazí pro objekty (místní proměnné atd.). Příklady:\r\n 1. this.toString()// bude volat metodu toString pro tisk všech objektů.\r\n 2. this.customDescription ? this.customDescription() : defaultValue // Použít metodu customDescription, pokud je k dispozici, jinak vrátit hodnotu defaultValue\r\n 3. function (def) { return this.customDescription ? this.customDescription() : def } // Použít metodu customDescription, pokud je k dispozici, jinak vrátit hodnotu defaultValue\r\n ",
@@ -355,25 +97,26 @@
"debug.npm.script": "Ladit skript NPM",
"debug.terminal.attach": "Připojit k procesu terminálu Node.js",
"debug.terminal.label": "Terminál pro ladění JavaScriptu",
- "debug.terminal.program.description": "Příkaz, který se má spustit na spuštěném terminálu. Pokud není zadáno, terminál se otevře bez spuštění programu.",
- "debug.terminal.snippet.label": "Spustit npm start v terminálu ladění",
+ "debug.terminal.program.description": "Command to run in the launched terminal. If not provided, the terminal will open without launching a program.",
+ "debug.terminal.snippet.label": "Run \"npm start\" in a debug terminal",
"debug.terminal.toggleAuto": "Přepnout automatické připojení Node.js terminálu",
"debug.terminal.welcome": "[Terminál pro ladění JavaScriptu](command:extension.js-debug.createDebuggerTerminal)\r\n\r\nPomocí terminálu pro ladění JavaScriptu můžete ladit procesy Node.js spuštěné na příkazovém řádku.",
"debug.terminal.welcomeWithLink": "[Terminál pro ladění JavaScriptu](command:extension.js-debug.createDebuggerTerminal)\r\n\r\nPomocí terminálu pro ladění JavaScriptu můžete ladit procesy Node.js spuštěné na příkazovém řádku.\r\n\r\n[Adresa URL pro ladění](command:extension.js-debug.debugLink)",
- "debug.unverifiedBreakpoints": "Některé z vašich zarážek nelze nastavit. Pokud máte problém, můžete [troubleshoot your launch configuration] (command:extension.js-debug.createDiagnostics).",
+ "debug.unverifiedBreakpoints": "Některé z vašich zarážek nelze nastavit. Pokud máte problém, můžete [troubleshoot your launch configuration](command:extension.js-debug.createDiagnostics).",
"debugLink.label": "Otevřít odkaz",
"edge.address.description": "IP adresa nebo název hostitele, kterým webové zobrazení naslouchá při ladění webových zobrazení. Pokud není nastaveno, bude automaticky zjištěno.",
- "edge.attach.description": "Připojit k instanci Microsoft Edge, která už je v režimu ladění",
+ "edge.attach.description": "Attach to an instance of Edge already in debug mode",
"edge.attach.label": "Edge: připojit",
"edge.label": "Webová aplikace (Edge)",
- "edge.launch.description": "Spustit Edge pro ladění adresy URL",
+ "edge.launch.description": "Launch Edge to debug a URL",
"edge.launch.label": "Edge: spustit",
"edge.port.description": "Port, na kterém ladicí program webového zobrazení naslouchá při ladění webových zobrazení. Pokud není nastaveno, bude automaticky zjištěno.",
"edge.useWebView.attach.description": "Objekt obsahující pipeName kanálu ladění pro Webview2 hostované na UPW Toto je MyTestSharedMemory při vytváření kanálu „\\\\.\\pipe\\LOCAL\\MyTestSharedMemory“.",
"edge.useWebView.launch.description": "Když má hodnotu true, bude ladicí program považovat spustitelný soubor modulu runtime za hostitelskou aplikaci, která obsahuje webové zobrazení (WebView), což vám umožní ladit obsah skriptu webového zobrazení.",
+ "edit.xhr.breakpoint": "Upravit zarážku XHR/Fetch",
"enableContentValidation.description": "Určuje, jestli budeme ověřovat, že se obsah souborů na disku shoduje s těmi, které jsou načteny za běhu. To je užitečné v různých scénářích (a v některých z nich je to vyžadováno), může to však také vést k problémům, například pokud se použije transformace skriptů na straně serveru.",
- "errors.timeout": "{0}: vypršení časového limitu po {1} ms",
- "extension.description": "Rozšíření pro ladění programů Node.js a Chromu",
+ "errors.timeout": "{0}: timeout after {1}ms",
+ "extension.description": "An extension for debugging Node.js programs and Chrome.",
"extensionHost.label": "Vývoj rozšíření VS Code",
"extensionHost.launch.config.name": "Spustit rozšíření",
"extensionHost.launch.debugWebWorkerHost": "Konfiguruje, jestli se máme zkusit připojit k hostiteli rozšíření webového pracovního procesu.",
@@ -382,26 +125,30 @@
"extensionHost.launch.rendererDebugOptions": "Možnosti spuštění prohlížeče Chrome, které se mají použít při připojování k procesu vykreslování pomocí nastavení debugWebviews nebo debugWebWorkerHost",
"extensionHost.launch.runtimeExecutable.description": "Absolutní cesta k VS Code",
"extensionHost.launch.stopOnEntry.description": "Po spuštění automaticky zastaví hostitele rozšíření.",
+ "extensionHost.launch.testConfiguration": "Cesta ke konfiguračnímu souboru testu pro [testovací CLI](https://code.visualstudio.com/api/working-with-extensions/testing-extension#quick-setup-the-test-cli)",
+ "extensionHost.launch.testConfigurationLabel": "Jedna konfigurace, která se má spustit ze souboru. Pokud se nezadá, může se zobrazit výzva k výběru.",
"extensionHost.snippet.launch.description": "Spustit rozšíření VS Code v režimu ladění",
"extensionHost.snippet.launch.label": "Vývoj rozšíření VS Code",
"getDiagnosticLogs.label": "Uložit protokoly ladění diagnostického JS",
- "longPredictionWarning.disable": "Znovu nezobrazovat",
+ "longPredictionWarning.disable": "Příště už nezobrazovat",
"longPredictionWarning.message": "Konfigurace zarážek trvá delší dobu. Můžete ji urychlit aktualizací nastavení outFiles v souboru launch.json.",
"longPredictionWarning.noFolder": "Není otevřená žádná složka pracovního prostoru.",
"longPredictionWarning.open": "Otevřít soubor launch.json",
- "node.address.description": "Adresa TCP/IP procesu, který se má ladit. Výchozí hodnota je localhost.",
- "node.attach.attachExistingChildren.description": "Určuje, jestli má být proveden pokus o připojení k již vytvořeným podřízeným procesům.",
- "node.attach.attachSpawnedProcesses.description": "Určuje, jestli se mají nastavit proměnné prostředí v připojeném procesu ke sledování vytvořených podřízených položek.",
+ "node.address.description": "TCP/IP address of process to be debugged. Default is 'localhost'.",
+ "node.attach.attachExistingChildren.description": "Whether to attempt to attach to already-spawned child processes.",
+ "node.attach.attachSpawnedProcesses.description": "Whether to set environment variables in the attached process to track spawned children.",
"node.attach.config.name": "Připojit",
- "node.attach.continueOnAttach": "Pokud je nastavena hodnota true, automaticky obnovíme programy, které byly spuštěny a které čekají na --inspect-brk.",
+ "node.attach.continueOnAttach": "If true, we'll automatically resume programs launched and waiting on `--inspect-brk`",
"node.attach.processId.description": "ID procesu, ke kterému se má provést připojení",
"node.attach.restart.description": "Umožňuje pokusit se k programu znovu připojit v případě ztráty připojení. Pokud je nastavena hodnota true, budou pokusy o opětovné připojení prováděny jednou za sekundu bez omezení počtu pokusů. Interval a maximální počet opakovaných pokusů můžete upravit tak, že místo toho v objektu zadáte hodnoty pro nastavení delay a maxAttempts.",
"node.attachSimplePort.description": "Pokud je nastaveno, provede se připojení k procesu přes zadaný port. Obecně to pro programy Node.js již není nutné a ztrácí se tím možnost ladit podřízené procesy, ale může to být užitečné v některých neobvyklých scénářích, například při spuštění Deno a Dockeru. Pokud je nastaveno na hodnotu 0, zvolí se náhodný port a k argumentům spuštění se automaticky přidá volba --inspect-brk.",
- "node.console.title": "Konzola ladění uzlů",
+ "node.console.title": "Konzole ladění uzlů",
"node.disableOptimisticBPs.description": "Nenastavujte zarážky do žádného souboru, dokud se pro daný soubor nenačte sourcemap.",
+ "node.enableTurboSourcemaps.description": "Konfiguruje, jestli se má pro zjišťování sourcemap použít nový a rychlejší mechanismus.",
+ "node.experimentalNetworking.description": "Povolte experimentální kontrolu v Node.js. Pokud je tato možnost nastavená na automaticky, je tato možnost povolená pro verze Node.js, které ji podporují. Můžete ji nastavit na zapnuto nebo vypnuto, aby bylo možné ji explicitně povolit nebo zakázat.",
"node.killBehavior.description": "Konfiguruje, jak se mají ukončit procesy ladění při zastavení relace. Možnosti:\r\n\r\n- forceful (výchozí): Vynutí okamžité zrušení stromu procesu. Odešle příkaz SIGKILL v posixu nebo taskkill.exe /F ve Windows.\r\n- polite: Strom procesu se zruší řádně. Je možné, že procesy, které se nechovají správně, po vypnutí tímto způsobem nadále poběží. Odešle příkaz SIGTERM v posixu nebo taskkill.exe bez příznaku /F (force) ve Windows.\r\n- none: Nedojde k žádnému ukončení.",
"node.label": "Node.js",
- "node.launch.args.description": "Command line arguments passed to the program.\r\n\r\nCan be an array of strings or a single string. When the program is launched in a terminal, setting this property to a single string will result in the arguments not being escaped for the shell.",
+ "node.launch.args.description": "Argumenty příkazového řádku, které se předávají do programu.\r\n\r\nMůže to být pole řetězců nebo jeden řetězec. Když se program spustí v terminálu, nastavení této vlastnosti na jeden řetězec způsobí, že argumenty pro prostředí nebudou uvozeny.",
"node.launch.autoAttachChildProcesses.description": "Automaticky připojovat ladicí program k novým podřízených procesům",
"node.launch.config.name": "Spustit",
"node.launch.console.description": "Kde se má spustit cíl ladění",
@@ -412,11 +159,11 @@
"node.launch.env.description": "Proměnné prostředí se předaly do programu. Hodnota null odebere proměnnou z prostředí.",
"node.launch.envFile.description": "Absolutní cesta k souboru, který obsahuje definice proměnných prostředí",
"node.launch.logging": "Konfigurace protokolování",
- "node.launch.logging.cdp": "Cesta k souboru protokolu pro zprávy protokolu Chrome DevTools",
- "node.launch.logging.dap": "Cesta k souboru protokolu pro zprávy protokolu adaptéru ladění",
+ "node.launch.logging.cdp": "Path to the log file for Chrome DevTools Protocol messages",
+ "node.launch.logging.dap": "Path to the log file for Debug Adapter Protocol messages",
"node.launch.outputCapture.description": "Určuje, odkud se mají zachycovat výstupní zprávy: výchozí rozhraní API pro ladění, pokud je nastaveno na hodnotu console, nebo streamy stdout/stderr, pokud je nastaveno na hodnotu std.",
"node.launch.program.description": "Absolutní cesta k programu. Vygenerovaná hodnota je odhadnuta podle souboru package.json a otevřených souborů. Upravte tento atribut.",
- "node.launch.restart.description": "Zkusit program restartovat, pokud je ukončen s nenulovým ukončovacím kódem",
+ "node.launch.restart.description": "Try to restart the program if it exits with a non-zero exit code.",
"node.launch.runtimeArgs.description": "Nepovinné argumenty se předaly do spustitelného souboru modulu runtime.",
"node.launch.runtimeExecutable.description": "Modul runtime, který se má použít. Absolutní cesta nebo název modulu runtime, který je k dispozici prostřednictvím proměnné PATH. V případě vynechání se předpokládá hodnota node.",
"node.launch.runtimeSourcemapPausePatterns": "Seznam vzorů pro ruční vkládání zarážek pro vstupní body. Lze to použít k tomu, aby měl ladicí program možnost nastavit zarážky při použití mapování zdroje, která neexistují nebo která nebylo možné najít před spuštěním, jako například [v případě Serverless Framework](https://github.com/microsoft/vscode-js-debug/issues/492).",
@@ -424,12 +171,13 @@
"node.launch.useWSL.deprecation": "Rozšíření useWSL je zastaralé a přestane se podporovat. Místo toho použijte rozšíření Remote - WSL.",
"node.launch.useWSL.description": "Použít subsystém Windows pro Linux",
"node.localRoot.description": "Cesta k místnímu adresáři obsahujícímu program",
- "node.pauseForSourceMap.description": "Určuje, jestli se má počkat, než se načtou mapování zdroje pro každý příchozí skript. Toto nastavení snižuje výkon (zvyšuje režii zpracování) a při spuštění z disku je možné ho bezpečně zakázat, pokud není zakázána možnost rootPath.",
+ "node.pauseForSourceMap.description": "Whether to wait for source maps to load for each incoming script. This has a performance overhead, and might be safely disabled when running off of disk, so long as `rootPath` is not disabled.",
"node.port.description": "Port pro ladění, ke kterému se má provést připojení. Výchozí hodnota je 9229.",
"node.processattach.config.name": "Připojit k procesu",
"node.profileStartup.description": "V případě hodnoty true bude profilování spuštěno při spuštění procesu.",
+ "node.remote.host.header.description": "Explicitní hlavička hostitele, která se má použít při připojování ke inspector protokolu websocket. Pokud se nezadá, hlavička hostitele se nastaví na localhost. To je užitečné, když je inspector spuštěný za proxy serverem, který přijímá jenom konkrétní hlavičku hostitele.",
"node.remoteRoot.description": "Absolutní cesta ke vzdálenému adresáři obsahujícímu program",
- "node.resolveSourceMapLocations.description": "Seznam vzorů minimatch pro umístění (složky a adresy URL), kde je možné použít mapování zdroje k vyhodnocení umístění místních souborů. Lze tím zabránit případné chybě v kódu při mapování na externí zdroj. Vzory lze vyloučit tak, že k nim přidáte předponu !. Omezení lze zabránit nastavením prázdného pole hodnot nebo hodnoty null.",
+ "node.resolveSourceMapLocations.description": "A list of minimatch patterns for locations (folders and URLs) in which source maps can be used to resolve local files. This can be used to avoid incorrectly breaking in external source mapped code. Patterns can be prefixed with \"!\" to exclude them. May be set to an empty array or null to avoid restriction.",
"node.showAsyncStacks.description": "Zobrazí se asynchronní volání, která vedla k aktuálnímu zásobníku volání.",
"node.snippet.attach.description": "Připojit k běžícímu programu uzlu",
"node.snippet.attach.label": "Node.js: připojit",
@@ -459,11 +207,12 @@
"node.websocket.address.description": "Přesná adresa protokolu WebSocket pro připojení. Pokud není zadáno, bude zjištěno z adresy a portu.",
"openEdgeDevTools.label": "Otevřít vývojářské nástroje prohlížeče",
"outFiles.description": "Při povolení souborů sourcemap tyto vzory glob určují vygenerované soubory JavaScriptu. Pokud vzor začíná znakem !, budou soubory vyloučeny. Pokud není zadán, bude se vygenerovaný kód očekávat ve stejném adresáři jako jeho zdroj.",
- "pretty.print.script": "Přehledný výpis pro ladění",
+ "pretty.print.script": "Pretty print for debugging",
"profile.start": "Použít profil výkonu",
"profile.stop": "Zastavit profil výkonu",
- "remove.browser.breakpoint": "Odebrat zarážku prohlížeče",
- "remove.browser.breakpoint.all": "Odebrat všechny zarážky prohlížeče",
+ "remove.eventListener.breakpoint.all": "Odebrat všechny zarážky naslouchacího procesu událostí",
+ "remove.xhr.breakpoint": "Odebrat zarážku XHR/Fetch",
+ "remove.xhr.breakpoint.all": "Odebrat všechny zarážky XHR/Fetch",
"requestCDPProxy.label": "Požadovat proxy CDP pro relaci ladění",
"skipFiles.description": "Pole hodnot vzorů glob pro soubory, které se mají přeskočit při ladění. Vzor /** odpovídá všem interním modulům Node.js.",
"smartStep.description": "Provede se automatické krokování vygenerovaného kódu, který nelze namapovat zpět do původního zdroje.",
@@ -476,11 +225,235 @@
"timeouts.sourceMaps.sourceMapCumulativePause.description": "Doba navíc (v milisekundách) povolená pro relaci, po kterou je možné čekat na zpracování mapování zdroje po vyčerpání minimální doby (sourceMapMinPause)",
"timeouts.sourceMaps.sourceMapMinPause.description": "Minimální doba (v milisekundách) strávená čekáním na zpracování jednotlivých mapování zdroje při parsování skriptu",
"toggle.skipping.this.file": "Přepnout možnost přeskočení tohoto souboru",
- "trace.boolean.description": "Trasování lze nastavit na hodnotu true pro zápis diagnostických protokolů na disk.",
- "trace.description": "Konfiguruje, jaký diagnostický výstup je vytvořen.",
- "trace.logFile.description": "Určuje, kam jsou na disku zapisovány protokoly.",
+ "trace.boolean.description": "Trace may be set to 'true' to write diagnostic logs to the disk.",
+ "trace.description": "Configures what diagnostic output is produced.",
+ "trace.logFile.description": "Configures where on disk logs are written.",
"trace.stdio.description": "Určuje, jestli se mají vrátit data trasování ze spuštěné aplikace nebo prohlížeče.",
"workspaceTrust.description": "K ladění kódu v tomto pracovním prostoru je vyžadován vztah důvěryhodnosti."
+ },
+ "bundle": {
+ "A profiling session is already running, would you like to stop it and start a new session?": "Relace profilování je už spuštěná. Chcete ji zastavit a spustit novou relaci?",
+ "Add XHR Breakpoint": "Přidat zarážku XHR",
+ "Add new URL...": "Přidat novou adresu URL...",
+ "Adjust glob pattern(s) in the 'outFiles' attribute so that they cover the generated JavaScript.": "Upravte vzory glob v atributu outFiles tak, aby pokrývaly vygenerovaný JavaScript.",
+ "Always": "Vždy",
+ "Always in this Workspace": "Vždy v tomto pracovním prostoru",
+ "An error occurred taking a profile from the target.": "Při načítání profilu z cíle došlo k chybě.",
+ "Animation Frame Fired": "Vyvolán snímek animace",
+ "Any XHR or fetch": "Jakékoli XHR nebo Fetch",
+ "Assertion failed": "Kontrolní výraz selhal.",
+ "Attach to process: '{0}' doesn't look like a process id.": "Připojit k procesu: {0} nevypadá jako ID procesu.",
+ "Attach to process: cannot enable debug mode for process '{0}' ({1}).": "Připojit k procesu: Nelze povolit režim ladění pro proces {0} ({1}).",
+ "Attribute 'runtimeVersion' requires Node.js version manager 'nvm-windows' or 'nvs'.": "Atribut runtimeVersion vyžaduje správce verzí Node.js nvm-windows nebo nvs.",
+ "Attribute 'runtimeVersion' requires Node.js version manager 'nvs', 'nvm' or 'fnm' to be installed.": "Atribut „runtimeVersion“ vyžaduje instalaci správce verzí Node.js „nvs“, „nvm“ nebo „fnm“.",
+ "Attribute 'runtimeVersion' with a flavor/architecture requires 'nvs' to be installed.": "Atribut runtimeVersion s variantou nebo architekturou vyžaduje instalaci nvs.",
+ "Bidder Bidding Phase Start": "Zahájení fáze podávání nabídek zájemců",
+ "Bidder Reporting Phase Start": "Zahájení fáze reportování zájemců",
+ "Block": "Blokovat",
+ "Break when URL Contains": "Přerušit, pokud adresa URL obsahuje",
+ "Breaks on all throw errors, even if they're caught later.": "Pozastaví se na všech vyvolaných chybách, i když se zachytí později.",
+ "Breaks only on errors or promise rejections that are not handled.": "Přeruší se jenom pří chybách nebo zamítnutí příslibů, které nebyly zpracovány.",
+ "Browser connection failed, will retry: {0}": "Připojení k prohlížeči selhalo, pokus bude opakován: {0}",
+ "CPU Profile": "Profil CPU",
+ "CPU profile saved as \"{0}\" in your workspace folder": "Profil procesoru se ve složce pracovního prostoru uložil jako {0}.",
+ "CSP violation \"{0}\"": "Porušení CSP {0}",
+ "Can't find Node.js binary \"{0}\": {1}. Make sure Node.js is installed and in your PATH, or set the \"runtimeExecutable\" in your launch.json": "Nelze najít binární soubor Node.js {0}: {1}. Zkontrolujte, že je Node.js nainstalovaný a je uveden v proměnné PATH, nebo nastavte runtimeExecutable v souboru launch.json.",
+ "Can't load environment variables from file ({0}).": "Nelze načíst proměnné prostředí ze souboru ({0}).",
+ "Cancel Animation Frame": "Zrušit snímek animace",
+ "Cannot connect to the target at {0}: {1}": "Nelze se připojit k cíli: {0}: {1}",
+ "Cannot find `{0}` installed in {1}": "Nejde najít {0} s instalační cestou {1}.",
+ "Cannot find a program to debug": "Nelze najít program k ladění.",
+ "Cannot find test configuration with label `{0}`, got: {1}": "Nepovedlo se najít konfiguraci testu s popiskem {0}, získalo se: {1}.",
+ "Cannot launch debug target in terminal ({0}).": "Nelze spustit cíl ladění v terminálu ({0}).",
+ "Cannot restart asynchronous frame": "Nelze restartovat asynchronní blok zásobníku.",
+ "Cannot set an empty value": "Nelze nastavit prázdnou hodnotu.",
+ "Catch Block": "Blok Catch",
+ "Caught Exceptions": "Zachycené výjimky",
+ "Close AudioContext": "Zavřít AudioContext",
+ "Closure": "Zavření",
+ "Closure ({0})": "Zavření ({0})",
+ "Console profile started": "Profil konzoly se spustil",
+ "Could not connect to any UWP Webview pipe. Make sure your webview is hosted in debug mode, and that the `pipeName` in your `launch.json` is correct.": "Nelze se připojit k žádnému kanálu webového zobrazení UPW. Ujistěte se, že je vaše webové zobrazení hostované v režimu ladění a že „pipeName“ v souboru „launch.json“ je správné.",
+ "Could not find a location for the variable": "Nenašlo se umístění pro proměnnou.",
+ "Could not query the provided object": "Nepovedlo se zadat dotaz na zadaný objekt.",
+ "Could not read source map for {0}: {1}": "Nepovedlo se přečíst mapování zdroje pro {0}: {1}",
+ "Could not read {0}: {1}": "Nelze přečíst {0}: {1}",
+ "Create AudioContext": "Vytvořit AudioContext",
+ "Create canvas context": "Vytvořit kontext plátna",
+ "Debug Anyway": "Přesto ladit",
+ "Debug URL": "Ladit adresu URL",
+ "Details": "Podrobnosti",
+ "Don't show again": "Příště už nezobrazovat",
+ "Duration": "Doba trvání",
+ "Duration of Profile": "Doba trvání profilu",
+ "Edit XHR Breakpoint": "Upravit zarážku XHR",
+ "Edit package.json": "Upravit soubor package.json",
+ "Enables Node.js [auto attach]({0}) debugging in \"{1}\" mode/{Locked='[auto attach]({0})'}the 2nd placeholder is the setting value": "Povolí ladění Node.js [auto attach]({0}) v režimu „{1}“",
+ "Enter a URL or a pattern to match": "Zadejte adresu URL nebo vzor, který se má shodovat.",
+ "Eval": "Vyhodnocení",
+ "Frame could not be restarted": "Rámec se nepovedlo restartovat.",
+ "Generates a .cpuprofile file you can open in VS Code or the Edge/Chrome devtools": "Vygeneruje soubor .cpuprofile, který můžete otevřít ve VS Code nebo v Edge/Chrome DevTools.",
+ "Generates a .heapprofile file you can open in VS Code or the Edge/Chrome devtools": "Vygeneruje soubor .heapprofile, který můžete otevřít ve VS Code nebo v Edge/Chrome DevTools.",
+ "Generates a .heapsnapshot file you can open in VS Code or the Edge/Chrome devtools": "Vygeneruje soubor .heapsnapshot, který můžete otevřít ve VS Code nebo v Edge/Chrome DevTools.",
+ "Global": "Globální",
+ "Globals": "Globální",
+ "Got it!": "OK!",
+ "Heap Profile": "Profil haldy",
+ "Heap Snapshot": "Snímek haldy",
+ "How long to run the profile": "Jak dlouho má být profil spuštěn",
+ "Ignore": "Ignorovat",
+ "Installation complete! The extension will be used after you restart your debug session.": "Instalace dokončena! Rozšíření se použije po restartování relace ladění.",
+ "Installing the DWARF debugger...": "Instaluje se ladicí program DWARF...",
+ "Invalid expression": "Neplatný výraz",
+ "Invalid hit condition \"{0}\". Expected an expression like \"> 42\" or \"== 2\".": "Neplatná podmínka průchodu {0}. Očekává se výraz, například > 42 nebo == 2.",
+ "It looks like a browser is already running from {0}. Please close it before trying to debug, otherwise VS Code may not be able to connect to it.": "Vypadá to, že prohlížeč je již spuštěn z {0}. Před pokusem o ladění ho prosím zavřete, jinak by se k němu VS Code nemusel být schopen připojit.",
+ "It looks like your debug session has already ended. Try debugging again, then run the \"Debug: Diagnose Breakpoint Problems\" command.": "Vypadá to, že vaše ladicí relace už skončila. Zkuste ladění opakovat a potom spusťte příkaz „Debug: Diagnose Breakpoint Problems“ (Ladit: Diagnostikovat problémy zarážek).",
+ "It's taking a while to configure your breakpoints. You can speed this up by updating the 'outFiles' in your launch.json.": "Konfigurace zarážek trvá delší dobu. Můžete ji urychlit aktualizací nastavení outFiles v souboru launch.json.",
+ "JavaScript Debug Terminal": "Terminál pro ladění JavaScriptu",
+ "JavaScript debug adapter": "Adaptér ladění JavaScriptu",
+ "Launch Chrome against localhost": "Spustit Chrome proti localhostu",
+ "Launch Edge against localhost": "Spustit Microsoft Edge proti místnímu hostiteli",
+ "Launch Program": "Spustit program",
+ "Launch configuration created based on 'package.json'.": "Spustit konfiguraci vytvořenou na základě souboru package.json",
+ "Launch configuration for '{0}' project created.": "Spustit konfiguraci pro vytvořený projekt {0}",
+ "Local": "Místní",
+ "Locals": "Místní proměnné",
+ "Lost connection to debugee, reconnecting in {0}ms\r\n": "Bylo ztraceno připojení k laděné součásti. Pokus o opětovné připojení bude proveden za {0} ms.\r\n",
+ "Manual": "Ruční",
+ "Missing source information. Did you set \"originalUrl\" or \"source\"?": "Chybí informace o zdroji. Nastavili jste originalUrl nebo source?",
+ "Module": "Modul",
+ "Networking not available.": "Síť není k dispozici.",
+ "Never": "Nikdy",
+ "No": "Ne",
+ "No npm scripts found in the workspace folder.": "Ve složce pracovního prostoru nebyly nalezeny žádné skripty npm.",
+ "No npm scripts found in your package.json": "Ve vašem souboru package.json nebyly nalezeny žádné skripty npm.",
+ "No package.json files found in your workspace.": "Ve vašem pracovním prostoru se nenašly žádné soubory package.json.",
+ "No workspace folder open.": "Není otevřená žádná složka pracovního prostoru.",
+ "Node Attributes": "Atributy uzlu",
+ "Node.js version '{0}' not installed using version manager {1}.": "Node.js verze {0} není nainstalovaný pomocí správce verzí {1}.",
+ "Not Now": "Teď ne",
+ "Only objects can be queried": "Dotazy lze zadávat pouze na objekty.",
+ "Open launch.json": "Otevřít soubor launch.json",
+ "Output has been truncated to the first {0} characters. Run `{1}` to copy the full output.": "Výstup byl zkrácen na prvních {0} znaků. Spuštěním příkazu {1} zkopírujte úplný výstup.",
+ "Parameters": "Parametry",
+ "Paused": "Pozastaveno",
+ "Paused before Out Of Memory exception": "Pozastaveno před výjimkou při nedostatku paměti",
+ "Paused on Content Security Policy violation instrumentation breakpoint, directive \"{0}\"": "Pozastaveno na zarážce instrumentace porušení zásad zabezpečení obsahu (CSP), direktiva {0}",
+ "Paused on DOM breakpoint": "Pozastaveno na zarážce DOM",
+ "Paused on WebGL Error instrumentation breakpoint, error \"{0}\"": "Pozastaveno na zarážce instrumentace chyby WebGL. Chyba: {0}",
+ "Paused on XMLHttpRequest or fetch": "Pozastaveno na XMLHttpRequest nebo při načtení",
+ "Paused on assert": "Pozastaveno na kontrolním příkazu",
+ "Paused on breakpoint": "Pozastaveno na zarážce",
+ "Paused on debug() call": "Pozastaveno při volání metody debug()",
+ "Paused on debugger statement": "Pozastaveno na příkazu ladicího programu",
+ "Paused on event listener": "Pozastaveno na naslouchacím procesu událostí",
+ "Paused on event listener breakpoint \"{0}\", triggered on \"{1}\"": "Pozastaveno na zarážce naslouchacího procesu události {0}, vyvoláno na {1}",
+ "Paused on exception": "Pozastaveno na výjimce",
+ "Paused on frame entry": "Pozastaveno na položce rámce",
+ "Paused on instrumentation breakpoint": "Pozastaveno na zarážce instrumentace",
+ "Paused on instrumentation breakpoint \"{0}\"": "Pozastaveno na zarážce instrumentace {0}",
+ "Paused on {0}": "Pozastaveno při: {0}",
+ "Pick Breakpoint": "Vybrat zarážku",
+ "Pick the node.js process to attach to": "Vyberte proces node.js, ke kterému se má provést připojení.",
+ "Please enter a number": "Zadejte prosím číslo.",
+ "Please enter a number greater than 1": "Zadejte prosím číslo větší než 1.",
+ "Please stop the running profile before starting a new one.": "Před spuštěním nového profilu prosím zastavte běžící profil.",
+ "Process picker failed ({0})": "Výběr procesu selhal ({0})",
+ "Profile duration in seconds, e.g \"5\"": "Doba trvání profilu v sekundách, například 5",
+ "Profiling": "Profilace",
+ "Profiling with breakpoints enabled can change the performance of your code. It can be useful to validate your findings with the \"duration\" or \"manual\" termination conditions.": "Profilování s povolenými zarážkami může změnit výkon vašeho kódu. Může být užitečné ověřit zjištěné výsledky pomocí podmínek ukončení duration (doba trvání) nebo manual (ručně).",
+ "Read More": "Další informace",
+ "Request Animation Frame": "Požádat o snímek animace",
+ "Resume AudioContext": "Obnovit AudioContext",
+ "Return value": "Návratová hodnota",
+ "Run Current File": "Spustit aktuální soubor",
+ "Run Node.js tool": "Spustit nástroj Node.js",
+ "Run Script: {0}": "Spustit skript: {0}",
+ "Run Script: {0} ({1})": "Spustit skript: {0} ({1})",
+ "Run for a specific amount of time": "Provádět po konkrétní dobu",
+ "Run until a specific breakpoint is hit": "Provádět, dokud nebude dosaženo konkrétní zarážky",
+ "Run until manually stopped": "Provádět do ručního zastavení",
+ "Runs a Node.js command-line installed in the workspace node_modules.": "Spustí příkazový řádek Node.js nainstalovaný v pracovním prostoru node_modules.",
+ "Saving": "Ukládání",
+ "Script": "Skript",
+ "Script Blocked by Content Security Policy": "Skript zablokován zásadami zabezpečení obsahu",
+ "Script First Statement": "První příkaz skriptu",
+ "Select a tab": "Vyberte kartu",
+ "Select a tool to run": "Vyberte nástroj, který se má spustit.",
+ "Select current working directory for new terminal": "Vyberte aktuální pracovní adresář pro nový terminál.",
+ "Select test configuration to run": "Vyberte konfiguraci testu, která se má spustit.",
+ "Select the page where you want to open the devtools": "Vyberte stránku, na které chcete vývojářské nástroje otevřít.",
+ "Select the session you want to inspect:": "Vyberte relaci, kterou chcete zkontrolovat:",
+ "Seller Reporting Phase Start": "Zahájení fáze reportování prodejců",
+ "Seller Scoring Phase Start": "Zahájení fáze bodování prodejců",
+ "Set innerHTML": "Nastavit innerHTML",
+ "Skipped by skipFiles": "Vynecháno na základě skipFiles",
+ "Skipped by smartStep": "Vynecháno na základě smartStep",
+ "Some breakpoints might not work in your version of Node.js. We recommend upgrading for the latest bug, performance, and security fixes. Details: https://aka.ms/AAcsvqm": "Některé zarážky nemusí ve vaší verzi Node.js fungovat. Doporučujeme upgradovat, abyste získali nejnovější opravy chyb, výkonu a zabezpečení. Podrobnosti: https://aka.ms/AAcsvqm",
+ "Source not a source map": "Zdroj není zdrojová mapa.",
+ "Source not found": "Zdroj nenalezen",
+ "Stack frame not found": "Blok zásobníku nebyl nalezen.",
+ "Starting profile...": "Spouští se profil…",
+ "Stopping profile...": "Zastavuje se profil...",
+ "Suspend AudioContext": "Pozastavit AudioContext",
+ "Syntax error setting breakpoint with condition {0} on line {1}: {2}": "Chyba syntaxe při nastavování zarážky s podmínkou {0} na řádku {1}: {2}",
+ "Target page not found. You may need to update your \"urlFilter\" to match the page you want to debug.": "Cílová stránka nebyla nalezena. Možná budete muset aktualizovat nastavení urlFilter tak, aby odpovídalo stránce, kterou chcete ladit.",
+ "The Node version in \"{0}\" is outdated (version {1}), we require at least Node 8.x.": "Verze Node v „{0}“ je zastaralá (verze {1}). Je vyžadován Node 8.x nebo vyšší verze.",
+ "The URL provided is invalid": "Zadaná adresa URL je neplatná.",
+ "The browser process exited with code {0} before connecting to the debug server. Make sure the `runtimeExecutable` is configured correctly and that it can run without errors.": "Proces prohlížeče byl ukončen s kódem {0} před připojením k ladicímu serveru. Ujistěte se, že runtimeExecutable je správně nakonfigurovaný a že se dá spustit bez chyb.",
+ "The configured `cwd` {0} does not exist.": "Nakonfigurovaný cwd {0} neexistuje.",
+ "The configured `cwd` {0} is not a folder.": "Nakonfigurovaný cwd {0} není složka.",
+ "This is a missing file path referenced by a sourcemap. Would you like to debug the compiled version instead?": "Jedná se o chybějící cestu k souboru, na kterou odkazuje sourcemap. Chcete místo toho ladit zkompilovanou verzi?",
+ "Thread is not paused": "Podproces není pozastaven.",
+ "Thread is not paused on exception": "Podproces není pozastaven při výjimce.",
+ "Thread not found": "Vlákno se nenašlo",
+ "Type of profile": "Typ profilu",
+ "URL contains \"{0}\"": "Adresa URL obsahuje: {0}",
+ "UWP webview debugging is not available on your platform.": "Ladění webového zobrazení UPW není na vaší platformě k dispozici.",
+ "Unable to attach to browser": "Nelze připojit k prohlížeči.",
+ "Unable to evaluate": "Nelze vyhodnotit.",
+ "Unable to evaluate on async stack frame": "Nelze vyhodnotit v asynchronním bloku zásobníku.",
+ "Unable to find an installation of the browser on your system. Try installing it, or providing an absolute path to the browser in the \"runtimeExecutable\" in your launch.json.": "V systému se nepovedlo najít instalaci prohlížeče. Zkuste ji nainstalovat nebo v souboru launch.json zadejte v parametru runtimeExecutable absolutní cestu k prohlížeči.",
+ "Unable to find {0} version {1}. Available auto-discovered versions are: {2}. You can set the \"runtimeExecutable\" in your launch.json to one of these, or provide an absolute path to the browser executable.": "Nelze najít {0} verze {1}. Dostupné automaticky zjištěné verze: {2}. Jednu z těchto verzí můžete určit jako hodnotu parametru runtimeExecutable v souboru launch.json nebo můžete zadat absolutní cestu ke spustitelnému souboru prohlížeče.",
+ "Unable to launch browser: \"{0}\"": "Nelze spustit prohlížeč: {0}.",
+ "Unable to pause": "Nelze pozastavit.",
+ "Unable to pretty print": "Nelze provést přehledný výpis.",
+ "Unable to resume": "Nedá se pokračovat.",
+ "Unable to retrieve source content": "Nelze načíst zdrojový obsah.",
+ "Unable to set variable value": "Nelze nastavit hodnotu proměnné.",
+ "Unable to step in": "Nelze krokovat s vnořením.",
+ "Unable to step next": "Nelze krokovat na další.",
+ "Unable to step out": "Nelze krokovat s vystoupením.",
+ "Unbound breakpoint": "Nevázaná zarážka",
+ "Uncaught Exceptions": "Nezachycené výjimky",
+ "Unknown error": "Neznámá chyba",
+ "VS Code can provide better debugging experience for WebAssembly via \"DWARF Debugging\" extension. Would you like to install it?/\"DWARF Debugging\" is the extension name and should not be localized.": "VS Code může poskytovat lepší možnosti ladění pro WebAssembly prostřednictvím rozšíření DWARF Debugging. Chcete ji nainstalovat?",
+ "Variable not found": "Proměnná se nenašla",
+ "Variables not available in async stacks": "Proměnné nejsou dostupné v asynchronních zásobnících.",
+ "WARNING: Processing source-maps of {0} took longer than {1} ms so we continued execution without waiting for all the breakpoints for the script to be set.": "UPOZORNĚNÍ: Zpracování mapování zdroje {0} trvalo přes {1} ms, takže jsme pokračovali v provádění bez čekání na nastavení všech zarážek pro skript.",
+ "We can't launch a browser in debug mode from here. If you want to debug this webpage, open this workspace from VS Code on your desktop.": "Prohlížeč odsud nemůžeme spustit v režimu ladění. Pokud chcete ladit tuto webovou stránku, otevřete tento pracovní prostor z VS Code na počítači.",
+ "We can't launch a browser in debug mode from here. Open this workspace in VS Code on your desktop to enable debugging.": "Prohlížeč odsud nemůžeme spustit v režimu ladění. Pokud chcete povolit ladění, otevřete tento pracovní prostor ve VS Code na počítači.",
+ "WebGL Error Fired": "Vyvolána chyba WebGL",
+ "WebGL Warning Fired": "Vyvoláno upozornění WebGL",
+ "With Block": "Blok With",
+ "Would you like to save a configuration in your launch.json for easy access later?": "Chcete si uložit konfiguraci do souboru launch.json, abyste k ní měli snadný přístup později?",
+ "XHR/Fetch URLs": "Adresy URL pro XHR/Fetch",
+ "Yes": "Ano",
+ "You may install the `{}` module via npm for enhanced WebAssembly debugging": "Modul {} můžete nainstalovat přes npm pro vylepšené ladění WebAssembly.",
+ "You need to open a workspace folder to debug npm scripts.": "Pokud chcete ladit skripty npm, musíte otevřít složku pracovního prostoru.",
+ "You're running an outdated version of Node.js. We recommend upgrading for the latest bug, performance, and security fixes.": "Používáte zastaralou verzi Node.js. Doporučujeme upgradovat, abyste získali nejnovější opravy chyb, výkonu a zabezpečení.",
+ "an old debug session": "stará relace ladění",
+ "breakpoint.provisionalBreakpoint": "breakpoint.provisionalBreakpoint",
+ "path does not exist": "cesta neexistuje",
+ "process id: {0} ({1})": "ID procesu: {0} ({1})",
+ "process id: {0}, debug port: {1} ({2})": "ID procesu: {0}, port ladění: {1} ({2})",
+ "setInterval fired": "vyvolána metoda setInterval",
+ "setTimeout fired": "Vyvolána metoda setTimeout",
+ "the configured userDataDir": "nakonfigurovaný adresář userDataDir",
+ "{0} (couldn't describe: {1})": "{0} (nepovedlo se popsat: {1})",
+ "{0} Click to Stop Profiling": "{0} Kliknutím zastavíte profilaci",
+ "{0} Click to Stop Profiling ({1} sessions)": "{0} Kliknutím zastavíte profilaci (relace {1})",
+ "{0} Click to Stop Profiling ({1})": "{0} Kliknutím zastavíte profilaci ({1})"
}
}
}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-cs/translations/extensions/ms-vscode.node-debug.i18n.json b/i18n/vscode-language-pack-cs/translations/extensions/ms-vscode.node-debug.i18n.json
deleted file mode 100644
index 573cc31248..0000000000
--- a/i18n/vscode-language-pack-cs/translations/extensions/ms-vscode.node-debug.i18n.json
+++ /dev/null
@@ -1,183 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "dist/node/extension/autoAttach": {
- "process.with.pid.label": "Automaticky připojeno ({0})"
- },
- "dist/node/extension/cluster": {
- "child.process.with.pid.label": "Podřízený proces {0}"
- },
- "dist/node/extension/configurationProvider": {
- "NVM_DIR.not.found.message": "Atribut runtimeVersion vyžaduje správce verzí Node.js nvm nebo nvs.",
- "NVM_HOME.not.found.message": "Atribut runtimeVersion vyžaduje správce verzí Node.js nvm-windows nebo nvs.",
- "NVS_HOME.not.found.message": "Atribut runtimeVersion vyžaduje správce verzí Node.js nvs.",
- "mern.starter.explanation": "Spustit konfiguraci pro vytvořený projekt {0}",
- "node.launch.config.name": "Spustit program",
- "outFiles.explanation": "Upravte vzory glob v atributu outFiles tak, aby pokrývaly vygenerovaný JavaScript.",
- "program.guessed.from.package.json.explanation": "Spustit konfiguraci vytvořenou na základě souboru package.json",
- "program.not.found.message": "Nelze najít program k ladění.",
- "runtime.version.not.found.message": "Není nainstalovaná verze Node.js {0} pro {1}.",
- "useWslDeprecationWarning.doNotShowAgain": "Znovu nezobrazovat",
- "useWslDeprecationWarning.title": "Atribut useWSL je zastaralý. Místo něj použijte rozšíření Remote WSL. Další informace získáte kliknutím [sem]({0})."
- },
- "dist/node/extension/processPicker": {
- "cannot.enable.debug.mode.error": "Připojit k procesu: Nelze povolit režim ladění pro proces {0} ({1}).",
- "pickNodeProcess": "Vyberte proces node.js, ke kterému se má provést připojení.",
- "pid.error": "Připojit k procesu: Proces {0} nelze přepnout do režimu ladění.",
- "process.id.error": "Připojit k procesu: {0} nevypadá jako ID procesu.",
- "process.id.port": "ID procesu: {0}, port ladění: {1}",
- "process.id.port.legacy": "ID procesu: {0}, port ladění: {1} (starší verze protokolu)",
- "process.id.port.signal": "ID procesu: {0}, port ladění: {1} ({2})",
- "process.id.signal": "ID procesu: {0} ({1})",
- "process.picker.error": "Výběr procesu selhal ({0})"
- },
- "dist/node/extension/protocolDetection": {
- "protocol.switch.legacy.detected": "Ladění pomocí starší verze protokolu, protože byl zjištěn",
- "protocol.switch.legacy.version": "Ladění pomocí starší verze protokolu, protože se zjistilo Node.js {0}",
- "protocol.switch.unknown.error": "Ladění pomocí protokolu inspector, protože se nepovedlo určit verzi Node.js ({0})"
- },
- "dist/node/nodeDebug": {
- "VSND2001": "Modul runtime {0} nelze na cestě najít. Ujistěte se, jestli je {0} nainstalovaný.",
- "VSND2002": "Program {0} nelze spustit. Pomoct by mohla konfigurace souboru sourcemap.",
- "VSND2003": "Program {0} nelze spustit. Pomoct by mohlo nastavení atributu {1}.",
- "VSND2009": "Program {0} nelze spustit, protože nelze najít odpovídající JavaScript.",
- "VSND2010": "Nelze se připojit k procesu modulu runtime (důvod: {0}).",
- "VSND2011": "Nelze spustit cíl ladění v terminálu ({0}).",
- "VSND2015": "Žádost {_request} byla zrušena, protože Node.js nereaguje.",
- "VSND2016": "Node.js neodpověděl na žádost {_request} v přiměřené době.",
- "VSND2017": "Nelze spustit cíl ladění ({0}).",
- "VSND2018": "Není k dispozici žádný zásobník volání ({_command}: {_error}).",
- "VSND2019": "Nepovedlo se najít interní modul {0}.",
- "VSND2022": "Žádný zásobník volání, protože program je pozastaven mimo JavaScript",
- "VSND2023": "Není k dispozici žádný zásobník volání.",
- "VSND2028": "Neznámý typ konzoly {0}",
- "VSND2029": "Nelze načíst proměnné prostředí ze souboru ({0}).",
- "VSND2033": "Nelze se připojit k modulu runtime. Zajistěte, aby byl modul runtime v režimu ladění legacy.",
- "VSND2034": "Nelze se připojit k modulu runtime prostřednictvím protokolu legacy. Zkuste použít protokol inspector.",
- "anonymous.function": "(anonymní funkce)",
- "attribute.path.not.absolute": "Atribut {0} není absolutní ({1}). Zvažte přidání předpony {2}, aby byl tento atribut absolutní.",
- "attribute.path.not.exist": "Atribut {0} neexistuje ({1}).",
- "attribute.wls.not.exist": "Nelze najít instalaci subsystému Windows pro Linux.",
- "eval.invalid.expression": "neplatný výraz: {0}",
- "eval.not.available": "není k dispozici",
- "exception.paused.promise.rejection": "Pozastaveno na zamítnutí příslibu",
- "exception.promise.rejection": "Zamítnutí příslibu",
- "exception.promise.rejection.text": "Zamítnutí příslibu ({0})",
- "exceptions.all": "Všechny výjimky",
- "exceptions.rejects": "Zamítnutí příslibu",
- "exceptions.uncaught": "Nezachycené výjimky",
- "file.on.disk.changed": "Neověřeno, protože se změnil soubor na disku. Restartujte prosím relaci ladění.",
- "more.information": "Další informace",
- "node.console.title": "Konzola ladění uzlů",
- "origin.core.module": "modul Core jen pro čtení",
- "origin.from.node": "obsah jen pro čtení z Node.js",
- "origin.from.remote.node": "obsah jen pro čtení ze vzdáleného Node.js",
- "origin.inlined.source.map": "vložený obsah jen pro čtení ze souboru sourcemap",
- "program.path.case.mismatch.warning": "Cesta k programu používá jinou velikost písma ve znaku než soubor na disku. Může to způsobit, že nedojde k dosažení zarážek.",
- "reason.description.breakpoint": "Pozastaveno na zarážce",
- "reason.description.debugger_statement": "Pozastaveno na příkazu ladicího programu",
- "reason.description.entry": "Pozastaveno na vstupu",
- "reason.description.exception": "Pozastaveno na výjimce",
- "reason.description.restart": "Pozastaveno na položce rámce",
- "reason.description.step": "Pozastaveno na kroku",
- "reason.description.user_request": "Pozastaveno na požadavku uživatele",
- "scope.block": "Blok",
- "scope.catch": "Catch",
- "scope.closure": "Uzavření",
- "scope.exception": "Výjimka",
- "scope.global": "Globální",
- "scope.local": "Místní",
- "scope.local.with.count": "Místní ({0} z {1})",
- "scope.script": "Skript",
- "scope.unknown": "Neznámý typ oboru: {0}",
- "scope.with": "S",
- "setVariable.error": "Nastavení hodnoty není podporováno.",
- "source.not.found": "Nepodařilo se načíst obsah.",
- "source.skipFiles": "přeskočeno kvůli skipFiles",
- "source.smartstep": "přeskočeno kvůli smartStep",
- "sourcemapping.fail.message": "Zarážka se ignoruje, protože vygenerovaný kód nebyl nalezen (problém s mapováním zdroje?)."
- },
- "dist/node/nodeV8Protocol": {
- "not.connected": "nepřipojeno k modulu runtime",
- "runtime.timeout": "vypršení časového limitu po {0} ms",
- "runtime.unresponsive": "zrušeno, protože Node.js neodpovídá"
- },
- "package": {
- "attach.node.process": "Připojit k procesu uzlu (starší verze)",
- "debug.node.showUseWslIsDeprecatedWarning.description": "Určuje, jestli se má při použití atributu useWSL zobrazit upozornění.",
- "extension.description": "Podpora ladění Node.js (verze < 8.0)",
- "launch.args.description": "Argumenty příkazového řádku, které se předávají do programu",
- "node.address.description": "Adresa TCP/IP procesu, který se má ladit (pouze pro Node.js >= 5.0). Výchozí hodnota je localhost.",
- "node.attach.config.name": "Připojit",
- "node.attach.processId.description": "ID procesu, ke kterému se má provést připojení",
- "node.disableOptimisticBPs.description": "Nenastavujte zarážky do žádného souboru, dokud se pro daný soubor nenačte sourcemap.",
- "node.label": "Node.js (starší verze)",
- "node.launch.autoAttachChildProcesses.description": "Automaticky připojovat ladicí program k novým podřízených procesům",
- "node.launch.config.name": "Spustit",
- "node.launch.console.description": "Kde se má spustit cíl ladění",
- "node.launch.console.externalTerminal.description": "Externí terminál, který lze konfigurovat pomocí uživatelského nastavení",
- "node.launch.console.integratedTerminal.description": "Integrovaný terminál VS Code",
- "node.launch.console.internalConsole.description": "Konzola ladění VS Code (nepodporující vstup čtení z programu)",
- "node.launch.cwd.description": "Absolutní cesta k pracovnímu adresáři laděného programu",
- "node.launch.env.description": "Proměnné prostředí se předaly do programu. Hodnota null odebere proměnnou z prostředí.",
- "node.launch.envFile.description": "Absolutní cesta k souboru, který obsahuje definice proměnných prostředí",
- "node.launch.externalConsole.deprecationMessage": "Atribut externalConsole je zastaralý. Místo něj použijte atribut console.",
- "node.launch.outputCapture.description": "Určuje, odkud se mají zachycovat výstupní zprávy: rozhraní API pro ladění nebo streamy stdout/stderr.",
- "node.launch.program.description": "Absolutní cesta k programu. Vygenerovaná hodnota je odhadnuta podle souboru package.json a otevřených souborů. Upravte tento atribut.",
- "node.launch.runtimeArgs.description": "Nepovinné argumenty se předaly do spustitelného souboru modulu runtime.",
- "node.launch.runtimeExecutable.description": "Modul runtime, který se má použít. Absolutní cesta nebo název modulu runtime, který je k dispozici prostřednictvím proměnné PATH. V případě vynechání se předpokládá hodnota node.",
- "node.launch.runtimeVersion.description": "Verze modulu runtime node, která se má používat. Vyžaduje nvm.",
- "node.launch.useWSL.deprecation": "Rozšíření useWSL je zastaralé a přestane se podporovat. Místo toho použijte rozšíření Remote - WSL.",
- "node.launch.useWSL.description": "Použít subsystém Windows pro Linux",
- "node.localRoot.description": "Cesta k místnímu adresáři obsahujícímu program",
- "node.port.description": "Port ladění, ke kterému se chcete připojit. Výchozí hodnota je 5858.",
- "node.processattach.config.name": "Připojit k procesu",
- "node.protocol.auto.description": "Umožňuje zkusit automaticky vyhledat nejlepší protokol. Pro spuštění Node 8.0+ bude vybrán protokol inspector.",
- "node.protocol.description": "Protokol ladění Node.js, který se má použít",
- "node.protocol.inspector.description": "Nový protokol podporovaný verzemi Node.js >= 6.3",
- "node.protocol.legacy.description": "Starý protokol podporovaný verzemi Node.js < 8.0",
- "node.remoteRoot.description": "Absolutní cesta ke vzdálenému adresáři obsahujícímu program",
- "node.restart.description": "Po ukončení Node.js se relace restartuje.",
- "node.showAsyncStacks.description": "Zobrazit asynchronní volání, která vedla k aktuálnímu zásobníku volání. Pouze protokol inspector",
- "node.snippet.attach.description": "Připojit k běžícímu programu uzlu",
- "node.snippet.attach.label": "Node.js: připojit",
- "node.snippet.attachProcess.description": "Otevřít výběr procesu k výběru procesu uzlu, ke kterému se má provést připojení",
- "node.snippet.attachProcess.label": "Node.js: připojit k procesu",
- "node.snippet.electron.description": "Ladit hlavní proces Electron",
- "node.snippet.electron.label": "Node.js: hlavní proces Electron",
- "node.snippet.gulp.description": "Ladit úlohu Gulp (zajistěte, abyste měli v projektu místně nainstalovaný Gulp)",
- "node.snippet.gulp.label": "Node.js: úloha Gulp",
- "node.snippet.launch.description": "Spustit program uzlu v režimu ladění",
- "node.snippet.launch.label": "Node.js: spustit program",
- "node.snippet.mocha.description": "Ladit testy Mocha",
- "node.snippet.mocha.label": "Node.js: testy Mocha",
- "node.snippet.nodemon.description": "Použít nástroj nodemon k opětovnému spuštění relace ladění při změnách zdroje",
- "node.snippet.nodemon.label": "Node.js: instalace nástroje Nodemon",
- "node.snippet.npm.description": "Spustit program uzlu prostřednictvím npm skriptu debug",
- "node.snippet.npm.label": "Node.js: spustit přes NPM",
- "node.snippet.remoteattach.description": "Připojit k portu ladění programu vzdáleného uzlu",
- "node.snippet.remoteattach.label": "Node.js: připojit ke vzdálenému programu",
- "node.snippet.yo.description": "Ladit generátor Yeoman (nainstalujte spuštěním příkazu npm link v projektové složce)",
- "node.snippet.yo.label": "Node.js: generátor Yeoman",
- "node.sourceMapPathOverrides.description": "Sada mapování pro přepsání umístění zdrojových souborů z umístění, která jsou uvedena v mapování zdrojů, na jejich umístění na disku",
- "node.sourceMaps.description": "Použijí se soubory sourcemap JavaScriptu (pokud existují).",
- "node.stopOnEntry.description": "Po spuštění se program automaticky zastaví.",
- "node.timeout.description": "Opakované pokusy o připojení k Node.js se budou provádět tento počet milisekund. Výchozí hodnota je 10000 ms.",
- "open.loaded.script": "Otevřít načtený skript",
- "outDir.deprecationMessage": "Atribut outDir je zastaralý, místo něho použijte atribut outFiles.",
- "outFiles.description": "Pokud jsou povolena mapování zdroje, určují tyto vzory glob vygenerované soubory JavaScriptu. Pokud vzor začíná znakem !, budou soubory vyloučeny. Pokud není zadáno, bude se vygenerovaný kód očekávat ve stejném adresáři jako v případě jeho zdroje. Příklad: [\"${workspaceFolder}/out/**/*.js\"]",
- "skipFiles.description": "Pole hodnot vzorů glob pro soubory, které se mají přeskočit při ladění. Vzor /** odpovídá všem interním modulům Node.js.",
- "smartStep.description": "Provede se automatické krokování vygenerovaného kódu, který nelze namapovat zpět do původního zdroje.",
- "start.with.stop.on.entry": "Spustit ladění a zastavit na vstupu (starší verze)",
- "toggle.skipping.this.file": "Přepnout možnost přeskočení tohoto souboru",
- "trace.description": "Vytvoří diagnostický výstup. Místo nastavení této možnosti na hodnotu true můžete uvést jeden nebo více selektorů oddělených čárkami. Selektor verbose umožňuje velmi podrobný výstup."
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-cs/translations/extensions/ms-vscode.node-debug2.i18n.json b/i18n/vscode-language-pack-cs/translations/extensions/ms-vscode.node-debug2.i18n.json
deleted file mode 100644
index 2f6a351fa7..0000000000
--- a/i18n/vscode-language-pack-cs/translations/extensions/ms-vscode.node-debug2.i18n.json
+++ /dev/null
@@ -1,138 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "node_modules\\vscode-chrome-debug-core\\out/src/chrome/breakpoints": {
- "bp.fail.noscript": "Pro požadavek na zarážku nelze najít skript.",
- "bp.fail.unbound": "Zarážka je nastavená, ale ještě není vázaná.",
- "invalidHitCondition": "Neplatná podmínka dosažení: {0}",
- "setBPTimedOut": "U požadavku na nastavení zarážek vypršel časový limit.",
- "validateBP.notFound": "Zarážka se ignoruje, protože cílová cesta nebyla nalezena.",
- "validateBP.sourcemapFail": "Zarážka se ignoruje, protože vygenerovaný kód nebyl nalezen (problém s mapováním zdroje?)."
- },
- "node_modules\\vscode-chrome-debug-core\\out/src/chrome/chromeDebugAdapter": {
- "exceptions.all": "Všechny výjimky",
- "exceptions.promise_rejects": "Zamítnutí příslibu",
- "exceptions.uncaught": "Nezachycené výjimky"
- },
- "node_modules\\vscode-chrome-debug-core\\out/src/chrome/chromeTargetDiscoveryStrategy": {
- "attach.cannotConnect": "Nelze se připojit k cíli: {0}",
- "attach.devToolsAttached": "Nelze se připojit k tomuto cíli, ke kterému můžou být připojené nástroje Chrome DevTools: {0}",
- "attach.invalidResponse": "Odpověď z cíle je zřejmě neplatná. Chyba: {0}. Odpověď: {1}",
- "attach.invalidResponseArray": "Odpověď z cíle je zřejmě neplatná: {0}",
- "attach.noMatchingTarget": "Nelze najít platný cíl, který odpovídá: {0}. Dostupné stránky: {1}",
- "attach.responseButNoTargets": "Odpověď z cílové aplikace obdržena, ale žádné cílové stránky nebyly nalezeny."
- },
- "node_modules\\vscode-chrome-debug-core\\out/src/chrome/stackFrames": {
- "scope.exception": "Výjimka",
- "skipReason": "(přeskakuje: {0})"
- },
- "node_modules\\vscode-chrome-debug-core\\out/src/chrome/stoppedEvent": {
- "reason.description.breakpoint": "Pozastaveno na zarážce",
- "reason.description.caughtException": "Pozastaveno na zachycené výjimce",
- "reason.description.debugger_statement": "Pozastaveno na příkazu ladicího programu",
- "reason.description.entry": "Pozastaveno na vstupu",
- "reason.description.exception": "Pozastaveno na výjimce",
- "reason.description.promiseRejection": "Pozastaveno na zamítnutí příslibu",
- "reason.description.restart": "Pozastaveno na položce rámce",
- "reason.description.step": "Pozastaveno na kroku",
- "reason.description.uncaughtException": "Pozastaveno na nezachycené výjimce",
- "reason.description.user_request": "Pozastaveno na požadavku uživatele"
- },
- "node_modules\\vscode-chrome-debug-core\\out/src/errors": {
- "VSND2010": "Nelze se připojit k procesu modulu runtime, vypršení časového limitu po {0} ms – (důvod: {1}).",
- "VSND2023": "Není k dispozici žádný zásobník volání.",
- "attribute.path.not.absolute": "Atribut {0} není absolutní ({1}). Zvažte přidání předpony {2}, aby byl tento atribut absolutní.",
- "attribute.path.not.exist": "Atribut {0} neexistuje ({1}).",
- "eval.not.available": "není k dispozici",
- "failed.to.read.port": "Nepovedlo se přečíst soubor {dataDirPath}, {error}",
- "more.information": "Další informace",
- "not.connected": "nepřipojeno k modulu runtime",
- "port.file.contents.invalid": "Soubor v umístění: {dataDirPath} neobsahoval platná data portu. Obsah byl: {dataDirContents}",
- "restartFrame.cannot": "Rámec nelze restartovat.",
- "setVariable.error": "Nastavení hodnoty není podporováno.",
- "source.not.found": "Nepodařilo se načíst obsah."
- },
- "node_modules\\vscode-chrome-debug-core\\out/src/transformers/baseSourceMapTransformer": {
- "origin.inlined.source.map": "vložený obsah jen pro čtení ze souboru sourcemap"
- },
- "node_modules\\vscode-chrome-debug-core\\out/src/transformers/remotePathTransformer": {
- "localRootAndRemoteRoot": "Je nutné zadat localRoot i remoteRoot."
- },
- "out/src/errors": {
- "VSND2001": "Modul runtime {0} nelze na cestě najít. Je {0} nainstalovaný?",
- "VSND2002": "Program {0} nelze spustit. Pomoct by mohla konfigurace souboru sourcemap.",
- "VSND2003": "Program {0} nelze spustit. Pomoct by mohlo nastavení atributu {1}.",
- "VSND2009": "Program {0} nelze spustit, protože nelze najít odpovídající JavaScript.",
- "VSND2011": "Nelze spustit cíl ladění v terminálu ({0}).",
- "VSND2017": "Nelze spustit cíl ladění ({0}).",
- "VSND2028": "Neznámý typ konzoly {0}",
- "VSND2029": "Nelze načíst proměnné prostředí ze souboru ({0}).",
- "VSND2035": "Nelze ladit rozšíření ({0})."
- },
- "out/src/nodeDebugAdapter": {
- "VSND2001": "Modul runtime {0} nelze na cestě najít. Ujistěte se, jestli je {0} nainstalovaný.",
- "attribute.path.not.absolute": "Atribut {0} není absolutní ({1}). Zvažte přidání předpony {2}, aby byl tento atribut absolutní.",
- "attribute.path.not.exist": "Atribut {0} neexistuje ({1}).",
- "attribute.wsl.not.exist": "Instalaci subsystému Windows pro Linux nelze najít.",
- "more.information": "Další informace",
- "node.console.title": "Konzola ladění uzlů",
- "origin.core.module": "modul Core jen pro čtení",
- "origin.from.node": "obsah jen pro čtení z Node.js",
- "program.path.case.mismatch.warning": "Cesta k programu používá jinou velikost písma ve znaku než soubor na disku. Může to způsobit, že nedojde k dosažení zarážek."
- },
- "package": {
- "extension.description": "Podpora ladění Node.js",
- "extensionHost.label": "Vývoj rozšíření VS Code",
- "extensionHost.launch.config.name": "Spustit rozšíření",
- "extensionHost.launch.env.description": "Proměnné prostředí se předaly hostiteli rozšíření.",
- "extensionHost.launch.runtimeExecutable.description": "Absolutní cesta k VS Code",
- "extensionHost.launch.stopOnEntry.description": "Po spuštění automaticky zastaví hostitele rozšíření.",
- "extensionHost.snippet.launch.description": "Spustit rozšíření VS Code v režimu ladění",
- "extensionHost.snippet.launch.label": "Vývoj rozšíření VS Code",
- "node.address.description": "Adresa TCP/IP portu pro ladění. Výchozí hodnota je localhost.",
- "node.attach.config.name": "Připojit",
- "node.attach.localRoot.description": "Kořenový adresář místního zdroje, který odpovídá atributu remoteRoot",
- "node.attach.processId.description": "ID procesu, ke kterému se má provést připojení",
- "node.attach.remoteRoot.description": "Kořenový adresář zdrojového kódu vzdáleného hostitele",
- "node.diagnosticLogging.deprecationMessage": "Atribut diagnosticLogging je zastaralý. Místo něho použijte atribut trace.",
- "node.diagnosticLogging.description": "V případě hodnoty true adaptér zaznamená do konzoly svoje vlastní diagnostické informace.",
- "node.disableOptimisticBPs.description": "Nenastavujte zarážky do žádného souboru, dokud se pro daný soubor nenačte sourcemap.",
- "node.enableSourceMapCaching.description": "Po stažení sourcemapů z adresy URL je uložte do mezipaměti na disku.",
- "node.label": "Node.js v6.3+ prostřednictvím Inspector Protocolu",
- "node.launch.args.description": "Argumenty příkazového řádku, které se předávají do programu",
- "node.launch.config.name": "Spustit",
- "node.launch.console.description": "Určuje, kde se má spustit cíl ladění: vnitřní konzola, integrovaný terminál nebo externí terminál.",
- "node.launch.cwd.description": "Absolutní cesta k pracovnímu adresáři laděného programu",
- "node.launch.env.description": "Proměnné prostředí se předaly do programu. Hodnota null odebere proměnnou z prostředí.",
- "node.launch.envFile.description": "Absolutní cesta k souboru, který obsahuje definice proměnných prostředí",
- "node.launch.outputCapture.description": "Určuje, odkud se mají zachycovat výstupní zprávy: rozhraní API pro ladění nebo streamy stdout/stderr.",
- "node.launch.program.description": "Absolutní cesta k programu",
- "node.launch.runtimeArgs.description": "Nepovinné argumenty se předaly do spustitelného souboru modulu runtime.",
- "node.launch.runtimeExecutable.description": "Modul runtime, který se má použít. Buď absolutní cesta, nebo název modulu runtime, který je k dispozici na dané cestě. Pokud je vynechaný, předpokládá se název node.",
- "node.outFiles.description": "Při povolení souborů sourcemap tyto vzory glob určují vygenerované soubory JavaScriptu. Pokud vzor začíná znakem !, budou soubory vyloučeny. Pokud není zadán, bude se vygenerovaný kód očekávat ve stejném adresáři jako jeho zdroj.",
- "node.port.description": "Port pro ladění, ke kterému se má provést připojení. Výchozí hodnota je 9229.",
- "node.processattach.config.name": "Připojit k procesu",
- "node.restart.description": "Po ukončení Node.js se relace restartuje.",
- "node.showAsyncStacks.description": "Zobrazí se asynchronní volání, která vedla k aktuálnímu zásobníku volání.",
- "node.skipFiles.description": "Pole s názvy souborů či složek nebo vzory glob, které se mají při ladění přeskočit",
- "node.smartStep.description": "Provede se automatické krokování vygenerovaného kódu, který nelze namapovat zpět do původního zdroje.",
- "node.sourceMapPathOverrides.description": "Sada mapování pro přepsání umístění zdrojových souborů z umístění podle sourcemapu na jejich umístění na disku. Podrobnosti najdete v souboru README.",
- "node.sourceMaps.description": "Použijí se soubory sourcemap JavaScriptu (pokud existují).",
- "node.stopOnEntry.description": "Po spuštění se program automaticky zastaví.",
- "node.timeout.description": "Opakované pokusy o připojení k Node.js se budou provádět tento počet milisekund. Výchozí hodnota je 10000 ms.",
- "node.trace.description": "V případě hodnoty true bude ladicí program zaznamenávat informace o trasování do souboru. V případě hodnoty verbose se budou protokoly zobrazovat také v konzole.",
- "node.verboseDiagnosticLogging.deprecationMessage": "Atribut verboseDiagnosticLogging je zastaralý. Místo něho použijte atribut trace.",
- "node.verboseDiagnosticLogging.description": "V případě hodnoty true adaptér zaznamenává všechny přenosy s klientem a cílem (a také informace zaznamenané prostřednictvím atributu diagnosticLogging).",
- "outDir.deprecationMessage": "Atribut outDir je zastaralý, místo něho použijte atribut outFiles.",
- "toggle.skipping.this.file": "Přepnout možnost přeskočení tohoto souboru",
- "workspaceTrust": "K ladění kódu v tomto pracovním prostoru je vyžadován vztah důvěryhodnosti."
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-cs/translations/extensions/ms-vscode.remotehub.i18n.json b/i18n/vscode-language-pack-cs/translations/extensions/ms-vscode.remotehub.i18n.json
deleted file mode 100644
index 1b5ffbdd1b..0000000000
--- a/i18n/vscode-language-pack-cs/translations/extensions/ms-vscode.remotehub.i18n.json
+++ /dev/null
@@ -1,81 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "package": {
- "colors.added": "Color for added resources",
- "colors.conflict": "Color for resources with conflicts",
- "colors.deleted": "Color for deleted resources",
- "colors.incomingAdded": "Color for incoming added resources",
- "colors.incomingDeleted": "Color for incoming deleted resources",
- "colors.incomingModified": "Color for incoming modified resources",
- "colors.incomingRenamed": "Color for incoming renamed resources",
- "colors.modified": "Color for modified resources",
- "colors.possibleConflict": "Color for resources with possible conflicts",
- "command.timeline.compareWithSelected": "Compare with Selected",
- "command.timeline.copyCommitId": "Copy Commit ID",
- "command.timeline.copyCommitMessage": "Copy Commit Message",
- "command.timeline.openDiff": "Open Changes",
- "command.timeline.openOnGitHub": "Open on GitHub",
- "command.timeline.selectForCompare": "Select for Compare",
- "commands.addRepositoryToWorkspace": "Add Remote Repository to Workspace...",
- "commands.clone": "Clone Repository Locally...",
- "commands.commit": "Commit",
- "commands.continueOn": "Continue on...",
- "commands.createBranch": "Create New Branch...",
- "commands.createBranchFrom": "Create New Branch from...",
- "commands.createDraftPullRequest": "Create a Draft Pull Request",
- "commands.createPullRequest": "Create a Pull Request",
- "commands.deleteAllLocalRepositoryData": "Delete All Local Repository Data",
- "commands.deleteLocalRepositoryData": "Delete Local Repository Data...",
- "commands.discardAllChanges": "Discard All Changes",
- "commands.discardChanges": "Discard Changes",
- "commands.enableIndexing": "Enable Search Indexing",
- "commands.exportPatch": "Export Changes...",
- "commands.fetch": "Fetch",
- "commands.keepChanges": "Keep Changes",
- "commands.openChanges": "Open Changes",
- "commands.openFile": "Open File",
- "commands.openInCodespaces": "Open in Codespaces...",
- "commands.openOnDesktop": "Reopen on the Desktop",
- "commands.openOnRemote": "Open on GitHub",
- "commands.openOnWeb": "Reopen on the Web",
- "commands.openRepository": "Open Remote Repository...",
- "commands.pull": "Pull",
- "commands.stageAllChanges": "Stage All Changes",
- "commands.stageChanges": "Stage Changes",
- "commands.switchToBranch": "Switch to Branch...",
- "commands.sync": "Sync (Pull & Push)",
- "commands.unstageAllChanges": "Unstage All Changes",
- "commands.unstageChanges": "Unstage Changes",
- "config.autoFetch.enabled": "Specifies whether to periodically fetch from the upstream repository",
- "config.autoFetch.interval": "Specifies the interval, in seconds, to periodically fetch from the upstream repository",
- "config.search.download.corsProxy": "Specifies the proxy to use when downloading repository indicies from a browser context",
- "config.search.download.enabled": "Specifies whether text search should download an index of the repository in order to provide more accurate search results",
- "config.search.download.repoLimit": "Specifies the maximum number of search indicies cached per repo. Each reference requires a separate search index",
- "config.search.download.sizeLimit": "Specifies the size (in MB) of search index cache. The search cache is located in the extension's global storage folder",
- "config.staging.enabled": "Specifies whether to enable the staging of changes before committing",
- "config.staging.smart": "Specifies whether to automatically stage all changes, if there are none, before committing",
- "description": "Remotely browse and edit a GitHub repository",
- "displayName": "Remote Repositories (RemoteHub)",
- "displayNameInsiders": "RemoteHub (Insiders)",
- "submenu.branch": "Branch",
- "submenu.changes": "Changes",
- "submenu.commit": "Commit",
- "submenu.export": "Export",
- "submenu.pullRequest": "Pull Request",
- "viewsWelcome.debug": "Run and Debug are not available in this environment. To run and debug, you will need to continue in another Visual Studio Code setup.",
- "viewsWelcome.debug.continueOn": "[Continue on...](command:remoteHub.continueOn 'Continue working on this remote repository elsewhere')",
- "viewsWelcome.explorer": "Or, you can remotely open a repository or pull request directly from Visual Studio Code without cloning.\r\n[Open Remote Repository](command:remoteHub.openRepository 'Open a remote repository (e.g. from GitHub)')",
- "viewsWelcome.explorer.web": "Or, you can remotely open a repository or pull request directly from Visual Studio Code.\r\n[Open Remote Repository](command:remoteHub.openRepository 'Open a remote repository (e.g. from GitHub)')",
- "viewsWelcome.terminal": "Terminals are not available in this environment. To use the terminal, you will need to continue in another Visual Studio Code setup.",
- "viewsWelcome.terminal.continueOn": "[Continue on...](command:remoteHub.continueOn 'Continue working on this remote repository elsewhere')"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-cs/translations/extensions/notebook-markdown-extensions.i18n.json b/i18n/vscode-language-pack-cs/translations/extensions/notebook-markdown-extensions.i18n.json
deleted file mode 100644
index 139c95f51e..0000000000
--- a/i18n/vscode-language-pack-cs/translations/extensions/notebook-markdown-extensions.i18n.json
+++ /dev/null
@@ -1,16 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "package": {
- "description": "Poskytuje rozšířenou podporu jazyka pro Markdown.",
- "displayName": "Matematika v poznámkovém bloku Markdown"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-cs/translations/extensions/npm.i18n.json b/i18n/vscode-language-pack-cs/translations/extensions/npm.i18n.json
deleted file mode 100644
index 65440efcc9..0000000000
--- a/i18n/vscode-language-pack-cs/translations/extensions/npm.i18n.json
+++ /dev/null
@@ -1,77 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "dist/commands": {
- "noScriptFound": "Ve výběru se nepovedlo najít platný skript npm."
- },
- "dist/features/bowerJSONContribution": {
- "json.bower.default": "Výchozí soubor bower.json",
- "json.bower.error.repoaccess": "Požadavek na úložiště Bower selhal: {0}",
- "json.bower.latest.version": "nejnovější"
- },
- "dist/features/packageJSONContribution": {
- "json.npm.error.repoaccess": "Požadavek na úložiště NPM selhal: {0}",
- "json.npm.latestversion": "Aktuálně nejnovější verze balíčku",
- "json.npm.majorversion": "Odpovídá nejnovější hlavní verzi (1.x.x).",
- "json.npm.minorversion": "Odpovídá nejnovější dílčí verzi (1.2.x).",
- "json.npm.version.hover": "Nejnovější verze: {0}",
- "json.package.default": "Výchozí soubor package.json"
- },
- "dist/npmScriptLens": {
- "codelens.debug": "Ladit"
- },
- "dist/npmView": {
- "autoDetectIsOff": "Nastavení npm.autoDetect má hodnotu off.",
- "noScripts": "Nenašly se žádné skripty."
- },
- "dist/scriptHover": {
- "debugScript": "Ladit skript",
- "debugScript.tooltip": "Spustí skript v ladicím programu.",
- "runScript": "Spustit skript",
- "runScript.tooltip": "Spustit skript jako úlohu"
- },
- "dist/tasks": {
- "npm.multiplePMWarning": "{0} se používá jako preferovaný správce balíčků. Bylo nalezeno více funkcí lockfile pro {1}. Pokud chcete tento problém vyřešit, odstraňte funkce lockfile, které neodpovídají preferovanému správci balíčků, nebo změňte nastavení „npm.packageManager“ na jinou hodnotu než „auto“.",
- "npm.multiplePMWarning.doNotShow": "Už nezobrazovat",
- "npm.multiplePMWarning.learnMore": "Další informace",
- "npm.parseError": "Zjištění úlohy npm: Nepovedlo se parsovat soubor {0}."
- },
- "package": {
- "command.debug": "Ladit",
- "command.openScript": "Otevřít",
- "command.packageManager": "Získat nakonfigurovaného správce balíčků",
- "command.refresh": "Aktualizovat",
- "command.run": "Spustit",
- "command.runInstall": "Spustit instalaci",
- "command.runScriptFromFolder": "Spustit skript NPM ve složce...",
- "command.runSelectedScript": "Spustit skript",
- "config.npm.autoDetect": "Určuje, jestli mají být automaticky rozpoznány skripty npm.",
- "config.npm.enableRunFromFolder": "Povolit spouštění skriptů npm obsažených ve složce z místní nabídky průzkumníka",
- "config.npm.enableScriptExplorer": "Povolit zobrazení průzkumníka pro skripty npm, pokud není k dispozici žádný soubor package.json nejvyšší úrovně",
- "config.npm.exclude": "Nakonfigurovat vzory glob pro složky, které se mají vyloučit z automatického zjišťování skriptů",
- "config.npm.fetchOnlinePackageInfo": "Načíst data z https://registry.npmjs.org and https://registry.bower.io pro funkce automatického dokončování a zobrazení informací po umístění ukazatele myši pro závislosti npm",
- "config.npm.packageManager": "Správce balíčků, který se používá ke spouštění skriptů",
- "config.npm.packageManager.auto": "Podle souborů zámků a nainstalovaných správců balíčků automaticky zjišťovat, který správce balíčků se má použít ke spouštění skriptů",
- "config.npm.packageManager.npm": "Použít ke spouštění skriptů jako správce balíčků npm",
- "config.npm.packageManager.pnpm": "Použít ke spouštění skriptů jako správce balíčků pnpm",
- "config.npm.packageManager.yarn": "Použít ke spouštění skriptů jako správce balíčků yarn",
- "config.npm.runSilent": "Spouštět příkazy npm s parametrem --silent",
- "config.npm.scriptExplorerAction": "Výchozí akce kliknutí, která se používá v průzkumníkovi skriptů npm: open nebo run. Výchozí nastavení je open.",
- "config.npm.scriptExplorerExclude": "Pole regulárních výrazů, které určuje, které skripty se mají vyloučit ze zobrazení skriptů NPM.",
- "description": "Rozšíření pro přidání podpory úloh pro skripty npm",
- "displayName": "Podpora NPM pro VS Code",
- "npm.parseError": "Zjištění úlohy npm: Nepovedlo se parsovat soubor {0}.",
- "taskdef.path": "Cesta ke složce se souborem package.json, který obsahuje skript. Lze vynechat.",
- "taskdef.script": "Skript npm, který se má přizpůsobit",
- "view.name": "Skripty NPM",
- "workspaceTrust": "Toto rozšíření provádí úlohy, které ke spuštění vyžadují vztah důvěryhodnosti."
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-cs/translations/extensions/objective-c.i18n.json b/i18n/vscode-language-pack-cs/translations/extensions/objective-c.i18n.json
deleted file mode 100644
index 5760ee7fa9..0000000000
--- a/i18n/vscode-language-pack-cs/translations/extensions/objective-c.i18n.json
+++ /dev/null
@@ -1,16 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "package": {
- "description": "Poskytuje zvýrazňování syntaxe a párování závorek v souborech Objective-C.",
- "displayName": "Základy jazyka Objective-C"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-cs/translations/extensions/perl.i18n.json b/i18n/vscode-language-pack-cs/translations/extensions/perl.i18n.json
deleted file mode 100644
index 19db1f9241..0000000000
--- a/i18n/vscode-language-pack-cs/translations/extensions/perl.i18n.json
+++ /dev/null
@@ -1,16 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "package": {
- "description": "Poskytuje zvýrazňování syntaxe a párování závorek v souborech Perl.",
- "displayName": "Základy jazyka Perl"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-cs/translations/extensions/php-language-features.i18n.json b/i18n/vscode-language-pack-cs/translations/extensions/php-language-features.i18n.json
deleted file mode 100644
index f1ed18562c..0000000000
--- a/i18n/vscode-language-pack-cs/translations/extensions/php-language-features.i18n.json
+++ /dev/null
@@ -1,31 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "dist/features/validationProvider": {
- "goToSetting": "Otevřít nastavení",
- "noExecutable": "Nelze ověřit, protože není nastaven žádný spustitelný soubor PHP. Nakonfigurujte spustitelný soubor PHP pomocí nastavení php.validate.executablePath.",
- "noPhp": "Nelze provést ověřování, protože instalace PHP nebyla nalezena. Pomocí nastavení php.validate.executablePath nakonfigurujte spustitelný soubor PHP.",
- "unknownReason": "Nepodařilo se spustit soubor php pomocí cesty {0}. Důvod je neznámý.",
- "wrongExecutable": "Nelze ověřit, protože {0} není platný spustitelný soubor php. Nakonfigurujte spustitelný soubor PHP pomocí nastavení php.validate.executablePath."
- },
- "package": {
- "command.untrustValidationExecutable": "Zakázat spustitelný soubor pro ověření PHP (definováno jako nastavení pracovního prostoru)",
- "commands.categroy.php": "PHP",
- "configuration.suggest.basic": "Určuje, jestli jsou povoleny integrované návrhy jazyka PHP. Podpora nabízí návrhy globálních hodnot a proměnných PHP.",
- "configuration.title": "PHP",
- "configuration.validate.enable": "Umožňuje povolit nebo zakázat integrované ověřování PHP.",
- "configuration.validate.executablePath": "Odkazuje na spustitelný soubor PHP.",
- "configuration.validate.run": "Určuje, jestli se linter spustí při uložení nebo při psaní.",
- "description": "Poskytuje rozšířenou podporu jazyka pro soubory PHP.",
- "displayName": "Funkce jazyka PHP",
- "workspaceTrust": "Rozšíření vyžaduje vztah důvěryhodnosti pracovního prostoru, když nastavení php.validate.executablePath načte verzi PHP v pracovním prostoru."
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-cs/translations/extensions/php.i18n.json b/i18n/vscode-language-pack-cs/translations/extensions/php.i18n.json
deleted file mode 100644
index 192c9feaf6..0000000000
--- a/i18n/vscode-language-pack-cs/translations/extensions/php.i18n.json
+++ /dev/null
@@ -1,16 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "package": {
- "description": "Poskytuje zvýrazňování syntaxe a párování závorek pro soubory PHP.",
- "displayName": "Základy jazyka PHP"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-cs/translations/extensions/powershell.i18n.json b/i18n/vscode-language-pack-cs/translations/extensions/powershell.i18n.json
deleted file mode 100644
index dc3454f95a..0000000000
--- a/i18n/vscode-language-pack-cs/translations/extensions/powershell.i18n.json
+++ /dev/null
@@ -1,16 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "package": {
- "description": "Poskytuje fragmenty kódu, zvýrazňování syntaxe, párování závorek a sbalování kódu v souborech Powershellu.",
- "displayName": "Základy jazyka PowerShell"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-cs/translations/extensions/pug.i18n.json b/i18n/vscode-language-pack-cs/translations/extensions/pug.i18n.json
deleted file mode 100644
index 844f6cbcd3..0000000000
--- a/i18n/vscode-language-pack-cs/translations/extensions/pug.i18n.json
+++ /dev/null
@@ -1,16 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "package": {
- "description": "Poskytuje zvýrazňování syntaxe a párování závorek v souborech Pug.",
- "displayName": "Základy jazyka Pug"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-cs/translations/extensions/r.i18n.json b/i18n/vscode-language-pack-cs/translations/extensions/r.i18n.json
deleted file mode 100644
index 53cfdf1afa..0000000000
--- a/i18n/vscode-language-pack-cs/translations/extensions/r.i18n.json
+++ /dev/null
@@ -1,16 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "package": {
- "description": "Poskytuje zvýrazňování syntaxe a párování závorek v souborech R.",
- "displayName": "Základy jazyka R"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-cs/translations/extensions/razor.i18n.json b/i18n/vscode-language-pack-cs/translations/extensions/razor.i18n.json
deleted file mode 100644
index 2a24375155..0000000000
--- a/i18n/vscode-language-pack-cs/translations/extensions/razor.i18n.json
+++ /dev/null
@@ -1,16 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "package": {
- "description": "Poskytuje zvýrazňování syntaxe, párování závorek a sbalování kódu v souborech Razoru.",
- "displayName": "Základy jazyka Razor"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-cs/translations/extensions/references-view.i18n.json b/i18n/vscode-language-pack-cs/translations/extensions/references-view.i18n.json
deleted file mode 100644
index cafdb409df..0000000000
--- a/i18n/vscode-language-pack-cs/translations/extensions/references-view.i18n.json
+++ /dev/null
@@ -1,73 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "dist/calls/model": {
- "noresult": "Žádné výsledky",
- "open": "Otevřít volání",
- "title.callers": "Volající pro",
- "title.calls": "Volání od"
- },
- "dist/references/index": {
- "title": "Reference"
- },
- "dist/references/model": {
- "noresult": "Žádné výsledky",
- "open": "Otevřít referenci",
- "result.1": "{0} výsledek v {1} souboru",
- "result.1n": "{0} výsledek v tomto počtu souborů: {1}",
- "result.n1": "Výsledky: {0} v {1} souboru",
- "result.nm": "Výsledky: {0} v {1} souborech"
- },
- "dist/tree": {
- "noresult": "Žádné výsledky",
- "noresult2": "Žádné výsledky. Zkuste spustit předchozí hledání znovu:",
- "placeholder": "Vybrat předchozí hledávání referencí",
- "title": "Reference",
- "title.rerun": "Spustit znovu"
- },
- "dist/types/model": {
- "noresult": "Žádné výsledky",
- "title.openType": "Otevřít typ",
- "title.sub": "Podtypy pro",
- "title.sup": "Nadtypy pro"
- },
- "package": {
- "cmd.category.references": "Reference",
- "cmd.references-view.clear": "Vymazat",
- "cmd.references-view.clearHistory": "Vymazat historii",
- "cmd.references-view.copy": "Kopírovat",
- "cmd.references-view.copyAll": "Kopírovat vše",
- "cmd.references-view.copyPath": "Kopírovat cestu",
- "cmd.references-view.findImplementations": "Najít všechny implementace",
- "cmd.references-view.findReferences": "Najít všechny odkazy",
- "cmd.references-view.next": "Přejít k další referenci",
- "cmd.references-view.pickFromHistory": "Zobrazit historii",
- "cmd.references-view.prev": "Přejít na předchozí referenci",
- "cmd.references-view.refind": "Spustit znovu",
- "cmd.references-view.refresh": "Aktualizovat",
- "cmd.references-view.removeCallItem": "Zavřít",
- "cmd.references-view.removeReferenceItem": "Zavřít",
- "cmd.references-view.removeTypeItem": "Zavřít",
- "cmd.references-view.showCallHierarchy": "Zobrazit hierarchii volání",
- "cmd.references-view.showIncomingCalls": "Zobrazit příchozí volání",
- "cmd.references-view.showOutgoingCalls": "Zobrazit odchozí volání",
- "cmd.references-view.showSubtypes": "Zobrazit podtypy",
- "cmd.references-view.showSupertypes": "Zobrazit nadtypy",
- "cmd.references-view.showTypeHierarchy": "Zobrazit hierarchii typů",
- "config.references.preferredLocation": "Určuje, jestli se při výběru referencí v oddílu kódu vyvolá funkce Náhled referencí nebo Najít reference.",
- "config.references.preferredLocation.peek": "Zobrazení referencí v editoru náhledu.",
- "config.references.preferredLocation.view": "Zobrazení referencí v samostatném zobrazení.",
- "container.title": "Reference",
- "description": "Uvádět výsledky hledání v samostatném, stabilním zobrazení na bočním panelu",
- "displayName": "Zobrazení vyhledávání referencí",
- "view.title": "Výsledky"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-cs/translations/extensions/ruby.i18n.json b/i18n/vscode-language-pack-cs/translations/extensions/ruby.i18n.json
deleted file mode 100644
index 2907b197ec..0000000000
--- a/i18n/vscode-language-pack-cs/translations/extensions/ruby.i18n.json
+++ /dev/null
@@ -1,16 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "package": {
- "description": "Poskytuje zvýrazňování syntaxe a párování závorek v souborech Ruby.",
- "displayName": "Základy jazyka Ruby"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-cs/translations/extensions/rust.i18n.json b/i18n/vscode-language-pack-cs/translations/extensions/rust.i18n.json
deleted file mode 100644
index c773f9b113..0000000000
--- a/i18n/vscode-language-pack-cs/translations/extensions/rust.i18n.json
+++ /dev/null
@@ -1,16 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "package": {
- "description": "Poskytuje zvýrazňování syntaxe a párování závorek v souborech Rust.",
- "displayName": "Základy jazyka Rust"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-cs/translations/extensions/scss.i18n.json b/i18n/vscode-language-pack-cs/translations/extensions/scss.i18n.json
deleted file mode 100644
index f49bc2a813..0000000000
--- a/i18n/vscode-language-pack-cs/translations/extensions/scss.i18n.json
+++ /dev/null
@@ -1,16 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "package": {
- "description": "Poskytuje zvýrazňování syntaxe, párování závorek a sbalování kódu v souborech SCSS.",
- "displayName": "Základy jazyka SCSS"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-cs/translations/extensions/shaderlab.i18n.json b/i18n/vscode-language-pack-cs/translations/extensions/shaderlab.i18n.json
deleted file mode 100644
index 1e989fb160..0000000000
--- a/i18n/vscode-language-pack-cs/translations/extensions/shaderlab.i18n.json
+++ /dev/null
@@ -1,16 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "package": {
- "description": "Poskytuje zvýrazňování syntaxe a párování závorek v souborech Shaderlab.",
- "displayName": "Základy jazyka ShaderLab"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-cs/translations/extensions/shellscript.i18n.json b/i18n/vscode-language-pack-cs/translations/extensions/shellscript.i18n.json
deleted file mode 100644
index 1a902d840d..0000000000
--- a/i18n/vscode-language-pack-cs/translations/extensions/shellscript.i18n.json
+++ /dev/null
@@ -1,16 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "package": {
- "description": "Poskytuje zvýrazňování syntaxe a párování závorek v souborech shellového skriptu.",
- "displayName": "Základy jazyka shellového skriptu"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-cs/translations/extensions/simple-browser.i18n.json b/i18n/vscode-language-pack-cs/translations/extensions/simple-browser.i18n.json
deleted file mode 100644
index a4fa73f2f3..0000000000
--- a/i18n/vscode-language-pack-cs/translations/extensions/simple-browser.i18n.json
+++ /dev/null
@@ -1,30 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "dist/extension": {
- "openTitle": "Otevřít v jednoduchém prohlížeči",
- "simpleBrowser.show.placeholder": "https://example.com",
- "simpleBrowser.show.prompt": "Zadejte adresu URL, na kterou chcete přejít."
- },
- "dist/simpleBrowserView": {
- "control.back.title": "Zpět",
- "control.forward.title": "Vpřed",
- "control.openExternal.title": "Otevřít v prohlížeči",
- "control.reload.title": "Načíst znovu",
- "view.iframe-focused": "Zámek fokusu",
- "view.title": "Jednoduchý prohlížeč"
- },
- "package": {
- "configuration.focusLockIndicator.enabled.description": "Povolí nebo zakáže plovoucí indikátor, který se zobrazuje při nastavení fokusu na jednoduchý prohlížeč.",
- "description": "Velmi základní integrované webové zobrazení pro zobrazování webového obsahu.",
- "displayName": "Jednoduchý prohlížeč"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-cs/translations/extensions/sql.i18n.json b/i18n/vscode-language-pack-cs/translations/extensions/sql.i18n.json
deleted file mode 100644
index a5cf13b366..0000000000
--- a/i18n/vscode-language-pack-cs/translations/extensions/sql.i18n.json
+++ /dev/null
@@ -1,16 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "package": {
- "description": "Poskytuje zvýrazňování syntaxe a párování závorek v souborech SQL.",
- "displayName": "Základy jazyka SQL"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-cs/translations/extensions/swift.i18n.json b/i18n/vscode-language-pack-cs/translations/extensions/swift.i18n.json
deleted file mode 100644
index dca3cd3023..0000000000
--- a/i18n/vscode-language-pack-cs/translations/extensions/swift.i18n.json
+++ /dev/null
@@ -1,16 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "package": {
- "description": "Poskytuje fragmenty kódu, zvýrazňování syntaxe a párování závorek v souborech jazyka Swift.",
- "displayName": "Základy jazyka Swift"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-cs/translations/extensions/testing-editor-contributions.i18n.json b/i18n/vscode-language-pack-cs/translations/extensions/testing-editor-contributions.i18n.json
deleted file mode 100644
index 6470014e23..0000000000
--- a/i18n/vscode-language-pack-cs/translations/extensions/testing-editor-contributions.i18n.json
+++ /dev/null
@@ -1,27 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "package": {
- "action.debug": "Ladit",
- "action.run": "Spustit testy",
- "config.enableCodeLens": "Určuje, jestli by v testovacích případech a sadách měla být viditelná funkce CodeLens.",
- "config.enableProblemDiagnostics": "Určuje, jestli se mají chyby testů hlásit v zobrazení problémy a zobrazovat jako chyby v editoru.",
- "description": "Poskytuje prostředí v editoru pro testy a výsledky testů.",
- "displayName": "Příspěvky k editoru testování",
- "state.failed": "Neúspěšný",
- "state.passed": "Úspěšný",
- "state.passedWithDuration": "Úspěšné za {0}",
- "tooltip.debug": "Ladit {0}",
- "tooltip.run": "Spustit {0}",
- "tooltip.runState": "Úspěšné testy: {0}/{1}",
- "tooltip.runStateWithDuration": "{0}/{1} testů proběhlo úspěšně za {2}."
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-cs/translations/extensions/theme-abyss.i18n.json b/i18n/vscode-language-pack-cs/translations/extensions/theme-abyss.i18n.json
deleted file mode 100644
index a699364601..0000000000
--- a/i18n/vscode-language-pack-cs/translations/extensions/theme-abyss.i18n.json
+++ /dev/null
@@ -1,17 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "package": {
- "description": "Motiv Abyss pro Visual Studio Code",
- "displayName": "Motiv Abyss",
- "themeLabel": "Abyss"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-cs/translations/extensions/theme-defaults.i18n.json b/i18n/vscode-language-pack-cs/translations/extensions/theme-defaults.i18n.json
deleted file mode 100644
index 791b94cdcd..0000000000
--- a/i18n/vscode-language-pack-cs/translations/extensions/theme-defaults.i18n.json
+++ /dev/null
@@ -1,23 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "package": {
- "darkColorThemeLabel": "Tmavý (Visual Studio)",
- "darkPlusColorThemeLabel": "Tmavý+ (výchozí tmavý)",
- "description": "Výchozí světlé a tmavé motivy sady Visual Studio",
- "displayName": "Výchozí motivy",
- "hcColorThemeLabel": "Tmavý vysoký kontrast",
- "lightColorThemeLabel": "Světlý (Visual Studio)",
- "lightHcColorThemeLabel": "Vysoký kontrast – světlý",
- "lightPlusColorThemeLabel": "Světlý+ (výchozí světlý)",
- "minimalIconThemeLabel": "Minimální (Visual Studio Code)"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-cs/translations/extensions/theme-kimbie-dark.i18n.json b/i18n/vscode-language-pack-cs/translations/extensions/theme-kimbie-dark.i18n.json
deleted file mode 100644
index 02affbe00f..0000000000
--- a/i18n/vscode-language-pack-cs/translations/extensions/theme-kimbie-dark.i18n.json
+++ /dev/null
@@ -1,17 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "package": {
- "description": "Tmavý motiv Kimbie pro Visual Studio Code",
- "displayName": "Tmavý motiv Kimbie",
- "themeLabel": "Tmavý Kimbie"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-cs/translations/extensions/theme-monokai-dimmed.i18n.json b/i18n/vscode-language-pack-cs/translations/extensions/theme-monokai-dimmed.i18n.json
deleted file mode 100644
index 5f3412fdf5..0000000000
--- a/i18n/vscode-language-pack-cs/translations/extensions/theme-monokai-dimmed.i18n.json
+++ /dev/null
@@ -1,17 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "package": {
- "description": "Motiv Monokai se sníženým jasem pro Visual Studio Code",
- "displayName": "Motiv Monokai se sníženým jasem",
- "themeLabel": "Monokai se sníženým jasem"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-cs/translations/extensions/theme-monokai.i18n.json b/i18n/vscode-language-pack-cs/translations/extensions/theme-monokai.i18n.json
deleted file mode 100644
index 6b533c0144..0000000000
--- a/i18n/vscode-language-pack-cs/translations/extensions/theme-monokai.i18n.json
+++ /dev/null
@@ -1,17 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "package": {
- "description": "Motiv Monokai pro Visual Studio Code",
- "displayName": "Motiv Monokai",
- "themeLabel": "Monokai"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-cs/translations/extensions/theme-quietlight.i18n.json b/i18n/vscode-language-pack-cs/translations/extensions/theme-quietlight.i18n.json
deleted file mode 100644
index 763a6a3dbf..0000000000
--- a/i18n/vscode-language-pack-cs/translations/extensions/theme-quietlight.i18n.json
+++ /dev/null
@@ -1,17 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "package": {
- "description": "Decentní světlý motiv pro Visual Studio Code",
- "displayName": "Decentní světlý motiv",
- "themeLabel": "Decentní světlý"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-cs/translations/extensions/theme-red.i18n.json b/i18n/vscode-language-pack-cs/translations/extensions/theme-red.i18n.json
deleted file mode 100644
index c6bd742da8..0000000000
--- a/i18n/vscode-language-pack-cs/translations/extensions/theme-red.i18n.json
+++ /dev/null
@@ -1,17 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "package": {
- "description": "Červený motiv pro Visual Studio Code",
- "displayName": "Červený motiv",
- "themeLabel": "Červený"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-cs/translations/extensions/theme-seti.i18n.json b/i18n/vscode-language-pack-cs/translations/extensions/theme-seti.i18n.json
deleted file mode 100644
index ee4f7e4c88..0000000000
--- a/i18n/vscode-language-pack-cs/translations/extensions/theme-seti.i18n.json
+++ /dev/null
@@ -1,17 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "package": {
- "description": "Motiv ikon souboru tvořený ikonami souboru uživatelského rozhraní Seti",
- "displayName": "Motiv ikon souboru Seti",
- "themeLabel": "Seti (Visual Studio Code)"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-cs/translations/extensions/theme-solarized-dark.i18n.json b/i18n/vscode-language-pack-cs/translations/extensions/theme-solarized-dark.i18n.json
deleted file mode 100644
index 8d719176de..0000000000
--- a/i18n/vscode-language-pack-cs/translations/extensions/theme-solarized-dark.i18n.json
+++ /dev/null
@@ -1,17 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "package": {
- "description": "Tmavý motiv Solarized pro Visual Studio Code",
- "displayName": "Tmavý motiv Solarized",
- "themeLabel": "Tmavý Solarized"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-cs/translations/extensions/theme-solarized-light.i18n.json b/i18n/vscode-language-pack-cs/translations/extensions/theme-solarized-light.i18n.json
deleted file mode 100644
index 0e6a153927..0000000000
--- a/i18n/vscode-language-pack-cs/translations/extensions/theme-solarized-light.i18n.json
+++ /dev/null
@@ -1,17 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "package": {
- "description": "Světlý motiv Solarized pro Visual Studio Code",
- "displayName": "Světlý motiv Solarized",
- "themeLabel": "Světlý Solarized"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-cs/translations/extensions/theme-tomorrow-night-blue.i18n.json b/i18n/vscode-language-pack-cs/translations/extensions/theme-tomorrow-night-blue.i18n.json
deleted file mode 100644
index 91b5654d37..0000000000
--- a/i18n/vscode-language-pack-cs/translations/extensions/theme-tomorrow-night-blue.i18n.json
+++ /dev/null
@@ -1,17 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "package": {
- "description": "Motiv Tomorrow Night Blue pro Visual Studio Code",
- "displayName": "Motiv Tomorrow Night Blue",
- "themeLabel": "Tomorrow Night Blue"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-cs/translations/extensions/typescript-basics.i18n.json b/i18n/vscode-language-pack-cs/translations/extensions/typescript-basics.i18n.json
deleted file mode 100644
index 73f932d7c7..0000000000
--- a/i18n/vscode-language-pack-cs/translations/extensions/typescript-basics.i18n.json
+++ /dev/null
@@ -1,16 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "package": {
- "description": "Poskytuje fragmenty kódu, zvýrazňování syntaxe, párování závorek a sbalování kódu v souborech jazyka TypeScript.",
- "displayName": "Základy jazyka TypeScript"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-cs/translations/extensions/typescript-language-features.i18n.json b/i18n/vscode-language-pack-cs/translations/extensions/typescript-language-features.i18n.json
deleted file mode 100644
index 14906ac5f5..0000000000
--- a/i18n/vscode-language-pack-cs/translations/extensions/typescript-language-features.i18n.json
+++ /dev/null
@@ -1,328 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "dist/languageFeatures/codeLens/baseCodeLensProvider": {
- "referenceErrorLabel": "Nepovedlo se určit odkazy."
- },
- "dist/languageFeatures/codeLens/implementationsCodeLens": {
- "manyImplementationLabel": "Počet implementací: {0}",
- "oneImplementationLabel": "1 implementace"
- },
- "dist/languageFeatures/codeLens/referencesCodeLens": {
- "manyReferenceLabel": "Odkazy: {0}",
- "oneReferenceLabel": "1 odkaz"
- },
- "dist/languageFeatures/completions": {
- "acquiringTypingsDetail": "Získávají se definice typings pro IntelliSense.",
- "acquiringTypingsLabel": "Získávají se definice typings...",
- "selectCodeAction": "Vybrat akci kódu, která se má použít"
- },
- "dist/languageFeatures/directiveCommentCompletions": {
- "ts-check": "Povolí sémantickou kontrolu v souboru JavaScriptu. Musí být na začátku souboru.",
- "ts-expect-error": "Potlačí chyby @ts-check na dalším řádku souboru. Očekává, že bude existovat minimálně jedna.",
- "ts-ignore": "Potlačí chyby @ts-check na dalším řádku souboru.",
- "ts-nocheck": "Zakáže sémantickou kontrolu v souboru JavaScriptu. Musí být na začátku souboru."
- },
- "dist/languageFeatures/fileReferences": {
- "error.noResource": "Operace vyhledání odkazů na soubory neproběhla úspěšně. Neposkytl se žádný prostředek.",
- "error.unknownFile": "Operace vyhledání odkazů na soubory neproběhla úspěšně. Neznámý typ souboru",
- "error.unsupportedLanguage": "Operace vyhledání odkazů na soubory neproběhla úspěšně. Nepodporovaný typ souboru",
- "error.unsupportedVersion": "Operace vyhledání odkazů na soubory neproběhla úspěšně. Vyžaduje TypeScript 4.2+.",
- "progress.title": "Vyhledávají se odkazy na soubory"
- },
- "dist/languageFeatures/fixAll": {
- "autoFix.label": "Opravit všechny opravitelné problémy JS/TS",
- "autoFix.missingImports.label": "Přidat všechny chybějící importy",
- "autoFix.unused.label": "Odebrat veškerý nepoužívaný kód"
- },
- "dist/languageFeatures/jsDocCompletions": {
- "typescript.jsDocCompletionItem.documentation": "Komentář JSDoc"
- },
- "dist/languageFeatures/organizeImports": {
- "organizeImportsAction.title": "Uspořádat importy",
- "sortImportsAction.title": "Seřadit importy"
- },
- "dist/languageFeatures/quickFix": {
- "fixAllInFileLabel": "{0} (Opravit vše v souboru)"
- },
- "dist/languageFeatures/refactor": {
- "extractConstant.disabled.reason": "Aktuální výběr nelze extrahovat.",
- "extractConstant.disabled.title": "Extrahovat do konstanty",
- "extractFunction.disabled.reason": "Aktuální výběr nelze extrahovat.",
- "extractFunction.disabled.title": "Extrahovat do funkce",
- "refactor.documentation.title": "Další informace o refaktorování JS/TS",
- "refactoringFailed": "Refaktorování se nepodařilo použít."
- },
- "dist/languageFeatures/rename": {
- "fileRenameFail": "Při přejmenovávání souboru došlo k chybě."
- },
- "dist/languageFeatures/sourceDefinition": {
- "error.noReferences": "Nenašly se žádné definice.",
- "error.noResource": "Nepovedlo se přejít na definici zdroje. Neposkytl se žádný prostředek.",
- "error.unknownFile": "Nepovedlo se přejít na definici zdroje. Neznámý typ souboru.",
- "error.unsupportedLanguage": "Nepovedlo se přejít na definici zdroje. Nepodporovaný typ souboru.",
- "error.unsupportedVersion": "Nepovedlo se přejít na definici zdroje. Vyžaduje se TypeScript 4.7+.",
- "progress.title": "Hledání definic zdrojů"
- },
- "dist/languageFeatures/tsconfig": {
- "documentLink.tooltip": "Přejít na odkaz",
- "openTsconfigExtendsModuleFail": "{0} se nepovedlo vyřešit jako modul"
- },
- "dist/languageFeatures/updatePathsOnRename": {
- "accept.title": "Ano",
- "always.title": "Vždy automaticky aktualizovat importy",
- "moreFile": "...nezobrazuje se 1 další soubor",
- "moreFiles": "...{0} dalších souborů není zobrazeno",
- "never.title": "Nikdy automaticky neaktualizovat importy",
- "prompt": "Chcete aktualizovat importy pro: {0}?",
- "promptMoreThanOne": "Chcete aktualizovat importy pro následující soubory ({0})?",
- "reject.title": "Ne",
- "renameProgress.title": "Kontroluje se aktualizace importů JS/TS"
- },
- "dist/task/taskProvider": {
- "badTsConfig": "Úloha TypeScriptu v souboru tasks.json obsahuje čtyři zpětná lomítka (\\\\). V konfiguraci tsconfig úloh TypeScriptu se musí používat jedno dopředné lomítko (/).",
- "buildAndWatchTscLabel": "kukátko – {0}",
- "buildTscLabel": "sestavení – {0}"
- },
- "dist/tsServer/serverProcess.electron": {
- "noServerFound": "Cesta {0} neodkazuje na platnou instalaci serveru tsserver. Místo toho se použije verze TypeScriptu v balíčku."
- },
- "dist/tsServer/versionManager": {
- "allow": "Povolit",
- "dismiss": "Zavřít",
- "learnMore": "Další informace o správě verzí TypeScriptu",
- "promptUseWorkspaceTsdk": "Tento pracovní prostor obsahuje verzi TypeScriptu. Chcete použít verzi TypeScriptu pracovního prostoru pro funkce jazyka TypeScript a JavaScript?",
- "selectTsVersion": "Vyberte verzi TypeScriptu používanou pro funkce jazyka JavaScript a TypeScript.",
- "suppress prompt": "Nikdy v tomto pracovním prostoru",
- "useVSCodeVersionOption": "Použít verzi VS Code",
- "useWorkspaceVersionOption": "Použít verzi pracovního prostoru"
- },
- "dist/typescriptServiceClient": {
- "noServerFound": "Cesta {0} neodkazuje na platnou instalaci serveru tsserver. Místo toho se použije verze TypeScriptu v balíčku.",
- "openTsServerLog.openFileFailedFailed": "Nepovedlo se otevřít soubor protokolu serveru TS.",
- "serverDied": "Služba jazyka TypeScript se za posledních 5 minut pětkrát za sebou neočekávaně ukončila.",
- "serverDiedAfterStart": "Služba jazyka TypeScript se ihned po spuštění pětkrát ukončila. Služba nebude restartována.",
- "serverDiedOnce": "Služba jazyka TypeScript byla neočekávaně ukončena.",
- "serverDiedReportIssue": "Nahlásit problém",
- "serverExitedWithError": "Server jazyka TypeScript byl ukončen s chybou. Chybová zpráva: {0}",
- "serverLoading.progress": "Inicializují se funkce jazyka JS/TS",
- "typescript.openTsServerLog.enableAndReloadOption": "Povolit protokolování a restartovat server TS",
- "typescript.openTsServerLog.loggingNotEnabled": "Protokolování serveru TS je vypnuté. Pokud chcete povolit protokolování, nastavte prosím typescript.tsserver.log a restartujte server TS.",
- "typescript.openTsServerLog.noLogFile": "Server TS nezačal protokolovat.",
- "usingOldTsVersion.detail": "Pracovní prostor používá starou verzi TypeScriptu ({0}).\r\n\r\nNež nahlásíte problém, aktualizujte prosím pracovní prostor tak, aby používal nejnovější stabilní verzi TypeScriptu, abyste měli jistotu, že chyba ještě nebyla neopravena.",
- "usingOldTsVersion.title": "Aktualizujte si prosím verzi TypeScriptu"
- },
- "dist/ui/intellisenseStatus": {
- "pending.detail": "Načítání stavu IntelliSense",
- "resolved.command.title.createJsconfig": "Vytvořit jsconfig",
- "resolved.command.title.createTsconfig": "Vytvořit tsconfig",
- "resolved.command.title.open": "Otevřít konfigurační soubor",
- "resolved.detail.noJsConfig": "Žádný jsconfig",
- "resolved.detail.noOpenedFolders": "Žádné otevřené složky",
- "resolved.detail.noTsConfig": "Žádný tsconfig",
- "resolved.detail.notInOpenedFolder": "Soubor není součástí otevřených složek.",
- "statusItem.name": "Stav IntelliSense JS/TS",
- "syntaxOnly.command.title.learnMore": "Další informace",
- "syntaxOnly.detail": "IntelliSense není k dispozici pro celý projekt",
- "syntaxOnly.text": "Dílčí režim"
- },
- "dist/ui/versionStatus": {
- "versionStatus.command": "Vyberte verzi",
- "versionStatus.detail": "Verze TypeScriptu",
- "versionStatus.name": "Verze TypeScriptu"
- },
- "dist/utils/api": {
- "invalidVersion": "neplatná verze"
- },
- "dist/utils/logger": {
- "channelName": "TypeScript"
- },
- "dist/utils/tsconfig": {
- "typescript.configureJsconfigQuickPick": "Konfigurovat soubor jsconfig.js",
- "typescript.configureTsconfigQuickPick": "Konfigurovat soubor tsconfig.js",
- "typescript.noJavaScriptProjectConfig": "Soubor není součástí projektu JavaScript. Další informace najdete v [dokumentaci jsconfig.json]({0}).",
- "typescript.noTypeScriptProjectConfig": "Soubor není součástí projektu TypeScript. Další informace najdete v [dokumentaci tsconfig.json]({0}).",
- "typescript.projectConfigCouldNotGetInfo": "Nepovedlo se určit projekt TypeScriptu nebo JavaScriptu.",
- "typescript.projectConfigNoWorkspace": "Pokud chcete použít projekt TypeScriptu nebo JavaScriptu, otevřete prosím složku ve VS Code.",
- "typescript.projectConfigUnsupportedFile": "Nepovedlo se určit projekt TypeScriptu nebo JavaScriptu. Nepodporovaný typ souboru"
- },
- "package": {
- "codeActions.refactor.extract.constant.description": "Extrahovat výraz do konstanty",
- "codeActions.refactor.extract.constant.title": "Extrahovat konstantu",
- "codeActions.refactor.extract.function.description": "Extrahovat výraz do metody nebo funkce",
- "codeActions.refactor.extract.function.title": "Extrahovat funkci",
- "codeActions.refactor.extract.interface.description": "Extrahovat typ do rozhraní",
- "codeActions.refactor.extract.interface.title": "Extrahovat rozhraní",
- "codeActions.refactor.extract.type.description": "Extrahovat typ do aliasu typu",
- "codeActions.refactor.extract.type.title": "Extrahovat typ",
- "codeActions.refactor.move.newFile.description": "Přesunout výraz do nového souboru",
- "codeActions.refactor.move.newFile.title": "Přesunout do nového souboru",
- "codeActions.refactor.rewrite.arrow.braces.description": "Přidat nebo odebrat složené závorky ve funkci šipky",
- "codeActions.refactor.rewrite.arrow.braces.title": "Přepsat úhlové závorky",
- "codeActions.refactor.rewrite.export.description": "Převod mezi výchozím exportem a pojmenovaným exportem",
- "codeActions.refactor.rewrite.export.title": "Převést export",
- "codeActions.refactor.rewrite.import.description": "Převod mezi pojmenovanými importy a importy názvového prostoru",
- "codeActions.refactor.rewrite.import.title": "Převést import",
- "codeActions.refactor.rewrite.parameters.toDestructured.title": "Převést parametry na destrukturovaný objekt",
- "codeActions.refactor.rewrite.property.generateAccessors.description": "Generovat přístupové objekty get a set",
- "codeActions.refactor.rewrite.property.generateAccessors.title": "Generovat přístupové objekty",
- "codeActions.source.organizeImports.title": "Uspořádat importy",
- "configuration.implicitProjectConfig.checkJs": "Umožňuje povolit nebo zakázat sémantickou kontrolu souborů JavaScriptu. Existující soubory jsconfig.json nebo tsconfig.json toto nastavení přepíší.",
- "configuration.implicitProjectConfig.experimentalDecorators": "Umožňuje povolit nebo zakázat možnost experimentalDecorators pro soubory JavaScriptu, které nejsou součástí projektu. Existující soubory jsconfig.json nebo tsconfig.json toto nastavení přepíší.",
- "configuration.implicitProjectConfig.module": "Nastaví systém modulů pro program. Další informace: https://www.typescriptlang.org/tsconfig#module.",
- "configuration.implicitProjectConfig.strictFunctionTypes": "Umožňuje povolit nebo zakázat [striktní typy funkcí](https://www.typescriptlang.org/tsconfig#strictFunctionTypes) pro soubory JavaScriptu a TypeScriptu, které nejsou součástí projektu. Existující soubory jsconfig.json nebo tsconfig.json toto nastavení přepíší.",
- "configuration.implicitProjectConfig.strictNullChecks": "Umožňuje povolit nebo zakázat [striktní kontroly hodnoty null](https://www.typescriptlang.org/tsconfig#strictNullChecks) pro soubory JavaScriptu a TypeScriptu, které nejsou součástí projektu. Existující soubory jsconfig.json nebo tsconfig.json toto nastavení přepíší.",
- "configuration.implicitProjectConfig.target": "Nastavte cílovou verzi jazyka JavaScript pro vydávaný JavaScript a zahrňte deklarace knihovny. Další informace: https://www.typescriptlang.org/tsconfig#target.",
- "configuration.inlayHints.parameterNames.suppressWhenArgumentMatchesName": "Potlačte tipy pro názvy parametrů parametru u argumentů, jejichž text je totožný s názvem parametru.",
- "configuration.inlayHints.variableTypes.suppressWhenTypeMatchesName": "Potlačit typové nápovědy u proměnných, jejichž název je shodný s názvem typu. Vyžaduje použití TypeScriptu 4.8+ v pracovním prostoru.",
- "configuration.javascript.checkJs.checkJs.deprecation": "Toto nastavení je zastaralé a místo něj se používá js/ts.implicitProjectConfig.checkJs.",
- "configuration.javascript.checkJs.experimentalDecorators.deprecation": "Toto nastavení je zastaralé a místo něj se používá js/ts.implicitProjectConfig.experimentalDecorators.",
- "configuration.suggest.autoImports": "Umožňuje povolit nebo zakázat návrhy automatického importu.",
- "configuration.suggest.classMemberSnippets.enabled": "Umožňuje povolit nebo zakázat dokončování fragmentů z členů třídy. Vyžaduje, aby se v pracovním prostoru používal TypeScript 4.5+.",
- "configuration.suggest.completeFunctionCalls": "Dokončovat funkce pomocí jejich podpisu parametru",
- "configuration.suggest.completeJSDocs": "Umožňuje povolit nebo zakázat návrh na dokončování komentářů JSDoc.",
- "configuration.suggest.includeAutomaticOptionalChainCompletions": "Umožňuje povolit nebo zakázat zobrazování dokončování pro potenciálně nedefinované hodnoty, které vkládají volitelné volání řetězce. Vyžaduje TS 3.7+ a povolení striktních kontrol hodnot null.",
- "configuration.suggest.includeCompletionsForImportStatements": "Umožňuje povolit nebo zakázat dokončení automatického importu stylů a příkazů částečně typového importu. Vyžaduje, aby se v pracovním prostoru používal TypeScript 4.3+.",
- "configuration.suggest.includeCompletionsWithSnippetText": "Umožňuje povolit nebo zakázat dokončování fragmentů z TS Serveru. Vyžaduje, aby se v pracovním prostoru používal TypeScript 4.3+.",
- "configuration.suggest.jsdoc.generateReturns": "Umožňuje povolit nebo zakázat generování poznámek @returns pro šablony JSDoc. Vyžaduje, aby se v pracovním prostoru použil TypeScript 4.2+.",
- "configuration.suggest.names": "Umožňuje povolit nebo zakázat zahrnutí jedinečných názvů ze souboru do návrhů JavaScriptu. Poznámka: Návrhy názvů jsou vždy zakázány v kódu JavaScriptu, který je sémanticky kontrolován pomocí @ts-check nebo checkJs.",
- "configuration.suggest.objectLiteralMethodSnippets.enabled": "Umožňuje povolit nebo zakázat dokončování pro metody v objektových literálech. Vyžaduje, aby se v pracovním prostoru používal TypeScript 4.7+.",
- "configuration.suggest.paths": "Umožňuje povolit nebo zakázat návrhy pro cesty v příkazech importu a vyžadovat volání.",
- "configuration.surveys.enabled": "Umožňuje povolit nebo zakázat příležitostné průzkumy, které nám pomůžou vylepšit podporu JavaScriptu a TypeScriptu ve VS Code.",
- "configuration.tsserver.experimental.enableProjectDiagnostics": "(Experimentální) Povolí zasílání zpráv o chybách v rámci celého projektu.",
- "configuration.tsserver.maxTsServerMemory": "Maximální velikost paměti (v MB), která se přidělí procesu serveru TypeScriptu",
- "configuration.tsserver.useSeparateSyntaxServer": "Umožňuje povolit nebo zakázat vytváření samostatného serveru TypeScriptu, který může rychleji reagovat na operace související se syntaxí, jako je například výpočet sbalení nebo symbolů dokumentu. V pracovním prostoru je nutné používat TypeScript 3.4.0 nebo novější.",
- "configuration.tsserver.useSeparateSyntaxServer.deprecation": "Toto nastavení je zastaralé, používá se typescript.tsserver.useSyntaxServer.",
- "configuration.tsserver.useSyntaxServer": "Určuje, jestli TypeScript spustí vyhrazený server, aby se rychleji zpracovaly operace související se syntaxí, jako je například výpočet sbalování kódu.",
- "configuration.tsserver.useSyntaxServer.always": "Pro zpracování všech operací IntelliSense použijte zjednodušený server syntaxe. Tento server syntaxe může poskytovat IntelliSense pouze pro otevřené soubory.",
- "configuration.tsserver.useSyntaxServer.auto": "Vytvoří úplný i zjednodušený server vyhrazený pro operace syntaxe. Server syntaxe se používá k urychlení operací syntaxe a poskytování IntelliSense při načítání projektů.",
- "configuration.tsserver.useSyntaxServer.never": "Nepoužívejte vyhrazený server syntaxe. Pomocí jednoho serveru zpracujte všechny operace IntelliSense.",
- "configuration.tsserver.watchOptions": "Umožňuje nakonfigurovat, které strategie sledování se mají používat ke sledování souborů a adresářů. V pracovním prostoru je nutné používat TypeScript 3.8 nebo novější.",
- "configuration.tsserver.watchOptions.fallbackPolling": "Při použití událostí systému souborů tato možnost určuje strategii dotazování, která se má použít, když v systému dojdou prostředky nativního sledování souborů nebo pokud systém nativní sledování souborů nepodporuje.",
- "configuration.tsserver.watchOptions.fallbackPolling.dynamicPriorityPolling ": "Použít dynamickou frontu, ve které se budou méně často upravované soubory kontrolovat méně často",
- "configuration.tsserver.watchOptions.fallbackPolling.fixedPollingInterval": "Kontrolovat změny v každém souboru několikrát za sekundu v pevně stanoveném intervalu",
- "configuration.tsserver.watchOptions.fallbackPolling.priorityPollingInterval": "Kontrolovat změny v každém souboru několikrát za sekundu, ale pomocí heuristiky kontrolovat konkrétní typy souborů méně často",
- "configuration.tsserver.watchOptions.synchronousWatchDirectory": "Umožňuje zakázat odložené sledování adresářů. Odložené sledování je užitečné, když může v souboru najednou dojít k velkému počtu změn (např. ke změně v node_modules při spuštění instalace npm). U některých méně obvyklých instalací ale můžete chtít toto nastavení pomocí tohoto příznaku zakázat.",
- "configuration.tsserver.watchOptions.watchDirectory": "Strategie pro sledování celých adresářových stromů v systémech, kde neexistuje žádná funkce rekurzivního sledování souborů",
- "configuration.tsserver.watchOptions.watchDirectory.dynamicPriorityPolling": "Používat dynamickou frontu, ve které se budou méně často upravované adresáře kontrolovat méně často",
- "configuration.tsserver.watchOptions.watchDirectory.fixedChunkSizePolling": "Cyklicky se dotazuje na adresáře v blocích v pravidelných intervalech. Vyžaduje, aby se v pracovním prostoru použil jazyk TypeScript 4.3+.",
- "configuration.tsserver.watchOptions.watchDirectory.fixedPollingInterval": "Zkontrolovat změny v každém adresáři několikrát za sekundu v pevně stanoveném intervalu",
- "configuration.tsserver.watchOptions.watchDirectory.useFsEvents": "Pokus o použití nativních událostí operačního systému / systému souborů pro změny v adresáři",
- "configuration.tsserver.watchOptions.watchFile": "Strategie pro sledovaní jednotlivých souborů",
- "configuration.tsserver.watchOptions.watchFile.dynamicPriorityPolling": "Použít dynamickou frontu, ve které se budou méně často upravované soubory kontrolovat méně často",
- "configuration.tsserver.watchOptions.watchFile.fixedChunkSizePolling": "Cyklicky se dotazuje na soubory v blocích v pravidelných intervalech. Vyžaduje, aby se v pracovním prostoru použil jazyk TypeScript 4.3+.",
- "configuration.tsserver.watchOptions.watchFile.fixedPollingInterval": "Kontrolovat změny v každém souboru několikrát za sekundu v pevně stanoveném intervalu",
- "configuration.tsserver.watchOptions.watchFile.priorityPollingInterval": "Kontrolovat změny v každém souboru několikrát za sekundu, ale pomocí heuristiky kontrolovat konkrétní typy souborů méně často",
- "configuration.tsserver.watchOptions.watchFile.useFsEvents": "Pokus o použití nativních událostí operačního systému / systému souborů pro změny v souboru",
- "configuration.tsserver.watchOptions.watchFile.useFsEventsOnParentDirectory": "Pokus o použití nativních událostí operačního systému / systému souborů k naslouchání změnám v adresářích obsahujících daný soubor. Může to vést k používání menšího počtu sledovacích procesů souborů, ale zároveň ke snížení přesnosti.",
- "configuration.typescript": "TypeScript",
- "description": "Poskytuje rozšířenou podporu jazyka pro JavaScript a TypeScript.",
- "displayName": "Funkce jazyka TypeScript a JavaScript",
- "format.insertSpaceAfterCommaDelimiter": "Určuje, jak zpracovávat mezery za oddělovačem v podobě čárky.",
- "format.insertSpaceAfterConstructor": "Určuje, jak zpracovávat mezery za klíčovým slovem constructor (konstruktor).",
- "format.insertSpaceAfterFunctionKeywordForAnonymousFunctions": "Určuje, jak zpracovávat mezery za klíčovým slovem function (funkce) pro anonymní funkce.",
- "format.insertSpaceAfterKeywordsInControlFlowStatements": "Určuje, jak zpracovávat mezery za klíčovými slovy v příkazu řídicího toku.",
- "format.insertSpaceAfterOpeningAndBeforeClosingEmptyBraces": "Určuje, jak zpracovávat mezery po levé složené závorce a před pravou složenou závorkou, pokud jsou tyto závorky prázdné.",
- "format.insertSpaceAfterOpeningAndBeforeClosingJsxExpressionBraces": "Určuje, jak zpracovávat mezery po levé složené závorce a před pravou složenou závorkou výrazu JSX.",
- "format.insertSpaceAfterOpeningAndBeforeClosingNonemptyBraces": "Určuje, jak zpracovávat mezery po levé složené závorce a před pravou složenou závorkou, pokud tyto závorky nejsou prázdné.",
- "format.insertSpaceAfterOpeningAndBeforeClosingNonemptyBrackets": "Určuje, jak zpracovávat mezery po levé hranaté závorce a před pravou hranatou závorkou, pokud tyto závorky nejsou prázdné.",
- "format.insertSpaceAfterOpeningAndBeforeClosingNonemptyParenthesis": "Určuje, jak zpracovávat mezery za levou kulatou závorkou a před pravou kulatou závorkou, pokud tyto závorky nejsou prázdné.",
- "format.insertSpaceAfterOpeningAndBeforeClosingTemplateStringBraces": "Určuje, jak zpracovávat mezery po levé složené závorce a před pravou složenou závorkou řetězce šablony.",
- "format.insertSpaceAfterSemicolonInForStatements": "Určuje, jak zpracovávat mezery za středníkem v příkazu for.",
- "format.insertSpaceAfterTypeAssertion": "Určuje, jak zpracovávat mezery za kontrolními výrazy v TypeScriptu.",
- "format.insertSpaceBeforeAndAfterBinaryOperators": "Určuje, jak zpracovávat mezery za binárním operátorem.",
- "format.insertSpaceBeforeFunctionParenthesis": "Určuje, jak zpracovávat mezery před kulatými závorkami argumentů funkcí.",
- "format.placeOpenBraceOnNewLineForControlBlocks": "Určuje, jestli je levá složená závorka v řídicích blocích umístěna na nový řádek.",
- "format.placeOpenBraceOnNewLineForFunctions": "Určuje, jestli je levá složená závorka ve funkcích umístěna na nový řádek.",
- "format.semicolons": "Definuje zpracování volitelných středníků. Vyžaduje, aby se v pracovním prostoru používal TypeScript 3.7 nebo novější.",
- "format.semicolons.ignore": "Nevkládat ani neodebírat žádné středníky",
- "format.semicolons.insert": "Vkládat středníky na konec příkazů",
- "format.semicolons.remove": "Odebrat nepotřebné středníky",
- "goToProjectConfig.title": "Přejít na konfiguraci projektu",
- "inlayHints.parameterNames.all": "Povolte tipy pro názvy parametrů pro argumenty literálu a neliterálu.",
- "inlayHints.parameterNames.literals": "Tipy pro názvy parametrů povolte pouze pro argumenty literálu.",
- "inlayHints.parameterNames.none": "Zakažte nápovědu k názvu parametru.",
- "javascript.format.enable": "Umožňuje povolit nebo zakázat výchozí formátovací modul JavaScriptu.",
- "javascript.preferences.jsxAttributeCompletionStyle.auto": "V závislosti na typu vlastnosti vložte za názvy atributů ={} nebo =\"\" . Pokud chcete řídit typy uvozovek používaných u atributů řetězců, podívejte se na javascript.preferences.quoteStyle.",
- "javascript.referencesCodeLens.enabled": "Umožňuje povolit nebo zakázat odkazy CodeLens v souborech JavaScriptu.",
- "javascript.referencesCodeLens.showOnAllFunctions": "Umožňuje povolit nebo zakázat odkazy CodeLens pro všechny funkce v souborech JavaScriptu.",
- "javascript.suggestionActions.enabled": "Umožňuje povolit nebo zakázat diagnostiku návrhů pro soubory JavaScriptu v editoru.",
- "javascript.validate.enable": "Umožňuje povolit nebo zakázat ověřování JavaScriptu.",
- "reloadProjects.title": "Znovu načíst projekt",
- "taskDefinition.tsconfig.description": "Soubor tsconfig, který definuje sestavení TS",
- "typescript.autoClosingTags": "Umožňuje povolit nebo zakázat automatické zavírání značek JSX.",
- "typescript.check.npmIsInstalled": "Check if npm is installed for [Automatic Type Acquisition](https://code.visualstudio.com/docs/nodejs/working-with-javascript#_typings-and-automatic-type-acquisition).",
- "typescript.disableAutomaticTypeAcquisition": "Zakáže [Automatické získávání typů](https://code.visualstudio.com/docs/nodejs/working-with-javascript#_typings-and-automatic-type-acquisition). Automatické získávání typů načte balíčky @types z npm, aby se vylepšila funkce IntelliSense pro externí knihovny.",
- "typescript.enablePromptUseWorkspaceTsdk": "Umožňuje dotazovat se uživatelů na použití verze TypeScript nakonfigurované v pracovním prostoru pro Intellisense.",
- "typescript.findAllFileReferences": "Vyhledat odkazy na soubory",
- "typescript.format.enable": "Umožňuje povolit nebo zakázat výchozí formátovací modul TypeScriptu.",
- "typescript.goToSourceDefinition": "Přejít na definici zdroje",
- "typescript.implementationsCodeLens.enabled": "Umožňuje povolit nebo zakázat implementace CodeLens. Tato funkce CodeLens zobrazí implementátory rozhraní.",
- "typescript.locale": "Nastaví národní prostředí, které se používá k hlášení chyb JavaScriptu a TypeScriptu. Ve výchozím nastavení se používá národní prostředí VS Code.",
- "typescript.npm": "Specifies the path to the npm executable used for [Automatic Type Acquisition](https://code.visualstudio.com/docs/nodejs/working-with-javascript#_typings-and-automatic-type-acquisition).",
- "typescript.openTsServerLog.title": "Otevřít protokol serveru TS",
- "typescript.preferences.autoImportFileExcludePatterns": "Zadejte vzory glob souborů, které se mají vyloučit z automatických importů. Vyžaduje v pracovním prostoru použití TypeScriptu 4.8 nebo novějšího.",
- "typescript.preferences.importModuleSpecifier": "Upřednostňovaný styl cesty pro automatické importy",
- "typescript.preferences.importModuleSpecifier.nonRelative": "Upřednostňuje import, který není relativní, na základě hodnot baseUrl nebo paths nakonfigurovaných v souboru jsconfig.json/tsconfig.json.",
- "typescript.preferences.importModuleSpecifier.projectRelative": "Upřednostňuje import, který není relativní, pouze v případě, že cesta relativního importu opustí adresář balíčku nebo projektu. Vyžaduje použití TypeScriptu 4.2 nebo vyšší verze v pracovním prostoru.",
- "typescript.preferences.importModuleSpecifier.relative": "Upřednostňuje relativní cestu k umístění importovaného souboru.",
- "typescript.preferences.importModuleSpecifier.shortest": "Upřednostňuje import, který není relativní, pouze pokud je k dispozici takový, který má méně segmentů cesty než relativní import.",
- "typescript.preferences.importModuleSpecifierEnding": "Preferované ukončení cesty pro automatické importy. Vyžaduje v pracovním prostoru použití TypeScriptu 4.5+.",
- "typescript.preferences.importModuleSpecifierEnding.auto": "Výchozí nastavení vyberte pomocí nastavení projektu.",
- "typescript.preferences.importModuleSpecifierEnding.index": "Zkracovat ./component/index.js na ./component/index",
- "typescript.preferences.importModuleSpecifierEnding.js": "Nezkracovat konce cest, zahrnout příponu .js",
- "typescript.preferences.importModuleSpecifierEnding.minimal": "Zkracovat ./component/index.js na ./component",
- "typescript.preferences.includePackageJsonAutoImports": "Umožňuje povolit nebo zakázat hledání závislostí package.json pro dostupné automatické importy.",
- "typescript.preferences.includePackageJsonAutoImports.auto": "Hledat závislosti na základě odhadovaného dopadu na výkon",
- "typescript.preferences.includePackageJsonAutoImports.off": "Nikdy nehledat závislosti",
- "typescript.preferences.includePackageJsonAutoImports.on": "Vždy hledat závislosti",
- "typescript.preferences.jsxAttributeCompletionStyle": "Upřednostňovaný styl pro dokončování atributů JSX.",
- "typescript.preferences.jsxAttributeCompletionStyle.auto": "V závislosti na typu vlastnosti vložte za názvy atributů ={} nebo =\"\" . Pokud chcete řídit typy uvozovek používaných u atributů řetězců, podívejte se na typescript.preferences.quoteStyle.",
- "typescript.preferences.jsxAttributeCompletionStyle.braces": "Vložte „={}“ za názvy atributů.",
- "typescript.preferences.jsxAttributeCompletionStyle.none": "Vkládejte pouze názvy atributů.",
- "typescript.preferences.quoteStyle": "Upřednostňovaný styl uvozovek, který se má použít pro rychlé opravy.",
- "typescript.preferences.quoteStyle.auto": "Odvodit typ uvozovek z existujícího kódu",
- "typescript.preferences.quoteStyle.double": "Vždy používat dvojité uvozovky „ \" “",
- "typescript.preferences.quoteStyle.single": "Vždy používat dvojité uvozovky „ ' “",
- "typescript.preferences.renameShorthandProperties.deprecationMessage": "Nastavení typescript.preferences.renameShorthandProperties je zastaralé. Místo něj se používá nastavení typescript.preferences.useAliasesForRenames.",
- "typescript.preferences.useAliasesForRenames": "Umožňuje povolit nebo zakázat zavádění aliasů pro sdružené vlastnosti objektů při přejmenovávání. Vyžaduje, aby se v pracovním prostoru používal TypeScript 3.4 nebo novější.",
- "typescript.problemMatchers.tsc.label": "Problémy s TypeScriptem",
- "typescript.problemMatchers.tscWatch.label": "Problémy s TypeScriptem (režim sledování)",
- "typescript.referencesCodeLens.enabled": "Umožňuje povolit nebo zakázat odkazy CodeLens v souborech TypeScriptu.",
- "typescript.referencesCodeLens.showOnAllFunctions": "Umožňuje povolit nebo zakázat odkazy CodeLens pro všechny funkce v souborech TypeScriptu.",
- "typescript.reportStyleChecksAsWarnings": "Hlásit kontroly stylu jako upozornění",
- "typescript.restartTsServer": "Restartovat server TS",
- "typescript.selectTypeScriptVersion.title": "Vybrat verzi TypeScriptu...",
- "typescript.suggest.enabled": "Umožňuje povolit nebo zakázat návrhy automatického dokončování.",
- "typescript.suggestionActions.enabled": "Umožňuje povolit nebo zakázat diagnostiku návrhů pro soubory TypeScriptu v editoru.",
- "typescript.tsc.autoDetect": "Řídí automatické zjišťování úloh tsc.",
- "typescript.tsc.autoDetect.build": "Umožňuje vytvářet úlohy kompilace pouze pro jedno spuštění.",
- "typescript.tsc.autoDetect.off": "Zakázat tuto funkci",
- "typescript.tsc.autoDetect.on": "Vytvořit jak úlohy sestavení, tak úlohy sledování",
- "typescript.tsc.autoDetect.watch": "Vytvořit pouze úlohy kompilace a sledování",
- "typescript.tsdk.desc": "Určuje cestu ke složce pro soubory tsserver a lib*.d.ts v rámci instalace TypeScriptu, která se má používat pro technologii IntelliSense, například: ./node_modules/typescript/lib.\r\n\r\n- Pokud je zadáno jako uživatelské nastavení, verze TypeScriptu ze souboru typescript.tsdk automaticky nahradí integrovanou verzi TypeScriptu.\r\n- Pokud je zadáno jako nastavení pracovního prostoru, umožňuje vám soubor typescript.tsdk přepnout na používání verze TypeScriptu tohoto pracovního prostoru pro IntelliSense příkazem TypeScript: vybrat verzi TypeScriptu.r\r\n\r\nDalší informace o správě verzí TypeScriptu najdete v [dokumentaci k TypeScriptu](https://code.visualstudio.com/docs/typescript/typescript-compiling#_using-newer-typescript-versions).",
- "typescript.tsserver.enableTracing": "Umožňuje povolit sledování výkonu serveru TS do adresáře. Tyto sledovací soubory lze použít k diagnostikování problémů s výkonem serveru TS. Protokol může obsahovat cesty k souborům, zdrojový kód a další potenciálně citlivé informace z vašeho projektu.",
- "typescript.tsserver.log": "Umožňuje povolit protokolování serveru TS do souboru. Tento protokol lze použít k diagnostikování problémů se serverem TS. Protokol může obsahovat cesty k souborům, zdrojový kód a další potenciálně citlivé informace z vašeho projektu.",
- "typescript.tsserver.pluginPaths": "Další cesty ke zjišťování modulů plug-in služby jazyka TypeScript",
- "typescript.tsserver.pluginPaths.item": "Buď absolutní, nebo relativní cesta. Relativní cesta bude relativní ve vztahu ke složkám pracovního prostoru.",
- "typescript.tsserver.trace": "Umožňuje povolit trasování zpráv odesílaných na server TS. Toto trasování lze použít k diagnostikování problémů se serverem TS. Trasování může obsahovat cesty k souborům, zdrojový kód a další potenciálně citlivé informace z vašeho projektu.",
- "typescript.updateImportsOnFileMove.enabled": "Umožňuje povolit nebo zakázat automatické aktualizace cest importu při přejmenovávání nebo přesouvání souboru ve VS Code.",
- "typescript.updateImportsOnFileMove.enabled.always": "Vždy automaticky aktualizovat cesty",
- "typescript.updateImportsOnFileMove.enabled.never": "Nikdy nepřejmenovávat cesty a nezobrazovat dotaz",
- "typescript.updateImportsOnFileMove.enabled.prompt": "Dotázat se na každé přejmenování",
- "typescript.validate.enable": "Umožňuje povolit nebo zakázat ověřování TypeScriptu.",
- "typescript.workspaceSymbols.scope": "Controls which files are searched by [go to symbol in workspace](https://code.visualstudio.com/docs/editor/editingevolved#_open-symbol-by-name).",
- "typescript.workspaceSymbols.scope.allOpenProjects": "Hledat symboly ve všech otevřených projektech JavaScriptu nebo TypeScriptu. Vyžaduje, aby se v pracovním prostoru používal TypeScript 3.9 nebo novější.",
- "typescript.workspaceSymbols.scope.currentProject": "Hledat symboly pouze v aktuálním projektu JavaScriptu nebo TypeScriptu",
- "virtualWorkspaces": "Ve virtuálních pracovních prostorech se nepodporuje řešení a vyhledávání odkazů v souborech.",
- "workspaceTrust": "Pokud se používá verze pracovního prostoru, rozšíření vyžaduje vztah důvěryhodnosti pracovního prostoru, protože spouští kód určený pracovním prostorem."
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-cs/translations/extensions/vb.i18n.json b/i18n/vscode-language-pack-cs/translations/extensions/vb.i18n.json
deleted file mode 100644
index 52345642ca..0000000000
--- a/i18n/vscode-language-pack-cs/translations/extensions/vb.i18n.json
+++ /dev/null
@@ -1,16 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "package": {
- "description": "Poskytuje fragmenty kódu, zvýrazňování syntaxe, párování závorek a sbalování kódu v souborech jazyka Visual Basic.",
- "displayName": "Základy jazyka Visual Basic"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-cs/translations/extensions/vscode-chrome-debug-core.i18n.json b/i18n/vscode-language-pack-cs/translations/extensions/vscode-chrome-debug-core.i18n.json
deleted file mode 100644
index 1938c1b429..0000000000
--- a/i18n/vscode-language-pack-cs/translations/extensions/vscode-chrome-debug-core.i18n.json
+++ /dev/null
@@ -1,69 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "errors": {
- "eval.not.available": "není k dispozici",
- "not.connected": "nepřipojeno k modulu runtime",
- "restartFrame.cannot": "Rámec nelze restartovat.",
- "attribute.path.not.exist": "Atribut {0} neexistuje ({1}).",
- "attribute.path.not.absolute": "Atribut {0} není absolutní ({1}). Zvažte přidání předpony {2}, aby byl tento atribut absolutní.",
- "more.information": "Další informace",
- "setVariable.error": "Nastavení hodnoty není podporováno.",
- "source.not.found": "Nepodařilo se načíst obsah.",
- "VSND2010": "Nelze se připojit k procesu modulu runtime, vypršení časového limitu po {0} ms – (důvod: {1}).",
- "VSND2023": "Není k dispozici žádný zásobník volání.",
- "failed.to.read.port": "Nepovedlo se přečíst soubor {dataDirPath}, {error}",
- "port.file.contents.invalid": "Soubor v umístění: {dataDirPath} neobsahoval platná data portu. Obsah byl: {dataDirContents}"
- },
- "chrome/breakpoints": {
- "setBPTimedOut": "U požadavku na nastavení zarážek vypršel časový limit.",
- "bp.fail.unbound": "Zarážka je nastavená, ale ještě není vázaná.",
- "bp.fail.noscript": "Pro požadavek na zarážku nelze najít skript.",
- "validateBP.sourcemapFail": "Zarážka se ignoruje, protože vygenerovaný kód nebyl nalezen (problém s mapováním zdroje?).",
- "validateBP.notFound": "Zarážka se ignoruje, protože cílová cesta nebyla nalezena.",
- "invalidHitCondition": "Neplatná podmínka dosažení: {0}"
- },
- "chrome/chromeDebugAdapter": {
- "exceptions.all": "Všechny výjimky",
- "exceptions.uncaught": "Nezachycené výjimky",
- "exceptions.promise_rejects": "Zamítnutí příslibu"
- },
- "chrome/chromeTargetDiscoveryStrategy": {
- "attach.responseButNoTargets": "Odpověď z cílové aplikace obdržena, ale žádné cílové stránky nebyly nalezeny.",
- "attach.cannotConnect": "Nelze se připojit k cíli: {0}",
- "attach.invalidResponse": "Odpověď z cíle je zřejmě neplatná. Chyba: {0}. Odpověď: {1}",
- "attach.invalidResponseArray": "Odpověď z cíle je zřejmě neplatná: {0}",
- "attach.noMatchingTarget": "Nelze najít platný cíl, který odpovídá: {0}. Dostupné stránky: {1}",
- "attach.devToolsAttached": "Nelze se připojit k tomuto cíli, ke kterému můžou být připojené nástroje Chrome DevTools: {0}"
- },
- "chrome/stackFrames": {
- "skipReason": "(přeskakuje: {0})",
- "scope.exception": "Výjimka"
- },
- "chrome/stoppedEvent": {
- "reason.description.step": "Pozastaveno na kroku",
- "reason.description.breakpoint": "Pozastaveno na zarážce",
- "reason.description.exception": "Pozastaveno na výjimce",
- "reason.description.uncaughtException": "Pozastaveno na nezachycené výjimce",
- "reason.description.caughtException": "Pozastaveno na zachycené výjimce",
- "reason.description.user_request": "Pozastaveno na požadavku uživatele",
- "reason.description.entry": "Pozastaveno na vstupu",
- "reason.description.debugger_statement": "Pozastaveno na příkazu ladicího programu",
- "reason.description.restart": "Pozastaveno na položce rámce",
- "reason.description.promiseRejection": "Pozastaveno na zamítnutí příslibu"
- },
- "transformers/baseSourceMapTransformer": {
- "origin.inlined.source.map": "vložený obsah jen pro čtení ze souboru sourcemap"
- },
- "transformers/remotePathTransformer": {
- "localRootAndRemoteRoot": "Je nutné zadat localRoot i remoteRoot."
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-cs/translations/extensions/vscode-node-debug.i18n.json b/i18n/vscode-language-pack-cs/translations/extensions/vscode-node-debug.i18n.json
deleted file mode 100644
index 89804105f8..0000000000
--- a/i18n/vscode-language-pack-cs/translations/extensions/vscode-node-debug.i18n.json
+++ /dev/null
@@ -1,185 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "package": {
- "extension.description": "Podpora ladění Node.js (verze < 8.0)",
- "node.label": "Node.js",
- "open.loaded.script": "Otevřít načtený skript",
- "attach.node.process": "Připojit k procesu uzlu",
- "toggle.skipping.this.file": "Přepnout možnost přeskočení tohoto souboru",
- "start.with.stop.on.entry": "Spustit ladění a zastavit na vstupu",
- "smartStep.description": "Provede se automatické krokování vygenerovaného kódu, který nelze namapovat zpět do původního zdroje.",
- "skipFiles.description": "Pole hodnot vzorů glob pro soubory, které se mají přeskočit při ladění. Vzor /** odpovídá všem interním modulům Node.js.",
- "outFiles.description": "Pokud jsou povolena mapování zdroje, určují tyto vzory glob vygenerované soubory JavaScriptu. Pokud vzor začíná znakem !, budou soubory vyloučeny. Pokud není zadáno, bude se vygenerovaný kód očekávat ve stejném adresáři jako v případě jeho zdroje. Příklad: [\"${workspaceFolder}/out/**/*.js\"]",
- "outDir.deprecationMessage": "Atribut outDir je zastaralý, místo něho použijte atribut outFiles.",
- "trace.description": "Vytvoří diagnostický výstup. Místo nastavení této možnosti na hodnotu true můžete uvést jeden nebo více selektorů oddělených čárkami. Selektor verbose umožňuje velmi podrobný výstup.",
- "launch.args.description": "Argumenty příkazového řádku, které se předávají do programu",
- "debug.node.showUseWslIsDeprecatedWarning.description": "Určuje, jestli se má při použití atributu useWSL zobrazit upozornění.",
- "debug.node.useV3.description": "[Experimentální] Určuje, jestli se mají delegovat konfigurace spuštění typu node na rozšíření js-debug.",
- "debug.extensionHost.useV3.description": "[Experimentální] Určuje, jestli se mají delegovat konfigurace spuštění typu extensionHost na rozšíření js-debug.",
- "node.protocol.description": "Protokol ladění Node.js, který se má použít",
- "node.protocol.auto.description": "Umožňuje zkusit automaticky vyhledat nejlepší protokol. Pro spuštění Node 8.0+ bude vybrán protokol inspector.",
- "node.protocol.inspector.description": "Nový protokol podporovaný verzemi Node.js >= 6.3",
- "node.protocol.legacy.description": "Starý protokol podporovaný verzemi Node.js < 8.0",
- "node.sourceMaps.description": "Použijí se soubory sourcemap JavaScriptu (pokud existují).",
- "node.stopOnEntry.description": "Po spuštění se program automaticky zastaví.",
- "node.port.description": "Port ladění, ke kterému se chcete připojit. Výchozí hodnota je 5858.",
- "node.address.description": "Adresa TCP/IP procesu, který se má ladit (pouze pro Node.js >= 5.0). Výchozí hodnota je localhost.",
- "node.timeout.description": "Opakované pokusy o připojení k Node.js se budou provádět tento počet milisekund. Výchozí hodnota je 10000 ms.",
- "node.restart.description": "Po ukončení Node.js se relace restartuje.",
- "node.localRoot.description": "Cesta k místnímu adresáři obsahujícímu program",
- "node.remoteRoot.description": "Absolutní cesta ke vzdálenému adresáři obsahujícímu program",
- "node.showAsyncStacks.description": "Zobrazit asynchronní volání, která vedla k aktuálnímu zásobníku volání. Pouze protokol inspector",
- "node.sourceMapPathOverrides.description": "Sada mapování pro přepsání umístění zdrojových souborů z umístění, která jsou uvedena v mapování zdrojů, na jejich umístění na disku",
- "node.disableOptimisticBPs.description": "Nenastavujte zarážky do žádného souboru, dokud se pro daný soubor nenačte sourcemap.",
- "node.launch.program.description": "Absolutní cesta k programu. Vygenerovaná hodnota je odhadnuta podle souboru package.json a otevřených souborů. Upravte tento atribut.",
- "node.launch.externalConsole.deprecationMessage": "Atribut externalConsole je zastaralý. Místo něj použijte atribut console.",
- "node.launch.console.description": "Kde se má spustit cíl ladění",
- "node.launch.console.internalConsole.description": "Konzola ladění VS Code (nepodporující vstup čtení z programu)",
- "node.launch.console.integratedTerminal.description": "Integrovaný terminál VS Code",
- "node.launch.console.externalTerminal.description": "Externí terminál, který lze konfigurovat pomocí uživatelského nastavení",
- "node.launch.cwd.description": "Absolutní cesta k pracovnímu adresáři laděného programu",
- "node.launch.runtimeExecutable.description": "Modul runtime, který se má použít. Absolutní cesta nebo název modulu runtime, který je k dispozici prostřednictvím proměnné PATH. V případě vynechání se předpokládá hodnota node.",
- "node.launch.runtimeArgs.description": "Nepovinné argumenty se předaly do spustitelného souboru modulu runtime.",
- "node.launch.runtimeVersion.description": "Verze modulu runtime node, která se má používat. Vyžaduje nvm.",
- "node.launch.env.description": "Proměnné prostředí se předaly do programu. Hodnota null odebere proměnnou z prostředí.",
- "node.launch.envFile.description": "Absolutní cesta k souboru, který obsahuje definice proměnných prostředí",
- "node.launch.useWSL.description": "Použít subsystém Windows pro Linux",
- "node.launch.useWSL.deprecation": "Rozšíření useWSL je zastaralé a přestane se podporovat. Místo toho použijte rozšíření Remote - WSL.",
- "node.launch.outputCapture.description": "Určuje, odkud se mají zachycovat výstupní zprávy: rozhraní API pro ladění nebo streamy stdout/stderr.",
- "node.launch.autoAttachChildProcesses.description": "Automaticky připojovat ladicí program k novým podřízených procesům",
- "node.launch.config.name": "Spustit",
- "node.attach.processId.description": "ID procesu, ke kterému se má provést připojení",
- "node.attach.config.name": "Připojit",
- "node.processattach.config.name": "Připojit k procesu",
- "node.snippet.launch.label": "Node.js: spustit program",
- "node.snippet.launch.description": "Spustit program uzlu v režimu ladění",
- "node.snippet.npm.label": "Node.js: spustit přes NPM",
- "node.snippet.npm.description": "Spustit program uzlu prostřednictvím npm skriptu debug",
- "node.snippet.attach.label": "Node.js: připojit",
- "node.snippet.attach.description": "Připojit k běžícímu programu uzlu",
- "node.snippet.remoteattach.label": "Node.js: připojit ke vzdálenému programu",
- "node.snippet.remoteattach.description": "Připojit k portu ladění programu vzdáleného uzlu",
- "node.snippet.attachProcess.label": "Node.js: připojit k procesu",
- "node.snippet.attachProcess.description": "Otevřít výběr procesu k výběru procesu uzlu, ke kterému se má provést připojení",
- "node.snippet.nodemon.label": "Node.js: instalace nástroje Nodemon",
- "node.snippet.nodemon.description": "Použít nástroj nodemon k opětovnému spuštění relace ladění při změnách zdroje",
- "node.snippet.mocha.label": "Node.js: testy Mocha",
- "node.snippet.mocha.description": "Ladit testy Mocha",
- "node.snippet.yo.label": "Node.js: generátor Yeoman",
- "node.snippet.yo.description": "Ladit generátor Yeoman (nainstalujte spuštěním příkazu npm link v projektové složce)",
- "node.snippet.gulp.label": "Node.js: úloha Gulp",
- "node.snippet.gulp.description": "Ladit úlohu Gulp (zajistěte, abyste měli v projektu místně nainstalovaný Gulp)",
- "node.snippet.electron.label": "Node.js: hlavní proces Electron",
- "node.snippet.electron.description": "Ladit hlavní proces Electron"
- },
- "dist/node/nodeDebug": {
- "setVariable.error": "Nastavení hodnoty není podporováno.",
- "exception.paused.promise.rejection": "Pozastaveno na zamítnutí příslibu",
- "exception.promise.rejection.text": "Zamítnutí příslibu ({0})",
- "exception.promise.rejection": "Zamítnutí příslibu",
- "reason.description.step": "Pozastaveno na kroku",
- "reason.description.breakpoint": "Pozastaveno na zarážce",
- "reason.description.exception": "Pozastaveno na výjimce",
- "reason.description.user_request": "Pozastaveno na požadavku uživatele",
- "reason.description.entry": "Pozastaveno na vstupu",
- "reason.description.debugger_statement": "Pozastaveno na příkazu ladicího programu",
- "reason.description.restart": "Pozastaveno na položce rámce",
- "exceptions.all": "Všechny výjimky",
- "exceptions.uncaught": "Nezachycené výjimky",
- "exceptions.rejects": "Zamítnutí příslibu",
- "VSND2028": "Neznámý typ konzoly {0}",
- "attribute.wls.not.exist": "Nelze najít instalaci subsystému Windows pro Linux.",
- "VSND2001": "Modul runtime {0} nelze na cestě najít. Ujistěte se, jestli je {0} nainstalovaný.",
- "program.path.case.mismatch.warning": "Cesta k programu používá jinou velikost písma ve znaku než soubor na disku. Může to způsobit, že nedojde k dosažení zarážek.",
- "VSND2002": "Program {0} nelze spustit. Pomoct by mohla konfigurace souboru sourcemap.",
- "VSND2009": "Program {0} nelze spustit, protože nelze najít odpovídající JavaScript.",
- "VSND2003": "Program {0} nelze spustit. Pomoct by mohlo nastavení atributu {1}.",
- "VSND2029": "Nelze načíst proměnné prostředí ze souboru ({0}).",
- "node.console.title": "Konzola ladění uzlů",
- "VSND2011": "Nelze spustit cíl ladění v terminálu ({0}).",
- "VSND2017": "Nelze spustit cíl ladění ({0}).",
- "VSND2010": "Nelze se připojit k procesu modulu runtime (důvod: {0}).",
- "VSND2033": "Nelze se připojit k modulu runtime. Zajistěte, aby byl modul runtime v režimu ladění legacy.",
- "VSND2034": "Nelze se připojit k modulu runtime prostřednictvím protokolu legacy. Zkuste použít protokol inspector.",
- "file.on.disk.changed": "Neověřeno, protože se změnil soubor na disku. Restartujte prosím relaci ladění.",
- "VSND2019": "Nepovedlo se najít interní modul {0}.",
- "sourcemapping.fail.message": "Zarážka se ignoruje, protože vygenerovaný kód nebyl nalezen (problém s mapováním zdroje?).",
- "VSND2022": "Žádný zásobník volání, protože program je pozastaven mimo JavaScript",
- "VSND2023": "Není k dispozici žádný zásobník volání.",
- "VSND2018": "Není k dispozici žádný zásobník volání ({_command}: {_error}).",
- "origin.from.node": "obsah jen pro čtení z Node.js",
- "origin.from.remote.node": "obsah jen pro čtení ze vzdáleného Node.js",
- "origin.core.module": "modul Core jen pro čtení",
- "source.skipFiles": "přeskočeno kvůli skipFiles",
- "source.smartstep": "přeskočeno kvůli smartStep",
- "origin.inlined.source.map": "vložený obsah jen pro čtení ze souboru sourcemap",
- "anonymous.function": "(anonymní funkce)",
- "scope.local.with.count": "Místní ({0} z {1})",
- "scope.unknown": "Neznámý typ oboru: {0}",
- "scope.exception": "Výjimka",
- "eval.not.available": "není k dispozici",
- "eval.invalid.expression": "neplatný výraz: {0}",
- "source.not.found": "Nepodařilo se načíst obsah.",
- "attribute.path.not.exist": "Atribut {0} neexistuje ({1}).",
- "attribute.path.not.absolute": "Atribut {0} není absolutní ({1}). Zvažte přidání předpony {2}, aby byl tento atribut absolutní.",
- "more.information": "Další informace",
- "VSND2015": "Žádost {_request} byla zrušena, protože Node.js nereaguje.",
- "VSND2016": "Node.js neodpověděl na žádost {_request} v přiměřené době.",
- "scope.global": "Globální",
- "scope.local": "Místní",
- "scope.with": "S",
- "scope.closure": "Uzavření",
- "scope.catch": "Catch",
- "scope.block": "Blok",
- "scope.script": "Skript"
- },
- "dist/node/nodeV8Protocol": {
- "not.connected": "nepřipojeno k modulu runtime",
- "runtime.unresponsive": "zrušeno, protože Node.js neodpovídá",
- "runtime.timeout": "vypršení časového limitu po {0} ms"
- },
- "dist/node/extension/autoAttach": {
- "process.with.pid.label": "Automaticky připojeno ({0})"
- },
- "dist/node/extension/cluster": {
- "child.process.with.pid.label": "Podřízený proces {0}"
- },
- "dist/node/extension/configurationProvider": {
- "program.not.found.message": "Nelze najít program k ladění.",
- "useWslDeprecationWarning.title": "Atribut useWSL je zastaralý. Místo něj použijte rozšíření Remote WSL. Další informace získáte kliknutím [sem]({0}).",
- "useWslDeprecationWarning.doNotShowAgain": "Znovu nezobrazovat",
- "NVS_HOME.not.found.message": "Atribut runtimeVersion vyžaduje správce verzí Node.js nvs.",
- "NVM_HOME.not.found.message": "Atribut runtimeVersion vyžaduje správce verzí Node.js nvm-windows nebo nvs.",
- "NVM_DIR.not.found.message": "Atribut runtimeVersion vyžaduje správce verzí Node.js nvm nebo nvs.",
- "runtime.version.not.found.message": "Není nainstalovaná verze Node.js {0} pro {1}.",
- "node.launch.config.name": "Spustit program",
- "mern.starter.explanation": "Spustit konfiguraci pro vytvořený projekt {0}",
- "program.guessed.from.package.json.explanation": "Spustit konfiguraci vytvořenou na základě souboru package.json",
- "outFiles.explanation": "Upravte vzory glob v atributu outFiles tak, aby pokrývaly vygenerovaný JavaScript."
- },
- "dist/node/extension/processPicker": {
- "pid.error": "Připojit k procesu: Proces {0} nelze přepnout do režimu ladění.",
- "process.id.error": "Připojit k procesu: {0} nevypadá jako ID procesu.",
- "pickNodeProcess": "Vyberte proces node.js, ke kterému se má provést připojení.",
- "process.picker.error": "Výběr procesu selhal ({0})",
- "process.id.port": "ID procesu: {0}, port ladění: {1}",
- "process.id.port.legacy": "ID procesu: {0}, port ladění: {1} (starší verze protokolu)",
- "process.id.port.signal": "ID procesu: {0}, port ladění: {1} ({2})",
- "process.id.signal": "ID procesu: {0} ({1})",
- "cannot.enable.debug.mode.error": "Připojit k procesu: Nelze povolit režim ladění pro proces {0} ({1})."
- },
- "dist/node/extension/protocolDetection": {
- "protocol.switch.legacy.detected": "Ladění pomocí starší verze protokolu, protože byl zjištěn",
- "protocol.switch.unknown.error": "Ladění pomocí protokolu inspector, protože se nepovedlo určit verzi Node.js ({0})",
- "protocol.switch.legacy.version": "Ladění pomocí starší verze protokolu, protože se zjistilo Node.js {0}"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-cs/translations/extensions/vscode-node-debug2.i18n.json b/i18n/vscode-language-pack-cs/translations/extensions/vscode-node-debug2.i18n.json
deleted file mode 100644
index 5dbef6a23a..0000000000
--- a/i18n/vscode-language-pack-cs/translations/extensions/vscode-node-debug2.i18n.json
+++ /dev/null
@@ -1,80 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "package": {
- "extension.description": "Podpora ladění Node.js",
- "node.label": "Node.js v6.3+ prostřednictvím Inspector Protocolu",
- "node.sourceMaps.description": "Použijí se soubory sourcemap JavaScriptu (pokud existují).",
- "outDir.deprecationMessage": "Atribut outDir je zastaralý, místo něho použijte atribut outFiles.",
- "node.outFiles.description": "Při povolení souborů sourcemap tyto vzory glob určují vygenerované soubory JavaScriptu. Pokud vzor začíná znakem !, budou soubory vyloučeny. Pokud není zadán, bude se vygenerovaný kód očekávat ve stejném adresáři jako jeho zdroj.",
- "node.stopOnEntry.description": "Po spuštění se program automaticky zastaví.",
- "node.port.description": "Port pro ladění, ke kterému se má provést připojení. Výchozí hodnota je 9229.",
- "node.address.description": "Adresa TCP/IP portu pro ladění. Výchozí hodnota je localhost.",
- "node.timeout.description": "Opakované pokusy o připojení k Node.js se budou provádět tento počet milisekund. Výchozí hodnota je 10000 ms.",
- "node.smartStep.description": "Provede se automatické krokování vygenerovaného kódu, který nelze namapovat zpět do původního zdroje.",
- "node.enableSourceMapCaching.description": "Po stažení sourcemapů z adresy URL je uložte do mezipaměti na disku.",
- "node.diagnosticLogging.description": "V případě hodnoty true adaptér zaznamená do konzoly svoje vlastní diagnostické informace.",
- "node.diagnosticLogging.deprecationMessage": "Atribut diagnosticLogging je zastaralý. Místo něho použijte atribut trace.",
- "node.verboseDiagnosticLogging.description": "V případě hodnoty true adaptér zaznamenává všechny přenosy s klientem a cílem (a také informace zaznamenané prostřednictvím atributu diagnosticLogging).",
- "node.verboseDiagnosticLogging.deprecationMessage": "Atribut verboseDiagnosticLogging je zastaralý. Místo něho použijte atribut trace.",
- "node.trace.description": "V případě hodnoty true bude ladicí program zaznamenávat informace o trasování do souboru. V případě hodnoty verbose se budou protokoly zobrazovat také v konzole.",
- "node.sourceMapPathOverrides.description": "Sada mapování pro přepsání umístění zdrojových souborů z umístění podle sourcemapu na jejich umístění na disku. Podrobnosti najdete v souboru README.",
- "node.skipFiles.description": "Pole s názvy souborů či složek nebo vzory glob, které se mají při ladění přeskočit",
- "node.restart.description": "Po ukončení Node.js se relace restartuje.",
- "node.showAsyncStacks.description": "Zobrazí se asynchronní volání, která vedla k aktuálnímu zásobníku volání.",
- "node.disableOptimisticBPs.description": "Nenastavujte zarážky do žádného souboru, dokud se pro daný soubor nenačte sourcemap.",
- "node.launch.program.description": "Absolutní cesta k programu",
- "node.launch.console.description": "Určuje, kde se má spustit cíl ladění: vnitřní konzola, integrovaný terminál nebo externí terminál.",
- "node.launch.args.description": "Argumenty příkazového řádku, které se předávají do programu",
- "node.launch.cwd.description": "Absolutní cesta k pracovnímu adresáři laděného programu",
- "node.launch.runtimeExecutable.description": "Modul runtime, který se má použít. Buď absolutní cesta, nebo název modulu runtime, který je k dispozici na dané cestě. Pokud je vynechaný, předpokládá se název node.",
- "node.launch.runtimeArgs.description": "Nepovinné argumenty se předaly do spustitelného souboru modulu runtime.",
- "node.launch.env.description": "Proměnné prostředí se předaly do programu. Hodnota null odebere proměnnou z prostředí.",
- "node.launch.envFile.description": "Absolutní cesta k souboru, který obsahuje definice proměnných prostředí",
- "node.launch.outputCapture.description": "Určuje, odkud se mají zachycovat výstupní zprávy: rozhraní API pro ladění nebo streamy stdout/stderr.",
- "node.launch.config.name": "Spustit",
- "node.attach.processId.description": "ID procesu, ke kterému se má provést připojení",
- "node.attach.localRoot.description": "Kořenový adresář místního zdroje, který odpovídá atributu remoteRoot",
- "node.attach.remoteRoot.description": "Kořenový adresář zdrojového kódu vzdáleného hostitele",
- "node.attach.config.name": "Připojit",
- "node.processattach.config.name": "Připojit k procesu",
- "toggle.skipping.this.file": "Přepnout možnost přeskočení tohoto souboru",
- "extensionHost.label": "Vývoj rozšíření VS Code",
- "extensionHost.launch.runtimeExecutable.description": "Absolutní cesta k VS Code",
- "extensionHost.launch.stopOnEntry.description": "Po spuštění automaticky zastaví hostitele rozšíření.",
- "extensionHost.launch.env.description": "Proměnné prostředí se předaly hostiteli rozšíření.",
- "extensionHost.snippet.launch.label": "Vývoj rozšíření VS Code",
- "extensionHost.snippet.launch.description": "Spustit rozšíření VS Code v režimu ladění",
- "extensionHost.launch.config.name": "Spustit rozšíření"
- },
- "out/src/errors": {
- "VSND2001": "Modul runtime {0} nelze na cestě najít. Je {0} nainstalovaný?",
- "VSND2011": "Nelze spustit cíl ladění v terminálu ({0}).",
- "VSND2017": "Nelze spustit cíl ladění ({0}).",
- "VSND2035": "Nelze ladit rozšíření ({0}).",
- "VSND2028": "Neznámý typ konzoly {0}",
- "VSND2002": "Program {0} nelze spustit. Pomoct by mohla konfigurace souboru sourcemap.",
- "VSND2003": "Program {0} nelze spustit. Pomoct by mohlo nastavení atributu {1}.",
- "VSND2009": "Program {0} nelze spustit, protože nelze najít odpovídající JavaScript.",
- "VSND2029": "Nelze načíst proměnné prostředí ze souboru ({0})."
- },
- "out/src/nodeDebugAdapter": {
- "attribute.wsl.not.exist": "Instalaci subsystému Windows pro Linux nelze najít.",
- "program.path.case.mismatch.warning": "Cesta k programu používá jinou velikost písma ve znaku než soubor na disku. Může to způsobit, že nedojde k dosažení zarážek.",
- "node.console.title": "Konzola ladění uzlů",
- "attribute.path.not.exist": "Atribut {0} neexistuje ({1}).",
- "attribute.path.not.absolute": "Atribut {0} není absolutní ({1}). Zvažte přidání předpony {2}, aby byl tento atribut absolutní.",
- "VSND2001": "Modul runtime {0} nelze na cestě najít. Ujistěte se, jestli je {0} nainstalovaný.",
- "more.information": "Další informace",
- "origin.from.node": "obsah jen pro čtení z Node.js",
- "origin.core.module": "modul Core jen pro čtení"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-cs/translations/extensions/vscode.bat.i18n.json b/i18n/vscode-language-pack-cs/translations/extensions/vscode.bat.i18n.json
index c8504b2620..357acf4af3 100644
--- a/i18n/vscode-language-pack-cs/translations/extensions/vscode.bat.i18n.json
+++ b/i18n/vscode-language-pack-cs/translations/extensions/vscode.bat.i18n.json
@@ -9,8 +9,8 @@
"version": "1.0.0",
"contents": {
"package": {
- "displayName": "Základy jazyka Windows Bat",
- "description": "Poskytuje fragmenty kódu, zvýrazňování syntaxe, párování závorek a sbalování kódu v dávkových souborech Windows."
+ "description": "Poskytuje fragmenty kódu, zvýrazňování syntaxe, párování závorek a sbalování kódu v dávkových souborech Windows.",
+ "displayName": "Základy jazyka Windows Bat"
}
}
}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-cs/translations/extensions/notebook-renderers.i18n.json b/i18n/vscode-language-pack-cs/translations/extensions/vscode.builtin-notebook-renderers.i18n.json
similarity index 100%
rename from i18n/vscode-language-pack-cs/translations/extensions/notebook-renderers.i18n.json
rename to i18n/vscode-language-pack-cs/translations/extensions/vscode.builtin-notebook-renderers.i18n.json
diff --git a/i18n/vscode-language-pack-cs/translations/extensions/vscode.clojure.i18n.json b/i18n/vscode-language-pack-cs/translations/extensions/vscode.clojure.i18n.json
index d208735bcd..6bb17cf9a5 100644
--- a/i18n/vscode-language-pack-cs/translations/extensions/vscode.clojure.i18n.json
+++ b/i18n/vscode-language-pack-cs/translations/extensions/vscode.clojure.i18n.json
@@ -9,8 +9,8 @@
"version": "1.0.0",
"contents": {
"package": {
- "displayName": "Základy jazyka Clojure",
- "description": "Poskytuje zvýrazňování syntaxe a párování závorek v souborech Clojure."
+ "description": "Poskytuje zvýrazňování syntaxe a párování závorek v souborech Clojure.",
+ "displayName": "Základy jazyka Clojure"
}
}
}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-cs/translations/extensions/vscode.coffeescript.i18n.json b/i18n/vscode-language-pack-cs/translations/extensions/vscode.coffeescript.i18n.json
index dae07bb62d..41d4b1ce49 100644
--- a/i18n/vscode-language-pack-cs/translations/extensions/vscode.coffeescript.i18n.json
+++ b/i18n/vscode-language-pack-cs/translations/extensions/vscode.coffeescript.i18n.json
@@ -9,8 +9,8 @@
"version": "1.0.0",
"contents": {
"package": {
- "displayName": "Základy jazyka CoffeeScript",
- "description": "Poskytuje fragmenty kódu, zvýrazňování syntaxe, párování závorek a sbalování kódu v souborech jazyka CoffeeScript."
+ "description": "Poskytuje fragmenty kódu, zvýrazňování syntaxe, párování závorek a sbalování kódu v souborech jazyka CoffeeScript.",
+ "displayName": "Základy jazyka CoffeeScript"
}
}
}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-cs/translations/extensions/vscode.configuration-editing.i18n.json b/i18n/vscode-language-pack-cs/translations/extensions/vscode.configuration-editing.i18n.json
new file mode 100644
index 0000000000..0d57880444
--- /dev/null
+++ b/i18n/vscode-language-pack-cs/translations/extensions/vscode.configuration-editing.i18n.json
@@ -0,0 +1,77 @@
+{
+ "": [
+ "--------------------------------------------------------------------------------------------",
+ "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."
+ ],
+ "version": "1.0.0",
+ "contents": {
+ "bundle": {
+ "Example": "Příklad",
+ "Files by Extension": "Soubory podle přípony",
+ "Files with Extension": "Soubory s příponou",
+ "Files with Multiple Extensions": "Soubory s více příponami",
+ "Files with Path": "Soubory s cestou",
+ "Files with Siblings by Name": "Soubory s položkami na stejné úrovni podle názvu",
+ "Folder by Name (Any Location)": "Složka podle názvu (libovolné umístění)",
+ "Folder by Name (Top Level)": "Složka podle názvu (nejvyšší úroveň)",
+ "Folders with Multiple Names (Top Level)": "Složky s více názvy (nejvyšší úroveň)",
+ "GitHub": "GitHub",
+ "Map all files matching the absolute path glob pattern in their path to the language with the given identifier.": "Umožňuje namapovat všechny soubory odpovídající vzoru glob absolutní cesty v jejich cestě na jazyk s daným identifikátorem.",
+ "Map all files matching the glob pattern in their filename to the language with the given identifier.": "Umožňuje namapovat všechny soubory odpovídající vzoru glob v názvu souboru na jazyk s daným identifikátorem.",
+ "Match a folder with a specific name in any location.": "Umožňuje vyhledat složku s určitým názvem v libovolném umístění.",
+ "Match a top level folder with a specific name.": "Umožňuje vyhledat složku nejvyšší úrovně s určitým názvem.",
+ "Match all files of a specific file extension.": "Umožňuje vyhledat všechny soubory s konkrétní příponou.",
+ "Match all files with any of the file extensions.": "Umožňuje vyhledat všechny soubory s kteroukoli z uvedených přípon.",
+ "Match files that have siblings with the same name but a different extension.": "Umožňuje vyhledat soubory, které mají položky na stejné úrovni se stejným názvem, ale jiným rozšířením",
+ "Match multiple top level folders.": "Umožňuje vyhledat více složek nejvyšší úrovně.",
+ "The character used by the operating system to separate components in file paths. Is also aliased to '/'.": "Znak používaný operačním systémem k oddělení komponent v cestách k souborům. Je také aliasován pomocí /.",
+ "The current opened file": "Aktuálně otevřený soubor",
+ "The current opened file relative to ${workspaceFolder}": "Aktuálně otevřený soubor relativně ke složce ${workspaceFolder}",
+ "The current opened file workspace folder name without any slashes (/)": "Název aktuálně otevřené složky pracovního prostoru souborů bez lomítek (/)",
+ "The current opened file's basename": "Základní název aktuálně otevřeného souboru",
+ "The current opened file's basename with no file extension": "Základní název aktuálně otevřeného souboru bez přípony souboru",
+ "The current opened file's dirname": "Název adresáře aktuálně otevřeného souboru",
+ "The current opened file's dirname relative to ${workspaceFolder}": "Název adresáře aktuálně otevřeného souboru relativně ke složce ${workspaceFolder}",
+ "The current opened file's extension": "Přípona aktuálně otevřeného souboru",
+ "The current opened file's folder name": "Název složky aktuálně otevřeného souboru",
+ "The current selected line number in the active file": "Číslo aktuálně vybraného řádku v aktivním souboru",
+ "The current selected text in the active file": "Aktuálně vybraný text v aktivním souboru",
+ "The file extension of the editor (e.g. txt)": "Přípona souboru editoru (například txt)",
+ "The file name of the editor without its directory or extension (e.g. myFile)": "Název souboru editoru bez adresáře nebo přípony (např. myFile)",
+ "The name of the default build task. If there is not a single default build task then a quick pick is shown to choose the build task.": "Název výchozí úlohy sestavení. Pokud neexistuje žádná výchozí úloha sestavení, zobrazí se nabídka rychlého výběru pro zvolení úlohy sestavení.",
+ "The name of the folder opened in VS Code without any slashes (/)": "Název složky otevřené ve VS Code bez lomítek (/)",
+ "The nth parent folder name of the editor": "Název n-té nadřazené složky editoru",
+ "The parent folder name of the editor (e.g. myFileFolder)": "Název nadřazené složky editoru (např. myFileFolder)",
+ "The path of the folder opened in VS Code": "Cesta ke složce otevřené ve VS Code",
+ "The path where an extension is installed.": "Cesta, kde je nainstalováno rozšíření",
+ "The task runner's current working directory on startup": "Aktuální pracovní adresář spouštěče úloh při spuštění",
+ "Use the language of the currently active text editor if any": "Použít jazyk aktuálně aktivního textového editoru, pokud existuje",
+ "a conditional separator (' - ') that only shows when surrounded by variables with values": "podmíněný oddělovač (-), který se zobrazí pouze v případě uzavření do proměnných s hodnotami",
+ "an indicator for when the active editor has unsaved changes": "indikuje, jestli aktivní editor obsahuje neuložené změny",
+ "e.g. SSH": "například SSH",
+ "e.g. VS Code": "například VS Code",
+ "file path of the workspace (e.g. /Users/Development/myWorkspace)": "cesta k souboru pracovního prostoru (například /Users/Development/myWorkspace)",
+ "file path of the workspace folder the file is contained in (e.g. /Users/Development/myFolder)": "cesta ke složce pracovního prostoru, ve které je soubor obsažen (například /Users/Development/myFolder)",
+ "gist": "gist",
+ "name of the workspace folder the file is contained in (e.g. myFolder)": "název složky pracovního prostoru, ve které je soubor obsažen (například myFolder)",
+ "name of the workspace with optional remote name and workspace indicator if applicable (e.g. myFolder, myRemoteFolder [SSH] or myWorkspace (Workspace))": "název pracovního prostoru s volitelným vzdáleným názvem a indikátorem pracovního prostoru (např. myFolder, myRemoteFolder [SSH] nebo myWorkspace (pracovní prostor))",
+ "shortened name of the workspace without suffixes (e.g. myFolder or myWorkspace)": "zkrácený název pracovního prostoru bez přípon (např. myFolder nebo myWorkspace)",
+ "the file name (e.g. myFile.txt)": "název souboru (například myFile.txt)",
+ "the full path of the file (e.g. /Users/Development/myFolder/myFileFolder/myFile.txt)": "úplná cesta k souboru (například /Users/Development/myFolder/myFileFolder/myFile.txt)",
+ "the full path of the folder the file is contained in (e.g. /Users/Development/myFolder/myFileFolder)": "úplná cesta ke složce, ve které je soubor obsažen (například /Users/Development/myFolder/myFileFolder)",
+ "the name of the active branch in the active repository (e.g. main)": "název aktivní větve v aktivním úložišti (např. main)",
+ "the name of the active repository (e.g. vscode)": "název aktivního úložiště (např. vscode)",
+ "the name of the folder the file is contained in (e.g. myFileFolder)": "název složky, ve které je soubor obsažen (například myFileFolder)",
+ "the path of the file relative to the workspace folder (e.g. myFolder/myFileFolder/myFile.txt)": "cesta k souboru relativně ke složce pracovního prostoru (například myFolder/myFileFolder/myFile.txt)",
+ "the path of the folder the file is contained in, relative to the workspace folder (e.g. myFolder/myFileFolder)": "cesta ke složce, ve které je soubor obsažen, relativně ke složce pracovního prostoru (například myFolder/myFileFolder)",
+ "the state of the active editor (e.g. modified).": "stav aktivního editoru (např. změněno)."
+ },
+ "package": {
+ "description": "Poskytuje funkce (pokročilá funkce IntelliSense, automatické opravy) v konfiguračních souborech, jako jsou například soubory nastavení, soubory spuštění a soubory doporučení rozšíření.",
+ "displayName": "Úpravy konfigurace"
+ }
+ }
+}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-cs/translations/extensions/vscode.cpp.i18n.json b/i18n/vscode-language-pack-cs/translations/extensions/vscode.cpp.i18n.json
index fd8520aefa..bf326b29fe 100644
--- a/i18n/vscode-language-pack-cs/translations/extensions/vscode.cpp.i18n.json
+++ b/i18n/vscode-language-pack-cs/translations/extensions/vscode.cpp.i18n.json
@@ -9,8 +9,8 @@
"version": "1.0.0",
"contents": {
"package": {
- "displayName": "Základy jazyka C/C++",
- "description": "Poskytuje fragmenty kódu, zvýrazňování syntaxe, párování závorek a sbalování kódu v souborech jazyka C/C++."
+ "description": "Poskytuje fragmenty kódu, zvýrazňování syntaxe, párování závorek a sbalování kódu v souborech jazyka C/C++.",
+ "displayName": "Základy jazyka C/C++"
}
}
}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-cs/translations/extensions/vscode.csharp.i18n.json b/i18n/vscode-language-pack-cs/translations/extensions/vscode.csharp.i18n.json
index 47b54603d5..5a3bbf5aae 100644
--- a/i18n/vscode-language-pack-cs/translations/extensions/vscode.csharp.i18n.json
+++ b/i18n/vscode-language-pack-cs/translations/extensions/vscode.csharp.i18n.json
@@ -9,8 +9,8 @@
"version": "1.0.0",
"contents": {
"package": {
- "displayName": "Základy jazyka C#",
- "description": "Poskytuje fragmenty kódu, zvýrazňování syntaxe, párování závorek a sbalování kódu v souborech jazyka C#."
+ "description": "Poskytuje fragmenty kódu, zvýrazňování syntaxe, párování závorek a sbalování kódu v souborech jazyka C#.",
+ "displayName": "Základy jazyka C#"
}
}
}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-cs/translations/extensions/vscode.css-language-features.i18n.json b/i18n/vscode-language-pack-cs/translations/extensions/vscode.css-language-features.i18n.json
new file mode 100644
index 0000000000..77e47463f8
--- /dev/null
+++ b/i18n/vscode-language-pack-cs/translations/extensions/vscode.css-language-features.i18n.json
@@ -0,0 +1,368 @@
+{
+ "": [
+ "--------------------------------------------------------------------------------------------",
+ "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."
+ ],
+ "version": "1.0.0",
+ "contents": {
+ "bundle": {
+ "\"store\" a boolean test for later evaluation in a guard or if().": "„uloží“ logický test pro pozdější vyhodnocení v ochraně nebo if().",
+ "'from' expected": "očekával se výraz from",
+ "'in' expected": "očekávalo se klíčové slovo in",
+ "'through' or 'to' expected": "očekávala se hodnota through nebo to",
+ "'{0}'": "'{0}'",
+ "( expected": "očekával se znak (",
+ ") expected": "očekával se znak )",
+ "": "",
+ "@font-face": "@font-face",
+ "@font-face rule must define 'src' and 'font-family' properties": "pravidlo @font-face musí definovat vlastnosti src a font-family",
+ "@keyframes {0}": "@keyframes {0}",
+ "A list of properties that are not validated against the `unknownProperties` rule.": "Seznam vlastností, které nejsou ověřovány podle pravidla unknownProperties",
+ "Adds quotes to a string.": "Přidá uvozovky do řetězce.",
+ "Also define the standard property '{0}' for compatibility": "Pro zajištění kompatibility také definujte standardní vlastnost {0}.",
+ "Always define standard rule '@keyframes' when defining keyframes.": "Při definování klíčových snímků vždy definujte standardní pravidlo @keyframes.",
+ "Always include all vendor specific properties: Missing: {0}": "Vždy zahrňte všechny vlastnosti specifické pro dodavatele: Chybí: {0}",
+ "Always include all vendor specific rules: Missing: {0}": "Vždy zahrnujte všechna pravidla specifická pro dodavatele: Chybí: {0}",
+ "Appends a single value onto the end of a list.": "Připojí jednu hodnotu na konec seznamu.",
+ "Appends selectors to one another without spaces in between.": "Připojí selektory k sobě navzájem bez mezer.",
+ "Avoid using !important. It is an indication that the specificity of the entire CSS has gotten out of control and needs to be refactored.": "Nepoužívejte vlastnost !important. Indikuje, že specificita celého kódu CSS není pod kontrolou a vyžaduje refaktorování.",
+ "Avoid using 'float'. Floats lead to fragile CSS that is easy to break if one aspect of the layout changes.": "Nepoužívejte datový typ float. Při používání datového typu float se může kód CSS snadno poškodit, pokud se změní jeden aspekt rozložení.",
+ "CSS Language Server": "Server jazyka CSS",
+ "CSS fix is outdated and can't be applied to the document.": "Oprava funkce CSS je zastaralá a nedá se použít pro dokument.",
+ "Causes one or more rules to be emitted at the root of the document.": "Způsobí, že se v kořenovém adresáři dokumentu vygeneruje jedno nebo více pravidel.",
+ "Changes one or more properties of a color.": "Změní jednu nebo více vlastností barvy.",
+ "Changes the alpha component for a color.": "Změní alfa komponentu pro barvu.",
+ "Changes the hue of a color.": "Změní odstín barvy.",
+ "Combines several lists into a single multidimensional list.": "Zkombinuje několik seznamů do jednoho multidimenzionálního seznamu.",
+ "Converts a color into the format understood by IE filters.": "Převede barvu na formát, kterému rozumí filtry IE.",
+ "Converts a color to grayscale.": "Převede barvu na stupně šedé.",
+ "Converts a string to lower case.": "Převede řetězec na malá písmena.",
+ "Converts a string to upper case.": "Převede řetězec na velká písmena.",
+ "Converts a unitless number to a percentage.": "Převede číslo bez jednotek na procentuální hodnotu.",
+ "Creates a Color from hue, saturation, and lightness values.": "Vytvoří barvu z hodnot odstínu, sytosti a světlosti.",
+ "Creates a Color from hue, saturation, lightness, and alpha values.": "Vytvoří barvu z hodnot odstín, sytost, světlost a alfa.",
+ "Creates a Color from hue, white, and black values.": "Vytvoří barvu z odstínu, bílé a černé hodnoty.",
+ "Creates a Color from lightness, a, and b values.": "Vytvoří barvu z hodnot světlost, a b.",
+ "Creates a Color from lightness, chroma, and hue values.": "Vytvoří barvu z hodnot světlosti, chromy a odstínu.",
+ "Creates a Color from red, green, and blue values.": "Vytvoří barvu z hodnot červená, zelená a modrá.",
+ "Creates a Color from red, green, blue, and alpha values.": "Vytvoří barvu z hodnot červená, zelená, modrá a alfa.",
+ "Creates a Color from the hue, saturation, and lightness values of another Color.": "Vytvoří barvu z hodnot odstínu, sytosti a světlosti jiné barvy.",
+ "Creates a Color from the hue, white, and black values of another Color.": "Vytvoří barvu z odstínu, bílé a černé hodnoty jiné barvy.",
+ "Creates a Color from the lightness, a, and b values of another Color.": "Vytvoří barvu z hodnot světlosti a hodnot A a B jiné barvy.",
+ "Creates a Color from the lightness, chroma, and hue values of another Color.": "Vytvoří barvu z hodnot světlosti, chromy a odstínu jiné barvy.",
+ "Creates a Color from the red, green, and blue values of another Color.": "Vytvoří barvu z červené, zelené a modré hodnoty jiné barvy.",
+ "Creates a Color in a specific color space from red, green, and blue values.": "Vytvoří barvu v konkrétním barevném prostoru z červených, zelených a modrých hodnot.",
+ "Creates a Color in a specific color space from the red, green, and blue values of another Color.": "Vytvoří barvu v konkrétním barevném prostoru z červené, zelené a modré hodnoty jiné barvy.",
+ "Defines complex operations that can be re-used throughout stylesheets.": "Definuje komplexní operace, které lze znovu použít v šablonách stylů.",
+ "Defines styles that can be re-used throughout the stylesheet with `@include`.": "Definuje styly, které lze znovu použít v celé šabloně stylů pomocí @include.",
+ "Do not use duplicate style definitions": "Nepoužívejte duplicitní definice stylů.",
+ "Do not use empty rulesets": "Nepoužívejte prázdné sady pravidel.",
+ "Do not use width or height when using padding or border": "Při použití odsazení nebo ohraničení nepoužívejte šířku ani výšku.",
+ "Dynamically calls a Sass function.": "Dynamicky volá funkci Sass.",
+ "Each loop that sets `$var` to each item in the list or map, then outputs the styles it contains using that value of `$var`.": "Každá smyčka, která nastaví $var na každou položku v seznamu nebo mapě, pak vypíše styly, které obsahuje, pomocí této hodnoty $var.",
+ "Exposes the details of Sass’s inner workings.": "Zpřístupňuje podrobnosti o vnitřních operacích Sass.",
+ "Extends $extendee with $extender within $selector.": "Rozšíří $extendee o $extender v rámci $selector.",
+ "Extracts a substring from $string.": "Extrahuje podřetězec z řetězce $string.",
+ "Failed to apply CSS fix to the document. Please consider opening an issue with steps to reproduce.": "Nepovedlo se použít opravu CSS pro dokument. Zvažte prosím otevření problému s postupem pro reprodukci.",
+ "Finds the maximum of several numbers.": "Vyhledá maximum několika čísel.",
+ "Finds the minimum of several numbers.": "Vyhledá minimum několika čísel.",
+ "Fluidly scales one or more properties of a color.": "Plynule škáluje jednu nebo více vlastností barvy.",
+ "Folding Region End": "Konec oblasti sbalení",
+ "Folding Region Start": "Začátek oblasti sbalení",
+ "For loop that repeatedly outputs a set of styles for each `$var` in the `from/through` or `from/to` clause.": "Smyčka For, která opakovaně vypisuje sadu stylů pro každý $var v klauzuli from/through nebo from/to.",
+ "Generates new colors based on existing ones, making it easy to build color themes.": "Vygeneruje nové barvy na základě existujících a usnadní tak vytváření barevných motivů.",
+ "Gets the blue component of a color.": "Získá modrou komponentu barvy.",
+ "Gets the green component of a color.": "Získá zelenou komponentu barvy.",
+ "Gets the hue component of a color.": "Získá komponentu odstínu barvy.",
+ "Gets the lightness component of a color.": "Získá komponentu světlosti barvy.",
+ "Gets the opacity component of a color.": "Získá komponentu neprůhlednosti barvy.",
+ "Gets the red component of a color.": "Získá červenou komponentu barvy.",
+ "Gets the saturation component of a color.": "Získá komponentu sytosti barvy.",
+ "Hex colors must consist of three, four, six or eight hex numbers": "Šestnáctkové barvy se musí skládat ze tří, čtyř, šesti nebo osmi šestnáctkových čísel.",
+ "IE hacks are only necessary when supporting IE7 and older": "IE hacky jsou nezbytné pouze pro podporu Internet Exploreru 7 a starších verzí.",
+ "Import statements do not load in parallel": "Příkazy importu se nenačítají paralelně.",
+ "Includes the body if the expression does not evaluate to `false` or `null`.": "Zahrne obsah, pokud se výraz nevyhodnotí jako false nebo null.",
+ "Includes the styles defined by another mixin into the current rule.": "Zahrne do aktuálního pravidla styly definované jiným mixinem.",
+ "Increases or decreases one or more components of a color.": "Zvětšuje nebo zmenšuje jednu nebo více komponent barvy.",
+ "Inherits the styles of another selector.": "Dědí styly jiného selektoru.",
+ "Insert url() Function": "Vložit funkci url()",
+ "Insert url() Functions": "Vložit funkce url()",
+ "Inserts $insert into $string at $index.": "Vloží $insert do $string v $index.",
+ "Invalid number of parameters": "Neplatný počet parametrů.",
+ "Joins together two lists into one.": "Spojí dva seznamy do jednoho.",
+ "Lets you access and modify values in lists.": "Umožňuje přistupovat k hodnotám v seznamech a upravovat je.",
+ "Loads a Sass stylesheet and makes its mixins, functions, and variables available when this stylesheet is loaded with the @use rule.": "Načte šablonu stylů Sass a zpřístupní její mixiny, funkce a proměnné při načtení této šablony stylů s pravidlem @use.",
+ "Loads mixins, functions, and variables from other Sass stylesheets as 'modules', and combines CSS from multiple stylesheets together.": "Načte mixiny, funkce a proměnné z jiných šablon stylů Sass jako hodnoty modules a zkombinuje šablony stylů CSS z několika šablon stylů.",
+ "Makes a color darker.": "Ztmaví barvu.",
+ "Makes a color less saturated.": "Sníží sytost barvy.",
+ "Makes a color lighter.": "Zesvětlí barvu.",
+ "Makes a color more opaque.": "Změní barvu na průhlednější.",
+ "Makes a color more saturated.": "Zvýší sytost barvy.",
+ "Makes a color more transparent.": "Zprůhlední barvu.",
+ "Makes it easy to combine, search, or split apart strings.": "Usnadňuje kombinování, hledání nebo rozdělení řetězců.",
+ "Makes it possible to look up the value associated with a key in a map, and much more.": "Umožňuje vyhledat hodnotu přidruženou ke klíči na mapě a mnoho dalšího.",
+ "Merges two maps together into a new map.": "Sloučí dvě mapy dohromady do nové mapy.",
+ "Mix two colors together in a polar color space.": "Kombinace dvou barev v polárním barevném prostoru.",
+ "Mix two colors together in a rectangular color space.": "Kombinace dvou barev v obdélníkovém barevném prostoru.",
+ "Mixes two colors together.": "Smíchá dvě barvy dohromady.",
+ "Nests selector beneath one another like they would be nested in the stylesheet.": "Vnoří selektory pod sebe, jako by byly vnořené v šabloně stylů.",
+ "No unit for zero needed": "Pro nulu nejsou potřeba žádné jednotky.",
+ "Parses a selector into the format returned by &.": "Parsuje selektor do formátu vráceného příkazem &.",
+ "Prints the value of an expression to the standard error output stream. Useful for debugging complicated Sass files.": "Vytiskne hodnotu výrazu do standardního chybového výstupního datového proudu. Užitečné pro ladění složitých souborů Sass.",
+ "Prints the value of an expression to the standard error output stream. Useful for libraries that need to warn users of deprecations or recovering from minor mixin usage mistakes. Warnings can be turned off with the `--quiet` command-line option or the `:quiet` Sass option.": "Vytiskne hodnotu výrazu do standardního chybového výstupního datového proudu. Užitečné pro knihovny, které potřebují varovat uživatele před vyřazením nebo zotavením z menších chyb použití mixinů. Upozornění je možné vypnout pomocí možnosti příkazového řádku --quiet nebo možnosti Sass :quiet.",
+ "Property is ignored due to the display.": "Vlastnost se ignoruje z důvodu zobrazení.",
+ "Property is ignored due to the display. With 'display: block', vertical-align should not be used.": "Vlastnost se ignoruje z důvodu zobrazení. Při použití hodnoty display: block by se svislé zarovnání nemělo používat.",
+ "Provides access to Sass’s powerful selector engine.": "Poskytuje přístup k výkonnému modulu selekce Sass.",
+ "Provides functions that operate on numbers.": "Poskytne funkce, které pracují s čísly.",
+ "Removes quotes from a string.": "Odebere uvozovky z řetězce.",
+ "Rename to '{0}'": "Přejmenovat na {0}",
+ "Replaces $original with $replacement within $selector.": "Nahradí $original hodnotou $replacement v rámci selektoru $selector.",
+ "Replaces the nth item in a list.": "Nahradí n-tou položku v seznamu.",
+ "Returns a list of all keys in a map.": "Vrátí seznam všech klíčů v mapě.",
+ "Returns a list of all values in a map.": "Vrátí seznam všech hodnot v mapě.",
+ "Returns a new map with keys removed.": "Vrátí novou mapu s odebranými klíči.",
+ "Returns a random number.": "Vrátí náhodné číslo.",
+ "Returns a specific item in a list.": "Vrátí konkrétní položku v seznamu.",
+ "Returns the absolute value of a number.": "Vrátí absolutní hodnotu čísla.",
+ "Returns the complement of a color.": "Vrátí doplněk barvy.",
+ "Returns the index of the first occurance of $substring in $string.": "Vrátí index prvního výskytu $substring v $string.",
+ "Returns the inverse of a color.": "Vrátí inverzní hodnotu barvy.",
+ "Returns the keywords passed to a function that takes variable arguments.": "Vrátí klíčová slova předaná funkci, která přijímá argumenty proměnných.",
+ "Returns the length of a list.": "Vrátí délku seznamu.",
+ "Returns the number of characters in a string.": "Vrátí počet znaků v řetězci.",
+ "Returns the position of a value within a list.": "Vrátí pozici hodnoty v seznamu.",
+ "Returns the separator of a list.": "Vrátí oddělovač seznamu.",
+ "Returns the simple selectors that comprise a compound selector.": "Vrátí jednoduché selektory, které tvoří složený selektor.",
+ "Returns the string representation of a value as it would be represented in Sass.": "Vrátí řetězcovou reprezentaci hodnoty tak, jak by se reprezentovala v Sass.",
+ "Returns the type of a value.": "Vrátí typ hodnoty.",
+ "Returns the unit(s) associated with a number.": "Vrátí jednotky přidružené k číslu.",
+ "Returns the value in a map associated with a given key.": "Vrátí hodnotu v mapě přidružené k danému klíči.",
+ "Returns whether $super matches all the elements $sub does, and possibly more.": "Vrátí, jestli hodnota $super odpovídá všem prvkům, kterým odpovídá $sub, a možná i dalším.",
+ "Returns whether a feature exists in the current Sass runtime.": "Vrátí, jestli v aktuálním modulu runtime Sass existuje funkce.",
+ "Returns whether a function with the given name exists.": "Vrátí, zda existuje funkce s daným názvem.",
+ "Returns whether a map has a value associated with a given key.": "Vrátí, zda má mapa hodnotu přidruženou k danému klíči.",
+ "Returns whether a mixin with the given name exists.": "Vrátí, zda existuje mixin s daným názvem.",
+ "Returns whether a number has units.": "Vrátí, zda číslo obsahuje jednotky.",
+ "Returns whether a variable with the given name exists in the current scope.": "Vrátí, zda proměnná se zadaným názvem existuje v aktuálním oboru.",
+ "Returns whether a variable with the given name exists in the global scope.": "Vrátí, zda proměnná se zadaným názvem existuje v globálním oboru.",
+ "Returns whether two numbers can be added, subtracted, or compared.": "Vrátí, zda lze sečíst, odečíst nebo porovnat dvě čísla.",
+ "Rounds a number down to the previous whole number.": "Zaokrouhlí číslo dolů na nejbližší celé číslo.",
+ "Rounds a number to the nearest whole number.": "Zaokrouhlí číslo na nejbližší celé číslo.",
+ "Rounds a number up to the next whole number.": "Zaokrouhlí číslo nahoru na nejbližší celé číslo.",
+ "Sass documentation": "Dokumentace k Sass",
+ "Selector Specificity": "Specifika selektoru",
+ "Selectors should not contain IDs because these rules are too tightly coupled with the HTML.": "Selektory by neměly obsahovat ID, protože tato pravidla jsou příliš pevně spojena s HTML.",
+ "The universal selector (*) is known to be slow": "Univerzální selektor (*) bývá pomalý.",
+ "Throws the value of an expression as a fatal error with stack trace. Useful for validating arguments to mixins and functions.": "Vyvolá hodnotu výrazu jako závažnou chybu s trasováním zásobníku. Hodí se pro ověřování argumentů pro mixiny a funkce.",
+ "URI expected": "očekával se identifikátor URI",
+ "URL encodes a string": "adresa URL kóduje řetězec",
+ "Unifies two selectors to produce a selector that matches elements matched by both.": "Sjednocuje dva selektory k vytvoření selektoru, který odpovídá prvkům odpovídajícím oběma.",
+ "Unknown at-rule.": "Neznámé pravidlo at",
+ "Unknown property.": "Neznámá vlastnost",
+ "Unknown property: '{0}'": "Neznámá vlastnost: {0}",
+ "Unknown vendor specific property.": "Neznámá vlastnost specifická pro dodavatele",
+ "When using a vendor-specific prefix also include the standard property": "Při použití předpony specifické pro dodavatele je potřeba uvést také standardní vlastnost.",
+ "When using a vendor-specific prefix make sure to also include all other vendor-specific properties": "Při použití předpony specifické pro dodavatele nezapomeňte uvést i všechny ostatní vlastnosti specifické pro dodavatele.",
+ "While loop that takes an expression and repeatedly outputs the nested styles until the statement evaluates to `false`.": "Smyčka While, která přebírá výraz a opakovaně vypisuje vnořené styly, dokud se příkaz nevyhodnotí jako false.",
+ "[ expected": "očekával se znak [",
+ "] expected": "očekával se znak ]",
+ "absolute value of a number": "absolutní hodnota čísla",
+ "arccosine - inverse of cosine function": "arkus kosinus – inverzní kosinus",
+ "arcsine - inverse of sine function": "arkus sinus – inverzní sinus",
+ "arctangent - inverse of tangent function": "arkus tangens – inverzní tangens",
+ "argument from '{0}'": "argument z {0}",
+ "at-rule or selector expected": "očekávalo se pravidlo at-rule nebo selektor",
+ "at-rule unknown": "neznámé pravidlo at-rule",
+ "bind the evaluation of a ruleset to each member of a list.": "vytvoří vazbu vyhodnocení sady pravidel s každým členem seznamu.",
+ "calculates square root of a number": "vypočítá druhou odmocninu čísla",
+ "colon expected": "očekávala se dvojtečka",
+ "comma expected": "očekávala se čárka",
+ "condition expected": "očekávala se podmínka",
+ "converts numbers from one type into another": "převede čísla z jednoho typu na jiný",
+ "converts to a %, e.g. 0.5 > 50%": "provede převod na %, např. 0,5 > 50 %",
+ "cosine function": "kosinus",
+ "creates a #AARRGGBB": "vytvoří #AARRGGBB",
+ "creates a color": "vytvoří barvu",
+ "css.builtin.lab": "css.builtin.lab",
+ "dot expected": "očekávala se tečka",
+ "escape string content": "obsah řídicího řetězce",
+ "expression expected": "očekával se výraz",
+ "first argument modulus second argument": "první argument je numerickým zbytkem druhého argumentu",
+ "first argument raised to the power of the second argument": "první argument vyvolaný mocninou druhého argumentu",
+ "generate a list spanning a range of values": "vygeneruje seznamu pokrývajícího rozsah hodnot",
+ "identifier expected": "očekával se identifikátor",
+ "identifier or variable expected": "očekával se identifikátor nebo proměnná",
+ "identifier or wildcard expected": "očekával se identifikátor nebo zástupný znak",
+ "inline-block is ignored due to the float. If 'float' has a value other than 'none', the box is floated and 'display' is treated as 'block'": "Vložený blok inline-block se ignoruje z důvodu hodnoty float. Pokud má float jinou hodnotu než none, pole se uvolní a hodnota display se považuje za block.",
+ "inlines a resource and falls back to `url()`": "vloží prostředek a přejde zpět na url()",
+ "media query expected": "očekával se dotaz na média",
+ "number expected": "očekávalo se číslo",
+ "operator expected": "očekával se operátor",
+ "page directive or declaraton expected": "očekávala se direktiva stránky nebo deklarace",
+ "parses a string to a color": "parsuje řetězec na barvu",
+ "percentage expected": "očekávalo se procento",
+ "property value expected": "očekávala se hodnota vlastnosti",
+ "remove or change the unit of a dimension": "odebere nebo změní jednotku dimenze",
+ "return `@color` 10% points darker": "vrátí @color o 10 % bodů tmavší",
+ "return `@color` 10% points less saturated": "vrátí @color o 10 % bodů méně sytou",
+ "return `@color` 10% points less transparent": "vrátí hodnotu @color o 10 % bodů méně průhlednou",
+ "return `@color` 10% points lighter": "vrátí @color o 10 % bodů světlejší",
+ "return `@color` 10% points more saturated": "vrátí @color o 10 % bodů sytější",
+ "return `@color` 10% points more transparent": "vrátí @color o 10 % bodů průhlednější",
+ "return `@color` with 50% transparency": "vrátí @color s 50% průhledností",
+ "return `@color` with a 10 degree larger in hue": "vrátí @color s odstínem o 10 stupňů silnějším",
+ "return `@darkcolor` if `@color1 is> 43% luma` otherwise return `@lightcolor`, see notes": "pokud je @color1 is> 43% luma, vrátí @darkcolor, jinak vrátí @lightcolor; podívejte se na poznámky",
+ "return a mix of `@color1` and `@color2`": "vrátí kombinaci @color1 a @color2",
+ "returns a grey, 100% desaturated color": "vrátí šedou, 100% desaturovanou barvu",
+ "returns a value at the specified position in the list": "vrátí hodnotu na zadané pozici v seznamu",
+ "returns one of two values depending on a condition.": "vrátí jednu ze dvou hodnot v závislosti na podmínce.",
+ "returns pi": "vrátí pí",
+ "returns the `alpha` channel of `@color`": "vrátí kanál alpha pro @color",
+ "returns the `blue` channel of `@color`": "vrátí kanál blue pro @color",
+ "returns the `green` channel of `@color`": "vrátí kanál green pro @color",
+ "returns the `hue` channel of `@color` in the HSL space": "vrátí kanál hue pro @color v prostoru HSL",
+ "returns the `hue` channel of `@color` in the HSV space": "vrátí kanál hue pro @color v prostoru HSV",
+ "returns the `lightness` channel of `@color` in the HSL space": "vrátí kanál lightness pro @color v prostoru HSL",
+ "returns the `luma` value (perceptual brightness) of `@color`": "vrátí hodnotu luma (perceptuální jas) pro @color",
+ "returns the `red` channel of `@color`": "vrátí kanál red pro @color",
+ "returns the `saturation` channel of `@color` in the HSL space": "vrátí kanál saturation pro @color v prostoru HSL",
+ "returns the `saturation` channel of `@color` in the HSV space": "vrátí kanál saturation pro @color v prostoru HSV",
+ "returns the `value` channel of `@color` in the HSV space": "vrátí kanál value pro @color v prostoru HSV",
+ "returns the lowest of one or more values": "vrátí nejnižší z jedné nebo více hodnot",
+ "returns the number of elements in a value list": "vrátí počet elementů v seznamu hodnot",
+ "rounds a number to a number of places": "zaokrouhlí číslo na několik míst",
+ "rounds down to an integer": "zaokrouhlí dolů na datový typ integer",
+ "rounds up to an integer": "zaokrouhlí nahoru na datový typ integer",
+ "selector expected": "očekával se selektor",
+ "semi-colon expected": "očekával se středník",
+ "sine function": "sinus",
+ "string literal expected": "očekává se řetězcový literál",
+ "string replace": "nahrazení řetězce",
+ "tangent function": "tangens",
+ "term expected": "očekával se termín",
+ "unknown keyword": "neznámé klíčové slovo",
+ "uri or string expected": "očekával se identifikátor URI nebo řetězec",
+ "variable name expected": "očekával se název proměnné",
+ "variable value expected": "očekávala se proměnná hodnota",
+ "whitespace expected": "očekával se prázdný znak",
+ "wildcard expected": "očekával se zástupný znak",
+ "{ expected": "očekával se znak {",
+ "{0}, '{1}'": "{0}, {1}",
+ "} expected": "očekával se znak }"
+ },
+ "package": {
+ "css.colorDecorators.enable.deprecationMessage": "Nastavení css.colorDecorators.enable je zastaralé. Místo něj se používá nastavení editor.colorDecorators.",
+ "css.completion.completePropertyWithSemicolon.desc": "Při dokončování vlastností CSS vkládat na konec řádku středník",
+ "css.completion.triggerPropertyValueCompletion.desc": "Ve výchozím nastavení VS Code aktivuje dokončování hodnot vlastností po výběru vlastnosti CSS. Toto chování můžete pomocí tohoto nastavení zakázat.",
+ "css.customData.desc": "Seznam relativních cest k souborům odkazující na soubory JSON používající [vlastní formát dat](https://github.com/microsoft/vscode-css-languageservice/blob/master/docs/customData.md).\r\n\r\nVS Code při spuštění načítá vlastní data, aby se vylepšila podpora šablon stylů CSS pro vlastní vlastnosti (proměnné) CSS, direktivy at, pseudotřídy a pseudoelementy, které zadáte v souborech JSON.\r\n\r\nCesty k souborům jsou relativní vzhledem k pracovnímu prostoru a berou se v potaz jenom nastavení složek pracovního prostoru.",
+ "css.format.braceStyle.desc": "Vložte složené závorky na stejný řádek jako pravidla (collapse) nebo vložte složené závorky na vlastní řádek (expand).",
+ "css.format.enable.desc": "Umožňuje povolit nebo zakázat výchozí formátovací modul CSS.",
+ "css.format.maxPreserveNewLines.desc": "Maximální počet konců řádků, které se mají zachovat v jednom bloku, pokud je povolená možnost #css.format.preserveNewLines#.",
+ "css.format.newlineBetweenRules.desc": "Sady pravidel oddělte prázdným řádkem.",
+ "css.format.newlineBetweenSelectors.desc": "Selektory oddělte novým řádkem.",
+ "css.format.preserveNewLines.desc": "Určuje, jestli se před pravidly a deklaracemi mají zachovat stávající konce řádků.",
+ "css.format.spaceAroundSelectorSeparator.desc": "Ujistěte se, že kolem oddělovačů selektorů >, +, ~ (např. a > b) je znak mezery.",
+ "css.hover.documentation": "Zobrazí dokumentaci k vlastnostem a hodnotě v CSS při najetí myší.",
+ "css.hover.references": "Po najetí myší zobrazovat odkazy na MDN pomocí šablon stylů CSS",
+ "css.lint.argumentsInColorFunction.desc": "Neplatný počet parametrů",
+ "css.lint.boxModel.desc": "Při použití vlastnosti padding nebo border nepoužívejte vlastnost width nebo height.",
+ "css.lint.compatibleVendorPrefixes.desc": "Při použití předpony specifické pro dodavatele nezapomeňte uvést i všechny ostatní vlastnosti specifické pro dodavatele.",
+ "css.lint.duplicateProperties.desc": "Nepoužívejte duplicitní definice stylů.",
+ "css.lint.emptyRules.desc": "Nepoužívejte prázdné sady pravidel.",
+ "css.lint.float.desc": "Nepoužívejte datový typ float. Při používání datového typu float se může kód CSS snadno poškodit, pokud se změní jeden aspekt rozložení.",
+ "css.lint.fontFaceProperties.desc": "Pravidlo @font-face musí definovat vlastnosti src a font-family.",
+ "css.lint.hexColorLength.desc": "Hexadecimální barvy musí být definovány 3, 4, 6 nebo 8 hexadecimálními (šestnáctkovými) číslicemi.",
+ "css.lint.idSelector.desc": "Selektory by neměly obsahovat ID, protože tato pravidla jsou příliš pevně spojena s HTML.",
+ "css.lint.ieHack.desc": "IE hacky jsou nezbytné pouze pro podporu Internetu Exploreru verze 7 a starších verzí.",
+ "css.lint.importStatement.desc": "Příkazy importu se nenačítají paralelně.",
+ "css.lint.important.desc": "Nepoužívejte vlastnost !important. Indikuje, že specificita celého kódu CSS není pod kontrolou a vyžaduje refaktorování.",
+ "css.lint.propertyIgnoredDueToDisplay.desc": "Vlastnost je ignorována kvůli vlastnosti display. Například s vlastností display: inline nemají vlastnosti width, height, margin-top, margin-bottom žádný vliv.",
+ "css.lint.universalSelector.desc": "Univerzální selektor (*) bývá pomalý.",
+ "css.lint.unknownAtRules.desc": "Neznámé pravidlo at",
+ "css.lint.unknownProperties.desc": "Neznámá vlastnost",
+ "css.lint.unknownVendorSpecificProperties.desc": "Neznámá vlastnost specifická pro dodavatele",
+ "css.lint.validProperties.desc": "Seznam vlastností, které nejsou ověřovány podle pravidla unknownProperties",
+ "css.lint.vendorPrefix.desc": "Při použití předpony specifické pro dodavatele je potřeba uvést také standardní vlastnost.",
+ "css.lint.zeroUnits.desc": "Pro nulu nejsou potřeba žádné jednotky.",
+ "css.title": "CSS",
+ "css.trace.server.desc": "Umožňuje sledovat komunikaci mezi VS Code a serverem jazyka CSS.",
+ "css.validate.desc": "Povolí nebo zakáže všechna ověřování.",
+ "css.validate.title": "Řídí ověřování a závažnosti problémů jazyka CSS.",
+ "description": "Poskytuje pokročilou jazykovou podporu pro soubory CSS, LESS a SCSS.",
+ "displayName": "Funkce jazyka CSS",
+ "less.colorDecorators.enable.deprecationMessage": "Nastavení less.colorDecorators.enable je zastaralé. Místo něj se používá nastavení editor.colorDecorators.",
+ "less.completion.completePropertyWithSemicolon.desc": "Při dokončování vlastností CSS vkládat na konec řádku středník",
+ "less.completion.triggerPropertyValueCompletion.desc": "Ve výchozím nastavení VS Code aktivuje dokončování hodnot vlastností po výběru vlastnosti CSS. Toto chování můžete pomocí tohoto nastavení zakázat.",
+ "less.format.braceStyle.desc": "Vložte složené závorky na stejný řádek jako pravidla (collapse) nebo vložte složené závorky na vlastní řádek (expand).",
+ "less.format.enable.desc": "Umožňuje povolit nebo zakázat výchozí formátovací modul LESS.",
+ "less.format.maxPreserveNewLines.desc": "Maximální počet konců řádků, které se mají zachovat v jednom bloku, pokud je povolená možnost #less.format.preserveNewLines#.",
+ "less.format.newlineBetweenRules.desc": "Sady pravidel oddělte prázdným řádkem.",
+ "less.format.newlineBetweenSelectors.desc": "Selektory oddělte novým řádkem.",
+ "less.format.preserveNewLines.desc": "Určuje, jestli se před pravidly a deklaracemi mají zachovat stávající konce řádků.",
+ "less.format.spaceAroundSelectorSeparator.desc": "Ujistěte se, že kolem oddělovačů selektorů >, +, ~ (např. a > b) je znak mezery.",
+ "less.hover.documentation": "Zobrazit dokumentaci k vlastnostem a hodnotě v LESS při najetí myší.",
+ "less.hover.references": "Po najetí myší zobrazovat odkazy na MDN pomocí LESS",
+ "less.lint.argumentsInColorFunction.desc": "Neplatný počet parametrů",
+ "less.lint.boxModel.desc": "Při použití vlastnosti padding nebo border nepoužívejte vlastnost width nebo height.",
+ "less.lint.compatibleVendorPrefixes.desc": "Při použití předpony specifické pro dodavatele nezapomeňte uvést i všechny ostatní vlastnosti specifické pro dodavatele.",
+ "less.lint.duplicateProperties.desc": "Nepoužívejte duplicitní definice stylů.",
+ "less.lint.emptyRules.desc": "Nepoužívejte prázdné sady pravidel.",
+ "less.lint.float.desc": "Nepoužívejte datový typ float. Při používání datového typu float se může kód CSS snadno poškodit, pokud se změní jeden aspekt rozložení.",
+ "less.lint.fontFaceProperties.desc": "Pravidlo @font-face musí definovat vlastnosti src a font-family.",
+ "less.lint.hexColorLength.desc": "Hexadecimální barvy musí být definovány 3, 4, 6 nebo 8 hexadecimálními (šestnáctkovými) číslicemi.",
+ "less.lint.idSelector.desc": "Selektory by neměly obsahovat ID, protože tato pravidla jsou příliš pevně spojena s HTML.",
+ "less.lint.ieHack.desc": "IE hacky jsou nezbytné pouze pro podporu Internetu Exploreru verze 7 a starších verzí.",
+ "less.lint.importStatement.desc": "Příkazy importu se nenačítají paralelně.",
+ "less.lint.important.desc": "Nepoužívejte vlastnost !important. Indikuje, že specificita celého kódu CSS není pod kontrolou a vyžaduje refaktorování.",
+ "less.lint.propertyIgnoredDueToDisplay.desc": "Vlastnost je ignorována kvůli vlastnosti display. Například s vlastností display: inline nemají vlastnosti width, height, margin-top, margin-bottom žádný vliv.",
+ "less.lint.universalSelector.desc": "Univerzální selektor (*) bývá pomalý.",
+ "less.lint.unknownAtRules.desc": "Neznámé pravidlo at",
+ "less.lint.unknownProperties.desc": "Neznámá vlastnost.",
+ "less.lint.unknownVendorSpecificProperties.desc": "Neznámá vlastnost specifická pro dodavatele",
+ "less.lint.validProperties.desc": "Seznam vlastností, které nejsou ověřovány podle pravidla unknownProperties",
+ "less.lint.vendorPrefix.desc": "Při použití předpony specifické pro dodavatele je potřeba uvést také standardní vlastnost.",
+ "less.lint.zeroUnits.desc": "Pro nulu nejsou potřeba žádné jednotky.",
+ "less.title": "LESS",
+ "less.validate.desc": "Povolí nebo zakáže všechna ověřování.",
+ "less.validate.title": "Řídí ověřování a závažnosti problémů jazyka LESS.",
+ "scss.colorDecorators.enable.deprecationMessage": "Nastavení scss.colorDecorators.enable je zastaralé. Místo něj se používá nastavení editor.colorDecorators.",
+ "scss.completion.completePropertyWithSemicolon.desc": "Při dokončování vlastností CSS vkládat na konec řádku středník",
+ "scss.completion.triggerPropertyValueCompletion.desc": "Ve výchozím nastavení VS Code aktivuje dokončování hodnot vlastností po výběru vlastnosti CSS. Toto chování můžete pomocí tohoto nastavení zakázat.",
+ "scss.format.braceStyle.desc": "Vložte složené závorky na stejný řádek jako pravidla (collapse) nebo vložte složené závorky na vlastní řádek (expand).",
+ "scss.format.enable.desc": "Umožňuje povolit nebo zakázat výchozí formátovací modul SCSS.",
+ "scss.format.maxPreserveNewLines.desc": "Maximální počet konců řádků, které se mají zachovat v jednom bloku, pokud je povolená možnost #scss.format.preserveNewLines#.",
+ "scss.format.newlineBetweenRules.desc": "Sady pravidel oddělte prázdným řádkem.",
+ "scss.format.newlineBetweenSelectors.desc": "Selektory oddělte novým řádkem.",
+ "scss.format.preserveNewLines.desc": "Určuje, jestli se před pravidly a deklaracemi mají zachovat stávající konce řádků.",
+ "scss.format.spaceAroundSelectorSeparator.desc": "Ujistěte se, že kolem oddělovačů selektorů >, +, ~ (např. a > b) je znak mezery.",
+ "scss.hover.documentation": "Zobrazí dokumentaci k vlastnostem a hodnotě v SCSS při najetí myší.",
+ "scss.hover.references": "Po najetí myší zobrazovat odkazy na MDN pomocí SCSS",
+ "scss.lint.argumentsInColorFunction.desc": "Neplatný počet parametrů",
+ "scss.lint.boxModel.desc": "Při použití vlastnosti padding nebo border nepoužívejte vlastnost width nebo height.",
+ "scss.lint.compatibleVendorPrefixes.desc": "Při použití předpony specifické pro dodavatele nezapomeňte uvést i všechny ostatní vlastnosti specifické pro dodavatele.",
+ "scss.lint.duplicateProperties.desc": "Nepoužívejte duplicitní definice stylů.",
+ "scss.lint.emptyRules.desc": "Nepoužívejte prázdné sady pravidel.",
+ "scss.lint.float.desc": "Nepoužívejte datový typ float. Při používání datového typu float se může kód CSS snadno poškodit, pokud se změní jeden aspekt rozložení.",
+ "scss.lint.fontFaceProperties.desc": "Pravidlo @font-face musí definovat vlastnosti src a font-family.",
+ "scss.lint.hexColorLength.desc": "Hexadecimální barvy musí být definovány 3, 4, 6 nebo 8 hexadecimálními (šestnáctkovými) číslicemi.",
+ "scss.lint.idSelector.desc": "Selektory by neměly obsahovat ID, protože tato pravidla jsou příliš pevně spojena s HTML.",
+ "scss.lint.ieHack.desc": "IE hacky jsou nezbytné pouze pro podporu Internetu Exploreru verze 7 a starších verzí.",
+ "scss.lint.importStatement.desc": "Příkazy importu se nenačítají paralelně.",
+ "scss.lint.important.desc": "Nepoužívejte vlastnost !important. Indikuje, že specificita celého kódu CSS není pod kontrolou a vyžaduje refaktorování.",
+ "scss.lint.propertyIgnoredDueToDisplay.desc": "Vlastnost je ignorována kvůli vlastnosti display. Například s vlastností display: inline nemají vlastnosti width, height, margin-top, margin-bottom žádný vliv.",
+ "scss.lint.universalSelector.desc": "Univerzální selektor (*) bývá pomalý.",
+ "scss.lint.unknownAtRules.desc": "Neznámé pravidlo at-rule.",
+ "scss.lint.unknownProperties.desc": "Neznámá vlastnost",
+ "scss.lint.unknownVendorSpecificProperties.desc": "Neznámá vlastnost specifická pro dodavatele",
+ "scss.lint.validProperties.desc": "Seznam vlastností, které nejsou ověřovány podle pravidla unknownProperties",
+ "scss.lint.vendorPrefix.desc": "Při použití předpony specifické pro dodavatele je potřeba uvést také standardní vlastnost.",
+ "scss.lint.zeroUnits.desc": "Pro nulu nejsou potřeba žádné jednotky.",
+ "scss.title": "SCSS (Sass)",
+ "scss.validate.desc": "Povolí nebo zakáže všechna ověřování.",
+ "scss.validate.title": "Řídí ověřování a závažnosti problémů jazyka SCSS."
+ }
+ }
+}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-cs/translations/extensions/vscode.css.i18n.json b/i18n/vscode-language-pack-cs/translations/extensions/vscode.css.i18n.json
index 560b680183..bb9e1f9820 100644
--- a/i18n/vscode-language-pack-cs/translations/extensions/vscode.css.i18n.json
+++ b/i18n/vscode-language-pack-cs/translations/extensions/vscode.css.i18n.json
@@ -9,8 +9,8 @@
"version": "1.0.0",
"contents": {
"package": {
- "displayName": "Základy jazyka CSS",
- "description": "Poskytuje zvýrazňování syntaxe a párování závorek pro soubory CSS, LESS a SCSS."
+ "description": "Poskytuje zvýrazňování syntaxe a párování závorek pro soubory CSS, LESS a SCSS.",
+ "displayName": "Základy jazyka CSS"
}
}
}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-cs/translations/extensions/dart.i18n.json b/i18n/vscode-language-pack-cs/translations/extensions/vscode.dart.i18n.json
similarity index 100%
rename from i18n/vscode-language-pack-cs/translations/extensions/dart.i18n.json
rename to i18n/vscode-language-pack-cs/translations/extensions/vscode.dart.i18n.json
diff --git a/i18n/vscode-language-pack-cs/translations/extensions/vscode.debug-auto-launch.i18n.json b/i18n/vscode-language-pack-cs/translations/extensions/vscode.debug-auto-launch.i18n.json
new file mode 100644
index 0000000000..27755d5168
--- /dev/null
+++ b/i18n/vscode-language-pack-cs/translations/extensions/vscode.debug-auto-launch.i18n.json
@@ -0,0 +1,38 @@
+{
+ "": [
+ "--------------------------------------------------------------------------------------------",
+ "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."
+ ],
+ "version": "1.0.0",
+ "contents": {
+ "bundle": {
+ "Always": "Vždy",
+ "Auto Attach: Always": "Automaticky připojit: Vždy",
+ "Auto Attach: Disabled": "Automaticky připojit: zakázáno",
+ "Auto Attach: Smart": "Automaticky připojit: Inteligentní",
+ "Auto Attach: With Flag": "Automaticky připojit: S příznakem",
+ "Auto attach is disabled and not shown in status bar": "Automatické připojování je zakázané a nezobrazuje se na stavovém řádku.",
+ "Auto attach to every Node.js process launched in the terminal": "Bude se automaticky připojovat ke každému procesu Node.js spuštěnému v terminálu.",
+ "Auto attach when running scripts that aren't in a node_modules folder": "Bude se automaticky připojovat při spouštění skriptů, které nejsou ve složce node_modules.",
+ "Automatically attach to node.js processes in debug mode": "Automaticky připojovat k procesům node.js v režimu ladění",
+ "Debug Auto Attach": "Automatické připojení ladění",
+ "Disabled": "Zakázáno",
+ "Only With Flag": "Jenom s příznakem",
+ "Only auto attach when the `--inspect` flag is given": "Bude se automaticky připojovat jenom v případě, že je zadaný příznak --inspect.",
+ "Re-enable auto attach": "Znovu povolit automatické připojování",
+ "Smart": "Inteligentní",
+ "Temporarily disable auto attach in this session": "Dočasně zakázat automatické připojování v této relaci",
+ "Toggle Auto Attach": "Přepnout automatické připojení",
+ "Toggle auto attach in this workspace": "Zapnout automatické připojování v tomto pracovním prostoru",
+ "Toggle auto attach on this machine": "Zapnout automatické připojování na tomto počítači"
+ },
+ "package": {
+ "description": "Pomocná rutina pro funkci automatického připojení, když nejsou aktivní rozšíření ladění uzlu",
+ "displayName": "Automatické připojení ladění uzlů",
+ "toggle.auto.attach": "Přepnout automatické připojení"
+ }
+ }
+}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-cs/translations/extensions/vscode.debug-server-ready.i18n.json b/i18n/vscode-language-pack-cs/translations/extensions/vscode.debug-server-ready.i18n.json
new file mode 100644
index 0000000000..3b54ff4bf8
--- /dev/null
+++ b/i18n/vscode-language-pack-cs/translations/extensions/vscode.debug-server-ready.i18n.json
@@ -0,0 +1,31 @@
+{
+ "": [
+ "--------------------------------------------------------------------------------------------",
+ "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."
+ ],
+ "version": "1.0.0",
+ "contents": {
+ "bundle": {
+ "Format uri ('{0}') must contain exactly one substitution placeholder.": "Identifikátor URI formátu ({0}) musí obsahovat přesně jeden zástupný symbol pro nahrazování.",
+ "Format uri ('{0}') uses a substitution placeholder but pattern did not capture anything.": "Identifikátor URI formátu ({0}) používá zástupný symbol pro nahrazování, ale vzor nic nezachytil."
+ },
+ "package": {
+ "debug.server.ready.action.debugWithChrome.description": "Spustit ladění pomocí ladicího programu pro Chrome",
+ "debug.server.ready.action.description": "Co dělat s identifikátorem URI, když je server připravený",
+ "debug.server.ready.action.openExternally.description": "Otevřít identifikátor URI externě pomocí výchozí aplikace",
+ "debug.server.ready.action.startDebugging.description": "Spusťte další konfiguraci spuštění.",
+ "debug.server.ready.debugConfig.description": "Konfigurace ladění, která se má spustit.",
+ "debug.server.ready.debugConfigName.description": "Název konfigurace spuštění, která se má spustit",
+ "debug.server.ready.killOnServerStop.description": "Po zastavení nadřazené relace zastavte podřízenou relaci.",
+ "debug.server.ready.pattern.description": "Server je připravený, pokud se tento vzor zobrazí v konzole ladění. První skupina zachycování musí zahrnovat identifikátor URI nebo číslo portu.",
+ "debug.server.ready.serverReadyAction.description": "Až bude připraven laděný program serveru, provést akci podle identifikátoru URI (indikováno odesláním výstupu v podobě „naslouchání na portu 3000“ nebo „Naslouchání na: https://localhost:5001“ do konzoly ladění)",
+ "debug.server.ready.uriFormat.description": "Formátovací řetězec, který se používá při vytváření identifikátoru URI z čísla portu. První prvek %s je nahrazen číslem portu.",
+ "debug.server.ready.webRoot.description": "Hodnota předaná konfiguraci ladění pro ladicí program pro Chrome",
+ "description": "Pokud je laděný server připravený, umožňuje otevřít identifikátor URI v prohlížeči.",
+ "displayName": "Akce při připravenosti serveru"
+ }
+ }
+}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-cs/translations/extensions/diff.i18n.json b/i18n/vscode-language-pack-cs/translations/extensions/vscode.diff.i18n.json
similarity index 100%
rename from i18n/vscode-language-pack-cs/translations/extensions/diff.i18n.json
rename to i18n/vscode-language-pack-cs/translations/extensions/vscode.diff.i18n.json
diff --git a/i18n/vscode-language-pack-cs/translations/extensions/vscode.docker.i18n.json b/i18n/vscode-language-pack-cs/translations/extensions/vscode.docker.i18n.json
index 7c676b457a..25e1dc662d 100644
--- a/i18n/vscode-language-pack-cs/translations/extensions/vscode.docker.i18n.json
+++ b/i18n/vscode-language-pack-cs/translations/extensions/vscode.docker.i18n.json
@@ -9,8 +9,8 @@
"version": "1.0.0",
"contents": {
"package": {
- "displayName": "Základy jazyka Docker",
- "description": "Poskytuje zvýrazňování syntaxe a párování závorek v souborech Dockeru."
+ "description": "Poskytuje zvýrazňování syntaxe a párování závorek v souborech Dockeru.",
+ "displayName": "Základy jazyka Docker"
}
}
}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-cs/translations/extensions/vscode.dotenv.i18n.json b/i18n/vscode-language-pack-cs/translations/extensions/vscode.dotenv.i18n.json
new file mode 100644
index 0000000000..c3702bc805
--- /dev/null
+++ b/i18n/vscode-language-pack-cs/translations/extensions/vscode.dotenv.i18n.json
@@ -0,0 +1,16 @@
+{
+ "": [
+ "--------------------------------------------------------------------------------------------",
+ "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."
+ ],
+ "version": "1.0.0",
+ "contents": {
+ "package": {
+ "description": "Poskytuje zvýrazňování syntaxe a párování závorek v souborech dotenv.",
+ "displayName": "Základy jazyka Dotenv"
+ }
+ }
+}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-cs/translations/extensions/vscode.emmet.i18n.json b/i18n/vscode-language-pack-cs/translations/extensions/vscode.emmet.i18n.json
new file mode 100644
index 0000000000..ecc9cf6083
--- /dev/null
+++ b/i18n/vscode-language-pack-cs/translations/extensions/vscode.emmet.i18n.json
@@ -0,0 +1,83 @@
+{
+ "": [
+ "--------------------------------------------------------------------------------------------",
+ "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."
+ ],
+ "version": "1.0.0",
+ "contents": {
+ "bundle": {
+ "Emmet Abbreviation": "Zkratka Emmet",
+ "Enter Abbreviation": "Zadejte zkratku.",
+ "Invalid emmet.variables field. See https://code.visualstudio.com/docs/editor/emmet#_emmet-configuration for a valid example.": "Neplatné pole emmet.variables Platný příklad najdete na https://code.visualstudio.com/docs/editor/emmet#_emmet-configuration.",
+ "Invalid snippets file. See https://code.visualstudio.com/docs/editor/emmet#_using-custom-emmet-snippets for a valid example.": "Neplatný soubor fragmentů kódu. Platný příklad najdete na https://code.visualstudio.com/docs/editor/emmet#_using-custom-emmet-snippets.",
+ "Invalid syntax profile. See https://code.visualstudio.com/docs/editor/emmet#_emmet-configuration for a valid example.": "Neplatný profil syntaxe. Platný příklad najdete na https://code.visualstudio.com/docs/editor/emmet#_emmet-configuration."
+ },
+ "package": {
+ "command.balanceIn": "Vyvážení (směrem dovnitř)",
+ "command.balanceOut": "Vyvážení (směrem ven)",
+ "command.decrementNumberByOne": "Snížit o 1",
+ "command.decrementNumberByOneTenth": "Snížit o 0,1",
+ "command.decrementNumberByTen": "Snížit o 10",
+ "command.evaluateMathExpression": "Vyhodnotit matematický výraz",
+ "command.incrementNumberByOne": "Zvýšit o 1",
+ "command.incrementNumberByOneTenth": "Zvýšit o 0,1",
+ "command.incrementNumberByTen": "Zvýšit o 10",
+ "command.matchTag": "Přejít na odpovídající pár",
+ "command.mergeLines": "Sloučit řádky",
+ "command.nextEditPoint": "Přejít na další bod úprav",
+ "command.prevEditPoint": "Přejít na předchozí bod úprav",
+ "command.reflectCSSValue": "Rozkopírovat hodnotu CSS",
+ "command.removeTag": "Odebrat značku",
+ "command.selectNextItem": "Vybrat další položku",
+ "command.selectPrevItem": "Vybrat předchozí položku",
+ "command.showEmmetCommands": "Zobrazit příkazy Emmet",
+ "command.splitJoinTag": "Značka rozdělení/spojení",
+ "command.toggleComment": "Přepnout komentář",
+ "command.updateImageSize": "Aktualizovat velikost obrázku",
+ "command.updateTag": "Aktualizovat značku",
+ "command.wrapWithAbbreviation": "Zabalit pomocí zkratky",
+ "description": "Podpora modulu plug-in Emmet pro VS Code",
+ "emmetExclude": "Pole hodnot jazyků, kde by se neměly rozbalovat zkratky Emmet",
+ "emmetExtensionsPath": "Pole cest, kde každá cesta může obsahovat Emmet syntaxProfiles nebo soubory výstřižku.\r\nV případě konfliktu profily nebo výstřižky z pozdějších cest přepíší hodnoty dřívějších cest.\r\nDalší informace a ukázku souboru výstřižku najdete na https://code.visualstudio.com/docs/editor/emmet.",
+ "emmetExtensionsPathItem": "Cesta obsahující Emmet syntaxProfiles nebo výstřižky.",
+ "emmetIncludeLanguages": "Umožňuje povolit zkratky Emmet v jazycích, které nejsou ve výchozím nastavení podporovány. Sem přidejte mapování mezi jazykem a jazykem podporovaným modulem plug-in Emmet.\r\n Příklad: {\"vue-html\": \"html\", \"javascript\": \"javascriptreact\"}",
+ "emmetOptimizeStylesheetParsing": "Pokud je nastaveno na hodnotu false, parsuje se celý soubor, aby se zjistilo, jestli je aktuální pozice platná pro rozbalení zkratek Emmet. Pokud je nastaveno na hodnotu true, bude parsován pouze obsah na aktuální pozici v souborech CSS/SCSS/Less.",
+ "emmetPreferences": "Předvolby používané k úpravě chování určitých akcí a překladačů v modulu plug-in Emmet",
+ "emmetPreferencesAllowCompactBoolean": "Při hodnotě true se vytvoří kompaktní notace logických atributů.",
+ "emmetPreferencesBemElementSeparator": "Oddělovač elementů používaný pro třídy při použití filtru BEM",
+ "emmetPreferencesBemModifierSeparator": "Oddělovač modifikátorů používaný pro třídy při použití filtru BEM",
+ "emmetPreferencesCssAfter": "Symbol, který se má umístit na konec vlastnosti CSS při rozbalování zkratek CSS",
+ "emmetPreferencesCssBetween": "Symbol, který se má umístit mezi vlastnost CSS a hodnotu při rozbalování zkratek CSS",
+ "emmetPreferencesCssColorShort": "Když se nastaví na true, hodnoty barev, třeba #f, se rozšíří na #fff namísto #ffffff.",
+ "emmetPreferencesCssFuzzySearchMinScore": "Minimální skóre (0 až 1), kterého by měla dosáhnout zkratka s částečnou shodou. Nižší hodnoty mohou mít za následek mnoho falešně pozitivních shod, vyšší hodnoty mohou snížit počet možných shod.",
+ "emmetPreferencesCssMozProperties": "Vlastnosti CSS oddělené čárkami, které dostanou předponu dodavatele „moz“ při použití ve zkratce Emmet, která začíná znakem „-“. Pokud chcete vždy zabránit použití předpony „moz“, nastavte prázdný řetězec.",
+ "emmetPreferencesCssMsProperties": "Vlastnosti CSS oddělené čárkami, které dostanou předponu dodavatele „ms“ při použití ve zkratce Emmet, která začíná znakem „-“. Pokud chcete vždy zabránit použití předpony „ms“, nastavte prázdný řetězec.",
+ "emmetPreferencesCssOProperties": "Vlastnosti CSS oddělené čárkami, které dostanou předponu dodavatele „o“ při použití ve zkratce Emmet, která začíná znakem „-“. Pokud chcete vždy zabránit použití předpony „o“, nastavte prázdný řetězec.",
+ "emmetPreferencesCssWebkitProperties": "Vlastnosti CSS oddělené čárkami, které dostanou předponu dodavatele „webkit“ při použití ve zkratce Emmet, která začíná znakem „-“. Pokud chcete vždy zabránit použití předpony „webkit“, nastavte prázdný řetězec.",
+ "emmetPreferencesFilterCommentAfter": "Definice komentáře, který by měl být umístěn za odpovídající element, když je aplikován filtr komentáře",
+ "emmetPreferencesFilterCommentBefore": "Definice komentáře, který by měl být umístěn před odpovídajícím elementem, když je aplikován filtr komentáře",
+ "emmetPreferencesFilterCommentTrigger": "Seznam názvů atributů oddělených čárkami, které se musí ve zkratce objevit, aby se aplikoval filtr komentářů",
+ "emmetPreferencesFloatUnit": "Výchozí jednotka pro hodnoty float",
+ "emmetPreferencesFormatForceIndentTags": "Pole hodnot názvů značek, které by mělo vždy získávat vnitřní odsazení",
+ "emmetPreferencesFormatNoIndentTags": "Pole hodnot názvů značek, které by nikdy nemělo získávat vnitřní odsazení",
+ "emmetPreferencesIntUnit": "Výchozí jednotka pro hodnoty integer",
+ "emmetPreferencesOutputInlineBreak": "Počet sousedních vložených elementů, které se vyžadují, aby se mezi tyto elementy vložila zalomení řádků. Pokud se nastaví na 0, vložené elementy se vždy rozšíří na jeden řádek.",
+ "emmetPreferencesOutputReverseAttributes": "Pokud se nastaví na true, při vyhodnocování fragmentů obrací směry slučování atributů.",
+ "emmetPreferencesOutputSelfClosingStyle": "Styl samouzavíracích značek: HTML ( ), XML ( ) nebo XHTML ( ).",
+ "emmetPreferencesSassAfter": "Symbol, který se má umístit na konec vlastnosti CSS při rozbalování zkratek CSS v souborech Sass",
+ "emmetPreferencesSassBetween": "Symbol, který se má umístit mezi vlastnost CSS a hodnotu při rozbalování zkratek CSS v souborech Sass",
+ "emmetPreferencesStylusAfter": "Symbol, který se má umístit na konec vlastnosti CSS při rozbalování zkratek CSS v souborech Stylus",
+ "emmetPreferencesStylusBetween": "Symbol, který se má umístit mezi vlastnost CSS a hodnotu při rozbalování zkratek CSS v souborech Stylus",
+ "emmetShowAbbreviationSuggestions": "Umožňuje zobrazovat možné zkratky Emmet jako návrhy. Nelze použít v šablonách stylů nebo v případě, že má nastavení emmet.showExpandedAbbreviation hodnotu never.",
+ "emmetShowExpandedAbbreviation": "Umožňuje zobrazovat rozbalené zkratky Emmet jako návrhy.\r\nMožnost inMarkupAndStylesheetFilesOnly platí pro html, haml, jade, slim, xml, xsl, css, scss, sass, less a stylus.\r\nMožnost always se vztahuje na všechny části souboru bez ohledu na značky/css.",
+ "emmetShowSuggestionsAsSnippets": "Pokud má hodnotu true, návrhy Emmet se zobrazí jako fragmenty kódu, což vám umožní uspořádat je podle nastavení #editor.snippetSuggestions#.",
+ "emmetSyntaxProfiles": "Definujte profil pro zadanou syntaxi nebo použijte svůj vlastní profil se specifickými pravidly.",
+ "emmetTriggerExpansionOnTab": "Pokud je tato možnost povolená, zkratky Emmet se při stisknutí klávesy TAB rozbalí, i když se nezobrazí dokončení. Pokud je tato možnost zakázaná, stále můžete zobrazené dokončení přijmout stisknutím klávesy TAB.",
+ "emmetUseInlineCompletions": "V případě hodnoty true bude Emmet navrhovat rozšíření prostřednictvím vloženého dokončování. Pokud chcete (když má toto nastavení hodnotu true) zabránit tomu, aby se poskytovatel položek k dokončení, který není vložený, zobrazoval tak často, pak u položky other přepněte #editor.quickSuggestions# na inline nebo off.",
+ "emmetVariables": "Proměnné, které se mají používat ve fragmentech kódu Emmet"
+ }
+ }
+}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-cs/translations/extensions/vscode.extension-editing.i18n.json b/i18n/vscode-language-pack-cs/translations/extensions/vscode.extension-editing.i18n.json
new file mode 100644
index 0000000000..22a98757fe
--- /dev/null
+++ b/i18n/vscode-language-pack-cs/translations/extensions/vscode.extension-editing.i18n.json
@@ -0,0 +1,33 @@
+{
+ "": [
+ "--------------------------------------------------------------------------------------------",
+ "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."
+ ],
+ "version": "1.0.0",
+ "contents": {
+ "bundle": {
+ "Data URLs are not a valid image source.": "Adresy URL dat nepředstavují platný zdroj obrázků.",
+ "Embedded SVGs are not a valid image source.": "Vložené soubory SVG nepředstavují platný zdroj obrázků.",
+ "Error parsing the when-clause:": "Při analýze klauzule „when“ došlo k chybě:",
+ "Images must use the HTTPS protocol.": "Obrázky musí používat protokol HTTPS.",
+ "Language specific editor settings": "Nastavení editoru specifická pro daný jazyk",
+ "Override editor settings for language": "Přepsat nastavení editoru pro daný jazyk",
+ "Relative badge URLs require a repository with HTTPS protocol to be specified in this package.json.": "Relativní adresy URL odznáčků vyžadují úložiště s protokolem HTTPS uvedené v tomto souboru package.json.",
+ "Relative image URLs require a repository with HTTPS protocol to be specified in the package.json.": "Relativní adresy URL obrázků vyžadují úložiště s protokolem HTTPS uvedené v tomto souboru package.json.",
+ "Remove activation event": "Odebrat aktivační událost",
+ "SVGs are not a valid image source.": "Obrázky SVG nepředstavují platný zdroj obrázků.",
+ "This activation event can be removed as VS Code generates these automatically from your package.json contribution declarations.": "Tuto aktivační událost můžete odebrat, protože VS Code je automaticky generuje z deklarací příspěvku package.json.",
+ "This activation event can be removed for extensions targeting engine version ^1.75.0 as VS Code will generate these automatically from your package.json contribution declarations.": "Tuto aktivační událost je možné odebrat pro rozšíření, která cílí na verzi modulu ^1.75.0, protože je VS Code automaticky vygeneruje z deklarací vašich příspěvků v souboru package.json.",
+ "This activation event cannot be explicitly listed by your extension.": "Tuto aktivační událost nemůže vaše rozšíření explicitně uvést.",
+ "This proposal cannot be used because for this extension the product defines a fixed set of API proposals. You can test your extension but before publishing you MUST reach out to the VS Code team.": "Tento návrh nejde použít, protože produkt definuje pro toto rozšíření pevnou sadu návrhů rozhraní API. Rozšíření můžete otestovat, ale před publikováním se MUSÍTE spojit s týmem VS Code.",
+ "Using '*' activation is usually a bad idea as it impacts performance.": "Použití aktivace * je obvykle špatný nápad, protože ovlivňuje výkon."
+ },
+ "package": {
+ "description": "Poskytuje možnosti lintování pro vytváření rozšíření.",
+ "displayName": "Vytváření rozšíření"
+ }
+ }
+}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-cs/translations/extensions/vscode.fsharp.i18n.json b/i18n/vscode-language-pack-cs/translations/extensions/vscode.fsharp.i18n.json
index 9b69e033f7..1d27d8dec1 100644
--- a/i18n/vscode-language-pack-cs/translations/extensions/vscode.fsharp.i18n.json
+++ b/i18n/vscode-language-pack-cs/translations/extensions/vscode.fsharp.i18n.json
@@ -9,8 +9,8 @@
"version": "1.0.0",
"contents": {
"package": {
- "displayName": "Základy jazyka F#",
- "description": "Poskytuje fragmenty kódu, zvýrazňování syntaxe, párování závorek a sbalování kódu v souborech jazyka F#."
+ "description": "Poskytuje fragmenty kódu, zvýrazňování syntaxe, párování závorek a sbalování kódu v souborech jazyka F#.",
+ "displayName": "Základy jazyka F#"
}
}
}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-cs/translations/extensions/vscode.git-base.i18n.json b/i18n/vscode-language-pack-cs/translations/extensions/vscode.git-base.i18n.json
new file mode 100644
index 0000000000..3c912513f1
--- /dev/null
+++ b/i18n/vscode-language-pack-cs/translations/extensions/vscode.git-base.i18n.json
@@ -0,0 +1,30 @@
+{
+ "": [
+ "--------------------------------------------------------------------------------------------",
+ "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."
+ ],
+ "version": "1.0.0",
+ "contents": {
+ "bundle": {
+ "Branch name": "Název větve",
+ "Choose a URL to clone from.": "Zvolte adresu URL, ze které chcete klonovat.",
+ "No remote repositories found.": "Nenašla se žádná vzdálená úložiště.",
+ "Provide repository URL": "Zadejte adresu URL úložiště.",
+ "Provide repository URL or pick a repository source.": "Zadejte adresu URL úložiště nebo vyberte zdroj úložiště.",
+ "Repository name": "Název úložiště",
+ "Repository name (type to search)": "Název úložiště (zadejte hledaný text)",
+ "URL": "Adresa URL",
+ "recently opened": "naposledy otevřeno",
+ "remote sources": "vzdálené zdroje",
+ "{0} Error: {1}": "{0} Chyba: {1}"
+ },
+ "package": {
+ "command.api.getRemoteSources": "Načíst vzdálené prostředky",
+ "description": "Statické příspěvky a nástroje pro výběr v Gitu.",
+ "displayName": "Základ Gitu"
+ }
+ }
+}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-cs/translations/extensions/vscode.git.i18n.json b/i18n/vscode-language-pack-cs/translations/extensions/vscode.git.i18n.json
new file mode 100644
index 0000000000..b3931c13fa
--- /dev/null
+++ b/i18n/vscode-language-pack-cs/translations/extensions/vscode.git.i18n.json
@@ -0,0 +1,807 @@
+{
+ "": [
+ "--------------------------------------------------------------------------------------------",
+ "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."
+ ],
+ "version": "1.0.0",
+ "contents": {
+ "bundle": {
+ "\n\nAre you sure you want to discard ALL changes in {0} files?": "\n\nOpravdu chcete zahodit VŠECHNY změny v souborech (celkem {0})?",
+ "\n\nAre you sure you want to discard changes in '{0}'?": "\n\nOpravdu chcete zahodit změny v souboru {0}?",
+ "\n and {0} more file{1}...": "\n a {0} dalších souborů{1}...",
+ "\"{0}\" has fingerprint \"{1}\"": "„{0}“ má otisk „{1}“",
+ "$(info) Remote \"{0}\" has no tags.": "$(info) vzdálené \"{0}\" nemá žádné značky.",
+ "$(info) This repository has no stashes.": "$(info) Toto úložiště nemá žádné dočasné úložiště.",
+ "$(info) This repository has no tags.": "$(info) Toto úložiště nemá žádné značky.",
+ "$(info) This repository has no worktrees.": "$(info) Toto úložiště nemá žádné pracovní stromy.",
+ "A branch named \"{0}\" already exists": "Větev s názvem {0} už existuje",
+ "A git repository was found in the parent folders of the workspace or the open file(s). Would you like to open the repository?": "V nadřazených složkách pracovního prostoru nebo v otevřených souborech jsme našli úložiště Git. Chcete jej otevřít?",
+ "A worktree already exists at \"{0}\".": "Pracovní strom již v {0} existuje.",
+ "Absolute paths not supported in \"git.scanRepositories\" setting.": "V nastavení git.scanRepositories se nepodporují absolutní cesty.",
+ "Add Remote": "Přidat vzdálené úložiště",
+ "Add a new remote...": "Přidat nové vzdálené úložiště...",
+ "Add remote from URL": "Přidat vzdálené úložiště z adresy URL",
+ "Add remote from {0}": "Přidat vzdálené úložiště z {0}",
+ "Add to Workspace": "Přidat do pracovního prostoru",
+ "All Repositories": "Všechna úložiště",
+ "Always": "Vždy",
+ "Always Pull": "Vždy přijmout změny",
+ "Always Replace Local Tag(s)": "Vždy nahrazovat místní značky",
+ "Are you sure you want to DELETE the following untracked file: '{0}'?{1}": "Opravdu chcete odstranit následující nesledovaný soubor: '{0}'?{1}",
+ "Are you sure you want to DELETE the {0} untracked files?{1}": "Opravdu chcete ODSTRANIT nesledované soubory (celkem {0})?{1}",
+ "Are you sure you want to continue connecting?": "Opravdu chcete pokračovat v připojování?",
+ "Are you sure you want to create an empty commit?": "Opravdu chcete vytvořit prázdné potvrzení?",
+ "Are you sure you want to delete branch \"{0}\"? This action will permanently remove the branch reference from the repository.": "Opravdu chcete odstranit větev {0}? Tato akce trvale odebere odkaz na větev z úložiště.",
+ "Are you sure you want to delete tag \"{0}\"? This action will permanently remove the tag reference from the repository.": "Opravdu chcete odstranit značku {0}? Tato akce trvale odebere odkaz na značku z úložiště.",
+ "Are you sure you want to discard ALL changes in {0} files?\n\nThis is IRREVERSIBLE!\nYour current working set will be FOREVER LOST if you proceed.": "Opravdu chcete zahodit VŠECHNY změny v souborech (celkem {0})?\n\nTato akce je NEVRATNÁ!\nKdyž budete pokračovat, vaše aktuální pracovní sada se NAVŽDY ZTRATÍ.",
+ "Are you sure you want to discard changes in '{0}'?": "Opravdu chcete zahodit změny v souboru {0}?",
+ "Are you sure you want to drop ALL stashes? There are {0} stashes that will be subject to pruning, and MAY BE IMPOSSIBLE TO RECOVER.": "Opravdu chcete přemístit VŠECHNA dočasná úložiště? Existuje určité množství ( {0} ) dočasných úložišť, které podlehnou vyřazení, a JEJICH OBNOVENÍ NEMUSÍ BÝT MOŽNÉ.",
+ "Are you sure you want to drop ALL stashes? There is 1 stash that will be subject to pruning, and MAY BE IMPOSSIBLE TO RECOVER.": "Opravdu chcete přemístit VŠECHNA dočasná úložiště? Existuje 1 dočasné úložiště, které podlehne vyřazení, a JEHO OBNOVENÍ NEMUSÍ BÝT MOŽNÉ.",
+ "Are you sure you want to drop the stash: {0}?": "Opravdu chcete odstranit tuto položku dočasného ukládání: {0}?",
+ "Are you sure you want to restore '{0}'?": "Opravdu chcete obnovit soubor {0}?",
+ "Are you sure you want to restore ALL {0} files?": "Opravdu chcete obnovit VŠECHNY soubory (celkem {0})?",
+ "Are you sure you want to stage {0} files with merge conflicts?": "Opravdu chcete připravit soubory (celkem {0}) s konflikty sloučení?",
+ "Are you sure you want to stage {0} with merge conflicts?": "Opravdu chcete připravit soubor {0} s konflikty sloučení?",
+ "Ask Me Later": "Požádat později",
+ "Branch \"{0}\" already exists": "Větev {0} již existuje.",
+ "Branch \"{0}\" is already checked out in the current repository.": "Větev „{0}“ je již rezervována v aktuálním úložišti.",
+ "Branch \"{0}\" is already checked out in the current window.": "Větev {0} je již rezervována v aktuálním okně.",
+ "Branch \"{0}\" is already checked out in the worktree at \"{1}\".": "Větev {0} je již rezervována v pracovním stromu na {1}.",
+ "Branch name": "Název větve",
+ "Branch name needs to match regex: {0}": "Název větve musí odpovídat regulárnímu výrazu: {0}.",
+ "Branches": "Větve",
+ "Can't force push refs to remote. The tip of the remote-tracking branch has been updated since the last checkout. Try running \"Pull\" first to pull the latest changes from the remote branch first.": "Nejde vynutit vložení odkazů do vzdáleného úložiště. Tip větve vzdáleného sledování se od poslední rezervace aktualizoval. Pokud chcete nejdřív přijmout nejnovější změny ze vzdálené větve, zkuste nejdřív spustit příkaz Přijmout změny.",
+ "Can't push refs to remote. Try running \"Pull\" first to integrate your changes.": "Odkazy nelze nasdílet do vzdáleného úložiště. Před integrací změn zkuste nejdříve spustit příkaz Pull.",
+ "Can't undo because HEAD doesn't point to any commit.": "Nelze vrátit zpět, protože oddíl HEAD neodkazuje na žádné potvrzení.",
+ "Changes": "Změny",
+ "Checking Out Branch/Tag...": "Probíhá přechod na aktuální větev/značku…",
+ "Checking Out Changes...": "Probíhá přechod na aktuální změny…",
+ "Checkout Branch/Tag...": "Přechod na aktuální větev nebo značku…",
+ "Choose Folder...": "Zvolit složku...",
+ "Choose a folder to clone {0} into": "Zvolte složku, do které chcete naklonovat {0}.",
+ "Choose a repository": "Zvolte úložiště.",
+ "Choose which repository to clone": "Zvolte, které úložiště se má klonovat.",
+ "Choose which repository to publish": "Zvolte, které úložiště se má publikovat.",
+ "Clear whitespace characters": "Vymazat prázdné znaky",
+ "Clone again": "Znovu klonovat",
+ "Clone from URL": "Klonovat z adresy URL",
+ "Clone from {0}": "Klonovat z {0}",
+ "Cloning git repository \"{0}\"...": "Klonuje se úložiště Git {0}...",
+ "Commit": "Potvrdit",
+ "Commit & Push Changes": "Potvrdit a nasdílet změny",
+ "Commit & Sync Changes": "Potvrdit a synchronizovat změny",
+ "Commit Anyway": "Přesto potvrdit",
+ "Commit Changes": "Potvrdit změny",
+ "Commit Changes on \"{0}\"": "Potvrdit změny v: {0}",
+ "Commit Changes to New Branch": "Potvrdit změny do nové větve",
+ "Commit Hash": "Hodnota hash potvrzení",
+ "Commit message": "Zpráva o potvrzení",
+ "Commit operation was cancelled due to empty commit message.": "Operace potvrzení se zrušila, protože zpráva potvrzení byla prázdná.",
+ "Commit to New Branch & Push Changes": "Potvrdit změny do nové větve a nasdílet změny",
+ "Commit to New Branch & Synchronize Changes": "Potvrdit do nové větve a synchronizovat změny",
+ "Commit to a New Branch": "Potvrdit do nové větve",
+ "Commits without verification are not allowed, please enable them with the \"git.allowNoVerifyCommit\" setting.": "Potvrzení bez ověření nejsou povolená. Povolte je prosím nastavením git.allowNoVerifyCommit.",
+ "Committing & Pushing Changes...": "Potvrzování a sdílení změn...",
+ "Committing & Synchronizing Changes...": "Potvrzování a synchronizace změn…",
+ "Committing Changes to New Branch...": "Potvrzují se změny do nové větve...",
+ "Committing Changes...": "Potvrzují se změny...",
+ "Committing to New Branch & Pushing Changes...": "Potvrzování změn do nové větve a nasdílení změn...",
+ "Committing to New Branch & Synchronizing Changes...": "Potvrzování změn do nové větve a synchronizace změn…",
+ "Conflict: Added By Them": "Konflikt: Přidáno protistranou",
+ "Conflict: Added By Us": "Konflikt: Přidáno místní stranou",
+ "Conflict: Both Added": "Konflikt: Obojí přidáno",
+ "Conflict: Both Deleted": "Konflikt: Obojí odstraněno",
+ "Conflict: Both Modified": "Konflikt: Obojí změněno",
+ "Conflict: Deleted By Them": "Konflikt: Odstraněno protistranou",
+ "Conflict: Deleted By Us": "Konflikt: Odstraněno místní stranou",
+ "Continue Merge": "Pokračovat ve slučování",
+ "Continue Rebase": "Pokračovat v přenesení změn",
+ "Continuing Merge...": "Pokračuje se ve slučování...",
+ "Continuing Rebase...": "Pokračuje se v přenesení změn...",
+ "Copy Commit Hash": "Kopírovat hodnotu hash potvrzení",
+ "Could not clone your repository as Git is not installed.": "Úložiště se nepovedlo naklonovat, protože není nainstalovaný Git.",
+ "Create Empty Commit": "Vytvořit prázdné potvrzení",
+ "Create New Branch": "Vytvořit novou větev",
+ "Current": "Aktuální",
+ "Current commit message only contains whitespace characters": "Aktuální zpráva potvrzení obsahuje pouze prázdné znaky.",
+ "Delete All {0} Files": "Odstranit všechny soubory {0}",
+ "Delete Branch": "Odstranit větev",
+ "Delete File": "Odstranit soubor",
+ "Delete Tag": "Odstranit značku",
+ "Deleted": "Odstraněno",
+ "Discard 1 Tracked File": "Zahodit 1 sledovaný soubor",
+ "Discard All {0} Files": "Zahodit všechny soubory (celkem {0})",
+ "Discard All {0} Tracked Files": "Zahodit všechny sledované soubory (celkem {0})",
+ "Discard File": "Zahodit soubor",
+ "Don't Pull": "Nepřijímat změny",
+ "Don't Show Again": "Znovu nezobrazovat",
+ "Download Git": "Stáhnout Git",
+ "Enables the following features: {0}": "Povolí následující funkce: {0}",
+ "Failed to authenticate to git remote.": "Selhalo ověření ve vzdáleném úložišti Git.",
+ "Failed to authenticate to git remote:\n\n{0}": "Selhalo ověření ve vzdáleném úložišti Git:\n\n{0}",
+ "Failed to delete using the Recycle Bin. Do you want to permanently delete instead?": "Odstranění pomocí koše selhalo. Chcete místo toho provést trvalé odstranění?",
+ "Failed to delete using the Trash. Do you want to permanently delete instead?": "Odstranění pomocí koše selhalo. Chcete místo toho provést trvalé odstranění?",
+ "Failed to open changes between \"{0}\" and \"{1}\": {2}": "Nepovedlo se otevřít změny mezi {0} a {1}: {2}",
+ "File \"{0}\" was deleted by them and modified by us.\n\nWhat would you like to do?": "Protistrana soubor {0} odstranila a místní strana ho upravila.\n\nCo chcete udělat?",
+ "File \"{0}\" was deleted by us and modified by them.\n\nWhat would you like to do?": "Místní strana soubor {0} odstranila a protistrana ho upravila.\n\nCo chcete udělat?",
+ "Force Checkout": "Vynutit rezervaci",
+ "Force Delete": "Vynutit odstranění",
+ "Force push is not allowed, please enable it with the \"git.allowForcePush\" setting.": "Vynucení nasdílení změn není povolené. Povolte ho prosím pomocí nastavení git.allowForcePush.",
+ "Git Blame Information": "Informace o Git Blame",
+ "Git History": "Historie Gitu",
+ "Git Local Changes (Index)": "Místní změny Gitu (index)",
+ "Git Local Changes (Working Tree)": "Místní změny Gitu (pracovní strom)",
+ "Git error": "Chyba Gitu",
+ "Git not found. Install it or configure it using the \"git.path\" setting.": "Git se nenašel. Nainstalujte ho nebo ho nakonfigurujte pomocí nastavení git.path.",
+ "Git repositories were found in the parent folders of the workspace or the open file(s). Would you like to open the repositories?": "V nadřazených složkách pracovního prostoru nebo v otevřených souborech jsme našli úložiště Git. Chcete je otevřít?",
+ "Git: {0}": "Git: {0}",
+ "HEAD version of \"{0}\" is not available.": "Verze {0} v oddílu HEAD není k dispozici.",
+ "Hard wrap all lines": "Pevně zalamovat všechny řádky",
+ "Hard wrap line": "Pevně zalamovat řádky",
+ "Ignored": "Ignorováno",
+ "Incoming": "Příchozí",
+ "Incoming Changes": "Příchozí změny",
+ "Incoming Changes (added)": "Příchozí změny (přidáno)",
+ "Incoming Changes (deleted)": "Příchozí změny (odstraněné)",
+ "Incoming Changes (modified)": "Příchozí změny (změněno)",
+ "Incoming Changes (renamed)": "Příchozí změny (přejmenováno)",
+ "Index Added": "Přidán index",
+ "Index Copied": "Zkopírován index",
+ "Index Deleted": "Odstraněn index",
+ "Index Modified": "Změněn index",
+ "Index Renamed": "Přejmenován index",
+ "Initialize Repository": "Inicializovat úložiště",
+ "Intent to Add": "Záměr, který se má přidat",
+ "Intent to Rename": "Záměr přejmenovat",
+ "Invalid branch name": "Neplatný název větve",
+ "It looks like the current branch \"{0}\" might have been rebased. Are you sure you still want to pull into it?": "Vypadá to, že se přenesly změny aktuální větve {0}. Opravdu stále chcete do této větve přijmout změny?",
+ "It looks like the current branch might have been rebased. Are you sure you still want to pull into it?": "Vypadá to, že se přenesly změny aktuální větve. Opravdu stále chcete do této větve přijmout změny?",
+ "It's not possible to change the commit message in the middle of a rebase. Please complete the rebase operation and use interactive rebase instead.": "Nemůžete změnit zprávu potvrzení v průběhu přenášení změn. Dokončete prosím operaci přenesení změn a místo toho použijte interaktivní přenesení změn.",
+ "Keep Our Version": "Zachovat verzi místní strany",
+ "Keep Their Version": "Zachovat verzi protistrany",
+ "Learn More": "Další informace",
+ "Make sure you configure your \"user.name\" and \"user.email\" in git.": "Nezapomeňte v Gitu nakonfigurovat user.name a user.e-mail.",
+ "Manage Unsafe Repositories": "Správa nebezpečných úložišť",
+ "Merge Changes": "Sloučit změny",
+ "Message": "Zpráva",
+ "Message (commit on \"{0}\")": "Zpráva (potvrdit na {0})",
+ "Message ({0} to commit on \"{1}\")": "Zpráva ({0} k potvrzení na {1})",
+ "Message ({0} to commit)": "Zpráva ({0} pro potvrzení)",
+ "Migrate Changes": "Migrovat změny",
+ "Modified": "Změněno",
+ "Move to Recycle Bin": "Přesunout do koše",
+ "Move to Trash": "Přesunout do koše",
+ "Never": "Nikdy",
+ "No": "Ne",
+ "No hunk found at cursor position.": "Na pozici kurzoru se nenašel žádný hunk.",
+ "No rebase in progress.": "Neprobíhá žádné přenesení změn.",
+ "Not Committed Yet": "Zatím nepotvrzeno",
+ "Not Committed Yet (Staged)": "Zatím nepotvrzeno (připravené)",
+ "OK": "OK",
+ "OK, Don't Ask Again": "OK, dotaz už příště nezobrazovat",
+ "OK, Don't Show Again": "OK, příště už nezobrazovat",
+ "Open": "Otevřít",
+ "Open Commit": "Otevřít potvrzení",
+ "Open Comparison": "Otevřít porovnání",
+ "Open Existing Repository Clone": "Otevřít existující klon úložiště",
+ "Open File": "Otevřít soubor",
+ "Open Git Log": "Otevřít protokol Gitu",
+ "Open Merge": "Otevřít sloučení",
+ "Open Repositories In Parent Folders": "Otevřít úložiště v nadřazených složkách.",
+ "Open Repository": "Otevřít úložiště",
+ "Open Settings": "Otevřít nastavení",
+ "Open Worktree in Current Window": "Otevřít pracovní strom v aktuálním okně",
+ "Open Worktree in New Window": "Otevřít pracovní strom v novém okně",
+ "Open in New Window": "Otevřít v novém okně",
+ "Optionally provide a stash message": "Volitelně můžete zadat zprávu pro dočasné úložiště.",
+ "Passphrase": "Heslo",
+ "Pick a branch to pull from": "Vyberte větev, ze které chcete přijmout změny.",
+ "Pick a provider to publish the branch \"{0}\" to:": "Vyberte zprostředkovatele, do kterého chcete publikovat větev {0}:",
+ "Pick a remote to publish the branch \"{0}\" to:": "Vyberte vzdálené úložiště, do kterého chcete publikovat větev {0}:",
+ "Pick a remote to pull the branch from": "Vyberte vzdálené úložiště, ze kterého chcete přijmout změny.",
+ "Pick a remote to remove": "Vyberte vzdálené úložiště, které chcete odebrat.",
+ "Pick a repository to mark as safe and open": "Vyberte úložiště, které chcete označit jako bezpečné a otevřené.",
+ "Pick a repository to open": "Vyberte úložiště, které chcete otevřít.",
+ "Pick a repository to reopen": "Vyberte úložiště, které chcete otevřít",
+ "Pick a stash to apply": "Vyberte dočasné úložiště, které se má použít.",
+ "Pick a stash to drop": "Vyberte dočasné úložiště, které se má zahodit.",
+ "Pick a stash to pop": "Vyberte dočasné úložiště, na které chcete přejít.",
+ "Pick a stash to view": "Vyberte dočasné úložiště, které chcete zobrazit.",
+ "Pick workspace folder to initialize git repo in": "Vyberte složku pracovního prostoru, kde chcete inicializovat úložiště Git.",
+ "Please check out a branch to push to a remote.": "Pokud chcete nasdílet změny do vzdálené úložiště, rezervujte prosím větev.",
+ "Please clean your repository working tree before checkout.": "Před rezervováním prosím vyčistěte pracovní strom úložiště.",
+ "Please provide a commit message": "Zadejte prosím zprávu potvrzení.",
+ "Please provide a message to annotate the tag": "Zadejte prosím zprávu pro anotaci značky.",
+ "Please provide a new branch name": "Zadejte prosím nový název větve.",
+ "Please provide a remote name": "Zadejte prosím název vzdáleného úložiště.",
+ "Please provide a tag name": "Zadejte prosím název značky.",
+ "Please provide a worktree path": "Zadejte prosím cestu k pracovnímu stromu.",
+ "Please provide the commit hash": "Zadejte prosím hodnotu hash potvrzení.",
+ "Proceed": "Pokračovat",
+ "Proceed with migrating changes to the current repository?": "Chcete pokračovat v migraci změn do aktuálního úložiště?",
+ "Publish Branch": "Publikovat větev",
+ "Publish Branch \"{0}\"/{Locked=\"Branch\"}Do not translate \"Branch\" as it is a git term": "Publikovat Branch {0}",
+ "Publish Branch/{Locked=\"Branch\"}Do not translate \"Branch\" as it is a git term": "Publikovat Branch",
+ "Publish to {0}": "Publikovat do {0}",
+ "Publish to...": "Publikovat do...",
+ "Publishing Branch \"{0}\".../{Locked=\"Branch\"}Do not translate \"Branch\" as it is a git term": "Publikuje se Branch {0}...",
+ "Publishing Branch.../{Locked=\"Branch\"}Do not translate \"Branch\" as it is a git term": "Branch se publikuje",
+ "Pull": "Přijetí změn",
+ "Pull {0} and push {1} commits between {2}/{3}": "Přijmout {0} a nasdílet {1} potvrzení mezi {2}/{3}",
+ "Pull {0} commits from {1}/{2}": "Přijmout {0} potvrzení z {1}/{2}",
+ "Push {0} commits to {1}/{2}": "Nasdílet {0} potvrzení do {1}/{2}",
+ "Rebasing": "Přenášení změn",
+ "Regenerate Branch Name": "Znovu vygenerovat název větve",
+ "Remote \"{0}\" already exists.": "Vzdálené úložiště {0} už existuje.",
+ "Remote branch at {0}": "Vzdálená větev v {0}",
+ "Remote name": "Název vzdáleného úložiště",
+ "Remote name format invalid": "Neplatný formát názvu vzdáleného úložiště",
+ "Remote tag at {0}": "Vzdálená značka na {0}",
+ "Reopen Closed Repositories": "Znovu otevřít zavřená úložiště",
+ "Replace Local Tag(s)": "Nahradit místní značky",
+ "Restore All {0} Files": "Obnovit všechny soubory {0}",
+ "Restore File": "Obnovit soubor",
+ "Save All & Commit Changes": "Uložit vše a potvrdit změny",
+ "Save All & Stash": "Uložit vše a dočasně uložit",
+ "Select Worktree Destination": "Vybrat cíl pracovního stromu",
+ "Select a branch or tag to checkout": "Vyberte větev nebo značku, kterou chcete rezervovat.",
+ "Select a branch or tag to create the new worktree from": "Vyberte větev nebo značku, ze které chcete vytvořit nový pracovní strom.",
+ "Select a branch or tag to merge from": "Vyberte větev nebo značku, ze kterých chcete provést sloučení.",
+ "Select a branch to checkout in detached mode": "Vyberte větev, která se má rezervovat v odpojeném režimu.",
+ "Select a branch to delete": "Vyberte větev, která se má odstranit.",
+ "Select a branch to rebase onto": "Vyberte větev, do které chcete přenést změny.",
+ "Select a ref to create the branch from": "Vyberte odkaz, ze kterého se má vytvořit větev",
+ "Select a reference to compare with": "Vyberte odkaz, se který chcete porovnat.",
+ "Select a remote branch to delete": "Vyberte vzdálenou větev, která se má odstranit.",
+ "Select a remote tag to delete": "Vyberte vzdálenou značku, která se má odstranit.",
+ "Select a remote to delete a tag from": "Vyberte vzdálené úložiště, ze kterého chcete značku odstranit.",
+ "Select a remote to fetch": "Vyberte vzdálené úložiště, které se má načíst.",
+ "Select a tag to delete": "Vyberte značku, která se má odstranit.",
+ "Select a worktree to delete": "Vyberte pracovní strom, který chcete odstranit",
+ "Select a worktree to migrate changes from": "Vyberte pracovní strom, ze kterého chcete migrovat změny.",
+ "Select as Repository Destination": "Vybrat jako cíl úložiště",
+ "Select as Worktree Destination": "Vyberte jako cíl pracovního stromu",
+ "Show Changes": "Zobrazit změny",
+ "Show Command Output": "Zobrazit výstup příkazu",
+ "Staged Changes": "Připravené změny",
+ "Stash & Checkout": "Dočasné uložit a rezervovat",
+ "Stash Anyway": "Přesto dočasně uložit",
+ "Stash message": "Zpráva k dočasnému úložišti",
+ "Stashed Changes": "Dočasně uložené změny",
+ "Successfully pushed.": "Změny byly úspěšně nasdíleny.",
+ "Synchronize Changes": "Synchronizovat změny",
+ "Synchronizing Changes...": "Synchronizují se změny...",
+ "Syncing. Cancelling may cause serious damages to the repository": "Probíhá synchronizace. Zrušení může způsobit vážné škody v úložišti.",
+ "Tag at {0}": "Značka v {0}",
+ "Tag name": "Název značky",
+ "Tags": "Značky",
+ "The \"{0}\" repository has {1} submodules which won't be opened automatically. You can still open each one individually by opening a file within.": "Úložiště {0} má dílčí moduly (celkem {1}), které se neotevřou automaticky. Každý dílčí modul můžete otevřít jednotlivě otevřením odpovídajícího souboru obsaženého v úložišti.",
+ "The \"{0}\" repository has {1} worktrees which won't be opened automatically. You can still open each one individually by opening a file within.": "Úložiště {0} má pracovní stromy (celkem {1}), které se neotevřou automaticky. Každý dílčí modul můžete otevřít jednotlivě otevřením odpovídajícího souboru obsaženého v úložišti.",
+ "The active branch cannot be deleted.": "Aktivní větev nelze odstranit.",
+ "The branch \"{0}\" has no remote branch. Would you like to publish this branch?": "Větev {0} nemá žádnou vzdálenou větev. Chcete tuto větev publikovat?",
+ "The branch \"{0}\" is not fully merged. Delete anyway?": "Větev {0} není úplně sloučená. Chcete ji přesto odstranit?",
+ "The changes are already present in the current branch.": "Změny jsou již obsaženy v aktuální větvi.",
+ "The current branch is not published to the remote. Would you like to publish it to access your changes elsewhere?": "Aktuální větev není publikována do vzdáleného úložiště. Chcete ji publikovat, abyste měli přístup k vašim změnám jinde?",
+ "The following file has unresolved diagnostics: '{0}'.\n\nHow would you like to proceed?": "Následující soubor obsahuje nerozpoznané diagnostiky: '{0}'.\n\nJak chcete pokračovat?",
+ "The following file has unsaved changes which won't be included in the commit if you proceed: {0}.\n\nWould you like to save it before committing?": "The following file has unsaved changes which won't be included in the commit if you proceed: {0}.\n\nWould you like to save it before committing?",
+ "The following file has unsaved changes which won't be included in the stash if you proceed: {0}.\n\nWould you like to save it before stashing?": "Následující soubor obsahuje neuložené změny, které v případě, že budete pokračovat, nebudou zahrnuté do dočasného uložení: {0}.\n\nChcete soubor před dočasným uložením uložit?",
+ "The git repositories in the current folder are potentially unsafe as the folders are owned by someone other than the current user.": "Úložiště Git v aktuální složce jsou potenciálně nebezpečná, protože složky vlastní jiný uživatel než aktuální uživatel.",
+ "The git repository at \"{0}\" has too many active changes, only a subset of Git features will be enabled.": "Úložiště Git v umístění {0} obsahuje příliš mnoho aktivních změn. Bude povolena pouze podmnožina funkcí Gitu.",
+ "The git repository in the current folder is potentially unsafe as the folder is owned by someone other than the current user.": "Úložiště Git v aktuální složce je potenciálně nebezpečné, protože složku vlastní jiný uživatel než aktuální uživatel.",
+ "The last commit was a merge commit. Are you sure you want to undo it?": "Poslední potvrzení je potvrzení sloučení. Opravdu chcete akci vrátit zpět?",
+ "The new branch will be \"{0}\"": "Nová větev bude {0}",
+ "The remote branch of the active branch cannot be deleted.": "Vzdálenou větev aktivní větve nelze odstranit.",
+ "The repository does not have any changes.": "Úložiště neobsahuje žádné změny.",
+ "The repository does not have any commits. Please make an initial commit before creating a stash.": "Úložiště nemá žádná potvrzení. Před vytvořením položky dočasného ukládání proveďte počáteční potvrzení.",
+ "The repository does not have any staged changes.": "Úložiště neobsahuje žádné připravené změny.",
+ "The repository does not have any untracked changes.": "Úložiště neobsahuje žádné nesledované změny.",
+ "The selection range does not contain any changes.": "Oblast výběru neobsahuje žádné změny.",
+ "The source repository could not be found.": "Zdrojové úložiště nebylo nalezeno.",
+ "The worktree contains modified or untracked files. Do you want to force delete?": "Pracovní strom obsahuje upravené nebo nesledované soubory. Chcete vynutit odstranění?",
+ "There are known issues with the installed Git \"{0}\". Please update to Git >= 2.27 for the git features to work correctly.": "Nainstalovaný Git {0} má známé problémy. Aktualizujte si prosím Git na verzi >= 2.27, aby funkce Git fungovaly správně.",
+ "There are merge conflicts from migrating changes. Please resolve them before committing.": "Při migraci změn došlo ke konfliktům sloučení. Před potvrzením je prosím vyřešte.",
+ "There are merge conflicts while applying the stash. Please resolve them before committing your changes.": "Při použití dočasného ukládání došlo ke konfliktům sloučení. Před potvrzením změn je prosím vyřešte.",
+ "There are merge conflicts. Please resolve them before committing your changes.": "Došlo ke konfliktům sloučení. Před potvrzením změn je prosím vyřešte.",
+ "There are no available repositories": "K dispozici nejsou žádná úložiště.",
+ "There are no available repositories matching the filter": "Filtr neodpovídá žádným dostupným úložištím",
+ "There are no changes between \"{0}\" and \"{1}\".": "Mezi {0} a {1} nedošlo k žádným změnám.",
+ "There are no changes in the selected worktree to migrate.": "Ve vybraném pracovním stromu nejsou žádné změny, které by bylo možné migrovat.",
+ "There are no changes to commit.": "Nejsou k dispozici žádné změny, které by bylo možné potvrdit.",
+ "There are no changes to stash.": "Neexistují žádné změny, které by bylo možné uložit do dočasného úložiště.",
+ "There are no staged changes to commit.\n\nWould you like to stage all your changes and commit them directly?": "Neexistují žádné připravené změny, které by bylo možné potvrdit.\n\nChcete připravit všechny své změny a potvrdit je přímo?",
+ "There are no staged changes to stash.": "Nejsou k dispozici žádné připravené změny, které by bylo možné dočasně uložit.",
+ "There are no stashes in the repository.": "V úložišti nejsou žádná dočasná úložiště.",
+ "There are {0} files that have unresolved diagnostics.\n\nHow would you like to proceed?": "Existují {0} soubory, které mají nevyřešenou diagnostiku.\n\nJak chcete pokračovat?",
+ "There are {0} unsaved files.\n\nWould you like to save them before committing?": "There are {0} unsaved files.\n\nWould you like to save them before committing?",
+ "There are {0} unsaved files.\n\nWould you like to save them before stashing?": "Existují neuložené soubory (celkem {0}).\n\nChcete je před dočasným uložením uložit?",
+ "There were merge conflicts while cherry picking the changes. Resolve the conflicts before committing them.": "Při výběru změn došlo ke konfliktům sloučení. Před jejich potvrzením prosím konflikty vyřešte.",
+ "This action will pull and push commits from and to \"{0}/{1}\".": "Tato akce přijme a nasdílí potvrzení z {0} / do {1}.",
+ "This is IRREVERSIBLE!\nThese files will be FOREVER LOST if you proceed.": "Tato akce je NEVRATNÁ!\nKdyž budete pokračovat, tyto soubory se NAVŽDY ZTRATÍ.",
+ "This is IRREVERSIBLE!\nThis file will be FOREVER LOST if you proceed.": "Tato akce je NEVRATNÁ!\nPokud budete pokračovat, bude tento soubor navždy ztracen.",
+ "This repository has no remotes configured to fetch from.": "Pro toto úložiště není nakonfigurované žádné vzdálené úložiště pro načítání.",
+ "This will apply the worktree's changes to this repository and discard changes in the worktree.\nThis is IRREVERSIBLE!": "Tato akce použije změny pracovního stromu na toto úložiště a zahodí změny v pracovním stromu.\nTato akce je NEVRATNÁ!",
+ "This will create a Git repository in \"{0}\". Are you sure you want to continue?": "Tato akce vytvoří úložiště Git v {0}. Opravdu chcete pokračovat?",
+ "Too many changes were detected. Only the first {0} changes will be shown below.": "Bylo zjištěno příliš mnoho změn. Níže se zobrazí jenom první {0} změny.",
+ "Type Changed": "Typ změněn",
+ "Unable to pull from remote repository due to conflicting tag(s): {0}. Would you like to resolve the conflict by replacing the local tag(s)?": "Nelze načíst ze vzdáleného úložiště z důvodu konfliktních značek: {0}. Chcete konflikt vyřešit nahrazením místních značek?",
+ "Uncommitted Changes": "Nepotvrzené změny",
+ "Undo merge commit": "Vrátit zpět potvrzení sloučení",
+ "Untracked": "Nesledováno",
+ "Untracked Changes": "Nesledované změny",
+ "Update Git": "Aktualizovat Git",
+ "View Problems": "Zobrazit problémy",
+ "Workspace": "Pracovní prostor",
+ "Workspace: {0}": "Pracovní prostor: {0}",
+ "Worktree": "Pracovní strom",
+ "Worktree path": "Cesta k pracovnímu stromu",
+ "Would you like to add \"{0}\" to .gitignore?": "Chcete přidat {0} do souboru .gitignore?",
+ "Would you like to open the initialized repository, or add it to the current workspace?": "Chcete inicializované úložiště otevřít nebo ho přidat do aktuálního pracovního prostoru?",
+ "Would you like to open the initialized repository?": "Chcete otevřít inicializované úložiště?",
+ "Would you like to open the repository, or add it to the current workspace?": "Chcete úložiště otevřít nebo ho přidat do aktuálního pracovního prostoru?",
+ "Would you like to open the repository?": "Chcete otevřít úložiště?",
+ "Would you like to publish this repository to continue working on it elsewhere?": "Chcete toto úložiště publikovat a pokračovat v práci na něm jinde?",
+ "Would you like {0} to [periodically run \"git fetch\"]({1})?": "Chcete, aby funkce {0} [pravidelně spouštěla „git fetch“]({1})?",
+ "Yes": "Ano",
+ "Yes, Don't Show Again": "Ano, příště už nezobrazovat",
+ "You": "Vy",
+ "You are about to commit your changes without verification, this skips pre-commit hooks and can be undesirable.\n\nAre you sure to continue?": "Chystáte se potvrdit změny bez ověření. Tím přeskočíte hooky typu pre-commit, což může být nežádoucí.\n\nOpravdu chcete pokračovat?",
+ "You are about to force push your changes, this can be destructive and could inadvertently overwrite changes made by others.\n\nAre you sure to continue?": "Chystáte se vynutit nasdílení svých změn. Může to být destruktivní akce, při které se můžou nechtěně přepsat změny provedené jinými uživateli.\n\nOpravdu chcete pokračovat?",
+ "You are trying to commit to a protected branch and you might not have permission to push your commits to the remote.\n\nHow would you like to proceed?": "Pokoušíte se potvrdit změny do chráněné větve a možná nemáte oprávnění k odeslání změn do vzdáleného úložiště.\n\nJak chcete pokračovat?",
+ "You can restore these files from the Recycle Bin.": "Tyto soubory můžete obnovit z koše.",
+ "You can restore these files from the Trash.": "Tyto soubory můžete obnovit z koše.",
+ "You can restore this file from the Recycle Bin.": "Tento soubor můžete obnovit z koše.",
+ "You can restore this file from the Trash.": "Tento soubor můžete obnovit z koše.",
+ "You cannot delete the worktree you are currently in. Please switch to the main repository first.": "Pracovní strom, ve který se právě nacházíte, nelze odstranit. Nejprve prosím přepněte do hlavního úložiště.",
+ "You seem to have git \"{0}\" installed. Code works best with git >= 2": "Zdá se, že máte nainstalované úložiště Git {0}. Code funguje nejlépe s úložištěm Git verze >= 2.",
+ "Your local changes to the following files would be overwritten by merge:\n {0}\n\nPlease stage, commit, or stash your changes in the repository before migrating changes.": "Vaše místní změny v následujících souborech by byly přepsány sloučením:\n {0}\n\nPřed migrací změn prosím proveďte přípravu, potvrzení nebo dočasné uložení změn v úložišti.",
+ "Your local changes would be overwritten by checkout.": "Rezervací se přepíšou vaše místní změny.",
+ "Your repository has no remotes configured to publish to.": "Pro vaše úložiště není nakonfigurované žádné vzdálené úložiště pro publikování.",
+ "Your repository has no remotes configured to pull from.": "Pro vaše úložiště není nakonfigurované žádné vzdálené úložiště pro přijetí změn.",
+ "Your repository has no remotes configured to push to.": "Pro vaše úložiště není nakonfigurované žádné vzdálené úložiště pro nasdílení změn.",
+ "Your repository has no remotes.": "Vaše úložiště nemá žádné vzdálené úložiště.",
+ "[main] Log level: {0}": "[hlavní] Úroveň protokolu: {0}",
+ "[main] Skipped found git in: \"{0}\"": "[hlavní] Vynechání nalezeného úložiště Git v: {0}",
+ "[main] Using git \"{0}\" from \"{1}\"": "[hlavní] Používá se úložiště Git {0} z {1}",
+ "[main] Validating found git in: \"{0}\"": "[hlavní] Ověřování nalezeného úložiště Git v: {0}",
+ "branches": "větve",
+ "in {0}": "za {0}",
+ "no": "ne",
+ "now": "teď",
+ "remote branches": "vzdálené větve",
+ "tags": "značky",
+ "yes": "ano",
+ "{0} (Deleted)": "{0} (odstraněno)",
+ "{0} (Index)": "{0} (index)",
+ "{0} (Intent to add)": "{0} (záměr, který se má přidat)",
+ "{0} (Ours)": "{0} (místní strana)",
+ "{0} (Theirs)": "{0} (protistrana)",
+ "{0} (Type changed)": "{0} (Typ změněn)",
+ "{0} (Untracked)": "{0} (nesledováno)",
+ "{0} (Working Tree)": "{0} (pracovní strom)",
+ "{0} ({1})": "{0} ({1})",
+ "{0} ({1}) ș {0} ({2})": "{0} ({1}) ș {0} ({2})",
+ "{0} Checkout detached...": "{0} Rezervace se odpojila...",
+ "{0} Commit": "{0} Potvrdit",
+ "{0} Commit & Push": "{0} Potvrdit a odeslat",
+ "{0} Commit & Sync": "{0} Potvrdit a synchronizovat",
+ "{0} Commit (Amend)": "{0} potvrzení (pozměnit)",
+ "{0} Continue": "{0} Pokračovat",
+ "{0} Create new branch from...": "{0} Vytvořit novou větev z…",
+ "{0} Create new branch...": "{0} Vytvořit novou větev…",
+ "{0} Fetch all remotes": "{0} Načíst všechna vzdálená úložiště",
+ "{0} Publish Branch/{Locked=\"Branch\"}Do not translate \"Branch\" as it is a git term": "{0} Publikovat Branch",
+ "{0} Sync Changes{1}{2}": "{0} Synchronizovat změny{1}{2}",
+ "{0} characters over {1} in current line": "Počet znaků nad {1} na aktuálním řádku: {0}",
+ "{0} day": "{0} den",
+ "{0} day ago": "před {0} dnem",
+ "{0} days": "{0} d.",
+ "{0} days ago": "před {0} dny",
+ "{0} deletions{1}": "{0} odstranění{1}",
+ "{0} deletion{1}": "{0} odstranění{1}",
+ "{0} file changed": "Počet změněných souborů: {0}",
+ "{0} files changed": "Počet změněných souborů: {0}",
+ "{0} hour": "{0} h",
+ "{0} hour ago": "před {0} hodinou",
+ "{0} hours": "{0} h",
+ "{0} hours ago": "před {0} hodinami",
+ "{0} hr": "{0} h",
+ "{0} hr ago": "před {0} h",
+ "{0} hrs": "{0} h",
+ "{0} hrs ago": "před {0} h",
+ "{0} insertions{1}": "{0} vložení{1}",
+ "{0} insertion{1}": "{0} vložení{1}",
+ "{0} min": "{0} min",
+ "{0} min ago": "před {0} min.",
+ "{0} mins": "{0} min",
+ "{0} mins ago": "před {0} min",
+ "{0} minute": "{0} minuta",
+ "{0} minute ago": "před {0} minutou",
+ "{0} minutes": "{0} min",
+ "{0} minutes ago": "před {0} minutami",
+ "{0} mo": "{0} měs.",
+ "{0} mo ago": "před {0} měs.",
+ "{0} month": "{0} měsíc",
+ "{0} month ago": "před {0} měsícem",
+ "{0} months": "{0} měs.",
+ "{0} months ago": "před {0} měsíci",
+ "{0} mos": "{0} měs.",
+ "{0} mos ago": "před {0} měs.",
+ "{0} sec": "{0} s",
+ "{0} sec ago": "před {0} s",
+ "{0} second": "{0} s",
+ "{0} second ago": "před {0} sekundou",
+ "{0} seconds": "{0} s",
+ "{0} seconds ago": "před {0} sekundami",
+ "{0} secs": "{0} s",
+ "{0} secs ago": "před {0} s",
+ "{0} week": "{0} týden",
+ "{0} week ago": "před {0} týdnem",
+ "{0} weeks": "{0} týd.",
+ "{0} weeks ago": "před {0} týdny",
+ "{0} wk": "{0} týd.",
+ "{0} wk ago": "před {0} týd.",
+ "{0} wks": "{0} týd.",
+ "{0} wks ago": "před {0} týd.",
+ "{0} year": "{0} rok",
+ "{0} year ago": "před {0} rokem",
+ "{0} years": "{0} r.",
+ "{0} years ago": "před {0} lety",
+ "{0} yr": "{0} r.",
+ "{0} yr ago": "před {0} r.",
+ "{0} yrs": "{0} r.",
+ "{0} yrs ago": "před {0} r.",
+ "{0} ș {1}": "{0} ș {1}"
+ },
+ "package": {
+ "colors.added": "Barva pro přidané prostředky",
+ "colors.blameEditorDecoration": "Barva dekorace editoru blame",
+ "colors.conflict": "Barva pro prostředky s konflikty",
+ "colors.deleted": "Barva pro odstraněné prostředky",
+ "colors.ignored": "Barva pro ignorované prostředky",
+ "colors.incomingAdded": "Barva pro přidaný příchozí prostředek",
+ "colors.incomingDeleted": "Barva odstraněných příchozích prostředků.",
+ "colors.incomingModified": "Barva upraveného příchozího prostředku",
+ "colors.incomingRenamed": "Barva pro přejmenovaný příchozí prostředek",
+ "colors.modified": "Barva pro upravené prostředky",
+ "colors.renamed": "Barva pro přejmenované nebo zkopírované prostředky",
+ "colors.stageDeleted": "Barva pro odstraněné prostředky, které byly připraveny",
+ "colors.stageModified": "Barva pro změněné prostředky, které byly připraveny",
+ "colors.submodule": "Barva pro prostředky dílčího modulu",
+ "colors.untracked": "Barva pro nesledované prostředky",
+ "command.addRemote": "Přidat vzdálené úložiště...",
+ "command.api.getRemoteSources": "Načíst vzdálené prostředky",
+ "command.api.getRepositories": "Načíst úložiště",
+ "command.api.getRepositoryState": "Načíst stav úložiště",
+ "command.blameToggleEditorDecoration": "Přepnout dekorace Editor Git Blame",
+ "command.blameToggleStatusBarItem": "Přepnout položku stavového řádku Git Blame",
+ "command.branch": "Vytvořit větev...",
+ "command.branchFrom": "Vytvořit větev z...",
+ "command.checkout": "Přechod na aktuální…",
+ "command.checkoutDetached": "Rezervovat do (odpojeno)...",
+ "command.cherryPick": "Výběr určitých položek...",
+ "command.cherryPickAbort": "Přerušit výběr změn",
+ "command.clean": "Zahodit změny",
+ "command.cleanAll": "Zahodit všechny změny",
+ "command.cleanAllTracked": "Zahodit všechny sledované změny",
+ "command.cleanAllUntracked": "Zahodit všechny nesledované změny",
+ "command.clone": "Klonovat",
+ "command.cloneRecursive": "Klonovat (rekurzivně)",
+ "command.close": "Zavřít úložiště",
+ "command.closeAllDiffEditors": "Zavřít všechny editory rozdílů",
+ "command.closeAllUnmodifiedEditors": "Zavřít všechny nezměněné editory",
+ "command.closeOtherRepositories": "Zavřít ostatní úložiště",
+ "command.commit": "Potvrdit",
+ "command.commitAll": "Potvrdit vše",
+ "command.commitAllAmend": "Potvrdit vše (upravit)",
+ "command.commitAllAmendNoVerify": "Potvrdit vše (pozměnit, bez ověření)",
+ "command.commitAllNoVerify": "Potvrdit vše (bez ověření)",
+ "command.commitAllSigned": "Potvrdit vše (finálně verifikováno)",
+ "command.commitAllSignedNoVerify": "Potvrdit vše (odhlášení, bez ověření)",
+ "command.commitAmend": "Potvrdit (upravit)",
+ "command.commitAmendNoVerify": "Potvrdit (upravit, bez ověření)",
+ "command.commitEmpty": "Potvrdit prázdné",
+ "command.commitEmptyNoVerify": "Potvrdit prázdné (bez ověření)",
+ "command.commitMessageAccept": "Přijmout zprávu potvrzení",
+ "command.commitMessageDiscard": "Zahodit zprávu potvrzení",
+ "command.commitNoVerify": "Potvrdit (bez ověření)",
+ "command.commitSigned": "Potvrdit (odhlášeni, bez ověření)",
+ "command.commitSignedNoVerify": "Potvrdit (odhlášeni, bez ověření)",
+ "command.commitStaged": "Potvrdit připravené",
+ "command.commitStagedAmend": "Potvrdit připravené (upravit)",
+ "command.commitStagedAmendNoVerify": "Připraveno na potvrzení (pozměnit, bez ověření)",
+ "command.commitStagedNoVerify": "Připraveno na potvrzení (bez ověření)",
+ "command.commitStagedSigned": "Potvrdit připravené (finálně verifikováno)",
+ "command.commitStagedSignedNoVerify": "Připraveno na potvrzení (odhlášení, bez ověření)",
+ "command.compareWithWorkspace": "Porovnání s pracovním prostorem",
+ "command.continueInLocalClone": "Místně klonovat úložiště a otevřít na ploše...",
+ "command.continueInLocalClone.qualifiedName": "Pokračovat v práci v novém místním klonu",
+ "command.createFrom": "Vytvořit z...",
+ "command.createTag": "Vytvořit značku…",
+ "command.createWorktree": "Vytvořte pracovní strom...",
+ "command.deleteBranch": "Odstranit větev...",
+ "command.deleteRef": "Odstranit",
+ "command.deleteRemoteBranch": "Odstranit vzdálenou větev...",
+ "command.deleteRemoteTag": "Odstranit vzdálenou značku…",
+ "command.deleteTag": "Odstranit značku…",
+ "command.deleteWorktree": "Odstranit pracovní strom...",
+ "command.deleteWorktree2": "Odstranit pracovní strom",
+ "command.fetch": "Načíst",
+ "command.fetchAll": "Načíst ze všech vzdálených úložišť",
+ "command.fetchPrune": "Načíst (vyřadit)",
+ "command.git.acceptMerge": "Dokončit sloučení",
+ "command.git.openMergeEditor": "Vyřešit v editoru sloučení",
+ "command.git.runGitMerge": "Výpočetní prostředky jsou v konfliktu s Gitem",
+ "command.git.runGitMergeDiff3": "Výpočetní prostředky jsou v konfliktu s Gitem (Diff3)",
+ "command.graphCheckout": "Přechod na aktuální",
+ "command.graphCheckoutDetached": "Přechod na aktuální (odpojeno)",
+ "command.graphCherryPick": "Výběr určitých položek",
+ "command.graphCompareRef": "Porovnat s...",
+ "command.graphCompareWithMergeBase": "Porovnat se základem sloučení",
+ "command.graphCompareWithRemote": "Porovnat se vzdálenou větví",
+ "command.graphDeleteBranch": "Odstranit větev",
+ "command.graphDeleteTag": "Odstranit značku",
+ "command.ignore": "Přidat do souboru .gitignore",
+ "command.init": "Inicializovat úložiště",
+ "command.manageUnsafeRepositories": "Správa nebezpečných úložišť",
+ "command.merge": "Sloučit...",
+ "command.merge2": "Sloučit",
+ "command.mergeAbort": "Přerušit slučování",
+ "command.migrateWorktreeChanges": "Migrovat změny pracovního stromu...",
+ "command.openAllChanges": "Otevřít všechny změny",
+ "command.openChange": "Otevřít změny",
+ "command.openFile": "Otevřít soubor",
+ "command.openHEADFile": "Otevřít soubor (HEAD)",
+ "command.openRepositoriesInParentFolders": "Otevřít úložiště v nadřazených složkách.",
+ "command.openRepository": "Otevřít úložiště",
+ "command.openWorktree": "Otevřít pracovní strom v aktuálním okně",
+ "command.openWorktreeInNewWindow": "Otevřít pracovní strom v novém okně",
+ "command.publish": "Publikovat větev...",
+ "command.pull": "Přijetí změn",
+ "command.pullFrom": "Přijmout změny z...",
+ "command.pullRebase": "Přijmout změny (přenést)",
+ "command.push": "Nasdílení změn",
+ "command.pushFollowTags": "Nasdílet změny (sledovat značky)",
+ "command.pushFollowTagsForce": "Nasdílet změny (sledovat značky, vynutit)",
+ "command.pushForce": "Nasdílet změny (vynutit)",
+ "command.pushTags": "Nasdílet změny značek",
+ "command.pushTo": "Nasdílet změny do...",
+ "command.pushToForce": "Nasdílet změny do... (vynutit)",
+ "command.rebase": "Přenést změny větve...",
+ "command.rebase2": "Přenést změny",
+ "command.rebaseAbort": "Přerušit přenášení změn",
+ "command.refresh": "Aktualizovat",
+ "command.removeRemote": "Odebrat vzdálené úložiště",
+ "command.rename": "Přejmenovat",
+ "command.renameBranch": "Přejmenovat větev...",
+ "command.reopenClosedRepositories": "Znovu otevřít zavřená úložiště…",
+ "command.restoreCommitTemplate": "Obnovit šablonu potvrzení",
+ "command.revealFileInOS.linux": "Otevřít nadřazenou složku",
+ "command.revealFileInOS.mac": "Zobrazit ve Finderu",
+ "command.revealFileInOS.windows": "Zobrazit v Průzkumníkovi souborů",
+ "command.revealInExplorer": "Zobrazit v zobrazení Průzkumníka",
+ "command.revertChange": "Obnovit změnu",
+ "command.revertSelectedRanges": "Obnovit vybrané rozsahy",
+ "command.showOutput": "Zobrazit výstup Gitu",
+ "command.stage": "Připravit změny",
+ "command.stageAll": "Připravit všechny změny",
+ "command.stageAllMerge": "Připravit všechny změny sloučení",
+ "command.stageAllTracked": "Připravit všechny sledované změny",
+ "command.stageAllUntracked": "Připravit všechny nesledované změny",
+ "command.stageBlock": "Blok fáze",
+ "command.stageChange": "Připravit změnu",
+ "command.stageSelectedRanges": "Připravit vybrané rozsahy",
+ "command.stageSelection": "Výběr fáze",
+ "command.stash": "Dočasné úložiště",
+ "command.stashApply": "Použít dočasné úložiště...",
+ "command.stashApplyEditor": "Použít dočasné úložiště",
+ "command.stashApplyLatest": "Použít poslední dočasné úložiště",
+ "command.stashDrop": "Zrušit dočasné úložiště...",
+ "command.stashDropAll": "Přemístit všechna dočasná úložiště",
+ "command.stashDropEditor": "Zrušit dočasné úložiště",
+ "command.stashIncludeUntracked": "Dočasně uložit (zahrnout nesledované)",
+ "command.stashPop": "Přejít na dočasné úložiště...",
+ "command.stashPopEditor": "Přejít na dočasné úložiště",
+ "command.stashPopLatest": "Přejít na nejnovější dočasné úložiště",
+ "command.stashStaged": "Dočasné ukládání připravené",
+ "command.stashView": "Zobrazit dočasné úložiště...",
+ "command.sync": "Synchronizovat",
+ "command.syncRebase": "Synchronizovat (přenést změny)",
+ "command.timelineCompareWithSelected": "Porovnat s vybraným",
+ "command.timelineCopyCommitId": "Kopírovat ID potvrzení změn",
+ "command.timelineCopyCommitMessage": "Kopírovat zprávu potvrzení",
+ "command.timelineOpenDiff": "Otevřít změny",
+ "command.timelineSelectForCompare": "Vybrat pro porovnání",
+ "command.undoCommit": "Vrátit zpět poslední potvrzení",
+ "command.unstage": "Zrušit přípravu změn",
+ "command.unstageAll": "Zrušit přípravu všech změn",
+ "command.unstageChange": "Zrušit přípravu změny",
+ "command.unstageSelectedRanges": "Zrušit přípravu vybraných rozsahů",
+ "command.viewChanges": "Otevřít změny",
+ "command.viewCommit": "Otevřít potvrzení",
+ "command.viewStagedChanges": "Otevřít připravené změny",
+ "command.viewUntrackedChanges": "Otevřít nesledované změny",
+ "config.allowForcePush": "Určuje, jestli je povoleno vynucené nasdílení změn (se zapůjčením nebo bez něj).",
+ "config.allowNoVerifyCommit": "Určuje, jestli jsou povolena potvrzení bez spouštění hooků typu pre-commit a commit-msg.",
+ "config.alwaysShowStagedChangesResourceGroup": "Vždy zobrazovat skupinu prostředků Připravené změny",
+ "config.alwaysSignOff": "Řídí příznak finální verifikace pro všechna potvrzení změn.",
+ "config.autoRepositoryDetection": "Nakonfiguruje, kdy se mají automaticky detekovat úložiště.",
+ "config.autoRepositoryDetection.false": "Zakáže automatické prohledávání úložiště.",
+ "config.autoRepositoryDetection.openEditors": "Umožňuje vyhledat nadřazené složky otevřených souborů.",
+ "config.autoRepositoryDetection.subFolders": "Umožňuje vyhledat podsložky otevřené složky.",
+ "config.autoRepositoryDetection.true": "Umožňuje vyhledat podsložky aktuálně otevřené složky a nadřazené složky otevřených souborů.",
+ "config.autoStash": "Umožňuje dočasně uložit změny před přijetím změn a po úspěšném přijetí změn je obnovit.",
+ "config.autofetch": "Když se nastaví na true, potvrzení se budou automaticky načítat z výchozího vzdáleného úložiště aktuálního úložiště Gitu. Nastavením na all se načtou všechna vzdálená úložiště.",
+ "config.autofetchPeriod": "Doba trvání v sekundách mezi každým automatickým načtením z úložiště Git, když je povolené nastavení #git.autofetch#",
+ "config.autorefresh": "Určuje, jestli je povolena automatická aktualizace.",
+ "config.blameEditorDecoration.enabled": "Určuje, jestli se mají v editoru zobrazovat informace o blame pomocí dekorací editoru.",
+ "config.blameEditorDecoration.template": "Šablona pro dekoraci editoru informací o blame Podporované proměnné:\r\n\r\n* `hash`: hodnota hash potvrzení\r\n\r\n* `hashShort`: prvních N znaků hodnoty hash potvrzení podle `#git.commitShortHashLength#`\r\n\r\n* `subject`: první řádek zprávy potvrzení\r\n\r\n* `authorName`: jméno autora\r\n\r\n* `authorEmail`: e-mail autora\r\n\r\n* `authorDate`: datum autora\r\n\r\n* `authorDateAgo`: časový rozdíl mezi dnešním datem a datem autora\r\n\r\n",
+ "config.blameStatusBarItem.enabled": "Určuje, jestli se mají na stavovém řádku zobrazovat informace o blame.",
+ "config.blameStatusBarItem.template": "Šablona pro položku stavového řádku s informacemi o blame Podporované proměnné:\r\n\r\n* `hash`: hodnota hash potvrzení\r\n\r\n* `hashShort`: prvních N znaků hodnoty hash potvrzení podle `#git.commitShortHashLength#`\r\n\r\n* `subject`: první řádek zprávy potvrzení\r\n\r\n* `authorName`: jméno autora\r\n\r\n* `authorEmail`: e-mail autora\r\n\r\n* `authorDate`: datum autora\r\n\r\n* `authorDateAgo`: časový rozdíl mezi dnešním datem a datem autora\r\n\r\n",
+ "config.branchPrefix": "Předpona použitá při vytváření nové větve.",
+ "config.branchProtection": "Seznam chráněných větví. Ve výchozím nastavení se před potvrzením změn do chráněné větve zobrazí dotaz. Tento dotaz lze řídit pomocí nastavení #git.branchProtectionPrompt#.",
+ "config.branchProtectionPrompt": "Určuje, jestli se před potvrzením změn v chráněné větvi zobrazí výzva.",
+ "config.branchProtectionPrompt.alwaysCommit": "Vždy potvrzovat změny v chráněné větvi",
+ "config.branchProtectionPrompt.alwaysCommitToNewBranch": "Vždy potvrzovat změny do nové větve",
+ "config.branchProtectionPrompt.alwaysPrompt": "Před potvrzením změn v chráněné větvi se vždy dotazovat",
+ "config.branchRandomNameDictionary": "Seznam slovníků používaných u náhodně generovaného názvu větve. Každá hodnota představuje slovník použitý k vygenerování segmentu názvu větve. Podporované slovníky: „přídavná jména“, „zvířata“, „barvy“ a „čísla“.",
+ "config.branchRandomNameDictionary.adjectives": "Náhodné přídavné jméno",
+ "config.branchRandomNameDictionary.animals": "Náhodný název zvířete",
+ "config.branchRandomNameDictionary.colors": "Náhodný název barvy",
+ "config.branchRandomNameDictionary.numbers": "Náhodné číslo od 100 do 999",
+ "config.branchRandomNameEnable": "Řídí, jestli se při vytváření nové větve vygeneruje náhodný název.",
+ "config.branchSortOrder": "Určuje pořadí řazení pro větve.",
+ "config.branchValidationRegex": "Regulární výraz, který má ověřovat nové názvy větví",
+ "config.branchWhitespaceChar": "Znak, který nahradí prázdné znaky v nových názvech větví a oddělí segmenty náhodně generovaného názvu větve.",
+ "config.checkoutType": "Určuje, jaký typ odkazů Git se má zobrazit při provedení akce Přechod na aktuální.",
+ "config.checkoutType.local": "Místní větve",
+ "config.checkoutType.remote": "Vzdálené větve",
+ "config.checkoutType.tags": "Značky",
+ "config.closeDiffOnOperation": "Určuje, jestli se má editor rozdílů automaticky uzavřít, když se změny dočasně uloží, potvrdí, zahodí, připraví nebo když dojde ke zrušení jejich přípravy.",
+ "config.commandsToLog": "Seznam příkazů Gitu (např. potvrdit, sdílet změny), které by měly jejich stdout zaprotokolované do [git output](command:git.showOutput). Pokud má příkaz git nakonfigurované zavěšení na straně klienta, bude i stdout zavěšení na straně klienta zaprotokolované do [git output](command:git.showOutput).",
+ "config.commitShortHashLength": "Určuje délku krátké hodnoty hash potvrzení.",
+ "config.confirmEmptyCommits": "Vždy potvrzovat vytváření prázdných potvrzení pro příkaz Git: Commit Empty",
+ "config.confirmForcePush": "Určuje, jestli se má žádat o potvrzení před nasdílením změn s vynucením.",
+ "config.confirmNoVerifyCommit": "Určuje, jestli se má před potvrzením bez ověření zobrazit žádost o potvrzení.",
+ "config.confirmSync": "Potvrdit před synchronizací úložišť Git",
+ "config.countBadge": "Řídí odznáček s počtem pro Git.",
+ "config.countBadge.all": "Počítat všechny změny",
+ "config.countBadge.off": "Vypnout čítač",
+ "config.countBadge.tracked": "Počítat pouze sledované změny",
+ "config.decorations.enabled": "Určuje, jestli Git přidává barvy a odznáčky pro zobrazení průzkumníka a otevřených editorů.",
+ "config.defaultBranchName": "Název výchozí větve (například main, trunk, development) při inicializaci nového úložiště Git Když se nastaví na prázdné, použije se výchozí název větve nakonfigurovaný v Gitu. **Poznámka:** Vyžaduje Git verze 2.28.0 nebo novější.",
+ "config.defaultCloneDirectory": "Výchozí umístění pro klonování úložiště Git",
+ "config.detectSubmodules": "Určuje, jestli se mají automaticky zjišťovat dílčí moduly Gitu.",
+ "config.detectSubmodulesLimit": "Řídí limit počtu zjištěných dílčích modulů Gitu.",
+ "config.detectWorktrees": "Určuje, jestli se mají automaticky zjišťovat pracovní stromy Gitu.",
+ "config.detectWorktreesLimit": "Určuje limit zjištěných pracovních stromů Gitu.",
+ "config.diagnosticsCommitHook.enabled": "Určuje, jestli se má před potvrzením zkontrolovat nevyřešená diagnostika.",
+ "config.diagnosticsCommitHook.sources": "Určuje seznam zdrojů (**Položka**) a minimální závažnost (**Hodnota**), které se mají zvážit před potvrzením. **Poznámka:** Pokud chcete ignorovat diagnostiku z konkrétního zdroje, přidejte zdroj do seznamu a nastavte minimální závažnost na None (Žádné).",
+ "config.discardAllScope": "Určuje, jaké změny jsou zahozeny příkazem Zahodit všechny změny. Možnost all zahodí všechny změny. Možnost tracked zahodí pouze sledované soubory. Možnost prompt při každém spuštění akce zobrazí dialogové okno s dotazem.",
+ "config.discardUntrackedChangesToTrash": "Určuje, jestli se při zahození nesledovaných změn přesunou soubory do koše (Windows, macOS, Linux), místo aby byly trvale odstraněny. **Poznámka:** Při připojení ke vzdálenému počítači nebo při běhu Linuxu jako balíčku snap nemá toto nastavení žádný účinek.",
+ "config.enableCommitSigning": "Povolí podepisování potvrzení pomocí klíčů GPG, X.509 nebo SSH.",
+ "config.enableSmartCommit": "Potvrdit všechny změny, pokud neexistují žádné připravené změny",
+ "config.enableStatusBarSync": "Určuje, jestli se na stavovém řádku zobrazí příkaz synchronizace Gitu.",
+ "config.enabled": "Určuje, jestli je povolené úložiště Git.",
+ "config.experimental.installGuide": "Experimentální vylepšení toku nastavení Gitu.",
+ "config.fetchOnPull": "Pokud je povoleno, načítají se při přijímání změn všechny větve. V opačném případě se načte pouze aktuální větev.",
+ "config.followTagsWhenSync": "Při spuštění příkazu synchronizace nasdílí všechny anotované značky.",
+ "config.ignoreLegacyWarning": "Ignoruje starší upozornění Gitu.",
+ "config.ignoreLimitWarning": "Ignoruje upozornění, pokud je v úložišti příliš mnoho změn.",
+ "config.ignoreMissingGitWarning": "Ignoruje upozornění, když chybí Git.",
+ "config.ignoreRebaseWarning": "Ignoruje upozornění, když to vypadá, že se změny větve při přijímání změn mohly přesunout.",
+ "config.ignoreSubmodules": "Ignorovat změny dílčích modulů ve stromu souborů",
+ "config.ignoreWindowsGit27Warning": "Ignoruje upozornění, pokud je v systému Windows nainstalován Git verze 2.25–2.26.",
+ "config.ignoredRepositories": "Seznam úložišť Git, která se mají ignorovat",
+ "config.inputValidation": "Určuje, jestli se má zobrazit diagnostika ověřování vstupu zprávy potvrzení.",
+ "config.inputValidationLength": "Určuje prahovou hodnotu délky zprávy potvrzení pro zobrazení upozornění.",
+ "config.inputValidationSubjectLength": "Určuje prahovou hodnotu délky předmětu zprávy potvrzení pro zobrazení upozornění. Zrušte jeho nastavení tak, aby zdědil hodnotu #git.inputValidationLength#.",
+ "config.mergeEditor": "Otevřete editor sloučení pro soubory, u kterých dochází ke konfliktu.",
+ "config.openAfterClone": "Určuje, jestli se má úložiště po klonování automaticky otevřít.",
+ "config.openAfterClone.always": "Vždy otevřít v aktuálním okně",
+ "config.openAfterClone.alwaysNewWindow": "Vždy otevřít v novém okně",
+ "config.openAfterClone.prompt": "Vždy se zeptat na akci",
+ "config.openAfterClone.whenNoFolderOpen": "Otevřít v aktuálním okně jenom v případě, že není otevřená žádná složka",
+ "config.openDiffOnClick": "Určuje, jestli se má při kliknutí na změnu otevřít editor rozdílů. V opačném případě se otevře běžný editor.",
+ "config.openRepositoryInParentFolders": "Určuje, jestli se má otevřít úložiště nadřazených složek pracovního prostoru nebo otevřené soubory.",
+ "config.openRepositoryInParentFolders.always": "Vždy otevřete úložiště v nadřazených složkách pracovních prostorů nebo otevřete soubory.",
+ "config.openRepositoryInParentFolders.never": "Niky neotvírejte úložiště v nadřazených složkách pracovních prostorů nebo otevřete soubory.",
+ "config.openRepositoryInParentFolders.prompt": "Dotázat se před otevřením úložiště nadřazených složek pracovního prostoru nebo otevřením souborů.",
+ "config.optimisticUpdate": "Určuje, jestli se má po spuštění příkazů Git optimisticky aktualizovat stav zobrazení správy zdrojového kódu.",
+ "config.path": "Cesta a název spustitelného souboru Git, třeba C:\\Program Files\\Git\\bin\\git.exe (Windows). Může to být také pole řetězcových hodnot obsahující několik cest, které se mají vyhledat.",
+ "config.postCommitCommand": "Po úspěšném potvrzení spusťte příkaz git.",
+ "config.postCommitCommand.none": "Po potvrzení nespouštět žádný příkaz",
+ "config.postCommitCommand.push": "Po úspěšném potvrzení spusťte příkaz git push.",
+ "config.postCommitCommand.sync": "Po úspěšném potvrzení spusťte příkazy git pull a git push.",
+ "config.promptToSaveFilesBeforeCommit": "Určuje, jestli má Git před potvrzením zjišťovat neuložené soubory.",
+ "config.promptToSaveFilesBeforeCommit.always": "Zjišťovat všechny neuložené soubory",
+ "config.promptToSaveFilesBeforeCommit.never": "Zakázat tuto kontrolu",
+ "config.promptToSaveFilesBeforeCommit.staged": "Zjišťovat pouze neuložené připravené soubory",
+ "config.promptToSaveFilesBeforeStash": "Určuje, jestli má Git před dočasným uložením změn zjišťovat neuložené soubory.",
+ "config.promptToSaveFilesBeforeStash.always": "Zjišťovat všechny neuložené soubory",
+ "config.promptToSaveFilesBeforeStash.never": "Zakázat tuto kontrolu",
+ "config.promptToSaveFilesBeforeStash.staged": "Zjišťovat pouze neuložené připravené soubory",
+ "config.pruneOnFetch": "Vyřadit při načítání",
+ "config.publishBeforeContinueOn": "Určuje, jestli se má při použití funkce Pokračovat v práci z úložiště Git publikovat nepublikovaný stav Gitu.",
+ "config.publishBeforeContinueOn.always": "Při použití funkce Pokračovat v práci z úložiště Git vždy publikovat nepublikovaný stav Gitu",
+ "config.publishBeforeContinueOn.never": "Při použití funkce Pokračovat v práci z úložiště Git nikdy nepublikovat nepublikovaný stav Gitu",
+ "config.publishBeforeContinueOn.prompt": "Při použití funkce Pokračovat v práci z úložiště Git zobrazit výzvu k publikování nepublikovaného stavu Gitu",
+ "config.pullBeforeCheckout": "Určuje, jestli se větev, která nemá odchozí potvrzení, před přechodem na aktuální rychle přesměruje.",
+ "config.pullTags": "Při přijímání změn načíst všechny značky",
+ "config.rebaseWhenSync": "Vynutit, aby Git při spuštění příkazu synchronizace použil přenesení změn",
+ "config.rememberPostCommitCommand": "Zapamatujte si poslední příkaz git, který se spustil po potvrzení.",
+ "config.replaceTagsWhenPull": "Automaticky nahradit místní značky vzdálenými značkami v případě konfliktu při spuštění příkazu pull",
+ "config.repositoryScanIgnoredFolders": "Seznam složek, které se při vyhledávání úložišť Git ignorují, když je možnost #git.autoRepositoryDetection# nastavená na true nebo subFolders",
+ "config.repositoryScanMaxDepth": "Určuje hloubku použitou při kontrole složek pracovního prostoru pro úložiště Git, když je možnost #git.autoRepositoryDetection# nastavená na true nebo subFolders. Dá se nastavit na -1 aby se odstranily omezení.",
+ "config.requireGitUserConfig": "Určuje, jestli se má vyžadovat explicitní konfigurace uživatele Git, nebo umožnit Gitu ji zkusit určit, pokud chybí.",
+ "config.scanRepositories": "Seznam cest, ve kterých se mají hledat úložiště Git",
+ "config.showActionButton": "Určuje, jestli se v zobrazení správy zdrojového kódu zobrazuje tlačítko akce.",
+ "config.showActionButton.commit": "Umožňuje zobrazit tlačítko akce pro potvrzení změn, když místní větev upraví soubory připravené k potvrzení.",
+ "config.showActionButton.publish": "Umožňuje zobrazit tlačítko akce pro publikování místní větve, pokud nemá sledovací vzdálenou větev.",
+ "config.showActionButton.sync": "Umožňuje zobrazit tlačítko akce pro synchronizaci změn, když je místní větev před nebo za vzdálenou větví.",
+ "config.showCommitInput": "Určuje, jestli se vstup potvrzení zobrazí na ovládacím panelu zdrojového kódu Git.",
+ "config.showInlineOpenFileAction": "Určuje, jestli se má v zobrazení změn Gitu zobrazit vložená (inline) akce Otevřít soubor.",
+ "config.showProgress": "Určuje, jestli se má pro akce Gitu zobrazovat průběh.",
+ "config.showPushSuccessNotification": "Určuje, jestli se má při úspěšném nasdílení změn zobrazit oznámení.",
+ "config.showReferenceDetails": "Určuje, jestli se mají zobrazit podrobnosti posledního potvrzení pro odkazy Gitu ve výběrech přechodu na aktuální, větve a značky.",
+ "config.similarityThreshold": "Určuje prahovou hodnotu indexu podobnosti (tj. množství přidaných nebo odstraněných položek v porovnání s velikostí souboru), aby se změny v páru přidaných a odstraněných souborů považovaly za přejmenování. **Poznámka:** Vyžaduje Git verze 2.18.0 nebo novější.",
+ "config.smartCommitChanges": "Určuje, které změny jsou automaticky připraveny pomocí inteligentního potvrzení.",
+ "config.smartCommitChanges.all": "Automaticky připravit všechny změny",
+ "config.smartCommitChanges.tracked": "Automaticky připravit pouze sledované změny",
+ "config.statusLimit": "Určuje, jak omezit počet změn, které se dají parsovat z příkazu stavu Git. Pro stav bez omezení se dá nastavit na 0.",
+ "config.suggestSmartCommit": "Navrhuje povolit inteligentní potvrzení (potvrdit všechny změny, pokud neexistují žádné připravené změny).",
+ "config.supportCancellation": "Určuje, jestli se při spuštění akce synchronizace objeví oznámení, které uživateli umožňuje operaci zrušit.",
+ "config.terminalAuthentication": "Určuje, jestli by měl být VS Code povolen jako obslužný program ověřování pro procesy Gitu vytvořené v integrovaném terminálu. Poznámka: Aby se projevila změna tohoto nastavení, je nutné restartovat terminály.",
+ "config.terminalGitEditor": "Určuje, jestli se má povolit, aby VS Code byl editor Gitu pro procesy Gitu, které se spouští v integrovaném terminálu. Poznámka: Aby bylo možné provést změnu v tomto nastavení, je nutné terminály restartovat.",
+ "config.timeline.date": "Určuje, které datum se má použít pro položky v zobrazení Časová osa.",
+ "config.timeline.date.authored": "Použít datum vytvoření",
+ "config.timeline.date.committed": "Použít datum potvrzení",
+ "config.timeline.showAuthor": "Určuje, jestli se v zobrazení Časová osa má zobrazovat autor potvrzení.",
+ "config.timeline.showUncommitted": "Určuje, jestli se mají v zobrazení časové osy zobrazovat nepotvrzené změny.",
+ "config.untrackedChanges": "Určuje, jak se chovají nesledované změny.",
+ "config.untrackedChanges.hidden": "Nesledované změny jsou skryty a vyloučeny z několika akcí.",
+ "config.untrackedChanges.mixed": "Všechny změny (sledované i nesledované) se zobrazují společně a chovají se stejně.",
+ "config.untrackedChanges.separate": "Nesledované změny se v zobrazení správy zdrojového kódu zobrazují samostatně. Jsou také vyloučeny z několika akcí.",
+ "config.useCommitInputAsStashMessage": "Určuje, jestli se má zpráva ze vstupního pole pro potvrzení použít jako výchozí zpráva pro dočasné uložení.",
+ "config.useEditorAsCommitInput": "Určuje, jestli se má k vytváření potvrzování zpráv použít fulltextový editor, kdykoli se do vstupního pole potvrzení nezadá žádná zpráva.",
+ "config.useForcePushIfIncludes": "Určuje, jestli se pro nasdílení změn s vynucením používá bezpečnější varianta force-if-includes. Poznámka: Toto nastavení vyžaduje, aby bylo povolené nastavení #git.useForcePushWithLease#, a Git verze 2.30.0 nebo novější.",
+ "config.useForcePushWithLease": "Určuje, jestli se pro nasdílení změn s vynucením používá bezpečnější varianta vynucení se zapůjčením (force-with-lease).",
+ "config.useIntegratedAskPass": "Určuje, jestli se má GIT_ASKPASS přepsat, aby se používala integrovaná verze.",
+ "config.verboseCommit": "Když je povolená možnost #git.useEditorAsCommitInput#, povolí podrobný výstup.",
+ "description": "Integrace s Git SCM",
+ "displayName": "Git",
+ "submenu.branch": "Rozvětvit",
+ "submenu.changes": "Změny",
+ "submenu.commit": "Potvrdit",
+ "submenu.commit.amend": "Upravit",
+ "submenu.commit.signoff": "Finálně verifikovat",
+ "submenu.explorer": "Git",
+ "submenu.pullpush": "Přijetí změn, nasdílení změn",
+ "submenu.remotes": "Vzdálené",
+ "submenu.stash": "Dočasné úložiště",
+ "submenu.tags": "Značky",
+ "submenu.worktrees": "Pracovní stromy",
+ "view.workbench.cloneRepository": "Úložiště můžete klonovat místně.\r\n[Naklonovat úložiště](command:git.clone 'Naklonovat úložiště, jakmile se aktivuje rozšíření Gitu')",
+ "view.workbench.learnMore": "Další informace o používání Gitu a správy zdrojového kódu v editoru VS Code [najdete v naší dokumentaci](https://aka.ms/vscode-scm).",
+ "view.workbench.scm.closedRepositories": "Našla se dříve uzavřená úložiště Git.\r\n[Znovu otevřít zavřená úložiště](command:git.reopenClosedRepositories)\r\nDalší informace o používání Gitu a správy zdrojového kódu v editoru VS Code [najdete v naší dokumentaci](https://aka.ms/vscode-scm).",
+ "view.workbench.scm.closedRepository": "Našlo se dříve uzavřené úložiště Git.\r\n[Znovu otevřít zavřené úložiště](command:git.reopenClosedRepositories)\r\nDalší informace o používání Gitu a správy zdrojového kódu v editoru VS Code [najdete v naší dokumentaci](https://aka.ms/vscode-scm).",
+ "view.workbench.scm.disabled": "Pokud chcete používat funkce Gitu, povolte prosím Git v [nastavení](command:workbench.action.openSettings?%5B%22git.enabled%22%5D).\r\nDalší informace o používání Gitu a správy zdrojového kódu v editoru VS Code [najdete v naší dokumentaci](https://aka.ms/vscode-scm).",
+ "view.workbench.scm.empty": "Pokud chcete používat funkce Gitu, můžete otevřít složku obsahující úložiště Git nebo klonovat z adresy URL.\r\n[Otevřít složku](command:vscode.openFolder)\r\n[Klonovat úložiště](command:git.cloneRecursive)\r\nDalší informace o používání Gitu a správy zdrojového kódu v editoru VS Code [najdete v naší dokumentaci](https://aka.ms/vscode-scm).",
+ "view.workbench.scm.emptyWorkspace": "Aktuálně otevřený pracovní prostor nezahrnuje žádné složky obsahující úložiště Git.\r\n[Přidat složku do pracovního prostoru](command:workbench.action.addRootFolder)\r\nDalší informace o používání Gitu a správy zdrojového kódu v editoru VS Code [najdete v naší dokumentaci](https://aka.ms/vscode-scm).",
+ "view.workbench.scm.folder": "Aktuálně otevřená složka nemá úložiště Git. Můžete inicializovat úložiště, v němž budou povolené funkce pro správu zdrojů, které zajišťuje Git.\r\n[Inicializovat úložiště](command:git.init?%5Btrue%5D)\r\nDalší informace o používání Gitu a správy zdrojového kódu v editoru VS Code [najdete v naší dokumentaci](https://aka.ms/vscode-scm).",
+ "view.workbench.scm.missing": "Nainstalujte si Git, oblíbený systém správy zdrojového kódu, abyste mohli sledovat změny kódu a spolupracovat s ostatními. Další informace najdete v našem [Git guides](https://aka.ms/vscode-scm).",
+ "view.workbench.scm.missing.linux": "Správa zdrojového kódu závisí na nainstalovaném Gitu.\r\n[Download Git for Linux](https://git-scm.com/download/linux)\r\nPo instalaci prosím [reload](command:workbench.action.reloadWindow) (nebo [troubleshoot](command:git.showOutput)). Další poskytovatele správy zdrojového kódu je možné nainstalovat [from the Marketplace](command:workbench.extensions.search?%22%40category%3A%5C%22scm%20providers%5C%22%22).",
+ "view.workbench.scm.missing.mac": "[Download Git for macOS](https://git-scm.com/download/mac)\r\nPo instalaci prosím [reload](command:workbench.action.reloadWindow) (nebo [troubleshoot](command:git.showOutput)). Další poskytovatele správy zdrojů je možné nainstalovat [from the Marketplace](command:workbench.extensions.search?%22%40category%3A%5C%22scm%20providers%5C%22%22).",
+ "view.workbench.scm.missing.windows": "[Download Git for Windows](https://git-scm.com/download/win)\r\nPo instalaci prosím [reload](command:workbench.action.reloadWindow) (nebo [troubleshoot](command:git.showOutput)). Další poskytovatele správy zdrojů je možné nainstalovat [from the Marketplace](command:workbench.extensions.search?%22%40category%3A%5C%22scm%20providers%5C%22%22).",
+ "view.workbench.scm.repositoriesInParentFolders": "V jedné z nadřazených složek pracovního prostoru nebo v jednom z otevřených souborů se našla úložiště Git.\r\n[Otevřít úložiště](command:git.openRepositoriesInParentFolders)\r\nPomocí nastavení [git.openRepositoryInParentFolders](command:workbench.action.openSettings?%5B%22git.openRepositoryInParentFolders%22%5D) můžete řídit, jak se budou otevírat úložiště Git v nadřazených složkách pracovního prostoru nebo otevřených souborech. Další informace najdete v [naší dokumentaci](https://aka.ms/vscode-git-repository-in-parent-folders).",
+ "view.workbench.scm.repositoryInParentFolders": "V nadřazených složkách pracovního prostoru nebo otevřených souborech bylo nalezeno úložiště Git.\r\n[Otevřít úložiště](command:git.openRepositoriesInParentFolders)\r\nPomocí nastavení [git.openRepositoryInParentFolders](command:workbench.action.openSettings?%5B%22git.openRepositoryInParentFolders%22%5D) můžete řídit, jak se budou otevírat úložiště Git v nadřazených složkách pracovních prostorů nebo otevřených souborech. Další informace najdete v [naší dokumentaci](https://aka.ms/vscode-git-repository-in-parent-folders).",
+ "view.workbench.scm.scanFolderForRepositories": "Vyhledávání úložišť Git ve složce...",
+ "view.workbench.scm.scanWorkspaceForRepositories": "Vyhledávání úložišť Git v pracovním prostoru...",
+ "view.workbench.scm.unsafeRepositories": "Zjištěná úložiště Git jsou potenciálně nebezpečná, protože složky vlastní někdo jiný než aktuální uživatel.\r\n[Správa nebezpečných úložišť](command:git.manageUnsafeRepositories)\r\nDalší informace o nebezpečných úložištích najdete v [naší dokumentaci](https://aka.ms/vscode-git-unsafe-repository).",
+ "view.workbench.scm.unsafeRepository": "Zjištěné úložiště Git je potenciálně nebezpečné, protože složku vlastní někdo jiný než aktuální uživatel.\r\n[Správa nebezpečných úložišť](command:git.manageUnsafeRepositories)\r\nDalší informace o nebezpečných úložištích najdete v [naší dokumentaci](https://aka.ms/vscode-git-unsafe-repository).",
+ "view.workbench.scm.workspace": "Aktuálně otevřený pracovní prostor nezahrnuje žádné složky obsahující úložiště Git. Můžete inicializovat úložiště ve složce, v níž budou povolené funkce pro správu zdrojů, které zajišťuje Git.\r\n[Inicializovat úložiště](command:git.init)\r\nDalší informace o používání Gitu a správy zdrojového kódu v editoru VS Code [najdete v naší dokumentaci](https://aka.ms/vscode-scm)."
+ }
+ }
+}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-cs/translations/extensions/vscode.github-authentication.i18n.json b/i18n/vscode-language-pack-cs/translations/extensions/vscode.github-authentication.i18n.json
new file mode 100644
index 0000000000..8d93dad178
--- /dev/null
+++ b/i18n/vscode-language-pack-cs/translations/extensions/vscode.github-authentication.i18n.json
@@ -0,0 +1,47 @@
+{
+ "": [
+ "--------------------------------------------------------------------------------------------",
+ "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."
+ ],
+ "version": "1.0.0",
+ "contents": {
+ "bundle": {
+ "A reload is required for the fetch setting change to take effect.": "Změna nastavení načítání se projeví až po opětovném načtení.",
+ "Apple": "Apple",
+ "Continue to GitHub": "Pokračovat na GitHub.",
+ "Continue to GitHub to create a Personal Access Token (PAT)": "Pokračovat na GitHub a vytvořit osobní přístupový token (PAT).",
+ "Copy & Continue to {0}": "Kopírovat a pokračovat na {0}",
+ "GitHub": "GitHub",
+ "GitHub Authentication - Reload required": "Ověření GitHubu – vyžaduje se opětovné načtení",
+ "GitHub Enterprise Server URI is not a valid URI: {0}": "Identifikátor URI serveru GitHub Enterprise není platný identifikátor URI: {0}",
+ "Google": "Google",
+ "Having trouble logging in? Would you like to try a different way? ({0})": "Máte potíže s přihlášením? Chcete zkusit jiný způsob? ({0})",
+ "No": "Ne",
+ "Open [{0}]({0}) in a new tab and paste your one-time code: {1}/The [{0}]({0}) will be a url and the {1} will be a code, e.g. 123-456{Locked=\"[{0}]({0})\"}": "Otevřete [{0}]({0}) na nové kartě a vložte svůj jednorázový kód: {1}",
+ "Reload Window": "Znovu načíst okno",
+ "Sign in failed: {0}": "Přihlášení se nezdařilo: {0}",
+ "Sign out failed: {0}": "Odhlášení se nezdařilo: {0}",
+ "Signing in to {0}.../The {0} will be a url, e.g. github.com": "Přihlašujete se k {0}...",
+ "To finish authenticating, navigate to GitHub and paste in the above one-time code.": "Ověřování dokončíte tak, že přejdete na GitHub a vložíte výše uvedený jednorázový kód.",
+ "To finish authenticating, navigate to GitHub to create a PAT then paste the PAT into the input box.": "Pokud chcete dokončit ověřování, přejděte na GitHub, vytvořte PAT a vložte ho do vstupního pole.",
+ "Yes": "Ano",
+ "You have not yet finished authorizing this extension to use GitHub. Would you like to try a different way? ({0})": "Ještě jste nedokončili autorizaci tohoto rozšíření pro používání GitHubu. Chcete zkusit jiný způsob? ({0})",
+ "Your Code: {0}/The {0} will be a code, e.g. 123-456": "Váš kód: {0}",
+ "device code": "kód zařízení",
+ "local server": "místní server",
+ "personal access token": "token PAT",
+ "url handler": "obslužná rutina adresy URL"
+ },
+ "package": {
+ "config.github-authentication.preferDeviceCodeFlow.description": "Pokud je nastaveno na true, upřednostní se při ověřování tok s kódem zařízení před ostatními dostupnými toky. To je užitečné v prostředích, jako je WSL, kde místní server nebo toky zpracování adres URL nemusí fungovat podle očekávání.",
+ "config.github-authentication.useElectronFetch.description": "Při hodnotě true se pro požadavky HTTP používá integrovaná funkce načítání od Společnosti Electron. Když je nastaveno na false, používá globální funkci fetch Node.js. Toto nastavení platí pouze při spuštění v prostředí Electron. **Poznámka:** Pro projev tohoto nastavení je nutné restartovat počítač.",
+ "config.github-enterprise.title": "ověřování serveru GHE.com & GitHub Enterprise",
+ "config.github-enterprise.uri.description": "Identifikátor URI pro instanci GHE.com nebo GitHub Enterprise Serveru\r\n\r\nPříklady:\r\n* GHE.com: 'https://octocat.ghe.com`\r\n* GitHub Enterprise Server: 'https://github.octocat.com`\r\n\r\n> **Poznámka:** Tato hodnota by _neměla_ být nastavena na identifikátor URI GitHub.com. Pokud váš účet existuje na GitHub.com nebo je GitHub Enterprise spravovaný uživatel, nepotřebujete žádnou další konfiguraci a můžete se jednoduše přihlásit ke GitHubu.",
+ "description": "Zprostředkovatel ověřování GitHubu",
+ "displayName": "Ověřování GitHubu"
+ }
+ }
+}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-cs/translations/extensions/vscode.github.i18n.json b/i18n/vscode-language-pack-cs/translations/extensions/vscode.github.i18n.json
new file mode 100644
index 0000000000..0a19fc5dc8
--- /dev/null
+++ b/i18n/vscode-language-pack-cs/translations/extensions/vscode.github.i18n.json
@@ -0,0 +1,65 @@
+{
+ "": [
+ "--------------------------------------------------------------------------------------------",
+ "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."
+ ],
+ "version": "1.0.0",
+ "contents": {
+ "bundle": {
+ "Checkout on vscode.dev": "Podívejte se na vscode.dev",
+ "Commit Changes": "Potvrdit změny",
+ "Copy Anyway": "Přesto kopírovat",
+ "Copy vscode.dev Link": "Kopírovat odkaz vscode.dev",
+ "Create Fork": "Vytvořit fork",
+ "Create GitHub fork": "Vytvořit fork GitHubu",
+ "Create PR": "Vytvořit žádost o přijetí změn",
+ "Creating GitHub Pull Request...": "Vytváří se žádost o přijetí změn GitHubu...",
+ "Creating first commit": "Vytváří se první potvrzení.",
+ "Forking \"{0}/{1}\"...": "Vytváří se fork {0}/{1}...",
+ "Learn More": "Další informace",
+ "Log level: {0}": "Úroveň protokolování: {0}",
+ "No": "Ne",
+ "No GitHub remotes found that contain this commit.": "Nenašly se žádné vzdálené úložiště GitHubu, které by obsahovalo toto potvrzení.",
+ "No template": "Žádná šablona",
+ "Open PR": "Otevřít žádost o přijetí změn",
+ "Open on GitHub": "Otevřít v GitHubu",
+ "Pick a folder to publish to GitHub": "Vyberte složku, která se má publikovat do GitHubu.",
+ "Publish Branch & Copy Link": "Publikovat větev & zkopírovat odkaz",
+ "Publishing to a private GitHub repository": "Probíhá publikování do privátního úložiště GitHubu.",
+ "Publishing to a public GitHub repository": "Probíhá publikování do veřejného úložiště GitHubu.",
+ "Pull Changes & Copy Link": "Přijmout změny a zkopírovat odkaz",
+ "Push Commits & Copy Link": "Nasdílet změny potvrzení & zkopírovat odkaz",
+ "Pushing changes...": "Probíhá nasdílení změn...",
+ "Select the Pull Request template": "Vyberte šablonu žádosti o přijetí změn.",
+ "Select which files should be included in the repository.": "Vyberte soubory, které by měly být zahrnuty do úložiště.",
+ "Successfully published the \"{0}\" repository to GitHub.": "Úložiště {0} se úspěšně publikovalo do GitHubu.",
+ "The PR \"{0}/{1}#{2}\" was successfully created on GitHub.": "Žádost o přijetí změn {0}/{1}#{2} byla úspěšně vytvořena na GitHubu.",
+ "The current branch has unpublished commits. Would you like to push your commits before copying a link?": "Aktuální větev obsahuje nepublikovaná potvrzení. Chcete před zkopírováním odkazu odeslat potvrzení?",
+ "The current branch is not published to the remote. Would you like to publish your branch before copying a link?": "Aktuální větev není publikována do vzdáleného úložiště. Chcete před zkopírováním odkazu publikovat větev?",
+ "The current branch is not up to date. Would you like to pull before copying a link?": "Aktuální větev není aktuální. Chcete si před zkopírováním odkazu vyžádat změny?",
+ "The current file has uncommitted changes. Please commit your changes before copying a link.": "Aktuální soubor obsahuje nepotvrzené změny. Před zkopírováním odkazu potvrďte změny.",
+ "The fork \"{0}\" was successfully created on GitHub.": "Fork {0} se úspěšně vytvořil na GitHubu.",
+ "Uploading files": "Nahrávají se soubory.",
+ "You don't have permissions to push to \"{0}/{1}\" on GitHub. Would you like to create a fork and push to it instead?": "Nemáte oprávnění k nasdílení změn do {0}/{1} na GitHubu. Chcete vytvořit fork a místo toho nasdílet změny do něj?",
+ "Your push to \"{0}/{1}\" was rejected by GitHub because push protection is enabled and one or more secrets were detected.": "GitHub odmítl vaše nasdílení změn do{0}/{1}, protože je povolená ochrana nabízených oznámení a zjistil se jeden nebo více tajných kódů.",
+ "{0} Open on GitHub": "{0} Otevřít na GitHubu"
+ },
+ "package": {
+ "command.copyVscodeDevLink": "Kopírovat odkaz vscode.dev",
+ "command.openOnGitHub": "Otevřít v GitHubu",
+ "command.openOnVscodeDev": "Otevřít ve vscode.dev",
+ "command.publish": "Publikovat na GitHub",
+ "config.branchProtection": "Určuje, jestli se má dotazovat na pravidla úložiště pro úložiště GitHub.",
+ "config.gitAuthentication": "Určuje, jestli se má ve VS Code povolit automatické ověřování GitHubu pro příkazy Git.",
+ "config.gitProtocol": "Určuje, který protokol se používá ke klonování úložiště GitHubu.",
+ "config.showAvatar": "Určuje, jestli se má zobrazovat avatar GitHubu autora potvrzení změn v různých umístěních ukazatele myši (např. Git blame, Timeline, Source Control Graph atd.).",
+ "description": "Funkce GitHubu pro VS Code",
+ "displayName": "GitHub",
+ "welcome.publishFolder": "Tuto složku můžete publikovat přímo do úložiště GitHub. Po publikování budete mít přístup k funkcím správy zdrojového kódu využívajícím Git a GitHub.\r\n[$(github) Publish to GitHub](command:github.publish)",
+ "welcome.publishWorkspaceFolder": "Složku pracovního prostoru můžete publikovat přímo do úložiště GitHub. Po publikování budete mít přístup k funkcím správy zdrojového kódu využívajícím Git a GitHub.\r\n[$(github) Publish to GitHub](command:github.publish)"
+ }
+ }
+}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-cs/translations/extensions/vscode.go.i18n.json b/i18n/vscode-language-pack-cs/translations/extensions/vscode.go.i18n.json
index 2820a5e4b0..fa48b5b271 100644
--- a/i18n/vscode-language-pack-cs/translations/extensions/vscode.go.i18n.json
+++ b/i18n/vscode-language-pack-cs/translations/extensions/vscode.go.i18n.json
@@ -9,8 +9,8 @@
"version": "1.0.0",
"contents": {
"package": {
- "displayName": "Základy jazyka Go",
- "description": "Poskytuje zvýrazňování syntaxe a párování závorek v souborech Go."
+ "description": "Poskytuje zvýrazňování syntaxe a párování závorek v souborech Go.",
+ "displayName": "Základy jazyka Go"
}
}
}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-cs/translations/extensions/vscode.groovy.i18n.json b/i18n/vscode-language-pack-cs/translations/extensions/vscode.groovy.i18n.json
index 8d2db03bd2..3fd1e4d638 100644
--- a/i18n/vscode-language-pack-cs/translations/extensions/vscode.groovy.i18n.json
+++ b/i18n/vscode-language-pack-cs/translations/extensions/vscode.groovy.i18n.json
@@ -9,8 +9,8 @@
"version": "1.0.0",
"contents": {
"package": {
- "displayName": "Základy jazyka Groovy",
- "description": "Poskytuje fragmenty kódu, zvýrazňování syntaxe a párování závorek v souborech jazyka Groovy."
+ "description": "Poskytuje fragmenty kódu, zvýrazňování syntaxe a párování závorek v souborech jazyka Groovy.",
+ "displayName": "Základy jazyka Groovy"
}
}
}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-cs/translations/extensions/vscode.grunt.i18n.json b/i18n/vscode-language-pack-cs/translations/extensions/vscode.grunt.i18n.json
new file mode 100644
index 0000000000..2a235294aa
--- /dev/null
+++ b/i18n/vscode-language-pack-cs/translations/extensions/vscode.grunt.i18n.json
@@ -0,0 +1,25 @@
+{
+ "": [
+ "--------------------------------------------------------------------------------------------",
+ "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."
+ ],
+ "version": "1.0.0",
+ "contents": {
+ "bundle": {
+ "Auto detecting Grunt for folder {0} failed with error: {1}', this.workspaceFolder.name, err.error ? err.error.toString() : 'unknown": "Automatické zjišťování gruntu pro složku {0} selhalo s chybou: {1}, this.workspaceFolder.name, err.error ? err.error.toString() : 'unknown",
+ "Go to output": "Přejít na výstup",
+ "Problem finding grunt tasks. See the output for more information.": "Při hledání úloh grunt došlo k problému. Další informace najdete ve výstupu."
+ },
+ "package": {
+ "config.grunt.autoDetect": "Ovládá povolení detekce úloh Grunt. Detekce úloh Grunt může způsobit, že se soubory spustí v libovolném otevřeném pracovním prostoru.",
+ "description": "Rozšíření pro přidání schopností Grunt do VS Code",
+ "displayName": "Podpora Gruntu pro VS Code",
+ "grunt.taskDefinition.args.description": "Argumenty příkazového řádku, které se mají předat úloze grunt",
+ "grunt.taskDefinition.file.description": "Soubor Grunt, který poskytuje úlohu. Lze vynechat.",
+ "grunt.taskDefinition.type.description": "Úloha Grunt, která se má přizpůsobit"
+ }
+ }
+}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-cs/translations/extensions/vscode.gulp.i18n.json b/i18n/vscode-language-pack-cs/translations/extensions/vscode.gulp.i18n.json
new file mode 100644
index 0000000000..26059cc70b
--- /dev/null
+++ b/i18n/vscode-language-pack-cs/translations/extensions/vscode.gulp.i18n.json
@@ -0,0 +1,24 @@
+{
+ "": [
+ "--------------------------------------------------------------------------------------------",
+ "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."
+ ],
+ "version": "1.0.0",
+ "contents": {
+ "bundle": {
+ "Auto detecting gulp for folder {0} failed with error: {1}', this.workspaceFolder.name, err.error ? err.error.toString() : 'unknown": "Automatická detekce gulp pro složku {0} selhala s chybou: {1}, this.workspaceFolder.name, err.error ? err.error.toString() : 'unknown",
+ "Go to output": "Přejít na výstup",
+ "Problem finding gulp tasks. See the output for more information.": "Při hledání úloh gulp došlo k problému. Další informace najdete ve výstupu."
+ },
+ "package": {
+ "config.gulp.autoDetect": "Ovládá povolení detekce úloh Gulp. Detekce úloh Gulp může způsobit, že se soubory spustí v libovolném otevřeném pracovním prostoru.",
+ "description": "Rozšíření pro přidání schopností Gulp do VSCode",
+ "displayName": "Podpora Gulpu pro VSCode",
+ "gulp.taskDefinition.file.description": "Soubor Gulp, který poskytuje úlohu. Lze vynechat.",
+ "gulp.taskDefinition.type.description": "Úloha Gulp, která se má přizpůsobit"
+ }
+ }
+}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-cs/translations/extensions/vscode.handlebars.i18n.json b/i18n/vscode-language-pack-cs/translations/extensions/vscode.handlebars.i18n.json
index 892abe7244..f8667e2510 100644
--- a/i18n/vscode-language-pack-cs/translations/extensions/vscode.handlebars.i18n.json
+++ b/i18n/vscode-language-pack-cs/translations/extensions/vscode.handlebars.i18n.json
@@ -9,8 +9,8 @@
"version": "1.0.0",
"contents": {
"package": {
- "displayName": "Základy jazyka Handlebars",
- "description": "Poskytuje zvýrazňování syntaxe a párování závorek v souborech Handlebars."
+ "description": "Poskytuje zvýrazňování syntaxe a párování závorek v souborech Handlebars.",
+ "displayName": "Základy jazyka Handlebars"
}
}
}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-cs/translations/extensions/vscode.hlsl.i18n.json b/i18n/vscode-language-pack-cs/translations/extensions/vscode.hlsl.i18n.json
index 9328dcb083..0272ac9434 100644
--- a/i18n/vscode-language-pack-cs/translations/extensions/vscode.hlsl.i18n.json
+++ b/i18n/vscode-language-pack-cs/translations/extensions/vscode.hlsl.i18n.json
@@ -9,8 +9,8 @@
"version": "1.0.0",
"contents": {
"package": {
- "displayName": "Základy jazyka HLSL",
- "description": "Poskytuje zvýrazňování syntaxe a párování závorek v souborech HLSL."
+ "description": "Poskytuje zvýrazňování syntaxe a párování závorek v souborech HLSL.",
+ "displayName": "Základy jazyka HLSL"
}
}
}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-cs/translations/extensions/vscode.html-language-features.i18n.json b/i18n/vscode-language-pack-cs/translations/extensions/vscode.html-language-features.i18n.json
new file mode 100644
index 0000000000..169d0402a5
--- /dev/null
+++ b/i18n/vscode-language-pack-cs/translations/extensions/vscode.html-language-features.i18n.json
@@ -0,0 +1,304 @@
+{
+ "": [
+ "--------------------------------------------------------------------------------------------",
+ "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."
+ ],
+ "version": "1.0.0",
+ "contents": {
+ "bundle": {
+ "\"store\" a boolean test for later evaluation in a guard or if().": "„uloží“ logický test pro pozdější vyhodnocení v ochraně nebo if().",
+ "'from' expected": "očekával se výraz from",
+ "'in' expected": "očekávalo se klíčové slovo in",
+ "'through' or 'to' expected": "očekávala se hodnota through nebo to",
+ "'{0}'": "{0}",
+ "( expected": "očekával se znak (",
+ ") expected": "očekával se znak )",
+ "": "",
+ "@font-face": "@font-face",
+ "@font-face rule must define 'src' and 'font-family' properties": "pravidlo @font-face musí definovat vlastnosti src a font-family",
+ "@keyframes {0}": "@keyframes {0}",
+ "A list of properties that are not validated against the `unknownProperties` rule.": "Seznam vlastností, které nejsou ověřovány podle pravidla unknownProperties",
+ "Adds quotes to a string.": "Přidá uvozovky do řetězce.",
+ "Also define the standard property '{0}' for compatibility": "Pro zajištění kompatibility také definujte standardní vlastnost {0}.",
+ "Always define standard rule '@keyframes' when defining keyframes.": "Při definování klíčových snímků vždy definujte standardní pravidlo @keyframes.",
+ "Always include all vendor specific properties: Missing: {0}": "Vždy zahrňte všechny vlastnosti specifické pro dodavatele: Chybí: {0}",
+ "Always include all vendor specific rules: Missing: {0}": "Vždy zahrnujte všechna pravidla specifická pro dodavatele: Chybí: {0}",
+ "Appends a single value onto the end of a list.": "Připojí jednu hodnotu na konec seznamu.",
+ "Appends selectors to one another without spaces in between.": "Připojí selektory k sobě navzájem bez mezer.",
+ "Avoid using !important. It is an indication that the specificity of the entire CSS has gotten out of control and needs to be refactored.": "Nepoužívejte vlastnost !important. Indikuje, že specificita celého kódu CSS není pod kontrolou a vyžaduje refaktorování.",
+ "Avoid using 'float'. Floats lead to fragile CSS that is easy to break if one aspect of the layout changes.": "Nepoužívejte datový typ float. Při používání datového typu float se může kód CSS snadno poškodit, pokud se změní jeden aspekt rozložení.",
+ "Causes one or more rules to be emitted at the root of the document.": "Způsobí, že se v kořenovém adresáři dokumentu vygeneruje jedno nebo více pravidel.",
+ "Changes one or more properties of a color.": "Změní jednu nebo více vlastností barvy.",
+ "Changes the alpha component for a color.": "Změní alfa komponentu pro barvu.",
+ "Changes the hue of a color.": "Změní odstín barvy.",
+ "Character entity representing '{0}'": "Kód znaku představující {0}",
+ "Character entity representing '{0}', unicode equivalent '{1}'": "Kód znaku představující {0}, ekvivalent unicode {1}.",
+ "Closing bracket expected.": "Očekávala se pravá závorka.",
+ "Closing bracket missing.": "Chybí pravá závorka.",
+ "Combines several lists into a single multidimensional list.": "Zkombinuje několik seznamů do jednoho multidimenzionálního seznamu.",
+ "Configure": "Konfigurovat",
+ "Converts a color into the format understood by IE filters.": "Převede barvu na formát, kterému rozumí filtry IE.",
+ "Converts a color to grayscale.": "Převede barvu na stupně šedé.",
+ "Converts a string to lower case.": "Převede řetězec na malá písmena.",
+ "Converts a string to upper case.": "Převede řetězec na velká písmena.",
+ "Converts a unitless number to a percentage.": "Převede číslo bez jednotek na procentuální hodnotu.",
+ "Creates a Color from hue, saturation, and lightness values.": "Vytvoří barvu z hodnot odstínu, sytosti a světlosti.",
+ "Creates a Color from hue, saturation, lightness, and alpha values.": "Vytvoří barvu z hodnot odstín, sytost, světlost a alfa.",
+ "Creates a Color from hue, white, and black values.": "Vytvoří barvu z odstínu, bílé a černé hodnoty.",
+ "Creates a Color from lightness, a, and b values.": "Vytvoří barvu z hodnot světlost, a b.",
+ "Creates a Color from lightness, chroma, and hue values.": "Vytvoří barvu z hodnot světlosti, chromy a odstínu.",
+ "Creates a Color from red, green, and blue values.": "Vytvoří barvu z hodnot červená, zelená a modrá.",
+ "Creates a Color from red, green, blue, and alpha values.": "Vytvoří barvu z hodnot červená, zelená, modrá a alfa.",
+ "Creates a Color from the hue, saturation, and lightness values of another Color.": "Vytvoří barvu z hodnot odstínu, sytosti a světlosti jiné barvy.",
+ "Creates a Color from the hue, white, and black values of another Color.": "Vytvoří barvu z odstínu, bílé a černé hodnoty jiné barvy.",
+ "Creates a Color from the lightness, a, and b values of another Color.": "Vytvoří barvu z hodnot světlosti a hodnot A a B jiné barvy.",
+ "Creates a Color from the lightness, chroma, and hue values of another Color.": "Vytvoří barvu z hodnot světlosti, chromy a odstínu jiné barvy.",
+ "Creates a Color from the red, green, and blue values of another Color.": "Vytvoří barvu z červené, zelené a modré hodnoty jiné barvy.",
+ "Creates a Color in a specific color space from red, green, and blue values.": "Vytvoří barvu v konkrétním barevném prostoru z červených, zelených a modrých hodnot.",
+ "Creates a Color in a specific color space from the red, green, and blue values of another Color.": "Vytvoří barvu v konkrétním barevném prostoru z červené, zelené a modré hodnoty jiné barvy.",
+ "Defines complex operations that can be re-used throughout stylesheets.": "Definuje komplexní operace, které lze znovu použít v šablonách stylů.",
+ "Defines styles that can be re-used throughout the stylesheet with `@include`.": "Definuje styly, které lze znovu použít v celé šabloně stylů pomocí @include.",
+ "Do not use duplicate style definitions": "Nepoužívejte duplicitní definice stylů.",
+ "Do not use empty rulesets": "Nepoužívejte prázdné sady pravidel.",
+ "Do not use width or height when using padding or border": "Při použití odsazení nebo ohraničení nepoužívejte šířku ani výšku.",
+ "Dynamically calls a Sass function.": "Dynamicky volá funkci Sass.",
+ "Each loop that sets `$var` to each item in the list or map, then outputs the styles it contains using that value of `$var`.": "Každá smyčka, která nastaví $var na každou položku v seznamu nebo mapě, pak vypíše styly, které obsahuje, pomocí této hodnoty $var.",
+ "End tag name expected.": "Očekával se název koncové značky.",
+ "Exposes the details of Sass’s inner workings.": "Zpřístupňuje podrobnosti o vnitřních operacích Sass.",
+ "Extends $extendee with $extender within $selector.": "Rozšíří $extendee o $extender v rámci $selector.",
+ "Extracts a substring from $string.": "Extrahuje podřetězec z řetězce $string.",
+ "Finds the maximum of several numbers.": "Vyhledá maximum několika čísel.",
+ "Finds the minimum of several numbers.": "Vyhledá minimum několika čísel.",
+ "Fluidly scales one or more properties of a color.": "Plynule škáluje jednu nebo více vlastností barvy.",
+ "Folding Region End": "Konec oblasti sbalení",
+ "Folding Region Start": "Začátek oblasti sbalení",
+ "For loop that repeatedly outputs a set of styles for each `$var` in the `from/through` or `from/to` clause.": "Smyčka For, která opakovaně vypisuje sadu stylů pro každý $var v klauzuli from/through nebo from/to.",
+ "Generates new colors based on existing ones, making it easy to build color themes.": "Vygeneruje nové barvy na základě existujících a usnadní tak vytváření barevných motivů.",
+ "Gets the blue component of a color.": "Získá modrou komponentu barvy.",
+ "Gets the green component of a color.": "Získá zelenou komponentu barvy.",
+ "Gets the hue component of a color.": "Získá komponentu odstínu barvy.",
+ "Gets the lightness component of a color.": "Získá komponentu světlosti barvy.",
+ "Gets the opacity component of a color.": "Získá komponentu neprůhlednosti barvy.",
+ "Gets the red component of a color.": "Získá červenou komponentu barvy.",
+ "Gets the saturation component of a color.": "Získá komponentu sytosti barvy.",
+ "HTML Language Server": "Server jazyka HTML",
+ "Hex colors must consist of three, four, six or eight hex numbers": "Šestnáctkové barvy se musí skládat ze tří, čtyř, šesti nebo osmi šestnáctkových čísel.",
+ "IE hacks are only necessary when supporting IE7 and older": "IE hacky jsou nezbytné pouze pro podporu Internet Exploreru 7 a starších verzí.",
+ "Import statements do not load in parallel": "Příkazy importu se nenačítají paralelně.",
+ "Includes the body if the expression does not evaluate to `false` or `null`.": "Zahrne obsah, pokud se výraz nevyhodnotí jako false nebo null.",
+ "Includes the styles defined by another mixin into the current rule.": "Zahrne do aktuálního pravidla styly definované jiným mixinem.",
+ "Increases or decreases one or more components of a color.": "Zvětšuje nebo zmenšuje jednu nebo více komponent barvy.",
+ "Inherits the styles of another selector.": "Dědí styly jiného selektoru.",
+ "Inserts $insert into $string at $index.": "Vloží $insert do $string v $index.",
+ "Invalid number of parameters": "Neplatný počet parametrů.",
+ "Joins together two lists into one.": "Spojí dva seznamy do jednoho.",
+ "Lets you access and modify values in lists.": "Umožňuje přistupovat k hodnotám v seznamech a upravovat je.",
+ "Loads a Sass stylesheet and makes its mixins, functions, and variables available when this stylesheet is loaded with the @use rule.": "Načte šablonu stylů Sass a zpřístupní její mixiny, funkce a proměnné při načtení této šablony stylů s pravidlem @use.",
+ "Loads mixins, functions, and variables from other Sass stylesheets as 'modules', and combines CSS from multiple stylesheets together.": "Načte mixiny, funkce a proměnné z jiných šablon stylů Sass jako hodnoty modules a zkombinuje šablony stylů CSS z několika šablon stylů.",
+ "Makes a color darker.": "Ztmaví barvu.",
+ "Makes a color less saturated.": "Sníží sytost barvy.",
+ "Makes a color lighter.": "Zesvětlí barvu.",
+ "Makes a color more opaque.": "Změní barvu na průhlednější.",
+ "Makes a color more saturated.": "Zvýší sytost barvy.",
+ "Makes a color more transparent.": "Zprůhlední barvu.",
+ "Makes it easy to combine, search, or split apart strings.": "Usnadňuje kombinování, hledání nebo rozdělení řetězců.",
+ "Makes it possible to look up the value associated with a key in a map, and much more.": "Umožňuje vyhledat hodnotu přidruženou ke klíči na mapě a mnoho dalšího.",
+ "Merges two maps together into a new map.": "Sloučí dvě mapy dohromady do nové mapy.",
+ "Mix two colors together in a polar color space.": "Kombinace dvou barev v polárním barevném prostoru.",
+ "Mix two colors together in a rectangular color space.": "Kombinace dvou barev v obdélníkovém barevném prostoru.",
+ "Mixes two colors together.": "Smíchá dvě barvy dohromady.",
+ "Nests selector beneath one another like they would be nested in the stylesheet.": "Vnoří selektory pod sebe, jako by byly vnořené v šabloně stylů.",
+ "No unit for zero needed": "Pro nulu nejsou potřeba žádné jednotky.",
+ "Parses a selector into the format returned by &.": "Parsuje selektor do formátu vráceného příkazem &.",
+ "Prints the value of an expression to the standard error output stream. Useful for debugging complicated Sass files.": "Vytiskne hodnotu výrazu do standardního chybového výstupního datového proudu. Užitečné pro ladění složitých souborů Sass.",
+ "Prints the value of an expression to the standard error output stream. Useful for libraries that need to warn users of deprecations or recovering from minor mixin usage mistakes. Warnings can be turned off with the `--quiet` command-line option or the `:quiet` Sass option.": "Vytiskne hodnotu výrazu do standardního chybového výstupního datového proudu. Užitečné pro knihovny, které potřebují varovat uživatele před vyřazením nebo zotavením z menších chyb použití mixinů. Upozornění je možné vypnout pomocí možnosti příkazového řádku --quiet nebo možnosti Sass :quiet.",
+ "Property is ignored due to the display.": "Vlastnost se ignoruje z důvodu zobrazení.",
+ "Property is ignored due to the display. With 'display: block', vertical-align should not be used.": "Vlastnost se ignoruje z důvodu zobrazení. Při použití hodnoty display: block by se svislé zarovnání nemělo používat.",
+ "Provides access to Sass’s powerful selector engine.": "Poskytuje přístup k výkonnému modulu selekce Sass.",
+ "Provides functions that operate on numbers.": "Poskytne funkce, které pracují s čísly.",
+ "Removes quotes from a string.": "Odebere uvozovky z řetězce.",
+ "Rename to '{0}'": "Přejmenovat na {0}",
+ "Replaces $original with $replacement within $selector.": "Nahradí $original hodnotou $replacement v rámci selektoru $selector.",
+ "Replaces the nth item in a list.": "Nahradí n-tou položku v seznamu.",
+ "Returns a list of all keys in a map.": "Vrátí seznam všech klíčů v mapě.",
+ "Returns a list of all values in a map.": "Vrátí seznam všech hodnot v mapě.",
+ "Returns a new map with keys removed.": "Vrátí novou mapu s odebranými klíči.",
+ "Returns a random number.": "Vrátí náhodné číslo.",
+ "Returns a specific item in a list.": "Vrátí konkrétní položku v seznamu.",
+ "Returns the absolute value of a number.": "Vrátí absolutní hodnotu čísla.",
+ "Returns the complement of a color.": "Vrátí doplněk barvy.",
+ "Returns the index of the first occurance of $substring in $string.": "Vrátí index prvního výskytu $substring v $string.",
+ "Returns the inverse of a color.": "Vrátí inverzní hodnotu barvy.",
+ "Returns the keywords passed to a function that takes variable arguments.": "Vrátí klíčová slova předaná funkci, která přijímá argumenty proměnných.",
+ "Returns the length of a list.": "Vrátí délku seznamu.",
+ "Returns the number of characters in a string.": "Vrátí počet znaků v řetězci.",
+ "Returns the position of a value within a list.": "Vrátí pozici hodnoty v seznamu.",
+ "Returns the separator of a list.": "Vrátí oddělovač seznamu.",
+ "Returns the simple selectors that comprise a compound selector.": "Vrátí jednoduché selektory, které tvoří složený selektor.",
+ "Returns the string representation of a value as it would be represented in Sass.": "Vrátí řetězcovou reprezentaci hodnoty tak, jak by se reprezentovala v Sass.",
+ "Returns the type of a value.": "Vrátí typ hodnoty.",
+ "Returns the unit(s) associated with a number.": "Vrátí jednotky přidružené k číslu.",
+ "Returns the value in a map associated with a given key.": "Vrátí hodnotu v mapě přidružené k danému klíči.",
+ "Returns whether $super matches all the elements $sub does, and possibly more.": "Vrátí, jestli hodnota $super odpovídá všem prvkům, kterým odpovídá $sub, a možná i dalším.",
+ "Returns whether a feature exists in the current Sass runtime.": "Vrátí, jestli v aktuálním modulu runtime Sass existuje funkce.",
+ "Returns whether a function with the given name exists.": "Vrátí, zda existuje funkce s daným názvem.",
+ "Returns whether a map has a value associated with a given key.": "Vrátí, zda má mapa hodnotu přidruženou k danému klíči.",
+ "Returns whether a mixin with the given name exists.": "Vrátí, zda existuje mixin s daným názvem.",
+ "Returns whether a number has units.": "Vrátí, zda číslo obsahuje jednotky.",
+ "Returns whether a variable with the given name exists in the current scope.": "Vrátí, zda proměnná se zadaným názvem existuje v aktuálním oboru.",
+ "Returns whether a variable with the given name exists in the global scope.": "Vrátí, zda proměnná se zadaným názvem existuje v globálním oboru.",
+ "Returns whether two numbers can be added, subtracted, or compared.": "Vrátí, zda lze sečíst, odečíst nebo porovnat dvě čísla.",
+ "Rounds a number down to the previous whole number.": "Zaokrouhlí číslo dolů na nejbližší celé číslo.",
+ "Rounds a number to the nearest whole number.": "Zaokrouhlí číslo na nejbližší celé číslo.",
+ "Rounds a number up to the next whole number.": "Zaokrouhlí číslo nahoru na nejbližší celé číslo.",
+ "Sass documentation": "Dokumentace k Sass",
+ "Selector Specificity": "Specifika selektoru",
+ "Selectors should not contain IDs because these rules are too tightly coupled with the HTML.": "Selektory by neměly obsahovat ID, protože tato pravidla jsou příliš pevně spojena s HTML.",
+ "Simple HTML5 starting point": "Jednoduchý výchozí bod pro HTML5",
+ "Start tag name expected.": "Očekával se název počáteční značky.",
+ "Tag name must directly follow the open bracket.": "Název značky musí přímo následovat za levou závorkou.",
+ "The universal selector (*) is known to be slow": "Univerzální selektor (*) bývá pomalý.",
+ "Throws the value of an expression as a fatal error with stack trace. Useful for validating arguments to mixins and functions.": "Vyvolá hodnotu výrazu jako závažnou chybu s trasováním zásobníku. Hodí se pro ověřování argumentů pro mixiny a funkce.",
+ "URI expected": "očekával se identifikátor URI",
+ "URL encodes a string": "adresa URL kóduje řetězec",
+ "Unexpected character in tag.": "Neočekávaný znak ve značce.",
+ "Unifies two selectors to produce a selector that matches elements matched by both.": "Sjednocuje dva selektory k vytvoření selektoru, který odpovídá prvkům odpovídajícím oběma.",
+ "Unknown at-rule.": "Neznámé pravidlo at-rule.",
+ "Unknown property.": "Neznámá vlastnost.",
+ "Unknown property: '{0}'": "Neznámá vlastnost: {0}",
+ "Unknown vendor specific property.": "Neznámá vlastnost specifická pro dodavatele",
+ "VS Code now has built-in support for auto-renaming tags. Do you want to enable it?": "VS Code má nyní integrovanou podporu pro automatické přejmenovávání značek. Chcete ji povolit?",
+ "When using a vendor-specific prefix also include the standard property": "Při použití předpony specifické pro dodavatele je potřeba uvést také standardní vlastnost.",
+ "When using a vendor-specific prefix make sure to also include all other vendor-specific properties": "Při použití předpony specifické pro dodavatele nezapomeňte uvést i všechny ostatní vlastnosti specifické pro dodavatele.",
+ "While loop that takes an expression and repeatedly outputs the nested styles until the statement evaluates to `false`.": "Smyčka While, která přebírá výraz a opakovaně vypisuje vnořené styly, dokud se příkaz nevyhodnotí jako false.",
+ "[ expected": "očekával se znak [",
+ "] expected": "očekával se znak ]",
+ "absolute value of a number": "absolutní hodnota čísla",
+ "arccosine - inverse of cosine function": "arkus kosinus – inverzní kosinus",
+ "arcsine - inverse of sine function": "arkus sinus – inverzní sinus",
+ "arctangent - inverse of tangent function": "arkus tangens – inverzní tangens",
+ "argument from '{0}'": "argument z {0}",
+ "at-rule or selector expected": "očekávalo se pravidlo at-rule nebo selektor",
+ "at-rule unknown": "neznámé pravidlo at-rule",
+ "bind the evaluation of a ruleset to each member of a list.": "vytvoří vazbu vyhodnocení sady pravidel s každým členem seznamu.",
+ "calculates square root of a number": "vypočítá druhou odmocninu čísla",
+ "colon expected": "očekávala se dvojtečka",
+ "comma expected": "očekávala se čárka",
+ "condition expected": "očekávala se podmínka",
+ "converts numbers from one type into another": "převede čísla z jednoho typu na jiný",
+ "converts to a %, e.g. 0.5 > 50%": "provede převod na %, např. 0,5 > 50 %",
+ "cosine function": "kosinus",
+ "creates a #AARRGGBB": "vytvoří #AARRGGBB",
+ "creates a color": "vytvoří barvu",
+ "css.builtin.lab": "css.builtin.lab",
+ "dot expected": "očekávala se tečka",
+ "escape string content": "obsah řídicího řetězce",
+ "expression expected": "očekával se výraz",
+ "first argument modulus second argument": "první argument je numerickým zbytkem druhého argumentu",
+ "first argument raised to the power of the second argument": "první argument vyvolaný mocninou druhého argumentu",
+ "generate a list spanning a range of values": "vygeneruje seznamu pokrývajícího rozsah hodnot",
+ "identifier expected": "očekával se identifikátor",
+ "identifier or variable expected": "očekával se identifikátor nebo proměnná",
+ "identifier or wildcard expected": "očekával se identifikátor nebo zástupný znak",
+ "inline-block is ignored due to the float. If 'float' has a value other than 'none', the box is floated and 'display' is treated as 'block'": "Vložený blok inline-block se ignoruje z důvodu hodnoty float. Pokud má float jinou hodnotu než none, pole se uvolní a hodnota display se považuje za block.",
+ "inlines a resource and falls back to `url()`": "vloží prostředek a přejde zpět na url()",
+ "media query expected": "očekával se dotaz na média",
+ "number expected": "očekávalo se číslo",
+ "operator expected": "očekával se operátor",
+ "page directive or declaraton expected": "očekávala se direktiva stránky nebo deklarace",
+ "parses a string to a color": "parsuje řetězec na barvu",
+ "percentage expected": "očekávalo se procento",
+ "property value expected": "očekávala se hodnota vlastnosti",
+ "remove or change the unit of a dimension": "odebere nebo změní jednotku dimenze",
+ "return `@color` 10% points darker": "vrátí @color o 10 % bodů tmavší",
+ "return `@color` 10% points less saturated": "vrátí @color o 10 % bodů méně sytou",
+ "return `@color` 10% points less transparent": "vrátí hodnotu @color o 10 % bodů méně průhlednou",
+ "return `@color` 10% points lighter": "vrátí @color o 10 % bodů světlejší",
+ "return `@color` 10% points more saturated": "vrátí @color o 10 % bodů sytější",
+ "return `@color` 10% points more transparent": "vrátí @color o 10 % bodů průhlednější",
+ "return `@color` with 50% transparency": "vrátí @color s 50% průhledností",
+ "return `@color` with a 10 degree larger in hue": "vrátí @color s odstínem o 10 stupňů silnějším",
+ "return `@darkcolor` if `@color1 is> 43% luma` otherwise return `@lightcolor`, see notes": "pokud je @color1 is> 43% luma, vrátí @darkcolor, jinak vrátí @lightcolor; podívejte se na poznámky",
+ "return a mix of `@color1` and `@color2`": "vrátí kombinaci @color1 a @color2",
+ "returns a grey, 100% desaturated color": "vrátí šedou, 100% desaturovanou barvu",
+ "returns a value at the specified position in the list": "vrátí hodnotu na zadané pozici v seznamu",
+ "returns one of two values depending on a condition.": "vrátí jednu ze dvou hodnot v závislosti na podmínce.",
+ "returns pi": "vrátí pí",
+ "returns the `alpha` channel of `@color`": "vrátí kanál alpha pro @color",
+ "returns the `blue` channel of `@color`": "vrátí kanál blue pro @color",
+ "returns the `green` channel of `@color`": "vrátí kanál green pro @color",
+ "returns the `hue` channel of `@color` in the HSL space": "vrátí kanál hue pro @color v prostoru HSL",
+ "returns the `hue` channel of `@color` in the HSV space": "vrátí kanál hue pro @color v prostoru HSV",
+ "returns the `lightness` channel of `@color` in the HSL space": "vrátí kanál lightness pro @color v prostoru HSL",
+ "returns the `luma` value (perceptual brightness) of `@color`": "vrátí hodnotu luma (perceptuální jas) pro @color",
+ "returns the `red` channel of `@color`": "vrátí kanál red pro @color",
+ "returns the `saturation` channel of `@color` in the HSL space": "vrátí kanál saturation pro @color v prostoru HSL",
+ "returns the `saturation` channel of `@color` in the HSV space": "vrátí kanál saturation pro @color v prostoru HSV",
+ "returns the `value` channel of `@color` in the HSV space": "vrátí kanál value pro @color v prostoru HSV",
+ "returns the lowest of one or more values": "vrátí nejnižší z jedné nebo více hodnot",
+ "returns the number of elements in a value list": "vrátí počet elementů v seznamu hodnot",
+ "rounds a number to a number of places": "zaokrouhlí číslo na několik míst",
+ "rounds down to an integer": "zaokrouhlí dolů na datový typ integer",
+ "rounds up to an integer": "zaokrouhlí nahoru na datový typ integer",
+ "selector expected": "očekával se selektor",
+ "semi-colon expected": "očekával se středník",
+ "sine function": "sinus",
+ "string literal expected": "očekává se řetězcový literál",
+ "string replace": "nahrazení řetězce",
+ "tangent function": "tangens",
+ "term expected": "očekával se termín",
+ "unknown keyword": "neznámé klíčové slovo",
+ "uri or string expected": "očekával se identifikátor URI nebo řetězec",
+ "variable name expected": "očekával se název proměnné",
+ "variable value expected": "očekávala se proměnná hodnota",
+ "whitespace expected": "očekával se prázdný znak",
+ "wildcard expected": "očekával se zástupný znak",
+ "{ expected": "očekával se znak {",
+ "{0}, '{1}'": "{0}, {1}",
+ "} expected": "očekával se znak }"
+ },
+ "package": {
+ "description": "Poskytuje rozšířenou podporu jazyka pro soubory HTML a Handlebar.",
+ "displayName": "Funkce jazyka HTML",
+ "html.autoClosingTags": "Umožňuje povolit nebo zakázat automatické uzavírání značek HTML.",
+ "html.autoCreateQuotes": "Umožňuje povolit nebo zakázat automatické vytváření uvozovek pro přiřazení atributů HTML. Typ uvozovek lze nakonfigurovat pomocí #html.completion.attributeDefaultValue#.",
+ "html.completion.attributeDefaultValue": "Určuje výchozí hodnotu atributů při přijetí dokončení.",
+ "html.completion.attributeDefaultValue.doublequotes": "Hodnota atributu je nastavena na \"\".",
+ "html.completion.attributeDefaultValue.empty": "Hodnota atributu není nastavena.",
+ "html.completion.attributeDefaultValue.singlequotes": "Hodnota atributu je nastavena na ''.",
+ "html.customData.desc": "Seznam relativních cest k souborům odkazující na soubory JSON používající [formát vlastních dat](https://github.com/microsoft/vscode-html-languageservice/blob/master/docs/customData.md).\r\n\r\nVS Code načte vlastní data při spuštění a rozšíří svou podporu HTML o vlastní značky HTML, atributy a hodnoty atributů, které zadáte v souborech JSON.\r\n\r\nCesty k souborům jsou relativní vzhledem k pracovnímu prostoru a zvažují se jenom nastavení složek pracovního prostoru.",
+ "html.format.contentUnformatted.desc": "Seznam značek oddělených čárkami, ve kterých by se neměl přeformátovávat obsah. Výchozím nastavením při hodnotě null je značka pre.",
+ "html.format.enable.desc": "Umožňuje povolit nebo zakázat výchozí formátovací modul HTML.",
+ "html.format.extraLiners.desc": "Seznam značek oddělených čárkami, před kterými by měl být navíc doplněn symbol nového řádku. Výchozím nastavením při hodnotě null je \"head, body, /html\".",
+ "html.format.indentHandlebars.desc": "Naformátovat a odsadit {{#foo}} a {{/foo}}",
+ "html.format.indentInnerHtml.desc": "Odsadit oddíly a ",
+ "html.format.maxPreserveNewLines.desc": "Maximální počet konců řádků, které mají být zachovány v jednom bloku. Pro neomezený počet použijte hodnotu null.",
+ "html.format.preserveNewLines.desc": "Určuje, jestli mají být zachovány existující konce řádků před elementy. Funguje pouze před elementy, nikoli uvnitř značek nebo pro text.",
+ "html.format.templating.desc": "Dodržovat značky jazyka django, erb, handlebars a php pro šablonování",
+ "html.format.unformatted.desc": "Seznam značek oddělených čárkami, které by neměly být přeformátovávány. Výchozím nastavením při hodnotě null jsou všechny značky uvedené na https://www.w3.org/TR/html5/dom.html#phrasing-content.",
+ "html.format.unformattedContentDelimiter.desc": "Mezi tímto řetězcem uchovávat obsah textu pohromadě",
+ "html.format.wrapAttributes.alignedmultiple": "Zalamovat při překročení délky řádku, zarovnat atributy svisle",
+ "html.format.wrapAttributes.auto": "Atributy zalamovat pouze v případě překročení délky řádku",
+ "html.format.wrapAttributes.desc": "Zalamovat atributy",
+ "html.format.wrapAttributes.force": "Zalomit každý atribut s výjimkou prvního",
+ "html.format.wrapAttributes.forcealign": "Zalomit každý atribut s výjimkou prvního a zachovat zarovnání",
+ "html.format.wrapAttributes.forcemultiline": "Zalomit každý atribut",
+ "html.format.wrapAttributes.preserve": "Zachovat zalamování atributů",
+ "html.format.wrapAttributes.preservealigned": "Zachovat zalamování atributů, ale zarovnávat",
+ "html.format.wrapAttributesIndentSize.desc": "Odsadit zalomené atributy po N znacích. Pokud chcete použít výchozí velikost odsazení, použijte „null“. Toto nastavení se ignoruje, pokud je vlastnost #html.format.wrapAttributes# nastavena na hodnotu „aligned“.",
+ "html.format.wrapLineLength.desc": "Maximální počet znaků na řádek (0 = zakázat)",
+ "html.hover.documentation": "Po najetí myší zobrazovat značku a dokumentaci k atributu",
+ "html.hover.references": "Po najetí myší zobrazovat odkazy na MDN",
+ "html.mirrorCursorOnMatchingTag": "Umožňuje povolit nebo zakázat zrcadlení kurzoru pro párovou značku HTML.",
+ "html.mirrorCursorOnMatchingTagDeprecationMessage": "Tato možnost je zastaralá. Místo ní se používá možnost editor.linkedEditing.",
+ "html.suggest.hideEndTagSuggestions.desc": "Určuje, zda integrovaná podpora jazyka HTML navrhuje uzavírací značky. Pokud je tato možnost zakázána, dokončování koncových značek, například , se nezobrazí.",
+ "html.suggest.html5.desc": "Určuje, jestli integrovaná podpora jazyka HTML navrhuje hodnoty, vlastnosti a značky jazyka HTML5.",
+ "html.trace.server.desc": "Sleduje komunikaci mezi VS Code a serverem jazyka HTML.",
+ "html.validate.scripts": "Určuje, jestli integrovaná podpora jazyka HTML ověřuje vložené skripty.",
+ "html.validate.styles": "Určuje, jestli integrovaná podpora jazyka HTML ověřuje vložené styly."
+ }
+ }
+}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-cs/translations/extensions/vscode.html.i18n.json b/i18n/vscode-language-pack-cs/translations/extensions/vscode.html.i18n.json
index 05ef3516ae..611f4e87a0 100644
--- a/i18n/vscode-language-pack-cs/translations/extensions/vscode.html.i18n.json
+++ b/i18n/vscode-language-pack-cs/translations/extensions/vscode.html.i18n.json
@@ -9,8 +9,8 @@
"version": "1.0.0",
"contents": {
"package": {
- "displayName": "Základy jazyka HTML",
- "description": "Poskytuje zvýrazňování syntaxe, párování závorek a fragmenty kódu v souborech HTML."
+ "description": "Poskytuje zvýrazňování syntaxe, párování závorek a fragmenty kódu v souborech HTML.",
+ "displayName": "Základy jazyka HTML"
}
}
}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-cs/translations/extensions/vscode.ini.i18n.json b/i18n/vscode-language-pack-cs/translations/extensions/vscode.ini.i18n.json
index c39a9278c6..0971851dbb 100644
--- a/i18n/vscode-language-pack-cs/translations/extensions/vscode.ini.i18n.json
+++ b/i18n/vscode-language-pack-cs/translations/extensions/vscode.ini.i18n.json
@@ -9,8 +9,8 @@
"version": "1.0.0",
"contents": {
"package": {
- "displayName": "Základy jazyka Ini",
- "description": "Poskytuje zvýrazňování syntaxe a párování závorek v souborech Ini."
+ "description": "Poskytuje zvýrazňování syntaxe a párování závorek v souborech Ini.",
+ "displayName": "Základy jazyka Ini"
}
}
}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-cs/translations/extensions/vscode.ipynb.i18n.json b/i18n/vscode-language-pack-cs/translations/extensions/vscode.ipynb.i18n.json
new file mode 100644
index 0000000000..8ee9c7a782
--- /dev/null
+++ b/i18n/vscode-language-pack-cs/translations/extensions/vscode.ipynb.i18n.json
@@ -0,0 +1,29 @@
+{
+ "": [
+ "--------------------------------------------------------------------------------------------",
+ "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."
+ ],
+ "version": "1.0.0",
+ "contents": {
+ "bundle": {
+ "Insert Image as Attachment": "Vložit obrázek jako přílohu"
+ },
+ "package": {
+ "addCellOutputToChat.title": "Přidat výstup buňky do chatu",
+ "cleanInvalidImageAttachment.title": "Vyčistit neplatný odkaz na přílohu obrázku",
+ "copyCellOutput.title": "Kopírovat výstup buňky",
+ "description": "Poskytuje základní podporu pro otevírání a čtení souborů poznámkového bloku Jupyter .ipynb.",
+ "displayName": "Podpora .ipynb",
+ "ipynb.experimental.serialization": "Experimentální funkce pro serializaci poznámkového bloku Jupyter Notebook v pracovním vlákně.",
+ "ipynb.pasteImagesAsAttachments.enabled": "Umožňuje povolit nebo zakázat vkládání obrázků do buněk Markdown v souborech poznámkového bloku ipynb. Vložené obrázky se vloží do buňky jako přílohy.",
+ "markdownAttachmentRenderer.displayName": "Renderer příloh buňky ipynb Markdown-It",
+ "newUntitledIpynb.shortTitle": "Jupyter Notebook",
+ "newUntitledIpynb.title": "Nový Jupyter Notebook",
+ "openCellOutput.title": "Otevřít výstup buňky v textovém editoru",
+ "openIpynbInNotebookEditor.title": "Otevřít soubor IPYNB v editoru poznámkových bloků"
+ }
+ }
+}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-cs/translations/extensions/vscode.jake.i18n.json b/i18n/vscode-language-pack-cs/translations/extensions/vscode.jake.i18n.json
new file mode 100644
index 0000000000..5a1a8e587b
--- /dev/null
+++ b/i18n/vscode-language-pack-cs/translations/extensions/vscode.jake.i18n.json
@@ -0,0 +1,24 @@
+{
+ "": [
+ "--------------------------------------------------------------------------------------------",
+ "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."
+ ],
+ "version": "1.0.0",
+ "contents": {
+ "bundle": {
+ "Auto detecting Jake for folder {0} failed with error: {1}', this.workspaceFolder.name, err.error ? err.error.toString() : 'unknown": "Automatické zjišťování Jake pro složku {0} selhalo s chybou: {1}, this.workspaceFolder.name, err.error ? err.error.toString() : 'unknown",
+ "Go to output": "Přejít na výstup",
+ "Problem finding jake tasks. See the output for more information.": "Při hledání úloh jake došlo k problému. Další informace najdete ve výstupu."
+ },
+ "package": {
+ "config.jake.autoDetect": "Ovládá povolení detekce úloh Jake. Detekce úloh Jake může způsobit, že se soubory spustí v libovolném otevřeném pracovním prostoru.",
+ "description": "Rozšíření pro přidání schopností Jake do VS Code",
+ "displayName": "Podpora jazyka Jake pro VS Code",
+ "jake.taskDefinition.file.description": "Soubor Jake, který poskytuje úlohu. Lze vynechat.",
+ "jake.taskDefinition.type.description": "Úloha Jake, která se má přizpůsobit"
+ }
+ }
+}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-cs/translations/extensions/vscode.java.i18n.json b/i18n/vscode-language-pack-cs/translations/extensions/vscode.java.i18n.json
index d93ece0ade..18e39c59b3 100644
--- a/i18n/vscode-language-pack-cs/translations/extensions/vscode.java.i18n.json
+++ b/i18n/vscode-language-pack-cs/translations/extensions/vscode.java.i18n.json
@@ -9,8 +9,8 @@
"version": "1.0.0",
"contents": {
"package": {
- "displayName": "Základy jazyka Java",
- "description": "Poskytuje fragmenty kódu, zvýrazňování syntaxe, párování závorek a sbalování kódu v souborech jazyka Java."
+ "description": "Poskytuje fragmenty kódu, zvýrazňování syntaxe, párování závorek a sbalování kódu v souborech jazyka Java.",
+ "displayName": "Základy jazyka Java"
}
}
}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-cs/translations/extensions/vscode.javascript.i18n.json b/i18n/vscode-language-pack-cs/translations/extensions/vscode.javascript.i18n.json
index e89e658cd1..3b301e5e68 100644
--- a/i18n/vscode-language-pack-cs/translations/extensions/vscode.javascript.i18n.json
+++ b/i18n/vscode-language-pack-cs/translations/extensions/vscode.javascript.i18n.json
@@ -9,8 +9,8 @@
"version": "1.0.0",
"contents": {
"package": {
- "displayName": "Základy jazyka JavaScript",
- "description": "Poskytuje fragmenty kódu, zvýrazňování syntaxe, párování závorek a sbalování kódu v souborech jazyka JavaScript."
+ "description": "Poskytuje fragmenty kódu, zvýrazňování syntaxe, párování závorek a sbalování kódu v souborech jazyka JavaScript.",
+ "displayName": "Základy jazyka JavaScript"
}
}
}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-cs/translations/extensions/vscode.json-language-features.i18n.json b/i18n/vscode-language-pack-cs/translations/extensions/vscode.json-language-features.i18n.json
new file mode 100644
index 0000000000..b878c7ab45
--- /dev/null
+++ b/i18n/vscode-language-pack-cs/translations/extensions/vscode.json-language-features.i18n.json
@@ -0,0 +1,190 @@
+{
+ "": [
+ "--------------------------------------------------------------------------------------------",
+ "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."
+ ],
+ "version": "1.0.0",
+ "contents": {
+ "bundle": {
+ "$ref '{0}' in '{1}' can not be resolved.": "$ref {0} v {1} se nedá přeložit.",
+ "": "",
+ "A default value. Used by suggestions.": "Výchozí hodnota. Používá se v návrzích.",
+ "A descriptive title of the schema.": "Popisný název schématu.",
+ "A long description of the schema. Used in hover menus and suggestions.": "Dlouhý popis schématu. Používá se v nabídkách a návrzích při přechodu myší.",
+ "A map of property names to either an array of property names or a schema. An array of property names means the property named in the key depends on the properties in the array being present in the object in order to be valid. If the value is a schema, then the schema is only applied to the object if the property in the key exists on the object.": "Mapa názvů vlastností pro pole názvů vlastností nebo schéma. Pole názvů vlastností znamená, že platnost vlastnosti pojmenované v klíči závisí na tom, aby se vlastnosti v poli nacházely i v objektu. Pokud je hodnotou schéma, použije se schéma na objekt pouze v případě, že vlastnost v klíči existuje i v objektu.",
+ "A map of property names to schemas for each property.": "Mapa názvů vlastností pro schémata pro každou vlastnost.",
+ "A map of regular expressions on property names to schemas for matching properties.": "Mapa regulárních výrazů v názvech vlastností pro schémata pro odpovídající vlastnosti.",
+ "A number that should cleanly divide the current value (i.e. have no remainder).": "Číslo, které by mělo vyčistit dělení aktuální hodnoty (tj. dělit beze zbytku).",
+ "A regular expression to match the string against. It is not implicitly anchored.": "Regulární výraz, se kterým se má řetězec shodovat. Není implicitně ukotven.",
+ "A schema which must not match.": "Schéma, které se nesmí shodovat.",
+ "A unique identifier for the schema.": "Jedinečný identifikátor daného schématu.",
+ "An array instance is valid against \"contains\" if at least one of its elements is valid against the given schema.": "Instance pole je platná pro „contains“, pokud je alespoň jeden z jejích prvků platný proti danému schématu.",
+ "An array of schemas, all of which must match.": "Pole schémat, které se musí shodovat.",
+ "An array of schemas, exactly one of which must match.": "Pole schémat, z nichž přesně jedno se musí shodovat.",
+ "An array of schemas, where at least one must match.": "Pole schémat, kde se musí shodovat alespoň jedno.",
+ "An array of strings that lists the names of all properties required on this object.": "Pole řetězců, které obsahuje názvy všech vlastností požadovaných pro tento objekt.",
+ "An instance validates successfully against this keyword if its value is equal to the value of the keyword.": "Instance se úspěšně ověří vůči tomuto klíčovému slovu, pokud se její hodnota rovná hodnotě klíčového slova.",
+ "Array does not contain required item.": "Pole neobsahuje požadovanou položku.",
+ "Array has duplicate items.": "Pole obsahuje duplicitní položky.",
+ "Array has too few items that match the contains contraint. Expected {0} or more.": "Pole má příliš málo položek, které odpovídají omezení typu contains. Očekává se {0} nebo více.",
+ "Array has too few items. Expected {0} or more.": "Pole má příliš málo položek. Očekávalo se {0} nebo více.",
+ "Array has too many items according to schema. Expected {0} or fewer.": "Pole má podle schématu příliš mnoho položek. Očekává se {0} nebo méně.",
+ "Array has too many items that match the contains contraint. Expected {0} or less.": "Pole obsahuje příliš mnoho položek, které se shodují s argumentem omezení typu contains. Očekává se {0} nebo menší.",
+ "Array has too many items. Expected {0} or fewer.": "Pole obsahuje příliš mnoho položek. Očekávalo se {0} nebo méně.",
+ "Colon expected": "Očekává se dvojtečka.",
+ "Comments are not permitted in JSON.": "Komentáře nejsou ve formátu JSON povolené.",
+ "Comments from schema authors to readers or maintainers of the schema.": "Komentáře autorů schémat pro čtenáře nebo správce schématu.",
+ "Configure": "Konfigurovat",
+ "Configured by extension: {0}": "Nakonfigurováno rozšířením: {0}",
+ "Configured in user settings": "Nakonfigurováno v uživatelských nastaveních",
+ "Configured in workspace settings": "Nakonfigurováno v nastavení pracovního prostoru",
+ "Default value": "Výchozí hodnota",
+ "Describes the content encoding of a string property.": "Popisuje kódování obsahu řetězcové vlastnosti.",
+ "Describes the format expected for the value. By default, not used for validation": "Popisuje formát očekávaný pro hodnotu. Ve výchozím nastavení se nepoužívá k ověření.",
+ "Describes the media type of a string property.": "Popisuje typ média vlastnosti řetězce.",
+ "Downloading schemas is disabled in untrusted workspaces": "Stahování schémat je v nedůvěryhodných pracovních prostorech zakázáno",
+ "Downloading schemas is disabled through setting '{0}'": "Stahování schémat je prostřednictvím nastavení {0} zakázané.",
+ "Downloading schemas is disabled. Click to configure.": "Stahování schémat je zakázané. Po kliknutí ho můžete nakonfigurovat.",
+ "Draft-03 schemas are not supported.": "Schémata Draft-03 se nepodporují.",
+ "Duplicate anchor declaration: '{0}'": "Duplicitní deklarace ukotvení: {0}",
+ "Duplicate object key": "Duplikovat klíč objektu",
+ "Either a schema or a boolean. If a schema, used to validate all properties not matched by 'properties', 'propertyNames', or 'patternProperties'. If false, any properties not defined by the adajacent keywords will cause this schema to fail.": "Schéma nebo logická hodnota. Pokud jde o schéma, použije se k ověření všech vlastností, které neodpovídají vlastnostem properties, propertyNames nebo patternProperties. Pokud je false, všechny vlastnosti, které nejsou definovány pomocí souvisejících klíčových slov, způsobí selhání tohoto schématu.",
+ "Either a string of one of the basic schema types (number, integer, null, array, object, boolean, string) or an array of strings specifying a subset of those types.": "Buď řetězec jednoho ze základních typů schématu (číslo, celé číslo, null, pole, objekt, logická hodnota, řetězec), nebo pole řetězců určující podmnožinu těchto typů.",
+ "End of file expected.": "Očekával se konec souboru.",
+ "Expected a JSON object, array or literal.": "Očekává se objekt JSON, pole nebo literál.",
+ "Expected comma": "Očekává se čárka",
+ "Expected comma or closing brace": "Očekávala se čárka nebo pravá složená závorka.",
+ "Expected comma or closing bracket": "Očekává se čárka nebo pravá hranatá závorka",
+ "Failed to sort the JSONC document, please consider opening an issue.": "Nepovedlo se seřadit dokument JSONC. Zvažte prosím nahlášení problému.",
+ "For arrays, only when items is set as an array. If items are a schema, this schema validates items after the ones specified by the items schema. If false, additional items will cause validation to fail.": "Pro pole pouze v případě, že jsou položky nastaveny jako pole. Pokud jsou položky schématem, toto schéma ověří položky po položkách zadaných ve schématu položek. Pokud je false, způsobí další položky selhání ověření.",
+ "For arrays. Can either be a schema to validate every element against or an array of schemas to validate each item against in order (the first schema will validate the first element, the second schema will validate the second element, and so on.": "Pro pole. Může se jednat o schéma, proti němuž se ověří každý prvek, nebo pole schémat pro ověření jednotlivých položek v uvedeném pořadí (první schéma ověří první prvek, druhé schéma ověří druhý prvek atd.",
+ "If all of the items in the array must be unique. Defaults to false.": "Použijte, pokud musí být všechny položky v poli jedinečné. Výchozí hodnota je false.",
+ "If the instance is an object, this keyword validates if every property name in the instance validates against the provided schema.": "Pokud je instance objektem, toto klíčové slovo ověří, jestli se všechny názvy vlastností v instanci ověřují proti zadanému schématu.",
+ "Incorrect type. Expected \"{0}\".": "Nesprávný typ. Očekávalo se „{0}“.",
+ "Incorrect type. Expected one of {0}.": "Nesprávný typ. Očekával se některý z {0}.",
+ "Indicates that the value of the instance is managed exclusively by the owning authority.": "Označuje, že hodnotu instance spravuje výhradně vlastnící autorita.",
+ "Invalid characters in string. Control characters must be escaped.": "Neplatné znaky v řetězci. Řídicí znaky musí být uvozeny řídicím znakem.",
+ "Invalid color format. Use #RGB, #RGBA, #RRGGBB or #RRGGBBAA.": "Neplatný formát barvy. Použijte #RGB, #RGBA, #RRGGBB nebo #RRGGBBAA.",
+ "Invalid escape character in string.": "Neplatný řídicí znak v řetězci.",
+ "Invalid number format.": "Neplatný formát čísla.",
+ "Invalid unicode sequence in string.": "Neplatná sekvence Unicode v řetězci.",
+ "Item does not match any validation rule from the array.": "Položka neodpovídá žádnému ověřovacímu pravidlu z pole.",
+ "JSON Language Server": "Server jazyka JSON",
+ "JSON Outline Status": "Stav osnovy JSON",
+ "JSON Validation Status": "Stav ověření JSON",
+ "JSON schema cache cleared.": "Mezipaměť schémat JSON byla vymazána.",
+ "JSON schema configured": "schéma JSON je nakonfigurované",
+ "JSON: Schema Resolution Error": "JSON: chyba vyhodnocení schématu",
+ "Learn more about JSON schema configuration...": "Další informace o konfiguraci schématu JSON…",
+ "Loading JSON info": "Načítají se informace JSON.",
+ "Makes the maximum property exclusive.": "Vyhradí maximální vlastnost.",
+ "Makes the minimum property exclusive.": "Nastaví minimální vlastnost jako výhradní.",
+ "Matches a schema that is not allowed.": "Odpovídá nepovolenému schématu.",
+ "Matches multiple schemas when only one must validate.": "Odpovídá více schématům, když se musí ověřit jenom jedno.",
+ "Missing property \"{0}\".": "Chybí vlastnost „{0}“.",
+ "New array": "Nové pole",
+ "New object": "Nový objekt",
+ "No schema configured for this file": "Pro tento soubor není nakonfigurované žádné schéma.",
+ "No schema validation": "Žádné ověření schématu",
+ "Not used for validation. Place subschemas here that you wish to reference inline with $ref.": "Nepoužívá se k ověření. Sem umístěte dílčí nákresy, na které chcete odkazovat pomocí $ref.",
+ "Object has fewer properties than the required number of {0}": "Objekt má méně vlastností, než je požadovaný počet {0}",
+ "Object has more properties than limit of {0}.": "Objekt má více vlastností, než je limit {0}.",
+ "Object is missing property {0} required by property {1}.": "U objektu chybí vlastnost {0} vyžadovaná vlastností {1}.",
+ "Open Extension": "Otevřít rozšíření",
+ "Open Settings": "Otevřít nastavení",
+ "Outline": "Osnova",
+ "Problem reading content from '{0}': UTF-8 with BOM detected, only UTF 8 is allowed.": "Problém se čtením obsahu z {0}: Zjistilo se UTF-8 s BOM, povoluje se jen UTF 8.",
+ "Problems loading reference '{0}': {1}": "Problémy s načítáním odkazu {0}: {1}",
+ "Property expected": "Očekává se vlastnost",
+ "Property keys must be doublequoted": "Klíče vlastností musí být ve dvojitých uvozovkách.",
+ "Property {0} is not allowed.": "Vlastnost {0} není povolená.",
+ "Reference a definition hosted on any location.": "Odkazujte na definici hostovanou v libovolném umístění.",
+ "Sample JSON values associated with a particular schema, for the purpose of illustrating usage.": "Ukázkové hodnoty JSON přidružené k určitému schématu pro účely ilustrace použití.",
+ "Schema not found: {0}": "Schéma nenalezeno: {0}",
+ "Schema validated": "Schéma ověřeno",
+ "Select the schema to use for {0}": "Vyberte schéma, které se má použít pro {0}",
+ "Show Schemas": "Zobrazit schémata",
+ "Sort JSON": "Seřadit JSON",
+ "String does not match the pattern of \"{0}\".": "Řetězec neodpovídá vzoru „{0}“.",
+ "String is longer than the maximum length of {0}.": "Řetězec je delší než maximální délka {0}.",
+ "String is not a RFC3339 date-time.": "Řetězec není datum a čas RFC3339.",
+ "String is not a RFC3339 date.": "Řetězec není datum RFC3339.",
+ "String is not a RFC3339 time.": "Řetězec není čas RFC3339.",
+ "String is not a URI: {0}": "Řetězec není identifikátor URI: {0}",
+ "String is not a hostname.": "Řetězec není název hostitele.",
+ "String is not an IPv4 address.": "Řetězec není IPv4 adresa.",
+ "String is not an IPv6 address.": "Řetězec není IPv6 adresa.",
+ "String is not an e-mail address.": "Řetězec není e-mailová adresa.",
+ "String is shorter than the minimum length of {0}.": "Řetězec je kratší než minimální délka {0}.",
+ "The \"else\" subschema is used for validation when the \"if\" subschema fails.": "Podschéma else se používá k ověření, když selže podschéma if.",
+ "The \"then\" subschema is used for validation when the \"if\" subschema succeeds.": "Podschéma then se používá k ověření, když je podschéma if úspěšné.",
+ "The maximum length of a string.": "Maximální délka řetězce.",
+ "The maximum number of items that can be inside an array. Inclusive.": "Maximální počet položek, které mohou být uvnitř pole. Inkluzivní.",
+ "The maximum number of properties an object can have. Inclusive.": "Maximální počet vlastností, které objekt může mít. Inkluzivní.",
+ "The maximum numerical value, inclusive by default.": "Minimální číselná hodnota, která je ve výchozím nastavení inkluzivní.",
+ "The minimum length of a string.": "Minimální délka řetězce.",
+ "The minimum number of items that can be inside an array. Inclusive.": "Minimální počet položek, které mohou být uvnitř pole. Inkluzivní.",
+ "The minimum number of properties an object can have. Inclusive.": "Minimální počet vlastností, které objekt může mít. Inkluzivní.",
+ "The minimum numerical value, inclusive by default.": "Minimální číselná hodnota, která je ve výchozím nastavení inkluzivní.",
+ "The schema to verify this document against.": "Schéma, proti kterému se má tento dokument ověřit.",
+ "The schema uses meta-schema features ({0}) that are not yet supported by the validator.": "Schéma používá funkce meta schématu ({0}), které validátor zatím nepodporuje.",
+ "The set of literal values that are valid.": "Sada hodnot literálů, které jsou platné.",
+ "The validation outcome of the \"if\" subschema controls which of the \"then\" or \"else\" keywords are evaluated.": "Výsledek ověření podschématu if určuje, které klíčové slovo (then nebo else) se vyhodnotí.",
+ "Trailing comma": "Koncová čárka",
+ "URI expected.": "Očekával se identifikátor URI.",
+ "URI is expected.": "Očekává se identifikátor URI.",
+ "URI with a scheme is expected.": "Očekává se identifikátor URI se schématem.",
+ "Unable to compute used schemas: No document": "Nelze vypočítat použitá schémata: Žádný dokument",
+ "Unable to compute used schemas: {0}": "Nelze vypočítat použitá schémata: {0}",
+ "Unable to download schemas in untrusted workspaces.": "Nelze stáhnout schémata v nedůvěryhodných pracovních prostorech.",
+ "Unable to load schema from '{0}'. No schema request service available": "Nepovedlo se načíst schéma z(e) „{0}“. Není k dispozici žádná služba žádostí o schéma.",
+ "Unable to load schema from '{0}': No content.": "Nelze načíst schéma z {0}: žádný obsah.",
+ "Unable to load schema from '{0}': {1}.": "Nelze načíst schéma z {0}: {1}.",
+ "Unable to load {0}": "Nelze načíst {0}.",
+ "Unable to parse content from '{0}': Parse error at offset {1}.": "Nelze analyzovat obsah z {0}: chyba analýzy na posunu {1}",
+ "Unable to resolve schema. Click to retry.": "Schéma nelze vyhodnotit. Kliknutím to můžete zkusit znovu.",
+ "Unexpected end of comment.": "Neočekávaný konec komentáře.",
+ "Unexpected end of number.": "Neočekávaný konec čísla.",
+ "Unexpected end of string.": "Neočekávaný konec řetězce.",
+ "Value expected": "Očekává se hodnota",
+ "Value is above the exclusive maximum of {0}.": "Hodnota je nad výhradním maximem {0}.",
+ "Value is above the maximum of {0}.": "Hodnota je vyšší než maximální hodnota {0}.",
+ "Value is below the exclusive minimum of {0}.": "Hodnota je nižší než výhradní minimum {0}.",
+ "Value is below the minimum of {0}.": "Hodnota je nižší než minimum {0}.",
+ "Value is deprecated": "Hodnota je zastaralá.",
+ "Value is not accepted. Valid values: {0}.": "Tato hodnota se nepřijímá. Platné hodnoty: {0}.",
+ "Value is not divisible by {0}.": "Hodnota není dělitelná {0}.",
+ "Value must be {0}.": "Hodnota musí být {0}.",
+ "multiple JSON schemas configured": "nakonfigurovalo se několik schémat JSON",
+ "no JSON schema configured": "není nakonfigurované žádné schéma JSON",
+ "only {0} document symbols shown for performance reasons": "z důvodu výkonu se zobrazuje jen tento počet symbolů: {0}",
+ "{0} is a directory, not a file": "{0} je adresář, ne soubor."
+ },
+ "package": {
+ "description": "Poskytuje rozšířenou podporu jazyka pro soubory JSON.",
+ "displayName": "Funkce jazyka JSON",
+ "json.clickToRetry": "Kliknutím to můžete zkusit znovu.",
+ "json.colorDecorators.enable.deprecationMessage": "Nastavení json.colorDecorators.enable je zastaralé. Místo něj se používá nastavení editor.colorDecorators.",
+ "json.colorDecorators.enable.desc": "Povolí nebo zakáže dekoratéry barev.",
+ "json.command.clearCache": "Vymazat mezipaměť schématu",
+ "json.command.sort": "Seřadit dokument",
+ "json.enableSchemaDownload.desc": "Pokud je tato možnost povolená, schémata JSON se dají načíst z umístění HTTP a HTTPS.",
+ "json.format.enable.desc": "Umožňuje povolit nebo zakázat výchozí formátovací modul JSON.",
+ "json.format.keepLines.desc": "Při formátování zachovejte všechny existující nové řádky.",
+ "json.maxItemsComputed.desc": "Maximální počet symbolů osnovy a vypočítaných oblastí sbalení (omezeno kvůli výkonu)",
+ "json.maxItemsExceededInformation.desc": "Zobrazí oznámení při překročení maximálního počtu symbolů osnovy a oblastí sbalení.",
+ "json.schemaResolutionErrorMessage": "Schéma nelze vyhodnotit.",
+ "json.schemas.desc": "Přidružit schémata k souborům JSON v aktuálním projektu",
+ "json.schemas.fileMatch.desc": "Pole vzorů souborů, které se mají porovnat při překladu souborů JSON na schémata * a ** se dají použít jako zástupný znak. Můžete také definovat vzory vyloučení začínající symbolem „!“. Soubor se shoduje, když existuje minimálně jeden odpovídající vzor a poslední odpovídající vzor není vzorem vyloučení.",
+ "json.schemas.fileMatch.item.desc": "Vzor souboru, který může obsahovat hvězdičku (* a **) a který umožňuje vyhledat shody při překladu souborů JSON na schémata. Když začíná znakem !, definuje vzor vyloučení.",
+ "json.schemas.schema.desc": "Definice schématu pro danou adresu URL. Schéma musí být zadáno pouze proto, aby se zabránilo přístupu k adrese URL schématu.",
+ "json.schemas.url.desc": "Adresa URL nebo absolutní cesta k souboru schématu. Může se jednat o relativní cestu (začínající na ./) v nastavení pracovního prostoru a složky pracovního prostoru.",
+ "json.tracing.desc": "Umožňuje sledovat komunikaci mezi VS Code a serverem jazyka JSON.",
+ "json.validate.enable.desc": "Povolí nebo zakáže ověřování JSON.",
+ "json.workspaceTrust": "Rozšíření vyžaduje vztah důvěryhodnosti pracovního prostoru, aby se načetla schémata z http a https."
+ }
+ }
+}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-cs/translations/extensions/vscode.json.i18n.json b/i18n/vscode-language-pack-cs/translations/extensions/vscode.json.i18n.json
index 39de7979b9..bd48063720 100644
--- a/i18n/vscode-language-pack-cs/translations/extensions/vscode.json.i18n.json
+++ b/i18n/vscode-language-pack-cs/translations/extensions/vscode.json.i18n.json
@@ -9,8 +9,8 @@
"version": "1.0.0",
"contents": {
"package": {
- "displayName": "Základy jazyka JSON",
- "description": "Poskytuje zvýrazňování syntaxe a párování závorek v souborech JSON."
+ "description": "Poskytuje zvýrazňování syntaxe a párování závorek v souborech JSON.",
+ "displayName": "Základy jazyka JSON"
}
}
}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-cs/translations/extensions/julia.i18n.json b/i18n/vscode-language-pack-cs/translations/extensions/vscode.julia.i18n.json
similarity index 100%
rename from i18n/vscode-language-pack-cs/translations/extensions/julia.i18n.json
rename to i18n/vscode-language-pack-cs/translations/extensions/vscode.julia.i18n.json
diff --git a/i18n/vscode-language-pack-cs/translations/extensions/latex.i18n.json b/i18n/vscode-language-pack-cs/translations/extensions/vscode.latex.i18n.json
similarity index 100%
rename from i18n/vscode-language-pack-cs/translations/extensions/latex.i18n.json
rename to i18n/vscode-language-pack-cs/translations/extensions/vscode.latex.i18n.json
diff --git a/i18n/vscode-language-pack-cs/translations/extensions/vscode.less.i18n.json b/i18n/vscode-language-pack-cs/translations/extensions/vscode.less.i18n.json
index 3ce17c4387..0d67ed786b 100644
--- a/i18n/vscode-language-pack-cs/translations/extensions/vscode.less.i18n.json
+++ b/i18n/vscode-language-pack-cs/translations/extensions/vscode.less.i18n.json
@@ -9,8 +9,8 @@
"version": "1.0.0",
"contents": {
"package": {
- "displayName": "Základy jazyka Less",
- "description": "Poskytuje zvýrazňování syntaxe, párování závorek a sbalování kódu v souborech Less."
+ "description": "Poskytuje zvýrazňování syntaxe, párování závorek a sbalování kódu v souborech Less.",
+ "displayName": "Základy jazyka Less"
}
}
}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-cs/translations/extensions/vscode.log.i18n.json b/i18n/vscode-language-pack-cs/translations/extensions/vscode.log.i18n.json
index 97ceeb4a59..ea5bd34b64 100644
--- a/i18n/vscode-language-pack-cs/translations/extensions/vscode.log.i18n.json
+++ b/i18n/vscode-language-pack-cs/translations/extensions/vscode.log.i18n.json
@@ -9,8 +9,8 @@
"version": "1.0.0",
"contents": {
"package": {
- "displayName": "Protokol",
- "description": "Poskytuje zvýrazňování syntaxe pro soubory s příponou .log."
+ "description": "Poskytuje zvýrazňování syntaxe pro soubory s příponou .log.",
+ "displayName": "Protokol"
}
}
}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-cs/translations/extensions/vscode.lua.i18n.json b/i18n/vscode-language-pack-cs/translations/extensions/vscode.lua.i18n.json
index 985eec6d69..e5a921c601 100644
--- a/i18n/vscode-language-pack-cs/translations/extensions/vscode.lua.i18n.json
+++ b/i18n/vscode-language-pack-cs/translations/extensions/vscode.lua.i18n.json
@@ -9,8 +9,8 @@
"version": "1.0.0",
"contents": {
"package": {
- "displayName": "Základy jazyka Lua",
- "description": "Poskytuje zvýrazňování syntaxe a párování závorek v souborech Lua."
+ "description": "Poskytuje zvýrazňování syntaxe a párování závorek v souborech Lua.",
+ "displayName": "Základy jazyka Lua"
}
}
}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-cs/translations/extensions/vscode.make.i18n.json b/i18n/vscode-language-pack-cs/translations/extensions/vscode.make.i18n.json
index 34c1c049e4..ef0349de63 100644
--- a/i18n/vscode-language-pack-cs/translations/extensions/vscode.make.i18n.json
+++ b/i18n/vscode-language-pack-cs/translations/extensions/vscode.make.i18n.json
@@ -9,8 +9,8 @@
"version": "1.0.0",
"contents": {
"package": {
- "displayName": "Základy jazyka Make",
- "description": "Poskytuje zvýrazňování syntaxe a párování závorek v souborech Make."
+ "description": "Poskytuje zvýrazňování syntaxe a párování závorek v souborech Make.",
+ "displayName": "Základy jazyka Make"
}
}
}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-cs/translations/extensions/vscode.markdown-language-features.i18n.json b/i18n/vscode-language-pack-cs/translations/extensions/vscode.markdown-language-features.i18n.json
new file mode 100644
index 0000000000..a621002286
--- /dev/null
+++ b/i18n/vscode-language-pack-cs/translations/extensions/vscode.markdown-language-features.i18n.json
@@ -0,0 +1,172 @@
+{
+ "": [
+ "--------------------------------------------------------------------------------------------",
+ "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."
+ ],
+ "version": "1.0.0",
+ "contents": {
+ "bundle": {
+ "...1 additional file not shown": "...nezobrazuje se 1 další soubor",
+ "...{0} additional files not shown": "...{0} dalších souborů není zobrazeno",
+ "Allow all content and script execution. Not recommended": "Povolit veškerý obsah a skriptování (nedoporučuje se)",
+ "Allow insecure content": "Povolit nezabezpečený obsah",
+ "Allow insecure local content": "Povolit nezabezpečený místní obsah",
+ "Always": "Vždy",
+ "An unexpected error occurred while restoring the Markdown preview.": "Při obnovování náhledu Markdown došlo k neočekávané chybě.",
+ "Checking for Markdown links to update": "Kontrolují se odkazy Markdown, které se mají aktualizovat.",
+ "Content Disabled Security Warning": "Upozornění zabezpečení na zakázání obsahu",
+ "Could not load 'markdown.styles': {0}": "Nepovedlo se načíst markdown.styles: {0}",
+ "Could not open {0}": "{0} se nepovedlo otevřít.",
+ "Disable": "Zakázat",
+ "Disable preview security warning in this workspace": "Zakázat upozornění zabezpečení náhledu v tomto pracovním prostoru",
+ "Disable validation of Markdown links": "Zakázat ověřování odkazů Markdownu",
+ "Does not affect the content security level": "Nemá vliv na úroveň zabezpečení obsahu.",
+ "Enable": "Povolit",
+ "Enable loading content over http": "Povolit načítání obsahu přes protokol http",
+ "Enable loading content over http served from localhost": "Povolit načítání obsahu přes protokol HTTP z místního hostitele (localhost)",
+ "Enable preview security warnings in this workspace": "Povolit upozornění zabezpečení náhledu v tomto pracovním prostoru",
+ "Enable validation of Markdown links": "Povolit ověřování odkazů Markdownu",
+ "Exclude '{0}' from link validation.": "Vyloučení {0} z ověření odkazu",
+ "Extract to link definition": "Extrahovat do definice odkazu",
+ "File does not exist at path: {0}": "Neexistující soubor na cestě: {0}",
+ "Find file references failed. No resource provided.": "Operace vyhledání odkazů na soubory neproběhla úspěšně. Neposkytl se žádný prostředek.",
+ "Finding file references": "Vyhledávají se odkazy na soubory",
+ "Follow link": "Přejít na odkaz",
+ "Go to link definition": "Přejít na definici odkazu",
+ "Header does not exist in file: {0}": "Neexistující hlavička v souboru: {0}",
+ "Insert Markdown Audio": "Vložit zvuk Markdownu",
+ "Insert Markdown Image": "Vložit obrázek Markdown",
+ "Insert Markdown Images": "Vložit obrázky Markdown",
+ "Insert Markdown Images and Links": "Vložit obrázky a odkazy Markdown",
+ "Insert Markdown Link": "Vložit odkaz Markdown",
+ "Insert Markdown Links": "Vložit odkazy Markdown",
+ "Insert Markdown Media": "Vložit média Markdown",
+ "Insert Markdown Media and Images": "Vložit multimédia a obrázky Markdownu",
+ "Insert Markdown Media and Links": "Vložit média a odkazy Markdown",
+ "Insert Markdown Video": "Vložit video Markdownu",
+ "Insert image": "Vložit obrázek",
+ "Insert link": "Vložit odkaz",
+ "Link definition for '{0}' already exists": "Definice odkazu pro {0} už existuje.",
+ "Link definition is unused": "Definice odkazu se nepoužívá.",
+ "Link is already a reference": "Odkaz už je reference.",
+ "Link is also defined here": "Odkaz už je tady také definován.",
+ "Link to '# {0}' in '{1}'": "Propojit s # {0} v {1}",
+ "Link to '{0}'": "Propojit s {0}",
+ "Markdown Language Server": "Jazykový server Markdown",
+ "Markdown link validation disabled": "Ověřování odkazu Markdown zakázáno",
+ "Markdown link validation enabled": "Ověřování odkazu Markdownu je povolené.",
+ "Media": "Média",
+ "More Information": "Další informace",
+ "Never": "Nikdy",
+ "No": "Ne",
+ "No header found: '{0}'": "Nenašla se žádná hlavička: {0}",
+ "No link definition found: '{0}'": "Nenašla se žádná definice odkazu: „{0}“",
+ "Not on link": "Není v odkazu",
+ "Only load secure content": "Načítat pouze zabezpečený obsah",
+ "Paste and update pasted links": "Vložit a aktualizovat vložené odkazy",
+ "Potentially unsafe or insecure content has been disabled in the Markdown preview. Change the Markdown preview security setting to allow insecure content or enable scripts": "V náhledu Markdownu byl zakázán potenciálně nebezpečný nebo nezabezpečený obsah. Pokud chcete povolit nezabezpečený obsah nebo pokud chcete povolit skripty, změňte nastavení zabezpečení náhledu Markdownu.",
+ "Preview {0}": "Náhled: {0}",
+ "Reference link '{0}'": "Referenční odkaz {0}",
+ "Remove duplicate link definition": "Odebrat definici duplicitního odkazu",
+ "Remove unused link definition": "Odebrat nepoužívanou definici odkazu",
+ "Renaming is not supported here. Try renaming a header or link.": "Přejmenování se tady nepodporuje. Zkuste přejmenovat záhlaví nebo odkaz.",
+ "Select security settings for Markdown previews in this workspace": "Vybrat nastavení zabezpečení pro náhledy Markdownu v tomto pracovním prostoru",
+ "Some content has been disabled in this document": "Některý obsah v tomto dokumentu byl zakázán.",
+ "Strict": "Striktní",
+ "Update Markdown links for '{0}'?": "Aktualizovat odkazy Markdownu pro{0}?",
+ "Update Markdown links for the following {0} files?": "Chcete aktualizovat odkazy Markdown pro následující ({0}) soubory?",
+ "Yes": "Ano",
+ "[Preview] {0}": "[Preview] {0}",
+ "{0} cannot be found": "{0} nelze najít."
+ },
+ "package": {
+ "configuration.copyIntoWorkspace.mediaFiles": "Zkuste do pracovního prostoru zkopírovat externí soubory obrázků a videí.",
+ "configuration.copyIntoWorkspace.never": "Nekopírovat externí soubory do pracovního prostoru.",
+ "configuration.markdown.copyFiles.destination": "Nakonfiguruje cestu a název souboru souborů vytvořených kopírováním, vložením nebo přetažením. Toto je mapa globů, které se shodují s cestou k dokumentu Markdownu k cílové cestě, kde by se měl nový soubor vytvořit.\r\n\r\nCílová cesta může používat následující proměnné:\r\n\r\n– ${documentDirName} – absolutní cesta nadřazeného adresáře dokumentu Markdown, například /Users/me/myProject/docs.\r\n– ${documentRelativeDirName} – relativní nadřazená cesta k adresáři dokumentu Markdown, například docs. Je stejná jako ${documentDirName}, pokud soubor není součástí pracovního prostoru.\r\n– ${documentFileName} – úplný název souboru dokumentu Markdown, například README.md.\r\n– ${documentBaseName} – základní název dokumentu Markdownu, například README.\r\n– ${documentExtName} – přípona dokumentu Markdown, například md.\r\n– ${documentFilePath} – absolutní cesta k dokumentu Markdown, například /Users/me/myProject/docs/README.md.\r\n– ${documentRelativeFilePath} – relativní cesta k dokumentu Markdown, například docs/README.md. Je stejná jako ${documentFilePath}, pokud soubor není součástí pracovního prostoru.\r\n– ${documentWorkspaceFolder} – složka pracovního prostoru pro dokument Markdown, například /Users/me/myProject. Je stejná jako ${documentDirName}, pokud soubor není součástí pracovního prostoru.\r\n– ${fileName} – název vyřazeného souboru, například image.png.\r\n– ${fileExtName} – přípona vyřazeného souboru, například png.\r\n– '${unixTime}' — aktuální časové razítko Unixu v milisekundách\r\n– ${isoTime} — aktuální čas ve formátu ISO 8601, například 2025-06-06T08:40:32.123Z.",
+ "configuration.markdown.copyFiles.overwriteBehavior": "Určuje, jestli mají soubory vytvořené přetažením nebo vložením přepsat existující soubory.",
+ "configuration.markdown.copyFiles.overwriteBehavior.nameIncrementally": "Pokud už soubor se stejným názvem existuje, připojte k názvu souboru číslo, například:image.png se stane image-1.png.",
+ "configuration.markdown.copyFiles.overwriteBehavior.overwrite": "Pokud už existuje soubor se stejným názvem, přepište ho.",
+ "configuration.markdown.editor.drop.copyIntoWorkspace": "Určuje, jestli se soubory mimo pracovní prostor, které se vkládají do editoru Markdownu, mají kopírovat do pracovního prostoru.\r\n\r\nPomocí #markdown.copyFiles.destination# nakonfigurujte, kde se mají vytvořit zkopírované soubory.",
+ "configuration.markdown.editor.drop.enabled": "Povolit přetažení souborů do Markdown editoru podržením klávesy Shift. Vyžaduje povolení #editor.dropIntoEditor.enabled#.",
+ "configuration.markdown.editor.drop.enabled.always": "Vždy vkládat odkazy Markdownu.",
+ "configuration.markdown.editor.drop.enabled.never": "Nikdy nevytvářet odkazy Markdownu.",
+ "configuration.markdown.editor.drop.enabled.smart": "Při nepřemisťování do bloku kódu nebo jiného speciálního elementu můžete ve výchozím nastavení inteligentně vytvářet odkazy Markdownu. Pomocí widgetu pro přemístění můžete přepínat mezi vložením jako prostý text nebo jako odkazy Markdownu.",
+ "configuration.markdown.editor.filePaste.audioSnippet": "Fragment kódu použitý při přidávání zvukových souborů do Markdownu Tento fragment kódu může používat následující proměnné:\r\n- ${src} – Přeložená cesta ke zvukovému souboru\r\n- ${title} – Název použitý pro zvukový soubor Pro tuto proměnnou se automaticky vytvoří zástupný objekt fragmentu kódu.",
+ "configuration.markdown.editor.filePaste.copyIntoWorkspace": "Určuje, jestli se soubory mimo pracovní prostor, které se vkládají do editoru Markdownu, mají kopírovat do pracovního prostoru.\r\n\r\nPomocí #markdown.copyFiles.destination# nakonfigurujte, kde se mají vytvořit zkopírované soubory.",
+ "configuration.markdown.editor.filePaste.enabled": "Když povolíte vkládání souborů do Markdown editoru, vloží se odkazy Markdownu. Vyžaduje povolení #editor.pasteAs.enabled#.",
+ "configuration.markdown.editor.filePaste.enabled.always": "Vždy vkládat odkazy Markdownu.",
+ "configuration.markdown.editor.filePaste.enabled.never": "Nikdy nevytvářet odkazy Markdownu.",
+ "configuration.markdown.editor.filePaste.enabled.smart": "Při nevkládání do bloku kódu nebo jiného speciálního elementu můžete ve výchozím nastavení inteligentně vytvářet odkazy Markdownu. Pomocí widgetu pro vložení můžete přepínat mezi vložením jako prostý text nebo jako odkazy Markdownu.",
+ "configuration.markdown.editor.filePaste.videoSnippet": "Fragment kódu použitý při přidávání videí do Markdownu Tento fragment kódu může používat následující proměnné:\r\n- ${src} – Přeložená cesta k videosouboru\r\n- ${title} – Název použitý pro video Pro tuto proměnnou se automaticky vytvoří zástupný objekt fragmentu kódu.",
+ "configuration.markdown.editor.pasteUrlAsFormattedLink.enabled": "Určuje, jestli se při vkládání adres URL do editoru Markdownu vytvářejí odkazy Markdownu. Vyžaduje povolení #editor.pasteAs.enabled#.",
+ "configuration.markdown.editor.updateLinksOnPaste.enabled": "Umožňuje povolit nebo zakázat možnost vložení, která aktualizuje propojení a odkazy v textu, který se kopíruje a vkládá mezi editory Markdownu.\r\n\r\nPokud chcete použít tuto funkci, stačí po vložení textu, který obsahuje aktualizovatelné odkazy, kliknout na widget pro vložení a vybrat Vložit a aktualizovat vložené odkazy.",
+ "configuration.markdown.links.openLocation.beside": "Otevírat odkazy vedle aktivního editoru",
+ "configuration.markdown.links.openLocation.currentGroup": "Otevírat odkazy v aktivní skupině editorů",
+ "configuration.markdown.links.openLocation.description": "Určuje, kde se mají otevírat odkazy v souborech Markdownu.",
+ "configuration.markdown.occurrencesHighlight.enabled": "Povolit zvýrazňování výskytů odkazů v aktuálním dokumentu.",
+ "configuration.markdown.preferredMdPathExtensionStyle": "Určuje, jestli se pro odkazy na soubory Markdownu přidávají přípony názvu souborů (například .md). Toto nastavení se používá při přidávání cest k souborům pomocí nástrojů, jako jsou dokončování cest nebo přejmenování souborů.",
+ "configuration.markdown.preferredMdPathExtensionStyle.auto": "U existujících cest zkuste zachovat styl přípony názvu souboru. Pro nové cesty přidejte přípony názvu souborů.",
+ "configuration.markdown.preferredMdPathExtensionStyle.includeExtension": "Raději zahrňte přípony názvu souboru. Například dokončení cesty k souboru s názvem „file.md“ vloží „file.md“.",
+ "configuration.markdown.preferredMdPathExtensionStyle.removeExtension": "Raději odeberte příponu názvu souboru. Například dokončení cesty k souboru s názvem „file.md“ vloží „file“ bez „.md“.",
+ "configuration.markdown.preview.openMarkdownLinks.description": "Určuje, jak se mají otevírat odkazy na jiné soubory Markdownu v náhledu Markdownu.",
+ "configuration.markdown.preview.openMarkdownLinks.inEditor": "Zkusit odkazy otevřít v editoru",
+ "configuration.markdown.preview.openMarkdownLinks.inPreview": "Zkusit odkazy otevřít v náhledu Markdownu",
+ "configuration.markdown.suggest.paths.enabled.description": "Umožňuje povolit návrhy cest při psaní odkazů v souborech Markdownu.",
+ "configuration.markdown.suggest.paths.includeWorkspaceHeaderCompletions": "Umožňuje povolit návrhy pro záhlaví v jiných souborech Markdownu v aktuálním pracovním prostoru. Přijetím jednoho z těchto návrhů se do tohoto souboru vloží úplná cesta k záhlaví, například: [link text](/path/to/file.md#header).",
+ "configuration.markdown.suggest.paths.includeWorkspaceHeaderCompletions.never": "Umožňuje zakázat návrhy hlaviček pracovního prostoru.",
+ "configuration.markdown.suggest.paths.includeWorkspaceHeaderCompletions.onDoubleHash": "Umožňuje povolit návrhy hlaviček v pracovním prostoru po zadání ## do cesty, například [link text](##.",
+ "configuration.markdown.suggest.paths.includeWorkspaceHeaderCompletions.onSingleOrDoubleHash": "Umožňuje povolit návrhy hlaviček v pracovním prostoru po zadání ## nebo # do cesty, například [link text](# nebo [link text](##.",
+ "configuration.markdown.updateLinksOnFileMove.enableForDirectories": "Povolit aktualizaci odkazů při přesunutí nebo přejmenování adresáře v pracovním prostoru.",
+ "configuration.markdown.updateLinksOnFileMove.enabled": "Pokus o aktualizaci odkazů v souborech Markdown při přejmenování/přesunu souboru v pracovním prostoru. Pomocí #markdown.updateLinksOnFileMove.include# můžete nastavit, které soubory aktivují aktualizaci odkazů.",
+ "configuration.markdown.updateLinksOnFileMove.enabled.always": "Odkazy vždy aktualizujte automaticky.",
+ "configuration.markdown.updateLinksOnFileMove.enabled.never": "Nikdy se nepokoušejte aktualizovat odkaz a nezobrazovat výzvu.",
+ "configuration.markdown.updateLinksOnFileMove.enabled.prompt": "Při každém přesunu souboru se zobrazí výzva.",
+ "configuration.markdown.updateLinksOnFileMove.include": "Vzory glob, které určují soubory aktivující automatické aktualizace odkazů. Podrobnosti o této funkci najdete v tématu #markdown.updateLinksOnFileMove.enabled#.",
+ "configuration.markdown.updateLinksOnFileMove.include.property": "Vzor glob, podle kterého se porovnávají cesty k souborům. Nastavením na true vzor povolíte.",
+ "configuration.markdown.validate.duplicateLinkDefinitions.description": "Ověřte duplicitní definice v aktuálním souboru.",
+ "configuration.markdown.validate.enabled.description": "Umožňuje povolit všechna hlášení chyb v souborech Markdownu.",
+ "configuration.markdown.validate.fileLinks.enabled.description": "Ověřte odkazy na jiné soubory v souborech Markdown, například [link](/path/to/file.md). Tím se zkontroluje, jestli cílové soubory existují. Vyžaduje povolení #markdown.validate.enabled#.",
+ "configuration.markdown.validate.fileLinks.markdownFragmentLinks.description": "Ověřte část fragmentu odkazů na hlavičky v jiných souborech v souborech Markdownu, například: [link](/path/to/file.md#header). Ve výchozím nastavení dědí hodnotu nastavení z #markdown.validate.fragmentLinks.enabled#.",
+ "configuration.markdown.validate.fragmentLinks.enabled.description": "Ověřte fragmenty odkazů na hlavičky v aktuálním souboru Markdown, například: [link](#header). Vyžaduje povolení #markdown.validate.enabled#.",
+ "configuration.markdown.validate.ignoredLinks.description": "Nakonfigurujte odkazy, které by se neměly ověřovat. Například přidání /about by neověřoval odkaz [about](/about), zatímco glob /assets/**/*.svg by umožňoval přeskočit ověření pro jakýkoli odkaz na soubory .svg v adresáři assets.",
+ "configuration.markdown.validate.referenceLinks.enabled.description": "Ověřte odkazy na odkazy v souborech Markdownu, například: [link][ref]. Vyžaduje povolení #markdown.validate.enabled#.",
+ "configuration.markdown.validate.unusedLinkDefinitions.description": "Ověřte definice odkazů, které se v aktuálním souboru nepoužívají.",
+ "configuration.pasteUrlAsFormattedLink.always": "Vždy vkládat odkazy Markdownu.",
+ "configuration.pasteUrlAsFormattedLink.never": "Nikdy nevytvářet odkazy Markdownu.",
+ "configuration.pasteUrlAsFormattedLink.smart": "Při nevkládání do bloku kódu nebo jiného speciálního elementu můžete ve výchozím nastavení inteligentně vytvářet odkazy Markdownu. Pomocí widgetu pro vložení můžete přepínat mezi vložením jako prostý text nebo jako odkazy Markdownu.",
+ "configuration.pasteUrlAsFormattedLink.smartWithSelection": "Pokud jste vybrali text, můžete při nevkládání do bloku kódu nebo jiného speciálního elementu ve výchozím nastavení inteligentně vytvářet odkazy Markdownu. Pomocí widgetu pro vložení můžete přepínat mezi vložením jako prostý text nebo jako odkazy Markdownu.",
+ "description": "Poskytuje rozšířenou podporu jazyka pro Markdown.",
+ "displayName": "Funkce jazyka Markdown",
+ "markdown.copyImage.title": "Kopírovat obrázek",
+ "markdown.editor.insertImageFromWorkspace": "Vložit obrázek z pracovního prostoru",
+ "markdown.editor.insertLinkFromWorkspace": "Vložit odkaz na soubor v pracovním prostoru",
+ "markdown.findAllFileReferences": "Vyhledat odkazy na soubory",
+ "markdown.openImage.title": "Otevřít obrázek",
+ "markdown.preview.breaks.desc": "Nastaví způsob vykreslování konců řádků v náhledu Markdownu. Pokud je nastaveno na hodnotu true, pro každý nový řádek v odstavcích se vytvoří značka.",
+ "markdown.preview.doubleClickToSwitchToEditor.desc": "Poklikáním na náhled Markdownu přepnete do editoru.",
+ "markdown.preview.fontFamily.desc": "Určuje rodinu písem používanou v náhledu Markdownu.",
+ "markdown.preview.fontSize.desc": "Určuje velikost písma v pixelech používanou v náhledu Markdownu.",
+ "markdown.preview.lineHeight.desc": "Určuje výšku řádku používanou v náhledu Markdownu. Toto číslo je relativní k velikosti písma.",
+ "markdown.preview.linkify": "Převod textu podobného URL na odkazy v náhledu Markdownu.",
+ "markdown.preview.markEditorSelection.desc": "Označí aktuální výběr editoru v náhledu Markdownu.",
+ "markdown.preview.refresh.title": "Aktualizovat náhled",
+ "markdown.preview.scrollEditorWithPreview.desc": "Při procházení zobrazení náhledu Markdownu aktualizovat zobrazení editoru",
+ "markdown.preview.scrollPreviewWithEditor.desc": "Při procházení zobrazení editoru Markdownu aktualizovat zobrazení náhledu",
+ "markdown.preview.title": "Otevřít náhled",
+ "markdown.preview.toggleLock.title": "Přepnout zamykání náhledu",
+ "markdown.preview.typographer": "Umožňuje povolit některá nahrazení nezávislá na jazyku a citace v náhledu Markdownu.",
+ "markdown.previewSide.title": "Otevřít náhled na boku",
+ "markdown.server.log.desc": "Určuje úroveň protokolování jazykového serveru Markdown.",
+ "markdown.showLockedPreviewToSide.title": "Otevřít zamknutý náhled na boku",
+ "markdown.showPreviewSecuritySelector.title": "Změnit nastavení zabezpečení náhledu",
+ "markdown.showSource.title": "Zobrazit zdroj",
+ "markdown.styles.dec": "Seznam adres URL nebo místních cest k šablonám stylů CSS, které se mají použít z náhledu Markdownu. Relativní cesty jsou interpretovány relativně ke složce otevřené v Exploreru. Pokud není otevřená žádná složka, budou se interpretovat relativně k umístění souboru Markdownu. Všechna dvojitá zpětná lomítka (\\) musí být zapsána jako čtyři zpětná lomítka (\\\\).",
+ "markdown.trace.extension.desc": "Povolit protokolování ladění pro rozšíření Markdownu",
+ "markdown.trace.server.desc": "Sleduje komunikaci mezi VS Code a serverem jazyka Markdown.",
+ "workspaceTrust": "Vyžadováno pro načítání stylů konfigurovaných v pracovním prostoru."
+ }
+ }
+}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-cs/translations/extensions/vscode.markdown-math.i18n.json b/i18n/vscode-language-pack-cs/translations/extensions/vscode.markdown-math.i18n.json
new file mode 100644
index 0000000000..eaa2439797
--- /dev/null
+++ b/i18n/vscode-language-pack-cs/translations/extensions/vscode.markdown-math.i18n.json
@@ -0,0 +1,18 @@
+{
+ "": [
+ "--------------------------------------------------------------------------------------------",
+ "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."
+ ],
+ "version": "1.0.0",
+ "contents": {
+ "package": {
+ "config.markdown.math.enabled": "Povolí nebo zakáže vykreslování matematiky v integrovaném náhledu Markdownu.",
+ "config.markdown.math.macros": "Kolekce vlastních maker. Každé makro je pár klíč-hodnota, kde klíč je nový název příkazu a hodnota je rozšíření makra.",
+ "description": "Přidá podporu matematiky do Markdownu v poznámkových blocích.",
+ "displayName": "Markdown – matematika"
+ }
+ }
+}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-cs/translations/extensions/vscode.markdown.i18n.json b/i18n/vscode-language-pack-cs/translations/extensions/vscode.markdown.i18n.json
index 272182c594..84e4ccb826 100644
--- a/i18n/vscode-language-pack-cs/translations/extensions/vscode.markdown.i18n.json
+++ b/i18n/vscode-language-pack-cs/translations/extensions/vscode.markdown.i18n.json
@@ -9,8 +9,8 @@
"version": "1.0.0",
"contents": {
"package": {
- "displayName": "Základy jazyka Markdown",
- "description": "Poskytuje fragmenty kódu a zvýrazňování syntaxe pro Markdown."
+ "description": "Poskytuje fragmenty kódu a zvýrazňování syntaxe pro Markdown.",
+ "displayName": "Základy jazyka Markdown"
}
}
}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-cs/translations/extensions/vscode.media-preview.i18n.json b/i18n/vscode-language-pack-cs/translations/extensions/vscode.media-preview.i18n.json
new file mode 100644
index 0000000000..d801e56b7e
--- /dev/null
+++ b/i18n/vscode-language-pack-cs/translations/extensions/vscode.media-preview.i18n.json
@@ -0,0 +1,42 @@
+{
+ "": [
+ "--------------------------------------------------------------------------------------------",
+ "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."
+ ],
+ "version": "1.0.0",
+ "contents": {
+ "bundle": {
+ "An error occurred while loading the audio file.": "Při načítání zvukového souboru došlo k chybě.",
+ "An error occurred while loading the image.": "Při načítání obrázku došlo k chybě.",
+ "An error occurred while loading the video file.": "Při načítání videosouboru došlo k chybě.",
+ "Image Binary Size": "Velikost binárního souboru obrázku",
+ "Image Size": "Velikost obrázku",
+ "Image Zoom": "Přiblížení obrázku",
+ "Open file using VS Code's standard text/binary editor?": "Chcete soubor otevřít pomocí standardního textového/binárního editoru VS Code?",
+ "Select zoom level": "Vybrat úroveň přiblížení",
+ "Whole Image": "Celý obrázek",
+ "{0}B": "{0} B",
+ "{0}GB": "{0} GB",
+ "{0}KB": "{0} kB",
+ "{0}MB": "{0} MB",
+ "{0}TB": "{0} TB"
+ },
+ "package": {
+ "command.copyImage": "Kopírovat",
+ "command.reopenAsPreview": "Znovu otevřít jako náhled obrázku",
+ "command.reopenAsText": "Znovu otevřít jako zdrojový text",
+ "command.zoomIn": "Přiblížit",
+ "command.zoomOut": "Oddálit",
+ "customEditor.audioPreview.displayName": "Ukázka zvuku",
+ "customEditor.imagePreview.displayName": "Náhled obrázku",
+ "customEditor.videoPreview.displayName": "Náhled videa",
+ "description": "Poskytuje integrované náhledy VS Code pro obrázky, zvuk a video.",
+ "displayName": "Náhled multimédií",
+ "videoPreviewerAutoPlay": "Spustit automatické přehrávání videí při ztlumení.",
+ "videoPreviewerLoop": "Automaticky opakovat videa ve smyčce."
+ }
+ }
+}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-cs/translations/extensions/vscode.merge-conflict.i18n.json b/i18n/vscode-language-pack-cs/translations/extensions/vscode.merge-conflict.i18n.json
new file mode 100644
index 0000000000..7632ed663a
--- /dev/null
+++ b/i18n/vscode-language-pack-cs/translations/extensions/vscode.merge-conflict.i18n.json
@@ -0,0 +1,49 @@
+{
+ "": [
+ "--------------------------------------------------------------------------------------------",
+ "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."
+ ],
+ "version": "1.0.0",
+ "contents": {
+ "bundle": {
+ "(Current Change)": "(Aktuální změna)",
+ "(Incoming Change)": "(Příchozí změna)",
+ "Accept Both Changes": "Přijmout obě změny",
+ "Accept Current Change": "Přijmout aktuální změnu",
+ "Accept Incoming Change": "Přijmout příchozí změnu",
+ "Compare Changes": "Porovnat změny",
+ "Editor cursor is not within a merge conflict": "Kurzor editoru není v konfliktu sloučení.",
+ "Editor cursor is within the common ancestors block, please move it to either the \"current\" or \"incoming\" block": "Kurzor editoru je v bloku společných nadřazených prvků. Přesuňte ho prosím do bloku current (aktuální) nebo incoming (příchozí).",
+ "Editor cursor is within the merge conflict splitter, please move it to either the \"current\" or \"incoming\" block": "Kurzor editoru je v rozdělovači konfliktů sloučení. Přesuňte ho prosím do bloku current (aktuální) nebo incoming (příchozí).",
+ "No merge conflicts found in this file": "V tomto souboru se nenašly žádné konflikty sloučení.",
+ "No other merge conflicts within this file": "V tomto souboru nejsou žádné další konflikty sloučení.",
+ "{0}: Current Changes ↔ Incoming Changes": "{0}: Aktuální změny ⟷ Příchozí změny"
+ },
+ "package": {
+ "command.accept.all-both": "Přijmout obojí (vše)",
+ "command.accept.all-current": "Přijmout aktuální (vše)",
+ "command.accept.all-incoming": "Přijmout příchozí (vše)",
+ "command.accept.both": "Přijmout obojí",
+ "command.accept.current": "Přijmout aktuální",
+ "command.accept.incoming": "Přijmout příchozí",
+ "command.accept.selection": "Přijmout výběr",
+ "command.category": "Konflikt sloučení",
+ "command.compare": "Porovnat aktuální konflikt",
+ "command.next": "Další konflikt",
+ "command.previous": "Předchozí konflikt",
+ "config.autoNavigateNextConflictEnabled": "Určuje, jestli se má po vyřešení konfliktu sloučení automaticky přejít na další konflikt sloučení.",
+ "config.codeLensEnabled": "Vytvořit CodeLens pro bloky konfliktů sloučení v editoru",
+ "config.decoratorsEnabled": "Vytvořit dekoratéry pro bloky konfliktů sloučení v editoru",
+ "config.diffViewPosition": "Určuje, kde by se mělo při porovnávání změn v konfliktech sloučení otevřít rozdílové zobrazení.",
+ "config.diffViewPosition.below": "Otevřít rozdílové zobrazení pod aktuální skupinou editorů",
+ "config.diffViewPosition.beside": "Otevřít rozdílové zobrazení vedle aktuální skupiny editorů",
+ "config.diffViewPosition.current": "Otevřít rozdílové zobrazení v aktuální skupině editorů",
+ "config.title": "Konflikt sloučení",
+ "description": "Zvýraznění a příkazy pro vložené (inline) konflikty sloučení",
+ "displayName": "Konflikt sloučení"
+ }
+ }
+}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-cs/translations/extensions/vscode.mermaid-chat-features.i18n.json b/i18n/vscode-language-pack-cs/translations/extensions/vscode.mermaid-chat-features.i18n.json
new file mode 100644
index 0000000000..59a32289da
--- /dev/null
+++ b/i18n/vscode-language-pack-cs/translations/extensions/vscode.mermaid-chat-features.i18n.json
@@ -0,0 +1,17 @@
+{
+ "": [
+ "--------------------------------------------------------------------------------------------",
+ "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."
+ ],
+ "version": "1.0.0",
+ "contents": {
+ "package": {
+ "config.enabled.description": "Umožňuje povolit nástroj pro experimentální vykreslování diagramů Mermaid v odpovědích chatu.",
+ "description": "Přidává podporu diagramů Mermaid do integrovaných chatů.",
+ "displayName": "Funkce chatu Mermaid"
+ }
+ }
+}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-cs/translations/extensions/vscode.microsoft-authentication.i18n.json b/i18n/vscode-language-pack-cs/translations/extensions/vscode.microsoft-authentication.i18n.json
new file mode 100644
index 0000000000..6d44eeedde
--- /dev/null
+++ b/i18n/vscode-language-pack-cs/translations/extensions/vscode.microsoft-authentication.i18n.json
@@ -0,0 +1,51 @@
+{
+ "": [
+ "--------------------------------------------------------------------------------------------",
+ "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."
+ ],
+ "version": "1.0.0",
+ "contents": {
+ "bundle": {
+ "Copy & Continue to Microsoft": "Kopírovat a pokračovat do Microsoftu",
+ "Error validating custom environment setting: {0}": "Chyba při ověřování vlastního nastavení prostředí: {0}",
+ "Having trouble logging in? Would you like to try a different way? ({0})": "Máte potíže s přihlášením? Chcete zkusit jiný způsob? ({0})",
+ "Microsoft Account configuration has been changed.": "Konfigurace účtu Microsoft se změnila.",
+ "Microsoft Authentication": "Ověřování společnosti Microsoft",
+ "Microsoft Sovereign Cloud Authentication": "Ověřování pro Microsoft Sovereign Cloud",
+ "No": "Ne",
+ "Open [{0}]({0}) in a new tab and paste your one-time code: {1}/The [{0}]({0}) will be a url and the {1} will be a code, e.g. 123456{Locked=\"[{0}]({0})\"}": "Otevřete [{0}]({0}) na nové kartě a vložte svůj jednorázový kód: {1}",
+ "Open settings": "Otevřít nastavení",
+ "Reload": "Načíst znovu",
+ "Signing in to Microsoft...": "Přihlašování k účtu Microsoft...",
+ "The environment `{0}` is not a valid environment.": "Prostředí {0} není platné prostředí.",
+ "To finish authenticating, navigate to Microsoft and paste in the above one-time code.": "Ověřování dokončíte tak, že přejdete na Microsoft a vložíte výše uvedený jednorázový kód.",
+ "Yes": "Ano",
+ "You have not yet finished authorizing this extension to use your Microsoft Account. Would you like to try a different way? ({0})": "Ještě jste nedokončili autorizaci tohoto rozšíření pro používání vašeho účtu Microsoft. Chcete zkusit jiný způsob? ({0})",
+ "You must also specify a custom environment in order to use the custom environment auth provider.": "Pokud chcete použít vlastního zprostředkovatele ověřování prostředí, musíte zadat i vlastní prostředí.",
+ "Your Code: {0}/The {0} will be a code, e.g. 123-456": "Váš kód: {0}"
+ },
+ "package": {
+ "description": "Zprostředkovatel ověřování společnosti Microsoft",
+ "displayName": "Učet Microsoft",
+ "microsoft-authentication.implementation.description": "Implementace ověřování, která se použije pro přihlašování pomocí účtu Microsoft",
+ "microsoft-authentication.implementation.enumDescriptions.msal": "Přihlaste se k účtu Microsoft pomocí knihovny MSAL (Microsoft Authentication Library).",
+ "microsoft-authentication.implementation.enumDescriptions.msal-no-broker": "Použijte knihovnu Microsoft Authentication Library (MSAL) k přihlášení pomocí účtu Microsoft v prohlížeči. To je užitečné, pokud máte problémy s nativním zprostředkovatelem.",
+ "microsoft-sovereign-cloud.customEnvironment.activeDirectoryEndpointUrl.description": "Koncový bod Active Directory pro vlastní suverénní cloud.",
+ "microsoft-sovereign-cloud.customEnvironment.activeDirectoryResourceId.description": "ID prostředku Active Directory pro vlastní suverénní cloud.",
+ "microsoft-sovereign-cloud.customEnvironment.description": "Vlastní konfigurace suverénního cloudu, která se má použít s poskytovatelem ověřování suverénního cloudu Microsoftu. Pro používání této funkce se vyžaduje tato konfigurace a nastavení `#microsoft-sovereign-cloud.environment#` nastavené na custom.",
+ "microsoft-sovereign-cloud.customEnvironment.managementEndpointUrl.description": "Koncový bod správy pro vlastní suverénní cloud.",
+ "microsoft-sovereign-cloud.customEnvironment.name.description": "Název vlastního suverénního cloudu.",
+ "microsoft-sovereign-cloud.customEnvironment.portalUrl.description": "Adresa URL portálu pro vlastní suverénní cloud.",
+ "microsoft-sovereign-cloud.customEnvironment.resourceManagerEndpointUrl.description": "Koncový bod správce prostředků pro vlastní suverénní cloud.",
+ "microsoft-sovereign-cloud.environment.description": "Suverénní cloud, který se má použít k ověřování. Pokud vyberete možnost custom, musíte také nastavit nastavení `#microsoft-sovereign-cloud.customEnvironment#`.",
+ "microsoft-sovereign-cloud.environment.enumDescriptions.AzureChinaCloud": "Azure (Čína)",
+ "microsoft-sovereign-cloud.environment.enumDescriptions.AzureUSGovernment": "Azure US Government",
+ "microsoft-sovereign-cloud.environment.enumDescriptions.custom": "Vlastní suverénní cloud Microsoftu",
+ "signIn": "Přihlásit se",
+ "signOut": "Odhlásit se"
+ }
+ }
+}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-cs/translations/extensions/vscode.npm.i18n.json b/i18n/vscode-language-pack-cs/translations/extensions/vscode.npm.i18n.json
new file mode 100644
index 0000000000..355d0a77ee
--- /dev/null
+++ b/i18n/vscode-language-pack-cs/translations/extensions/vscode.npm.i18n.json
@@ -0,0 +1,127 @@
+{
+ "": [
+ "--------------------------------------------------------------------------------------------",
+ "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."
+ ],
+ "version": "1.0.0",
+ "contents": {
+ "bundle": {
+ "Could not find a valid npm script at the selection.": "Ve výběru se nepovedlo najít platný skript npm.",
+ "Debug": "Ladit",
+ "Debug Script": "Ladit skript",
+ "Default package.json": "Výchozí soubor package.json",
+ "Do not show again": "Už nezobrazovat",
+ "Latest version: {0}": "Nejnovější verze: {0}",
+ "Latest version: {0} published {1}": "Nejnovější verze: {0} publikována {1}",
+ "Learn more": "Další informace",
+ "Matches the most recent major version (1.x.x)": "Odpovídá nejnovější hlavní verzi (1.x.x).",
+ "Matches the most recent minor version (1.2.x)": "Odpovídá nejnovější dílčí verzi (1.2.x).",
+ "No scripts found.": "Nenašly se žádné skripty.",
+ "Npm task detection: failed to parse the file {0}": "Zjištění úlohy npm: Nepovedlo se parsovat soubor {0}.",
+ "Request to the NPM repository failed: {0}": "Požadavek na úložiště NPM selhal: {0}",
+ "Run Script": "Spustit skript",
+ "Run the script as a task": "Spustit skript jako úlohu",
+ "Runs the script under the debugger": "Spustí skript v ladicím programu.",
+ "The currently latest version of the package": "Aktuálně nejnovější verze balíčku",
+ "The setting \"npm.autoDetect\" is \"off\".": "Nastavení npm.autoDetect má hodnotu off.",
+ "Using {0} as the preferred package manager. Found multiple lockfiles for {1}. To resolve this issue, delete the lockfiles that don't match your preferred package manager or change the setting \"npm.packageManager\" to a value other than \"auto\".": "{0} se používá jako preferovaný správce balíčků. Bylo nalezeno více funkcí lockfile pro {1}. Pokud chcete tento problém vyřešit, odstraňte funkce lockfile, které neodpovídají preferovanému správci balíčků, nebo změňte nastavení „npm.packageManager“ na jinou hodnotu než „auto“.",
+ "in {0}": "za {0}",
+ "now": "teď",
+ "{0} day": "{0} den",
+ "{0} day ago": "Před {0} dnem",
+ "{0} days": "{0} dny/dnů",
+ "{0} days ago": "Před {0} dny",
+ "{0} hour": "{0} hod.",
+ "{0} hour ago": "před {0} hodinou",
+ "{0} hours": "{0} hod",
+ "{0} hours ago": "Před {0} hod.",
+ "{0} hr": "{0} h",
+ "{0} hr ago": "Před {0} h",
+ "{0} hrs": "{0} h",
+ "{0} hrs ago": "Před {0} h",
+ "{0} min": "{0} min",
+ "{0} min ago": "Před {0} minutou",
+ "{0} mins": "{0} min",
+ "{0} mins ago": "Před {0} mi.",
+ "{0} minute": "{0} min.",
+ "{0} minute ago": "před {0} min",
+ "{0} minutes": "Počet minut: {0}",
+ "{0} minutes ago": "před {0} minutami",
+ "{0} mo": "{0} měs.",
+ "{0} mo ago": "Před {0} měsícem",
+ "{0} month": "{0} měsíc",
+ "{0} month ago": "před {0} měs.",
+ "{0} months": "{0} měsíců",
+ "{0} months ago": "Před {0} měsíci",
+ "{0} mos": "{0} měs.",
+ "{0} mos ago": "Před {0} měs.",
+ "{0} sec": "{0} s.",
+ "{0} sec ago": "Před {0} sekundou",
+ "{0} second": "Počet sekund: {0}",
+ "{0} second ago": "před {0} s",
+ "{0} seconds": "{0} s",
+ "{0} seconds ago": "před {0} s",
+ "{0} secs": "{0} s",
+ "{0} secs ago": "Před {0} sekundami",
+ "{0} week": "{0} týden",
+ "{0} week ago": "před {0} týdnem",
+ "{0} weeks": "Počet týdnů: {0}",
+ "{0} weeks ago": "před {0} týd.",
+ "{0} wk": "{0} týd.",
+ "{0} wk ago": "Před {0} týd.",
+ "{0} wks": "{0} týd.",
+ "{0} wks ago": "Před {0} týd.",
+ "{0} year": "{0} rok",
+ "{0} year ago": "před {0} rokem",
+ "{0} years": "{0} roky",
+ "{0} years ago": "před {0} roky",
+ "{0} yr": "{0} rok",
+ "{0} yr ago": "Před {0} rokem",
+ "{0} yrs": "{0} roky",
+ "{0} yrs ago": "Před {0} roky"
+ },
+ "package": {
+ "command.debug": "Ladit",
+ "command.openScript": "Otevřít",
+ "command.packageManager": "Získat nakonfigurovaného správce balíčků",
+ "command.refresh": "Aktualizovat",
+ "command.run": "Spustit",
+ "command.runInstall": "Spustit instalaci",
+ "command.runScriptFromFolder": "Spustit skript NPM ve složce...",
+ "command.runSelectedScript": "Spustit skript",
+ "config.npm.autoDetect": "Určuje, jestli mají být automaticky rozpoznány skripty npm.",
+ "config.npm.enableRunFromFolder": "Povolit spouštění skriptů npm obsažených ve složce z místní nabídky průzkumníka",
+ "config.npm.enableScriptExplorer": "Povolit zobrazení průzkumníka pro skripty npm, pokud není k dispozici žádný soubor package.json nejvyšší úrovně",
+ "config.npm.exclude": "Nakonfigurovat vzory glob pro složky, které se mají vyloučit z automatického zjišťování skriptů",
+ "config.npm.fetchOnlinePackageInfo": "Načíst data z https://registry.npmjs.org and https://registry.bower.io pro funkce automatického dokončování a zobrazení informací po umístění ukazatele myši pro závislosti npm",
+ "config.npm.packageManager": "Správce balíčků, který se používá k instalaci závislostí",
+ "config.npm.packageManager.auto": "Podle souborů zámků a nainstalovaných správců balíčků automaticky zjišťovat, který správce balíčků se má použít",
+ "config.npm.packageManager.bun": "Použít bun jako správce balíčků",
+ "config.npm.packageManager.npm": "Použít npm jako správce balíčků",
+ "config.npm.packageManager.pnpm": "Použít pnpm jako správce balíčků",
+ "config.npm.packageManager.yarn": "Použít yarn jako správce balíčků",
+ "config.npm.runSilent": "Spouštět příkazy npm s parametrem --silent",
+ "config.npm.scriptExplorerAction": "Výchozí akce kliknutí, která se používá v Průzkumníkovi skriptů NPM: open nebo run. Výchozí nastavení je open.",
+ "config.npm.scriptExplorerExclude": "Pole regulárních výrazů, které určuje, které skripty se mají vyloučit ze zobrazení skriptů NPM.",
+ "config.npm.scriptHover": "Zobrazte najetí myší pomocí příkazů Spustit a Ladit pro skripty.",
+ "config.npm.scriptRunner": "Spouštěč skriptů, který se používá ke spouštění skriptů",
+ "config.npm.scriptRunner.auto": "Podle souborů zámků a nainstalovaných správců balíčků automaticky zjišťovat, který spouštěč skriptů se má použít",
+ "config.npm.scriptRunner.bun": "Použijte drdol jako spouštěč skriptů.",
+ "config.npm.scriptRunner.node": "Použijte Node.js jako spouštěče skriptů.",
+ "config.npm.scriptRunner.npm": "Použít npm jako spouštěč skriptů",
+ "config.npm.scriptRunner.pnpm": "Jako spouštěč skriptů použijte pnpm.",
+ "config.npm.scriptRunner.yarn": "Použijte yarn jako spouštěče skriptů.",
+ "description": "Rozšíření pro přidání podpory úloh pro skripty npm",
+ "displayName": "Podpora NPM pro VS Code",
+ "npm.parseError": "Zjištění úlohy npm: Nepovedlo se parsovat soubor {0}.",
+ "taskdef.path": "Cesta ke složce se souborem package.json, který obsahuje skript. Lze vynechat.",
+ "taskdef.script": "Skript npm, který se má přizpůsobit",
+ "view.name": "Skripty NPM",
+ "virtualWorkspaces": "Funkce, která vyžaduje spuštění příkazu npm, není ve virtuálních pracovních prostorech k dispozici.",
+ "workspaceTrust": "Toto rozšíření provádí úlohy, které ke spuštění vyžadují vztah důvěryhodnosti."
+ }
+ }
+}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-cs/translations/extensions/vscode.objective-c.i18n.json b/i18n/vscode-language-pack-cs/translations/extensions/vscode.objective-c.i18n.json
index 3a7eb8eb37..5760ee7fa9 100644
--- a/i18n/vscode-language-pack-cs/translations/extensions/vscode.objective-c.i18n.json
+++ b/i18n/vscode-language-pack-cs/translations/extensions/vscode.objective-c.i18n.json
@@ -9,8 +9,8 @@
"version": "1.0.0",
"contents": {
"package": {
- "displayName": "Základy jazyka Objective-C",
- "description": "Poskytuje zvýrazňování syntaxe a párování závorek v souborech Objective-C."
+ "description": "Poskytuje zvýrazňování syntaxe a párování závorek v souborech Objective-C.",
+ "displayName": "Základy jazyka Objective-C"
}
}
}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-cs/translations/extensions/vscode.perl.i18n.json b/i18n/vscode-language-pack-cs/translations/extensions/vscode.perl.i18n.json
index 70b49f81f0..19db1f9241 100644
--- a/i18n/vscode-language-pack-cs/translations/extensions/vscode.perl.i18n.json
+++ b/i18n/vscode-language-pack-cs/translations/extensions/vscode.perl.i18n.json
@@ -9,8 +9,8 @@
"version": "1.0.0",
"contents": {
"package": {
- "displayName": "Základy jazyka Perl",
- "description": "Poskytuje zvýrazňování syntaxe a párování závorek v souborech Perl."
+ "description": "Poskytuje zvýrazňování syntaxe a párování závorek v souborech Perl.",
+ "displayName": "Základy jazyka Perl"
}
}
}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-cs/translations/extensions/vscode.php-language-features.i18n.json b/i18n/vscode-language-pack-cs/translations/extensions/vscode.php-language-features.i18n.json
new file mode 100644
index 0000000000..936f83c02c
--- /dev/null
+++ b/i18n/vscode-language-pack-cs/translations/extensions/vscode.php-language-features.i18n.json
@@ -0,0 +1,31 @@
+{
+ "": [
+ "--------------------------------------------------------------------------------------------",
+ "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."
+ ],
+ "version": "1.0.0",
+ "contents": {
+ "bundle": {
+ "Cannot validate since a PHP installation could not be found. Use the setting 'php.validate.executablePath' to configure the PHP executable.": "Nelze provést ověřování, protože instalace PHP nebyla nalezena. Pomocí nastavení php.validate.executablePath nakonfigurujte spustitelný soubor PHP.",
+ "Cannot validate since no PHP executable is set. Use the setting 'php.validate.executablePath' to configure the PHP executable.": "Nelze ověřit, protože není nastaven žádný spustitelný soubor PHP. Nakonfigurujte spustitelný soubor PHP pomocí nastavení php.validate.executablePath.",
+ "Cannot validate since {0} is not a valid php executable. Use the setting 'php.validate.executablePath' to configure the PHP executable.": "Nelze ověřit, protože {0} není platný spustitelný soubor php. Nakonfigurujte spustitelný soubor PHP pomocí nastavení php.validate.executablePath.",
+ "Failed to run php using path: {0}. Reason is unknown.": "Nepodařilo se spustit soubor php pomocí cesty {0}. Důvod je neznámý.",
+ "Open Settings": "Otevřít nastavení"
+ },
+ "package": {
+ "command.untrustValidationExecutable": "Zakázat spustitelný soubor pro ověření PHP (definováno jako nastavení pracovního prostoru)",
+ "commands.categroy.php": "PHP",
+ "configuration.suggest.basic": "Určuje, jestli jsou povoleny integrované návrhy jazyka PHP. Podpora nabízí návrhy globálních hodnot a proměnných PHP.",
+ "configuration.title": "PHP",
+ "configuration.validate.enable": "Umožňuje povolit nebo zakázat integrované ověřování PHP.",
+ "configuration.validate.executablePath": "Odkazuje na spustitelný soubor PHP.",
+ "configuration.validate.run": "Určuje, jestli se linter spustí při uložení nebo při psaní.",
+ "description": "Poskytuje rozšířenou podporu jazyka pro soubory PHP.",
+ "displayName": "Funkce jazyka PHP",
+ "workspaceTrust": "Rozšíření vyžaduje vztah důvěryhodnosti pracovního prostoru, když nastavení php.validate.executablePath načte verzi PHP v pracovním prostoru."
+ }
+ }
+}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-cs/translations/extensions/vscode.php.i18n.json b/i18n/vscode-language-pack-cs/translations/extensions/vscode.php.i18n.json
index 79650f1db4..192c9feaf6 100644
--- a/i18n/vscode-language-pack-cs/translations/extensions/vscode.php.i18n.json
+++ b/i18n/vscode-language-pack-cs/translations/extensions/vscode.php.i18n.json
@@ -9,8 +9,8 @@
"version": "1.0.0",
"contents": {
"package": {
- "displayName": "Základy jazyka PHP",
- "description": "Poskytuje zvýrazňování syntaxe a párování závorek pro soubory PHP."
+ "description": "Poskytuje zvýrazňování syntaxe a párování závorek pro soubory PHP.",
+ "displayName": "Základy jazyka PHP"
}
}
}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-cs/translations/extensions/vscode.powershell.i18n.json b/i18n/vscode-language-pack-cs/translations/extensions/vscode.powershell.i18n.json
index dd83e8f407..dc3454f95a 100644
--- a/i18n/vscode-language-pack-cs/translations/extensions/vscode.powershell.i18n.json
+++ b/i18n/vscode-language-pack-cs/translations/extensions/vscode.powershell.i18n.json
@@ -9,8 +9,8 @@
"version": "1.0.0",
"contents": {
"package": {
- "displayName": "Základy jazyka PowerShell",
- "description": "Poskytuje fragmenty kódu, zvýrazňování syntaxe, párování závorek a sbalování kódu v souborech Powershellu."
+ "description": "Poskytuje fragmenty kódu, zvýrazňování syntaxe, párování závorek a sbalování kódu v souborech Powershellu.",
+ "displayName": "Základy jazyka PowerShell"
}
}
}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-cs/translations/extensions/vscode.prompt.i18n.json b/i18n/vscode-language-pack-cs/translations/extensions/vscode.prompt.i18n.json
new file mode 100644
index 0000000000..ff8c276139
--- /dev/null
+++ b/i18n/vscode-language-pack-cs/translations/extensions/vscode.prompt.i18n.json
@@ -0,0 +1,16 @@
+{
+ "": [
+ "--------------------------------------------------------------------------------------------",
+ "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."
+ ],
+ "version": "1.0.0",
+ "contents": {
+ "package": {
+ "description": "Zvýrazňování syntaxe pro dokumenty s výzvami a pokyny.",
+ "displayName": "Základy jazyka výzev"
+ }
+ }
+}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-cs/translations/extensions/vscode.pug.i18n.json b/i18n/vscode-language-pack-cs/translations/extensions/vscode.pug.i18n.json
index d4bad4e352..844f6cbcd3 100644
--- a/i18n/vscode-language-pack-cs/translations/extensions/vscode.pug.i18n.json
+++ b/i18n/vscode-language-pack-cs/translations/extensions/vscode.pug.i18n.json
@@ -9,8 +9,8 @@
"version": "1.0.0",
"contents": {
"package": {
- "displayName": "Základy jazyka Pug",
- "description": "Poskytuje zvýrazňování syntaxe a párování závorek v souborech Pug."
+ "description": "Poskytuje zvýrazňování syntaxe a párování závorek v souborech Pug.",
+ "displayName": "Základy jazyka Pug"
}
}
}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-cs/translations/extensions/python.i18n.json b/i18n/vscode-language-pack-cs/translations/extensions/vscode.python.i18n.json
similarity index 100%
rename from i18n/vscode-language-pack-cs/translations/extensions/python.i18n.json
rename to i18n/vscode-language-pack-cs/translations/extensions/vscode.python.i18n.json
diff --git a/i18n/vscode-language-pack-cs/translations/extensions/vscode.r.i18n.json b/i18n/vscode-language-pack-cs/translations/extensions/vscode.r.i18n.json
index 5732648272..53cfdf1afa 100644
--- a/i18n/vscode-language-pack-cs/translations/extensions/vscode.r.i18n.json
+++ b/i18n/vscode-language-pack-cs/translations/extensions/vscode.r.i18n.json
@@ -9,8 +9,8 @@
"version": "1.0.0",
"contents": {
"package": {
- "displayName": "Základy jazyka R",
- "description": "Poskytuje zvýrazňování syntaxe a párování závorek v souborech R."
+ "description": "Poskytuje zvýrazňování syntaxe a párování závorek v souborech R.",
+ "displayName": "Základy jazyka R"
}
}
}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-cs/translations/extensions/vscode.razor.i18n.json b/i18n/vscode-language-pack-cs/translations/extensions/vscode.razor.i18n.json
index 92c5bbf9b5..2a24375155 100644
--- a/i18n/vscode-language-pack-cs/translations/extensions/vscode.razor.i18n.json
+++ b/i18n/vscode-language-pack-cs/translations/extensions/vscode.razor.i18n.json
@@ -9,8 +9,8 @@
"version": "1.0.0",
"contents": {
"package": {
- "displayName": "Základy jazyka Razor",
- "description": "Poskytuje zvýrazňování syntaxe, párování závorek a sbalování kódu v souborech Razoru."
+ "description": "Poskytuje zvýrazňování syntaxe, párování závorek a sbalování kódu v souborech Razoru.",
+ "displayName": "Základy jazyka Razor"
}
}
}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-cs/translations/extensions/vscode.references-view.i18n.json b/i18n/vscode-language-pack-cs/translations/extensions/vscode.references-view.i18n.json
new file mode 100644
index 0000000000..1db3443cbb
--- /dev/null
+++ b/i18n/vscode-language-pack-cs/translations/extensions/vscode.references-view.i18n.json
@@ -0,0 +1,61 @@
+{
+ "": [
+ "--------------------------------------------------------------------------------------------",
+ "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."
+ ],
+ "version": "1.0.0",
+ "contents": {
+ "bundle": {
+ "Callers Of": "Volající pro",
+ "Calls From": "Volání od",
+ "No results.": "Žádné výsledky",
+ "No results. Try running a previous search again:": "Žádné výsledky. Zkuste spustit předchozí hledání znovu:",
+ "Open Call": "Otevřít volání",
+ "Open Reference": "Otevřít referenci",
+ "Open Type": "Otevřít typ",
+ "References": "Reference",
+ "Rerun": "Spustit znovu",
+ "Select previous reference search": "Vybrat předchozí hledávání referencí",
+ "Subtypes Of": "Podtypy pro",
+ "Supertypes Of": "Nadtypy pro",
+ "{0} result in {1} file": "{0} výsledek v {1} souboru",
+ "{0} result in {1} files": "{0} výsledek v tomto počtu souborů: {1}",
+ "{0} results in {1} file": "Výsledky: {0} v {1} souboru",
+ "{0} results in {1} files": "Výsledky: {0} v {1} souborech"
+ },
+ "package": {
+ "cmd.category.references": "Reference",
+ "cmd.references-view.clear": "Vymazat",
+ "cmd.references-view.clearHistory": "Vymazat historii",
+ "cmd.references-view.copy": "Kopírovat",
+ "cmd.references-view.copyAll": "Kopírovat vše",
+ "cmd.references-view.copyPath": "Kopírovat cestu",
+ "cmd.references-view.findImplementations": "Najít všechny implementace",
+ "cmd.references-view.findReferences": "Najít všechny odkazy",
+ "cmd.references-view.next": "Přejít k další referenci",
+ "cmd.references-view.pickFromHistory": "Zobrazit historii",
+ "cmd.references-view.prev": "Přejít na předchozí referenci",
+ "cmd.references-view.refind": "Spustit znovu",
+ "cmd.references-view.refresh": "Aktualizovat",
+ "cmd.references-view.removeCallItem": "Zavřít",
+ "cmd.references-view.removeReferenceItem": "Zavřít",
+ "cmd.references-view.removeTypeItem": "Zavřít",
+ "cmd.references-view.showCallHierarchy": "Zobrazit hierarchii volání",
+ "cmd.references-view.showIncomingCalls": "Zobrazit příchozí volání",
+ "cmd.references-view.showOutgoingCalls": "Zobrazit odchozí volání",
+ "cmd.references-view.showSubtypes": "Zobrazit podtypy",
+ "cmd.references-view.showSupertypes": "Zobrazit nadtypy",
+ "cmd.references-view.showTypeHierarchy": "Zobrazit hierarchii typů",
+ "config.references.preferredLocation": "Určuje, jestli se při výběru odkazů CodeLens vyvolá možnost Náhled odkazů nebo Najít odkazy.",
+ "config.references.preferredLocation.peek": "Zobrazení referencí v editoru náhledu.",
+ "config.references.preferredLocation.view": "Zobrazení referencí v samostatném zobrazení.",
+ "container.title": "Reference",
+ "description": "Uvádět výsledky hledání v samostatném, stabilním zobrazení na bočním panelu",
+ "displayName": "Zobrazení vyhledávání referencí",
+ "view.title": "Výsledky hledání odkazů"
+ }
+ }
+}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-cs/translations/extensions/restructuredtext.i18n.json b/i18n/vscode-language-pack-cs/translations/extensions/vscode.restructuredtext.i18n.json
similarity index 100%
rename from i18n/vscode-language-pack-cs/translations/extensions/restructuredtext.i18n.json
rename to i18n/vscode-language-pack-cs/translations/extensions/vscode.restructuredtext.i18n.json
diff --git a/i18n/vscode-language-pack-cs/translations/extensions/vscode.ruby.i18n.json b/i18n/vscode-language-pack-cs/translations/extensions/vscode.ruby.i18n.json
index 1ab4b36ee4..2907b197ec 100644
--- a/i18n/vscode-language-pack-cs/translations/extensions/vscode.ruby.i18n.json
+++ b/i18n/vscode-language-pack-cs/translations/extensions/vscode.ruby.i18n.json
@@ -9,8 +9,8 @@
"version": "1.0.0",
"contents": {
"package": {
- "displayName": "Základy jazyka Ruby",
- "description": "Poskytuje zvýrazňování syntaxe a párování závorek v souborech Ruby."
+ "description": "Poskytuje zvýrazňování syntaxe a párování závorek v souborech Ruby.",
+ "displayName": "Základy jazyka Ruby"
}
}
}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-cs/translations/extensions/vscode.rust.i18n.json b/i18n/vscode-language-pack-cs/translations/extensions/vscode.rust.i18n.json
index 1c042193e3..c773f9b113 100644
--- a/i18n/vscode-language-pack-cs/translations/extensions/vscode.rust.i18n.json
+++ b/i18n/vscode-language-pack-cs/translations/extensions/vscode.rust.i18n.json
@@ -9,8 +9,8 @@
"version": "1.0.0",
"contents": {
"package": {
- "displayName": "Základy jazyka Rust",
- "description": "Poskytuje zvýrazňování syntaxe a párování závorek v souborech Rust."
+ "description": "Poskytuje zvýrazňování syntaxe a párování závorek v souborech Rust.",
+ "displayName": "Základy jazyka Rust"
}
}
}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-cs/translations/extensions/vscode.scss.i18n.json b/i18n/vscode-language-pack-cs/translations/extensions/vscode.scss.i18n.json
index 9b40bf789f..f49bc2a813 100644
--- a/i18n/vscode-language-pack-cs/translations/extensions/vscode.scss.i18n.json
+++ b/i18n/vscode-language-pack-cs/translations/extensions/vscode.scss.i18n.json
@@ -9,8 +9,8 @@
"version": "1.0.0",
"contents": {
"package": {
- "displayName": "Základy jazyka SCSS",
- "description": "Poskytuje zvýrazňování syntaxe, párování závorek a sbalování kódu v souborech SCSS."
+ "description": "Poskytuje zvýrazňování syntaxe, párování závorek a sbalování kódu v souborech SCSS.",
+ "displayName": "Základy jazyka SCSS"
}
}
}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-cs/translations/extensions/search-result.i18n.json b/i18n/vscode-language-pack-cs/translations/extensions/vscode.search-result.i18n.json
similarity index 100%
rename from i18n/vscode-language-pack-cs/translations/extensions/search-result.i18n.json
rename to i18n/vscode-language-pack-cs/translations/extensions/vscode.search-result.i18n.json
diff --git a/i18n/vscode-language-pack-cs/translations/extensions/vscode.shaderlab.i18n.json b/i18n/vscode-language-pack-cs/translations/extensions/vscode.shaderlab.i18n.json
index 44e6265c35..1e989fb160 100644
--- a/i18n/vscode-language-pack-cs/translations/extensions/vscode.shaderlab.i18n.json
+++ b/i18n/vscode-language-pack-cs/translations/extensions/vscode.shaderlab.i18n.json
@@ -9,8 +9,8 @@
"version": "1.0.0",
"contents": {
"package": {
- "displayName": "Základy jazyka ShaderLab",
- "description": "Poskytuje zvýrazňování syntaxe a párování závorek v souborech Shaderlab."
+ "description": "Poskytuje zvýrazňování syntaxe a párování závorek v souborech Shaderlab.",
+ "displayName": "Základy jazyka ShaderLab"
}
}
}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-cs/translations/extensions/vscode.shellscript.i18n.json b/i18n/vscode-language-pack-cs/translations/extensions/vscode.shellscript.i18n.json
index 0343de6e37..1a902d840d 100644
--- a/i18n/vscode-language-pack-cs/translations/extensions/vscode.shellscript.i18n.json
+++ b/i18n/vscode-language-pack-cs/translations/extensions/vscode.shellscript.i18n.json
@@ -9,8 +9,8 @@
"version": "1.0.0",
"contents": {
"package": {
- "displayName": "Základy jazyka shellového skriptu",
- "description": "Poskytuje zvýrazňování syntaxe a párování závorek v souborech shellového skriptu."
+ "description": "Poskytuje zvýrazňování syntaxe a párování závorek v souborech shellového skriptu.",
+ "displayName": "Základy jazyka shellového skriptu"
}
}
}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-cs/translations/extensions/vscode.simple-browser.i18n.json b/i18n/vscode-language-pack-cs/translations/extensions/vscode.simple-browser.i18n.json
new file mode 100644
index 0000000000..a5e3f84631
--- /dev/null
+++ b/i18n/vscode-language-pack-cs/translations/extensions/vscode.simple-browser.i18n.json
@@ -0,0 +1,28 @@
+{
+ "": [
+ "--------------------------------------------------------------------------------------------",
+ "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."
+ ],
+ "version": "1.0.0",
+ "contents": {
+ "bundle": {
+ "Back": "Zpět",
+ "Enter url to visit": "Zadejte adresu URL, na kterou chcete přejít.",
+ "Focus Lock": "Zámek fokusu",
+ "Forward": "Vpřed",
+ "Open in browser": "Otevřít v prohlížeči",
+ "Open in simple browser": "Otevřít v jednoduchém prohlížeči",
+ "Reload": "Načíst znovu",
+ "Simple Browser": "Jednoduchý prohlížeč",
+ "https://example.com": "https://example.com"
+ },
+ "package": {
+ "configuration.focusLockIndicator.enabled.description": "Povolí nebo zakáže plovoucí indikátor, který se zobrazuje při nastavení fokusu na jednoduchý prohlížeč.",
+ "description": "Velmi základní integrované webové zobrazení pro zobrazování webového obsahu.",
+ "displayName": "Jednoduchý prohlížeč"
+ }
+ }
+}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-cs/translations/extensions/vscode.sql.i18n.json b/i18n/vscode-language-pack-cs/translations/extensions/vscode.sql.i18n.json
index 517e2262c4..a5cf13b366 100644
--- a/i18n/vscode-language-pack-cs/translations/extensions/vscode.sql.i18n.json
+++ b/i18n/vscode-language-pack-cs/translations/extensions/vscode.sql.i18n.json
@@ -9,8 +9,8 @@
"version": "1.0.0",
"contents": {
"package": {
- "displayName": "Základy jazyka SQL",
- "description": "Poskytuje zvýrazňování syntaxe a párování závorek v souborech SQL."
+ "description": "Poskytuje zvýrazňování syntaxe a párování závorek v souborech SQL.",
+ "displayName": "Základy jazyka SQL"
}
}
}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-cs/translations/extensions/vscode.swift.i18n.json b/i18n/vscode-language-pack-cs/translations/extensions/vscode.swift.i18n.json
index 350330f746..dca3cd3023 100644
--- a/i18n/vscode-language-pack-cs/translations/extensions/vscode.swift.i18n.json
+++ b/i18n/vscode-language-pack-cs/translations/extensions/vscode.swift.i18n.json
@@ -9,8 +9,8 @@
"version": "1.0.0",
"contents": {
"package": {
- "displayName": "Základy jazyka Swift",
- "description": "Poskytuje fragmenty kódu, zvýrazňování syntaxe a párování závorek v souborech jazyka Swift."
+ "description": "Poskytuje fragmenty kódu, zvýrazňování syntaxe a párování závorek v souborech jazyka Swift.",
+ "displayName": "Základy jazyka Swift"
}
}
}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-cs/translations/extensions/vscode.terminal-suggest.i18n.json b/i18n/vscode-language-pack-cs/translations/extensions/vscode.terminal-suggest.i18n.json
new file mode 100644
index 0000000000..72243a2d40
--- /dev/null
+++ b/i18n/vscode-language-pack-cs/translations/extensions/vscode.terminal-suggest.i18n.json
@@ -0,0 +1,18 @@
+{
+ "": [
+ "--------------------------------------------------------------------------------------------",
+ "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."
+ ],
+ "version": "1.0.0",
+ "contents": {
+ "package": {
+ "description": "Rozšíření pro přidání dokončování v terminálu pro terminály zsh, bash a fish",
+ "displayName": "Návrh terminálu pro VS Code",
+ "terminal.integrated.suggest.clearCachedGlobals": "Vymazat navržené globální položky z mezipaměti",
+ "view.name": "Návrh terminálu"
+ }
+ }
+}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-cs/translations/extensions/vscode.theme-abyss.i18n.json b/i18n/vscode-language-pack-cs/translations/extensions/vscode.theme-abyss.i18n.json
index 30105ab91c..a699364601 100644
--- a/i18n/vscode-language-pack-cs/translations/extensions/vscode.theme-abyss.i18n.json
+++ b/i18n/vscode-language-pack-cs/translations/extensions/vscode.theme-abyss.i18n.json
@@ -9,8 +9,8 @@
"version": "1.0.0",
"contents": {
"package": {
- "displayName": "Motiv Abyss",
"description": "Motiv Abyss pro Visual Studio Code",
+ "displayName": "Motiv Abyss",
"themeLabel": "Abyss"
}
}
diff --git a/i18n/vscode-language-pack-cs/translations/extensions/vscode.theme-defaults.i18n.json b/i18n/vscode-language-pack-cs/translations/extensions/vscode.theme-defaults.i18n.json
index 771c42dc85..76bc76b891 100644
--- a/i18n/vscode-language-pack-cs/translations/extensions/vscode.theme-defaults.i18n.json
+++ b/i18n/vscode-language-pack-cs/translations/extensions/vscode.theme-defaults.i18n.json
@@ -9,13 +9,16 @@
"version": "1.0.0",
"contents": {
"package": {
- "displayName": "Výchozí motivy",
- "description": "Výchozí světlé a tmavé motivy sady Visual Studio",
- "darkPlusColorThemeLabel": "Tmavý+ (výchozí tmavý)",
- "lightPlusColorThemeLabel": "Světlý+ (výchozí světlý)",
"darkColorThemeLabel": "Tmavý (Visual Studio)",
+ "darkModernThemeLabel": "Tmavé moderní",
+ "darkPlusColorThemeLabel": "Tmavý+",
+ "description": "Výchozí světlé a tmavé motivy sady Visual Studio",
+ "displayName": "Výchozí motivy",
+ "hcColorThemeLabel": "Tmavý vysoký kontrast",
"lightColorThemeLabel": "Světlý (Visual Studio)",
- "hcColorThemeLabel": "Vysoký kontrast",
+ "lightHcColorThemeLabel": "Vysoký kontrast – světlý",
+ "lightModernThemeLabel": "Světlé moderní",
+ "lightPlusColorThemeLabel": "Světlý+",
"minimalIconThemeLabel": "Minimální (Visual Studio Code)"
}
}
diff --git a/i18n/vscode-language-pack-cs/translations/extensions/vscode.theme-kimbie-dark.i18n.json b/i18n/vscode-language-pack-cs/translations/extensions/vscode.theme-kimbie-dark.i18n.json
index 7f7e022023..02affbe00f 100644
--- a/i18n/vscode-language-pack-cs/translations/extensions/vscode.theme-kimbie-dark.i18n.json
+++ b/i18n/vscode-language-pack-cs/translations/extensions/vscode.theme-kimbie-dark.i18n.json
@@ -9,8 +9,8 @@
"version": "1.0.0",
"contents": {
"package": {
- "displayName": "Tmavý motiv Kimbie",
"description": "Tmavý motiv Kimbie pro Visual Studio Code",
+ "displayName": "Tmavý motiv Kimbie",
"themeLabel": "Tmavý Kimbie"
}
}
diff --git a/i18n/vscode-language-pack-cs/translations/extensions/vscode.theme-monokai-dimmed.i18n.json b/i18n/vscode-language-pack-cs/translations/extensions/vscode.theme-monokai-dimmed.i18n.json
index a62bac1608..5f3412fdf5 100644
--- a/i18n/vscode-language-pack-cs/translations/extensions/vscode.theme-monokai-dimmed.i18n.json
+++ b/i18n/vscode-language-pack-cs/translations/extensions/vscode.theme-monokai-dimmed.i18n.json
@@ -9,8 +9,8 @@
"version": "1.0.0",
"contents": {
"package": {
- "displayName": "Motiv Monokai se sníženým jasem",
"description": "Motiv Monokai se sníženým jasem pro Visual Studio Code",
+ "displayName": "Motiv Monokai se sníženým jasem",
"themeLabel": "Monokai se sníženým jasem"
}
}
diff --git a/i18n/vscode-language-pack-cs/translations/extensions/vscode.theme-monokai.i18n.json b/i18n/vscode-language-pack-cs/translations/extensions/vscode.theme-monokai.i18n.json
index 9d8914f4f0..6b533c0144 100644
--- a/i18n/vscode-language-pack-cs/translations/extensions/vscode.theme-monokai.i18n.json
+++ b/i18n/vscode-language-pack-cs/translations/extensions/vscode.theme-monokai.i18n.json
@@ -9,8 +9,8 @@
"version": "1.0.0",
"contents": {
"package": {
- "displayName": "Motiv Monokai",
"description": "Motiv Monokai pro Visual Studio Code",
+ "displayName": "Motiv Monokai",
"themeLabel": "Monokai"
}
}
diff --git a/i18n/vscode-language-pack-cs/translations/extensions/vscode.theme-quietlight.i18n.json b/i18n/vscode-language-pack-cs/translations/extensions/vscode.theme-quietlight.i18n.json
index 508c66d35f..763a6a3dbf 100644
--- a/i18n/vscode-language-pack-cs/translations/extensions/vscode.theme-quietlight.i18n.json
+++ b/i18n/vscode-language-pack-cs/translations/extensions/vscode.theme-quietlight.i18n.json
@@ -9,8 +9,8 @@
"version": "1.0.0",
"contents": {
"package": {
- "displayName": "Decentní světlý motiv",
"description": "Decentní světlý motiv pro Visual Studio Code",
+ "displayName": "Decentní světlý motiv",
"themeLabel": "Decentní světlý"
}
}
diff --git a/i18n/vscode-language-pack-cs/translations/extensions/vscode.theme-red.i18n.json b/i18n/vscode-language-pack-cs/translations/extensions/vscode.theme-red.i18n.json
index 1d09bcaaaf..c6bd742da8 100644
--- a/i18n/vscode-language-pack-cs/translations/extensions/vscode.theme-red.i18n.json
+++ b/i18n/vscode-language-pack-cs/translations/extensions/vscode.theme-red.i18n.json
@@ -9,8 +9,8 @@
"version": "1.0.0",
"contents": {
"package": {
- "displayName": "Červený motiv",
"description": "Červený motiv pro Visual Studio Code",
+ "displayName": "Červený motiv",
"themeLabel": "Červený"
}
}
diff --git a/i18n/vscode-language-pack-cs/translations/extensions/vscode.theme-solarized-dark.i18n.json b/i18n/vscode-language-pack-cs/translations/extensions/vscode.theme-solarized-dark.i18n.json
index 517d074b3d..8d719176de 100644
--- a/i18n/vscode-language-pack-cs/translations/extensions/vscode.theme-solarized-dark.i18n.json
+++ b/i18n/vscode-language-pack-cs/translations/extensions/vscode.theme-solarized-dark.i18n.json
@@ -9,8 +9,8 @@
"version": "1.0.0",
"contents": {
"package": {
- "displayName": "Tmavý motiv Solarized",
"description": "Tmavý motiv Solarized pro Visual Studio Code",
+ "displayName": "Tmavý motiv Solarized",
"themeLabel": "Tmavý Solarized"
}
}
diff --git a/i18n/vscode-language-pack-cs/translations/extensions/vscode.theme-solarized-light.i18n.json b/i18n/vscode-language-pack-cs/translations/extensions/vscode.theme-solarized-light.i18n.json
index 10c45dcd02..0e6a153927 100644
--- a/i18n/vscode-language-pack-cs/translations/extensions/vscode.theme-solarized-light.i18n.json
+++ b/i18n/vscode-language-pack-cs/translations/extensions/vscode.theme-solarized-light.i18n.json
@@ -9,8 +9,8 @@
"version": "1.0.0",
"contents": {
"package": {
- "displayName": "Světlý motiv Solarized",
"description": "Světlý motiv Solarized pro Visual Studio Code",
+ "displayName": "Světlý motiv Solarized",
"themeLabel": "Světlý Solarized"
}
}
diff --git a/i18n/vscode-language-pack-cs/translations/extensions/vscode.theme-tomorrow-night-blue.i18n.json b/i18n/vscode-language-pack-cs/translations/extensions/vscode.theme-tomorrow-night-blue.i18n.json
index 5de66fa30c..91b5654d37 100644
--- a/i18n/vscode-language-pack-cs/translations/extensions/vscode.theme-tomorrow-night-blue.i18n.json
+++ b/i18n/vscode-language-pack-cs/translations/extensions/vscode.theme-tomorrow-night-blue.i18n.json
@@ -9,8 +9,8 @@
"version": "1.0.0",
"contents": {
"package": {
- "displayName": "Motiv Tomorrow Night Blue",
"description": "Motiv Tomorrow Night Blue pro Visual Studio Code",
+ "displayName": "Motiv Tomorrow Night Blue",
"themeLabel": "Tomorrow Night Blue"
}
}
diff --git a/i18n/vscode-language-pack-cs/translations/extensions/vscode.tunnel-forwarding.i18n.json b/i18n/vscode-language-pack-cs/translations/extensions/vscode.tunnel-forwarding.i18n.json
new file mode 100644
index 0000000000..430c76887f
--- /dev/null
+++ b/i18n/vscode-language-pack-cs/translations/extensions/vscode.tunnel-forwarding.i18n.json
@@ -0,0 +1,27 @@
+{
+ "": [
+ "--------------------------------------------------------------------------------------------",
+ "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."
+ ],
+ "version": "1.0.0",
+ "contents": {
+ "bundle": {
+ "Continue": "Pokračovat",
+ "Don't show again": "Znovu nezobrazovat",
+ "Port Forwarding": "Přesměrování portů",
+ "Private": "Soukromý",
+ "Public": "Veřejné",
+ "You're about to create a publicly forwarded port. Anyone on the internet will be able to connect to the service listening on port {0}. You should only proceed if this service is secure and non-sensitive.": "Chystáte se vytvořit veřejně přesměrovaný port. Kdokoli na internetu se bude moct připojit ke službě naslouchající na portu {0}. Měli byste pokračovat pouze v případě, že je tato služba zabezpečená a není citlivá."
+ },
+ "package": {
+ "category": "Přesměrování portů",
+ "command.restart": "Restartovat systém předávání",
+ "command.showLog": "Zobrazit protokol",
+ "description": "Umožňuje přístup k předávání místních portů přes internet.",
+ "displayName": "Přesměrování portů místního tunelového propojení"
+ }
+ }
+}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-cs/translations/extensions/vscode.typescript-language-features.i18n.json b/i18n/vscode-language-pack-cs/translations/extensions/vscode.typescript-language-features.i18n.json
new file mode 100644
index 0000000000..38681338fa
--- /dev/null
+++ b/i18n/vscode-language-pack-cs/translations/extensions/vscode.typescript-language-features.i18n.json
@@ -0,0 +1,367 @@
+{
+ "": [
+ "--------------------------------------------------------------------------------------------",
+ "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."
+ ],
+ "version": "1.0.0",
+ "contents": {
+ "bundle": {
+ "(loading...)/Prefix displayed for hover entries while the server is still loading": "(načítání...)",
+ "...1 additional file not shown": "...nezobrazuje se 1 další soubor",
+ "...{0} additional files not shown": "...nezobrazuje se několik dalších souborů (celkem {0})",
+ "1 implementation": "1 implementace",
+ "1 reference": "1 odkaz",
+ "Acquiring typings definitions for IntelliSense./Typings refers to the *.d.ts typings files that power our IntelliSense. It should not be localized": "Získávají se definice typings pro IntelliSense.",
+ "Acquiring typings.../Typings refers to the *.d.ts typings files that power our IntelliSense. It should not be localized": "Získávají se definice typings...",
+ "Add all missing imports": "Přidat všechny chybějící importy",
+ "Add meaningful parameter name with AI": "Přidat smysluplný název parametru pomocí umělé inteligence",
+ "Add types to this code. Add separate interfaces when possible. Do not change the code except for adding types.": "Přidejte do tohoto kódu typy. Pokud je to možné, přidejte samostatná rozhraní. Kromě přidání typů kód neměňte.",
+ "Allow": "Povolit",
+ "Always": "Vždy",
+ "An error occurred while renaming file": "Při přejmenovávání souboru došlo k chybě.",
+ "Analyzing '{0}' and its dependencies": "Analýza {0} a jeho závislostí",
+ "Checking for update of JS/TS imports": "Kontroluje se aktualizace importů JS/TS",
+ "Configure Excludes": "Konfigurovat vyloučení",
+ "Configure JSConfig": "Konfigurovat soubor JSConfig",
+ "Configure TSConfig": "Konfigurovat soubor TSConfig",
+ "Configure jsconfig.json": "Konfigurovat soubor jsconfig.js",
+ "Configure tsconfig.json": "Konfigurovat soubor tsconfig.js",
+ "Could not apply refactoring": "Refaktorování se nepodařilo použít.",
+ "Could not detect a Node installation to run TS Server.": "Nepodařilo se zjistit instalaci uzlu pro spuštění serveru TS.",
+ "Could not determine TypeScript or JavaScript project": "Nepovedlo se určit projekt TypeScriptu nebo JavaScriptu.",
+ "Could not determine TypeScript or JavaScript project. Unsupported file type": "Nepovedlo se určit projekt TypeScriptu nebo JavaScriptu. Nepodporovaný typ souboru",
+ "Could not determine references": "Nepovedlo se určit odkazy.",
+ "Could not install typings files for JavaScript language features. Please ensure that NPM is installed, or configure 'typescript.npm' in your user settings. Alternatively, check the [documentation]({0}) to learn more.": "Nepovedlo se nainstalovat soubory typings pro funkce jazyka JavaScript. Ujistěte se prosím, že je nainstalovaný správce balíčků NPM, nebo v uživatelských nastaveních nakonfigurujte typescript.npm. Další informace najdete v [dokumentaci]({0}).",
+ "Could not load the TypeScript version at this path": "Could not load the TypeScript version at this path",
+ "Could not open TS Server log file": "Nepovedlo se otevřít soubor protokolu serveru TS.",
+ "Disable logging": "Zakázat protokolování",
+ "Disables semantic checking in a JavaScript file. Must be at the top of a file.": "Zakáže sémantickou kontrolu v souboru JavaScriptu. Musí být na začátku souboru.",
+ "Dismiss": "Zavřít",
+ "Don't Show Again": "Znovu nezobrazovat",
+ "Don't show again": "Znovu nezobrazovat",
+ "Enable logging and restart TS server": "Povolit protokolování a restartovat server TS",
+ "Enables semantic checking in a JavaScript file. Must be at the top of a file.": "Povolí sémantickou kontrolu v souboru JavaScriptu. Musí být na začátku souboru.",
+ "Enter file path": "Zadejte cestu k souboru.",
+ "Enter new file path...": "Zadejte novou cestu k souboru...",
+ "Extract to constant": "Extrahovat do konstanty",
+ "Extract to function": "Extrahovat do funkce",
+ "Failed to resolve {0} as module": "{0} se nepovedlo vyřešit jako modul",
+ "Fetching data for better TypeScript IntelliSense": "Načítají se data pro zvýšení efektivity technologie IntelliSense pro TypeScript.",
+ "File is not part of a JavaScript project. View the [jsconfig.json documentation]({0}) to learn more.": "Soubor není součástí projektu JavaScript. Další informace najdete v [dokumentaci jsconfig.json]({0}).",
+ "File is not part of a TypeScript project. View the [tsconfig.json documentation]({0}) to learn more.": "Soubor není součástí projektu TypeScript. Další informace najdete v [dokumentaci tsconfig.json]({0}).",
+ "File is not part opened folders": "Soubor není součástí otevřených složek.",
+ "Find file references failed. No resource provided.": "Operace vyhledání odkazů na soubory neproběhla úspěšně. Neposkytl se žádný prostředek.",
+ "Find file references failed. Requires TypeScript 4.2+.": "Operace vyhledání odkazů na soubory neproběhla úspěšně. Vyžaduje TypeScript 4.2+.",
+ "Find file references failed. Unknown file type.": "Operace vyhledání odkazů na soubory neproběhla úspěšně. Neznámý typ souboru",
+ "Find file references failed. Unsupported file type.": "Operace vyhledání odkazů na soubory neproběhla úspěšně. Nepodporovaný typ souboru",
+ "Finding file references": "Hledání odkazů na soubory",
+ "Finding source definitions": "Hledání definic zdrojů",
+ "Fix all fixable JS/TS issues": "Opravit všechny opravitelné problémy JS/TS",
+ "Follow link": "Přejít na odkaz",
+ "Go to Source Definition failed. No resource provided.": "Nepovedlo se přejít na definici zdroje. Neposkytl se žádný prostředek.",
+ "Go to Source Definition failed. Requires TypeScript 4.7+.": "Nepovedlo se přejít na definici zdroje. Vyžaduje se TypeScript 4.7+.",
+ "Go to Source Definition failed. Unknown file type.": "Nepovedlo se přejít na definici zdroje. Neznámý typ souboru.",
+ "Go to Source Definition failed. Unsupported file type.": "Nepovedlo se přejít na definici zdroje. Nepodporovaný typ souboru.",
+ "Implement missing function declaration '{0}' using AI": "Implementujte chybějící deklaraci funkce {0} pomocí AI",
+ "Implement the stubbed-out class members for {0} with a useful implementation.": "Implementujte zástupné členy třídy pro {0} s užitečnou implementací.",
+ "Infer types using AI": "Odvodit typy pomocí umělé inteligence",
+ "Initializing '{0}'": "Inicializuje se {0}.",
+ "JS/TS IntelliSense Status": "Stav IntelliSense JS/TS",
+ "JSDoc comment": "Komentář JSDoc",
+ "Learn More": "Další informace",
+ "Learn more about JS/TS refactorings": "Další informace o refaktorování JS/TS",
+ "Learn more about managing TypeScript versions": "Další informace o správě verzí TypeScriptu",
+ "Loading IntelliSense status": "Načítání stavu IntelliSense",
+ "Move to File": "Přesunout do souboru",
+ "Never": "Nikdy",
+ "Never in this Workspace": "Nikdy v tomto pracovním prostoru",
+ "No": "Ne",
+ "No jsconfig": "Žádný jsconfig",
+ "No opened folders": "Žádné otevřené složky",
+ "No source definitions found.": "Nenašly se žádné definice.",
+ "No tsconfig": "Žádný tsconfig",
+ "Not now": "Teď ne",
+ "Open Config File": "Otevřít konfigurační soubor",
+ "Open on GitHub": "Otevřít v GitHubu",
+ "Organize Imports": "Uspořádat importy",
+ "Partial mode": "Dílčí režim",
+ "Paste with imports": "Vložit s importy",
+ "Please open a folder in VS Code to use a TypeScript or JavaScript project": "Pokud chcete použít projekt TypeScriptu nebo JavaScriptu, otevřete prosím složku ve VS Code.",
+ "Please report an issue against Yarn PnP": "Nahlaste prosím problém s Yarn PnP.",
+ "Please update your TypeScript version": "Aktualizujte si prosím verzi TypeScriptu",
+ "Project wide IntelliSense not available": "IntelliSense není k dispozici pro celý projekt",
+ "Provide a reasonable implementation of the function {0} given its type and the context it's called in.": "Poskytněte přiměřenou implementaci funkce {0} na základě jejího typu a kontextu, ve kterém je volána.",
+ "Remove Unused Imports": "Odebrat nepoužívané importy",
+ "Remove all unused code": "Odebrat veškerý nepoužívaný kód",
+ "Rename the parameter {0} with a more meaningful name.": "Přejmenujte parametr {0} na výstižnější název.",
+ "Report Issue": "Nahlásit problém",
+ "Report issue against Yarn PnP": "Nahlásit problém s Yarn PnP",
+ "Select Version": "Vyberte verzi",
+ "Select code action to apply": "Vybrat akci kódu, která se má použít",
+ "Select existing file...": "Vybrat existující soubor...",
+ "Select move destination": "Vybrat cíl přesunu",
+ "Select the TypeScript version used for JavaScript and TypeScript language features": "Vyberte verzi TypeScriptu používanou pro funkce jazyka JavaScript a TypeScript.",
+ "Sort Imports": "Seřadit importy",
+ "Suppresses @ts-check errors on the next line of a file, expecting at least one to exist.": "Potlačí chyby @ts-check na dalším řádku souboru. Očekává, že bude existovat minimálně jedna.",
+ "Suppresses @ts-check errors on the next line of a file.": "Potlačí chyby @ts-check na dalším řádku souboru.",
+ "TS Server has not started logging.": "Server TS nezačal protokolovat.",
+ "TS Server logging is currently enabled which may impact performance.": "Protokolování serveru TS je aktuálně povolené, což může mít vliv na výkon.",
+ "TS Server logging is off. Please set 'typescript.tsserver.log' and restart the TS server to enable logging": "Protokolování serveru TS je vypnuté. Pokud chcete povolit protokolování, nastavte prosím typescript.tsserver.log a restartujte server TS.",
+ "The JS/TS language service crashed 5 times in the last 5 Minutes.": "Služba jazyka JS/TS selhala 5krát za posledních 5 minut.",
+ "The JS/TS language service crashed 5 times in the last 5 Minutes.\nThis may be caused by a plugin contributed by one of these extensions: {0}\nPlease try disabling these extensions before filing an issue against VS Code.": "Služba jazyka JS/TS selhala 5krát za posledních 5 minut.\nPříčinou může být modul plug-in, kterým přispělo jedno z těchto rozšíření: {0}.\nPřed nahlášením problému s VS Code zkuste prosím tato rozšíření zakázat.",
+ "The JS/TS language service crashed.": "Došlo k chybě služby jazyka JS/TS.",
+ "The JS/TS language service crashed.\nThis may be caused by a plugin contributed by one of these extensions: {0}.\nPlease try disabling these extensions before filing an issue against VS Code.": "Došlo k chybovému ukončení služby jazyka JS/TS.\nPříčinou může být modul plug-in, kterým přispělo jedno z těchto rozšíření: {0}.\nPřed nahlášením problému s VS Code zkuste prosím tato rozšíření zakázat.",
+ "The JS/TS language service immediately crashed 5 times. The service will not be restarted.": "Služba jazyka JS/TS okamžitě 5krát selhala. Služba nebude restartována.",
+ "The JS/TS language service immediately crashed 5 times. The service will not be restarted.\nThis may be caused by a plugin contributed by one of these extensions: {0}.\nPlease try disabling these extensions before filing an issue against VS Code.": "Služba jazyka JS/TS okamžitě 5krát selhala. Služba nebude restartována.\nPříčinou může být modul plug-in, kterým přispělo jedno z těchto rozšíření: {0}.\nPřed nahlášením problému s VS Code zkuste prosím tato rozšíření zakázat.",
+ "The TypeScript Go extension is not installed.": "Rozšíření TypeScript Go není nainstalované.",
+ "The current selection cannot be extracted": "Aktuální výběr nelze extrahovat.",
+ "The path {0} doesn't point to a valid Node installation to run TS Server. Falling back to bundled Node.": "Cesta {0} neukazuje na platnou instalaci uzlu pro spuštění serveru TS. Návrat k sadě uzlu.",
+ "The path {0} doesn't point to a valid tsserver install. Falling back to bundled TypeScript version.": "Cesta {0} neodkazuje na platnou instalaci serveru tsserver. Místo toho se použije verze TypeScriptu v balíčku.",
+ "The workspace is using a version of the TypeScript Server that has been patched by Yarn PnP. This patching is a common source of bugs.": "Pracovní prostor používá verzi serveru TypeScript opravenou prostřednictvím Yarn PnP. Tato oprava je běžným zdrojem chyb.",
+ "The workspace is using an old version of TypeScript ({0}).\n\nBefore reporting an issue, please update the workspace to use TypeScript {1} or newer to make sure the bug has not already been fixed.": "Pracovní prostor používá starou verzi TypeScriptu ({0}).\n\nPřed nahlášením problému prosím aktualizujte pracovní prostor tak, aby používal TypeScript {1} nebo novější, abyste měli jistotu, že se chyba ještě neopravila.",
+ "This workspace contains a TypeScript version. Would you like to use the workspace TypeScript version for TypeScript and JavaScript language features?": "Tento pracovní prostor obsahuje verzi TypeScriptu. Chcete použít verzi TypeScriptu pracovního prostoru pro funkce jazyka TypeScript a JavaScript?",
+ "This workspace wants to use the Node installation at '{0}' to run TS Server. Would you like to use it?": "Tento pracovní prostor chce ke spuštění serveru TS použít instalaci uzlu na „{0}“. Chcete ho použít?",
+ "To enable project-wide JavaScript/TypeScript language features, exclude folders with many files, like: {0}": "Pokud chcete povolit funkce jazyka JavaScript/TypeScript pro celý projekt, vylučte složky s velkým počtem souborů, například: {0}.",
+ "To enable project-wide JavaScript/TypeScript language features, exclude large folders with source files that you do not work on.": "Pokud chcete povolit funkce jazyka JavaScript/TypeScript pro celý projekt, vylučte velké složky se zdrojovými soubory, na kterých nepracujete.",
+ "TypeScript Server Log": "Protokol serveru TypeScript",
+ "TypeScript Task in tasks.json contains \"\\\\\". TypeScript tasks tsconfig must use \"/\"": "Úloha TypeScriptu v souboru tasks.json obsahuje čtyři zpětná lomítka (\\\\). V konfiguraci tsconfig úloh TypeScriptu se musí používat jedno dopředné lomítko (/).",
+ "TypeScript Version": "Verze TypeScriptu",
+ "TypeScript language server exited with error. Error message is: {0}": "Server jazyka TypeScript byl ukončen s chybou. Chybová zpráva: {0}",
+ "TypeScript version": "Verze TypeScriptu",
+ "TypeScript: Configure Excludes": "TypeScript: konfigurovat vyloučení",
+ "Update imports for '{0}'?": "Chcete aktualizovat importy pro: {0}?",
+ "Update imports for the following {0} files?": "Chcete aktualizovat importy pro následující soubory ({0})?",
+ "Use VS Code's Version": "Použít verzi VS Code",
+ "Use Workspace Version": "Použít verzi pracovního prostoru",
+ "VS Code's tsserver was deleted by another application such as a misbehaving virus detection tool. Please reinstall VS Code.": "VS Code's tsserver was deleted by another application such as a misbehaving virus detection tool. Please reinstall VS Code.",
+ "Yes": "Ano",
+ "build - {0}": "sestavení – {0}",
+ "destination files": "cílové soubory",
+ "invalid version": "neplatná verze",
+ "watch - {0}": "kukátko – {0}",
+ "{0} (Fix all in file)": "{0} (Opravit vše v souboru)",
+ "{0} implementations": "Počet implementací: {0}",
+ "{0} references": "Odkazy: {0}",
+ "{0} with AI": "{0} s umělou inteligencí"
+ },
+ "package": {
+ "configuration.format": "Formátování",
+ "configuration.hover.maximumLength": "Maximální počet znaků při najetí myší. Pokud je popis zobrazovaný při najet myší delší než tento limit, bude zkrácen. Vyžaduje TypeScript 5.9+.",
+ "configuration.implicitProjectConfig.checkJs": "Umožňuje povolit nebo zakázat sémantickou kontrolu souborů JavaScriptu. Existující soubory jsconfig.json nebo tsconfig.json toto nastavení přepíší.",
+ "configuration.implicitProjectConfig.experimentalDecorators": "Umožňuje povolit nebo zakázat možnost experimentalDecorators pro soubory JavaScriptu, které nejsou součástí projektu. Existující soubory jsconfig.json nebo tsconfig.json toto nastavení přepíší.",
+ "configuration.implicitProjectConfig.module": "Nastaví systém modulů pro program. Další informace: https://www.typescriptlang.org/tsconfig#module.",
+ "configuration.implicitProjectConfig.strict": "Umožňuje povolit nebo zakázat [striktní režim](https://www.typescriptlang.org/tsconfig#strict) v souborech JavaScript a TypeScript, které nejsou součástí projektu. Existující soubory jsconfig.json nebo tsconfig.json toto nastavení přepíší.",
+ "configuration.implicitProjectConfig.strictFunctionTypes": "Umožňuje povolit nebo zakázat [striktní typy funkcí](https://www.typescriptlang.org/tsconfig#strictFunctionTypes) pro soubory JavaScriptu a TypeScriptu, které nejsou součástí projektu. Existující soubory jsconfig.json nebo tsconfig.json toto nastavení přepíší.",
+ "configuration.implicitProjectConfig.strictNullChecks": "Umožňuje povolit nebo zakázat [striktní kontroly hodnoty null](https://www.typescriptlang.org/tsconfig#strictNullChecks) pro soubory JavaScriptu a TypeScriptu, které nejsou součástí projektu. Existující soubory jsconfig.json nebo tsconfig.json toto nastavení přepíší.",
+ "configuration.implicitProjectConfig.target": "Nastavte cílovou verzi jazyka JavaScript pro vydávaný JavaScript a zahrňte deklarace knihovny. Další informace: https://www.typescriptlang.org/tsconfig#target.",
+ "configuration.inlayHints": "Vložené upozornění",
+ "configuration.inlayHints.enumMemberValues.enabled": "Povolit nebo zakázat vložená upozornění pro hodnoty členů v deklaracích výčtu:\r\n```typescript\r\n\r\nenum MyValue {\r\n\tA /* = 0 */;\r\n\tB /* = 1 */;\r\n}\r\n \r\n```",
+ "configuration.inlayHints.functionLikeReturnTypes.enabled": "Povolit nebo zakázat vložená upozornění pro implicitní návratové typy signatur funkce:\r\n```typescript\r\n\r\nfunction foo() /* :number */ {\r\n\treturn Date.now();\r\n} \r\n \r\n```",
+ "configuration.inlayHints.parameterNames.enabled": "Povolit nebo zakázat vložená upozornění pro vložené parametry:\r\n```typescript\r\n\r\nparseInt(/* str: */ '123', /* radix: */ 8)\r\n \r\n```",
+ "configuration.inlayHints.parameterNames.suppressWhenArgumentMatchesName": "Potlačte tipy pro názvy parametrů parametru u argumentů, jejichž text je totožný s názvem parametru.",
+ "configuration.inlayHints.parameterTypes.enabled": "Povolit nebo zakázat vložená upozornění vloženého kódu pro implicitní typy parametrů:\r\n```typescript\r\n\r\nel.addEventListener('click', e /* :MouseEvent */ => ...)\r\n \r\n```",
+ "configuration.inlayHints.propertyDeclarationTypes.enabled": "Povolit nebo zakázat vložená upozornění pro vložené typy v deklaracích vlastností:\r\n```typescript\r\n\r\nclass Foo {\r\n\tprop /* :number */ = Date.now();\r\n}\r\n \r\n```",
+ "configuration.inlayHints.variableTypes.enabled": "Povolit nebo zakázat vložená upozornění pro implicitní typy proměnných:\r\n```typescript\r\n\r\nconst foo /* :number */ = Date.now();\r\n \r\n```",
+ "configuration.inlayHints.variableTypes.suppressWhenTypeMatchesName": "Potlačit typové nápovědy u proměnných, jejichž název je shodný s názvem typu.",
+ "configuration.preferGoToSourceDefinition": "Umožňuje provést příkaz Přejít k definici a vyhnout se při tom souborům deklarací typu (pokud je to možné) tím, že místo toho aktivuje příkaz Přejít na definici zdroje. To umožňuje aktivaci příkazu Přejít na definici zdroje pomocí gesta myší.",
+ "configuration.preferences": "Předvolby",
+ "configuration.server": "Server TS",
+ "configuration.suggest": "Návrhy",
+ "configuration.suggest.autoImports": "Umožňuje povolit nebo zakázat návrhy automatického importu.",
+ "configuration.suggest.classMemberSnippets.enabled": "Umožňuje povolit nebo zakázat dokončování fragmentů kódu pro členy třídy.",
+ "configuration.suggest.completeFunctionCalls": "Dokončovat funkce pomocí jejich podpisu parametru",
+ "configuration.suggest.completeJSDocs": "Umožňuje povolit nebo zakázat návrh na dokončování komentářů JSDoc.",
+ "configuration.suggest.includeAutomaticOptionalChainCompletions": "Umožňuje povolit nebo zakázat zobrazování dokončování pro potenciálně nedefinované hodnoty, které vkládají volitelné volání řetězce. Vyžaduje povolení striktních kontrol hodnot null.",
+ "configuration.suggest.includeCompletionsForImportStatements": "Umožňuje povolit nebo zakázat dokončení automatického importu stylů a příkazů částečně typového importu.",
+ "configuration.suggest.jsdoc.generateReturns": "Umožňuje povolit nebo zakázat generování poznámek @returns pro šablony JSDoc.",
+ "configuration.suggest.names": "Umožňuje povolit nebo zakázat zahrnutí jedinečných názvů ze souboru do návrhů JavaScriptu. Poznámka: Návrhy názvů jsou vždy zakázány v kódu JavaScriptu, který je sémanticky kontrolován pomocí @ts-check nebo checkJs.",
+ "configuration.suggest.objectLiteralMethodSnippets.enabled": "Umožňuje povolit nebo zakázat dokončování fragmentů kódu pro metody v literálech objektů.",
+ "configuration.suggest.paths": "Umožňuje povolit nebo zakázat návrhy pro cesty v příkazech importu a vyžadovat volání.",
+ "configuration.tsserver.experimental.enableProjectDiagnostics": "Povolí zasílání zpráv o chybách v rámci celého projektu.",
+ "configuration.tsserver.maxTsServerMemory": "Maximální velikost paměti (v MB), která se přidělí procesu serveru TypeScriptu. Pokud chcete použít limit paměti větší než 4 GB, použijte #typescript.tsserver.nodePath# a spusťte TS Server s vlastní instalací uzlu.",
+ "configuration.tsserver.nodePath": "Spusťte TS Server na vlastní instalaci uzlu. Může to Může to být cesta ke spustitelnému uzlu nebo „uzlu\", pokud chcete, aby VS Code detekoval instalaci uzlu.",
+ "configuration.tsserver.useSeparateSyntaxServer": "Umožňuje povolit nebo zakázat vytváření samostatného serveru TypeScriptu, který může rychleji reagovat na operace související se syntaxí, jako je například výpočet sbalení nebo symbolů dokumentu.",
+ "configuration.tsserver.useSyntaxServer": "Určuje, jestli TypeScript spustí vyhrazený server, aby se rychleji zpracovaly operace související se syntaxí, jako je například výpočet sbalování kódu.",
+ "configuration.tsserver.useSyntaxServer.always": "Pro zpracování všech operací IntelliSense použijte zjednodušený server syntaxe. Tento server syntaxe může poskytovat IntelliSense pouze pro otevřené soubory.",
+ "configuration.tsserver.useSyntaxServer.auto": "Vytvoří úplný i zjednodušený server vyhrazený pro operace syntaxe. Server syntaxe se používá k urychlení operací syntaxe a poskytování IntelliSense při načítání projektů.",
+ "configuration.tsserver.useSyntaxServer.never": "Nepoužívejte vyhrazený server syntaxe. Pomocí jednoho serveru zpracujte všechny operace IntelliSense.",
+ "configuration.tsserver.useVsCodeWatcher": "Místo sledovacích procesů souborů TypeScriptu použijte sledovací procesy souborů VS Code. Vyžaduje v pracovním prostoru použití TypeScriptu 5.4+.",
+ "configuration.tsserver.watchOptions": "Umožňuje nakonfigurovat, které strategie sledování se mají používat ke sledování souborů a adresářů.",
+ "configuration.tsserver.watchOptions.fallbackPolling": "Při použití událostí systému souborů tato možnost určuje strategii dotazování, která se má použít, když v systému dojdou prostředky nativního sledování souborů nebo pokud systém nativní sledování souborů nepodporuje.",
+ "configuration.tsserver.watchOptions.fallbackPolling.dynamicPriorityPolling ": "Použít dynamickou frontu, ve které se budou méně často upravované soubory kontrolovat méně často",
+ "configuration.tsserver.watchOptions.fallbackPolling.fixedPollingInterval": "Kontrolovat změny v každém souboru několikrát za sekundu v pevně stanoveném intervalu",
+ "configuration.tsserver.watchOptions.fallbackPolling.priorityPollingInterval": "Kontrolovat změny v každém souboru několikrát za sekundu, ale pomocí heuristiky kontrolovat konkrétní typy souborů méně často",
+ "configuration.tsserver.watchOptions.synchronousWatchDirectory": "Umožňuje zakázat odložené sledování adresářů. Odložené sledování je užitečné, když může v souboru najednou dojít k velkému počtu změn (např. ke změně v node_modules při spuštění instalace npm). U některých méně obvyklých instalací ale můžete chtít toto nastavení pomocí tohoto příznaku zakázat.",
+ "configuration.tsserver.watchOptions.vscode": "Místo sledovacích procesů souborů TypeScriptu použijte sledovací procesy souborů VS Code. Vyžaduje v pracovním prostoru použití TypeScriptu 5.4+.",
+ "configuration.tsserver.watchOptions.watchDirectory": "Strategie pro sledování celých adresářových stromů v systémech, kde neexistuje žádná funkce rekurzivního sledování souborů",
+ "configuration.tsserver.watchOptions.watchDirectory.dynamicPriorityPolling": "Používat dynamickou frontu, ve které se budou méně často upravované adresáře kontrolovat méně často",
+ "configuration.tsserver.watchOptions.watchDirectory.fixedChunkSizePolling": "V pravidelných intervalech dotazuje adresáře v blocích.",
+ "configuration.tsserver.watchOptions.watchDirectory.fixedPollingInterval": "Zkontrolovat změny v každém adresáři několikrát za sekundu v pevně stanoveném intervalu",
+ "configuration.tsserver.watchOptions.watchDirectory.useFsEvents": "Pokus o použití nativních událostí operačního systému / systému souborů pro změny v adresáři",
+ "configuration.tsserver.watchOptions.watchFile": "Strategie pro sledovaní jednotlivých souborů",
+ "configuration.tsserver.watchOptions.watchFile.dynamicPriorityPolling": "Použít dynamickou frontu, ve které se budou méně často upravované soubory kontrolovat méně často",
+ "configuration.tsserver.watchOptions.watchFile.fixedChunkSizePolling": "V pravidelných intervalech dotazuje soubory v blocích.",
+ "configuration.tsserver.watchOptions.watchFile.fixedPollingInterval": "Kontrolovat změny v každém souboru několikrát za sekundu v pevně stanoveném intervalu",
+ "configuration.tsserver.watchOptions.watchFile.priorityPollingInterval": "Kontrolovat změny v každém souboru několikrát za sekundu, ale pomocí heuristiky kontrolovat konkrétní typy souborů méně často",
+ "configuration.tsserver.watchOptions.watchFile.useFsEvents": "Pokus o použití nativních událostí operačního systému / systému souborů pro změny v souboru",
+ "configuration.tsserver.watchOptions.watchFile.useFsEventsOnParentDirectory": "Pokus o použití nativních událostí operačního systému / systému souborů k naslouchání změnám v adresářích obsahujících daný soubor. Může to vést k používání menšího počtu sledovacích procesů souborů, ale zároveň ke snížení přesnosti.",
+ "configuration.tsserver.web.projectWideIntellisense.enabled": "Povolí nebo zakáže IntelliSense pro celý projekt na webu. Vyžaduje, aby byl nástroj VS Code spuštěn v důvěryhodném kontextu.",
+ "configuration.tsserver.web.projectWideIntellisense.suppressSemanticErrors": "Potlačí sémantické chyby na webu, i když je povolená funkce IntelliSense pro celý projekt. Je vždy zapnuté, když funkce IntelliSense není povolená pro celý projekt nebo není dostupná. Viz #typescript.tsserver.web.projectWideIntellisense.enabled#",
+ "configuration.tsserver.web.typeAcquisition.enabled": "Povolit/zakázat získávání balíčků na webu. Povolí IntelliSense pro importované balíčky. Vyžaduje #typescript.tsserver.web.projectWideIntellisense.enabled#. V současnosti není podporováno pro Safari.",
+ "configuration.typescript": "TypeScript",
+ "configuration.updateImportsOnPaste": "Automaticky aktualizovat importy při vkládání kódu. Vyžaduje TypeScript 5.6+.",
+ "description": "Poskytuje rozšířenou podporu jazyka pro JavaScript a TypeScript.",
+ "displayName": "Funkce jazyka TypeScript a JavaScript",
+ "format.indentSwitchCase": "Odsadit klauzule case v příkazech switch. Vyžaduje v pracovním prostoru použití TypeScriptu 5.1+.",
+ "format.insertSpaceAfterCommaDelimiter": "Určuje, jak zpracovávat mezery za oddělovačem v podobě čárky.",
+ "format.insertSpaceAfterConstructor": "Určuje, jak zpracovávat mezery za klíčovým slovem constructor (konstruktor).",
+ "format.insertSpaceAfterFunctionKeywordForAnonymousFunctions": "Určuje, jak zpracovávat mezery za klíčovým slovem function (funkce) pro anonymní funkce.",
+ "format.insertSpaceAfterKeywordsInControlFlowStatements": "Určuje, jak zpracovávat mezery za klíčovými slovy v příkazu řídicího toku.",
+ "format.insertSpaceAfterOpeningAndBeforeClosingEmptyBraces": "Určuje, jak zpracovávat mezery po levé složené závorce a před pravou složenou závorkou, pokud jsou tyto závorky prázdné.",
+ "format.insertSpaceAfterOpeningAndBeforeClosingJsxExpressionBraces": "Určuje, jak zpracovávat mezery po levé složené závorce a před pravou složenou závorkou výrazu JSX.",
+ "format.insertSpaceAfterOpeningAndBeforeClosingNonemptyBraces": "Určuje, jak zpracovávat mezery po levé složené závorce a před pravou složenou závorkou, pokud tyto závorky nejsou prázdné.",
+ "format.insertSpaceAfterOpeningAndBeforeClosingNonemptyBrackets": "Určuje, jak zpracovávat mezery po levé hranaté závorce a před pravou hranatou závorkou, pokud tyto závorky nejsou prázdné.",
+ "format.insertSpaceAfterOpeningAndBeforeClosingNonemptyParenthesis": "Určuje, jak zpracovávat mezery za levou kulatou závorkou a před pravou kulatou závorkou, pokud tyto závorky nejsou prázdné.",
+ "format.insertSpaceAfterOpeningAndBeforeClosingTemplateStringBraces": "Určuje, jak zpracovávat mezery po levé složené závorce a před pravou složenou závorkou řetězce šablony.",
+ "format.insertSpaceAfterSemicolonInForStatements": "Určuje, jak zpracovávat mezery za středníkem v příkazu for.",
+ "format.insertSpaceAfterTypeAssertion": "Určuje, jak zpracovávat mezery za kontrolními výrazy v TypeScriptu.",
+ "format.insertSpaceBeforeAndAfterBinaryOperators": "Určuje, jak zpracovávat mezery za binárním operátorem.",
+ "format.insertSpaceBeforeFunctionParenthesis": "Určuje, jak zpracovávat mezery před kulatými závorkami argumentů funkcí.",
+ "format.placeOpenBraceOnNewLineForControlBlocks": "Určuje, jestli je levá složená závorka v řídicích blocích umístěna na nový řádek.",
+ "format.placeOpenBraceOnNewLineForFunctions": "Určuje, jestli je levá složená závorka ve funkcích umístěna na nový řádek.",
+ "format.semicolons": "Definuje zpracování volitelných středníků.",
+ "format.semicolons.ignore": "Nevkládat ani neodebírat žádné středníky",
+ "format.semicolons.insert": "Vkládat středníky na konec příkazů",
+ "format.semicolons.remove": "Odebrat nepotřebné středníky",
+ "inlayHints.parameterNames.all": "Povolte tipy pro názvy parametrů pro argumenty literálu a neliterálu.",
+ "inlayHints.parameterNames.literals": "Tipy pro názvy parametrů povolte pouze pro argumenty literálu.",
+ "inlayHints.parameterNames.none": "Zakažte nápovědu k názvu parametru.",
+ "javascript.format.enable": "Umožňuje povolit nebo zakázat výchozí formátovací modul JavaScriptu.",
+ "javascript.goToProjectConfig.title": "Přejít na konfiguraci projektu (jsconfig / tsconfig)",
+ "javascript.preferences.jsxAttributeCompletionStyle.auto": "Vložte „={}“ nebo „=\"\"“ za názvy atributů na základě typu vlastnosti. Pokud chcete určit typy uvozovek používaných u atributů řetězců, podívejte se na nastavení #javascript.preferences.quoteStyle#.",
+ "javascript.preferences.organizeImports": "Upřesňující předvolby, které řídí způsob řazení importů.",
+ "javascript.referencesCodeLens.enabled": "Umožňuje povolit nebo zakázat odkazy CodeLens v souborech JavaScriptu.",
+ "javascript.referencesCodeLens.showOnAllFunctions": "Umožňuje povolit nebo zakázat odkazy CodeLens pro všechny funkce v souborech JavaScriptu.",
+ "javascript.suggestionActions.enabled": "Umožňuje povolit nebo zakázat diagnostiku návrhů pro soubory JavaScriptu v editoru.",
+ "javascript.validate.enable": "Umožňuje povolit nebo zakázat ověřování JavaScriptu.",
+ "reloadProjects.title": "Znovu načíst projekt",
+ "taskDefinition.tsconfig.description": "Soubor tsconfig, který definuje sestavení TS",
+ "typescript.autoClosingTags": "Umožňuje povolit nebo zakázat automatické zavírání značek JSX.",
+ "typescript.check.npmIsInstalled": "Zkontrolujte, zda je npm nainstalován pro [Automatické získávání typů](https://code.visualstudio.com/docs/nodejs/working-with-javascript#_typings-and-automatic-type-acquisition).",
+ "typescript.disableAutomaticTypeAcquisition": "Zakáže [Automatické získávání typů](https://code.visualstudio.com/docs/nodejs/working-with-javascript#_typings-and-automatic-type-acquisition). Automatické získávání typů načte balíčky @types z npm, aby se vylepšila funkce IntelliSense pro externí knihovny.",
+ "typescript.enablePromptUseWorkspaceTsdk": "Umožňuje dotazovat se uživatelů na použití verze TypeScript nakonfigurované v pracovním prostoru pro Intellisense.",
+ "typescript.findAllFileReferences": "Vyhledat odkazy na soubory",
+ "typescript.format.enable": "Umožňuje povolit nebo zakázat výchozí formátovací modul TypeScriptu.",
+ "typescript.goToProjectConfig.title": "Přejít na konfiguraci projektu (tsconfig)",
+ "typescript.goToSourceDefinition": "Přejít na definici zdroje",
+ "typescript.implementationsCodeLens.enabled": "Umožňuje povolit nebo zakázat implementace CodeLens. Tato funkce CodeLens zobrazí implementátory rozhraní.",
+ "typescript.implementationsCodeLens.showOnAllClassMethods": "Umožňuje povolit nebo zakázat zobrazování CodeLens informujících o implementacích nad všemi metodami třídy místo pouze nad abstraktními metodami.",
+ "typescript.implementationsCodeLens.showOnInterfaceMethods": "Umožňuje povolit nebo zakázat implementace CodeLens v metodách rozhraní.",
+ "typescript.locale": "Nastaví národní prostředí, které se používá k hlášení chyb JavaScriptu a TypeScriptu. Ve výchozím nastavení se používá národní prostředí VS Code.",
+ "typescript.locale.auto": "Umožňuje použít nakonfigurovaný jazyk zobrazení VS Code.",
+ "typescript.npm": "Určuje cestu ke spustitelnému souboru npm používanému pro [Automatické získávání typů](https://code.visualstudio.com/docs/nodejs/working-with-javascript#_typings-and-automatic-type-acquisition).",
+ "typescript.openTsServerLog.title": "Otevřít protokol serveru TS",
+ "typescript.preferences.autoImportFileExcludePatterns": "Zadejte vzory glob souborů, které se mají vyloučit z automatických importů. Relativní cesty se řeší relativně vzhledem ke kořeni pracovního prostoru. Vzory se vyhodnocují pomocí sémantiky tsconfig.json ['exclude'](https://www.typescriptlang.org/tsconfig#exclude).",
+ "typescript.preferences.autoImportSpecifierExcludeRegexes": "Zadejte regulární výrazy pro vyloučení automatických importů s odpovídajícími specifikátory importu. Příklady:\r\n\r\n- ^node:\r\n- lib/internal (lomítka se nemusí uvozovat řídicími znaky...)\r\n- /lib\\/internal/i (... pokud se nezahrnou okolní lomítka pro příznaky i nebo u)\r\n- ^lodash$ (povolit pouze import dílčích cest z lodash)",
+ "typescript.preferences.importModuleSpecifier": "Upřednostňovaný styl cesty pro automatické importy",
+ "typescript.preferences.importModuleSpecifier.nonRelative": "Upřednostňuje import, který není relativní, na základě hodnot baseUrl nebo paths nakonfigurovaných v souboru jsconfig.json/tsconfig.json.",
+ "typescript.preferences.importModuleSpecifier.projectRelative": "Upřednostňovat nerelativní import jen v případě, že by relativní cesta importu opustila balíček nebo adresář projektu.",
+ "typescript.preferences.importModuleSpecifier.relative": "Upřednostňuje relativní cestu k umístění importovaného souboru.",
+ "typescript.preferences.importModuleSpecifier.shortest": "Upřednostňuje import, který není relativní, pouze pokud je k dispozici takový, který má méně segmentů cesty než relativní import.",
+ "typescript.preferences.importModuleSpecifierEnding": "Upřednostňované konce cest pro automatické importy",
+ "typescript.preferences.importModuleSpecifierEnding.auto": "Výchozí nastavení vyberte pomocí nastavení projektu.",
+ "typescript.preferences.importModuleSpecifierEnding.index": "Zkracovat ./component/index.js na ./component/index",
+ "typescript.preferences.importModuleSpecifierEnding.js": "Nezkracovat konce cesty; zahrnout příponu .js nebo .ts.",
+ "typescript.preferences.importModuleSpecifierEnding.label.js": ".js / .ts",
+ "typescript.preferences.importModuleSpecifierEnding.minimal": "Zkracovat ./component/index.js na ./component",
+ "typescript.preferences.includePackageJsonAutoImports": "Umožňuje povolit nebo zakázat hledání závislostí package.json pro dostupné automatické importy.",
+ "typescript.preferences.includePackageJsonAutoImports.auto": "Hledat závislosti na základě odhadovaného dopadu na výkon",
+ "typescript.preferences.includePackageJsonAutoImports.off": "Nikdy nehledat závislosti",
+ "typescript.preferences.includePackageJsonAutoImports.on": "Vždy hledat závislosti",
+ "typescript.preferences.jsxAttributeCompletionStyle": "Upřednostňovaný styl pro dokončování atributů JSX.",
+ "typescript.preferences.jsxAttributeCompletionStyle.auto": "Vložte „={}“ nebo „=\"\"“ za názvy atributů na základě typu vlastnosti. Pokud chcete určit typy uvozovek používaných u atributů řetězců, podívejte se na nastavení #typescript.preferences.quoteStyle#.",
+ "typescript.preferences.jsxAttributeCompletionStyle.braces": "Vložte „={}“ za názvy atributů.",
+ "typescript.preferences.jsxAttributeCompletionStyle.none": "Vkládejte pouze názvy atributů.",
+ "typescript.preferences.organizeImports": "Upřesňující předvolby, které řídí způsob řazení importů.",
+ "typescript.preferences.organizeImports.accentCollation": "Vyžaduje organizeImports.unicodeCollation: 'unicode'. Při porovnávání vyhodnocovat znaky s diakritickými znaménky jako nerovnocenné se znakem bez diakritického znaménka.",
+ "typescript.preferences.organizeImports.caseFirst": "Vyžaduje, aby nastavení organizeImports.unicodeCollation: 'unicode' a organizeImports.caseSensitivity` nebylo caseInsensitive. Určuje, jestli budou velká písmena řazena před malými písmeny.",
+ "typescript.preferences.organizeImports.caseFirst.default": "Výchozí pořadí je dané nastavením locale.",
+ "typescript.preferences.organizeImports.caseFirst.lower": "Malá písmena předchází velkým písmenům. Příklad: a, A, z, Z.",
+ "typescript.preferences.organizeImports.caseFirst.upper": "Velká písmena předchází malým písmenům. Příklad: A, a, B, b.",
+ "typescript.preferences.organizeImports.caseSensitivity": "Určuje způsob řazení importů s ohledem na rozlišování velkých a malých písmen. Pokud je nastaveno na hodnotu auto nebo není zadáno, zjistíme rozlišování velkých a malých písmen v jednotlivých souborech automaticky.",
+ "typescript.preferences.organizeImports.caseSensitivity.auto": "Rozlišovat malá a velká písmena pro řazení importů.",
+ "typescript.preferences.organizeImports.caseSensitivity.insensitive": "Řadit importy s rozlišováním malých a velkých písmen.",
+ "typescript.preferences.organizeImports.caseSensitivity.sensitive": "Řadit importy s rozlišováním malých a velkých písmen.",
+ "typescript.preferences.organizeImports.locale": "Vyžaduje organizeImports.unicodeCollation: 'unicode'. Přepíše národní prostředí používané pro kolaci. Pokud chcete použít národní prostředí uživatelského rozhraní, zadejte hodnotu auto.",
+ "typescript.preferences.organizeImports.numericCollation": "Vyžaduje organizeImports.unicodeCollation: 'unicode'. Seřadit číselné řetězce podle celočíselné hodnoty.",
+ "typescript.preferences.organizeImports.typeOrder": "Určete, jak se mají řadit pojmenované importy, při kterých se importují jen informace o typu.",
+ "typescript.preferences.organizeImports.typeOrder.auto": "Zjišťovat, kde by se měly řadit pojmenované importy pouze s importem informací o typu.",
+ "typescript.preferences.organizeImports.typeOrder.first": "Pojmenované importy pouze s importem informací o typu jsou řazeny na začátek seznamu importů. Příklad: import { type A, type Y, B, Z } from 'module';",
+ "typescript.preferences.organizeImports.typeOrder.inline": "Pojmenované importy se řadí pouze podle názvu. Příklad: import { type A, B, type Y, Z } from 'module';",
+ "typescript.preferences.organizeImports.typeOrder.last": "Pojmenované importy pouze s importem informací o typu jsou řazeny až na konec seznamu importů. Příklad: import { B, Z, type A, type Y } from 'module';",
+ "typescript.preferences.organizeImports.unicodeCollation": "Určuje, jestli se mají importy řadit pomocí kolace Unicode nebo Řadový.",
+ "typescript.preferences.organizeImports.unicodeCollation.ordinal": "Seřadí importy pomocí číselné hodnoty každého bodu kódu.",
+ "typescript.preferences.organizeImports.unicodeCollation.unicode": "Řadit importy pomocí kolace kódu Unicode.",
+ "typescript.preferences.preferTypeOnlyAutoImports": "Pokud je to možné, zahrnout klíčové slovo type do automatických importů Vyžaduje v pracovním prostoru použití TypeScriptu 5.3+.",
+ "typescript.preferences.quoteStyle": "Upřednostňovaný styl uvozovek, který se má použít pro rychlé opravy.",
+ "typescript.preferences.quoteStyle.auto": "Odvodit typ uvozovek z existujícího kódu",
+ "typescript.preferences.quoteStyle.double": "Vždy používat dvojité uvozovky „ \" “",
+ "typescript.preferences.quoteStyle.single": "Vždy používat dvojité uvozovky „ ' “",
+ "typescript.preferences.renameMatchingJsxTags": "Při použití značky JSX se místo přejmenování symbolu pokuste přejmenovat odpovídající značku. Vyžaduje v pracovním prostoru použití TypeScriptu 5.1+.",
+ "typescript.preferences.useAliasesForRenames": "Umožňuje povolit nebo zakázat zavádění aliasů pro sdružené vlastnosti objektů při přejmenovávání.",
+ "typescript.problemMatchers.tsc.label": "Problémy s TypeScriptem",
+ "typescript.problemMatchers.tscWatch.label": "Problémy s TypeScriptem (režim sledování)",
+ "typescript.problemMatchers.tsgo-watch.label": "Problémy s TypeScriptem (režim sledování)",
+ "typescript.referencesCodeLens.enabled": "Umožňuje povolit nebo zakázat odkazy CodeLens v souborech TypeScriptu.",
+ "typescript.referencesCodeLens.showOnAllFunctions": "Umožňuje povolit nebo zakázat odkazy CodeLens pro všechny funkce v souborech TypeScriptu.",
+ "typescript.removeUnusedImports": "Odebrat nepoužívané importy",
+ "typescript.reportStyleChecksAsWarnings": "Hlásit kontroly stylu jako upozornění",
+ "typescript.restartTsServer": "Restartovat server TS",
+ "typescript.selectTypeScriptVersion.title": "Vybrat verzi TypeScriptu...",
+ "typescript.sortImports": "Seřadit importy",
+ "typescript.suggest.enabled": "Umožňuje povolit nebo zakázat návrhy automatického dokončování.",
+ "typescript.suggestionActions.enabled": "Umožňuje povolit nebo zakázat diagnostiku návrhů pro soubory TypeScriptu v editoru.",
+ "typescript.tsc.autoDetect": "Řídí automatické zjišťování úloh tsc.",
+ "typescript.tsc.autoDetect.build": "Umožňuje vytvářet úlohy kompilace pouze pro jedno spuštění.",
+ "typescript.tsc.autoDetect.off": "Zakázat tuto funkci",
+ "typescript.tsc.autoDetect.on": "Vytvořit jak úlohy sestavení, tak úlohy sledování",
+ "typescript.tsc.autoDetect.watch": "Vytvořit pouze úlohy kompilace a sledování",
+ "typescript.tsdk.desc": "Určuje cestu ke složce pro soubory tsserver a lib*.d.ts v rámci instalace TypeScriptu, která se má používat pro technologii IntelliSense, například: ./node_modules/typescript/lib.\r\n\r\n- Pokud je zadáno jako uživatelské nastavení, verze TypeScriptu ze souboru typescript.tsdk automaticky nahradí integrovanou verzi TypeScriptu.\r\n- Pokud je zadáno jako nastavení pracovního prostoru, umožňuje vám soubor typescript.tsdk přepnout na používání verze TypeScriptu tohoto pracovního prostoru pro IntelliSense příkazem TypeScript: vybrat verzi TypeScriptu.r\r\n\r\nDalší informace o správě verzí TypeScriptu najdete v [dokumentaci k TypeScriptu](https://code.visualstudio.com/docs/typescript/typescript-compiling#_using-newer-typescript-versions).",
+ "typescript.tsserver.enableRegionDiagnostics": "Povolí diagnostiku založenou na oblasti v TypeScriptu. Vyžaduje v pracovním prostoru použití TypeScriptu 5.6+.",
+ "typescript.tsserver.enableTracing": "Umožňuje povolit sledování výkonu serveru TS do adresáře. Tyto sledovací soubory lze použít k diagnostikování problémů s výkonem serveru TS. Protokol může obsahovat cesty k souborům, zdrojový kód a další potenciálně citlivé informace z vašeho projektu.",
+ "typescript.tsserver.log": "Umožňuje povolit protokolování serveru TS do souboru. Tento protokol lze použít k diagnostikování problémů se serverem TS. Protokol může obsahovat cesty k souborům, zdrojový kód a další potenciálně citlivé informace z vašeho projektu.",
+ "typescript.tsserver.pluginPaths": "Další cesty ke zjišťování modulů plug-in služby jazyka TypeScript",
+ "typescript.tsserver.pluginPaths.item": "Buď absolutní, nebo relativní cesta. Relativní cesta bude relativní ve vztahu ke složkám pracovního prostoru.",
+ "typescript.tsserver.trace": "Umožňuje povolit trasování zpráv odesílaných na server TS. Toto trasování lze použít k diagnostikování problémů se serverem TS. Trasování může obsahovat cesty k souborům, zdrojový kód a další potenciálně citlivé informace z vašeho projektu.",
+ "typescript.updateImportsOnFileMove.enabled": "Umožňuje povolit nebo zakázat automatické aktualizace cest importu při přejmenovávání nebo přesouvání souboru ve VS Code.",
+ "typescript.updateImportsOnFileMove.enabled.always": "Vždy automaticky aktualizovat cesty",
+ "typescript.updateImportsOnFileMove.enabled.never": "Nikdy nepřejmenovávat cesty a nezobrazovat dotaz",
+ "typescript.updateImportsOnFileMove.enabled.prompt": "Dotázat se na každé přejmenování",
+ "typescript.useTsgo": "Zakáže funkce jazyka TypeScript a JavaScript, aby bylo možné používat experimentální rozšíření TypeScript Go. Vyžaduje, aby bylo nainstalováno a nakonfigurováno rozšíření TypeScript Go. Po změně tohoto nastavení je nutné znovu načíst rozšíření.",
+ "typescript.validate.enable": "Umožňuje povolit nebo zakázat ověřování TypeScriptu.",
+ "typescript.workspaceSymbols.excludeLibrarySymbols": "Ve výsledcích příkazu Přejít na symbol v pracovním prostoru vylučte symboly, které pocházejí ze souborů knihovny. Vyžaduje v pracovním prostoru použití TypeScriptu 5.3+.",
+ "typescript.workspaceSymbols.scope": "Určuje, které soubory se prohledávají pomocí funkce [přejít na symbol v pracovním prostoru](https://code.visualstudio.com/docs/editor/editingevolved#_open-symbol-by-name).",
+ "typescript.workspaceSymbols.scope.allOpenProjects": "Vyhledejte symboly ve všech otevřených projektech JavaScriptu nebo TypeScriptu.",
+ "typescript.workspaceSymbols.scope.currentProject": "Hledat symboly pouze v aktuálním projektu JavaScriptu nebo TypeScriptu",
+ "virtualWorkspaces": "Ve virtuálních pracovních prostorech se nepodporuje řešení a vyhledávání odkazů v souborech.",
+ "walkthroughs.nodejsWelcome.debugJsFile.altText": "Pomocí Visual Studio Code můžete ladit a spouštět kód JavaScriptu v Node.js.",
+ "walkthroughs.nodejsWelcome.debugJsFile.description": "Po instalaci Node.js můžete v terminálu spouštět javascriptové programy tak, že zadáte node your-file-name.js\r\nDalším snadným způsobem, jak spouštět programy Node.js, je použití ladicího programu VS Code, který umožňuje spouštět kód, pozastavit se v různých bodech a pomoct vám pochopit, co se děje krok za krokem.\r\n[Spustit ladění](command:javascript-walkthrough.commands.debugJsFile)",
+ "walkthroughs.nodejsWelcome.debugJsFile.title": "Spuštění a ladění JavaScriptu",
+ "walkthroughs.nodejsWelcome.description": "Využijte Visual Studio Code prvotřídního javascriptového prostředí na maximum.",
+ "walkthroughs.nodejsWelcome.downloadNode.forLinux.description": "Node.js je snadný způsob, jak spouštět javascriptový kód. Můžete ho použít k rychlému vytváření aplikací a serverů příkazového řádku. Součástí je také npm, správce balíčků, který usnadňuje opakované použití a sdílení javascriptového kódu.\r\n[Instalace Node.js](https://nodejs.org/en/download/package-manager/)",
+ "walkthroughs.nodejsWelcome.downloadNode.forLinux.title": "Nainstalovat Node.js",
+ "walkthroughs.nodejsWelcome.downloadNode.forMacOrWindows.description": "Node.js je snadný způsob, jak spouštět javascriptový kód. Můžete ho použít k rychlému vytváření aplikací a serverů příkazového řádku. Součástí je také npm, správce balíčků, který usnadňuje opakované použití a sdílení javascriptového kódu.\r\n[Nainstalovat Node.js](https://nodejs.org/en/download/)",
+ "walkthroughs.nodejsWelcome.downloadNode.forMacOrWindows.title": "Nainstalovat Node.js",
+ "walkthroughs.nodejsWelcome.learnMoreAboutJs.altText": "Další informace o JavaScriptu a Node.js najdete v Visual Studio Code.",
+ "walkthroughs.nodejsWelcome.learnMoreAboutJs.description": "Chcete se blíže seznámit s JavaScriptem, Node.js a VS Code? Určitě se podívejte na naše dokumenty!\r\nMáme spoustu prostředků pro učení [JavaScript](https://code.visualstudio.com/docs/nodejs/working-with-javascript) a [Node.js](https://code.visualstudio.com/docs/nodejs/nodejs-tutorial).\r\n\r\n[Další informace](https://code.visualstudio.com/docs/nodejs/nodejs-tutorial)",
+ "walkthroughs.nodejsWelcome.learnMoreAboutJs.title": "Prozkoumat více",
+ "walkthroughs.nodejsWelcome.makeJsFile.description": "Pojďme napsat náš první javascriptový soubor. Budeme muset vytvořit nový soubor a uložit ho s příponou „.js“ na konci názvu souboru.\r\n[Vytvoření javascriptového souboru](command:javascript-walkthrough.commands.createJsFile)",
+ "walkthroughs.nodejsWelcome.makeJsFile.title": "Vytvoření javascriptového souboru",
+ "walkthroughs.nodejsWelcome.title": "Začínáme s JavaScriptem a Node.js",
+ "workspaceTrust": "Pokud se používá verze pracovního prostoru, rozšíření vyžaduje vztah důvěryhodnosti pracovního prostoru, protože spouští kód určený pracovním prostorem."
+ }
+ }
+}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-cs/translations/extensions/vscode.typescript.i18n.json b/i18n/vscode-language-pack-cs/translations/extensions/vscode.typescript.i18n.json
index a9225ad61a..73f932d7c7 100644
--- a/i18n/vscode-language-pack-cs/translations/extensions/vscode.typescript.i18n.json
+++ b/i18n/vscode-language-pack-cs/translations/extensions/vscode.typescript.i18n.json
@@ -9,8 +9,8 @@
"version": "1.0.0",
"contents": {
"package": {
- "displayName": "Základy jazyka TypeScript",
- "description": "Poskytuje fragmenty kódu, zvýrazňování syntaxe, párování závorek a sbalování kódu v souborech jazyka TypeScript."
+ "description": "Poskytuje fragmenty kódu, zvýrazňování syntaxe, párování závorek a sbalování kódu v souborech jazyka TypeScript.",
+ "displayName": "Základy jazyka TypeScript"
}
}
}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-cs/translations/extensions/vscode.vb.i18n.json b/i18n/vscode-language-pack-cs/translations/extensions/vscode.vb.i18n.json
index 7ee2db9746..52345642ca 100644
--- a/i18n/vscode-language-pack-cs/translations/extensions/vscode.vb.i18n.json
+++ b/i18n/vscode-language-pack-cs/translations/extensions/vscode.vb.i18n.json
@@ -9,8 +9,8 @@
"version": "1.0.0",
"contents": {
"package": {
- "displayName": "Základy jazyka Visual Basic",
- "description": "Poskytuje fragmenty kódu, zvýrazňování syntaxe, párování závorek a sbalování kódu v souborech jazyka Visual Basic."
+ "description": "Poskytuje fragmenty kódu, zvýrazňování syntaxe, párování závorek a sbalování kódu v souborech jazyka Visual Basic.",
+ "displayName": "Základy jazyka Visual Basic"
}
}
}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-cs/translations/extensions/vscode.vscode-theme-seti.i18n.json b/i18n/vscode-language-pack-cs/translations/extensions/vscode.vscode-theme-seti.i18n.json
index 65edfbdbef..ee4f7e4c88 100644
--- a/i18n/vscode-language-pack-cs/translations/extensions/vscode.vscode-theme-seti.i18n.json
+++ b/i18n/vscode-language-pack-cs/translations/extensions/vscode.vscode-theme-seti.i18n.json
@@ -9,8 +9,8 @@
"version": "1.0.0",
"contents": {
"package": {
- "displayName": "Motiv ikon souboru Seti",
"description": "Motiv ikon souboru tvořený ikonami souboru uživatelského rozhraní Seti",
+ "displayName": "Motiv ikon souboru Seti",
"themeLabel": "Seti (Visual Studio Code)"
}
}
diff --git a/i18n/vscode-language-pack-cs/translations/extensions/vscode.xml.i18n.json b/i18n/vscode-language-pack-cs/translations/extensions/vscode.xml.i18n.json
index e3212a6291..752c5c53ca 100644
--- a/i18n/vscode-language-pack-cs/translations/extensions/vscode.xml.i18n.json
+++ b/i18n/vscode-language-pack-cs/translations/extensions/vscode.xml.i18n.json
@@ -9,8 +9,8 @@
"version": "1.0.0",
"contents": {
"package": {
- "displayName": "Základy jazyka XML",
- "description": "Poskytuje zvýrazňování syntaxe a párování závorek v souborech XML."
+ "description": "Poskytuje zvýrazňování syntaxe a párování závorek v souborech XML.",
+ "displayName": "Základy jazyka XML"
}
}
}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-cs/translations/extensions/vscode.yaml.i18n.json b/i18n/vscode-language-pack-cs/translations/extensions/vscode.yaml.i18n.json
index 2650851b7d..ba5bfd3f2e 100644
--- a/i18n/vscode-language-pack-cs/translations/extensions/vscode.yaml.i18n.json
+++ b/i18n/vscode-language-pack-cs/translations/extensions/vscode.yaml.i18n.json
@@ -9,8 +9,8 @@
"version": "1.0.0",
"contents": {
"package": {
- "displayName": "Základy jazyka YAML",
- "description": "Poskytuje zvýrazňování syntaxe a párování závorek v souborech YAML."
+ "description": "Poskytuje zvýrazňování syntaxe a párování závorek v souborech YAML.",
+ "displayName": "Základy jazyka YAML"
}
}
}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-cs/translations/extensions/xml.i18n.json b/i18n/vscode-language-pack-cs/translations/extensions/xml.i18n.json
deleted file mode 100644
index 752c5c53ca..0000000000
--- a/i18n/vscode-language-pack-cs/translations/extensions/xml.i18n.json
+++ /dev/null
@@ -1,16 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "package": {
- "description": "Poskytuje zvýrazňování syntaxe a párování závorek v souborech XML.",
- "displayName": "Základy jazyka XML"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-cs/translations/extensions/yaml.i18n.json b/i18n/vscode-language-pack-cs/translations/extensions/yaml.i18n.json
deleted file mode 100644
index ba5bfd3f2e..0000000000
--- a/i18n/vscode-language-pack-cs/translations/extensions/yaml.i18n.json
+++ /dev/null
@@ -1,16 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "package": {
- "description": "Poskytuje zvýrazňování syntaxe a párování závorek v souborech YAML.",
- "displayName": "Základy jazyka YAML"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-cs/translations/main.i18n.json b/i18n/vscode-language-pack-cs/translations/main.i18n.json
index 345d3550fc..efb4ad3e78 100644
--- a/i18n/vscode-language-pack-cs/translations/main.i18n.json
+++ b/i18n/vscode-language-pack-cs/translations/main.i18n.json
@@ -22,6 +22,9 @@
"dialogWarningMessage": "Upozornění",
"ok": "OK"
},
+ "vs/base/browser/ui/dropdown/dropdownActionViewItem": {
+ "moreActions": "Další akce..."
+ },
"vs/base/browser/ui/findinput/findInput": {
"defaultLabel": "vstup"
},
@@ -34,14 +37,21 @@
"defaultLabel": "vstup",
"label.preserveCaseToggle": "Zachovávat velikost písmen"
},
- "vs/base/browser/ui/iconLabel/iconLabelHover": {
- "iconLabel.loading": "Probíhá načítání..."
+ "vs/base/browser/ui/hover/hoverWidget": {
+ "acessibleViewHint": "Zkontrolujte to v přístupném zobrazení pomocí {0}.",
+ "acessibleViewHintNoKbOpen": "Zkontrolujte to v přístupném zobrazení pomocí příkazu Otevřít přístupné zobrazení, které se v tuto chvíli nedá aktivovat klávesovou zkratkou."
+ },
+ "vs/base/browser/ui/icons/iconSelectBox": {
+ "iconSelect.noResults": "Žádné výsledky",
+ "iconSelect.placeholder": "Hledat ikony"
},
"vs/base/browser/ui/inputbox/inputBox": {
"alertErrorMessage": "Chyba: {0}",
"alertInfoMessage": "Informace: {0}",
"alertWarningMessage": "Upozornění: {0}",
- "history.inputbox.hint": "pro historii"
+ "clearedInput": "Zadání se vymazalo",
+ "history.inputbox.hint.suffix.inparens": " ({0} pro historii)",
+ "history.inputbox.hint.suffix.noparens": " nebo {0} pro historii"
},
"vs/base/browser/ui/keybindingLabel/keybindingLabel": {
"unbound": "Nesvázáno s klávesovou zkratkou"
@@ -62,10 +72,17 @@
"vs/base/browser/ui/tree/abstractTree": {
"close": "Zavřít",
"filter": "Filtrovat",
- "not found": "Nenašly se žádné prvky.",
+ "foundResults": "Počet výsledků: {0}",
+ "fuzzySearch": "Přibližná shoda",
+ "not found": "Nenašly se žádné výsledky.",
+ "replFindNoResults": "Žádné výsledky",
"type to filter": "Pro filtrování zadejte text.",
"type to search": "Zadejte hledaný text"
},
+ "vs/base/browser/ui/tree/asyncDataTree": {
+ "type to filter": "Zadejte text, který chcete vyfiltrovat",
+ "type to search": "Zadejte hledaný text"
+ },
"vs/base/browser/ui/tree/treeDefaults": {
"collapse all": "Sbalit vše"
},
@@ -126,7 +143,18 @@
"date.fromNow.years.singular": "{0} rok",
"date.fromNow.years.singular.ago": "Před {0} rokem",
"date.fromNow.years.singular.ago.fullWord": "před {0} rokem",
- "date.fromNow.years.singular.fullWord": "{0} rok"
+ "date.fromNow.years.singular.fullWord": "{0} rok",
+ "duration.d": "{0} d.",
+ "duration.h": "{0} h",
+ "duration.h.full": "{0} hod.",
+ "duration.m": "{0} min",
+ "duration.m.full": "{0} min",
+ "duration.ms": "{0} ms",
+ "duration.ms.full": "{0} ms",
+ "duration.s": "{0} s",
+ "duration.s.full": "{0} s",
+ "today": "Dnes",
+ "yesterday": "Včera"
},
"vs/base/common/errorMessage": {
"error.defaultMessage": "Došlo k neznámé chybě. Další podrobnosti naleznete v protokolu.",
@@ -159,35 +187,28 @@
"windowsKey": "Windows",
"windowsKey.long": "Windows"
},
- "vs/base/common/platform": {
- "ensureLoaderPluginIsLoaded": "_"
- },
- "vs/base/node/processes": {
- "TaskRunner.UNC": "Nelze provést příkaz shellu na jednotce UNC."
+ "vs/base/common/policy": {
+ "extensionsConfigurationTitle": "Rozšíření",
+ "interactiveSessionConfigurationTitle": "Chat",
+ "telemetryConfigurationTitle": "Telemetrie",
+ "terminalIntegratedConfigurationTitle": "Integrovaný terminál",
+ "updateConfigurationTitle": "Aktualizovat"
},
"vs/base/node/zip": {
"incompleteExtract": "Neúplné. Nalezené položky: {0} z {1}",
"invalid file": "Při extrahování souboru {0} došlo k chybě. Soubor je neplatný.",
"notFound": "{0} se v souboru zip nepovedlo najít."
},
- "vs/base/parts/quickinput/browser/quickInput": {
- "custom": "Vlastní",
- "inputModeEntry": "Stisknutím klávesy Enter potvrdíte vstup. Klávesou Esc akci zrušíte.",
- "inputModeEntryDescription": "{0} (Potvrdíte stisknutím klávesy Enter. Zrušíte klávesou Esc.)",
- "ok": "OK",
- "quickInput.back": "Zpět",
- "quickInput.backWithKeybinding": "Zpět ({0})",
- "quickInput.checkAll": "Přepnout všechna zaškrtávací políčka",
- "quickInput.countSelected": "Vybrané: {0}",
- "quickInput.steps": "{0}/{1}",
- "quickInput.visibleCount": "Počet výsledků: {0}",
- "quickInputBox.ariaLabel": "Pokud chcete zúžit počet výsledků, začněte psát."
+ "vs/editor/browser/controller/editContext/native/screenReaderSupport": {
+ "editor": "editor"
},
- "vs/base/parts/quickinput/browser/quickInputList": {
- "quickInput": "Rychlý vstup"
+ "vs/editor/browser/controller/editContext/screenReaderUtils": {
+ "accessibilityModeOff": "Editor není v tuto chvíli přístupný.",
+ "accessibilityOffAriaLabel": "{0} Pokud chcete povolit režim optimalizovaný pro čtečku obrazovky, použijte {1}",
+ "accessibilityOffAriaLabelNoKb": "{0} Pokud chcete povolit režim optimalizovaný pro čtečku obrazovky, otevřete rychlý výběr pomocí {1} a spusťte příkaz Přepnout režim přístupnosti čtečky obrazovky, který se momentálně nedá aktivovat pomocí klávesnice.",
+ "accessibilityOffAriaLabelNoKbs": "{0} Přiřaďte klávesovou zkratku k příkazu Přepnout režim přístupnosti čtečky obrazovky tak, že pomocí {1} otevřete editor klávesových zkratek a spustíte ji."
},
- "vs/editor/browser/controller/textAreaHandler": {
- "accessibilityOffAriaLabel": "Editor není v tuto chvíli dostupný. Možnosti zobrazíte stisknutím klávesy {0}.",
+ "vs/editor/browser/controller/editContext/textArea/textAreaEditContext": {
"editor": "editor"
},
"vs/editor/browser/coreCommands": {
@@ -202,22 +223,40 @@
"selectAll": "Vybrat vše",
"undo": "Zpět"
},
- "vs/editor/browser/widget/codeEditorWidget": {
- "cursors.maximum": "Počet kurzorů je omezen na {0}."
- },
- "vs/editor/browser/widget/diffEditorWidget": {
- "diff.tooLarge": "Nelze porovnat soubory, protože jeden soubor je příliš velký.",
- "diffInsertIcon": "Dekorace řádku pro operace vložení do editoru rozdílů",
- "diffRemoveIcon": "Dekorace řádku pro operace odebrání do editoru rozdílů"
- },
- "vs/editor/browser/widget/diffReview": {
+ "vs/editor/browser/gpu/viewGpuContext": {
+ "editor.dom.render": "Použití vykreslování založeného na modelu DOM"
+ },
+ "vs/editor/browser/services/inlineCompletionsService": {
+ "action.inlineSuggest.cancelSnooze": "Zrušit odložení vložených návrhů",
+ "action.inlineSuggest.snooze": "Odložit vložené návrhy",
+ "inlineCompletions.snoozed": "Určuje, jestli jsou vložená dokončování v tuto chvíli odložená",
+ "snooze.placeholder": "Vyberte dobu odložení pro návrhy v řádku"
+ },
+ "vs/editor/browser/widget/codeEditor/codeEditorWidget": {
+ "cursors.maximum": "Počet kurzorů byl omezen na {0}. Zvažte použití funkce [find and replace](https://code.visualstudio.com/docs/editor/codebasics#_find-and-replace) pro větší změny nebo zvýšení nastavení limitu více kurzorů editoru.",
+ "goToSetting": "Zvýšit limit více kurzorů"
+ },
+ "vs/editor/browser/widget/diffEditor/commands": {
+ "accessibleDiffViewer": "Prohlížeč rozdílů s podporou přístupnosti",
+ "collapseAllUnchangedRegions": "Sbalit všechny nezměněné oblasti",
+ "diffEditor": "Diff Editor",
+ "editor.action.accessibleDiffViewer.next": "Přejít na další rozdíl",
+ "editor.action.accessibleDiffViewer.prev": "Přejít na předchozí rozdíl",
+ "exitCompareMove": "Ukončit porovnání přesunutí",
+ "revert": "Obnovit",
+ "showAllUnchangedRegions": "Zobrazit všechny nezměněné oblasti",
+ "switchSide": "Přepnout stranu",
+ "toggleCollapseUnchangedRegions": "Přepnout sbalení nezměněných oblastí",
+ "toggleShowMovedCodeBlocks": "Přepnout zobrazení přesunutých bloků kódu",
+ "toggleUseInlineViewWhenSpaceIsLimited": "Přepnout použití vloženého zobrazení, když je omezené místo"
+ },
+ "vs/editor/browser/widget/diffEditor/components/accessibleDiffViewer": {
+ "accessibleDiffViewerCloseIcon": "Ikona Zavřít v prohlížeči rozdílů s podporou přístupnosti.",
+ "accessibleDiffViewerInsertIcon": "Ikona Vložit v prohlížeči rozdílů s podporou přístupnosti.",
+ "accessibleDiffViewerRemoveIcon": "Ikona Odebrat v prohlížeči rozdílů s podporou přístupnosti.",
+ "ariaLabel": "Přístupný prohlížeč rozdílů. K navigaci použijte šipku nahoru a dolů.",
"blankLine": "prázdné",
"deleteLine": "- {0} původní řádek {1}",
- "diffReviewCloseIcon": "Ikona pro operaci Zavřít v kontrole rozdílů",
- "diffReviewInsertIcon": "Ikona pro operaci Vložit v kontrole rozdílů",
- "diffReviewRemoveIcon": "Ikona pro operaci Odebrat v kontrole rozdílů",
- "editor.action.diffReview.next": "Přejít na další rozdíl",
- "editor.action.diffReview.prev": "Přejít na předchozí rozdíl",
"equalLine": "{0} původní řádek {1} změněný řádek {2}",
"header": "Rozdíl {0} z {1}: původní řádek {2}, {3}, změněný řádek {4}, {5}",
"insertLine": "+ {0} změněný řádek {1}",
@@ -227,7 +266,10 @@
"one_line_changed": "Počet změněných řádků: 1",
"unchangedLine": "{0} nezměněný řádek {1}"
},
- "vs/editor/browser/widget/inlineDiffMargin": {
+ "vs/editor/browser/widget/diffEditor/components/diffEditorEditors": {
+ "diff-aria-navigation-tip": " pomocí {0} otevřete nápovědu k přístupnosti."
+ },
+ "vs/editor/browser/widget/diffEditor/components/diffEditorViewZones/inlineDiffDeletedCodeMargin": {
"diff.clipboard.copyChangedLineContent.label": "Kopírovat změněný řádek ({0})",
"diff.clipboard.copyChangedLinesContent.label": "Kopírovat změněné řádky",
"diff.clipboard.copyChangedLinesContent.single.label": "Kopírovat změněný řádek",
@@ -236,18 +278,76 @@
"diff.clipboard.copyDeletedLinesContent.single.label": "Kopírovat odstraněný řádek",
"diff.inline.revertChange.label": "Obnovit tuto změnu"
},
+ "vs/editor/browser/widget/diffEditor/diffEditor.contribution": {
+ "Open Accessible Diff Viewer": "Otevřít prohlížeč rozdílů s podporou přístupnosti",
+ "revertHunk": "Obnovit blok",
+ "revertSelection": "Obnovit výběr",
+ "showMoves": "Zobrazit přesunuté bloky kódu",
+ "useInlineViewWhenSpaceIsLimited": "Použít vložené zobrazení, když je omezené místo"
+ },
+ "vs/editor/browser/widget/diffEditor/features/hideUnchangedRegionsFeature": {
+ "diff.bottom": "Kliknutím nebo přetažením zobrazíte další položky níže",
+ "diff.hiddenLines.expandAll": "Poklikáním rozbalíte",
+ "diff.hiddenLines.top": "Kliknutím nebo přetažením zobrazíte více nahoře.",
+ "foldUnchanged": "Sbalit nezměněnou oblast",
+ "hiddenLines": "{0} skryté čáry",
+ "showUnchangedRegion": "Zobrazit nezměněnou oblast"
+ },
+ "vs/editor/browser/widget/diffEditor/features/movedBlocksLinesFeature": {
+ "codeMovedFrom": "Kód se přesunul z řádku {0}–{1}",
+ "codeMovedFromWithChanges": "Kód se přesunul se změnami z řádku {0}–{1}",
+ "codeMovedTo": "Kód se přesunul na řádek {0}–{1}",
+ "codeMovedToWithChanges": "Kód se přesunul se změnami na řádek {0}–{1}"
+ },
+ "vs/editor/browser/widget/diffEditor/features/revertButtonsFeature": {
+ "revertChange": "Vrátit změnu",
+ "revertSelectedChanges": "Vrátit vybrané změny"
+ },
+ "vs/editor/browser/widget/diffEditor/registrations.contribution": {
+ "diffEditor.move.border": "Barva ohraničení textu přesunutého v editoru rozdílů.",
+ "diffEditor.moveActive.border": "Barva aktivního ohraničení textu přesunutého v diff editoru.",
+ "diffEditor.unchangedRegionShadow": "Barva stínu kolem widgetů nezměněných oblastí",
+ "diffInsertIcon": "Dekorace řádku pro operace vložení do editoru rozdílů",
+ "diffRemoveIcon": "Dekorace řádku pro operace odebrání do editoru rozdílů"
+ },
+ "vs/editor/browser/widget/multiDiffEditor/colors": {
+ "multiDiffEditor.background": "Barva pozadí editoru rozdílů ve více souborech",
+ "multiDiffEditor.border": "Barva ohraničení editoru rozdílů ve více souborech",
+ "multiDiffEditor.headerBackground": "Barva pozadí záhlaví editoru rozdílů"
+ },
+ "vs/editor/browser/widget/multiDiffEditor/multiDiffEditorWidgetImpl": {
+ "loading": "Načítání…",
+ "noChangedFiles": "Žádné změněné soubory"
+ },
"vs/editor/common/config/editorConfigurationSchema": {
"codeLens": "Určuje, jestli editor zobrazí CodeLens.",
- "detectIndentation": "Určuje, jestli se má při otevření souboru na základě obsahu souboru automaticky detekovat nastavení #editor.tabSize# a #editor.insertSpaces#.",
+ "detectIndentation": "Určuje, jestli se {0} a {1} automaticky zjistí při otevření souboru na základě obsahu souboru.",
+ "diffAlgorithm.advanced": "Používá pokročilý rozdílový algoritmus.",
+ "diffAlgorithm.legacy": "Používá starší rozdílový algoritmus.",
+ "editor.experimental.asyncTokenization": "Určuje, jestli se má tokenizace provádět asynchronně ve webovém pracovním procesu.",
+ "editor.experimental.asyncTokenizationLogging": "Určuje, jestli se má protokolovat asynchronní tokenizace. Pouze pro ladění.",
+ "editor.experimental.asyncTokenizationVerification": "Určuje, zda se má asynchronní tokenizace ověřit pomocí tokenizace starší verze pozadí. Může zpomalit tokenizaci. Pouze pro ladění.",
+ "editor.experimental.preferTreeSitter.css": "Určuje, jestli se má zapnout parsování sitteru stromu pro css. Pro css bude mít přednost před nastavením #editor.experimental.treeSitterTelemetry#.",
+ "editor.experimental.preferTreeSitter.ini": "Určuje, jestli se má zapnout parsování sitteru stromu pro ini. Pro ini bude mít přednost před nastavením #editor.experimental.treeSitterTelemetry#.",
+ "editor.experimental.preferTreeSitter.regex": "Určuje, jestli se má zapnout parsování sitteru stromu pro regex. Pro regex bude mít přednost před nastavením #editor.experimental.treeSitterTelemetry#.",
+ "editor.experimental.preferTreeSitter.typescript": "Určuje, jestli se má zapnout parsování sitteru stromu pro typescript. Pro typescript bude mít přednost před nastavením #editor.experimental.treeSitterTelemetry#.",
+ "editor.experimental.treeSitterTelemetry": "Určuje, jestli se má zapnout parsování sitteru stromu a shromažďovat telemetrie. Nastavení #editor.experimental.preferTreeSitter# pro konkrétní jazyky bude mít přednost.",
"editorConfigurationTitle": "Editor",
+ "hideUnchangedRegions.contextLineCount": "Určuje, kolik řádků se použije jako kontext při porovnávání nezměněných oblastí.",
+ "hideUnchangedRegions.enabled": "Určuje, jestli editor rozdílů zobrazuje nezměněné oblasti.",
+ "hideUnchangedRegions.minimumLineCount": "Určuje, kolik řádků se použije jako minimum pro nezměněné oblasti.",
+ "hideUnchangedRegions.revealLineCount": "Určuje, kolik řádků se použije pro nezměněné oblasti.",
"ignoreTrimWhitespace": "Když je povoleno, editor rozdílů ignoruje změny v počátečních nebo koncových prázdných znacích.",
- "insertSpaces": "Umožňuje vkládat mezery při stisknutí klávesy Tab. Toto nastavení je přepsáno na základě obsahu souboru, pokud je zapnuto nastavení #editor.detectIndentation#.",
+ "indentSize": "Počet mezer použitých pro odsazení nebo „tabSize“ pro použití hodnoty z #editor.tabSize#. Toto nastavení se přepíše na základě obsahu souboru, když je zapnutá možnost #editor.detectIndentation#.",
+ "insertSpaces": "Umožňuje vkládat mezery při stisknutí klávesy Tab. Toto nastavení je přepsáno na základě obsahu souboru, pokud je zapnuto {0}.",
"largeFileOptimizations": "Speciální zpracování velkých souborů za účelem zakázání určitých funkcí náročných na paměť",
"maxComputationTime": "Časový limit v milisekundách, po kterém je zrušen výpočet rozdílů. Pokud nechcete nastavit žádný časový limit, zadejte hodnotu 0.",
"maxFileSize": "Maximální velikost souboru v MB, pro který se mají vypočítat rozdíly. Pro zrušení omezení použijte 0.",
"maxTokenizationLineLength": "Řádky s větší délkou se nebudou z důvodu výkonu tokenizovat.",
+ "renderGutterMenu": "Pokud je povolena tato možnost, editor rozdílů zobrazí speciální mezeru u okraje pro akce vrácení zpět a fáze.",
"renderIndicators": "Určuje, jestli má editor rozdílů zobrazovat indikátory +/- pro přidané/odebrané změny.",
"renderMarginRevertIcon": "Pokud je tato možnost povolená, zobrazuje editor rozdílů na okraji piktogramu šipky pro vrácení změn.",
+ "renderSideBySideInlineBreakpoint": "Pokud je šířka editoru rozdílů menší než tato hodnota, použije se vložené zobrazení.",
"schema.brackets": "Definuje symboly hranatých závorek, které zvyšují nebo snižují úroveň odsazení.",
"schema.closeBracket": "Znak pravé hranaté závorky nebo řetězcová sekvence",
"schema.colorizedBracketPairs": "Definuje dvojice závorek, které jsou zabarvené podle jejich úrovně vnoření, pokud je zabarvení dvojice závorek povoleno.",
@@ -256,16 +356,20 @@
"semanticHighlighting.enabled": "Určuje, jestli se bude zobrazovat nastavení semanticHighlighting pro jazyky, které ho podporují.",
"semanticHighlighting.false": "Sémantické zvýrazňování je u všech barevných motivů zakázané.",
"semanticHighlighting.true": "Sémantické zvýrazňování je u všech barevných motivů povolené.",
+ "showEmptyDecorations": "Určuje, jestli editor rozdílů zobrazuje prázdné dekorace, aby se zobrazilo, kam se znaky vložily nebo odstranily.",
+ "showMoves": "Určuje, jestli má editor rozdílů zobrazovat zjištěné přesuny kódu.",
"sideBySide": "Určuje, jestli má editor rozdílů zobrazovat rozdíly vedle sebe nebo vloženě (inline).",
"stablePeek": "Udržuje editory náhledu otevřené i po poklikání na jejich obsah nebo stisknutí klávesy Esc.",
- "tabSize": "Počet mezer, které odpovídají tabulátoru. Pokud je zapnuto nastavení #editor.detectIndentation#, je toto nastavení přepsáno na základě obsahu souboru.",
+ "tabSize": "Počet mezer, které odpovídají tabulátoru. Toto nastavení se přepíše na základě obsahu souboru, když je zapnuto {0}.",
"trimAutoWhitespace": "Odebrat automaticky vložené koncové prázdné znaky",
- "wordBasedSuggestions": "Určuje, jestli se dokončení mají počítat na základě slov v dokumentu.",
- "wordBasedSuggestionsMode": "Určuje, ze kterých dokumentů se počítá doplňování na základě slov.",
- "wordBasedSuggestionsMode.allDocuments": "Navrhovaná slova ze všech otevřených dokumentů",
- "wordBasedSuggestionsMode.currentDocument": "Navrhovat jen slova z aktivního dokumentu",
- "wordBasedSuggestionsMode.matchingDocuments": "Navrhovat slova ze všech otevřených dokumentů stejného jazyka",
- "wordWrap.inherit": "Řádky se zalomí podle nastavení #editor.wordWrap#.",
+ "useInlineViewWhenSpaceIsLimited": "Pokud je povoleno a šířka editoru je příliš malá, použije se vložené zobrazení.",
+ "useTrueInlineView": "Pokud je tato možnost povolena a editor používá vložené zobrazení, změny slov se vykreslují vloženě (inline).",
+ "wordBasedSuggestions": "Určuje, jestli se mají dokončování vypočítávat na základě slov v dokumentu a ze kterých dokumentů se mají vypočítávat.",
+ "wordBasedSuggestions.allDocuments": "Navrhovaná slova ze všech otevřených dokumentů",
+ "wordBasedSuggestions.currentDocument": "Navrhovat jen slova z aktivního dokumentu",
+ "wordBasedSuggestions.matchingDocuments": "Navrhovat slova ze všech otevřených dokumentů stejného jazyka",
+ "wordBasedSuggestions.off": "Umožňuje vypnout návrhy založené na slovech.",
+ "wordWrap.inherit": "Řádky se zalomí podle nastavení {0}.",
"wordWrap.off": "Řádky se nebudou nikdy zalamovat.",
"wordWrap.on": "Řádky se budou zalamovat podle šířky viewportu (zobrazení)."
},
@@ -274,46 +378,64 @@
"acceptSuggestionOnEnter": "Určuje, jestli se mají návrhy přijímat po stisknutí klávesy Enter (navíc ke klávese Tab). Pomáhá vyhnout se nejednoznačnosti mezi vkládáním nových řádků nebo přijímáním návrhů.",
"acceptSuggestionOnEnterSmart": "Přijmout návrh pomocí klávesy Enter, pouze pokud jde o návrh změny v textu",
"accessibilityPageSize": "Určuje počet řádků v editoru, které může čtečka obrazovky přečíst najednou. Když rozpoznáme čtečku obrazovky, automaticky nastavíme výchozí hodnotu na 500. Upozornění: Hodnoty větší než výchozí hodnota mají vliv na výkon.",
- "accessibilitySupport": "Určuje, jestli by měl editor běžet v režimu optimalizovaném pro čtečky obrazovky. Při zapnutí této možnosti se zakáže zalamování řádků.",
- "accessibilitySupport.auto": "Editor bude pomocí rozhraní API platformy zjišťovat, jestli je připojená čtečka obrazovky.",
- "accessibilitySupport.off": "Editor nebude nikdy optimalizován pro použití se čtečkou obrazovky.",
- "accessibilitySupport.on": "Editor bude trvale optimalizován pro použití se čtečkou obrazovky. Zakáže se zalamování řádků.",
+ "accessibilitySupport": "Určuje, jestli se má uživatelské rozhraní spouštět v režimu, ve kterém je optimalizované pro čtečky obrazovky.",
+ "accessibilitySupport.auto": "Pomocí rozhraní API platformy můžete zjistit, jestli je připojená čtečka obrazovky.",
+ "accessibilitySupport.off": "Předpokládejte, že čtečka obrazovky není připojená.",
+ "accessibilitySupport.on": "Optimalizace pro použití se čtečkou obrazovky",
+ "allowVariableFonts": "Určuje, jestli se má povolit používání proměnných písem v editoru.",
+ "allowVariableFontsInAccessibilityMode": "Určuje, jestli se má povolit používání proměnných písem v editoru v režimu přístupnosti.",
+ "allowVariableLineHeights": "Určuje, jestli se má povolit použití proměnlivé výšky řádků v editoru.",
"alternativeDeclarationCommand": "ID alternativního příkazu, který je prováděn, když výsledkem příkazu Přejít na deklaraci je aktuální umístění",
"alternativeDefinitionCommand": "ID alternativního příkazu, který je prováděn, když výsledkem příkazu Přejít k definici je aktuální umístění",
"alternativeImplementationCommand": "ID alternativního příkazu, který je prováděn, když výsledkem příkazu Přejít na implementaci je aktuální umístění",
"alternativeReferenceCommand": "ID alternativního příkazu, který je prováděn, když výsledkem příkazu Přejít na odkaz je aktuální umístění",
"alternativeTypeDefinitionCommand": "ID alternativního příkazu, který je prováděn, když výsledkem příkazu Přejít k definici typu je aktuální umístění",
"autoClosingBrackets": "Určuje, jestli by měl editor k levým hranatým závorkám automaticky doplňovat pravé hranaté závorky, když uživatel přidá levou hranatou závorku.",
+ "autoClosingComments": "Určuje, jestli má editor automaticky zavírat komentáře poté, co uživatel přidá úvodní komentář.",
"autoClosingDelete": "Určuje, jestli má editor při odstraňování odebrat sousední koncové uvozovky nebo pravé hranaté závorky.",
"autoClosingOvertype": "Určuje, jestli by měl editor přepisovat pravé uvozovky nebo pravé hranaté závorky.",
"autoClosingQuotes": "Určuje, jestli by měl editor k levým uvozovkám automaticky doplňovat pravé uvozovky, když uživatel přidá levé uvozovky.",
"autoIndent": "Určuje, jestli by měl editor automaticky upravovat odsazení, když uživatel píše, vkládá, přesouvá nebo odsazuje řádky.",
+ "autoIndentOnPaste": "Určuje, jestli má editor automaticky odsadit vložený obsah.",
+ "autoIndentOnPasteWithinString": "Určuje, jestli má editor automaticky odsadit vložený obsah při vložení do řetězce. To se projeví, když má autoIndentOnPaste hodnotu true.",
"autoSurround": "Určuje, jestli má editor automaticky ohraničit výběry při psaní uvozovek nebo závorek.",
"bracketPairColorization.enabled": "Určuje, jestli je povolené zabarvení dvojice závorek, nebo ne. Pokud chcete přepsat barvy zvýraznění závorek, použijte {0}.",
"bracketPairColorization.independentColorPoolPerBracketType": "Určuje, jestli má každý typ hranaté závorky svůj vlastní nezávislý fond barev.",
- "codeActions": "Povolí v editoru ikonu žárovky s nabídkou akcí kódu.",
"codeLens": "Určuje, jestli editor zobrazí CodeLens.",
"codeLensFontFamily": "Určuje rodinu písem pro CodeLens.",
"codeLensFontSize": "Určuje velikost písma v pixelech pro CodeLens. Při nastavení na hodnotu 0 se použije 90 % hodnoty #editor.fontSize#.",
+ "colorDecoratorActivatedOn": "Určuje, za jakých podmínek se má zobrazit ovládací prvek pro výběr barvy z dekorátoru barev.",
"colorDecorators": "Určuje, jestli se mají v editoru vykreslovat vložené (inline) dekoratéry barev a ovládací prvky pro výběr barev.",
+ "colorDecoratorsLimit": "Určuje maximální počet barevných dekorátorů, které lze vykreslit v editoru najednou.",
"columnSelection": "Povolit výběr sloupce pomocí myši a klávesnice",
"comments.ignoreEmptyLines": "Určuje, jestli mají být ignorovány prázdné řádky u akcí přepínání, přidávání nebo odebírání pro řádkové komentáře.",
"comments.insertSpace": "Určuje, jestli je při komentování vložen znak mezery.",
"copyWithSyntaxHighlighting": "Určuje, jestli má být zvýrazňování syntaxe zkopírováno do schránky.",
"cursorBlinking": "Určuje styl animace kurzoru.",
+ "cursorHeight": "Určuje výšku kurzoru v případě, že má nastavení #editor.cursorStyle# hodnotu line. Maximální výška kurzoru závisí na výšce řádku.",
"cursorSmoothCaretAnimation": "Určuje, jestli má být povolena plynulá animace kurzoru.",
- "cursorStyle": "Určuje styl kurzoru.",
- "cursorSurroundingLines": "Určuje minimální počet viditelných řádků před a za kurzorem. V některých jiných editorech se toto nastavení označuje jako scrollOff nebo scrollOffset.",
- "cursorSurroundingLinesStyle": "Určuje, kdy se má vynucovat nastavení cursorSurroundingLines.",
+ "cursorSmoothCaretAnimation.explicit": "Animace plynulé stříšky je povolená jenom v případě, že uživatel přesune kurzor explicitním gestem.",
+ "cursorSmoothCaretAnimation.off": "Animace plynulé stříšky je zakázaná.",
+ "cursorSmoothCaretAnimation.on": "Animace plynulé stříšky je vždy povolená.",
+ "cursorStyle": "Určuje styl kurzoru v režimu vstupu s vkládáním.",
+ "cursorSurroundingLines": "Určuje minimální počet viditelných řádků před (minimálně 0) a za kurzorem (minimálně 1). V některých jiných editorech se toto nastavení označuje jako scrollOff nebo scrollOffset.",
+ "cursorSurroundingLinesStyle": "Určuje, kdy se má vynucovat nastavení #editor.cursorSurroundingLines#.",
"cursorSurroundingLinesStyle.all": "cursorSurroundingLines se vynucuje vždy.",
"cursorSurroundingLinesStyle.default": "cursorSurroundingLines se vynucuje pouze v případě, že se aktivuje pomocí klávesnice nebo rozhraní API.",
"cursorWidth": "Určuje šířku kurzoru v případě, že má nastavení #editor.cursorStyle# hodnotu line.",
+ "defaultColorDecorators": "Určuje, jestli se mají zobrazovat dekorace vložených barev pomocí výchozího zprostředkovatele barev dokumentu.",
"definitionLinkOpensInPeek": "Určuje, jestli se má pomocí gesta myší Přejít k definici vždy otevřít widget náhledu.",
"deprecated": "Toto nastavení je zastaralé. Místo něj prosím použijte samostatné nastavení, například editor.suggest.showKeywords nebo editor.suggest.showSnippets.",
"dragAndDrop": "Určuje, jestli má editor povolit přesouvání vybraných položek přetažením.",
- "dropIntoEditor.enabled": "Controls whether you can drag and drop a file into a text editor by holding down `shift` (instead of opening the file in an editor).",
+ "dropIntoEditor.enabled": "Určuje, jestli můžete soubor přetáhnout do textového editoru podržením klávesy Shift (místo otevření souboru v editoru).",
+ "dropIntoEditor.showDropSelector": "Určuje, jestli se při přetažení souborů do editoru zobrazí widget. Tento widget umožňuje řídit, jak se soubor přetáhne.",
+ "dropIntoEditor.showDropSelector.afterDrop": "Po přetažení souboru do editoru zobrazte widget pro výběr přetažení.",
+ "dropIntoEditor.showDropSelector.never": "Nikdy nezobrazovat widget pro výběr přetažení. Místo toho se vždy použije výchozí zprostředkovatel přetažení.",
+ "editContext": "Nastaví, jestli se má místo textové oblasti použít rozhraní API EditContext k dodávání vstupu v editoru.",
"editor.autoClosingBrackets.beforeWhitespace": "Automaticky k levým hranatým závorkám doplňovat pravé hranaté závorky, pouze pokud se kurzor nachází nalevo od prázdného znaku",
"editor.autoClosingBrackets.languageDefined": "Pomocí konfigurací jazyka můžete určit, kdy se mají k levým hranatým závorkám automaticky doplňovat pravé hranaté závorky.",
+ "editor.autoClosingComments.beforeWhitespace": "Automaticky zavřít komentáře jenom když je kurzor nalevo od prázdných znaků.",
+ "editor.autoClosingComments.languageDefined": "Pomocí konfigurací jazyka můžete určit, kdy se mají komentáře automaticky zavřít.",
"editor.autoClosingDelete.auto": "Odebrat sousední koncové uvozovky nebo pravé hranaté závorky pouze v případě, že se vložily automaticky",
"editor.autoClosingOvertype.auto": "Přepisovat pravé uvozovky nebo pravé hranaté závorky pouze v případě, že byly automaticky vloženy",
"editor.autoClosingQuotes.beforeWhitespace": "Automaticky k levým uvozovkám doplňovat pravé uvozovky, pouze pokud se kurzor nachází nalevo od prázdného znaku",
@@ -326,15 +448,24 @@
"editor.autoSurround.brackets": "Uzavírat do hranatých závorek, ale ne do uvozovek",
"editor.autoSurround.languageDefined": "Pomocí konfigurací jazyka můžete určit, kdy se mají výběry automaticky uzavírat do závorek nebo uvozovek.",
"editor.autoSurround.quotes": "Uzavírat do uvozovek, ale ne do hranatých závorek",
+ "editor.colorDecoratorActivatedOn.click": "Při kliknutí na dekorátor barev zobrazit výběr barvy",
+ "editor.colorDecoratorActivatedOn.clickAndHover": "Při kliknutí i najetí myší na dekorátor barev zobrazit výběr barvy",
+ "editor.colorDecoratorActivatedOn.hover": "Při najetí myší na dekorátor barev zobrazit výběr barvy",
+ "editor.defaultColorDecorators.always": "Vždy zobrazovat výchozí dekorátory barev",
+ "editor.defaultColorDecorators.auto": "Výchozí dekorátory barev se zobrazí jen v případě, že žádné rozšíření neposkytuje dekorátory barev.",
+ "editor.defaultColorDecorators.never": "Nikdy nezobrazovat výchozí dekorátory barev",
"editor.editor.gotoLocation.multipleDeclarations": "Určuje chování příkazu Přejít na deklaraci, pokud existuje několik cílových umístění.",
"editor.editor.gotoLocation.multipleDefinitions": "Určuje chování příkazu Přejít k definici, pokud existuje několik cílových umístění.",
"editor.editor.gotoLocation.multipleImplemenattions": "Určuje chování příkazu Přejít na implementace, pokud existuje několik cílových umístění.",
"editor.editor.gotoLocation.multipleReferences": "Určuje chování příkazu Přejít na odkazy, pokud existuje několik cílových umístění.",
"editor.editor.gotoLocation.multipleTypeDefinitions": "Určuje chování příkazu Přejít k definici typu, pokud existuje několik cílových umístění.",
- "editor.experimental.stickyScroll": "Shows the nested current scopes during the scroll at the top of the editor.",
"editor.find.autoFindInSelection.always": "Vždy automaticky zapnout možnost Najít ve výběru.",
"editor.find.autoFindInSelection.multiline": "Automaticky zapnout možnost Najít ve výběru, pokud je vybráno více řádků obsahu.",
"editor.find.autoFindInSelection.never": "Nikdy automaticky nezapínat možnost Najít ve výběru (výchozí)",
+ "editor.find.history.never": "Neukládat historii hledání ve widgetu hledání",
+ "editor.find.history.workspace": "Ukládat historii hledání v rámci aktivního pracovního prostoru",
+ "editor.find.replaceHistory.never": "Neukládat historii z widgetu nahrazení",
+ "editor.find.replaceHistory.workspace": "Ukládat historii nahrazení v rámci aktivního pracovního prostoru",
"editor.find.seedSearchStringFromSelection.always": "Vždy přidávat řetězec vyhledávání z výběru editora, včetně slov na pozici kurzoru.",
"editor.find.seedSearchStringFromSelection.never": "Nikdy nepřidávat řetězec vyhledávání z výběru editora.",
"editor.find.seedSearchStringFromSelection.selection": "Přidávat pouze řetězec vyhledávání z výběru editora.",
@@ -356,10 +487,20 @@
"editor.guides.highlightActiveIndentation.false": "Nezvýrazňovat aktivní vodítko odsazení.",
"editor.guides.highlightActiveIndentation.true": "Zvýrazní aktivní vodítko odsazení.",
"editor.guides.indentation": "Určuje, jestli má editor vykreslovat vodítka odsazení.",
- "editor.inlayHints.off": "Pomocné parametry pro vložené informace jsou zakázány.",
- "editor.inlayHints.offUnlessPressed": "Vložené nápovědy jsou ve výchozím nastavení skryté a zobrazují se při podržení kombinace kláves Ctrl+Alt.",
- "editor.inlayHints.on": "Pomocné parametry pro vložené informace jsou povoleny.",
- "editor.inlayHints.onUnlessPressed": "Vložené nápovědy se výchozím nastavení zobrazují a skryjí se jenom při podržení kombinace kláves Ctrl+Alt.",
+ "editor.inlayHints.off": "Pomocné parametry pro vložené upozornění jsou zakázány",
+ "editor.inlayHints.offUnlessPressed": "Vložená upozornění jsou ve výchozím nastavení skryté a zobrazí se, když podržíte {0}.",
+ "editor.inlayHints.on": "Pomocné parametry pro vložené upozornění jsou povoleny",
+ "editor.inlayHints.onUnlessPressed": "Vložená upozornění se ve výchozím nastavení zobrazují a skryjí se, když podržíte {0}.",
+ "editor.inlineSuggest.edits.renderSideBySide.auto": "Pokud je dostatek místa, zobrazí se větší návrhy vedle sebe, jinak se zobrazí níže.",
+ "editor.inlineSuggest.edits.renderSideBySide.never": "Větší návrhy se nikdy nezobrazují vedle sebe a vždy se zobrazí níže.",
+ "editor.lightbulb.enabled.off": "Umožňuje zakázat nabídku akcí kódu.",
+ "editor.lightbulb.enabled.on": "Zobrazí nabídku akcí kódu, pokud je kurzor na řádcích s kódem nebo na prázdných řádcích.",
+ "editor.lightbulb.enabled.onCode": "Zobrazí nabídku akcí kódu, pokud je kurzor na řádcích s kódem.",
+ "editor.stickyScroll.defaultModel": "Definuje model, který se má použít k určení, které řádky se mají přilepit. Pokud model osnovy neexistuje, nastaví se opět model zprostředkovatele skládání, který se vrátí na model odsazení. Toto pořadí je respektováno ve všech třech případech.",
+ "editor.stickyScroll.enabled": "Zobrazí vnořené aktuální obory během posouvání v horní části editoru.",
+ "editor.stickyScroll.maxLineCount": "Definuje maximální počet rychlých čar, které se mají zobrazit.",
+ "editor.stickyScroll.scrollWithEditor": "Povolte posouvání funkce Pevné posouvání pomocí vodorovného posuvníku editoru.",
+ "editor.suggest.matchOnWordStartOnly": "Pokud je povoleno filtrování IntelliSense, vyžaduje, aby se první znak shodoval na začátku slova. Například „c“ u „Console“ nebo „WebContext“, ale _ne_ na „description“. Pokud je funkce IntelliSense zakázaná, zobrazí se více výsledků, ale přesto je seřadí podle kvality shody.",
"editor.suggest.showClasss": "Pokud je povoleno, technologie IntelliSense zobrazí návrhy pro „class“.",
"editor.suggest.showColors": "Pokud je povoleno, technologie IntelliSense zobrazí návrhy pro „color“.",
"editor.suggest.showConstants": "Pokud je povoleno, technologie IntelliSense zobrazí návrhy pro „constant“.",
@@ -391,12 +532,23 @@
"editor.suggest.showVariables": "Pokud je povoleno, technologie IntelliSense zobrazí návrhy pro „variable“.",
"editorViewAccessibleLabel": "Obsah editoru",
"emptySelectionClipboard": "Určuje, jestli se při kopírování bez výběru zkopíruje aktuální řádek.",
+ "enabled": "Povolí v editoru ikonu žárovky s nabídkou akcí kódu.",
+ "experimentalGpuAcceleration": "Určuje, jestli se má k vykreslení editoru použít experimentální akcelerace GPU.",
+ "experimentalGpuAcceleration.off": "Použijte běžné vykreslování založené na modelu DOM.",
+ "experimentalGpuAcceleration.on": "Použijte akceleraci GPU.",
+ "experimentalWhitespaceRendering": "Určuje, jestli se prázdné znaky vykreslují pomocí nové experimentální metody.",
+ "experimentalWhitespaceRendering.font": "Použití nové metody vykreslování se znaky písma.",
+ "experimentalWhitespaceRendering.off": "Použití stabilní metody vykreslování.",
+ "experimentalWhitespaceRendering.svg": "Použití nové metody vykreslování s formáty svg.",
"fastScrollSensitivity": "Multiplikátor rychlosti posouvání při podržené klávese Alt",
"find.addExtraSpaceOnTop": "Určuje, jestli má widget Najít v editoru přidat další řádky na začátek. Pokud má hodnotu true, můžete v případě, že bude widget Najít viditelný, posunout zobrazení nad první řádek.",
"find.autoFindInSelection": "Určuje podmínku pro automatické zapnutí funkce Najít ve výběru.",
"find.cursorMoveOnType": "Určuje, jestli má kurzor při psaní přecházet na nalezené shody.",
+ "find.findOnType": "Určuje, jestli se má widget Najít vyhledávat při psaní.",
"find.globalFindClipboard": "Určuje, jestli má widget Najít v systému macOS číst nebo upravovat sdílenou schránku hledání.",
+ "find.history": "Určuje, jak se má ukládat historie widgetu hledání.",
"find.loop": "Určuje, jestli se má automaticky začít hledat znovu od začátku (nebo od konce), pokud nejsou nalezeny žádné další shody.",
+ "find.replaceHistory": "Určuje, jak se má ukládat historie widgetu nahrazení.",
"find.seedSearchStringFromSelection": "Určuje, jestli lze vyhledávací řetězec předat widgetu Najít z textu vybraného v editoru.",
"folding": "Určuje, jestli je v editoru povoleno sbalování kódu.",
"foldingHighlight": "Určuje, jestli má editor zvýrazňovat sbalené rozsahy.",
@@ -410,6 +562,9 @@
"fontLigatures": "Povolí nebo zakáže ligatury písem (funkce písma calt a liga). Změnou této hodnoty na řetězec je možné jemně odstupňovat řízení vlastnosti CSS font-feature-settings.",
"fontLigaturesGeneral": "Umožňuje nakonfigurovat ligatury písem nebo funkce písem. Může zde být buď logická hodnota, aby bylo možné povolit nebo zakázat ligatury, nebo řetězec pro hodnotu vlastnosti CSS font-feature-settings.",
"fontSize": "Určuje velikost písma v pixelech.",
+ "fontVariationSettings": "Explicitní vlastnost šablony stylů CSS font-variation-settings. Logickou hodnotu je možné předat, pokud je potřeba přeložit pouze tloušťku písma na nastavení varianty písma.",
+ "fontVariations": "Povolí nebo zakáže překlad z font-weight na font-variation-settings. Pokud chcete jemně detailní kontrolu vlastnosti šablony stylů CSS font-variation-settings, změňte ji na řetězec.",
+ "fontVariationsGeneral": "Nakonfiguruje varianty písma. Může to být logická hodnota, která povolí nebo zakáže překlad z font-weight na font-variation-settings, nebo řetězec pro hodnotu vlastnosti šablony stylů CSS font-variation-settings.",
"fontWeight": "Určuje tloušťku písma. Lze použít klíčová slova normal a bold nebo čísla v rozmezí od 1 do 1 000.",
"fontWeightErrorMessage": "Jsou povolena pouze klíčová slova normal a bold nebo čísla v rozmezí od 1 do 1 000.",
"formatOnPaste": "Určuje, jestli má editor automaticky formátovat vložený obsah. Musí být k dispozici formátovací modul, který by měl být schopen naformátovat rozsah v dokumentu.",
@@ -419,13 +574,37 @@
"hover.above": "Pokud je místo, upřednostňujte zobrazení ukazatele myši nad řádkem.",
"hover.delay": "Určuje dobu prodlevy (v milisekundách), po jejímž uplynutí se zobrazí popisek při umístění ukazatele myši na prvek.",
"hover.enabled": "Určuje, jestli se má zobrazit popisek po umístění ukazatele myši na prvek.",
+ "hover.enabled.off": "Najetí myší je zakázané.",
+ "hover.enabled.on": "Najetí myší je povolené.",
+ "hover.enabled.onKeyboardModifier": "Při podržení klávesy {0} nebo Alt (opačný modifikátor k #editor.multiCursorModifier#) se zobrazí nápověda při najetí myší.",
+ "hover.hidingDelay": "Určuje dobu prodlevy (v milisekundách), po jejímž uplynutí se skryje popisek při umístění ukazatele myši na prvek. Vyžaduje povolení parametru #editor.hover.sticky#.",
"hover.sticky": "Určuje, jestli má popisek zobrazený při umístění ukazatele myši na prvek zůstat viditelný.",
- "inlayHints.enable": "Povolí vložené tipy v editoru.",
- "inlayHints.fontFamily": "Určuje rodinu písem vložených tipů v editoru. Když se nastaví na hodnotu „prázdná“, použije se {0}.",
- "inlayHints.fontSize": "Určuje velikost písma vložené nápovědy v editoru. Ve výchozím nastavení se použije {0}, pokud je nakonfigurovaná hodnota menší než {1} nebo větší než velikost písma editoru.",
- "inlayHints.padding": "Povolí odsazení kolem vložených nápověd v editoru.",
+ "inertialScroll": "Udělejte posouvání inerciální – užitečné hlavně s touchpadem v Linuxu.",
+ "inlayHints.enable": "Povolí vložené upozornění v editoru.",
+ "inlayHints.fontFamily": "Určuje rodinu písem vložených upozornění v editoru. Když se nastaví na hodnotu „prázdná“, použije se {0}.",
+ "inlayHints.fontSize": "Určuje velikost písma vloženého upozornění v editoru. Ve výchozím nastavení se použije {0}, pokud je nakonfigurovaná hodnota menší než {1} nebo větší než velikost písma editoru.",
+ "inlayHints.maximumLength": "Maximální celková délka vloženého upozornění pro jeden řádek, než ji editor zkrátí. Pokud ji nechcete nikdy zkrátit, nastavte hodnotu na 0.",
+ "inlayHints.padding": "Povolí odsazení kolem vložených upozornění v editoru.",
"inline": "Rychlé návrhy se zobrazují jako zástupný text.",
+ "inlineCompletionsAccessibilityVerbose": "Určuje, jestli se má uživatelům čtečky obrazovky poskytnout pomocný parametr usnadnění při zobrazení vloženého dokončení.",
+ "inlineSuggest.edits.allowCodeShifting": "Určuje, zda se při zobrazení návrhu posune kód, aby se vytvořil prostor pro vložený návrh.",
+ "inlineSuggest.edits.renderSideBySide": "Určuje, jestli se můžou větší návrhy zobrazovat vedle sebe.",
+ "inlineSuggest.edits.showCollapsed": "Určuje, jestli se bude návrh zobrazovat jako sbalený, dokud se na něj nepřeskáče.",
+ "inlineSuggest.edits.showLongDistanceHint": "Určuje, zda se mají zobrazovat vložené návrhy ze vzdáleného kontextu.",
+ "inlineSuggest.emptyResponseInformation": "Určuje, zda se mají odesílat informace o požadavku od poskytovatele vložených návrhů.",
"inlineSuggest.enabled": "Určuje, jestli se mají v editoru automaticky zobrazovat vložené návrhy.",
+ "inlineSuggest.fontFamily": "Určuje rodinu písem vložených návrhů.",
+ "inlineSuggest.minShowDelay": "Určuje minimální zpoždění v milisekundách, po kterém se po zadání zobrazí vložené návrhy.",
+ "inlineSuggest.showOnSuggestConflict": "Určuje, jestli se mají zobrazovat vložené návrhy, když dojde ke konfliktu návrhů.",
+ "inlineSuggest.showToolbar": "Určuje, kdy se má zobrazit panel nástrojů vložených návrhů.",
+ "inlineSuggest.showToolbar.always": "Pokaždé, když se zobrazí vložený návrh, zobrazí se panel nástrojů vložených návrhů.",
+ "inlineSuggest.showToolbar.never": "Nikdy nezobrazí panel nástrojů vložených návrhů.",
+ "inlineSuggest.showToolbar.onHover": "Při najetí myší na vložený návrh se zobrazí panel nástrojů vložených návrhů.",
+ "inlineSuggest.suppressInSnippetMode": "Určuje, zda se mají vložené návrhy potlačovat v režimu fragmentu kódu.",
+ "inlineSuggest.suppressInlineSuggestions": "Potlačí vložené dokončování pro zadaná ID rozšíření – oddělená čárkami.",
+ "inlineSuggest.suppressSuggestions": "Určuje, jak vložené návrhy interagují s widgetem návrhů. Pokud je tato možnost povolená, widget návrhů se nezobrazí automaticky, pokud jsou k dispozici vložené návrhy.",
+ "inlineSuggest.syntaxHighlightingEnabled": "Určuje, jestli se má v editoru zobrazovat zvýrazňování syntaxe pro vložené návrhy.",
+ "inlineSuggest.triggerCommandOnProviderChange": "Určuje, jestli se má aktivovat příkaz, když se změní poskytovatel vložených návrhů.",
"letterSpacing": "Určuje mezery mezi písmeny v pixelech.",
"lineHeight": "Určuje výšku řádku. \r\n – Při použití hodnoty 0 se automaticky vypočítá výška řádku z velikosti písma.\r\n – Hodnoty mezi 0 a 8 se použijí jako multiplikátor s velikostí písma.\r\n – Hodnoty větší nebo rovny 8 se použijí jako efektivní hodnoty.",
"lineNumbers": "Řídí zobrazování čísel řádků.",
@@ -437,18 +616,29 @@
"links": "Určuje, jestli má editor rozpoznávat odkazy a nastavit je jako kliknutelné.",
"matchBrackets": "Zvýraznit odpovídající hranaté závorky",
"minimap.autohide": "Určuje, jestli se minimapa automaticky skryje.",
+ "minimap.autohide.mouseover": "Minimapa je skryta, když není myš nad minimapou, a zobrazena, když je myš nad minimapou.",
+ "minimap.autohide.none": "Minimapa se zobrazuje vždy.",
+ "minimap.autohide.scroll": "Minimapa se zobrazí jenom při posouvání editoru",
"minimap.enabled": "Určuje, jestli se má zobrazovat minimapa.",
+ "minimap.markSectionHeaderRegex": "Definuje regulární výraz, který se používá k vyhledání záhlaví oddílů v komentářích. Regulární výraz musí obsahovat pojmenovanou skupinu shody label (zapsaná jako (?.+), která zapouzdřuje záhlaví oddílu, jinak nebude fungovat. Volitelně můžete zahrnout jinou skupinu shody s názvem separator. Použít ve vzoru \\n, aby odpovídal víceřádkovému záhlaví.",
"minimap.maxColumn": "Omezuje šířku minimapy tak, aby byl maximálně vykreslen jen určitý počet sloupců.",
"minimap.renderCharacters": "Vykreslí na řádku skutečné znaky (nikoli barevné čtverečky).",
"minimap.scale": "Rozsah obsahu vykresleného v minimapě: 1, 2 nebo 3",
+ "minimap.sectionHeaderFontSize": "Určuje velikost písma záhlaví oddílů v minimapě.",
+ "minimap.sectionHeaderLetterSpacing": "Určuje velikost mezery (v pixelech) mezi znaky záhlaví oddílu. Pomáhá zlepšit čitelnost záhlaví při malých velikostech písma.",
+ "minimap.showMarkSectionHeaders": "Určuje, jestli se komentáře MARK: v minimapě zobrazí jako záhlaví oddílů.",
+ "minimap.showRegionSectionHeaders": "Určuje, jestli se pojmenované oblasti v minimapě zobrazí jako záhlaví oddílů.",
"minimap.showSlider": "Určuje, jestli má být zobrazen posuvník minimapy.",
"minimap.side": "Určuje, na které straně se má vykreslovat minimapa.",
"minimap.size": "Určuje velikost minimapy.",
"minimap.size.fill": "Minimapa se podle potřeby roztáhne nebo zmenší, aby vyplnila editor na výšku (bez posouvání).",
"minimap.size.fit": "Minimapa se podle potřeby zmenší, aby nebyla nikdy větší, než je výška editoru (bez posouvání).",
"minimap.size.proportional": "Minimapa má stejnou velikost jako obsah editoru (a může se posouvat).",
+ "mouseMiddleClickAction": "Určuje, co se stane po kliknutí na prostřední tlačítko myši v editoru.",
"mouseWheelScrollSensitivity": "Multiplikátor, který se má použít pro hodnoty deltaX a deltaY událostí posouvání kolečka myši",
"mouseWheelZoom": "Přiblížit písmo editoru při podržení klávesy Ctrl a současném použití kolečka myši",
+ "mouseWheelZoom.mac": "Přiblížit písmo editoru při podržení klávesy Cmd a současném použití kolečka myši",
+ "multiCursorLimit": "Určuje maximální počet kurzorů, které mohou být v aktivním editoru najednou.",
"multiCursorMergeOverlapping": "Sloučit několik kurzorů, pokud se překrývají",
"multiCursorModifier": "Modifikátor, který se má používat pro přidávání více kurzorů pomocí myši. Gesta myší Přejít k definici a Otevřít odkaz se přizpůsobí tak, aby nebyla v konfliktu s [multicursor modifier](https://code.visualstudio.com/docs/editor/codebasics#_multicursor-modifier).",
"multiCursorModifier.alt": "Mapuje se na klávesu Alt ve Windows a Linuxu a na klávesu Option v macOS.",
@@ -456,29 +646,40 @@
"multiCursorPaste": "Řídí vkládání, když počet řádků vloženého textu odpovídá počtu kurzorů.",
"multiCursorPaste.full": "Každý kurzor vloží celý text.",
"multiCursorPaste.spread": "Každý kurzor vloží jeden řádek textu.",
- "occurrencesHighlight": "Určuje, jestli má editor zvýrazňovat výskyty sémantických symbolů.",
+ "occurrencesHighlight": "Určuje, jestli se mají zvýrazňovat výskyty ve všech otevřených souborech.",
+ "occurrencesHighlight.multiFile": "Experimentální: Zvýrazní výskyty ve všech platných otevřených souborech.",
+ "occurrencesHighlight.off": "Nezvýrazní výskyty.",
+ "occurrencesHighlight.singleFile": "Zvýrazní výskyty pouze v aktuálním souboru.",
+ "occurrencesHighlightDelay": "Určuje dobu prodlevy v milisekundách, po které se zvýrazní výskyty.",
"off": "Rychlé návrhy jsou zakázané.",
"on": "Rychlé návrhy se zobrazují ve widgetu návrhů.",
+ "overtypeCursorStyle": "Určuje styl kurzoru v režimu vstupu s přepisováním.",
+ "overtypeOnPaste": "Určuje, jestli se má při vkládání provádět přepisování.",
"overviewRulerBorder": "Určuje, jestli má být kolem přehledového pravítka vykresleno ohraničení.",
"padding.bottom": "Určuje velikost mezery mezi dolním okrajem editoru a posledním řádkem.",
"padding.top": "Určuje velikost mezery mezi horním okrajem editoru a prvním řádkem.",
"parameterHints.cycle": "Určuje, jestli má nabídka tipů zůstat otevřená (cyklovat) nebo jestli se má při dosažení konce seznamu zavřít.",
"parameterHints.enabled": "Povoluje automaticky otevírané okno, které při psaní zobrazuje dokumentaci k parametrům a informace o typu.",
+ "pasteAs.enabled": "Určuje, jestli můžete obsah vkládat různými způsoby.",
+ "pasteAs.showPasteSelector": "Určuje, jestli se při vkládání souborů do editoru zobrazí widget. Tento widget umožňuje řídit způsob vložení souboru.",
+ "pasteAs.showPasteSelector.afterPaste": "Po vložení obsahu do editoru zobrazit widget pro výběr vložení.",
+ "pasteAs.showPasteSelector.never": "Nikdy nezobrazovat widget pro výběr vložení. Místo toho se vždy použije výchozí chování vkládání.",
"peekWidgetDefaultFocus": "Určuje, jestli má být ve widgetu náhledu fokus na vloženém (inline) editoru nebo stromu.",
"peekWidgetDefaultFocus.editor": "Při otevření náhledu přepnout fokus na editor",
"peekWidgetDefaultFocus.tree": "Při otevření náhledu přepnout fokus na strom",
- "quickSuggestions": "Ovládá, zda se mají při psaní automaticky zobrazovat návrhy. To je možné ovládat při psaní komentářů, řetězců a dalšího kódu. Rychlé návrhy se dají nakonfigurovat tak, aby se zobrazovaly jako stínový text nebo s widgetem návrhu. Pozor také na nastavení {0}, které řídí, zda budou návrhy vyvolány speciálními znaky.",
+ "quickSuggestions": "Určuje, jestli se při psaní mají automaticky zobrazovat návrhy. To je možné ovládat při psaní komentářů, řetězců a dalšího kódu. Rychlé návrhy se dají nakonfigurovat tak, aby se zobrazovaly jako stínový text nebo s widgetem návrhu. Pozor také na nastavení {0}, které řídí, jestli budou návrhy vyvolány speciálními znaky.",
"quickSuggestions.comments": "Povoluje rychlé návrhy uvnitř komentářů.",
"quickSuggestions.other": "Povoluje rychlé návrhy mimo řetězce a komentáře.",
"quickSuggestions.strings": "Povoluje rychlé návrhy uvnitř řetězců.",
"quickSuggestionsDelay": "Určuje dobu prodlevy (v milisekundách), po jejímž uplynutí se budou zobrazovat rychlé návrhy.",
"renameOnType": "Určuje, jestli editor provádí automaticky přejmenování při psaní.",
- "renameOnTypeDeprecate": "Tato možnost je zastaralá, použijte místo ní možnost editor.linkedEditing.",
+ "renameOnTypeDeprecate": "Tato možnost je zastaralá, použijte místo ní možnost #editor.linkedEditing#.",
"renderControlCharacters": "Určuje, jestli má editor vykreslovat řídicí znaky.",
"renderFinalNewline": "Když soubor končí novým řádkem, vykreslit číslo posledního řádku",
"renderLineHighlight": "Určuje, jak má editor vykreslovat zvýraznění aktuálního řádku.",
"renderLineHighlight.all": "Zvýrazní jak mezeru u okraje, tak aktuální řádek.",
"renderLineHighlightOnlyWhenFocus": "Určuje, jestli má editor vykreslovat zvýraznění aktuálního řádku, pouze pokud má editor fokus.",
+ "renderRichScreenReaderContent": "Zda se má vykreslovat bohatý obsah pro čtečky obrazovky, když je povoleno nastavení #editor.editContext#.",
"renderWhitespace": "Určuje, jak má editor vykreslovat prázdné znaky.",
"renderWhitespace.boundary": "Vykreslovat prázdné znaky s výjimkou jednoduchých mezer mezi slovy",
"renderWhitespace.selection": "Vykreslovat prázdné znaky pouze u vybraného textu",
@@ -487,14 +688,17 @@
"rulers": "Vykreslovat svislá pravítka po určitém počtu neproporcionálních znaků. Pro více pravítek použijte více hodnot. Pokud je pole hodnot prázdné, nejsou vykreslena žádná pravítka.",
"rulers.color": "Barva tohoto pravítka editoru",
"rulers.size": "Počet neproporcionálních znaků, při kterém se toto pravítko editoru vykreslí",
+ "screenReaderAnnounceInlineSuggestion": "Určete, jestli čtečka obrazovky oznamuje vložené návrhy.",
"scrollBeyondLastColumn": "Určuje počet dalších znaků, po jejichž překročení se bude editor posouvat vodorovně.",
"scrollBeyondLastLine": "Určuje, jestli se editor bude posouvat za posledním řádkem.",
+ "scrollOnMiddleClick": "Určuje, jestli se při stisknutí prostředního tlačítka bude editor posouvat.",
"scrollPredominantAxis": "Při současném posouvání ve svislém i vodorovném směru posouvat pouze podél dominantní osy. Zabrání vodorovnému posunu při svislém posouvání na trackpadu.",
"scrollbar.horizontal": "Ovládá viditelnost vodorovného posuvníku.",
"scrollbar.horizontal.auto": "Vodorovný posuvník bude viditelný pouze v případě potřeby.",
"scrollbar.horizontal.fit": "Vodorovný posuvník bude vždy skrytý.",
"scrollbar.horizontal.visible": "Vodorovný posuvník bude vždy viditelný.",
"scrollbar.horizontalScrollbarSize": "Výška vodorovného posuvníku",
+ "scrollbar.ignoreHorizontalScrollbarInContentHeight": "Pokud je nastaveno, vodorovný posuvník nezvětší velikost obsahu editoru.",
"scrollbar.scrollByPage": "Určuje, jestli se při kliknutí posune stránka, nebo přeskočí na pozici kliknutí.",
"scrollbar.vertical": "Ovládá viditelnost svislého posuvníku.",
"scrollbar.vertical.auto": "Svislý posuvník bude viditelný pouze v případě potřeby.",
@@ -502,8 +706,11 @@
"scrollbar.vertical.visible": "Svislý posuvník bude vždy viditelný.",
"scrollbar.verticalScrollbarSize": "Šířka svislého posuvníku",
"selectLeadingAndTrailingWhitespace": "Určuje, jestli se vždy mají vybrat prázdné znaky na začátku a na konci.",
+ "selectSubwords": "Určuje, jestli se mají vybrat podslova (například foo v fooBar nebo foo_bar).",
"selectionClipboard": "Určuje, jestli má být podporována primární schránka operačního systému Linux.",
"selectionHighlight": "Určuje, jestli má editor zvýrazňovat shody podobné výběru.",
+ "selectionHighlightMaxLength": "Určuje, kolik znaků může být ve výběru, než se podobné shody nezvýrazní. Pro neomezený počet nastavte hodnotu nula.",
+ "selectionHighlightMultiline": "Určuje, zda má editor zvýraznit shody výběru, které pokrývají více řádků.",
"showDeprecated": "Řídí přeškrtávání zastaralých proměnných.",
"showFoldingControls": "Určuje, kdy se v mezeře u okraje zobrazí ovládací prvky sbalení.",
"showFoldingControls.always": "Vždy zobrazovat ovládací prvky sbalení",
@@ -519,11 +726,16 @@
"stickyTabStops": "Emulovat chování výběru znaků tabulátoru, když se k odsazení používají mezery. Výběr se zastaví na tabulátorech.",
"suggest.filterGraceful": "Určuje, jestli jsou v návrzích filtrování a řazení povoleny drobné překlepy.",
"suggest.insertMode": "Určuje, jestli se mají při přijímání návrhů dokončování přepisovat slova. Poznámka: Závisí to na rozšířeních využívajících tuto funkci.",
+ "suggest.insertMode.always": "Při automatické aktivaci IntelliSense vždy vybírejte návrh.",
"suggest.insertMode.insert": "Vložit návrh bez přepsání textu napravo od kurzoru",
+ "suggest.insertMode.never": "Při automatické aktivaci IntelliSense nikdy nevybírejte návrh.",
"suggest.insertMode.replace": "Vložit návrh a přepsat text napravo od kurzoru",
+ "suggest.insertMode.whenQuickSuggestion": "Vyberte návrh jenom při aktivaci IntelliSense při psaní.",
+ "suggest.insertMode.whenTriggerCharacter": "Vyberte návrh jenom při aktivaci IntelliSense pomocí aktivačního znaku.",
"suggest.localityBonus": "Určuje, jestli se mají při řazení upřednostňovat slova, která jsou blízko kurzoru.",
"suggest.maxVisibleSuggestions.dep": "Toto nastavení je zastaralé. Velikost widgetu pro návrhy se teď dá měnit.",
"suggest.preview": "Určuje, jestli se má v editoru zobrazit náhled výsledku návrhu.",
+ "suggest.selectionMode": "Určuje, jestli se má při zobrazení widgetu vybrat návrh. Všimněte si, že to platí jenom pro automaticky aktivované návrhy ({0} a {1}) a že při explicitním vyvolání se vždy vybere návrh, například pomocí Ctrl+Mezerník.",
"suggest.shareSuggestSelections": "Určuje, jestli se mají zapamatované výběry návrhů sdílet mezi více pracovními prostory a okny (vyžaduje #editor.suggestSelection#).",
"suggest.showIcons": "Určuje, jestli mají být v návrzích zobrazené nebo skryté ikony.",
"suggest.showInlineDetails": "Určuje, jestli se mají podrobnosti návrhů zobrazovat společně s popiskem, nebo jenom ve widgetu podrobností.",
@@ -540,19 +752,25 @@
"tabCompletion.off": "Zakáže dokončování pomocí tabulátoru.",
"tabCompletion.on": "Pokud je povoleno dokončování pomocí tabulátoru, bude při stisknutí klávesy Tab vložen nejlepší návrh.",
"tabCompletion.onlySnippets": "Dokončovat fragmenty kódu pomocí tabulátoru, pokud se shodují jejich předpony. Tato funkce funguje nejlépe, pokud není povolena možnost quickSuggestions.",
+ "tabFocusMode": "Určuje, jestli editor přijímá karty nebo je odloží na workbench pro navigaci.",
+ "trimWhitespaceOnDelete": "Určuje, zda editor při odstraňování nového řádku odstraní také bílé místo odsazení následujícího řádku.",
"unfoldOnClickAfterEndOfLine": "Určuje, jestli kliknutím na prázdný obsah za sbaleným řádkem dojde k rozbalení řádku.",
"unicodeHighlight.allowedCharacters": "Definuje povolené znaky, které se nezvýrazňují.",
"unicodeHighlight.allowedLocales": "Znaky Unicode, které jsou společné v povolených národních prostředích, se nezvýrazňují.",
"unicodeHighlight.ambiguousCharacters": "Určuje, jestli jsou zvýrazněny znaky, které lze zaměnit se základními znaky ASCII, s výjimkou těch, které jsou běžné v aktuálním národním prostředí uživatele.",
- "unicodeHighlight.includeComments": "Určuje, jestli se mají znaky v komentářích také zvýrazňovat v Unicode.",
- "unicodeHighlight.includeStrings": "Určuje, jestli se mají znaky v řetězcích také zvýrazňovat v Unicode.",
+ "unicodeHighlight.includeComments": "Určuje, zda mají být znaky v komentářích také předmětem zvýraznění Unicode.",
+ "unicodeHighlight.includeStrings": "Určuje, zda mají být znaky v řetězcích také předmětem zvýraznění Unicode.",
"unicodeHighlight.invisibleCharacters": "Určuje, jestli jsou zvýrazněny znaky, které si pouze rezervují místo nebo nemají žádnou šířku.",
"unicodeHighlight.nonBasicASCII": "Určuje, jestli jsou zvýrazněny všechny nestandardní znaky ASCII. Za základní ASCII se považují pouze znaky mezi U+0020 a U+007E, tabulátoru, posunu na další řádek a návratu na začátek řádku.",
"unusualLineTerminators": "Odebírat neobvyklé ukončovací znaky řádku, které by mohly způsobovat problémy",
"unusualLineTerminators.auto": "Neobvyklé ukončovací znaky řádku se automaticky odeberou.",
"unusualLineTerminators.off": "Neobvyklé ukončovací znaky řádku jsou ignorovány.",
"unusualLineTerminators.prompt": "U neobvyklých ukončovacích znaků řádku se zobrazí dotaz na jejich odebrání.",
- "useTabStops": "Vkládání a odstraňování prázdných znaků se řídí zarážkami tabulátoru.",
+ "useTabStops": "Mezery a tabulátory se vloží a odstraní v souladu se zarážkami tabulátoru.",
+ "wordBreak": "Určuje pravidla oddělení slov používaná pro text v čínštině, japonštině nebo korejštině (CJK).",
+ "wordBreak.keepAll": "Pro text v čínštině, japonštině nebo korejštině (CJK) by se neměly používat oddělení slov. U jiných textů je chování stejné jako normální chování.",
+ "wordBreak.normal": "Použijte výchozí pravidlo zalomení řádku.",
+ "wordSegmenterLocales": "Národní prostředí, která se mají použít pro segmentaci slov při navigaci nebo operacích souvisejících s slovem Zadejte značku jazyka BCP 47 slova, které chcete rozpoznat (např. ja, zh-CN, zh-Hant-TW atd.).",
"wordSeparators": "Znaky, které se použijí jako oddělovače slov při navigaci nebo operacích v textu",
"wordWrap": "Určuje, jak by se měly zalamovat řádky",
"wordWrap.bounded": "Řádky se budou zalamovat při minimálním viewportu (zobrazení) a hodnotě #editor.wordWrapColumn#.",
@@ -560,19 +778,28 @@
"wordWrap.on": "Řádky se budou zalamovat podle šířky viewportu (zobrazení).",
"wordWrap.wordWrapColumn": "Řádky se budou zalamovat podle hodnoty #editor.wordWrapColumn#.",
"wordWrapColumn": "Určuje sloupec pro zalamování v editoru, když má nastavení #editor.wordWrap# hodnotu wordWrapColumn nebo bounded.",
+ "wrapOnEscapedLineFeeds": "Určuje, jestli má literál \\n aktivovat wordWrap, pokud je povoleno #editor.wordWrap#.\r\n\r\nPříklad:\r\n```c\r\nchar* str=\"hello\\nworld\"\r\n```\r\nse zobrazí jako\r\n```c\r\nchar* str=\"hello\\n\r\n world\"\r\n```",
"wrappingIndent": "Určuje odsazení zalomených řádků.",
"wrappingIndent.deepIndent": "Zalomené řádky získají odsazení +2 směrem k nadřazenému objektu.",
"wrappingIndent.indent": "Zalomené řádky získají odsazení +1 směrem k nadřazenému objektu.",
"wrappingIndent.none": "Bez odsazení. Zalomené řádky začínají ve sloupci 1.",
"wrappingIndent.same": "Zalomené řádky získají stejné odsazení jako nadřazený objekt.",
- "wrappingStrategy": "Řídí algoritmus, který počítá body zalamování.",
+ "wrappingStrategy": "Řídí algoritmus, který vypočítává body přerušení. Všimněte si, že v režimu přístupnosti se pro nejlepší uživatelský dojem používá pokročilý.",
"wrappingStrategy.advanced": "Deleguje výpočet bodů zalamování na prohlížeč. Je to pomalý algoritmus, který by mohl u velkých souborů způsobit zamrznutí, ve všech případech ale funguje správně.",
"wrappingStrategy.simple": "Předpokládá, že všechny znaky mají stejnou šířku. Jde o rychlý algoritmus, který funguje správně pro neproporcionální písma a určité skripty (například znaky latinky), kde mají piktogramy stejnou šířku."
},
"vs/editor/common/core/editorColorRegistry": {
"caret": "Barva kurzoru editoru",
+ "deprecatedEditorActiveIndentGuide": "„EditorIndentGuide.activeBackground“ je zastaralé. Místo toho použijte „editorIndentGuide.activeBackground1“.",
"deprecatedEditorActiveLineNumber": "ID je zastaralé. Místo toho použijte nastavení editorLineNumber.activeForeground.",
+ "deprecatedEditorIndentGuides": "„editorIndentGuide.background“ je zastaralé. Místo toho použijte „editorIndentGuide.background1“.",
"editorActiveIndentGuide": "Barva vodítek odsazení aktivního editoru",
+ "editorActiveIndentGuide1": "Barva vodítek odsazení editoru (1)",
+ "editorActiveIndentGuide2": "Barva aktivních vodítek odsazení editoru (2)",
+ "editorActiveIndentGuide3": "Barva aktivních vodítek odsazení editoru (3)",
+ "editorActiveIndentGuide4": "Barva aktivních vodítek odsazení editoru (4)",
+ "editorActiveIndentGuide5": "Barva aktivních vodítek odsazení editoru (5)",
+ "editorActiveIndentGuide6": "Barva aktivních vodítek odsazení editoru (6)",
"editorActiveLineNumber": "Barva čísla řádku aktivního editoru",
"editorBracketHighlightForeground1": "Barva popředí závorek (1). Vyžaduje povolení zabarvení dvojice závorek.",
"editorBracketHighlightForeground2": "Barva popředí závorek (2). Vyžaduje povolení zabarvení dvojice závorek.",
@@ -597,18 +824,30 @@
"editorBracketPairGuide.background6": "Barva pozadí neaktivních vodítek párů závorek (6). Vyžaduje povolení párování závorek.",
"editorCodeLensForeground": "Barva popředí pro CodeLens v editoru",
"editorCursorBackground": "Barva pozadí kurzoru v editoru. Umožňuje přizpůsobit barvu znaku překrytého kurzorem bloku.",
+ "editorDimmedLineNumber": "Barva posledního řádku editoru, když je vlastnost editor.renderFinalNewline nastavená na ztmavenou.",
"editorGhostTextBackground": "Barva pozadí stínového textu v editoru",
"editorGhostTextBorder": "Barva ohraničení stínového textu v editoru",
"editorGhostTextForeground": "Barva popředí stínového textu v editoru",
"editorGutter": "Barva pozadí mezery u okraje editoru. V mezeře u okraje se zobrazují okraje pro piktogramy a čísla řádků.",
"editorIndentGuides": "Barva vodítek odsazení v editoru",
+ "editorIndentGuides1": "Barva vodítek odsazení editoru (1)",
+ "editorIndentGuides2": "Barva vodítek odsazení editoru (2)",
+ "editorIndentGuides3": "Barva vodítek odsazení editoru (3)",
+ "editorIndentGuides4": "Barva vodítek odsazení editoru (4)",
+ "editorIndentGuides5": "Barva vodítek odsazení editoru (5)",
+ "editorIndentGuides6": "Barva vodítek odsazení editoru (6)",
"editorLineNumbers": "Barva čísel řádků v editoru",
- "editorOverviewRulerBackground": "Barva pozadí přehledového pravítka editoru. Používá se pouze v případě, že je povolená minimapa, která je umístěná na pravé straně editoru.",
+ "editorMultiCursorPrimaryBackground": "Barva pozadí primárního kurzoru editoru, když existuje více kurzorů Umožňuje přizpůsobit barvu znaku překrytého kurzorem bloku.",
+ "editorMultiCursorPrimaryForeground": "Barva primárního kurzoru editoru, když existuje více kurzorů",
+ "editorMultiCursorSecondaryBackground": "Barva pozadí sekundárních kurzorů editoru, když existuje více kurzorů Umožňuje přizpůsobit barvu znaku překrytého kurzorem bloku.",
+ "editorMultiCursorSecondaryForeground": "Barva sekundárních kurzorů editoru, když existuje více kurzorů",
+ "editorOverviewRulerBackground": "Barva pozadí přehledového pravítka editoru.",
"editorOverviewRulerBorder": "Barva ohraničení přehledového pravítka",
"editorRuler": "Barva pravítek v editoru",
"editorUnicodeHighlight.background": "Barva pozadí použitá ke zvýraznění znaků Unicode.",
"editorUnicodeHighlight.border": "Barva ohraničení použitá ke zvýraznění znaků Unicode.",
"editorWhitespaces": "Barva prázdných znaků v editoru",
+ "inactiveLineHighlight": "Barva pozadí zvýraznění řádku na pozici kurzoru, když není fokus na editoru.",
"lineHighlight": "Barva pozadí pro zvýraznění řádku na pozici kurzoru",
"lineHighlightBorderBox": "Barva pozadí ohraničení kolem řádku na pozici kurzoru",
"overviewRuleError": "Barva značky přehledového pravítka pro chyby",
@@ -623,6 +862,15 @@
"unnecessaryCodeOpacity": "Neprůhlednost nepotřebného (nepoužívaného) zdrojového kódu v editoru. Například #000000c0 vykreslí kód se 75% neprůhledností. U motivů s vysokým kontrastem použijte barvu motivu editorUnnecessaryCode.border. Nepoužívaný kód tak nebude zobrazován vyšedle, ale bude podtržený."
},
"vs/editor/common/editorContextKeys": {
+ "accessibleDiffViewerVisible": "Určuje, jestli je v prohlížeči rozdílů s podporou přístupnosti viditelný.",
+ "comparingMovedCode": "Určuje, jestli je pro porovnání vybraný přesunutý blok kódu",
+ "diffEditorHasChanges": "Určuje, jestli editor rozdílů obsahuje změny.",
+ "diffEditorInlineMode": "Určuje, jestli je aktivní vložený režim.",
+ "diffEditorModifiedUri": "Identifikátor URI upraveného dokumentu",
+ "diffEditorModifiedWritable": "Určuje, jestli jsou změny v editoru rozdílů zapisovatelné.",
+ "diffEditorOriginalUri": "Identifikátor URI původního dokumentu",
+ "diffEditorOriginalWritable": "Určuje, jestli jsou změny v editoru rozdílů zapisovatelné.",
+ "diffEditorRenderSideBySideInlineBreakpointReached": "Určuje, zda je dosaženo vykreslování editoru rozdílů vedle vložené zarážky",
"editorColumnSelection": "Určuje, jestli je povolená možnost editor.columnSelection.",
"editorFocus": "Určuje, jestli editor nebo widget editoru má fokus (např. fokus je ve widgetu Najít).",
"editorHasCodeActionsProvider": "Určuje, jestli editor má poskytovatele akcí kódu.",
@@ -645,6 +893,7 @@
"editorHasSelection": "Určuje, jestli editor má vybraný text.",
"editorHasSignatureHelpProvider": "Určuje, jestli editor má poskytovatele nápovědy k signatuře.",
"editorHasTypeDefinitionProvider": "Určuje, jestli editor má poskytovatele definic typů.",
+ "editorHoverFocused": "Určuje, jestli je fokus na najetí myší v editoru.",
"editorHoverVisible": "Určuje, jestli je najetí myší na editor viditelné.",
"editorLangId": "Identifikátor jazyka editoru",
"editorReadonly": "Určuje, jestli je editor jen pro čtení.",
@@ -652,8 +901,73 @@
"editorTextFocus": "Určuje, jestli text editoru má fokus (kurzor bliká).",
"inCompositeEditor": "Určuje, jestli je editor součástí většího editoru (např. poznámkových bloků).",
"inDiffEditor": "Určuje, jestli je kontext editorem rozdílů.",
+ "inMultiDiffEditor": "Určuje, jestli je kontext editorem více rozdílů.",
+ "isEmbeddedDiffEditor": "Určuje, jestli je kontext vloženým editorem rozdílů",
+ "multiDiffEditorAllCollapsed": "Určuje, jestli jsou všechny soubory v editoru s více rozdíly sbalené.",
+ "standaloneColorPickerFocused": "Určuje, jestli je samostatný Výběr barvy zvýrazněný",
+ "standaloneColorPickerVisible": "Určuje, jestli je samostatný Výběr barvy viditelný",
+ "stickyScrollFocused": "Určuje, jestli je fokus na pevném posouvání",
+ "stickyScrollVisible": "Určuje, jestli je pevné posouvání viditelné",
"textInputFocus": "Určuje, jestli editor nebo vstup formátovaného textu mají fokus (kurzor bliká)."
},
+ "vs/editor/common/languages": {
+ "Array": "pole hodnot",
+ "Boolean": "logická hodnota",
+ "Class": "třída",
+ "Constant": "konstanta",
+ "Constructor": "konstruktor",
+ "Enum": "výčet",
+ "EnumMember": "člen výčtu",
+ "Event": "událost",
+ "Field": "pole",
+ "File": "soubor",
+ "Function": "funkce",
+ "Interface": "rozhraní",
+ "Key": "klíč",
+ "Method": "metoda",
+ "Module": "modul",
+ "Namespace": "obor názvů",
+ "Null": "null",
+ "Number": "číslo",
+ "Object": "objekt",
+ "Operator": "operátor",
+ "Package": "balíček",
+ "Property": "vlastnost",
+ "String": "řetězec",
+ "Struct": "struktura",
+ "TypeParameter": "parametr typu",
+ "Variable": "proměnná",
+ "suggestWidget.kind.class": "Třída",
+ "suggestWidget.kind.color": "Barva",
+ "suggestWidget.kind.constant": "Konstanta",
+ "suggestWidget.kind.constructor": "Konstruktor",
+ "suggestWidget.kind.customcolor": "Vlastní barva",
+ "suggestWidget.kind.enum": "Výčet",
+ "suggestWidget.kind.enumMember": "Člen výčtu",
+ "suggestWidget.kind.event": "Událost",
+ "suggestWidget.kind.field": "Pole",
+ "suggestWidget.kind.file": "Soubor",
+ "suggestWidget.kind.folder": "Složka",
+ "suggestWidget.kind.function": "Funkce",
+ "suggestWidget.kind.interface": "Rozhraní",
+ "suggestWidget.kind.issue": "Problém",
+ "suggestWidget.kind.keyword": "Klíčové slovo",
+ "suggestWidget.kind.method": "Metoda",
+ "suggestWidget.kind.module": "Modul",
+ "suggestWidget.kind.operator": "Operátor",
+ "suggestWidget.kind.property": "Vlastnost",
+ "suggestWidget.kind.reference": "Odkaz",
+ "suggestWidget.kind.snippet": "Fragment",
+ "suggestWidget.kind.struct": "Struktura",
+ "suggestWidget.kind.text": "Text",
+ "suggestWidget.kind.tool": "Nástroj",
+ "suggestWidget.kind.typeParameter": "Parametr typu",
+ "suggestWidget.kind.unit": "Jednotka",
+ "suggestWidget.kind.user": "Uživatel",
+ "suggestWidget.kind.value": "Hodnota",
+ "suggestWidget.kind.variable": "Proměnná",
+ "symbolAriaLabel": "{0} ({1})"
+ },
"vs/editor/common/languages/modesRegistry": {
"plainText.alias": "Prostý text"
},
@@ -661,40 +975,58 @@
"edit": "Psaní"
},
"vs/editor/common/standaloneStrings": {
- "accessibilityHelpMessage": "Stisknutím kláves Alt+F1 zobrazíte možnosti usnadnění přístupu.",
- "auto_off": "Editor je nakonfigurovaný tak, aby nebyl nikdy optimalizovaný pro použití se čtečkou obrazovky, což v tuto chvíli není ten případ.",
- "auto_on": "Editor je nakonfigurovaný tak, aby byl optimalizovaný pro použití se čtečkou obrazovky.",
+ "acceptSuggestAction": "Pokud chcete přijmout aktuálně vybraný návrh, přijměte{0} návrhů.",
+ "accessibilityHelpTitle": "Nápovědu k funkcím přístupnosti",
+ "auto_off": "Aplikace je nakonfigurovaná tak, aby nebyla nikdy optimalizovaná pro použití se Čtečkou obrazovky.",
+ "auto_on": "Aplikace je nakonfigurovaná k optimalizaci pro použití se Čtečkou obrazovky.",
"bulkEditServiceSummary": "V {1} souborech byl proveden tento počet oprav: {0}.",
- "changeConfigToOnMac": "Pokud chcete editor nakonfigurovat tak, aby byl optimalizovaný pro použití se čtečkou obrazovky, stiskněte teď klávesovou zkratku Command+E.",
- "changeConfigToOnWinLinux": "Pokud chcete editor nakonfigurovat tak, aby byl optimalizovaný pro použití se čtečkou obrazovky, stiskněte teď klávesovou zkratku Control+E.",
- "editableDiffEditor": " v podokně editoru rozdílů",
- "editableEditor": " v editoru kódu",
+ "changeConfigToOnMac": "Pokud chcete aplikaci nakonfigurovat tak, aby byla optimalizovaná pro použití se Čtečkou obrazovky (Command+E).",
+ "changeConfigToOnWinLinux": "Pokud chcete aplikaci nakonfigurovat tak, aby byla optimalizovaná pro použití se Čtečkou obrazovky (Control+E).",
+ "chatEditing.navigation": "Mezi úpravami v editoru můžete přecházet pomocí navigačních tlačítek předchozí{0} a další{1} a přijmout{2}, odmítnout{3} změny, případně si můžete zobrazit rozdíl{4} pro aktuální změnu. Přijměte úpravy ve všech souborech{5}.",
+ "chatEditorModification": "Editor obsahuje čekající změny, které byly provedeny chatem.",
+ "chatEditorRequestInProgress": "Editor momentálně čeká, až chat provede změny.",
+ "codeFolding": "Pomocí sbalování kódu můžete sbalit bloky kódu a zaměřit se na kód, který vás zajímá. Použijte k tomu příkaz pro přepnutí sbalování{0}.",
+ "debug.startDebugging": "Příkaz Debug: Spustit ladění{0} spustí ladicí relaci.",
+ "debugConsole.addToWatch": "Příkaz Ladění: Přidat do kukátka{0} přidá vybraný text do zobrazení kukátka.",
+ "debugConsole.executeSelection": "Příkaz Ladit: Provést výběr{0} provede vybraný text v konzole ladění.",
+ "debugConsole.setBreakpoint": "Příkaz Ladit: Vložená (inline) zarážka{0} nastaví nebo zruší nastavení zarážky na aktuální pozici kurzoru v aktivním editoru.",
+ "defaultWindowTitleExcludingEditorState": "activeEditorState – například upraveno, problémy a další, momentálně není ve výchozím nastavení součástí nastavení window.title. Povolte ho pomocí accessibility.windowTitleOptimized.",
+ "defaultWindowTitleIncludesEditorState": "activeEditorState – například upraveno, problémy a další, je ve výchozím nastavení součástí nastavení window.title. Zakažte ho pomocí accessibility.windowTitleOptimized.",
+ "editableDiffEditor": "Jste v podokně editoru rozdílů.",
+ "editableEditor": "Jste v editoru kódu.",
"editorViewAccessibleLabel": "Obsah editoru",
- "emergencyConfOn": "Mění se nastavení accessibilitySupport na hodnotu on.",
+ "goToSymbol": "Pokud chcete rychle přecházet mezi symboly v aktuálním souboru, přejděte na Symbol{0}.",
"gotoLineActionLabel": "Přejít na řádek/sloupec...",
+ "gotoOffsetActionLabel": "Přejít na posun...",
"helpQuickAccess": "Zobrazit všechny zprostředkovatele rychlého přístupu",
"inspectTokens": "Vývojář: zkontrolovat tokeny",
- "multiSelection": "Výběry: {0}",
- "multiSelectionRange": "Výběry: {0} (vybrané znaky: {1})",
- "noSelection": "Žádný výběr",
- "openDocMac": "Stisknutím kombinace kláves Command+H otevřete okno prohlížeče s dalšími informacemi souvisejícími s usnadněním přístupu v editoru.",
- "openDocWinLinux": "Stisknutím kombinace kláves Control+H otevřete okno prohlížeče s dalšími informacemi souvisejícími s usnadněním přístupu v editoru.",
- "openingDocs": "Otevírá se stránka dokumentace k usnadnění přístupu v editoru.",
- "outroMsg": "Stisknutím kláves Esc nebo Shift+Esc můžete tento popis zavřít a vrátit se do editoru.",
+ "intellisense": "Intellisense vám pomůže zvýšit efektivitu kódování a snížit počet chyb. Aktivovat návrhy{0}.",
+ "listAnnouncementsCommand": "Spusťte příkaz: Vypsat oznámení signálů pro přehled oznámení a jejich aktuálního stavu",
+ "listSignalSoundsCommand": "Spusťte příkaz: Vypsat zvukové signály pro přehled všech zvukových signálů a jejich aktuálního stavu",
+ "openingDocs": "Otevírá se stránka dokumentace k usnadnění přístupu.",
+ "quickChatCommand": "Přepnutím rychlého chatu{0} otevřete nebo zavřete relaci chatu.",
"quickCommandActionHelp": "Zobrazit a spustit příkazy",
"quickCommandActionLabel": "Paleta příkazů",
"quickOutlineActionLabel": "Přejít na symbol...",
"quickOutlineByCategoryActionLabel": "Přejít na symbol podle kategorie...",
- "readonlyDiffEditor": " v podokně editoru rozdílů jen pro čtení",
- "readonlyEditor": " v editoru kódu jen pro čtení",
+ "readonlyDiffEditor": "Jste v podokně editoru rozdílů jen pro čtení.",
+ "readonlyEditor": "Jste v editoru kódu jen pro čtení.",
+ "screenReaderModeDisabled": "Režim optimalizace pro Čtečku obrazovky je zakázaný.",
+ "screenReaderModeEnabled": "Režim optimalizace pro Čtečku obrazovky je povolený.",
"showAccessibilityHelpAction": "Zobrazit nápovědu k funkcím pro usnadnění přístupu",
- "singleSelection": "Řádek {0}, sloupec {1}",
- "singleSelectionRange": "Řádek {0}, sloupec {1} (vybráno: {2})",
- "tabFocusModeOffMsg": "Stisknutím klávesy Tab v aktuálním editoru vložíte znak tabulátoru. Toto chování můžete přepínat stisknutím klávesy {0}.",
- "tabFocusModeOffMsgNoKb": "Stisknutím klávesy Tab v aktuálním editoru vložíte znak tabulátoru. Příkaz {0} nelze aktuálně aktivovat pomocí klávesové zkratky.",
- "tabFocusModeOnMsg": "Stisknutím klávesy Tab v aktuálním editoru přesunete fokus na další prvek, který může mít fokus. Toto chování můžete přepínat stisknutím klávesy {0}.",
- "tabFocusModeOnMsgNoKb": "Stisknutím klávesy Tab v aktuálním editoru přesunete fokus na další prvek, který může mít fokus. Příkaz {0} nelze aktuálně aktivovat pomocí klávesové zkratky.",
- "toggleHighContrast": "Přepnout motiv s vysokým kontrastem"
+ "showOrFocusHover": "Pokud si chcete přečíst informace o aktuálním symbolu, zobrazte nebo přesuňte fokus na popisek zobrazovaný po umístění ukazatele myši na prvek{0}.",
+ "startInlineChatCommand": "Pokud chcete vytvořit relaci chatu v editoru, zahajte vložený chat{0}.",
+ "stickScrollKb": "Zaměřit fokus pomocí Pevného posouvání fokusu{0} na aktuálně vnořené obory.",
+ "suggestActionsKb": "Pokud chcete zobrazit možné vložené návrhy, aktivujte widget návrhů{0}.",
+ "tabFocusModeOffMsg": "Stisknutím klávesy Tab v aktuálním editoru vložíte znak tabulátoru. Toto chování můžete přepnout{0}.",
+ "tabFocusModeOnMsg": "Stisknutím klávesy Tab v aktuálním editoru přesunete fokus na další prvek, který může mít fokus. Toto chování můžete přepnout{0}.",
+ "toggleHighContrast": "Přepnout motiv s vysokým kontrastem",
+ "toggleSuggestionFocus": "Pokud chcete získat další informace o návrhu, přepněte fokus mezi widgetem návrhů a editorem{0} a přepněte fokus na podrobnosti s{1}.",
+ "toolbar": "Kolem pracovní plochy, když čtečka obrazovky oznámí, že jste se dostali na panel nástrojů, můžete mezi akcemi panelu nástrojů přecházet pomocí úzkých kláves."
+ },
+ "vs/editor/common/viewLayout/viewLineRenderer": {
+ "overflow.chars": "{0} znaky",
+ "showMore": "Zobrazit více ({0})"
},
"vs/editor/contrib/anchorSelect/browser/anchorSelect": {
"anchorSet": "Ukotvení nastavené na {0}:{1}",
@@ -708,7 +1040,9 @@
"miGoToBracket": "Přejít na hranatou &&závorku",
"overviewRulerBracketMatchForeground": "Barva značky přehledového pravítka pro odpovídající hranaté závorky",
"smartSelect.jumpBracket": "Přejít na hranatou závorku",
- "smartSelect.selectToBracket": "Vybrat po hranatou závorku"
+ "smartSelect.removeBrackets": "Odebrat hranaté závorky",
+ "smartSelect.selectToBracket": "Vybrat po hranatou závorku",
+ "smartSelect.selectToBracketDescription": "Vybere text uvnitř hranatých nebo složených závorek a včetně nich."
},
"vs/editor/contrib/caretOperations/browser/caretOperations": {
"caret.moveLeft": "Přesunout vybraný text doleva",
@@ -728,8 +1062,10 @@
"miPaste": "&&Vložit",
"share": "Sdílet"
},
+ "vs/editor/contrib/codeAction/browser/codeAction": {
+ "applyCodeActionFailed": "Při aplikování akce kódu došlo k neznámé chybě."
+ },
"vs/editor/contrib/codeAction/browser/codeActionCommands": {
- "applyCodeActionFailed": "Při aplikování akce kódu došlo k neznámé chybě.",
"args.schema.apply": "Určuje, kdy se mají aplikovat vrácené akce.",
"args.schema.apply.first": "Vždy použít první vrácenou akci kódu",
"args.schema.apply.ifSingle": "Použít první vrácenou akci kódu, pokud je jediná",
@@ -754,30 +1090,65 @@
"editor.action.source.noneMessage.preferred.kind": "Nejsou k dispozici žádné upřednostňované zdrojové akce pro {0}.",
"fixAll.label": "Opravit vše",
"fixAll.noneMessage": "K dispozici není žádná akce „opravit vše“.",
+ "organizeImports.description": "Umožňuje uspořádat importy v aktuálním souboru. Některé nástroje označují tuto možnost také jako Optimalizovat importy.",
"organizeImports.label": "Uspořádat importy",
"quickfix.trigger.label": "Rychlá oprava...",
"refactor.label": "Refaktorovat...",
- "refactor.preview.label": "Refaktorovat prostřednictvím Preview",
"source.label": "Zdrojová akce..."
},
- "vs/editor/contrib/codeAction/browser/codeActionMenu": {
- "CodeActionMenuVisible": "Určuje, jestli je widget seznamu akcí kódu viditelný.",
- "label": "{0} to Refactor, {1} to Preview"
+ "vs/editor/contrib/codeAction/browser/codeActionContributions": {
+ "includeNearbyQuickFixes": "Umožňuje povolit nebo zakázat zobrazování nejbližší rychlé opravy na řádku, pokud není aktuálně v diagnostice.",
+ "showCodeActionHeaders": "Umožňuje povolit nebo zakázat zobrazování záhlaví skupin v nabídce Akce kódu.",
+ "triggerOnFocusChange": "Povolit aktivaci funkce {0}, když je položka {1} nastavena na {2}. Akce kódu musí být nastaveny tak, aby se funkce {3} aktivovala při změnách okna a fokusu."
+ },
+ "vs/editor/contrib/codeAction/browser/codeActionController": {
+ "editingNewSelection": "Kontext: {0} na řádku {1} a ve sloupci {2}.",
+ "hideMoreActions": "Skrývání se zakázalo",
+ "showMoreActions": "Zobrazit zakázané"
},
- "vs/editor/contrib/codeAction/browser/codeActionWidgetContribution": {
- "codeActionWidget": "Když se tato možnost povolí, upraví se způsob vykreslování nabídky akcí kódu."
+ "vs/editor/contrib/codeAction/browser/codeActionMenu": {
+ "codeAction.widget.id.convert": "Přepsat...",
+ "codeAction.widget.id.extract": "Extrahovat",
+ "codeAction.widget.id.inline": "Vložený",
+ "codeAction.widget.id.more": "Další akce...",
+ "codeAction.widget.id.move": "Přesunout",
+ "codeAction.widget.id.quickfix": "Rychlá oprava",
+ "codeAction.widget.id.source": "Zdrojová akce",
+ "codeAction.widget.id.surround": "Obklopit fragmentem"
},
"vs/editor/contrib/codeAction/browser/lightBulbWidget": {
"codeAction": "Zobrazit akce kódu",
+ "codeActionAutoRun": "Spustit: {0}",
"codeActionWithKb": "Zobrazit akce kódu ({0})",
+ "gutterLightbulbAIFixAutoFixWidget": "Ikona, která vytvoří nabídku akcí kódu z mezery u okraje editoru, když v editoru není místo a je k dispozici AI oprava a rychlá oprava",
+ "gutterLightbulbAIFixWidget": "Ikona, která vytvoří nabídku akcí kódu z mezery u okraje editoru, když v editoru není místo a je k dispozici AI oprava",
+ "gutterLightbulbAutoFixWidget": "Ikona, která vytvoří nabídku akcí kódu z mezery u okraje editoru, když v editoru není místo a je k dispozici rychlá oprava",
+ "gutterLightbulbSparkleFilledWidget": "Ikona, která vytvoří nabídku akcí kódu z mezery u okraje editoru, když v editoru není místo a je k dispozici AI oprava a rychlá oprava",
+ "gutterLightbulbWidget": "Ikona, která vytvoří nabídku akcí kódu z mezery u okraje editoru, když v editoru není místo",
"preferredcodeActionWithKb": "Zobrazit akce kódu. Je k dispozici upřednostňovaná rychlá oprava ({0})."
},
"vs/editor/contrib/codelens/browser/codelensController": {
+ "placeHolder": "Vyberte příkaz.",
"showLensOnLine": "Zobrazit příkazy CodeLens pro aktuální řádek"
},
- "vs/editor/contrib/colorPicker/browser/colorPickerWidget": {
+ "vs/editor/contrib/colorPicker/browser/colorPickerParts/colorPickerCloseButton": {
+ "closeIcon": "Ikona pro zavření výběru barvy"
+ },
+ "vs/editor/contrib/colorPicker/browser/colorPickerParts/colorPickerHeader": {
"clickToToggleColorOptions": "Kliknutím přepnete možnosti barev (rgb/hsl/hex)."
},
+ "vs/editor/contrib/colorPicker/browser/hoverColorPicker/hoverColorPickerParticipant": {
+ "hoverAccessibilityColorParticipant": "Tady je výběr barvy."
+ },
+ "vs/editor/contrib/colorPicker/browser/standaloneColorPicker/standaloneColorPickerActions": {
+ "hideColorPicker": "Skrýt Výběr barvy",
+ "hideColorPickerDescription": "Umožňuje skrýt samostatný ovládací prvek pro výběr barvy.",
+ "insertColorWithStandaloneColorPicker": "Vložit barvu přes samostatný Výběr barvy",
+ "insertColorWithStandaloneColorPickerDescription": "Umožňuje vkládat barvy hex/rgb/hsl pomocí samostatného ovládacího prvku pro výběr barev s fokusem.",
+ "mishowOrFocusStandaloneColorPicker": "&&Zobrazit nebo přepnout fokus na samostatný Výběr barvy",
+ "showOrFocusStandaloneColorPicker": "Zobrazit nebo přepnout fokus na samostatný Výběr barvy",
+ "showOrFocusStandaloneColorPickerDescription": "Umožňuje zobrazit nebo přepnout fokus na samostatný ovládací prvek pro výběr barvy, který používá výchozího zprostředkovatele barev. Zobrazuje barvy hex/rgb/hsl."
+ },
"vs/editor/contrib/comment/browser/comment": {
"comment.block": "Přepnout komentář k bloku",
"comment.line": "Přepnout řádkový komentář",
@@ -788,7 +1159,7 @@
},
"vs/editor/contrib/contextmenu/browser/contextmenu": {
"action.showContextMenu.label": "Zobrazit místní nabídku editoru",
- "context.minimap.minimap": "Minimap",
+ "context.minimap.minimap": "Minimapa",
"context.minimap.renderCharacters": "Vykreslit znaky",
"context.minimap.size": "Svislá velikost",
"context.minimap.size.fill": "Vyplnit",
@@ -798,24 +1169,54 @@
"context.minimap.slider.always": "Vždy",
"context.minimap.slider.mouseover": "Ukazatel myši"
},
- "vs/editor/contrib/copyPaste/browser/copyPasteContribution": {
- "pasteActions": "Povolí nebo zakáže spouštění úprav z rozšíření při vložení."
- },
"vs/editor/contrib/cursorUndo/browser/cursorUndo": {
"cursor.redo": "Provést znovu akci kurzoru",
"cursor.undo": "Vrátit zpět akci kurzoru"
},
- "vs/editor/contrib/dropIntoEditor/browser/dropIntoEditorContribution": {
- "dropProgressTitle": "Spouští se obslužné rutiny přetažení…"
+ "vs/editor/contrib/dropOrPasteInto/browser/copyPasteContribution": {
+ "pasteAs": "Vložit jako...",
+ "pasteAs.kind": "Druh úpravy vložení, pomocí kterého se má zkusit provést vložení\r\nPokud pro tento druh existuje více úprav, zobrazí editor ovládací prvek pro výběr. Pokud žádné úpravy tohoto druhu neexistují, editor zobrazí chybovou zprávu.",
+ "pasteAs.preferences": "Seznam upřednostňovaných druhů úprav vložení, které se mají zkusit použít\r\nPoužije se první úprava odpovídající předvolbám.",
+ "pasteAsText": "Vložit jako text"
+ },
+ "vs/editor/contrib/dropOrPasteInto/browser/copyPasteController": {
+ "noPreferences": "prázdný",
+ "pasteAsDefault": "Konfigurovat výchozí akci vložení",
+ "pasteAsError": "Pro {0} se nenašly žádné úpravy vložení.",
+ "pasteAsPickerPlaceholder": "Vybrat akci vložení",
+ "pasteAsProgress": "Spouští se obslužné rutiny vložení",
+ "pasteIntoEditorProgress": "Spouští se obslužné rutiny vložení. Kliknutím akci zrušíte a provedete základní vložení.",
+ "pasteWidgetVisible": "Určuje, jestli se zobrazuje widget pro vložení",
+ "postPasteWidgetTitle": "Zobrazit možnosti vložení...",
+ "resolveProcess": "Překládání úprav vložení pro '{0}' Kliknutím akci zrušíte."
+ },
+ "vs/editor/contrib/dropOrPasteInto/browser/defaultProviders": {
+ "defaultDropProvider.uriList.path": "Vložit cestu",
+ "defaultDropProvider.uriList.paths": "Vložit cesty",
+ "defaultDropProvider.uriList.relativePath": "Vložit relativní cestu",
+ "defaultDropProvider.uriList.relativePaths": "Vložit relativní cesty",
+ "defaultDropProvider.uriList.uri": "Vložit Uri",
+ "defaultDropProvider.uriList.uris": "Vložit Uris",
+ "pasteHtmlLabel": "Vložit kód HTML",
+ "text.label": "Vložit prostý text"
+ },
+ "vs/editor/contrib/dropOrPasteInto/browser/dropIntoEditorController": {
+ "dropIntoEditorProgress": "Spouští se obslužné rutiny přetažení. Kliknutím zrušíte akci.",
+ "dropWidgetVisible": "Určuje, jestli se zobrazuje widget pro přetažení",
+ "postDropWidgetTitle": "Zobrazit možnosti přetažení..."
+ },
+ "vs/editor/contrib/dropOrPasteInto/browser/postEditWidget": {
+ "applyError": "Při použití úpravy {0} došlo k chybě:\r\n{1}",
+ "resolveError": "Při překladu úpravy {0} došlo k chybě:\r\n{1}"
},
"vs/editor/contrib/editorState/browser/keybindingCancellation": {
"cancellableOperation": "Určuje, jestli editor spouští operaci, která se dá zrušit, např. Náhled na odkazy"
},
"vs/editor/contrib/find/browser/findController": {
- "actions.find.isRegexOverride": "Přepíše příznak „Use Regular Expression“.\r\nPříznak se neuloží do budoucna.\r\n0: Nedělat nic\r\n1: True\r\n2: False",
- "actions.find.matchCaseOverride": "Přepíše příznak „Math Case“.\r\nPříznak se neuloží do budoucna.\r\n0: Nedělat nic\r\n1: True\r\n2: False",
- "actions.find.preserveCaseOverride": "Přepíše příznak „Preserve Case“.\r\nPříznak se neuloží do budoucna.\r\n0: Nedělat nic\r\n1: True\r\n2: False",
- "actions.find.wholeWordOverride": "Přepíše příznak „Match Whole Word“.\r\nPříznak se neuloží do budoucna.\r\n0: Nedělat nic\r\n1: True\r\n2: False",
+ "findMatchAction.goToMatch": "Přejít na shodu…",
+ "findMatchAction.inputPlaceHolder": "Zadejte číslo pro přechod na konkrétní shodu (mezi 1 a {0})",
+ "findMatchAction.inputValidationMessage": "Zadejte číslo mezi 1 a {0}.",
+ "findMatchAction.noResults": "Žádné shody. Zkuste hledat něco jiného.",
"findNextMatchAction": "Najít další",
"findPreviousMatchAction": "Najít předchozí",
"miFind": "&&Najít",
@@ -825,14 +1226,14 @@
"startFindAction": "Najít",
"startFindWithArgsAction": "Najít s argumenty",
"startFindWithSelectionAction": "Najít s výběrem",
- "startReplace": "Nahradit"
+ "startReplace": "Nahradit",
+ "too.large.for.replaceall": "Soubor je příliš velký a není možné provést operaci nahradit vše."
},
"vs/editor/contrib/find/browser/findWidget": {
"ariaSearchNoResult": "Nalezeno: {0} pro: {1}",
"ariaSearchNoResultEmpty": "Nalezeno: {0}",
"ariaSearchNoResultWithLineNum": "Nalezeno: {0} pro: {1} v: {2}",
"ariaSearchNoResultWithLineNumNoCurrentMatch": "Nalezeno: {0} pro: {1}",
- "ctrlEnter.keybindingChanged": "Kombinace kláves Ctrl+Enter teď místo nahrazení všeho vloží zalomení řádku. Pokud chcete toto chování přepsat, můžete upravit klávesovou zkratku pro nastavení editor.action.replaceAll.",
"findCollapsedIcon": "Ikona, která označuje, že vyhledávací widget v editoru je sbalený",
"findExpandedIcon": "Ikona, která označuje, že vyhledávací widget v editoru je rozbalený",
"findNextMatchIcon": "Ikona pro operaci Najít další ve vyhledávacím widgetu editoru",
@@ -842,6 +1243,7 @@
"findSelectionIcon": "Ikona pro operaci Najít ve výběru ve vyhledávacím widgetu editoru",
"label.closeButton": "Zavřít",
"label.find": "Najít",
+ "label.findDialog": "Najít/Nahradit",
"label.matchesLocation": "{0} z {1}",
"label.nextMatchButton": "Další shoda",
"label.noResults": "Žádné výsledky",
@@ -856,44 +1258,42 @@
"title.matchesCountLimit": "Zvýrazněno je pouze několik prvních výsledků ({0}), ale všechny operace hledání fungují na celém textu."
},
"vs/editor/contrib/folding/browser/folding": {
- "createManualFoldRange.label": "Create Manual Folding Range from Selection",
- "editorGutter.foldingControlForeground": "Barva ovládacího prvku pro sbalení v mezeře u okraje editoru",
+ "createManualFoldRange.label": "Vytvořit rozsah sbalení z výběru",
"foldAction.label": "Sbalit",
"foldAllAction.label": "Sbalit vše",
"foldAllBlockComments.label": "Sbalit všechny komentáře k bloku",
- "foldAllExcept.label": "Sbalit všechny oblasti kromě vybraných",
+ "foldAllExcept.label": "Sbalit všechny kromě vybraných",
"foldAllMarkerRegions.label": "Sbalit všechny oblasti",
- "foldBackgroundBackground": "Barva pozadí za sbalenými rozsahy. Barva nesmí být neprůhledná, aby se nepřekryly dekorace pod tím.",
"foldLevelAction.label": "Sbalit úroveň {0}",
"foldRecursivelyAction.label": "Sbalit rekurzivně",
"gotoNextFold.label": "Přejít na další rozsah sbalení",
"gotoParentFold.label": "Přejít na nadřazenou část",
"gotoPreviousFold.label": "Přejít na předchozí rozsah sbalení",
- "maximum fold ranges": "Počet posunutelných oblastí je omezen na maximálně {0}. Zvyšte možnost konfigurace [„Maximální počet posunutelných oblastí“](command:workbench.action.openSettings?[\"editor.foldingMaximumRegions\"]) a povolte jich tak více.",
- "removeManualFoldingRanges.label": "Remove Manual Folding Ranges",
+ "removeManualFoldingRanges.label": "Odebrat rozsahy manuálního sbalení",
"toggleFoldAction.label": "Přepnout sbalení",
+ "toggleFoldRecursivelyAction.label": "Přepnout možnost Sbalit rekurzivně",
+ "toggleImportFold.label": "Přepnout přeložení importu",
"unFoldRecursivelyAction.label": "Rozbalit rekurzivně",
"unfoldAction.label": "Rozbalit",
"unfoldAllAction.label": "Rozbalit vše",
- "unfoldAllExcept.label": "Rozbalit všechny oblasti kromě vybraných",
+ "unfoldAllExcept.label": "Rozbalit všechny kromě vybraných",
"unfoldAllMarkerRegions.label": "Rozbalit všechny oblasti"
},
"vs/editor/contrib/folding/browser/foldingDecorations": {
+ "collapsedTextColor": "Barva sbaleného textu po prvním řádku sbaleného rozsahu",
+ "editorGutter.foldingControlForeground": "Barva ovládacího prvku pro sbalení v mezeře u okraje editoru",
+ "foldBackgroundBackground": "Barva pozadí za sbalenými rozsahy. Barva nesmí být neprůhledná, aby se nepřekryly dekorace pod tím.",
"foldingCollapsedIcon": "Ikona pro sbalené rozsahy v okraji piktogramu editoru",
"foldingExpandedIcon": "Ikona pro rozbalené rozsahy v okraji piktogramu editoru",
- "foldingManualCollapedIcon": "Icon for manually collapsed ranges in the editor glyph margin.",
- "foldingManualExpandedIcon": "Icon for manually expanded ranges in the editor glyph margin."
+ "foldingManualCollapedIcon": "Ikona pro manuálně sbalené rozsahy v okraji piktogramu editoru.",
+ "foldingManualExpandedIcon": "Ikona pro manuálně rozbalené rozsahy v okraji piktogramu editoru.",
+ "linesCollapsed": "Kliknutím rozbalíte rozsah.",
+ "linesExpanded": "Kliknutím sbalíte rozsah."
},
"vs/editor/contrib/fontZoom/browser/fontZoom": {
- "EditorFontZoomIn.label": "Zvětšení písma editoru",
- "EditorFontZoomOut.label": "Zmenšení písma editoru",
- "EditorFontZoomReset.label": "Obnovení velikosti písma editoru"
- },
- "vs/editor/contrib/format/browser/format": {
- "hint11": "Byla provedena 1 úprava formátování na řádku {0}.",
- "hint1n": "Byla provedena 1 úprava formátování mezi řádky {0} a {1}.",
- "hintn1": "Byl proveden tento počet úprav formátování na řádku {1}: {0}.",
- "hintnn": "Byla proveden tento počet úprav formátování mezi řádky {1} a {2}: {0}."
+ "EditorFontZoomIn.label": "Zvětšit velikost písma editoru",
+ "EditorFontZoomOut.label": "Zmenšit velikost písma editoru",
+ "EditorFontZoomReset.label": "Obnovit velikost písma editoru"
},
"vs/editor/contrib/format/browser/formatActions": {
"formatDocument.label": "Formátovat dokument",
@@ -983,8 +1383,8 @@
"vs/editor/contrib/gotoSymbol/browser/referencesModel": {
"aria.fileReferences.1": "1 symbol v: {0}, úplná cesta: {1}",
"aria.fileReferences.N": "Symboly (celkem {0}) v: {1}, úplná cesta: {2}",
- "aria.oneReference": "symbol v {0} na řádku {1} ve sloupci {2}",
- "aria.oneReference.preview": "symbol v {0} na řádku {1} ve sloupci {2}, {3}",
+ "aria.oneReference": "v {0} na řádku {1} ve sloupci {2}",
+ "aria.oneReference.preview": "{0} v {1} na řádku {2} ve sloupci{3}",
"aria.result.0": "Nenašly se žádné výsledky.",
"aria.result.1": "V {0} byl nalezen 1 symbol.",
"aria.result.n1": "V {1} byl nalezen tento počet symbolů: {0}.",
@@ -995,12 +1395,64 @@
"location": "Symbol {0} z {1}",
"location.kb": "Symbol {0} z {1}, {2} pro další"
},
- "vs/editor/contrib/hover/browser/hover": {
+ "vs/editor/contrib/gpu/browser/gpuActions": {
+ "drawGlyph.label": "Nakreslit piktogram",
+ "gpuDebug.label": "Vývojář: Renderer GPU editoru ladění",
+ "logTextureAtlasStats.label": "Statistiky atlasu textury protokolu",
+ "saveTextureAtlas.label": "Uložit atlas textur"
+ },
+ "vs/editor/contrib/hover/browser/contentHoverRendered": {
+ "hoverAccessibilityStatusBar": "Toto je stavový řádek při najetí myší.",
+ "hoverAccessibilityStatusBarActionWithKeybinding": "Má akci s popiskem {0} a klávesovou zkratkou {1}.",
+ "hoverAccessibilityStatusBarActionWithoutKeybinding": "Má akci s popiskem {0}."
+ },
+ "vs/editor/contrib/hover/browser/hoverAccessibleViews": {
+ "decreaseVerbosity": "– Úroveň podrobností části s fokusem při najetí myší se dá snížit pomocí příkazu Snížit úroveň podrobností při najetí myší.",
+ "increaseVerbosity": "– Úroveň podrobností části s fokusem při najetí myší se dá zvýšit pomocí příkazu Zvýšit úroveň podrobností při najetí myší."
+ },
+ "vs/editor/contrib/hover/browser/hoverActionIds": {
+ "decreaseHoverVerbosityLevel": "Snížit úroveň podrobností při najetí myší",
+ "increaseHoverVerbosityLevel": "Zvýšit úroveň podrobností při najetí myší"
+ },
+ "vs/editor/contrib/hover/browser/hoverActions": {
+ "goToBottomHover": "Přechod dolů při přechodu myší",
+ "goToBottomHoverDescription": "Umožňuje přejít na konec informací zobrazených v editoru při najetí myší.",
+ "goToTopHover": "Přejít na horní najetí myší",
+ "goToTopHoverDescription": "Umožňuje přejít na začátek informací zobrazených v editoru při najetí myší.",
+ "hideHover": "Skrýt při přechodu myší",
+ "pageDownHover": "Najetí myší o stránku dolů",
+ "pageDownHoverDescription": "Umožňuje posunout zobrazení informací zobrazených v editoru při najetí myší o stránku dolů.",
+ "pageUpHover": "Najetí myší o stránku nahoru",
+ "pageUpHoverDescription": "Umožňuje posunout zobrazení informací zobrazených v editoru při najetí myší o stránku nahoru.",
+ "scrollDownHover": "Najetí myší na posouvání dolů",
+ "scrollDownHoverDescription": "Umožňuje posunout zobrazení informací zobrazených v editoru při najetí myší dolů.",
+ "scrollLeftHover": "Posunout doleva při přechodu myší",
+ "scrollLeftHoverDescription": "Umožňuje posunout informace zobrazené v editoru při najetí myší doleva.",
+ "scrollRightHover": "Posunout doprava při přechodu myší",
+ "scrollRightHoverDescription": "Umožňuje posunout informace zobrazené v editoru při najetí myší doprava.",
+ "scrollUpHover": "Najetí myší na posouvání nahoru",
+ "scrollUpHoverDescription": "Umožňuje posunout informace zobrazené v editoru při najetí myší nahoru.",
"showDefinitionPreviewHover": "Zobrazit náhled definice při umístění ukazatele myši",
- "showHover": "Zobrazit informace po umístění ukazatele myši"
+ "showDefinitionPreviewHoverDescription": "Umožňuje zobrazit náhled definice v editoru při najetí myší.",
+ "showOrFocusHover": "Zobrazit nebo zaměřit na najetí myší",
+ "showOrFocusHover.focus.autoFocusImmediately": "Automaticky přepne fokus na informace zobrazené po najetí myší, jakmile se zobrazí.",
+ "showOrFocusHover.focus.focusIfVisible": "Přepne fokus na informace zobrazené po najetí myší, pouze pokud jsou již zobrazené.",
+ "showOrFocusHover.focus.noAutoFocus": "Nepřepne automaticky fokus na informace zobrazené po najetí myší.",
+ "showOrFocusHoverDescription": "Umožňuje zobrazit nebo přepnout fokus na informace zobrazené v editoru při najetí myší, kde se zobrazují informace z dokumentace, odkazy a další obsah pro symbol na aktuální pozici kurzoru."
+ },
+ "vs/editor/contrib/hover/browser/hoverCopyButton": {
+ "hover.copied": "Zkopírováno do schránky",
+ "hover.copy": "Kopírovat"
},
"vs/editor/contrib/hover/browser/markdownHoverParticipant": {
+ "decreaseHoverVerbosity": "Ikona pro snížení úrovně podrobností při najetí myší",
+ "decreaseVerbosity": "Snížit úroveň podrobností při najetí myší",
+ "decreaseVerbosityWithKb": "Snížit úroveň podrobností při najetí myší ({0})",
+ "increaseHoverVerbosity": "Ikona pro zvýšení úrovně podrobností při najetí myší",
+ "increaseVerbosity": "Zvýšit úroveň podrobností při najetí myší",
+ "increaseVerbosityWithKb": "Zvýšit úroveň podrobností při najetí myší ({0})",
"modesContentHover.loading": "Načítání...",
+ "stopped rendering": "Vykreslování bylo z důvodů výkonu pozastaveno z důvodu dlouhé čáry. To se dá nakonfigurovat přes editor.stopRenderingLineAfter.",
"too many characters": "U dlouhých řádků je tokenizace z důvodu výkonu vynechána. Toto je možné nakonfigurovat prostřednictvím nastavení editor.maxTokenizationLineLength."
},
"vs/editor/contrib/hover/browser/markerHoverParticipant": {
@@ -1009,19 +1461,26 @@
"quick fixes": "Rychlá oprava...",
"view problem": "Zobrazit problém"
},
- "vs/editor/contrib/inPlaceReplace/browser/inPlaceReplace": {
- "InPlaceReplaceAction.next.label": "Nahradit další hodnotou",
- "InPlaceReplaceAction.previous.label": "Nahradit předchozí hodnotou"
- },
"vs/editor/contrib/indentation/browser/indentation": {
+ "changeTabDisplaySize": "Změnit velikost zobrazení tabulátoru",
+ "changeTabDisplaySizeDescription": "Umožňuje změnit ekvivalent velikosti mezer pro tabulátor.",
"configuredTabSize": "Nakonfigurovaná velikost tabulátoru",
+ "currentTabSize": "Aktuální velikost tabulátoru",
+ "defaultTabSize": "Výchozí velikost tabulátoru",
"detectIndentation": "Zjistit odsazení z obsahu",
+ "detectIndentationDescription": "Umožňuje zjistit odsazení z obsahu.",
"editor.reindentlines": "Znovu odsadit řádky",
+ "editor.reindentlinesDescription": "Umožňuje opětovně odsadit řádky editoru.",
"editor.reindentselectedlines": "Znovu odsadit vybrané řádky",
+ "editor.reindentselectedlinesDescription": "Umožňuje opětovně odsadit vybrané řádky editoru.",
"indentUsingSpaces": "Odsadit pomocí mezer",
+ "indentUsingSpacesDescription": "Umožňuje odsazovat obsah pomocí mezer.",
"indentUsingTabs": "Odsadit pomocí tabulátorů",
+ "indentUsingTabsDescription": "Umožňuje odsazovat obsah pomocí tabulátorů.",
"indentationToSpaces": "Převést odsazení na mezery",
+ "indentationToSpacesDescription": "Umožňuje převést odsazení pomocí tabulátoru na mezery.",
"indentationToTabs": "Převést odsazení na tabulátory",
+ "indentationToTabsDescription": "Umožňuje převést odsazení pomocí mezer na tabulátory.",
"selectTabWidth": "Vybrat velikost tabulátoru pro aktuální soubor"
},
"vs/editor/contrib/inlayHints/browser/inlayHintsHover": {
@@ -1034,27 +1493,105 @@
"links.navigate.kb.meta": "ctrl + kliknutí",
"links.navigate.kb.meta.mac": "cmd + kliknutí"
},
- "vs/editor/contrib/inlineCompletions/browser/ghostTextController": {
+ "vs/editor/contrib/inlineCompletions/browser/controller/commands": {
+ "accept": "Přijmout",
+ "acceptLine": "Přijmout řádek",
+ "acceptWord": "Přijmout slovo",
+ "action.inlineSuggest.accept": "Přijmout vložený návrh",
+ "action.inlineSuggest.acceptNextLine": "Přijmout další řádek vloženého návrhu",
+ "action.inlineSuggest.acceptNextWord": "Přijmout další vložené slovo návrhu",
+ "action.inlineSuggest.alwaysShowToolbar": "Vždy zobrazit panel nástrojů",
+ "action.inlineSuggest.dev.extractRepro": "Vývojář: Stav extrahování vloženého návrhu",
+ "action.inlineSuggest.hide": "Skrýt vložený návrh",
+ "action.inlineSuggest.jump": "Přejít na další vloženou úpravu",
"action.inlineSuggest.showNext": "Zobrazit další vložený návrh",
"action.inlineSuggest.showPrevious": "Zobrazit předchozí vložený návrh",
+ "action.inlineSuggest.toggleShowCollapsed": "Přepnout zobrazení vložených návrhů sbaleno",
"action.inlineSuggest.trigger": "Aktivovat vložený návrh",
+ "inlineSuggest.trigger.args": "Možnosti pro aktivaci vložených návrhů",
+ "inlineSuggest.trigger.description": "Aktivuje vložený návrh v editoru.",
+ "jump": "Přejít na",
+ "noInlineSuggestionAvailable": "Není k dispozici žádný vložený návrh.",
+ "reject": "Reject"
+ },
+ "vs/editor/contrib/inlineCompletions/browser/controller/inlineCompletionContextKeys": {
+ "cursorAtInlineEdit": "Určuje, jestli je kurzor na vložené úpravě.",
+ "cursorBeforeGhostText": "Určuje, jestli je kurzor v duplikovaném textu.",
+ "cursorInIndentation": "Určuje, jestli je kurzor v odsazení.",
+ "editor.hasSelection": "Určuje, jestli editor má výběr.",
+ "inInlineEditsPreviewEditor": "Určuje, jestli aktuální editor kódu zobrazuje náhled vložených úprav.",
+ "inlineEditVisible": "Určuje, jestli je vložená úprava viditelná.",
"inlineSuggestionHasIndentation": "Určuje, jestli vložený návrh začíná prázdným znakem.",
"inlineSuggestionHasIndentationLessThanTabSize": "Určuje, zda vložený návrh začíná mezerou, která je menší, než jaká by byla vložena tabulátorem",
- "inlineSuggestionVisible": "Určuje, jestli je vložený návrh viditelný."
+ "inlineSuggestionVisible": "Určuje, jestli je vložený návrh viditelný.",
+ "suppressSuggestions": "Určuje, jestli se mají návrhy pro aktuální návrh potlačit.",
+ "tabShouldAcceptInlineEdit": "Určuje, jestli má karta přijmout vloženou úpravu.",
+ "tabShouldJumpToInlineEdit": "Určuje, jestli má karta přejít na vloženou úpravu."
+ },
+ "vs/editor/contrib/inlineCompletions/browser/controller/inlineCompletionsController": {
+ "showAccessibleViewHint": "Zkontrolujte to v přístupném zobrazení ({0})."
+ },
+ "vs/editor/contrib/inlineCompletions/browser/hintsWidget/hoverParticipant": {
+ "hoverAccessibilityStatusBar": "Tady jsou vložená dokončování.",
+ "inlineSuggestionFollows": "Návrh:"
+ },
+ "vs/editor/contrib/inlineCompletions/browser/hintsWidget/inlineCompletionsHintsWidget": {
+ "content": "{0} ({1})",
+ "next": "Další",
+ "parameterHintsNextIcon": "Ikona pro zobrazení další nápovědy k parametru",
+ "parameterHintsPreviousIcon": "Ikona pro zobrazení předchozí nápovědy k parametru",
+ "previous": "Předchozí"
+ },
+ "vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/components/gutterIndicatorMenu": {
+ "accept": "Přijmout",
+ "goto": "Přejít na",
+ "reject": "Odmítnout",
+ "settings": "Nastavení",
+ "showCollapsed": "Zobrazit sbalené",
+ "showExpanded": "Zobrazit rozbalené",
+ "snooze": "Odložit"
+ },
+ "vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/components/gutterIndicatorView": {
+ "inlineSuggestion": "Vložený návrh"
+ },
+ "vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/theme": {
+ "inlineEdit.gutterIndicator.background": "Barva pozadí indikátoru mezery u okraje vložených úprav",
+ "inlineEdit.gutterIndicator.primaryBackground": "Barva pozadí pro primární indikátor mezery u okraje pro úpravy na řádku",
+ "inlineEdit.gutterIndicator.primaryBorder": "Barva ohraničení primárního indikátoru v mezeře u okraje pro vložené úpravy",
+ "inlineEdit.gutterIndicator.primaryForeground": "Barva popředí pro primární indikátor mezery u okraje vložené úpravy",
+ "inlineEdit.gutterIndicator.secondaryBackground": "Barva pozadí pro sekundární indikátor mezery u okraje pro úpravy na řádku",
+ "inlineEdit.gutterIndicator.secondaryBorder": "Barva ohraničení sekundárního indikátoru v mezeře u okraje pro vložené úpravy",
+ "inlineEdit.gutterIndicator.secondaryForeground": "Barva popředí pro sekundární indikátor mezery u okraje pro úpravy na řádku",
+ "inlineEdit.gutterIndicator.successfulBackground": "Barva pozadí indikátoru úspěšné úpravy mezery v řádku",
+ "inlineEdit.gutterIndicator.successfulBorder": "Barva ohraničení indikátoru úspěchu v mezeře u okraje pro vložené úpravy",
+ "inlineEdit.gutterIndicator.successfulForeground": "Barva popředí pro indikátor úspěšné úpravy mezery u okraje v řádku",
+ "inlineEdit.modifiedBackground": "Barva pozadí upraveného textu ve vložených úpravách",
+ "inlineEdit.modifiedBorder": "Barva ohraničení upraveného textu ve vložených úpravách",
+ "inlineEdit.modifiedChangedLineBackground": "Barva pozadí změněných čar v upraveném textu vložených úprav",
+ "inlineEdit.modifiedChangedTextBackground": "Překryvná barva změněného textu v upraveném textu vložených úprav",
+ "inlineEdit.originalBackground": "Barva pozadí původního textu ve vložených úpravách",
+ "inlineEdit.originalBorder": "Barva ohraničení původního textu ve vložených úpravách",
+ "inlineEdit.originalChangedLineBackground": "Barva pozadí změněných čar v původním textu vložených úprav",
+ "inlineEdit.originalChangedTextBackground": "Překryvná barva změněného textu v původním textu vložených úprav",
+ "inlineEdit.tabWillAcceptModifiedBorder": "Upravená barva rámečku pro widget vložených úprav, pokud se na kartě akceptuje",
+ "inlineEdit.tabWillAcceptOriginalBorder": "Původní barva rámečku pro widget vložených úprav nad původním textem, pokud se na kartě akceptuje"
+ },
+ "vs/editor/contrib/inPlaceReplace/browser/inPlaceReplace": {
+ "InPlaceReplaceAction.next.label": "Nahradit další hodnotou",
+ "InPlaceReplaceAction.previous.label": "Nahradit předchozí hodnotou"
},
- "vs/editor/contrib/inlineCompletions/browser/ghostTextHoverParticipant": {
- "acceptInlineSuggestion": "Přijmout",
- "inlineSuggestionFollows": "Návrh:",
- "showNextInlineSuggestion": "Další",
- "showPreviousInlineSuggestion": "Předchozí"
+ "vs/editor/contrib/insertFinalNewLine/browser/insertFinalNewLine": {
+ "insertFinalNewLine": "Vložit konečný nový řádek"
},
"vs/editor/contrib/lineSelection/browser/lineSelection": {
"expandLineSelection": "Rozbalit výběr řádku"
},
"vs/editor/contrib/linesOperations/browser/linesOperations": {
"duplicateSelection": "Duplikovat výběr",
+ "editor.transformToCamelcase": "Převést na Camel Case",
"editor.transformToKebabcase": "Převést na Kebab Case",
"editor.transformToLowercase": "Převést na malá písmena",
+ "editor.transformToPascalcase": "Převést na Pascal Case",
"editor.transformToSnakecase": "Převést na slova oddělená podtržítkem",
"editor.transformToTitlecase": "Převést na všechna první velká",
"editor.transformToUppercase": "Převést na velká písmena",
@@ -1072,6 +1609,7 @@
"lines.moveDown": "Přesunout řádek dolů",
"lines.moveUp": "Přesunout řádek nahoru",
"lines.outdent": "Zmenšit odsazení řádku",
+ "lines.reverseLines": "Obrácené čáry",
"lines.sortAscending": "Seřadit řádky vzestupně",
"lines.sortDescending": "Seřadit řádky sestupně",
"lines.trimTrailingWhitespace": "Oříznout prázdné znaky na konci",
@@ -1142,6 +1680,8 @@
"peekViewEditorGutterBackground": "Barva pozadí mezery u okraje v editoru náhledu",
"peekViewEditorMatchHighlight": "Barva zvýraznění shody v editoru náhledu",
"peekViewEditorMatchHighlightBorder": "Ohraničení zvýraznění shody v editoru náhledu",
+ "peekViewEditorStickScrollBackground": "Barva pozadí pevného posouvání v editoru zobrazení náhledu.",
+ "peekViewEditorStickyScrollGutterBackground": "Barva pozadí části hřbetu při pevném posouvání v editoru zobrazení náhledu.",
"peekViewResultsBackground": "Barva pozadí seznamu výsledků náhledu",
"peekViewResultsFileForeground": "Barva popředí pro uzly souborů v seznamu výsledků zobrazení náhledu",
"peekViewResultsMatchForeground": "Barva popředí pro uzly řádků v seznamu výsledků zobrazení náhledu",
@@ -1152,12 +1692,19 @@
"peekViewTitleForeground": "Barva názvu zobrazení náhledu",
"peekViewTitleInfoForeground": "Barva informací o názvu zobrazení náhledu"
},
+ "vs/editor/contrib/placeholderText/browser/placeholderText.contribution": {
+ "placeholderForeground": "Barva popředí zástupného textu v editoru"
+ },
"vs/editor/contrib/quickAccess/browser/gotoLineQuickAccess": {
- "cannotRunGotoLine": "Pokud chcete přejít na řádek, otevřete nejdříve textový editor.",
- "gotoLineColumnLabel": "Přejít na řádek {0} a znak {1}",
- "gotoLineLabel": "Přejít na řádek {0}",
- "gotoLineLabelEmpty": "Aktuální řádek: {0}, znak: {1}. Zadejte číslo řádku, na který chcete přejít.",
- "gotoLineLabelEmptyWithLimit": "Aktuální řádek: {0}, znak: {1}. Zadejte číslo řádku mezi 1 a {2}, na který chcete přejít."
+ "gotoLine.ariaLabel": "Aktuální pozice: řádek {0}, sloupec {1}. {2}",
+ "gotoLine.columnPrompt": "Stisknutím klávesy Enter přejděte na řádek {0} nebo zadejte číslo sloupce (od 1 do {1}).",
+ "gotoLine.goToPosition": "Stisknutím klávesy Enter přejdete na řádek {0} ve sloupci {1}.",
+ "gotoLine.lineColumnPrompt": "Stisknutím klávesy Enter přejdete na řádek {0}, případně zadáním dvojtečky : přidáte číslo sloupce.",
+ "gotoLine.linePrompt": "Zadejte číslo řádku, na který chcete přejít (od 1 do {0}).",
+ "gotoLine.noEditor": "Napřed otevřete textový editor, abyste přešli na řádek nebo posun.",
+ "gotoLine.offsetPrompt": "Zadejte pozici znaku, na který chcete přejít (od 1 do {0}).",
+ "gotoLine.offsetPromptZero": "Zadejte pozici znaku, na který chcete přejít (od 0 do {0}).",
+ "gotoLineToggle": "Použít posun založený na nule"
},
"vs/editor/contrib/quickAccess/browser/gotoSymbolQuickAccess": {
"_constructor": "konstruktory ({0})",
@@ -1200,6 +1747,8 @@
"vs/editor/contrib/rename/browser/rename": {
"aria": "Úspěšné přejmenování {0} na {1}. Souhrn: {2}",
"enablePreview": "Povolit nebo zakázat možnost zobrazení náhledu změn před přejmenováním",
+ "focusNextRenameSuggestion": "Přepnout fokus na další návrh přejmenování",
+ "focusPreviousRenameSuggestion": "Přepnout fokus na předchozí návrh přejmenování",
"label": "Přejmenování {0} na {1}",
"no result": "Žádný výsledek",
"quotableLabel": "{0} se přejmenovává na {1}.",
@@ -1208,10 +1757,14 @@
"rename.label": "Přejmenovat symbol",
"resolveRenameLocationFailed": "Při vyhodnocování umístění pro přejmenování došlo k neznámé chybě."
},
- "vs/editor/contrib/rename/browser/renameInputField": {
+ "vs/editor/contrib/rename/browser/renameWidget": {
+ "cancelRenameSuggestionsButton": "Zrušit",
+ "generateRenameSuggestionsButton": "Generovat nové návrhy názvů",
"label": "{0} pro přejmenování, {1} pro náhled",
"renameAriaLabel": "Umožňuje přejmenovat vstup. Zadejte nový název a potvrďte ho stisknutím klávesy Enter.",
- "renameInputVisible": "Určuje, jestli je viditelný widget vstupu pro přejmenování."
+ "renameInputFocused": "Určuje, jestli má widget vstupu pro přejmenování fokus.",
+ "renameInputVisible": "Určuje, jestli je viditelný widget vstupu pro přejmenování.",
+ "renameSuggestionsReceivedAria": "Byly obdrženy návrhy na přejmenování (celkem {0})"
},
"vs/editor/contrib/smartSelect/browser/smartSelect": {
"miSmartSelectGrow": "&&Rozbalit výběr",
@@ -1265,6 +1818,19 @@
"Wednesday": "Středa",
"WednesdayShort": "St"
},
+ "vs/editor/contrib/stickyScroll/browser/stickyScrollActions": {
+ "focusStickyScroll": "Přepnout fokus na pevné posouvání editoru",
+ "goToFocusedStickyScrollLine.title": "Přejít na pevný posuvník s fokusem",
+ "miStickyScroll": "&&Pevné posouvání",
+ "mifocusEditorStickyScroll": "Přepnout &&fokus na pevné posouvání editoru",
+ "mitoggleStickyScroll": "&&Přepnout pevné posouvání editoru",
+ "selectEditor.title": "Vybrat editor",
+ "selectNextStickyScrollLine.title": "Výběr dalšího pevného posuvníku editoru",
+ "selectPreviousStickyScrollLine.title": "Výběr předchozího pevného posuvníku",
+ "stickyScroll": "Pevné posouvání",
+ "toggleEditorStickyScroll": "Přepnout pevné posouvání editoru",
+ "toggleEditorStickyScroll.description": "Umožňuje přepnout/povolit pevné posouvání editoru se zobrazením vnořených oborů v horní části oblasti prohlížení."
+ },
"vs/editor/contrib/suggest/browser/suggest": {
"acceptSuggestionOnEnter": "Určuje, jestli se při stisknutí klávesy Enter vkládají návrhy.",
"suggestWidgetDetailsVisible": "Určuje, jestli jsou viditelné podrobnosti návrhů.",
@@ -1279,8 +1845,8 @@
"accept.insert": "Vložit",
"accept.replace": "Nahradit",
"aria.alert.snippet": "Přijetím {0} došlo k dalším {1} úpravám.",
- "detail.less": "zobrazit více",
- "detail.more": "zobrazit méně",
+ "detail.less": "Zobrazit více",
+ "detail.more": "Zobrazit méně",
"suggest.reset.label": "Obnovit velikost widgetu návrhů",
"suggest.trigger.label": "Aktivovat návrh"
},
@@ -1295,9 +1861,10 @@
"editorSuggestWidgetSelectedForeground": "Barva popředí vybrané položky ve widgetu návrhů",
"editorSuggestWidgetSelectedIconForeground": "Barva popředí ikony vybrané položky ve widgetu návrhů",
"editorSuggestWidgetStatusForeground": "Barva popředí stavu widgetu návrhů",
- "label.desc": "{0}, {1}",
- "label.detail": "{0}{1}",
- "label.full": "{0},{1} {2}",
+ "label": "{0}, {1}",
+ "label.desc": "{0}, {1}, {2}",
+ "label.detail": "{0} {1}, {2}",
+ "label.full": "{0} {1}, {2}, {3}",
"suggest": "Návrh",
"suggestWidget.loading": "Načítání...",
"suggestWidget.noSuggestions": "Žádné návrhy"
@@ -1310,8 +1877,8 @@
"readMore": "Další informace",
"suggestMoreInfoIcon": "Ikona pro další informace ve widgetu pro návrhy"
},
- "vs/editor/contrib/suggest/browser/suggestWidgetStatus": {
- "ddd": "{0} ({1})"
+ "vs/editor/contrib/suggest/browser/wordContextKey": {
+ "desc": "Kontextový klíč, který je true, když je na konci slova Poznámka: Tato možnost je definována pouze v případě, že jsou povolena dokončování tabulátorů."
},
"vs/editor/contrib/symbolIcons/browser/symbolIcons": {
"symbolIcon.arrayForeground": "Barva popředí pro symboly array. Tyto symboly se zobrazují ve widgetu osnovy, popisu cesty a návrhů.",
@@ -1349,6 +1916,7 @@
"symbolIcon.variableForeground": "Barva popředí pro symboly variable. Tyto symboly se zobrazují ve widgetu osnovy, popisu cesty a návrhů."
},
"vs/editor/contrib/toggleTabFocusMode/browser/toggleTabFocusMode": {
+ "tabMovesFocusDescriptions": "Určuje, jestli se bude tabulátorem přesouvat fokus po pracovní ploše nebo jestli se při stisknutí tabulátoru vloží znak tabulátoru do aktuálního editoru. V angličtině se pro toto chování používá označení tab trapping, tab navigation nebo tab focus mode.",
"toggle.tabMovesFocus": "Přepnout přesunutí fokusu pomocí klávesy Tab",
"toggle.tabMovesFocus.off": "Stisknutím klávesy Tab se teď vloží znak tabulátoru.",
"toggle.tabMovesFocus.on": "Stisknutím klávesy Tab se teď přesune fokus na další prvek, který může mít fokus."
@@ -1356,6 +1924,9 @@
"vs/editor/contrib/tokenization/browser/tokenization": {
"forceRetokenize": "Vývojář: vynutit retokenizaci"
},
+ "vs/editor/contrib/unicodeHighlighter/browser/bannerController": {
+ "closeBanner": "Zavřít banner"
+ },
"vs/editor/contrib/unicodeHighlighter/browser/unicodeHighlighter": {
"action.unicodeHighlight.disableHighlightingInComments": "Zakázat zvýrazňování znaků v komentářích",
"action.unicodeHighlight.disableHighlightingInStrings": "Zakázat zvýrazňování znaků v řetězcích",
@@ -1366,6 +1937,7 @@
"unicodeHighlight.adjustSettings": "Upravit nastavení",
"unicodeHighlight.allowCommonCharactersInLanguage": "Povolte znaky Unicode, které jsou v jazyce {0} častější.",
"unicodeHighlight.characterIsAmbiguous": "Znak {0} může být zaměněn se znakem {1}, který je ve zdrojovém kódu běžnější.",
+ "unicodeHighlight.characterIsAmbiguousASCII": "Může dojít k záměně znaku {0} se znakem ASCII {1}, který je ve zdrojovém kódu častější.",
"unicodeHighlight.characterIsInvisible": "Znak {0} není viditelný.",
"unicodeHighlight.characterIsNonBasicAscii": "Znak {0} není základní znak ASCII.",
"unicodeHighlight.configureUnicodeHighlightOptions": "Konfigurovat možnosti zvýraznění Unicode",
@@ -1383,42 +1955,147 @@
},
"vs/editor/contrib/unusualLineTerminators/browser/unusualLineTerminators": {
"unusualLineTerminators.detail": "Soubor {0} obsahuje minimálně jeden neobvyklý ukončovací znak řádku, jako je oddělovač řádků (LS) nebo oddělovač odstavců (PS). \r\n\r\nDoporučujeme je odebrat ze souboru. Lze to nakonfigurovat prostřednictvím nastavení editor.unusualLineTerminators.",
- "unusualLineTerminators.fix": "Odstranit neobvyklé ukončovací znaky řádku",
+ "unusualLineTerminators.fix": "&&Odstranit neobvyklé ukončovací znaky řádku",
"unusualLineTerminators.ignore": "Ignorovat",
"unusualLineTerminators.message": "Zjištěny neobvyklé ukončovací znaky řádku",
"unusualLineTerminators.title": "Neobvyklé ukončovací znaky řádku"
},
- "vs/editor/contrib/wordHighlighter/browser/wordHighlighter": {
+ "vs/editor/contrib/wordHighlighter/browser/highlightDecorations": {
"overviewRulerWordHighlightForeground": "Barva značky přehledového pravítka pro zvýraznění symbolů. Barva nesmí být neprůhledná, aby se nepřekryly dekorace pod tím.",
"overviewRulerWordHighlightStrongForeground": "Barva značky přehledového pravítka pro zvýraznění symbolů s oprávněním k zápisu. Barva nesmí být neprůhledná, aby se nepřekryly dekorace pod tím.",
+ "overviewRulerWordHighlightTextForeground": "Barva značky přehledového pravítka textového výskytu symbolu. Barva nesmí být neprůhledná, aby se nepřekryly dekorace.",
"wordHighlight": "Barva pozadí symbolu při čtení, například při čtení proměnné. Barva nesmí být neprůhledná, aby se nepřekryly dekorace pod tím.",
- "wordHighlight.next.label": "Přejít na další zvýraznění symbolu",
- "wordHighlight.previous.label": "Přejít na předchozí zvýraznění symbolu",
- "wordHighlight.trigger.label": "Aktivovat zvýraznění symbolů",
"wordHighlightBorder": "Barva ohraničení symbolu při čtení, například při čtení proměnné",
"wordHighlightStrong": "Barva pozadí symbolu při zápisu, například při zápisu proměnné. Barva nesmí být neprůhledná, aby se nepřekryly dekorace pod tím.",
- "wordHighlightStrongBorder": "Barva ohraničení symbolu při zápisu, například při zápisu do proměnné"
+ "wordHighlightStrongBorder": "Barva ohraničení symbolu při zápisu, například při zápisu do proměnné",
+ "wordHighlightText": "Barva pozadí textového výskytu symbolu. Barva nesmí být neprůhledná, aby se nepřekryly dekorace.",
+ "wordHighlightTextBorder": "Barva ohraničení textového výskytu symbolu."
+ },
+ "vs/editor/contrib/wordHighlighter/browser/wordHighlighter": {
+ "wordHighlight.next.label": "Přejít na další zvýraznění symbolu",
+ "wordHighlight.previous.label": "Přejít na předchozí zvýraznění symbolu",
+ "wordHighlight.trigger.label": "Aktivovat zvýraznění symbolů"
},
"vs/editor/contrib/wordOperations/browser/wordOperations": {
"deleteInsideWord": "Odstranit slovo"
},
+ "vs/platform/accessibilitySignal/browser/accessibilitySignalService": {
+ "accessibility.signals.chatEditModifiedFile": "Soubor změněný z úprav chatu",
+ "accessibility.signals.chatRequestSent": "Žádost o chat odeslána",
+ "accessibility.signals.chatUserActionRequired": "Je vyžadována akce uživatele chatu.",
+ "accessibility.signals.clear": "Vymazat",
+ "accessibility.signals.codeActionRequestTriggered": "Aktivována žádost o akci kódu",
+ "accessibility.signals.editsKept": "Zachované úpravy",
+ "accessibility.signals.editsUndone": "Úpravy vrácené zpět",
+ "accessibility.signals.format": "Formát",
+ "accessibility.signals.lineHasBreakpoint": "Zarážka",
+ "accessibility.signals.lineHasError": "Chyba na řádku",
+ "accessibility.signals.lineHasFoldedArea": "Sbalené",
+ "accessibility.signals.lineHasWarning": "Upozornění na řádku",
+ "accessibility.signals.nextEditSuggestion": "Návrh dalších úprav",
+ "accessibility.signals.noInlayHints": "Žádné vložené upozornění",
+ "accessibility.signals.notebookCellCompleted": "Buňka poznámkového bloku dokončena",
+ "accessibility.signals.notebookCellFailed": "Buňka poznámkového bloku selhala.",
+ "accessibility.signals.onDebugBreak": "Zarážka",
+ "accessibility.signals.positionHasError": "Chyba",
+ "accessibility.signals.positionHasWarning": "Upozornění",
+ "accessibility.signals.progress": "Průběh",
+ "accessibility.signals.save": "Uložit",
+ "accessibility.signals.taskCompleted": "Úloha dokončena",
+ "accessibility.signals.taskFailed": "Úloha se nezdařila",
+ "accessibility.signals.terminalBell": "Zvonek terminálu",
+ "accessibility.signals.terminalCommandFailed": "Provedení příkazu se nezdařilo",
+ "accessibility.signals.terminalCommandSucceeded": "Příkaz byl úspěšný.",
+ "accessibility.signals.terminalQuickFix": "Rychlá oprava",
+ "accessibilitySignals.chatEditModifiedFile": "Upravit upravený soubor chatu",
+ "accessibilitySignals.chatRequestSent": "Žádost o chat se odeslala.",
+ "accessibilitySignals.chatResponseReceived": "Odpověď chatu byla přijata.",
+ "accessibilitySignals.chatUserActionRequired": "Je vyžadována akce uživatele chatu.",
+ "accessibilitySignals.clear": "Vymazat",
+ "accessibilitySignals.codeActionApplied": "Aplikována akce kódu",
+ "accessibilitySignals.codeActionRequestTriggered": "Aktivována žádost o akci kódu",
+ "accessibilitySignals.diffLineDeleted": "Rozdílový řádek odstraněn",
+ "accessibilitySignals.diffLineInserted": "Vložen rozdílový řádek",
+ "accessibilitySignals.diffLineModified": "Rozdílný řádek změněn",
+ "accessibilitySignals.editsKept": "Zachované úpravy",
+ "accessibilitySignals.editsUndone": "Vrátit zpět úpravy",
+ "accessibilitySignals.format": "Formát",
+ "accessibilitySignals.lineHasBreakpoint.name": "Zarážka na řádku",
+ "accessibilitySignals.lineHasError.name": "Chyba na řádku",
+ "accessibilitySignals.lineHasFoldedArea.name": "Složená oblast na řádku",
+ "accessibilitySignals.lineHasInlineSuggestion.name": "Vložený návrh na řádku",
+ "accessibilitySignals.lineHasWarning.name": "Upozornění na řádku",
+ "accessibilitySignals.nextEditSuggestion.name": "Návrh dalších úprav na řádku",
+ "accessibilitySignals.noInlayHints": "Žádné tipy pro vložené upozornění na řádku",
+ "accessibilitySignals.notebookCellCompleted": "Buňka poznámkového bloku dokončena",
+ "accessibilitySignals.notebookCellFailed": "Buňka poznámkového bloku selhala.",
+ "accessibilitySignals.onDebugBreak.name": "Ladicí program se zastavil na zarážce.",
+ "accessibilitySignals.positionHasError.name": "Chyba na pozici",
+ "accessibilitySignals.positionHasWarning.name": "Upozornění na pozici",
+ "accessibilitySignals.progress": "Průběh",
+ "accessibilitySignals.save": "Uložit",
+ "accessibilitySignals.taskCompleted": "Úloha dokončena",
+ "accessibilitySignals.taskFailed": "Úloha se nezdařila",
+ "accessibilitySignals.terminalBell": "Zvonek terminálu",
+ "accessibilitySignals.terminalCommandFailed": "Příkaz terminálu se nezdařil.",
+ "accessibilitySignals.terminalCommandSucceeded": "Příkaz terminálu byl úspěšný.",
+ "accessibilitySignals.terminalQuickFix.name": "Rychlá oprava terminálu",
+ "accessibilitySignals.voiceRecordingStarted": "Záznam hlasu byl spuštěn.",
+ "accessibilitySignals.voiceRecordingStopped": "Záznam hlasu byl zastaven"
+ },
+ "vs/platform/action/common/actionCommonCategories": {
+ "developer": "Vývojář",
+ "file": "Soubor",
+ "help": "Nápověda",
+ "preferences": "Předvolby",
+ "test": "Test",
+ "view": "Zobrazit"
+ },
+ "vs/platform/actions/browser/buttonbar": {
+ "labelWithKeybinding": "{0} ({1})",
+ "moreActions": "Další akce"
+ },
+ "vs/platform/actions/browser/dropdownActionViewItemWithKeybinding": {
+ "titleAndKb": "{0} ({1})"
+ },
"vs/platform/actions/browser/menuEntryActionViewItem": {
+ "content": "{0} ({1})",
+ "content2": "{1} až {0}",
"titleAndKb": "{0} ({1})",
"titleAndKbAndAlt": "{0}\r\n[{1}] {2}"
},
+ "vs/platform/actions/browser/toolbar": {
+ "hide": "Skrýt",
+ "resetThisMenu": "Obnovit nabídku"
+ },
"vs/platform/actions/common/menuResetAction": {
- "cat": "Zobrazit",
- "title": "Obnovit skryté nabídky"
+ "title": "Obnovit všechny nabídky"
},
"vs/platform/actions/common/menuService": {
+ "configure keybinding": "Nakonfigurovat klávesovou zkratku",
"hide.label": "Skrýt {0}"
},
+ "vs/platform/actionWidget/browser/actionList": {
+ "customQuickFixWidget": "Widget akce",
+ "customQuickFixWidget.labels": "{0}, důvod zakázání: {1}",
+ "label": "Stisknutím {0} použijete",
+ "label-preview": "{0} pro použití, {1} pro verzi Preview"
+ },
+ "vs/platform/actionWidget/browser/actionWidget": {
+ "acceptSelected.title": "Přijmout vybranou akci",
+ "actionBar.toggledBackground": "Barva pozadí pro přepínané položky akcí na panelu akcí.",
+ "codeActionMenuVisible": "Určuje, jestli je seznam widgetů akcí viditelný.",
+ "hideCodeActionWidget.title": "Skrýt widget akcí",
+ "previewSelected.title": "Zobrazit náhled vybrané akce",
+ "selectNextCodeAction.title": "Vybrat další akci",
+ "selectPrevCodeAction.title": "Vybrat předchozí akci"
+ },
"vs/platform/configuration/common/configurationRegistry": {
"config.policy.duplicate": "Nelze zaregistrovat {0}. Přidružená zásada {1} je už zaregistrovaná v {2}.",
"config.property.duplicate": "Nelze zaregistrovat {0}. Tato vlastnost už je zaregistrovaná.",
"config.property.empty": "Nejde zaregistrovat prázdnou vlastnost.",
"config.property.languageDefault": "Nelze zaregistrovat {0}. Odpovídá to vzoru vlastnosti \\\\ [. * \\\\]$ pro popis nastavení editoru specifického pro daný jazyk. Použijte příspěvek configurationDefaults.",
- "defaultLanguageConfiguration.description": "Nakonfigurujte nastavení, které se má přepsat pro jazyk {0}.",
+ "defaultLanguageConfiguration.description": "Nakonfigurujte nastavení, které se má přepsat pro {0}.",
"defaultLanguageConfigurationOverrides.title": "Potlačení výchozí konfigurace jazyka",
"overrideSettings.defaultDescription": "Nakonfigurujte nastavení editoru, které se má přepsat pro daný jazyk.",
"overrideSettings.errorMessage": "Toto nastavení nepodporuje konfiguraci podle jazyka."
@@ -1426,38 +2103,77 @@
"vs/platform/contextkey/browser/contextKeyService": {
"getContextKeyInfo": "Příkaz, který vrací informace o kontextových klíčích"
},
+ "vs/platform/contextkey/common/contextkey": {
+ "contextkey.parser.error.closingParenthesis": "pravá závorka „)“",
+ "contextkey.parser.error.emptyString": "Prázdný výraz kontextového klíče",
+ "contextkey.parser.error.emptyString.hint": "Nezapomněli jste napsat výraz? Můžete také nastavit false nebo true, aby vždy došlo k vyhodnocení jako false nebo true.",
+ "contextkey.parser.error.expectedButGot": "Očekáváno: {0}\r\nPřijato:{1}",
+ "contextkey.parser.error.noInAfterNot": "„In“ po „not“.",
+ "contextkey.parser.error.unexpectedEOF": "Neočekávaný konec výrazu",
+ "contextkey.parser.error.unexpectedEOF.hint": "Nezapomněli jste vložit kontextový klíč?",
+ "contextkey.parser.error.unexpectedToken": "Neočekávaný token",
+ "contextkey.parser.error.unexpectedToken.hint": "Nezapomněli jste před token vložit && nebo ||?",
+ "contextkey.scanner.errorForLinter": "Neočekávaný token.",
+ "contextkey.scanner.errorForLinterWithHint": "Neočekávaný token. Tip: {0}"
+ },
"vs/platform/contextkey/common/contextkeys": {
"inputFocus": "Určuje, jestli je fokus klávesnice uvnitř vstupního pole.",
"isIOS": "Určuje, jestli je operačním systémem iOS",
"isLinux": "Určuje, jestli je operačním systémem Linux.",
"isMac": "Určuje, jestli je operačním systémem macOS.",
"isMacNative": "Určuje, jestli je operačním systémem macOS na platformě bez prohlížeče.",
+ "isMobile": "Jestli je platforma mobilní webový prohlížeč",
"isWeb": "Určuje, jestli je daná platforma webový prohlížeč.",
"isWindows": "Určuje, jestli je operačním systémem Windows.",
"productQualityType": "Typ kvality VS Code"
},
+ "vs/platform/contextkey/common/scanner": {
+ "contextkey.scanner.hint.didYouForgetToEscapeSlash": "Nezapomněli jste uvozit znak lomítka (/)? Před řídicí znak vložte dvě zpětná lomítka, např. \\\\/.",
+ "contextkey.scanner.hint.didYouForgetToOpenOrCloseQuote": "Nezapomněli jste nabídku otevřít nebo zavřít?",
+ "contextkey.scanner.hint.didYouMean1": "Měli jste na mysli {0}?",
+ "contextkey.scanner.hint.didYouMean2": "Měli jste na mysli {0} nebo {1}?",
+ "contextkey.scanner.hint.didYouMean3": "Měli jste na mysli {0}, {1} nebo {2}?"
+ },
+ "vs/platform/dialogs/browser/dialog": {
+ "aboutDetail": "Verze: {0}\r\nPotvrzení: {1}\r\nDatum: {2}\r\nProhlížeč: {3}"
+ },
"vs/platform/dialogs/common/dialogs": {
+ "cancelButton": "Zrušit",
"moreFile": "...nezobrazuje se 1 další soubor",
- "moreFiles": "...nezobrazuje se několik dalších souborů (celkem {0})"
+ "moreFiles": "...nezobrazuje se několik dalších souborů (celkem {0})",
+ "okButton": "&&OK",
+ "yesButton": "&&Ano"
+ },
+ "vs/platform/dialogs/electron-browser/dialog": {
+ "aboutDetail": "Verze: {0}\r\nPotvrzení změn: {1}\r\nDatum: {2}\r\nElectron: {3}\r\nElectronBuildId: {4}\r\nChromium: {5}\r\nNode.js: {6}\r\nV8: {7}\r\nOS: {8}"
},
"vs/platform/dialogs/electron-main/dialogMainService": {
"open": "Otevřít",
"openFile": "Otevřít soubor",
"openFolder": "Otevřít složku",
"openWorkspace": "&&Otevřít",
- "openWorkspaceTitle": "Otevřít pracovní prostor ze souboru"
+ "openWorkspaceTitle": "Otevřít pracovní prostor ze souboru",
+ "selectFolder": "&&Vybrat složku"
},
"vs/platform/dnd/browser/dnd": {
"fileTooLarge": "Soubor je příliš velký na to, aby se dal otevřít v editoru bez názvu. Nahrajte prosím tento soubor nejdříve do Průzkumníka souborů a pak to zkuste znovu."
},
"vs/platform/environment/node/argv": {
"add": "Přidat složky do posledního aktivního okna",
+ "addFile": "Do relace chatu přidejte soubory jako kontext.",
+ "addMcp": "Přidá definici serveru protokolu Model Context do profilu uživatele. Přijímá vstup JSON ve formátu {\"name\":\"server-name\",\"command\":...}",
"category": "Umožňuje filtrovat nainstalovaná rozšíření podle zadané kategorie, když se použije možnost --list-extensions.",
+ "chatMaximize": "Maximalizovat zobrazení relace chatu",
+ "chatMode": "Režim, který se má použít pro relaci chatu. Dostupné možnosti: „ask“, „edit“, „agent“ nebo identifikátor vlastního režimu. Výchozí hodnota je „agent“.",
+ "cliDataDir": "Adresář, do kterého se mají ukládat metadata CLI.",
+ "cliPrompt": "výzva",
"deprecated.useInstead": "Použijte místo ní {0}.",
"diff": "Umožňuje porovnat dva soubory.",
- "disableExtension": "Umožňuje zakázat rozšíření.",
- "disableExtensions": "Umožňuje zakázat všechna nainstalovaná rozšíření.",
+ "disableChromiumSandbox": "Tuto možnost použijte pouze v případě, že je nutné spustit aplikaci jako uživatel sudo v Linuxu nebo při spuštění jako uživatel se zvýšenými oprávněními v prostředí AppLockeru ve Windows.",
+ "disableExtension": "Zakažte zadané rozšíření. Tato možnost není trvalá a platí jenom v případě, že příkaz otevře nové okno.",
+ "disableExtensions": "Zakažte všechna nainstalovaná rozšíření. Tato možnost není trvalá a platí jenom v případě, že příkaz otevře nové okno.",
"disableGPU": "Umožňuje zakázat hardwarovou akceleraci GPU.",
+ "disableLCDText": "Zakázat vykreslování písma LCD.",
"experimentalApis": "Umožňuje povolit navrhované funkce rozhraní API pro rozšíření. Je možné zadat jedno nebo více ID rozšíření pro povolení jednotlivých rozšíření.",
"extensionHomePath": "Umožňuje nastavit kořenovou cestu pro rozšíření.",
"extensionsManagement": "Správa rozšíření",
@@ -1469,25 +2185,33 @@
"installExtension": "Nainstaluje nebo aktualizuje rozšíření. Argumentem je buď ID rozšíření, nebo cesta k souboru VSIX. Identifikátor rozšíření je ${publisher}.${name}. Pokud chcete provést aktualizaci na nejnovější verzi, použijte argument --force. Pokud chcete nainstalovat konkrétní verzi, zadejte @${version}. Příklad: vscode.csharp@1.2.3.",
"listExtensions": "Zobrazí seznam nainstalovaných rozšíření.",
"locale": "Národní prostředí, které se má použít (například en-US nebo zh-TW).",
- "log": "Úroveň protokolu, která se má použít. Výchozí hodnota je info. Povolené hodnoty jsou critical, error, warn, info, debug, trace a off.",
- "maxMemory": "Maximální velikost paměti pro okno (v MB)",
+ "locateShellIntegrationPath": "Vytiskněte cestu k integračnímu skriptu prostředí terminálu. Povolené hodnoty jsou bash, pwsh, zsh nebo fish.",
+ "log": "Úroveň protokolu, která se má použít Výchozí hodnota je info. Povolené hodnoty jsou critical, error, warn, info, debug, trace, off. Úroveň protokolu rozšíření můžete také nakonfigurovat předáním ID rozšíření a úrovně protokolu v následujícím formátu: ${publisher}.${name}:${logLevel}. Příklad: vscode.csharp:trace. Může přijmout jednu nebo více takových položek.",
+ "mcp": "Protokol kontextu modelu",
"merge": "Proveďte trojcestné sloučení zadáním cest ke dvěma upraveným verzím souboru, společného původu obou upravených verzí a výstupního souboru pro uložení výsledků sloučení.",
"newWindow": "Vynutit otevření nového okna",
+ "newWindowForChat": "Vynutit otevření prázdného okna pro relaci chatu",
"options": "možnosti",
"optionsUpperCase": "Možnosti",
"paths": "cesty",
"prof-startup": "Při spouštění spustit profiler procesoru",
+ "profileName": "Otevře zadanou složku nebo pracovní prostor s daným profilem a přidruží profil k pracovnímu prostoru. Pokud profil neexistuje, vytvoří se nový prázdný.",
+ "prompt": "Výzva, která se má použít jako chat.",
+ "remove": "Odebere složky z posledního aktivního okna.",
"reuseWindow": "Umožňuje vynutit otevření souboru nebo složky v již otevřeném okně.",
+ "reuseWindowForChat": "Vynutit použití posledního aktivního okna pro relaci chatu",
"showVersions": "Umožňuje zobrazit verze nainstalovaných rozšíření, když se použije možnost --list-extensions.",
"status": "Umožňuje vytisknout informace o použití a diagnostické informace.",
- "stdinUnix": "Pokud se má číst z stdin, připojte znak „-“ (například ps aux | grep code | {0} -).",
- "stdinWindows": "Pokud se má číst výstup z jiného programu, připojte znak „-“ (například echo Hello World | {0} -).",
+ "stdinUsage": "Pokud se má číst z stdin, připojte znak „-“ (například „{0}“)",
+ "subcommands": "Podpříkazy",
"telemetry": "Umožňuje zobrazit všechny události telemetrie shromážděné prostřednictvím VS Code.",
+ "transient": "Spustit s dočasnými datovými a rozšiřujícími adresáři, jako by byl spuštěn poprvé.",
"troubleshooting": "Řešení problémů",
"turn sync": "Zapnout nebo vypnout synchronizaci",
"uninstallExtension": "Odinstaluje rozšíření.",
"unknownCommit": "Neznámé potvrzení",
"unknownVersion": "Neznámá verze",
+ "updateExtensions": "Aktualizujte nainstalovaná rozšíření.",
"usage": "Použití",
"userDataDir": "Určuje adresář, ve kterém jsou uložena uživatelská data. Lze použít k otevření více jedinečných instancí Code.",
"verbose": "Umožňuje vytisknout podrobný výstup (implikuje --wait).",
@@ -1499,33 +2223,62 @@
"emptyValue": "Možnost „{0}“ vyžaduje neprázdnou hodnotu. Možnost se ignoruje.",
"gotoValidation": "Argumenty v režimu --goto by měly být ve formátu SOUBOR(:ŘÁDEK(:ZNAK)).",
"multipleValues": "Možnost {0} je definována více než jednou. Použije se hodnota {1}.",
- "unknownOption": "Upozornění: Hodnota {0} není uvedena v seznamu známých možností, přesto byla předána prostředí Electron/Chromium."
+ "unknownOption": "Upozornění: Hodnota {0} není uvedena v seznamu známých možností, přesto byla předána prostředí Electron/Chromium.",
+ "unknownSubCommandOption": "Upozornění: {0} není v seznamu známých možností pro podpříkaz {1}."
},
"vs/platform/extensionManagement/common/abstractExtensionManagementService": {
"MarketPlaceDisabled": "Marketplace není povolen.",
- "Not a Marketplace extension": "Přeinstalovat lze pouze rozšíření z Marketplace.",
- "incompatible platform": "Rozšíření „{0}“ není k dispozici v {1} pro {2}.",
+ "incompatible platform": "Rozšíření {0} není k dispozici v {1} pro {2}.",
+ "incompatibleAPI": "Rozšíření {0} nejde nainstalovat. {1}",
+ "learn why": "Zjistěte proč",
"malicious extension": "Rozšíření nelze nainstalovat, protože bylo nahlášeno jako problematické.",
"multipleDependentsError": "Rozšíření {0} není možné odinstalovat. Závisí na něm rozšíření {1}, {2} a jedno další.",
"multipleIndirectDependentsError": "Rozšíření {0} není možné odinstalovat. Vedlo by to i k odinstalaci rozšíření {1}, na němž závisí rozšíření {2}, {3} a některá další.",
+ "not allowed to install": "Toto rozšíření nelze nainstalovat, protože {0}",
"notFoundCompatibleDependency": "Rozšíření {0} nelze nainstalovat, protože není kompatibilní s aktuální verzí {1} (verze {2}).",
- "notFoundCompatiblePrereleaseDependency": "Nejde nainstalovat předběžnou verzi rozšíření {0}, protože není kompatibilní s aktuální verzí {1}(verze {2}).",
+ "notFoundDeprecatedReplacementExtension": "Rozšíření {0} se nedá nainstalovat, protože je zastaralé a náhradní rozšíření {1} nejde najít.",
"notFoundReleaseExtension": "Není možné nainstalovat vydanou verzi rozšíření {0}, protože nemá žádnou vydanou verzi.",
"singleDependentError": "Rozšíření {0} není možné odinstalovat. Závisí na něm rozšíření {1}.",
"singleIndirectDependentError": "Rozšíření {0} není možné odinstalovat. Vedlo by to i k odinstalaci rozšíření {1}, na němž závisí rozšíření {2}.",
"twoDependentsError": "Rozšíření {0} není možné odinstalovat. Závisí na něm rozšíření {1} a {2}.",
"twoIndirectDependentsError": "Rozšíření {0} není možné odinstalovat. Vedlo by to i k odinstalaci rozšíření {1}, na němž závisí rozšíření {2} a {3}."
},
+ "vs/platform/extensionManagement/common/allowedExtensionsService": {
+ "extension prerelease not allowed": "předběžné verze tohoto rozšíření nejsou v [seznamu povolených]({0})",
+ "prerelease versions from this publisher not allowed": "předběžné verze od tohoto vydavatele nejsou v [seznamu povolených]({1})",
+ "publisher not allowed": "rozšíření od tohoto vydavatele nejsou v [seznamu povolených]({1})",
+ "specific extension not allowed": "není v [seznamu povolených]({0})",
+ "specific version of extension not allowed": "verze {0} tohoto rozšíření není v [seznamu povolených]({1})"
+ },
"vs/platform/extensionManagement/common/extensionManagement": {
+ "extension.publisher.allow.description": "Povolení nebo zakázání všech rozšíření od vydavatele",
"extensions": "Rozšíření",
+ "extensions.allow.all.description": "Povolení nebo zakázání všech rozšíření",
+ "extensions.allow.all.disable": "Zakázání všech rozšíření",
+ "extensions.allow.all.enable": "Povolení všech rozšíření",
+ "extensions.allow.description": "Povolení nebo zakázání rozšíření",
+ "extensions.allow.version.description": "Povolení nebo zakázání konkrétní verze rozšíření K určení konkrétní verze platformy použijte formát „platform@1.2.3“, například „win32-x64@1.2.3“. Podporované platformy jsou win32-x64, win32-arm64, linux-x64, linux-arm64, linux-armhf, alpine-x64, alpine-arm64, dashboard-x64, unix-arm64 a unix-arm64.",
+ "extensions.allowed": "Zadejte seznam rozšíření, která mohou být použita. Pomáhá udržovat zabezpečené a konzistentní vývojové prostředí tím, že je omezeno používání neautorizovaných rozšíření. Další informace o konfiguraci nastavení najdete v části [Jak nakonfigurovat povolená rozšíření](https://code.visualstudio.com/docs/setup/enterprise#_configure-allowed-extensions).",
+ "extensions.allowed.all": "Všechna rozšíření jsou povolena.",
+ "extensions.allowed.disable.desc": "Rozšíření není povoleno.",
+ "extensions.allowed.disable.stable.desc": "Povolení pouze stabilních verzí rozšíření",
+ "extensions.allowed.enable.desc": "Rozšíření je povoleno.",
+ "extensions.allowed.none": "Nejsou povolena žádná rozšíření.",
+ "extensions.allowed.policy": "Zadejte seznam rozšíření, která mohou být použita. Pomáhá to udržovat zabezpečené a konzistentní vývojové prostředí tím, že je omezeno používání neautorizovaných rozšíření. Další informace: https://code.visualstudio.com/docs/setup/enterprise#_configure-allowed-extensions",
+ "extensions.publisher.allowed.disable.desc": "Všechna rozšíření od vydavatele nejsou povolena.",
+ "extensions.publisher.allowed.disable.stable.desc": "Povolení pouze stabilních verzí rozšíření od vydavatele",
+ "extensions.publisher.allowed.enable.desc": "Všechna rozšíření od vydavatele jsou povolena.",
+ "extensionsConfigurationTitle": "Rozšíření",
"preferences": "Předvolby"
},
- "vs/platform/extensionManagement/common/extensionManagementCLIService": {
+ "vs/platform/extensionManagement/common/extensionManagementCLI": {
"alreadyInstalled": "Rozšíření {0} už je nainstalované.",
"alreadyInstalled-checkAndUpdate": "Rozšíření {0} v{1} už je nainstalované. Použijte parametr --force, jestli ho chcete aktualizovat na nejnovější verzi, nebo zadejte @, jestli chcete nainstalovat konkrétní verzi, třeba: {2}@1.2.3",
"builtin": "Rozšíření {0} je integrované a nedá se odinstalovat.",
- "cancelInstall": "Byla zrušena instalace rozšíření {0}.",
"cancelVsixInstall": "Byla zrušena instalace rozšíření {0}.",
+ "error while installing extensions": "Chyba při instalaci rozšíření: {0}",
+ "errorInstallingExtension": "Chyba při instalaci rozšíření: {0}: {1}",
+ "errorUpdatingExtension": "Chyba při aktualizaci rozšíření {0}: {1}",
"forceDowngrade": "Je už nainstalovaná novější verze rozšíření {0} (verze {1}). Pokud chcete downgradovat na starší verzi, použijte možnost --force.",
"forceUninstall": "Uživatel označil rozšíření {0} jako integrované. Pokud ho chcete odinstalovat, použijte prosím možnost --force.",
"installation failed": "Nepovedlo se nainstalovat rozšíření: {0}",
@@ -1542,49 +2295,51 @@
"successInstall": "Rozšíření {0} verze {1} bylo úspěšně nainstalováno.",
"successUninstall": "Rozšíření {0} bylo úspěšně odinstalováno!",
"successUninstallFromLocation": "Rozšíření {0} se úspěšně odinstalovalo z {1}.",
+ "successUpdate": "Rozšíření {0} verze {1} bylo úspěšně aktualizováno.",
"successVsixInstall": "Rozšíření {0} bylo úspěšně nainstalováno.",
"uninstalling": "Odinstalovává se {0}...",
+ "updateExtensionsNewVersionsAvailable": "Aktualizují se rozšíření: {0}",
+ "updateExtensionsNoExtensions": "Není k dispozici žádné rozšíření, které by se dalo aktualizovat.",
+ "updateExtensionsQuery": "Načítají se nejnovější verze pro rozšíření {0}.",
"updateMessage": "Rozšíření {0} se aktualizuje na verzi {1}.",
"useId": "Zkontrolujte, že používáte úplné ID rozšíření, včetně vydavatele, například {0}."
},
+ "vs/platform/extensionManagement/common/extensionNls": {
+ "missingNLSKey": "Nepovedlo se najít zprávu pro klíč {0}."
+ },
"vs/platform/extensionManagement/common/extensionsScannerService": {
"fileReadFail": "Nelze číst soubor {0}: {1}.",
"jsonInvalidFormat": "Neplatný formát {0}: Očekával se objekt JSON.",
"jsonParseFail": "Nepovedlo se parsovat {0}: [{1}, {2}] {3}.",
"jsonParseInvalidType": "Neplatný soubor manifestu {0}: Není to objekt JSON.",
- "jsonsParseReportErrors": "Nepovedlo se parsovat {0}: {1}.",
- "missingNLSKey": "Nepovedlo se najít zprávu pro klíč {0}."
- },
- "vs/platform/extensionManagement/electron-sandbox/extensionTipsService": {
- "exeRecommended": "V systému máte nainstalovaný produkt {0}. Chcete pro něho nainstalovat doporučená rozšíření?"
+ "jsonsParseReportErrors": "Nepovedlo se parsovat {0}: {1}."
},
"vs/platform/extensionManagement/node/extensionManagementService": {
"cannot read": "Nelze přečíst rozšíření z {0}.",
"errorDeleting": "Při instalaci rozšíření {1} se nepovedlo odstranit existující složku {0}. Odstraňte prosím složku ručně a zkuste to znovu.",
- "exitCode": "Rozšíření nelze nainstalovat. Před přeinstalací prosím ukončete a znovu spusťte VS Code.",
"incompatible": "Rozšíření nelze {0} nainstalovat, protože není kompatibilní s VS Code {1}.",
- "notInstalled": "Rozšíření {0} není nainstalované.",
- "quitCode": "Rozšíření nelze nainstalovat. Před přeinstalací prosím ukončete a znovu spusťte VS Code.",
- "removeError": "Chyba při odebírání rozšíření: {0}. Před opakováním pokusu prosím ukončete a znovu spusťte VS Code.",
- "renameError": "Při přejmenovávání {0} na {1} došlo k neznámé chybě.",
- "restartCode": "Před přeinstalací {0} prosím restartujte VS Code."
+ "invalidManifest": "Rozšíření {0} se nedá nainstalovat kvůli neshodě manifestu s Marketplace.",
+ "notAllowed": "Toto rozšíření nelze nainstalovat, protože {0}",
+ "restartCode": "Před přeinstalací {0} prosím restartujte VS Code.",
+ "signature verification failed": "Ověření podpisu se nezdařilo s chybou {0}.",
+ "signature verification not executed": "Ověření podpisu nebylo provedeno."
},
"vs/platform/extensionManagement/node/extensionManagementUtil": {
"invalidManifest": "Neplatný balíček VSIX: package.json není soubor JSON."
},
"vs/platform/extensions/common/extensionValidator": {
+ "apiProposalMismatch1": "Toto rozšíření používá návrh rozhraní API {0}, který není kompatibilní s aktuální verzí VS Code.",
+ "apiProposalMismatch2": "Toto rozšíření používá návrhy rozhraní API {0} a {1}, které nejsou kompatibilní s aktuální verzí VS Code.",
"extensionDescription.activationEvents1": "Vlastnost {0} může být vynechána nebo musí být typu string[].",
- "extensionDescription.activationEvents2": "Vlastnosti {0} a {1} musí být buď obě zadány, nebo musí být obě vynechány.",
+ "extensionDescription.activationEvents2": "Vlastnost {0} by měla být vynechána, pokud rozšíření nemá vlastnost {1} nebo {2}.",
"extensionDescription.browser1": "Vlastnost {0} může být vynechána nebo musí být typu string.",
"extensionDescription.browser2": "Očekávalo se, že bude browser ({0}) zahrnuto do složky rozšíření ({1}). To by mohlo způsobit, že rozšíření nebude přenosné.",
- "extensionDescription.browser3": "Vlastnosti {0} a {1} musí být buď obě zadány, nebo musí být obě vynechány.",
"extensionDescription.engines": "vlastnost {0} je povinná a musí být typu object",
"extensionDescription.engines.vscode": "Vlastnost {0} je povinná a musí být typu string.",
"extensionDescription.extensionDependencies": "Vlastnost {0} může být vynechána nebo musí být typu string[].",
"extensionDescription.extensionKind": "Vlastnost{0} je možné definovat pouze v případě, že je definována také vlastnost main.",
"extensionDescription.main1": "Vlastnost {0} může být vynechána nebo musí být typu string.",
"extensionDescription.main2": "Očekávalo se, že bude main ({0}) zahrnuto do složky rozšíření ({1}). To by mohlo způsobit, že rozšíření nebude přenosné.",
- "extensionDescription.main3": "Vlastnosti {0} a {1} musí být buď obě zadány, nebo musí být obě vynechány.",
"extensionDescription.name": "Vlastnost {0} je povinná a musí být typu string.",
"extensionDescription.publisher": "vydavatel vlastnosti musí být typu string",
"extensionDescription.version": "Vlastnost {0} je povinná a musí být typu string.",
@@ -1606,9 +2361,27 @@
"fileSystemNotAllowedError": "Nedostatečná oprávnění. Zkuste to prosím znovu a povolte operaci.",
"fileSystemRenameError": "Přejmenování je podporováno pouze u souborů."
},
+ "vs/platform/files/browser/indexedDBFileSystemProvider": {
+ "dirIsNotEmpty": "Adresář není prázdný",
+ "fileExceedsStorageQuota": "Soubor překračuje dostupnou kvótu úložiště.",
+ "fileIsDirectory": "Soubor je adresář",
+ "fileNotDirectory": "Soubor není adresář",
+ "fileNotExists": "Soubor neexistuje.",
+ "internal": "Ve zprostředkovateli systému souborů IndexedDB došlo k vnitřní chybě. ({0})"
+ },
+ "vs/platform/files/common/files": {
+ "sizeB": "{0} B",
+ "sizeGB": "{0} GB",
+ "sizeKB": "{0} kB",
+ "sizeMB": "{0} MB",
+ "sizeTB": "{0} TB",
+ "unknownError": "Neznámá chyba"
+ },
"vs/platform/files/common/fileService": {
+ "deleteFailedAtomicUnsupported": "Nepovedlo se atomicky odstranit soubor „{0}“, protože ho zprostředkovatel nepodporuje.",
"deleteFailedNonEmptyFolder": "Nelze odstranit složku {0}, která není prázdná.",
"deleteFailedNotFound": "Nejde odstranit neexistující soubor{0}.",
+ "deleteFailedTrashAndAtomicUnsupported": "Nepovedlo se atomicky odstranit soubor „{0}“, protože je povolené použití koše.",
"deleteFailedTrashUnsupported": "Soubor {0} nelze odstranit prostřednictvím koše, protože to zprostředkovatel nepodporuje.",
"err.read": "Soubor {0} se nedá přečíst ({1}).",
"err.readonly": "Nelze upravit soubor {0}, který je jen pro čtení.",
@@ -1622,53 +2395,50 @@
"fileTooLargeError": "Nelze číst soubor {0}, který je příliš velký pro otevření.",
"invalidPath": "Nepovedlo se rozpoznat zprostředkovatele systému souborů s relativní cestou k souboru {0}.",
"mkdirExistsError": "Nepovedlo se vytvořit složku {0}, která už existuje, ale není adresářem.",
- "noProviderFound": "Pro prostředek {0} nebyl nalezen žádný zprostředkovatel systému souborů.",
+ "noProviderFound": "ENOPRO: Pro prostředek {0} nebyl nalezen žádný zprostředkovatel systému souborů.",
"unableToMoveCopyError1": "V systému souborů, ve kterém se nerozlišují malá a velká písmena, nelze kopírovat, pokud se název zdroje {0} a cíle {1} liší v cestě pouze velikostí písmen.",
"unableToMoveCopyError2": "Pokud je zdrojové umístění {0} nadřazené cílovému umístění {1}, nelze provést přesunutí/kopírování.",
"unableToMoveCopyError3": "{0} nelze přesunout/zkopírovat, protože cíl {1} už v umístění existuje.",
"unableToMoveCopyError4": "{0} nelze přesunout/kopírovat do {1}, protože by soubor nahradil složku, ve které je uložen.",
+ "writeFailedAtomicUnlock": "Nepovedlo se odemknout soubor „{0}“, protože je povolený atomický zápis.",
+ "writeFailedAtomicUnsupported1": "Nejde atomicky zapsat soubor „{0}“, protože ho zprostředkovatel nepodporuje.",
+ "writeFailedAtomicUnsupported2": "Nejde atomicky zapsat soubor „{0}“, protože zprostředkovatel nepodporuje zápis bez vyrovnávací paměti.",
"writeFailedUnlockUnsupported": "Soubor {0} se nedá odemknout, protože to poskytovatel nepodporuje."
},
- "vs/platform/files/common/files": {
- "sizeB": "{0} B",
- "sizeGB": "{0} GB",
- "sizeKB": "{0} kB",
- "sizeMB": "{0} MB",
- "sizeTB": "{0} TB",
- "unknownError": "Neznámá chyba"
- },
"vs/platform/files/common/io": {
- "fileTooLargeError": "Soubor je pro otevření příliš velký.",
- "fileTooLargeForHeapError": "Pokud chcete otevřít soubor této velikosti, musíte provést restartování a povolit použití většího množství paměti."
+ "fileTooLargeError": "Soubor je pro otevření příliš velký."
},
"vs/platform/files/electron-main/diskFileSystemProviderServer": {
- "binFailed": "{0} se nepovedlo přesunout do koše.",
- "trashFailed": "{0} se nepovedlo přesunout do koše."
+ "binFailed": "{0} se nepovedlo přesunout do koše ({1}).",
+ "trashFailed": "{0} se nepovedlo přesunout do koše ({1})."
},
"vs/platform/files/node/diskFileSystemProvider": {
"copyError": "{0} nelze zkopírovat do {1} ({2}).",
- "fileCopyErrorExists": "Soubor už v cíli existuje.",
- "fileCopyErrorPathCase": "Soubor nelze kopírovat do stejné cesty lišící se v názvu pouze velikostí písmen.",
+ "fileCopyErrorPathCase": "Soubor nelze zkopírovat do stejné cesty s jiným případem cesty",
"fileExists": "Soubor už existuje.",
+ "fileMoveCopyErrorExists": "Soubor v cíli už existuje, a proto se nepřesune ani nezkopíruje, dokud se neurčí přepsání",
+ "fileMoveCopyErrorNotFound": "Soubor, který se má přesunout nebo zkopírovat, neexistuje.",
"fileNotExists": "Soubor neexistuje",
"moveError": "{0} nelze přesunout do {1} ({2})."
},
"vs/platform/history/browser/contextScopedHistoryWidget": {
"suggestWidgetVisible": "Určuje, jestli jsou viditelné návrhy."
},
- "vs/platform/issue/electron-main/issueMainService": {
- "cancel": "&&Zrušit",
- "confirmCloseIssueReporter": "Váš vstup se neuloží. Opravdu chcete toto okno zavřít?",
- "issueReporter": "Sestavy problémů",
- "issueReporterWriteToClipboard": "Dat je příliš mnoho, takže je nelze přímo odeslat na GitHub. Data budou zkopírována do schránky. Vložte je prosím na stránku problému na GitHubu, která se otevře.",
- "local": "Místní",
- "ok": "&&OK",
- "processExplorer": "Průzkumník procesů",
- "yes": "&&Ano"
+ "vs/platform/hover/browser/hoverWidget": {
+ "hoverhint": "Podržením {0} klávesy najeďte myší"
+ },
+ "vs/platform/hover/browser/updatableHoverWidget": {
+ "iconLabel.loading": "Probíhá načítání..."
},
"vs/platform/keybinding/common/abstractKeybindingService": {
"first.chord": "({0}) byla stisknuta. Čekání na druhou klávesu...",
- "missing.chord": "Kombinace kláves ({0}, {1}) není příkaz."
+ "missing.chord": "Kombinace kláves ({0}, {1}) není příkaz.",
+ "next.chord": "Došlo ke stisknutí ({0}). Čeká se na další klíč akordu"
+ },
+ "vs/platform/keyboardLayout/common/keyboardConfig": {
+ "dispatch": "Řídí logiku odeslání klávesových zkratek. Možné hodnoty code (doporučeno) nebo keyCode",
+ "keyboardConfigurationTitle": "Klávesnice",
+ "mapAltGrToCtrlAlt": "Určuje, jestli se má modifikátor AltGraph+ považovat za Ctrl+Alt+."
},
"vs/platform/languagePacks/common/languagePacks": {
"currentDisplayLanguage": " (Aktuální)"
@@ -1681,6 +2451,9 @@
"vs/platform/list/browser/listService": {
"Fast Scroll Sensitivity": "Multiplikátor rychlosti posouvání při podržené klávese Alt",
"Mouse Wheel Scroll Sensitivity": "Multiplikátor, který se má použít pro hodnoty deltaX a deltaY událostí posouvání kolečka myši",
+ "defaultFindMatchTypeSettingKey": "Určuje typ shody, který se používá při vyhledávání seznamů a stromů na pracovní ploše.",
+ "defaultFindMatchTypeSettingKey.contiguous": "Při hledání použijte souvislou shodu.",
+ "defaultFindMatchTypeSettingKey.fuzzy": "Při hledání použijte přibližné shody.",
"defaultFindModeSettingKey": "Ovládá výchozí režim vyhledávání pro seznamy a stromy v pracovní ploše.",
"defaultFindModeSettingKey.filter": "Umožňuje filtrovat elementy při hledání.",
"defaultFindModeSettingKey.highlight": "Zvýraznění prvků při vyhledávání. Další navigace nahoru a dolů prochází pouze zvýrazněné prvky.",
@@ -1690,23 +2463,53 @@
"keyboardNavigationSettingKey.filter": "Funkce filtrování navigace pomocí klávesnice odfiltruje a skryje všechny elementy, které neodpovídají vstupu z klávesnice.",
"keyboardNavigationSettingKey.highlight": "Funkce zvýraznění navigace pomocí klávesnice zvýrazní elementy, které odpovídají vstupu z klávesnice. Při další navigaci nahoru a dolů se bude navigovat pouze po zvýrazněných elementech.",
"keyboardNavigationSettingKey.simple": "Při jednoduché navigaci pomocí klávesnice se fokus přesouvá na elementy, které odpovídají vstupu z klávesnice. Shoda se vyhledává pouze podle předpon.",
- "keyboardNavigationSettingKeyDeprecated": "Místo toho použijte workbench.list.defaultFindMode.",
+ "keyboardNavigationSettingKeyDeprecated": "Místo toho prosím použijte workbench.list.defaultFindMode a workbench.list.typeNavigationMode.",
"list smoothScrolling setting": "Určuje, jestli se budou seznamy a stromy posouvat plynule.",
+ "list.scrollByPage": "Určuje, zda bude kliknutí na stránce posuvníku posunuto po stránce.",
"multiSelectModifier": "Modifikátor, který se má použít k přidání položky do stromů a seznamů při výběru více položek myší (například v průzkumníkovi, otevřených editorech a zobrazení scm). Gesta myší Otevřít na boku (pokud jsou podporována) se upraví tak, aby nebyla s modifikátorem vícenásobného výběru v konfliktu.",
"multiSelectModifier.alt": "Mapuje se na klávesu Alt ve Windows a Linuxu a na klávesu Option v macOS.",
"multiSelectModifier.ctrlCmd": "Mapuje se na klávesu Control ve Windows a Linuxu a na klávesu Command v macOS.",
"openModeModifier": "Určuje, jak se mají otevírat položky ve stromech a seznamech pomocí myši (pokud je podporováno). Poznámka: Některé stromy a seznamy mohou toto nastavení ignorovat, pokud není relevantní.",
"render tree indent guides": "Určuje, jestli se mají ve stromu vykreslovat vodítka odsazení.",
+ "sticky scroll": "Určuje, jestli je ve stromech povolené pevné posouvání.",
+ "sticky scroll maximum items": "Určuje počet rychlých prvků zobrazených ve stromu, když je povolená možnost {0}.",
"tree indent setting": "Určuje odsazení stromu v pixelech.",
+ "typeNavigationMode2": "Určuje, jak funguje navigace typu v seznamech a stromech na pracovní ploše. Když se nastaví na trigger, navigace typu začne po spuštění příkazu „list.triggerTypeNavigation“.",
"workbenchConfigurationTitle": "Pracovní plocha"
},
+ "vs/platform/log/common/log": {
+ "debug": "Ladit",
+ "error": "Chyba",
+ "info": "Informace",
+ "off": "Vypnuto",
+ "trace": "Trasování",
+ "warn": "Upozornění"
+ },
"vs/platform/markers/common/markers": {
"sev.error": "Chyba",
+ "sev.errors": "Chyby",
"sev.info": "Informace",
- "sev.warning": "Upozornění"
+ "sev.infos": "Informace",
+ "sev.warning": "Upozornění",
+ "sev.warnings": "Upozornění"
+ },
+ "vs/platform/markers/common/markerService": {
+ "filtered": "Problémy jsou pozastaveny, protože: {0}",
+ "filtered.network": "Problémy jsou pozastavené, protože: {0} a {1} atd."
+ },
+ "vs/platform/mcp/common/allowedMcpServersService": {
+ "mcp servers are not allowed": "Servery Model Context Protocol jsou v editoru zakázány. Zkontrolujte prosím [nastavení]({0})."
+ },
+ "vs/platform/mcp/common/mcpGalleryService": {
+ "noReadme": "K dispozici není žádný soubor README.",
+ "readme.viewInBrowser": "Informace o tomto serveru najdete [tady]({0})"
+ },
+ "vs/platform/mcp/common/mcpManagementService": {
+ "not allowed to install": "Tento server mcp nelze nainstalovat, protože {0}"
},
"vs/platform/menubar/electron-main/menubar": {
- "cancel": "&&Zrušit",
+ "cancel": "Zrušit",
+ "exit": "&&Ukončit",
"mAbout": "O produktu {0}",
"mBringToFront": "Přenést vše do popředí",
"mEdit": "&&Upravit",
@@ -1741,42 +2544,125 @@
"miRestartToUpdate": "&&Restartovat za účelem aktualizace",
"miSwitchWindow": "Přepnout o&&kno...",
"quit": "&&Ukončit",
- "quitMessage": "Opravdu chcete skončit?"
+ "quitMessage": "Opravdu chcete skončit?",
+ "quitMessageMac": "Opravdu chcete skončit?"
},
"vs/platform/native/electron-main/nativeHostMainService": {
- "cancel": "&&Zrušit",
+ "cancel": "Zrušit",
"cantCreateBinFolder": "Nelze nainstalovat příkaz prostředí {0}.",
"cantUninstall": "Nelze odinstalovat příkaz prostředí {0}.",
+ "copyLink": "&&Zkopírovat odkaz",
"ok": "&&OK",
+ "openExternalErrorLinkMessage": "Při otevírání odkazu ve výchozím prohlížeči došlo k chybě.",
+ "openExternalProgramErrorMessage": "Při otevírání externího programu došlo k chybě.",
"sourceMissing": "Nepodařilo se najít skript prostředí v {0}.",
+ "trace.detail": "Vytvořte prosím problém a připojte ručně následující soubor:\r\n{0}",
+ "trace.message": "Trasovací soubor se úspěšně vytvořil.",
+ "trace.ok": "&&OK",
"warnEscalation": "{0} vás nyní pomocí nástroje osascript požádá o oprávnění správce k instalaci příkazu prostředí.",
"warnEscalationUninstall": "{0} vás nyní pomocí nástroje osascript požádá o oprávnění správce k odinstalaci příkazu prostředí."
},
+ "vs/platform/notification/common/notification": {
+ "severityPrefix.error": "Chyba: {0}",
+ "severityPrefix.info": "Informace: {0}",
+ "severityPrefix.warning": "Upozornění: {0}"
+ },
+ "vs/platform/process/electron-main/processMainService": {
+ "local": "Místní"
+ },
"vs/platform/quickinput/browser/commandsQuickAccess": {
- "canNotRun": "Výsledkem příkazu {0} je chyba ({1}).",
+ "canNotRun": "Výsledkem příkazu {0} je chyba.",
"commandPickAriaLabelWithKeybinding": "{0}, {1}",
+ "commonlyUsed": "běžně používané",
"morecCommands": "další příkazy",
- "recentlyUsed": "naposledy použité"
+ "recentlyUsed": "naposledy použité",
+ "suggested": "podobné příkazy"
},
"vs/platform/quickinput/browser/helpQuickAccess": {
"helpPickAriaLabel": "{0}, {1}"
},
+ "vs/platform/quickinput/browser/quickInput": {
+ "cursorAtEndOfQuickInputBox": "Určuje, jestli se kurzor v dialogu rychlého vstupu nachází na konci vstupního pole.",
+ "inQuickInput": "Určuje, jestli je fokus klávesnice uvnitř ovládacího prvku rychlého vstupu.",
+ "inputModeEntry": "Stisknutím klávesy Enter potvrdíte vstup. Klávesou Esc akci zrušíte.",
+ "inputModeEntryDescription": "{0} (Potvrdíte stisknutím klávesy Enter. Zrušíte klávesou Esc.)",
+ "ok": "OK",
+ "quickInput.back": "Zpět",
+ "quickInput.steps": "{0}/{1}",
+ "quickInputAlignment": "Zarovnání rychlého vstupu",
+ "quickInputBox.ariaLabel": "Pokud chcete zúžit počet výsledků, začněte psát.",
+ "quickInputType": "Typ aktuálně viditelného rychlého vstupu"
+ },
+ "vs/platform/quickinput/browser/quickInputActions": {
+ "nonQuickWidget": "Používá se v kontextu rychlého vstupu. Pokud změníte jednu klávesovou zkratku pro tento příkaz, měli byste změnit také všechny ostatní klávesové zkratky (varianty modifikátoru) tohoto příkazu.",
+ "quickInput": "Používá se v kontextu jakéhokoli typu rychlého vstupu. Pokud změníte jednu klávesovou zkratku pro tento příkaz, měli byste změnit také všechny ostatní klávesové zkratky (varianty modifikátoru) tohoto příkazu.",
+ "quickInput.nextSeparatorWithQuickAccessFallback": "V režimu rychlého přístupu přejde na další položku. Pokud nejsme v režimu rychlého přístupu, přejde na další oddělovač.",
+ "quickInput.previousSeparatorWithQuickAccessFallback": "V režimu rychlého přístupu přejde na předchozí položku. Pokud nejsme v režimu rychlého přístupu, přejde na předchozí oddělovač.",
+ "quickPick": "Používá se v kontextu rychlého výběru. Pokud změníte jednu klávesovou zkratku pro tento příkaz, měli byste změnit také všechny ostatní klávesové zkratky (varianty modifikátoru) tohoto příkazu."
+ },
+ "vs/platform/quickinput/browser/quickInputController": {
+ "custom": "Vlastní",
+ "ok": "OK",
+ "quickInput.back": "Zpět",
+ "quickInput.backWithKeybinding": "Zpět ({0})",
+ "quickInput.checkAll": "Přepnout všechna zaškrtávací políčka",
+ "quickInput.countSelected": "Vybrané: {0}",
+ "quickInput.visibleCount": "Počet výsledků: {0}"
+ },
+ "vs/platform/quickinput/browser/quickInputList": {
+ "quickInput": "Rychlý vstup"
+ },
+ "vs/platform/quickinput/browser/quickInputUtils": {
+ "executeCommand": "Kliknutím provedete příkaz {0}."
+ },
+ "vs/platform/quickinput/browser/quickPickPin": {
+ "pinCommand": "Připnout příkaz",
+ "pinnedCommand": "Připnutý příkaz",
+ "terminal.commands.pinned": "připnuto"
+ },
+ "vs/platform/quickinput/browser/tree/quickInputTreeAccessibilityProvider": {
+ "quickTree": "Rychlý strom"
+ },
+ "vs/platform/quickinput/browser/tree/quickTree": {
+ "quickInputBox.ariaLabel": "Pokud chcete zúžit počet výsledků, začněte psát."
+ },
+ "vs/platform/remoteTunnel/common/remoteTunnel": {
+ "remoteTunnelLog": "Vzdálená služba tunelového propojení"
+ },
+ "vs/platform/remoteTunnel/node/remoteTunnelService": {
+ "remoteTunnelService.authorizing": "Připojování jako {0} ({1})",
+ "remoteTunnelService.building": "Sestavování rozhraní příkazového řádku ze zdrojů",
+ "remoteTunnelService.openTunnel": "Otevírání tunelu",
+ "remoteTunnelService.openTunnelWithName": "Otevírání tunelu {0}",
+ "remoteTunnelService.serviceInstallFailed": "Nepovedlo se nainstalovat tunel jako službu, spouští se v relaci..."
+ },
"vs/platform/request/common/request": {
+ "electronFetch": "Určuje, jestli se má místo implementace Node.js povolit implementace načítání Electron. Všechna místní rozšíření získají pro globální rozhraní API pro načítání implementaci načítání Electron.",
+ "fetchAdditionalSupport": "Určuje, jestli se má implementace načítání Node.js rozšířit o další podporu. Podpora proxy serveru ({1}) a systémových certifikátů ({2}) se v současné době přidají, když jsou povolená odpovídající nastavení. Pokud je nastavení {0} během [vzdáleného vývoje](https://aka.ms/vscode-remote) zakázáno, můžete toto nastavení nakonfigurovat v místním a vzdáleném nastavení samostatně.",
"httpConfigurationTitle": "HTTP",
- "proxy": "Nastavení proxy, které se má použít. Pokud není nastaveno, zdědí se z proměnných prostředí http_proxy a https_proxy.",
- "proxyAuthorization": "Hodnota, která se odešle jako hlavička Proxy-Authorization pro všechny síťové požadavky",
- "proxySupport": "Umožňuje pro rozšíření používat podporu proxy serveru.",
+ "networkInterfaceCheckInterval": "Určuje interval v sekundách pro kontrolu změn síťového rozhraní za účelem zneplatnění mezipaměti proxy. Pokud chcete nastavení zakázat, nastavte na -1. Pokud je nastavení {0} během [vzdáleného vývoje](https://aka.ms/vscode-remote) zakázáno, můžete toto nastavení nakonfigurovat v místním a vzdáleném nastavení samostatně.",
+ "noProxy": "Určuje názvy domén, pro které se mají ignorovat nastavení proxy serveru pro požadavky HTTP/HTTPS. Pokud je nastavení {0} během [vzdáleného vývoje](https://aka.ms/vscode-remote) zakázáno, můžete toto nastavení nakonfigurovat v místním a vzdáleném nastavení samostatně.",
+ "proxy": "Nastavení proxy serveru, které se má použít. Pokud není nastaveno, zdědí se z proměnných prostředí http_proxy a https_proxy. Pokud je nastavení {0} během [vzdáleného vývoje](https://aka.ms/vscode-remote) zakázáno, můžete toto nastavení nakonfigurovat v místním a vzdáleném nastavení samostatně.",
+ "proxyAuthorization": "Hodnota, která se odešle jako hlavička Proxy-Authorization pro všechny síťové požadavky. Pokud je nastavení {0} během [vzdáleného vývoje](https://aka.ms/vscode-remote) zakázáno, můžete toto nastavení nakonfigurovat v místním a vzdáleném nastavení samostatně.",
+ "proxyKerberosServicePrincipal": "Přepíše název služby objektu zabezpečení pro ověřování protokolem Kerberos pomocí proxy serveru HTTP. Pokud to není nastavené, použije se výchozí hodnota založená na názvu hostitele proxy serveru. Pokud je nastavení {0} během [vzdáleného vývoje](https://aka.ms/vscode-remote) zakázáno, můžete toto nastavení nakonfigurovat v místním a vzdáleném nastavení samostatně.",
+ "proxySupport": "Umožňuje pro rozšíření používat podporu proxy serveru. Pokud je nastavení {0} během [vzdáleného vývoje](https://aka.ms/vscode-remote) zakázáno, můžete toto nastavení nakonfigurovat v místním a vzdáleném nastavení samostatně.",
"proxySupportFallback": "Povolte podporu proxy pro rozšíření a návrat k možnostem žádosti, když se žádný proxy nenajde.",
"proxySupportOff": "Umožňuje pro rozšíření zakázat podporu proxy serveru.",
"proxySupportOn": "Umožňuje pro rozšíření povolit podporu proxy serveru.",
"proxySupportOverride": "Umožňuje pro rozšíření povolit podporu proxy serveru. Přepíše možnosti žádosti.",
- "strictSSL": "Určuje, jestli se má certifikát proxy serveru ověřovat podle seznamu zadaných certifikačních autorit.",
- "systemCertificates": "Určuje, jestli mají být certifikáty certifikační autority načítány z operačního systému. (V systému Windows a macOS se po vypnutí tohoto nastavení vyžaduje opětovné načtení okna.)"
+ "strictSSL": "Určuje, jestli se má certifikát proxy serveru ověřovat podle seznamu zadaných certifikačních autorit. Pokud je nastavení {0} během [vzdáleného vývoje](https://aka.ms/vscode-remote) zakázáno, můžete toto nastavení nakonfigurovat v místním a vzdáleném nastavení samostatně.",
+ "systemCertificates": "Určuje, jestli se certifikáty certifikační autority mají načítat z operačního systému. Ve Windows a macOS se po vypnutí tohoto nastavení vyžaduje opětovné načtení okna. Pokud je nastavení {0} během [vzdáleného vývoje](https://aka.ms/vscode-remote) zakázáno, můžete toto nastavení nakonfigurovat v místním a vzdáleném nastavení samostatně.",
+ "systemCertificatesNode": "Určuje, jestli se mají systémové certifikáty načítat pomocí integrované podpory Node.js. Po změně tohoto nastavení je třeba okno znovu načíst. Pokud je nastavení {0} během [vzdáleného vývoje](https://aka.ms/vscode-remote) zakázáno, můžete toto nastavení nakonfigurovat v místním a vzdáleném nastavení samostatně.",
+ "systemCertificatesV2": "Určuje, jestli se má povolit experimentální načítání certifikátů certifikační autority z operačního systému. Používá se obecnější přístup než výchozí implementace. Pokud je nastavení {0} během [vzdáleného vývoje](https://aka.ms/vscode-remote) zakázáno, můžete toto nastavení nakonfigurovat v místním a vzdáleném nastavení samostatně.",
+ "useLocalProxy": "Určuje, jestli se má ve vzdáleném hostiteli rozšíření použít konfigurace místního proxy serveru. Toto nastavení platí během [vzdáleného vývoje](https://aka.ms/vscode-remote) jenom jako vzdálené nastavení."
},
"vs/platform/shell/node/shellEnv": {
"resolveShellEnvError": "Nepovedlo se vyřešit vaše prostředí: {0}",
"resolveShellEnvExitError": "Neočekávaný ukončovací kód z vytvořit podřízený procesu prostředí (kód {0}, signál {1})",
- "resolveShellEnvTimeout": "Obecné možnosti prostředí se nepovedlo v rozumné době vyřešit. Zkontrolujte prosím konfiguraci prostředí."
+ "resolveShellEnvTimeout": "Obecné možnosti prostředí se nepovedlo v rozumné době vyřešit. Zkontrolujte prosím konfiguraci prostředí a proveďte restartování."
+ },
+ "vs/platform/telemetry/common/telemetryLogAppender": {
+ "telemetryLog": "Telemetrie{0}"
},
"vs/platform/telemetry/common/telemetryService": {
"enableTelemetryDeprecated": "Pokud má toto nastavení hodnotu false, nebude se odesílat žádná telemetrie bez ohledu na hodnotu nového nastavení. Zastaralé ve prospěch nastavení {0}.",
@@ -1786,49 +2672,39 @@
"telemetry.enableTelemetry": "Povolte shromažďování diagnostických dat. To nám pomáhá lépe pochopit, jak probíhá {0} a kde je třeba provést vylepšení.",
"telemetry.enableTelemetryMd": "Povolte shromažďování diagnostických dat. To nám pomáhá lépe pochopit, jak probíhá {0} a kde je třeba provést vylepšení. [Další informace]({1}) o tom, co shromažďujeme, a naše prohlášení o zásadách ochrany osobních údajů.",
"telemetry.errors": "Telemetrie chyb",
+ "telemetry.feedback.enabled": "Povolte mechanismy zpětné vazby, například hlášení problémů, průzkumy a další možnosti zpětné vazby.",
"telemetry.restart": "Aby se změny hlášení o chybách projevily, musí se provést úplné restartování aplikace.",
"telemetry.telemetryLevel.crash": "Odesílá hlášení o selhání na úrovni operačního systému.",
"telemetry.telemetryLevel.default": "Odesílá data o využití, chyby a hlášení o selhání.",
"telemetry.telemetryLevel.deprecated": "****Poznámka:*** Pokud je toto nastavení off, nebude se odesílat žádná telemetrie bez ohledu na jiná nastavení telemetrie. Pokud je toto nastavení cokoli jiného než off a telemetrie je zakázaná zastaralými nastaveními, nebude se odesílat žádná telemetrie.*",
"telemetry.telemetryLevel.error": "Odesílá obecné hlášení o selhání a telemetrii chyb.",
"telemetry.telemetryLevel.off": "Zakáže veškerou telemetrii produktu.",
+ "telemetry.telemetryLevel.policyDescription": "Řídí úroveň telemetrie.",
"telemetry.telemetryLevel.tableDescription": "Následující tabulka uvádí data odeslaná s jednotlivými nastaveními:",
- "telemetry.telemetryLevelMd": "Řídí telemetrii {0} a telemetrii rozšíření první strany a telemetrii rozšíření zapojených třetích stran. Některá rozšíření třetích stran nemusí toto nastavení respektovat. Ověřte si to v dokumentaci ke konkrétnímu rozšíření. Telemetrie nám pomáhá to lépe pochopit, jak {0} funguje, kde je potřeba provést vylepšení a jak se používají funkce.",
+ "telemetry.telemetryLevelMd": "Řídí telemetrii {0}, telemetrii rozšíření od výrobce a telemetrii rozšíření zúčastněných třetích stran. Některá rozšíření třetích stran nemusí toto nastavení respektovat. Prověřte dokumentaci konkrétního rozšíření, abyste se ujistili. Telemetrie nám pomáhá lépe porozumět výkonu {0}, kde je potřeba provést vylepšení a jak se používají funkce.",
"telemetry.usage": "Data o využití",
"telemetryConfigurationTitle": "Telemetrie"
},
+ "vs/platform/telemetry/common/telemetryUtils": {
+ "telemetryLogName": "Telemetrie"
+ },
+ "vs/platform/terminal/common/terminalLogService": {
+ "terminalLoggerName": "Terminál"
+ },
"vs/platform/terminal/common/terminalPlatformConfiguration": {
- "terminal.integrated.automationProfile.linux": "Profil terminálu, který se má použít v Linuxu pro využití terminálu souvisejícího s automatizací, jako jsou úlohy a ladění. Toto nastavení bude v současné době ignorováno, pokud je nastavena hodnota {0}.",
- "terminal.integrated.automationProfile.osx": "Profil terminálu, který se má použít na macOS pro využití terminálu souvisejícího s automatizací, jako jsou úlohy a ladění. Toto nastavení bude v současné době ignorováno, pokud je nastavena hodnota {0}.",
- "terminal.integrated.automationProfile.windows": "Profil terminálu, který se má použít pro využití terminálu souvisejícího s automatizací, jako jsou úlohy a ladění. Toto nastavení bude v současné době ignorováno, pokud je nastavena hodnota {0}.",
- "terminal.integrated.automationShell.linux": "Cesta, která (pokud je nastavena) přepíše {0} a ignoruje hodnoty {1} pro použití terminálu souvisejícího s automatizací, jako jsou úlohy a ladění.",
- "terminal.integrated.automationShell.linux.deprecation": "To je zastaralé. Nový doporučený způsob konfigurace automatizačního prostředí je vytvořením profilu automatizace terminálu s {0}. V současné době to bude mít přednost před nastavením nového profilu automatizace, ale to se v budoucnu změní.",
- "terminal.integrated.automationShell.osx": "Cesta, která (pokud je nastavena) přepíše {0} a ignoruje hodnoty {1} pro použití terminálu souvisejícího s automatizací, jako jsou úlohy a ladění.",
- "terminal.integrated.automationShell.osx.deprecation": "To je zastaralé. Nový doporučený způsob konfigurace automatizačního prostředí je vytvořením profilu automatizace terminálu s {0}. V současné době to bude mít přednost před nastavením nového profilu automatizace, ale to se v budoucnu změní.",
- "terminal.integrated.automationShell.windows": "Cesta, která (pokud je nastavena) přepíše {0} a ignoruje hodnoty {1} pro použití terminálu souvisejícího s automatizací, jako jsou úlohy a ladění.",
- "terminal.integrated.automationShell.windows.deprecation": "To je zastaralé. Nový doporučený způsob konfigurace automatizačního prostředí je vytvořením profilu automatizace terminálu s {0}. V současné době to bude mít přednost před nastavením nového profilu automatizace, ale to se v budoucnu změní.",
+ "terminal.integrated.automationProfile.linux": "Profil terminálu, který se má použít v Linuxu pro použití terminálu souvisejícího s automatizací, jako jsou úlohy a ladění.",
+ "terminal.integrated.automationProfile.osx": "Profil terminálu, který se má použít v macOS pro použití terminálu souvisejícího s automatizací, jako jsou úlohy a ladění.",
+ "terminal.integrated.automationProfile.windows": "Profil terminálu, který se má použít pro využití terminálu souvisejícího s automatizací, jako jsou úlohy a ladění. Toto nastavení bude v současné době ignorováno, pokud je nastavena hodnota {0} (nyní zastaralá).",
"terminal.integrated.confirmIgnoreProcesses": "Sada názvů procesů, které se mají ignorovat při používání nastavení {0}.",
- "terminal.integrated.defaultProfile.linux": "Výchozí profil používaný v systému Linux. Toto nastavení bude v této chvíli ignorováno, pokud je nastavena hodnota {0} nebo {1}.",
- "terminal.integrated.defaultProfile.osx": "Výchozí profil používaný v systému macOS. Toto nastavení bude v této chvíli ignorováno, pokud je nastavena hodnota {0} nebo {1}.",
- "terminal.integrated.defaultProfile.windows": "Výchozí profil používaný v systému Windows. Toto nastavení bude v této chvíli ignorováno, pokud je nastavena hodnota {0} nebo {1}.",
+ "terminal.integrated.defaultProfile.linux": "Výchozí profil terminálu v systému Linux.",
+ "terminal.integrated.defaultProfile.osx": "Výchozí profil terminálu v systému macOS.",
+ "terminal.integrated.defaultProfile.windows": "Výchozí profil terminálu v systému Windows.",
"terminal.integrated.inheritEnv": "Určuje, jestli mají nová prostředí dědit prostředí z nástroje VS Code, který může poskytnout prostředí pro přihlášení a zajistit inicializaci proměnné $PATH a dalších vývojových proměnných. Toto nemá žádný vliv na systém Windows.",
"terminal.integrated.persistentSessionScrollback": "Určuje maximální počet řádků, které budou obnoveny při opětovném připojení k trvalé relaci terminálu. Zvýšením této možnosti obnovíte více řádků posuvníku za cenu větší paměti a zvýšíte dobu potřebnou k připojení k terminálům při spuštění. Toto nastavení vyžaduje restartování, aby se projevilo a mělo by být nastaveno na hodnotu menší nebo rovnou #terminal.integrated.scrollback#.",
- "terminal.integrated.profile.linux": "Profily Linuxu, které se mají zobrazit při vytváření nového terminálu prostřednictvím rozevíracího seznamu terminálu. Nastavte vlastnost {0} ručně s volitelným {1}.\r\n\r\nPokud ze seznamu chcete skrýt existující profil, nastavte ho na {2}, například: {3}.",
- "terminal.integrated.profile.osx": "Profily macOS, které se mají zobrazit při vytváření nového terminálu prostřednictvím rozevíracího seznamu terminálu. Nastavte vlastnost {0} ručně s volitelným {1}.\r\n\r\nPokud ze seznamu chcete skrýt existující profil, nastavte ho na {2}, například: {3}.",
- "terminal.integrated.profiles.windows": "Profily systému Windows, které se mají zobrazit při vytváření nového terminálu prostřednictvím rozevíracího seznamu terminálu. K automatickému zjištění umístění prostředí použijte vlastnost {0}. Nebo můžete nastavit vlastnost {1} ručně s volitelnou třídou {2}.\r\n\r\nPokud ze seznamu chcete skrýt existující profil, nastavte ho na {3}, například: {4}.",
- "terminal.integrated.shell.linux": "Cesta k prostředí, které terminál používá v Linuxu. [Přečtěte si další informace o konfigurování prostředí](https://code.visualstudio.com/docs/editor/integrated-terminal#_terminal-profiles).",
- "terminal.integrated.shell.linux.deprecation": "Toto je zastaralé. Nový doporučený způsob konfigurace výchozího prostředí je vytvoření profilu terminálu v {0} a nastavení názvu tohoto profilu jako výchozího v {1}. To bude mít momentálně přednost před novými nastaveními profilů, ale v budoucnu se to změní.",
- "terminal.integrated.shell.osx": "Cesta k prostředí, které terminál používá v macOS. [Přečtěte si další informace o konfigurování prostředí](https://code.visualstudio.com/docs/editor/integrated-terminal#_terminal-profiles).",
- "terminal.integrated.shell.osx.deprecation": "Toto je zastaralé. Nový doporučený způsob konfigurace výchozího prostředí je vytvoření profilu terminálu v {0} a nastavení názvu tohoto profilu jako výchozího v {1}. To bude mít momentálně přednost před novými nastaveními profilů, ale v budoucnu se to změní.",
- "terminal.integrated.shell.windows": "Cesta k prostředí, které terminál používá ve Windows. [Přečtěte si další informace o konfigurování prostředí](https://code.visualstudio.com/docs/editor/integrated-terminal#_terminal-profiles).",
- "terminal.integrated.shell.windows.deprecation": "Toto je zastaralé. Nový doporučený způsob konfigurace výchozího prostředí je vytvoření profilu terminálu v {0} a nastavení názvu tohoto profilu jako výchozího v {1}. To bude mít momentálně přednost před novými nastaveními profilů, ale v budoucnu se to změní.",
- "terminal.integrated.shellArgs.linux": "Argumenty příkazového řádku, které se mají používat na terminálu Linuxu. [Přečtěte si další informace o konfigurování prostředí](https://code.visualstudio.com/docs/editor/integrated-terminal#_terminal-profiles).",
- "terminal.integrated.shellArgs.osx": "Argumenty příkazového řádku, které se mají používat na terminálu macOS. [Přečtěte si další informace o konfigurování prostředí](https://code.visualstudio.com/docs/editor/integrated-terminal#_terminal-profiles).",
- "terminal.integrated.shellArgs.windows": "Argumenty příkazového řádku, které se mají používat na terminálu Windows. [Přečtěte si další informace o konfigurování prostředí](https://code.visualstudio.com/docs/editor/integrated-terminal#_terminal-profiles).",
- "terminal.integrated.shellArgs.windows.string": "Argumenty příkazového řádku ve [formátu příkazového řádku](https://msdn.microsoft.com/en-au/08dfcab2-eb6e-49a4-80eb-87d4076c98c6), které je možné používat na terminálu Windows. [Přečtěte si další informace o konfigurování prostředí](https://code.visualstudio.com/docs/editor/integrated-terminal#_terminal-profiles).",
+ "terminal.integrated.profile": "Sada vlastních nastavení profilu terminálu pro {0}, která umožňuje přidávat, odebírat nebo měnit způsob spouštění terminálů. Profily se skládají z povinné cesty, volitelných argumentů a dalších možností prezentace.\r\n\r\nPokud chcete přepsat existující profil, použijte jeho název profilu jako klíč, například:\r\n\r\n{1}\r\n\r\n{2}Další informace o konfiguraci profilů{3}.",
"terminal.integrated.showLinkHover": "Určuje, jestli se při přechodu myší mají zobrazovat další informace u odkazů ve výstupu terminálu.",
"terminal.integrated.useWslProfiles": "Určuje, jestli se v rozevíracím seznamu terminálu zobrazují distribuce WSL, nebo ne.",
- "terminalAutomationProfile.path": "Jedna cesta ke spustitelnému souboru prostředí.",
+ "terminalAutomationProfile.path": "Cesta ke spustitelnému souboru prostředí",
"terminalIntegratedConfigurationTitle": "Integrovaný terminál",
"terminalProfile.args": "Volitelná sada argumentů, se kterými se má spustit spustitelný soubor prostředí.",
"terminalProfile.color": "ID barvy motivu, které se má přidružit k ikoně terminálu.",
@@ -1840,16 +2716,19 @@
"terminalProfile.osxExtensionId": "ID terminálu rozšíření",
"terminalProfile.osxExtensionIdentifier": "Rozšíření, které přispělo tímto profilem",
"terminalProfile.osxExtensionTitle": "Název terminálu rozšíření",
- "terminalProfile.overrideName": "Určuje, jestli název profilu přepisuje automaticky zjištěný název.",
+ "terminalProfile.overrideName": "Určuje, jestli má být nahrazen dynamický název terminálu, který zjišťuje, jaký program je spuštěn, statickým názvem profilu.",
"terminalProfile.path": "Jedna cesta ke spustitelnému souboru prostředí nebo pole cest, které se použijí jako náhradní, pokud některá cesta selže.",
"terminalProfile.windowsExtensionId": "ID terminálu rozšíření",
"terminalProfile.windowsExtensionIdentifier": "Rozšíření, které přispělo tímto profilem",
"terminalProfile.windowsExtensionTitle": "Název terminálu rozšíření",
- "terminalProfile.windowsSource": "Zdroj profilu, který automaticky detekuje cesty k prostředí"
+ "terminalProfile.windowsSource": "Zdroj profilu, který automaticky detekuje cesty k prostředí. Nestandardní umístění spustitelných souborů se nepodporují a musí se vytvořit a ručně v novém profilu."
},
"vs/platform/terminal/common/terminalProfiles": {
"terminalAutomaticProfile": "Automaticky zjišťovat výchozí"
},
+ "vs/platform/terminal/node/ptyHostMain": {
+ "ptyHost": "Hostitel Pty"
+ },
"vs/platform/terminal/node/ptyService": {
"terminal-history-restored": "Historie byla obnovena"
},
@@ -1859,23 +2738,26 @@
"launchFail.executableDoesNotExist": "Cesta ke spustitelnému souboru prostředí {0} neexistuje.",
"launchFail.executableIsNotFileOrSymlink": "Cesta ke spustitelnému souboru prostředí {0} není soubor ani symbolický odkaz."
},
- "vs/platform/theme/common/colorRegistry": {
+ "vs/platform/theme/common/colors/baseColors": {
"activeContrastBorder": "Dodatečné ohraničení kolem aktivních prvků, které je odděluje od ostatních prvků za účelem zvýšení kontrastu",
- "activeLinkForeground": "Barva aktivních odkazů",
- "badgeBackground": "Barva pozadí odznáčku. Odznáčky jsou malé informační popisky, například s počtem výsledků hledání.",
- "badgeForeground": "Barva popředí odznáčku. Odznáčky jsou malé informační popisky, například s počtem výsledků hledání.",
- "breadcrumbsBackground": "Barva pozadí položek s popisem cesty",
- "breadcrumbsFocusForeground": "Barva položek s popisem cesty, které mají fokus",
- "breadcrumbsSelectedBackground": "Barva pozadí ovládacího prvku pro výběr položky s popisem cesty",
- "breadcrumbsSelectedForeground": "Barva vybraných položek s popisem cesty",
- "buttonBackground": "Barva pozadí tlačítka",
- "buttonBorder": "Barva ohraničení tlačítka",
- "buttonForeground": "Barva popředí tlačítka",
- "buttonHoverBackground": "Barva pozadí tlačítka při umístění ukazatele myši",
- "buttonSecondaryBackground": "Barva pozadí sekundárního tlačítka",
- "buttonSecondaryForeground": "Barva popředí sekundárního tlačítka",
- "buttonSecondaryHoverBackground": "Barva pozadí sekundárního tlačítka při umístění ukazatele myši",
- "buttonSeparator": "Barva oddělovače tlačítek.",
+ "contrastBorder": "Dodatečné ohraničení kolem prvků, které je odděluje od ostatních prvků za účelem zvýšení kontrastu",
+ "descriptionForeground": "Barva popředí textu popisu, který poskytuje další informace, například pro popisek",
+ "disabledForeground": "Celkové popředí pro zakázané elementy. Tato barva se použije jenom v případě, že není přepsaná komponentou.",
+ "errorForeground": "Celková barva popředí pro chybové zprávy. Tato barva se používá pouze v případě, že není přepsána některou komponentou.",
+ "focusBorder": "Celková barva ohraničení pro prvky s fokusem. Tato barva se používá pouze v případě, že není přepsána některou komponentou.",
+ "foreground": "Celková barva popředí. Tato barva se používá pouze v případě, že není přepsána některou komponentou.",
+ "iconForeground": "Výchozí barva ikon na pracovní ploše",
+ "selectionBackground": "Barva pozadí výběrů textu na pracovní ploše (např. ve vstupních polích nebo textových oblastech). Poznámka: Nevztahuje se na výběry v editoru.",
+ "textBlockQuoteBackground": "Barva pozadí pro blokové citace v textu",
+ "textBlockQuoteBorder": "Barva ohraničení pro blokové citace v textu",
+ "textCodeBlockBackground": "Barva pozadí pro bloky kódu v textu",
+ "textLinkActiveForeground": "Barva popředí pro odkazy v textu, když se na ně klikne nebo umístí ukazatel myši",
+ "textLinkForeground": "Barva popředí pro odkazy v textu",
+ "textPreformatBackground": "Barva pozadí pro předem naformátované segmenty textu",
+ "textPreformatForeground": "Barva popředí pro předem naformátované segmenty textu",
+ "textSeparatorForeground": "Barva pro oddělovače textu"
+ },
+ "vs/platform/theme/common/colors/chartsColors": {
"chartsBlue": "Modrá barva používaná ve vizualizacích grafů",
"chartsForeground": "Barva popředí použitá v grafech",
"chartsGreen": "Zelená barva používaná ve vizualizacích grafů",
@@ -1883,13 +2765,18 @@
"chartsOrange": "Oranžová barva používaná ve vizualizacích grafů",
"chartsPurple": "Fialová barva používaná ve vizualizacích grafů",
"chartsRed": "Červená barva používaná ve vizualizacích grafů",
- "chartsYellow": "Žlutá barva používaná ve vizualizacích grafů",
- "checkbox.background": "Barva pozadí widgetu zaškrtávacího políčka",
- "checkbox.border": "Barva ohraničení widgetu zaškrtávacího políčka",
- "checkbox.foreground": "Barva popředí widgetu zaškrtávacího políčka",
- "contrastBorder": "Dodatečné ohraničení kolem prvků, které je odděluje od ostatních prvků za účelem zvýšení kontrastu",
- "descriptionForeground": "Barva popředí textu popisu, který poskytuje další informace, například pro popisek",
+ "chartsYellow": "Žlutá barva používaná ve vizualizacích grafů"
+ },
+ "vs/platform/theme/common/colors/editorColors": {
+ "activeLinkForeground": "Barva aktivních odkazů",
+ "breadcrumbsBackground": "Barva pozadí položek s popisem cesty",
+ "breadcrumbsFocusForeground": "Barva položek s popisem cesty, které mají fokus",
+ "breadcrumbsSelectedBackground": "Barva pozadí ovládacího prvku pro výběr položky s popisem cesty",
+ "breadcrumbsSelectedForeground": "Barva vybraných položek s popisem cesty",
"diffDiagonalFill": "Barva diagonální výplně editoru rozdílů. Diagonální výplň se používá v zobrazeních se zobrazením rozdílů vedle sebe.",
+ "diffEditor.unchangedCodeBackground": "Barva pozadí nezměněného kódu v Diff Editoru.",
+ "diffEditor.unchangedRegionBackground": "Barva pozadí nezměněných bloků v Diff Editoru.",
+ "diffEditor.unchangedRegionForeground": "Barva popředí nezměněných bloků v Diff Editoru.",
"diffEditorBorder": "Barva ohraničení mezi dvěma textovými editory",
"diffEditorInserted": "Barva pozadí textu, který byl vložen. Barva nesmí být neprůhledná, aby se nepřekryly dekorace pod tím.",
"diffEditorInsertedLineGutter": "Barva pozadí okraje, na který byly přidány řádky.",
@@ -1901,16 +2788,13 @@
"diffEditorRemovedLineGutter": "Barva pozadí okraje, ze kterého byly odebrány řádky.",
"diffEditorRemovedLines": "Barva pozadí řádků, které byly odebrány. Barva nesmí být neprůhledná, aby neskrývala podkladové dekorace.",
"diffEditorRemovedOutline": "Barva obrysu pro text, který byl odebrán",
- "disabledForeground": "Celkové popředí pro zakázané elementy. Tato barva se použije jenom v případě, že není přepsaná komponentou.",
- "dropdownBackground": "Pozadí rozevíracího seznamu",
- "dropdownBorder": "Ohraničení rozevíracího seznamu",
- "dropdownForeground": "Popředí rozevíracího seznamu",
- "dropdownListBackground": "Pozadí rozevíracího seznamu",
"editorBackground": "Barva pozadí editoru",
+ "editorCompositionBorder": "Barva ohraničení kompozice editoru IME",
"editorError.background": "Barva pozadí textu chyby v editoru. Barva nesmí být neprůhledná, aby se nepřekryly dekorace pod chybou.",
"editorError.foreground": "Barva popředí podtržení chyb vlnovkou v editoru",
"editorFindMatch": "Barva aktuální shody při vyhledávání",
"editorFindMatchBorder": "Barva ohraničení aktuální shody při vyhledávání",
+ "editorFindMatchForeground": "Barva textu aktuální shody při vyhledávání.",
"editorForeground": "Výchozí barva popředí editoru",
"editorHint.foreground": "Barva popředí podtržení tipů vlnovkou v editoru",
"editorInactiveSelection": "Barva výběru v neaktivním editoru. Barva nesmí být neprůhledná, aby se nepřekryly dekorace pod tím.",
@@ -1922,36 +2806,83 @@
"editorInlayHintForeground": "Barva popředí vložených tipů",
"editorInlayHintForegroundParameter": "Barva popředí vložených tipů pro parametry",
"editorInlayHintForegroundTypes": "Barva popředí vložených tipů pro typy",
+ "editorLightBulbAiForeground": "Barva použitá pro ikonu žárovky AI",
"editorLightBulbAutoFixForeground": "Barva použitá pro ikonu žárovky s nabídkou akcí automatických oprav",
"editorLightBulbForeground": "Barva použitá pro ikonu žárovky s nabídkou akcí",
"editorSelectionBackground": "Barva výběru editoru",
"editorSelectionForeground": "Barva vybraného textu pro vysoký kontrast",
"editorSelectionHighlight": "Barva pro oblasti se stejným obsahem jako výběr. Barva nesmí být neprůhledná, aby se nepřekryly dekorace pod tím.",
"editorSelectionHighlightBorder": "Barva ohraničení pro oblasti se stejným obsahem jako výběr",
- "editorStickyScrollBackground": "Sticky scroll background color for the editor",
- "editorStickyScrollHoverBackground": "Sticky scroll on hover background color for the editor",
+ "editorStickyScrollBackground": "Barva pozadí pevného posouvání v editoru",
+ "editorStickyScrollBorder": "Barva pozadí pevného posouvání v editoru",
+ "editorStickyScrollGutterBackground": "Barva pozadí části hřbetu při pevném posouvání v editoru",
+ "editorStickyScrollHoverBackground": "Barva pozadí pevného posouvání při najetí myší v editoru",
+ "editorStickyScrollShadow": " Barva stínu pevného posouvání v editoru",
"editorWarning.background": "Barva pozadí textu upozornění v editoru. Barva nesmí být neprůhledná, aby se nepřekryly dekorace pod upozorněním.",
"editorWarning.foreground": "Barva popředí podtržení upozornění vlnovkou v editoru",
"editorWidgetBackground": "Barva pozadí widgetů editoru, například najít/nahradit",
"editorWidgetBorder": "Barva ohraničení widgetů editoru. Tato barva se používá pouze tehdy, když widget používá ohraničení a barva není přepsána widgetem.",
"editorWidgetForeground": "Barva popředí widgetů editoru, například najít/nahradit",
"editorWidgetResizeBorder": "Barva ohraničení panelu pro změnu velikosti widgetů editoru. Barva se používá pouze tehdy, když widget používá ohraničení pro změnu velikosti a barva není přepsána widgetem.",
- "errorBorder": "Barva ohraničení polí chyb v editoru",
- "errorForeground": "Celková barva popředí pro chybové zprávy. Tato barva se používá pouze v případě, že není přepsána některou komponentou.",
+ "errorBorder": "Pokud je tato možnost nastavená, udává barvu dvojitého podtržení chyb v editoru.",
"findMatchHighlight": "Barva ostatních shod při vyhledávání. Barva nesmí být neprůhledná, aby se nepřekryly dekorace pod tím.",
"findMatchHighlightBorder": "Barva ohraničení ostatních shod při vyhledávání",
+ "findMatchHighlightForeground": "Barva popředí ostatních shod při vyhledávání.",
"findRangeHighlight": "Barva rozsahu omezujícího vyhledávání. Barva nesmí být neprůhledná, aby se nepřekryly dekorace pod tím.",
"findRangeHighlightBorder": "Barva ohraničení rozsahu omezujícího vyhledávání. Barva nesmí být neprůhledná, aby se nepřekryly dekorace pod tím.",
- "focusBorder": "Celková barva ohraničení pro prvky s fokusem. Tato barva se používá pouze v případě, že není přepsána některou komponentou.",
- "foreground": "Celková barva popředí. Tato barva se používá pouze v případě, že není přepsána některou komponentou.",
- "highlight": "Barva popředí seznamu nebo stromu pro zvýraznění shody při vyhledávání v rámci seznamu nebo stromu",
- "hintBorder": "Barva ohraničení polí tipů v editoru",
+ "hintBorder": "Pokud je tato možnost nastavená, udává barvu dvojitého podtržení tipů v editoru.",
"hoverBackground": "Barva pozadí informací zobrazených v editoru při umístění ukazatele myši",
"hoverBorder": "Barva ohraničení pro informace zobrazené v editoru při umístění ukazatele myši",
"hoverForeground": "Barva popředí pro informace zobrazené v editoru při umístění ukazatele myši",
"hoverHighlight": "Zvýraznění pod slovem, pro které se zobrazují informace po umístění ukazatele myši. Barva nesmí být neprůhledná, aby se nepřekryly dekorace pod tím.",
- "iconForeground": "Výchozí barva ikon na pracovní ploše",
- "infoBorder": "Barva ohraničení polí informací v editoru",
+ "infoBorder": "Pokud je tato možnost nastavená, udává barvu dvojitého podtržení informací v editoru.",
+ "mergeBorder": "Barva ohraničení záhlaví a rozdělovače pro konflikty sloučení ve vloženém (inline) editoru",
+ "mergeCommonContentBackground": "Pozadí obsahu společného nadřazeného prvku pro konflikty sloučení ve vloženém (inline) editoru. Barva nesmí být neprůhledná, aby se nepřekryly dekorace pod tím.",
+ "mergeCommonHeaderBackground": "Pozadí záhlaví společného nadřazeného prvku pro konflikty sloučení ve vloženém (inline) editoru. Barva nesmí být neprůhledná, aby se nepřekryly dekorace pod tím.",
+ "mergeCurrentContentBackground": "Pozadí aktuálního obsahu pro konflikty sloučení ve vloženém (inline) editoru. Barva nesmí být neprůhledná, aby se nepřekryly dekorace pod tím.",
+ "mergeCurrentHeaderBackground": "Pozadí aktuálního záhlaví pro konflikty sloučení ve vloženém (inline) editoru. Barva nesmí být neprůhledná, aby se nepřekryly dekorace pod tím.",
+ "mergeIncomingContentBackground": "Pozadí příchozího obsahu pro konflikty sloučení ve vloženém (inline) editoru. Barva nesmí být neprůhledná, aby se nepřekryly dekorace pod tím.",
+ "mergeIncomingHeaderBackground": "Pozadí příchozího záhlaví pro konflikty sloučení ve vloženém (inline) editoru. Barva nesmí být neprůhledná, aby se nepřekryly dekorace pod tím.",
+ "overviewRulerCommonContentForeground": "Popředí přehledového pravítka nadřazeného prvku pro konflikty sloučení ve vloženém (inline) editoru",
+ "overviewRulerCurrentContentForeground": "Popředí aktuálního přehledového pravítka pro konflikty sloučení ve vloženém (inline) editoru",
+ "overviewRulerFindMatchForeground": "Barva značky přehledového pravítka pro hledání shod. Barva nesmí být neprůhledná, aby se nepřekryly dekorace pod tím.",
+ "overviewRulerIncomingContentForeground": "Popředí příchozího přehledového pravítka pro konflikty sloučení ve vloženém (inline) editoru",
+ "overviewRulerSelectionHighlightForeground": "Barva značky přehledového pravítka pro zvýraznění výběru. Barva nesmí být neprůhledná, aby se nepřekryly dekorace pod tím.",
+ "problemsErrorIconForeground": "Barva, která se používá pro ikonu problémů na úrovni chyby",
+ "problemsInfoIconForeground": "Barva, která se používá pro ikonu problémů na úrovni informací",
+ "problemsWarningIconForeground": "Barva, která se používá pro ikonu problémů na úrovni upozornění",
+ "snippetFinalTabstopHighlightBackground": "Barva pozadí zvýraznění pro poslední zarážku tabulátoru fragmentu kódu",
+ "snippetFinalTabstopHighlightBorder": "Barva ohraničení zvýraznění pro poslední zarážku tabulátoru fragmentu kódu",
+ "snippetTabstopHighlightBackground": "Barva pozadí zvýraznění zarážky tabulátoru fragmentu kódu",
+ "snippetTabstopHighlightBorder": "Barva ohraničení zvýraznění zarážky tabulátoru fragmentu kódu",
+ "statusBarBackground": "Barva pozadí stavového řádku s informacemi zobrazenými v editoru při umístění ukazatele myši",
+ "toolbarActiveBackground": "Pozadí panelu nástrojů při podržení myši nad akcemi",
+ "toolbarHoverBackground": "Pozadí panelu nástrojů při najetí myší na akce",
+ "toolbarHoverOutline": "Obrys panelu nástrojů při najetí myší na akce",
+ "warningBorder": "Pokud je tato možnost nastavená, udává barvu dvojitého podtržení upozornění v editoru.",
+ "widgetBorder": "Barva ohraničení widgetů, například pro hledání/nahrazení v rámci editoru.",
+ "widgetShadow": "Barva stínu widgetů, například pro hledání/nahrazení v rámci editoru"
+ },
+ "vs/platform/theme/common/colors/inputColors": {
+ "buttonBackground": "Barva pozadí tlačítka",
+ "buttonBorder": "Barva ohraničení tlačítka",
+ "buttonForeground": "Barva popředí tlačítka",
+ "buttonHoverBackground": "Barva pozadí tlačítka při umístění ukazatele myši",
+ "buttonSecondaryBackground": "Barva pozadí sekundárního tlačítka",
+ "buttonSecondaryForeground": "Barva popředí sekundárního tlačítka",
+ "buttonSecondaryHoverBackground": "Barva pozadí sekundárního tlačítka při umístění ukazatele myši",
+ "buttonSeparator": "Barva oddělovače tlačítek.",
+ "checkbox.background": "Barva pozadí widgetu zaškrtávacího políčka",
+ "checkbox.border": "Barva ohraničení widgetu zaškrtávacího políčka",
+ "checkbox.disabled.background": "Pozadí zakázaného zaškrtávacího políčka",
+ "checkbox.disabled.foreground": "Popředí zakázaného zaškrtávacího políčka",
+ "checkbox.foreground": "Barva popředí widgetu zaškrtávacího políčka",
+ "checkbox.select.background": "Barva pozadí widgetu zaškrtávacího políčka, když je vybraný prvek, ve kterém se nachází.",
+ "checkbox.select.border": "Barva ohraničení widgetu zaškrtávacího políčka, když je vybraný prvek, ve kterém se nachází.",
+ "dropdownBackground": "Pozadí rozevíracího seznamu",
+ "dropdownBorder": "Ohraničení rozevíracího seznamu",
+ "dropdownForeground": "Popředí rozevíracího seznamu",
+ "dropdownListBackground": "Pozadí rozevíracího seznamu",
"inputBoxActiveOptionBorder": "Barva ohraničení aktivovaných možností ve vstupních polích",
"inputBoxBackground": "Pozadí vstupního pole",
"inputBoxBorder": "Ohraničení vstupního pole",
@@ -1969,23 +2900,38 @@
"inputValidationWarningBackground": "Barva pozadí ověřování vstupu pro závažnost na úrovni upozornění",
"inputValidationWarningBorder": "Barva ohraničení ověřování vstupu pro závažnost na úrovni upozornění",
"inputValidationWarningForeground": "Barva popředí ověřování vstupu pro závažnost na úrovni upozornění",
- "invalidItemForeground": "Barva popředí seznamu nebo stromu pro neplatné položky, například pro nerozpoznanou kořenovou složku v průzkumníkovi",
"keybindingLabelBackground": "Barva pozadí popisku klávesové zkratky. Popisek klávesové zkratky se používá ke znázornění klávesové zkratky.",
"keybindingLabelBorder": "Barva ohraničení popisku klávesové zkratky. Popisek klávesové zkratky se používá ke znázornění klávesové zkratky.",
"keybindingLabelBottomBorder": "Barva dolního ohraničení popisku klávesové zkratky. Popisek klávesové zkratky se používá ke znázornění klávesové zkratky.",
"keybindingLabelForeground": "Barva popředí popisku klávesové zkratky. Popisek klávesové zkratky se používá ke znázornění klávesové zkratky.",
+ "radioActiveBorder": "Barva ohraničení aktivního přepínače",
+ "radioActiveForeground": "Barva popředí aktivního přepínače",
+ "radioBackground": "Barva pozadí aktivního přepínače",
+ "radioHoverBackground": "Barva pozadí neaktivního/aktivního přepínače při najetí myší",
+ "radioInactiveBackground": "Barva pozadí neaktivního přepínače",
+ "radioInactiveBorder": "Barva ohraničení neaktivního přepínače",
+ "radioInactiveForeground": "Barva popředí neaktivního přepínače"
+ },
+ "vs/platform/theme/common/colors/listColors": {
+ "editorActionListBackground": "Barva pozadí seznamu akcí",
+ "editorActionListFocusBackground": "Barva pozadí seznamu akcí pro položku s fokusem",
+ "editorActionListFocusForeground": "Barva popředí seznamu akcí pro položku s fokusem",
+ "editorActionListForeground": "Barva popředí seznamu akcí",
+ "highlight": "Barva popředí seznamu nebo stromu pro zvýraznění shody při vyhledávání v rámci seznamu nebo stromu",
+ "invalidItemForeground": "Barva popředí seznamu nebo stromu pro neplatné položky, například pro nerozpoznanou kořenovou složku v průzkumníkovi",
"listActiveSelectionBackground": "Barva pozadí seznamu nebo stromu pro vybranou položku, pokud je seznam nebo strom aktivní. Aktivní seznam nebo strom má fokus klávesnice, neaktivní nikoli.",
"listActiveSelectionForeground": "Barva popředí seznamu nebo stromu pro vybranou položku, pokud je seznam nebo strom aktivní. Aktivní seznam nebo strom má fokus klávesnice, neaktivní nikoli.",
"listActiveSelectionIconForeground": "Barva popředí ikony seznamu nebo doménového stromu pro vybranou položku, pokud je seznam nebo doménový strom aktivní. Aktivní seznam nebo doménový strom má fokus klávesnice, neaktivní nikoli.",
- "listDeemphasizedForeground": "Barva popředí seznamu nebo stromu pro položky se zrušeným zdůrazněním ",
- "listDropBackground": "Pozadí pro přetažení seznamu nebo stromu při přesouvání položek myší",
+ "listDeemphasizedForeground": "Barva popředí seznamu nebo stromu pro položky se zrušeným zdůrazněním",
+ "listDropBackground": "Při přesouvání položek přes jiné položky myší zobrazit seznam/strom jako pozadí přesunu.",
+ "listDropBetweenBackground": "Barva ohraničení pro přetahování seznamu nebo stromu při přesouvání položek mezi položkami pomocí myši",
"listErrorForeground": "Barva popředí položek seznamu obsahujících chyby",
"listFilterMatchHighlight": "Barva pozadí vyfiltrované shody",
"listFilterMatchHighlightBorder": "Barva ohraničení vyfiltrované shody",
"listFilterWidgetBackground": "Barva pozadí widgetu filtru typu v seznamech a stromech",
"listFilterWidgetNoMatchesOutline": "Barva obrysu widgetu filtrování typů v seznamech a stromech, pokud neexistují žádné shody",
"listFilterWidgetOutline": "Barva obrysu widgetu filtrování typů v seznamech a stromech",
- "listFilterWidgetShadow": "Barva stínování widgetu filtru typu v seznamech a stromech.",
+ "listFilterWidgetShadow": "Barva stínu widgetu filtru typů v seznamech a stromech.",
"listFocusAndSelectionOutline": "Barva obrysu seznamu nebo stromu pro položku s fokusem, pokud je seznam nebo strom aktivní a vybraný. Aktivní seznam nebo strom má fokus klávesnice, neaktivní nikoli.",
"listFocusBackground": "Barva pozadí seznamu nebo stromu pro položku s fokusem, pokud je seznam nebo strom aktivní. Aktivní seznam nebo strom má fokus klávesnice, neaktivní nikoli.",
"listFocusForeground": "Popředí seznamu nebo stromu pro položku s fokusem, pokud je seznam nebo strom aktivní. Aktivní seznam nebo strom má fokus klávesnice, neaktivní nikoli.",
@@ -1999,82 +2945,77 @@
"listInactiveSelectionForeground": "Barva popředí seznamu nebo stromu pro vybranou položku, pokud je seznam nebo strom neaktivní. Aktivní seznam nebo strom má fokus klávesnice, neaktivní nikoli.",
"listInactiveSelectionIconForeground": "Barva popředí seznamu nebo doménového stromu pro vybranou položku, pokud je seznam nebo doménový strom neaktivní. Aktivní seznam nebo doménový strom má fokus klávesnice, neaktivní nikoli.",
"listWarningForeground": "Barva popředí položek seznamu obsahujících upozornění",
+ "tableColumnsBorder": "Barva ohraničení tabulky mezi sloupci",
+ "tableOddRowsBackgroundColor": "Barva pozadí pro liché řádky tabulky",
+ "treeInactiveIndentGuidesStroke": "Barva tahu stromu pro vodítka odsazení, která nejsou aktivní.",
+ "treeIndentGuidesStroke": "Barva tahu stromu pro vodítka odsazení"
+ },
+ "vs/platform/theme/common/colors/menuColors": {
"menuBackground": "Barva pozadí položek nabídky",
"menuBorder": "Barva ohraničení nabídek",
"menuForeground": "Barva popředí položek nabídky",
"menuSelectionBackground": "Barva pozadí vybrané položky nabídky v nabídkách",
"menuSelectionBorder": "Barva ohraničení vybrané položky nabídky v nabídkách",
"menuSelectionForeground": "Barva popředí vybrané položky nabídky v nabídkách",
- "menuSeparatorBackground": "Barva položky nabídky oddělovače v nabídkách",
- "mergeBorder": "Barva ohraničení záhlaví a rozdělovače pro konflikty sloučení ve vloženém (inline) editoru",
- "mergeCommonContentBackground": "Pozadí obsahu společného nadřazeného prvku pro konflikty sloučení ve vloženém (inline) editoru. Barva nesmí být neprůhledná, aby se nepřekryly dekorace pod tím.",
- "mergeCommonHeaderBackground": "Pozadí záhlaví společného nadřazeného prvku pro konflikty sloučení ve vloženém (inline) editoru. Barva nesmí být neprůhledná, aby se nepřekryly dekorace pod tím.",
- "mergeCurrentContentBackground": "Pozadí aktuálního obsahu pro konflikty sloučení ve vloženém (inline) editoru. Barva nesmí být neprůhledná, aby se nepřekryly dekorace pod tím.",
- "mergeCurrentHeaderBackground": "Pozadí aktuálního záhlaví pro konflikty sloučení ve vloženém (inline) editoru. Barva nesmí být neprůhledná, aby se nepřekryly dekorace pod tím.",
- "mergeIncomingContentBackground": "Pozadí příchozího obsahu pro konflikty sloučení ve vloženém (inline) editoru. Barva nesmí být neprůhledná, aby se nepřekryly dekorace pod tím.",
- "mergeIncomingHeaderBackground": "Pozadí příchozího záhlaví pro konflikty sloučení ve vloženém (inline) editoru. Barva nesmí být neprůhledná, aby se nepřekryly dekorace pod tím.",
+ "menuSeparatorBackground": "Barva položky nabídky oddělovače v nabídkách"
+ },
+ "vs/platform/theme/common/colors/minimapColors": {
"minimapBackground": "Barva pozadí minimapy",
"minimapError": "Barva značky minimapy pro chyby",
"minimapFindMatchHighlight": "Barva značky minimapy pro nalezené shody",
"minimapForegroundOpacity": "Neprůhlednost elementů popředí vykreslených v minimapě. Například „#000000c0“ vykreslí elementy s neprůhledností 75 %.",
+ "minimapInfo": "Barva značky minimapy pro informace.",
"minimapSelectionHighlight": "Barva značky minimapy pro výběr editoru",
"minimapSelectionOccurrenceHighlight": "Barva značky minimapy pro opakování výběru editoru.",
"minimapSliderActiveBackground": "Barva pozadí posuvníku minimapy při kliknutí na něj",
"minimapSliderBackground": "Barva pozadí posuvníku minimapy",
"minimapSliderHoverBackground": "Barva pozadí posuvníku minimapy při umístění ukazatele myši",
- "overviewRuleWarning": "Barva značky minimapy pro upozornění",
- "overviewRulerCommonContentForeground": "Popředí přehledového pravítka nadřazeného prvku pro konflikty sloučení ve vloženém (inline) editoru",
- "overviewRulerCurrentContentForeground": "Popředí aktuálního přehledového pravítka pro konflikty sloučení ve vloženém (inline) editoru",
- "overviewRulerFindMatchForeground": "Barva značky přehledového pravítka pro hledání shod. Barva nesmí být neprůhledná, aby se nepřekryly dekorace pod tím.",
- "overviewRulerIncomingContentForeground": "Popředí příchozího přehledového pravítka pro konflikty sloučení ve vloženém (inline) editoru",
- "overviewRulerSelectionHighlightForeground": "Barva značky přehledového pravítka pro zvýraznění výběru. Barva nesmí být neprůhledná, aby se nepřekryly dekorace pod tím.",
+ "overviewRuleWarning": "Barva značky minimapy pro upozornění"
+ },
+ "vs/platform/theme/common/colors/miscColors": {
+ "activityErrorBadge.background": "Barva pozadí odznáčku chybové aktivity",
+ "activityErrorBadge.foreground": "Barva popředí odznáčku chybové aktivity",
+ "activityWarningBadge.background": "Barva pozadí odznáčku aktivity upozornění",
+ "activityWarningBadge.foreground": "Barva popředí odznáčku aktivity upozornění",
+ "badgeBackground": "Barva pozadí odznáčku. Odznáčky jsou malé informační popisky, například s počtem výsledků hledání.",
+ "badgeForeground": "Barva popředí odznáčku. Odznáčky jsou malé informační popisky, například s počtem výsledků hledání.",
+ "chartAxis": "Barva osy grafu",
+ "chartGuide": "Vodicí čára pro graf",
+ "chartLine": "Barva čáry grafu",
+ "progressBarBackground": "Barva pozadí indikátoru průběhu, který se může zobrazit u dlouhotrvajících operací",
+ "sashActiveBorder": "Barva ohraničení aktivních rámečků",
+ "scrollbarBackground": "Barva pozadí dráhy posuvníku",
+ "scrollbarShadow": "Stín posuvníku označující, že je zobrazení posouváno",
+ "scrollbarSliderActiveBackground": "Barva pozadí jezdce posuvníku při kliknutí na něj",
+ "scrollbarSliderBackground": "Barva pozadí jezdce posuvníku",
+ "scrollbarSliderHoverBackground": "Barva pozadí jezdce posuvníku při umístění ukazatele myši"
+ },
+ "vs/platform/theme/common/colors/quickpickColors": {
"pickerBackground": "Barva pozadí widgetu rychlého výběru. Widget rychlého výběru je kontejner pro ovládací prvky výběru, jako je paleta příkazů.",
"pickerForeground": "Barva popředí widgetu rychlého výběru. Widget rychlého výběru je kontejner pro ovládací prvky výběru, jako je paleta příkazů.",
"pickerGroupBorder": "Barva rychlého výběru pro ohraničení seskupení",
"pickerGroupForeground": "Barva rychlého výběru pro popisky seskupení",
"pickerTitleBackground": "Barva pozadí názvu widgetu rychlého výběru. Widget rychlého výběru je kontejner pro ovládací prvky výběru, jako je paleta příkazů.",
- "problemsErrorIconForeground": "Barva, která se používá pro ikonu problémů na úrovni chyby",
- "problemsInfoIconForeground": "Barva, která se používá pro ikonu problémů na úrovni informací",
- "problemsWarningIconForeground": "Barva, která se používá pro ikonu problémů na úrovni upozornění",
- "progressBarBackground": "Barva pozadí indikátoru průběhu, který se může zobrazit u dlouhotrvajících operací",
"quickInput.list.focusBackground deprecation": "Použijte prosím raději quickInputList.focusBackground.",
"quickInput.listFocusBackground": "Barva pozadí rychlého výběru pro položku s fokusem",
"quickInput.listFocusForeground": "Barva popředí rychlého výběru pro položku s fokusem",
- "quickInput.listFocusIconForeground": "Barva popředí ikony rychlého výběru pro položku s fokusem",
- "sashActiveBorder": "Barva ohraničení aktivních rámečků",
- "scrollbarShadow": "Stín posuvníku označující, že je zobrazení posouváno",
- "scrollbarSliderActiveBackground": "Barva pozadí jezdce posuvníku při kliknutí na něj",
- "scrollbarSliderBackground": "Barva pozadí jezdce posuvníku",
- "scrollbarSliderHoverBackground": "Barva pozadí jezdce posuvníku při umístění ukazatele myši",
+ "quickInput.listFocusIconForeground": "Barva popředí ikony rychlého výběru pro položku s fokusem"
+ },
+ "vs/platform/theme/common/colors/searchColors": {
+ "search.resultsInfoForeground": "Barva textu ve zprávě o dokončení vyhledávacího viewletu.",
"searchEditor.editorFindMatchBorder": "Barva ohraničení shod vrácených vyhledávacím dotazem v editoru vyhledávání",
- "searchEditor.queryMatch": "Barva shod vrácených vyhledávacím dotazem v editoru vyhledávání",
- "selectionBackground": "Barva pozadí výběrů textu na pracovní ploše (např. ve vstupních polích nebo textových oblastech). Poznámka: Nevztahuje se na výběry v editoru.",
- "snippetFinalTabstopHighlightBackground": "Barva pozadí zvýraznění pro poslední zarážku tabulátoru fragmentu kódu",
- "snippetFinalTabstopHighlightBorder": "Barva ohraničení zvýraznění pro poslední zarážku tabulátoru fragmentu kódu",
- "snippetTabstopHighlightBackground": "Barva pozadí zvýraznění zarážky tabulátoru fragmentu kódu",
- "snippetTabstopHighlightBorder": "Barva ohraničení zvýraznění zarážky tabulátoru fragmentu kódu",
- "statusBarBackground": "Barva pozadí stavového řádku s informacemi zobrazenými v editoru při umístění ukazatele myši",
- "tableColumnsBorder": "Barva ohraničení tabulky mezi sloupci",
- "tableOddRowsBackgroundColor": "Barva pozadí pro liché řádky tabulky",
- "textBlockQuoteBackground": "Barva pozadí pro blokové citace v textu",
- "textBlockQuoteBorder": "Barva ohraničení pro blokové citace v textu",
- "textCodeBlockBackground": "Barva pozadí pro bloky kódu v textu",
- "textLinkActiveForeground": "Barva popředí pro odkazy v textu, když se na ně klikne nebo umístí ukazatel myši",
- "textLinkForeground": "Barva popředí pro odkazy v textu",
- "textPreformatForeground": "Barva popředí pro předem naformátované segmenty textu",
- "textSeparatorForeground": "Barva pro oddělovače textu",
- "toolbarActiveBackground": "Pozadí panelu nástrojů při podržení myši nad akcemi",
- "toolbarHoverBackground": "Pozadí panelu nástrojů při najetí myší na akce",
- "toolbarHoverOutline": "Obrys panelu nástrojů při najetí myší na akce",
- "treeIndentGuidesStroke": "Barva tahu stromu pro vodítka odsazení",
- "warningBorder": "Barva ohraničení polí upozornění v editoru",
- "widgetShadow": "Barva stínu widgetů, například pro hledání/nahrazení v rámci editoru"
+ "searchEditor.queryMatch": "Barva shod vrácených vyhledávacím dotazem v editoru vyhledávání"
+ },
+ "vs/platform/theme/common/colorUtils": {
+ "transparecyRequired": "Tato barva musí být průhledná, jinak bude zakrývat obsah.",
+ "useDefault": "Použít výchozí hodnotu."
},
"vs/platform/theme/common/iconRegistry": {
"iconDefinition.fontCharacter": "Znak písma přidružený k definici ikony",
"iconDefinition.fontId": "ID písma, které se má použít. Pokud není nastaveno, použije se písmo definované jako první.",
"nextChangeIcon": "Ikona pro přechod na další umístění v editoru",
"previousChangeIcon": "Ikona pro přechod na předchozí umístění v editoru",
+ "schema.fontId.formatError": "ID písma může obsahovat jenom písmena, číslice, podtržítka a spojovníky.",
"widgetClose": "Ikona pro akci zavření ve widgetech"
},
"vs/platform/theme/common/tokenClassificationRegistry": {
@@ -2102,7 +3043,7 @@
"operator": "Styl pro operátory",
"parameter": "Styl pro parametry",
"property": "Styl pro vlastnosti",
- "readonly": "Styl, který se má použít pro symboly, které jsou jen pro čtení",
+ "readonly": "Styl, který se má použít pro symboly, které jsou jen pro čtení.",
"regexp": "Styl pro výrazy",
"schema.fontStyle.error": "Styl písma pravidla: italic, bold, underline, strikethrough nebo kombinace těchto hodnot. Prázdný řetězec zruší nastavení všech stylů.",
"schema.token.background.warning": "Barvy pozadí tokenu nejsou aktuálně podporovány.",
@@ -2122,7 +3063,6 @@
"variable": "Styl pro proměnné"
},
"vs/platform/undoRedo/common/undoRedoService": {
- "cancel": "Zrušit",
"cannotResourceRedoDueToInProgressUndoRedo": "Akci {0} se nepovedlo znovu provést, protože už běží jiná operace vrácení zpět nebo opětovného provedení.",
"cannotResourceUndoDueToInProgressUndoRedo": "Akci {0} se nepovedlo vrátit zpět, protože už běží jiná operace vrácení zpět nebo opětovného provedení.",
"cannotWorkspaceRedo": "Akci {0} se nepovedlo znovu provést u všech souborů. {1}",
@@ -2135,12 +3075,12 @@
"cannotWorkspaceUndoDueToInProgressUndoRedo": "Akci {0} se nepovedlo vrátit zpět u všech souborů, protože už běží jiná operace vrácení zpět nebo opětovného provedení pro tyto soubory: {1}.",
"confirmDifferentSource": "Chcete vrátit akci {0}?",
"confirmDifferentSource.no": "Ne",
- "confirmDifferentSource.yes": "Ano",
+ "confirmDifferentSource.yes": "&&Ano",
"confirmWorkspace": "Chcete vrátit zpět akci {0} u všech souborů?",
"externalRemoval": "Na disku byly zavřeny a upraveny následující soubory: {0}.",
"noParallelUniverses": "Následující soubory byly upraveny nekompatibilním způsobem: {0}.",
- "nok": "Vrátit tento soubor zpět",
- "ok": "Vrátit zpět tento počet souborů: {0}"
+ "nok": "Vrátit tento &&soubor zpět",
+ "ok": "&&Vrátit zpět tento počet souborů: {0}"
},
"vs/platform/update/common/update.config.contribution": {
"default": "Umožňuje povolit automatické vyhledávání aktualizací. Code bude aktualizace vyhledávat automaticky a pravidelně.",
@@ -2181,22 +3121,36 @@
"settingsSync.ignoredSettings": "Nakonfigurujte nastavení, která mají být při synchronizaci ignorována.",
"settingsSync.keybindingsPerPlatform": "Synchronizovat klávesové zkratky pro každou platformu"
},
+ "vs/platform/userDataSync/common/userDataSyncLog": {
+ "userDataSyncLog": "Synchronizace nastavení"
+ },
"vs/platform/userDataSync/common/userDataSyncMachines": {
"error incompatible": "Nelze číst data počítačů, protože aktuální verze není kompatibilní. Aktualizujte prosím {0} a zkuste to znovu."
},
- "vs/platform/windows/electron-main/window": {
- "appCrashed": "Došlo k chybovému ukončení okna.",
- "appCrashedDetail": "Omlouváme se za způsobené nepříjemnosti. Okno můžete znovu otevřít a pokračovat tam, kde jste přestali.",
- "appCrashedDetails": "Okno se chybově ukončilo (důvod: {0}, kód: {1})",
+ "vs/platform/userDataSync/common/userDataSyncResourceProvider": {
+ "incompatible sync data": "Nelze parsovat data synchronizace, protože nejsou kompatibilní s aktuální verzí."
+ },
+ "vs/platform/windows/electron-main/windowImpl": {
+ "appGone": "Okno se neočekávaně ukončilo.",
+ "appGoneDetailEmptyWindow": "Omlouváme se za komplikace. Pokud chcete začít znovu, můžete otevřít nové prázdné okno.",
+ "appGoneDetailWorkspace": "Omlouváme se za způsobené nepříjemnosti. Okno můžete znovu otevřít a pokračovat tam, kde jste přestali.",
+ "appGoneDetails": "Okno se neočekávaně ukončilo (důvod:{0}, kód:{1})",
"appStalled": "Okno neodpovídá.",
"appStalledDetail": "Okno můžete znovu otevřít nebo zavřít nebo také můžete dál čekat.",
"close": "&&Zavřít",
"doNotRestoreEditors": "Neobnovovat editory",
"hiddenMenuBar": "K řádku nabídek máte stále přístup pomocí klávesy Alt.",
+ "newWindow": "&&Nové okno",
"reopen": "&&Znovu otevřít",
"wait": "&&Nadále čekat"
},
"vs/platform/windows/electron-main/windowsMainService": {
+ "allow": "&&Povolit",
+ "cancel": "&&Zrušit",
+ "confirmOpenDetail": "Cesta {0} používá hostitele, který není povolen. Pokud hostiteli nedůvěřujete, měli byste stisknout Zrušit.",
+ "confirmOpenMessage": "Hostitel {0} nebyl nalezen v seznamu povolených hostitelů. Chcete ho přesto povolit?",
+ "doNotAskAgain": "Trvale povolit hostitele {0}",
+ "learnMore": "&&Další informace",
"ok": "&&OK",
"pathNotExistDetail": "Cesta {0} na tomto počítači neexistuje.",
"pathNotExistTitle": "Cesta neexistuje.",
@@ -2206,11 +3160,11 @@
"vs/platform/workspace/common/workspace": {
"codeWorkspace": "Pracovní prostor Code"
},
- "vs/platform/workspace/common/workspaceTrust": {
- "trusted": "Důvěryhodný",
- "untrusted": "Omezený režim"
- },
"vs/platform/workspaces/electron-main/workspacesHistoryMainService": {
+ "cancel": "&&Zrušit",
+ "clearButtonLabel": "&&Vymazat",
+ "confirmClearDetail": "Tato akce je nevratná!",
+ "confirmClearRecentsMessage": "Chcete vymazat všechny naposledy otevřené soubory a pracovní prostory?",
"newWindow": "Nové okno",
"newWindowDesc": "Otevře se v novém okně.",
"recentFolders": "Poslední složky",
@@ -2223,6 +3177,28 @@
"workspaceOpenedDetail": "Pracovní prostor už je otevřený v jiném okně. Nejdříve prosím toto okno zavřete a pak to zkuste znovu.",
"workspaceOpenedMessage": "Pracovní prostor {0} nelze uložit."
},
+ "vs/server/node/remoteExtensionHostAgentCli": {
+ "remotecli": "Vzdálené rozhraní příkazového řádku"
+ },
+ "vs/server/node/serverEnvironmentService": {
+ "acceptLicenseTerms": "Pokud je nastaveno, uživatel souhlasí s licenčními podmínkami serveru a server bude spuštěn bez výzvy uživatele.",
+ "connection-token": "Tajný kód, který musí být součástí všech požadavků.",
+ "connection-token-file": "Cesta k souboru, který obsahuje token připojení.",
+ "default-folder": "Složka pracovního prostoru, která se otevře, pokud v adrese URL prohlížeče není zadán žádný vstup. Relativní nebo absolutní cesta vyřešená proti aktuálnímu pracovnímu adresáři.",
+ "default-workspace": "Pracovní prostor, který se otevře, pokud v adrese URL prohlížeče není zadán žádný vstup. Relativní nebo absolutní cesta vyřešená proti aktuálnímu pracovnímu adresáři.",
+ "host": "Název hostitele nebo IP adresa, na které má server naslouchat. Pokud není nastaveno, je výchozí hodnota localhost.",
+ "port": "Port, na kterém má server naslouchat. Pokud je předána 0, je vybrán náhodný volný port. Pokud je předán rozsah ve formátu číslo-číslo, je vybrán volný port z tohoto rozsahu (včetně konce).",
+ "reconnection-grace-time": "Umožňuje přepsat časové období odkladu opětovného připojení v sekundách. Výchozí hodnota je 10800 (3 hodiny).",
+ "server-base-path": "Cesta, ve které je poskytováno webové uživatelské rozhraní a Code Server. Výchozí hodnota je /.",
+ "serverDataDir": "Určuje adresář, ve kterém se uchovávají data serveru.",
+ "socket-path": "Cesta k souboru soketu, kterému má server naslouchat.",
+ "start-server": "Spouštění serveru při instalaci nebo odinstalaci rozšíření. Používá se v kombinaci s install-extension, install-builtin-extension a uninstall-extension.",
+ "telemetry-level": "Nastaví počáteční úroveň telemetrie. Platné úrovně jsou: off, crash, error a all. Pokud není zadána, bude server odesílat telemetrii, dokud se klient nepřipojí, poté použije nastavení telemetrie klienta. Nastavení této hodnoty na off je ekvivalentní parametru --disable-telemetry.",
+ "without-connection-token": "Spustit bez tokenu připojení. Tuto možnost použijte pouze v případě, že je připojení zabezpečeno jiným způsobem."
+ },
+ "vs/server/node/serverServices": {
+ "remoteExtensionLog": "Server"
+ },
"win32/i18n/messages": {
"AddContextMenuFiles": "Přidat akci Otevřít pomocí %1 do místní nabídky souboru v Průzkumníkovi Windows",
"AddContextMenuFolders": "Přidat akci Otevřít pomocí %1 do místní nabídky adresáře v Průzkumníkovi Windows",
@@ -2236,369 +3212,67 @@
"OpenWithCodeContextMenu": "&Otevřít pomocí %1",
"Other": "Jiné:",
"RunAfter": "Po instalaci spustit %1",
- "SourceFile": "Zdrojový soubor %1"
- },
- "readme.md": {
- "LanguagePackTitle": "Jazyková sada nabízí lokalizované uživatelské rozhraní pro VS Code",
- "Usage": "Použití",
- "displayLanguage": "Výchozí jazyk uživatelského rozhraní můžete přepsat tak, že explicitně nastavíte jazyk zobrazení VS Code pomocí příkazu Konfigurovat jazyk zobrazení.",
- "Command Palette": "Stisknutím kláves Ctrl+Shift+P zobrazte Paletu příkazů a začněte psát slovo zobrazení, aby se vyfiltroval a zobrazil příkaz Konfigurovat jazyk zobrazení.",
- "ShowLocale": "Stiskněte klávesu Enter a zobrazí se vám seznam nainstalovaných jazyků podle národního prostředí. Aktuální národní prostředí se zvýrazní.",
- "SwtichUI": "Pokud chcete přepnout jazyk uživatelského rozhraní, vyberte jiné národní prostředí.",
- "DocLink": "Další informace najdete v Docs.",
- "Contributing": "Přispívá",
- "Feedback": "Pro zpětnou vazbu k vylepšení překladu prosím vytvořte problém v úložišti vscode-loc.",
- "LocPlatform": "Řetězce pro překlady se udržují na platformě Microsoft Localization. Změna se dá provést pouze na této platformě, pak ji můžete exportovat do úložiště vscode-loc. Úložiště vscode-loc proto nebude přijímat žádosti o přijetí změn.",
- "LicenseTitle": "Licence",
- "LicenseMessage": "Na zdrojový kód a řetězce se vztahuje licence MIT.",
- "Credits": "Autoři",
- "Contributed": "Do této jazykové sady přispěla svými lokalizacemi a úsilím skupina By the community, for the community. Přispěvatelům komunity patří zvláštní poděkování za to, že je dali k dispozici.",
- "TopContributors": "Hlavní přispěvatelé:",
- "Contributors": "Přispěvatelé:",
- "EnjoyLanguagePack": "Ať slouží!"
- },
- "win32/i18n/Default": {
- "SetupAppTitle": "Instalační program",
- "SetupWindowTitle": "Instalační program – %1",
- "UninstallAppTitle": "Odinstalovat",
- "UninstallAppFullTitle": "Odinstalace %1",
- "InformationTitle": "Informace",
- "ConfirmTitle": "Potvrdit",
- "ErrorTitle": "Chyba",
- "SetupLdrStartupMessage": "Tímto nainstalujete aplikaci %1. Chcete pokračovat?",
- "LdrCannotCreateTemp": "Nelze vytvořit dočasný soubor. Instalace byla přerušena.",
- "LdrCannotExecTemp": "Nelze spustit soubor v dočasném adresáři. Instalace byla přerušena.",
- "LastErrorMessage": "%1.%n%nChyba %2: %3",
- "SetupFileMissing": "V instalačním adresáři chybí soubor %1. Opravte prosím problém nebo získejte novou kopii programu.",
- "SetupFileCorrupt": "Soubory instalačního programu jsou poškozené. Získejte prosím novou kopii programu.",
- "SetupFileCorruptOrWrongVer": "Soubory instalačního programu jsou poškozené nebo nejsou kompatibilní s touto verzí instalačního programu. Opravte prosím problém nebo získejte novou kopii programu.",
- "InvalidParameter": "Na příkazovém řádku byl předán neplatný parametr:%n%n%1",
- "SetupAlreadyRunning": "Instalace je už spuštěná.",
- "WindowsVersionNotSupported": "Tato aplikace nepodporuje verzi systému Windows, která se používá na vašem počítači.",
- "WindowsServicePackRequired": "Tato aplikace vyžaduje %1 Service Pack %2 nebo novější.",
- "NotOnThisPlatform": "Tuto aplikaci nebude možné spustit na této platformě: %1.",
- "OnlyOnThisPlatform": "Tuto aplikaci je nutné spouštět na této platformě: %1.",
- "OnlyOnTheseArchitectures": "Tuto aplikaci lze nainstalovat pouze do verzí systému Windows určených pro následující architektury procesorů:%n%n%1",
- "MissingWOW64APIs": "Verze systému Windows, kterou používáte, nezahrnuje funkce vyžadované instalačním programem k provedení 64bitové instalace. Pokud chcete tento problém vyřešit, nainstalujte si prosím Service Pack %1.",
- "WinVersionTooLowError": "Tato aplikace vyžaduje systém %1 verze %2 nebo novější.",
- "WinVersionTooHighError": "Tuto aplikaci nelze nainstalovat do systému %1 verze %2 nebo novější.",
- "AdminPrivilegesRequired": "Při instalaci této aplikace musíte být přihlášeni jako správce.",
- "PowerUserPrivilegesRequired": "Při instalaci této aplikace musíte být přihlášeni jako správce nebo jako člen skupiny Power Users.",
- "SetupAppRunningError": "Instalační program zjistil, že aplikace %1 je aktuálně spuštěná.%n%nZavřete teď prosím všechny její instance a potom pokračujte kliknutím na OK. Kliknutím na Zrušit akci zrušíte.",
- "UninstallAppRunningError": "Při odinstalaci se zjistilo, že aplikace %1 je aktuálně spuštěná.%n%nZavřete teď prosím všechny její instance a potom pokračujte kliknutím na OK. Kliknutím na Zrušit akci zrušíte.",
- "ErrorCreatingDir": "Instalačnímu programu se nepovedlo vytvořit adresář %1.",
- "ErrorTooManyFilesInDir": "Soubor v adresáři %1 nelze vytvořit, protože adresář obsahuje příliš mnoho souborů.",
- "ExitSetupTitle": "Ukončit instalaci",
- "ExitSetupMessage": "Instalace nebyla dokončena. Pokud ji teď ukončíte, aplikace se nenainstaluje.%n%nPokud budete chtít instalaci dokončit, můžete kdykoli později spustit znovu instalační program.%n%nChcete instalaci ukončit?",
- "AboutSetupMenuItem": "&O instalačním programu...",
- "AboutSetupTitle": "O instalačním programu",
- "AboutSetupMessage": "%1 verze %2%n%3%n%n%1 domovská stránka:%n%4",
- "ButtonBack": "< &Zpět",
- "ButtonNext": "&Další >",
- "ButtonInstall": "&Nainstalovat",
- "ButtonOK": "OK",
- "ButtonCancel": "Zrušit",
- "ButtonYes": "&Ano",
- "ButtonYesToAll": "Ano pro &všechny",
- "ButtonNo": "&Ne",
- "ButtonNoToAll": "&Ne pro všechny",
- "ButtonFinish": "&Dokončit",
- "ButtonBrowse": "&Procházet...",
- "ButtonWizardBrowse": "P&rocházet...",
- "ButtonNewFolder": "Vytvořit &novou složku",
- "SelectLanguageTitle": "Vybrat jazyk instalace",
- "SelectLanguageLabel": "Vyberte jazyk, který má být použit během instalace:",
- "ClickNext": "Pokračujte kliknutím na Další. Zvolením možnosti Zrušit instalační program ukončíte.",
- "BrowseDialogTitle": "Najít složku",
- "BrowseDialogLabel": "Vyberte složku z níže uvedeného seznamu a klikněte na OK.",
- "NewFolderName": "Nová složka",
- "WelcomeLabel1": "Vítá vás průvodce instalací aplikace [name]",
- "WelcomeLabel2": "Tímto se do počítače nainstaluje aplikace [name/ver].%n%nPřed pokračováním doporučujeme zavřít všechny ostatní aplikace.",
- "WizardPassword": "Heslo",
- "PasswordLabel1": "Tato instalace je chráněna heslem.",
- "PasswordLabel3": "Zadejte prosím heslo a pokračujte kliknutím na Další. V heslech se rozlišují malá a velká písmena.",
- "PasswordEditLabel": "&Heslo:",
- "IncorrectPassword": "Heslo, které jste zadali, není správné. Zkuste to prosím znovu.",
- "WizardLicense": "Licenční smlouva",
- "LicenseLabel": "Než budete pokračovat, přečtěte si prosím následující důležité informace",
- "LicenseLabel3": "Přečtěte si prosím následující licenční smlouvu. Před pokračováním v instalaci musíte vyjádřit souhlas s jejími podmínkami.",
- "LicenseAccepted": "&Souhlasím s podmínkami smlouvy",
- "LicenseNotAccepted": "&Nesouhlasím s podmínkami smlouvy",
- "WizardInfoBefore": "Informace",
- "InfoBeforeLabel": "Než budete pokračovat, přečtěte si prosím následující důležité informace",
- "InfoBeforeClickLabel": "Až budete připraveni pokračovat v instalaci, klikněte na Další.",
- "WizardInfoAfter": "Informace",
- "InfoAfterLabel": "Než budete pokračovat, přečtěte si prosím následující důležité informace",
- "InfoAfterClickLabel": "Až budete připraveni pokračovat v instalaci, klikněte na Další.",
- "WizardUserInfo": "Informace o uživateli",
- "UserInfoDesc": "Zadejte prosím svoje informace.",
- "UserInfoName": "&Uživatelské jméno:",
- "UserInfoOrg": "&Organizace:",
- "UserInfoSerial": "&Sériové číslo:",
- "UserInfoNameRequired": "Je nutné zadat jméno.",
- "WizardSelectDir": "Vybrat cílové umístění",
- "SelectDirDesc": "Kam se má aplikace [name] nainstalovat?",
- "SelectDirLabel3": "Instalační program nainstaluje aplikaci [name] do následující složky.",
- "SelectDirBrowseLabel": "Pokračujte kliknutím na Další. Pokud chcete vybrat jinou složku, klikněte na Procházet.",
- "DiskSpaceMBLabel": "Je vyžadováno minimálně [mb] MB volného místa na disku.",
- "CannotInstallToNetworkDrive": "Instalační program nemůže provést instalaci na síťovou jednotku.",
- "CannotInstallToUNCPath": "Instalační program nemůže provést instalaci do cesty UNC.",
- "InvalidPath": "Musíte zadat úplnou cestu s písmenem jednotky, příklad:%n%nC:\\APP%n%nnebo cesta UNC ve formátu:%n%n\\\\server\\sdílená_složka",
- "InvalidDrive": "Jednotka nebo sdílená složka UNC, kterou jste vybrali, neexistuje nebo k ní nelze získat přístup. Vyberte prosím jiné umístění.",
- "DiskSpaceWarningTitle": "Nedostatek místa na disku",
- "DiskSpaceWarning": "Instalace vyžaduje minimálně %1 kB volného místa, ale na vybrané jednotce je k dispozici pouze %2 kB. %n%nChcete přesto pokračovat?",
- "DirNameTooLong": "Název složky nebo cesta ke složce jsou příliš dlouhé.",
- "InvalidDirName": "Název složky není platný.",
- "BadDirName32": "Názvy složek nesmí obsahovat žádný z následujících znaků:%n%n%1",
- "DirExistsTitle": "Složka existuje",
- "DirExists": "Složka:%n%n%1%n%nuž existuje. Chcete přesto provést instalaci do této složky?",
- "DirDoesntExistTitle": "Složka neexistuje.",
- "DirDoesntExist": "Složka:%n%n%1%n%neexistuje. Chcete ji vytvořit?",
- "WizardSelectComponents": "Vybrat součásti",
- "SelectComponentsDesc": "Které součásti mají být nainstalovány?",
- "SelectComponentsLabel2": "Vyberte součásti, které chcete nainstalovat. Zrušte zaškrtnutí součástí, které nechcete nainstalovat. Až budete připraveni pokračovat, klikněte na Další.",
- "FullInstallation": "Úplná instalace",
- "CompactInstallation": "Kompaktní instalace",
- "CustomInstallation": "Vlastní instalace",
- "NoUninstallWarningTitle": "Existující součásti",
- "NoUninstallWarning": "Instalační program zjistil, že v počítači jsou již nainstalovány následující součásti:%n%n%1%n%nPokud zrušíte výběr těchto součástí, neodinstalují se.%n%nChcete přesto pokračovat?",
- "ComponentSize1": "%1 kB",
- "ComponentSize2": "%1 MB",
- "ComponentsDiskSpaceMBLabel": "Aktuální výběr vyžaduje minimálně [mb] MB volného místa na disku.",
- "WizardSelectTasks": "Vybrat další úlohy",
- "SelectTasksDesc": "Jaké další úlohy se mají provést?",
- "SelectTasksLabel2": "Vyberte další úlohy, které má instalační program provést během instalace aplikace [name], a potom klikněte na Další.",
- "WizardSelectProgramGroup": "Vybrat složku nabídky Start",
- "SelectStartMenuFolderDesc": "Kam má instalační program umístit zástupce aplikace?",
- "SelectStartMenuFolderLabel3": "Instalační program vytvoří zástupce aplikace v následující složce nabídky Start.",
- "SelectStartMenuFolderBrowseLabel": "Pokračujte kliknutím na Další. Pokud chcete vybrat jinou složku, klikněte na Procházet.",
- "MustEnterGroupName": "Musíte zadat název složky.",
- "GroupNameTooLong": "Název složky nebo cesta ke složce jsou příliš dlouhé.",
- "InvalidGroupName": "Název složky není platný.",
- "BadGroupName": "Název složky nesmí obsahovat žádný z následujících znaků:%n%n%1",
- "NoProgramGroupCheck2": "&Nevytvářet složku v nabídce Start",
- "WizardReady": "Připraveno k instalaci",
- "ReadyLabel1": "Instalační program je nyní připraven začít instalovat aplikaci [name] do počítače.",
- "ReadyLabel2a": "Pokud chcete pokračovat v instalaci, klikněte na Nainstalovat. Pokud chcete zkontrolovat nebo změnit některá nastavení, klikněte na Zpět.",
- "ReadyLabel2b": "Pokud chcete pokračovat v instalaci, klikněte na Nainstalovat.",
- "ReadyMemoUserInfo": "Informace o uživateli:",
- "ReadyMemoDir": "Cílové umístění:",
- "ReadyMemoType": "Typ instalace:",
- "ReadyMemoComponents": "Vybrané součásti:",
- "ReadyMemoGroup": "Složka nabídky Start:",
- "ReadyMemoTasks": "Další úlohy:",
- "WizardPreparing": "Připravuje se instalace.",
- "PreparingDesc": "Instalační program připravuje instalaci aplikace [name] do vašeho počítače.",
- "PreviousInstallNotCompleted": "Nebyla dokončena instalace nebo odinstalace předchozí aplikace. K dokončení této instalace bude nutné restartovat počítač.%n%nPo restartování počítače spusťte instalační program znovu a dokončete instalaci aplikace [name].",
- "CannotContinue": "Instalační program nemůže pokračovat. Kliknutím na Zrušit instalační program ukončíte.",
- "ApplicationsFound": "Následující aplikace používají soubory, které musí instalační program aktualizovat. Doporučuje se, abyste instalačnímu programu povolili tyto aplikace automaticky zavřít.",
- "ApplicationsFound2": "Následující aplikace používají soubory, které musí instalační program aktualizovat. Doporučuje se, abyste instalačnímu programu povolili tyto aplikace automaticky zavřít. Po dokončení instalace se instalační program pokusí aplikace restartovat.",
- "CloseApplications": "&Automaticky zavřít aplikace",
- "DontCloseApplications": "&Nezavírat aplikace",
- "ErrorCloseApplications": "Instalační program nemohl automaticky zavřít všechny aplikace. Před pokračováním doporučujeme zavřít všechny aplikace používající soubory, které musí instalační program aktualizovat.",
- "WizardInstalling": "Probíhá instalace.",
- "InstallingLabel": "Počkejte prosím, než instalační program do počítače nainstaluje aplikaci [name].",
- "FinishedHeadingLabel": "Dokončení průvodce instalací aplikace [name]",
- "FinishedLabelNoIcons": "Instalační program dokončil instalaci aplikace [name] na vašem počítači.",
- "FinishedLabel": "Instalační program dokončil instalaci aplikace [name] na vašem počítači. Aplikaci můžete spustit tak, že vyberete nainstalované ikony.",
- "ClickFinish": "Kliknutím na tlačítko Dokončit ukončíte instalační program.",
- "FinishedRestartLabel": "Aby bylo možné dokončit instalaci aplikace [name], musí instalační program restartovat počítač. Chcete teď počítač restartovat?",
- "FinishedRestartMessage": "Aby bylo možné dokončit instalaci aplikace [name], musí instalační program restartovat počítač.%n%nChcete teď počítač restartovat?",
- "ShowReadmeCheck": "Ano, chci si prohlédnout soubor README",
- "YesRadio": "&Ano, chci teď restartovat počítač",
- "NoRadio": "&Ne, počítač restartuji později",
- "RunEntryExec": "Spustit: %1",
- "RunEntryShellExec": "Zobrazit: %1",
- "ChangeDiskTitle": "Instalační program potřebuje další disk",
- "SelectDiskLabel2": "Vložte prosím disk %1 a klikněte na OK.%n%nPokud se soubory na tomto disku nacházejí v jiné složce než v té, která je zobrazena níže, zadejte správnou cestu nebo klikněte na Procházet.",
- "PathLabel": "&Cesta:",
- "FileNotInDir2": "Soubor %1 nebyl v umístění %2 nalezen. Vložte prosím správný disk nebo vyberte jinou složku.",
- "SelectDirectoryLabel": "Zadejte prosím umístění dalšího disku.",
- "SetupAborted": "Instalace nebyla dokončena.%n%nOpravte prosím problém a spusťte instalační program znovu.",
- "EntryAbortRetryIgnore": "Pokud to chcete zkusit znovu, klikněte na Zkusit znovu. Pokud chcete přesto pokračovat, zvolte Ignorovat. Zvolením možnosti Přerušit instalaci zrušíte.",
- "StatusClosingApplications": "Zavírají se aplikace...",
- "StatusCreateDirs": "Vytvářejí se adresáře...",
- "StatusExtractFiles": "Extrahují se soubory...",
- "StatusCreateIcons": "Vytvářejí se zástupci...",
- "StatusCreateIniEntries": "Vytvářejí se položky INI...",
- "StatusCreateRegistryEntries": "Vytvářejí se položky registru...",
- "StatusRegisterFiles": "Registrují se soubory...",
- "StatusSavingUninstall": "Ukládají se odinstalační informace...",
- "StatusRunProgram": "Dokončuje se instalace...",
- "StatusRestartingApplications": "Restartují se aplikace...",
- "StatusRollback": "Vracení změn...",
- "ErrorInternal2": "Vnitřní chyba: %1",
- "ErrorFunctionFailedNoCode": "Selhalo: %1",
- "ErrorFunctionFailed": "Selhalo: %1; kód: %2",
- "ErrorFunctionFailedWithMessage": "Selhalo: %1; kód: %2.%n%3",
- "ErrorExecutingProgram": "Nelze provést soubor:%n%1",
- "ErrorRegOpenKey": "Chyba při otevírání klíče registru:%n%1\\%2",
- "ErrorRegCreateKey": "Chyba při vytváření klíče registru:%n%1\\%2",
- "ErrorRegWriteKey": "Chyba při zápisu do klíče registru:%n%1\\%2",
- "ErrorIniEntry": "Při vytváření položky INI v souboru %1 došlo k chybě.",
- "FileAbortRetryIgnore": "Pokud to chcete zkusit znovu, klikněte na Zkusit znovu. Pokud chcete tento soubor přeskočit (nedoporučuje se), klikněte na Ignorovat. Pokud chcete instalaci zrušit, klikněte na Přerušit.",
- "FileAbortRetryIgnore2": "Pokud to chcete zkusit znovu, klikněte na Zkusit znovu. Pokud chcete přesto pokračovat (nedoporučuje se), klikněte na Ignorovat. Pokud chcete instalaci zrušit, klikněte na Přerušit.",
- "SourceIsCorrupted": "Zdrojový soubor je poškozený.",
- "SourceDoesntExist": "Zdrojový soubor %1 neexistuje.",
- "ExistingFileReadOnly": "Existující soubor je označen jako jen pro čtení.%n%nPokud chcete odebrat atribut jen pro čtení a zkusit to znovu, klikněte na Zkusit znovu. Pokud chcete tento soubor přeskočit, klikněte na Ignorovat. Pokud chcete instalaci zrušit, klikněte na Přerušit.",
- "ErrorReadingExistingDest": "Při pokusu o čtení existujícího souboru došlo k chybě:",
- "FileExists": "Soubor už existuje.%n%nChcete, aby ho instalační program přepsal?",
- "ExistingFileNewer": "Existující soubor je novější než soubor, který se instalační program pokouší nainstalovat. Doporučujeme zachovat existující soubor.%n%nChcete zachovat existující soubor?",
- "ErrorChangingAttr": "Při pokusu o změnu atributů existujícího souboru došlo k chybě:",
- "ErrorCreatingTemp": "Při pokusu o vytvoření souboru v cílovém adresáři došlo k chybě:",
- "ErrorReadingSource": "Při pokusu o čtení zdrojového souboru došlo k chybě:",
- "ErrorCopying": "Při pokusu o zkopírování souboru došlo k chybě:",
- "ErrorReplacingExistingFile": "Při pokusu o nahrazení existujícího souboru došlo k chybě:",
- "ErrorRestartReplace": "Selhání RestartReplace:",
- "ErrorRenamingTemp": "Při pokusu o přejmenování souboru v cílovém adresáři došlo k chybě:",
- "ErrorRegisterServer": "Nepovedlo se zaregistrovat DLL/OCX: %1.",
- "ErrorRegSvr32Failed": "Selhání RegSvr32 s ukončovacím kódem %1",
- "ErrorRegisterTypeLib": "Nepovedlo se zaregistrovat knihovnu typů: %1.",
- "ErrorOpeningReadme": "Při pokusu o otevření souboru README došlo k chybě.",
- "ErrorRestartingComputer": "Instalačnímu programu se nepovedlo restartovat počítač. Proveďte to prosím ručně.",
- "UninstallNotFound": "Soubor %1 neexistuje. Nelze provést odinstalaci.",
- "UninstallOpenError": "Soubor %1 se nepovedlo otevřít. Nelze provést odinstalaci.",
- "UninstallUnsupportedVer": "Soubor protokolu odinstalace %1 je ve formátu, který tato verze odinstalačního programu nerozpoznala. Nelze provést odinstalaci.",
- "UninstallUnknownEntry": "V protokolu odinstalace byla zjištěna neznámá položka (%1).",
- "ConfirmUninstall": "Opravdu chcete úplně odebrat %1? Rozšíření a nastavení se neodeberou.",
- "UninstallOnlyOnWin64": "Tuto instalaci lze odinstalovat pouze v 64bitovém systému Windows.",
- "OnlyAdminCanUninstall": "Tuto instalaci může odinstalovat pouze uživatel s oprávněními správce.",
- "UninstallStatusLabel": "Počkejte prosím, než se aplikace %1 odebere z počítače.",
- "UninstalledAll": "Aplikace %1 byla úspěšně odebrána z počítače.",
- "UninstalledMost": "Odinstalace aplikace %1 byla dokončena.%n%nNěkteré prvky se nepovedlo odebrat. Můžete je odebrat ručně.",
- "UninstalledAndNeedsRestart": "Aby bylo možné dokončit odinstalaci aplikace %1, je nutné restartovat počítač.%n%nChcete ho teď restartovat?",
- "UninstallDataCorrupted": "Soubor %1 je poškozený. Nelze provést odinstalaci.",
- "ConfirmDeleteSharedFileTitle": "Chcete odebrat sdílený soubor?",
- "ConfirmDeleteSharedFile2": "Systém indikuje, že následující sdílený soubor již není používán žádnými aplikacemi. Chcete, aby se při odinstalaci tento sdílený soubor odebral?%n%nPokud některá aplikace tento soubor stále používá a soubor bude odebrán, nemusí pak aplikace fungovat správně. Pokud si nejste jisti, zvolte Ne. Ponechání souboru v systému nebude mít žádný negativní dopad.",
- "SharedFileNameLabel": "Název souboru:",
- "SharedFileLocationLabel": "Umístění:",
- "WizardUninstalling": "Stav odinstalace",
- "StatusUninstalling": "Odinstalovává se: %1...",
- "ShutdownBlockReasonInstallingApp": "Instaluje se: %1.",
- "ShutdownBlockReasonUninstallingApp": "Odinstalovává se: %1.",
- "NameAndVersion": "%1 verze %2",
- "AdditionalIcons": "Další ikony:",
- "CreateDesktopIcon": "Vytvořit ikonu na &ploše",
- "CreateQuickLaunchIcon": "Vytvořit ikonu &Snadné spuštění",
- "ProgramOnTheWeb": "%1 na webu",
- "UninstallProgram": "Odinstalovat aplikaci %1",
- "LaunchProgram": "Spustit aplikaci %1",
- "AssocFileExtension": "&Přidružit aplikaci %1 k příponě souborů %2",
- "AssocingFileExtension": "%1 se přidružuje k příponě souborů %2...",
- "AutoStartProgramGroupDescription": "Po spuštění:",
- "AutoStartProgram": "Automaticky spustit %1",
- "AddonHostProgramNotFound": "%1 se ve složce, kterou jste vybrali, nepovedlo najít.%n%nChcete přesto pokračovat?"
- },
- "vscode/vscode/": {
- "FinishedLabel": "Instalační program dokončil instalaci aplikace [name] do vašeho počítače. Aplikaci můžete spustit pomocí nainstalovaných zástupců.",
- "ConfirmUninstall": "Opravdu chcete úplně odebrat %1 i se všemi součástmi?",
- "AdditionalIcons": "Další ikony:",
- "CreateDesktopIcon": "Vytvořit ikonu na &ploše",
- "CreateQuickLaunchIcon": "Vytvořit ikonu &Snadné spuštění",
- "AddContextMenuFiles": "Přidat akci Otevřít pomocí %1 do místní nabídky souboru v Průzkumníkovi Windows",
- "AddContextMenuFolders": "Přidat akci Otevřít pomocí %1 do místní nabídky adresáře v Průzkumníkovi Windows",
- "AssociateWithFiles": "Zaregistrovat %1 jako editor pro podporované typy souborů",
- "AddToPath": "Přidat do proměnné PATH (vyžaduje restart prostředí)",
- "RunAfter": "Po instalaci spustit %1",
- "Other": "Jiné:",
"SourceFile": "Zdrojový soubor %1",
- "OpenWithCodeContextMenu": "&Otevřít pomocí %1"
+ "UpdatingVisualStudioCode": "Aktualizuje se Visual Studio Code..."
},
"vs/code/electron-main/app": {
"cancel": "&&Ne",
"confirmOpenDetail": "Pokud jste tento požadavek neiniciovali, může to představovat pokus o útok na váš systém. Pokud jste vy sami neprovedli žádné kroky vedoucí k iniciování tohoto požadavku, doporučujeme kliknout na Ne.",
- "confirmOpenMessage": "Externí aplikace chce v {1} otevřít {0}. Chcete tento soubor nebo složku otevřít?",
- "open": "&&Ano",
- "trace.detail": "Vytvořte prosím problém a připojte ručně následující soubor:\r\n{0}",
- "trace.message": "Trasování se úspěšně vytvořilo.",
- "trace.ok": "&&OK"
+ "confirmOpenMessageFileOrFolder": "Externí aplikace chce v {1} otevřít {0}. Chcete tento soubor nebo složku otevřít?",
+ "confirmOpenMessageFolder": "Externí aplikace chce v {1} otevřít {0}. Chcete tuto složku otevřít?",
+ "confirmOpenMessageWorkspace": "Externí aplikace chce v {1} otevřít {0}. Chcete otevřít tento soubor pracovního prostoru?",
+ "doNotAskAgainLocal": "Povolit otevírání místních cest bez zobrazování dotazu",
+ "doNotAskAgainRemote": "Povolit otevírání vzdálených cest bez zobrazování dotazu",
+ "open": "&&Ano"
},
"vs/code/electron-main/main": {
"close": "&&Zavřít",
- "secondInstanceAdmin": "Už je spuštěná druhá instance {0} s oprávněními správce.",
+ "mainLog": "Hlavní",
+ "secondInstanceAdmin": "Jiná instance {0} je už spuštěná jako správce.",
"secondInstanceAdminDetail": "Zavřete prosím druhou instanci a zkuste to znovu.",
"secondInstanceNoResponse": "Je spuštěná jiná instance {0}, která ale nereaguje.",
"secondInstanceNoResponseDetail": "Zavřete prosím všechny ostatní instance a zkuste to znovu.",
"startupDataDirError": "Nepovedlo se zapsat uživatelská data aplikace.",
- "startupUserDataAndExtensionsDirErrorDetail": "{0}\r\n\r\nUjistěte se prosím, že je možné zapisovat do následujících adresářů:\r\n\r\n{1}"
- },
- "vs/code/electron-sandbox/issue/issueReporterMain": {
- "bugDescription": "Popište kroky, pomocí kterých je možné problém spolehlivě zreprodukovat. Uveďte prosím skutečné a očekávané výsledky. Podporujeme variantu Markdownu pro GitHub. Po zobrazení náhledu problému na GitHubu budete moct problém upravit a přidat k němu snímky obrazovky.",
- "bugReporter": "Hlášení o chybě",
- "closed": "Zavřeno",
- "createOnGitHub": "Vytvořit na GitHubu",
- "description": "Popis",
- "disabledExtensions": "Rozšíření jsou zakázána.",
- "extension": "Rozšíření",
- "featureRequest": "Žádost o funkci",
- "featureRequestDescription": "Popište prosím funkci, kterou bychom podle vás měli přidat. Podporujeme variantu Markdownu pro GitHub. Po zobrazení náhledu problému na GitHubu budete moct problém upravit a přidat k němu snímky obrazovky.",
- "hide": "skrýt",
- "loadingData": "Načítají se data...",
- "marketplace": "Marketplace rozšíření",
- "noCurrentExperiments": "Žádné aktuální experimenty",
- "noSimilarIssues": "Nebyly nalezeny žádné podobné problémy.",
- "open": "Otevřít",
- "pasteData": "Požadovaná data jsme zkopírovali do schránky, protože byla příliš velká pro odeslání. Vložte prosím tato data ze schránky.",
- "performanceIssue": "Problém s výkonem",
- "performanceIssueDesciption": "Kdy k tomuto problému s výkonem došlo? Stává se to při spuštění nebo po provedení určitých akcí? Podporujeme variantu Markdownu pro GitHub. Po zobrazení náhledu problému na GitHubu budete moct problém upravit a přidat k němu snímky obrazovky.",
- "previewOnGitHub": "Zobrazit náhled na GitHubu",
- "rateLimited": "Byl překročen limit počtu požadavků na GitHubu. Počkejte prosím.",
- "selectSource": "Vybrat zdroj",
- "show": "zobrazit",
- "similarIssues": "Podobné problémy",
- "stepsToReproduce": "Kroky ke zreprodukování problému",
- "unknown": "Nevím",
- "vscode": "Visual Studio Code"
+ "startupUserDataAndExtensionsDirErrorDetail": "{0}\r\n\r\nUjistěte se prosím, že je možné zapisovat do následujících adresářů:\r\n\r\n{1}",
+ "statusWarning": "Upozornění: Argument --status lze použít pouze v případě, že je {0} již spuštěn. Po spuštění {0} ho spusťte znovu."
},
- "vs/code/electron-sandbox/issue/issueReporterPage": {
- "chooseExtension": "Rozšíření",
- "completeInEnglish": "Vyplňte prosím formulář v angličtině.",
- "descriptionEmptyValidation": "Popis je povinný.",
- "details": "Zadejte prosím podrobnosti.",
- "disableExtensions": "zakázání všech rozšíření a opětovné načtení okna",
- "disableExtensionsLabelText": "Zkuste problém zreprodukovat po {0}. Pokud se problém znovu projeví, pouze když jsou aktivní rozšíření, pravděpodobně problém způsobuje některé rozšíření.",
- "extensionWithNoBugsUrl": "Proces nahlašování problémů nemůže vytvářet problémy pro toto rozšíření, protože chybí adresa URL pro hlášení problémů. Podívejte se prosím na stránce tohoto rozšíření na Marketplace, jestli nejsou k dispozici další pokyny.",
- "extensionWithNonstandardBugsUrl": "Proces nahlašování problémů nemůže vytvářet problémy pro toto rozšíření. Pokud chcete nahlásit problém, navštivte prosím tuto stránku: {0}.",
- "issueSourceEmptyValidation": "Je vyžadován zdroj problému.",
- "issueSourceLabel": "Soubor v umístění",
- "issueTitleLabel": "Název",
- "issueTitleRequired": "Zadejte prosím název.",
- "issueTypeLabel": "Toto je",
- "sendExperiments": "Zahrnout informace o experimentu A/B",
- "sendExtensions": "Zahrnout moje povolená rozšíření",
- "sendProcessInfo": "Zahrnout moje aktuálně spuštěné procesy",
- "sendSystemInfo": "Zahrnout moje systémové informace",
- "sendWorkspaceInfo": "Zahrnout moje metadata pracovního prostoru",
- "show": "zobrazit",
- "titleEmptyValidation": "Název je povinný.",
- "titleLengthValidation": "Název je příliš dlouhý."
+ "vs/code/electron-utility/sharedProcess/sharedProcessMain": {
+ "networkk": "Síť",
+ "sharedLog": "Sdíleno"
},
- "vs/code/electron-sandbox/processExplorer/processExplorerMain": {
- "copy": "Kopírovat",
- "copyAll": "Kopírovat vše",
- "cpu": "Procesor (%)",
- "debug": "Ladit",
- "forceKillProcess": "Vynutit ukončení procesu",
- "killProcess": "Ukončit proces",
- "memory": "Paměť (MB)",
- "name": "Název procesu",
- "pid": "PID"
+ "vs/code/node/cliProcessMain": {
+ "cli": "CLI"
},
"vs/workbench/api/browser/mainThreadAuthentication": {
- "accountLastUsedDate": "Tento účet byl naposledy použit {0}.",
- "allow": "Povolit",
+ "addClientRegistrationDetails": "Přidání registračních údajů klienta",
+ "allow": "&&Povolit",
"cancel": "Zrušit",
+ "clientIdPlaceholder": "ID klienta OAuth (azye39d...)",
+ "clientIdPrompt": "Zadejte existující ID klienta, který byl zaregistrován s následujícími URI přesměrování: http://127.0.0.1:33418, https://vscode.dev/redirect",
+ "clientIdRequired": "ID klienta je povinné.",
+ "clientSecretPlaceholder": "Tajný kód klienta OAuth (wer32o50f...) nebo ho ponechte prázdný",
+ "clientSecretPrompt": "(nepovinné) Zadejte existující tajemství klienta spojené s ID klienta '{0} ' nebo nechte toto pole prázdné",
"confirmLogin": "Rozšíření {0} se chce přihlásit pomocí {1} .",
"confirmRelogin": "Rozšíření {0} žádá, abyste se znovu přihlásili pomocí {1}.",
- "manageExtensions": "Zvolte, která rozšíření mají mít přístup k tomuto účtu.",
- "manageTrustedExtensions": "Spravovat důvěryhodná rozšíření",
- "manageTrustedExtensions.cancel": "Zrušit",
- "noTrustedExtensions": "Tento účet nepoužilo žádné rozšíření.",
- "notUsed": "Tento účet nebyl použit.",
- "signOut": "Odhlásit se",
- "signOutMessage": "Účet {0} se použil pro: \r\n\r\n{1}\r\n\r\n Chcete se z těchto rozšíření odhlásit?",
- "signOutMessageSimple": "Chcete se odhlásit z {0}?",
- "signedOut": "Byli jste úspěšně odhlášeni."
+ "copyAndContinue": "Kopírovat a pokračovat",
+ "dcrCopyUrlsAndProceed": "Kopírovat identifikátory URI a pokračovat",
+ "dcrFailedToCopy": "Nepovedlo se zkopírovat identifikátory URI přesměrování do schránky.",
+ "dcrNotSupported": "Dynamická registrace klienta není podporována",
+ "dcrNotSupportedDetail": "Autorizační server '{0}' nepodporuje automatickou registraci klienta. Chcete pokračovat ručním zadáním registrace klienta (ID klienta)?\r\n\r\nPoznámka: Při registraci aplikace OAuth nezapomeňte uvést tyto adresy URI pro přesměrování:\r\n{1}",
+ "deviceCodeDetail": "Váš kód: {0}\r\n\r\nOvěřování dokončíte tak, že přejdete na {1} a zadáte výše uvedený kód.",
+ "deviceCodeTitle": "Ověření kódu zařízení",
+ "failedToOpenUri": "Otevření {0} se nezdařilo",
+ "incorrectAccount": "Byl zjištěn nesprávný účet.",
+ "incorrectAccountDetail": "Zvolený účet ({0}) neodpovídá požadovanému účtu ({1}).",
+ "keep": "Zachovat {0}",
+ "learnMore": "Další informace",
+ "loginWith": "Přihlásit se pomocí {0}",
+ "no": "Ne",
+ "yes": "Ano"
+ },
+ "vs/workbench/api/browser/mainThreadChatSessions": {
+ "chatEditorContributionName": "{0}",
+ "interruptActiveResponse": "Opravdu chcete přerušit aktivní relaci?"
},
"vs/workbench/api/browser/mainThreadCLICommands": {
"cannot be installed": "Rozšíření {0} se nedá nainstalovat, protože je deklarované tak, aby se nespouštělo v tomto nastavení."
@@ -2607,7 +3281,11 @@
"commentsViewIcon": "Zobrazit ikonu zobrazení komentářů"
},
"vs/workbench/api/browser/mainThreadCustomEditors": {
- "defaultEditLabel": "Upravit"
+ "defaultEditLabel": "Upravit",
+ "vetoExtHostRestart": "Editor poskytnutý rozšířením pro '{0}' je stále otevřený, který by se jinak zavřel."
+ },
+ "vs/workbench/api/browser/mainThreadEditSessionIdentityParticipant": {
+ "timeout.onWillCreateEditSessionIdentity": "Přerušeno onCreateEditSessionIdentity-event po 10000ms"
},
"vs/workbench/api/browser/mainThreadExtensionService": {
"disabledDep": "Rozšíření {0} nelze aktivovat, protože je závislé na rozšíření {1}, které je zakázané. Chcete rozšíření povolit a znovu načíst okno?",
@@ -2619,11 +3297,11 @@
"reload": "Znovu načíst okno",
"reload window": "Rozšíření {0} nelze aktivovat, protože je závislé na rozšíření {1}, které není načtené. Chcete znovu načíst okno, aby se rozšíření načetlo?",
"restrictedMode": "Rozšíření {0} nejde aktivovat, protože závisí na rozšíření {1}, které není v omezeném režimu podporováno.",
- "uninstalledDep": "Rozšíření {0} nelze aktivovat, protože je závislé na rozšíření {1}, které není nainstalované. Chcete rozšíření nainstalovat a znovu načíst okno?",
+ "uninstalledDep": "Rozšíření {0} nelze aktivovat, protože je závislé na rozšíření {1} z {2}, které není nainstalované. Chcete rozšíření nainstalovat a znovu načíst okno?",
"unknownDep": "Rozšíření {0} nelze aktivovat, protože je závislé na neznámém rozšíření {1}."
},
"vs/workbench/api/browser/mainThreadFileSystemEventService": {
- "again": "Příště se už neptat",
+ "again": "Tento dotaz příště nezobrazovat",
"ask.1.copy": "Rozšíření {0} chce v tomto kopírování souboru provést změny refaktoringu.",
"ask.1.create": "Rozšíření {0} chce v tomto vytváření souboru provést změny refaktoringu.",
"ask.1.delete": "Rozšíření {0} chce v tomto odstraňování souboru provést změny refaktoringu.",
@@ -2639,15 +3317,36 @@
"msg-delete": "Spouštějí se účastníci akce odstranění souboru...",
"msg-rename": "Spouštějí se účastníci akce přejmenování souboru...",
"msg-write": "Spouští se účastníci Zápisu souboru",
- "ok": "OK",
- "preview": "Zobrazit náhled"
+ "ok": "&&OK",
+ "preview": "Zobrazit &&náhled"
+ },
+ "vs/workbench/api/browser/mainThreadLanguageModels": {
+ "confirmLanguageModelAccess": "Rozšíření {0} chce získat přístup k jazykovým modelům, které poskytuje {1}.",
+ "languageModelsAccountId": "Jazykové modely"
+ },
+ "vs/workbench/api/browser/mainThreadMcp": {
+ "allow": "&&Povolit",
+ "confirmLogin": "Definice serveru MCP {0} chce provést ověření pro {1}.",
+ "confirmRelogin": "Definice serveru MCP {0} chce, abyste se ověřili v {1}.",
+ "incorrectAccount": "Byl zjištěn nesprávný účet.",
+ "incorrectAccountDetail": "Zvolený účet ({0}) neodpovídá požadovanému účtu ({1}).",
+ "keep": "Zachovat {0}",
+ "loginWith": "Přihlásit se pomocí {0}",
+ "mcpAuthSessionRemoved": "Relace ověřování pro {0} byla odebrána, zastavování serveru"
},
"vs/workbench/api/browser/mainThreadMessageService": {
"cancel": "Zrušit",
"defaultSource": "Rozšíření",
- "extensionSource": "{0} (rozšíření)",
"manageExtension": "Spravovat rozšíření",
- "ok": "OK"
+ "ok": "&&OK"
+ },
+ "vs/workbench/api/browser/mainThreadNotebookSaveParticipant": {
+ "timeout.onWillSave": "Událost onWillSaveNotebookDocument-event se zrušila po 1750 ms"
+ },
+ "vs/workbench/api/browser/mainThreadOutputService": {
+ "status.showOutput": "Zobrazit výstup",
+ "status.showOutputAria": "Zobrazit výstupní kanál {0}",
+ "status.showOutputTooltip": "Zobrazit výstupní kanál {0}"
},
"vs/workbench/api/browser/mainThreadProgress": {
"manageExtension": "Spravovat rozšíření"
@@ -2676,7 +3375,22 @@
"folderStatusMessageRemoveMultipleFolders": "Rozšíření {0} odebralo z pracovního prostoru tento počet složek: {1}.",
"folderStatusMessageRemoveSingleFolder": "Rozšíření {0} odebralo z pracovního prostoru 1 složku."
},
+ "vs/workbench/api/browser/statusBarExtensionPoint": {
+ "accessibilityInformation": "Definuje roli a popisek aria, které se mají použít, když je fokus na stavovém řádku.",
+ "accessibilityInformation.label": "Popisek aria položky stavového řádku. Výchozí hodnota je text položky.",
+ "accessibilityInformation.role": "Role položky stavového řádku, která definuje, jak s ní komunikuje čtečka obrazovky. Další informace o rolích aria najdete tady: https://w3c.github.io/aria/#widget_roles",
+ "alignment": "Zarovnání položky na stavovém řádku.",
+ "command": "Příkaz, který se má provést při kliknutí na položku na stavovém řádku.",
+ "id": "Identifikátor položky na stavovém řádku. V každém rozšíření musí být jedinečné. Při volání API vscode.window.createStatusBarItem(id, ...) musí být použita stejná hodnota.",
+ "invalid": "Neplatný příspěvek položky do stavového řádku.",
+ "name": "Název položky, například Python Language Indicator, Git Status atd. Snažte se, aby byl název krátký, ale dostatečně popisný, aby uživatelé pochopili, čeho se položka na stavovém řádku týká.",
+ "priority": "Priorita položky na stavovém řádku. Vyšší hodnota znamená, že položka by se měla zobrazit více vlevo.",
+ "text": "Text, který se má zobrazit u položky. Ikony můžete do textu vložit pomocí syntaxe $(), například Hello $(globe)!",
+ "tooltip": "Text popisku pro tuto položku.",
+ "vscode.extension.contributes.statusBarItems": "Přidává položky na stavový řádek."
+ },
"vs/workbench/api/browser/viewsExtensionPoint": {
+ "RequiresChatSessionsProposedAPI": "Kontejner zobrazení {0} vyžaduje enabledApiProposals: [\"chatSessionsProvider\"].",
"ViewContainerDoesnotExist": "Kontejner zobrazení {0} neexistuje a všechna zobrazení, která jsou k němu zaregistrována, se přidají do oddílu Explorer.",
"ViewContainerRequiresProposedAPI": "Zobrazení kontejneru {0} vyžaduje přidání hodnoty enabledApiProposals [\"contribViewsRemote\"] do „Vzdálené“.",
"duplicateView1": "Nelze zaregistrovat více zobrazení se stejným ID {0}.",
@@ -2688,15 +3402,25 @@
"requirenonemptystring": "vlastnost {0} je povinná a musí být typu string s neprázdnou hodnotou.",
"requirestring": "Vlastnost {0} je povinná a musí být typu string.",
"unknownViewType": "Neznámý typ zobrazení: {0}",
+ "view container id": "ID",
+ "view container location": "Kde",
+ "view container title": "Název",
+ "view id": "ID",
+ "view name title": "Název",
"viewcontainer requirearray": "kontejnery zobrazení musí být pole hodnot",
+ "views": "Zobrazení",
+ "views.agentSessions": "Přispívá zobrazeními do kontejneru relací agenta na panelu aktivity. Aby bylo možné přispívat do tohoto kontejneru, musí být povolen návrh rozhraní API chatSessionsProvider.",
"views.container.activitybar": "Přidává kontejnery zobrazení na panel aktivity.",
"views.container.panel": "Přidává kontejnery zobrazení na panel.",
+ "views.container.secondarySidebar": "Přidává kontejnery zobrazení do sekundárního postranního panelu.",
"views.contributed": "Přidává zobrazení do přidaného kontejneru zobrazení.",
"views.debug": "Přidává zobrazení do kontejneru ladění na panelu aktivity.",
"views.explorer": "Přidává zobrazení do kontejneru průzkumníka na panelu aktivity.",
- "views.remote": "Přidává zobrazení do vzdáleného kontejneru na panelu aktivity. Aby bylo možné do tohoto kontejneru přidávat zobrazení, je nutné zapnout nastavení enableProposedApi.",
+ "views.remote": "Přispívá zobrazeními do vzdáleného kontejneru na panelu aktivity. Aby bylo možné přispívat do tohoto kontejneru, musí být povolen návrh rozhraní API contribViewsRemote.",
"views.scm": "Přidává zobrazení do kontejneru SCM na panelu aktivity.",
"views.test": "Přidává zobrazení do kontejneru testů na panelu aktivity.",
+ "viewsContainers": "Zobrazit kontejnery",
+ "vscode.extension.contributes.view.accessibilityHelpContent": "Když se v tomto zobrazení vyvolá dialogové okno nápovědy pro usnadnění přístupu, zobrazí se tento obsah uživateli jako řetězec Markdownu. Klávesové zkratky budou přeloženy, pokud jsou ve formátu . Pokud není k dispozici žádná klávesová zkratka, bude to označeno a tento příkaz bude zahrnut do rychlého výběru pro snadnou konfiguraci.",
"vscode.extension.contributes.view.contextualTitle": "Lidsky čitelný kontext pro situaci, kdy je zobrazení přesunuto z původního umístění. Ve výchozím nastavení bude použit název kontejneru zobrazení.",
"vscode.extension.contributes.view.group": "Vnořená skupina ve viewletu",
"vscode.extension.contributes.view.icon": "Cesta k ikoně zobrazení. Ikony zobrazení se zobrazí, když nelze zobrazit název zobrazení. Doporučený formát ikon je SVG, povolen je ale jakýkoli typ obrázku.",
@@ -2716,20 +3440,29 @@
"vscode.extension.contributes.views.containers.id": "Jedinečné ID, které slouží k identifikaci kontejneru, do kterého je možné přidávat zobrazení pomocí přidávacího bodu views",
"vscode.extension.contributes.views.containers.title": "Lidský čitelný řetězec, který se používá k vykreslení kontejneru",
"vscode.extension.contributes.viewsContainers": "Přidává kontejnery zobrazení do editoru.",
- "vscode.extension.contributs.view.size": "Velikost zobrazení. Použití čísla se bude chovat jako vlastnost css flex a velikost nastaví počáteční velikost při prvním zobrazení. V postranním panelu je to výška zobrazení."
+ "vscode.extension.contributs.view.size": "Počáteční velikost zobrazení. Velikost se bude chovat jako vlastnost css flex a nastaví počáteční velikost při prvním zobrazení. V postranním panelu je to výška zobrazení. Tato hodnota se respektuje jen v případě, že stejné rozšíření má zobrazení i kontejner zobrazení."
},
"vs/workbench/api/common/configurationExtensionPoint": {
+ "accessibility": "Nastavení přístupnosti",
+ "advanced": "Upřesňující nastavení jsou v editoru nastavení ve výchozím nastavení skrytá, pokud se uživatel nerozhodl zobrazit upřesňující nastavení.",
"config.property.defaultConfiguration.warning": "Výchozí nastavení konfigurace pro {0} není možné zaregistrovat. Podporují se jenom výchozí hodnoty pro vymezená nastavení oken a prostředků, strojově přepisovatelná nastavení a nastavení přepisovatelná na úrovni jazyka.",
"config.property.duplicate": "Nelze zaregistrovat {0}. Tato vlastnost už je zaregistrovaná.",
+ "config.property.preventDefaultConfiguration.warning": "Nelze zaregistrovat výchozí nastavení konfigurace pro {0}. Toto nastavení nepovoluje přispívající výchozí hodnoty konfigurace.",
+ "default": "Výchozí",
+ "description": "Popis",
+ "experimental": "Experimentální nastavení se mohou změnit a mohou být v budoucích verzích odebrána.",
"invalid.allOf": "Parametr configuration.allOf je zastaralý a neměl by se už používat. Místo toho předejte několik konfiguračních oddílů v podobě pole hodnot do přidávacího bodu configuration.",
"invalid.properties": "configuration.properties musí být objekt.",
"invalid.property": "vlastnost configuration.properties {0} musí být objekt.",
"invalid.title": "configuration.title musí být řetězec.",
+ "preview": "Nastavení verze Preview lze použít k vyzkoušení nových funkcí před jejich finálním uvedením.",
"scope.application.description": "Konfigurace, kterou lze nakonfigurovat pouze v nastavení uživatele",
"scope.deprecationMessage": "Pokud je nastaveno, vlastnost je označena jako zastaralá a daná zpráva se zobrazí jako vysvětlení.",
"scope.description": "Obor, ve kterém má být konfigurace platná. Dostupné obory jsou application, machine, window, resource a machine-overridable.",
"scope.editPresentation": "Při zadání určuje formát prezentace nastavení řetězce.",
"scope.enumDescriptions": "Popis pro hodnoty výčtu",
+ "scope.enumItemLabels": "Popisky pro hodnoty výčtu, které se mají zobrazit v editoru nastavení. Pokud je zadáte, hodnoty {0} se budou zobrazovat za popisky i nadále, ale ne tak výrazně.",
+ "scope.ignoreSync": "Pokud je tato možnost povolená, synchronizace nastavení ve výchozím nastavení nesynchronizuje uživatelskou hodnotu této konfigurace.",
"scope.language-overridable.description": "Konfigurace prostředků, kterou je možné nakonfigurovat v nastaveních specifických pro daný jazyk",
"scope.machine-overridable.description": "Konfigurace počítače, kterou je také možné nakonfigurovat v nastavení pracovního prostoru nebo složky",
"scope.machine.description": "Konfigurace, kterou lze nakonfigurovat pouze v nastavení uživatele nebo pouze v nastavení vzdáleného připojení",
@@ -2740,8 +3473,13 @@
"scope.order": "Pokud je tato vlastnost specifikována, určuje pořadí tohoto nastavení vzhledem k ostatním nastavením ve stejné kategorii. Nastavení s vlastnost řazení se umístí před nastavení, která tuto vlastnost nastavenou nemají.",
"scope.resource.description": "Konfigurace, kterou lze nakonfigurovat v nastavení uživatele, vzdáleného připojení, pracovního prostoru nebo složky",
"scope.singlelineText.description": "Hodnota se zobrazí ve vstupním poli.",
+ "scope.tags": "Seznam značek, do kterých se má nastavení umístit. Značku pak můžete vyhledat v editoru nastavení. Například zadáním značky experimental lze nastavení najít vyhledáním textu @tag:experimental.",
"scope.window.description": "Konfigurace, kterou lze nakonfigurovat v nastavení uživatele, vzdáleného připojení nebo pracovního prostoru",
+ "setting name": "ID",
+ "settings": "Nastavení",
+ "telemetry": "Nastavení telemetrie",
"unknownWorkspaceProperty": "Neznámá vlastnost konfigurace pracovního prostoru",
+ "usesOnlineServices": "Nastavení, která používají online služby",
"vscode.extension.contributes.configuration": "Přidává nastavení konfigurace.",
"vscode.extension.contributes.configuration.order": "Pokud je tato vlastnost specifikována, určuje pořadí této kategorie nastavení vzhledem k jiným kategoriím.",
"vscode.extension.contributes.configuration.properties": "Popis vlastností konfigurace",
@@ -2751,6 +3489,7 @@
"workspaceConfig.extensions.description": "Rozšíření pracovního prostoru",
"workspaceConfig.folders.description": "Seznam složek, které mají být načteny do pracovního prostoru",
"workspaceConfig.launch.description": "Konfigurace spuštění pracovního prostoru",
+ "workspaceConfig.mcp.description": "Konfigurace serveru s protokolem kontextu modelu",
"workspaceConfig.name.description": "Volitelný název složky ",
"workspaceConfig.path.description": "Cesta k souboru, například /root/folderA nebo ./folderA pro relativní cestu, která bude vyhodnocena podle umístění souboru pracovního prostoru.",
"workspaceConfig.remoteAuthority": "Vzdálený server, na kterém se pracovní prostor nachází.",
@@ -2759,6 +3498,13 @@
"workspaceConfig.transient": "Přechodný pracovní prostor při restartování nebo opětovném načtení zmizí.",
"workspaceConfig.uri.description": "Identifikátor URI složky"
},
+ "vs/workbench/api/common/extHostAuthentication": {
+ "authenticatingTo": "Ověřování pro {0}",
+ "completeAuth": "Dokončete ověřování v otevřeném okně prohlížeče.",
+ "continueWith": "Ještě jste nedokončili ověřování pro {0}. Chcete zkusit jiný způsob? ({1})",
+ "url handler": "Obslužná rutina adresy URL",
+ "userCanceledContinue": "Máte potíže s ověřováním pro {0}? Chcete zkusit jiný způsob? ({1})"
+ },
"vs/workbench/api/common/extHostDiagnostics": {
"limitHit": "Nezobrazují se další chyby a upozornění (celkem {0})."
},
@@ -2766,19 +3512,38 @@
"extensionTestError": "Cesta {0} neodkazuje na platný spouštěč testů rozšíření.",
"extensionTestError1": "Nedá se načíst Test Runner."
},
- "vs/workbench/api/common/extHostProgress": {
- "extensionSource": "{0} (rozšíření)"
+ "vs/workbench/api/common/extHostLanguageFeatures": {
+ "defaultDropLabel": "Přemístit pomocí rozšíření {0}",
+ "defaultPasteLabel": "Vložit pomocí přípony{0}"
+ },
+ "vs/workbench/api/common/extHostLanguageModels": {
+ "chatAccessWithJustification": "Odůvodnění: {1}"
+ },
+ "vs/workbench/api/common/extHostLogService": {
+ "local": "Hostitel rozšíření",
+ "remote": "Hostitel rozšíření (vzdálený)",
+ "worker": "Hostitel rozšíření (pracovní proces)"
+ },
+ "vs/workbench/api/common/extHostNotebook": {
+ "err.readonly": "Nelze upravit soubor {0}, který je jen pro čtení.",
+ "fileModifiedError": "Soubor se mezitím změnil."
},
"vs/workbench/api/common/extHostStatusBar": {
"extensionLabel": "{0} (rozšíření)",
"status.extensionMessage": "Stav rozšíření"
},
+ "vs/workbench/api/common/extHostTelemetry": {
+ "extensionTelemetryLog": "Telemetrie rozšíření{0}"
+ },
"vs/workbench/api/common/extHostTerminalService": {
"launchFail.idMissingOnExtHost": "V hostiteli rozšíření se nepovedlo najít terminál s ID {0}."
},
"vs/workbench/api/common/extHostTreeViews": {
- "treeView.duplicateElement": "Element s ID {0} je už zaregistrovaný.",
- "treeView.notRegistered": "Není zaregistrováno žádné zobrazení stromu s ID {0}."
+ "treeView.duplicateElement": "Element s ID {0} je už zaregistrovaný."
+ },
+ "vs/workbench/api/common/extHostTunnelService": {
+ "tunnelPrivacy.private": "Privátní",
+ "tunnelPrivacy.public": "Veřejné"
},
"vs/workbench/api/common/extHostWorkspace": {
"updateerror": "Rozšíření {0} se nepovedlo aktualizovat složky pracovního prostoru: {1}."
@@ -2787,79 +3552,118 @@
"contributes.jsonValidation": "Přidává konfiguraci schématu json.",
"contributes.jsonValidation.fileMatch": "Vzor souboru (nebo pole hodnot vzorů) pro vyhledání shody, například package.json nebo *.launch. Vzory výjimek mají na začátku znak vykřičníku (!).",
"contributes.jsonValidation.url": "Adresa URL schématu (http:, https:) nebo relativní cesta ke složce rozšíření (./)",
+ "fileMatch": "Shoda souboru",
"invalid.fileMatch": "configuration.jsonValidation.fileMatch je nutné definovat jako řetězec nebo pole hodnot řetězců.",
"invalid.jsonValidation": "configuration.jsonValidation musí být pole hodnot.",
"invalid.path.1": "Očekávalo se, že bude contributes.{0}.url ({1}) zahrnuto do složky rozšíření ({2}). To by mohlo způsobit, že rozšíření nebude přenosné.",
"invalid.url": "configuration.jsonValidation.url musí být adresa URL nebo relativní cesta.",
"invalid.url.fileschema": "configuration.jsonValidation je neplatná relativní adresa URL: {0}.",
- "invalid.url.schema": "configuration.jsonValidation.url musí být absolutní adresa URL nebo musí začínat znaky ./, aby bylo možné odkazovat na schémata umístěná v rozšíření."
+ "invalid.url.schema": "configuration.jsonValidation.url musí být absolutní adresa URL nebo musí začínat znaky ./, aby bylo možné odkazovat na schémata umístěná v rozšíření.",
+ "jsonValidation": "Ověření JSON",
+ "schema": "Schéma"
+ },
+ "vs/workbench/api/node/extHostAuthentication": {
+ "completeAuth": "Dokončete ověřování v otevřeném okně prohlížeče.",
+ "device code": "Kód zařízení",
+ "loopback": "Server zpětné smyčky",
+ "waitingForAuth": "Otevřete [{0}]({0}) na nové kartě a vložte svůj jednorázový kód: {1}"
},
"vs/workbench/api/node/extHostDebugService": {
"debug.terminal.title": "Proces ladění"
},
- "vs/workbench/api/node/extHostTunnelService": {
- "tunnelPrivacy.private": "Privátní",
- "tunnelPrivacy.public": "Veřejné"
+ "vs/workbench/api/test/browser/mainThreadTreeViews.test": {
+ "Test View 1": "Prohlížeč testů 1",
+ "test": "test"
},
"vs/workbench/browser/actions/developerActions": {
+ "global": "Globální",
"inspect context keys": "Zkontrolovat kontextové klíče",
- "keyboardShortcutsFormat.command": "Název příkazu",
- "keyboardShortcutsFormat.commandAndKeys": "Název a klávesy příkazu",
- "keyboardShortcutsFormat.commandWithGroup": "Název příkazu s předponou jeho skupiny",
- "keyboardShortcutsFormat.commandWithGroupAndKeys": "Název a klávesy příkazu; příkaz obsahuje předponu své skupiny.",
- "keyboardShortcutsFormat.keys": "Klávesy",
+ "largeStorageItemDetail": "Rozsah: {0}, cíl: {1}",
"logStorage": "Protokolovat obsah databáze úložiště",
"logWorkingCopies": "Protokolovat pracovní kopie",
+ "machine": "Počítač",
+ "policyDiagnostics": "Diagnostika zásad",
+ "profile": "Profil",
+ "removeLargeStorageDatabaseEntries": "Odebrat velké položky databáze úložiště…",
+ "removeLargeStorageEntriesButtonLabel": "Odeb&&rat",
+ "removeLargeStorageEntriesConfirmRemove": "Chcete odebrat vybrané položky úložiště z databáze?",
+ "removeLargeStorageEntriesConfirmRemoveDetail": "{0}\r\n\r\nTato akce je nevratná a může vést ke ztrátě dat!",
+ "removeLargeStorageEntriesPickerButton": "Odebrat",
+ "removeLargeStorageEntriesPickerDescriptionNoEntries": "Neexistují žádné velké položky úložiště, které by se daly odebrat.",
+ "removeLargeStorageEntriesPickerPlaceholder": "Vyberte velké položky, které chcete odebrat z úložiště.",
"screencastMode.fontSize": "Určuje velikost písma (v pixelech) pro klávesnici v režimu záznamu obrazovky.",
+ "screencastMode.keyboardOptions.description": "Možnosti přizpůsobení překrytí klávesnice v režimu vysílání obrazovky.",
+ "screencastMode.keyboardOptions.showCommandGroups": "Zobrazí názvy skupin příkazů, když jsou zobrazeny i příkazy.",
+ "screencastMode.keyboardOptions.showCommands": "Zobrazí názvy příkazů.",
+ "screencastMode.keyboardOptions.showKeybindings": "Zobrazit klávesové zkratky",
+ "screencastMode.keyboardOptions.showKeys": "Zobrazit nezpracované klíče.",
+ "screencastMode.keyboardOptions.showSingleEditorCursorMoves": "Zobrazit příkazy přesunutí kurzoru jednoho editoru.",
"screencastMode.keyboardOverlayTimeout": "Určuje dobu (v milisekundách), po jakou se bude v režimu záznamu obrazovky zobrazovat klávesnice v překryvné grafické vrstvě.",
- "screencastMode.keyboardShortcutsFormat": "Určuje, co se zobrazí v překryvném prvku klávesnice, když se zobrazují klávesové zkratky.",
"screencastMode.location.verticalPosition": "Určuje svislé posunutí překryvné grafické vrstvy v režimu záznamu obrazovky od dolní části okna jako procento výšky pracovní plochy.",
"screencastMode.mouseIndicatorColor": "Určuje barvu ukazatele myši v režimu záznamu obrazovky v šestnáctkovém formátu (#RGB, #RGBA, #RRGGBB nebo #RRGGBBAA).",
"screencastMode.mouseIndicatorSize": "Určuje velikost ukazatele myši (v pixelech) v režimu záznamu obrazovky.",
- "screencastMode.onlyKeyboardShortcuts": "Zobrazovat klávesové zkratky pouze v režimu záznamu obrazovky",
"screencastModeConfigurationTitle": "Režim záznamu obrazovky",
- "toggle screencast mode": "Přepnout režim záznamu obrazovky"
+ "snapshotTrackedDisposables": "Snímek sledovaných uvolnitelných objektů",
+ "startTrackDisposables": "Spustit sledování uvolnitelných objektů",
+ "stopTrackDisposables": "Zastavit sledování uvolnitelných objektů",
+ "storageLogDialogDetails": "V nabídce otevřete vývojářské nástroje a vyberte kartu Konzola.",
+ "storageLogDialogMessage": "Obsah databáze úložiště se zaprotokoloval do vývojářských nástrojů.",
+ "toggle screencast mode": "Přepnout režim záznamu obrazovky",
+ "user": "Uživatel",
+ "workspace": "Pracovní prostor"
},
"vs/workbench/browser/actions/helpActions": {
+ "askVScode": "Zeptat se @vscode",
+ "getStartedWithAccessibilityFeatures": "Začínáme s funkcemi přístupnosti",
"keybindingsReference": "Referenční informace ke klávesovým zkratkám",
"miDocumentation": "&&Dokumentace",
"miKeyboardShortcuts": "&&Referenční informace ke klávesovým zkratkám",
"miLicense": "Zobrazit &&licenci",
"miPrivacyStatement": "&&Prohlášení o zásadách ochrany osobních údajů",
"miTipsAndTricks": "Tipy a tri&&ky",
- "miTwitter": "&&Sledujte nás na Twitteru",
"miUserVoice": "&&Prohledat žádosti o funkce",
"miVideoTutorials": "&&Videokurzy",
+ "miYouTube": "Připo&&jte se k nám na YouTube.",
"newsletterSignup": "Přihlásit se k odběru informačního bulletinu k VS Code",
"openDocumentationUrl": "Dokumentace",
"openLicenseUrl": "Zobrazit licenci",
"openPrivacyStatement": "Prohlášení o zásadách ochrany osobních údajů",
"openTipsAndTricksUrl": "Tipy a triky",
- "openTwitterUrl": "Sledujte nás na Twitteru",
"openUserVoiceUrl": "Prohledat žádosti o funkci",
- "openVideoTutorialsUrl": "Videokurzy"
+ "openVideoTutorialsUrl": "Videokurzy",
+ "openYouTubeUrl": "Připojte se k nám na YouTube."
},
"vs/workbench/browser/actions/layoutActions": {
"active": "Aktivní",
"activityBar": "Zobrazit panel aktivit",
"activityBarLeft": "Představuje panel aktivity na levé pozici",
"activityBarRight": "Představuje panel aktivity na pravé pozici",
+ "alignQuickInputCenter": "Zarovnat rychlý vstup na střed",
+ "alignQuickInputTop": "Zarovnat rychlý vstup nahoru",
+ "center": "Střed",
"centerLayoutIcon": "Představuje režim rozložení na střed.",
"centerPanel": "Na střed",
"centeredLayout": "Centered Layout",
"close": "Zavřít",
- "closeSidebar": "Zavřít primární postranní panel",
"cofigureLayoutIcon": "Ikona představuje konfiguraci rozložení pro workbench.",
"compositePart.hideSideBarLabel": "Skrýt primární postranní panel",
+ "configureEditors": "Nakonfigurovat editory",
"configureLayout": "Konfigurovat rozložení",
+ "configureTabs": "Nakonfigurovat karty",
"customizeLayout": "Přizpůsobit rozložení",
"customizeLayoutQuickPickTitle": "Přizpůsobit rozložení",
"decreaseEditorHeight": "Snížit výšku editoru",
"decreaseEditorWidth": "Snížit šířku editoru",
"decreaseViewSize": "Zmenšit aktuální velikost zobrazení",
+ "editorActionsPosition": "Umístění akcí editoru",
"fullScreenIcon": "Představuje celou obrazovku.",
"fullscreen": "Celá obrazovka",
- "hidden": "Skryto",
+ "hideEditorActons": "Skrýt akce editoru",
+ "hideEditorActonsDescription": "Skrýt akce editoru na panelu karet a v záhlaví",
+ "hideEditorTabs": "Skrýt karty editoru",
+ "hideEditorTabsDescription": "Skrýt panel karet",
+ "hideEditorTabsZenMode": "Skrýt karty editoru v režimu Zen",
+ "hideEditorTabsZenModeDescription": "Skrýt panel karet v režimu Zen",
"increaseEditorHeight": "Zvýšit výšku editoru",
"increaseEditorWidth": "Zvýšit šířku editoru",
"increaseViewSize": "Zvětšit aktuální velikost zobrazení",
@@ -2869,23 +3673,23 @@
"leftSideBar": "Doleva",
"menuBar": "Řádek nabídek",
"menuBarIcon": "Představuje řádek nabídek.",
- "miActivityBar": "&&Activity Bar",
"miAppearance": "&&Vzhled",
- "miMenuBar": "Menu &&Bar",
- "miMenuBarNoMnemonic": "Menu Bar",
+ "miMenuBar": "Řádek &&nabídek",
+ "miMenuBarNoMnemonic": "Řádek nabídek",
"miMoveSidebarLeft": "&&Přesunout primární postranní panel doleva",
"miMoveSidebarRight": "&&Přesunout primární postranní panel doprava",
"miShowEditorArea": "Zobrazit oblast &&editorů",
- "miShowSidebar": "&&Primary Side Bar",
- "miSidebarNoMnnemonic": "Primary Side Bar",
- "miStatusbar": "S&&tatus Bar",
+ "miStatusbar": "S&&tavový řádek",
"miToggleCenteredLayout": "&&Rozložení na střed",
"miToggleZenMode": "Režim Zen",
"move second sidebar left": "Přesunout sekundární postranní panel doleva",
"move second sidebar right": "Přesunout sekundární postranní panel doprava",
"move side bar right": "Přesunout primární postranní panel doprava",
"move sidebar left": "Přesunout primární postranní panel doleva",
- "move sidebar right": "Přesunout primární postranní panel doprava",
+ "moveEditorActionsToTabBar": "Přesunout akce editoru na panel karet",
+ "moveEditorActionsToTabBarDescription": "Přesunout akce editoru ze záhlaví na panel karet",
+ "moveEditorActionsToTitleBar": "Přesunout akce editoru do záhlaví",
+ "moveEditorActionsToTitleBarDescription": "Přesunout akce editoru z panelu karet do záhlaví",
"moveFocusedView": "Přesunout zobrazení s fokusem",
"moveFocusedView.error.noFocusedView": "V tuto chvíli nemá fokus žádné zobrazení.",
"moveFocusedView.error.nonMovableView": "Aktuální zobrazení s fokusem nelze přesunout.",
@@ -2898,6 +3702,7 @@
"moveSidebarLeft": "Přesunout primární postranní panel doleva",
"moveSidebarRight": "Přesunout primární postranní panel doprava",
"moveView": "Přesunout zobrazení",
+ "openAndCloseSidebar": "Otevřít/zobrazit a zavřít/skrýt boční panel",
"panel": "Panel",
"panelAlignment": "Zarovnání panelu",
"panelBottom": "Představuje dolní panel.",
@@ -2910,34 +3715,60 @@
"panelLeftOff": "Představuje vypnutý postranní panel v levé pozici.",
"panelRight": "Představuje postranní panel na pravé pozici.",
"panelRightOff": "Představuje vypnutý postranní panel v pravé pozici.",
+ "primary sidebar": "Primární postranní panel",
+ "primary sidebar mnemonic": "&&Primární postranní panel",
+ "quickInputAlignmentCenter": "Představuje zarovnání rychlého vstupu nastavené na střed.",
+ "quickInputAlignmentTop": "Představuje zarovnání rychlého vstupu nastavené na začátek.",
+ "quickOpen": "Pozice rychlého vstupu",
"resetFocusedView.error.noFocusedView": "V tuto chvíli nemá fokus žádné zobrazení.",
"resetFocusedViewLocation": "Obnovit umístění zobrazení s fokusem",
"resetViewLocations": "Obnovit umístění zobrazení",
+ "restore defaults": "Obnovit výchozí",
"rightPanel": "Vpravo",
"rightSideBar": "Vpravo",
"secondarySideBar": "Sekundární postranní panel",
"secondarySideBarContainer": "Sekundární postranní panel / {0}",
+ "selectToHide": "Výběrem skryjete",
+ "selectToShow": "Výběrem zobrazíte",
+ "showEditorActons": "Zobrazit akce editoru",
+ "showEditorActonsDescription": "Umožňuje zviditelnit akce editoru.",
+ "showMultipleEditorTabs": "Zobrazovat více karet editoru",
+ "showMultipleEditorTabsDescription": "Zobrazit panel karet s více kartami",
+ "showMultipleEditorTabsZenMode": "Zobrazit více karet editoru v režimu Zen",
+ "showMultipleEditorTabsZenModeDescription": "Zobrazit panel karet v režimu Zen",
+ "showSingleEditorTab": "Zobrazit jednu kartu editoru",
+ "showSingleEditorTabDescription": "Zobrazit panel karet s jednou kartou",
+ "showSingleEditorTabZenMode": "Zobrazit jednu kartu editoru v režimu Zen",
+ "showSingleEditorTabZenModeDescription": "Zobrazit panel karet v režimu Zen s jednou kartou",
"sideBar": "Primární postranní panel",
"sideBarPosition": "Pozice primárního postranního panelu",
"sidebar": "Postranní panel",
"sidebarContainer": "Postranní pruh / {0}",
+ "sidebarHidden": "Skryt primární postranní panel",
+ "sidebarVisible": "Zobrazen primární postranní panel",
"statusBar": "Stavový řádek",
"statusBarIcon": "Představuje stavový řádek",
- "toggleActivityBar": "Přepnout viditelnost panelu aktivity",
+ "tabBar": "Panel karet",
"toggleCenteredLayout": "Přepnout rozložení zarovnané na střed",
"toggleEditor": "Přepnout viditelnost oblasti editorů",
"toggleMenuBar": "Přepnout řádek nabídek",
+ "toggleSeparatePinnedEditorTabs": "Oddělení připnutých karet editoru",
+ "toggleSeparatePinnedEditorTabsDescription": "Umožňuje přepnout, jestli se mají připnuté karty editoru zobrazovat na samostatném řádku nad nepřipnutými kartami.",
"toggleSideBar": "Přepnout primární postranní panel",
"toggleSidebar": "Přepnout viditelnost primárního postranního panelu",
"toggleSidebarPosition": "Přepnout pozici primárního postranního panelu",
"toggleStatusbar": "Přepnout viditelnost stavového řádku",
- "toggleTabs": "Přepnout viditelnost tabulátorů",
"toggleVisibility": "Viditelnost",
"toggleZenMode": "Přepnout režim Zen",
- "visible": "Zobrazit",
+ "top": "Nahoře",
"zenMode": "Režim Zen",
"zenModeIcon": "Představuje režim Zen."
},
+ "vs/workbench/browser/actions/listCommands": {
+ "mitoggleTreeStickyScroll": "&&Přepnout pevné posouvání stromu",
+ "toggleTreeStickyScroll": "Přepnout pevné posouvání stromu",
+ "toggleTreeStickyScrollDescription": "Přepíná widget Pevné posouvání v horní části stromových struktur, jako je zobrazení proměnných Průzkumníka souborů a ladění."
+ },
"vs/workbench/browser/actions/navigationActions": {
"focusNextPart": "Přepnout fokus na další část",
"focusPreviousPart": "Přepnout fokus na předchozí část",
@@ -2950,6 +3781,7 @@
"quickNavigateNext": "Přejít na další v okně rychlého otevření",
"quickNavigatePrevious": "Přejít na předchozí v okně rychlého otevření",
"quickOpen": "Přejít na soubor...",
+ "quickOpenWithModes": "Rychlé otevření",
"quickSelectNext": "Vybrat další v okně rychlého otevření",
"quickSelectPrevious": "Vybrat předchozí v okně rychlého otevření"
},
@@ -2963,6 +3795,8 @@
},
"vs/workbench/browser/actions/windowActions": {
"about": "Informace",
+ "activeOpenedRecentlyOpenedFolder": "Složka otevřená v aktivním okně",
+ "activeOpenedRecentlyOpenedWorkspace": "Pracovní prostor otevřený v aktivním okně",
"blur": "Odebrat kurzor klávesnice z prvku s fokusem",
"dirtyFolder": "Složka s neuloženými soubory",
"dirtyFolderConfirm": "Chcete otevřít složku a zkontrolovat neuložené soubory?",
@@ -2972,7 +3806,6 @@
"dirtyWorkspace": "Pracovní prostor s neuloženými soubory",
"dirtyWorkspaceConfirm": "Chcete otevřít pracovní prostor a zkontrolovat neuložené soubory?",
"dirtyWorkspaceConfirmDetail": "Pracovní prostory s neuloženými soubory nelze odebrat, dokud nebudou všechny neuložené soubory uloženy nebo vráceny.",
- "file": "Soubor",
"files": "soubory",
"folders": "složky",
"miAbout": "&&Informace",
@@ -2985,6 +3818,8 @@
"openRecent": "Otevřít nedávné...",
"openRecentPlaceholder": "Výběrem otevřete (podržením klávesy Ctrl vynutíte otevření nového okna, při použití klávesy Alt použijete stejné okno).",
"openRecentPlaceholderMac": "Výběrem otevřete (podržením klávesy Cmd vynutíte otevření nového okna, podržením klávesy Option použijete stejné okno).",
+ "openedRecentlyOpenedFolder": "Složka otevřená v okně",
+ "openedRecentlyOpenedWorkspace": "Pracovní prostor otevřený v okně",
"quickOpenRecent": "Rychle otevřít nedávné...",
"recentDirtyFolderAriaLabel": "{0}, složka s neuloženými změnami",
"recentDirtyWorkspaceAriaLabel": "{0}, pracovní prostor s neuloženými změnami",
@@ -2997,7 +3832,6 @@
"closeWorkspace": "Zavřít pracovní prostor",
"duplicateWorkspace": "Duplikovat pracovní prostor",
"duplicateWorkspaceInNewWindow": "Duplikovat jako pracovní prostor v novém okně",
- "filesCategory": "Soubor",
"globalRemoveFolderFromWorkspace": "Odebrat složku z pracovního prostoru...",
"miAddFolderToWorkspace": "&&Přidat složku do pracovního prostoru...",
"miCloseFolder": "&&Zavřít složku",
@@ -3021,53 +3855,70 @@
"addFolderToWorkspaceTitle": "Přidat složku do pracovního prostoru",
"workspaceFolderPickerPlaceholder": "Vybrat složku pracovního prostoru"
},
- "vs/workbench/browser/codeeditor": {
- "openWorkspace": "Otevřít pracovní prostor"
- },
"vs/workbench/browser/editor": {
"pinned": "{0}, připnuto",
"preview": "{0}, náhled"
},
- "vs/workbench/browser/parts/activitybar/activitybarActions": {
- "authProviderUnavailable": "{0} není aktuálně k dispozici.",
- "focusActivityBar": "Nastavit fokus na panel aktivity",
- "hideAccounts": "Skrýt účty",
- "manageTrustedExtensions": "Spravovat důvěryhodná rozšíření",
- "nextSideBarView": "Další zobrazení primárního postranního panelu",
- "noAccounts": "Nejste přihlášení k žádnému účtu.",
- "previousSideBarView": "Předchozí zobrazení primárního postranního panelu",
- "signOut": "Odhlásit se"
+ "vs/workbench/browser/labels": {
+ "notebookCellLabel": "{0} • Buňka {1}",
+ "notebookCellOutputLabel": "{0} • Buňka {1} • Výstup {2}",
+ "notebookCellOutputLabelSimple": "{0} • Buňka {1} • Výstup"
},
"vs/workbench/browser/parts/activitybar/activitybarPart": {
- "accounts": "Účty",
- "accounts visibility key": "Přizpůsobení viditelnosti položek účtů na panelu aktivity",
- "accountsViewBarIcon": "Ikona Účty na panelu zobrazení",
- "hideActivitBar": "Skrýt panel aktivity",
+ "activity bar position": "Pozice panelu aktivit",
+ "bottom": "Dole",
+ "default": "Výchozí",
+ "focusActivityBar": "Nastavit fokus na panel aktivity",
+ "hide": "Skrytý",
+ "hideActivityBar": "Skrýt panel aktivity",
"hideMenu": "Skrýt nabídku",
- "manage": "Spravovat",
"menu": "Nabídka",
- "pinned view containers": "Přizpůsobení viditelnosti položek panelu aktivity",
- "resetLocation": "Obnovit umístění",
- "settingsViewBarIcon": "Ikona Nastavení na panelu zobrazení"
+ "miBottomActivityBar": "&&Dole",
+ "miDefaultActivityBar": "&&Výchozí",
+ "miHideActivityBar": "&&Skrytý",
+ "miTopActivityBar": "&&Nahoře",
+ "nextSideBarView": "Další zobrazení primárního postranního panelu",
+ "positionActivituBar": "Pozice panelu aktivit",
+ "positionActivityBarBottom": "Přesunout panel aktivit dolů",
+ "positionActivityBarDefault": "Přesunout panel aktivit na stranu",
+ "positionActivityBarTop": "Přesunout panel aktivit nahoru",
+ "previousSideBarView": "Předchozí zobrazení primárního postranního panelu",
+ "top": "Nahoře"
},
"vs/workbench/browser/parts/auxiliarybar/auxiliaryBarActions": {
+ "auxiliaryBarHidden": "Skryt sekundární postranní panel",
+ "auxiliaryBarVisible": "Zobrazen sekundární postranní panel",
+ "closeIcon": "Ikona pro zavření sekundárního postranního panelu.",
+ "closeSecondarySideBar": "Skrýt sekundární postranní panel",
"focusAuxiliaryBar": "Fokus na sekundární postranní panel",
"hideAuxiliaryBar": "Skrýt sekundární postranní panel",
- "miAuxiliaryBar": "Secondary Si&&de Bar",
- "miAuxiliaryBarNoMnemonic": "Secondary Side Bar",
+ "maximizeAuxiliaryBar": "Maximalizovat sekundární postranní panel",
+ "maximizeAuxiliaryBarTooltip": "Maximalizovat velikost sekundárního postranního pruhu",
+ "maximizeIcon": "Ikona pro maximalizaci sekundárního postranního panelu.",
+ "miCloseSecondarySideBar": "&&Sekundární postranní panel",
+ "nextAuxiliaryBarView": "Další zobrazení sekundárního bočního panelu",
+ "openAndCloseAuxiliaryBar": "Otevřít/zobrazit a zavřít/skrýt sekundární postranní panel",
+ "previousAuxiliaryBarView": "Předchozí zobrazení sekundárního bočního panelu",
+ "restoreAuxiliaryBar": "Obnovit sekundární postranní panel",
+ "restoreAuxiliaryBarTooltip": "Obnovit velikost sekundárního postranního panelu",
"toggleAuxiliaryBar": "Přepnout viditelnost sekundárního postranního panelu",
- "toggleAuxiliaryIconLeft": "Ikona pro přepnutí pomocného panelu v levé pozici.",
- "toggleAuxiliaryIconLeftOn": "Ikona pro zapnutí pomocného panelu v levé pozici",
- "toggleAuxiliaryIconRight": "Ikona pro vypnutí pomocného panelu v pravé pozici",
- "toggleAuxiliaryIconRightOn": "Ikona pro zapnutí pomocného panelu v pravé pozici",
+ "toggleAuxiliaryIconLeft": "Ikona pro přepnutí sekundárního postranního panelu do jeho levé pozice.",
+ "toggleAuxiliaryIconLeftOn": "Ikona pro přepnutí sekundárního postranního panelu do jeho levé pozice.",
+ "toggleAuxiliaryIconRight": "Ikona pro přepnutí sekundárního postranního panelu do jeho pravé pozice.",
+ "toggleAuxiliaryIconRightOn": "Ikona pro přepnutí sekundárního postranního panelu do jeho pravé pozice.",
+ "toggleMaximizedAuxiliaryBar": "Přepnout maximalizovaný vedlejší sekundární panel",
"toggleSecondarySideBar": "Přepnout sekundární postranní panel"
},
"vs/workbench/browser/parts/auxiliarybar/auxiliaryBarPart": {
- "hideAuxiliaryBar": "Skrýt sekundární postranní panel",
+ "activity bar position": "Pozice panelu aktivit",
+ "hide second side bar": "Skrýt sekundární postranní panel",
"move second side bar left": "Přesunout sekundární postranní panel doleva",
- "move second side bar right": "Přesunout sekundární postranní panel doprava"
+ "move second side bar right": "Přesunout sekundární postranní panel doprava",
+ "showIcons": "Zobrazit ikony",
+ "showLabels": "Zobrazit popisky"
},
"vs/workbench/browser/parts/banner/bannerPart": {
+ "closeBanner": "Zavřít banner",
"focusBanner": "Zaměřit se na banner"
},
"vs/workbench/browser/parts/compositeBar": {
@@ -3075,13 +3926,14 @@
},
"vs/workbench/browser/parts/compositeBarActions": {
"additionalViews": "Další zobrazení",
- "badgeTitle": "{0} – {1}",
"hide": "Skrýt {0}",
+ "hideBadge": "Skrýt odznáček",
"keep": "Zachovat {0}",
- "manageExtension": "Spravovat rozšíření",
"numberBadge": "{0} ({1})",
+ "showBadge": "Zobrazit odznáček",
"titleKeybinding": "{0} ({1})",
- "toggle": "Přepnout zobrazení připnutých"
+ "toggle": "Přepnout zobrazení připnutých",
+ "toggleBadge": "Přepnout odznáček zobrazení"
},
"vs/workbench/browser/parts/compositePart": {
"ariaCompositeToolbarLabel": "Počet akcí: {0}",
@@ -3089,18 +3941,20 @@
"viewsAndMoreActions": "Zobrazení a další akce..."
},
"vs/workbench/browser/parts/dialogs/dialogHandler": {
- "aboutDetail": "Verze: {0}\r\nPotvrzení: {1}\r\nDatum: {2}\r\nProhlížeč: {3}",
- "cancelButton": "Zrušit",
- "copy": "Kopírovat",
- "ok": "OK",
- "yesButton": "&&Ano"
+ "copy": "&&Kopírovat",
+ "ok": "OK"
+ },
+ "vs/workbench/browser/parts/editor/auxiliaryEditorPart": {
+ "disableCompactAuxiliaryWindow": "Vypnout kompaktní režim",
+ "enableCompactAuxiliaryWindow": "Zapnout kompaktní režim",
+ "toggleCompactAuxiliaryWindow": "Přepnout kompaktní režim okna"
},
"vs/workbench/browser/parts/editor/binaryDiffEditor": {
"metadataDiff": "{0} ↔ {1}"
},
"vs/workbench/browser/parts/editor/binaryEditor": {
"binaryEditor": "Prohlížeč binárních souborů",
- "binaryError": "Soubor není zobrazen v editoru, protože je buď binární, nebo používá nepodporované kódování textu.",
+ "binaryError": "Soubor se v textovém editoru nezobrazuje, protože je buď binární, nebo používá nepodporované kódování textu.",
"openAnyway": "Přesto otevřít"
},
"vs/workbench/browser/parts/editor/breadcrumbs": {
@@ -3151,14 +4005,24 @@
"breadcrumbsPossible": "Určuje, jestli editor může zobrazit popis cesty.",
"breadcrumbsVisible": "Určuje, jestli jsou popisy cesty aktuálně viditelné.",
"cmd.focus": "Přepnout fokus na popis cesty",
+ "cmd.focusAndSelect": "Přepnout fokus a vybrat popis cesty",
"cmd.toggle": "Přepnout popis cesty",
+ "cmd.toggle2": "Přepnout popis cesty",
"empty": "Žádné elementy",
- "miBreadcrumbs": "&&Breadcrumbs",
+ "miBreadcrumbs2": "&&Popis cesty",
"separatorIcon": "Ikona oddělovače v popisu cesty"
},
"vs/workbench/browser/parts/editor/breadcrumbsPicker": {
"breadcrumbs": "Popis cesty"
},
+ "vs/workbench/browser/parts/editor/diffEditorCommands": {
+ "compare": "Porovnat",
+ "compare.nextChange": "Přejít na další změnu",
+ "compare.openSide": "Otevřít aktivní rozdíly na boku",
+ "compare.previousChange": "Přejít na předchozí změnu",
+ "swapDiffSides": "Prohodit levou a pravou stranu editoru",
+ "toggleInlineView": "Přepnout vložené (inline) zobrazení"
+ },
"vs/workbench/browser/parts/editor/editor.contribution": {
"activeGroupEditorsByMostRecentlyUsedQuickAccess": "Editory v aktivní skupině zobrazovat podle naposledy použitých",
"allEditorsByAppearanceQuickAccess": "Zobrazovat všechny otevřené editory podle vzhledu",
@@ -3177,15 +4041,26 @@
"closeRight": "Zavřít napravo",
"closeRightEditors": "Zavřít editory napravo ve skupině",
"closeSavedEditors": "Zavřít uložené editory ve skupině",
+ "configureEditors": "Nakonfigurovat editory",
+ "configureTabs": "Nakonfigurovat karty",
+ "copyEditorGroupToNewWindow": "Kopírovat do nového okna",
+ "copyEditorToNewWindow": "Kopírovat editor do nového okna",
+ "copyToNewWindow": "Kopírovat do nového okna",
+ "editorActionsPosition": "Umístění akcí editoru",
"editorQuickAccessPlaceholder": "Zadejte název editoru, který chcete otevřít.",
- "file": "Soubor",
- "ignoreTrimWhitespace.label": "Ignorovat rozdíly v prázdných znacích na začátku/konci",
+ "hidden": "Skryté",
+ "hideTabs": "Skryté",
+ "ignoreTrimWhitespace.label": "Zobrazovat rozdíly v prázdných znacích na začátku/konci",
"inlineView": "Vložené zobrazení",
"joinInGroup": "Spojit ve skupině",
"keepEditor": "Zachovat editor",
"keepOpen": "Ponechat otevřené",
+ "lockEditorGroup": "Uzamknout skupinu",
"lockGroup": "Uzamknout skupinu",
- "miClearRecentOpen": "&&Vymazat seznam naposledy otevřených",
+ "lockGroupAction": "Uzamknout skupinu",
+ "maximizeGroup": "Maximalizovat skupinu",
+ "miClearRecentOpen": "&&Vymazat naposledy otevřené...",
+ "miCopyEditorToNewWindow": "&&Kopírovat editor do nového okna",
"miEditorLayout": "&&Rozložení editoru",
"miFirstSideEditor": "&&První strana v editoru",
"miFocusAboveGroup": "Skupina &&nad",
@@ -3200,6 +4075,7 @@
"miJoinEditorInGroup": "Spojit ve &&skupině",
"miJoinEditorInGroupWithoutMnemonic": "Spojit ve skupině",
"miLastEditLocation": "&&Umístění poslední úpravy",
+ "miMoveEditorToNewWindow": "&&Přesunout editor do nového okna",
"miNextEditor": "&&Další editor",
"miNextEditorInGroup": "&&Další editor ve skupině",
"miNextGroup": "&&Další skupina",
@@ -3241,16 +4117,27 @@
"miTwoRowsEditorLayoutWithoutMnemonic": "Dva řádky",
"miTwoRowsRightEditorLayout": "Dva řádky vprav&&o",
"miTwoRowsRightEditorLayoutWithoutMnemonic": "Dva řádky vpravo",
+ "moveAbove": "Posunout se výše",
+ "moveBelow": "Přesunout se níže",
+ "moveEditorGroupToNewWindow": "Přesunout do nového okna",
+ "moveEditorToNewWindow": "Přesunout editor do nového okna",
+ "moveLeft": "Přesunout doleva",
+ "moveRight": "Přesunout doprava",
+ "moveToNewWindow": "Přesunout do nového okna",
+ "multipleTabs": "Více karet",
"navigate.next.label": "Další změna",
"navigate.prev.label": "Předchozí změna",
+ "newWindow": "Nové okno",
"nextChangeIcon": "Ikona pro akci další změny v editoru rozdílů",
"pin": "Připnout",
"pinEditor": "Připnout editor",
"previousChangeIcon": "Ikona pro akci předchozí změny v editoru rozdílů",
"reopenWith": "Znovu otevřít editor pomocí...",
+ "share": "Sdílet",
"showOpenedEditors": "Zobrazit otevřené editory",
- "showTrimWhitespace.label": "Zobrazovat rozdíly v prázdných znacích na začátku/konci",
"sideBySideEditor": "Editor v režimu zobrazení vedle sebe",
+ "singleTab": "Jedna karta",
+ "splitAndMoveEditor": "Rozdělit a přesunout",
"splitDown": "Rozdělit dolů",
"splitEditorDown": "Rozdělit editor dolů",
"splitEditorRight": "Rozdělit editor vpravo",
@@ -3258,21 +4145,26 @@
"splitLeft": "Rozdělit doleva",
"splitRight": "Rozdělit doprava",
"splitUp": "Rozdělit nahoru",
+ "swapDiffSides": "Prohodit levou a pravou stranu",
+ "tabBar": "Panel karet",
"textDiffEditor": "Editor rozdílů v textu",
"textEditor": "Textový editor",
+ "titleBar": "Záhlaví",
"toggleLockGroup": "Uzamknout skupinu",
"togglePreviewMode": "Povolit editory náhledu",
"toggleSplitEditorInGroupLayout": "Přepnout rozložení",
"toggleWhitespace": "Ikona pro akci přepnutí prázdných znaků v editoru rozdílů",
"unlockEditorGroup": "Odemknout skupinu",
"unlockGroupAction": "Odemknout skupinu",
+ "unmaximizeGroup": "Zrušit maximalizaci skupiny",
"unpin": "Odepnout",
"unpinEditor": "Odepnout editor"
},
"vs/workbench/browser/parts/editor/editorActions": {
"clearButtonLabel": "&&Vymazat",
"clearEditorHistory": "Vymazat historii editoru",
- "clearRecentFiles": "Vymazat naposledy otevřené",
+ "clearEditorHistoryWithoutConfirm": "Vymazat historii editoru bez potvrzení",
+ "clearRecentFiles": "Vymazat naposledy otevřené...",
"closeAllEditors": "Zavřít všechny editory",
"closeAllGroups": "Zavřít všechny skupiny editorů",
"closeEditor": "Zavřít editor",
@@ -3283,6 +4175,8 @@
"confirmClearDetail": "Tato akce je nevratná!",
"confirmClearEditorHistoryMessage": "Chcete vymazat historii naposledy otevřených editorů?",
"confirmClearRecentsMessage": "Chcete vymazat všechny naposledy otevřené soubory a pracovní prostory?",
+ "copyEditorGroupToNewWindow": "Kopírovat skupinu editorů do nového okna",
+ "copyEditorToNewWindow": "Kopírovat editor do nového okna",
"duplicateActiveGroupDown": "Duplikovat skupinu editorů dolů",
"duplicateActiveGroupLeft": "Duplikovat skupinu editorů doleva",
"duplicateActiveGroupRight": "Duplikovat skupinu editorů doprava",
@@ -3309,14 +4203,22 @@
"joinAllGroups": "Spojit všechny skupiny editorů",
"joinTwoGroups": "Spojit skupinu editorů s další skupinou",
"lastEditorInGroup": "Otevřít poslední editor ve skupině",
- "maximizeEditor": "Maximalizovat skupinu editorů a skrýt postranní panely",
+ "maximizeEditorHideSidebar": "Maximalizovat skupinu editorů a skrýt postranní panely",
"miBack": "&&Zpět",
+ "miCopyEditorGroupToNewWindow": "&&Kopírovat skupinu editorů do nového okna",
+ "miCopyEditorToNewWindow": "&&Kopírovat editor do nového okna",
"miForward": "&&Vpřed",
- "minimizeOtherEditorGroups": "Maximalizovat skupinu editorů",
+ "miMoveEditorGroupToNewWindow": "&&Přesunout skupinu editorů do nového okna",
+ "miMoveEditorToNewWindow": "&&Přesunout editor do nového okna",
+ "miNewEmptyEditorWindow": "&&Nové prázdné okno editoru",
+ "miRestoreEditorsToMainWindow": "&&Obnovit editory do hlavního okna",
+ "minimizeOtherEditorGroups": "Rozbalit skupinu editorů",
+ "minimizeOtherEditorGroupsHideSidebar": "Rozbalit skupinu editorů a skrýt postranní panely",
"moveActiveGroupDown": "Přesunout skupinu editorů dolů",
"moveActiveGroupLeft": "Posunout skupinu editorů doleva",
"moveActiveGroupRight": "Přesunout skupinu editorů doprava",
"moveActiveGroupUp": "Přesunout skupinu editorů nahoru",
+ "moveEditorGroupToNewWindow": "Přesunout skupinu editorů do nového okna",
"moveEditorLeft": "Přesunout editor doleva",
"moveEditorRight": "Přesunout editor doprava",
"moveEditorToAboveGroup": "Přesunout editor do skupiny výše",
@@ -3324,6 +4226,7 @@
"moveEditorToFirstGroup": "Přesunout editor do první skupiny",
"moveEditorToLastGroup": "Přesunout editor do poslední skupiny",
"moveEditorToLeftGroup": "Přesunout editor do skupiny nalevo",
+ "moveEditorToNewWindow": "Přesunout editor do nového okna",
"moveEditorToNextGroup": "Přesunout editor do další skupiny",
"moveEditorToPreviousGroup": "Přesunout editor do předchozí skupiny",
"moveEditorToRightGroup": "Přesunout editor do skupiny napravo",
@@ -3340,10 +4243,11 @@
"navigatePreviousInNavigationLocations": "Přejít na předchozí v Navigačních Místech",
"navigateToLastEditLocation": "Přejít na místo poslední úpravy",
"navigateToLastNavigationLocation": "Přejít na poslední Navigační Místo",
- "newEditorAbove": "Nová skupina editorů výše",
- "newEditorBelow": "Nová skupina editorů níže",
- "newEditorLeft": "Nová skupina editorů nalevo",
- "newEditorRight": "Nová skupina editorů napravo",
+ "newEmptyEditorWindow": "Nové prázdné okno editoru",
+ "newGroupAbove": "Nová skupina editorů výše",
+ "newGroupBelow": "Nová skupina editorů níže",
+ "newGroupLeft": "Nová skupina editorů nalevo",
+ "newGroupRight": "Nová skupina editorů napravo",
"nextEditorInGroup": "Otevřít další editor ve skupině",
"openNextEditor": "Otevřít další editor",
"openNextRecentlyUsedEditor": "Otevřít další nedávno použitý editor",
@@ -3357,7 +4261,10 @@
"quickOpenPreviousRecentlyUsedEditor": "Rychle otevřít předchozí nedávno použitý editor",
"quickOpenPreviousRecentlyUsedEditorInGroup": "Rychle otevřít předchozí nedávno použitý editor ve skupině",
"reopenClosedEditor": "Znovu otevřít zavřený editor",
+ "reopenTextEditor": "Znovu otevřít Editor s textovým editorem",
+ "restoreEditorsToMainWindow": "Obnovit editory do hlavního okna",
"revertAndCloseActiveEditor": "Obnovit a zavřít editor",
+ "reverting": "Vracení editorů zpět...",
"showAllEditors": "Zobrazit všechny editory podle vzhledu",
"showAllEditorsByMostRecentlyUsed": "Zobrazit všechny editory podle naposledy použitých",
"showEditorsInActiveGroup": "Zobrazit editory v aktivní skupině podle naposledy použitých",
@@ -3375,19 +4282,21 @@
"splitEditorToNextGroup": "Rozdělit editor do další skupiny",
"splitEditorToPreviousGroup": "Rozdělit editor do předchozí skupiny",
"splitEditorToRightGroup": "Rozdělit editor do skupiny napravo",
+ "toggleEditorType": "Přepnout typ editoru",
"toggleEditorWidths": "Přepnout velikosti skupin editorů",
- "unpinEditor": "Odepnout editor",
- "workbench.action.reopenTextEditor": "Znovu otevřít Editor s textovým editorem",
- "workbench.action.toggleEditorType": "Přepnout typ editoru"
+ "toggleMaximizeEditorGroup": "Přepnout maximalizaci skupiny editorů",
+ "unmaximizeGroup": "Zrušit maximalizaci skupiny",
+ "unpinEditor": "Odepnout editor"
},
"vs/workbench/browser/parts/editor/editorCommands": {
- "compare": "Porovnat",
"editorCommand.activeEditorCopy.arg.description": "Vlastnosti argumentu:\r\n\t* „to“: Řetězcová hodnota s informacemi o umístění pro kopírování.\r\n\t* „value“: Číselná hodnota, která udává, o kolik pozic se má provést přesun, nebo absolutní pozici pro kopírování.",
"editorCommand.activeEditorCopy.arg.name": "Argument kopírování aktivního editoru",
"editorCommand.activeEditorCopy.description": "Kopírování aktivního editoru podle skupin",
"editorCommand.activeEditorMove.arg.description": "Argument Properties:\r\n\t* 'to': String value providing where to move.\r\n\t* 'by': String value providing the unit for move (by tab or by group).\r\n\t* 'value': Number value providing how many positions or an absolute position to move.",
"editorCommand.activeEditorMove.arg.name": "Argument přesunutí aktivního editoru",
"editorCommand.activeEditorMove.description": "Přesunout aktivní editor podle karet nebo skupin",
+ "editorGroupLayout.horizontal": "Vodorovně",
+ "editorGroupLayout.vertical": "Svisle",
"focusLeftSideEditor": "Přepnout fokus na první stranu v aktivním editoru",
"focusOtherSideEditor": "Přepnout fokus na opačnou stranu v aktivním editoru",
"focusRightSideEditor": "Přepnout fokus na druhou stranu v aktivním editoru",
@@ -3395,16 +4304,19 @@
"lockEditorGroup": "Uzamknout skupinu editoru",
"splitEditorInGroup": "Rozdělit editor ve skupině",
"toggleEditorGroupLock": "Přepnout zámek skupiny editoru",
- "toggleInlineView": "Přepnout vložené (inline) zobrazení",
"toggleJoinEditorInGroup": "Přepnout rozdělený editor ve skupině",
"toggleSplitEditorInGroupLayout": "Přepnout rozložení rozděleného editoru ve skupině",
"unlockEditorGroup": "Odemknout skupinu editoru"
},
"vs/workbench/browser/parts/editor/editorConfiguration": {
- "editor.editorAssociations": "Nakonfigurujte vzory glob pro editory (například „*.hex“: „hexEditor.hexEdit“). Tyto mají přednost před výchozím chováním.",
+ "editor.editorAssociations": "Nakonfigurujte [vzory glob](https://aka.ms/vscode-glob-patterns) pro editory (například „*.hex“: „hexEditor.hexedit“). Tyto mají přednost před výchozím chováním.",
+ "editorLargeFileSizeConfirmation": "Určuje minimální velikost souboru v MB před požádáním o potvrzení při otevření v editoru. Upozorňujeme, že toto nastavení nemusí platit pro všechny typy editorů a prostředí.",
+ "interactiveWindow": "Interaktivní okno",
+ "livePreview": "Dynamický náhled",
"markdownPreview": "Náhled ve formátu Markdown",
- "workbench.editor.autoLockGroups": "Pokud je editor shodující se s jedním z uvedených typů otevřený jako první ve skupině editorů a je otevřena více než jedna skupina, skupina se automaticky uzamkne. Uzamčené skupiny se použijí pouze pro otevírání editorů explicitně zvolených gestem uživatele (např. přetažením), ale ne standardně. V důsledku toho je méně pravděpodobné, že aktivní editor v uzamčené skupině bude omylem nahrazen jiným editorem.",
- "workbench.editor.defaultBinaryEditor": "Výchozí editor souborů zjištěných jako binární. Pokud není definováno, zobrazí se uživateli výběr."
+ "simpleBrowser": "Jednoduchý prohlížeč",
+ "workbench.editor.autoLockGroups": "Pokud je editor odpovídající jednomu z uvedených typů otevřen jako první ve skupině editorů a je otevřena více než jedna skupina, skupina se automaticky uzamkne. Uzamčené skupiny se použijí jenom pro otevírání editorů, když je explicitně zvolí gesto uživatele (například přetažení), ale ve výchozím nastavení ne. V důsledku toho je méně pravděpodobné, že aktivní editor v uzamčené skupině bude omylem nahrazen jiným editorem.",
+ "workbench.editor.defaultBinaryEditor": "Výchozí editor souborů zjištěných jako binární. Pokud není definován, zobrazí se uživateli výběr."
},
"vs/workbench/browser/parts/editor/editorDropTarget": {
"dropIntoEditorPrompt": "Podržením __{0}__ přemístěte do editoru."
@@ -3413,22 +4325,43 @@
"ariaLabelGroupActions": "Prázdné akce skupiny editoru",
"emptyEditorGroup": "{0} (prázdné)",
"groupAriaLabel": "Skupina editorů {0}",
- "groupLabel": "Skupina {0}"
- },
- "vs/workbench/browser/parts/editor/editorPanes": {
- "cancel": "Zrušit",
- "editorOpenErrorDialog": "Nelze otevřít {0}.",
- "ok": "OK"
+ "groupAriaLabelLong": "{0}: Skupina editorů {1}",
+ "groupLabel": "Skupina {0}",
+ "groupLabelLong": "{0}: Skupina {1}",
+ "moveErrorDetails": "Nejprve zkuste editor uložit nebo vrátit zpět a pak to zkuste znovu."
},
- "vs/workbench/browser/parts/editor/editorPlaceholder": {
+ "vs/workbench/browser/parts/editor/editorGroupWatermark": {
+ "editorLineHighlight": "Barva popředí pro popisky ve vodoznaku editoru",
+ "watermark.findInFiles": "Najít v souborech",
+ "watermark.newUntitledFile": "Nový textový soubor bez názvu",
+ "watermark.openChat": "Otevřít chat",
+ "watermark.openFile": "Otevřít soubor",
+ "watermark.openFileFolder": "Otevřít soubor nebo složku",
+ "watermark.openFolder": "Otevřít složku",
+ "watermark.openRecent": "Otevřít nedávné",
+ "watermark.openSettings": "Otevřít nastavení",
+ "watermark.quickAccess": "Přejít na soubor",
+ "watermark.showCommands": "Zobrazit všechny příkazy",
+ "watermark.startDebugging": "Spustit ladění",
+ "watermark.toggleTerminal": "Přepnout terminál"
+ },
+ "vs/workbench/browser/parts/editor/editorPanes": {
+ "editorOpenErrorDialog": "Nelze otevřít {0}.",
+ "ok": "&&OK"
+ },
+ "vs/workbench/browser/parts/editor/editorParts": {
+ "groupLabel": "Okno {0}"
+ },
+ "vs/workbench/browser/parts/editor/editorPlaceholder": {
"errorEditor": "Editor chyb",
"manageTrust": "Spravovat vztah důvěryhodnosti pracovního prostoru",
"requiresFolderTrustText": "Soubor není zobrazen v editoru, protože složce nebyl udělen vztah důvěryhodnosti.",
"requiresWorkspaceTrustText": "Soubor není zobrazen v editoru, protože pracovnímu prostoru nebyl udělen vztah důvěryhodnosti.",
"retry": "Zkusit znovu",
+ "showLogs": "Zobrazit protokoly",
"trustRequiredEditor": "Je vyžadován vztah důvěryhodnosti pracovního prostoru.",
"unavailableResourceErrorEditorText": "Editor nelze otevřít, protože soubor nebyl nalezen.",
- "unknownErrorEditorTextWithError": "Editor se nepodařilo otevřít kvůli neočekávané chybě: {0}",
+ "unknownErrorEditorTextWithError": "Editor nelze otevřít z důvodu neočekávané chyby. Další podrobnosti naleznete v protokolu.",
"unknownErrorEditorTextWithoutError": "Editor nebylo možné otevřít z důvodu nečekané chyby."
},
"vs/workbench/browser/parts/editor/editorQuickAccess": {
@@ -3442,6 +4375,8 @@
"autoDetect": "Automaticky zjistit",
"changeEncoding": "Změnit kódování souboru",
"changeEndOfLine": "Změnit sekvenci konce řádku",
+ "changeLanguageMode.arg.name": "Název režimu jazyka, na který se má režim změnit.",
+ "changeLanguageMode.description": "Umožňuje změnit režim jazyka aktivního textového editoru.",
"changeMode": "Změnit režim jazyka",
"columnSelectionModeEnabled": "Výběr sloupce",
"configureAssociationsExt": "Konfigurovat přidružení souboru pro {0}...",
@@ -3457,6 +4392,7 @@
"guessedEncoding": "Odhadnuto z obsahu",
"indentConvert": "převést soubor",
"indentView": "změnit zobrazení",
+ "inputModeOvertype": "PŘES",
"languageDescription": "({0}) – nakonfigurovaný jazyk",
"languageDescriptionConfigured": "({0})",
"languagesPicks": "jazyky (identifikátor)",
@@ -3471,12 +4407,11 @@
"pickEndOfLine": "Vybrat sekvenci konce řádku",
"pickLanguage": "Vybrat režim jazyka",
"pickLanguageToConfigure": "Vybrat režim jazyka, který se má přidružit k {0}",
+ "reopen": "Zahodit změny a znovu otevřít",
"reopenWithEncoding": "Znovu otevřít s kódováním",
+ "reopenWithEncodingDetail": "Tato operace zahodí všechny neuložené změny.",
+ "reopenWithEncodingWarning": "Chcete vrátit aktivní textový editor a znovu ho otevřít s jiným kódováním?",
"saveWithEncoding": "Uložit s kódováním",
- "screenReaderDetected": "Optimalizováno pro čtečku obrazovky",
- "screenReaderDetectedExplanation.answerNo": "Ne",
- "screenReaderDetectedExplanation.answerYes": "Ano",
- "screenReaderDetectedExplanation.question": "Používáte pro práci s editorem VS Code čtečku obrazovky? (Při použití čtečky obrazovky jsou zakázané některé funkce, jako je například zalamování řádků.)",
"selectEOL": "Vybrat sekvenci konce řádku",
"selectEncoding": "Vybrat kódování",
"selectIndentation": "Vybrat odsazení",
@@ -3484,37 +4419,57 @@
"showLanguageExtensions": "Hledat {0} v rozšířeních na Marketplace...",
"singleSelection": "Řádek {0}, sloupec {1}",
"singleSelectionRange": "Řádek {0}, sloupec {1} (vybráno: {2})",
+ "spacesAndTabsSize": "Mezery: {0} (Velikost tabulátoru: {1})",
"spacesSize": "Mezery: {0}",
"status.editor.columnSelectionMode": "Režim výběru sloupce",
+ "status.editor.enableInsertMode": "Povolit režim vkládání",
"status.editor.encoding": "Kódování v editoru",
"status.editor.eol": "Konec řádku editoru",
"status.editor.indentation": "Odsazení v editoru",
"status.editor.info": "Informace o souboru",
"status.editor.mode": "Jazyk editoru",
- "status.editor.screenReaderMode": "Režim čtečky obrazovky",
"status.editor.selection": "Výběr editoru",
"status.editor.tabFocusMode": "Režim usnadnění přístupu",
"tabFocusModeEnabled": "Přesouvat fokus klávesou Tab",
"tabSize": "Velikost tabulátoru: {0}"
},
- "vs/workbench/browser/parts/editor/sideBySideEditor": {
- "sideBySideEditor": "Editor v režimu zobrazení vedle sebe"
+ "vs/workbench/browser/parts/editor/editorTabsControl": {
+ "ariaLabelEditorActions": "Akce pro editor",
+ "draggedEditorGroup": "{0} (+{1})"
},
- "vs/workbench/browser/parts/editor/tabsTitleControl": {
+ "vs/workbench/browser/parts/editor/multiEditorTabsControl": {
"ariaLabelTabActions": "Akce pro kartu"
},
+ "vs/workbench/browser/parts/editor/sideBySideEditor": {
+ "sideBySideEditor": "Editor v režimu zobrazení vedle sebe"
+ },
"vs/workbench/browser/parts/editor/textCodeEditor": {
"textEditor": "Textový editor"
},
"vs/workbench/browser/parts/editor/textDiffEditor": {
+ "fileTooLargeForHeapErrorWithSize": "V editoru porovnání textu se nejméně jeden soubor nezobrazí, protože je velmi velký ({0}).",
+ "fileTooLargeForHeapErrorWithoutSize": "V editoru porovnání textu se nejméně jeden soubor nezobrazí, protože je velmi velký.",
"textDiffEditor": "Editor rozdílů v textu"
},
"vs/workbench/browser/parts/editor/textEditor": {
"editor": "Editor"
},
- "vs/workbench/browser/parts/editor/titleControl": {
- "ariaLabelEditorActions": "Akce pro editor",
- "draggedEditorGroup": "{0} (+{1})"
+ "vs/workbench/browser/parts/globalCompositeBar": {
+ "accounts": "Účty",
+ "accountsViewBarIcon": "Ikona Účty na panelu zobrazení",
+ "authProviderUnavailable": "{0} není aktuálně k dispozici.",
+ "hideAccounts": "Skrýt účty",
+ "loading": "Načítání...",
+ "manage": "Správa",
+ "manage profile": "Spravovat {0} (profil)",
+ "manageDynamicAuthProviders": "Spravovat poskytovatele dynamického ověřování...",
+ "manageTrustedExtensions": "Spravovat důvěryhodná rozšíření",
+ "manageTrustedMCPServers": "Spravovat důvěryhodné servery MCP",
+ "signOut": "Odhlásit se"
+ },
+ "vs/workbench/browser/parts/notifications/notificationAccessibleView": {
+ "clearNotification": "Vymazat oznámení",
+ "notification.accessibleViewSrc": "{0} Zdroj: {1}"
},
"vs/workbench/browser/parts/notifications/notificationsActions": {
"clearAllIcon": "Ikona pro akci vymazání všeho v oznámeních",
@@ -3523,15 +4478,17 @@
"clearNotifications": "Vymazat všechna oznámení",
"collapseIcon": "Ikona pro akci sbalení v oznámeních",
"collapseNotification": "Sbalit oznámení",
+ "configureDoNotDisturbMode": "Konfigurovat režim Nerušit...",
"configureIcon": "Ikona pro akci konfigurace v oznámeních",
- "configureNotification": "Konfigurovat oznámení",
+ "configureNotification": "Další akce…",
"copyNotification": "Kopírovat text",
"doNotDisturbIcon": "Ikona pro ztlumení všech akcí v oznámeních.",
"expandIcon": "Ikona pro akci rozbalení v oznámeních",
"expandNotification": "Rozbalit oznámení",
"hideIcon": "Ikona pro akci skrytí v oznámeních",
"hideNotificationsCenter": "Skrýt oznámení",
- "toggleDoNotDisturbMode": "Přepnout režim Nerušit"
+ "toggleDoNotDisturbMode": "Přepnout režim Nerušit",
+ "toggleDoNotDisturbModeBySource": "Přepnout režim Nerušit podle zdroje..."
},
"vs/workbench/browser/parts/notifications/notificationsAlerts": {
"alertErrorMessage": "Chyba: {0}",
@@ -3539,22 +4496,32 @@
"alertWarningMessage": "Upozornění: {0}"
},
"vs/workbench/browser/parts/notifications/notificationsCenter": {
+ "moreSources": "Více…",
"notifications": "Oznámení",
"notificationsCenterWidgetAriaLabel": "Centrum oznámení",
"notificationsEmpty": "Žádná nová oznámení",
- "notificationsToolbar": "Akce centra oznámení"
+ "notificationsToolbar": "Akce centra oznámení",
+ "turnOffNotifications": "Zakázat režim Nerušit",
+ "turnOnNotifications": "Povolit režim Nerušit"
},
"vs/workbench/browser/parts/notifications/notificationsCommands": {
+ "acceptNotificationPrimaryAction": "Přijmout primární akci oznámení",
"clearAllNotifications": "Vymazat všechna oznámení",
"focusNotificationToasts": "Přepnout fokus na informační zprávu",
"hideNotifications": "Skrýt oznámení",
"notifications": "Oznámení",
+ "selectSources": "Vyberte zdroje, ze kterých se mají povolit všechna oznámení.",
"showNotifications": "Zobrazit oznámení",
- "toggleDoNotDisturbMode": "Přepnout režim Nerušit"
+ "toggleDoNotDisturbMode": "Přepnout režim Nerušit",
+ "toggleDoNotDisturbModeBySource": "Přepnout režim Nerušit podle zdroje..."
},
"vs/workbench/browser/parts/notifications/notificationsList": {
+ "notificationAccessibleViewHint": "Zkontrolujte odpověď v přístupném zobrazení pomocí {0}.",
+ "notificationAccessibleViewHintNoKb": "Zkontrolujte odpověď v přístupném zobrazení pomocí příkazu Otevřít přístupné zobrazení, které se v tuto chvíli nedá aktivovat pomocí klávesové zkratky.",
"notificationAriaLabel": "{0}, oznámení",
+ "notificationAriaLabelHint": "{0}, oznámení {1}",
"notificationWithSourceAriaLabel": "{0}, zdroj: {1}, oznámení",
+ "notificationWithSourceAriaLabelHint": "{0}, zdroj: {1}, oznámení, {2}",
"notificationsList": "Seznam oznámení"
},
"vs/workbench/browser/parts/notifications/notificationsStatus": {
@@ -3578,7 +4545,21 @@
"vs/workbench/browser/parts/notifications/notificationsViewer": {
"executeCommand": "Kliknutím provedete příkaz {0}.",
"notificationActions": "Akce oznámení",
- "notificationSource": "Zdroj: {0}"
+ "notificationSource": "Zdroj: {0}",
+ "turnOffNotifications": "Vypnout oznámení typu Informace a Upozornění z {0}",
+ "turnOnNotifications": "Zapnout všechna oznámení z {0}"
+ },
+ "vs/workbench/browser/parts/paneCompositeBar": {
+ "auxiliarybar": "Sekundární postranní panel",
+ "moveToMenu": "Přesunout do",
+ "panel": "Panel",
+ "resetLocation": "Obnovit umístění",
+ "sidebar": "Primární postranní panel"
+ },
+ "vs/workbench/browser/parts/paneCompositePart": {
+ "moreActions": "Další akce…",
+ "pane.emptyMessage": "Sem přetáhněte zobrazení, které chcete zobrazit.",
+ "views": "Zobrazení"
},
"vs/workbench/browser/parts/panel/panelActions": {
"alignPanel": "Zarovnat panel",
@@ -3591,18 +4572,16 @@
"alignPanelRight": "Nastavit zarovnání panelu doprava",
"alignPanelRightShort": "Vpravo",
"closeIcon": "Ikona pro zavření panelu",
- "closePanel": "Zavřít panel",
- "closeSecondarySideBar": "Zavřít sekundární postranní panel",
+ "closePanel": "Skrýt panel",
"focusPanel": "Přepnout fokus na panel",
- "hidePanel": "Skrýt panel",
"maximizeIcon": "Ikona pro maximalizaci panelu",
"maximizePanel": "Maximalizovat velikost panelu",
- "miPanel": "&&Panel",
- "miPanelNoMnemonic": "Panel",
+ "miTogglePanelMnemonic": "&&Panel",
"minimizePanel": "Obnovit velikost panelu",
"movePanelToSecondarySideBar": "Přesunout zobrazení panelu do sekundárního postranního panelu",
"moveSidePanelToPanel": "Přesunout zobrazení sekundárního postranního panelu na panel",
"nextPanelView": "Další zobrazení panelu",
+ "openAndClosePanel": "Otevřít/zobrazit a zavřít/skrýt panel",
"panelMaxNotSupported": "Maximalizace panelu je podporována pouze v případě, že je zarovnán na střed.",
"positionPanel": "Pozice panelu",
"positionPanelBottom": "Přesunout panel dolů",
@@ -3611,8 +4590,9 @@
"positionPanelLeftShort": "Doleva",
"positionPanelRight": "Přesunout panel doprava",
"positionPanelRightShort": "Vpravo",
+ "positionPanelTop": "Přesunout panel nahoru",
+ "positionPanelTopShort": "Nahoru",
"previousPanelView": "Předchozí zobrazení panelu",
- "restoreIcon": "Ikona pro obnovení panelu",
"toggleMaximizedPanel": "Přepnout maximalizovaný panel",
"togglePanel": "Přepnout panel",
"togglePanelOffIcon": "Ikona pro vypnutí panelu, když je zapnutý.",
@@ -3620,37 +4600,34 @@
"togglePanelVisibility": "Přepnout viditelnost panelu"
},
"vs/workbench/browser/parts/panel/panelPart": {
+ "align panel": "Zarovnat Panel",
"hidePanel": "Skrýt panel",
- "moreActions": "Další akce…",
- "panel.emptyMessage": "Sem přetáhněte zobrazení, které chcete zobrazit.",
- "pinned view containers": "Přizpůsobení viditelnosti položek panelu",
- "resetLocation": "Resetování umístění"
+ "panel position": "Pozice panelu",
+ "showIcons": "Zobrazit ikony",
+ "showLabels": "Zobrazit popisky"
},
"vs/workbench/browser/parts/sidebar/sidebarActions": {
+ "closeSidebar": "Zavřít primární postranní panel",
"focusSideBar": "Fokus na primární postranní panel"
},
+ "vs/workbench/browser/parts/sidebar/sidebarPart": {
+ "toggleActivityBar": "Přepnout viditelnost panelu aktivity"
+ },
"vs/workbench/browser/parts/statusbar/statusbarActions": {
"focusStatusBar": "Fokus na stavový řádek",
- "hide": "Skrýt: {0}"
- },
- "vs/workbench/browser/parts/statusbar/statusbarModel": {
- "statusbar.hidden": "Přizpůsobení viditelnosti položek stavového řádku"
+ "hide": "Skrýt: {0}",
+ "manageExtension": "Spravovat rozšíření"
},
"vs/workbench/browser/parts/statusbar/statusbarPart": {
"hideStatusBar": "Skrýt stavový řádek"
},
"vs/workbench/browser/parts/titlebar/commandCenterControl": {
- "all": "Zobrazit režimy vyhledávání…",
- "commandCenter-activeBackground": "Aktivní barva pozadí centra příkazů",
- "commandCenter-activeForeground": "Aktivní barva popředí centra příkazů",
- "commandCenter-background": "Barva pozadí centra příkazů",
- "commandCenter-border": "Barva ohraničení centra příkazů",
- "commandCenter-foreground": "Barva popředí centra příkazů",
"label.dfl": "Hledat",
"label1": "{0} {1}",
"label2": "{0} {1}",
"title": "Vyhledat {0} ({1}) – {2}",
- "title2": "Vyhledat {0} – {1}"
+ "title2": "Vyhledat {0} – {1}",
+ "title3": "Centrum příkazů"
},
"vs/workbench/browser/parts/titlebar/menubarControl": {
"DownloadingUpdate": "Stahuje se aktualizace...",
@@ -3669,19 +4646,39 @@
"mSelection": "&&Výběr",
"mTerminal": "&&Terminál",
"mView": "&&Zobrazit",
- "menubar.customTitlebarAccessibilityNotification": "Máte povolenou podporu usnadnění přístupu. Pro optimální výkon doporučujeme použít vlastní styl záhlaví okna.",
+ "menubar.customTitlebarAccessibilityNotification": "Máte povolenou podporu usnadnění přístupu. Pro nejpřístupnější prostředí doporučujeme vlastní styl nabídky.",
"restartToUpdate": "&&Restartovat za účelem aktualizace"
},
+ "vs/workbench/browser/parts/titlebar/titlebarActions": {
+ "accounts": "Účty",
+ "hideCustomTitleBar": "Skrýt vlastní záhlaví",
+ "hideCustomTitleBarInFullScreen": "Skrýt vlastní záhlaví v zobrazení na celou obrazovku",
+ "manage": "Spravovat",
+ "showCustomTitleBar": "Zobrazit vlastní záhlaví",
+ "toggle.commandCenter": "Centrum příkazů",
+ "toggle.commandCenterDescription": "Přepnout viditelnost Centra příkazů v záhlaví",
+ "toggle.customTitleBar": "Vlastní záhlaví",
+ "toggle.editorActions": "Akce editoru",
+ "toggle.hideCustomTitleBar": "Skrýt vlastní záhlaví",
+ "toggle.hideCustomTitleBarInFullScreen": "Skrýt vlastní záhlaví v zobrazení na celou obrazovku",
+ "toggle.layout": "Ovládací prvky rozložení",
+ "toggle.layoutDescription": "Přepnout viditelnost ovládacích prvků rozložení v záhlaví",
+ "toggle.navigation": "Ovládací prvky navigace",
+ "toggle.navigationDescription": "Přepnout viditelnost ovládacích prvků navigace v záhlaví"
+ },
"vs/workbench/browser/parts/titlebar/titlebarPart": {
- "focusTitleBar": "Záhlaví fokusu",
- "toggle.commandCenter": "Command Center",
- "toggle.layout": "Layout Controls"
+ "ariaLabelTitleActions": "Akce v záhlaví",
+ "focusTitleBar": "Záhlaví fokusu"
},
"vs/workbench/browser/parts/titlebar/windowTitle": {
"devExtensionWindowTitlePrefix": "[Hostitel vývoje rozšíření]",
"userIsAdmin": "[Správce]",
"userIsSudo": "[Superuživatel]"
},
+ "vs/workbench/browser/parts/views/checkbox": {
+ "checked": "Zkontrolováno",
+ "unchecked": "Nezaškrtnuto"
+ },
"vs/workbench/browser/parts/views/treeView": {
"collapseAll": "Sbalit vše",
"command-error": "Chyba při spouštění příkazu {1}: {0}. Pravděpodobnou příčinou je rozšíření, které přispívá do {1}.",
@@ -3691,7 +4688,11 @@
"treeView.enableRefresh": "Určuje, jestli stromové zobrazení s ID {0} povoluje aktualizaci.",
"treeView.toggleCollapseAll": "Určuje, jestli je pro stromové zobrazení s ID {0} přepnutá možnost sbalit vše."
},
+ "vs/workbench/browser/parts/views/viewFilter": {
+ "more filters": "Další filtry..."
+ },
"vs/workbench/browser/parts/views/viewPane": {
+ "viewAccessibilityHelp": "Použít Alt+F1 pro nápovědu k přístupnosti {0}",
"viewPaneContainerCollapsedIcon": "Ikona pro sbalený kontejner podokna zobrazení",
"viewPaneContainerExpandedIcon": "Ikona pro rozbalený kontejner podokna zobrazení",
"viewToolbarAriaLabel": "Počet akcí: {0}"
@@ -3704,55 +4705,84 @@
"views": "Zobrazení",
"viewsMove": "Přesunout zobrazení"
},
- "vs/workbench/browser/parts/views/viewsService": {
- "focus view": "Přepnout fokus na zobrazení {0}",
- "resetViewLocation": "Obnovit umístění",
- "show view": "Zobrazit: {0}",
- "toggle view": "Přepnout {0}"
- },
"vs/workbench/browser/quickaccess": {
"inQuickOpen": "Určuje, jestli je fokus klávesnice uvnitř ovládacího prvku rychlého otevření."
},
- "vs/workbench/browser/workbench": {
- "loaderErrorNative": "Požadovaný soubor se nepovedlo načíst. Pokud to chcete zkusit znovu, restartujte prosím aplikaci. Podrobnosti: {0}"
+ "vs/workbench/browser/web.main": {
+ "reset": "Resetovat uživatelská data",
+ "reset user data message": "Chcete obnovit data (nastavení, klávesové zkratky, rozšíření, fragmenty kódu a stav uživatelského rozhraní) a znovu je načíst?"
+ },
+ "vs/workbench/browser/window": {
+ "closeWindowButtonLabel": "&&Zavřít okno",
+ "closeWindowMessage": "Opravdu chcete okno zavřít?",
+ "doNotAskAgain": "Tento dotaz příště nezobrazovat",
+ "exitButtonLabel": "&&Ukončit",
+ "openExternalDialogButtonInstall.v3": "&&Nainstalovat",
+ "openExternalDialogButtonRetry.v2": "&&Zkusit znovu",
+ "openExternalDialogDetail.v2": "Na vašem počítači jsme spustili {0}.\r\n\r\nPokud se {1} nespustil, zkuste to znovu nebo ho nainstalujte níže.",
+ "openExternalDialogDetailNoInstall": "Na vašem počítači jsme spustili {0}.\r\n\r\nPokud se {1} nespustil, zkuste to dále znovu.",
+ "openExternalDialogTitle": "Hotovo. Tuto kartu teď můžete zavřít.",
+ "quitButtonLabel": "&&Ukončit",
+ "quitMessage": "Opravdu chcete skončit?",
+ "quitMessageMac": "Opravdu chcete skončit?",
+ "reload": "&&Načíst znovu",
+ "retry": "&&Zkusit znovu",
+ "shutdownError": "Došlo k neočekávané chybě, která vyžaduje opětovné načtení této stránky.",
+ "shutdownErrorDetail": "Workbench byla během běhu neočekávaně uvolněna.",
+ "unableToOpenExternal": "Prohlížeč zablokoval otevření nové karty nebo okna. Zkuste to znovu výběrem možnosti Zkusit znovu.",
+ "unableToOpenWindowDetail": "Povolte prosím automaticky otevíraná okna pro tento web v [nastavení prohlížeče]({0})."
},
"vs/workbench/browser/workbench.contribution": {
"activeEditorLong": "${activeEditorLong}: úplná cesta k souboru (například /Users/Development/myFolder/myFileFolder/myFile.txt)",
"activeEditorMedium": "${activeEditorMedium}: cesta k souboru relativní ke složce pracovního prostoru (například myFolder/myFileFolder/myFile.txt)",
"activeEditorShort": "${activeEditorShort}: název souboru (například myFile.txt)",
+ "activeEditorState": "${activeEditorState}: poskytuje informace o stavu aktivního editoru (např. změněno). Ve výchozím nastavení se tato možnost připojí v režimu čtečky obrazovky s povolenou funkcí: {0}.",
"activeFolderLong": "${activeFolderLong}: úplná cesta ke složce, ve které je soubor obsažen (například /Users/Development/myFolder/myFileFolder)",
"activeFolderMedium": "${activeFolderMedium}: cesta ke složce, ve které je soubor obsažen, relativní ke složce pracovního prostoru (například myFolder/myFileFolder)",
"activeFolderShort": "${activeFolderShort}: název složky, ve které je soubor obsažen (například myFileFolder)",
- "activityBarIconClickBehavior": "Určuje chování při kliknutí na ikonu na panelu aktivity na pracovní ploše.",
- "activityBarVisibility": "Řídí viditelnost panelu aktivity na pracovní ploše.",
+ "activeRepositoryBranchName": "${activeRepositoryBranchName}: název aktivní větve v aktivním úložišti (např. main).",
+ "activeRepositoryName": "${activeRepositoryName}: název aktivního úložiště (např. vscode).",
+ "activityBarIconClickBehavior": "Určuje chování při kliknutí na ikonu na Panelu aktivity na pracovní ploše. Tato hodnota je ignorována, pokud možnost {0} není nastavena na hodnotu {1}.",
+ "activityBarLocation": "Určuje umístění panelu aktivity vzhledem k primárním a sekundárním postranním panelům.",
+ "alwaysShowEditorActions": "Určuje, jestli se mají vždy zobrazovat akce editoru, i když skupina editorů není aktivní.",
"appName": "${appName}: například VS Code",
+ "askChatLocation": "Určuje, kde by paleta příkazů měla klást otázky k chatu.",
+ "askChatLocation.chatView": "Otázky do chatu pokládejte v zobrazení chatu.",
+ "askChatLocation.quickChat": "Otázky do chatu pokládejte v rychlém chatu",
+ "browser": "Nakonfigurujte prohlížeč, který se použije k externímu otevírání odkazů http nebo https. Může to být buď název prohlížeče (edge, chrome, firefox), nebo absolutní cesta ke spustitelnému souboru prohlížeče. Pokud není nastaveno, použije se výchozí nastavení systému.",
"centeredLayoutAutoResize": "Určuje, jestli se má velikost středového rozložení automaticky přizpůsobit na maximální šířku, když je otevřena více než jedna skupina. Jakmile bude otevřena pouze jedna skupina, změní se velikost středového zobrazení zpět na původní šířku.",
+ "centeredLayoutDynamicWidth": "Určuje, jestli se rozložení na střed při změně velikosti okna pokusí zachovat konstantní šířku.",
"closeEmptyGroups": "Určuje chování prázdných skupin editorů, když je zavřena poslední karta ve skupině. Pokud je povoleno, prázdné skupiny se budou automaticky zavírat. Pokud je zakázáno, prázdné skupiny zůstanou součástí mřížky.",
"closeOnFileDelete": "Určuje, jestli se mají editory automaticky zavřít, když je soubor, který byl otevřen během relace, odstraněn nebo přejmenován jiným procesem. Při zakázání této možnosti zůstane editor v případě takové události otevřený. Poznámka: Při odstranění z aplikace se editor vždy zavře a editory s neuloženými změnami se nezavřou nikdy, abyste nepřišli o svá data.",
"closeOnFocusLost": "Určuje, jestli se má zobrazení rychlého otevření automaticky zavřít, jakmile ztratí fokus.",
"commandHistory": "Určuje počet naposledy použitých příkazů, které se mají uchovávat v historii pro paletu příkazů. Pokud chcete historii příkazů zakázat, nastavte hodnotu 0.",
"confirmBeforeClose": "Určuje, jestli se má před zavřením okna nebo ukončením aplikace zobrazit potvrzovací dialog.",
"confirmBeforeCloseWeb": "Určuje, jestli se před zavřením karty nebo okna prohlížeče má zobrazovat dialog pro potvrzení. Poznámka: I když se tato možnost povolí, prohlížeče stále budou mít možnost zavřít kartu nebo okno bez potvrzení a toto nastavení je pouze náznak, který nemusí fungovat ve všech případech.",
+ "customEditorLabelDescriptionExample": "Příklad: \"**/static/**/*.html\": \"${filename} - ${dirname} (${extname})\" vykreslí soubor WORKSPACE_FOLDER/static/folder/file.html jako file - folder (html).",
"customMenuBarAltFocus": "Určuje, jestli bude mít řádek nabídek při stisknutí klávesy Alt fokus. Toto nastavení nemá žádný vliv na přepínání řádku nabídek pomocí klávesy Alt.",
"decorations.badges": "Určuje, jestli dekorace souborů v editoru mají používat odznáčky.",
"decorations.colors": "Určuje, jestli dekorace souborů v editoru mají používat barvy.",
"dirty": "${dirty}: indikuje, jestli aktivní editor obsahuje neuložené změny.",
- "editorOpenPositioning": "Určuje, kde se editory otevírají. Výběrem možnosti left nebo right otevřete editory nalevo nebo napravo od aktuálně aktivního editoru. Výběrem možnosti first nebo last otevřete editory nezávisle na aktuálně aktivním editoru.",
- "editorTabCloseButton": "Určuje pozici tlačítek pro zavření karet editoru (v případě nastavení off je zakáže). Pokud je zakázaná položka #workbench.editor.showTabs#, tato hodnota se ignoruje.",
+ "doubleClickTabToToggleEditorGroupSizes": "Určuje způsob změny velikosti skupiny editorů při poklikání na kartu. Tato hodnota je ignorována, pokud možnost {0} není nastavena na hodnotu {1}.",
+ "dragToOpenWindow": "Určuje, jestli je možné editory přetáhnout mimo okno a otevřít je v novém okně. Lze přepnout dynamicky stisknutím klávesy Alt a jejím podržením při přetahování.",
+ "editorActionsLocation": "Určuje, kde se zobrazují akce editoru.",
+ "editorOpenPositioning": "Určuje, kde se editory otevírají. Výběrem možnosti {0} nebo {1} otevřete editory nalevo nebo napravo od aktuálně aktivního editoru. Výběrem možnosti {2} nebo {3} otevřete editory nezávisle na aktuálně aktivním editoru.",
+ "enableDefaultVisibilityInOldWorkspace": "Povolí výchozí viditelnost sekundárního bočního panelu ve starších pracovních prostorech před zavedením podpory výchozí viditelnosti.",
"enableMenuBarMnemonics": "Určuje, jestli má být možné otevírat hlavní nabídky pomocí klávesových zkratek obsahujících klávesu Alt. Zakázání klávesových zkratek umožňuje místo toho tyto klávesové zkratky obsahující klávesu Alt svázat s příkazy editoru.",
- "enablePreview": "Určuje, jestli se mají otevřené editory zobrazovat jako editory v režimu náhledu Editory v režimu náhledu nezůstávají otevřené a používají se opakovaně, dokud se výslovně nenastaví tak, aby zůstaly otevřené (například poklikáním nebo úpravou). Název souborů v těchto editorech se zobrazuje kurzívou.",
- "enablePreviewFromCodeNavigation": "Určuje, jestli editory zůstanou v režimu náhledu, když se z nich spustí navigace kódu. Editory v režimu náhledu nezůstávají otevřené a používají se opakovaně, dokud se výslovně nenastaví tak, aby zůstaly otevřené (například poklikáním nebo úpravou). Pokud je položka #workbench.editor.enablePreview# zakázaná, tato hodnota se ignoruje.",
- "enablePreviewFromQuickOpen": "Určuje, jestli se editory otevřené z rychlého otevření budou zobrazovat jako editory v režimu náhledu. Editory v režimu náhledu nezůstávají otevřené a používají se opakovaně, dokud se výslovně nenastaví tak, aby zůstaly otevřené (například poklikáním nebo úpravou). Pokud je položka #workbench.editor.enablePreview# zakázaná, tato hodnota se ignoruje.",
- "exclude": "Nakonfigurujte [vzorce glob](https://code.visualstudio.com/docs/editor/codebasics#_advanced-search-options) pro vyloučení souborů z místní historie souboru. Změna tohoto nastavení nemá žádný vliv na existující položky místní historie souboru.",
- "focusRecentEditorAfterClose": "Určuje, jestli se mají karty zavírat v pořadí podle posledního použití nebo zleva doprava.",
+ "enableNaturalLanguageSearch": "Určuje, jestli paleta příkazů má obsahovat podobné příkazy. Musíte mít nainstalované rozšíření, které poskytuje podporu přirozeného jazyka.",
+ "enablePreview": "Určuje, jestli se při otevírání editorů používá režim náhledu. Na jednu skupinu editorů je maximálně jeden editor režimu náhledu. Tento editor zobrazí název souboru kurzívou na své kartě nebo popisku názvu a v zobrazení Otevřené editory. Jeho obsah bude nahrazen dalším editorem otevřeným v režimu náhledu. Při provedení změny v editoru v režimu náhledu se zachová, stejně jako při poklikání na jeho popisek nebo při použití možnosti Nechat otevřené v místní nabídce popisku. Otevření souboru z Průzkumníka poklikáním okamžitě zachová jeho editor.",
+ "enablePreviewFromCodeNavigation": "Určuje, jestli editory zůstanou v režimu náhledu, když se z nich spustí navigace kódu. Editory v režimu náhledu nezůstávají otevřené a používají se opakovaně, dokud se výslovně nenastaví tak, aby zůstaly otevřené (poklikáním nebo úpravou). Tato hodnota je ignorována, pokud možnost {0} není nastavena na hodnotu {1}.",
+ "enablePreviewFromQuickOpen": "Určuje, jestli se editory otevřené z rychlého otevření budou zobrazovat jako editory v režimu náhledu. Editory v režimu náhledu nezůstávají otevřené a používají se opakovaně, dokud se výslovně nenastaví tak, aby zůstaly otevřené (poklikáním nebo úpravou). Pokud je tato možnost povolená, podržte před výběrem klávesu Ctrl a otevřete editor bez režimu náhledu. Tato hodnota je ignorována, pokud možnost {0} není nastavena na hodnotu {1}.",
+ "exclude": "Nakonfigurujte cesty nebo [vzory glob](https://aka.ms/vscode-glob-patterns) pro vyloučení souborů z místní historie souborů. Vzory glob se vždy vyhodnocují relativně k cestě ke složce pracovního prostoru, pokud se ne jedná o absolutní cesty. Změna tohoto nastavení nemá žádný vliv na existující položky historie místních souborů.",
+ "focusRecentEditorAfterClose": "Určuje, jestli se mají editory zavírat v pořadí podle posledního použití nebo zleva doprava.",
+ "focusedView": "${focusedView}: název zobrazení, které má aktuálně fokus",
"folderName": "${folderName}: název složky pracovního prostoru, ve které je soubor obsažen (například myFolder)",
"folderPath": "${folderPath}: cesta ke složce pracovního prostoru, ve které je soubor obsažen (například /Users/Development/myFolder)",
"fontAliasing": "Určuje metodu vyhlazování písem na pracovní ploše.",
- "highlightModifiedTabs": "Určuje, jestli se na kartách pro editory, které mají neuložené změny, vykreslí horní ohraničení. Tato hodnota se ignoruje, když je zakázaná #workbench.editor.showTabs#.",
- "layoutControlEnabled": "Určuje, jestli jsou ovládací prvky rozložení ve vlastním záhlaví povolené přes {0}.",
- "layoutControlEnabledDeprecation": "Toto nastavení je zastaralé a místo toho {0}",
+ "highlightModifiedTabs": "Určuje, jestli se na kartách pro editory, které mají neuložené změny, vykreslí horní ohraničení. Tato hodnota je ignorována, pokud možnost {0} není nastavena na hodnotu {1}.",
+ "layoutControlEnabled": "Určuje, jestli se ovládací prvek rozložení zobrazí ve vlastním záhlaví. Toto nastavení má efekt pouze v případě, že vlastnost {0} není nastavena na hodnotu {1}.",
+ "layoutControlEnabledWeb": "Určuje, jestli je ovládací prvek rozložení zobrazený v záhlaví.",
"layoutControlType": "Určuje, jestli se ovládací prvek rozložení ve vlastním záhlaví zobrazí jako jedno tlačítko nabídky nebo s více přepínači uživatelského rozhraní.",
- "layoutControlTypeDeprecation": "Toto nastavení je zastaralé a místo toho {0}",
"layoutcontrol.type.both": "Zobrazuje rozevírací i přepínací tlačítka.",
"layoutcontrol.type.menu": "Zobrazí jedno tlačítko s rozevíracím seznamem možností rozložení.",
"layoutcontrol.type.toggles": "Zobrazí několik tlačítek pro přepínání viditelnosti panelů a postranního panelu.",
@@ -3766,44 +4796,60 @@
"menuBarVisibility.mac": "Určuje viditelnost řádku nabídek. Nastavení toggle znamená, že řádek nabídek je skrytý a zobrazí se spuštěním příkazu Nastavit fokus na nabídku aplikace. Nastavení compact přesune nabídku na boční panel.",
"mergeWindow": "Nakonfigurujte interval v sekundách, během něhož se poslední zadaná položka v místní historii souboru nahradí položkou, která se přidává. To pomáhá snížit celkový počet přidávaných položek, když je například povolené automatické ukládání. Toto nastavení se použije jen u položek, který mají totožný zdrojový původ. Změna tohoto nastavení nemá žádný vliv na existující položky místní historie souboru.",
"mouseBackForwardToNavigate": "Povolí použití čtvrtého a pátého tlačítka na myši pro příkazy Přejít zpět a přejít vpřed",
+ "navigationControlEnabled": "Určuje, jestli se ovládací prvek navigace zobrazí ve vlastním záhlaví. Toto nastavení má efekt pouze v případě, že vlastnost {0} není nastavena na hodnotu {1}.",
+ "navigationControlEnabledWeb": "Určuje, jestli je ovládací prvek navigace zobrazený v záhlaví.",
"navigationScope": "Určuje rozsah procházení v historii v editorech u příkazů, jako jsou Přejít zpět a Přejít vpřed",
"openDefaultKeybindings": "Určuje, jestli se při otevření nastavení klávesových zkratek otevře i editor zobrazující všechny výchozí klávesové zkratky.",
"openDefaultSettings": "Určuje, jestli se při otevření nastavení otevře i editor zobrazující všechna výchozí nastavení.",
"openFilesInNewWindow": "Určuje, jestli se mají soubory otevírat v novém okně při použití příkazového řádku nebo dialogového okna souboru.\r\nPoznámka: Přesto mohou existovat případy, kdy bude toto nastavení ignorováno (například při použití parametru příkazového řádku --new-window nebo --reuse-window).",
"openFilesInNewWindowMac": "Určuje, jestli se mají soubory otevírat v novém okně při použití příkazového řádku nebo dialogového okna souboru.\r\nPoznámka: Přesto mohou existovat případy, kdy bude toto nastavení ignorováno (například při použití parametru příkazového řádku --new-window nebo --reuse-window).",
"openFoldersInNewWindow": "Controls whether folders should open in a new window or replace the last active window.\r\nNote that there can still be cases where this setting is ignored (e.g. when using the `--new-window` or `--reuse-window` command line option).",
- "panelDefaultLocation": "Určuje výchozí umístění panelu (terminál, konzola ladění, výstup, problémy) v novém pracovním prostoru. Může se zobrazovat v dolní, pravé nebo levé části oblasti editoru.",
+ "panelDefaultLocation": "Určuje výchozí umístění panelu (terminál, konzole ladění, výstup, problémy) v novém pracovním prostoru. Může se zobrazovat v dolní, horní, pravé nebo levé části oblasti editoru.",
"panelOpensMaximized": "Určuje, jestli se panel otevře maximalizovaný. Možnosti jsou, že se bude otevírat buď vždy maximalizovaný, nebo se nebude maximalizovaný otevírat nikdy, nebo se otevře a nastaví tak, jak byl před zavřením.",
+ "panelShowLabels": "Určuje, jestli se položky aktivity v názvu panelu zobrazují jako popisek nebo ikona.",
"perEditorGroup": "Určuje, jestli má limit maximálního počtu otevřených editorů platit pro jednu skupinu editorů nebo pro všechny skupiny editorů.",
- "pinnedTabSizing": "Určuje velikost připnutých karet editorů. Připnuté karty jsou seřazené směrem k začátku všech otevřených karet a obvykle se nezavírají, dokud nedojde k jejich odepnutí. Když je zakázána položka #workbench.editor.showTabs#, tato hodnota se ignoruje.",
+ "pinnedTabSizing": "Určuje velikost připnutých karet editorů. Připnuté karty jsou seřazené na začátku všech otevřených karet a obvykle se nezavřou, dokud je neodepnete. Tato hodnota je ignorována, pokud možnost {0} není nastavena na hodnotu {1}.",
"preserveInput": "Určuje, jestli se při příštím otevření mají obnovit data naposledy zadaná do palety příkazů.",
+ "problems.visibility": "Určuje, jestli se v editoru a na pracovní ploše zobrazují problémy.",
+ "profileName": "${profileName}: název profilu, ve kterém je pracovní prostor otevřen (např. Data Science (Profile)). Ignorováno, pokud je použit výchozí profil.",
"remoteName": "${remoteName}: například SSH",
- "restoreViewState": "Obnoví poslední stav zobrazení editoru (např. pozici posouvání) při opětovném otevření editorů po jejich zavření. Stav zobrazení editoru je uložen pro každou skupinu editorů a zahozen, když se skupina zavře. Pomocí nastavení {0} použijte poslední známý stav zobrazení napříč všemi skupinami editorů v případě, že pro skupinu editorů nebyl nalezen žádný předchozí stav zobrazení.",
+ "restoreViewState": "Obnoví poslední stav zobrazení editoru (například pozici posouvání) při opětovném otevření editorů po jejich zavření. Stav zobrazení editoru je uložen pro každou skupinu editorů a zahozen, když se skupina zavře. Pomocí nastavení {0} použijte poslední známý stav zobrazení napříč všemi skupinami editorů v případě, že pro skupinu editorů nebyl nalezen žádný předchozí stav zobrazení.",
"revealIfOpen": "Určuje, jestli se editor při otevření objeví v některé z viditelných skupin. Pokud je zakázáno, bude se upřednostňovat otevření editoru v aktuálně aktivní skupině editorů. Pokud je povoleno, místo otevření se v aktuálně aktivní skupině editorů zobrazí již otevřený editor. Poznámka: V některých případech je toto nastavení ignorováno, například když je vynuceno otevření editoru v konkrétní skupině nebo vedle aktuálně aktivní skupiny editorů.",
- "rootName": "${rootName}: název otevřeného pracovního prostoru nebo složky (například myFolder nebo myWorkspace).",
+ "rootName": "${rootName}: název pracovního prostoru s volitelným vzdáleným názvem a indikátorem pracovního prostoru (např. myFolder, myRemoteFolder [SSH] nebo myWorkspace (pracovní prostor)).",
+ "rootNameShort": "${rootNameShort}: zkrácený název pracovního prostoru bez přípon (např. myFolder, myRemoteFolder nebo myWorkspace).",
"rootPath": "${rootPath}: cesta k souboru otevřeného pracovního prostoru nebo složky (například /Users/Development/myWorkspace).",
- "scrollToSwitchTabs": "Určuje, jestli se budou karty otevírat, když se přes ně posune zobrazení. Ve výchozím nastavení se karty při posunu zobrazení jen zobrazí, ale neotevřou. Stisknutím a podržením klávesy Shift během posouvání můžete toto chování po tuto dobu změnit. Když je zakázána položka #workbench.editor.showTabs#, tato hodnota se ignoruje.",
+ "scrollToSwitchTabs": "Určuje, jestli se budou karty otevírat, když se přes ně posune zobrazení. Ve výchozím nastavení se karty při posunu zobrazení jen zobrazí, ale neotevřou. Stisknutím a podržením klávesy Shift během posouvání můžete toto chování po tuto dobu změnit. Tato hodnota je ignorována, pokud možnost {0} není nastavena na hodnotu {1}.",
+ "secondarySideBarDefaultVisibility": "Určuje výchozí viditelnost sekundárního bočního panelu v pracovních prostorech nebo prázdných oknech, která jsou otevřena poprvé.",
+ "secondarySideBarShowLabels": "Určuje, jestli se položky aktivity v názvu sekundárního bočního panelu zobrazují jako popisek nebo jako ikona. Toto nastavení má efekt pouze v případě, že vlastnost {0} není nastavena na hodnotu {1}.",
"separator": "${separator}: podmíněný oddělovač (-), který se zobrazí pouze v případě uzavření do proměnných s hodnotami nebo statickým textem",
"settings.editor.desc": "Určuje, který editor nastavení se má použít jako výchozí.",
"settings.editor.json": "Použít editor souborů JSON",
"settings.editor.ui": "Použít editor nastavení uživatelského rozhraní",
- "sharedViewState": "Zachová nejnovější stav zobrazení editoru (např. poloha posunutí) ve všech skupinách editorů a obnoví tento stav, pokud pro skupinu editorů není nalezen žádný konkrétní stav zobrazení editoru.",
- "showEditorTabs": "Určuje, jestli se mají otevřené editory zobrazovat na kartách.",
+ "settings.showAISearchToggle": "Určuje, jestli se přepínač výsledků AI vyhledávání zobrazí na panelu hledání v Editoru nastavení po provedení vyhledávání a poté, co jsou k dispozici výsledky AI vyhledávání.",
+ "sharedViewState": "Zachová nejnovější stav zobrazení editoru (například pozici posouvání) ve všech skupinách editorů a tento stav obnoví, pokud se pro skupinu editorů nenajde žádný konkrétní stav zobrazení editoru.",
+ "showAskInChat": "Určuje, zda se ve spodní části palety příkazů zobrazuje možnost Zeptat se v chatu.",
+ "showEditorTabs": "Určuje, jestli se mají otevřené editory zobrazovat jako jednotlivé karty, jedna velká karta nebo jestli by se oblast nadpisu neměla zobrazovat.",
"showIcons": "Určuje, jestli se mají otevřené editory zobrazovat s ikonou nebo ne. Tato možnost vyžaduje, aby byl také povolen motiv ikon souboru.",
+ "showTabIndex": "Pokud je tato možnost povolená, zobrazí se index karty. Tato hodnota je ignorována, pokud možnost {0} není nastavena na hodnotu {1}.",
"sideBarLocation": "Určuje umístění primárního postranního panelu a panelu aktivity. Můžou se zobrazovat na levé nebo pravé straně pracovní plochy. Sekundární postranní panel se zobrazí na opačné straně pracovní plochy.",
- "sideBySideDirection": "Určuje výchozí směr pro editory, které se otevírají vedle sebe (například z Průzkumníka). Ve výchozím nastavení se editory otevírají napravo od aktuálně aktivního editoru. Pokud nastavení změníte na hodnotu down, editory se budou otevírat pod aktuálně aktivním editorem.",
+ "sideBySideDirection": "Určuje výchozí směr pro editory, které se otevírají vedle sebe (například z Průzkumníka). Ve výchozím nastavení se editory otevírají napravo od aktuálně aktivního editoru. Pokud nastavení změníte na hodnotu down, editory se budou otevírat pod aktuálně aktivním editorem. To má také vliv na akci rozdělení editoru na panelu nástrojů editoru.",
"splitInGroupLayout": "Určuje rozložení, když je editor rozdělený ve skupině editorů, zda bude svislé, nebo vodorovné.",
"splitOnDragAndDrop": "Určuje, jestli se můžou skupiny editorů rozdělit přetažením editoru nebo souboru na okraje oblasti editoru.",
"splitSizing": "Určuje velikost skupin editorů při jejich rozdělování.",
"statusBarVisibility": "Řídí viditelnost stavového řádku v dolní části pracovní plochy.",
+ "suggestCommands": "Určuje, jestli má paleta příkazů obsahovat seznam běžně používaných příkazů.",
+ "swipeToNavigate": "Mezi otevřenými soubory lze přecházet vodorovným potažením třemi prsty. Poznámka: Možnost Nastavení systému > Trackpad > Další gesta musí být nastavená na Přejeďte dvěma nebo třemi prsty.",
+ "tabActionLocation": "Určuje umístění tlačítek akcí karet editoru (zavření, odepnutí). Tato hodnota je ignorována, pokud možnost {0} není nastavena na hodnotu {1}.",
"tabDescription": "Určuje formát popisku pro editor.",
"tabScrollbarHeight": "Určuje výšku posuvníků používaných pro karty a popisy cest v oblasti názvu editoru.",
- "tabSizing": "Určuje velikost karet editorů. Když je zakázána položka #workbench.editor.showTabs#, tato hodnota se ignoruje.",
- "untitledHint": "Určuje, jestli se má v editoru zobrazovat pomocný text bez názvu.",
+ "tabSizing": "Určuje velikost karet editorů. Tato hodnota je ignorována, pokud možnost {0} není nastavena na hodnotu {1}.",
+ "tips.enabled": "Pokud je povoleno, zobrazí v případě, že není otevřený žádný editor, tipy ve vodoznacích.",
+ "titleScrollbarVisibility": "Určuje viditelnost posuvníků používaných pro karty a popisy cest v oblasti názvu editoru.",
"untitledLabelFormat": "Určuje formát popisku pro editor bez názvu.",
"useSplitJSON": "Určuje, jestli se má při úpravách nastavení ve formátu JSON používat rozdělený editor JSON.",
"viewVisibility": "Řídí viditelnost akcí v záhlaví zobrazení. Akce v záhlaví zobrazení jsou buď vždy viditelné, nebo viditelné, pouze když má zobrazení fokus nebo se na něj umístí ukazatel myši.",
- "window.commandCenter": "Zobrazí spouštěč příkazů společně s názvem okna. Toto nastavení má efekt pouze v případě, že je vlastnost {0} nastavena na hodnotu {1}.",
+ "window.commandCenter": "Zobrazí spouštěč příkazů společně s názvem okna. Toto nastavení má efekt pouze v případě, že vlastnost {0} není nastavena na hodnotu {1}.",
+ "window.commandCenterWeb": "Zobrazí spouštěč příkazů společně s názvem okna.",
"window.confirmBeforeClose.always": "Vždy požádat o potvrzení",
"window.confirmBeforeClose.always.web": "Umožňuje vždy se pokusit zeptat na potvrzení. Poznámka: Prohlížeče stále budou mít možnost zavřít kartu nebo okno bez potvrzení.",
"window.confirmBeforeClose.keyboardOnly": "Požádat o potvrzení jenom v případě, že byla použita klávesová zkratka.",
@@ -3811,7 +4857,8 @@
"window.confirmBeforeClose.never": "Nikdy výslovně nežádat o potvrzení.",
"window.confirmBeforeClose.never.web": "Nikdy explicitně nežádat o potvrzení, dokud nehrozí ztráta dat",
"window.menuBarVisibility.classic": "Nabídka se zobrazuje v horní části okna a skryje se pouze v režimu zobrazení na celé obrazovce.",
- "window.menuBarVisibility.compact": "Nabídka se zobrazí jako kompaktní tlačítko. Tato hodnota se bude ignorovat, pokud je položka {0} {1}.",
+ "window.menuBarVisibility.compact": "Nabídka se na postranním panelu zobrazí jako kompaktní tlačítko. Tato hodnota je ignorována, pokud {0} je {1} a {2} je buď {3} nebo {4}.",
+ "window.menuBarVisibility.compact.web": "Nabídka se na postranním panelu zobrazí jako kompaktní tlačítko.",
"window.menuBarVisibility.hidden": "Nabídka je vždy skrytá.",
"window.menuBarVisibility.toggle": "Nabídka se skryje, ale dá se zobrazit v horní části okna pomocí klávesy Alt.",
"window.menuBarVisibility.toggle.mac": "Nabídka se skryje, ale dá se zobrazit v horní části okna spuštěním příkazu Nastavit fokus na nabídku aplikace.",
@@ -3824,11 +4871,29 @@
"window.openFoldersInNewWindow.off": "Složky nahradí poslední aktivní okno.",
"window.openFoldersInNewWindow.on": "Složky se otevřou v novém okně.",
"window.titleSeparator": "Oddělovač používaný {0}.",
- "windowConfigurationTitle": "Okno",
- "windowTitle": "Určuje název okna na základě aktivního editoru. Proměnné se nahrazují na základě kontextu:",
- "workbench.activityBar.iconClickBehavior.focus": "Přepnout fokus na postranní panel, pokud se již zobrazuje položka, na kterou bylo kliknuto myší.",
- "workbench.activityBar.iconClickBehavior.toggle": "Skrýt postranní panel, pokud se již zobrazuje položka, na kterou bylo kliknuto",
+ "windowTitle": "Určuje název okna na základě aktuálního kontextu, například otevřeného pracovního prostoru nebo aktivního editoru. Proměnné jsou nahrazeny na základě kontextu:",
+ "workbench.activityBar.iconClickBehavior.focus": "Přepnout fokus na primární postranní panel, pokud se již zobrazuje položka, na kterou bylo kliknuto myší.",
+ "workbench.activityBar.iconClickBehavior.toggle": "Skrýt primární postranní panel, pokud se již zobrazuje položka, na kterou bylo kliknuto.",
+ "workbench.activityBar.location.bottom": "Umožňuje zobrazit panel aktivity v dolní části primárního a sekundárního postranního panelu.",
+ "workbench.activityBar.location.default": "Umožňuje zobrazit panel aktivity na straně primárního postranního panelu a nad sekundárním postranním panelem.",
+ "workbench.activityBar.location.hide": "Skryje panel aktivity v primárním a sekundárním postranním panelu.",
+ "workbench.activityBar.location.top": "Umožňuje zobrazit panel aktivity nad primárními a sekundárními postranními panely.",
+ "workbench.editor.doubleClickTabToToggleEditorGroupSizes.expand": "Skupina editorů zabírá co nejvíce místa tím, že všechny ostatní skupiny editorů jsou co možná nejmenší.",
+ "workbench.editor.doubleClickTabToToggleEditorGroupSizes.maximize": "Všechny ostatní skupiny editorů jsou skryté a aktuální skupina editorů je maximalizována tak, aby zabírala celou oblast editoru.",
+ "workbench.editor.doubleClickTabToToggleEditorGroupSizes.off": "Při poklikání na kartu se nezmění velikost žádné skupiny editorů.",
+ "workbench.editor.editorActionsLocation.default": "Umožňuje zobrazit akce editoru v záhlaví okna, když je možnost {0} nastavená na {1}. Jinak se akce editoru zobrazí na panelu karet editoru.",
+ "workbench.editor.editorActionsLocation.hidden": "Akce editoru se nezobrazují.",
+ "workbench.editor.editorActionsLocation.titleBar": "Umožňuje zobrazit akce editoru v záhlaví okna. Pokud je možnost {0} nastavená na hodnotu {1}, akce editoru jsou skryté.",
+ "workbench.editor.empty.hint": "Určuje, jestli se má v editoru zobrazovat prázdný pomocný text editoru.",
"workbench.editor.historyBasedLanguageDetection": "Umožňuje použití historie editoru při detekci jazyka. To způsobí, že automatická detekce jazyka upřednostní jazyky, které byly otevřeny nedávno, a umožní automatické detekci jazyka pracovat s menšími vstupy.",
+ "workbench.editor.label.dirname": "${dirname}: název složky, ve které se soubor nachází (např. WORKSPACE_FOLDER/folder/file.txt -> folder).",
+ "workbench.editor.label.enabled": "Určuje, jestli se mají použít vlastní popisky editoru pracovní plochy.",
+ "workbench.editor.label.extname": "${extname}: přípona souboru (například WORKSPACE_FOLDER/folder/file.txt -> txt)",
+ "workbench.editor.label.filename": "${filename}: název souboru bez přípony souboru (např. WORKSPACE_FOLDER/folder/file.txt -> file).",
+ "workbench.editor.label.nthdirname": "${dirname(N)}: Název n-té nadřazené složky, ve které je soubor umístěn (například N=2: WORKSPACE_FOLDER/static/folder/file.txt -> WORKSPACE_FOLDER). Složky lze vybírat od začátku cesty pomocí záporných čísel (například N=-1: WORKSPACE_FOLDER/folder/file.txt -> WORKSPACE_FOLDER). Pokud je __Item__ absolutní cesta vzoru, první složka (N=-1) se vztahuje k první složce v absolutní cestě, jinak odpovídá složce pracovního prostoru.",
+ "workbench.editor.label.nthextname": "${extname(N)}: N-tá přípona souboru oddělená tečkou (.), například N=2: WORKSPACE_FOLDER/folder/file.ext1.ext2.ext3 -> ext1. Přípona se dá vybrat ze začátku přípony pomocí záporných čísel, například N=-1: WORKSPACE_FOLDER/folder/file.ext1.ext2.ext3 -> ext2.",
+ "workbench.editor.label.patterns": "Řídí vykreslování popisku editoru. Každá položka __Item__ je vzor, který odpovídá cestě k souboru. Podporují se relativní i absolutní cesty k souborům. Relativní cesta musí obsahovat WORKSPACE_FOLDER (např. WORKSPACE_FOLDER/src/**.tsx nebo */src/**.tsx). Absolutní vzory musí začínat lomítkem (/). V případě, že odpovídá více vzorů, vybere se nejdelší odpovídající cesta. Každá hodnota __Value__ je šablona pro vykreslený editor, pokud odpovídá položka __Item__. Proměnné jsou nahrazeny na základě kontextu:",
+ "workbench.editor.label.template": "Šablona, která by se měla vykreslit v případě shody se vzorem. Může obsahovat proměnné ${dirname}, ${filename} a ${extname}.",
"workbench.editor.labelFormat.default": "Umožňuje zobrazit název souboru. Pokud jsou povoleny karty a ve stejné skupině jsou dva soubory se stejným názvem, přidají se odlišující části cesty každého z těchto souborů. Pokud jsou karty zakázány, zobrazí se v případě, že je editor aktivní, cesta relativně ke složce pracovního prostoru.",
"workbench.editor.labelFormat.long": "Umožňuje zobrazit název souboru, za kterým následuje jeho absolutní cesta.",
"workbench.editor.labelFormat.medium": "Umožňuje zobrazit název souboru, za kterým bude následovat cesta k němu, a to relativně vzhledem ke složce pracovního prostoru.",
@@ -3840,18 +4905,37 @@
"workbench.editor.pinnedTabSizing.compact": "Připnutá karta se zobrazí v kompaktní podobě jen s ikonou nebo prvním písmenem názvu editoru.",
"workbench.editor.pinnedTabSizing.normal": "Připnutá karta zdědí vzhled nepřipnutých karet.",
"workbench.editor.pinnedTabSizing.shrink": "Připnutá karta se zmenší na kompaktní pevnou velikost s částmi názvu editoru.",
+ "workbench.editor.pinnedTabsOnSeparateRow": "Pokud je tato možnost povolená, zobrazí se připnuté karty na samostatném řádku nad všemi ostatními kartami. Tato hodnota je ignorována, pokud možnost {0} není nastavena na hodnotu {1}.",
"workbench.editor.preferBasedLanguageDetection": "Pokud je tato možnost povolená, model rozpoznávání jazyka, který bere v úvahu historii editoru účtů, bude mít vyšší prioritu.",
- "workbench.editor.showLanguageDetectionHints": "Pokud je možnost povolena, zobrazí rychlou opravu stavového řádku, pokud jazyk editoru neodpovídá rozpoznanému jazyku obsahu.",
+ "workbench.editor.preventPinnedEditorClose": "Určuje, jestli se mají připnuté editory zavřít, když se pro zavírání používá klávesnice nebo kliknutí prostředním tlačítkem myši.",
+ "workbench.editor.preventPinnedEditorClose.always": "Při kliknutí prostředním tlačítkem myši nebo použití klávesnice vždy zabránit zavření připnutého editoru",
+ "workbench.editor.preventPinnedEditorClose.never": "Nikdy nebránit zavření připnutého editoru",
+ "workbench.editor.preventPinnedEditorClose.onlyKeyboard": "Zabránit zavření připnutého editoru při používání klávesnice.",
+ "workbench.editor.preventPinnedEditorClose.onlyMouse": "Při kliknutí prostředním tlačítkem myši zabránit zavření připnutého editoru",
+ "workbench.editor.showLanguageDetectionHints": "Pokud je tato možnost povolená, zobrazí stavový řádek Rychlá oprava, když jazyk editoru neodpovídá zjištěnému jazyku obsahu.",
"workbench.editor.showLanguageDetectionHints.editors": "Zobrazit v editorech textu bez názvů",
"workbench.editor.showLanguageDetectionHints.notebook": "Zobrazit v editorech poznámkových bloků",
+ "workbench.editor.showTabs.multiple": "Každý editor se zobrazuje jako karta v oblasti záhlaví editoru.",
+ "workbench.editor.showTabs.none": "Oblast záhlaví editoru se nezobrazuje.",
+ "workbench.editor.showTabs.single": "Aktivní editor se zobrazuje jako jedna velká karta v oblasti záhlaví editoru.",
"workbench.editor.splitInGroupLayoutHorizontal": "Editory jsou umístěné zleva doprava.",
"workbench.editor.splitInGroupLayoutVertical": "Editory jsou umístěné shora dolů.",
+ "workbench.editor.splitSizingAuto": "Rozdělí aktivní skupinu editorů na stejné části, pokud nejsou všechny skupiny editorů už ve stejných částech. V takovém případě rozdělí všechny skupiny editorů na stejné části.",
"workbench.editor.splitSizingDistribute": "Rozdělí všechny skupiny editorů na stejné části.",
"workbench.editor.splitSizingSplit": "Rozdělí aktivní skupinu editorů na stejné části.",
+ "workbench.editor.tabActionCloseVisibility": "Určuje viditelnost tlačítka akce pro zavření karty.",
+ "workbench.editor.tabActionUnpinVisibility": "Určuje viditelnost tlačítka akce pro odepnutí karty.",
+ "workbench.editor.tabHeight": "Určuje výšku karet editoru. Platí také pro ovládací panel nadpisu, pokud možnost {0} není nastavena na hodnotu {1}.",
"workbench.editor.tabSizing.fit": "Vždy udržovat karty dostatečně velké, aby se zobrazil celý popisek editoru",
+ "workbench.editor.tabSizing.fixed": "Nastaví všechny karty na stejnou velikost a zároveň je umožní zmenšit, když dostupné místo nestačí k zobrazení všech karet najednou.",
"workbench.editor.tabSizing.shrink": "Povolit zmenšení karet, pokud není k dispozici dostatek místa k zobrazení všech karet najednou",
+ "workbench.editor.tabSizingFixedMaxWidth": "Určuje maximální šířku karet, když je velikost {0} nastavena na {1}.",
+ "workbench.editor.tabSizingFixedMinWidth": "Určuje minimální šířku karet, když je velikost {0} nastavena na {1}.",
"workbench.editor.titleScrollbarSizing.default": "Výchozí velikost",
"workbench.editor.titleScrollbarSizing.large": "Zvětší velikost, což usnadňuje uchopení myší",
+ "workbench.editor.titleScrollbarVisibility.auto": "Vodorovný posuvník bude viditelný pouze v případě potřeby.",
+ "workbench.editor.titleScrollbarVisibility.hidden": "Vodorovný posuvník bude vždy skrytý.",
+ "workbench.editor.titleScrollbarVisibility.visible": "Vodorovný posuvník bude vždy viditelný.",
"workbench.editor.untitled.labelFormat.content": "Název souboru bez názvu je odvozen z obsahu jeho prvního řádku, pokud k němu není přidružena cesta k souboru. Tento název bude použit jako náhradní v případě, že je řádek prázdný nebo obsahuje neslovné znaky.",
"workbench.editor.untitled.labelFormat.name": "Název souboru bez názvu není odvozen z obsahu souboru.",
"workbench.fontAliasing.antialiased": "Vyhlazovat písmo na úrovni pixelů, ne na úrovni subpixelů. Může to písmo celkově zesvětlit.",
@@ -3860,39 +4944,54 @@
"workbench.fontAliasing.none": "Zakáže vyhlazování písem. Zobrazený text bude mít kostrbaté hrany.",
"workbench.hover.delay": "Určuje zpoždění v milisekundách, po kterém se při najetí myší zobrazí položky pracovní plochy (např. některé položky stromového zobrazení poskytnuté rozšířením). Položky, které jsou už viditelné, může být zapotřebí aktualizovat, aby se tato změna nastavení projevila.",
"workbench.panel.opensMaximized.always": "Při otevírání vždy maximalizovat panel",
- "workbench.panel.opensMaximized.never": "Při otevírání nikdy nemaximalizovat panel. Panel se otevře bez maximalizace.",
+ "workbench.panel.opensMaximized.never": "Při otevírání nikdy nemaximalizovat panel.",
"workbench.panel.opensMaximized.preserve": "Otevřít panel nastavený tak, jak byl před zavřením",
+ "workbench.panel.output": "Zobrazení výstupu",
"workbench.quickOpen.preserveInput": "Určuje, jestli se při příštím otevření mají obnovit data naposledy zadaná do okna rychlého otevření.",
"workbench.reduceMotion": "Určuje, jestli se má pracovní plocha vykreslit s menším počtem animací.",
"workbench.reduceMotion.auto": "Vykreslování s omezeným pohybem na základě konfigurace operačního systému.",
"workbench.reduceMotion.off": "Nevykreslovat s omezeným pohybem",
"workbench.reduceMotion.on": "Vždy vykreslovat s omezeným pohybem.",
- "wrapTabs": "Určuje, zda mají být karty při překročení dostupného místa zalomeny na více řádků, nebo zda se má zobrazit posuvník. Když je zakázaná položka #workbench.editor.showTabs#, tato hodnota se ignoruje.",
+ "workbench.secondarySideBar.defaultVisibility.hidden": "Sekundární boční panel je ve výchozím nastavení skrytý.",
+ "workbench.secondarySideBar.defaultVisibility.maximized": "Sekundární postranní panel je ve výchozím nastavení viditelný a maximalizovaný.",
+ "workbench.secondarySideBar.defaultVisibility.maximizedInWorkspace": "Sekundární postranní panel je ve výchozím nastavení viditelný a maximalizovaný, pokud je otevřený pracovní prostor.",
+ "workbench.secondarySideBar.defaultVisibility.visible": "Sekundární boční panel je ve výchozím nastavení viditelný.",
+ "workbench.secondarySideBar.defaultVisibility.visibleInWorkspace": "Sekundární boční panel je ve výchozím nastavení viditelný, pokud je otevřen pracovní prostor.",
+ "workbench.view.showQuietly": "Pokud rozšíření žádá o zobrazení skrytého zobrazení, zobrazí místo toho ukazatel stavového řádku, na který lze kliknout.",
+ "wrapTabs": "Určuje, jestli mají být karty při překročení dostupného místa zalomeny na více řádků nebo jestli se má zobrazit posuvník. Tato hodnota je ignorována, pokud možnost {0} není nastavena na hodnotu {1}.",
"zenMode.centerLayout": "Určuje, jestli se při zapnutí režimu Zen také zarovná rozložení na střed.",
"zenMode.fullScreen": "Určuje, jestli se při zapnutí režimu Zen také přepne pracovní plocha do režimu zobrazení na celou obrazovku.",
"zenMode.hideActivityBar": "Určuje, jestli se při zapnutí režimu Zen také skryje panel aktivity na levé nebo pravé straně pracovní plochy.",
"zenMode.hideLineNumbers": "Určuje, jestli se při zapnutí režimu Zen také skryjí čísla řádků v editoru.",
"zenMode.hideStatusBar": "Určuje, jestli se při zapnutí režimu Zen také skryje stavový řádek v dolní části pracovní plochy.",
- "zenMode.hideTabs": "Určuje, jestli se při zapnutí režimu Zen také skryjí karty pracovní plochy.",
"zenMode.restore": "Určuje, jestli se má okno obnovit v režimu Zen, pokud bylo zavřeno v režimu Zen.",
+ "zenMode.showTabs": "Určuje, jestli se má při zapnutí režimu Zen zobrazit více karet editoru, jedna karta editoru nebo jestli se má oblast záhlaví editoru úplně skrýt.",
+ "zenMode.showTabs.multiple": "Každý editor se zobrazuje jako karta v oblasti záhlaví editoru.",
+ "zenMode.showTabs.none": "Oblast záhlaví editoru se nezobrazuje.",
+ "zenMode.showTabs.single": "Aktivní editor se zobrazuje jako jedna velká karta v oblasti záhlaví editoru.",
"zenMode.silentNotifications": "Určuje, jestli se má v režimu Zen povolit režim Nerušit. Pokud se nastaví na true, budou se zobrazovat jenom oznámení o chybách.",
"zenModeConfigurationTitle": "Režim Zen"
},
- "vs/workbench/common/actions": {
- "developer": "Vývojář",
- "help": "Nápověda",
- "preferences": "Předvolby",
- "test": "Test",
- "view": "Zobrazit"
- },
"vs/workbench/common/configuration": {
+ "active window": "Aktivní okno",
+ "applicationConfigurationTitle": "Aplikace",
+ "newWindowProfile": "Určuje profil, který se má použít při otevírání nového okna. Pokud je zadaný název profilu, použije nové okno tento profil. Pokud není zadaný žádný název profilu, použije nové okno profil aktivního okna nebo výchozí profil, pokud žádné aktivní okno neexistuje.",
+ "problemsConfigurationTitle": "Problémy",
+ "security.allowedUNCHosts": "Sada názvů hostitelů UNC (bez počátečního nebo koncového zpětného lomítka, například 192.168.0.1 nebo my-server), která se povoluje bez potvrzení uživatele. Pokud se přistupuje k hostiteli UNC, který není prostřednictvím tohoto nastavení povolený nebo nebyl potvrzen potvrzením uživatele, dojde k chybě a operace se zastaví. Při změně tohoto nastavení se vyžaduje restartování. Další informace o tomto nastavení najdete v https://aka.ms/vscode-windows-unc.",
+ "security.allowedUNCHosts.patternErrorMessage": "Názvy hostitelů UNC nesmí obsahovat zpětná lomítka.",
+ "security.restrictUNCAccess": "Pokud je tato možnost povolená, povolí se přístup jenom k názvům hostitelů UNC, které jsou povolené nastavením #security.allowedUNCHosts# nebo po potvrzení uživatele. Další informace o tomto nastavení najdete v https://aka.ms/vscode-windows-unc.",
+ "securityConfigurationTitle": "Zabezpečení",
+ "windowConfigurationTitle": "Okno",
"workbenchConfigurationTitle": "Pracovní plocha"
},
"vs/workbench/common/contextkeys": {
+ "SelectedEditorsInGroupFileOrUntitledResourceContextKey": "Určuje, jestli je ke všem vybraným editorům ve skupině přiřazen soubor nebo prostředek bez názvu.",
"activeAuxiliary": "Identifikátor aktivního pomocného panelu",
+ "activeCompareEditorCanSwap": "Určuje, jestli lze v aktivním editoru porovnání prohodit strany.",
"activeEditor": "Identifikátor aktivního editoru",
"activeEditorAvailableEditorIds": "Dostupné identifikátory editoru, které se dají použít pro aktivní editor",
"activeEditorCanRevert": "Určuje, jestli se aktivní editor může vrátit zpět.",
+ "activeEditorCanToggleReadonly": "Určuje, jestli aktivní editor může přepínat mezi čtením nebo zápisem.",
"activeEditorGroupEmpty": "Určuje, jestli je aktivní skupina editorů prázdná.",
"activeEditorGroupIndex": "Index aktivní skupiny editorů",
"activeEditorGroupLast": "Určuje, jestli je aktivní skupina editorů poslední skupina.",
@@ -3906,19 +5005,29 @@
"activePanel": "Identifikátor aktivního panelu",
"activeViewlet": "Identifikátor aktivního viewletu",
"auxiliaryBarFocus": "Určuje, jestli má pomocný panel fokus klávesnice",
+ "auxiliaryBarMaximized": "Zda je pomocný panel maximalizován",
"auxiliaryBarVisible": "Určuje, zda je pomocný panel viditelný",
"bannerFocused": "Určuje, jestli má banner fokus klávesnice.",
"dirtyWorkingCopies": "Určuje, jestli existují nějaké pracovní kopie s neuloženými změnami.",
- "editorAreaVisible": "Určuje, jestli je oblast editoru viditelná.",
"editorIsOpen": "Určuje, jestli je editor otevřený.",
+ "editorPartEditorGroupMaximized": "Část Editor má maximalizovanou skupinu.",
+ "editorPartMultipleEditorGroups": "Určuje, jestli je v části Editor otevřeno více skupin editorů.",
"editorTabsVisible": "Určuje, jestli jsou karty editoru viditelné.",
+ "embedderIdentifier": "Identifikátor vloženého modulu podle produktové služby, pokud je definovaný",
"focusedView": "Identifikátor zobrazení, které má fokus klávesnice",
"groupEditorsCount": "Počet otevřených skupin editorů",
+ "inAutomation": "Určuje, jestli VS Code běží v rámci automatizace / orientačního testu.",
"inZenMode": "Určuje, jestli je povolený režim Zen.",
- "isCenteredLayout": "Určuje, jestli je povolené rozložení na střed.",
+ "isAuxiliaryWindow": "Okno je pomocné okno.",
+ "isAuxiliaryWindowFocusedContext": "Určuje, jestli má pomocné okno fokus.",
+ "isCompactTitleBar": "Záhlaví je v kompaktním režimu.",
"isFileSystemResource": "Určuje, jestli prostředek používá poskytovatele systému souborů.",
- "isFullscreen": "Určuje, jestli je okno v režimu na celou obrazovku.",
+ "isFullscreen": "Určuje, jestli je hlavní okno v celoobrazovkovém režimu.",
+ "isMainEditorCenteredLayout": "Určuje, jestli je pro hlavní editor povolené rozložení zarovnané na střed.",
+ "isWindowAlwaysOnTop": "Určuje, jestli je okno vždy navrchu.",
+ "mainEditorAreaVisible": "Určuje, jestli je viditelná oblast editoru v hlavním okně.",
"multipleEditorGroups": "Určuje, jestli je otevřená více než jedna skupina editorů.",
+ "multipleEditorsSelectedInGroup": "Určuje, jestli se ve skupině editorů vybralo více editorů.",
"notificationCenterVisible": "Určuje, jestli je centrum oznámení viditelné.",
"notificationFocus": "Určuje, jestli má oznámení fokus klávesnice.",
"notificationToastsVisible": "Určuje, jestli je viditelná informační zpráva oznámení.",
@@ -3941,14 +5050,20 @@
"sideBySideEditorActive": "Určuje, jestli je aktivní editor v režimu zobrazení vedle sebe",
"splitEditorsVertically": "Určuje, jestli jsou editory svisle rozdělené.",
"statusBarFocused": "Určuje, jestli má stavový řádek fokus klávesnice.",
+ "temporaryWorkspace": "Schéma aktuálního pracovního prostoru pochází ze systému dočasných souborů.",
"textCompareEditorActive": "Určuje, jestli je editor porovnávání textu aktivní.",
"textCompareEditorVisible": "Určuje, jestli je editor porovnávání textu viditelný.",
- "virtualWorkspace": "Schéma aktuálního pracovního prostoru, pokud pochází z virtuálního systému souborů nebo z prázdného řetězce.",
+ "titleBarStyle": "Styl záhlaví okna",
+ "titleBarVisible": "Určuje, jestli je viditelné záhlaví.",
+ "twoEditorsSelectedInGroup": "Určuje, jestli byly ve skupině editorů vybrány přesně dva editory.",
+ "virtualWorkspace": "Schéma aktuálního pracovního prostoru pochází z virtuálního systému souborů nebo prázdného řetězce.",
"workbenchState": "Druh pracovního prostoru otevřeného v okně je buď prázdný (bez pracovního prostoru), složka (jedna složka), nebo pracovní prostor (pracovní prostor s více kořeny).",
"workspaceFolderCount": "Počet kořenových složek v pracovním prostoru"
},
"vs/workbench/common/editor": {
"builtinProviderDisplayName": "Integrovaný",
+ "configureEditorLargeFileConfirmation": "Konfigurovat limit",
+ "openLargeFile": "Přesto otevřít",
"promptOpenWith.defaultEditor.displayName": "Textový editor"
},
"vs/workbench/common/editor/diffEditorInput": {
@@ -3971,9 +5086,23 @@
"activityBarDragAndDropBorder": "Barva zpětné vazby při přetahování myší pro položky na panelu aktivity. Panel aktivity se zobrazuje úplně vlevo nebo úplně vpravo a umožňuje přepínat mezi zobrazeními postranního panelu.",
"activityBarForeground": "Barva popředí položky panelu aktivity, když je aktivní. Panel aktivity se zobrazuje úplně vlevo nebo úplně vpravo a umožňuje přepínat mezi zobrazeními postranního panelu.",
"activityBarInActiveForeground": "Barva popředí položky panelu aktivity, když je neaktivní. Panel aktivity se zobrazuje úplně vlevo nebo úplně vpravo a umožňuje přepínat mezi zobrazeními postranního panelu.",
+ "activityBarTop": "Barva aktivního popředí položky na panelu Aktivita, když je nahoře/dole. Aktivita umožňuje přepínat mezi zobrazeními postranního panelu.",
+ "activityBarTopActiveBackground": "Barva pozadí pro aktivní položku na panelu aktivity, když je nahoře / dole Aktivita umožňuje přepínat mezi zobrazeními postranního panelu.",
+ "activityBarTopActiveFocusBorder": "Barva ohraničení fokusu pro aktivní položku na panelu Aktivita, když je nahoře/dole. Aktivita umožňuje přepínat mezi zobrazeními postranního panelu.",
+ "activityBarTopBackground": "Barva pozadí panelu aktivity, pokud je nastaven do horní nebo dolní části",
+ "activityBarTopDragAndDropBorder": "Barva zpětné vazby při přetahování myší pro položky na panelu Aktivita, pokud je nahoře/dole. Aktivita umožňuje přepínat mezi zobrazeními postranního panelu.",
+ "activityBarTopInActiveForeground": "Barva neaktivního popředí položky na panelu Aktivita, když je nahoře/dole. Aktivita umožňuje přepínat mezi zobrazeními postranního panelu.",
"banner.background": "Barva pozadí banneru. Banner je zobrazen pod záhlavím okna.",
"banner.foreground": "Barva popředí banneru. Banner je zobrazen pod záhlavím okna.",
"banner.iconForeground": "Barva ikony banneru. Banner je zobrazen pod záhlavím okna.",
+ "commandCenter-activeBackground": "Aktivní barva pozadí centra příkazů",
+ "commandCenter-activeBorder": "Barva aktivního ohraničení centra příkazů",
+ "commandCenter-activeForeground": "Aktivní barva popředí centra příkazů",
+ "commandCenter-background": "Barva pozadí centra příkazů",
+ "commandCenter-border": "Barva ohraničení centra příkazů",
+ "commandCenter-foreground": "Barva popředí centra příkazů",
+ "commandCenter-inactiveBorder": "Barva ohraničení centra příkazů, když je okno neaktivní",
+ "commandCenter-inactiveForeground": "Barva popředí centra příkazů, když je okno neaktivní",
"editorDragAndDropBackground": "Barva pozadí při přetahování editorů. Barva by měla být průhledná, aby byl obsah editoru stále viditelný.",
"editorDropIntoPromptBackground": "Barva pozadí textu zobrazovaného v editorech při přetahování souborů. Tento text informuje uživatele, že může podržet klávesu Shift a přetáhnout soubor do editoru.",
"editorDropIntoPromptBorder": "Barva rámečku textu zobrazovaného v editorech při přetahování souborů. Tento text informuje uživatele, že může podržet klávesu Shift a přetáhnout soubor do editoru.",
@@ -3981,7 +5110,7 @@
"editorGroupBorder": "Barva pro oddělení jednotlivých skupin editorů. Skupiny editorů jsou kontejnery editorů.",
"editorGroupEmptyBackground": "Barva pozadí prázdné skupiny editorů. Skupiny editorů jsou kontejnery editorů.",
"editorGroupFocusedEmptyBorder": "Barva ohraničení prázdné skupiny editorů, která má fokus. Skupiny editorů jsou kontejnery editorů.",
- "editorGroupHeaderBackground": "Barva pozadí záhlaví názvu skupiny editorů, když jsou zakázány karty (workbench.editor.showTabs\": false). Skupiny editorů jsou kontejnery editorů.",
+ "editorGroupHeaderBackground": "Barva pozadí záhlaví názvu skupiny editoru, když (`\"workbench.editor.showTabs\": \"single\"`). Skupiny editorů jsou kontejnery editorů.",
"editorPaneBackground": "Barva pozadí podokna editoru viditelného nalevo a napravo od středového rozložení editoru",
"editorTitleContainerBorder": "Barva ohraničení záhlaví názvu skupiny editorů. Skupiny editorů jsou kontejnery editorů.",
"extensionBadge.remoteBackground": "Barva pozadí odznáčku vzdálených rozšíření v zobrazení rozšíření",
@@ -4001,6 +5130,8 @@
"notificationsInfoIconForeground": "Barva použitá pro ikonu informačních oznámení. Oznámení se vysouvají z pravého dolního rohu okna.",
"notificationsLink": "Barva popředí odkazů v oznámeních. Oznámení se vysouvají z pravého dolního rohu okna.",
"notificationsWarningIconForeground": "Barva použitá pro ikonu oznámení s upozorněním. Oznámení se vysouvají z pravého dolního rohu okna.",
+ "outputViewBackground": "Barva pozadí zobrazení výstupu",
+ "outputViewStickyScrollBackground": "Barva pozadí pevného posouvání v zobrazení výstupu.",
"panelActiveTitleBorder": "Barva ohraničení názvu aktivního panelu. Panely se zobrazují pod oblastí editorů a obsahují zobrazení, jako je výstup a integrovaný terminál.",
"panelActiveTitleForeground": "Barva názvu pro aktivní panel. Panely se zobrazují pod oblastí editorů a obsahují zobrazení, jako je výstup a integrovaný terminál.",
"panelBackground": "Barva pozadí panelu. Panely se zobrazují pod oblastí editorů a obsahují zobrazení, jako je výstup a integrovaný terminál.",
@@ -4013,6 +5144,15 @@
"panelSectionHeaderBackground": "Barva pozadí záhlaví oddílu panelu. Panely se zobrazují pod oblastí editorů a obsahují zobrazení, jako je výstup a integrovaný terminál. Části panelu jsou zobrazení, která jsou do panelů vnořená.",
"panelSectionHeaderBorder": "Barva ohraničení záhlaví oddílu panelu použitá, když je na panelu na sebe svisle naskládáno více zobrazení. Panely se zobrazují pod oblastí editorů a obsahují zobrazení, jako je výstup a integrovaný terminál. Části panelu jsou zobrazení, která jsou do panelů vnořená.",
"panelSectionHeaderForeground": "Barva popředí záhlaví oddílu panelu. Panely se zobrazují pod oblastí editorů a obsahují zobrazení, jako je výstup a integrovaný terminál. Části panelu jsou zobrazení, která jsou do panelů vnořená.",
+ "panelStickyScrollBackground": "Barva pozadí pevného posouvání na panelu.",
+ "panelStickyScrollBorder": "Barva pozadí pevného posouvání na panelu.",
+ "panelStickyScrollShadow": "Barva stínu pevného posouvání na panelu.",
+ "panelTitleBadgeBackground": "Barva pozadí odznáčku názvu panelu. Panely se zobrazují pod oblastí editorů a obsahují zobrazení, jako je výstup a integrovaný terminál.",
+ "panelTitleBadgeForeground": "Barva popředí odznáčku názvu panelu. Panely se zobrazují pod oblastí editorů a obsahují zobrazení, jako je výstup a integrovaný terminál.",
+ "panelTitleBorder": "Barva ohraničení názvu panelu v dolní části oddělující název od zobrazení. Panely se zobrazují pod oblastí editorů a obsahují zobrazení, jako je výstup a integrovaný terminál.",
+ "profileBadgeBackground": "Barva pozadí odznáčku profilu. Odznáček profilu se zobrazuje na ikoně ozubeného kolečka nastavení na panelu aktivit.",
+ "profileBadgeForeground": "Barva popředí odznáčku profilu. Odznáček profilu se zobrazuje na ikoně ozubeného kolečka nastavení na panelu aktivit.",
+ "sideBarActivityBarTopBorder": "Barva ohraničení mezi panelem aktivity v horní nebo dolní části a zobrazeními",
"sideBarBackground": "Barva pozadí postranního panelu. Postranní panel je kontejner pro zobrazení, jako je průzkumník a vyhledávání.",
"sideBarBorder": "Barva ohraničení postranního panelu na straně oddělující tento panel od editoru. Postranní panel je kontejner pro zobrazení, jako je průzkumník a vyhledávání.",
"sideBarDragAndDropBackground": "Barva zpětné vazby při přetahování myší pro oddíly postranního panelu. Barva by měla být průhledná, aby byly oddíly postranního panelu stále viditelné. Postranní panel je kontejner pro zobrazení, jako je průzkumník a vyhledávání. Části postranního panelu jsou zobrazení, která jsou do postranního panelu vnořená.",
@@ -4020,6 +5160,11 @@
"sideBarSectionHeaderBackground": "Barva pozadí záhlaví oddílu postranního panelu. Postranní panel je kontejner pro zobrazení, jako jsou průzkumník a vyhledávání. Části postranního panelu jsou zobrazení, která jsou do postranního panelu vnořená.",
"sideBarSectionHeaderBorder": "Barva ohraničení záhlaví oddílu postranního panelu. Postranní panel je kontejner pro zobrazení, jako jsou průzkumník a vyhledávání. Části postranního panelu jsou zobrazení, která jsou do postranního panelu vnořená.",
"sideBarSectionHeaderForeground": "Barva popředí záhlaví oddílu postranního panelu. Postranní panel je kontejner pro zobrazení, jako jsou průzkumník a vyhledávání. Části postranního panelu jsou zobrazení, která jsou do postranního panelu vnořená.",
+ "sideBarStickyScrollBackground": "Barva pozadí pevného posouvání na postranním panelu.",
+ "sideBarStickyScrollBorder": "Barva pozadí pevného posouvání na bočním panelu.",
+ "sideBarStickyScrollShadow": "Barva stínu pevného posouvání na bočním panelu.",
+ "sideBarTitleBackground": "Barva pozadí nadpisu postranního panelu. Postranní panel je kontejner pro zobrazení, jako je průzkumník a vyhledávání.",
+ "sideBarTitleBorder": "Barva ohraničení názvu postranního panelu v dolní části oddělující název od zobrazení. Postranní panel je kontejner pro zobrazení, jako je průzkumník a vyhledávání.",
"sideBarTitleForeground": "Barva popředí názvu postranního panelu. Postranní panel je kontejner pro zobrazení, jako je průzkumník a vyhledávání.",
"sideBySideEditor.horizontalBorder": "Barva, která oddělí dva editory od sebe, když se zobrazí vedle sebe ve skupině editorů shora dolů.",
"sideBySideEditor.verticalBorder": "Barva, která oddělí dva editory od sebe, když se zobrazí vedle sebe ve skupině editorů zleva doprava.",
@@ -4027,22 +5172,34 @@
"statusBarBorder": "Barva ohraničení stavového řádku, které odděluje stavový řádek od postranního panelu a editoru. Stavový řádek se zobrazuje v dolní části okna.",
"statusBarErrorItemBackground": "Barva pozadí chybových položek na stavovém řádku. Chybové položky jsou zvýrazněné oproti ostatním položkám stavového řádku, aby se zdůraznily chybové stavy. Stavový řádek se zobrazuje v dolní části okna.",
"statusBarErrorItemForeground": "Barva popředí chybových položek na stavovém řádku. Chybové položky jsou zvýrazněné oproti ostatním položkám stavového řádku, aby se zdůraznily chybové stavy. Stavový řádek se zobrazuje v dolní části okna.",
+ "statusBarErrorItemHoverBackground": "Barva pozadí chybových položek na stavovém řádku při najetí myší Chybové položky jsou zvýrazněné oproti ostatním položkám stavového řádku, aby se zdůraznily chybové stavy. Stavový řádek se zobrazuje v dolní části okna.",
+ "statusBarErrorItemHoverForeground": "Barva popředí chybových položek na stavovém řádku při najetí myší Chybové položky jsou zvýrazněné oproti ostatním položkám stavového řádku, aby se zdůraznily chybové stavy. Stavový řádek se zobrazuje v dolní části okna.",
"statusBarFocusBorder": "Barva okraje stavového řádku při zaměření na procházení pomocí klávesnice. Stavový řádek je zobrazený v dolní části okna.",
"statusBarForeground": "Barva popředí stavového řádku, když jsou otevřené pracovní prostor nebo složka. Stavový řádek se zobrazuje v dolní části okna.",
"statusBarItemActiveBackground": "Barva pozadí položky stavového řádku při kliknutí. Stavový řádek se zobrazuje v dolní části okna.",
"statusBarItemCompactHoverBackground": "Barva pozadí položky stavového řádku při nastavení ukazatele myši na položku obsahující dvě možnosti zobrazující se při nastavení ukazatele myši. Stavový řádek se zobrazuje v dolní části okna.",
"statusBarItemFocusBorder": "Barva okraje položky stavového řádku při zaměření na procházení pomocí klávesnice. Stavový řádek je zobrazený v dolní části okna.",
- "statusBarItemHostBackground": "Barva pozadí indikátoru připojení ke vzdálenému pracovnímu prostoru na stavovém řádku",
- "statusBarItemHostForeground": "Barva popředí indikátoru připojení ke vzdálenému pracovnímu prostoru na stavovém řádku",
"statusBarItemHoverBackground": "Barva pozadí položky stavového řádku při umístění ukazatele myši. Stavový řádek se zobrazuje v dolní části okna.",
+ "statusBarItemHoverForeground": "Barva popředí položky stavového řádku při najetí myší Stavový řádek se zobrazuje v dolní části okna.",
+ "statusBarItemOfflineBackground": "Barva pozadí položky stavového řádku, když je pracovní plocha offline",
+ "statusBarItemOfflineForeground": "Barva popředí položky stavového řádku, když je pracovní plocha offline",
+ "statusBarItemRemoteBackground": "Barva pozadí indikátoru připojení ke vzdálenému pracovnímu prostoru na stavovém řádku",
+ "statusBarItemRemoteForeground": "Barva popředí indikátoru připojení ke vzdálenému pracovnímu prostoru na stavovém řádku",
"statusBarNoFolderBackground": "Barva pozadí stavového řádku v případě, že není otevřená žádná složka. Stavový řádek se zobrazuje v dolní části okna.",
"statusBarNoFolderBorder": "Barva ohraničení stavového řádku, které odděluje stavový řádek od postranního panelu a editoru, když není otevřená žádná složka. Stavový řádek se zobrazuje v dolní části okna.",
"statusBarNoFolderForeground": "Barva popředí stavového řádku v případě, že není otevřená žádná složka. Stavový řádek se zobrazuje v dolní části okna.",
- "statusBarProminentItemBackground": "Barva pozadí prioritních položek na stavovém řádku. Prioritní položky jsou zvýrazněny oproti ostatním položkám stavového řádku, aby se zdůraznil jejich význam. Pokud se chcete podívat na příklad, změňte režim Přepnout přesunutí fokusu pomocí klávesy Tab z palety příkazů. Stavový řádek se zobrazuje v dolní části okna.",
- "statusBarProminentItemForeground": "Barva popředí prioritních položek na stavovém řádku. Prioritní položky jsou zvýrazněny oproti ostatním položkám stavového řádku, aby se zdůraznil jejich význam. Pokud se chcete podívat na příklad, změňte režim Přepnout přesunutí fokusu pomocí klávesy Tab z palety příkazů. Stavový řádek se zobrazuje v dolní části okna.",
- "statusBarProminentItemHoverBackground": "Barva pozadí prioritních položek na stavovém řádku při umístění ukazatele myši. Prioritní položky jsou zvýrazněny oproti ostatním položkám stavového řádku, aby se zdůraznil jejich význam. Pokud se chcete podívat na příklad, změňte režim Přepnout přesunutí fokusu pomocí klávesy Tab z palety příkazů. Stavový řádek se zobrazuje v dolní části okna.",
+ "statusBarOfflineItemHoverBackground": "Barva pozadí položky stavového řádku při najetí myší, když je pracovní plocha offline.",
+ "statusBarOfflineItemHoverForeground": "Barva popředí položky stavového řádku při najetí myší, když je pracovní plocha offline",
+ "statusBarProminentItemBackground": "Barva pozadí prioritních položek na stavovém řádku. Prioritní položky jsou zvýrazněny oproti ostatním položkám stavového řádku, aby se zdůraznil jejich význam. Stavový řádek se zobrazuje v dolní části okna.",
+ "statusBarProminentItemForeground": "Barva popředí prioritních položek na stavovém řádku. Prioritní položky jsou zvýrazněny oproti ostatním položkám stavového řádku, aby se zdůraznil jejich význam. Stavový řádek se zobrazuje v dolní části okna.",
+ "statusBarProminentItemHoverBackground": "Barva pozadí prioritních položek na stavovém řádku při umístění ukazatele myši. Prioritní položky jsou zvýrazněny oproti ostatním položkám stavového řádku, aby se zdůraznil jejich význam. Stavový řádek se zobrazuje v dolní části okna.",
+ "statusBarProminentItemHoverForeground": "Barva popředí prioritních položek na stavovém řádku při najetí myší Prioritní položky jsou zvýrazněny oproti ostatním položkám stavového řádku, aby se zdůraznil jejich význam. Stavový řádek se zobrazuje v dolní části okna.",
+ "statusBarRemoteItemHoverBackground": "Barva pozadí indikátoru připojení ke vzdálenému pracovnímu prostoru na stavovém řádku při najetí myší",
+ "statusBarRemoteItemHoverForeground": "Barva popředí indikátoru připojení ke vzdálenému pracovnímu prostoru na stavovém řádku při najetí myší",
"statusBarWarningItemBackground": "Barva pozadí položek s upozorněním na stavovém řádku. Položky s upozorněním jsou zvýrazněné oproti ostatním položkám stavového řádku, aby se zdůraznily podmínky upozornění. Stavový řádek se zobrazuje v dolní části okna.",
"statusBarWarningItemForeground": "Barva popředí položek s upozorněním na stavovém řádku. Položky s upozorněním jsou zvýrazněné oproti ostatním položkám stavového řádku, aby se zdůraznily podmínky upozornění. Stavový řádek se zobrazuje v dolní části okna.",
+ "statusBarWarningItemHoverBackground": "Barva pozadí položek s upozorněním stavového řádku při najetí myší. Položky s upozorněním jsou zvýrazněné oproti ostatním položkám stavového řádku, aby se zdůraznily podmínky upozornění. Stavový řádek se zobrazuje v dolní části okna.",
+ "statusBarWarningItemHoverForeground": "Barva popředí položek s upozorněním na stavovém řádku při najetí myší Položky s upozorněním jsou zvýrazněné oproti ostatním položkám stavového řádku, aby se zdůraznily podmínky upozornění. Stavový řádek se zobrazuje v dolní části okna.",
"tabActiveBackground": "Barva pozadí aktivní karty v aktivní skupině. Karty jsou kontejnery pro editory v oblasti editorů. V jedné skupině editorů můžete otevřít více karet. Může existovat více skupin editorů.",
"tabActiveBorder": "Ohraničení v dolní části aktivní karty. Karty jsou kontejnery pro editory v oblasti editorů. V jedné skupině editorů můžete otevřít více karet. Může existovat více skupin editorů.",
"tabActiveBorderTop": "Ohraničení v horní části aktivní karty. Karty jsou kontejnery pro editory v oblasti editorů. V jedné skupině editorů můžete otevřít více karet. Může existovat více skupin editorů.",
@@ -4051,12 +5208,16 @@
"tabActiveUnfocusedBorder": "Ohraničení v dolní části aktivní karty ve skupině bez fokusu. Karty jsou kontejnery pro editory v oblasti editorů. V jedné skupině editorů můžete otevřít více karet. Může existovat více skupin editorů.",
"tabActiveUnfocusedBorderTop": "Ohraničení v horní části aktivní karty ve skupině bez fokusu. Karty jsou kontejnery pro editory v oblasti editorů. V jedné skupině editorů můžete otevřít více karet. Může existovat více skupin editorů.",
"tabBorder": "Ohraničení pro oddělení jednotlivých karet. Karty jsou kontejnery pro editory v oblasti editorů. V jedné skupině editorů můžete otevřít více karet. Může existovat více skupin editorů.",
+ "tabDragAndDropBorder": "Ohraničení mezi kartami označující, že je možné vložit kartu mezi dvě karty Karty představují kontejnery pro editory v oblasti editorů. V jedné skupině editorů je možné otevřít více karet. Skupin editorů může být více.",
"tabHoverBackground": "Barva pozadí karty, když je na ni umístěn ukazatel myši. Karty jsou kontejnery pro editory v oblasti editorů. V jedné skupině editorů můžete otevřít více karet. Může existovat více skupin editorů.",
"tabHoverBorder": "Ohraničení pro zvýraznění karet, když je na ně umístěn ukazatel myši. Karty jsou kontejnery pro editory v oblasti editorů. V jedné skupině editorů můžete otevřít více karet. Může existovat více skupin editorů.",
"tabHoverForeground": "Barva popředí karty, když je na ni umístěn ukazatel myši. Karty jsou kontejnery pro editory v oblasti editorů. V jedné skupině editorů můžete otevřít více karet. Může existovat více skupin editorů.",
"tabInactiveBackground": "Barva pozadí neaktivní karty v aktivní skupině. Karty jsou kontejnery pro editory v oblasti editorů. V jedné skupině editorů můžete otevřít více karet. Může existovat více skupin editorů.",
"tabInactiveForeground": "Barva popředí neaktivní karty v aktivní skupině. Karty jsou kontejnery pro editory v oblasti editorů. V jedné skupině editorů můžete otevřít více karet. Může existovat více skupin editorů.",
"tabInactiveModifiedBorder": "Ohraničení v horní části upravených neaktivních karet v aktivní skupině. Karty jsou kontejnery pro editory v oblasti editorů. V jedné skupině editorů můžete otevřít více karet. Může existovat více skupin editorů.",
+ "tabSelectedBackground": "Pozadí vybrané karty. Karty představují kontejnery pro editory v oblasti editorů. V jedné skupině editorů je možné otevřít více karet. Skupin editorů může být více.",
+ "tabSelectedBorderTop": "Ohraničení v horní části vybrané karty. Karty představují kontejnery pro editory v oblasti editorů. V jedné skupině editorů je možné otevřít více karet. Skupin editorů může být více.",
+ "tabSelectedForeground": "Popředí vybrané karty. Karty představují kontejnery pro editory v oblasti editorů. V jedné skupině editorů je možné otevřít více karet. Skupin editorů může být více.",
"tabUnfocusedActiveBackground": "Barva pozadí aktivní karty ve skupině bez fokusu. Karty jsou kontejnery pro editory v oblasti editorů. V jedné skupině editorů můžete otevřít více karet. Může existovat více skupin editorů.",
"tabUnfocusedActiveForeground": "Barva popředí aktivní karty ve skupině bez fokusu. Karty jsou kontejnery pro editory v oblasti editorů. V jedné skupině editorů můžete otevřít více karet. Může existovat více skupin editorů.",
"tabUnfocusedHoverBackground": "Barva pozadí karty ve skupině bez fokusu, když je na ni umístěn ukazatel myši. Karty jsou kontejnery pro editory v oblasti editorů. V jedné skupině editorů můžete otevřít více karet. Může existovat více skupin editorů.",
@@ -4073,120 +5234,160 @@
"titleBarInactiveForeground": "Popředí záhlaví okna, když je okno neaktivní",
"unfocusedActiveModifiedBorder": "Ohraničení v horní části upravených aktivních karet ve skupině bez fokusu. Karty jsou kontejnery pro editory v oblasti editorů. V jedné skupině editorů můžete otevřít více karet. Může existovat více skupin editorů.",
"unfocusedINactiveModifiedBorder": "Ohraničení v horní části upravených neaktivních karet ve skupině bez fokusu. Karty jsou kontejnery pro editory v oblasti editorů. V jedné skupině editorů můžete otevřít více karet. Může existovat více skupin editorů.",
- "windowActiveBorder": "Barva použitá pro ohraničení okna, když je okno aktivní. Podporuje se pouze v desktopových klientech při používání vlastního záhlaví okna.",
- "windowInactiveBorder": "Barva použitá pro ohraničení okna, když je okno neaktivní. Podporuje se pouze v desktopových klientech při používání vlastního záhlaví okna."
+ "windowActiveBorder": "Barva použitá pro ohraničení okna, když je aktivní v systému macOS nebo Linux. Vyžaduje vlastní styl záhlaví a vlastní nebo skryté ovládací prvky okna v Linuxu.",
+ "windowInactiveBorder": "Barva použitá pro ohraničení okna, když je neaktivní v systému macOS nebo Linux. Vyžaduje vlastní styl záhlaví a vlastní nebo skryté ovládací prvky okna v Linuxu."
},
"vs/workbench/common/views": {
"defaultViewIcon": "Ikona výchozího zobrazení",
- "duplicateId": "Zobrazení s ID {0} už je zaregistrované."
+ "duplicateId": "Zobrazení s ID {0} už je zaregistrované.",
+ "treeView.notRegistered": "Není zaregistrováno žádné zobrazení stromu s ID {0}.",
+ "views log": "Zobrazení"
},
- "vs/workbench/electron-sandbox/actions/developerActions": {
- "configureRuntimeArguments": "Konfigurovat argumenty modulu runtime",
+ "vs/workbench/electron-browser/actions/developerActions": {
+ "configureRuntimeArguments": "Configure Runtime Arguments",
"reloadWindowWithExtensionsDisabled": "Znovu načíst se zakázanými rozšířeními",
- "toggleDevTools": "Přepnout vývojářské nástroje",
- "toggleSharedProcess": "Přepnout sdílený proces"
- },
- "vs/workbench/electron-sandbox/actions/installActions": {
+ "revealUserDataFolder": "Zobrazit složku uživatelských dat",
+ "showGPUInfo": "Zobrazit informace o GPU",
+ "stopTracing": "Zastavit trasování",
+ "stopTracing.button": "&&Znovu spustit a povolit trasování",
+ "stopTracing.detail": "Dokončení může trvat až jednu minutu.",
+ "stopTracing.message": "Trasování vyžaduje spuštění s argumentem --trace.",
+ "stopTracing.title": "Vytváří se trasovací soubor...",
+ "toggleDevTools": "Toggle Developer Tools"
+ },
+ "vs/workbench/electron-browser/actions/installActions": {
"install": "Nainstalovat příkaz {0} v proměnné PATH",
"shellCommand": "Příkaz prostředí",
"successFrom": "Příkaz prostředí {0} se úspěšně odinstaloval z proměnné PATH.",
"successIn": "Příkaz prostředí {0} se úspěšně nainstaloval do proměnné PATH.",
"uninstall": "Odinstalovat příkaz {0} z proměnné PATH"
},
- "vs/workbench/electron-sandbox/actions/windowActions": {
+ "vs/workbench/electron-browser/actions/windowActions": {
"close": "Zavřít okno",
- "closeWindow": "Zavřít okno",
- "current": "Aktuální okno",
+ "closeActive": "Zavřít aktivní okno",
+ "closeWindow": "Close Window",
+ "current": "Current Window",
+ "disableWindowAlwaysOnTop": "Vypnout režim zobrazení Vždy navrchu",
+ "enableWindowAlwaysOnTop": "Zapnout režim zobrazení Vždy navrchu",
"miCloseWindow": "&&Zavřít okno",
"miZoomIn": "&&Přiblížit",
"miZoomOut": "&&Oddálit",
"miZoomReset": "&&Obnovit zvětšení",
- "quickSwitchWindow": "Rychle přepnout okno...",
+ "quickSwitchWindow": "Quick Switch Window...",
"switchWindow": "Přepnout okno...",
- "switchWindowPlaceHolder": "Vyberte okno, na které se má přepnout.",
+ "switchWindowPlaceHolder": "Select a window to switch to",
+ "toggleWindowAlwaysOnTop": "Přepnout zobrazování okna vždy navrchu",
"windowDirtyAriaLabel": "{0}, okno s neuloženými změnami",
- "zoomIn": "Přiblížit",
- "zoomOut": "Oddálit",
- "zoomReset": "Obnovit zvětšení"
+ "windowGroup": "skupina oken",
+ "zoomIn": "Zoom In",
+ "zoomOut": "Zoom Out",
+ "zoomReset": "Reset Zoom"
},
- "vs/workbench/electron-sandbox/desktop.contribution": {
+ "vs/workbench/electron-browser/desktop.contribution": {
+ "application.shellEnvironmentResolutionTimeout": "Určuje časový limit v sekundách před tím, než se přestane překládat prostředí, když aplikace ještě není spuštěná z terminálu. Další informace najdete v naší [dokumentaci](https://go.microsoft.com/fwlink/?linkid=2149667).",
"argv.crashReporterId": "Jedinečné ID použité pro korelaci zpráv o chybovém ukončení odesílaných z této instance aplikace",
- "argv.disableHardwareAcceleration": "Zakáže hardwarovou akceleraci. Tuto možnost doporučujeme měnit POUZE v případě problémů s grafikou.",
+ "argv.disableChromiumSandbox": "Zakáže sandbox Chromium. To je užitečné při spuštění VS Code se zvýšenými oprávněními v Linuxu a spuštění v applockeru ve Windows.",
+ "argv.disableHardwareAcceleration": "Disables hardware acceleration. ONLY change this option if you encounter graphic issues.",
+ "argv.disableLcdText": "Zakáže antialiasing písma LCD.",
"argv.enableCrashReporter": "Umožňuje zakázat zprávy o chybovém ukončení aplikace. Při změně hodnoty by se měla aplikace restartovat.",
+ "argv.enableRDPDisplayTracking": "Zajistí, aby se maximalizovaná okna obnovila do správného zobrazení při opětovném připojení pomocí protokolu RDP.",
"argv.enebleProposedApi": "Umožňuje povolit navrhovaná rozhraní API pro seznam ID rozšíření (například vscode.git). Navrhovaná rozhraní API jsou nestabilní a mohou bez upozornění kdykoli selhat. Tato možnost by se měla používat pouze pro účely vývoje a testování rozšíření.",
- "argv.force-renderer-accessibility": "Vynutí pro renderer podporu usnadnění přístupu. Tuto možnost byste měli měnit POUZE v případě, že používáte čtečku obrazovky v systému Linux. Na jiných platformách bude renderer usnadnění přístupu podporovat automaticky. V případě nastavení editor.accessibilitySupport: on se tento příznak nastaví automaticky.",
- "argv.forceColorProfile": "Umožňuje přepsat profil barev, který se má použít. Pokud barvy vypadají neuspokojivě, zkuste tady nastavit hodnotu srgb a provést restart.",
- "argv.locale": "Jazyk zobrazení, který se má použít. Aby bylo možné vybrat jiný jazyk, je nutné nainstalovat příslušnou jazykovou sadu.",
- "argv.logLevel": "Úroveň protokolu, která se má použít. Výchozí hodnota je info. Povolené hodnoty jsou critical, error, warn, info, debug, trace a off.",
- "closeWhenEmpty": "Určuje, jestli se má při zavření posledního editoru zavřít i okno. Toto nastavení platí pouze pro okna, ve kterých se nezobrazují složky.",
- "dialogStyle": "Upravte vzhled dialogových oken.",
+ "argv.force-renderer-accessibility": "Forces the renderer to be accessible. ONLY change this if you are using a screen reader on Linux. On other platforms the renderer will automatically be accessible. This flag is automatically set if you have editor.accessibilitySupport: on.",
+ "argv.forceColorProfile": "Allows to override the color profile to use. If you experience colors appear badly, try to set this to `srgb` and restart.",
+ "argv.locale": "The display Language to use. Picking a different language requires the associated language pack to be installed.",
+ "argv.logLevel": "Úroveň protokolu, která se má použít. Výchozí hodnota je info. Povolené hodnoty jsou error, warn, info, debug, trace a off.",
+ "argv.passwordStore": "Nakonfiguruje back-end, který se používá k ukládání tajných kódů v Linuxu. Tento argument se ve Windows a macOS ignoruje.",
+ "argv.proxyBypassList": "Umožňuje obejít libovolný zadaný proxy server pro zadaný seznam hostitelů oddělených středníkem. Ukázková hodnota ;*.microsoft.com;*foo.com;1.2.3.4:5678 použije proxy server pro všechny hostitele s výjimkou místních adres (localhost, 127.0.0.1 atd.), subdomén microsoft.com, hostitelů obsahujících příponu foo.com a všeho na adrese 1.2.3.4:5678.",
+ "argv.remoteDebuggingPort": "Určuje port, který se má použít pro vzdálené ladění.",
+ "argv.useInMemorySecretStorage": "Zajišťuje, aby se pro úložiště tajných kódů místo použití úložiště přihlašovacích údajů operačního systému používalo úložiště v paměti. Často se používá při spouštění testů rozšíření VS Code nebo při potížích s úložištěm přihlašovacích údajů.",
+ "closeWhenEmpty": "Controls whether closing the last editor should also close the window. This setting only applies for windows that do not show folders.",
+ "confirmSaveUntitledWorkspace": "Určuje, jestli se v potvrzovacím dialogovém okně při přepnutí do jiného pracovního prostoru zobrazí výzva k uložení nebo zahození otevřeného pracovního prostoru bez názvu v okně. Když se zakáže potvrzovací dialog, pracovní prostor bez názvu se vždycky zahodí.",
+ "controlsStyle": "Upravte vzhled ovládacích prvků okna tak, aby byly nativní pro operační systém, s vlastní grafikou nebo skryté. Změny se projeví po úplném restartování.",
+ "dialogStyle": "Upravte si vzhled dialogových oken tak, aby byl nativní pro operační systém, nebo si zvolte vlastní.",
"enableCrashReporterDeprecated": "Pokud má toto nastavení hodnotu false, nebude se odesílat žádná telemetrie bez ohledu na hodnotu nového nastavení. Zastaralé z důvodu začlenění do nastavení {0}.",
- "experimentalUseSandbox": "Experimentální: Pokud je tato možnost povolená, okno bude mít prostřednictvím rozhraní Electron API povolený režim sandboxu.",
"keyboardConfigurationTitle": "Klávesnice",
- "mergeAllWindowTabs": "Sloučit všechna okna",
- "miExit": "&&Konec",
- "moveWindowTabToNewWindow": "Přesunout kartu okna do nového okna",
- "newTab": "Nová karta okna",
- "newWindowDimensions": "Určuje velikost nově otevíraného okna, pokud je už aspoň jedno okno otevřené. Toto nastavení nemá vliv na první otevírané okno. Velikost a pozice prvního okna bude vždy odpovídat velikosti a pozici tohoto okna před jeho zavřením.",
+ "mergeAllWindowTabs": "Merge All Windows",
+ "miExit": "U&&končit",
+ "moveWindowTabToNewWindow": "Move Window Tab to New Window",
+ "newTab": "New Window Tab",
+ "newWindowDimensions": "Controls the dimensions of opening a new window when at least one window is already opened. Note that this setting does not have an impact on the first window that is opened. The first window will always restore the size and location as you left it before closing.",
"openWithoutArgumentsInNewWindow": "Controls whether a new empty window should open when starting a second instance without arguments or if the last running instance should get focus.\r\nNote that there can still be cases where this setting is ignored (e.g. when using the `--new-window` or `--reuse-window` command line option).",
- "restoreFullscreen": "Určuje, jestli má být okno obnoveno v režimu zobrazení na celou obrazovku, pokud bylo v tomto režimu zavřeno.",
- "restoreWindows": "Určuje, jak se okna znovu otevírají po prvním spuštění. Pokud je aplikace už spuštěná, toto nastavení nemá žádný vliv.",
- "showNextWindowTab": "Zobrazit další kartu okna",
- "showPreviousTab": "Zobrazit předchozí kartu okna",
+ "restoreFullscreen": "Controls whether a window should restore to full screen mode if it was exited in full screen mode.",
+ "restoreWindows": "Určuje, jak se při otevírání obnovují okna a editory v nich.",
+ "security.promptForLocalFileProtocolHandling": "Pokud je tato možnost povolena, dialogové okno požádá o potvrzení vždy, když se má otevřít místní soubor nebo pracovní prostor prostřednictvím obslužné rutiny protokolu.",
+ "security.promptForRemoteFileProtocolHandling": "Pokud je tato možnost povolena, dialogové okno požádá o potvrzení vždy, když se má otevřít vzdálený soubor nebo pracovní prostor prostřednictvím obslužné rutiny protokolu.",
+ "showNextWindowTab": "Show Next Window Tab",
+ "showPreviousTab": "Show Previous Window Tab",
"telemetry.enableCrashReporting": "Povolte shromažďování hlášení o selhání. To nám pomůže zlepšit stabilitu. \r\nTato možnost se projeví až po restartování.",
- "telemetryConfigurationTitle": "Telemetrie",
- "titleBarStyle": "Umožňuje upravit vzhled záhlaví okna. V systémech Linux a Windows se toto nastavení týká také vzhledu nabídky aplikace a místní nabídky. Změny se projeví po úplném restartování.",
- "toggleWindowTabsBar": "Přepnout panel karet okna",
- "touchbar.enabled": "Povolí tlačítka Touch Baru v macOS na klávesnici (pokud je k dispozici).",
+ "telemetryConfigurationTitle": "Telemetry",
+ "titleBarStyle": "Upravte vzhled záhlaví okna tak, aby byl nativní pro operační systém nebo vlastní. Změny se projeví po úplném restartování.",
+ "toggleWindowTabsBar": "Toggle Window Tabs Bar",
+ "touchbar.enabled": "Enables the macOS touchbar buttons on the keyboard if available.",
"touchbar.ignored": "Sada identifikátorů pro položky na dotykovém panelu, které by se neměly zobrazovat (příklad: workbench.action.navigateBack)",
- "window.clickThroughInactive": "Pokud je povoleno, kliknutím na neaktivní okno se aktivuje jak okno, tak i prvek, na kterém je ukazatel myši, pokud je na něj možné kliknout. Pokud je zakázáno, kliknutím kamkoli v neaktivním okně se aktivuje pouze okno a daný prvek pak bude nutné aktivovat dalším kliknutím.",
- "window.doubleClickIconToClose": "Pokud je povoleno, poklikáním na ikonu aplikace v záhlaví okna se okno zavře a nebude možné ho přetáhnout pomocí ikony. Toto nastavení platí pouze v případě, že nastavení #window.titleBarStyle# má hodnotu custom.",
- "window.nativeFullScreen": "Určuje, jestli má být pro macOS použito nativní zobrazení v režimu na celou obrazovku. Zakázáním této možnosti zabráníte systému macOS ve vytvoření nové plochy při přepnutí do režimu zobrazení na celou obrazovku.",
- "window.nativeTabs": "Povolí karty oken ve stylu panelů oken z operačního systému macOS Sierra. Poznámka: K provedení těchto změn bude nutné úplné restartování. Nativní karty zakážou vlastní styl záhlaví okna (pokud je nakonfigurovaný).",
- "window.newWindowDimensions.default": "Otevírat nová okna uprostřed obrazovky",
- "window.newWindowDimensions.fullscreen": "Otevírat nová okna v režimu zobrazení na celou obrazovku",
- "window.newWindowDimensions.inherit": "Otevírat nová okna se stejnou velikostí, jakou mělo poslední aktivní okno.",
- "window.newWindowDimensions.maximized": "Otevírat nová okna jako maximalizovaná",
- "window.newWindowDimensions.offset": "Otevírat nová okna se stejnou velikostí, jakou mělo poslední aktivní okno, s posunutou pozicí",
- "window.openWithoutArgumentsInNewWindow.off": "Přepnout fokus na poslední aktivní spuštěnou instanci",
- "window.openWithoutArgumentsInNewWindow.on": "Otevřít nové prázdné okno",
- "window.reopenFolders.all": "Otevřít znovu všechna okna, pokud není otevřená složka, pracovní prostor nebo soubor (např. z příkazového řádku)",
- "window.reopenFolders.folders": "Otevřít znovu všechna okna, která mají otevřené složky nebo pracovní prostory, pokud není otevřená složka, pracovní prostor nebo soubor (např. z příkazového řádku)",
+ "window.border.color": "{0}: specifická barva ve formátu Hex, RGB, RGBA, HSL nebo HSLA",
+ "window.border.default": "{0}: dodržuje nastavení barevného motivu, základní nastavení Windows",
+ "window.border.off": "{0}: zakázat barvy ohraničení",
+ "window.border.prefix": "Určuje barvu ohraničení okna:",
+ "window.border.suffix": "Pomocí {0} můžete nastavit různé barvy pro aktivní a neaktivní okna. Toto nastavení je ignorováno, pokud je {1} nastaveno na {2}.",
+ "window.border.system": "{0}: dodržuje jenom nastavení Windows",
+ "window.clickThroughInactive": "If enabled, clicking on an inactive window will both activate the window and trigger the element under the mouse if it is clickable. If disabled, clicking anywhere on an inactive window will activate it only and a second click is required on the element.",
+ "window.customTitleBarVisibility": "Umožňuje upravit, kdy se má zobrazit vlastní záhlaví. Vlastní záhlaví se dá skrýt v režimu zobrazení na celou obrazovku, pokud je nastavena hodnota Windowed. Vlastní záhlaví lze skrýt pouze v případě, že není použito zobrazení na celou obrazovku s možností Never, pokud je vlastnost {0} nastavena na hodnotu Native.",
+ "window.customTitleBarVisibility.auto": "Automaticky změní viditelnost vlastního záhlaví.",
+ "window.customTitleBarVisibility.never": "Umožňuje skrýt vlastní záhlaví, když je vlastnost{0} nastavená na hodnotu Native.",
+ "window.customTitleBarVisibility.windowed": "Umožňuje skrýt vlastní záhlaví v zobrazení na celou obrazovku. Umožňuje automaticky změnit viditelnost vlastního záhlaví, pokud nejste v zobrazení na celou obrazovku.",
+ "window.doubleClickIconToClose": "Pokud je tato možnost povolená, toto nastavení zavře okno, když poklikáte na ikonu aplikace v záhlaví. Okno nebude možné přetáhnout pomocí ikony. Toto nastavení platí pouze v případě, že je vlastnost {0} nastavená na hodnotu custom.",
+ "window.menuStyle": "Upravte styl nabídky tak, aby byl nativní pro operační systém, vlastní nebo zděděný ze stylu záhlaví definovaného v {0}. To má také vliv na vzhled místní nabídky. Změny se projeví po úplném restartování.",
+ "window.menuStyle.custom": "Použijte vlastní nabídku.",
+ "window.menuStyle.custom.mac": "Použijte vlastní místní nabídku.",
+ "window.menuStyle.inherit": "Odpovídá stylu nabídky stylu záhlaví definovanému v {0}.",
+ "window.menuStyle.inherit.mac": "Přizpůsobí styl místní nabídky stylu záhlaví definovanému v {0}.",
+ "window.menuStyle.mac": "Upravte vzhled místní nabídky tak, aby byl nativní pro operační systém, vlastní nebo zděděný ze stylu záhlaví definovaného v {0}.",
+ "window.menuStyle.native": "Použijte nativní nabídku. Toto nastavení se ignoruje, pokud je {0} nastaveno na {1}.",
+ "window.menuStyle.native.mac": "Použijte nativní místní nabídku.",
+ "window.nativeFullScreen": "Controls if native full-screen should be used on macOS. Disable this option to prevent macOS from creating a new space when going full-screen.",
+ "window.nativeTabs": "Povolí nativní karty oken macOS. Poznámka: K provedení těchto změn bude nutné úplné restartování. Nativní karty zakážou vlastní styl záhlaví okna (pokud je nakonfigurovaný).",
+ "window.newWindowDimensions.default": "Open new windows in the center of the screen.",
+ "window.newWindowDimensions.fullscreen": "Open new windows in full screen mode.",
+ "window.newWindowDimensions.inherit": "Open new windows with same dimension as last active one.",
+ "window.newWindowDimensions.maximized": "Open new windows maximized.",
+ "window.newWindowDimensions.offset": "Open new windows with same dimension as last active one with an offset position.",
+ "window.openWithoutArgumentsInNewWindow.off": "Focus the last active running instance.",
+ "window.openWithoutArgumentsInNewWindow.on": "Open a new empty window.",
+ "window.reopenFolders.all": "Otevřít znovu všechna okna, pokud není otevřena složka, pracovní prostor nebo soubor (např. z příkazového řádku). Otevřený soubor nahradí všechny editory, které byly v okně otevřeny dříve.",
+ "window.reopenFolders.folders": "Otevřít znovu všechna okna, která měla otevřené složky nebo pracovní prostory, pokud není otevřena složka, pracovní prostor nebo soubor (např. z příkazového řádku) Otevřený soubor nahradí všechny editory, které byly v okně otevřeny dříve.",
"window.reopenFolders.none": "Nikdy okno neotevírat znovu. Pokud není otevřená složka nebo pracovní prostor (např. z příkazového řádku), zobrazí se prázdné okno.",
- "window.reopenFolders.one": "Otevřít znovu poslední aktivní okno, pokud není otevřená složka, pracovní prostor nebo soubor (např. z příkazového řádku)",
- "window.reopenFolders.preserve": "Vždy znovu otevře všechna okna. Složky nebo pracovní prostory (například při otevírání z příkazového řádku) se otevřou jako nové okno, pokud nebyly otevřené už předtím. Soubory se otevřou se v jednom z obnovených oken.",
- "windowConfigurationTitle": "Okno",
- "windowControlsOverlay": "Místo ovládacích prvků okna založených na jazyce HTML použijte ovládací prvky okna poskytované platformou. Změny se projeví až po úplném restartování.",
- "zoomLevel": "Umožňuje upravit úroveň přiblížení okna. Původní velikost je 0 a jakékoli přírůstky nad (například 1) nebo pod (například -1) tuto hodnotu představují o 20 % větší nebo menší zvětšení. Můžete také zadat desetinná čísla, pokud chcete úroveň přiblížení upravovat podrobněji."
+ "window.reopenFolders.one": "Otevřít znovu poslední aktivní okno, pokud není otevřena složka, pracovní prostor nebo soubor (např. z příkazového řádku) Otevřený soubor nahradí všechny editory, které byly v okně otevřeny dříve.",
+ "window.reopenFolders.preserve": "Vždy znovu otevřít všechna okna. Otevíraná složka nebo pracovní prostor (například z příkazového řádku) se otevřou jako nové okno, pokud již nebylo otevřeno dříve. Otevírané soubory se otevřou v jednom z obnovených oken spolu s editory, které byly otevřeny dříve.",
+ "windowConfigurationTitle": "Časové období",
+ "zoomLevel": "Umožňuje upravit výchozí úroveň přiblížení pro všechna okna. Každý přírůstek nad 0 (např. 1) nebo pod 0 (např. -1) představuje zvětšení nebo zmenšení o 20 %. Můžete také zadat desetinná čísla a upravit úroveň přiblížení s jemnější podrobností. V nastavení {0} můžete nakonfigurovat, jestli příkazy Přiblížit a Oddálit aplikují úroveň přiblížení pro všechna okna nebo jen pro aktivní okno.",
+ "zoomPerWindow": "Určuje, jestli příkazy Přiblížit a Oddálit aplikují úroveň přiblížení pro všechna okna nebo jen pro aktivní okno. Informace o konfiguraci výchozí úrovně přiblížení pro všechna okna najdete tady: {0}."
},
- "vs/workbench/electron-sandbox/desktop.main": {
- "join.closeStorage": "Ukládá se stav uživatelského rozhraní."
+ "vs/workbench/electron-browser/desktop.main": {
+ "join.closeStorage": "Ukládá se stav uživatelského rozhraní"
},
- "vs/workbench/electron-sandbox/parts/dialogs/dialogHandler": {
- "aboutDetail": "Verze: {0}\r\nPotvrzení: {1}\r\nDatum: {2}\r\nElectron: {3}\r\nChromium: {4}\r\nNode.js: {5}\r\nV8: {6}\r\nOperační systém: {7}",
- "cancelButton": "Zrušit",
+ "vs/workbench/electron-browser/parts/dialogs/dialogHandler": {
"copy": "&&Kopírovat",
- "okButton": "OK",
- "yesButton": "&&Ano"
+ "okButton": "OK"
},
- "vs/workbench/electron-sandbox/window": {
- "cancelButton": "&&Zrušit",
- "closeWindowButtonLabel": "&&Zavřít okno",
- "closeWindowMessage": "Opravdu chcete okno zavřít?",
- "doNotAskAgain": "Tento dotaz příště nezobrazovat",
- "exitButtonLabel": "&&Ukončit",
+ "vs/workbench/electron-browser/window": {
+ "appRootWarning.banner": "Soubory, které uložíte do instalační složky ({0}), se můžou v čase aktualizace PŘEPSAT nebo NEVRATNĚ ODSTRANIT bez upozornění.",
+ "configure": "Nakonfigurovat",
+ "downloadArmBuild": "Stáhnout",
"keychainWriteError": "Zápis přihlašovacích informací do klíčenky selhal s chybou {0}.",
"learnMore": "Další informace",
- "loaderCycle": "V modulech AMD je cyklus závislostí, který je třeba vyřešit.",
"loginButton": "Přih&&lásit se",
+ "macoseolmessage": "{0} na {1} brzy přestane dostávat aktualizace. Zvažte možnost upgradovat verzi macOS.",
"password": "Heslo",
"proxyAuthRequired": "Vyžadováno ověření proxy serveru",
"proxyDetail": "Proxy {0} vyžaduje uživatelské jméno a heslo.",
- "quitButtonLabel": "&&Ukončit",
- "quitMessage": "Opravdu chcete skončit?",
- "quitMessageMac": "Opravdu chcete skončit?",
"rememberCredentials": "Zapamatovat přihlašovací údaje",
+ "resolveShellEnvironment": "Překládá se prostředí…",
+ "restart": "Restartovat",
"runningAsRoot": "Nedoporučuje se spouštět {0} jako uživatel root.",
+ "runningTranslated": "Používáte emulovanou verzi {0}. Pro lepší výkon si stáhněte nativní verzi buildu {0} arm64 pro váš počítač.",
+ "sharedProcessCrash": "Sdílený proces na pozadí byl neočekávaně ukončen. Obnovte ho prosím restartováním aplikace.",
+ "showArgvParseWarning": "Soubor argumentů modulu runtime argv.json obsahuje chyby. Opravte je prosím a proveďte restart.",
+ "showArgvParseWarningAction": "Otevřít soubor",
"shutdownErrorClose": "Okno se nepodařilo zavřít kvůli neočekávané chybě.",
"shutdownErrorDetail": "Chyba: {0}",
"shutdownErrorLoad": "Změna pracovního prostoru se zabránilo neočekávané chybě.",
@@ -4200,56 +5401,389 @@
"shutdownTitleLoad": "Změna pracovního prostoru trvá trochu déle…",
"shutdownTitleQuit": "Ukončování aplikace trvá trochu déle…",
"shutdownTitleReload": "Opětovné načítání okna trvá trochu déle…",
- "troubleshooting": "Průvodce odstraňováním potíží",
+ "status.windowZoom": "Lupa okna",
+ "troubleshooting": "Průvodce řešením problémů",
"username": "Uživatelské jméno",
- "willShutdownDetail": "Následující operace stále běží: \r\n{0}"
- },
- "vs/workbench/contrib/audioCues/browser/audioCueService": {
- "audioCues.lineHasBreakpoint.name": "Zarážka na řádku",
- "audioCues.lineHasError.name": "Chyba na řádku",
- "audioCues.lineHasFoldedArea.name": "Složená oblast na řádku",
- "audioCues.lineHasInlineSuggestion.name": "Vložený návrh na řádku",
- "audioCues.lineHasWarning.name": "Upozornění na řádku",
- "audioCues.noInlayHints": "Žádné tipy pro vložené položky na řádku",
- "audioCues.onDebugBreak.name": "Ladicí program se zastavil na zarážce."
+ "willShutdownDetail": "Následující operace stále běží: \r\n{0}",
+ "zoomIn": "Přiblížit",
+ "zoomNumber": "Úroveň přiblížení: {0} ({1} %)",
+ "zoomOut": "Oddálit",
+ "zoomReset": "Resetovat",
+ "zoomResetLabel": "{0} ({1})",
+ "zoomSettings": "Nastavení"
+ },
+ "vs/workbench/contrib/accessibility/browser/accessibilityConfiguration": {
+ "accessibility.debugWatchVariableAnnouncements": "Určuje, jestli se mají v zobrazení sledování ladění oznamovat změny proměnných.",
+ "accessibility.hideAccessibleView": "Určuje, jestli je skryté zobrazení s podporou přístupnosti.",
+ "accessibility.openChatEditedFiles": "Určuje, jestli se mají soubory otevřít, když v nich agent chatu provedl úpravy.",
+ "accessibility.replEditor.readLastExecutedOutput": "Určuje, jestli se oznámí výstup z provádění v nativním REPL.",
+ "accessibility.signalOptions.debouncePositionChanges": "Určuje, jestli by se změny pozice měly filtrovat (debouncing).",
+ "accessibility.signalOptions.delays.errorAtPosition.announcement": "Zpoždění v milisekundách před oznámením, když na pozici dojde k chybě",
+ "accessibility.signalOptions.delays.errorAtPosition.sound": "Zpoždění v milisekundách před přehráním zvuku v případě chyby na pozici",
+ "accessibility.signalOptions.delays.general.announcement": "Zpoždění v milisekundách před oznámením",
+ "accessibility.signalOptions.delays.general.sound": "Zpoždění v milisekundách před přehráním zvuku",
+ "accessibility.signalOptions.delays.warningAtPosition.announcement": "Zpoždění v milisekundách před oznámením, když na pozici dojde k upozornění",
+ "accessibility.signalOptions.delays.warningAtPosition.sound": "Zpoždění v milisekundách před přehráním zvuku, když na pozici dojde k upozornění.",
+ "accessibility.signalOptions.volume": "Hlasitost zvuků v procentech (0–100)",
+ "accessibility.signals.chatEditModifiedFile": "Přehraje zvukový signál při zobrazení souboru se změnami v úpravách chatu.",
+ "accessibility.signals.chatEditModifiedFile.sound": "Přehraje zvuk při zobrazení souboru se změnami z úprav chatu.",
+ "accessibility.signals.chatRequestSent": "Přehraje signál – zvuk (zvukový signál) nebo oznámení (upozornění) při zadání žádosti o chat.",
+ "accessibility.signals.chatRequestSent.announcement": "Přehraje oznámení, když se vytvoří žádost o chat.",
+ "accessibility.signals.chatRequestSent.sound": "Při vytvoření žádosti o chat přehraje zvuk.",
+ "accessibility.signals.chatResponseReceived": "Přehraje zvuk (zvukový signál) při přijetí odpovědi.",
+ "accessibility.signals.chatResponseReceived.sound": "Přehraje zvuk při přijetí odpovědi.",
+ "accessibility.signals.chatUserActionRequired": "Přehraje signál – zvuk (zvukový signál) nebo oznámení (upozornění) – když je v chatu vyžadována akce uživatele.",
+ "accessibility.signals.chatUserActionRequired.announcement": "Oznamuje, kdy je v chatu vyžadována akce od uživatele – včetně informací o akci a způsobu, jak ji provést.",
+ "accessibility.signals.chatUserActionRequired.sound": "Přehraje zvuk, když je v chatu vyžadována akce od uživatele.",
+ "accessibility.signals.clear": "Přehraje signál – zvuk (zvukový signál) nebo oznámení (upozornění) při vymazání funkce (například terminál, konzola ladění nebo výstupní kanál).",
+ "accessibility.signals.clear.announcement": "Přehraje oznámení, když je funkce vymazána.",
+ "accessibility.signals.clear.sound": "Přehraje zvuk při vymazání funkce.",
+ "accessibility.signals.codeActionApplied": "Přehraje zvuk / zvukový signál při aplikování akce kódu.",
+ "accessibility.signals.codeActionApplied.sound": "Přehraje zvuk při aplikování akce kódu.",
+ "accessibility.signals.codeActionTriggered": "Přehraje zvuk / zvukový signál, když se aktivuje akce kódu.",
+ "accessibility.signals.codeActionTriggered.sound": "Přehraje zvuk, když se aktivuje akce kódu.",
+ "accessibility.signals.diffLineDeleted": "Přehraje zvuk (zvukový signál), když se fokus přesune na odstraněný řádek v režimu Prohlížeč Diff s podporou přístupnosti nebo na další/předchozí změnu.",
+ "accessibility.signals.diffLineDeleted.sound": "Přehraje zvuk, když se fokus přesune na odstraněný řádek v režimu Prohlížeč Diff s podporou přístupnosti nebo na další/předchozí změnu.",
+ "accessibility.signals.diffLineInserted": "Přehraje zvuk (zvukový signál), když se fokus přesune na vložený řádek v režimu Prohlížeč Diff s podporou přístupnosti nebo na další/předchozí změnu.",
+ "accessibility.signals.diffLineModified": "Přehraje zvuk (zvukový signál), když se fokus přesune na upravený řádek v režimu Prohlížeč Diff s podporou přístupnosti nebo na další/předchozí změnu.",
+ "accessibility.signals.diffLineModified.sound": "Přehraje zvuk, když se fokus přesune na upravený řádek v režimu Prohlížeč Diff s podporou přístupnosti nebo na další/předchozí změnu.",
+ "accessibility.signals.editsKept": "Přehraje signál – zvuk (zvukový signál) a/nebo oznámení (upozornění) – při zachování úprav.",
+ "accessibility.signals.editsKept.announcement": "Oznamuje, že úpravy byly zachovány.",
+ "accessibility.signals.editsKept.sound": "Přehraje zvuk při zachování úprav.",
+ "accessibility.signals.editsUndone": "Přehraje signál – zvuk (zvukový signál) nebo oznámení (upozornění) – při vrácení úprav zpět.",
+ "accessibility.signals.editsUndone.announcement": "Oznamuje, že úpravy byly vráceny zpět.",
+ "accessibility.signals.editsUndone.sound": "Přehraje zvuk při vrácení úprav zpět.",
+ "accessibility.signals.format": "Přehraje signál – zvuk (zvukový signál) nebo oznámení (upozornění), když je naformátován soubor nebo poznámkový blok.",
+ "accessibility.signals.format.always": "Přehraje zvuk vždy, když je naformátován soubor, včetně toho, jestli je nastavený na formátování při uložení, zadání, vložení nebo spuštění buňky.",
+ "accessibility.signals.format.announcement": "Přehraje oznámení, když je naformátován soubor nebo poznámkový blok.",
+ "accessibility.signals.format.announcement.always": "Oznamuje naformátování souboru, včetně toho, jestli je nastavený na formátování při uložení, zadání, vložení nebo spuštění buňky.",
+ "accessibility.signals.format.announcement.never": "Nikdy neoznámí.",
+ "accessibility.signals.format.announcement.userGesture": "Přehraje oznámení, když uživatel explicitně naformátuje soubor.",
+ "accessibility.signals.format.never": "Nikdy nepřehraje zvuk.",
+ "accessibility.signals.format.sound": "Přehraje zvuk při naformátování souboru nebo poznámkového bloku.",
+ "accessibility.signals.format.userGesture": "Přehraje zvuk, když uživatel explicitně naformátuje soubor.",
+ "accessibility.signals.lineHasBreakpoint": "Přehraje signál – zvuk (zvukový signál) nebo oznámení (upozornění), pokud je na aktivním řádku zarážka.",
+ "accessibility.signals.lineHasBreakpoint.announcement": "Přehraje oznámení, když má aktivní řádek zarážku.",
+ "accessibility.signals.lineHasBreakpoint.sound": "Přehraje zvuk, pokud aktivní řádek obsahuje zarážku.",
+ "accessibility.signals.lineHasError": "Přehraje signál – zvuk (zvukový signál) nebo oznámení (upozornění), pokud je na aktivním řádku chyba.",
+ "accessibility.signals.lineHasError.announcement": "Přehraje oznámení, když aktivní řádek obsahuje chybu.",
+ "accessibility.signals.lineHasError.sound": "Přehraje zvuk, pokud aktivní řádek obsahuje chybu.",
+ "accessibility.signals.lineHasFoldedArea": "Přehraje signál – zvuk (zvukový signál) nebo oznámení (upozornění) – aktivní řádek obsahuje složenou oblast, kterou lze rozbalit.",
+ "accessibility.signals.lineHasFoldedArea.announcement": "Přehraje oznámení, když aktivní řádek obsahuje sbalenou oblast, která se nedá rozbalit.",
+ "accessibility.signals.lineHasFoldedArea.sound": "Přehraje zvuk, pokud aktivní řádek obsahuje sbalenou oblast, která se nedá rozbalit.",
+ "accessibility.signals.lineHasInlineSuggestion": "Přehraje zvuk (zvukový signál), pokud je na aktivním řádku vložený návrh.",
+ "accessibility.signals.lineHasInlineSuggestion.sound": "Přehraje zvuk, pokud aktivní řádek obsahuje vložený návrh.",
+ "accessibility.signals.lineHasWarning": "Přehraje signál – zvuk (zvukový signál) nebo oznámení (upozornění), pokud je na aktivním řádku upozornění.",
+ "accessibility.signals.lineHasWarning.announcement": "Přehraje oznámení, když má aktivní řádek upozornění.",
+ "accessibility.signals.lineHasWarning.sound": "Přehraje zvuk, pokud aktivní řádek obsahuje upozornění.",
+ "accessibility.signals.nextEditSuggestion": "Přehraje signál – zvukový signál nebo oznámení (upozornění), když se zobrazí návrh dalších úprav.",
+ "accessibility.signals.nextEditSuggestion.announcement": "Oznámí, když bude k dispozici návrh dalších úprav.",
+ "accessibility.signals.nextEditSuggestion.sound": "Přehraje zvuk, když bude k dispozici návrh dalších úprav.",
+ "accessibility.signals.noInlayHints": "Přehraje signál – zvuk (zvukový signál) nebo oznámení (upozornění) při pokusu o čtení řádku s vloženým upozorněním, když žádné vložené upozornění nemá.",
+ "accessibility.signals.noInlayHints.announcement": "Přehraje oznámení při pokusu o čtení řádku s vloženým upozorněním, když žádné vložené upozornění nemá.",
+ "accessibility.signals.noInlayHints.sound": "Přehraje zvuk při pokusu o čtení řádku s vloženým upozorněním, když žádné vložené upozornění nemá.",
+ "accessibility.signals.notebookCellCompleted": "Přehraje signál – zvuk (zvukový signál) nebo oznámení (upozornění), když se úspěšně dokončí provádění buňky poznámkového bloku.",
+ "accessibility.signals.notebookCellCompleted.announcement": "Přehraje oznámení při úspěšnému dokončení provádění buňky poznámkového bloku.",
+ "accessibility.signals.notebookCellCompleted.sound": "Přehraje zvuk po úspěšném dokončení provádění buňky poznámkového bloku.",
+ "accessibility.signals.notebookCellFailed": "Přehraje signál – zvuk (zvukový signál) nebo oznámení (upozornění), když selže provádění buňky poznámkového bloku.",
+ "accessibility.signals.notebookCellFailed.announcement": "Přehraje oznámení, když se nezdaří provedení buňky poznámkového bloku.",
+ "accessibility.signals.notebookCellFailed.sound": "Přehraje zvuk, když se nezdaří spuštění buňky poznámkového bloku.",
+ "accessibility.signals.onDebugBreak": "Přehraje signál – zvuk (zvukový signál) nebo oznámení (upozornění), když se ladicí program zastaví na zarážce.",
+ "accessibility.signals.onDebugBreak.announcement": "Přehraje oznámení, když se ladicí program zastaví na zarážce.",
+ "accessibility.signals.onDebugBreak.sound": "Přehraje zvuk, pokud se ladicí program zastavil na zarážce.",
+ "accessibility.signals.positionHasError": "Přehraje signál – zvuk (zvukový signál) nebo oznámení (upozornění), pokud je na aktivním řádku upozornění.",
+ "accessibility.signals.positionHasError.announcement": "Přehraje oznámení, když má aktivní řádek upozornění.",
+ "accessibility.signals.positionHasError.sound": "Přehraje zvuk, pokud aktivní řádek obsahuje upozornění.",
+ "accessibility.signals.positionHasWarning": "Přehraje signál – zvuk (zvukový signál) nebo oznámení (upozornění), pokud je na aktivním řádku upozornění.",
+ "accessibility.signals.positionHasWarning.announcement": "Přehraje oznámení, když má aktivní řádek upozornění.",
+ "accessibility.signals.positionHasWarning.sound": "Přehraje zvuk, pokud aktivní řádek obsahuje upozornění.",
+ "accessibility.signals.progress": "Přehraje signál – zvuk (zvukový signál) nebo oznámení (upozornění) pro smyčku, když probíhá zpracování.",
+ "accessibility.signals.progress.announcement": "Upozornění pro smyčku, když probíhá zpracování",
+ "accessibility.signals.progress.sound": "Přehraje zvuk pro smyčku, když probíhá zpracování.",
+ "accessibility.signals.save": "Přehraje signál – zvuk (zvukový signál) nebo oznámení (upozornění) při uložení souboru.",
+ "accessibility.signals.save.announcement": "Přehraje oznámení, když se uloží soubor.",
+ "accessibility.signals.save.announcement.always": "Oznámí vždy, když je soubor uložen, včetně automatického ukládání.",
+ "accessibility.signals.save.announcement.never": "Nikdy nepřehraje oznámení.",
+ "accessibility.signals.save.announcement.userGesture": "Oznámí, když uživatel explicitně uloží soubor.",
+ "accessibility.signals.save.sound": "Přehraje zvuk při uložení souboru.",
+ "accessibility.signals.save.sound.always": "Přehraje zvuk při každém uložení souboru, včetně automatického uložení.",
+ "accessibility.signals.save.sound.never": "Nikdy nepřehraje zvuk.",
+ "accessibility.signals.save.sound.userGesture": "Přehraje zvuk, když uživatel explicitně uloží soubor.",
+ "accessibility.signals.sound": "Přehraje zvuk, když se fokus přesune na vložený řádek v režimu Prohlížeč Diff s podporou přístupnosti nebo na další/předchozí změnu.",
+ "accessibility.signals.taskCompleted": "Přehraje signál – zvuk (zvukový signál) nebo oznámení (upozornění) po dokončení úlohy.",
+ "accessibility.signals.taskCompleted.announcement": "Přehraje oznámení, když je úloha dokončena.",
+ "accessibility.signals.taskCompleted.sound": "Přehraje zvuk po dokončení úkolu.",
+ "accessibility.signals.taskFailed": "Přehraje signál – zvuk (zvukový signál) nebo oznámení (upozornění), když úloha selže (nenulový ukončovací kód).",
+ "accessibility.signals.taskFailed.announcement": "Přehraje oznámení, když úloha selže (nenulový ukončovací kód).",
+ "accessibility.signals.taskFailed.sound": "Přehraje zvuk, když úloha selže (nenulový ukončovací kód).",
+ "accessibility.signals.terminalBell": "Přehraje signál – zvuk (zvukový signál) nebo oznámení (upozornění), když zvonek terminálu vyzvání.",
+ "accessibility.signals.terminalBell.announcement": "Přehraje oznámení, když zvonek terminálu vyzvání.",
+ "accessibility.signals.terminalBell.sound": "Přehraje zvuk, když zvonek terminálu vyzvání.",
+ "accessibility.signals.terminalCommandFailed": "Přehraje signál – zvuk (zvukový signál) nebo oznámení (upozornění), když selže příkaz terminálu (nenulový ukončovací kód) nebo když přejdete na příkaz s tímto ukončovacím kódem v přístupném zobrazení.",
+ "accessibility.signals.terminalCommandFailed.announcement": "Přehraje oznámení, když příkaz terminálu selže (nenulový ukončovací kód) nebo když přejdete na příkaz s tímto ukončovacím kódem v přístupném zobrazení.",
+ "accessibility.signals.terminalCommandFailed.sound": "Přehraje zvuk, když příkaz terminálu selže (nenulový ukončovací kód), nebo když přejdete na příkaz s tímto ukončovacím kódem v přístupném zobrazení.",
+ "accessibility.signals.terminalCommandSucceeded": "Přehraje signál – zvuk (zvukový signál) nebo oznámení (upozornění), když je příkaz terminálu úspěšný (nulový ukončovací kód) nebo když přejdete na příkaz s tímto ukončovacím kódem v přístupném zobrazení.",
+ "accessibility.signals.terminalCommandSucceeded.announcement": "Oznámí, když je příkaz terminálu úspěšný (nulový ukončovací kód) nebo když přejdete na příkaz s tímto ukončovacím kódem v přístupném zobrazení.",
+ "accessibility.signals.terminalCommandSucceeded.sound": "Přehraje zvuk, když je příkaz terminálu úspěšný (nulový ukončovací kód) nebo když přejdete na příkaz s tímto ukončovacím kódem v přístupném zobrazení.",
+ "accessibility.signals.terminalQuickFix": "Přehraje signál – zvuk (zvukový signál) nebo oznámení (upozornění), když jsou k dispozici rychlé opravy terminálu.",
+ "accessibility.signals.terminalQuickFix.announcement": "Přehraje oznámení, když jsou k dispozici rychlé opravy terminálu.",
+ "accessibility.signals.terminalQuickFix.sound": "Přehraje zvuk, když jsou k dispozici rychlé opravy terminálu.",
+ "accessibility.signals.voiceRecordingStarted": "Přehraje zvuk (zvukový signál) při spuštění záznamu hlasu.",
+ "accessibility.signals.voiceRecordingStarted.sound": "Přehraje zvuk při spuštění záznamu hlasu.",
+ "accessibility.signals.voiceRecordingStopped": "Přehraje zvuk (zvukový signál) při zastavení záznamu hlasu.",
+ "accessibility.signals.voiceRecordingStopped.sound": "Přehraje zvuk při zastavení záznamu hlasu.",
+ "accessibility.underlineLinks": "Určuje, jestli se mají podtrhávat odkazy na pracovní ploše.",
+ "accessibility.verboseChatProgressUpdates": "Určuje, zda se mají při zpracování žádosti o chat zobrazovat podrobná oznámení o průběhu, včetně informací, jako je hledaný text pro s X výsledky, vytvořený soubor nebo přečtený soubor .",
+ "accessibility.voice.autoSynthesize.off": "Zakáže funkci.",
+ "accessibility.voice.autoSynthesize.on": "Povolí funkci. Upozorňujeme, že pokud je povolena čtečka obrazovky, zakážou se aktualizace aria.",
+ "accessibility.windowTitleOptimized": "Určuje, jestli se {0} má v režimu čtečky obrazovky optimalizovat pro čtečky obrazovky. Pokud je tato možnost povolená, název okna bude mít na konci připojeno {1}.",
+ "accessibilityConfigurationTitle": "Usnadnění",
+ "announcement.enabled.auto": "Povolit oznámení, bude se přehrávat jenom v režimu optimalizovaném pro čtečku obrazovky.",
+ "announcement.enabled.off": "Zakázat oznámení.",
+ "autoSynthesize": "Určuje, jestli se má textová odpověď při použití řeči jako vstupu automaticky číst nahlas. Například v relaci chatu se odpověď automaticky syntetizovala při použití hlasu jako žádosti o chat.",
+ "dimUnfocusedEnabled": "Určuje, jestli se mají editory a terminály bez fokusu ztlumit, což zpřístupňuje, kam bude zadaný vstup chodit. To funguje s většinou editorů s vážnou výjimkou těch, kteří využívají rámce iframe, jako jsou poznámkové bloky a editory rozšíření webview.",
+ "dimUnfocusedOpacity": "Zlomek neprůhlednosti (0,2 až 1,0), který se má použít pro editory a terminály bez fokusu. To se projeví jenom v případě, že je povolená {0}.",
+ "replEditor.autoFocusAppendedCell": "Určuje, jestli se má fokus automaticky odesílat do REPL při provedení kódu.",
+ "sound.enabled.auto": "Povolí zvuk, když je připojená čtečka obrazovky.",
+ "sound.enabled.autoWindow": "Povolí zvuk, když je připojená čtečka obrazovky.",
+ "sound.enabled.off": "Zakažte zvuk.",
+ "sound.enabled.on": "Povolte zvuk.",
+ "speechLanguage.auto": "Automaticky (použít jazyk zobrazení)",
+ "terminal.integrated.accessibleView.closeOnKeyPress": "Při stisknutí klávesy zavře přístupné zobrazení a přesune fokus na element, ze kterého byl vyvolán.",
+ "verbosity.chat.description": "Zadejte informace o tom, jak přistupovat k nabídce nápovědy chatu, když je zaměření na vstup chatu.",
+ "verbosity.comments": "Zadejte informace o akcích, které lze provést ve widgetu komentáře nebo v souboru, který obsahuje komentáře.",
+ "verbosity.debug": "Poskytněte informace o tom, jak získat přístup k dialogovému oknu nápovědy pro přístupnost konzoly ladění, když má konzola ladění nebo viewlet spuštění a ladění fokus. Poznámka: Aby se toto nastavení projevilo, je nutné znovu načíst okno.",
+ "verbosity.diffEditor.description": "Zadejte informace o tom, jak procházet změny v editoru rozdílů, když má fokus.",
+ "verbosity.diffEditorActive": "Označuje, kdy se editor rozdílů stane aktivním editorem.",
+ "verbosity.emptyEditorHint": "Zadejte informace o relevantních akcích v prázdném textovém editoru.",
+ "verbosity.hover": "Zadejte informace o tom, jak otevřít najetí myší v přístupném zobrazení.",
+ "verbosity.inlineCompletions.description": "Zadejte informace o tom, jak získat přístup k vloženému dokončování při najetí myší a přístupném zobrazení.",
+ "verbosity.interactiveEditor.description": "Poskytněte informace o tom, jak získat přístup k nabídce nápovědy pro usnadnění přístupu k vloženému editoru, a upozornění s tipy, které popisují, jak tuto funkci používat, když je fokus na vstupu.",
+ "verbosity.keybindingsEditor.description": "Poskytuje informace o tom, jak změnit klávesovou zkratku v editoru klávesových zkratek, když je zaměřený řádek.",
+ "verbosity.notebook": "Zadejte informace o tom, jak zaměřit kontejner buněk nebo vnitřní editor, když je buňka poznámkového bloku zaměřená.",
+ "verbosity.notification": "Zadejte informace o tom, jak otevřít oznámení v přístupném zobrazení.",
+ "verbosity.replEditor.description": "Zadejte informace o tom, jak získat přístup k nabídce nápovědy pro usnadnění přístupu k editoru REPL, když je fokus na editoru REPL.",
+ "verbosity.scm": "Zadejte informace o tom, jak získat přístup k nabídce nápovědy pro usnadnění přístupu ke správě zdrojového kódu, když je fokus na vstupu.",
+ "verbosity.terminal.description": "Zadejte informace o tom, jak přistupovat k nabídce nápovědy k funkcím terminálu, když je fokus na terminálu.",
+ "verbosity.terminalChatOutput.description": "Zadejte informace o tom, jak otevřít výstup terminálu chatu v zobrazení s podporou přístupnosti.",
+ "verbosity.walkthrough": "Zadejte informace o tom, jak otevřít podrobný návod v zobrazení s podporou přístupnosti.",
+ "voice.ignoreCodeBlocks": "Určuje, jestli se mají ignorovat fragmenty kódu v syntéze textu na řeč.",
+ "voice.speechLanguage": "Jazyk, který by se měl používat pro převod textu na řeč a pro převod řeči na text Pokud je to možné, vyberte možnost Automaticky, pokud chcete použít nakonfigurovaný jazyk zobrazení. Upozorňujeme, že rozpoznávání řeči a řečové syntezátory nemusí podporovat všechny jazyky zobrazení.",
+ "voice.speechTimeout": "Doba v milisekundách, po kterou zůstane rozpoznávání řeči po ukončení řeči aktivní. Například v relaci chatu se přepsaný text odešle automaticky po vypršení časového limitu. Pokud chcete tuto funkci zakázat, nastavte hodnotu 0."
+ },
+ "vs/workbench/contrib/accessibility/browser/accessibilityStatus": {
+ "screenReaderDetected": "Optimalizováno pro čtečku obrazovky",
+ "screenReaderDetectedExplanation.answerLearnMore": "Další informace",
+ "screenReaderDetectedExplanation.answerNo": "Ne",
+ "screenReaderDetectedExplanation.answerYes": "Ano",
+ "screenReaderDetectedExplanation.question": "Zjistilo se využití čtečky obrazovky. Chcete povolit {0} pro optimalizaci editoru pro použití čtečky obrazovky?",
+ "status.editor.screenReaderMode": "Režim čtečky obrazovky"
+ },
+ "vs/workbench/contrib/accessibility/browser/accessibleView": {
+ "accessibility-help": "Nápověda k funkcím přístupnosti",
+ "accessibility-help-hint": "Nápověda k přístupnosti, {0}",
+ "accessible-view": "Přístupné zobrazení",
+ "accessible-view-hint": "Přístupné zobrazení, {0}",
+ "accessibleHelpToolbar": "Nápovědu k funkcím přístupnosti",
+ "accessibleViewNextPreviousHint": "Zobrazte další položku{0} nebo předchozí položku{1}.",
+ "accessibleViewSymbolQuickPickPlaceholder": "Pokud chcete hledat symboly, zadejte text.",
+ "accessibleViewSymbolQuickPickTitle": "Přejít na symbol přístupného zobrazení",
+ "accessibleViewToolbar": "Přístupné zobrazení",
+ "acessibleViewDisableHint": "\r\nZakázat podrobnost přístupnosti pro tuto funkci{0}.",
+ "acessibleViewHint": "Zkontrolujte to v přístupném zobrazení pomocí {0}.",
+ "acessibleViewHintNoKbEither": "Zkontrolujte to v přístupném zobrazení pomocí příkazu Otevřít přístupné zobrazení, které se v tuto chvíli nedá aktivovat klávesovou zkratkou.",
+ "ariaAccessibleViewActions": "Prozkoumejte akce, jako je zakázání tohoto tipu (Shift+Tab).",
+ "ariaAccessibleViewActionsBottom": "Prozkoumejte akce, jako je zakázání tohoto tipu (Shift+Tab), k ukončení tohoto dialogového okna použijte Escape.",
+ "configureKb": "\r\nNakonfigurujte klávesové zkratky pro příkazy, u kterých chybí {0}.",
+ "configureKbAssigned": "\r\nNakonfigurujte klávesové zkratky pro příkazy, které už mají přiřazení {0}.",
+ "disableAccessibilityHelp": "Podrobnosti o přístupnosti {0} jsou teď zakázány",
+ "exit": "\r\nUkončete toto dialogové okno (Escape).",
+ "goToSymbolHint": "Přejděte na symbol{0}.",
+ "insertAtCursor": " - Vložte blok kódu na pozici kurzoru{0}.",
+ "insertIntoNewFile": " - Vložte blok kódu do nového souboru{0}.",
+ "intro": "V přístupném zobrazení můžete:\r\n",
+ "keybindings": "Nakonfigurovat klávesové zkratky",
+ "openDoc": "\r\nOtevřete okno prohlížeče s dalšími informacemi souvisejícími s přístupností{0}.",
+ "runInTerminal": " - Spusťte blok kódu v terminálu{0}.\r\n",
+ "selectKeybinding": "Vyberte ID příkazu, pro který chcete nakonfigurovat klávesovou zkratku.",
+ "symbolLabel": "({0}) {1}",
+ "symbolLabelAria": "({0}) {1}",
+ "toolbar": "Přejít na panel nástrojů (Shift+Tab)."
+ },
+ "vs/workbench/contrib/accessibility/browser/accessibleViewActions": {
+ "editor.action.accessibilityHelp": "Otevřít nápovědu k přístupnosti",
+ "editor.action.accessibilityHelpConfigureAssignedKeybindings": "Nápověda k přístupnosti – konfigurace přiřazených klávesových zkratek",
+ "editor.action.accessibilityHelpConfigureUnassignedKeybindings": "Nápověda k přístupnosti – konfigurace nepřiřazených klávesových zkratek",
+ "editor.action.accessibilityHelpOpenHelpLink": "Nápověda k přístupnosti – otevření odkazu nápovědy",
+ "editor.action.accessibleView": "Otevřené přístupné zobrazení",
+ "editor.action.accessibleViewAcceptInlineCompletionAction": "Přijmout vložené dokončení",
+ "editor.action.accessibleViewDisableHint": "Zakázat nápovědu k zobrazení s podporou přístupnosti",
+ "editor.action.accessibleViewGoToSymbol": "Přejít na symbol v přístupném zobrazení",
+ "editor.action.accessibleViewNext": "Zobrazit další v přístupném zobrazení",
+ "editor.action.accessibleViewNextCodeBlock": "Zobrazení s podporou přístupnosti: Další blok kódu",
+ "editor.action.accessibleViewPrevious": "Zobrazit předchozí v přístupném zobrazení",
+ "editor.action.accessibleViewPreviousCodeBlock": "Zobrazení s podporou přístupnosti: Předchozí blok kódu"
+ },
+ "vs/workbench/contrib/accessibilitySignals/browser/commands": {
+ "accessibility.announcement.help": "Nápověda: Vypsat oznámení signálů",
+ "accessibility.announcement.help.description": "Vypíše všechna oznámení, upozornění a zprávy v Braillově písmu ohledně přístupnosti a umožňuje nakonfigurovat jejich nastavení.",
+ "accessibility.sound.help.description": "Vypíše všechny zvuky, ruchy a zvukové signály pro usnadnění přístupu a nakonfiguruje jejich nastavení.",
+ "announcement.help.placeholder": "Vyberte oznámení, které chcete nakonfigurovat.",
+ "announcement.help.placeholder.disabled": "Čtečka obrazovky není aktivní, oznámení jsou ve výchozím nastavení zakázaná.",
+ "announcement.help.settings": "Nakonfigurovat oznámení",
+ "signals.sound.help": "Nápověda: Výpis zvuků signálů",
+ "sounds.help.placeholder": "Vyberte zvuk, který chcete přehrát a nakonfigurovat.",
+ "sounds.help.settings": "Nakonfigurovat zvuk"
+ },
+ "vs/workbench/contrib/accessibilitySignals/browser/openDiffEditorAnnouncement": {
+ "openDiffEditorAnnouncement": "Editor rozdílů"
+ },
+ "vs/workbench/contrib/accountEntitlements/browser/accountsEntitlements.contribution": {
+ "workbench.accounts.showEntitlements": "When enabled, available entitlements for the account will be shown in the accounts menu."
},
"vs/workbench/contrib/audioCues/browser/audioCues.contribution": {
+ "audioCues.chatRequestSent": "Při vytvoření žádosti o chat přehraje zvuk.",
+ "audioCues.chatResponsePending": "V průběhu čekání na vyřízení žádosti přehrává zvuk ve smyčce.",
+ "audioCues.chatResponseReceived": "Při přijetí žádosti přehrává zvuk ve smyčce.",
+ "audioCues.clear": "Přehraje zvuk při vymazání funkce (například terminál, konzola ladění nebo výstupní kanál). Pokud je zakázáno, oznámí upozornění ARIA „Vymazáno“.",
+ "audioCues.debouncePositionChanges": "Určuje, jestli by se změny pozice měly filtrovat (debouncing).",
+ "audioCues.diffLineDeleted": "Přehraje zvuk, když se fokus přesune na odstraněný řádek v režimu Prohlížeč Diff s podporou přístupnosti nebo na další/předchozí změnu.",
+ "audioCues.diffLineInserted": "Přehraje zvuk, když se fokus přesune na vložený řádek v režimu Prohlížeč Diff s podporou přístupnosti nebo na další/předchozí změnu.",
+ "audioCues.diffLineModified": "Přehraje zvuk, když se fokus přesune na upravený řádek v režimu Prohlížeč Diff s podporou přístupnosti nebo na další/předchozí změnu.",
"audioCues.enabled.auto": "Povolí zvukový signál, pokud je připojena čtečka obrazovky.",
"audioCues.enabled.off": "Zakázat zvukový signál.",
"audioCues.enabled.on": "Povolit zvukový signál.",
+ "audioCues.format": "Přehraje zvuk při naformátování souboru nebo poznámkového bloku. Viz taky: {0}",
+ "audioCues.format.always": "Přehraje zvukový signál vždy, když je naformátován soubor, včetně toho, jestli je nastavený na formátování při uložení, zadání při vložení nebo spuštění buňky.",
+ "audioCues.format.never": "Nikdy nepřehraje zvukový signál.",
+ "audioCues.format.userGesture": "Přehraje zvukový signál, když uživatel explicitně naformátuje soubor.",
"audioCues.lineHasBreakpoint": "Přehraje zvuk, pokud aktivní řádek obsahuje zarážku.",
"audioCues.lineHasError": "Přehraje zvuk, pokud aktivní řádek obsahuje chybu.",
"audioCues.lineHasFoldedArea": "Přehraje zvuk, pokud aktivní řádek obsahuje sbalenou oblast, která se nedá rozbalit.",
"audioCues.lineHasInlineSuggestion": "Přehraje zvuk, pokud aktivní řádek obsahuje vložený návrh.",
"audioCues.lineHasWarning": "Přehraje zvuk, pokud aktivní řádek obsahuje upozornění.",
"audioCues.noInlayHints": "Přehraje zvuk při pokusu o čtení řádku s naznačovací nápovědou, když žádnou naznačovací nápovědu nemá.",
+ "audioCues.notebookCellCompleted": "Přehraje zvuk po úspěšném dokončení provádění buňky poznámkového bloku.",
+ "audioCues.notebookCellFailed": "Přehraje zvuk, když se nezdaří spuštění buňky poznámkového bloku.",
"audioCues.onDebugBreak": "Přehraje zvuk, pokud se ladicí program zastavil na zarážce.",
+ "audioCues.save": "Přehraje zvuk při uložení souboru. Viz taky: {0}",
+ "audioCues.save.always": "Přehraje zvukový signál při každém uložení souboru, včetně automatického uložení.",
+ "audioCues.save.never": "Nikdy nepřehraje zvukový signál.",
+ "audioCues.save.userGesture": "Přehraje zvukový signál, když uživatel explicitně uloží soubor.",
+ "audioCues.taskCompleted": "Přehraje zvuk po dokončení úkolu.",
+ "audioCues.taskFailed": "Přehraje zvuk, když úloha selže (nenulový ukončovací kód).",
+ "audioCues.terminalCommandFailed": "Přehraje zvuk, když příkaz terminálu selže (nenulový ukončovací kód).",
+ "audioCues.terminalQuickFix": "Přehraje zvuk, když jsou k dispozici rychlé opravy terminálu.",
"audioCues.volume": "Hlasitost zvukových signálů v procentech (0–100)."
},
"vs/workbench/contrib/audioCues/browser/commands": {
+ "accessibility.alert.help": "Nápověda: Vypsat upozornění",
+ "alerts.help.placeholder": "Zkontrolovat a nakonfigurovat stav upozornění",
+ "alerts.help.settings": "Povolit/zakázat zvukový signál",
"audioCues.help": "Nápověda: Seznam Zvukových signálů",
"audioCues.help.placeholder": "Vyberte zvukový signál, který se má přehrát",
"audioCues.help.settings": "Povolit/zakázat zvukový signál",
"disabled": "Zakázáno"
},
- "vs/workbench/contrib/backup/electron-sandbox/backupTracker": {
- "backupTrackerBackupFailed": "Následující editory, které obsahují neuložené změny, se nepovedlo uložit na umístění zálohy.",
- "backupTrackerConfirmFailed": "Následující editory, které obsahují neuložené změny, se nepovedlo uložit nebo vrátit na uložená data.",
- "backupErrorDetails": "Zkuste nejdříve uložit editory obsahující neuložené změny (nebo tyto změny v editorech vrátit zpět) a potom to zkuste znovu.",
- "ok": "OK",
- "backupBeforeShutdown": "Čeká se na zálohování editorů s neuloženými změnami...",
- "saveBeforeShutdown": "Čeká se na uložení editorů s neuloženými změnami...",
- "revertBeforeShutdown": "Čeká se na vrácení editorů s neuloženými změnami..."
+ "vs/workbench/contrib/authentication/browser/actions/manageAccountPreferencesForExtensionAction": {
+ "accounts": "Účty",
+ "currentAccount": "Aktuální účet",
+ "manageAccountPreferenceForExtension": "Spravovat předvolby účtu rozšíření...",
+ "noAccountUsage": "Pro toto rozšíření zatím nebyly použity žádné účty.",
+ "noAccounts": "Toto rozšíření aktuálně nepoužívá žádné účty.",
+ "pickAProviderTitle": "Spravovat předvolby účtu rozšíření",
+ "placeholder v2": "Spravovat předvolby účtu {0} pro: {1}…",
+ "selectExtension": "Vyberte rozšíření, pro které chcete spravovat předvolby účtu.",
+ "selectProvider": "Vyberte zprostředkovatele ověřování, pro kterého chcete spravovat předvolby účtu.",
+ "title": "Předvolby účtu {0} pro tento pracovní prostor",
+ "use new account": "Použít nový účet..."
+ },
+ "vs/workbench/contrib/authentication/browser/actions/manageAccountPreferencesForMcpServerAction": {
+ "accounts": "Účty",
+ "currentAccount": "Aktuální účet",
+ "manageAccountPreferenceForMcpServer": "Spravovat předvolby účtu serveru MCP",
+ "noAccountUsage": "Tento server MCP zatím nepoužil žádné účty.",
+ "noAccounts": "Tento server MCP aktuálně nepoužívá žádné účty.",
+ "pickAProviderTitle": "Spravovat předvolby účtu serveru MCP",
+ "placeholder v2": "Spravovat předvolby účtu {0} pro: {1}…",
+ "selectProvider": "Vyberte zprostředkovatele ověřování, pro kterého chcete spravovat předvolby účtu.",
+ "title": "Předvolby účtu {0} pro tento pracovní prostor",
+ "use new account": "Použít nový účet..."
+ },
+ "vs/workbench/contrib/authentication/browser/actions/manageAccountsAction": {
+ "accounts": "Účty",
+ "manageAccount": "Spravovat {0}",
+ "manageAccounts": "Spravovat účty",
+ "manageTrustedExtensions": "Spravovat důvěryhodná rozšíření",
+ "manageTrustedMCPServers": "Spravovat důvěryhodné servery MCP",
+ "noActiveAccounts": "Neexistují žádné aktivní účty.",
+ "pickAccount": "Vyberte účet, který chcete spravovat",
+ "selectAction": "Vyberte akci",
+ "signOut": "Odhlásit se"
+ },
+ "vs/workbench/contrib/authentication/browser/actions/manageDynamicAuthenticationProvidersAction": {
+ "authenticationCategory": "Ověřování",
+ "clientId": "ID klienta: {0}",
+ "confirmDeleteDetail": "Tato operace odebere všechna uložená ověřovací data pro vybrané poskytovatele. Pokud tyto poskytovatele znovu použijete, budete se muset znovu ověřit.",
+ "confirmDeleteMultipleProviders": "Opravdu chcete odebrat poskytovatele dynamického ověřování (celkem {0}): {1}?",
+ "confirmDeleteSingleProvider": "Opravdu chcete odebrat poskytovatele dynamického ověřování {0}?",
+ "noDynamicProviders": "Žádní poskytovatelé dynamického ověřování",
+ "noDynamicProvidersDetail": "Zatím nebyli použiti žádní poskytovatelé dynamického ověřování.",
+ "remove": "Odebrat",
+ "removeDynamicAuthProviders": "Odebrat poskytovatele dynamického ověřování",
+ "selectProviderToRemove": "Vyberte poskytovatele dynamického ověřování, kterého chcete odebrat."
+ },
+ "vs/workbench/contrib/authentication/browser/actions/manageTrustedExtensionsForAccountAction": {
+ "accountLastUsedDate": "Tento účet byl naposledy použit {0}.",
+ "accountPreferences": "Spravovat předvolby účtu pro toto rozšíření",
+ "accounts": "Účty",
+ "manageExtensions": "Zvolte, která rozšíření mají mít přístup k tomuto účtu.",
+ "manageTrustedExtensions": "Spravovat důvěryhodná rozšíření",
+ "manageTrustedExtensions.cancel": "Zrušit",
+ "manageTrustedExtensionsForAccount": "Spravovat důvěryhodná rozšíření pro účet",
+ "noTrustedExtensions": "Tento účet nepoužilo žádné rozšíření.",
+ "notUsed": "Tento účet nebyl použit.",
+ "pickAccount": "Vyberte účet pro správu důvěryhodných rozšíření pro",
+ "trustedExtensionTooltip": "Toto rozšíření je považováno za důvěryhodné společností Microsoft a\r\nvždy má přístup k tomuto účtu",
+ "trustedExtensions": "Považováno za důvěryhodné společností Microsoft",
+ "viewExtensionDetails": "Zobrazit podrobnosti o rozšíření"
+ },
+ "vs/workbench/contrib/authentication/browser/actions/manageTrustedMcpServersForAccountAction": {
+ "accountLastUsedDate": "Tento účet byl naposledy použit {0}.",
+ "accountPreferences": "Spravovat předvolby účtu pro tento server MCP",
+ "accounts": "Účty",
+ "manageMcpServers": "Zvolte, které servery MCP mohou přistupovat k tomuto účtu.",
+ "manageTrustedMcpServers": "Spravovat důvěryhodné servery MCP",
+ "manageTrustedMcpServers.cancel": "Zrušit",
+ "manageTrustedMcpServersForAccount": "Spravovat důvěryhodné servery MCP pro účet",
+ "noTrustedMcpServers": "Tento účet nebyl používán žádnými servery MCP.",
+ "notUsed": "Tento účet nebyl použit.",
+ "pickAccount": "Vyberte účet pro správu důvěryhodných serverů MCP pro",
+ "trustedMcpServerTooltip": "Tento server MCP považuje za důvěryhodný společnost Microsoft a\r\nvždy má přístup k tomuto účtu",
+ "trustedMcpServers": "Považováno za důvěryhodné společností Microsoft"
+ },
+ "vs/workbench/contrib/authentication/browser/actions/signOutOfAccountAction": {
+ "signOut": "&&Odhlásit se",
+ "signOutMessage": "Účet {0} se použil pro: \r\n\r\n{1}\r\n\r\n Chcete se z těchto rozšíření odhlásit?",
+ "signOutMessageSimple": "Chcete se odhlásit z {0}?",
+ "signOutOfAccount": "Odhlásit se z účtu"
+ },
+ "vs/workbench/contrib/authentication/browser/authentication.contribution": {
+ "authentication": "Ověřování",
+ "authenticationMcpAuthorizationServers": "Autorizační servery MCP",
+ "authenticationid": "ID",
+ "authenticationlabel": "Popisek"
},
"vs/workbench/contrib/bulkEdit/browser/bulkEditService": {
- "areYouSureQuiteBulkEdit": "Opravdu chcete {0}? Probíhá {1}.",
- "changeWorkspace": "Změnit pracovní prostor",
- "closeTheWindow": "Zavřít okno",
+ "areYouSureQuiteBulkEdit.detail": "Akce {0} probíhá.",
+ "changeWorkspace.message": "Opravdu chcete změnit pracovní prostor?",
+ "closeTheWindow.message": "Opravdu chcete okno zavřít?",
"fileOperation": "Operace souboru",
"nothing": "Nebyly provedeny žádné úpravy.",
- "quit": "Ukončit",
+ "quitMessage": "Opravdu chcete skončit?",
+ "quitMessageMac": "Opravdu chcete skončit?",
"refactoring.autoSave": "Určuje, jestli se soubory, které byly součástí refaktoringu, ukládají automaticky.",
- "reloadTheWindow": "Znovu načíst okno",
+ "reloadTheWindow.message": "Opravdu chcete znovu načíst okno?",
"summary.0": "Nebyly provedeny žádné úpravy.",
"summary.n0": "Provedeno {0} textových úprav v jednom souboru",
"summary.nm": "Provedeno {0} textových úprav v {1} souborech",
@@ -4259,9 +5793,8 @@
"vs/workbench/contrib/bulkEdit/browser/preview/bulkEdit.contribution": {
"Discard": "Zahodit refaktoring",
"apply": "Použít refaktoring",
- "cancel": "Zrušit",
"cat": "Náhled refaktoringu",
- "continue": "Pokračovat",
+ "continue": "&&Pokračovat",
"detail": "Kliknutím na Pokračovat zahodíte předchozí refaktoring a budete pokračovat s aktuálním refaktoringem.",
"groupByFile": "Seskupit změny podle souboru",
"groupByType": "Seskupit změny podle typu",
@@ -4274,13 +5807,8 @@
"cancel": "Zahodit",
"conflict.1": "Refaktoring nelze použít, protože soubor {0} se mezitím změnil.",
"conflict.N": "Refaktoring nelze použít, protože se mezitím změnily některé další soubory ({0}).",
- "create": "vytvořit",
- "edt.title.1": "{0} (náhled refaktoringu)",
- "edt.title.2": "{0} ({1}, náhled refaktoringu)",
- "edt.title.del": "{0} (odstranění, náhled refaktoringu)",
"empty.msg": "Vyvoláním akce kódu, jako je přejmenování, tady zobrazíte náhled jejích změn.",
- "ok": "Použít",
- "rename": "přejmenovat"
+ "ok": "Použít"
},
"vs/workbench/contrib/bulkEdit/browser/preview/bulkEditPreview": {
"default": "Jiné"
@@ -4329,67 +5857,1937 @@
"to": "volající pro {0}",
"tree.aria": "Hierarchie volání"
},
- "vs/workbench/contrib/cli/node/cli.contribution": {
- "shellCommand": "Příkaz prostředí",
- "install": "Nainstalovat příkaz {0} v proměnné PATH",
- "not available": "Tento příkaz není k dispozici.",
- "ok": "OK",
- "cancel2": "Zrušit",
- "warnEscalation": "Code vás nyní pomocí nástroje osascript požádá o oprávnění správce k instalaci příkazu prostředí.",
- "cantCreateBinFolder": "Nelze vytvořit složku /usr/local/bin.",
- "aborted": "Přerušeno",
- "successIn": "Příkaz prostředí {0} se úspěšně nainstaloval do proměnné PATH.",
- "uninstall": "Odinstalovat příkaz {0} z proměnné PATH",
- "warnEscalationUninstall": "Code vás nyní pomocí nástroje osascript požádá o oprávnění správce k odinstalaci příkazu prostředí.",
- "cantUninstall": "Nelze odinstalovat příkaz prostředí {0}.",
- "successFrom": "Příkaz prostředí {0} se úspěšně odinstaloval z proměnné PATH."
+ "vs/workbench/contrib/chat/browser/actions/chatAccessibilityActions": {
+ "chat.category": "Chat",
+ "chatNotReady": "Rozhraní chatu není připravené.",
+ "focusChatConfirmation": "Přesunout fokus na potvrzení chatu",
+ "noChatSession": "Nenašla se žádná aktivní relace chatu.",
+ "noConfirmationRequired": "Nevyžaduje se žádné potvrzení chatu."
+ },
+ "vs/workbench/contrib/chat/browser/actions/chatAccessibilityHelp": {
+ "chat.announcement": "Odpovědi na chat budou oznámeny, jakmile přijdou. Odpověď bude označovat počet bloků kódu, pokud nějaké jsou, a zbytek odpovědi.",
+ "chat.attachments.removal": "To remove attached contexts, focus an attachment and press Delete or Backspace.",
+ "chat.differencePanel": "Zobrazení chatu na panelu je trvalé rozhraní, které podporuje také navigaci v navrhovaných doplňujících otázkách, zatímco zobrazení rychlého chatu je přechodné rozhraní pro zadávání a prohlížení požadavků.",
+ "chat.differenceQuick": "Zobrazení rychlého chatu je přechodné rozhraní pro zadávání a prohlížení požadavků, zatímco zobrazení chatu na panelu je trvalé rozhraní, které podporuje také navigaci v navrhovaných doplňujících otázkách.",
+ "chat.focusMostRecentTerminal": "To focus the last chat terminal that ran a tool, invoke the Focus Most Recent Chat Terminal command{0}.",
+ "chat.focusMostRecentTerminalOutput": "To focus the output from the last chat terminal tool, invoke the Focus Most Recent Chat Terminal Output command{0}.",
+ "chat.inspectResponse": "Ve vstupním poli zkontrolujte poslední odpověď v přístupném zobrazení{0}.",
+ "chat.overview": "Zobrazení rychlého chatu se skládá ze vstupního pole a seznamu požadavků a odpovědí. Vstupní pole se používá k zadávání požadavků a seznam se používá k zobrazení odpovědí.",
+ "chat.progressVerbosity": "Pokud zpracování požadavku na chat trvá déle než 4 sekundy, zobrazí se slovní aktualizace průběhu. To zahrnuje informace jako hledaný text pro s X výsledky, vytvořený soubor nebo načtený soubor . To se dá zakázat pomocí funkce accessibility.verboseChatProgressUpdates.",
+ "chat.requestHistory": "Ve vstupním poli můžete pomocí šipek nahoru a dolů procházet historii požadavků. Upravte vstup a pomocí klávesy Enter nebo tlačítka Odeslat spusťte novou žádost.",
+ "chat.showHiddenTerminals": "If there are any hidden chat terminals, you can view them by invoking the View Hidden Chat Terminals command{0}.",
+ "chat.signals": "Signály přístupnosti se dají změnit prostřednictvím nastavení s předponou signals.chat. Pokud žádost trvá déle než 4 sekundy, uslyšíte ve výchozím nastavení zvuk, který indikuje, že nadále pokračuje její zpracování.",
+ "chatAgent.acceptTool": "Pokud chcete přijmout akci nástroje, použijte příkaz pro potvrzení přijetí nástroje {0}.",
+ "chatAgent.autoApprove": "Pokud chcete automaticky schvalovat akce nástrojů bez ručního potvrzení, v nastavení nastavte {0} na {1}.",
+ "chatAgent.openEditedFilesSetting": "Ve výchozím nastavení se při úpravách souborů otevřou. Pokud chcete toto chování změnit, nastavte v nastavení accessibility.openChatEditedFiles na false.",
+ "chatAgent.overview": "Zobrazení chatovacího agenta slouží k použití úprav v souborech v pracovním prostoru, povolení spuštěných příkazů v terminálu a dalším akcím.",
+ "chatAgent.runCommand": "Pokud chcete provést akci, použijte příkaz přijetí nástroje{0}.",
+ "chatAgent.userActionRequired": "Upozornění bude indikovat, kdy je vyžadována akce uživatele. Pokud třeba agent chce něco spustit v terminálu, uslyšíte „Vyžaduje se akce: spusťte příkaz v terminálu“.",
+ "chatEditing.acceptAllFiles": "- Zachovat všechny úpravy{0}.",
+ "chatEditing.acceptFile": "- Zachovat{0} a vrátit zpět soubor{1}.",
+ "chatEditing.acceptHunk": "V editoru zvolte Zachovat{0}, Vrátit zpět{1} nebo Přepnout rozdíl{2} pro aktuální změnu.",
+ "chatEditing.discardAllFiles": "- Vrátit zpět všechny úpravy{0}.",
+ "chatEditing.expectation": "Když se odešle požadavek, během provádění úprav se přehraje indikátor průběhu.",
+ "chatEditing.format": "Skládá se ze vstupního pole a pracovní sady souboru (Shift+Tab).",
+ "chatEditing.helpfulCommands": "Příklady užitečných příkazů:",
+ "chatEditing.openFileInDiff": "- Otevřít soubor v rozdílových{0}",
+ "chatEditing.overview": "Zobrazení pro úpravy chatu se používá k použití úprav v souborech.",
+ "chatEditing.removeFileFromWorkingSet": "- Odebrat soubor z{0} pracovní sady",
+ "chatEditing.review": "Po použití úprav se přehraje zvuk, který indikuje, že dokument je otevřený a připravený k revizi. Zvuk lze zakázat pomocí accessibility.signals.chatEditModifiedFile.",
+ "chatEditing.saveAllFiles": "- Uložit všechny soubory{0}.",
+ "chatEditing.sections": "Mezi úpravami v editoru můžete přecházet mezi předchozími{0} a dalšími{1}",
+ "chatEditing.undoKeepSounds": "Při přijetí nebo vrácení změny zpět se přehrají zvuky. Zvuky lze zakázat pomocí možností accessibility.signals.editsKept a accessibility.signals.editsUndone.",
+ "inlineChat.access": "Dá se aktivovat prostřednictvím akcí kódu nebo přímo pomocí příkazu Vložený chat: Spustit vložený chat{0}.",
+ "inlineChat.contextActions": "Akce kontextové nabídky můžou spouštět požadavek s předponou /. Pokud chcete zjistit takové připravené příkazy, zadejte /.",
+ "inlineChat.diff": "Jakmile budete v editoru rozdílů, přejděte do režimu kontroly pomocí{0}. Pomocí šipek nahoru a dolů můžete procházet řádky s navrhovanými změnami.",
+ "inlineChat.fix": "Pokud se vyvolá akce opravy, bude odpověď označovat problém s aktuálním kódem. Vykreslí se editor rozdílů, který bude dostupný pomocí tabulátoru.",
+ "inlineChat.inspectResponse": "Ve vstupním poli zkontrolujte odpověď v přístupném zobrazení{0}.",
+ "inlineChat.overview": "Vložený chat probíhá v editoru kódu a bere v úvahu aktuální výběr. Je užitečný pro provádění změn v aktuálním editoru. Například oprava diagnostiky, dokumentace nebo refaktoringu kódu. Mějte na paměti, že kód vygenerovaný umělou inteligencí může obsahovat nepřesnosti a chyby.",
+ "inlineChat.requestHistory": "Ve vstupním poli můžete pomocí tlačítek Zobrazit předchozí{0} a Zobrazit další{1} procházet historií žádostí. Upravte vstup a pomocí klávesy Enter nebo tlačítka odeslat spusťte nový požadavek.",
+ "inlineChat.toolbar": "Tabulátor slouží k dosažení podmíněných částí, jako jsou příkazy, stav, odpovědi na zprávy a další.",
+ "workbench.action.chat.announceConfirmation": "Pokud chcete přesunout fokus na dialogy s čekajícími potvrzeními chatu, vyvolejte příkaz pro přesunutí fokusu na stav potvrzení chatu{0}.",
+ "workbench.action.chat.editing.attachFiles": "- Připojit soubory{0}.",
+ "workbench.action.chat.focus": "To focus the chat request and response list, invoke the Focus Chat command{0}. This will move focus to the most recent response, which you can then navigate using the up and down arrow keys.",
+ "workbench.action.chat.focusInput": "Pokud chcete přesunout fokus na vstupní pole pro žádosti o chat, vyvolejte příkaz pro přesunutí fokusu na vstup chatu{0}.",
+ "workbench.action.chat.focusLastFocusedItem": "To return to the last chat response you focused, invoke the Focus Last Focused Chat Response command{0}.",
+ "workbench.action.chat.newChat": "Pokud chcete vytvořit novou relaci chatu, vyvolejte příkaz Nový chat{0}.",
+ "workbench.action.chat.nextCodeBlock": "Pokud chcete v odpovědi přesunout fokus na další blok kódu, vyvolejte příkaz Chat: Další blok kódu{0}.",
+ "workbench.action.chat.nextUserPrompt": "To navigate to the next user prompt in the conversation, invoke the Next User Prompt command{0}.",
+ "workbench.action.chat.previousUserPrompt": "To navigate to the previous user prompt in the conversation, invoke the Previous User Prompt command{0}.",
+ "workbench.action.chat.undoEdits": "- Zpět Úpravy{0}."
+ },
+ "vs/workbench/contrib/chat/browser/actions/chatActions": {
+ "actions.interactiveSession.focus": "Seznam chatu pro lepší soustředění",
+ "actions.interactiveSession.focusLastFocused": "Focus Last Focused Chat List Item",
+ "agent.newSession": "Chcete začít novou relaci?",
+ "agent.newSession.confirm": "Ano",
+ "agent.newSessionMessage": "Changing the agent will end your current edit session. Would you like to change the agent?",
+ "chat.category": "Chat",
+ "chat.clear.label": "Vymazat všechny chaty pracovního prostoru",
+ "chat.editToolApproval.description": "Edit/manage the tool approval and confirmation preferences for AI chat agents.",
+ "chat.editToolApproval.label": "Manage Tool Approval",
+ "chat.history.label": "Zobrazit chaty…",
+ "chat.history.recent": "Poslední chaty",
+ "chat.history.rename": "Přejmenovat",
+ "chat.history.showMore": "Zobrazit další...",
+ "chat.history.showMoreAgents": "Zobrazit další...",
+ "chat.openNewChatToTheSide.label": "Otevřít nový editor chatu na straně",
+ "chat.toggleChatHistoryVisibility.label": "Chat History",
+ "chat.toggleDefaultVisibility.label": "Standardně zobrazit zobrazení",
+ "chatAndCompletionsQuotaExceeded": "You've reached your monthly chat messages and inline suggestions quota.",
+ "chatQuotaExceeded": "You've reached your monthly chat messages quota. You still have free inline suggestions available.",
+ "chatQuotaExceededButton": "Bylo dosaženo kvóty pro zprávy chatu plánu GitHub Copilot Free. Kliknutím zobrazíte podrobnosti.",
+ "chatSessions.newChatInSideBar": "Otevřít nový chat na bočním panelu",
+ "chatSessions.openNewChatInNewWindow": "Otevřít nový chat v novém okně",
+ "completionsQuotaExceeded": "You've reached your monthly inline suggestions quota. You still have free chat messages available.",
+ "config.label": "Configure Chat",
+ "configureCompletions": "Configure Inline Suggestions...",
+ "copilotQuotaReached": "Dosáhli jste kvóty plánu GitHub Copilot.",
+ "currentChatLabel": "aktuální",
+ "dismiss": "Zavřít",
+ "generateCode": "Vygenerovat kód",
+ "generateInstructions": "Vygenerovat soubor s pokyny k pracovnímu prostoru",
+ "generateInstructions.short": "Generate Chat Instructions",
+ "interactiveSession.clearHistory.label": "Vymazat historii vstupu",
+ "interactiveSession.focusInput.label": "Vstup chatu na intenzivní práci",
+ "interactiveSession.history.clear": "Vymazat všechny chaty pracovního prostoru",
+ "interactiveSession.history.delete": "Odstranit",
+ "interactiveSession.history.editor": "Otevřít v editoru",
+ "interactiveSession.history.pick": "Přepnout na chat",
+ "interactiveSession.history.title": "Historie chatu pracovního prostoru",
+ "interactiveSession.history.titleAll": "Veškerá historie chatu pracovního prostoru",
+ "interactiveSession.newChatWindow": "Nové okno chatu",
+ "interactiveSession.open": "Nový editor chatu",
+ "manageChat": "Spravovat chat",
+ "more": "Další…",
+ "newChatTitle": "Nový název chatu",
+ "openChat": "Otevřít chat",
+ "openChatFeatureSettings": "Nastavení chatu",
+ "openChatFeatureSettings.short": "Nastavení chatu",
+ "openChatMode": "Otevřít chat ({0})",
+ "quotaResetDate": "Kvóta se resetuje {0}.",
+ "resetTrustedTools": "Potvrzení resetování nástroje",
+ "resetTrustedToolsSuccess": "Předvolby potvrzení nástroje byly resetovány.",
+ "showCopilotUsageExtensions": "Zobrazit rozšíření pomocí Copilotu",
+ "signInToChatSetup": "Přihlaste se, abyste mohli používat AI funkce...",
+ "switchChat.confirmPhrase": "Přepnutím chatů ukončíte aktuální relaci úprav.",
+ "switchMode.confirmPhrase": "Switching agents will end your current edit session.",
+ "title4": "Chat",
+ "toggle.chatControl": "Ovládací prvky chatu",
+ "toggle.chatControlsDescription": "Přepnout viditelnost ovládacích prvků chatu v záhlaví",
+ "toggleChat": "Přepnout chat",
+ "upgradeChat": "Upgradovat plán GitHub Copilot",
+ "upgradePlan": "Upgradovat plán GitHub Copilot",
+ "upgradePro": "Upgradovat na plán GitHub Copilot Pro",
+ "upgradeToPro": "Upgrade to GitHub Copilot Pro (your first 30 days are free) for:\r\n- Unlimited inline suggestions\r\n- Unlimited chat messages\r\n- Access to premium models"
+ },
+ "vs/workbench/contrib/chat/browser/actions/chatCodeblockActions": {
+ "interactive.applyInEditor.label": "Použít v editoru",
+ "interactive.applyInEditorWithURL.label": "Použít u {0}",
+ "interactive.compare.apply": "Použít úpravy",
+ "interactive.compare.discard": "Zahodit úpravy",
+ "interactive.copyCodeBlock.label": "Kopírovat",
+ "interactive.insertCodeBlock.label": "Vložit na pozici kurzoru",
+ "interactive.insertIntoNewFile.label": "Vložit do nového souboru",
+ "interactive.nextCodeBlock.label": "Další blok kódu",
+ "interactive.previousCodeBlock.label": "Předchozí blok kódu",
+ "interactive.runInTerminal.label": "Vložit do terminálu"
+ },
+ "vs/workbench/contrib/chat/browser/actions/chatContext": {
+ "chatContext.attachScreenshot.labelElectron.Window": "Okno snímku obrazovky",
+ "chatContext.attachScreenshot.labelWeb": "Snímek obrazovky",
+ "chatContext.editors": "Otevřít editory",
+ "chatContext.relatedFiles": "Související soubory",
+ "chatContext.tools": "Nástroje...",
+ "chatContext.tools.placeholder": "Vyberte nástroj",
+ "imageFromClipboard": "Obrázek ze schránky",
+ "pastedImage": "Vložený obrázek",
+ "relatedFiles": "Přidat související soubory do pracovní sady",
+ "terminal": "Terminal"
+ },
+ "vs/workbench/contrib/chat/browser/actions/chatContextActions": {
+ "chat.insertSearchResults": "Přidat výsledky hledání do chatu",
+ "chatContext.attach.placeholder": "Hledat přílohy",
+ "goBack": "Přejít zpět ↩",
+ "workbench.action.chat.attachContext.label.2": "Přidat kontext...",
+ "workbench.action.chat.attachFile.label": "Přidat soubor do chatu",
+ "workbench.action.chat.attachFolder.label": "Přidat složku do chatu",
+ "workbench.action.chat.attachSelection.label": "Přidat výběr do chatu"
+ },
+ "vs/workbench/contrib/chat/browser/actions/chatContinueInAction": {
+ "chat.learnMore": "Learn More",
+ "continueChatInSession": "Continue Chat in...",
+ "continueSessionIn": "Pokračovat za {0}"
+ },
+ "vs/workbench/contrib/chat/browser/actions/chatCopyActions": {
+ "chat.copyKatexMathSource.label": "Copy Math Source",
+ "interactive.copyAll.label": "Kopírovat vše",
+ "interactive.copyItem.label": "Kopírovat"
+ },
+ "vs/workbench/contrib/chat/browser/actions/chatDeveloperActions": {
+ "workbench.action.chat.logChatIndex.label": "Protokolovat index chatu",
+ "workbench.action.chat.logInputHistory.label": "Protokolovat historii vstupů chatu"
+ },
+ "vs/workbench/contrib/chat/browser/actions/chatElicitationActions": {
+ "chat.acceptElicitation": "Accept Request"
+ },
+ "vs/workbench/contrib/chat/browser/actions/chatExecuteActions": {
+ "actions.chat.submitWithCodebase": "Odeslat s: {0}",
+ "chat.newChat.label": "Odeslat do nového chatu",
+ "chat.remove.confirmation.checkbox": "Příště se už neptat",
+ "chat.remove.confirmation.message2": "Tato akce odebere všechny následné žádosti a vrátí zpět úpravy provedené v {0}. Chcete pokračovat?",
+ "chat.remove.confirmation.multipleEdits.message": "Tato akce odebere všechny následné žádosti a vrátí zpět úpravy provedené v {0} souborech ve vaší pracovní sadě. Chcete pokračovat?",
+ "chat.remove.confirmation.primaryButton": "Ano",
+ "chat.remove.confirmation.title": "Chcete vrátit zpět úpravy ({0})?",
+ "chat.removeLast.confirmation.message2": "Tato akce odebere vaši poslední žádost a vrátí zpět úpravy provedené v {0}. Chcete pokračovat?",
+ "chat.removeLast.confirmation.multipleEdits.message": "Tato akce odebere vaši poslední žádost a vrátí zpět úpravy provedené v {0}souborech ve vaší pracovní sadě. Chcete pokračovat?",
+ "chat.removeLast.confirmation.title": "Chcete vrátit zpět poslední úpravu?",
+ "edits.submit.label": "Odeslat",
+ "interactive.cancel.label": "Zrušit",
+ "interactive.cancelEdit.label": "Zrušit úpravy",
+ "interactive.changeModel.label": "Změnit model",
+ "interactive.openChatSessionPrimaryPicker.label": "Open Picker",
+ "interactive.openModePicker.label": "Open Agent Picker",
+ "interactive.openModelPicker.label": "Otevřít ovládací prvek pro výběr modelu",
+ "interactive.submit.label": "Poslat",
+ "interactive.submit.panel.label": "Odeslat do relace úprav",
+ "interactive.submitWithoutDispatch.label": "Odeslat",
+ "interactive.switchToNextModel.label": "Přepnout na další model",
+ "interactive.toggleAgent.label": "Switch to Next Agent",
+ "sendToAgent": "Send to Agent",
+ "setChatMode": "Set Agent"
+ },
+ "vs/workbench/contrib/chat/browser/actions/chatFileTreeActions": {
+ "interactive.nextFileTree.label": "Další Strom souborů",
+ "interactive.previousFileTree.label": "Předchozí strom souborů"
+ },
+ "vs/workbench/contrib/chat/browser/actions/chatImportExport": {
+ "chat.export.label": "Exportovat chat…",
+ "chat.file.label": "Relace chatu",
+ "chat.import.label": "Importovat chat…"
+ },
+ "vs/workbench/contrib/chat/browser/actions/chatLanguageModelActions": {
+ "extensionOwner": "{0}",
+ "languageModelAuthPlaceholder": "Zvolte, která rozšíření mohou přistupovat k jazykovým modelům",
+ "languageModelAuthTitle": "Správa přístupu k jazykovému modelu",
+ "manageLanguageModelAuthentication": "Spravovat přístup k jazykovému modelu...",
+ "noAccessDescription": "V tuto chvíli nejsou povolená žádná rozšíření, která by používala modely z {0}.",
+ "noAllowedExtensions": "Žádná rozšíření nemají přístup.",
+ "noLanguageModels": "Nenašly se žádné jazykové modely, které by vyžadovaly ověření.",
+ "noLanguageModelsDetail": "Aktuálně neexistují žádné jazykové modely, které by vyžadovaly ověření.",
+ "openExtension": "Otevřít rozšíření",
+ "trustedExtension": "Považováno za důvěryhodné společností Microsoft"
+ },
+ "vs/workbench/contrib/chat/browser/actions/chatMoveActions": {
+ "chat.openInEditor.label": "Move Chat into Editor Area",
+ "chat.openInNewWindow.label": "Move Chat into New Window",
+ "interactiveSession.openInPanel.label": "Move Chat into Panel",
+ "interactiveSession.openInPrimarySidebar.label": "Move Chat into Primary Side Bar",
+ "interactiveSession.openInSecondarySidebar.label": "Move Chat into Secondary Side Bar",
+ "interactiveSession.openInSidebar.label": "Move Chat into Side Bar"
+ },
+ "vs/workbench/contrib/chat/browser/actions/chatNewActions": {
+ "chat.newChat.label": "New Chat",
+ "chat.newEdits.label": "New Chat",
+ "chat.redoEdit.label": "Redo Last Request",
+ "chat.redoEdit.label2": "Redo",
+ "chat.redoEdit.tooltip": "Znovu použijte zahozené změny pracovního prostoru a chatu",
+ "chat.undoEdit.label": "Undo Last Request"
+ },
+ "vs/workbench/contrib/chat/browser/actions/chatPromptNavigationActions": {
+ "interactive.nextUserPrompt.label": "Next User Prompt",
+ "interactive.previousUserPrompt.label": "Previous User Prompt"
+ },
+ "vs/workbench/contrib/chat/browser/actions/chatQuickInputActions": {
+ "chat.closeQuickChat.label": "Zavřít rychlý chat",
+ "chat.openInChatView.label": "Otevřít v zobrazení chatu",
+ "interactiveSession.open": "Otevřít rychlý chat",
+ "quickChat": "Otevřít rychlý chat",
+ "toggle.desc": "Přepnout rychlý chat",
+ "toggle.isPartialQuery": "Určuje, jestli je dotaz částečný; počká na další uživatelský vstup",
+ "toggle.query": "Dotaz pro otevření rychlého chatu s"
+ },
+ "vs/workbench/contrib/chat/browser/actions/chatSessionActions": {
+ "chat.openSessionInNewEditorGroup.label": "Move Chat to the Side",
+ "chat.openSessionInNewWindow.label": "Move Chat into New Window",
+ "chat.openSessionInSidebar.label": "Move Chat into Side Bar",
+ "chat.sessions.gettingStarted.action": "Začínáme s relacemi chatu",
+ "chatSessions.extensionAlreadyInstalled": "Rozšíření {0} už je nainstalováno.",
+ "chatSessions.installExtension": "Nainstaluje {0}",
+ "chatSessions.pickPlaceholder": "Zvolte si rozšíření pro vylepšení prostředí chatu",
+ "chatSessions.selectExtension": "Nainstalovat rozšíření chatu",
+ "chatSessions.toggleDescriptionDisplay.label": "Zobrazovat rozšířené popisy",
+ "chatSessions.toggleViewLocation.label": "Combined Sessions View",
+ "deleteSession": "Odstranit",
+ "deleteSession.confirm": "Opravdu chcete odstranit tuto relaci chatu?",
+ "deleteSession.delete": "Odstranit",
+ "deleteSession.detail": "Tato akce je nevratná",
+ "interactiveSession.open": "Nový editor chatu",
+ "openSessionInNewWindow": "Otevřít v novém okně",
+ "openSessionInSidebar": "Otevřít na bočním panelu",
+ "openToSide": "Otevřít na boku",
+ "renameSession": "Přejmenovat",
+ "renameSession.emptyName": "Název nesmí být prázdný.",
+ "renameSession.error": "Nepovedlo se přejmenovat relaci chatu: {0}",
+ "renameSession.nameTooLong": "Název je příliš dlouhý (maximálně 100 znaků)",
+ "renameSession.placeholder": "Zadejte nový název pro relaci chatu."
+ },
+ "vs/workbench/contrib/chat/browser/actions/chatTitleActions": {
+ "chat.retry.confirmation.checkbox": "Příště se už neptat",
+ "chat.retry.confirmation.message2": "Tato akce vrátí zpět úpravy provedené v {0} od této žádosti.",
+ "chat.retry.confirmation.primaryButton": "Ano",
+ "chat.retry.label": "Zkusit znovu",
+ "chat.retryLast.confirmation.message2": "Tato akce vrátí zpět úpravy provedené v {0} souborech v pracovní sadě od této žádosti. Chcete pokračovat?",
+ "chat.retryLast.confirmation.title2": "Chcete opakovat poslední žádost?",
+ "interactive.helpful.label": "Užitečné",
+ "interactive.insertIntoNotebook.label": "Vložit do poznámkového bloku",
+ "interactive.reportIssueForBug.label": "Nahlásit problém",
+ "interactive.unhelpful.label": "Neužitečné"
+ },
+ "vs/workbench/contrib/chat/browser/actions/chatToolActions": {
+ "chat.accept": "Přijmout",
+ "chat.skip": "Skip",
+ "chat.tools.description.agent": "The selected tools are configured by the '{0}' custom agent. Changes to the tools will be applied to the custom agent file as well.",
+ "chat.tools.description.global": "The selected tools will be applied globally for all chat sessions that use the default agent.",
+ "chat.tools.description.readOnlyAgent": "The selected tools are configured by the '{0}' custom agent. Changes to the tools will only be used for this session and will not change the '{0}' custom agent.",
+ "chat.tools.description.session": "The selected tools were configured only for this chat session.",
+ "chat.tools.placeholder.agent": "Select tools for this custom agent",
+ "chat.tools.placeholder.global": "Vyberte nástroje, které jsou k dispozici pro chat.",
+ "chat.tools.placeholder.readOnlyAgent": "Select tools for this custom agent",
+ "chat.tools.placeholder.session": "Vybrat nástroje pro tuto relaci chatu",
+ "chatTools.tooManyEnabled": "Jsou povolené nástroje (více než {0}), takže může docházet k degradovaným voláním nástrojů.",
+ "label": "Konfigurovat nástroje..."
+ },
+ "vs/workbench/contrib/chat/browser/actions/chatToolPicker": {
+ "addExtensionButton": "Nainstalovat rozšíření…",
+ "addMcpServer": "Přidat server MCP…",
+ "configMcpCol": "Nakonfigurovat: {0}",
+ "configToolSets": "Konfigurovat sady nástrojů...",
+ "configureTools": "Konfigurovat nástroje",
+ "defaultBucketLabel": "Předdefinované",
+ "editUserBucket": "Upravit sadu nástrojů",
+ "mcpShowOutput": "Zobrazit výstup",
+ "mcpUpdate": "Nástroje pro aktualizaci",
+ "noTools": "Přidat nástroje do chatu",
+ "toolLimitExceeded": "Nástroje ({0}) jsou povolené. Nad nástroji {1} můžete zaznamenat degradované volání nástrojů.",
+ "userBucket": "Sady uživatelsky definovaných nástrojů"
+ },
+ "vs/workbench/contrib/chat/browser/actions/codeBlockOperations": {
+ "activeEditor": "'{0}' aktivního editoru",
+ "applyCodeBlock.error": "Nepovedlo se aplikovat blok kódu: {0}",
+ "applyCodeBlock.errorOpeningFile": "Otevření {0} v editoru kódu se nezdařilo.",
+ "applyCodeBlock.fileWriteError": "Nepodařilo se vytvořit soubor: {0}",
+ "applyCodeBlock.noActiveEditor": "Pokud chcete aplikovat tento blok kódu, otevřete editor kódu nebo poznámkového bloku.",
+ "applyCodeBlock.noCodeMapper": "Není k dispozici žádný mapovač kódu.",
+ "applyCodeBlock.progress": "Aplikuje se blok kódu pomocí {0}...",
+ "applyCodeBlock.readonly": "Blok kódu nelze aplikovat na soubor jen pro čtení.",
+ "applyCodeBlock.readonlyNotebook": "Blok kódu nelze aplikovat na editor poznámkového bloku, který je jen pro čtení.",
+ "createFile": "Nový soubor {0}",
+ "insertCodeBlock.noActiveEditor": "Pokud chcete vložit blok kódu, otevřete editor kódu nebo editor poznámkového bloku a nastavte kurzor na umístění, kam se má blok kódu vložit.",
+ "insertCodeBlock.readonly": "Blok kódu nelze vložit do editoru kódu jen pro čtení.",
+ "insertCodeBlock.readonlyNotebook": "Blok kódu nelze vložit do editoru poznámkového bloku, který je jen pro čtení.",
+ "newUntitledFile": "Nový editor bez názvu",
+ "selectOption": "Vyberte, kde se má použít blok kódu."
+ },
+ "vs/workbench/contrib/chat/browser/actions/manageModelsActions": {
+ "manageLanguageModels": "Spravovat jazykové modely..."
+ },
+ "vs/workbench/contrib/chat/browser/agentSessions/agentSessions": {
+ "chat.session.providerLabel.background": "Pozadí",
+ "chat.session.providerLabel.cloud": "Cloud",
+ "chat.session.providerLabel.local": "Místní"
+ },
+ "vs/workbench/contrib/chat/browser/agentSessions/agentSessionsActions": {
+ "agentSessions.filter.reset": "Reset",
+ "diffFile": "1 soubor",
+ "diffFiles": "Počet souborů: {0}",
+ "filterAgentSessions": "Filtrovat relace agenta",
+ "find": "Najít relaci agenta",
+ "refresh": "Aktualizovat relace agenta",
+ "showDiff": "Open Changes"
+ },
+ "vs/workbench/contrib/chat/browser/agentSessions/agentSessionsView": {
+ "agentSessions.newSession": "New Session",
+ "agentSessions.newSessionAriaLabel": "New Session",
+ "agentSessions.refreshing": "Refreshing agent sessions...",
+ "agentSessions.view.label": "Agent Sessions",
+ "chatSessions.installExtensions": "Install Chat Extensions...",
+ "newBackgroundSession": "New Background Session",
+ "newChatSessionDefault": "New Local Session",
+ "newChatSessionFromProvider": "New {0}",
+ "newCloudSession": "New Cloud Session"
+ },
+ "vs/workbench/contrib/chat/browser/agentSessions/agentSessionsViewer": {
+ "agentSessions": "Agent Sessions",
+ "agentSessions.dragLabel": "{0} agent sessions",
+ "chat.session.status.completed": "Dokončeno",
+ "chat.session.status.completedAfter": "Dokončeno za {0}.",
+ "chat.session.status.failed": "Neúspěšné",
+ "chat.session.status.failedAfter": "Selhalo po {0}.",
+ "chat.session.status.inProgress": "Probíhá zpracování...",
+ "chat.session.status.inProgressWithDuration": "Probíhá zpracování... ({0})"
+ },
+ "vs/workbench/contrib/chat/browser/agentSessions/agentSessionsViewFilter": {
+ "agentSessions.filter.archived": "Archivováno",
+ "chatSessionStatus.completed": "Dokončeno",
+ "chatSessionStatus.failed": "Neúspěšné",
+ "chatSessionStatus.inProgress": "Probíhající"
+ },
+ "vs/workbench/contrib/chat/browser/attachments/implicitContextAttachment": {
+ "cell.lowercase": "buňka",
+ "chat.fileAttachment": "Připojeno: {0}, {1}",
+ "chat.fileAttachmentWithRange": "Připojeno: {0}, {1}, řádek {2} až řádek {3}",
+ "disable": "Zakázat aktuální kontext pro {0}",
+ "enable": "Povolit aktuální kontext pro {0}",
+ "enableHint": "Povolit aktuální kontext pro {0}",
+ "file.lowercase": "soubor",
+ "openEditor": "Aktuální kontext pro {0}",
+ "openFile": "Current file context"
+ },
+ "vs/workbench/contrib/chat/browser/chat.contribution": {
+ "autoApprove2.description": "Globální automatické schvalování, známé také jako „režim YOLO“, zcela vypíná ruční schvalování pro všechny nástroje ve všech pracovních prostorech a umožňuje agentovi jednat plně autonomně. Toto je mimořádně nebezpečné a nikdy se to nedoporučuje, i v kontejnerizovaných prostředích, jako jsou Codespaces a Dev Containers, jsou do kontejneru přeposílány uživatelské klíče, které mohou být kompromitovány.\r\n\r\nTato funkce vypíná klíčové bezpečnostní ochrany a výrazně usnadňuje útočníkovi kompromitaci zařízení.",
+ "chat": "Chat",
+ "chat.agent.enabled.description": "Povolte režim agenta pro chat. Pokud je tato možnost povolená, můžete režim agenta aktivovat prostřednictvím rozevíracího seznamu v zobrazení.",
+ "chat.agent.maxRequests": "The maximum number of requests to allow per-turn when using an agent. When the limit is reached, will ask to confirm to continue.",
+ "chat.agent.thinking.collapsedTools": "When enabled, tool calls are added into the collapsible thinking section according to the selected mode.",
+ "chat.agent.thinking.collapsedTools.all": "All tool calls are added into the collapsible thinking section.",
+ "chat.agent.thinking.collapsedTools.none": "No tool calls are added into the collapsible thinking section.",
+ "chat.agent.thinking.collapsedTools.readOnly": "Only read-only tool calls are added into the collapsible thinking section.",
+ "chat.agent.thinkingMode.collapsed": "Části přemýšlení se ve výchozím nastavení sbalí.",
+ "chat.agent.thinkingMode.collapsedPreview": "Části přemýšlení se nejprve rozbalí a potom se sbalí, jakmile dosáhneme části bez přemýšlení.",
+ "chat.agent.thinkingMode.fixedScrolling": "Zobrazit přemýšlení na panelu streamování, který se automaticky posouvá; kliknutím na záhlaví se panel rozbalí na celou výšku.",
+ "chat.agent.thinkingStyle": "Určuje, jak je vykreslováno uvažování.",
+ "chat.allowAnonymousAccess": "Určuje, jestli je v chatu povolený anonymní přístup.",
+ "chat.checkpoints.enabled": "Povolí kontrolní body v chatu. Kontrolní body umožňují obnovit chat do předchozího stavu.",
+ "chat.checkpoints.showFileChanges": "Určuje, jestli se mají zobrazit změny souboru kontrolního bodu chatu.",
+ "chat.codeBlock.showProgressAnimation.description": "When applying edits, show a progress animation in the code block pill. If disabled, shows the progress percentage instead.",
+ "chat.commandCenter.enabled": "Určuje, jestli centrum příkazů zobrazuje nabídku akcí pro řízení chatu (vyžaduje {0}).",
+ "chat.detectParticipant.enabled": "Povolí automatickou detekci účastníka chatu pro panelový chat.",
+ "chat.disableAIFeatures": "Disable and hide built-in AI features provided by GitHub Copilot, including chat and inline suggestions.",
+ "chat.editRequests": "Umožňuje upravovat žádosti v chatu. To vám umožní změnit obsah žádosti a znovu ji odeslat do modelu.",
+ "chat.editing.autoAcceptDelay": "Zpoždění, po kterém budou automaticky přijaty změny provedené chatem Hodnoty jsou v sekundách, hodnota 0 znamená zakázáno a maximum je 100 sekund.",
+ "chat.editing.confirmEditRequestRemoval": "Určuje, jestli se má před odebráním žádosti a přidružených úprav zobrazit potvrzení.",
+ "chat.editing.confirmEditRequestRetry": "Určuje, jestli se má před opakováním žádosti a souvisejících úprav zobrazit potvrzení.",
+ "chat.edits2Enabled": "Povolí nový režim úprav založený na volání nástrojů. Pokud je tato možnost povolená, modely, které nepodporují volání nástrojů, nebudou pro režim úprav k dispozici.",
+ "chat.emptyState.history.enabled": "Umožňuje zobrazit historii posledních chatů v prázdném stavu chatu.",
+ "chat.experimental.detectParticipant.enabled": "Povolí automatickou detekci účastníka chatu pro panelový chat.",
+ "chat.experimental.detectParticipant.enabled.deprecated": "Toto nastavení je zastaralé. Místo toho prosím použijte nastavení chat.detectParticipant.enabled.",
+ "chat.extensionToolsEnabled": "Umožňuje používat nástroje z rozšíření třetích stran.",
+ "chat.extensionUnification.enabled": "Enables the unification of GitHub Copilot extensions. When enabled, all GitHub Copilot functionality is served from the GitHub Copilot Chat extension. When disabled, the GitHub Copilot and GitHub Copilot Chat extensions operate independently.",
+ "chat.fontFamily": "Určuje rodinu písem ve zprávách chatu.",
+ "chat.fontSize": "Určuje velikost písma v pixelech ve zprávách chatu.",
+ "chat.hideNewButtonInAgentSessionsView": "Určuje, jestli je tlačítko nové relace skryté v zobrazení Relace agenta.",
+ "chat.implicitContext.enabled.1": "Umožňuje automaticky používat aktivní editor jako kontext chatu pro určená místa v chatu.",
+ "chat.implicitContext.suggestedContext": "Controls whether the new implicit context flow is shown. In Ask and Edit modes, the context will automatically be included. When using an agent, context will be suggested as an attachment. Selections are always included as context.",
+ "chat.implicitContext.value": "Hodnota pro implicitní kontext.",
+ "chat.implicitContext.value.always": "Implicitní kontext je vždy povolený.",
+ "chat.implicitContext.value.first": "Implicitní kontext je povolený pro první interakci.",
+ "chat.implicitContext.value.never": "Implicitní kontext není nikdy povolen.",
+ "chat.instructions.config.locations.description": "Zadejte umístění souborů s pokyny (`*{0}`), které se dají připojit v relacích chatu. [Přečtěte si další informace]({1}).\r\n\r\nRelativní cesty se řeší z kořenových složek vašeho pracovního prostoru.",
+ "chat.instructions.config.locations.title": "Umístění souborů pokynů",
+ "chat.mathEnabled.description": "Povolení matematického vykreslování v odpovědích chatu pomocí KaTexu.",
+ "chat.mcp.access": "Řídí přístup k nainstalovaným serverům protokolu Model Context Protocol.",
+ "chat.mcp.access.any": "Povolení přístupu k libovolnému nainstalovanému serveru MCP.",
+ "chat.mcp.access.none": "Nemáte přístup k serverům MCP.",
+ "chat.mcp.access.registry": "Umožňuje přístup k serverům MCP nainstalovaným z registru, ke kterému je VS Code připojen.",
+ "chat.mcp.assisted.nuget.enabled.description": "Povolí balíčky NuGet pro instalaci serveru MCP s asistencí AI. Používá se k instalaci serverů MCP podle názvu z centrálního registru pro balíčky .NET (NuGet.org).",
+ "chat.mcp.autostart": "Určuje, jestli se mají automaticky spouštět servery MCP při odeslání chatových zpráv.",
+ "chat.mcp.autostart.never": "Nikdy automaticky nespouštět servery MCP",
+ "chat.mcp.autostart.newAndOutdated": "Automaticky spouštět nové a zastaralé servery MCP, které ještě nejsou spuštěné.",
+ "chat.mcp.autostart.onlyNew": "Automaticky spouštět pouze nové servery MCP, které nebyly nikdy spuštěny.",
+ "chat.mcp.gallery.enabled": "Enables the default Marketplace for Model Context Protocol (MCP) servers.",
+ "chat.mcp.serverSampling": "Konfiguruje, které modely jsou vystavené serverům MCP pro vzorkování (vytváření požadavků modelu na pozadí). Toto nastavení lze upravit grafickým způsobem pod příkazem {0}.",
+ "chat.mcp.serverSampling.allowedDuringChat": "Určuje, jestli tento server během volání nástrojů v relaci chatu provádí žádosti o vzorkování.",
+ "chat.mcp.serverSampling.allowedOutsideChat": "Určuje, jestli tento server může provádět žádosti o vzorkování mimo relaci chatu.",
+ "chat.mcp.serverSampling.model": "Model, ke kterému má server MCP přístup",
+ "chat.mode.config.locations.deprecated": "This setting is deprecated and will be removed in future releases. Chat modes are now called custom agents and are located in `.github/agents`",
+ "chat.mode.config.locations.description": "Zadejte umístění souborů vlastního režimu chatu (*{0}). [Přečtěte si další informace]({1}).\r\n\r\nRelativní cesty se řeší z kořenových složek vašeho pracovního prostoru.",
+ "chat.mode.config.locations.title": "Umístění souborů režimu",
+ "chat.notifyWindowOnConfirmation": "Controls whether a chat session should present the user with an OS notification when a confirmation is needed while the window is not in focus. This includes a window badge as well as notification toast.",
+ "chat.notifyWindowOnResponseReceived": "Controls whether a chat session should present the user with an OS notification when a response is received while the window is not in focus. This includes a window badge as well as notification toast.",
+ "chat.promptFilesRecommendations.description": "V uvítacím zobrazení chatu nakonfigurujte, které soubory výzev se mají doporučit. Každý klíč je název souboru výzvy a hodnota může být true, aby se vždy doporučovala, false, aby se nikdy nedoporučovala, nebo výraz [when clause](https://aka.ms/vscode-when-clause), jako je resourceExtname == .js nebo resourceLangId == markdown.",
+ "chat.promptFilesRecommendations.title": "Doporučení k souborům výzvy",
+ "chat.renderRelatedFiles": "Určuje, jestli se mají ve vstupu chatu vykreslovat související soubory.",
+ "chat.reusablePrompts.config.locations.description": "Zadejte umístění souborů opakovaně použitelných výzev (`*{0}`), které se dají spouštět v relacích chatu. [Přečtěte si další informace]({1}).\r\n\r\nRelativní cesty se řeší z kořenových složek vašeho pracovního prostoru.",
+ "chat.reusablePrompts.config.locations.title": "Umístění souborů s výzvami",
+ "chat.sendElementsToChat.attachCSS": "Určuje, jestli budou do chatu přidány šablony stylů CSS vybraného prvku. {0} musí být povolené.",
+ "chat.sendElementsToChat.attachImages": "Určuje, jestli se do chatu přidá snímek obrazovky vybraného prvku. {0} musí být povolené.",
+ "chat.sendElementsToChat.enabled": "Určuje, jestli se prvky dají odesílat do chatu z jednoduchého prohlížeče.",
+ "chat.sessionsViewLocation.description": "Určuje, kde se má zobrazit nabídka relací agenta.",
+ "chat.showAgentSessionsViewDescription": "Určuje, zda se popisy relací v zobrazení relací chatu zobrazují na druhém řádku.",
+ "chat.signInWithAlternateScopes": "Controls whether sign-in with alternate scopes is used.",
+ "chat.subagentTool.customAgents": "Whether the runSubagent tool is able to use custom agents. When enabled, the tool can take the name of a custom agent, but it must be given the exact name of the agent.",
+ "chat.todoListTool.descriptionField": "When enabled, todo items include detailed descriptions for implementation context. This provides more information but uses additional tokens and may slow down responses.",
+ "chat.todoListTool.writeOnly": "Pokud je tato možnost povolená, nástroj pro úkoly (todo) funguje v režimu jen pro zápis, přičemž vyžaduje, aby si agent pamatoval úkoly v kontextu.",
+ "chat.toolReferenceName.description": "{0}–{1}",
+ "chat.tools.autoApprove.edits": "Určuje, zda se mají automaticky schvalovat úpravy provedené chatem. Ve výchozím nastavení se schvalují všechny úpravy s výjimkou úprav provedených v určitých souborech, které můžou způsobit okamžité neúmyslné vedlejší účinky, například **/.vscode/*.json.\r\n\r\nNastavte na true, pokud chcete automaticky schvalovat úpravy odpovídajících souborů, false, pokud chcete vždy vyžadovat explicitní schválení. Poslední vzor odpovídající danému souboru určí, zda bude úprava automaticky schválena.",
+ "chat.tools.eligibleForAutoApproval": "Controls which tools are eligible for automatic approval. Tools set to 'false' will always present a confirmation and will never offer the option to auto-approve. The default behavior (or setting a tool to 'true') may result in the tool offering auto-approval options.",
+ "chat.tools.fetchPage.approvedUrls": "Controls which URLs are automatically approved when requested by chat tools. Keys are URL patterns and values can be `true` to approve both requests and responses, `false` to deny, or an object with `approveRequest` and `approveResponse` properties for granular control.\r\n\r\nExamples:\r\n- `\"https://example.com\": true` - Approve all requests to example.com\r\n- `\"https://*.example.com\": true` - Approve all requests to any subdomain of example.com\r\n- `\"https://example.com/api/*\": { \"approveRequest\": true, \"approveResponse\": false }` - Approve requests but not responses for example.com/api paths",
+ "chat.tools.todos.showWidget": "Controls whether to show the todo list widget above the chat input. When enabled, the widget displays todo items created by the agent and updates as progress is made.",
+ "chat.undoRequests.restoreInput": "Určuje, jestli se má při provedení žádosti o vrácení zpět obnovit vstup chatu. Vstup bude vyplněn textem žádosti, která byla obnovena.",
+ "chat.useAgentMd.description": "Určuje, zda se instrukce ze souboru AGENTS.MD, nalezeného v kořenech pracovního prostoru, připojují ke všem žádostem o chat.",
+ "chat.useAgentMd.title": "Použít soubor AGENTS.MD",
+ "chat.useClaudeSkills.description": "Určuje, jestli jsou ve všech žádostech o chat uvedené dovednosti v pracovním prostoru a v domovských adresářích uživatelů v .claude/skills. Jazykový model může tyto dovednosti načíst na vyžádání, pokud je k dispozici nástroj pro čtení.",
+ "chat.useClaudeSkills.title": "Využití dovedností modelu Claude",
+ "chat.useNestedAgentMd.description": "Určuje, zda se instrukce z vnořených souborů AGENTS.MD nalezených v pracovním prostoru zobrazují ve všech žádostech o chat. Jazykový model může tyto dovednosti načíst na vyžádání, pokud je k dispozici nástroj pro čtení.",
+ "chat.useNestedAgentMd.title": "Use nested AGENTS.MD files",
+ "clear": "Zahájit nový chat",
+ "interactiveSession.editor.fontFamily": "Určuje rodinu písem v blocích kódu chatu.",
+ "interactiveSession.editor.fontSize": "Určuje velikost písma v pixelech v blocích kódu chatu.",
+ "interactiveSession.editor.fontWeight": "Určuje tloušťku písma v blocích kódu chatu.",
+ "interactiveSession.editor.lineHeight": "Určuje výšku řádku v pixelech v blocích kódu chatu. K výpočtu výšky řádku z velikosti písma použijte 0.",
+ "interactiveSession.editor.wordWrap": "Určuje, jestli se řádky mají zalamovat do bloků kódu chatu.",
+ "interactiveSessionConfigurationTitle": "Chat",
+ "mcp.discovery.enabled": "Konfiguruje zjišťování serverů s protokolem kontextu modelu z konfigurace z různých jiných aplikací.",
+ "mcp.gallery.serviceUrl": "Nakonfigurovat adresu URL služby Galerie MCP pro připojení k",
+ "mcp.list": "Vypsat servery"
+ },
+ "vs/workbench/contrib/chat/browser/chatAccessibilityProvider": {
+ "chat": "Chat",
+ "multiCodeBlock": "{0}{1}{2} bloky/bloků kódu: {3} {4}",
+ "multiCodeBlockHint": "{0}{1}{2}{3} bloky/bloků kódu: {4}{5} {6}",
+ "multiFileTreeHint": "{0} stromy/stromů souborů ",
+ "multiTableHint": "Počet tabulek: {0} ",
+ "noCodeBlocks": "{0}{1}{2} {3}",
+ "noCodeBlocksHint": "{0}{1}{2}{3}{4} {5}",
+ "singleCodeBlock": "{0}{1}1 blok kódu: {2} {3}",
+ "singleCodeBlockHint": "{0}{1}{2}1 blok kódu: {3} {4}{5}",
+ "singleFileTreeHint": "1 strom souborů ",
+ "singleTableHint": "1 tabulka ",
+ "toolInvocationsHint": "Vyžaduje se potvrzení chatu: {0}",
+ "toolInvocationsHintDetails": "Details: {0}",
+ "toolInvocationsHintKb": "Vyžaduje se potvrzení chatu: {0}. Přijměte stisknutím {1} nebo zrušte stisknutím {2}.",
+ "toolPostApprovalTitle": "Approve results of tool"
+ },
+ "vs/workbench/contrib/chat/browser/chatAccessibilityService": {
+ "chat.untitledChat": "Untitled Chat",
+ "chatTitle": "Chat: {0}",
+ "notificationDetail": "New chat response."
+ },
+ "vs/workbench/contrib/chat/browser/chatAgentHover": {
+ "reservedName": "Toto rozšíření chatu používá vyhrazený název.",
+ "viewExtensionLabel": "Zobrazit rozšíření"
+ },
+ "vs/workbench/contrib/chat/browser/chatAttachmentResolveService": {
+ "imageTooLarge": "Obrázek je příliš velký",
+ "imageTooLargeMessage": "Obrázek {0} je pro připojení příliš velký."
+ },
+ "vs/workbench/contrib/chat/browser/chatAttachmentWidgets": {
+ "chat.NotebookImageAttachment": "Výstup připojeného poznámkového bloku, {0}",
+ "chat.attachment": "Připojený kontext, {0}",
+ "chat.attachment.clearButton": "Odebrat z kontextu",
+ "chat.clickToViewContents": "Kliknutím zobrazíte obsah: {0}",
+ "chat.elementAttachment": "Připojený prvek, {0}",
+ "chat.fileAttachment": "Připojený soubor, {0}",
+ "chat.fileAttachmentHover": "{0} nepodporuje tento typ souboru.",
+ "chat.fileAttachmentWithRange": "Připojený soubor, {0}, od řádku {1} do řádku {2}",
+ "chat.imageAttachment": "Připojený obrázek, {0}",
+ "chat.imageAttachmentHover": "{0} nepodporuje obrázky.",
+ "chat.imageAttachmentWarning": "Tento GIF byl částečně vynechán – bude odeslán aktuální snímek.",
+ "chat.instructionsAttachment": "Příloha s pokyny, {0}",
+ "chat.omittedFileAttachment": "Tento soubor byl vynechán: {0}",
+ "chat.omittedImageAttachment": "Tento obrázek byl vynechán: {0}",
+ "chat.omittedNotebookImageAttachment": "Vynechal se tento výstup poznámkového bloku: {0}.",
+ "chat.partiallyOmittedImageAttachment": "Tento obrázek byl částečně vynechán: {0}",
+ "chat.partiallyOmittedNotebookImageAttachment": "Tento výstup poznámkového bloku byl částečně vynechán: {0}",
+ "chat.promptAttachment": "Soubor výzvy, {0}",
+ "chat.terminalCommand": "Terminal command, {0}",
+ "chat.terminalCommandHoverCommandTitle": "Command",
+ "chat.terminalCommandHoverCommandTitleExit": "Command: {0}, exit code: {1}",
+ "chat.terminalCommandHoverHint": "Click to focus this command in the terminal.",
+ "chat.terminalCommandHoverOutputTitle": "Output:",
+ "instructions": "Pokyny",
+ "instructions.label": "Další pokyny",
+ "prompt": "Výzva",
+ "resource": "Úplná hodnota prostředku přílohy chatu, včetně schématu a cesty",
+ "tool": "{0}–{1}",
+ "toolset": "{0}–{1}"
+ },
+ "vs/workbench/contrib/chat/browser/chatContentParts/chatAgentCommandContentPart": {
+ "rerun": "Znovu spustit bez {0}{1}"
+ },
+ "vs/workbench/contrib/chat/browser/chatContentParts/chatAnonymousRateLimitedPart": {
+ "anonymousRateLimited": "Continue the conversation by signing in. Your free account gets 50 premium requests a month plus access to more models and AI features.",
+ "enableMoreAIFeatures": "Povolit další funkce umělé inteligence"
+ },
+ "vs/workbench/contrib/chat/browser/chatContentParts/chatChangesSummaryPart": {
+ "chat.viewFileChangesSummary": "Zobrazit všechny změny souborů"
+ },
+ "vs/workbench/contrib/chat/browser/chatContentParts/chatCodeCitationContentPart": {
+ "viewMatches": "Zobrazit shody"
+ },
+ "vs/workbench/contrib/chat/browser/chatContentParts/chatCollapsibleContentPart": {
+ "usedReferencesCollapsed": "{0}, sbaleno",
+ "usedReferencesExpanded": "{0}, rozbaleno"
+ },
+ "vs/workbench/contrib/chat/browser/chatContentParts/chatCommandContentPart": {
+ "commandButtonDisabled": "Tlačítko není v obnoveném chatu dostupné."
+ },
+ "vs/workbench/contrib/chat/browser/chatContentParts/chatConfirmationContentPart": {
+ "accept": "Přijmout",
+ "dismiss": "Zavřít"
+ },
+ "vs/workbench/contrib/chat/browser/chatContentParts/chatConfirmationWidget": {
+ "chat.confirmationWidget.ariaLabel": "Dialogové okno potvrzení chatu {0} {1}",
+ "chat.untitledChat": "Untitled Chat",
+ "chatTitle": "Chat: {0}",
+ "notificationDetail": "Approval needed to continue."
+ },
+ "vs/workbench/contrib/chat/browser/chatContentParts/chatExtensionsContentPart": {
+ "chat.extensions.loading": "Načítají se rozšíření..."
+ },
+ "vs/workbench/contrib/chat/browser/chatContentParts/chatMarkdownContentPart": {
+ "chat.codeblock.applyingEdits": "Applying edits",
+ "chat.codeblock.applyingPercentage": "({0}%)...",
+ "chat.codeblock.deletions": "Počet odstranění: {0}",
+ "chat.codeblock.deletions.one": "Počet odstranění: 1",
+ "chat.codeblock.edited": "Edited",
+ "chat.codeblock.generating": "Generují se úpravy…",
+ "chat.codeblock.insertions": "Počet vložení: {0}",
+ "chat.codeblock.insertions.one": "Počet vložení: 1",
+ "summary": "Upraveno: {0}, {1}, {2}"
+ },
+ "vs/workbench/contrib/chat/browser/chatContentParts/chatMcpServersInteractionContentPart": {
+ "mcp.skip.link": "Skip?",
+ "mcp.start.multiple": "Servery MCP {0} můžou mít nové nástroje a pro spuštění vyžadují interakci. [Začít s nimi hned?]({1})",
+ "mcp.start.single": "Server MCP {0} může mít nové nástroje a ke spuštění vyžaduje interakci. [Začít hned?]({1})",
+ "mcp.starting": "Spouští se aplikace {0}...",
+ "mcp.starting.servers": "Starting MCP servers {0}...",
+ "mcp.working.mcp": "Activating MCP extensions..."
+ },
+ "vs/workbench/contrib/chat/browser/chatContentParts/chatMultiDiffContentPart": {
+ "chatEditingSession.fileCounts": "Přidané řádky: {0}, odebrané řádky: {1}",
+ "chatMultiDiff.manyFiles": "Změněné soubory: {0}",
+ "chatMultiDiff.oneFile": "Změněn 1 soubor",
+ "chatMultiDiff.openAllChanges": "Open Changes",
+ "chatMultiDiffList": "Změny souborů"
+ },
+ "vs/workbench/contrib/chat/browser/chatContentParts/chatProgressContentPart": {
+ "chat.autoapprove.lmServicePerTool.profile": "Automaticky schváleno pro tento profil",
+ "chat.autoapprove.lmServicePerTool.session": "Automaticky schváleno pro tuto relaci",
+ "chat.autoapprove.lmServicePerTool.workspace": "Automaticky schváleno pro tento pracovní prostor",
+ "chat.autoapprove.setting": "Automaticky schváleno uživatelem {0}",
+ "edit": "Edit",
+ "toolCallUnresponsive": "Waiting for tool '{0}' to respond...",
+ "workingMessage": "Pracuje se…"
+ },
+ "vs/workbench/contrib/chat/browser/chatContentParts/chatPullRequestContentPart": {
+ "chatPullRequest.seeMore": "Zobrazit více"
+ },
+ "vs/workbench/contrib/chat/browser/chatContentParts/chatQuotaExceededPart": {
+ "clickToContinue": "Kliknutím to můžete zkusit znovu",
+ "enableAdditionalUsage": "Správa placených žádostí úrovně Premium",
+ "upgradeToCopilotPro": "Upgradovat na plán GitHub Copilot Pro",
+ "waitWarning": "Změny se můžou projevit až za několik minut."
+ },
+ "vs/workbench/contrib/chat/browser/chatContentParts/chatReferencesContentPart": {
+ "addToChat": "Přidat soubor do chatu",
+ "chatCollapsibleList": "Sbalitelný seznam odkazů na chat",
+ "chatEditingSession.fileCounts": "Přidané řádky: {0}, odebrané řádky: {1}",
+ "copyLink": "Kopírovat odkaz",
+ "setting.hover": "Otevřít nastavení {0}",
+ "usedReferencesPlural": "Použité odkazy na {0}",
+ "usedReferencesSingular": "Použitý odkaz na {0}"
+ },
+ "vs/workbench/contrib/chat/browser/chatContentParts/chatSuggestNextWidget": {
+ "chat.currentMode": "current mode",
+ "chat.proceedFrom": "Proceed from {0}",
+ "chat.suggestNext.item": "{0}"
+ },
+ "vs/workbench/contrib/chat/browser/chatContentParts/chatTextEditContentPart": {
+ "edits0": "Provádění změn bylo přerušeno.",
+ "editsSummary": "Provedly se změny."
+ },
+ "vs/workbench/contrib/chat/browser/chatContentParts/chatThinkingContentPart": {
+ "chat.thinking.fixed.done.generic": "Na pár sekund se zamyslel",
+ "chat.thinking.fixed.done.withHeader": "{0}{1}",
+ "chat.thinking.fixed.progress.withHeader": "Přemýšlení: {0}",
+ "chat.thinking.header": "Přemýšlím..."
+ },
+ "vs/workbench/contrib/chat/browser/chatContentParts/chatTodoListWidget": {
+ "chat.todoList.clearButton": "Vymazat všechny úkoly",
+ "chat.todoList.clearButton.disabled": "Cannot clear todos while a task is in progress",
+ "chat.todoList.collapseButton": "Collapse Todos",
+ "chat.todoList.currentTask": "{0} ({1}/{2})",
+ "chat.todoList.expandButton": "Expand Todos",
+ "chat.todoList.item": "{0}, {1}",
+ "chat.todoList.itemWithDescription": "{0}, {1}, {2}",
+ "chat.todoList.status.completed": "dokončeno",
+ "chat.todoList.status.inProgress": "probíhá",
+ "chat.todoList.status.notStarted": "nespuštěno",
+ "chat.todoList.title": "Úkoly",
+ "chat.todoList.titleWithCount": "Todos ({0}/{1})",
+ "chatTodoList": "Chat Todo List"
+ },
+ "vs/workbench/contrib/chat/browser/chatContentParts/chatToolInputOutputContentPart": {
+ "chat.input": "Vstup",
+ "chat.output": "Výstup"
+ },
+ "vs/workbench/contrib/chat/browser/chatContentParts/chatToolOutputContentSubPart": {
+ "chat.saveResources": "Save As...",
+ "chat.saveResources.error": "Uložení {0} se nezdařilo: {1}",
+ "chat.saveResources.progress": "Saving resources...",
+ "chat.saveResources.reveal": "Prostředky se uložily do {0}.",
+ "chat.saveResources.title": "Vyberte složku pro uložení prostředků"
+ },
+ "vs/workbench/contrib/chat/browser/chatContentParts/chatTreeContentPart": {
+ "treeAriaLabel": "Strom souborů"
+ },
+ "vs/workbench/contrib/chat/browser/chatContentParts/toolInvocationParts/abstractToolConfirmationSubPart": {
+ "skip": "Skip"
+ },
+ "vs/workbench/contrib/chat/browser/chatContentParts/toolInvocationParts/chatExtensionsInstallToolSubPart": {
+ "allow": "Povolit",
+ "cancel": "Zrušit",
+ "installExtensions": "Nainstalovat rozšíření",
+ "installExtensionsConfirmation": "Klikněte na tlačítko Nainstalovat na rozšíření a po dokončení stiskněte Povolit."
+ },
+ "vs/workbench/contrib/chat/browser/chatContentParts/toolInvocationParts/chatInputOutputMarkdownProgressPart": {
+ "chat.autoapprove.lmServicePerTool.profile": "Automaticky schváleno pro tento profil",
+ "chat.autoapprove.lmServicePerTool.session": "Automaticky schváleno pro tuto relaci",
+ "chat.autoapprove.lmServicePerTool.workspace": "Automaticky schváleno pro tento pracovní prostor",
+ "chat.autoapprove.setting": "Automaticky schváleno uživatelem {0}",
+ "edit": "Upravit"
+ },
+ "vs/workbench/contrib/chat/browser/chatContentParts/toolInvocationParts/chatTerminalToolConfirmationSubPart": {
+ "autoApprove.button.enable": "Povolit",
+ "autoApprove.enable": "Povolit automatické schválení...",
+ "autoApprove.markdown": "To umožní autonomní spouštění konfigurovatelné podmnožiny příkazů v terminálu. Poskytuje *ochranu s vynaložením maximálního úsilí* a předpokládá, že agent nejedná se zlým úmyslem.",
+ "autoApprove.markdown2": "Přečtěte si další informace o potenciálních rizicích a o tom, jak se jim vyhnout.",
+ "autoApprove.title": "Povolit automatické schválení terminálu?",
+ "newRule": "Přidání pravidla automatického schvalování {0} ",
+ "newRule.plural": "Přidání pravidel automatického schvalování {0}",
+ "ruleTooltip": "Zobrazit pravidlo v nastavení",
+ "sessionApproval": "All commands will be auto approved for this session",
+ "sessionApproval.disable": "Disable",
+ "skip.detail": "Pokračovat bez provedení tohoto příkazu",
+ "tool.allow": "Allow",
+ "tool.skip": "Skip"
+ },
+ "vs/workbench/contrib/chat/browser/chatContentParts/toolInvocationParts/chatTerminalToolProgressPart": {
+ "chat.focusMostRecentTerminal": "Chat: Focus Most Recent Terminal",
+ "chat.focusMostRecentTerminalOutput": "Chat: Focus Most Recent Terminal Output",
+ "chat.terminalOutputEmpty": "No output was produced by the command.",
+ "chat.terminalOutputTruncated": "Output truncated to first {0} lines.",
+ "chatTerminalOutputAccessibleViewHeader": "Command: {0}",
+ "chatTerminalOutputAriaLabel": "Terminal output for {0}",
+ "focusTerminal": "Focus Terminal",
+ "hideTerminalOutput": "Hide Output",
+ "showTerminal": "Show and Focus Terminal",
+ "showTerminalOutput": "Show Output",
+ "terminalToolCommand": "{0}"
+ },
+ "vs/workbench/contrib/chat/browser/chatContentParts/toolInvocationParts/chatToolConfirmationSubPart": {
+ "allow": "Povolit",
+ "allowReview": "Allow and Review",
+ "allowSkip": "Allow and Skip Reviewing Result",
+ "chat.input": "Vstup",
+ "seeMore": "Zobrazit více",
+ "showMore": "Zobrazit více",
+ "skip.detail": "Pokračovat bez spuštění tohoto nástroje"
+ },
+ "vs/workbench/contrib/chat/browser/chatContentParts/toolInvocationParts/chatToolOutputPart": {
+ "chat.toolOutputError": "Chyba při vykreslování výstupu nástroje",
+ "loading": "Výstup nástroje pro vykreslování..."
+ },
+ "vs/workbench/contrib/chat/browser/chatContentParts/toolInvocationParts/chatToolPostExecuteConfirmationPart": {
+ "allow": "Povolit",
+ "approveToolResult": "Approve Tool Result",
+ "noDisplayableResults": "No displayable results",
+ "noResults": "Žádné výsledky k zobrazení",
+ "skip.post": "Skip Results"
+ },
+ "vs/workbench/contrib/chat/browser/chatContext.contribution": {
+ "chatContextExtPoint": "Contributes chat context integrations to the chat widget.",
+ "chatContextExtPoint.icon": "The icon associated with this chat context item.",
+ "chatContextExtPoint.id": "Jedinečný identifikátor této položky.",
+ "chatContextExtPoint.title": "Uživatelsky přívětivý název pro tuto položku, který se používá k zobrazení v nabídkách."
+ },
+ "vs/workbench/contrib/chat/browser/chatDragAndDrop": {
+ "attacAsContext": "Připojit {0} jako kontext",
+ "dragAndDroppedImageName": "Obrázek z adresy URL",
+ "file": "Soubor",
+ "folder": "Složka",
+ "image": "Image",
+ "notebookOutput": "Výstup",
+ "problem": "Problém",
+ "scmHistoryItem": "Změnit",
+ "symbol": "Symbol",
+ "url": "Adresa URL"
+ },
+ "vs/workbench/contrib/chat/browser/chatEditing/chatEditingActions": {
+ "accept": "Nechat",
+ "accept.file": "Nechat",
+ "acceptAllEdits": "Zachovat všechny úpravy",
+ "addFilesFromReferences": "Přidat soubory z odkazů",
+ "chat.editRequests.label": "Upravit žádost",
+ "chat.editing.discardAll.confirmation.manyFiles": "Tato akce vrátí zpět změny provedené v {0} souborech. Chcete pokračovat?",
+ "chat.editing.discardAll.confirmation.oneFile": "Tato akce vrátí zpět změny provedené v {0}. Chcete pokračovat?",
+ "chat.editing.discardAll.confirmation.primaryButton": "Ano",
+ "chat.editing.discardAll.confirmation.title": "Chcete vrátit zpět všechny úpravy?",
+ "chat.openFileUpdatedBySnapshot.label": "Otevřít soubor",
+ "chat.openSnapshot.label": "Otevřít snímek souboru",
+ "chat.remove.confirmation.checkbox": "Příště se už neptat",
+ "chat.remove.confirmation.message2": "Tato akce odebere všechny následné žádosti a vrátí zpět úpravy provedené v {0}. Chcete pokračovat?",
+ "chat.remove.confirmation.multipleEdits.message": "Tato akce odebere všechny následné žádosti a vrátí zpět úpravy provedené v {0} souborech ve vaší pracovní sadě. Chcete pokračovat?",
+ "chat.remove.confirmation.primaryButton": "Ano",
+ "chat.remove.confirmation.title": "Chcete vrátit zpět úpravy ({0})?",
+ "chat.removeLast.confirmation.message2": "Tato akce odebere vaši poslední žádost a vrátí zpět úpravy provedené v {0}. Chcete pokračovat?",
+ "chat.removeLast.confirmation.multipleEdits.message": "Tato akce odebere vaši poslední žádost a vrátí zpět úpravy provedené v {0}souborech ve vaší pracovní sadě. Chcete pokračovat?",
+ "chat.removeLast.confirmation.title": "Chcete vrátit zpět poslední úpravu?",
+ "chat.restoreCheckpoint.label": "Obnovit kontrolní bod",
+ "chat.restoreCheckpoint.tooltip": "Obnoví pracovní prostor a chat do tohoto bodu",
+ "chat.restoreLastCheckpoint.label": "Obnovit poslední kontrolní bod",
+ "chat.undoEdits.label": "Vrátit zpět žádosti",
+ "chatEditing.snapshot": "{0} (snímek)",
+ "chatEditing.viewChanges": "Zobrazit všechny úpravy",
+ "chatEditing.viewPreviousEdits": "Zobrazit předchozí úpravy",
+ "discard": "Vrátit zpět",
+ "discard.file": "Vrátit zpět",
+ "discardAllEdits": "Vrátit zpět všechny úpravy",
+ "open.fileInDiff": "Otevřít změny v Editoru rozdílů"
+ },
+ "vs/workbench/contrib/chat/browser/chatEditing/chatEditingCodeEditorIntegration": {
+ "diff.generic": "{0} (změny z chatu)"
+ },
+ "vs/workbench/contrib/chat/browser/chatEditing/chatEditingEditorActions": {
+ "accept": "Zachovat úpravy chatu",
+ "accept2": "Nechat",
+ "accept3": "Zachovat úpravy chatu v tomto souboru",
+ "accept4": "Zachovat všechny úpravy",
+ "acceptAllEdits": "Zachovat všechny úpravy v chatu",
+ "acceptAllEditsTooltip": "Zachovat všechny úpravy v chatu v této relaci",
+ "acceptHunk": "Zachovat tuto změnu",
+ "acceptHunkShort": "Keep",
+ "accessibleDiff": "Zobrazit přístupné rozdílové zobrazení pro úpravy v chatu",
+ "diff": "Přepnout editor rozdílů pro úpravy v chatu",
+ "discard": "Zpět Úpravy chatu",
+ "discard2": "Vrátit zpět",
+ "discard3": "Zpět Úpravy chatu v tomto souboru",
+ "discard4": "Vrátit zpět všechny úpravy",
+ "label": "Stav navigace",
+ "next": "Přejít na další úpravu v chatu",
+ "prev": "Přejít na předchozí úpravu v chatu",
+ "review": "Zkontrolovat",
+ "undo": "Vrátit zpět tuto změnu",
+ "undoShort": "Undo"
+ },
+ "vs/workbench/contrib/chat/browser/chatEditing/chatEditingEditorContextKeys": {
+ "chat.ctxCursorInChangeRange": "The cursor is inside a change range made by chat editing.",
+ "chat.ctxEditSessionIsGlobal": "Aktuální editor je součástí globální relace úprav.",
+ "chat.ctxHasRequestInProgress": "Aktuální editor zobrazuje soubor z relace úprav, která stále probíhá",
+ "chat.ctxReviewModeEnabled": "Režim kontroly změn chatu je povolený.",
+ "chat.hasEditorModifications": "Aktuální editor obsahuje úpravy z chatu",
+ "chat.isCurrentlyBeingModified": "The current editor is currently being modified",
+ "chatEdits.requestCount": "Počet otočení relace úprav v tomto editoru"
+ },
+ "vs/workbench/contrib/chat/browser/chatEditing/chatEditingEditorOverlay": {
+ "0Of0": "—",
+ "nOfM": "{0} z(e) {1}",
+ "tooltip": "{0} ({1})",
+ "tooltip_11": "1 změna v 1 souboru",
+ "tooltip_1n": "1 změna v(e) {0} souborech",
+ "tooltip_busy": "{0} – pracuje se…",
+ "tooltip_n1": "{0} změn(y) v 1 souboru",
+ "tooltip_nm": "{0} změn(y) v(e) {1} souborech",
+ "working": "Pracuje se…"
+ },
+ "vs/workbench/contrib/chat/browser/chatEditing/chatEditingModifiedDocumentEntry": {
+ "chatEditing1": "Úprava v chatu: {0}",
+ "chatEditing2": "Úprava v chatu",
+ "default": "Úpravy chatu"
+ },
+ "vs/workbench/contrib/chat/browser/chatEditing/chatEditingModifiedFileEntry": {
+ "editorSelectionBackground": "Barva oblastí čekajících na úpravy v minimapě"
+ },
+ "vs/workbench/contrib/chat/browser/chatEditing/chatEditingModifiedNotebookEntry": {
+ "chatNotebookEdit1": "Úprava v chatu: {0}",
+ "chatNotebookEdit2": "Úprava v chatu"
+ },
+ "vs/workbench/contrib/chat/browser/chatEditing/chatEditingServiceImpl": {
+ "chat": "Úpravy v chatu",
+ "chatEditing.modified2": "Čekající změny z chatu",
+ "join.chatEditingSession": "Ukládá se historie úprav v chatu."
+ },
+ "vs/workbench/contrib/chat/browser/chatEditing/chatEditingSession": {
+ "multiDiffEditorInput.name": "Navrhované úpravy"
+ },
+ "vs/workbench/contrib/chat/browser/chatEditing/notebook/chatEditingNotebookEditorIntegration": {
+ "diff.generic": "{0} (změny z chatu)"
+ },
+ "vs/workbench/contrib/chat/browser/chatEditing/simpleBrowserEditorOverlay": {
+ "cancelSelection": "Kliknutím zrušíte výběr.",
+ "cancelSelectionLabel": "Zrušit",
+ "chat.configureElements": "Konfigurace odeslaných příloh",
+ "chat.expandOverlay": "Rozbalit překryvný prvek",
+ "chat.hideOverlay": "Sbalit překryvný prvek",
+ "chat.nextSelection": "Vybrat znovu",
+ "connectingWebviewElement": "Připojování k webovému zobrazení...",
+ "continuousSelectionDropdown": "Kontinuální výběr",
+ "elementCancelMessage": "Výběr se zrušil.",
+ "elementSelectionComplete": "Prvek byl přidán do chatu.",
+ "elementSelectionInProgress": "Vybírá se prvek…",
+ "elementSelectionMessage": "Přidat prvek do chatu",
+ "finishSelectionLabel": "Hotovo",
+ "reopenErrorWebviewElement": "Znovu prosím otevřete náhled.",
+ "selectAnElement": "Kliknutím vyberte prvek.",
+ "selectElementDropdown": "Vyberte element",
+ "startSelection": "Spustit"
+ },
+ "vs/workbench/contrib/chat/browser/chatEditor": {
+ "chatEditor.loadingSession": "Loading..."
+ },
+ "vs/workbench/contrib/chat/browser/chatEditorInput": {
+ "chat.startEditing.confirmation.acceptEdits": "Zachovat a pokračovat",
+ "chat.startEditing.confirmation.discardEdits": "Zpět a pokračovat",
+ "chat.startEditing.confirmation.pending.message.2": "Chcete přijmout čekající úpravy {0} souborů?",
+ "chat.startEditing.confirmation.pending.message.default": "Zavřením editoru chatu ukončíte aktuální relaci úprav.",
+ "chat.startEditing.confirmation.pending.message.default1": "Zahájením nového chatu ukončíte aktuální relaci úprav.",
+ "chat.startEditing.confirmation.title": "Chcete začít nový chat?",
+ "chatEditorConfirmTitle": "Zavřít editor chatu",
+ "chatEditorLabelIcon": "Ikona popisku editoru chatu.",
+ "chatEditorName": "Chat"
+ },
+ "vs/workbench/contrib/chat/browser/chatFollowups": {
+ "followUpAriaLabel": "Následná otázka: {0}"
+ },
+ "vs/workbench/contrib/chat/browser/chatInlineAnchorWidget": {
+ "actions.attach.label": "Přidat soubor do chatu",
+ "actions.copy.label": "Kopírovat",
+ "actions.goToDecl.label": "Přejít k definici",
+ "actions.openToSide.label": "Otevřít na boku",
+ "goToImplementations.label": "Přejít na implementace",
+ "goToReferences.label": "Přejít na odkazy",
+ "goToTypeDefinitions.label": "Přejít na definice typů",
+ "miGotoDefinition": "Přejít k &&definici",
+ "miGotoImplementations": "Přejít na &&implementace",
+ "miGotoReference": "Přejít na &&odkazy",
+ "miGotoTypeDefinition": "Přejít na &&definice typů"
+ },
+ "vs/workbench/contrib/chat/browser/chatInputPart": {
+ "actions.chat.accessibiltyHelp": "Chat Input {0}{1} Press Enter to send out the request. Use {2} for Chat Accessibility Help.",
+ "chatAttachFiles": "Vyhledejte soubory a kontext, které chcete přidat do své žádosti.",
+ "chatEditingSession.addSuggested": "Přidat návrh",
+ "chatEditingSession.addSuggestion": "Přidat {0} návrhů",
+ "chatEditingSession.ariaLabelWithCounts": "{0}, přidané řádky: {1}, odebrané řádky: {2}",
+ "chatEditingSession.manyFiles.1": "Počet změněných souborů: {0}",
+ "chatEditingSession.oneFile.1": "1 změněný soubor",
+ "chatEditingSession.toggleWorkingSet": "Přepnout změněné soubory",
+ "chatInput.accessibilityHelp": "Chat Input {0}{1}.",
+ "chatInput.accessibilityHelpNoKb": "Chat Input {0}{1} Press Enter to send out the request. Use the Chat Accessibility Help command for more information.",
+ "chatInput.mode.agent": "(Agent), edit files in your workspace.",
+ "chatInput.mode.ask": "(Ask), ask questions or type / for topics.",
+ "chatInput.mode.custom": "({0}), {1}",
+ "chatInput.mode.edit": "(Edit), edit files in your workspace.",
+ "chatInput.model": ", {0}. ",
+ "suggeste.title": "{0}–{1}"
+ },
+ "vs/workbench/contrib/chat/browser/chatListRenderer": {
+ "chatConfirmationAction": "Vybráno: {0}",
+ "checkpointRestore": "Kontrolní bod se obnovil",
+ "didNotFollowInstructions": "Nedodrženy instrukce",
+ "incompleteCode": "Neúplný kód",
+ "incorrectCode": "Navrhován nesprávný kód",
+ "missingContext": "Chybějící kontext",
+ "offensiveOrUnsafe": "Urážlivá nebo nejistá",
+ "other": "Jiné",
+ "poorlyWrittenOrFormatted": "Špatně napsaná nebo naformátovaná",
+ "refusedAValidRequest": "Zamítnutí platného požadavku",
+ "renderFailMsg": "Obsah se nepodařilo vykreslit.",
+ "reportIssue": "Nahlásit problém",
+ "requestMarkdownPartTitle": "Kliknutím můžete provést úpravy",
+ "usedAgent": "[[(znovu spustit bez)]]",
+ "usedAgentSlashCommand": "použito: {0} [[(znovu spustit bez)]]",
+ "working": "Probíhá zpracování"
+ },
+ "vs/workbench/contrib/chat/browser/chatManagement/chatManagement.contribution": {
+ "chatManagementEditor": "Chat Management Editor",
+ "models.clearResults": "Clear Models Search Results",
+ "modelsManagementEditor": "Models Management Editor",
+ "openAiManagement": "Manage Language Models"
+ },
+ "vs/workbench/contrib/chat/browser/chatManagement/chatManagementEditor": {
+ "chatManagementSashBorder": "The color of the Chat Management editor splitview sash border.",
+ "enableAIFeatures": "Use AI Features",
+ "enableCopilotButton": "Enable AI Features",
+ "enableMoreAIFeatures": "Povolit další funkce umělé inteligence",
+ "plan.businessName": "Copilot Business",
+ "plan.copilot": "Copilot",
+ "plan.enterpriseName": "Copilot Enterprise",
+ "plan.free": "Free",
+ "plan.freeName": "Copilot Free",
+ "plan.models": "Models",
+ "plan.proName": "Copilot Pro",
+ "plan.proPlusName": "Copilot Pro+",
+ "plan.upgradeToPro": "Upgradovat na Copilot Pro",
+ "plan.upgradeToProPlus": "Upgrade to Copilot Pro+",
+ "plan.usage": "Usage",
+ "sectionsListAriaLabel": "Sections",
+ "signInToUseAIFeatures": "Sign in to use AI Features",
+ "upgradeToCopilotPro": "Upgradovat na Copilot Pro"
+ },
+ "vs/workbench/contrib/chat/browser/chatManagement/chatManagementEditorInput": {
+ "aiManagementEditorInputName": "Manage Copilot",
+ "aiManagementEditorLabelIcon": "Icon of the AI Management editor label.",
+ "modelsManagementEditorInputName": "Language Models",
+ "modelsManagementEditorLabelIcon": "Icon of the Models Management editor label."
+ },
+ "vs/workbench/contrib/chat/browser/chatManagement/chatModelsWidget": {
+ "Search.FullTextSearchPlaceholder": "Type to search...",
+ "capabilities": "Capabilities",
+ "capability.agent": "Agent Mode",
+ "capability.tools": "Tools",
+ "capability.vision": "Vision",
+ "clearSearch": "Clear Search",
+ "collapse": "Collapse",
+ "cost": "Multiplier",
+ "expand": "Expand",
+ "filter": "Filter",
+ "filter.hidden": "Hidden",
+ "filter.visible": "Visible",
+ "filterByCapability": "Filter by {0}",
+ "filterByProvider": "Filter by {0}",
+ "filterByVisible": "Filter by {0}",
+ "model.ariaLabel": "{0} from {1}",
+ "modelName": "Name",
+ "models.agentMode": "Agent Mode",
+ "models.capabilities": "Capabilities",
+ "models.contextSize": "Context Size",
+ "models.cost": "Multiplier",
+ "models.enableModelProvider": "Add Models...",
+ "models.hidden": "Show in the chat model picker",
+ "models.hide": "Hide",
+ "models.input": "Input",
+ "models.manageProvider": "Manage {0}...",
+ "models.output": "Output",
+ "models.show": "Show",
+ "models.toolCalling": "Tools",
+ "models.tools": "Tools",
+ "models.userSelectable": "This model is hidden in the chat model picker",
+ "models.visible": "Hide in the chat model picker",
+ "models.vision": "Vision",
+ "modelsTable.ariaLabel": "Language Models",
+ "tokenLimits": "Context Size",
+ "vendor.ariaLabel": "{0} provider"
+ },
+ "vs/workbench/contrib/chat/browser/chatManagement/chatUsageWidget": {
+ "chatsLabel": "Chat messages",
+ "completionsLabel": "Inline Suggestions",
+ "plan.additionalPaidEnabled": "Další placené žádosti úrovně Premium jsou povolené.",
+ "plan.allowanceResets": "Allowance resets {0}.",
+ "plan.chatMessages": "Chat messages",
+ "plan.included": "Included",
+ "plan.inlineSuggestions": "Inline Suggestions",
+ "plan.premiumRequests": "Premium requests",
+ "quotaLimited": "Limited"
+ },
+ "vs/workbench/contrib/chat/browser/chatOutputItemRenderer": {
+ "chatOutputRenderer.mimeTypes": "Typy MIME, které tento renderer dokáže zpracovat",
+ "chatOutputRenderer.viewType": "Jedinečný identifikátor rendereru.",
+ "vscode.extension.contributes.chatOutputRenderer": "Přidává renderer pro konkrétní typy MIME ve výstupech chatu"
+ },
+ "vs/workbench/contrib/chat/browser/chatParticipant.contribution": {
+ "chat.viewContainer.label": "Chat",
+ "chatCommand": "A short name by which this command is referred to in the UI, e.g. `fix` or `explain` for commands that fix an issue or explain code. The name should be unique among the commands provided by this participant.",
+ "chatCommandDescription": "Popis tohoto příkazu",
+ "chatCommandDisambiguation": "Metadata, která pomáhají automaticky směrovat otázky uživatelů na tento příkaz v chatu",
+ "chatCommandDisambiguationCategory": "Podrobný název této kategorie, např. workspace_questions nebo web_questions.",
+ "chatCommandDisambiguationDescription": "Podrobný popis typů otázek, které jsou vhodné pro tento příkaz chatu.",
+ "chatCommandDisambiguationExamples": "Seznam reprezentativních příkladů otázek, které jsou vhodné pro tento příkaz chatu.",
+ "chatCommandSampleRequest": "Když uživatel klikne na tento příkaz v zadání /help, odešle se tento text účastníkovi.",
+ "chatCommandSticky": "Určuje, jestli vyvolání příkazu převede chat do trvalého režimu, kde se příkaz automaticky přidá do vstupu chatu pro další zprávu.",
+ "chatCommandWhen": "Podmínka, která musí být true, aby byl tento příkaz povolen.",
+ "chatCommandsDescription": "Příkazy dostupné pro tohoto účastníka chatu, které uživatel může vyvolat pomocí lomítka (/).",
+ "chatFailErrorMessage": "Chat se nepodařilo načíst, protože nainstalovaná verze rozšíření Chat s Copilotem není kompatibilní s touto verzí {0}. Ujistěte se prosím, že je rozšíření Chat s Copilotem aktuální.",
+ "chatParticipantDescription": "Popis tohoto účastníka chatu zobrazený v uživatelském rozhraní",
+ "chatParticipantDisambiguation": "Metadata, která pomáhají automaticky směrovat dotazy uživatelů na tohoto účastníka chatu",
+ "chatParticipantDisambiguationCategory": "Podrobný název této kategorie, např. workspace_questions nebo web_questions.",
+ "chatParticipantDisambiguationDescription": "Podrobný popis typů otázek, které jsou vhodné pro tohoto účastníka chatu.",
+ "chatParticipantDisambiguationExamples": "Seznam reprezentativních příkladů otázek, které jsou vhodné pro tohoto účastníka chatu.",
+ "chatParticipantFullName": "Celé jméno tohoto účastníka chatu, které se zobrazuje jako popisek pro odpovědi od tohoto účastníka. Pokud se nezadá, použije se {0}.",
+ "chatParticipantId": "Jedinečné ID tohoto účastníka chatu",
+ "chatParticipantName": "Jméno tohoto účastníka chatu, který uvidí uživatelé. Uživatel k vyvolání účastníka použije s tímto jménem znak @. Jméno nesmí obsahovat prázdné znaky.",
+ "chatParticipantWhen": "Podmínka, která musí být pravdivá, aby bylo možné tohoto účastníka povolit.",
+ "chatParticipants": "Účastníci chatu",
+ "chatSampleRequest": "Když uživatel klikne na tohoto účastníka v zadání /help, odešle se tento text účastníkovi.",
+ "miToggleChat": "&&Chat",
+ "participantCommands": "Příkazy",
+ "participantDescription": "Popis",
+ "participantFullName": "Plný název",
+ "participantName": "Název",
+ "showExtension": "Zobrazit rozšíření",
+ "vscode.extension.contributes.chatParticipant": "Přidává účastníka chatu."
+ },
+ "vs/workbench/contrib/chat/browser/chatPasteProviders": {
+ "pastedAttachment.multiple": "{0}, počet dalších: {1}",
+ "pastedAttachment.multipleLines": "Počet řádků: {0}",
+ "pastedAttachment.oneLine": "1 řádek",
+ "pastedChatAttachments": "Vložit výzvu a přílohy",
+ "pastedCodeAttachment": "Příloha s vloženým kódem",
+ "pastedImageAttachment": "Příloha s vloženým obrázkem",
+ "pastedImageName": "Vložený obrázek"
+ },
+ "vs/workbench/contrib/chat/browser/chatQuick": {
+ "termsDisclaimer": "Pokračováním v používání {0} Copilotu souhlasíte s [Podmínkami]({2}){1} a [Prohlášením o zásadách ochrany osobních údajů]({3})."
+ },
+ "vs/workbench/contrib/chat/browser/chatResponseAccessibleView": {
+ "toolPostApprovalA11yView": "Approve results of {0}? Result: "
+ },
+ "vs/workbench/contrib/chat/browser/chatSessions.contribution": {
+ "chatCommand": "A short name by which this command is referred to in the UI, e.g. `fix` or `explain` for commands that fix an issue or explain code. The name should be unique among the commands provided by this participant.",
+ "chatCommandDescription": "Popis tohoto příkazu",
+ "chatCommandWhen": "Podmínka, která musí být true, aby byl tento příkaz povolen.",
+ "chatCommandsDescription": "Commands available for this chat session, which the user can invoke with a `/`.",
+ "chatEditorContributionName": "{0}",
+ "chatSessionsExtPoint": "Přidává integrace relací chatu do widgetu chatu.",
+ "chatSessionsExtPoint.alternativeIds": "Alternative identifiers for backward compatibility.",
+ "chatSessionsExtPoint.canDelegate": "Whether delegation is supported. Defaults to true.",
+ "chatSessionsExtPoint.capabilities": "Volitelné možnosti pro tuto relaci chatu",
+ "chatSessionsExtPoint.chatSessionType": "Jedinečný identifikátor pro typ chatovací relace.",
+ "chatSessionsExtPoint.description": "Popis relace chatu pro použití v nabídkách a popisech.",
+ "chatSessionsExtPoint.displayName": "Delší název pro tuto položku, který se používá k zobrazení v nabídkách.",
+ "chatSessionsExtPoint.icon": "Icon identifier (codicon ID) for the chat session editor tab. For example, \"$(github)\" or \"$(cloud)\".",
+ "chatSessionsExtPoint.inputPlaceholder": "Placeholder text to display in the chat input box for this session type.",
+ "chatSessionsExtPoint.name": "Name of the dynamically registered chat participant (eg: @agent). Must not contain whitespace.",
+ "chatSessionsExtPoint.order": "Order in which this item should be displayed.",
+ "chatSessionsExtPoint.supportsFileAttachments": "Určuje, zda tato relace chatu podporuje připojování souborů nebo odkazů na soubory.",
+ "chatSessionsExtPoint.supportsImageAttachments": "Whether this chat session supports attaching images.",
+ "chatSessionsExtPoint.supportsInstructionAttachments": "Whether this chat session supports attaching instructions.",
+ "chatSessionsExtPoint.supportsMCPAttachments": "Whether this chat session supports attaching MCP resources.",
+ "chatSessionsExtPoint.supportsProblemAttachments": "Whether this chat session supports attaching problems.",
+ "chatSessionsExtPoint.supportsSearchResultAttachments": "Whether this chat session supports attaching search results.",
+ "chatSessionsExtPoint.supportsSourceControlAttachments": "Whether this chat session supports attaching source control changes.",
+ "chatSessionsExtPoint.supportsSymbolAttachments": "Whether this chat session supports attaching symbols.",
+ "chatSessionsExtPoint.supportsToolAttachments": "Určuje, jestli tato relace chatu podporuje připojení nástrojů nebo odkazů na nástroje.",
+ "chatSessionsExtPoint.welcomeMessage": "Message text (supports markdown) to display in the chat welcome view for this session type.",
+ "chatSessionsExtPoint.welcomeTips": "Tips text (supports markdown and theme icons) to display in the chat welcome view for this session type.",
+ "chatSessionsExtPoint.welcomeTitle": "Title text to display in the chat welcome view for this session type.",
+ "chatSessionsExtPoint.when": "Podmínka, která musí mít hodnotu true, aby se zobrazila tato položka.",
+ "icon.dark": "Cesta k ikoně při použití tmavého motivu",
+ "icon.light": "Cesta k ikoně při použití světlého motivu",
+ "interactiveSession.chatSessionSubMenuTitle": "Create chat session",
+ "interactiveSession.openNewSessionEditor": "New {0}"
+ },
+ "vs/workbench/contrib/chat/browser/chatSessions/chatSessionPickerActionItem": {
+ "chat.sessionPicker.label": "Pick Option"
+ },
+ "vs/workbench/contrib/chat/browser/chatSessions/localChatSessionsProvider": {
+ "chat.sessions.description.finished": "Finished",
+ "chat.sessions.description.waitingForConfirmation": "Waiting for confirmation:",
+ "chat.sessions.description.working": "Working..."
+ },
+ "vs/workbench/contrib/chat/browser/chatSessions/view/chatSessionsView": {
+ "chat.agent.sessions": "Agent Sessions",
+ "chat.agent.sessions.title": "Agent Sessions",
+ "chat.sessions.gettingStarted": "Začínáme",
+ "chatSessions.noResults": "No local chat agent sessions\r\n[Start an Agent Session](command:{0})"
+ },
+ "vs/workbench/contrib/chat/browser/chatSessions/view/sessionsTreeRenderer": {
+ "chat.sessions.archivedSessions": "History",
+ "chat.sessions.groupNode.multiple": "{0} sessions",
+ "chat.sessions.groupNode.single": "1 session",
+ "chat.sessions.lastActivity": "Last Activity: {0}",
+ "chatSessionInputAriaLabel": "Zadejte název relace. Potvrďte stisknutím klávesy Enter nebo zrušte klávesou Esc."
+ },
+ "vs/workbench/contrib/chat/browser/chatSessions/view/sessionsViewPane": {
+ "chatSession.selectOption": "More...",
+ "chatSessions": "Relace chatu",
+ "chatSessions.dragLabel": "{0} agent sessions",
+ "chatSessions.installExtensions": "Nainstalovat rozšíření chatu",
+ "chatSessions.learnMoreGHCodingAgent": "Další informace o agentovi pro kódování GitHub Copilotu",
+ "chatSessions.loading": "Načítají se relace chatu...",
+ "chatSessions.refreshing": "Aktualizují se relace chatu..."
+ },
+ "vs/workbench/contrib/chat/browser/chatSetup": {
+ "chat.category": "Chat",
+ "chatSetupError": "Neúspěšné nastavení chatu",
+ "chatTookLongWarning": "Příprava chatu trvala příliš dlouho. Ujistěte se prosím, že jste přihlášeni k {0} a že je nainstalované a povolené rozšíření {1}.",
+ "chatTookLongWarningAnonymous": "Chat took too long to get ready. Please ensure that the extension `{0}` is installed and enabled.",
+ "chatWorkspaceTrust": "Funkce AI se v současné době podporují jenom v důvěryhodných pracovních prostorech.",
+ "continueWith": "Pokračovat s {0}",
+ "copilotUnavailableWarning": "Nepodařilo se získat odpověď. Zkuste to prosím znovu.",
+ "enableMore": "Povolit další funkce umělé inteligence",
+ "enterpriseInstance": "Jaká je vaše instance {0}?",
+ "enterpriseInstancePlaceholder": "například „octocat“ nebo „https://octocat.ghe.com“...",
+ "explain": "Explain",
+ "fix": "Fix",
+ "forceSignIn": "Přihlaste se, abyste mohli používat AI funkce.",
+ "generate": "Generate",
+ "generateDocs": "Generate Docs",
+ "generateTests": "Generate Tests",
+ "hideChatSetup": "Informace o tom, jak skrýt funkce AI",
+ "installingChat": "Připravuje se chat...",
+ "invalidEnterpriseInstance": "Musíte zadat platnou instanci {0} (tj. octocat nebo https://octocat.ghe.com).",
+ "manageOverages": "Správa nadlimitního využití plánu GitHub Copilot",
+ "managePlan": "Upgradovat na plán GitHub Copilot Pro",
+ "modify": "Modify",
+ "restartExtensionHost.reason.disable": "Zakazování funkcí AI",
+ "restartExtensionHost.reason.enable": "Povolování funkcí AI",
+ "retry": "Zkusit znovu",
+ "review": "Code Review",
+ "settingUpCopilotNeeded": "Abyste mohli používat chat, musíte nastavit GitHub Copilot.",
+ "settings": "Pokračováním vyjadřujete souhlas s {0}[Podmínkami]({1}) a [Prohlášením o zásadách ochrany osobních údajů]({2}). {3} Copilot může zobrazovat [veřejný kód]({4}) návrhy a používat vaše data k vylepšování produktu. Tato [nastavení]({5}) můžete kdykoli změnit.",
+ "settingsAnonymous": "By continuing, you agree to {0}'s [Terms]({1}) and [Privacy Statement]({2}).",
+ "setupAIButton": "Use AI Features",
+ "setupChatProgress": "Připravuje se chat...",
+ "setupChatSignIn2": "Přihlašujete se k {0}...",
+ "setupErrorDialog": "Neúspěšné nastavení chatu Chcete to zkusit znovu?",
+ "setupToolDisplayName": "Nový pracovní prostor",
+ "setupToolsDescription": "Umožňuje vygenerovat nový pracovní prostor ve VS Code.",
+ "signIn": "Sign in to use AI Features",
+ "skipForNow": "Prozatím přeskočit",
+ "startUsing": "Start using AI Features",
+ "terminalAgentDescription": "Zeptat se, jak něco provést na terminálu",
+ "triggerChatSetup": "Používejte AI funkce s Copilotem zdarma...",
+ "triggerChatSetupFromAccounts": "Přihlaste se, abyste mohli používat AI funkce...",
+ "trustNeeded": "Abyste mohli chat používat, musíte tomuto pracovnímu prostoru důvěřovat.",
+ "unknownSetupError": "Při nastavování chatu došlo k chybě. Chcete to zkusit znovu?",
+ "unknownSignInError": "Přihlášení k {0} se nezdařilo. Chcete to zkusit znovu?",
+ "unknownSignInErrorDetail": "Abyste mohli používat funkce AI, musíte být přihlášeni.",
+ "vscodeAgentDescription": "Zeptat se na VS Code",
+ "waitingChat": "Připravuje se chat...",
+ "waitingChat2": "Chat je už skoro připravený...",
+ "willResolveTo": "Přeloží se na {0}",
+ "workspaceAgentDescription": "Zeptejte se na svůj pracovní prostor"
+ },
+ "vs/workbench/contrib/chat/browser/chatStatus": {
+ "activateDescription": "Nastavte Copilot, abyste mohli používat funkce AI.",
+ "activeDescriptionAnonymous": "Pokračováním v používání {0} Copilotu souhlasíte s [Podmínkami]({2}){1} a [Prohlášením o zásadách ochrany osobních údajů]({3}).",
+ "additionalUsageDisabled": "Další placené žádosti úrovně Premium jsou zakázané.",
+ "additionalUsageEnabled": "Další placené žádosti úrovně Premium jsou povolené.",
+ "anonymousTitle": "Využití Copilotu",
+ "cancelSnooze": "Zrušit odložení",
+ "chatAgentSessionsTitle": "Agent Sessions",
+ "chatAndCompletionsQuotaExceededStatus": "Dosáhli jste kvóty.",
+ "chatQuotaExceededStatus": "Bylo dosaženo kvóty chatu.",
+ "chatSessionInProgressStatus": "1 agent session in progress",
+ "chatSessionsInProgressStatus": "{0} agent sessions in progress",
+ "chatStatus": "Stav Copilotu",
+ "chatStatusAria": "Copilot status",
+ "chatsLabel": "Zprávy v chatu",
+ "completions.plus5min": "+5 minut",
+ "completions.remainingTime": "zbývající",
+ "completions.snooze5minutes": "Hide inline suggestions for 5 min",
+ "completions.snooze5minutesTitle": "Hide suggestions for 5 min",
+ "completions.snoozeAdditional5minutes": "Odložit dalších 5 minut",
+ "completions.snoozeTimeDescription": "Inline suggestions are hidden for the remaining duration",
+ "completionsDisabledStatus": "Inline suggestions disabled",
+ "completionsLabel": "Inline Suggestions",
+ "completionsQuotaExceededStatus": "Inline suggestions quota reached",
+ "completionsSnoozedStatus": "Inline suggestions snoozed",
+ "copilotDisabledStatus": "Copilot disabled",
+ "enableAIFeatures": "Use AI Features",
+ "enableAdditionalUsage": "Správa placených žádostí úrovně Premium",
+ "enableCopilotButton": "Enable AI Features",
+ "enableDescription": "Pokud chcete používat funkce AI, povolte Copilot.",
+ "enableMoreAIFeatures": "Povolit další funkce umělé inteligence",
+ "enableMoreDescription": "Přihlaste se, abyste mohli používat více funkcí umělé inteligence Copilotu.",
+ "finishSetup": "Finish Setup",
+ "gaugeBackground": "Barva pozadí měřidla.",
+ "gaugeBorder": "Barva ohraničení měřidla.",
+ "gaugeErrorBackground": "Barva pozadí chyby měřidla.",
+ "gaugeErrorForeground": "Barva popředí chyby měřidla.",
+ "gaugeForeground": "Barva popředí měřidla.",
+ "gaugeWarningBackground": "Barva pozadí upozornění měřidla.",
+ "gaugeWarningForeground": "Barva popředí upozornění měřidla.",
+ "inProgressChatSession": "$(loading~spin) {0} (probíhá zpracování)",
+ "inlineSuggestions": "Inline Suggestions",
+ "learnMore": "Další informace",
+ "limitQuota": "Kvóta se resetuje {0}.",
+ "notSignedIn": "Signed out",
+ "premiumChatsLabel": "Žádosti úrovně Premium",
+ "quotaDisplay": "{0} %",
+ "quotaDisplayWithOverage": "+ další žádosti (celkem {0})",
+ "quotaLabel": "Spravovat chat",
+ "quotaLimited": "Omezené",
+ "quotaTooltip": "Spravovat chat",
+ "quotaUnlimited": "Zahrnuto",
+ "settings.codeCompletions.allFiles": "Všechny soubory",
+ "settings.codeCompletions.language": "{0}",
+ "settings.nextEditSuggestions": "Návrh dalších úprav",
+ "settings.snooze": "Odložit",
+ "settingsLabel": "Nastavení",
+ "settingsTooltip": "Otevřít nastavení",
+ "signInDescription": "Přihlaste se, abyste mohli používat funkce nástroje Copilot AI.",
+ "signInToUseAIFeatures": "Sign in to use AI Features",
+ "upgradeToCopilotPro": "Upgradovat na plán GitHub Copilot Pro",
+ "usageTitle": "Využití Copilotu",
+ "viewChatSessionsLabel": "View Agent Sessions",
+ "viewChatSessionsTooltip": "View Agent Sessions"
+ },
+ "vs/workbench/contrib/chat/browser/chatWidget": {
+ "agentTitle": "Build with Agent",
+ "chat.history.list": "Historie chatu",
+ "chat.history.showMore": "Chat history...",
+ "chat.history.showMoreAriaLabel": "Open chat history",
+ "chat.history.showMoreHover": "Show chat history...",
+ "chat.input.placeholder.lockedToAgent": "Chat s {0}",
+ "chatDescription": "Ask about your code",
+ "chatDisclaimer": "Odpovědi umělé inteligence mohou být nepřesné.",
+ "chatWidget.instructions": "[Generate Agent Instructions]({0}) to onboard AI onto your codebase.",
+ "chatWidget.promptFile.commandLabel": "{0}",
+ "chatWidget.suggestedPrompts.buildWorkspace": "Sestavit pracovní prostor",
+ "chatWidget.suggestedPrompts.buildWorkspacePrompt": "Jak můžu vytvořit tento pracovní prostor?",
+ "chatWidget.suggestedPrompts.findConfig": "Zobrazit konfiguraci",
+ "chatWidget.suggestedPrompts.findConfigPrompt": "Kde je definována konfigurace pro tento projekt?",
+ "chatWidget.suggestedPrompts.gettingStarted": "Zeptat se @vscode",
+ "chatWidget.suggestedPrompts.gettingStartedPrompt": "@vscode – Jak změním motiv na světlý režim?",
+ "chatWidget.suggestedPrompts.newProject": "Vytvořit projekt",
+ "chatWidget.suggestedPrompts.newProjectPrompt": "Vytvořit #new projekt Hello World v TypeScriptu",
+ "codingAgentTitle": "Delegovat na {0}",
+ "copilotCodingAgentMessage": "Tato relace chatu se přesměruje na [agenta pro kódování]({1}) {0}, kde se práce dokončí na pozadí. ",
+ "editsTitle": "Edit in context",
+ "genericCodingAgentMessage": "Tato relace chatu se přesměruje na agenta pro kódování {0}, kde se práce dokončí na pozadí. ",
+ "scrollDownButtonLabel": "Posunout dolů",
+ "settings": "By continuing with {0} Copilot, you agree to {1}'s [Terms]({2}) and [Privacy Statement]({3})."
+ },
+ "vs/workbench/contrib/chat/browser/codeBlockPart": {
+ "chat.codeBlock.toolbar": "Panel nástrojů bloku kódu",
+ "chat.codeBlockHelp": "Blok kódu",
+ "chat.codeBlockLabel": "Blok kódu {0}",
+ "chat.codeBlockToolbarLabel": "Blok kódu {0}",
+ "chat.compareCodeBlockLabel": "Úpravy kódu",
+ "chat.edits.1": "Použila se 1 změna v [[``{0}``]]",
+ "chat.edits.N": "Použily se změny (celkem {0}) v [[``{1}``]]",
+ "chat.edits.rejected": "Úpravy v [[{0}]] byly odmítnuty.",
+ "interactive.compare.apply.confirm": "Původní soubor byl změněn.",
+ "interactive.compare.apply.confirm.detail": "Chcete změny přesto použít?",
+ "modified": "Změněno",
+ "original": "Původní",
+ "vulnerabilitiesPlural": "{0} ohrožení zabezpečení",
+ "vulnerabilitiesSingular": "{0} ohrožení zabezpečení"
+ },
+ "vs/workbench/contrib/chat/browser/contrib/chatInputCompletions": {
+ "activeFile": "Aktivní soubor",
+ "fileEntryDescription": "{0} ({1})",
+ "installLabel": "Nainstalovat rozšíření chatu...",
+ "mcp.prompt.error": "Chyba při řešení výzvy: {0}",
+ "mcp.prompt.image": "Obrázek výzvy",
+ "mcp.prompt.resource": "Prostředek výzvy",
+ "tool_source_completion": "{0}: {1}"
+ },
+ "vs/workbench/contrib/chat/browser/contrib/chatInputEditorHover": {
+ "hoverAccessibilityChatAgent": "Tady je část zobrazovaná po najetí myší na agenta chatu."
+ },
+ "vs/workbench/contrib/chat/browser/contrib/chatInputRelatedFilesContrib": {
+ "relatedFile": "{0} (doporučeno)"
+ },
+ "vs/workbench/contrib/chat/browser/contrib/screenshot": {
+ "screenshot": "Snímek obrazovky"
+ },
+ "vs/workbench/contrib/chat/browser/languageModelToolsConfirmationService": {
+ "allowGlobally": "Always Allow",
+ "allowGloballyPost": "Always Allow Without Review",
+ "allowGloballyPostTooltip": "Always allow results from this tool to be sent without confirmation.",
+ "allowGloballyTooltip": "Vždy povolit tomuto nástroji běžet bez potvrzení",
+ "allowServerGlobally": "Always Allow Tools from {0}",
+ "allowServerGloballyPost": "Always Allow Tools from {0} Without Review",
+ "allowServerGloballyPostTooltip": "Always allow results from all tools from this server to be sent without confirmation.",
+ "allowServerGloballyTooltip": "Always allow all tools from this server to run without confirmation.",
+ "allowServerSession": "Allow Tools from {0} in this Session",
+ "allowServerSessionPost": "Allow Tools from {0} Without Review in this Session",
+ "allowServerSessionPostTooltip": "Allow results from all tools from this server to be sent without confirmation in this session.",
+ "allowServerSessionTooltip": "Allow all tools from this server to run in this session without confirmation.",
+ "allowServerWorkspace": "Allow Tools from {0} in this Workspace",
+ "allowServerWorkspacePost": "Allow Tools from {0} Without Review in this Workspace",
+ "allowServerWorkspacePostTooltip": "Allow results from all tools from this server to be sent without confirmation in this workspace.",
+ "allowServerWorkspaceTooltip": "Allow all tools from this server to run in this workspace without confirmation.",
+ "allowSession": "Povolit v této relaci",
+ "allowSessionPost": "Allow Without Review in this Session",
+ "allowSessionPostTooltip": "Allow results from this tool to be sent without confirmation in this session.",
+ "allowSessionTooltip": "Povolit tomuto nástroji běžet v této relaci bez potvrzení",
+ "allowWorkspace": "Povolit v tomto pracovním prostoru",
+ "allowWorkspacePost": "Allow Without Review in this Workspace",
+ "allowWorkspacePostTooltip": "Allow results from this tool to be sent without confirmation in this workspace.",
+ "allowWorkspaceTooltip": "Povolit tomuto nástroji běžet v tomto pracovním prostoru bez potvrzení",
+ "configureGlobalToolApprovals": "Configure global tool approvals",
+ "configureSessionToolApprovals": "Configure session tool approvals",
+ "configureWorkspaceToolApprovals": "Configure workspace tool approvals",
+ "continueWithoutReviewing": "Continue without reviewing any tool results",
+ "continueWithoutReviewingResults": "bez kontroly výsledku",
+ "runToolsWithoutApproval": "Spustit libovolný nástroj bez schválení",
+ "runWithoutApproval": "without approval",
+ "workspaceScope": "Konfigurovat pouze pro tento pracovní prostor"
+ },
+ "vs/workbench/contrib/chat/browser/languageModelToolsService": {
+ "autoApprove2.button.disable": "Zakázat",
+ "autoApprove2.button.enable": "Povolit",
+ "autoApprove2.markdown": "Globální automatické schvalování, známé také jako „režim YOLO“, zcela vypíná ruční schvalování pro _všechny nástroje ve všech pracovních prostorech_ a umožňuje agentovi jednat plně autonomně. Toto je velmi nebezpečné a *nikdy* se nedoporučuje, dokonce i kontejnerizovaná prostředí, jako jsou [Codespaces](https://github.com/features/codespaces) a [Dev Containers](https://marketplace.visualstudio.com/items?itemName=ms-vscode-remote.remote-containers), mají uživatelské klíče předané do kontejneru, který by mohl být ohrožen.\r\n\r\n**Tato funkce vypíná [klíčové bezpečnostní ochrany](https://code.visualstudio.com/docs/copilot/security) a výrazně usnadňuje útočníkovi kompromitaci zařízení.**",
+ "autoApprove2.title": "Chcete povolit globální automatické schválení?",
+ "copilot.toolSet.launch.description": "Launch and run code, binaries or tests in the workspace",
+ "copilot.toolSet.vscode.description": "Use VS Code features",
+ "defaultToolConfirmation.disclaimer": "Automatické schválení pro {0} je omezeno prostřednictvím {1}.",
+ "defaultToolConfirmation.message": "Run the '{0}' tool?",
+ "defaultToolConfirmation.title": "Povolit spuštění nástroje?"
+ },
+ "vs/workbench/contrib/chat/browser/modelPicker/modelPickerActionItem": {
+ "chat.manageModels": "Spravovat modely...",
+ "chat.manageModels.tooltip": "Manage Language Models",
+ "chat.modelPicker.label": "Vybrat model",
+ "chat.moreModels": "Add Language Models",
+ "chat.moreModels.tooltip": "Add Language Models",
+ "chat.morePremiumModels": "Přidat modely úrovně Premium",
+ "chat.morePremiumModels.tooltip": "Add Premium Models"
+ },
+ "vs/workbench/contrib/chat/browser/modelPicker/modePickerActionItem": {
+ "built-in": "Předdefinované",
+ "custom": "Vlastní"
+ },
+ "vs/workbench/contrib/chat/browser/promptSyntax/attachInstructionsAction": {
+ "attach-instructions.capitalized.ellipses": "Připojit pokyny...",
+ "chatContext.attach.instructions.label": "Pokyny...",
+ "commands.instructions.select-dialog.placeholder": "Vyberte soubory s pokyny, které se mají připojit.",
+ "commands.prompt.manage-dialog.placeholder": "Vyberte soubor s pokyny, který chcete otevřít.",
+ "configure-instructions": "Konfigurovat pokyny…",
+ "configure-instructions.short": "Chat Instructions",
+ "configureInstructions": "Konfigurovat pokyny…",
+ "placeholder": "Vyberte soubory s pokyny, které se mají připojit."
+ },
+ "vs/workbench/contrib/chat/browser/promptSyntax/chatModeActions": {
+ "configure-agents": "Konfigurovat vlastní agenty...",
+ "configure-agents.short": "Custom Agents",
+ "configure.agent.prompts.placeholder": "Select the custom agents to open and configure visibility in the agent picker",
+ "select-agent": "Konfigurovat vlastní agenty..."
+ },
+ "vs/workbench/contrib/chat/browser/promptSyntax/newPromptFileActions": {
+ "commands.new.agent.local.title": "New Custom Agent...",
+ "commands.new.instructions.local.title": "Nový soubor s pokyny...",
+ "commands.new.prompt.local.title": "Nový soubor výzvy...",
+ "commands.new.untitled.prompt.title": "Nový soubor výzvy bez názvu",
+ "enable.capitalized": "Povolit",
+ "learnMore.capitalized": "Další informace",
+ "workbench.command.prompts.create.user.enable-sync-notification": "Do you want to backup and sync your user prompt, instruction and custom agent files with Setting Sync?'"
+ },
+ "vs/workbench/contrib/chat/browser/promptSyntax/pickers/askForPromptName": {
+ "askForAgentFileName.placeholder": "Enter the name of the agent file",
+ "askForInstructionsFileName.placeholder": "Zadejte název souboru s pokyny.",
+ "askForPromptFileName.error.empty": "Zadejte prosím název.",
+ "askForPromptFileName.error.exists": "Soubor pro daný název už existuje.",
+ "askForPromptFileName.error.invalid": "Název obsahuje neplatné znaky.",
+ "askForPromptFileName.placeholder": "Zadejte název souboru výzvy.",
+ "askForRenamedAgentFileName.placeholder": "Enter a new name of the agent file",
+ "askForRenamedInstructionsFileName.placeholder": "Zadejte nový název souboru s pokyny.",
+ "askForRenamedPromptFileName.placeholder": "Zadejte nový název souboru výzvy"
+ },
+ "vs/workbench/contrib/chat/browser/promptSyntax/pickers/askForPromptSourceFolder": {
+ "agent.copy.location.placeholder": "Select a location to copy the agent file to...",
+ "agent.move.location.placeholder": "Select a location to move the agent file to...",
+ "commands.agent.create.ask-folder.empty.docs-label": "Learn how to configure custom agents",
+ "commands.agent.create.ask-folder.empty.placeholder": "No agent source folders found.",
+ "commands.instructions.create.ask-folder.empty.docs-label": "Zjistěte, jak nakonfigurovat opakovaně použitelné pokyny.",
+ "commands.instructions.create.ask-folder.empty.placeholder": "Nenašly se žádné zdrojové složky s pokyny.",
+ "commands.prompts.create.ask-folder.empty.docs-label": "Naučte se konfigurovat opakovaně použitelné výzvy",
+ "commands.prompts.create.ask-folder.empty.placeholder": "Nenašly se žádné zdrojové složky výzev.",
+ "commands.prompts.create.source-folder.current-workspace": "Aktuální pracovní prostor",
+ "current.folder": "Aktuální umístění",
+ "instructions.copy.location.placeholder": "Vyberte umístění, do kterého chcete zkopírovat soubor s pokyny...",
+ "instructions.move.location.placeholder": "Vyberte umístění, do kterého chcete přesunout soubor s pokyny...",
+ "prompt.copy.location.placeholder": "Vyberte umístění, do kterého chcete zkopírovat soubor výzvy...",
+ "prompt.move.location.placeholder": "Vyberte umístění, do kterého se má soubor výzvy přesunout...",
+ "workbench.command.agent.create.location.placeholder": "Select a location to create the agent file in...",
+ "workbench.command.instructions.create.location.placeholder": "Vyberte umístění, ve které chcete vytvořit soubor s pokyny…",
+ "workbench.command.prompt.create.location.placeholder": "Vyberte umístění, ve kterém se má vytvořit soubor výzvy…"
+ },
+ "vs/workbench/contrib/chat/browser/promptSyntax/pickers/promptFilePickers": {
+ "commands.new-agentfile.select-dialog.label": "Create new custom agent...",
+ "commands.new-instructionsfile.select-dialog.label": "Nový soubor s pokyny...",
+ "commands.new-promptfile.select-dialog.label": "Nový soubor výzvy...",
+ "commands.prompts.use.select-dialog.delete-prompt.confirm.message": "Určitě chcete {0} odstranit?",
+ "commands.update-instructions.select-dialog.label": "Generate agent instructions...",
+ "copy": "Copy",
+ "delete": "Odstranit",
+ "help.agent": "Zobrazit nápovědu k souborům vlastních agentů",
+ "help.instructions": "Show help on instruction files",
+ "help.prompt": "Show help on prompt files",
+ "hiddenInAgentPicker": "Skryto ve výběru agenta v zobrazení chatu",
+ "hiddenLabelInfo": "{0} (hidden)",
+ "makeInvisible": "Hide from agent picker",
+ "makeVisible": "Skryto ve výběru agenta v zobrazení chatu. Kliknutím zobrazíte.",
+ "open": "Otevřít v editoru",
+ "rename": "Move and/or Rename",
+ "searching": "Prohledává se systém souborů...",
+ "separator.extensions": "Rozšíření",
+ "separator.user": "User Data",
+ "separator.workspace": "Workspace",
+ "separator.workspace-agent-instructions": "Agent Instructions"
+ },
+ "vs/workbench/contrib/chat/browser/promptSyntax/promptCodingAgentActionOverlay": {
+ "runPromptWithCodingAgent": "Spustit soubor výzvy ve vzdáleném agentovi pro psaní kódu",
+ "runWithCodingAgent.label": "{0} – delegování na agenta Copilotu pro psaní kódu"
+ },
+ "vs/workbench/contrib/chat/browser/promptSyntax/promptToolsCodeLensProvider": {
+ "configure-tools.capitalized.ellipsis": "Konfigurovat nástroje...",
+ "placeholder": "Vybrat nástroje"
+ },
+ "vs/workbench/contrib/chat/browser/promptSyntax/promptUrlHandler": {
+ "confirmInstallAgent": "An external application wants to create a custom agent with content from a URL. Do you want to continue by selecting a destination folder and name?",
+ "confirmInstallInstructions": "Externí aplikace chce vytvořit soubor s pokyny s obsahem z adresy URL. Chcete pokračovat výběrem cílové složky a názvu?",
+ "confirmInstallPrompt": "Externí aplikace chce vytvořit soubor výzvy s obsahem z adresy URL. Chcete pokračovat výběrem cílové složky a názvu?",
+ "confirmOpenDetail2": "Tím získáte přístup k: {0}.\r\n\r\n",
+ "confirmOpenDetail3": "Pokud jste tento požadavek neiniciovali, může to představovat pokus o útok na váš systém. Pokud jste vy sami neprovedli žádné kroky vedoucí k iniciování tohoto požadavku, doporučujeme kliknout na Ne.",
+ "failed": "Nepovedlo se načíst adresu URL: {0}",
+ "noButton": "Ne",
+ "yesButton": "&&Ano"
+ },
+ "vs/workbench/contrib/chat/browser/promptSyntax/runPromptAction": {
+ "commands.prompt.manage-dialog.placeholder": "Vyberte soubor výzvy, který se má otevřít",
+ "commands.prompt.select-dialog.placeholder": "Vyberte soubor výzvy, který se má spustit (podržením klávesy {0} ho použijete v novém chatu).",
+ "configure-prompts": "Konfigurovat soubory výzev…",
+ "configure-prompts.short": "Soubory výzev",
+ "run-prompt-in-new-chat.capitalized": "Spustit výzvu v novém chatu",
+ "run-prompt.capitalized": "Spustit výzvu v aktuálním chatu",
+ "run-prompt.capitalized.ellipses": "Spustit výzvu..."
+ },
+ "vs/workbench/contrib/chat/browser/promptSyntax/saveAsPromptFileActions": {
+ "promptfile.saveAgentFile": "Uložit jako soubor agenta",
+ "promptfile.saveAgentFile.description": "Save as agent file",
+ "promptfile.saveInstructionsFile": "Uložit jako soubor s pokyny",
+ "promptfile.saveInstructionsFile.description": "Save as instructions file",
+ "promptfile.savePromptFile": "Uložit jako soubor výzvy",
+ "promptfile.savePromptFile.description": "Uložit jako soubor výzvy"
+ },
+ "vs/workbench/contrib/chat/browser/tools/toolSetsContribution": {
+ "bad_name1": "Neplatný název souboru",
+ "bad_name2": "{0} není platný název souboru.",
+ "chat.configureToolSets": "Konfigurovat sady nástrojů...",
+ "chat.configureToolSets.add": "Vytvořit nový soubor sad nástrojů...",
+ "chat.configureToolSets.placeholder": "Vyberte sadu nástrojů, která se má nakonfigurovat",
+ "chat.configureToolSets.short": "Sady nástrojů",
+ "input.placeholder": "Zadejte název souboru sad nástrojů",
+ "schema.default": "Prázdná sada nástrojů",
+ "schema.description": "Krátký popis této sady nástrojů",
+ "schema.icon": "Ikona, která se má použít pro tuto sadu nástrojů v uživatelském rozhraní Používá syntaxi \\$(name), například \\$(zap).",
+ "schema.tools": "Seznam nástrojů nebo sad nástrojů, které se mají zahrnout do této sady nástrojů Nemůže být prázdné a musí odkazovat na nástroje způsobem, na který se ve výzvách odkazuje.",
+ "tool.description": "{1} ({0})\r\n\r\n{2}",
+ "toolsetSchema.json": "Konfigurace uživatelských sad nástrojů"
+ },
+ "vs/workbench/contrib/chat/browser/viewsWelcome/chatViewsWelcomeHandler": {
+ "chatViewsWelcome.content": "Obsah uvítací zprávy První odkaz příkazu se vykreslí jako tlačítko.",
+ "chatViewsWelcome.icon": "Ikona uvítací zprávy",
+ "chatViewsWelcome.title": "Nadpis uvítací zprávy",
+ "chatViewsWelcome.when": "Podmínka, když se zobrazí uvítací zpráva.",
+ "vscode.extension.contributes.chatViewsWelcome": "Přidává uvítací zprávu do zobrazení chatu."
+ },
+ "vs/workbench/contrib/chat/browser/viewsWelcome/chatViewWelcomeController": {
+ "chatWidget.suggestedActions": "Suggested Actions",
+ "editPromptFile": "Upravit soubor výzvy",
+ "runPromptTitle": "Navrhovaná výzva: {0}",
+ "suggestedPromptAriaLabel": "Navrhovaná výzva: {0}",
+ "suggestedPromptAriaLabelWithDescription": "Suggested prompt: {0}, {1}"
+ },
+ "vs/workbench/contrib/chat/common/chatColors": {
+ "chat.avatarBackground": "Barva pozadí avataru chatu",
+ "chat.avatarForeground": "Barva popředí avataru chatu",
+ "chat.editedFileForeground": "Barva popředí souboru upraveného v chatu v seznamu upravených souborů",
+ "chat.linesAddedForeground": "Barva popředí řádků přidaných do pilulky bloku kódu chatu.",
+ "chat.linesRemovedForeground": "Barva popředí řádků odebraných z pilulky bloku kódu chatu.",
+ "chat.requestBackground": "Barva pozadí žádosti o chat.",
+ "chat.requestBorder": "Barva ohraničení žádosti o chat.",
+ "chat.requestBubbleBackground": "Barva pozadí bubliny žádosti o chat",
+ "chat.requestBubbleHoverBackground": "Barva pozadí bubliny žádosti o chat při najetí myší",
+ "chat.requestCodeBorder": "Barva ohraničení bloků kódu v bublině žádosti o chat",
+ "chat.slashCommandBackground": "Barva pozadí příkazu lomítka chatu.",
+ "chat.slashCommandForeground": "Barva popředí příkazu lomítka chatu.",
+ "chatCheckpointSeparator": "Barva oddělovače kontrolního bodu chatu"
+ },
+ "vs/workbench/contrib/chat/common/chatContextKeys": {
+ "agentKind": "Druh aktuálního agenta",
+ "agentSupportsAttachments": "True when the chat agent supports attachments.",
+ "chatEditApplied": "True, pokud se použily úpravy textu chatu.",
+ "chatEditingCanRedo": "Pravda, pokud je možné opakovat interakci na panelu pro úpravy.",
+ "chatEditingCanUndo": "Pravda, pokud je možné vrátit zpět interakci na panelu pro úpravy.",
+ "chatEditingHasElicitationRequest": "True when a chat elicitation request is pending.",
+ "chatEditingHasToolConfirmation": "Pravda, pokud je k dispozici potvrzení nástroje.",
+ "chatExtensionInvalid": "True, pokud je nainstalované rozšíření chatu neplatné a je třeba jej aktualizovat.",
+ "chatHasAgents": "True when the chat has custom agents available.",
+ "chatHasFileAttachments": "True, pokud má chat přiložené soubory.",
+ "chatInEmptyStateWithHistoryEnabled": "True, pokud je povolená prázdná historie stavu chatu A chat je v prázdném stavu.",
+ "chatIsActiveSession": "True, pokud je relace chatu aktuálně aktivní (nedá se odstranit).",
+ "chatIsArchivedItem": "True, pokud je položka relace chatu archivovaná.",
+ "chatIsEnabled": "True, pokud je chat povolen, protože je aktivován výchozí účastník chatu s implementací.",
+ "chatIsKatexMathElement": "True when focusing a KaTeX math element.",
+ "chatItemId": "ID položky chatu",
+ "chatLastItemId": "ID poslední položky chatu",
+ "chatModelsAreUserSelectable": "True, když uživatel může model chatu vybrat ručně",
+ "chatPanelExtensionParticipantRegistered": "True, pokud je výchozí účastník chatu zaregistrovaný pro panel z rozšíření.",
+ "chatPanelLocation": "Umístění panelu chatu",
+ "chatParticipantRegistered": "True, pokud je pro panel zaregistrován výchozí účastník chatu.",
+ "chatRemoteJobCreating": "True, když se vytváří úloha agenta vzdáleného psaní kódu.",
+ "chatRequest": "Položka chatu je žádost",
+ "chatResponse": "Položka chatu je odpověď",
+ "chatResponseErrored": "True, pokud odpověď chatu vedla k chybě.",
+ "chatResponseFiltered": "Pravda, když server vyfiltroval odpověď chatu.",
+ "chatResponseSupportsIssueReporting": "True, když aktuální odpověď na chat podporuje hlášení problémů",
+ "chatSessionHasModels": "True, když je chat v poskytnuté relaci chatu, která má k dispozici modely k zobrazení",
+ "chatSessionResponseDetectedAgentOrCommand": "Když se agent nebo příkaz zjistí automaticky",
+ "chatSessionType": "Typ aktuální položky relace chatu",
+ "chatSkipRequestInProgressMessage": "True, když se má přeskočit zpráva o probíhajícím požadavku na chat.",
+ "chatToolCount": "The number of tools available in the current agent.",
+ "chatToolGroupingThreshold": "Počet nástrojů, se kterými začneme provádět virtuální seskupování.",
+ "enableRemoteCodingAgentPromptFileOverlay": "Určuje, jestli je povolená funkce překryvného souboru výzvy agenta vzdáleného kódování",
+ "filePartOfEditSession": "True, pokud je widget chatu v souboru s relací úprav.",
+ "hasRemoteCodingAgent": "Určuje, jestli je k dispozici jakýkoli vzdálený agent psaní kódu",
+ "inChat": "True, pokud je fokus ve widgetu chatu, jinak false.",
+ "inChatEditor": "Určuje, jestli je fokus v editoru chatu.",
+ "inChatTerminalToolOutput": "True, pokud je fokus v oblasti výstupu terminálu chatu",
+ "inInteractiveInput": "True, pokud je fokus ve vstupu chatu, jinak false.",
+ "inQuickChat": "True, pokud má uživatelské rozhraní rychlého chatu fokus, jinak false",
+ "interactiveInputHasFocus": "True, pokud má vstup chatu fokus",
+ "interactiveInputHasText": "True, pokud má vstup chatu text.",
+ "interactiveSessionCurrentlyEditing": "True, když se aktuální požadavek upravuje.",
+ "interactiveSessionCurrentlyEditingInput": "True, když se upravuje aktuální vstup požadavku v dolní části.",
+ "interactiveSessionRequestInProgress": "True, pokud aktuální požadavek stále probíhá.",
+ "interactiveSessionResponseVote": "Když se hlasuje pro odpověď, nastaví se na „pro“. Když se hlasuje proti ní, nastaví se na „proti“. V opačném případě jde o prázdný řetězec.",
+ "lockedToCodingAgent": "Má hodnotu True, když je widget chatu uzamčen k relaci agenta pro psaní kódu.",
+ "toolsCount": "Počet nástrojů dostupných v chatu.",
+ "withinEditSessionDiff": "True, když se widget chatu odešle do chatu relace úprav."
+ },
+ "vs/workbench/contrib/chat/common/chatEditingService": {
+ "chatEditingAgentSupportsReadonlyReferences": "Určuje, jestli agent pro úpravu chatu podporuje odkazy jen pro čtení (dočasné).",
+ "chatEditingWidgetFileState": "Aktuální stav souboru ve widgetu pro úpravy v chatu"
+ },
+ "vs/workbench/contrib/chat/common/chatModel": {
+ "codeCitation": "Našel se podobný kód s 1 typem licence.",
+ "codeCitations": "Našel se podobný kód s tím počtem typů licencí: {0}.",
+ "copyrightContentRetry": "Odpověď se vymazala kvůli možné shodě s veřejným kódem. Zkouší se to znovu s upravenou výzvou.",
+ "editsSummary": "Provedly se změny.",
+ "filteredContentRetry": "Odpověď se vymazala kvůli filtrům pro zabezpečení obsahu. Zkouší se to znovu s upravenou výzvou."
+ },
+ "vs/workbench/contrib/chat/common/chatModes": {
+ "agentDescription": "Describe what to build next",
+ "chatDescription": "Explore and understand your code",
+ "editsDescription": "Edit or refactor selected code"
+ },
+ "vs/workbench/contrib/chat/common/chatProgressTypes/chatToolInvocation": {
+ "toolInvocationMessage": "Používá se {0}"
+ },
+ "vs/workbench/contrib/chat/common/chatServiceImpl": {
+ "emptyResponse": "Zprostředkovatel vrátil odpověď s hodnotou null.",
+ "newChat": "Nový chat"
+ },
+ "vs/workbench/contrib/chat/common/chatSessionStore": {
+ "join.chatSessionStore": "Ukládá se historie chatu.",
+ "newChat": "Nový chat"
+ },
+ "vs/workbench/contrib/chat/common/chatUrlFetchingConfirmation": {
+ "allowRequestsCheckbox": "Make requests without confirmation",
+ "allowResponsesCheckbox": "Allow responses without confirmation",
+ "approveAll": "Schválit vše",
+ "approveRequestTo": "Povolit požadavky na {0}",
+ "approveResponseFrom": "Allow responses from {0}",
+ "approves": "Approves {0}",
+ "delete": "Odstranit",
+ "denyAll": "Deny all",
+ "moreOptions": "Allow requests to...",
+ "moreOptionsManage": "More Options...",
+ "moreOptionsMultiple": "Configure URL Approvals...",
+ "noApprovals": "No approvals",
+ "openSettings": "Open settings",
+ "requests": "requests",
+ "responses": "odpovědi",
+ "selectApproval": "Vyberte vzor adresy URL ke schválení"
+ },
+ "vs/workbench/contrib/chat/common/chatVariableEntries": {
+ "chat.attachment.problems.all": "Všechny problémy",
+ "chat.attachment.problems.inFile": "Problémy v: {0}"
+ },
+ "vs/workbench/contrib/chat/common/languageModels": {
+ "vscode.extension.contributes.languageModelChatProviders": "Přidává poskytovatele chatu s jazykovým modelem konkrétního dodavatele.",
+ "vscode.extension.contributes.languageModels.displayName": "Zobrazovaný název poskytovatele chatu jazykového modelu",
+ "vscode.extension.contributes.languageModels.emptyVendor": "Pole dodavatele nemůže být prázdné.",
+ "vscode.extension.contributes.languageModels.managementCommand": "Příkaz pro správu poskytovatele chatu jazykového modelu, například Správa modelů Copilotu Používá se ve výběru modelu chatu. Pokud není zadáno, nezobrazí se během výběru dodavatele ikona ozubeného kola.",
+ "vscode.extension.contributes.languageModels.vendor": "Globálně jedinečný dodavatel poskytovatele chatu jazykového modelu",
+ "vscode.extension.contributes.languageModels.vendorAlreadyRegistered": "Dodavatel {0} je již zaregistrován a nelze ho zaregistrovat dvakrát.",
+ "vscode.extension.contributes.languageModels.when": "Podmínka, která musí být splněna (true), aby se tento poskytovatel chatu jazykového modelu zobrazil v seznamu Spravovat modely",
+ "vscode.extension.contributes.languageModels.whitespaceVendor": "Pole dodavatele nemůže začínat ani končit prázdnými znaky."
+ },
+ "vs/workbench/contrib/chat/common/languageModelStats": {
+ "Language Models": "Copilot",
+ "chat": "chat",
+ "languageModels": "Statistika využití jazykových modelů tohoto rozšíření"
+ },
+ "vs/workbench/contrib/chat/common/languageModelToolsService": {
+ "builtin": "Předdefinované",
+ "toolResultDataPartA11y": "{0} of {1} binary data",
+ "user": "Definované uživatelem"
+ },
+ "vs/workbench/contrib/chat/common/modelPicker/modelPickerWidget": {
+ "chat.modelPicker.other": "Jiné modely"
+ },
+ "vs/workbench/contrib/chat/common/promptSyntax/chatPromptFilesContribution": {
+ "chatContribution.property.description": "(Optional) Description of the file.",
+ "chatContribution.property.name": "Identifier for this file. Must be unique within this extension for this contribution point.",
+ "chatContribution.property.path": "Path to the file relative to the extension root.",
+ "chatContribution.schema.description": "Contributes {0} for chat prompts.",
+ "extension.invalid.name": "Rozšíření {0} nemůže registrovat položku {1} s neplatným názvem {2}.",
+ "extension.invalid.path": "Extension '{0}' {1} entry '{2}' path resolves outside the extension.",
+ "extension.missing.description": "Extension '{0}' cannot register {1} entry '{2}' without description.",
+ "extension.missing.path": "Extension '{0}' cannot register {1} entry '{2}' without path.",
+ "extension.registration.failed": "Failed to register {0} entry '{1}': {2}"
+ },
+ "vs/workbench/contrib/chat/common/promptSyntax/computeAutomaticInstructions": {
+ "instruction.file.description.agentsmd.folder": "Instructions for folder '{0}'",
+ "instruction.file.description.agentsmd.root": "Instructions for the workspace",
+ "instruction.file.reason.agentsmd": "Automaticky připojeno, když je povolené nastavení {0}.",
+ "instruction.file.reason.allFiles": "Automaticky připojeno jako vzor je **",
+ "instruction.file.reason.copilot": "Automaticky připojeno, když je povolené nastavení {0}.",
+ "instruction.file.reason.referenced": "Odkazuje: {0}",
+ "instruction.file.reason.specificFile": "Automaticky připojeno jako shody {1} vzorů {0}"
+ },
+ "vs/workbench/contrib/chat/common/promptSyntax/languageProviders/promptCodeActions": {
+ "expandToolNames": "Expand to {0} tools",
+ "migrateToAgent": "Migrate to custom agent file",
+ "renameToAgent": "Rename to 'agent'",
+ "updateAllToolNames": "Aktualizovat všechny názvy nástrojů",
+ "updateToolName": "Update to '{0}'"
+ },
+ "vs/workbench/contrib/chat/common/promptSyntax/languageProviders/promptHeaderAutocompletion": {
+ "promptHeaderAutocompletion.handoffsExample": "Handoff Example"
+ },
+ "vs/workbench/contrib/chat/common/promptSyntax/languageProviders/promptHovers": {
+ "modelFamily": "- Family: {0}",
+ "modelName": "– Název: {0}",
+ "modelVendor": "- Vendor: {0}",
+ "promptHeader.agent.argumentHint": "The argument-hint describes what inputs the custom agent expects or supports.",
+ "promptHeader.agent.description": "The description of the custom agent, what it does and when to use it.",
+ "promptHeader.agent.handoffs": "Možné akce předání, když agent dokončí svou úlohu",
+ "promptHeader.agent.handoffs.githubCopilot": "Note: This attribute is not used when target is github-copilot.",
+ "promptHeader.agent.model": "Specify the model that runs this custom agent.",
+ "promptHeader.agent.model.githubCopilot": "Note: This attribute is not used when target is github-copilot.",
+ "promptHeader.agent.name": "Název agenta zobrazovaný v uživatelském rozhraní",
+ "promptHeader.agent.target": "Cíl, na který se vztahují atributy ze záhlaví, jako je například tools. Možné hodnoty jsou github-copilot a vscode.",
+ "promptHeader.agent.tools": "The set of tools that the custom agent has access to.",
+ "promptHeader.instructions.applyToRange": "One or more glob pattern (separated by comma) that describe for which files the instructions apply to. Based on these patterns, the file is automatically included in the prompt, when the context contains a file that matches one or more of these patterns. Use `**` when you want this file to always be added.\r\nExample: `**/*.ts`, `**/*.js`, `client/**`",
+ "promptHeader.instructions.description": "Popis souboru pokynů. Dá se použít k poskytnutí dalšího kontextu nebo informací o pokynech a předá se jazykovému modelu jako součást výzvy.",
+ "promptHeader.instructions.name": "The name of the instruction file as shown in the UI. If not set, the name is derived from the file name.",
+ "promptHeader.prompt.agent.builtInDesc": "Built-in agent",
+ "promptHeader.prompt.agent.builtin": "**Built-in agents:**",
+ "promptHeader.prompt.agent.custom": "**Vlastní agenti:**",
+ "promptHeader.prompt.agent.customDesc": "Custom agent",
+ "promptHeader.prompt.agent.description": "The agent to use when running this prompt.",
+ "promptHeader.prompt.argumentHint": "The argument-hint describes what inputs the prompt expects or supports.",
+ "promptHeader.prompt.description": "The description of the reusable prompt, what it does and when to use it.",
+ "promptHeader.prompt.model": "Model, který se má použít v této výzvě.",
+ "promptHeader.prompt.name": "Název výzvy. To je také název příkazu se znakem lomítka, který tuto výzvu spustí.",
+ "promptHeader.prompt.tools": "Nástroje, které se mají použít v této výzvě.",
+ "toolSetName": "Sada nástrojů: {0}\r\n\r\n"
+ },
+ "vs/workbench/contrib/chat/common/promptSyntax/languageProviders/promptValidator": {
+ "githubCopilotTools.customAgent": "Volat vlastní agenty",
+ "githubCopilotTools.edit": "Upravit soubory",
+ "githubCopilotTools.search": "Hledat v souborech",
+ "githubCopilotTools.shell": "Spouštět příkazy prostředí",
+ "promptValidator.agentNotFound": "Neznámý agent {0} Dostupní agenti: {1}",
+ "promptValidator.applyToMustBeString": "Atribut applyTo musí být řetězec.",
+ "promptValidator.applyToMustBeValidGlob": "Atribut applyTo musí být platný glob vzor.",
+ "promptValidator.argumentHintMustBeString": "The 'argument-hint' attribute must be a string.",
+ "promptValidator.argumentHintShouldNotBeEmpty": "The 'argument-hint' attribute should not be empty.",
+ "promptValidator.attributeMustBeNonEmpty": "The '{0}' attribute must be a non-empty string.",
+ "promptValidator.attributeMustBeString": "The '{0}' attribute must be a string.",
+ "promptValidator.chatModesRenamedToAgents": "Chat modes have been renamed to agents. Please move this file to {0}",
+ "promptValidator.chatModesRenamedToAgentsNoMove": "Chat modes have been renamed to agents. Please move the file to {0}",
+ "promptValidator.deprecatedVariableReference": "Tool or toolset '{0}' has been renamed, use '{1}' instead.",
+ "promptValidator.deprecatedVariableReferenceMultipleNames": "Tool or toolset '{0}' has been renamed, use the following tools instead: {1}",
+ "promptValidator.descriptionMustBeString": "Atribut description musí být řetězec.",
+ "promptValidator.descriptionShouldNotBeEmpty": "Atribut description by neměl být prázdný.",
+ "promptValidator.disabledTool": "Nástroj nebo sada nástrojů {0} musí být povolené také v záhlaví.",
+ "promptValidator.eachHandoffMustBeObject": "Each handoff in the 'handoffs' attribute must be an object with 'label', 'agent', 'prompt' and optional 'send'.",
+ "promptValidator.eachToolMustBeString": "Každý název nástroje v atributu tools musí být řetězec.",
+ "promptValidator.excludeAgentMustBeArray": "The 'excludeAgent' attribute must be an array.",
+ "promptValidator.fileNotFound": "Soubor{0}nebyl v{1}nalezen.",
+ "promptValidator.handoffAgentMustBeNonEmptyString": "The 'agent' property in a handoff must be a non-empty string.",
+ "promptValidator.handoffLabelMustBeNonEmptyString": "The 'label' property in a handoff must be a non-empty string.",
+ "promptValidator.handoffPromptMustBeString": "The 'prompt' property in a handoff must be a string.",
+ "promptValidator.handoffSendMustBeBoolean": "The 'send' property in a handoff must be a boolean.",
+ "promptValidator.handoffsMustBeArray": "The 'handoffs' attribute must be an array.",
+ "promptValidator.ignoredAttribute.vscode-agent": "Attribute '{0}' is ignored when running locally in VS Code.",
+ "promptValidator.invalidFileReference": "Neplatný odkaz na soubor {0}.",
+ "promptValidator.missingHandoffProperties": "Missing required properties {0} in handoff object.",
+ "promptValidator.modeDeprecated": "Atribut mode je zastaralý. Místo něj se používá atribut agent.",
+ "promptValidator.modeDeprecated.useAgent": "The 'mode' attribute has been deprecated. Please rename it to 'agent'.",
+ "promptValidator.modelMustBeNonEmpty": "Atribut model musí být neprázdný řetězec.",
+ "promptValidator.modelMustBeString": "Atribut model musí být řetězec.",
+ "promptValidator.modelNotFound": "Neznámý model {0}.",
+ "promptValidator.modelNotSuited": "Model {0} není vhodný pro režim agenta.",
+ "promptValidator.nameMustBeString": "The 'name' attribute must be a string.",
+ "promptValidator.nameShouldNotBeEmpty": "The 'name' attribute must not be empty.",
+ "promptValidator.targetInvalidValue": "The 'target' attribute must be one of: {0}.",
+ "promptValidator.targetMustBeNonEmpty": "The 'target' attribute must be a non-empty string.",
+ "promptValidator.targetMustBeString": "The 'target' attribute must be a string.",
+ "promptValidator.toolDeprecated": "Nástroj nebo sada nástrojů {0} byly přejmenovány. Použijte místo toho {1}.",
+ "promptValidator.toolDeprecatedMultipleNames": "Tool or toolset '{0}' has been renamed, use the following tools instead: {1}",
+ "promptValidator.toolNotFound": "Neznámý nástroj {0}",
+ "promptValidator.toolsMustBeArrayOrMap": "Atribut tools musí být pole.",
+ "promptValidator.toolsOnlyInAgent": "The 'tools' attribute is only supported when using agents. Attribute will be ignored.",
+ "promptValidator.unknownAttribute.github-agent": "Attribute '{0}' is not supported in custom GitHub Copilot agent files. Supported: {1}.",
+ "promptValidator.unknownAttribute.instructions": "Atribut {0} není v souborech s pokyny podporován. Podporováno: {1}.",
+ "promptValidator.unknownAttribute.prompt": "Atribut {0} není v souborech s výzvou podporován. Podporováno: {1}.",
+ "promptValidator.unknownAttribute.vscode-agent": "Attribute '{0}' is not supported in VS Code agent files. Supported: {1}.",
+ "promptValidator.unknownHandoffProperty": "Unknown property '{0}' in handoff object. Supported properties are 'label', 'agent', 'prompt' and optional 'send'.",
+ "promptValidator.unknownVariableReference": "Neznámý nástroj nebo sada nástrojů {0}."
+ },
+ "vs/workbench/contrib/chat/common/promptSyntax/service/promptsServiceImpl": {
+ "extension.with.id": "Rozšíření: {0}",
+ "user-data-dir.capitalized": "Uživatelská data"
+ },
+ "vs/workbench/contrib/chat/common/tools/languageModelToolsContribution": {
+ "canBeReferencedInPrompt": "Pokud je hodnota True, zobrazí se tento nástroj jako příloha, kterou může uživatel přidat do své žádosti ručně. Účastníci chatu obdrží nástroj v {0}.",
+ "condition": "Podmínka, která musí být vyhodnocena jako true, aby byl tento nástroj povolen. Upozorňujeme, že nástroj může být vyvolán i jiným rozšířením, a to i v případě, že je jeho podmínka when vyhodnocena jako false.",
+ "descriptions": "Popis",
+ "icon": "Ikona, která představuje tento nástroj Může to být cesta k souboru, objekt s cestami k souborům pro tmavý a světlý motiv nebo odkaz na ikonu motivu, například „$(zap)“.",
+ "icon.dark": "Cesta k ikoně při použití tmavého motivu",
+ "icon.light": "Cesta k ikoně při použití světlého motivu",
+ "langModelToolSets": "Sady nástrojů jazykového modelu",
+ "langModelTools": "Nástroje jazykového modelu",
+ "legacyToolReferenceFullNames": "An array of deprecated names for backwards compatibility that can also be used to reference this tool in a query. Each name must not contain whitespace. Full names are generally in the format `toolsetName/toolReferenceName` (e.g., `search/readFile`) or just `toolReferenceName` when there is no toolset (e.g., `readFile`).",
+ "name": "Název",
+ "parametersSchema": "Schéma JSON pro vstup, který tento nástroj přijímá. Vstup musí být objekt na nejvyšší úrovni. Konkrétní jazykový model nemusí podporovat všechny funkce schématu JSON. Další informace najdete v dokumentaci k řadě jazykových modelů, kterou používáte.",
+ "reference": "Referenční název",
+ "toolDisplayName": "Člověkem čitelný název tohoto nástroje, který lze použít k jeho popisu v uživatelském rozhraní",
+ "toolModelDescription": "Popis tohoto nástroje, který může jazykový model použít k jeho výběru.",
+ "toolName": "Jedinečný název tohoto nástroje. Tento název musí být globálně jedinečný identifikátor a používá se také jako název při prezentaci tohoto nástroje v jazykovém modelu.",
+ "toolName2": "Pokud je {0} pro tento nástroj povolen, může uživatel k vyvolání nástroje v dotazu použít # s tímto názvem. V opačném případě není název povinný. Jméno nesmí obsahovat prázdné znaky.",
+ "toolSetDescription": "Popis této sady nástrojů",
+ "toolSetIcon": "Ikona, která představuje tuto sadu nástrojů, například $(zap)",
+ "toolSetLegacyFullNames": "An array of deprecated names for backwards compatibility that can also be used to reference this tool set. Each name must not contain whitespace. Full names are generally in the format `parentToolSetName/toolSetName` (e.g., `github/repo`) or just `toolSetName` when there is no parent toolset (e.g., `repo`).",
+ "toolSetName": "Název této sady nástrojů Používá se jako odkaz a nesmí obsahovat prázdné znaky.",
+ "toolSetTools": "Seznam nástrojů nebo sad nástrojů, které se mají zahrnout do této sady nástrojů Nemůže být prázdné a musí odkazovat na nástroje podle jejich toolReferenceName.",
+ "toolTableDescription": "Popis",
+ "toolTableDisplayName": "Zobrazovaný název",
+ "toolTableName": "Název",
+ "toolTags": "Sada značek, které zhruba popisují schopnosti nástroje. Uživatel nástroje je může použít k filtrování sady nástrojů pouze na ty, které jsou relevantní pro daný úkol, nebo může chtít vybrat značku, která může být použita k identifikaci pouze těch nástrojů, které jsou součástí tohoto rozšíření.",
+ "toolUserDescription": "Popis tohoto nástroje, který se může zobrazit uživateli.",
+ "tools": "Nástroje",
+ "vscode.extension.contributes.toolSets": "Přidává sadu nástrojů jazykového modelu, které je možné použít společně.",
+ "vscode.extension.contributes.tools": "Přidává nástroj, který lze vyvolat pomocí jazykového modelu v relaci chatu nebo ze samostatného příkazu. Zaregistrované nástroje můžou být používány všemi rozšířeními."
+ },
+ "vs/workbench/contrib/chat/common/tools/manageTodoListTool": {
+ "todo.added.multiple": "Přidané úkoly: {0}",
+ "todo.added.single": "Přidán 1 úkol",
+ "todo.completed": "Completed: *{0}* ({1}/{2})",
+ "todo.created.multiple": "Vytvořené úkoly: {0}",
+ "todo.created.single": "Vytvořen 1 úkol",
+ "todo.readOperation": "Přečíst seznam úkolů",
+ "todo.starting": "Starting: *{0}* ({1}/{2})",
+ "todo.updated": "Aktualizován seznam úkolů",
+ "todo.updatedList": "Aktualizován seznam úkolů",
+ "tool.manageTodoList.displayName": "Správa a sledování položek úkolů pro plánování úkolů",
+ "tool.manageTodoList.userDescription": "Manage and track todo items for task planning"
+ },
+ "vs/workbench/contrib/chat/common/tools/runSubagentTool": {
+ "tool.runSubagent.displayName": "Spustit podagenta",
+ "tool.runSubagent.userDescription": "Run a task within an isolated subagent context to enable efficient organization of tasks and context window management."
+ },
+ "vs/workbench/contrib/chat/common/tools/tools": {
+ "toolset.custom-agent": "Delegate tasks to other agents"
+ },
+ "vs/workbench/contrib/chat/common/voiceChatService": {
+ "voiceChatInProgress": "Probíhá relace převodu řeči na text pro chat."
+ },
+ "vs/workbench/contrib/chat/electron-browser/actions/chatDeveloperActions": {
+ "workbench.action.chat.openStorageFolder.label": "Otevřít složku úložiště chatu"
+ },
+ "vs/workbench/contrib/chat/electron-browser/actions/voiceChatActions": {
+ "keywordActivation.status.active": "Naslouchání „Hey Code“…",
+ "keywordActivation.status.inactive": "Čeká se na ukončení hlasové konverzace…",
+ "keywordActivation.status.name": "Aktivace hlasovými klíčovými slovy",
+ "listening": "Poslouchám",
+ "scopedChatSynthesisInProgress": "Definováno jako umístění, kde probíhá záznam hlasu z mikrofonu pro hlasový chat. Tento klíč je definován pouze ve vymezeném oboru podle kontextu chatu.",
+ "scopedVoiceChatGettingReady": "Pravda, když se připravujete na příjem hlasového vstupu z mikrofonu pro hlasový chat. Tento klíč je definován pouze ve vymezeném oboru podle kontextu chatu.",
+ "scopedVoiceChatInProgress": "Definováno jako umístění, kde probíhá záznam hlasu z mikrofonu pro hlasový chat. Tento klíč je definován pouze ve vymezeném oboru podle kontextu chatu.",
+ "voice.keywordActivation": "Určuje, jestli se rozpozná fráze klíčového slova Hey Code, aby se spustila relace hlasové konverzace. Když se tato možnost povolí, spustí se nahrávání z mikrofonu, ale zvuk se zpracuje místně a nikdy se neodešle na server.",
+ "voice.keywordActivation.chatInContext": "Aktivace klíčovými slovy je povolená a naslouchá funkci Hey Code, aby se v aktivním editoru spustila relace hlasové konverzace nebo zobrazení v závislosti na fokusu klávesnice.",
+ "voice.keywordActivation.chatInView": "Aktivace klíčovými slovy je povolená a naslouchá funkci Hey Code, aby se v zobrazení chatu spustila relace hlasové konverzace.",
+ "voice.keywordActivation.inlineChat": "Aktivace klíčovými slovy je povolená a naslouchá funkci Hey Code, aby se v aktivním editoru spustila relace hlasové konverzace, pokud je to možné.",
+ "voice.keywordActivation.off": "Aktivace klíčovými slovy je zakázaná.",
+ "voice.keywordActivation.quickChat": "Aktivace klíčovými slovy je povolená a naslouchá funkci Hey Code, aby se v rychlém chatu spustila relace hlasové konverzace.",
+ "workbench.action.chat.holdToVoiceChatInChatView.label": "Podržením zobrazíte hlasový chat v zobrazení chatu",
+ "workbench.action.chat.inlineVoiceChat": "Vložená hlasová konverzace",
+ "workbench.action.chat.quickVoiceChat.label": "Rychlá hlasová konverzace",
+ "workbench.action.chat.readChatResponseAloud": "Číst nahlas",
+ "workbench.action.chat.startVoiceChat.label": "Zahájit hlasový chat",
+ "workbench.action.chat.stopListening.label": "Přestat poslouchat",
+ "workbench.action.chat.stopListeningAndSubmit.label": "Přestat poslouchat a odeslat",
+ "workbench.action.chat.stopReadChatItemAloud": "Zastavit čtení nahlas",
+ "workbench.action.chat.voiceChatInView.label": "Voice chat v zobrazení chatu",
+ "workbench.action.speech.stopReadAloud": "Zastavit čtení nahlas"
+ },
+ "vs/workbench/contrib/chat/electron-browser/chat.contribution": {
+ "changeWorkspace.detail": "Pokud změníte pracovní prostor, žádost o chat se zastaví.",
+ "changeWorkspace.message": "Probíhá žádost o chat. Opravdu chcete změnit pracovní prostor?",
+ "chatRequestInProgress": "Probíhá žádost o chat.",
+ "closeTheWindow.detail": "Pokud okno zavřete, žádost o chat se zastaví.",
+ "closeTheWindow.message": "Probíhá žádost o chat. Opravdu chcete okno zavřít?",
+ "copilotWorkspaceTrust": "Funkce AI se v současné době podporují jenom v důvěryhodných pracovních prostorech.",
+ "exit.detail": "Žádost o chat se zastaví, pokud ji ukončíte.",
+ "exit.message": "Probíhá žádost o chat. Opravdu chcete skončit?",
+ "quit.detail": "Žádost o chat se zastaví, pokud ji ukončíte.",
+ "quit.message": "Probíhá žádost o chat. Opravdu chcete skončit?",
+ "reloadTheWindow.detail": "Pokud okno znovu načtete, žádost o chat se zastaví.",
+ "reloadTheWindow.message": "Probíhá žádost o chat. Opravdu chcete znovu načíst okno?"
+ },
+ "vs/workbench/contrib/chat/electron-browser/tools/fetchPageTool": {
+ "fetchWebPage.binaryNotSupported": "Binární soubory se v tuto chvíli nepodporují.",
+ "fetchWebPage.confirmationMessage.plural": "Webový obsah může obsahovat škodlivý kód nebo se pokusit o útoky prostřednictvím injektáže výzvy.",
+ "fetchWebPage.confirmationTitle.plural": "Načíst webové stránky?",
+ "fetchWebPage.confirmationTitle.singular": "Načíst webovou stránku?",
+ "fetchWebPage.invalidUrl": "Neplatná adresa URL",
+ "fetchWebPage.invocationMessage.plural": "Načítají se prostředky ({0})",
+ "fetchWebPage.invocationMessage.singular": "Načítá se: {0}",
+ "fetchWebPage.invocationMessage.singularAsLink": "Načítá se [prostředek]({0})",
+ "fetchWebPage.noValidUrls": "Nejsou zadané žádné platné adresy URL.",
+ "fetchWebPage.pastTenseMessage.plural": "Načetly se prostředky ({0}), ale následující adresy URL byly neplatné:\r\n\r\n{1}\r\n\r\n",
+ "fetchWebPage.pastTenseMessage.singular": "Načetl se prostředek, ale následující adresa URL byla neplatná:\r\n\r\n{0}\r\n\r\n",
+ "fetchWebPage.pastTenseMessageResult.plural": "Načetly se prostředky ({0})",
+ "fetchWebPage.pastTenseMessageResult.singular": "Načteno: {0}",
+ "fetchWebPage.pastTenseMessageResult.singularAsLink": "Načetl se [prostředek]({0})",
+ "fetchWebPage.urlsDescription": "Pole adres URL, ze kterého se má načíst obsah"
},
"vs/workbench/contrib/codeActions/browser/codeActionsContribution": {
- "codeActionsOnSave": "Typy akcí kódu, které se mají spustit při uložení",
- "codeActionsOnSave.fixAll": "Určuje, jestli má být při ukládání souboru spuštěna akce automatické opravy.",
- "codeActionsOnSave.generic": "Určuje, jestli by se při ukládání souborů měly spouštět akce {0}."
- },
- "vs/workbench/contrib/codeActions/common/codeActionsExtensionPoint": {
- "contributes.codeActions": "Umožňuje nakonfigurovat, který editor se má použít pro daný prostředek.",
- "contributes.codeActions.description": "Popis toho, co akce kódu provádí",
- "contributes.codeActions.kind": "CodeActionKind přidané akce kódu",
- "contributes.codeActions.languages": "Režimy jazyka, pro které jsou povoleny akce kódu",
- "contributes.codeActions.title": "Popisek pro akci kódu používaný v uživatelském rozhraní"
- },
- "vs/workbench/contrib/codeActions/common/documentationExtensionPoint": {
- "contributes.documentation": "Přidaná dokumentace",
- "contributes.documentation.refactoring": "Přidaná dokumentace pro refaktoring",
- "contributes.documentation.refactoring.command": "Příkaz byl proveden.",
- "contributes.documentation.refactoring.title": "Popisek pro dokumentaci používaný v uživatelském rozhraní",
- "contributes.documentation.refactoring.when": "Klauzule When",
- "contributes.documentation.refactorings": "Přidaná dokumentace pro refaktoringy"
+ "alwaysSave": "Aktivuje akce kódu pro explicitní ukládání a automatické ukládání aktivované změnami okna nebo fokusu.",
+ "codeActionsOnSave.generic": "Určuje, jestli by se při ukládání souborů měly spouštět akce {0}.",
+ "editor.codeActionsOnSave": "Při uložení spusťte Akce kódu pro editor. Je nutné zadat Akce kódu a editor se nesmí vypínat. Pokud je {0} nastaveno na afterDelay, Akce kódu se spustí jenom při explicitním uložení souboru. Příklad: `\"source.organizeImports\": \"explicit\" `",
+ "explicit": "Aktivuje akce kódu pouze při explicitním uložení.",
+ "explicitBoolean": "Aktivuje akce kódu pouze při explicitním uložení. Tato hodnota bude zastaralá a bude se používat jako explicitní.",
+ "explicitSave": "Aktivuje akce kódu pouze při explicitním uložení",
+ "explicitSaveBoolean": "Aktivuje akce kódu pouze při explicitním uložení. Tato hodnota bude zastaralá a bude se používat jako explicitní.",
+ "never": "Při uložení nikdy neaktivuje akce kódu.",
+ "neverBoolean": "Aktivuje akce kódu pouze při explicitním uložení. Tato hodnota bude zastaralá a bude se používat jako nikdy.",
+ "neverSave": "Při uložení nikdy neaktivuje akce kódu",
+ "neverSaveBoolean": "Při uložení nikdy neaktivuje akce kódu. Tato hodnota bude zastaralá a bude se používat jako nikdy.",
+ "notebook.codeActionsOnSave": "Při uložení spusťte řadu Akce kódu pro poznámkový blok. Je nutné zadat Akce kódu a editor se nesmí vypínat. Pokud je {0} nastaveno na afterDelay, Akce kódu se spustí jenom při explicitním uložení souboru. Příklad: notebook.source.organizeImports: explicit"
},
"vs/workbench/contrib/codeEditor/browser/accessibility/accessibility": {
- "ShowAccessibilityHelpAction": "Zobrazit nápovědu k funkcím pro usnadnění přístupu",
- "auto_off": "Editor je nakonfigurovaný tak, aby automaticky zjišťoval, kdy je připojená čtečka obrazovky, což v tuto chvíli není ten případ.",
- "auto_on": "Editor automaticky zjistil, že je připojená čtečka obrazovky.",
- "auto_unknown": "Editor je nakonfigurovaný tak, aby pomocí rozhraní API platformy zjistil, kdy je připojená čtečka obrazovky, ale aktuální modul runtime to nepodporuje.",
- "changeConfigToOnMac": "Pokud chcete editor nakonfigurovat tak, aby byl neustále optimalizovaný na použití se čtečkou obrazovky, stiskněte teď kombinaci kláves Command+E.",
- "changeConfigToOnWinLinux": "Pokud chcete editor nakonfigurovat tak, aby byl neustále optimalizovaný na použití se čtečkou obrazovky, stiskněte teď kombinaci kláves Control+E.",
- "configuredOff": "Editor je nakonfigurovaný tak, aby nebyl nikdy neoptimalizovaný pro použití se čtečkou obrazovky.",
- "configuredOn": "Editor je nakonfigurovaný tak, aby byl trvale optimalizovaný pro použití se čtečkou obrazovky – můžete to změnit upravením nastavení editor.accessibilitySupport.",
- "emergencyConfOn": "Mění se hodnota nastavení editor.accessibilitySupport na on.",
- "introMsg": "Děkujeme, že jste si vyzkoušeli možnosti usnadnění přístupu ve VS Code.",
- "openDocMac": "Stisknutím kombinace kláves Command+H otevřete okno prohlížeče s dalšími informacemi o VS Code, které se vztahují na usnadnění přístupu.",
- "openDocWinLinux": "Stisknutím kombinace kláves Control+H otevřete okno prohlížeče s dalšími informacemi o VS Code, které se vztahují na usnadnění přístupu.",
- "openingDocs": "Otevírá se stránka dokumentace k usnadnění přístupu ve VS Code.",
- "outroMsg": "Stisknutím kláves Esc nebo Shift+Esc můžete tento popis zavřít a vrátit se do editoru.",
- "status": "Stav:",
- "tabFocusModeOffMsg": "Stisknutím klávesy Tab v aktuálním editoru vložíte znak tabulátoru. Toto chování můžete přepínat stisknutím klávesy {0}.",
- "tabFocusModeOffMsgNoKb": "Stisknutím klávesy Tab v aktuálním editoru vložíte znak tabulátoru. Příkaz {0} nelze aktuálně aktivovat pomocí klávesové zkratky.",
- "tabFocusModeOnMsg": "Stisknutím klávesy Tab v aktuálním editoru přesunete fokus na další prvek, který může mít fokus. Toto chování můžete přepínat stisknutím klávesy {0}.",
- "tabFocusModeOnMsgNoKb": "Stisknutím klávesy Tab v aktuálním editoru přesunete fokus na další prvek, který může mít fokus. Příkaz {0} nelze aktuálně aktivovat pomocí klávesové zkratky."
+ "toggleScreenReaderMode": "Přepnout režim přístupnosti čtečky obrazovky",
+ "toggleScreenReaderModeDescription": "Přepíná optimalizovaný režim pro použití se čtečkami obrazovky, zařízeními pro čtení Braillova písma a dalšími technologiemi pro usnadnění."
+ },
+ "vs/workbench/contrib/codeEditor/browser/dictation/editorDictation": {
+ "startDictation": "Spustit diktování v editoru",
+ "stopDictation": "Zastavit diktování v editoru",
+ "stopDictationShort1": "Zastavit diktování ({0})",
+ "stopDictationShort2": "Zastavit diktování",
+ "voiceCategory": "Hlas"
+ },
+ "vs/workbench/contrib/codeEditor/browser/diffEditorAccessibilityHelp": {
+ "msg1": "Jste v editoru rozdílů.",
+ "msg2": "Zobrazit další ({0}) nebo předchozí ({1}) rozdíl v režimu revize rozdílů, který je optimalizovaný pro čtečky obrazovky.",
+ "msg3": "Spuštění příkazu Diff Editor: Přepněte strany ({0}) pro přepnutí mezi původním a upraveným editorem.",
+ "msg4": "Chcete-li určit, které signály přístupnosti se mají přehrávat, je možné nakonfigurovat následující nastavení: {0}.",
+ "msg5": "Nastavení accessibility.verbosity.diffEditorActive určuje, jestli se má zobrazit oznámení editoru rozdílů, když se stane aktivním editorem."
},
"vs/workbench/contrib/codeEditor/browser/diffEditorHelper": {
"hintTimeout": "Algoritmus zjišťování rozdílů byl předčasně zastaven (po {0} ms).",
"hintWhitespace": "Zobrazit rozdíly v prázdných znacích",
"removeTimeout": "Odebrat limit"
},
+ "vs/workbench/contrib/codeEditor/browser/emptyTextEditorHint/emptyTextEditorHint": {
+ "defaultHintAriaLabelWithInlineChat": "Spuštěním {0} položte otázku, spuštěním {1} vyberte jazyk a začnete. Začněte psát, abyste to zavřeli.",
+ "defaultHintAriaLabelWithoutInlineChat": "Spuštěním {0} vyberte jazyk a začněte. Začněte psát, abyste to zavřeli.",
+ "disableEditorEmptyHint": "Zakázat upozornění na prázdný editor",
+ "disableHint": " Přepnutím {0} v nastavení tento tip zakážete.",
+ "emptyTextEditorHintWithInlineChat": "[[Vygenerujte kód]] ({0}) nebo [[vyberte jazyk]] ({1}). Pokud to chcete zavřít nebo znovu [[nezobrazovat]], začněte psát.",
+ "emptyTextEditorHintWithoutInlineChat": "[[Vyberte jazyk]] ({0}), abyste mohli začít. Pokud to chcete zavřít nebo znovu [[nezobrazovat]], začněte psát."
+ },
"vs/workbench/contrib/codeEditor/browser/find/simpleFindWidget": {
"ariaSearchNoInput": "Zadejte vstup hledání",
"ariaSearchNoResult": "Nalezeno: {0} pro: {1}",
@@ -4399,7 +7797,8 @@
"label.find": "Najít",
"label.nextMatchButton": "Další shoda",
"label.previousMatchButton": "Předchozí shoda",
- "placeholder.find": "Najít (⇅ pro historii)"
+ "placeholder.find": "Najít",
+ "simpleFindWidget.sashBorder": "Barva okraje křídla."
},
"vs/workbench/contrib/codeEditor/browser/inspectEditorTokens/inspectEditorTokens": {
"inspectEditorTokens": "Vývojář: zkontrolovat tokeny a obory editoru",
@@ -4409,7 +7808,76 @@
"workbench.action.inspectKeyMap": "Zkontrolovat klávesové zkratky",
"workbench.action.inspectKeyMapJSON": "Zkontrolovat klávesové zkratky (JSON)"
},
- "vs/workbench/contrib/codeEditor/browser/languageConfigurationExtensionPoint": {
+ "vs/workbench/contrib/codeEditor/browser/largeFileOptimizations": {
+ "largeFile": "{0}: Tokenizace, zabalení, sbalení, codelens, zvýrazňování slov a pevné posouvání byly pro tento velký soubor vypnuté, aby se snížilo využití paměti a nedošlo k zamrznutí nebo chybovému ukončení.",
+ "removeOptimizations": "Vynuceně povolit funkce",
+ "reopenFilePrompt": "Toto nastavení se projeví po opětovném otevření souboru."
+ },
+ "vs/workbench/contrib/codeEditor/browser/outline/documentSymbolsOutline": {
+ "document": "Symboly dokumentu"
+ },
+ "vs/workbench/contrib/codeEditor/browser/outline/documentSymbolsTree": {
+ "1.problem": "1 problém v tomto elementu",
+ "N.problem": "Počet problémů v tomto elementu: {0}",
+ "deep.problem": "Obsahuje elementy s problémy.",
+ "title.template": "{0} ({1})"
+ },
+ "vs/workbench/contrib/codeEditor/browser/quickaccess/gotoLineQuickAccess": {
+ "gotoLine": "Přejít na řádek/sloupec...",
+ "gotoLineQuickAccess": "Přejít na řádek/sloupec",
+ "gotoLineQuickAccessPlaceholder": "Zadejte číslo řádku a volitelně i sloupec, na které se má přejít (například 42:5 pro řádek 42, sloupec 5). Zadáním :: přejdete na posun znaku (např. ::1024 pro znak 1024 od začátku souboru). Pro navigaci zpět použijte záporné hodnoty.",
+ "gotoOffset": "Přejít na posun...",
+ "gotoOffsetQuickAccess": "Přejít na posun"
+ },
+ "vs/workbench/contrib/codeEditor/browser/quickaccess/gotoSymbolQuickAccess": {
+ "empty": "Žádné odpovídající položky",
+ "gotoSymbol": "Přejít na symbol v editoru...",
+ "gotoSymbolByCategoryQuickAccess": "Přejít na symbol v editoru podle kategorie",
+ "gotoSymbolQuickAccess": "Přejít na symbol v editoru",
+ "gotoSymbolQuickAccessPlaceholder": "Zadejte název symbolu, na který se má přejít.",
+ "miGotoSymbolInEditor": "Přejít na &&symbol v editoru..."
+ },
+ "vs/workbench/contrib/codeEditor/browser/saveParticipants": {
+ "codeAction.apply": "Aplikuje se akce kódu {0}.",
+ "codeaction": "Rychlé opravy",
+ "codeaction.get2": "Načítají se akce kódu z {0} ([nakonfigurovat]({1})).",
+ "formatting2": "Spouští se formátovací modul {0} ([configure]({1}))."
+ },
+ "vs/workbench/contrib/codeEditor/browser/toggleColumnSelection": {
+ "miColumnSelection": "Režim výběru &&sloupce",
+ "toggleColumnSelection": "Přepnout režim výběru sloupce"
+ },
+ "vs/workbench/contrib/codeEditor/browser/toggleMinimap": {
+ "miMinimap": "&&Minimapa",
+ "toggleMinimap": "Přepnout minimapu"
+ },
+ "vs/workbench/contrib/codeEditor/browser/toggleMultiCursorModifier": {
+ "miMultiCursorAlt": "Do režimu s více kurzory přepnete kliknutím s podrženou klávesou Alt.",
+ "miMultiCursorCmd": "Do režimu s více kurzory přepnete kliknutím s podrženou klávesou Cmd.",
+ "miMultiCursorCtrl": "Do režimu s více kurzory přepnete kliknutím s podrženou klávesou Ctrl.",
+ "toggleLocation": "Přepnout modifikační klávesu pro více kurzorů"
+ },
+ "vs/workbench/contrib/codeEditor/browser/toggleOvertype": {
+ "mitoggleOvertypeInsertMode": "&&Přepnout režim přepisování a vkládání",
+ "toggleOvertypeInsertMode": "Přepnout režim přepisování a vkládání",
+ "toggleOvertypeMode.description": "Umožňuje přepínat mezi režimem přepisování a vkládání."
+ },
+ "vs/workbench/contrib/codeEditor/browser/toggleRenderControlCharacter": {
+ "miToggleRenderControlCharacters": "Vykreslit řídicí &&znaky",
+ "toggleRenderControlCharacters": "Přepnout řídicí znaky"
+ },
+ "vs/workbench/contrib/codeEditor/browser/toggleRenderWhitespace": {
+ "miToggleRenderWhitespace": "&&Zobrazit prázdné znaky",
+ "toggleRenderWhitespace": "Přepnout vykreslování prázdných znaků"
+ },
+ "vs/workbench/contrib/codeEditor/browser/toggleWordWrap": {
+ "editorWordWrap": "Určuje, jestli editor aktuálně používá zalamování textu.",
+ "miToggleWordWrap": "&&Zalamování řádků",
+ "toggle.wordwrap": "Zobrazení: přepnout zalamování řádků",
+ "unwrapMinified": "Zakázat zalamování pro tento soubor",
+ "wrapMinified": "Povolit zalamování řádků pro tento soubor"
+ },
+ "vs/workbench/contrib/codeEditor/common/languageConfigurationExtensionPoint": {
"formatError": "{0}: Neplatný formát. Očekává se objekt JSON.",
"parseErrors": "Chyba při parsování {0}: {1}",
"schema.autoCloseBefore": "Definuje, jaké znaky musí být za kurzorem, aby se při použití nastavení languageDefined automaticky doplňovaly pravé hranaté závorky a uvozovky. Obvykle se jedná o sadu znaků, kterými nemohou začínat výrazy.",
@@ -4418,9 +7886,9 @@
"schema.blockComment.begin": "Sekvence znaků, kterou začíná komentář k bloku",
"schema.blockComment.end": "Sekvence znaků, kterou končí komentář k bloku",
"schema.blockComments": "Definuje, jak jsou označovány komentáře k bloku.",
- "schema.brackets": "Definuje symboly hranatých závorek, které zvyšují nebo snižují úroveň odsazení.",
+ "schema.brackets": "Definuje symboly hranatých závorek, které zvětší nebo zmenší odsazení. Pokud je povolené zabarvení párů závorek a {0} není definované, definují se také páry závorek, které jsou zabarvené podle jejich úrovně vnoření.",
"schema.closeBracket": "Znak pravé hranaté závorky nebo řetězcová sekvence",
- "schema.colorizedBracketPairs": "Definuje dvojice závorek, které jsou zabarvené podle jejich úrovně vnoření, pokud je zabarvení dvojice závorek povoleno.",
+ "schema.colorizedBracketPairs": "Definuje dvojice hranatých závorek, které jsou zabarvené podle jejich úrovně vnoření, pokud je povoleno zabarvení páru závorek. Všechny zde zahrnuté závorky, které nejsou součástí {0}, se automaticky zahrnou do {0}.",
"schema.comments": "Definuje symboly komentářů.",
"schema.folding": "Nastavení pro sbalování kódu daného jazyka",
"schema.folding.markers": "Značky pro sbalování kódu specifické pro daný jazyk, například #region a #endregion. Počáteční a koncové regulární výrazy se budou testovat na obsahu všech řádků a musí být navrženy efektivně.",
@@ -4444,7 +7912,9 @@
"schema.indentationRules.unIndentedLinePattern.errorMessage": "Musí odpovídat vzoru /^([gimuy]+)$/.",
"schema.indentationRules.unIndentedLinePattern.flags": "Příznaky RegExp pro unIndentedLinePattern",
"schema.indentationRules.unIndentedLinePattern.pattern": "Vzor RegExp pro unIndentedLinePattern",
- "schema.lineComment": "Sekvence znaků, kterou začíná řádkový komentář",
+ "schema.lineComment.comment": "Sekvence znaků, kterou začíná řádkový komentář",
+ "schema.lineComment.noIndent": "Určuje, zda by token komentáře neměl být odsazen a umístěn v prvním sloupci. Výchozí hodnota je false.",
+ "schema.lineComment.object": "Konfigurace pro řádkové komentáře.",
"schema.onEnterRules": "Pravidla jazyka, která se mají vyhodnotit při stisknutí klávesy Enter",
"schema.onEnterRules.action": "Akce, která se má provést",
"schema.onEnterRules.action.appendText": "Popisuje text, který se má připojit za nový řádek a za odsazení.",
@@ -4473,113 +7943,36 @@
"schema.wordPattern.flags.errorMessage": "Musí odpovídat vzoru /^([gimuy]+)$/.",
"schema.wordPattern.pattern": "Vzor RegExp používaný pro vyhledávání shodných slov"
},
- "vs/workbench/contrib/codeEditor/browser/largeFileOptimizations": {
- "largeFile": "{0}: Pro tento velký soubor byly vypnuty funkce tokenizace, zalamování a sbalování, aby se snížilo využití paměti a zabránilo se zamrznutí nebo chybovému ukončení.",
- "removeOptimizations": "Vynuceně povolit funkce",
- "reopenFilePrompt": "Toto nastavení se projeví po opětovném otevření souboru."
+ "vs/workbench/contrib/codeEditor/electron-browser/selectionClipboard": {
+ "actions.pasteSelectionClipboard": "Paste Selection Clipboard"
},
- "vs/workbench/contrib/codeEditor/browser/outline/documentSymbolsOutline": {
- "document": "Symboly dokumentu"
+ "vs/workbench/contrib/codeEditor/electron-browser/startDebugTextMate": {
+ "startDebugTextMate": "Spustit protokolování gramatiky syntaxe TextMate"
},
- "vs/workbench/contrib/codeEditor/browser/outline/documentSymbolsTree": {
- "1.problem": "1 problém v tomto elementu",
- "Array": "pole hodnot",
- "Boolean": "logická hodnota",
- "Class": "třída",
- "Constant": "konstanta",
- "Constructor": "konstruktor",
- "Enum": "výčet",
- "EnumMember": "člen výčtu",
- "Event": "událost",
- "Field": "pole",
- "File": "soubor",
- "Function": "funkce",
- "Interface": "rozhraní",
- "Key": "klíč",
- "Method": "metoda",
- "Module": "modul",
- "N.problem": "Počet problémů v tomto elementu: {0}",
- "Namespace": "obor názvů",
- "Null": "null",
- "Number": "číslo",
- "Object": "objekt",
- "Operator": "operátor",
- "Package": "balíček",
- "Property": "vlastnost",
- "String": "řetězec",
- "Struct": "struktura",
- "TypeParameter": "parametr typu",
- "Variable": "proměnná",
- "deep.problem": "Obsahuje elementy s problémy.",
- "title.template": "{0} ({1})"
- },
- "vs/workbench/contrib/codeEditor/browser/quickaccess/gotoLineQuickAccess": {
- "gotoLine": "Přejít na řádek/sloupec...",
- "gotoLineQuickAccess": "Přejít na řádek/sloupec",
- "gotoLineQuickAccessPlaceholder": "Zadejte číslo řádku a volitelně i sloupec, na které se má přejít (například 42:5 pro řádek 42 a sloupec 5)."
- },
- "vs/workbench/contrib/codeEditor/browser/quickaccess/gotoSymbolQuickAccess": {
- "empty": "Žádné odpovídající položky",
- "gotoSymbol": "Přejít na symbol v editoru...",
- "gotoSymbolByCategoryQuickAccess": "Přejít na symbol v editoru podle kategorie",
- "gotoSymbolQuickAccess": "Přejít na symbol v editoru",
- "gotoSymbolQuickAccessPlaceholder": "Zadejte název symbolu, na který se má přejít.",
- "miGotoSymbolInEditor": "Přejít na &&symbol v editoru..."
- },
- "vs/workbench/contrib/codeEditor/browser/saveParticipants": {
- "codeAction.apply": "Aplikuje se akce kódu {0}.",
- "codeaction": "Rychlé opravy",
- "codeaction.get2": "Získávají se akce kódu z {0} ([configure]({1})).",
- "formatting2": "Spouští se formátovací modul {0} ([configure] ({1}))."
- },
- "vs/workbench/contrib/codeEditor/browser/toggleColumnSelection": {
- "miColumnSelection": "Režim výběru &&sloupce",
- "toggleColumnSelection": "Přepnout režim výběru sloupce"
- },
- "vs/workbench/contrib/codeEditor/browser/toggleMinimap": {
- "miMinimap": "&&Minimap",
- "toggleMinimap": "Přepnout minimapu"
- },
- "vs/workbench/contrib/codeEditor/browser/toggleMultiCursorModifier": {
- "miMultiCursorAlt": "Do režimu s více kurzory přepnete kliknutím s podrženou klávesou Alt.",
- "miMultiCursorCmd": "Do režimu s více kurzory přepnete kliknutím s podrženou klávesou Cmd.",
- "miMultiCursorCtrl": "Do režimu s více kurzory přepnete kliknutím s podrženou klávesou Ctrl.",
- "toggleLocation": "Přepnout modifikační klávesu pro více kurzorů"
- },
- "vs/workbench/contrib/codeEditor/browser/toggleRenderControlCharacter": {
- "miToggleRenderControlCharacters": "Vykreslit řídicí &&znaky",
- "toggleRenderControlCharacters": "Přepnout řídicí znaky"
- },
- "vs/workbench/contrib/codeEditor/browser/toggleRenderWhitespace": {
- "miToggleRenderWhitespace": "&&Zobrazit prázdné znaky",
- "toggleRenderWhitespace": "Přepnout vykreslování prázdných znaků"
- },
- "vs/workbench/contrib/codeEditor/browser/toggleWordWrap": {
- "editorWordWrap": "Určuje, jestli editor aktuálně používá zalamování textu.",
- "miToggleWordWrap": "&&Zalamování řádků",
- "toggle.wordwrap": "Zobrazení: přepnout zalamování řádků",
- "unwrapMinified": "Zakázat zalamování pro tento soubor",
- "wrapMinified": "Povolit zalamování řádků pro tento soubor"
- },
- "vs/workbench/contrib/codeEditor/browser/untitledTextEditorHint": {
- "message": "[[Vyberte jazyk]] nebo [[otevřete jiný editor]] a začněte.\r\nPokud jej chcete zavřít nebo znovu [[nezobrazovat]], začněte psát."
- },
- "vs/workbench/contrib/codeEditor/electron-sandbox/selectionClipboard": {
- "actions.pasteSelectionClipboard": "Vložit schránku s výběrem"
- },
- "vs/workbench/contrib/codeEditor/electron-sandbox/startDebugTextMate": {
- "startDebugTextMate": "Spustit protokolování gramatiky syntaxe TextMate"
+ "vs/workbench/contrib/commands/common/commands.contribution": {
+ "runCommands": "Spouštěcí příkazy",
+ "runCommands.commands": "Příkazy ke spuštění",
+ "runCommands.description": "Spuštění několika příkazů",
+ "runCommands.invalidArgs": "Příkaz 'runCommands' přijal argument s nesprávným typem. Zkontrolujte argument předaný příkazu.",
+ "runCommands.noCommandsToRun": "Příkaz 'runCommands' nepřijal příkazy ke spuštění. Nezapomněli jste předat příkazy v argumentu 'runCommands'?"
},
"vs/workbench/contrib/comments/browser/commentColors": {
+ "commentReplyInputBackground": "Barva pozadí vstupního pole pro odpověď na komentář",
"commentThreadActiveRangeBackground": "Barva pozadí rozsahu komentářů, který je aktuálně vybraný nebo na který se najelo myší",
- "commentThreadActiveRangeBorder": "Barva ohraničení rozsahu komentářů, který je aktuálně vybraný nebo na který se najelo myší",
"commentThreadRangeBackground": "Barva pozadí pro rozsahy komentářů.",
- "commentThreadRangeBorder": "Barva ohraničení pro rozsahy komentářů",
"resolvedCommentBorder": "Barva ohraničení a šipky pro vyřešené komentáře.",
- "unresolvedCommentBorder": "Barva ohraničení a šipky pro nerozpoznané komentáře."
+ "resolvedCommentIcon": "Barva ikony pro vyřešené komentáře.",
+ "unresolvedCommentBorder": "Barva ohraničení a šipky pro nerozpoznané komentáře.",
+ "unresolvedCommentIcon": "Barva ikony pro nevyřešené komentáře."
},
"vs/workbench/contrib/comments/browser/commentGlyphWidget": {
- "editorGutterCommentRangeForeground": "Barva dekorace mezery u okraje v editoru pro rozsahy komentování"
+ "editorGutterCommentDraftGlyphForeground": "Barva dekorace postranního pruhu editoru pro piktogramy komentářů u vláken s koncepty komentářů.",
+ "editorGutterCommentGlyphForeground": "Barva dekorace mezery editoru pro piktogramy komentování.",
+ "editorGutterCommentRangeForeground": "Barva dekorace mezery u okraje editoru pro rozsahy komentářů. Tato barva by měla být neprůhledná.",
+ "editorGutterCommentUnresolvedGlyphForeground": "Barva dekorace mezery v editoru pro komentování piktogramů u nerozpoznaných vláken komentářů.",
+ "editorOverviewRuler.commentDraftForeground": "Barva dekorace přehledového pravítka editoru pro vlákna komentářů s koncepty komentářů. Tato barva by měla být neprůhledná.",
+ "editorOverviewRuler.commentForeground": "Barva dekorace přehledového pravítka v editoru pro vyřešené komentáře. Tato barva by měla být neprůhledná.",
+ "editorOverviewRuler.commentUnresolvedForeground": "Barva dekorace přehledového pravítka v editoru pro nevyřešené komentáře. Tato barva by měla být neprůhledná."
},
"vs/workbench/contrib/comments/browser/commentNode": {
"commentAddReactionDefaultError": "Odstranění reakce na komentář selhalo.",
@@ -4594,54 +7987,157 @@
"newComment": "Zadejte nový komentář.",
"reply": "Odpovědět..."
},
- "vs/workbench/contrib/comments/browser/commentThreadBody": {
- "commentThreadAria": "Vlákno komentářů s tímto počtem komentářů: {0}. {1}.",
- "commentThreadAria.withRange": "Vlákno komentáře s {0} komentáři na řádcích {1} až {2}. {3}."
- },
- "vs/workbench/contrib/comments/browser/commentThreadHeader": {
- "collapseIcon": "Ikona pro sbalení komentáře k revizi",
- "label.collapse": "Sbalit",
- "startThread": "Zahájit diskuzi"
- },
"vs/workbench/contrib/comments/browser/comments.contribution": {
+ "collapseAll": "Sbalit vše",
+ "collapseOnResolve": "Určuje, jestli se má vlákno komentáře sbalit při přeložení vlákna.",
+ "comments.maxHeight": "Určuje, jestli se widget komentářů posune nebo rozbalí.",
"comments.openPanel.deprecated": "Toto nastavení je zastaralé a místo něj se používá comments.openView.",
"comments.openView": "Určuje, kdy se má otevřít zobrazení komentářů.",
"comments.openView.file": "Zobrazení komentářů se otevře, když je aktivní soubor s komentáři.",
"comments.openView.firstFile": "Pokud zobrazení komentářů ještě nebylo během této relace otevřeno, otevře se při prvním otevření souboru s komentáři během relace.",
+ "comments.openView.firstFileUnresolved": "Pokud zobrazení komentářů nebylo během této relace dosud otevřeno a komentář není vyřešen, otevře se při prvním otevření během relace, kdy je aktivní soubor s komentáři.",
"comments.openView.never": "Zobrazení komentářů se nikdy neotevře.",
+ "comments.visible": "Určuje viditelnost pruhu komentářů a vláken komentářů v editorech, které mají rozsahy komentářů a komentáře. Komentáře jsou stále přístupné prostřednictvím zobrazení Komentáře a způsobí, že se komentáře přepínají stejným způsobem, jako když příkaz „Komentáře: Přepnout komentář v editoru“ přepíná komentáře.",
"commentsConfigurationTitle": "Komentáře",
+ "confirmOnCollapse": "Určuje, jestli se při sbalení vlákna komentáře zobrazí potvrzovací dialog.",
+ "confirmOnCollapse.never": "Při kompletování vlákna komentáře nikdy nezobrazovat potvrzovací dialog",
+ "confirmOnCollapse.whenHasUnsubmittedComments": "Při kompletování vlákna komentáře s neodestavenými komentáři zobrazit potvrzovací dialog",
+ "expandAll": "Rozbalit vše",
"openComments": "Určuje, kdy se má otevřít panel komentářů.",
+ "reply": "Odpovědět",
+ "totalUnresolvedComments": "Nevyřešené komentáře: {0}",
"useRelativeTime": "Určuje, zda bude v časových razítkách komentářů použit relativní čas (např. před 1 dnem)."
},
+ "vs/workbench/contrib/comments/browser/commentsAccessibility": {
+ "addCommentNoKb": "– Přidat komentář k aktuálnímu výběru{0}.",
+ "commentCommands": "Mezi užitečné příkazy komentářů patří:",
+ "escape": "- Zavřít komentář (Escape)",
+ "intro": "Editor obsahuje rozsah(y) s možností komentářů. Mezi užitečné příkazy patří:",
+ "introWidget": "Tento widget obsahuje textovou oblast pro kompozici nových komentářů a akcí, na které se dá přidat tabulátor po přesunutí fokusu kartou pomocí příkazu Přepnout přesunutí fokusu pomocí klávesy Tab{0}.",
+ "next": "– Přejít na další rozsah komentářů{0}.",
+ "nextCommentThreadKb": "– Přejít na další vlákno komentáře{0}.",
+ "nextCommentedRangeKb": "- Přejít na další okomentovaný rozsah{0}",
+ "previous": "– Přejít na předchozí rozsah komentářů{0}.",
+ "previousCommentThreadKb": "– Přejít na předchozí vlákno komentářů{0}.",
+ "previousCommentedRangeKb": "- Přejít na předchozí okomentovaný rozsah{0}",
+ "submitComment": "– Odeslat komentář{0}."
+ },
+ "vs/workbench/contrib/comments/browser/commentsController": {
+ "commentRange": "Řádek {0}",
+ "commentRangeStart": "Řádky {0} až {1}",
+ "comments.addCommand.error": "Aby bylo možné přidat komentář, musí být kurzor v rozsahu komentářů.",
+ "comments.addFileCommentCommand.error": "Komentáře k souboru nejsou u tohoto souboru povoleny.",
+ "hasCommentRanges": "Editor obsahuje rozsahy komentářů.",
+ "hasCommentRangesKb": "Editor obsahuje rozsahy komentářů. Další informace získáte spuštěním příkazu Otevřít nápovědu pro usnadnění přístupu ({0}).",
+ "hasCommentRangesNoKb": "Editor obsahuje rozsahy komentářů. Další informace získáte spuštěním příkazu Otevřít nápovědu pro usnadnění přístupu, který se momentálně nedá aktivovat klávesovou zkratkou.",
+ "pickCommentService": "Vybrat zprostředkovatele komentářů"
+ },
"vs/workbench/contrib/comments/browser/commentsEditorContribution": {
+ "comments.NextCommentedRange": "Přejít na další okomentovaný rozsah",
"comments.addCommand": "Přidat komentář k aktuálnímu výběru",
+ "comments.collapseAll": "Sbalit všechny komentáře",
+ "comments.expandAll": "Rozbalit všechny komentáře",
+ "comments.expandUnresolved": "Rozbalit nerozpoznané komentáře",
+ "comments.focusCommand.error": "Aby bylo možné přesunout fokus na komentář, musí se kurzor nacházet na řádku s komentářem.",
+ "comments.focusCommentOnCurrentLine": "Přesunout fokus na komentář na aktuálním řádku",
+ "comments.nextCommentingRange": "Přejít na další rozsah komentářů",
+ "comments.previousCommentedRange": "Přejít na předchozí okomentovaný rozsah",
+ "comments.previousCommentingRange": "Přejít na Předchozí rozsah komentářů",
"comments.toggleCommenting": "Přepnout komentování editoru",
- "hasCommentingProvider": "Určuje, jestli má otevřený pracovní prostor komentáře nebo rozsahy komentování.",
- "hasCommentingRange": "Určuje, jestli má pozice na aktivním kurzoru rozsah komentářů.",
- "nextCommentThreadAction": "Přejít na další vlákno komentáře",
- "pickCommentService": "Vybrat zprostředkovatele komentářů",
- "previousCommentThreadAction": "Přejít na předchozí vlákno komentáře"
+ "commentsCategory": "Komentáře"
+ },
+ "vs/workbench/contrib/comments/browser/commentsModel": {
+ "noComments": "V tomto pracovním prostoru zatím nejsou žádné komentáře."
},
"vs/workbench/contrib/comments/browser/commentsTreeViewer": {
"commentCount": "1 komentář",
"commentLine": "[Ln {0}]",
"commentRange": "[Ln {0}–{1}]",
- "commentsCount": "Počet komentářů: {0}",
+ "comments.view.title": "Komentáře",
+ "commentsCountReplies": "Počet odpovědí: {0}",
+ "commentsCountReply": "Počet odpovědí: 1",
"image": "Obrázek",
"imageWithLabel": "Obrázek: {0}",
- "lastReplyFrom": "Poslední odpověď od {0}"
+ "lastReplyFrom": "Poslední odpověď od {0}",
+ "outdated": "Zastaralé"
},
"vs/workbench/contrib/comments/browser/commentsView": {
- "collapseAll": "Sbalit vše",
- "resourceWithCommentLabel": "Komentář ze ${0} – řádek {1}, sloupec {2} v {3}, zdroj: {4}",
+ "accessibleViewHint": "\r\nZkontrolujte to v přístupném zobrazení ({0}).",
+ "acessibleViewHintNoKbOpen": "\r\nZkontrolujte to v přístupném zobrazení pomocí příkazu Otevřít přístupné zobrazení, které se v tuto chvíli nedá aktivovat klávesovou zkratkou.",
+ "comments.filter.ariaLabel": "Filtrovat komentáře",
+ "comments.filter.placeholder": "Filtr (např. text, autor)",
+ "fileCommentLabel": "v {0}",
+ "multiLineCommentLabel": "od {0} řádku do {1} řádku v {2}",
+ "oneLineCommentLabel": "na řádku {0} {1} sloupce v {2}",
+ "replyCount": " Počet odpovědí: {0}",
+ "resourceWithCommentLabel": "{0}: {1}\r\n{2}\r\n{3}\r\n{4}",
+ "resourceWithCommentLabelOutdated": "Zastaralé z {0}: {1}\r\n{2}\r\n{3}\r\n{4}",
"resourceWithCommentThreadsLabel": "Komentáře v {0}, úplná cesta: {1}",
- "rootCommentsLabel": "Komentáře pro aktuální pracovní prostor"
+ "resourceWithRepliesLabel": "{0} {1}",
+ "rootCommentsLabel": "Komentáře pro aktuální pracovní prostor",
+ "showing filtered results": "Zobrazuje se stránka {0} z {1}."
+ },
+ "vs/workbench/contrib/comments/browser/commentsViewActions": {
+ "comment sorts": "Seřadit podle",
+ "comments": "Komentáře",
+ "commentsClearFilterText": "Vymazat text filtru",
+ "focusCommentsFilter": "Filtr komentářů intenzivní práce",
+ "focusCommentsList": "Zobrazení Komentáře na intenzivní práci",
+ "resolved": "Zobrazit vyřešené",
+ "sorting by position in file": "Pozice v souboru",
+ "sorting by updated at": "Aktualizováno",
+ "toggle resolved": "Zobrazit vyřešené",
+ "toggle sorting by resource": "Pozice v souboru",
+ "toggle sorting by updated at": "Aktualizováno",
+ "toggle unresolved": "Zobrazit nevyřešené",
+ "unresolved": "Zobrazit nevyřešené"
+ },
+ "vs/workbench/contrib/comments/browser/commentThreadBody": {
+ "commentThreadAria": "Vlákno komentářů s tímto počtem komentářů: {0}. {1}.",
+ "commentThreadAria.document": "Vlákno komentáře s {0} komentáři k celému dokumentu {1}.",
+ "commentThreadAria.withRange": "Vlákno komentáře s {0} komentáři na řádcích {1} až {2}. {3}."
+ },
+ "vs/workbench/contrib/comments/browser/commentThreadHeader": {
+ "collapseIcon": "Ikona pro sbalení komentáře k revizi",
+ "label.collapse": "Sbalit",
+ "startThread": "Zahájit diskuzi"
+ },
+ "vs/workbench/contrib/comments/browser/commentThreadWidget": {
+ "commentLabel": "Komentář",
+ "commentLabelWithKeybinding": "{0}, pro nápovědu k přístupnosti použijte ({1})",
+ "commentLabelWithKeybindingNoKeybinding": "{0}, spusťte příkaz Otevřít nápovědu pro usnadnění přístupu, který se momentálně nedá aktivovat klávesovou zkratkou."
+ },
+ "vs/workbench/contrib/comments/browser/commentThreadZoneWidget": {
+ "confirmCollapse": "Sbalením tohoto vlákna komentáře se zahodí neodeslané komentáře. Opravdu chcete tyto komentáře zahodit?",
+ "discard": "Zahodit",
+ "neverAskAgain": "Příště už se neptat"
},
"vs/workbench/contrib/comments/browser/reactionsAction": {
+ "comment.reactionLabelMany": "{0}{1} reakce/reakcí s {2}",
+ "comment.reactionLabelNone": "{0}{1} reakce",
+ "comment.reactionLabelOne": "{0}1 reakce s {1}",
+ "comment.reactionLessThanTen": "{0}{1} reagovali s: {2}.",
+ "comment.reactionMoreThanTen": "{0}{1} a {2} další reagovali s: {3}.",
+ "comment.toggleableReaction": "Přepnout reakci, ",
"pickReactions": "Vybrat reakce..."
},
- "vs/workbench/contrib/comments/common/commentModel": {
- "noComments": "V tomto pracovním prostoru zatím nejsou žádné komentáře."
+ "vs/workbench/contrib/comments/common/commentContextKeys": {
+ "comment": "Kontextová hodnota komentáře.",
+ "commentController": "ID kontroleru komentáře přidružené k vláknu komentáře.",
+ "commentFocused": "Nastavit, kdy je komentář zaměřený",
+ "commentIsEmpty": "Nastavte, když komentář nemá žádný vstup.",
+ "commentThread": "Kontextová hodnota vlákna komentáře.",
+ "commentThreadIsEmpty": "Nastavte, když vlákno komentáře neobsahuje žádné komentáře.",
+ "commentingEnabled": "Určuje, jestli je povolená funkce komentování.",
+ "editorHasCommentingRange": "Jestli má aktivní editor rozsah komentářů",
+ "hasComment": "Určuje, jestli má pozice na aktivním kurzoru komentář.",
+ "hasCommentingProvider": "Určuje, jestli má otevřený pracovní prostor komentáře nebo rozsahy komentování.",
+ "hasCommentingRange": "Určuje, jestli má pozice na aktivním kurzoru rozsah komentářů."
+ },
+ "vs/workbench/contrib/customEditor/browser/customEditorInput": {
+ "editorCannotMove": "Nelze přesunout {0}: Editor obsahuje změny, které lze uložit pouze v aktuálním okně.",
+ "editorUnsupportedInWindow": "Editor se v tomto okně nedá otevřít. Obsahuje úpravy, které se dají uložit jenom v původním okně.",
+ "reopenInOriginalWindow": "Otevřít v původním okně"
},
"vs/workbench/contrib/customEditor/common/contributedCustomEditors": {
"builtinProviderDisplayName": "Integrovaný"
@@ -4649,6 +8145,9 @@
"vs/workbench/contrib/customEditor/common/customEditor": {
"context.customEditor": "Typ viewType aktuálně aktivního vlastního editoru"
},
+ "vs/workbench/contrib/customEditor/common/customTextEditorModel": {
+ "vetoExtHostRestart": "Textový editor poskytnutý rozšířením pro '{0}' je stále otevřený, který by se jinak zavřel."
+ },
"vs/workbench/contrib/customEditor/common/extensionPoint": {
"contributes.customEditors": "Přidané vlastní editory",
"contributes.displayName": "Lidsky čitelný název vlastního editoru. Zobrazí se uživatelům při výběru editoru, který se má použít.",
@@ -4657,7 +8156,11 @@
"contributes.priority.option": "Editor se nepoužije automaticky, když uživatel otevře daný prostředek, uživatel ale může přepnout do editoru pomocí příkazu Znovu otevřít pomocí.",
"contributes.selector": "Sada vzorů glob, pro kterou je vlastní editor povolen",
"contributes.selector.filenamePattern": "Vzor glob, pro který je vlastní editor povolen",
- "contributes.viewType": "Identifier for the custom editor. This must be unique across all custom editors, so we recommend including your extension id as part of `viewType`. The `viewType` is used when registering custom editors with `vscode.registerCustomEditorProvider` and in the `onCustomEditor:${id}` [activation event](https://code.visualstudio.com/api/references/activation-events)."
+ "contributes.viewType": "Identifikátor vlastního editoru. Tato hodnota musí být jedinečná napříč všemi vlastními editory, proto doporučujeme zahrnout ID rozšíření do hodnoty nastavení viewType. Nastavení viewType se používá při registraci vlastních editorů pomocí nastavení vscode.registerCustomEditorProvider a v [aktivační události](https://code.visualstudio.com/api/references/activation-events) onCustomEditor:${id}.",
+ "customEditors": "Vlastní editory",
+ "customEditors filenamePattern": "Vzor názvu souboru",
+ "customEditors priority": "Priorita",
+ "customEditors view type": "Typ zobrazení"
},
"vs/workbench/contrib/debug/browser/baseDebugView": {
"debug.lazyButton.tooltip": "Kliknutím rozbalte."
@@ -4666,17 +8169,18 @@
"addBreakpoint": "Přidat zarážku",
"addConditionalBreakpoint": "Přidat podmíněnou zarážku...",
"addLogPoint": "Přidat protokolovací bod...",
+ "addTriggeredBreakpoint": "Přidat aktivovanou zarážku...",
"breakpoint": "Zarážka",
"breakpointHasConditionDisabled": "{0} obsahuje {1}. Při odebrání se ztratí. Místo toho zvažte povolení možnosti {0}.",
"breakpointHasConditionEnabled": "{0} obsahuje {1}. Při odebrání se ztratí. Místo toho zvažte zakázání možnosti {0}.",
- "cancel": "Zrušit",
+ "breakpointHelper": "Kliknutím přidáte zarážku",
"condition": "podmínka",
"debugIcon.breakpointCurrentStackframeForeground": "Barva ikony pro aktuální blok zásobníku zarážek",
"debugIcon.breakpointDisabledForeground": "Barva ikony pro zakázané zarážky",
"debugIcon.breakpointForeground": "Barva ikony pro zarážky",
"debugIcon.breakpointStackframeForeground": "Barva ikony pro všechny bloky zásobníku zarážek",
"debugIcon.breakpointUnverifiedForeground": "Barva ikony pro neověřené zarážky",
- "disable": "Zakázat",
+ "disable": "&&Zakázat",
"disableBreakpoint": "Zakázat {0}",
"disableBreakpointOnLine": "Zakázat zarážku řádku",
"disableInlineColumnBreakpoint": "Zakázat zarážku řádku ve sloupci {0}",
@@ -4685,7 +8189,7 @@
"editBreakpoints": "Upravit zarážky",
"editInlineBreakpointOnColumn": "Upravit vloženou (inline) zarážku ve sloupci {0}",
"editLineBreakpoint": "Upravit zarážku řádku",
- "enable": "Povolit",
+ "enable": "&&Povolit",
"enableBreakpoint": "Povolit {0}",
"enableBreakpointOnLine": "Povolit zarážku řádku",
"enableBreakpoints": "Povolit vloženou (inline) zarážku ve sloupci {0}",
@@ -4696,39 +8200,44 @@
"removeBreakpoints": "Odebrat zarážky",
"removeInlineBreakpointOnColumn": "Odebrat vloženou (inline) zarážku ve sloupci {0}",
"removeLineBreakpoint": "Odebrat zarážku řádku",
- "removeLogPoint": "Odebrat {0}",
+ "removeLogPoint": "&&Odebrat {0}",
"runToLine": "Přejít na řádek..."
},
- "vs/workbench/contrib/debug/browser/breakpointWidget": {
- "breakpointType": "Typ zarážky",
- "breakpointWidgetExpressionPlaceholder": "Přerušit, pokud je výraz vyhodnocen jako true. Stisknutím klávesy Enter akci přijmete, klávesou Esc ji zrušíte.",
- "breakpointWidgetHitCountPlaceholder": "Přerušit při splnění podmínky počtu průchodů. Stisknutím klávesy Enter akci přijmete, klávesou Esc ji zrušíte.",
- "breakpointWidgetLogMessagePlaceholder": "Zpráva, která se má protokolovat při průchodu zarážky. Výrazy v závorkách {} se interpolují. Stisknutím klávesy Enter akci přijmete, klávesou Esc ji zrušíte.",
- "expression": "Výraz",
- "hitCount": "Počet průchodů",
- "logMessage": "Zpráva protokolu"
- },
"vs/workbench/contrib/debug/browser/breakpointsView": {
"access": "Přístup",
"activateBreakpoints": "Přepnout aktivaci zarážek",
+ "addDataBreakpointOnAddress": "Přidat datovou zarážku na adrese",
"addFunctionBreakpoint": "Přidat zarážku funkce",
"breakpoint": "Zarážka",
"breakpointUnsupported": "Ladicí program nepodporuje zarážky tohoto typu.",
"breakpoints": "Zarážky",
+ "dataBreakPointExpresionAriaLabel": "Zadejte výraz. Při vyhodnocení výrazu na hodnotu true dojde k přerušení na datové zarážce.",
+ "dataBreakPointHitCountAriaLabel": "Zadejte počet dosažení zarážky. Při dosažení datové zarážky dojde k přerušení.",
"dataBreakpoint": "Datová zarážka",
+ "dataBreakpointAccessType": "Vyberte typ přístupu, který chcete monitorovat",
+ "dataBreakpointAddrFormat": "Adresa by měla být rozsah čísel ve formátu [Start] - [End] nebo [Start] + [Bytes].",
+ "dataBreakpointAddrStartEnd": "Číslo musí být celé číslo v desítkovém formátu nebo hexadecimální hodnota začínající na „0x“, získáno: {0}",
+ "dataBreakpointError": "Nepodařilo se nastavit datovou zarážku na {0}: {1}",
+ "dataBreakpointExpressionPlaceholder": "Přerušit, pokud se výraz vyhodnotí jako true",
+ "dataBreakpointHitCountPlaceholder": "Přerušit, když se dosáhne počtu zastavení",
+ "dataBreakpointMemoryRangePlaceholder": "Absolutní rozsah (0x1234 – 0x1300) nebo rozsah bajtů za adresou (0x1234 + 0xff)",
+ "dataBreakpointMemoryRangePrompt": "Zadejte rozsah paměti, ve kterém se má provést přerušení.",
"dataBreakpointUnsupported": "Tento typ ladění nepodporuje datové zarážky.",
"dataBreakpointsNotSupported": "Tento typ ladění nepodporuje datové zarážky.",
+ "debug.decimal.address": "Desetinná adresa: {0}",
"disableAllBreakpoints": "Zakázat všechny zarážky",
"disabledBreakpoint": "Zakázaná zarážka",
"disabledLogpoint": "Zakázaný protokolovací bod",
- "editBreakpoint": "Upravit zarážku funkce...",
+ "editBreakpoint": "Upravit podmínku funkce…",
"editCondition": "Upravit podmínku...",
+ "editDataBreakpointOnAddress": "Upravit adresu...",
"editHitCount": "Upravit počet zastavení...",
+ "editMode": "Režim úprav...",
"enableAllBreakpoints": "Povolit všechny zarážky",
"exceptionBreakpointAriaLabel": "Podmínka zarážky výjimky typu",
"exceptionBreakpointPlaceholder": "Přerušit, pokud se výraz vyhodnotí jako true",
- "expression": "Podmínka výrazu: {0}",
- "expressionAndHitCount": "Výraz: {0} | Počet zastavení: {1}",
+ "expression": "Podmínka: {0}",
+ "expressionAndHitCount": "Podmínka: {0} | Počet dosažení zarážky: {1}",
"expressionCondition": "Podmínka výrazu: {0}",
"functionBreakPointExpresionAriaLabel": "Zadejte výraz. Funkce zarážky se přeruší, když se výraz vyhodnotí jako true.",
"functionBreakPointHitCountAriaLabel": "Zadejte počet zastavení. Funkce zarážky se přeruší, když se dosáhne daného počtu zastavení.",
@@ -4744,6 +8253,7 @@
"instructionBreakpointAtAddress": "Zarážka instrukce na adrese {0}",
"instructionBreakpointUnsupported": "Tento typ ladění nepodporuje zarážky instrukcí.",
"logMessage": "Zpráva protokolu: {0}",
+ "miDataBreakpoint": "&&Datová zarážka...",
"miDisableAllBreakpoints": "&&Zakázat všechny zarážky",
"miEnableAllBreakpoints": "&&Povolit všechny zarážky",
"miFunctionBreakpoint": "&&Zarážka funkce...",
@@ -4752,11 +8262,29 @@
"reapplyAllBreakpoints": "Znovu použít všechny zarážky",
"removeAllBreakpoints": "Odebrat všechny zarážky",
"removeBreakpoint": "Odebrat zarážku",
+ "selectBreakpointMode": "Vybrat režim zarážky",
+ "triggeredBy": "Průchod za zarážkou: {0}",
"unverifiedBreakpoint": "Neověřená zarážka",
"unverifiedExceptionBreakpoint": "Neověřená zarážka výjimky",
"unverifiedLogpoint": "Neověřený protokolovací bod",
"write": "Zápis"
},
+ "vs/workbench/contrib/debug/browser/breakpointWidget": {
+ "bpMode": "Režim",
+ "breakpointType": "Typ zarážky",
+ "breakpointWidgetExpressionPlaceholder": "Přerušit, když se výraz vyhodnotí jako true „{0}“ pro přijetí, „{1}“ pro zrušení.",
+ "breakpointWidgetHitCountPlaceholder": "Přerušit při splnění podmínky počtu přístupů. „{0}“ pro přijetí, „{1}“ pro zrušení.",
+ "breakpointWidgetLogMessagePlaceholder": "Zpráva, která se má protokolovat při dosažení zarážky Výrazy uvnitř {} jsou interpolované. „{0}“ pro přijetí, „{1}“ pro zrušení.",
+ "expression": "Výraz",
+ "hitCount": "Počet průchodů",
+ "logMessage": "Zpráva protokolu",
+ "noBpSource": "Nelze načíst zdroj.",
+ "noTriggerByBreakpoint": "Žádné",
+ "ok": "OK",
+ "selectBreakpoint": "Vybrat zarážku",
+ "triggerByLoading": "Načítání…",
+ "triggeredBy": "Počkat na zarážku"
+ },
"vs/workbench/contrib/debug/browser/callStackEditorContribution": {
"focusedStackFrameLineHighlight": "Barva pozadí pro zvýraznění řádku na pozici bloku zásobníku s fokusem",
"topStackFrameLineHighlight": "Barva pozadí pro zvýraznění řádku na horní pozici bloku zásobníku"
@@ -4764,7 +8292,7 @@
"vs/workbench/contrib/debug/browser/callStackView": {
"callStackAriaLabel": "Zásobník volání ladění",
"collapse": "Sbalit vše",
- "loadAllStackFrames": "Načíst všechny bloky zásobníku",
+ "loadAllStackFrames": "Load More Stack Frames",
"paused": "Pozastaveno",
"pausedOn": "Pozastaveno při: {0}",
"restartFrame": "Restartovat rámec",
@@ -4777,35 +8305,52 @@
"stackFrameAriaLabel": "Blok zásobníku {0}, řádek {1}, {2}",
"threadAriaLabel": "Vlákno {0} {1}"
},
+ "vs/workbench/contrib/debug/browser/callStackWidget": {
+ "failedToLoadFrames": "Nepovedlo se načíst bloky zásobníku: {0}.",
+ "goToFile": "Otevřít soubor",
+ "stackFrameLocation": "Řádek {0}, sloupec {1}",
+ "stackTrace": "Trasování zásobníku",
+ "stackTraceLabel": "{0}, řádek {1} v {2}"
+ },
"vs/workbench/contrib/debug/browser/debug.contribution": {
"SetNextStatement": "Nastavit další příkaz",
- "addToWatchExpressions": "Přidat do kukátka",
"allowBreakpointsEverywhere": "Povolit nastavení zarážek v libovolném souboru",
- "always": "Vždy zobrazovat ladění na stavovém řádku",
+ "always": "Vždy zobrazovat položku ladění na stavovém řádku",
"breakWhenValueChanges": "Pozastavit při změně hodnoty",
"breakWhenValueIsAccessed": "Pozastavit při přístupu k hodnotě",
"breakWhenValueIsRead": "Pozastavit při čtení hodnoty",
"breakpoints": "Zarážky",
"callStack": "Zásobník volání",
"cancel": "Zrušit ladění",
- "copyAsExpression": "Kopírovat jako výraz",
+ "closeReadonlyTabsOnEnd": "Na konci relace ladění se zavřou všechny karty jen pro čtení přidružené k dané relaci.",
"copyStackTrace": "Kopírovat zásobník volání",
"copyValue": "Kopírovat hodnotu",
- "debug.autoExpandLazyVariables": "Automaticky zobrazovat hodnoty proměnných, které ladicí program laxně vyřešil, například gettery.",
+ "debug.autoExpandLazyVariables": "Určuje, jestli ladicí program automaticky vyřeší a rozbalí opožděně vyhodnocované proměnné, například metody getter.",
+ "debug.autoExpandLazyVariables.auto": "V režimu optimalizovaném pro čtečku obrazovky automaticky rozbalovat opožděně vyhodnocované proměnné",
+ "debug.autoExpandLazyVariables.off": "Nikdy automaticky nerozbalovat opožděně vyhodnocované proměnné",
+ "debug.autoExpandLazyVariables.on": "Vždy automaticky rozbalovat opožděně vyhodnocované proměnné",
"debug.confirmOnExit": "Určuje, zda potvrdit, když se okno zavře, pokud existují aktivní ladící relace.",
"debug.confirmOnExit.always": "Vždy ověřte, zda jsou k ladící relace.",
"debug.confirmOnExit.never": "Nikdy nepotvrzovat.",
- "debug.console.acceptSuggestionOnEnter": "Určuje, jestli se mají návrhy přijímat při stisknutí klávesy Enter v konzole ladění. Enter se také používá k vyhodnocení všeho, co je zadané v konzole ladění.",
- "debug.console.closeOnEnd": "Určuje, jestli má být konzola ladění po skončení relace ladění automaticky zavřena.",
- "debug.console.collapseIdenticalLines": "Určuje, jestli má konzola ladění sbalit identické řádky a zobrazit počet výskytů odznáčkem.",
- "debug.console.fontFamily": "Určuje rodinu písem v konzole ladění.",
- "debug.console.fontSize": "Určuje velikost písma v pixelech v konzole ladění.",
+ "debug.console.acceptSuggestionOnEnter": "Určuje, jestli se mají v konzole ladění přijímat návrhy pomocí klávesy Enter. Enter se také používá k vyhodnocení všeho, co je zadáno v konzole ladění.",
+ "debug.console.closeOnEnd": "Určuje, jestli má být konzole ladění po skončení relace ladění automaticky zavřena.",
+ "debug.console.collapseIdenticalLines": "Určuje, jestli má konzole ladění sbalit identické řádky a zobrazit počet výskytů odznáčkem.",
+ "debug.console.fontFamily": "Určuje rodinu písem v konzoli ladění.",
+ "debug.console.fontSize": "Určuje velikost písma v pixelech v konzoli ladění.",
"debug.console.historySuggestions": "Určuje, jestli by konzola ladění měla navrhnout dříve zadaný vstup.",
- "debug.console.lineHeight": "Určuje výšku řádku v pixelech v konzole ladění. Pokud chcete, aby se výška řádku vypočítala z velikosti písma, použijte hodnotu 0.",
- "debug.console.wordWrap": "Určuje, jestli se mají v konzole ladění zalamovat řádky.",
+ "debug.console.lineHeight": "Určuje výšku řádku v pixelech v konzoli ladění. Pokud chcete, aby se výška řádku vypočítala z velikosti písma, použijte hodnotu 0.",
+ "debug.console.maximumLines": "Určuje maximální počet řádků v konzole ladění.",
+ "debug.console.wordWrap": "Určuje, jestli se mají v konzoli ladění zalamovat řádky.",
"debug.disassemblyView.showSourceCode": "Zobrazit zdrojový kód v zobrazení zpětného překladu.",
+ "debug.enableStatusBarColor": "Barva stavového řádku, když je ladicí program aktivní",
"debug.focusEditorOnBreak": "Určuje, jestli má mít při přerušení ladicího programu editor fokus.",
"debug.focusWindowOnBreak": "Určuje, jestli má mít okno pracovní plochy fokus při přerušení ladicího programu.",
+ "debug.gutterMiddleClickAction.conditionalBreakpoint": "Přidat podmíněnou zarážku",
+ "debug.gutterMiddleClickAction.logpoint": "Přidat protokolovací bod",
+ "debug.gutterMiddleClickAction.none": "Neprovádět žádnou akci",
+ "debug.gutterMiddleClickAction.triggeredBreakpoint": "Přidat aktivovanou zarážku",
+ "debug.hideLauncherWhileDebugging": "Skryje ovládací prvek Spustit ladění v záhlaví zobrazení Spustit a ladit, když je aktivní ladění. Relevantní jenom v případě, že {0} není ukotvený (docked).",
+ "debug.hideSlowPreLaunchWarning": "Umožňuje skrýt upozornění, které se zobrazí, když úloha preLaunchTask již nějakou dobu běží.",
"debug.onTaskErrors": "Určuje, co se má provést, když se po spuštění preLaunchTask vyskytnou chyby.",
"debug.saveBeforeStart": "Určuje, které editory se mají před spuštěním ladicí relace uložit.",
"debug.saveBeforeStart.allEditorsInActiveGroup": "Před spuštěním ladicí relace uložit všechny editory v aktivní skupině",
@@ -4815,10 +8360,14 @@
"debugAnyway": "Ignorovat chyby úloh a spustit ladění",
"debugCategory": "Ladit",
"debugConfigurationTitle": "Ladit",
- "debugFocusConsole": "Přepnout fokus na zobrazení konzoly ladění",
"debugPanel": "Konzola ladění",
+ "debugToolBar.commandCenter": "(Experimentální) Zobrazit panel nástrojů ladění v centru příkazů",
+ "debugToolBar.docked": "Zobrazit panel nástrojů ladění pouze v zobrazeních ladění",
+ "debugToolBar.floating": "Zobrazit panel nástrojů ladění ve všech zobrazeních",
+ "debugToolBar.hidden": "Nezobrazovat panel nástrojů ladění",
"disassembly": "Zpětný překlad",
"editWatchExpression": "Upravit výraz",
+ "gutterMiddleClickAction": "Určuje akci, která se má provést při kliknutí na mezeru u okraje editoru prostředním tlačítkem myši.",
"inlineBreakpoint": "Vložená (inline) zarážka",
"inlineValues": "Umožňuje zobrazit hodnoty proměnných vloženě (inline) v editoru během ladění.",
"inlineValues.focusNoScroll": "Zobrazit při ladění hodnoty proměnných přímo v editoru, pokud jazyk podporuje vložená umístění hodnot",
@@ -4840,10 +8389,11 @@
"miStepOut": "Krokovat s v&&ystoupením",
"miStepOver": "Krokovat &&bez vnoření",
"miStopDebugging": "&&Zastavit ladění",
+ "miToggleBreakpoint": "Přepnout zarážku",
"miToggleDebugConsole": "Konzola &&ladění",
"miViewRun": "&&Spustit",
- "never": "Nikdy nezobrazovat ladění na stavovém řádku",
- "onFirstSessionStart": "Zobrazit ladění na stavovém řádku až po prvním spuštění ladění",
+ "never": "Nikdy nezobrazovat položku ladění na stavovém řádku",
+ "onFirstSessionStart": "Zobrazit položku ladění na stavovém řádku až po prvním spuštění ladění",
"openDebug": "Určuje, kdy se má otevřít zobrazení ladění.",
"openExplorerOnEnd": "Na konci relace ladění automaticky otevřít zobrazení průzkumníka",
"prompt": "Zobrazit výzvu uživateli",
@@ -4851,18 +8401,20 @@
"restartFrame": "Restartovat rámec",
"run": "Spustit nebo ladit...",
"run and debug": "Spustit a ladit",
+ "runMenu": "Spustit",
"setValue": "Nastavit hodnotu",
"showBreakpointsInOverviewRuler": "Určuje, jestli mají být na přehledovém pravítku zobrazené zarážky.",
"showErrors": "Otevřít zobrazení problémů a nespouštět ladění",
- "showInStatusBar": "Určuje, kdy by měl být viditelný stavový řádek ladění.",
+ "showInStatusBar": "Určuje, kdy by měla být zobrazena položka stavového řádku ladění.",
"showInlineBreakpointCandidates": "Určuje, jestli se mají v editoru při ladění zobrazovat dekorace kandidátů vložených (inline) zarážek.",
"showSubSessionsInToolBar": "Určuje, jestli se dílčí relace ladění zobrazují na panelu nástrojů ladění. Pokud má toto nastavení hodnotu false, příkaz stop pro dílčí relaci zastaví také nadřazenou relaci.",
+ "showVariableTypes": "Zobrazit typ proměnné v podokně proměnných během relace ladění",
"startDebugPlaceholder": "Zadejte název konfigurace spuštění, která se má použít.",
"startDebuggingHelp": "Spustit ladění",
"tasksQuickAccessHelp": "Zobrazit všechny konzoly ladění",
"tasksQuickAccessPlaceholder": "Zadejte název konzoly ladění, kterou chcete otevřít.",
"terminateThread": "Ukončit podproces",
- "toolBarLocation": "Určuje umístění panelu ladění. Možné hodnoty: floating (ve všech zobrazeních), docked (v zobrazení ladění) nebo hidden",
+ "toolBarLocation": "Určuje umístění panelu nástrojů ladění. Je floating ve všech zobrazeních, docked v zobrazení ladění, commandCenter (vyžaduje {0}) nebo hidden.",
"variables": "Proměnné",
"viewMemory": "Zobrazit binární data",
"watch": "Kukátko"
@@ -4870,23 +8422,26 @@
"vs/workbench/contrib/debug/browser/debugActionViewItems": {
"addConfigTo": "Přidat konfiguraci ({0})...",
"addConfiguration": "Přidat konfiguraci...",
+ "commentLabelWithKeybinding": "{0}, pro nápovědu k přístupnosti použijte ({1})",
+ "commentLabelWithKeybindingNoKeybinding": "{0}, spusťte příkaz Otevřít nápovědu pro usnadnění přístupu, který se momentálně nedá aktivovat klávesovou zkratkou.",
"debugLaunchConfigurations": "Konfigurace spuštění ladění",
"debugSession": "Relace ladění",
"noConfigurations": "Žádné konfigurace"
},
"vs/workbench/contrib/debug/browser/debugAdapterManager": {
"CouldNotFindLanguage": "Nemáte rozšíření pro ladění {0}. Máme najít rozšíření {0} na Marketplace?",
- "cancel": "Zrušit",
"debugName": "Název konfigurace. Zobrazí se v rozevírací nabídce konfigurací spuštění.",
"debugNoType": "Parametr type ladicího programu nemůže být vynechaný a musí být typu string.",
"debugPostDebugTask": "Úloha, která se spustí po skončení relace ladění",
"debugPrelaunchTask": "Úloha, která se spustí před spuštěním relace ladění",
"debugServer": "Pouze pro vývoj rozšíření ladění: Pokud je zadán port, VS Code se pokusí připojit k adaptéru ladění spuštěnému v režimu serveru.",
- "findExtension": "Najít rozšíření: {0}",
+ "findExtension": "&&Najít rozšíření: {0}",
"installExt": "Nainstalovat rozšíření...",
"installLanguage": "Nainstalovat rozšíření pro {0}...",
+ "moreOptionsForDebugType": "Další možnosti ({0})...",
"selectDebug": "Vybrat ladicí program",
- "suggestedDebuggers": "Navrhováno"
+ "suggestedDebuggers": "Navrhováno",
+ "suppressMultipleSessionWarning": "Zakázat upozornění při pokusu o spuštění stejné konfigurace ladění více než jednou."
},
"vs/workbench/contrib/debug/browser/debugColors": {
"debugIcon.continueForeground": "Ikona panelu nástrojů ladění pro pokračování",
@@ -4903,13 +8458,19 @@
"debugToolBarBorder": "Barva ohraničení panelu nástrojů ladění"
},
"vs/workbench/contrib/debug/browser/debugCommands": {
+ "addConfiguration": "Přidat konfiguraci...",
"addInlineBreakpoint": "Přidat vloženou zarážku",
+ "addToWatchExpressions": "Přidat do kukátka",
+ "attachToCurrentCodeRenderer": "Připojit k aktuálnímu rendereru kódu",
"callStackBottom": "Přejít na konec zásobníku volání",
"callStackDown": "Procházet zásobník volání dolů",
"callStackTop": "Přejít na začátek zásobníku volání",
"callStackUp": "Přejít nahoru na zásobník volání",
"chooseLocation": "Zvolit konkrétní umístění",
"continueDebug": "Pokračovat",
+ "copyAddress": "Zkopírovat adresu",
+ "copyAsExpression": "Kopírovat jako výraz",
+ "copyValue": "Kopírovat hodnotu",
"debug": "Ladit",
"disconnect": "Odpojit",
"disconnectSuspend": "Odpojit a pozastavit",
@@ -4926,13 +8487,15 @@
"selectAndStartDebugging": "Vybrat a spustit ladění",
"selectDebugConsole": "Vybrat konzolu ladění",
"selectDebugSession": "Vybrat relaci ladění",
+ "selectExceptionBreakpointsPlaceholder": "Vybrat povolené zarážky výjimek",
"startDebug": "Spustit ladění",
"startWithoutDebugging": "Spustit bez ladění",
"stepIntoDebug": "Krokovat s vnořením",
"stepIntoTargetDebug": "Krok do cíle",
"stepOutDebug": "Krokovat s vystoupením",
"stepOverDebug": "Krokovat bez vnoření",
- "stop": "Zastavit"
+ "stop": "Zastavit",
+ "toggleExceptionBreakpoints": "Přepnout zarážky výjimek"
},
"vs/workbench/contrib/debug/browser/debugConfigurationManager": {
"DebugConfig.failed": "Soubor launch.json nelze vytvořit ve složce .vscode ({0}).",
@@ -4945,6 +8508,7 @@
"workbench.action.debug.startDebug": "Spustit novou relaci ladění"
},
"vs/workbench/contrib/debug/browser/debugEditorActions": {
+ "EditBreakpointEditorAction": "Ladění: Upravit zarážku",
"addToWatch": "Přidat do kukátka",
"closeExceptionWidget": "Zavřít widget výjimek",
"conditionalBreakpointEditorAction": "Ladit: přidat podmíněnou zarážku...",
@@ -4955,18 +8519,21 @@
"logPointEditorAction": "Ladit: přidat protokolovací bod...",
"miConditionalBreakpoint": "&&Podmíněná zarážka...",
"miDisassemblyView": "&&DisassemblyView",
+ "miEditBreakpoint": "&&Upravit zarážku",
"miLogPoint": "&&Protokolovací bod...",
"miToggleBreakpoint": "Přepnout &&zarážku",
+ "miTriggerByBreakpoint": "&&Aktivovaná zarážka...",
"mitogglesource": "&&ToggleSource",
"openDisassemblyView": "Otevřít zobrazení zpětného překladu",
"runToCursor": "Spustit ke kurzoru",
"showDebugHover": "Ladit: zobrazit informace po umístění ukazatele myši",
"stepIntoTargets": "Krok do cíle",
"toggleBreakpointAction": "Ladit: přepnout zarážku",
- "toggleDisassemblyViewSourceCode": "Přepnout zdrojový kód v zobrazení zpětného překladu"
+ "toggleDisassemblyViewSourceCode": "Přepnout zdrojový kód v zobrazení zpětného překladu",
+ "toggleDisassemblyViewSourceCodeDescription": "Zobrazí nebo skryje zdrojový kód ve zpětném překladu.",
+ "triggerByBreakpointEditorAction": "Ladění: Přidat aktivovanou zarážku..."
},
"vs/workbench/contrib/debug/browser/debugEditorContribution": {
- "addConfiguration": "Přidat konfiguraci...",
"editor.inlineValuesBackground": "Barva pozadí ladění vložených hodnot",
"editor.inlineValuesForeground": "Barva textu ladění vložených hodnot"
},
@@ -4996,6 +8563,7 @@
"debugBreakpointLog": "Ikona pro zarážky protokolů",
"debugBreakpointLogDisabled": "Ikona pro zakázané zarážky protokolů",
"debugBreakpointLogUnverified": "Ikona pro neověřené zarážky protokolů",
+ "debugBreakpointPendingOnTrigger": "Ikona pro zarážky čekající na jinou zarážku",
"debugBreakpointUnsupported": "Ikona pro nepodporované zarážky",
"debugBreakpointUnverified": "Ikona pro neověřené zarážky",
"debugCollapseAll": "Ikona pro akce sbalení všeho v zobrazeních pro ladění",
@@ -5028,6 +8596,7 @@
"variablesViewIcon": "Zobrazit ikonu zobrazení proměnných",
"watchExpressionRemove": "Ikona pro akci Odebrat v zobrazení kukátka.",
"watchExpressionsAdd": "Ikona pro akci přidání v zobrazení kukátka",
+ "watchExpressionsAddDataBreakpoint": "Ikona pro akci přidání datové zarážky v zobrazení zarážek",
"watchExpressionsAddFuncBreakpoint": "Ikona pro akci přidání zarážky funkce v zobrazení kukátka",
"watchExpressionsRemoveAll": "Ikona pro akci Odebrat vše v zobrazení kukátka",
"watchViewIcon": "Zobrazit ikonu zobrazení kukátka"
@@ -5038,15 +8607,16 @@
"configure": "konfigurovat",
"contributed": "přidané",
"customizeLaunchConfig": "Konfigurovat konfiguraci spuštění",
+ "mostRecent": "Naposledy použito",
"noDebugResults": "Žádné odpovídající konfigurace spuštění",
"providerAriaLabel": "Konfigurace přidané zprostředkovatelem {0}",
"removeLaunchConfig": "Odebrat konfiguraci spuštění"
},
"vs/workbench/contrib/debug/browser/debugService": {
"1activeSession": "1 aktivní relace",
+ "active debug session": "Relace ladění je stále spuštěná, která by se ukončila.",
"breakpointAdded": "Přidala se zarážka, řádek {0}, soubor {1}.",
"breakpointRemoved": "Odebrala se zarážka, řádek {0}, soubor {1}.",
- "cancel": "Zrušit",
"compoundMustHaveConfigurations": "Aby bylo možné spustit více konfigurací, musí mít složená relace nastavený atribut configurations.",
"configMissing": "V souboru launch.json chybí konfigurace {0}.",
"debugAdapterCrash": "Proces adaptéru ladění byl neočekávaně ukončen ({0}).",
@@ -5068,12 +8638,14 @@
},
"vs/workbench/contrib/debug/browser/debugSession": {
"debuggingStarted": "Bylo zahájeno ladění.",
+ "debuggingStartedNoDebug": "Bylo spuštěno bez ladění.",
"debuggingStopped": "Bylo zastaveno ladění.",
"noDebugAdapter": "K dispozici není žádný ladicí program. Nelze odeslat {0}.",
+ "sessionDoesNotSupporBytesBreakpoints": "Relace nepodporuje zarážky s bajty.",
"sessionNotReadyForBreakpoints": "Relace není připravená na zarážky."
},
"vs/workbench/contrib/debug/browser/debugSessionPicker": {
- "moveFocusedView.selectView": "Search debug sessions by name",
+ "moveFocusedView.selectView": "Hledat ladicí relace podle názvu",
"workbench.action.debug.spawnFrom": "Relace {0} vytvořená z podřízeného procesu {1}",
"workbench.action.debug.startDebug": "Spustit novou relaci ladění"
},
@@ -5086,8 +8658,9 @@
"DebugTaskNotFound": "Zadaná úloha nebyla nalezena.",
"DebugTaskNotFoundWithTaskId": "Úlohu {0} se nepovedlo najít.",
"abort": "Přerušit",
- "cancel": "Zrušit",
- "debugAnyway": "Přesto ladit",
+ "configureTask": "Nakonfigurovat úlohu",
+ "debugAnyway": "&&Přesto ladit",
+ "debugAnywayNoMemo": "Přesto ladit",
"invalidTaskReference": "Na úlohu {0} nelze odkazovat z konfigurace spuštění, která je v jiné složce pracovního prostoru.",
"preLaunchTaskError": "Po spuštění preLaunchTask {0} došlo chybě.",
"preLaunchTaskErrors": "Po spuštění preLaunchTask {0} došlo k chybám.",
@@ -5095,9 +8668,9 @@
"preLaunchTaskTerminated": "Došlo k ukončení preLaunchTask {0}.",
"remember": "Zapamatovat si mou volbu v uživatelském nastavení",
"rememberTask": "Zapamatovat volbu pro tuto úlohu",
- "showErrors": "Zobrazit chyby",
- "taskNotTracked": "Úloha {0} se nedá sledovat. Ujistěte se, že je definovaný matcher problémů.",
- "taskNotTrackedWithTaskId": "Úloha {0} se nedá sledovat. Ujistěte se, že je definovaný matcher problémů."
+ "runningTask": "Čeká se na preLaunchTask {0}...",
+ "showErrors": "&&Zobrazit chyby",
+ "taskNotTracked": "Úloha {0} nebyla ukončena a nemá definovaný matcher problémů (problemMatcher). Ujistěte se, že jste pro úlohy sledování definovali matcher problémů."
},
"vs/workbench/contrib/debug/browser/debugToolBar": {
"notebook.moreRunActionsLabel": "Více…",
@@ -5107,6 +8680,7 @@
"vs/workbench/contrib/debug/browser/debugViewlet": {
"debugPanel": "Konzola ladění",
"miOpenConfigurations": "Otevřít &&konfigurace",
+ "openLaunchConfigDescription": "Otevře soubor, který slouží ke konfiguraci ladění programu.",
"selectWorkspaceFolder": "Vyberte složku pracovního prostoru, ve které chcete vytvořit soubor launch.json, nebo soubor přidejte do konfiguračního souboru pracovního prostoru.",
"startAdditionalSession": "Spustit další relaci"
},
@@ -5129,10 +8703,13 @@
"vs/workbench/contrib/debug/browser/linkDetector": {
"fileLink": "Pokud chcete {0}, použijte kombinaci Ctrl + kliknutí.",
"fileLinkMac": "Pokud chcete {0}, použijte kombinaci Cmd + kliknutí.",
+ "fileLinkWithPath": "Pro {0} {1} použijte kombinaci Ctrl + kliknutí",
+ "fileLinkWithPathMac": "Pro {0} {1} použijte kombinaci Cmd + kliknutí",
"followForwardedLink": "přejít na odkaz pomocí přesměrovaného portu",
"followLink": "přejít na odkaz"
},
"vs/workbench/contrib/debug/browser/loadedScriptsView": {
+ "collapse": "Všechno sbalit",
"loadedScriptsAriaLabel": "Ladit načtené skripty",
"loadedScriptsFolderAriaLabel": "Složka {0}, načtený skript, ladění",
"loadedScriptsRootFolderAriaLabel": "Složka pracovního prostoru {0}, načtený skript, ladění",
@@ -5142,30 +8719,40 @@
},
"vs/workbench/contrib/debug/browser/rawDebugSession": {
"canNotStart": "Ladicí program musí otevřít novou kartu nebo okno pro laděný proces, ale prohlížeč tomu zabránil. Aby bylo možné pokračovat, je nutné udělit oprávnění.",
- "cancel": "Zrušit",
- "continue": "Pokračovat",
+ "continue": "&&Pokračovat",
"moreInfo": "Další informace",
"noDebugAdapter": "Nebyl nalezen žádný ladicí program. Nelze odeslat {0}.",
"noDebugAdapterStart": "Žádný adaptér ladění. Nelze spustit relaci ladění."
},
"vs/workbench/contrib/debug/browser/repl": {
- "actions.repl.acceptInput": "REPL – přijmout vstup",
+ "actions.repl.acceptInput": "Konzola ladění: Přijmout vstup",
"actions.repl.copyAll": "Ladit: zkopírovat veškerý obsah konzoly",
"clearRepl": "Vymazat konzolu",
+ "clearRepl.descriotion": "Vymaže veškerý výstup programu z ladicí relace REPL.",
"collapse": "Sbalit vše",
+ "commentLabelWithKeybinding": "{0}, pro nápovědu k přístupnosti použijte ({1})",
+ "commentLabelWithKeybindingNoKeybinding": "{0}, spusťte příkaz Otevřít nápovědu pro usnadnění přístupu, který se momentálně nedá aktivovat klávesovou zkratkou.",
"copy": "Kopírovat",
"copyAll": "Kopírovat vše",
"debugConsole": "Konzola ladění",
- "debugConsoleCleared": "Konzola ladění byla vymazána.",
- "filter": "Filtrovat",
+ "debugFocusConsole": "Přepnout fokus na zobrazení konzoly ladění",
"paste": "Vložit",
- "repl.action.filter": "REPL – přepnout fokus na obsah k filtrování",
+ "repl.action.filter": "Konzola ladění: Přepnout fokus na filtr",
+ "repl.action.find": "Konzola ladění: Přepnout fokus na hledání",
"selectRepl": "Vybrat konzolu ladění",
+ "showing filtered repl lines": "Zobrazuje se stránka {0} z {1}.",
"startDebugFirst": "Spusťte prosím relaci ladění, aby bylo možné vyhodnotit výrazy.",
- "workbench.debug.filter.placeholder": "Filtrovat (například text, !exclude)"
- },
- "vs/workbench/contrib/debug/browser/replFilter": {
- "showing filtered repl lines": "Zobrazuje se stránka {0} z {1}."
+ "workbench.debug.filter.placeholder": "Filtrovat (například text, !exclude, \\escape)"
+ },
+ "vs/workbench/contrib/debug/browser/replAccessibilityHelp": {
+ "repl.accessibleView": "Příkaz Otevřít přístupné zobrazení{0} umožní procházet výstup konzoly znak po znaku.",
+ "repl.clear": "Příkaz Ladění: Vymazat konzolu{0} vymaže výstup konzoly.",
+ "repl.help": "Ladicí konzola je Read-Eval-Print-Loop umožňující vyhodnocovat výrazy a spouštět příkazy a lze na ni přepnout fokus pomocí{0}.",
+ "repl.history": "Historie výstupu konzoly ladění se dá procházet pomocí kláves se šipkami nahoru a dolů.",
+ "repl.input": "Na vstup konzoly ladění lze přejít z výstupu pomocí příkazu Přepnout fokus na další widget{0}.",
+ "repl.lazyVariables": "Nastavení debug.expandLazyVariables určuje, jestli se proměnné vyhodnocují automaticky. Ve výchozím nastavení je povoleno při použití čtečky obrazovky.",
+ "repl.output": "Na výstup konzoly ladění lze přejít z pole vstupu pomocí příkazu Přepnout fokus na předchozí widget{0}.",
+ "repl.showRunAndDebug": "Příkaz Zobrazit zobrazení Spuštění a ladění{0} otevře zobrazení pro spuštění a ladění s dalšími informacemi o ladění."
},
"vs/workbench/contrib/debug/browser/replViewer": {
"debugConsole": "Konzola ladění",
@@ -5174,25 +8761,44 @@
"replRawObjectAriaLabel": "Proměnná konzoly ladění {0}, hodnota {1}",
"replVariableAriaLabel": "Proměnná {0}, hodnota {1}"
},
+ "vs/workbench/contrib/debug/browser/runAndDebugAccessibilityHelp": {
+ "debug.continue": "- Příkaz Ladit: Pokračovat{0} bude pokračovat v provádění až do další zarážky.",
+ "debug.focusBreakpoints": "- Příkaz Ladit: Přepnout fokus na zobrazení zarážek{0} přesune fokus na zobrazení zarážek.",
+ "debug.focusCallStack": "- Ladění: Příkaz Přepnout fokus na zobrazení zásobníku volání{0} přesune fokus na zobrazení zásobníku volání.",
+ "debug.focusVariables": "- Příkaz Ladit: Přepnout fokus na zobrazení proměnných{0} přesune fokus na zobrazení proměnných.",
+ "debug.focusWatch": "- Ladění: Příkaz Přepnout fokus na zobrazení kukátka{0} přesune fokus na zobrazení kukátka.",
+ "debug.help": "Přístup k výstupu ladění a vyhodnocení výrazů v konzole ladění, která se dá zaměřit pomocí{0}.",
+ "debug.restartDebugging": "- Příkaz Ladění: Restartovat ladění{0} restartuje aktuální ladicí relaci.",
+ "debug.showRunAndDebug": "Příkaz Zobrazit zobrazení Spuštění a ladění{0} otevře aktuální zobrazení.",
+ "debug.startDebugging": "Příkaz Debug: Spustit ladění{0} spustí ladicí relaci.",
+ "debug.stepInto": "- Příkaz Ladit: Krokovat s vnořením{0} bude krokovat s vnořením do dalšího volání funkce.",
+ "debug.stepOut": "- Příkaz Ladit: Krokovat s vystoupením{0} krokuje s vystoupením z aktuálního volání funkce.",
+ "debug.stepOver": "- Příkaz Ladit: Krokovat bez vnoření{0} krokuje bez vnoření z aktuálního volání funkce.",
+ "debug.stopDebugging": "- Příkaz Ladění: Zastavit ladění{0} zastaví aktuální ladicí relaci.",
+ "debug.views": "Viewlet ladění se skládá z několika zobrazení, na která lze přepnout fokus pomocí následujících příkazů nebo pomocí tabulátoru a následně kláves se šipkami:",
+ "debug.watchSetting": "Nastavení {0} určuje, jestli se budou oznamovat změny proměnných sledování.",
+ "onceDebugging": "Po ladění budou k dispozici následující příkazy:"
+ },
"vs/workbench/contrib/debug/browser/statusbarColorProvider": {
+ "commandCenter-activeBackground": "Barva pozadí centra příkazů při ladění programu",
"statusBarDebuggingBackground": "Barva pozadí stavového řádku při ladění programu. Stavový řádek se zobrazuje v dolní části okna.",
"statusBarDebuggingBorder": "Barva ohraničení stavového řádku, které odděluje stavový řádek od postranního panelu a editoru, když probíhá ladění programu. Stavový řádek se zobrazuje v dolní části okna.",
"statusBarDebuggingForeground": "Barva popředí stavového řádku při ladění programu. Stavový řádek se zobrazuje v dolní části okna."
},
"vs/workbench/contrib/debug/browser/variablesView": {
- "cancel": "Zrušit",
"collapse": "Sbalit vše",
- "install": "Nainstalovat",
+ "removeVisualizer": "Odebrat vizualizér",
+ "useVisualizer": "Vizualizovat proměnnou...",
"variableAriaLabel": "{0}, hodnota {1}",
"variableScopeAriaLabel": "Obor: {0}",
"variableValueAriaLabel": "Zadejte novou hodnotu proměnné.",
"variablesAriaTreeLabel": "Proměnné ladění",
- "viewMemory.install.progress": "Instalace šestnáctkového editoru…",
- "viewMemory.prompt": "Kontrola binárních dat vyžaduje rozšíření šestnáctkového editoru. Chcete ho hned nainstalovat?"
+ "viewMemory.prompt": "Kontrola binárních dat vyžaduje toto rozšíření."
},
"vs/workbench/contrib/debug/browser/watchExpressionsView": {
"addWatchExpression": "Přidat výraz",
"collapse": "Sbalit vše",
+ "copyWatchExpression": "Kopírovat výraz",
"removeAllWatchExpressions": "Odebrat všechny výrazy",
"typeNewValue": "Přidat novou hodnotu",
"watchAriaTreeLabel": "Výrazy kukátka ladění",
@@ -5203,12 +8809,11 @@
},
"vs/workbench/contrib/debug/browser/welcomeView": {
"allDebuggersDisabled": "Všechna rozšíření ladění jsou zakázaná. Povolte rozšíření ladění nebo nainstalujte nové z Marketplace.",
- "customizeRunAndDebug": "Pokud si chcete přizpůsobit konfiguraci Spustit a ladit, [vytvořte soubor launch.json](command: {0}).",
- "customizeRunAndDebugOpenFolder": "Pokud si chcete přizpůsobit konfiguraci Spustit a ladit, [otevřete složku](command: {0}) a vytvořte soubor launch.json.",
- "detectThenRunAndDebug": "[Zobrazit všechny konfigurace automatického ladění](command:{0}).",
- "openAFileWhichCanBeDebugged": "[Otevřete soubor] (command:{0}), který lze ladit nebo spustit.",
+ "customizeRunAndDebug2": "Pokud si chcete přizpůsobit konfiguraci Spustit a ladit, [vytvořte soubor launch.json]({0}).",
+ "customizeRunAndDebugOpenFolder2": "Pokud si chcete přizpůsobit konfiguraci Spustit a ladit, [otevřete složku]({0}) a vytvořte soubor launch.json.",
+ "openAFileWhichCanBeDebugged": "[Otevřete soubor](command:{0}), který lze ladit nebo spustit.",
"run": "Spustit",
- "runAndDebugAction": "[Spustit a ladit{0}](command:{1})"
+ "runAndDebugAction": "Spustit a ladit"
},
"vs/workbench/contrib/debug/common/abstractDebugAdapter": {
"timeout": "Po {0} ms vypršel časový limit pro {1}."
@@ -5217,13 +8822,15 @@
"breakWhenValueChangesSupported": "True, když relace s fokusem podporuje pozastavení při změnách hodnot",
"breakWhenValueIsAccessedSupported": "True, když zarážka s fokusem podporuje pozastavení při přístupu k hodnotám hodnot",
"breakWhenValueIsReadSupported": "True, když zarážka s fokusem podporuje pozastavení při čtení hodnot",
- "breakpointAccessType": "Představuje typ přístupu datové zarážky s fokusem v zobrazení ZARÁŽKY. Příklad: read, readWrite, write",
+ "breakpointHasModes": "Určuje, zda má zarážka více režimů, na které lze přepnout.",
"breakpointInputFocused": "True, když má vstupní pole fokus v zobrazení ZARÁŽKY",
+ "breakpointItemIsDataBytes": "Určuje, zda je položka zarážky datová zarážka v rozsahu bajtů.",
"breakpointItemType": "Představuje typ položky elementu s fokusem v zobrazení ZARÁŽKY. Příklad: breakpoint, exceptionBreakppint, functionBreakpoint, dataBreakpoint",
"breakpointSupportsCondition": "True, když zarážka s fokusem podporuje podmínky",
"breakpointWidgetVisibile": "True, když je viditelný widget zóny editoru zarážek, jinak false",
"breakpointsExist": "True, když existuje alespoň jedna zarážka",
"breakpointsFocused": "True, když má zobrazení ZARÁŽKY fokus, jinak false",
+ "callStackFocused": "True, když má zobrazení CALLSTACK fokus, jinak false",
"callStackItemStopped": "True, pokud je položka s fokusem v ZÁSOBNÍKU VOLÁNÍ zastavená. Používá se interně pro vložené nabídky v zobrazení ZÁSOBNÍK VOLÁNÍ.",
"callStackItemType": "Představuje typ položky elementu s fokusem v zobrazení ZÁSOBNÍK VOLÁNÍ. Příklad: session, thread, stackFrame",
"callStackSessionHasOneThread": "True, pokud relace s fokusem v zobrazení ZÁSOBNÍK VOLÁNÍ má přesně jedno vlákno. Používá se interně pro vložené nabídky v zobrazení ZÁSOBNÍK VOLÁNÍ.",
@@ -5232,6 +8839,7 @@
"debugConfigurationType": "Typ ladění vybrané konfigurace spuštění. Příklad: python",
"debugExtensionsAvailable": "True, když je nainstalované a povolené alespoň jedno rozšíření ladění.",
"debugProtocolVariableMenuContext": "Představuje kontext, který adaptér ladění nastaví pro proměnnou s fokusem v zobrazení PROMĚNNÉ.",
+ "debugSetDataBreakpointAddressSupported": "True, když relace s fokusem podporuje požadavek getBreakpointInfo na adrese",
"debugSetExpressionSupported": "True, pokud relace s fokusem podporuje požadavek setExpression.",
"debugSetVariableSupported": "True, když relace s fokusem podporuje požadavek setVariable",
"debugState": "Stav, ve kterém je ladicí relace s fokusem. Je to jeden z těchto: inactive, initializing, stopped nebo running",
@@ -5244,11 +8852,13 @@
"exceptionWidgetVisible": "True, když je viditelný widget výjimky",
"expressionSelected": "True, když se vstupní pole výrazu otevře v zobrazení KUKÁTKO nebo PROMĚNNÉ, jinak false",
"focusedSessionIsAttach": "True, když je relace s fokusem attach",
+ "focusedSessionIsNoDebug": "True, když se relace s fokusem spustí bez ladění",
"focusedStackFrameHasInstructionReference": "True, pokud má blok zásobníku s fokusem referenci na ukazatele na instrukci",
+ "hasDebugged": "Hodnota true, pokud se ladicí relace spustila alespoň jednou, jinak false.",
"inBreakpointWidget": "True, když je fokus ve widgetu zóny editoru zarážek, jinak false",
"inDebugMode": "True při ladění, jinak false",
"inDebugRepl": "True, když je fokus v konzole ladění, jinak false",
- "internalConsoleOptions": "Určuje, kdy se má otevřít interní konzola ladění.",
+ "internalConsoleOptions": "Určuje, kdy se má otevřít interní konzole ladění.",
"jumpToCursorSupported": "True, když relace s fokusem podporuje požadavek jumpToCursor",
"languageSupportsDisassembleRequest": "True, pokud jazyk v aktuálním editoru podporuje požadavek na zpětný překlad",
"loadedScriptsItemType": "Představuje typ položky elementu s fokusem v zobrazení NAČTENÉ SKRIPTY.",
@@ -5256,13 +8866,20 @@
"multiSessionDebug": "True, když existuje více než 1 aktivní ladicí relace",
"multiSessionRepl": "True, když existuje více než 1 konzola ladění",
"restartFrameSupported": "True, když relace s fokusem podporuje požadavky restartFrame",
- "stackFrameSupportsRestart": "True, když blok zásobníku s fokusem podporuje restartFrame",
+ "stackFrameSupportsRestart": "True, pokud blok zásobníku s fokusem podporuje restartFrame",
"stepBackSupported": "True, když relace s fokusem podporuje požadavky stepBack",
"stepIntoTargetsSupported": "True, když relace s fokusem podporuje požadavek stepIntoTargets",
"suspendDebuggeeSupported": "Má hodnotu true, pokud relace s fokusem podporuje funkci pozastavení laděného procesu.",
"terminateDebuggeeSupported": "Má hodnotu true, když relace s fokusem podporuje funkci ukončení laděného procesu.",
+ "terminateThreadsSupported": "True, pokud relace s fokusem podporuje schopnost ukončit vlákna.",
"variableEvaluateNamePresent": "True, když má proměnná s fokusem nastavené pole evalauteName.",
+ "variableExtensionId": "ID rozšíření zdroje proměnných, které je k dispozici pro klauzule vizualizace ladění",
+ "variableInterfaces": "Všechna rozhraní nebo kontrakty, které proměnná splňuje, jsou k dispozici pro klauzule vizualizace ladění.",
"variableIsReadonly": "True, pokud je proměnná s fokusem jen pro čtení.",
+ "variableLanguage": "Jazyk zdroje proměnných, který je k dispozici pro klauzule vizualizace ladění",
+ "variableName": "Název proměnné, který je k dispozici pro klauzule vizualizace ladění",
+ "variableType": "Typ proměnné, který je k dispozici pro klauzule vizualizace ladění",
+ "variableValue": "Hodnota proměnné, která je k dispozici pro klauzule vizualizace ladění",
"variablesFocused": "True, když má zobrazení PROMĚNNÉ fokus, jinak false",
"watchExpressionsExist": "True, když existuje alespoň jeden výraz kukátka, jinak false",
"watchExpressionsFocused": "True, když má zobrazení KUKÁTKO fokus, jinak false",
@@ -5273,10 +8890,23 @@
"canNotResolveSourceWithError": "Nepovedlo se načíst zdroj {0}: {1}.",
"unable": "Prostředek nelze přeložit bez relace ladění."
},
+ "vs/workbench/contrib/debug/common/debugger": {
+ "cannot.find.da": "Nepovedlo se najít adaptér ladění pro typ {0}.",
+ "debugLinuxConfiguration": "Atributy konfigurace spuštění specifické pro systém Linux",
+ "debugOSXConfiguration": "Atributy konfigurace spuštění specifické pro OS X",
+ "debugRequest": "Typ konfigurace žádosti. Možné typy: launch (spustit) nebo attach (připojit)",
+ "debugType": "Typ konfigurace",
+ "debugTypeNotRecognised": "Nebyl rozpoznán typ ladění. Ujistěte se, že máte nainstalované odpovídající rozšíření pro ladění a že je povolené.",
+ "debugWindowsConfiguration": "Atributy konfigurace spuštění specifické pro systém Windows",
+ "launch.config.comment1": "Pro informace o možných atributech použijte technologii IntelliSense.",
+ "launch.config.comment2": "Umístěním ukazatele myši zobrazíte popisy existujících atributů.",
+ "launch.config.comment3": "Další informace najdete tady: {0}",
+ "node2NotSupported": "Možnost node2 už není podporována. Místo ní použijte možnost node a atribut protocol nastavte na hodnotu inspector."
+ },
"vs/workbench/contrib/debug/common/debugLifecycle": {
"debug.debugSessionCloseConfirmationPlural": "Existují aktivní ladicí relace, opravdu je chcete zastavit?",
"debug.debugSessionCloseConfirmationSingular": "Existuje aktivní ladicí relace, opravdu ji chcete zastavit?",
- "debug.stop": "Zastavit ladění"
+ "debug.stop": "&&Zastavit ladění"
},
"vs/workbench/contrib/debug/common/debugModel": {
"breakpointDirtydHover": "Neověřená zarážka. Soubor se změnil. Restartujte prosím relaci ladění.",
@@ -5297,6 +8927,9 @@
"app.launch.json.title": "Spustit",
"app.launch.json.version": "Verze tohoto formátu souboru",
"compoundPrelaunchTask": "Úloha, která se má spustit před spuštěním jakékoli konfigurace složené relace",
+ "debugger name": "Název",
+ "debugger type": "Typ",
+ "debuggers": "Ladicí programy",
"presentation": "Možnosti, které určují, jak zobrazit tuto konfiguraci v rozevírací nabídce konfigurací ladění a na paletě příkazů",
"presentation.group": "Skupina, do které tato konfigurace patří. Používá se pro seskupování a řazení v rozevírací nabídce konfigurací a na paletě příkazů.",
"presentation.hidden": "Určuje, jestli se má tato konfigurace zobrazovat v rozevírací nabídce konfigurací a na paletě příkazů.",
@@ -5310,6 +8943,7 @@
"vscode.extension.contributes.debuggers.configurationAttributes": "Konfigurace schématu JSON pro ověření souboru launch.json",
"vscode.extension.contributes.debuggers.configurationSnippets": "Fragmenty pro přidání nových konfigurací v souboru launch.json",
"vscode.extension.contributes.debuggers.deprecated": "Volitelná zpráva označující tento typ ladění jako zastaralý.",
+ "vscode.extension.contributes.debuggers.hiddenWhen": "Pokud je tato podmínka pravdivá, je tento typ ladicího programu skrytý v seznamu ladicího programu, ale stále je povolený.",
"vscode.extension.contributes.debuggers.initialConfigurations": "Konfigurace pro generování počátečního souboru launch.json",
"vscode.extension.contributes.debuggers.label": "Zobrazovaný název tohoto adaptéru ladění",
"vscode.extension.contributes.debuggers.languages": "Seznam jazyků, pro které by bylo možné rozšíření ladění považovat za výchozí ladicí program",
@@ -5320,6 +8954,8 @@
"vscode.extension.contributes.debuggers.program": "Cesta k programu adaptéru ladění. Cesta je buď absolutní, nebo relativní vzhledem ke složce rozšíření.",
"vscode.extension.contributes.debuggers.runtime": "Volitelný modul runtime v případě, že atribut programu není spustitelný soubor, ale vyžaduje modul runtime.",
"vscode.extension.contributes.debuggers.runtimeArgs": "Volitelné argumenty modulu runtime",
+ "vscode.extension.contributes.debuggers.strings": "Řetězce uživatelského rozhraní přidané tímto adaptérem ladění.",
+ "vscode.extension.contributes.debuggers.strings.unverifiedBreakpoints": "Pokud jsou v jazyce podporovaném tímto adaptérem ladění neověřené zarážky, zobrazí se tato zpráva při najetí myší na zarážku a v zobrazení zarážek. Podporují se odkazy markdownu a příkazů.",
"vscode.extension.contributes.debuggers.type": "Jedinečný identifikátor tohoto adaptéru ladění",
"vscode.extension.contributes.debuggers.variables": "Mapování z interaktivních proměnných (například ${action.pickProcess}) v souboru launch.json na příkaz",
"vscode.extension.contributes.debuggers.when": "Podmínka, která musí být pravdivá pro povolení tohoto typu ladicího programu. Zvažte podle potřeby použití shellExecutionSupported, virtualWorkspace, resourceScheme nebo kontextového klíče definovaného rozšířením.",
@@ -5329,24 +8965,12 @@
"vs/workbench/contrib/debug/common/debugSource": {
"unknownSource": "Neznámý zdroj"
},
- "vs/workbench/contrib/debug/common/debugger": {
- "cannot.find.da": "Nepovedlo se najít adaptér ladění pro typ {0}.",
- "debugLinuxConfiguration": "Atributy konfigurace spuštění specifické pro systém Linux",
- "debugOSXConfiguration": "Atributy konfigurace spuštění specifické pro OS X",
- "debugRequest": "Typ konfigurace žádosti. Možné typy: launch (spustit) nebo attach (připojit)",
- "debugType": "Typ konfigurace",
- "debugTypeNotRecognised": "Nebyl rozpoznán typ ladění. Ujistěte se, že máte nainstalované odpovídající rozšíření pro ladění a že je povolené.",
- "debugWindowsConfiguration": "Atributy konfigurace spuštění specifické pro systém Windows",
- "launch.config.comment1": "Pro informace o možných atributech použijte technologii IntelliSense.",
- "launch.config.comment2": "Umístěním ukazatele myši zobrazíte popisy existujících atributů.",
- "launch.config.comment3": "Další informace najdete tady: {0}",
- "node2NotSupported": "Možnost node2 už není podporována. Místo ní použijte možnost node a atribut protocol nastavte na hodnotu inspector."
- },
"vs/workbench/contrib/debug/common/disassemblyViewInput": {
+ "disassemblyEditorLabelIcon": "Ikona popisku editoru zpětného překladu",
"disassemblyInputName": "Zpětný překlad"
},
"vs/workbench/contrib/debug/common/loadedScriptsPicker": {
- "moveFocusedView.selectView": "Hledat načtené skripty podle názvu"
+ "moveFocusedView.selectView": "Search loaded scripts by name"
},
"vs/workbench/contrib/debug/common/replModel": {
"consoleCleared": "Konzola se vymazala."
@@ -5363,68 +8987,120 @@
"bracketPairColorizer.notification.action.showMoreInfo": "Další informace",
"bracketPairColorizer.notification.action.uninstall": "Odinstalovat rozšíření"
},
- "vs/workbench/contrib/dialogs/browser/dialogHandler": {
- "yesButton": "&&Ano",
- "cancelButton": "Zrušit",
- "aboutDetail": "Verze: {0}\r\nPotvrzení: {1}\r\nDatum: {2}\r\nProhlížeč: {3}",
- "copy": "Kopírovat",
- "ok": "OK"
+ "vs/workbench/contrib/dropOrPasteInto/browser/commands": {
+ "configureDefaultDrop.label": "Konfigurovat upřednostňovanou akci přetažení...",
+ "configureDefaultPaste.label": "Konfigurovat upřednostňovanou akci vložení..."
},
- "vs/workbench/contrib/dialogs/electron-sandbox/dialogHandler": {
- "yesButton": "&&Ano",
- "cancelButton": "Zrušit",
- "aboutDetail": "Verze: {0}\r\nPotvrzení: {1}\r\nDatum: {2}\r\nElektron: {3}\r\nChrome: {4}\r\nNode.js: {5}\r\nV8: {6}\r\nOperační systém: {7}",
- "okButton": "OK",
- "copy": "&&Kopírovat"
+ "vs/workbench/contrib/dropOrPasteInto/browser/configurationSchema": {
+ "dropKind": "Identifikátor druhu úpravy přetažení",
+ "dropPreferredDescription": "Konfiguruje upřednostňovaný typ úprav, který se použije při přetahování obsahu.\r\n\r\nToto je uspořádaný seznam druhů úprav. Použije se první dostupná úprava upřednostňovaného druhu.",
+ "pasteKind": "Identifikátor druhu úpravy vložení",
+ "pastePreferredDescription": "Konfiguruje upřednostňovaný typ úprav, který se má použít při vkládání obsahu.\r\n\r\nToto je uspořádaný seznam druhů úprav. Použije se první dostupná úprava upřednostňovaného druhu."
},
"vs/workbench/contrib/editSessions/browser/editSessions.contribution": {
- "client too old": "Pokud chcete tuto relaci úprav obnovit, aktualizujte na novější verzi {0}.",
- "continue edit session": "Pokračovat v úpravách relace...",
+ "autoResumeWorkingChanges": "Určuje, jestli se mají automaticky obnovit dostupné pracovní změny uložené v cloudu pro aktuální pracovní prostor.",
+ "autoResumeWorkingChanges.off": "Nikdy se nepokoušejte obnovit pracovní změny z cloudu.",
+ "autoResumeWorkingChanges.onReload": "Umožňuje automaticky obnovit dostupné pracovní změny z cloudu při opětovném načtení okna.",
+ "autoStoreWorkingChanges": "Ukládání aktuálních pracovních změn...",
+ "autoStoreWorkingChanges.off": "Nikdy se nepokoušejte automaticky ukládat pracovní změny do cloudu.",
+ "autoStoreWorkingChanges.onShutdown": "Automaticky ukládá aktuální pracovní změny v cloudu při zavření okna.",
+ "autoStoreWorkingChangesDescription": "Určuje, jestli se mají dostupné pracovní změny automaticky ukládat v cloudu pro aktuální pracovní prostor. Toto nastavení nemá žádný vliv na web.",
+ "check for pending cloud changes": "Kontrola čekajících změn v cloudu",
+ "checkingForWorkingChanges": "Kontrola čekajících změn v cloudu…",
+ "client too old": "Pokud chcete obnovit své pracovní změny z cloudu, upgradujte prosím na novější verzi {0}.",
+ "cloudChangesPartialMatchesEnabled": "Určuje, jestli se mají zobrazit Změny v cloudu, které částečně odpovídají aktuální relaci.",
"continue edit session in local folder": "Otevřít v místní složce",
- "continueEditSession.openLocalFolder.title": "Vyberte místní složku, ve které chcete pokračovat v relaci úprav",
+ "continue with cloud changes": "Vyberte, jestli se mají vaše pracovní změny přenést s vámi.",
+ "continue working on": "Pokračovat v práci...",
+ "continueEditSession.openLocalFolder.title.v2": "Vyberte místní složku, ve které chcete pokračovat v práci.",
"continueEditSessionExtPoint": "Přidává možnosti pro pokračování v aktuální relaci úprav v jiném prostředí.",
"continueEditSessionExtPoint.command": "Identifikátor příkazu, který se má provést. Příkaz musí být deklarovaný v sekci commands a vracet identifikátor URI představující jiné prostředí, ve kterém je možné pokračovat v aktuální relaci úprav.",
+ "continueEditSessionExtPoint.description": "Adresa URL stránky dokumentace možnosti (nebo příkaz, který vrátí tuto adresu URL).",
"continueEditSessionExtPoint.group": "Skupina, do které tato položka patří.",
+ "continueEditSessionExtPoint.qualifiedName": "Plně kvalifikovaný název pro tuto položku, který se používá k zobrazení v nabídkách.",
+ "continueEditSessionExtPoint.remoteGroup": "Skupina, do které tato položka patří ve vzdáleném indikátoru.",
"continueEditSessionExtPoint.when": "Podmínka, která musí mít hodnotu true, aby se zobrazila tato položka.",
- "continueEditSessionItem.openInLocalFolder": "Otevřít v místní složce",
- "continueEditSessionPick.placeholder": "Zvolte, jak chcete pokračovat v práci",
- "continueEditSessionPick.title": "Pokračovat v úpravách relace...",
- "editSessionsEnabled": "Určuje, jestli se mají při přepínání mezi webem, počítačem a zařízeními zobrazovat akce s podporou cloudu pro ukládání a obnovení nepotvrzených změn.",
- "no edit session": "Neexistují žádné relace úprav, které by bylo možné obnovit.",
- "no edit session content for ref": "Pro {0} ID nelze obnovit obsah relace úprav.",
- "no edits to store": "Ukládání relace úprav bylo přeskočeno, protože nejsou k dispozici žádné úpravy, které by bylo možné uložit.",
- "payload failed": "Vaše relace úprav se nedá uložit.",
- "payload too large": "Vaše relace úprav překračuje limit pro velikost a nedá se uložit.",
- "resume edit session warning": "Obnovení vaší relace úprav může vést k přepsání vašich nepotvrzených změn. Chcete pokračovat?",
- "resume failed": "Obnovení vaší relace úprav se nezdařilo.",
- "resume latest.v2": "Obnovit poslední relaci úprav",
- "resuming edit session": "Obnovuje se relace úprav...",
- "show edit session": "Show Edit Sessions",
- "store current.v2": "Uložit aktuální relaci úprav",
- "storing edit session": "Ukládá se relace úprav"
- },
- "vs/workbench/contrib/editSessions/browser/editSessionsViews": {
- "confirm delete": "Are you sure you want to permanently delete the edit session with ref {0}? You cannot undo this action.",
- "edit sessions data": "All Sessions",
- "open file": "Open File",
- "workbench.editSessions.actions.delete": "Delete Edit Session",
- "workbench.editSessions.actions.resume": "Resume Edit Session"
- },
- "vs/workbench/contrib/editSessions/browser/editSessionsWorkbenchService": {
- "account preference": "Přihlaste se, abyste mohli používat úpravy relací",
- "choose account placeholder": "Vyberte účet pro přihlášení.",
- "clear data confirm": "Ano",
- "delete all edit sessions": "Odstraňte všechny uložené relace úprav z cloudu.",
+ "continueEditSessionItem.builtin": "Integrovaný",
+ "continueEditSessionItem.openInLocalFolder.v2": "Otevřít v místní složce",
+ "continueEditSessionPick.title.v2": "Vyberte vývojové prostředí a pokračujte v práci na {0} v",
+ "continueOn.installAdditional": "Nainstalovat další možnosti vývojového prostředí",
+ "continueOnCloudChanges": "Určuje, jestli se má uživateli při použití funkce Ukládání pracovních změn zobrazit výzva k uložení pracovních změn v cloudu.",
+ "continueOnCloudChanges.off": "Neukládejte pracovní změny v cloudu s funkcí Ukládání pracovních změn, pokud uživatel ještě nezapnul Změny v cloudu.",
+ "continueOnCloudChanges.promptForAuth": "Vyzve uživatele, aby se přihlásil, aby uložil pracovní změny v cloudu, a to s využitím funkce Ukládání pracovních změn.",
+ "continueWorkingOn.existingLocalFolder": "Pokračovat v práci v existující místní složce",
+ "editSessionPartialMatch": "Pro tento pracovní prostor máte v cloudu čekající pracovní změny. Chcete je obnovit?",
+ "learnMoreTooltip": "Další informace",
+ "no cloud changes": "V cloudu nejsou žádné změny, které by bylo možné obnovit.",
+ "no cloud changes for ref": "Nepovedlo se obnovit změny z cloudu pro ID {0}.",
+ "no working changes to store": "Ukládání pracovních změn v cloudu se přeskočilo, protože nejsou k dispozici žádné úpravy, které by bylo možné uložit.",
+ "payload failed": "Vaše pracovní změny se nedají uložit.",
+ "payload too large": "Vaše pracovní změny překračují limit velikosti a nedají se uložit.",
+ "resume": "Shrnutí",
+ "resume cloud changes": "Obnovit změny ze serializovaných dat",
+ "resume edit session warning 1": "Obnovení pracovních změn z cloudu přepíše {0}. Chcete pokračovat?",
+ "resume edit session warning many": "Obnovením pracovních změn z cloudu přepíšete následující {0} soubory. Chcete pokračovat?",
+ "resume failed": "Nepovedlo se obnovit vaše pracovní změny z cloudu.",
+ "resume latest cloud changes": "Obnovit nejnovější změny z cloudu",
+ "resuming working changes window": "Obnovují se pracovní změny...",
+ "show cloud changes": "Zobrazit změny v cloudu",
+ "show log": "Zobrazit protokol",
+ "store working changes": "Ukládání pracovních změn...",
+ "store working changes in cloud": "Ukládání pracovních změn v cloudu",
+ "store your working changes": "Ukládají se vaše pracovní změny...",
+ "storing working changes": "Ukládání pracovních změn...",
+ "with cloud changes": "Ano, pokračovat v mých pracovních změnách",
+ "without cloud changes": "Ne, pokračovat bez mých pracovních změn"
+ },
+ "vs/workbench/contrib/editSessions/browser/editSessionsStorageService": {
+ "choose account placeholder": "Vyberte účet pro uložení vašich pracovních změn v cloudu.",
+ "choose account read placeholder": "Vyberte účet pro obnovení vašich rozpracovaných změn z cloudu",
+ "delete all cloud changes": "Odstraňte všechna uložená data z cloudu.",
"others": "Jiné",
- "reset auth.v2": "Sign Out of Edit Sessions",
+ "reset auth.v3": "Vypnout změny cloudu...",
+ "sign in": "Zapnout změny cloudu...",
+ "sign in badge": "Zapnout změny cloudu… (1)",
"sign in using account": "Přihlásit přes {0}",
- "sign out of edit sessions clear data prompt": "Chcete se odhlásit z relací úprav?",
+ "sign out of cloud changes clear data prompt": "Chcete zakázat ukládání pracovních změn v cloudu?",
"signed in": "Přihlášený"
},
+ "vs/workbench/contrib/editSessions/browser/editSessionsViews": {
+ "cloud changes": "Změny v cloudu",
+ "compare changes": "Porovnat změny",
+ "confirm delete all": "Opravdu chcete trvale odstranit všechny uložené změny z cloudu?",
+ "confirm delete all detail": " Tuto akci nelze vrátit zpět.",
+ "confirm delete detail.v2": " Tuto akci nelze vrátit zpět.",
+ "confirm delete.v2": "Opravdu chcete trvale odstranit pracovní změny s odkazem {0}?",
+ "local copy": "Místní kopie",
+ "noStoredChanges": "V cloudu nemáte žádné uložené změny, které by se daly zobrazit.\r\n{0}",
+ "open file": "Otevřít soubor",
+ "storeWorkingChangesTitle": "Ukládání pracovních změn",
+ "workbench.editSessions.actions.delete.v2": "Odstranit pracovní změny",
+ "workbench.editSessions.actions.deleteAll": "Odstranit všechny pracovní změny z cloudu",
+ "workbench.editSessions.actions.resume.v2": "Pokračovat v pracovních změnách",
+ "workbench.editSessions.actions.store.v2": "Ukládání pracovních změn"
+ },
"vs/workbench/contrib/editSessions/common/editSessions": {
- "edit sessions": "Edit Sessions",
- "editSessionViewIcon": "View icon of the edit sessions view.",
- "session sync": "Upravit relace"
+ "cloud changes": "Změny v cloudu",
+ "editSessionViewIcon": "Ikona zobrazení změn v cloudu."
+ },
+ "vs/workbench/contrib/editSessions/common/editSessionsLogService": {
+ "cloudChangesLog": "Změny v cloudu"
+ },
+ "vs/workbench/contrib/editTelemetry/browser/editStats/aiStatsStatusBar": {
+ "aiStats.statusBar.configure": "Nakonfigurovat",
+ "aiStatsStatusBarHeader": "Statistika využití AI",
+ "inlineSuggestions": "Vložené návrhy",
+ "inlineSuggestionsStatusBar": "Stavový řádek vložených návrhů",
+ "text1": "Průměr AI vs. psaní: {0}",
+ "text2": "Přijaté vložené návrhy dnes: {0}"
+ },
+ "vs/workbench/contrib/editTelemetry/browser/editTelemetry.contribution": {
+ "editTelemetry": "Upravit telemetrii",
+ "editor.aiStats.enabled": "Určuje, jestli se mají v editoru povolit statistiky AI. Měřidlo představuje průměrné množství kódu vloženého umělou inteligencí v porovnání s ručním psaním v průběhu 24 hodin.",
+ "telemetry.editStats.detailed.enabled": "Určuje, jestli se má povolit telemetrie pro podrobné statistiky úprav (odesílá statistiku jenom v případě, že je povolená obecná telemetrie).",
+ "telemetry.editStats.enabled": "Určuje, jestli se má povolit telemetrie pro úpravu statistiky (odesílá statistiku jenom v případě, že je povolená obecná telemetrie).",
+ "telemetry.editStats.showDecorations": "Určuje, jestli se mají zobrazovat dekorace pro úpravu telemetrie.",
+ "telemetry.editStats.showStatusBar": "Určuje, jestli se má zobrazit stavový řádek pro úpravu telemetrie."
},
"vs/workbench/contrib/emmet/browser/actions/expandAbbreviation": {
"expandAbbreviationAction": "Emmet: rozbalit zkratku",
@@ -5438,8 +9114,12 @@
"disable": "Zakázat",
"disable workspace": "Zakázat (pracovní prostor)",
"errors": "Nezachycené chyby: {0}",
+ "extensionActivating": "Rozšíření se aktivuje",
"languageActivation": "Aktivováno prostřednictvím {1}, protože jste otevřeli soubor {0}",
+ "requests count": "Využití {0}: počet žádostí: {1}",
+ "requests count title": "Poslední žádost byla {0}.",
"runtimeExtensions": "Rozšíření modulu runtime",
+ "session requests count": ", počet žádostí (relace): {0}",
"showRuntimeExtensions": "Zobrazit spuštěná rozšíření",
"starActivation": "Aktivováno prostřednictvím {0} při spuštění",
"startupFinishedActivation": "Aktivováno prostřednictvím {0} po dokončení spuštění",
@@ -5452,164 +9132,139 @@
"vs/workbench/contrib/extensions/browser/configBasedRecommendations": {
"exeBasedRecommendation": "Toto rozšíření se doporučuje z důvodu aktuální konfigurace pracovního prostoru."
},
- "vs/workbench/contrib/extensions/browser/dynamicWorkspaceRecommendations": {
- "dynamicWorkspaceRecommendation": "Toto rozšíření by vás mohlo zajímat, protože je oblíbené mezi uživateli úložiště {0}."
- },
"vs/workbench/contrib/extensions/browser/exeBasedRecommendations": {
"exeBasedRecommendation": "Toto rozšíření se doporučuje, protože máte nainstalováno následující: {0}."
},
"vs/workbench/contrib/extensions/browser/extensionEditor": {
- "JSON Validation": "Ověření JSON ({0})",
+ "Changelog title": "Protokol změn",
+ "Install Info": "Instalace",
"Marketplace": "Marketplace",
- "Marketplace Info": "Další informace",
- "Notebook id": "ID",
- "Notebook mimetypes": "Typy mimetype",
- "Notebook name": "Název",
- "Notebook renderer name": "Název",
- "NotebookRenderers": "Renderery poznámkových bloků ({0})",
- "Notebooks": "Poznámkové bloky ({0})",
- "activation": "Čas aktivace",
- "activation events": "Události aktivace ({0})",
- "authentication": "Ověřování ({0})",
- "authentication.id": "ID",
- "authentication.label": "Popisek",
+ "Marketplace Info": "Marketplace",
+ "Readme title": "Soubor Readme",
+ "Version": "Verze",
"builtin": "Integrovaný",
+ "cache size": "Mezipaměť",
"categories": "Kategorie",
"changelog": "Protokol změn",
"changelogtooltip": "Historie aktualizací rozšíření získaná ze souboru CHANGELOG.md rozšíření",
- "codeActions": "Akce kódu ({0})",
- "codeActions.description": "Popis",
- "codeActions.kind": "Typ",
- "codeActions.languages": "Jazyky",
- "codeActions.title": "Název",
- "colorId": "ID",
- "colorThemes": "Barevné motivy ({0})",
- "colors": "Barvy ({0})",
- "command name": "Název",
- "commands": "Příkazy ({0})",
- "contributions": "Přidané funkce",
- "contributionstooltip": "Vypíše, co konkrétně toto rozšíření přidává do VS Code.",
- "customEditors": "Vlastní editory ({0})",
- "customEditors filenamePattern": "Vzor názvu souboru",
- "customEditors priority": "Priorita",
- "customEditors view type": "Typ zobrazení",
- "debugger name": "Název",
- "debugger type": "Typ",
- "debuggers": "Ladicí programy ({0})",
- "default": "Výchozí",
- "defaultDark": "Tmavý (výchozí)",
- "defaultHC": "Vysoký kontrast (výchozí)",
- "defaultLight": "Světlý (výchozí)",
"dependencies": "Závislosti",
"dependenciestooltip": "Zobrazí seznam rozšíření, na kterých je toto rozšíření závislé.",
- "description": "Popis",
"details": "Podrobnosti",
"detailstooltip": "Podrobnosti o rozšíření získané ze souboru README.md rozšíření",
+ "disk space used": "Velikost mezipaměti",
"extension pack": "Sada rozšíření ({0})",
"extension version": "Verze rozšíření",
"extensionpack": "Sada rozšíření",
"extensionpacktooltip": "Vypíše rozšíření, která se nainstalují společně s tímto rozšířením.",
- "file extensions": "Přípony souborů",
- "fileMatch": "Shoda souboru",
+ "features": "Funkce",
+ "featurestooltip": "Zobrazí funkce, kterými přispělo toto rozšíření.",
"find": "Najít",
"find next": "Najít další",
"find previous": "Najít předchozí",
- "grammar": "Gramatika",
- "iconThemes": "Motivy ikon souboru ({0})",
"id": "Identifikátor",
- "install count": "Počet instalací",
- "keyboard shortcuts": "Klávesové zkratky",
- "language id": "ID",
- "language name": "Název",
- "languages": "Jazyky ({0})",
+ "issues": "Problémy",
+ "last released": "Naposledy vydáno",
"last updated": "Poslední aktualizace",
"license": "Licence",
- "localizations": "Lokalizace ({0})",
- "localizations language id": "ID jazyka",
- "localizations language name": "Název jazyka",
- "localizations localized language name": "Název jazyka (lokalizovaný)",
- "menuContexts": "Kontexty nabídek",
- "messages": "Zprávy ({0})",
"name": "Název rozšíření",
"noChangelog": "Není k dispozici žádný protokol změn.",
- "noContributions": "Žádné přidané funkce",
"noDependencies": "Žádné závislosti",
"noReadme": "K dispozici není žádný soubor README.",
- "noStatus": "Není k dispozici žádný stav.",
- "not yet activated": "Ještě není aktivováno.",
- "preRelease": "Předběžná verze",
+ "other": "Místní",
"preview": "Preview",
- "productThemes": "Motivy ikon produktu ({0})",
- "publisher": "Vydavatel",
- "publisher verified tooltip": "Tento vydavatel ověřil vlastnictví u: {0}",
- "rating": "Hodnocení",
- "release date": "Uvolněno na",
+ "published": "Publikováno",
"repository": "Úložiště",
- "resources": "Prostředky rozšíření",
- "runtimeStatus": "Stav modulu runtime",
- "runtimeStatus description": "Stav modulu runtime rozšíření",
- "schema": "Schéma",
- "setting name": "Název",
- "settings": "Nastavení ({0})",
- "snippets": "Fragmenty kódu",
- "startup": "Spuštění",
- "uncaught errors": "Nezachycené chyby ({0})",
- "view container id": "ID",
- "view container location": "Kde",
- "view container title": "Název",
- "view id": "ID",
- "view location": "Kde",
- "view name": "Název",
- "viewContainers": "Zobrazit kontejnery ({0})",
- "views": "Zobrazení ({0})"
+ "resources": "Prostředky",
+ "size": "Velikost",
+ "size when installed": "Velikost při instalaci",
+ "source": "Zdroj",
+ "vsix": "VSIX"
+ },
+ "vs/workbench/contrib/extensions/browser/extensionEnablementWorkspaceTrustTransitionParticipant": {
+ "restartExtensionHost.reason": "Mění se vztah důvěryhodnosti pracovního prostoru."
+ },
+ "vs/workbench/contrib/extensions/browser/extensionFeaturesTab": {
+ "accessExtensionFeature": "Povolit funkci {0}",
+ "activation": "Aktivace",
+ "cancel": "Zrušit",
+ "chartDescription": "Za posledních 30 dní byl z tohoto rozšíření zaznamenán tento počet žádostí: {0} {1}.",
+ "disableAccessExtensionFeatureMessage": "Chcete odvolat rozšíření {0} pro přístup k funkci {1}?",
+ "enable": "Povolit přístup",
+ "enableAccessExtensionFeatureMessage": "Chcete povolit rozšíření {0} pro přístup k funkci {1}?",
+ "extension features list": "Funkce rozšíření",
+ "grant": "Povolit přístup",
+ "label": "Využití {0}",
+ "messaages": "Zprávy ({0})",
+ "noFeatures": "Nepřispívá žádnými funkcemi.",
+ "revoke": "Odvolat přístup",
+ "revoked": "Žádný přístup",
+ "runtime": "Stav modulu runtime",
+ "uncaught errors": "Nezachycené chyby ({0})"
},
"vs/workbench/contrib/extensions/browser/extensionRecommendationNotificationService": {
+ "donotShowAgain": "Pro toto úložiště už nezobrazovat",
+ "donotShowAgainExtension": "Pro tato rozšíření už nezobrazovat",
+ "donotShowAgainExtensionSingle": "Pro toto rozšíření už nezobrazovat",
+ "exeRecommended": "Do svého systému jste nainstalovali {0}. Chcete pro ni nainstalovat doporučenou {1} ?",
+ "extensionFromPublisher": "Rozšíření „{0}“ z {1}",
+ "extensionsFromMultiplePublishers": "rozšíření z {0}, {1} a dalších",
+ "extensionsFromPublisher": "rozšíření z {0}",
+ "extensionsFromPublishers": "rozšíření z {0} a {1}",
"ignoreAll": "Ano, ignorovat vše",
"ignoreExtensionRecommendations": "Chcete ignorovat všechna doporučení rozšíření?",
"install": "Nainstalovat",
"install and do no sync": "Nainstalovat (nesynchronizovat)",
- "neverShowAgain": "Znovu nezobrazovat",
"no": "Ne",
+ "recommended": "Chcete nainstalovat doporučenou {0} pro {1}?",
"show recommendations": "Zobrazení doporučení",
- "singleExtensionRecommended": "Pro toto úložiště se doporučuje rozšíření {0}. Chcete provést instalaci?",
- "workspaceRecommended": "Chcete nainstalovat doporučená rozšíření pro toto úložiště?"
+ "this repository": "toto úložiště"
},
"vs/workbench/contrib/extensions/browser/extensions.contribution": {
"InstallFromVSIX": "Nainstalovat z VSIX...",
"InstallVSIXAction.reloadNow": "Znovu načíst",
- "InstallVSIXAction.success": "Dokončila se instalace rozšíření {0} ze souboru VSIX.",
- "InstallVSIXAction.successReload": "Dokončila se instalace rozšíření {0} ze souboru VSIX. Pokud ho chcete povolit, načtěte prosím znovu Visual Studio Code.",
+ "InstallVSIXAction.restartExtensions": "Restartovat rozšíření",
+ "InstallVSIXAction.successNoReload": "Dokončila se instalace rozšíření.",
+ "InstallVSIXAction.successReload": "Dokončila se instalace rozšíření. Pokud ho chcete povolit, načtěte prosím znovu Visual Studio Code.",
+ "InstallVSIXAction.successRestart": "Dokončila se instalace rozšíření. Pokud ho chcete povolit, restartujte prosím rozšíření.",
+ "InstallVSIXs.successNoReload": "Dokončila se instalace rozšíření.",
+ "InstallVSIXs.successReload": "Dokončila se instalace rozšíření. Pokud je chcete povolit, načtěte prosím znovu Visual Studio Code.",
+ "InstallVSIXs.successRestart": "Dokončila se instalace rozšíření. Pokud chcete rozšíření povolit, restartujte je.",
"all": "Všechna rozšíření",
- "builtin": "Rozšíření {0} je integrované a nedá se nainstalovat.",
+ "autoRestart": "Pokud je tato možnost aktivovaná, rozšíření se po aktualizaci automaticky restartují, pokud okno není nemá fokus. Pokud máte otevřené poznámkové bloky nebo vlastní editory, může dojít ke ztrátě dat.",
+ "builtin": "Rozšíření {0} je integrované a nedá se odinstalovat.",
"builtin filter": "Integrovaný",
"checkForUpdates": "Vyhledat aktualizace rozšíření",
"clearExtensionsSearchResults": "Vymazat výsledky hledání rozšíření",
- "configure auto updating extensions": "Automaticky aktualizovat rozšíření",
- "configureExtensionsAutoUpdate.all": "Všechna rozšíření",
- "configureExtensionsAutoUpdate.enabled": "Jen povolená rozšíření",
- "configureExtensionsAutoUpdate.none": "Žádný",
"disableAll": "Zakázat všechna nainstalovaná rozšíření",
"disableAllWorkspace": "Zakázat všechna nainstalovaná rozšíření pro tento pracovní prostor",
- "disableAutoUpdate": "Zakázat automatickou aktualizaci pro všechna rozšíření",
+ "disableAutoUpdate": "Zakázat automatickou aktualizaci pro všechna rozšíření.",
+ "disablePreRleaseLabel": "Přepnout na vydanou verzi",
"disabled filter": "Zakázáno",
+ "download VSIX": "Stáhnout VSIX",
+ "download pre-release": "Stáhnout předběžnou verzi VSIX",
+ "download specific version": "Stáhnout konkrétní verzi VSIX...",
"enableAll": "Povolit všechna rozšíření",
"enableAllWorkspace": "Povolit všechna rozšíření pro tento pracovní prostor",
- "enableAutoUpdate": "Povolit automatickou aktualizaci pro všechna rozšíření",
+ "enableAutoUpdate": "Povolit automatickou aktualizaci pro všechna rozšíření.",
+ "enablePreRleaseLabel": "Přepnout na předběžnou verzi",
"enabled": "Jen povolená rozšíření",
"enabled filter": "Povoleno",
"extension": "Rozšíření",
+ "extension updates filter": "Aktualizace",
"extensionInfoDescription": "Popis: {0}",
"extensionInfoId": "ID: {0}",
"extensionInfoName": "Název: {0}",
"extensionInfoPublisher": "Vydavatel: {0}",
"extensionInfoVSMarketplaceLink": "VS Marketplace – odkaz: {0}",
"extensionInfoVersion": "Verze: {0}",
+ "extensionUpdates": "Zobrazit aktualizace rozšíření",
"extensions": "Rozšíření",
"extensions.affinity": "Nakonfigurujte rozšíření, které se má spustit v jiném hostitelském procesu rozšíření.",
"extensions.autoUpdate": "Určuje chování automatických aktualizací rozšíření. Aktualizace se načítají z online služby Microsoftu.",
- "extensions.autoUpdate.enabled": "Umožňuje automaticky stahovat a instalovat aktualizace jen pro povolená rozšíření. Zakázaná rozšíření se nebudou automaticky aktualizovat.",
+ "extensions.autoUpdate.enabled": "Umožňuje automaticky stahovat a instalovat aktualizace pouze pro vybraná rozšíření.",
"extensions.autoUpdate.false": "Rozšíření se neaktualizují automaticky.",
"extensions.autoUpdate.true": "Umožňuje automaticky stahovat a instalovat aktualizace pro všechna rozšíření.",
+ "extensions.gallery.serviceUrl": "Nakonfigurovat adresu URL služby Marketplace pro připojení k",
"extensions.supportUntrustedWorkspaces": "Přepíše podporu nedůvěryhodného pracovního prostoru rozšíření. Rozšíření, která používají hodnotu true, budou vždy povolená. Rozšíření používající omezené jsou vždy povolená a rozšíření skryje funkce, které vyžadují vztah důvěryhodnosti. Rozšíření, která používají hodnotu false, se povolí jenom v případě, že je pracovní prostor důvěryhodný.",
"extensions.supportUntrustedWorkspaces.false": "Rozšíření bude povoleno pouze v případě, že je pracovní prostor důvěryhodný.",
"extensions.supportUntrustedWorkspaces.limited": "Rozšíření bude vždy povoleno a rozšíření bude skrývat funkce vyžadující vztah důvěryhodnosti.",
@@ -5617,12 +9272,16 @@
"extensions.supportUntrustedWorkspaces.true": "Rozšíření bude vždy povoleno.",
"extensions.supportUntrustedWorkspaces.version": "Definuje verzi rozšíření, pro kterou má být uplatněno přepsání. Pokud není zadáno, přepsání bude uplatněno nezávisle na verzi rozšíření.",
"extensions.supportVirtualWorkspaces": "Přepíše podporu virtuálních pracovních prostorů rozšíření.",
+ "extensions.verifySignature": "Pokud je tato možnost povolená, před instalací se ověří, že jsou rozšíření podepsaná.",
"extensionsCheckUpdates": "Když je povoleno, automaticky se vyhledávají aktualizace rozšíření. Pokud je pro rozšíření k dispozici aktualizace, je rozšíření v zobrazení rozšíření označeno jako zastaralé. Aktualizace se načítají z online služby Microsoftu.",
"extensionsCloseExtensionDetailsOnViewChange": "Pokud je povoleno, editory s podrobnostmi o rozšíření se při přechodu mimo zobrazení rozšíření automaticky zavřou.",
"extensionsConfigurationTitle": "Rozšíření",
+ "extensionsDeferredStartupFinishedActivation": "Pokud je tato možnost povolená, rozšíření, která deklarují aktivační událost onStartupFinished, se aktivují po vypršení časového limitu.",
"extensionsIgnoreRecommendations": "Pokud je povoleno, nebudou se zobrazovat oznámení s doporučením rozšíření.",
+ "extensionsInQuickAccess": "Pokud je tato možnost povolená, je možné rozšíření vyhledávat prostřednictvím Rychlého přístupu a hlásit problémy odtud.",
+ "extensionsRequestTimeout": "Určuje časový limit v milisekundách u požadavků HTTP provedených při načítání rozšíření z Marketplace.",
"extensionsShowRecommendationsOnlyOnDemand_Deprecated": "Toto nastavení je zastaralé. K ovládání oznámení o doporučeních použijte nastavení extensions.ignoreRecommendations. Pomocí akcí viditelnosti zobrazení rozšíření můžete zobrazení Doporučené ve výchozím nastavení skrýt.",
- "extensionsUseUtilityProcess": "Pokud je povolený, spustí se hostitel rozšíření prostřednictvím nového rozhraní API UtilityProcess Electron.",
+ "extensionsSupportNodeGlobalNavigator": "Když je tato možnost povolena, objekt navigátoru Node.js je vystaven v globálním oboru.",
"extensionsWebWorker": "Povolit hostitele rozšíření webového pracovního procesu",
"extensionsWebWorker.auto": "Hostitel rozšíření webového pracovního procesu se spustí, když ho webové rozšíření potřebuje.",
"extensionsWebWorker.false": "Hostitel rozšíření webového pracovního procesu se nikdy nespustí.",
@@ -5630,33 +9289,36 @@
"featured filter": "Vybrané",
"filter by category": "Kategorie",
"filterExtensions": "Filtrovat rozšíření...",
+ "focusExtensions": "Zaměřit se na zobrazení rozšíření",
"handleUriConfirmedExtensions": "Pokud je tady rozšíření uvedeno, nezobrazí se výzva k potvrzení, když bude toto rozšíření zpracovávat identifikátor URI.",
"id required": "Je vyžadováno ID rozšíření.",
"importKeyboardShortcutsFroms": "Migrovat klávesové zkratky z...",
+ "install": "Nainstalovat",
"install button": "Nainstalovat",
+ "install installAndDonotSync": "Nainstalovat (nesynchronizovat)",
"installButton": "&&Nainstalovat",
+ "installExtensionFromLocation": "Nainstalovat rozšíření z umístění...",
"installExtensionQuickAccessHelp": "Nainstalovat nebo hledat rozšíření",
"installExtensionQuickAccessPlaceholder": "Zadejte název rozšíření, které chcete nainstalovat nebo vyhledat.",
"installExtensions": "Nainstalovat rozšíření",
- "installFromLocation": "Nainstalovat webové rozšíření z umístění",
+ "installFromLocation": "Nainstalovat rozšíření z umístění",
"installFromLocationPlaceHolder": "Umístění webového rozšíření",
"installFromVSIX": "Nainstalovat z VSIX",
+ "installPrereleaseAndDonotSync": "Nainstalovat předběžnou verzi (nesynchronizovat)",
"installVSIX": "Nainstalovat VSIX rozšíření",
- "installWebExtensionFromLocation": "Nainstalovat webové rozšíření…",
"installWorkspaceRecommendedExtensions": "Nainstalovat rozšíření doporučená pro pracovní prostor",
"installed filter": "Nainstalováno",
+ "installedExtensions": "Zobrazit nainstalovaná rozšíření",
"manageExtensionsHelp": "Správa rozšíření",
"manageExtensionsQuickAccessPlaceholder": "Pokud chcete spravovat rozšíření, stiskněte Enter.",
"miPreferencesExtensions": "&&Rozšíření",
"miViewExtensions": "&&Rozšíření",
- "miimportKeyboardShortcutsFrom": "&&Migrovat klávesové zkratky z...",
"most popular filter": "Nejoblíbenější",
"most popular recommended": "Doporučené",
"noUpdatesAvailable": "Všechna rozšíření jsou aktuální.",
"none": "Žádný",
"notFound": "Rozšíření {0} nebylo nalezeno.",
"notInstalled": "Rozšíření {0} není nainstalované. Zkontrolujte, že používáte úplné ID rozšíření, včetně vydavatele, například ms-dotnettools.csharp.",
- "outdated filter": "Zastaralé",
"recently published filter": "Nedávno publikované",
"recentlyPublishedExtensions": "Zobrazit naposledy publikovaná rozšíření",
"refreshExtension": "Aktualizovat",
@@ -5667,43 +9329,55 @@
"showEnabledExtensions": "Zobrazit povolená rozšíření",
"showExtensions": "Rozšíření",
"showFeaturedExtensions": "Zobrazit doporučená rozšíření",
- "showInstalledExtensions": "Zobrazit nainstalovaná rozšíření",
"showLanguageExtensionsShort": "Jazyková rozšíření",
- "showOutdatedExtensions": "Zobrazit zastaralá rozšíření",
"showPopularExtensions": "Zobrazit oblíbená rozšíření",
"showRecommendedExtensions": "Zobrazit doporučená rozšíření",
"showRecommendedKeymapExtensionsShort": "Mapování kláves",
"showWorkspaceUnsupportedExtensions": "Zobrazit rozšíření nepodporovaná pracovním prostorem",
- "sort by date": "Datum publikování",
+ "signInToMarketplace": "Přihlaste se pro přístup k rozšířením na Marketplace",
"sort by installs": "Počet instalací",
"sort by name": "Název",
+ "sort by published date": "Datum publikování",
"sort by rating": "Hodnocení",
+ "sort by update date": "Aktualizované datum",
"sorty by": "Seřadit podle",
+ "trustedPublishers": "Správa důvěryhodných vydavatelů rozšíření",
+ "trustedPublishersPlaceholder": "Zvolte vydavatele, kterým chcete důvěřovat.",
"updateAll": "Aktualizovat všechna rozšíření",
"workbench.extensions.action.addExtensionToWorkspaceRecommendations": "Přidat do doporučení pracovního prostoru",
"workbench.extensions.action.addToWorkspaceFolderIgnoredRecommendations": "Přidat rozšíření do ignorovaných doporučení složky pracovního prostoru",
"workbench.extensions.action.addToWorkspaceFolderRecommendations": "Přidat rozšíření do doporučení složky pracovního prostoru",
"workbench.extensions.action.addToWorkspaceIgnoredRecommendations": "Přidat rozšíření do ignorovaných doporučení pracovního prostoru",
"workbench.extensions.action.addToWorkspaceRecommendations": "Přidat rozšíření do doporučení pracovního prostoru",
- "workbench.extensions.action.configure": "Nastavení rozšíření",
+ "workbench.extensions.action.changeAccountPreference": "Předvolby účtu",
+ "workbench.extensions.action.configure": "Nastavení",
+ "workbench.extensions.action.configureKeybindings": "Klávesové zkratky",
"workbench.extensions.action.copyExtension": "Kopírovat",
"workbench.extensions.action.copyExtensionId": "Kopírovat ID rozšíření",
+ "workbench.extensions.action.copyLink": "Kopírovat odkaz",
"workbench.extensions.action.ignoreRecommendation": "Ignorovat doporučení",
+ "workbench.extensions.action.manageTrustedPublishers": "Správa důvěryhodných vydavatelů rozšíření",
"workbench.extensions.action.removeExtensionFromWorkspaceRecommendations": "Odebrat z doporučení pracovního prostoru",
+ "workbench.extensions.action.toggleApplyToAllProfiles": "Použít rozšíření pro všechny profily",
"workbench.extensions.action.toggleIgnoreExtension": "Synchronizovat toto rozšíření",
"workbench.extensions.action.undoIgnoredRecommendation": "Zrušit ignorování doporučení",
"workbench.extensions.installExtension.arg.decription": "ID rozšíření nebo identifikátor URI prostředku VSIX",
"workbench.extensions.installExtension.description": "Nainstalovat dané rozšíření",
"workbench.extensions.installExtension.option.context": "Kontext instalace. Toto je objekt JSON, který se dá použít k předání jakýchkoli informací obslužných rutinám instalace. Tj. {skipThrough: true} přeskočí otevření názorného postupu při instalaci.",
"workbench.extensions.installExtension.option.donotSync": "Pokud je tato možnost povolená, VS Code nebude toto rozšíření synchronizovat, když je zapnutá Synchronizace nastavení.",
+ "workbench.extensions.installExtension.option.enable": "Pokud je tato možnost povolena, bude rozšíření povoleno, pokud je nainstalované, ale zakázané. Pokud už je rozšíření povolené, nemá tato možnost žádný vliv.",
"workbench.extensions.installExtension.option.installOnlyNewlyAddedFromExtensionPackVSIX": "Pokud je tato možnost povolena, VS Code nainstaluje pouze nově přidaná rozšíření z balíčku rozšíření VSIX. Tato možnost je posouzená pouze při instalaci VSIX.",
"workbench.extensions.installExtension.option.installPreReleaseVersion": "Pokud je tato možnost povolená, VS Code nainstaluje předběžnou verzi rozšíření, pokud je k dispozici.",
+ "workbench.extensions.installExtension.option.justification": "Odůvodnění instalace rozšíření. Jedná se o řetězec nebo objekt, který lze použít k předání jakýchkoli informací obslužných rutinám instalace. To znamená, že řetězec {reason: 'This extension wants to open a URI', action: 'Open URI'} ({důvod: 'Toto rozšíření chce otevřít identifikátor URI.', akce: 'Otevřít identifikátor URI'}) zobrazí při instalaci okno se zprávou s důvodem a akcí.",
"workbench.extensions.search.arg.name": "Dotaz, který se má použít ve vyhledávání",
"workbench.extensions.search.description": "Vyhledat konkrétní řešení",
"workbench.extensions.uninstallExtension.arg.name": "ID rozšíření, které má být odinstalováno",
"workbench.extensions.uninstallExtension.description": "Odinstalovat dané rozšíření",
"workspace unsupported filter": "Nepodporovaný pracovní prostor"
},
+ "vs/workbench/contrib/extensions/browser/extensions.web.contribution": {
+ "runtimeExtension": "Spuštěná rozšíření"
+ },
"vs/workbench/contrib/extensions/browser/extensionsActions": {
"Cannot be enabled": "Toto rozšíření je zakázané, protože se nepodporuje v {0} pro Web.",
"Defined to run in desktop": "Toto rozšíření je zakázáno, protože má nadefinované spouštění pouze v rámci {0} pro Desktop.",
@@ -5711,42 +9385,39 @@
"Install in remote server to enable": "Toto rozšíření je v tomto pracovním prostoru zakázané, protože je definované pro spuštění ve vzdáleném hostiteli rozšíření. Pokud chcete rozšíření povolit, nainstalujte prosím rozšíření na {0}.",
"Install language pack also in remote server": "Nainstalujte rozšíření jazykové sady na server {0} a tam ho také povolte.",
"Install language pack also locally": "Nainstalujte rozšíření jazykové sady místně a tam ho také povolte.",
- "InstallVSIXAction.reloadNow": "Znovu načíst",
- "ManageExtensionAction.uninstallingTooltip": "Probíhá odinstalace.",
"OpenExtensionsFile.failed": "Soubor extensions.json nelze vytvořit ve složce .vscode ({0}).",
- "ReinstallAction.success": "Přeinstalace rozšíření {0} byla dokončena.",
- "ReinstallAction.successReload": "Restartujte prosím Visual Studio Code, aby bylo možné dokončit instalaci rozšíření {0}.",
- "Show alternate extension": "Otevřít {0}",
+ "Show alternate extension": "&&Otevřít {0}",
"Uninstalling": "Probíhá odinstalace.",
"VS Code for Web": "{0} pro Web",
+ "auto update message": "[Zkontrolujte rozšíření]({0}) a aktualizujte ho ručně.",
"cancel": "Zrušit",
"cannot be installed": "Rozšíření {0} není v {1} k dispozici. Další informace získáte kliknutím na Další informace.",
"check logs": "Další podrobnosti najdete v [protokolu]({0}).",
"close": "Zavřít",
- "configure in settings": "Konfigurovat nastavení",
+ "configure in settings": "&&Konfigurovat nastavení",
"configureWorkspaceFolderRecommendedExtensions": "Konfigurovat doporučená rozšíření (složka pracovního prostoru)",
"configureWorkspaceRecommendedExtensions": "Konfigurovat doporučená rozšíření (pracovní prostor)",
"current": "aktuální",
+ "dependencies": "Zobrazit závislosti",
"deprecated message": "Toto rozšíření je zastaralé, protože se už neudržuje.",
"deprecated tooltip": "Toto rozšíření je zastaralé, protože se už neudržuje.",
"deprecated with alternate extension message": "Toto rozšíření je zastaralé. Použijte místo něj rozšíření {0}.",
"deprecated with alternate extension tooltip": "Toto rozšíření je zastaralé. Použijte místo něj rozšíření {0}.",
"deprecated with alternate settings message": "Toto rozšíření je zastaralé, protože tato funkce je teď integrovaná do VS Code.",
"deprecated with alternate settings tooltip": "Toto rozšíření je zastaralé, protože tato funkce je teď integrovaná do VS Code. Nakonfigurujte tyto {0} tak, aby používaly tuto funkci.",
- "disableAction": "Zakázat",
+ "disableAutoUpdate": "Zakázané automatické aktualizace pro",
"disableForWorkspaceAction": "Zakázat (pracovní prostor)",
"disableForWorkspaceActionToolTip": "Zakázat toto rozšíření jen v tomto pracovním prostoru",
"disableGloballyAction": "Zakázat",
"disableGloballyActionToolTip": "Zakázat toto rozšíření",
"disabled": "Zakázáno",
+ "disabled - not allowed": "Toto rozšíření je zakázáno, protože {0}",
"disabled because of virtual workspace": "Toto rozšíření je zakázané, protože nepodporuje virtuální pracovní prostory.",
"disabled by environment": "Toto rozšíření je zakázáno prostředím.",
- "do no sync": "Nesynchronizovat",
"do not sync": "Nesynchronizovat toto rozšíření",
"download": "Zkusit stáhnout ručně...",
- "enable locally": "Restartujte prosím Visual Studio Code, aby bylo toto rozšíření místně povoleno.",
- "enable remote": "Restartujte prosím Visual Studio Code, aby bylo toto rozšíření povoleno v {0}.",
- "enableAction": "Povolit",
+ "enableAutoUpdate": "Povolené automatické aktualizace pro",
+ "enableAutoUpdateLabel": "Automaticky aktualizovat",
"enableForWorkspaceAction": "Povolit (pracovní prostor)",
"enableForWorkspaceActionToolTip": "Povolit toto rozšíření jen v tomto pracovním prostoru",
"enableGloballyAction": "Povolit",
@@ -5756,44 +9427,43 @@
"enabled in web worker": "Toto rozšíření je povolené v hostiteli rozšíření webového pracovního procesu, protože upřednostňuje spuštění v tom prostředí.",
"enabled locally": "Toto rozšíření je povolené v místním hostiteli rozšíření, protože ho upřednostňuje pro spuštění.",
"enabled remotely": "Toto rozšíření je povolené ve vzdáleném hostiteli rozšíření, protože ho upřednostňuje pro spuštění.",
- "extension disabled because of dependency": "Toto rozšíření se zakázalo, protože závisí na zakázaném rozšíření.",
+ "extension disabled because of dependency": "Toto rozšíření závisí na zakázaném rozšíření.",
"extension disabled because of trust requirement": "Toto rozšíření se zakázalo, protože se nedůvěřuje aktuálnímu pracovnímu prostoru.",
+ "extension disabled because of unification": "Všechny funkce GitHub Copilotu jsou nyní poskytovány prostřednictvím rozšíření GitHub Copilot Chat. Pokud chcete vyjádřit dočasný výslovný nesouhlas se sjednocením tohoto rozšíření, přepněte nastavení {0}.",
"extension enabled on remote": "Rozšíření je povolené na serveru {0}.",
"extension limited because of trust requirement": "Toto rozšíření má omezené funkce, protože se nedůvěřuje aktuálnímu pracovnímu prostoru.",
"extension limited because of virtual workspace": "Toto rozšíření má omezené funkce, protože aktuální pracovní prostor je virtuální.",
- "extensionButtonProminentBackground": "Barva pozadí tlačítka pro výrazné rozšíření akcí (např. tlačítko Nainstalovat)",
- "extensionButtonProminentForeground": "Barva popředí tlačítka pro výrazné rozšíření akcí (např. tlačítko Nainstalovat)",
- "extensionButtonProminentHoverBackground": "Barva pozadí tlačítka po umístění ukazatele myši pro výrazné rozšíření akcí (např. tlačítko Nainstalovat)",
+ "extensionButtonBackground": "Barva pozadí tlačítka pro akce rozšíření",
+ "extensionButtonForeground": "Barva popředí tlačítka pro akce rozšíření",
+ "extensionButtonHoverBackground": "Barva pozadí tlačítka po umístění ukazatele myši pro akce rozšíření",
+ "extensionButtonProminentBackground": "Barva pozadí tlačítka pro výrazné akce rozšíření (např. tlačítko Nainstalovat)",
+ "extensionButtonProminentForeground": "Barva popředí tlačítka pro výrazné akce rozšíření (např. tlačítko Nainstalovat)",
+ "extensionButtonProminentHoverBackground": "Barva pozadí tlačítka po umístění ukazatele myši pro výrazné akce rozšíření (např. tlačítko Nainstalovat)",
+ "extensionButtonSeparator": "Barva oddělovače tlačítek pro akce rozšíření",
"finished installing": "Rozšíření se úspěšně nainstalovala.",
"globally disabled": "Toto rozšíření je uživatelem globálně zakázané.",
- "globally enabled": "Toto rozšíření je povolené globálně.",
"ignoreExtensionRecommendation": "Toto rozšíření už příště nedoporučovat",
+ "ignoreExtensionUpdatePublisher": "Ignorují se aktualizace publikované vydavatelem {0}.",
"ignored": "Toto rozšíření se během synchronizace ignoruje.",
- "incompatible": "Rozšíření {0} nelze nainstalovat, protože není kompatibilní.",
- "incompatible platform": "Rozšíření {0} není v {1} k dispozici pro {2}.",
"install": "Nainstalovat",
- "install another version": "Nainstalovat jinou verzi...",
+ "install another version": "Nainstalovat konkrétní verzi...",
"install anyway": "Přesto nainstalovat",
"install browser": "Nainstalovat do prohlížeče",
"install confirmation": "Opravdu chcete nainstalovat {0}?",
- "install everywhere tooltip": "Nainstalovat toto rozšíření do všech synchronizovaných instancí {0}",
- "install extension in remote": "{0} v {1}",
- "install extension in remote and do not sync": "{0} v {1} ({2})",
- "install extension locally": "{0} místně",
- "install extension locally and do not sync": "{0} místně ({1})",
+ "install donot verify": "Přesto nainstalovat (neověřovat podpis)",
"install in remote": "Nainstalovat na server {0}",
"install local extensions title": "Nainstalovat místní rozšíření do: {0}",
"install locally": "Nainstalovat místně",
"install operation": "Při instalaci rozšíření {0} došlo k chybě.",
"install pre-release": "Nainstalovat předběžnou verzi",
"install pre-release version": "Nainstalovat předběžnou verzi",
+ "install prerelease": "Nainstalovat předběžnou verzi",
"install previous version": "Nainstalovat konkrétní verzi rozšíření...",
"install release version": "Nainstalovat vydanou verzi",
- "install release version message": "Chcete nainstalovat vydanou verzi?",
"install remote extensions": "Nainstalovat vzdálená rozšíření místně",
"install vsix": "Po stažení prosím nainstalujte stažený soubor VSIX {0} ručně.",
+ "install workspace version": "Nainstalovat rozšíření pracovního prostoru",
"installExtensionComplete": "Instalace rozšíření {0} byla dokončena.",
- "installExtensionCompletedAndReloadRequired": "Instalace rozšíření {0} byla dokončena. Pokud ho chcete povolit, restartujte prosím Visual Studio Code.",
"installExtensionStart": "Byla zahájena instalace rozšíření {0}. Nyní se otevře editor s dalšími informacemi o tomto rozšíření.",
"installRecommendedExtension": "Nainstalovat doporučené rozšíření",
"installVSIX": "Nainstalovat z VSIX...",
@@ -5801,25 +9471,27 @@
"installing": "Probíhá instalace.",
"installing extensions": "Instalují se rozšíření...",
"learn more": "Další informace",
- "learn why": "Zjistěte proč",
"malicious tooltip": "Toto rozšíření je nahlášeno jako problematické.",
"manage": "Spravovat",
+ "manage access": "Správa přístupu",
"migrate": "Migrovat",
"migrate to": "Migrovat do {0}",
"migrateExtension": "Migrovat",
- "more information": "Další informace",
+ "missing from gallery tooltip": "Toto rozšíření už není dostupné na Extension Marketplace.",
+ "more information": "&&Další informace",
"no local extensions": "Nejsou k dispozici žádná rozšíření, která by bylo možné nainstalovat.",
"no versions": "Toto rozšíření nemá žádné jiné verze.",
- "not web tooltip": "Rozšíření {0} není v {1} k dispozici.",
- "postDisableTooltip": "Pokud chcete zakázat toto rozšíření, restartujte prosím Visual Studio Code.",
- "postEnableTooltip": "Pokud chcete povolit toto rozšíření, restartujte prosím Visual Studio Code.",
- "postUninstallTooltip": "Restartujte prosím Visual Studio Code, aby bylo možné dokončit odinstalaci tohoto rozšíření.",
- "postUpdateTooltip": "Pokud chcete povolit aktualizované rozšíření, restartujte Visual Studio Code.",
+ "not signed": "{0} je rozšíření z neznámého zdroje. Opravdu ho chcete nainstalovat?",
+ "not signed detail": "Rozšíření není podepsané.",
+ "not signed tooltip": "Toto rozšíření není podepsané obchodem marketplace pro rozšíření.",
"pre-release": "předběžná verze",
- "reinstall": "Přeinstalovat rozšíření...",
- "reloadAction": "Znovu načíst",
- "reloadRequired": "Požadováno opětovné načtení",
- "search recommendations": "Hledat rozšíření",
+ "reload window": "Znovu načíst okno",
+ "report issue": "Nahlásit problém",
+ "report issue body": "Zahrňte prosím níže následující protokol: F1 > Otevřít zobrazení... > Sdílené.\r\n\r\n",
+ "report issue title": "Ověření podpisu rozšíření se nezdařilo: {0}",
+ "restart extensions": "Restartovat rozšíření",
+ "restart product": "Restartovat za účelem aktualizace",
+ "review": "Revize",
"select and install local extensions": "Nainstalovat místní rozšíření do: {0}...",
"select and install remote extensions": "Nainstalovat vzdálená rozšíření místně...",
"select color theme": "Vybrat barevný motiv",
@@ -5827,28 +9499,33 @@
"select file icon theme": "Vybrat motiv ikon souboru",
"select product icon theme": "Vybrat motiv ikon produktu",
"selectExtension": "Vybrat rozšíření",
- "selectExtensionToReinstall": "Vyberte rozšíření, které chcete přeinstalovat.",
"selectVersion": "Vyberte verzi, kterou chcete nainstalovat.",
"settings": "nastavení",
"showRecommendedExtension": "Zobrazit doporučené rozšíření",
- "switch to pre-release version": "Přepnout na předběžnou verzi",
- "switch to pre-release version tooltip": "Přepnout na předběžnou verzi tohoto rozšíření",
- "switch to release version": "Přepnout na vydanou verzi",
- "switch to release version tooltip": "Přepnout na vydanou verzi tohoto rozšíření",
+ "switchToPreReleaseLabel": "Přepnout na předběžnou verzi",
+ "switchToPreReleaseTooltip": "Tím přejdete na předběžnou verzi a vždy povolíte aktualizace na nejnovější verzi.",
"sync": "Synchronizovat toto rozšíření",
"synced": "Toto rozšíření se synchronizuje.",
+ "toggleAutoUpdatesForPublisherLabel": "Automaticky aktualizovat vše (od vydavatele)",
+ "togglePreRleaseDisableLabel": "Přepnout na vydanou verzi",
+ "togglePreRleaseDisableTooltip": "Tím přepnete a povolíte aktualizace na vydané verze.",
+ "togglePreRleaseLabel": "Předběžná verze",
"undo": "Zpět",
"uninstallAction": "Odinstalovat",
+ "uninstallAll": "Odinstalovat (všechny profily)",
"uninstallExtensionComplete": "Restartujte prosím Visual Studio Code, aby bylo možné dokončit odinstalaci rozšíření {0}.",
"uninstallExtensionStart": "Byla zahájena odinstalace rozšíření {0}.",
"uninstalled": "Odinstalováno",
+ "update": "Aktualizace",
"update operation": "Při aktualizaci rozšíření {0} došlo k chybě.",
- "updateAction": "Aktualizace",
+ "update product": "Aktualizovat {0}",
+ "update to": "Aktualizovat na verzi {0}",
"updateExtensionComplete": "Aktualizace rozšíření {0} na verzi {1} byla dokončena.",
+ "updateExtensionConsent": "{0}\r\n\r\nChcete aktualizovat rozšíření?",
+ "updateExtensionConsentTitle": "Aktualizovat rozšíření {0}",
"updateExtensionStart": "Byla zahájena aktualizace rozšíření {0} na verzi {1}.",
- "updateToLatestVersion": "Aktualizovat na {0}",
- "updateToTargetPlatformVersion": "Aktualizovat na verzi {0}",
"updated": "Aktualizováno",
+ "verification failed": "Rozšíření {0} nejde nainstalovat, protože {1} nemůže ověřit podpis rozšíření.",
"workbench.extensions.action.clearLanguage": "Vymazat jazyk zobrazení",
"workbench.extensions.action.setColorTheme": "Nastavit barevný motiv",
"workbench.extensions.action.setDisplayLanguage": "Nastavit jazyk zobrazení",
@@ -5881,6 +9558,7 @@
"installCountIcon": "Ikona zobrazovaná spolu s počtem instalací v zobrazení a editoru rozšíření",
"installLocalInRemoteIcon": "Ikona pro akci „Nainstalovat místní rozšíření do“ v zobrazení rozšíření",
"installWorkspaceRecommendedIcon": "Ikona pro akci Nainstalovat rozšíření doporučená pro pracovní prostor v zobrazení rozšíření",
+ "lockIcon": "Ikona zobrazená pro privátní rozšíření v zobrazení a editoru rozšíření.",
"manageExtensionIcon": "Ikona pro akci Spravovat v zobrazení rozšíření",
"preReleaseIcon": "Ikona zobrazená pro rozšíření s předběžnými verzemi rozšíření zobrazení a editoru.",
"ratingIcon": "Ikona zobrazovaná spolu s hodnocením v zobrazení a editoru rozšíření",
@@ -5893,7 +9571,6 @@
"syncEnabledIcon": "Ikona označující, že rozšíření je synchronizované",
"syncIgnoredIcon": "Ikona označující, že rozšíření se při synchronizaci ignoruje",
"trustIcon": "Ikona zobrazovaná se zprávou o vztahu důvěryhodnosti pracovního prostoru v editoru rozšíření",
- "verifiedPublisher": "Ikona používaná pro ověřeného vydavatele rozšíření v zobrazení a editoru rozšíření",
"warningIcon": "Ikona zobrazovaná s upozorňující zprávou v editoru rozšíření"
},
"vs/workbench/contrib/extensions/browser/extensionsQuickAccess": {
@@ -5905,37 +9582,54 @@
"vs/workbench/contrib/extensions/browser/extensionsViewer": {
"Unknown Extension": "Neznámé rozšíření:",
"error": "Chyba",
- "extension.arialabel": "{0}, {1}, {2}, {3}",
+ "extension.arialabel.deprecated": "Zastaralé",
+ "extension.arialabel.publisher": "Vydavatel: {0}",
+ "extension.arialabel.rating": "Hodnocení {0} z 5 hvězdiček podle {1} uživatelů",
+ "extension.arialabel.verifiedPublisher": "Ověřený vydavatel: {0}",
"extensions": "Rozšíření"
},
"vs/workbench/contrib/extensions/browser/extensionsViewlet": {
+ "access denied": "Váš účet nemá přístup k rozšířením na Marketplace. Obraťte se prosím na správce.",
+ "accessDenied": "Přístup na Marketplace byl odepřen",
+ "availableUpdates": "Dostupné aktualizace",
"builtInThemesExtensions": "Motivy",
"builtin": "Integrované",
"builtinFeatureExtensions": "Funkce",
"builtinProgrammingLanguageExtensions": "Programovací jazyky",
+ "click show": "Kliknutím zobrazíte",
"deprecated": "Zastaralý",
"disabled": "Zakázáno",
"disabledExtensions": "Zakázáno",
+ "dismiss": "Zavřít",
"enabled": "Povoleno",
"enabledExtensions": "Povoleno",
"extensionFound": "Bylo nalezeno 1 rozšíření.",
"extensionFoundInSection": "V oddílu {0} bylo nalezeno 1 rozšíření.",
+ "extensionToReload": "{0} vyžaduje restartování",
+ "extensionToUpdate": "{0} vyžaduje aktualizaci.",
"extensionsFound": "Byl nalezen tento počet rozšíření: {0}.",
"extensionsFoundInSection": "V oddílu {1} byl nalezen tento počet rozšíření: {0}.",
+ "extensionsToReload": "{0} vyžadují restartování",
+ "extensionsToUpdate": "{0} vyžadují aktualizaci.",
"install remote in local": "Nainstalovat vzdálená rozšíření místně...",
"installed": "Nainstalováno",
- "malicious warning": "Odinstalovali jsme rozšíření {0}, které bylo hlášeno jako problematické.",
+ "learnMore": "Další informace",
+ "malicious warning": "Zjistilo se, že rozšíření {0} je problematické, takže se odinstalovalo.",
"marketPlace": "Marketplace",
"open user settings": "Otevřít uživatelská nastavení",
"otherRecommendedExtensions": "Další doporučení",
- "outdated": "Zastaralé",
- "outdatedExtensions": "Zastaralá rozšíření: {0}",
"popularExtensions": "Oblíbené",
+ "recently updated": "Naposledy aktualizované",
"recommendedExtensions": "Doporučené",
"reloadNow": "Znovu načíst",
"remote": "Vzdálené",
+ "restartNow": "Restartovat rozšíření",
"searchExtensions": "Hledat rozšíření na Marketplace",
"select and install local extensions": "Nainstalovat místní rozšíření do: {0}...",
+ "show": "Zobrazit",
+ "sign in": "[Přihlaste se pro přístup k rozšířením na Marketplace]({0} )",
+ "sign in enterprise marketplace": "Přihlaste se pro přístup k Marketplace",
+ "signInRequired": "Pro přístup na Marketplace se vyžaduje přihlášení",
"suggestProxyError": "Marketplace vrátil chybu ECONNREFUSED. Zkontrolujte prosím nastavení http.proxy.",
"untrustedPartiallySupportedExtensions": "Omezené v Omezeném režimu",
"untrustedUnsupportedExtensions": "Zakázané v Omezeném režimu",
@@ -5946,27 +9640,28 @@
},
"vs/workbench/contrib/extensions/browser/extensionsViews": {
"error": "Při načítání rozšíření došlo k chybě. {0}",
- "extension.arialabel.deprecated": "Zastaralý",
- "extension.arialabel.publihser": "Vydavatel {0}",
- "extensions": "Rozšíření",
"no extensions found": "Nebyla nalezena žádná rozšíření.",
"no local extensions": "Nejsou k dispozici žádná rozšíření, která by bylo možné nainstalovat.",
"offline error": "Marketplace se nedá prohledávat v režimu offline. Zkontrolujte prosím vaše síťové připojení.",
- "open user settings": "Otevřít uživatelská nastavení",
- "suggestProxyError": "Marketplace vrátil chybu ECONNREFUSED. Zkontrolujte prosím nastavení http.proxy."
+ "showing local extensions only": "{0} Zobrazují se místní rozšíření.",
+ "showingExtensionsForFeature": "Rozšíření využívající {0} za posledních 30 dní"
},
"vs/workbench/contrib/extensions/browser/extensionsWidgets": {
"Show prerelease version": "Předběžná verze",
"activation": "Čas aktivace",
- "dependencies": "Zobrazit závislosti",
+ "extensionIcon.private": "Barva ikony pro privátní rozšíření.",
"extensionIcon.sponsorForeground": "Barva ikony sponzora rozšíření.",
"extensionIconStarForeground": "Barva ikony pro hodnocení rozšíření",
- "extensionIconVerifiedForeground": "Barva ikony pro ověřeného vydavatele rozšíření",
"extensionPreReleaseForeground": "Barva ikony pro rozšíření předběžné verze.",
+ "feature access label": "Počet žádostí: {0}",
+ "feature usage label": "Využití {0}",
"has prerelease": "U tohoto rozšíření je k dispozici {0}.",
+ "install count": "Počet instalací",
+ "local extension": "Místní rozšíření",
"message": "Počet zpráv: 1",
"messages": "Počet zpráv: {0}",
- "pre-release-label": "Předběžná verze",
+ "privateExtension": "Privátní rozšíření",
+ "publisher": "Vydavatel ({0})",
"publisher verified tooltip": "Tento vydavatel ověřil vlastnictví u: {0}",
"ratedLabel": "Průměrné hodnocení: {0} z 5",
"recommendationHasBeenIgnored": "Rozhodli jste, že nechcete dostávat doporučení pro toto rozšíření.",
@@ -5974,27 +9669,92 @@
"sponsor": "Sponzor",
"startup": "Spuštění",
"syncingore.label": "Toto rozšíření se během synchronizace ignoruje.",
+ "total": "Počet žádostí za posledních 30 dní: {0} {1}",
"uncaught error": "Nezachycené chyby: 1",
- "uncaught errors": "Nezachycené chyby: {0}"
+ "uncaught errors": "Nezachycené chyby: {0}",
+ "updateRequired": "Nejnovější verze:",
+ "verified publisher": "Tento vydavatel ověřil vlastnictví u: {0}",
+ "workspace extension": "Rozšíření pracovního prostoru"
},
"vs/workbench/contrib/extensions/browser/extensionsWorkbenchService": {
"Manifest is not found": "Manifest nebyl nalezen.",
+ "allplatforms": "Všechny platformy",
+ "cannot be installed": "Rozšíření {0} se nedá nainstalovat, protože není v tomto nastavení k dispozici.",
+ "confirmDisableAutoUpdate": "Chcete zakázat automatickou aktualizaci pro všechna rozšíření?",
+ "confirmEnableAutoUpdate": "Chcete povolit automatickou aktualizaci pro všechna rozšíření?",
+ "confirmEnableDisableAutoUpdate": "Automaticky aktualizovat rozšíření",
+ "confirmEnableDisableAutoUpdateDetail": "Obnoví se tím všechna nastavení automatických aktualizací, která jste pro jednotlivá rozšíření nastavili.",
+ "consentRequiredToUpdate": "Aktualizace rozšíření {0} přináší spustitelný kód, který není v aktuální nainstalované verzi.",
+ "consentRequiredToUpdateRepublishedExtension": "Metadata marketplace tohoto rozšíření se změnila, pravděpodobně kvůli opětovnému publikování.",
+ "deprecated extensions": "Zjistila se zastaralá rozšíření. Zkontrolujte je a migrujte na alternativy.",
"disable all": "Zakázat vše",
- "installing extension": "Instaluje se rozšíření....",
- "installing named extension": "Instaluje se rozšíření {0}....",
+ "disableDependents": "Zakázat rozšíření se závislými rozšířeními",
+ "disallowed": "Toto rozšíření není povoleno instalovat.",
+ "disallowed extensions": "Some extensions are disabled because they are configured not to be allowed.",
+ "disallowed extensions by policy": "Some extensions are disabled because they are not allowed by your system administrator.",
+ "download": "Stáhnout",
+ "download title": "Vyberte složku, do které se má stáhnout VSIX",
+ "download.completed": "Stažení VSIX bylo úspěšně dokončeno.",
+ "download.failed": "Chyba při stahování souboru VSIX: {0}",
+ "downloading...": "Stahuje se soubor VSIX...",
+ "enable locally": "Pokud chcete toto rozšíření povolit místně, proveďte prosím toto: {0}.",
+ "enable remote": "Pokud chcete toto rozšíření povolit v {1}, proveďte prosím toto: {0}.",
+ "enableButtonLabel": "&&Povolit rozšíření",
+ "enableButtonLabelWithAction": "&&Povolit rozšíření a {0}",
+ "enableExtensionMessage": "Chcete povolit rozšíření {0}?",
+ "enableExtensionTitle": "Povolit rozšíření",
+ "extension not found": "Rozšíření {0} nebylo nalezeno.",
+ "extensionsAutoRestart": "Rozšíření se automaticky restartovala, aby se povolily aktualizace.",
+ "incompatible": "Rozšíření {0} nelze nainstalovat, protože není kompatibilní.",
+ "incompatibleExtensions": "Některá rozšíření jsou zakázána z důvodu nekompatibilní verze. Zkontrolujte je a aktualizujte.",
+ "installButtonLabel": "&&Nainstalovat rozšíření",
+ "installButtonLabelWithAction": "&&Nainstalovat rozšíření a {0}",
+ "installExtensionMessage": "Chcete nainstalovat rozšíření {0} z {1}?",
+ "installExtensionTitle": "Nainstalovat rozšíření",
+ "installVSIXMessage": "Chcete nainstalovat rozšíření?",
+ "installing extension": "Probíhá instalace rozšíření…",
+ "installing named extension": "Instaluje se rozšíření {0}...",
+ "invalidExtensions": "Zjistila se neplatná rozšíření. Zkontrolujte je.",
"malicious": "Toto rozšíření je hlášeno jako problematické.",
"multipleDependentsError": "Nejde zakázat samotné rozšíření {0}. Na tomto rozšíření závisí {1}, {2} a další rozšíření. Chcete zakázat všechna tato rozšíření?",
- "not found": "Rozšíření {0} se nepovedlo nainstalovat, protože požadovaná verze {1} se nenašla.",
+ "multipleDependentsUninstallError": "Rozšíření {0} nelze odinstalovat samostatně. Závisí na něm rozšíření {1}, {2} a některá další. Chcete odinstalovat všechna tato rozšíření?",
+ "no versions": "Toto rozšíření nemá žádné jiné verze.",
+ "not an extension": "Zadaný objekt není rozšířením.",
+ "not found": "Rozšíření {0} nelze nainstalovat, protože nebylo nalezeno.",
+ "not found version": "Rozšíření {0} nelze nainstalovat, protože nebyla nalezena požadovaná verze {1}.",
+ "not signed": "Toto rozšíření není podepsané.",
+ "open": "Otevřít rozšíření",
+ "platform placeholder": "Vyberte prosím platformu, pro kterou chcete stáhnout VSIX.",
+ "postDisableTooltip": "Pokud chcete toto rozšíření zakázat, proveďte prosím toto: {0}.",
+ "postEnableTooltip": "Pokud chcete toto rozšíření povolit, proveďte prosím toto: {0}.",
+ "postUninstallTooltip": "Pokud chcete dokončit odinstalaci tohoto rozšíření, proveďte prosím toto: {0}.",
+ "postUpdateDownloadTooltip": "Pokud chcete povolit aktualizované rozšíření, aktualizujte prosím {0}.",
+ "postUpdateRestartTooltip": "Pokud chcete povolit aktualizované rozšíření, restartujte prosím rozšíření {0}.",
+ "postUpdateTooltip": "Pokud chcete povolit aktualizované rozšíření, proveďte prosím toto: {0}.",
+ "postUpdateUpdateTooltip": "Pokud chcete povolit aktualizované rozšíření, aktualizujte prosím {0}.",
+ "pre-release": "předběžná verze",
+ "reload": "znovu načíst okno",
+ "report issue": "Pokud bude tento problém přetrvávat, nahlaste ho prosím na {0}",
+ "restart": "Probíhá změna povolení rozšíření",
+ "restart extensions": "restartovat rozšíření",
+ "selectVersion": "Vybrat verzi ke stažení",
"singleDependentError": "Nejde zakázat samotné rozšíření {0}. Na tomto rozšíření je závislé rozšíření {1}. Chcete zakázat všechna tato rozšíření?",
+ "singleDependentUninstallError": "Rozšíření {0} nelze odinstalovat samostatně. Je na něm závislé rozšíření {1}. Chcete odinstalovat všechna tato rozšíření?",
+ "sync extension": "Synchronizovat toto rozšíření",
"twoDependentsError": "Nejde zakázat samotné rozšíření {0}. Na tomto rozšíření jsou závislá rozšíření {1} a {2}. Chcete zakázat všechna tato rozšíření?",
- "uninstallingExtension": "Odinstalovává se rozšíření...."
+ "twoDependentsUninstallError": "Rozšíření {0} nelze odinstalovat samostatně. Závisí na něm rozšíření {1} a {2}. Chcete odinstalovat všechna tato rozšíření?",
+ "uninstallAll": "Odinstalovat vše",
+ "uninstallAllProfiles": "Odinstalovat (všechny profily)",
+ "uninstallApplicationScoped": "Odinstalovat rozšíření",
+ "uninstallApplicationScopedMessage": "Chcete odinstalovat {0} ze všech profilů?",
+ "uninstallDependents": "Odinstalovat rozšíření se závislými rozšířeními",
+ "uninstallingExtension": "Odinstalovává se rozšíření...",
+ "unknown": "Rozšíření nejde nainstalovat.",
+ "updatingExtensions": "Aktualizace stavu automatické aktualizace rozšíření"
},
"vs/workbench/contrib/extensions/browser/fileBasedRecommendations": {
- "dontShowAgainExtension": "Pro soubory .{0} už příště dotaz nezobrazovat",
"fileBasedRecommendation": "Toto rozšíření je doporučeno na základě souborů, které jste nedávno otevřeli.",
- "reallyRecommended": "Chcete nainstalovat doporučená rozšíření pro {0}?",
- "searchMarketplace": "Hledat na Marketplace",
- "showLanguageExtensions": "Na Marketplace najdete rozšíření, která vám můžou pomoct se soubory .{0}."
+ "languageName": "jazyk {0}"
},
"vs/workbench/contrib/extensions/browser/webRecommendations": {
"reason": "Toto rozšíření se doporučuje pro {0} pro web."
@@ -6002,6 +9762,9 @@
"vs/workbench/contrib/extensions/browser/workspaceRecommendations": {
"workspaceRecommendation": "Toto rozšíření doporučují uživatelé aktuálního pracovního prostoru."
},
+ "vs/workbench/contrib/extensions/common/extensions": {
+ "extensions": "Rozšíření"
+ },
"vs/workbench/contrib/extensions/common/extensionsFileTemplate": {
"app.extension.identifier.errorMessage": "Očekával se formát ${publisher}.${name}. Příklad: vscode.csharp",
"app.extensions.json.recommendations": "Seznam rozšíření, která by se měla doporučovat uživatelům tohoto pracovního prostoru. Identifikátor rozšíření je vždy ${publisher}.${name}. Například: vscode.csharp",
@@ -6009,6 +9772,7 @@
"app.extensions.json.unwantedRecommendations": "Seznam rozšíření, která doporučuje VS Code a která by se neměla doporučovat uživatelům tohoto pracovního prostoru. Identifikátor rozšíření je vždy ${publisher}.${name}. Například: vscode.csharp"
},
"vs/workbench/contrib/extensions/common/extensionsInput": {
+ "extensionsEditorLabelIcon": "Ikona popisku editoru rozšíření.",
"extensionsInputName": "Rozšíření: {0}"
},
"vs/workbench/contrib/extensions/common/extensionsUtils": {
@@ -6016,19 +9780,37 @@
"no": "Ne",
"yes": "Ano"
},
+ "vs/workbench/contrib/extensions/common/installExtensionsTool": {
+ "installExtensionsTool.confirmationMessage": "Projděte si navrhovaná rozšíření a klikněte na tlačítko **Nainstalovat** u každého rozšíření, které chcete přidat. Po dokončení instalace vybraných rozšíření pokračujte kliknutím na **Pokračovat**.",
+ "installExtensionsTool.confirmationTitle": "Nainstalovat rozšíření",
+ "installExtensionsTool.displayName": "Nainstalovat rozšíření",
+ "installExtensionsTool.noResultMessage": "Nebyla nainstalována žádná rozšíření.",
+ "installExtensionsTool.resultMessage": "Jsou nainstalovaná následující rozšíření: {0}",
+ "installExtensionsTool.userDescription": "Nástroj pro instalaci rozšíření"
+ },
+ "vs/workbench/contrib/extensions/common/reportExtensionIssueAction": {
+ "reportExtensionIssue": "Nahlásit problém"
+ },
"vs/workbench/contrib/extensions/common/runtimeExtensionsInput": {
- "extensionsInputName": "Spuštěná rozšíření"
+ "extensionsInputName": "Spuštěná rozšíření",
+ "runtimeExtensionEditorLabelIcon": "Ikona popisku editoru rozšíření modulu runtime."
},
- "vs/workbench/contrib/extensions/electron-sandbox/debugExtensionHostAction": {
- "cancel": "&&Zrušit",
- "debugExtensionHost": "Spustit hostitele rozšíření ladění",
+ "vs/workbench/contrib/extensions/common/searchExtensionsTool": {
+ "searchExtensionsTool.displayName": "Hledat rozšíření",
+ "searchExtensionsTool.noInput": "Zadejte kategorii, klíčová slova nebo ID, která chcete vyhledat.",
+ "searchExtensionsTool.userDescription": "Hledat rozšíření pro VS Code"
+ },
+ "vs/workbench/contrib/extensions/electron-browser/debugExtensionHostAction": {
+ "debugExtensionHost": "Hostitel rozšíření ladění v novém okně",
"debugExtensionHost.launch.name": "Připojit hostitele rozšíření",
- "restart1": "Profilovat rozšíření",
- "restart2": "Aby bylo možné profilovat rozšíření, je nutný restart. Chcete teď {0} restartovat?",
- "restart3": "&&Restartovat"
+ "debugExtensionHost.progress": "Připojení ladicího programu k hostiteli rozšíření",
+ "openDevToolsForExtensionHost": "Hostitel rozšíření ladění ve vývojářských nástrojích",
+ "restart1": "Rozšíření pro ladění",
+ "restart2": "Aby bylo možné ladit rozšíření, je nutný restart. Chcete teď{0} restartovat?",
+ "restart3": "&&Restartovat",
+ "selectExtensionHost": "Vybrat hostitele rozšíření"
},
- "vs/workbench/contrib/extensions/electron-sandbox/extensionProfileService": {
- "cancel": "&&Zrušit",
+ "vs/workbench/contrib/extensions/electron-browser/extensionProfileService": {
"profilingExtensionHost": "Profilování hostitele rozšíření",
"profilingExtensionHostTime": "Profilování hostitele rozšíření ({0} s)",
"restart1": "Profilovat rozšíření",
@@ -6037,48 +9819,47 @@
"selectAndStartDebug": "Kliknutím zastavíte profilování.",
"status.profiler": "Profiler rozšíření"
},
- "vs/workbench/contrib/extensions/electron-sandbox/extensions.contribution": {
+ "vs/workbench/contrib/extensions/electron-browser/extensions.contribution": {
"runtimeExtension": "Spuštěná rozšíření"
},
- "vs/workbench/contrib/extensions/electron-sandbox/extensionsActions": {
+ "vs/workbench/contrib/extensions/electron-browser/extensionsActions": {
+ "cleanUpExtensionsFolder": "Cleanup Extensions Folder (Vyčistit složku rozšíření)",
"openExtensionsFolder": "Otevřít složku s rozšířeními"
},
- "vs/workbench/contrib/extensions/electron-sandbox/extensionsAutoProfiler": {
+ "vs/workbench/contrib/extensions/electron-browser/extensionsAutoProfiler": {
"show": "Zobrazit rozšíření",
"unresponsive-exthost": "Rozšíření {0} trvalo dokončení jeho poslední operace příliš dlouho a zabránilo spuštění jiných rozšíření."
},
- "vs/workbench/contrib/extensions/electron-sandbox/extensionsSlowActions": {
+ "vs/workbench/contrib/extensions/electron-browser/extensionsSlowActions": {
"attach.msg": "Toto je připomenutí, abyste k problému, který jste právě vytvořili, nezapomněli připojit {0}.",
"attach.msg2": "Toto je připomenutí, abyste k existujícímu problému s výkonem nezapomněli připojit {0}.",
- "attach.title": "Připojili jste profil procesoru?",
+ "attach.title": "Připojili jste profil CPU?",
"cmd.report": "Nahlásit problém",
- "cmd.reportOrShow": "Performance Issue",
+ "cmd.reportOrShow": "Problém s výkonem",
"cmd.show": "Zobrazit problémy"
},
- "vs/workbench/contrib/extensions/electron-sandbox/reportExtensionIssueAction": {
- "reportExtensionIssue": "Nahlásit problém"
- },
- "vs/workbench/contrib/extensions/electron-sandbox/runtimeExtensionsEditor": {
+ "vs/workbench/contrib/extensions/electron-browser/runtimeExtensionsEditor": {
"extensionHostProfileStart": "Spustit profil hostitele rozšíření",
+ "openExtensionHostProfile": "Otevřít profil hostitele rozšíření",
"saveExtensionHostProfile": "Uložit profil hostitele rozšíření",
"saveprofile.dialogTitle": "Uložit profil hostitele rozšíření",
- "saveprofile.saveButton": "Uložit",
"stopExtensionHostProfileStart": "Zastavit profil hostitele rozšíření"
},
"vs/workbench/contrib/externalTerminal/browser/externalTerminal.contribution": {
- "scopedConsoleAction": "Otevřít v terminálu",
+ "scopedConsoleAction.Integrated": "Otevřít v integrovaném terminálu",
"scopedConsoleAction.external": "Otevřít v externím terminálu",
- "scopedConsoleAction.integrated": "Otevřít v integrovaném terminálu",
"scopedConsoleAction.wt": "Otevřít v terminálu Windows"
},
- "vs/workbench/contrib/externalTerminal/electron-sandbox/externalTerminal.contribution": {
+ "vs/workbench/contrib/externalTerminal/electron-browser/externalTerminal.contribution": {
"explorer.openInTerminalKind": "Při otevírání souboru z průzkumníka v terminálu určuje, který druh terminálu se spustí.",
"globalConsoleAction": "Otevřít v novém externím terminálu",
- "terminal.explorerKind.external": "Použít nakonfigurovaný externí terminál",
- "terminal.explorerKind.integrated": "Použít integrovaný terminál VS Code",
+ "sourceControlRepositories.openInTerminalKind": "Při otevírání úložiště ze zobrazení úložišť správy zdrojového kódu v terminálu určuje, který druh terminálu se spustí.",
"terminal.external.linuxExec": "Umožňuje nastavit, který terminál se má spustit v systému Linux.",
"terminal.external.osxExec": "Umožňuje nastavit, která aplikace terminálu se má spustit v systému macOS.",
"terminal.external.windowsExec": "Umožňuje nastavit, který terminál se má spustit v systému Windows.",
+ "terminal.kind.both": "Zobrazte akce integrovaného i externího terminálu.",
+ "terminal.kind.external": "Zobrazte akci externího terminálu.",
+ "terminal.kind.integrated": "Zobrazte akci integrovaného terminálu.",
"terminalConfigurationTitle": "Externí terminál"
},
"vs/workbench/contrib/externalUriOpener/common/configuration": {
@@ -6120,16 +9901,17 @@
},
"vs/workbench/contrib/files/browser/editors/textFileEditor": {
"createFile": "Vytvořit soubor",
- "fileIsDirectoryError": "Soubor je adresář",
- "fileNotFoundError": "Soubor nenalezen",
- "ok": "OK",
- "reveal": "Zobrazit v zobrazení Průzkumníka",
- "textFileEditor": "Editor textových souborů"
+ "fileIsDirectory": "Soubor se v textovém editoru nezobrazuje, protože se jedná o adresář.",
+ "fileTooLargeForHeapErrorWithSize": "Soubor se v textovém editoru nezobrazuje, protože je velmi velký ({0}).",
+ "fileTooLargeForHeapErrorWithoutSize": "Soubor se v textovém editoru nezobrazuje, protože je velmi velký.",
+ "openFolder": "Otevřít složku",
+ "reveal": "Zobrazit složku",
+ "textFileEditor": "Editor textových souborů",
+ "unavailableResourceErrorEditorText": "Editor nelze otevřít, protože soubor nebyl nalezen."
},
"vs/workbench/contrib/files/browser/editors/textFileSaveErrorHandler": {
"compareChanges": "Porovnat",
"configure": "Konfigurovat",
- "discard": "Zahodit",
"dontShowAgain": "Znovu nezobrazovat",
"genericSaveError": "{0} se nepodařilo uložit: {1}",
"learnMore": "Další informace",
@@ -6142,6 +9924,7 @@
"readonlySaveErrorAdmin": "Soubor {0} se nepovedlo uložit: Soubor je jen pro čtení. Pokud to chcete zkusit znovu s oprávněními správce, vyberte Přepsat jako správce.",
"readonlySaveErrorSudo": "Soubor {0} se nepovedlo uložit: Soubor je jen pro čtení. Pokud to chcete zkusit znovu s oprávněními superuživatele, vyberte Přepsat jako Sudo.",
"retry": "Zkusit znovu",
+ "revert": "Obnovit",
"saveConflictDiffLabel": "{0} (v souboru) ↔ {1} (v {2}) – vyřešit konflikt uložení",
"saveElevated": "Zkusit znovu jako správce...",
"saveElevatedSudo": "Zkusit znovu jako Sudo...",
@@ -6167,7 +9950,11 @@
"binFailed": "Odstranění pomocí koše selhalo. Chcete místo toho provést trvalé odstranění?",
"clipboardComparisonLabel": "Schránka ↔ {0}",
"closeGroup": "Zavřít skupinu",
+ "compareFileWithMeta": "Otevře nabídku pro výběr souboru, který se má porovnat s aktivním editorem.",
+ "compareNewUntitledTextFiles": "Porovnat nové textové soubory bez názvu",
+ "compareNewUntitledTextFilesMeta": "Otevře nový editor rozdílů se dvěma soubory bez názvu.",
"compareWithClipboard": "Porovnat aktivní soubor se schránkou",
+ "compareWithClipboardMeta": "Otevře nový editor rozdílů pro porovnání aktivního souboru s obsahem schránky.",
"confirmDeleteMessageFile": "Opravdu chcete trvale odstranit soubor {0}?",
"confirmDeleteMessageFilesAndDirectories": "Opravdu chcete trvale odstranit následující soubory/adresáře (celkem {0}) a jejich obsah?",
"confirmDeleteMessageFolder": "Opravdu chcete trvale odstranit složku {0} včetně jejího obsahu?",
@@ -6178,6 +9965,11 @@
"confirmMoveTrashMessageFolder": "Opravdu chcete odstranit složku {0} včetně jejího obsahu?",
"confirmMoveTrashMessageMultiple": "Opravdu chcete odstranit následující soubory (celkem {0})?",
"confirmMoveTrashMessageMultipleDirectories": "Opravdu chcete odstranit následující adresáře (celkem {0}) a jejich obsah?",
+ "confirmMultiPasteNative": "Opravdu chcete vložit následující položky ({0})?",
+ "confirmOverwrite": "Soubor nebo složka s názvem {0} už v cílové složce existují. Chcete existující soubor nebo složku nahradit?",
+ "confirmPasteNative": "Opravdu chcete vložit {0}?",
+ "continueButtonLabel": "Pokračovat",
+ "continueDetail": "Pokud budete pokračovat, ochrana jen pro čtení se přepíše.",
"copyBulkEdit": "Vložit soubory ({0})",
"copyFile": "Kopírovat",
"copyFileBulkEdit": "Vložit {0}",
@@ -6208,6 +10000,7 @@
"fileNameStartsWithSlashError": "Název souboru nebo složky nemůže začínat lomítkem.",
"fileNameWhitespaceWarning": "V názvu souboru nebo složky byl zjištěn prázdný znak na začátku nebo na konci.",
"focusFilesExplorer": "Přepnout na Průzkumníka souborů",
+ "focusFilesExplorerMetadata": "Přesune fokus do kontejneru zobrazení Průzkumníka souborů.",
"globalCompareFile": "Porovnat aktivní soubor s...",
"invalidFileNameError": "Název **{0}** není platný jako název souboru nebo složky. Zvolte prosím jiný název.",
"irreversible": "Tato akce je nevratná!",
@@ -6215,21 +10008,33 @@
"moveFileBulkEdit": "Přesunout {0}",
"movingBulkEdit": "Přesouvá se tento počet souborů: {0}",
"movingFileBulkEdit": "Přesouvá se {0}.",
- "newFile": "Nový soubor",
- "newFolder": "Nová složka",
- "openFileInNewWindow": "Otevřít aktivní soubor v novém okně",
+ "newFile": "Nový soubor…",
+ "newFolder": "Nová složka…",
+ "openFileInEmptyWorkspace": "Otevřít aktivní editor v novém prázdném pracovním prostoru",
+ "openFileInEmptyWorkspaceMetadata": "Otevře aktivní editor v novém okně bez otevřených složek.",
"openFileToShowInNewWindow.unsupportedschema": "Aktivní editor musí obsahovat prostředek, který lze otevřít.",
+ "pasteButtonLabel": "&&Vložit",
"pasteFile": "Vložit",
- "rename": "Přejmenovat",
+ "readonlyMessageFilesDelete": "Odstraňujete soubory, které jsou nakonfigurovány tak, aby byly jen pro čtení. Chcete pokračovat?",
+ "readonlyMessageFolderDelete": "Odstraňujete soubor {0}, který je nakonfigurován jen pro čtení. Chcete pokračovat?",
+ "readonlyMessageFolderOneDelete": "Odstraňujete {0} složky, která je nakonfigurována jen pro čtení. Chcete pokračovat?",
+ "rename": "Přejmenovat...",
"renameBulkEdit": "Přejmenovat {0} na {1}",
"renamingBulkEdit": "{0} se přejmenovává na {1}.",
- "restore": "Pomocí příkazu Zpět můžete tento soubor obnovit.",
- "restorePlural": "Pomocí příkazu Zpět můžete tyto soubory obnovit.",
+ "replaceButtonLabel": "&&Nahradit",
+ "resetActiveEditorReadonlyInSession": "Obnovit aktivní editor jen pro čtení v relaci",
+ "restore": "Tento soubor můžete obnovit pomocí příkazu Zpět.",
+ "restorePlural": "Tyto soubory můžete obnovit pomocí příkazu Zpět.",
"retry": "Zkusit znovu",
"retryButtonLabel": "&&Zkusit znovu",
"saveAllInGroup": "Uložit vše ve skupině",
+ "setActiveEditorReadonlyInSession": "Nastavit aktivní editor jen pro čtení v relaci",
+ "setActiveEditorWriteableInSession": "Nastavit zápis do aktivního editoru v relaci",
"showInExplorer": "Zobrazit aktivní soubor v zobrazení Průzkumníka",
+ "showInExplorerMetadata": "Zobrazí a vybere aktivní soubor v zobrazení průzkumníka.",
+ "toggleActiveEditorReadonlyInSession": "Přepnout aktivní editor jen pro čtení v relaci",
"toggleAutoSave": "Přepnout automatické ukládání",
+ "toggleAutoSaveDescription": "Umožňuje přepnout možnost automatického ukládání souborů po zadání.",
"trashFailed": "Odstranění pomocí koše selhalo. Chcete místo toho provést trvalé odstranění?",
"undoBin": "Tento soubor můžete obnovit z koše.",
"undoBinFiles": "Tyto soubory můžete obnovit z koše.",
@@ -6244,6 +10049,7 @@
"closeOthers": "Zavřít ostatní",
"closeSaved": "Zavřít uložené",
"compareActiveWithSaved": "Porovnat aktivní soubor s uloženým",
+ "compareActiveWithSavedMeta": "Otevře nový editor rozdílů pro porovnání aktivního souboru s verzí na disku.",
"compareSelected": "Porovnat vybrané",
"compareSource": "Vybrat pro porovnání",
"compareWithSaved": "Porovnat s uloženým",
@@ -6255,7 +10061,6 @@
"cut": "Vyjmout",
"deleteFile": "Trvale odstranit",
"explorerOpenWith": "Otevřít pomocí...",
- "filesCategory": "Soubor",
"miAutoSave": "A&&utomatické ukládání",
"miCloseEditor": "&&Zavřít editor",
"miGotoFile": "Přejít na &&soubor...",
@@ -6265,8 +10070,10 @@
"miSaveAll": "Uložit &&vše",
"miSaveAs": "Uložit &&jako...",
"newFile": "Nový textový soubor",
+ "newFolderDescription": "Vytvoření nové složky nebo adresáře",
"openFile": "Otevřít soubor...",
"openToSide": "Otevřít na boku",
+ "reopenWith": "Znovu otevřít editor pomocí…",
"revealInSideBar": "Zobrazit v zobrazení Průzkumníka",
"revert": "Obnovit soubor",
"revertLocalChanges": "Zahodit provedené změny a obnovit obsah souboru",
@@ -6275,15 +10082,16 @@
"saveFiles": "Uložit všechny soubory"
},
"vs/workbench/contrib/files/browser/fileCommands": {
- "discard": "Zahodit",
"genericRevertError": "{0} se nepovedlo obnovit: {1}",
"genericSaveError": "{0} se nepodařilo uložit: {1}",
"modifiedLabel": "{0} (v souboru) ↔ {1}",
"newFileCommand.saveLabel": "Vytvořit soubor",
- "retry": "Zkusit znovu"
+ "retry": "Zkusit znovu",
+ "revert": "Obnovit",
+ "revertAll": "Vrátit vše"
},
"vs/workbench/contrib/files/browser/fileConstants": {
- "newUntitledFile": "Nový soubor bez názvu",
+ "newUntitledFile": "Nový textový soubor bez názvu",
"removeFolderFromWorkspace": "Odebrat složku z pracovního prostoru",
"save": "Uložit",
"saveAll": "Uložit vše",
@@ -6293,7 +10101,6 @@
"vs/workbench/contrib/files/browser/fileImportExport": {
"addFolder": "&&Přidat složku do pracovního prostoru",
"addFolders": "&&Přidat složky do pracovního prostoru",
- "cancel": "Zrušit",
"chooseWhereToDownload": "Zvolte, kam se má soubor stáhnout.",
"confirmManyOverwrites": "Následující soubory a složky (celkem {0}) už v cílové složce existují. Chcete je nahradit?",
"confirmOverwrite": "Soubor nebo složka s názvem {0} už v cílové složce existují. Chcete existující soubor nebo složku nahradit?",
@@ -6326,26 +10133,38 @@
},
"vs/workbench/contrib/files/browser/files.contribution": {
"askUser": "Zabrání uložení a vyzve vás k ručnímu vyřešení konfliktu uložení.",
- "associations": "Nakonfigurujte přidružení souborů pro jazyky (například \"*.extension\": \"html\"). Tato přidružení mají přednost před výchozími přidruženími pro nainstalované jazyky.",
+ "associations": "Nakonfigurujte [glob patterns](https://aka.ms/vscode-glob-patterns) přidružení souborů k jazykům (například *.extension: html). Vzory se budou shodovat s absolutní cestou k souboru, pokud obsahují oddělovač cesty a budou se jinak shodovat s názvem souboru. Mají přednost před výchozími přidruženími nainstalovaných jazyků.",
"autoGuessEncoding": "Pokud je tato možnost povolená, editor se při otevírání souborů pokusí určit kódování znakové sady. Toto nastavení je také možné nakonfigurovat pro každý jazyk zvlášť. Poznámka: Toto nastavení není respektováno vyhledáváním textu. Respektuje se jen {0}.",
+ "autoOpenDroppedFile": "Určuje, jestli má Průzkumník automaticky otevírat soubor, který je do něj přetažen",
"autoReveal": "Určuje, jestli má průzkumník automaticky zobrazovat a vybírat soubory při jejich otevírání.",
"autoReveal.focusNoScroll": "Soubory nebudou posunuty do zobrazení, ale zůstane na nich fokus.",
"autoReveal.off": "Soubory nebudou zobrazeny a vybrány.",
"autoReveal.on": "Soubory budou zobrazeny a vybrány.",
+ "autoRevealExclude": "Nakonfigurujte cesty nebo [vzory glob](https://aka.ms/vscode-glob-patterns), aby se soubory a složky při jejich otevření neodhalily a vybraly v Průzkumníkovi. Vzory glob se vždy vyhodnocují relativně k cestě ke složce pracovního prostoru, pokud se nejedná o absolutní cesty.",
"autoSave": "Řídí [automatické ukládání](https://code.visualstudio.com/docs/editor/codebasics#_save-auto-save) editorů s neuloženými změnami.",
"autoSaveDelay": "Řídí dobu prodlevy (v milisekundách), po jejímž uplynutí se automaticky uloží editor obsahující neuložené změny. Platí pouze v případě, že má nastavení #files.autoSave# hodnotu {0}.",
+ "autoSaveWhenNoErrors": "Pokud je tato možnost povolená, omezí [automatické ukládání](https://code.visualstudio.com/docs/editor/codebasics#_save-auto-save) editorů na soubory, ve kterých nejsou v době aktivace automatického ukládání hlášené žádné chyby. Platí jenom v případě, že je povolená možnost {0}.",
+ "autoSaveWorkspaceFilesOnly": "Pokud je tato možnost povolená, omezí [automatické ukládání](https://code.visualstudio.com/docs/editor/codebasics#_save-auto-save) editorů na soubory, které jsou uvnitř otevřeného pracovního prostoru. Platí jenom v případě, že je povolená možnost {0}.",
"binaryFileEditor": "Editor binárních souborů",
+ "candidateGuessEncodings": "Seznam kódování znakových sad, které by se editor měl pokusit odhadnout v pořadí, v jakém jsou uvedeny. Pokud se nedá určit, respektuje se {0}.",
"compressSingleChildFolders": "Určuje, jestli má průzkumník zobrazovat složky v kompaktní podobě. V takovémto kompaktním zobrazení pak budou jednotlivé podřízené složky sdruženy do jednoho kombinovaného prvku stromu. To je užitečné například u struktur balíčků Java.",
"confirmDelete": "Určuje, jestli se má v průzkumníkovi žádat o potvrzení při odstraňování souborů prostřednictvím koše.",
"confirmDragAndDrop": "Určuje, jestli se má v průzkumníkovi žádat o potvrzení při přesouvání souborů a složek přetahováním myší.",
- "confirmUndo": "Určuje, jestli má průzkumník při vracení změn požádat o potvrzení.",
+ "confirmPasteNative": "Určuje, jestli má Průzkumník při vkládání nativních souborů a složek požádat o potvrzení.",
+ "confirmUndo": "Určuje, jestli má Průzkumník při vrácení zpět požádat o potvrzení.",
+ "copyPathSeparator": "Znak oddělení cesty použitý při kopírování cest k souborům",
+ "copyPathSeparator.auto": "Používá znak pro separaci cesty specifický pro operační systém.",
+ "copyPathSeparator.backslash": "Použijte zpětné lomítko jako znak pro separaci cesty.",
+ "copyPathSeparator.slash": "Použijte lomítko jako znak pro separaci cesty.",
"copyRelativePathSeparator": "Znak pro separaci cesty, který se používá při kopírování relativních cest souborů.",
"copyRelativePathSeparator.auto": "Používá znak pro separaci cesty specifický pro operační systém.",
"copyRelativePathSeparator.backslash": "Použijte zpětné lomítko jako znak pro separaci cesty.",
"copyRelativePathSeparator.slash": "Použijte lomítko jako znak pro separaci cesty.",
"defaultLanguage": "Výchozí identifikátor jazyka, který se přiřazuje k novým souborům. Pokud je nakonfigurovaný na ${activeEditorLanguage}, bude se používat identifikátor jazyka aktuálně aktivního textového editoru (pokud existuje).",
+ "defaultPathErrorMessage": "Výchozí cesta pro dialogová okna souborů musí být absolutní cesta (např. C:\\\\myFolder nebo /myFolder).",
+ "disabled": "Zakáže přírůstkové pojmenování. Pokud existují dva soubory se stejným názvem, zobrazí se výzva k přepsání existujícího souboru.",
"enableDragAndDrop": "Určuje, jestli má být v průzkumníkovi povolené přesouvání souborů a složek přetažením. Toto nastavení platí jenom pro přetahování zevnitř průzkumníka.",
- "enableUndo": "Určuje, jestli má průzkumník podporovat vrácení operací se soubory a složkami zpět.",
+ "enableUndo": "Určuje, jestli má Průzkumník podporovat vrácení operací se soubory a složkami.",
"enableUndo.default": "Průzkumník zobrazí výzvu před destruktivními operacemi vrácení zpět.",
"enableUndo.light": "Průzkumník nebude zobrazovat výzvu před operacemi vrácení zpět, pokud má fokus.",
"enableUndo.verbose": "Průzkumník zobrazí výzvu před všemi operacemi vrácení zpět.",
@@ -6355,18 +10174,21 @@
"eol.LF": "LF",
"eol.auto": "Používá znak konce řádku specifický pro operační systém.",
"everything": "Formátovat celý soubor",
- "exclude": "Umožňuje nakonfigurovat [vzory glob](https://code.visualstudio.com/docs/editor/codebasics#_advanced-search-options) pro vyloučení souborů a složek. Na základě tohoto nastavení například Průzkumník souborů rozhodne, které soubory a složky se mají zobrazit nebo skrýt. Pokud chcete definovat vyloučení specifické pro konkrétní hledání, podívejte se na nastavení #search.exclude#.",
- "excludeGitignore": "Určuje, jestli se mají položky v .gitignore parsovat a vyloučit z průzkumníka. Podobné jako {0}.",
- "expandSingleFolderWorkspaces": "Určuje, jestli má průzkumník během inicializace rozbalit pracovních prostory s více kořeny, které obsahují jenom jednu složku.",
+ "exclude": "Umožňuje nakonfigurovat [vzory glob](https://aka.ms/vscode-glob-patterns) pro vyloučení souborů a složek. Na základě tohoto nastavení například Průzkumník souborů rozhodne, které soubory a složky se mají zobrazit nebo skrýt. Pokud chcete definovat vyloučení specifické pro konkrétní hledání, podívejte se na nastavení #search.exclude#. Projděte si nastavení #explorer.excludeGitIgnore# pro ignorování souborů založené na vašem .gitignore.",
+ "excludeGitignore": "Určuje, jestli se mají položky v souboru .gitignore parsovat a vyloučit z Průzkumníka. Podobá se {0}.",
+ "expandSingleFolderWorkspaces": "Určuje, jestli má Průzkumník během inicializace rozbalit více kořenových pracovních prostorů, které obsahují jenom jednu složku.",
+ "explorer.autoRevealExclude.boolean": "Vzor glob pro hledání shod s cestami k souborům. Pokud chcete vzor povolit, nastavte hodnotu true, pokud ho chcete zakázat, nastavte hodnotu false.",
+ "explorer.autoRevealExclude.when": "Další kontrola položek na stejné úrovni u odpovídajícího souboru. Jako proměnnou názvu odpovídajícího souboru použijte $(basename).",
"explorer.decorations.badges": "Určuje, jestli se mají pro dekorace souborů používat odznáčky.",
"explorer.decorations.colors": "Určuje, jestli se mají pro dekorace souborů používat barvy.",
- "explorer.incrementalNaming": "Určuje, jakou strategii pojmenování použít při zadávání nového názvu pro duplicitní položku průzkumníka při vložení.",
+ "explorer.incrementalNaming": "Určuje, jakou strategii pojmenování použít při zadávání nového názvu pro duplicitní položku Průzkumníka při vložení.",
"explorerConfigurationTitle": "Průzkumník souborů",
"falseDescription": "Zakáže vzor.",
+ "fileDialogDefaultPath": "Výchozí cesta pro dialogová okna souborů, která přepíše domovskou cestu uživatele. Používá se pouze v případě, že chybí cesta specifická pro kontext, například naposledy otevřený soubor nebo složka.",
"fileNesting.description": "Každý vzor klíče může obsahovat jeden znak *, který bude odpovídat libovolnému řetězci.",
- "fileNestingEnabled": "Řídí, jestli je v průzkumníkovi povolené vnořování souborů. Vnořování souborů umožňuje, aby související soubory v rámci adresáře byly vizuálně seskupeny pod jedním nadřazeným souborem.",
+ "fileNestingEnabled": "Určuje, jestli je v Průzkumníkovi povolené vnořování souborů. Vnoření souborů umožňuje vizuální seskupení souvisejících souborů v adresáři pod jedním nadřazeným souborem.",
"fileNestingExpand": "Určuje, jestli se má vnoření souborů automaticky rozbalit. Aby se tato možnost projevila, musí se nastavit {0}.",
- "fileNestingPatterns": "Řídí vnořování souborů v průzkumníku. Každý __Item__ představuje nadřazený vzor a může obsahovat jeden znak `*`, který odpovídá libovolnému řetězci. Každá __Value__ představuje čárkou oddělený seznam podřízených vzorů, které se mají zobrazit vnořené pod daným nadřazeným vzorem. Dceřiné vzory mohou obsahovat několik speciálních znaků:\r\n- ${capture}: Odpovídá přeložené hodnotě * z nadřazeného vzoru.\r\n- ${basename}: Odpovídá základnímu názvu nadřazeného souboru, souborem v file.ts.\r\n- ${extname}: Odpovídá příponě nadřazeného souboru, ts v file.ts.\r\n- ${dirname}: Odpovídá názvu adresáře nadřazeného souboru, src v souboru src/file.ts.\r\n- *: Odpovídá jakémukoli řetězci. Pro každý podřízený vzor je možné použít pouze jednou.",
+ "fileNestingPatterns": "Řídí vnoření souborů v Průzkumníkovi. {0} se musí nastavit, aby se to projevilo. Každá __Položka__ představuje nadřazený vzor a může obsahovat jeden znak *, který odpovídá libovolnému řetězci. Každá __Hodnota__ představuje čárkami oddělený seznam podřízených vzorů, které by se měly zobrazit vnořené pod danou nadřazenou položkou. Podřízené vzory můžou obsahovat několik speciálních tokenů:\r\n- ${capture}: Odpovídá přeložené hodnotě * z nadřazeného vzoru\r\n $ {basename}: Odpovídá základnímu názvu nadřazeného souboru. file v file.ts\r\n- ${extname}: Odpovídá příponě nadřazeného souboru, ts v file.ts\r\n- ${dirname}: Odpovídá názvu adresáře nadřazeného souboru, src v src/file.ts\r\n- '*': Odpovídá jakémukoli řetězci, může se použít jen jednou pro každý podřízený vzor.",
"files.autoSave.afterDelay": "Editor s neuloženými změnami se automaticky uloží po nakonfigurované prodlevě (#files.autoSaveDelay#).",
"files.autoSave.off": "Editor se změnami se nikdy automaticky neuloží.",
"files.autoSave.onFocusChange": "Editor se změnami se automaticky uloží, když editor ztratí fokus.",
@@ -6376,22 +10198,24 @@
"files.participants.timeout": "Časový limit v milisekundách, po jehož uplynutí se zruší účastníci souboru pro vytváření, přejmenovávání a odstraňování. Pokud chcete účastníky zakázat, použijte hodnotu 0.",
"files.restoreUndoStack": "Umožňuje při opětovném otevření souboru obnovit zásobník akcí Zpět.",
"files.saveConflictResolution": "Ke konfliktu uložení může dojít, když se na disk uloží soubor, který byl mezitím změněn jiným programem. Aby se zabránilo ztrátě dat, uživatel je požádán, aby porovnal změny v editoru s verzí na disku. Toto nastavení byste měli měnit pouze v případě, že dochází k častým chybám týkajícím se konfliktů uložení, protože neopatrné použití tohoto nastavení může vést ke ztrátě dat.",
- "files.simpleDialog.enable": "Umožňuje povolit jednoduché dialogového okno souboru. Pokud je povoleno, jednoduché dialogové okno souboru nahradí systémové dialogové okno souboru.",
+ "files.simpleDialog.enable": "Povolí jednoduché dialogové okno pro otevírání a ukládání souborů a složek. Když se povolí dialogové okno jednoduchého souboru, nahradí dialog systémového souboru.",
"filesConfigurationTitle": "Soubory",
- "formatOnSave": "Umožňuje naformátovat soubor při uložení. Musí být k dispozici formátovací modul, soubor nesmí být ukládán až po uplynutí definované doby prodlevy a editor se nesmí právě vypínat.",
+ "filesReadonlyExclude": "Nakonfigurujte cesty nebo [vzory glob](https://aka.ms/vscode-glob-patterns), které se mají vyloučit z označení jen pro čtení, pokud se shodují v důsledku nastavení #files.readonlyInclude#. Vzory glob se vždy vyhodnocují relativně k cestě ke složce pracovního prostoru, pokud se ne jedná o absolutní cesty. Soubory od zprostředkovatelů systému souborů jen pro čtení budou na tomto nastavení vždy nezávislé na čtení.",
+ "filesReadonlyFromPermissions": "Označí soubory jako jen pro čtení, pokud to označují jejich oprávnění k souborům. Toto se dá přepsat prostřednictvím nastavení #files.readonlyInclude# a #files.readonlyExclude#.",
+ "filesReadonlyInclude": "Nakonfigurujte cesty nebo [vzory glob](https://aka.ms/vscode-glob-patterns), které se mají označit jako jen pro čtení. Vzory glob se vždy vyhodnocují relativně k cestě ke složce pracovního prostoru, pokud se nejedná o absolutní cesty. Odpovídající cesty můžete vyloučit pomocí nastavení #files.readonlyExclude#. Soubory od poskytovatelů systému souborů jen pro čtení budou nezávisle na tomto nastavení vždy jen pro čtení.",
+ "formatOnSave": "Umožňuje formátovat soubor při uložení. Formátovací modul musí být k dispozici a editor se nesmí vypínat. Když je {0} nastaveno na afterDelay, soubor se naformátuje jenom při explicitním uložení.",
"formatOnSaveMode": "Určuje, jestli formátování při uložení naformátuje celý soubor, nebo pouze úpravy. Platí pouze v případě, že je povoleno nastavení #editor.formatOnSave#.",
- "hotExit": "Určuje, jestli se mají zapamatovávat neuložené soubory mezi relacemi. Díky tomu pak nebudete při ukončování editoru vyzýváni k jejich uložení.",
+ "hotExit": "[Hot Exit](https://aka.ms/vscode-hot-exit) určuje, jestli se mají zapamatovávat neuložené soubory mezi relacemi. Díky tomu pak nebudete při ukončování editoru vyzýváni k jejich uložení.",
"hotExit.off": "Zakažte aktivní ukončení. Při pokusu o zavření okna s editory, které mají neuložené změny, se zobrazí výzva.",
"hotExit.onExit": "Ukončení za běhu se aktivuje, když se v systému Windows/Linux zavře poslední okno nebo když je aktivován příkaz workbench.action.quit (paleta příkazů, klávesová zkratka, nabídka). Všechna okna bez otevřených složek se při příštím spuštění obnoví. Seznam dříve otevřených oken s neuloženými soubory je možné zobrazit pomocí příkazů Soubor > Otevřít nedávné > Více...",
"hotExit.onExitAndWindowClose": "Ukončení za běhu se aktivuje, když se v systému Windows/Linux zavře poslední okno nebo když je aktivován příkaz workbench.action.quit (paleta příkazů, klávesová zkratka, nabídka) a také pro jakékoli okno s otevřenou složkou bez ohledu na to, jestli je to poslední okno. Všechna okna bez otevřených složek se při příštím spuštění obnoví. Seznam dříve otevřených oken s neuloženými soubory je možné zobrazit pomocí příkazů Soubor > Otevřít nedávné > Více...",
"hotExit.onExitAndWindowCloseBrowser": "Ukončení za běhu se aktivuje při vypnutí prohlížeče a při zavření okna nebo karty.",
"insertFinalNewline": "Pokud je tato možnost povolena, na konec souboru se při jeho uložení vloží poslední nový řádek.",
- "maxMemoryForLargeFilesMB": "Řídí velikost paměti dostupné pro VS Code po restartování při pokusu o otevření velkých souborů. Má stejný efekt jako zadání příkazu --max-memory=NEWSIZE na příkazovém řádku.",
"modification": "Naformátovat úpravy (vyžaduje správu zdrojového kódu)",
"modificationIfAvailable": "Pokusí se pouze o úpravy formátu (vyžaduje ovládání zdroje). Pokud nelze použít správu zdrojového kódu, bude naformátován celý soubor.",
"openEditorsSortOrder": "Určuje pořadí řazení editorů v podokně Otevřené editory.",
- "openEditorsVisible": "Maximální počet editorů zobrazených v podokně Otevřené Editory. Nastavení tohoto počtu na 0 skryje podokno Otevřené Editory.",
- "openEditorsVisibleMin": "Minimální počet editorů zobrazených v podokně Otevřené Editory. Pokud je tento počet nastavený na 0, bude podokno Otevřené Editory dynamicky měnit velikost podle počtu editorů.",
+ "openEditorsVisible": "Počáteční maximální počet editorů zobrazených v podokně Otevřít editory. Překročení tohoto limitu zobrazí posuvník a umožní změnu velikosti podokna tak, aby se zobrazilo více položek.",
+ "openEditorsVisibleMin": "Minimální počet editorů předem přidělených v podokně Otevřené editory. Pokud je tento počet nastavený na 0, bude podokno Otevřené editory dynamicky měnit velikost podle počtu editorů.",
"overwriteFileOnDisk": "Vyřeší konflikt uložení přepsáním souboru na disku změnami v editoru.",
"simple": "Připojí slovo „copy“ (kopie) na konec duplicitního názvu, po kterém může následovat ještě číslo.",
"smart": "Přidá číslo na konec duplicitního názvu. Pokud už v názvu nějaké číslo je, pokusí se toto číslo zvýšit.",
@@ -6410,28 +10234,33 @@
"sortOrderLexicographicOptions.lower": "Názvy s malými písmeny se seskupují před názvy s velkými písmeny.",
"sortOrderLexicographicOptions.unicode": "Názvy jsou seřazené v pořadí Unicode.",
"sortOrderLexicographicOptions.upper": "Názvy s velkými písmeny se seskupují před názvy s malými písmeny.",
+ "sortOrderReverse": "Určuje, jestli má být pořadí řazení souborů a složek obrácené.",
+ "textFileEditor": "Editor textových souborů",
"trimFinalNewlines": "Pokud je tato možnost povolena, odstraní se při uložení souboru všechny nové řádky za posledním novým řádkem na konci souboru.",
"trimTrailingWhitespace": "Pokud je povoleno, budou při uložení souboru odstraněny koncové prázdné znaky.",
+ "trimTrailingWhitespaceInRegexAndStrings": "Pokud je povolena tato možnost, budou z víceřádkových řetězců odebrány koncové prázdné znaky a při uložení nebo při spuštění příkazu editor.action.trimTrailingWhitespace budou odebrány regulární výrazy. To může způsobit, že se z řádků neodeberou prázdné znaky, pokud nejsou k dispozici aktuální informace o tokenu.",
"trueDescription": "Povolit vzor",
"useTrash": "Při odstraňování přesune soubory/složky do koše operačního systému (koš v systému Windows). Při zakázání této možnosti budou soubory/složky odstraněny trvale.",
- "watcherExclude": "Nakonfigurujte cesty nebo vzory globů, které se mají vyloučit ze sledování souborů. Cesty nebo základní vzory glob, které jsou relativní (například sestava/výstup nebo *.js), se pomocí aktuálně otevřeného pracovního prostoru přeloží na absolutní cestu. Komplexní vzory glob se musí shodovat s absolutními cestami (tj. předpona s **/ nebo úplná cesta a přípona s /**, aby odpovídala souborům v cestě), aby se správně shodovaly (například **/build/output/* *nebo /Users/name/workspaces/project/build/output/** ). Pokud proces sledování souborů spotřebovává velké množství CPU, nezapomeňte vyloučit velké složky, o které je menší zájem (například výstupní složky sestavení).",
+ "watcherExclude": "Nakonfigurujte cesty nebo [vzory glob](https://aka.ms/vscode-glob-patterns), které se mají vyloučit ze sledování souborů. Cesty mohou být relativní ke sledované složce nebo absolutní. Vzory glob se porovnávají relativně ke sledované složce. Pokud proces sledování souborů spotřebovává velké množství CPU, nezapomeňte vyloučit velké složky, které jsou méně zajímavé (například výstupní složky sestavení).",
"watcherInclude": "Nakonfigurujte další cesty pro sledování změn v pracovním prostoru. Ve výchozím nastavení se všechny složky pracovního prostoru budou sledovat rekurzivně s výjimkou složek, které jsou symbolickými odkazy. Můžete explicitně přidat absolutní nebo relativní cesty pro podporu sledování složek, které jsou symbolickými odkazy. Relativní cesty se budou vztahovat na absolutní cestu pomocí aktuálně otevřeného pracovního prostoru."
},
"vs/workbench/contrib/files/browser/views/emptyView": {
"noWorkspace": "Neotevřena žádná složka"
},
"vs/workbench/contrib/files/browser/views/explorerDecorationsProvider": {
- "canNotResolve": "Nelze zjistit složku pracovního prostoru.",
+ "canNotResolve": "Nelze přeložit složku pracovního prostoru ({0})",
"label": "Průzkumník",
"symbolicLlink": "Symbolický odkaz",
"unknown": "Neznámý typ souboru"
},
"vs/workbench/contrib/files/browser/views/explorerView": {
"collapseExplorerFolders": "Sbalit složky v Průzkumníkovi",
- "createNewFile": "Nový soubor",
- "createNewFolder": "Nová složka",
+ "collapseExplorerFoldersMetadata": "Sbalí všechny složky v Průzkumníkovi.",
+ "createNewFile": "Nový soubor…",
+ "createNewFolder": "Nová složka…",
"explorerSection": "Oddíl průzkumníka: {0}",
- "refreshExplorer": "Aktualizovat Průzkumníka"
+ "refreshExplorer": "Aktualizovat Průzkumníka",
+ "refreshExplorerMetadata": "Vynutí aktualizaci Průzkumníka."
},
"vs/workbench/contrib/files/browser/views/explorerViewer": {
"confirmMove": "Opravdu chcete přesunout {0} do {1}?",
@@ -6441,12 +10270,14 @@
"copy": "Kopírovat {0}",
"copying": "Kopíruje se {0}.",
"doNotAskAgain": "Tento dotaz příště nezobrazovat",
+ "explorerHighlightFolderBadgeTitle": "Adresář obsahuje shody: {0}.",
"fileInputAriaLabel": "Zadejte název souboru. (Potvrdíte stisknutím klávesy Enter. Zrušíte klávesou Esc.)",
"move": "Přesunout {0}",
"moveButtonLabel": "&&Přesunout",
"moving": "Přesouvá se {0}.",
"numberOfFiles": "Počet souborů: {0}",
"numberOfFolders": "Počet složek: {0}",
+ "searchMaxResultsWarning": "Sada výsledků dotazu obsahuje jen podmnožinu všech shod. Zadejte konkrétnější hledání, aby se počet výsledků snížil.",
"treeAriaLabel": "Průzkumník souborů"
},
"vs/workbench/contrib/files/browser/views/openEditorsView": {
@@ -6454,11 +10285,11 @@
"flipLayout": "Přepnout svislé/vodorovné rozložení editoru",
"miToggleEditorLayout": "Převrátit &&rozložení",
"miToggleEditorLayoutWithoutMnemonic": "Převrátit rozložení",
- "newUntitledFile": "Nový soubor bez názvu",
+ "newUntitledFile": "Nový textový soubor bez názvu",
"openEditors": "Otevřené editory"
},
"vs/workbench/contrib/files/browser/workspaceWatcher": {
- "enospcError": "V této velké složce pracovního prostoru nelze sledovat změny souborů. Pokud chcete tento problém vyřešit, postupujte prosím podle pokynů na uvedeném odkazu.",
+ "enospcError": "Nepovedlo se sledovat změny souborů. Pokud chcete tento problém vyřešit, postupujte prosím podle pokynů na uvedeném odkazu.",
"eshutdownError": "Sledovací proces změn souborů se neočekávaně zastavil. Pokud je možné sledovat změny v souborech pracovního prostoru, opětovné načtení okna by mohlo sledovací proces znovu povolit.",
"learnMore": "Pokyny",
"reload": "Načíst znovu"
@@ -6468,58 +10299,59 @@
"dirtyFiles": "Neuložené soubory: {0}"
},
"vs/workbench/contrib/files/common/files": {
+ "explorerFindProviderActive": "True, pokud strom průzkumníka používá zprostředkovatele hledání průzkumníka.",
"explorerResourceCut": "True, když se v PRŮZKUMNÍKOVI vyjmula položka pro operaci vyjmutí a vložení",
"explorerResourceIsFolder": "True, když je položka s fokusem v PRŮZKUMNÍKOVI složka",
"explorerResourceIsRoot": "True, když je položka s fokusem v PRŮZKUMNÍKOVI kořenová složka",
"explorerResourceMoveableToTrash": "True, když se položka s fokusem v PRŮZKUMNÍKOVI může přesunout do koše",
- "explorerResourceReadonly": "True, když je položka s fokusem v PRŮZKUMNÍKOVI pouze pro čtení",
+ "explorerResourceParentReadonly": "True, pokud je položka s fokusem v nadřazené položce PRŮZKUMNÍKA jen pro čtení.",
+ "explorerResourceReadonly": "True, když je položka s fokusem v PRŮZKUMNÍKOVI pouze pro čtení.",
"explorerViewletCompressedFirstFocus": "True, když je fokus v zobrazení PRŮZKUMNÍK v první části kompaktní položky",
"explorerViewletCompressedFocus": "True, když je položka s fokusem v zobrazení PRŮZKUMNÍK kompaktní položka",
"explorerViewletCompressedLastFocus": "True, když je fokus v zobrazení PRŮZKUMNÍK v poslední části kompaktní položky",
"explorerViewletFocus": "True, když je fokus ve viewletu PRŮZKUMNÍK",
"explorerViewletVisible": "True, když je viditelný viewlet PRŮZKUMNÍK",
"filesExplorerFocus": "True, když je fokus v zobrazení PRŮZKUMNÍK",
+ "foldersViewVisible": "True, pokud je viditelné zobrazení FOLDERS (strom souborů v kontejneru zobrazení průzkumníka).",
"openEditorsFocus": "True, když je fokus v zobrazení OTEVŘENÉ EDITORY",
- "openEditorsVisible": "True, když je viditelné zobrazení OTEVŘENÉ EDITORY",
"viewHasSomeCollapsibleItem": "True, pokud má pracovní prostor ve zobrazení EXPLORER nějaký sbalitelný kořenový podřízený prvek."
},
- "vs/workbench/contrib/files/electron-sandbox/fileActions.contribution": {
+ "vs/workbench/contrib/files/electron-browser/fileActions.contribution": {
"filesCategory": "Soubor",
- "openContainer": "Otevřít nadřazenou složku",
- "revealInMac": "Zobrazit ve Finderu",
- "revealInWindows": "Zobrazit v Průzkumníkovi souborů"
- },
- "vs/workbench/contrib/files/electron-sandbox/files.contribution": {
- "textFileEditor": "Editor textových souborů"
+ "miShare": "Sdílet",
+ "openContainer": "Open Containing Folder",
+ "revealInMac": "Reveal in Finder",
+ "revealInWindows": "Reveal in File Explorer"
},
- "vs/workbench/contrib/files/electron-sandbox/textFileEditor": {
- "configureMemoryLimit": "Konfigurovat limit paměti",
- "fileTooLargeForHeapError": "Pokud chcete otevřít soubor této velikosti, musíte provést restart a umožnit {0} pro použití většího množství paměti.",
- "relaunchWithIncreasedMemoryLimit": "Restartovat s {0} MB"
+ "vs/workbench/contrib/folding/browser/folding.contribution": {
+ "formatter.default": "Definuje výchozího zprostředkovatele rozsahu sbalování, který má přednost před všemi ostatními zprostředkovateli rozsahu sbalování. Musí se jednat o identifikátor rozšíření, které přispívá k poskytovateli rozsahu sbalování.",
+ "null": "Vše",
+ "nullFormatterDescription": "Všichni aktivní poskytovatelé rozsahu sbalování"
},
"vs/workbench/contrib/format/browser/formatActionsMultiple": {
- "cancel": "Zrušit",
"config": "Konfigurovat výchozí formátovací modul...",
"config.bad": "Rozšíření {0} je nakonfigurováno jako formátovací modul, ale není k dispozici. Pokračujte zvolením jiného výchozího formátovacího modulu.",
"config.needed": "Pro soubory {0} existuje více formátovacích modulů. Jeden z nich by měl být nakonfigurovaný jako výchozí.",
"def": "(výchozí)",
- "do.config": "Konfigurovat...",
+ "do.config": "&&Konfigurovat…",
+ "do.config.command": "Configure... (Konfigurovat…)",
+ "do.config.notification": "Configure... (Konfigurovat…)",
"format.placeHolder": "Vyberte formátovací modul",
"formatDocument.label.multiple": "Formátovat dokument pomocí...",
"formatSelection.label.multiple": "Formátovat výběr pomocí...",
"formatter": "Formátování",
"formatter.default": "Definuje výchozí formátovací modul, který má přednost před všemi ostatními nastaveními formátovacích modulů. Musí se jednat o identifikátor rozšíření, které přidává formátovací modul.",
- "miss": "Rozšíření {0} je nakonfigurováno jako formátovací modul, ale nemůže formátovat soubory {1}.",
- "miss.1": "Konfigurovat výchozí formátovací modul…",
+ "miss": "Konfigurovat výchozí formátovací modul…",
+ "miss.1": "Rozšíření {0} je nakonfigurováno jako formátovací modul, ale nemůže formátovat soubory {1}.",
+ "miss.2": "Rozšíření {0} je nakonfigurováno jako formátovací modul, ale může formátovat pouze soubory {1} jako celek, nikoli výběry nebo jejich části.",
"null": "Žádný",
"nullFormatterDescription": "Žádný",
"select": "Vyberte výchozí formátovací modul pro soubory ({0}).",
"summary": "Konflikty formátovacího modulu"
},
"vs/workbench/contrib/format/browser/formatActionsNone": {
- "cancel": "Zrušit",
"formatDocument.label.multiple": "Formátovat dokument",
- "install.formatter": "Nainstalovat formátovací modul...",
+ "install.formatter": "&&Nainstalovat formátovací modul…",
"no.provider": "Pro soubory ({0}) není nainstalovaný žádný formátovací modul.",
"too.large": "Tento soubor nejde naformátovat, protože je moc velký."
},
@@ -6527,38 +10359,434 @@
"formatChanges": "Formátovat upravené řádky"
},
"vs/workbench/contrib/inlayHints/browser/inlayHintsAccessibilty": {
- "description": "Informace o kódu s naznačovací nápovědou",
- "isReadingLineWithInlayHints": "Jestli jsou současný řádek a jeho naznačovací nápověda prioritní",
- "read.title": "Číst řádek s naznačovací nápovědou",
- "stop.title": "Přestat číst naznačovací nápovědu"
+ "description": "Kód s vloženým upozorněním",
+ "isReadingLineWithInlayHints": "Jestli jsou současný řádek a jeho vložené upozornění prioritní",
+ "read.title": "Přečíst řádek s vloženým upozorněním",
+ "stop.title": "Přestat číst vložené upozornění"
+ },
+ "vs/workbench/contrib/inlineChat/browser/inlineChat.contribution": {
+ "cancel": "Zrušit žádost",
+ "cancelShort": "Zrušit",
+ "send.edit": "Upravit kód",
+ "send.generate": "Vygenerovat"
+ },
+ "vs/workbench/contrib/inlineChat/browser/inlineChatActions": {
+ "Keep": "Zachovat",
+ "apply1": "Přijmout změny",
+ "apply2": "Přijmout",
+ "arrowDown": "Kurzor dolů",
+ "arrowUp": "Kurzor nahoru",
+ "cat": "Vložený chat",
+ "chat.rerun.label": "Znovu spustit žádost",
+ "close": "Zavřít",
+ "close2": "Zavřít",
+ "configure": "Konfigurovat vložený chat",
+ "discard": "Zahodit",
+ "focus": "Zaměřit na vstupní pole",
+ "moveToNextHunk": "Přejít na další změnu",
+ "moveToPreviousHunk": "Přejít na předchozí změnu",
+ "rerun": "Spustit znovu",
+ "run": "Otevřít vložený chat",
+ "showChanges": "Přepnout změny",
+ "startInlineChat": "Ikona, která vytvoří vložený chat z panelu nástrojů editoru",
+ "unstash": "Pokračovat v posledním zavřeném vloženém chatu",
+ "viewInChat": "Zobrazit v chatu"
+ },
+ "vs/workbench/contrib/inlineChat/browser/inlineChatController": {
+ "askOrEditInContext": "Zeptat se nebo upravit v kontextu",
+ "create.fail": "Nepovedlo se spustit chat editoru",
+ "empty": "Žádné výsledky, upřesněte prosím svůj vstup a zkuste to znovu",
+ "err.apply": "Nepovedlo se zavést změny.",
+ "err.discard": "Změny se nepodařilo zahodit.",
+ "fix1": "Opravit připojený problém",
+ "fixN": "Opravit připojené problémy",
+ "loading": "Pracuje se...",
+ "placeholder": "Upravte, refaktorujte a vygenerujte kód",
+ "responseWasEmpty": "Odpověď byla prázdná.",
+ "welcome.2": "Probíhá příprava..."
+ },
+ "vs/workbench/contrib/inlineChat/browser/inlineChatSessionServiceImpl": {
+ "chat.remove.confirmation.checkbox": "Příště se už neptat",
+ "confirm": "Chcete pokračovat v zobrazení chatu?",
+ "confirm.cancel": "Zrušit",
+ "confirm.detail": "Vložený chat je navržený pro provádění změn kódu v jednom souboru. Pokračujte v žádosti v zobrazení chatu nebo ji přeformulujte pro vložený chat.",
+ "confirm.title": "Chcete pokračovat v zobrazení chatu?",
+ "confirm.yes": "Pokračovat v zobrazení chatu",
+ "name": "Vložený chat do chatu na panelu",
+ "resetChoice.label": "Resetovat volbu pro přesunutí vloženého chatu do chatu na panelu"
+ },
+ "vs/workbench/contrib/inlineChat/browser/inlineChatWidget": {
+ "aria-label": "Vstup vloženého chatu",
+ "feedbackThanks": "Děkujeme vám za váš názor!",
+ "inlineChat.accessibilityHelp": "Vstup vloženého chatu, použití {0} pro nápovědu k přístupnosti vloženého chatu.",
+ "inlineChat.accessibilityHelpNoKb": "Vstup vloženého chatu. Další informace získáte spuštěním příkazu Nápověda k funkcím přístupnosti vloženého chatu.",
+ "termsDisclaimer": "Pokračováním v používání {0} Copilotu souhlasíte s [Podmínkami]({2}){1} a [Prohlášením o zásadách ochrany osobních údajů]({3})."
+ },
+ "vs/workbench/contrib/inlineChat/browser/inlineChatZoneWidget": {
+ "inlineChatClosed": "Zavřený vložený widget chatu"
+ },
+ "vs/workbench/contrib/inlineChat/common/inlineChat": {
+ "accessibleDiffView": "Určuje, jestli se ve vloženém chatu pro změny vykresluje také přístupný prohlížeč rozdílů.",
+ "accessibleDiffView.auto": "Prohlížeč rozdílů s podporou přístupnosti je založen na povoleném režimu čtečky obrazovky.",
+ "accessibleDiffView.off": "Přístupný prohlížeč rozdílů není nikdy povolen.",
+ "accessibleDiffView.on": "Přístupný prohlížeč rozdílů je vždy povolen.",
+ "editorMinimap.inlineChatInserted": "Barva značky minimapy pro vložený obsah vloženého chatu.",
+ "editorOverviewRuler.inlineChatInserted": "Barva značky přehledového pravítka pro vložený obsah vloženého chatu.",
+ "editorOverviewRuler.inlineChatRemoved": "Barva značky přehledového pravítka pro odebraný obsah vloženého chatu.",
+ "enableV2": "Zda použít novější verzi vloženého chatu.",
+ "finishOnType": "Určuje, jestli se má při psaní mimo změněné oblasti dokončit relace vloženého chatu.",
+ "holdToSpeech": "Určuje, jestli podržení klávesové zkratky vložené konverzace automaticky povolí rozpoznávání řeči.",
+ "inlineChat.background": "Barva pozadí widgetu interaktivního editoru",
+ "inlineChat.border": "Barva ohraničení widgetu interaktivního editoru",
+ "inlineChat.foreground": "Barva popředí widgetu interaktivního editoru",
+ "inlineChat.shadow": "Barva stínu widgetu interaktivního editoru",
+ "inlineChatChangeHasDiff": "Určuje, jestli aktuální změna podporuje zobrazení rozdílu.",
+ "inlineChatChangeShowsDiff": "Určuje, jestli aktuální změna zobrazuje rozdíl.",
+ "inlineChatDiff.inserted": "Barva pozadí vloženého textu ve vstupu interaktivního editoru",
+ "inlineChatDiff.removed": "Barva pozadí odebraného textu ve vstupu interaktivního editoru",
+ "inlineChatEditing": "Určuje, jestli uživatel právě upravuje nebo generuje kód ve vloženém chatu.",
+ "inlineChatEmpty": "Určuje, jestli je vstup interaktivního editoru prázdný",
+ "inlineChatFocused": "Určuje, jestli má vstup interaktivního editoru fokus",
+ "inlineChatHasEditsAgent": "Určuje, zda existuje agent pro vložené úpravy v interaktivních editorech.",
+ "inlineChatHasNotebookAgent": "Určuje, zda existuje agent pro buňky poznámkového bloku.",
+ "inlineChatHasNotebookInline": "Určuje, zda existuje agent pro buňky poznámkového bloku.",
+ "inlineChatHasPossible": "Určuje, jestli existuje poskytovatel vloženého chatu a jestli je otevřený editor pro vložený chat.",
+ "inlineChatHasProvider": "Určuje, jestli existuje poskytovatel interaktivních editorů",
+ "inlineChatHasStashedSession": "Určuje, jestli interaktivní editor zachoval relaci pro rychlé obnovení",
+ "inlineChatInnerCursorFirst": "Určuje, jestli je kurzor vstupu interaktivního editoru na prvním řádku.",
+ "inlineChatInnerCursorLast": "Určuje, jestli je kurzor vstupu interaktivního editoru na posledním řádku",
+ "inlineChatInput.background": "Barva pozadí vstupu interaktivního editoru",
+ "inlineChatInput.border": "Barva ohraničení vstupu interaktivního editoru",
+ "inlineChatInput.focusBorder": "Barva ohraničení vstupu interaktivního editoru při fokusu",
+ "inlineChatInput.placeholderForeground": "Barva popředí zástupného symbolu vstupu interaktivního editoru",
+ "inlineChatOuterCursorPosition": "Určuje, jestli je kurzor vnějšího editoru nad nebo pod vstupem interaktivního editoru",
+ "inlineChatRequestInProgress": "Jestli právě probíhá vložená žádost o chat",
+ "inlineChatResponseFocused": "Určuje, jestli je odpověď interaktivního widgetu zaměřená.",
+ "inlineChatResponseTypes": "Jaké typy odpovědí byly přijaty, zatím nic, jen zprávy, nebo zprávy a místní úpravy",
+ "inlineChatVisible": "Určuje, jestli je interaktivní vstup editoru viditelný",
+ "notebookAgent": "Umožňuje povolit chování podobné agentovi pro widget vloženého chatu v poznámkových blocích."
+ },
+ "vs/workbench/contrib/inlineChat/electron-browser/inlineChatActions": {
+ "holdForSpeech": "Podržte pro řeč"
+ },
+ "vs/workbench/contrib/inlineCompletions/browser/inlineCompletionLanguageStatusBarContribution": {
+ "inlineCompletionAvailable": "Dostupné vložené dokončení",
+ "inlineEditAvailable": "Dostupná vložená úprava",
+ "inlineSuggestionLoading": "Načítání...",
+ "inlineSuggestions": "Vložené návrhy",
+ "inlineSuggestionsSmall": "Vložené návrhy",
+ "noInlineSuggestionAvailable": "K dispozici není žádný vložený návrh"
},
"vs/workbench/contrib/interactive/browser/interactive.contribution": {
"interactive.activeCodeBorder": "Barva ohraničení pro aktuální buňku interaktivního kódu, pokud má fokus editor",
"interactive.execute": "Spustit kód",
- "interactive.history.focus": "Přepnout fokus na historii v interaktivním okně",
+ "interactive.history.focus": "Historie fokusu",
"interactive.history.next": "Následující hodnota v historii",
"interactive.history.previous": "Předchozí hodnota v historii",
"interactive.inactiveCodeBorder": "Barva ohraničení pro aktuální buňku interaktivního kódu, pokud nemá fokus editor",
"interactive.input.clear": "Vymazat obsah editora vstupů interaktivního okna",
- "interactive.input.focus": "Přepnout fokus na editor vstupu v interaktivním okně",
+ "interactive.input.focus": "Editor zadávání fokusu",
"interactive.open": "Otevřít interaktivní okno",
"interactiveScrollToBottom": "Posunout na konec",
"interactiveScrollToTop": "Posunout na začátek",
+ "interactiveWindow": "Interaktivní okno",
"interactiveWindow.alwaysScrollOnNewCell": "Automaticky posouvá interaktivní okno tak, aby zobrazovalo výstup posledního provedeného příkazu. Pokud je tato hodnota nastavená na false, okno se posune jenom v případě, že už bylo na poslední buňku posunuté.",
- "interactiveWindow.restore": "Controls whether the Interactive Window sessions/history should be restored across window reloads. Whether the state of controllers used in Interactive Windows is persisted across window reloads are controlled by extensions contributing controllers."
- },
- "vs/workbench/contrib/interactive/browser/interactiveEditor": {
- "interactiveInputPlaceHolder": "Zde zadejte kód {0} a spusťte stisknutím {1}"
- },
- "vs/workbench/contrib/issue/electron-sandbox/issue.contribution": {
- "miOpenProcessExplorerer": "Otevřít &&Průzkumníka procesů",
- "miReportIssue": "&&Nahlásit problém",
- "reportIssueInEnglish": "Nahlásit problém..."
- },
- "vs/workbench/contrib/issue/electron-sandbox/issueActions": {
- "openProcessExplorer": "Otevřít průzkumník procesů",
- "reportPerformanceIssue": "Nahlásit problém s výkonem..."
- },
+ "interactiveWindow.executeWithShiftEnter": "Spusťte vstupní pole Interaktivní okno (REPL) pomocí kombinace kláves Shift+Enter, aby bylo možné pomocí klávesy Enter vytvořit nový řádek.",
+ "interactiveWindow.promptToSaveOnClose": "Zobrazí výzvu k uložení interaktivního okna, když je zavřené. Tato změna nastavení bude mít vliv pouze na nová interaktivní okna.",
+ "interactiveWindow.showExecutionHint": "Umožňuje zobrazit nápovědu ve vstupním poli Interaktivní okno (REPL), která uvádí, jak spustit kód."
+ },
+ "vs/workbench/contrib/interactive/browser/replInputHintContentWidget": {
+ "ReplInputAriaLabelHelp": "Pro nápovědu k přístupnosti použijte {0}. ",
+ "ReplInputAriaLabelHelpNoKb": "Další informace získáte spuštěním příkazu Otevřít nápovědu k přístupnosti. ",
+ "disableHint": " Přepnutím {0} v nastavení tento tip zakážete.",
+ "emptyHintText": "Kód spustíte stisknutím {0}. "
+ },
+ "vs/workbench/contrib/interactiveEditor/browser/interactiveEditorActions": {
+ "accept": "Vytvořit žádost",
+ "actions.interactiveSession.accessibiltyHelpEditor": "Nápověda k přístupnosti interaktivního editoru relací",
+ "apply1": "Přijmout změny",
+ "apply2": "Přijmout",
+ "arrowDown": "Kurzor dolů",
+ "arrowUp": "Kurzor nahoru",
+ "cancel": "Zrušit",
+ "cat": "Interaktivní editor",
+ "contractMessage": "Zpráva o smlouvě",
+ "copyRecordings": "(Vývojář) Zapsat Exchange do schránky",
+ "discard": "Zahodit",
+ "discardMenu": "Zahodit...",
+ "expandMessage": "Rozbalit zprávu",
+ "feedback.helpful": "Užitečné",
+ "feedback.unhelpful": "Neužitečné",
+ "focus": "Zaměřit na vstupní pole",
+ "label": "'{0}' a {1} položky ke zpracování ({2})",
+ "nextFromHistory": "Další z historie",
+ "previousFromHistory": "Předchozí z historie",
+ "run": "Zahájit chat s kódem",
+ "stop": "Zastavit žádost",
+ "toggleDiff": "Přepnout rozdíl",
+ "toggleDiff2": "Zobrazit vložený diff",
+ "undo.clipboard": "Zahodit do schránky",
+ "undo.newfile": "Zahodit do nového souboru",
+ "unstash": "Pokračovat v posledním zavřeném chatu s kódem",
+ "viewInChat": "Zobrazit v chatu"
+ },
+ "vs/workbench/contrib/interactiveEditor/browser/interactiveEditorController": {
+ "create.fail": "Nepovedlo se spustit chat editoru",
+ "create.fail.detail": "Podívejte se do protokolu chyb a zkuste to znovu později.",
+ "default.placeholder": "Zeptejte se",
+ "default.placeholder.history": "{0} ({1}, {2} pro historii)",
+ "empty": "Žádné výsledky, upřesněte prosím svůj vstup a zkuste to znovu",
+ "err.apply": "Nepovedlo se zavést změny.",
+ "err.discard": "Změny se nepodařilo zahodit.",
+ "thinking": "Přemýšlím…",
+ "welcome.1": "Kód vygenerovaný umělou inteligencí může být nesprávný"
+ },
+ "vs/workbench/contrib/interactiveEditor/browser/interactiveEditorStrategies": {
+ "lines.0": "Nedošlo k žádné změně",
+ "lines.1": "Změnil se 1 řádek",
+ "lines.N": "Změnilo se {0} řádků"
+ },
+ "vs/workbench/contrib/interactiveEditor/browser/interactiveEditorWidget": {
+ "aria-label": "Vstup interaktivního editoru",
+ "interactiveEditor.accessibilityHelp": "Vstup interaktivního editoru. Pro nápovědu k přístupnosti interaktivního editoru použijte {0}.",
+ "interactiveSessionInput.accessibilityHelpNoKb": "Vstup interaktivního editoru. Další informace získáte spuštěním příkazu Nápověda pro přístupnost interaktivního editoru.",
+ "modified": "Změněno",
+ "original": "Původní"
+ },
+ "vs/workbench/contrib/interactiveEditor/common/interactiveEditor": {
+ "editMode": "Nakonfigurujte, jestli se změny vytvořené v interaktivním editoru použijí přímo v dokumentu, nebo jestli se jako první zobrazí náhled.",
+ "editMode.live": "Změny se použijí přímo v dokumentu, ale dají se zvýraznit pomocí vložených rozdílů. Ukončení relace zachová změny.",
+ "editMode.livePreview": "Změny se použijí přímo v dokumentu a vizuálně se zvýrazní prostřednictvím vložených rozdílů nebo rozdílů vedle sebe. Ukončení relace zachová změny.",
+ "editMode.preview": "Změny se zobrazují pouze v náhledu a je nutné je přijmout pomocí tlačítka Použít. Ukončení relace zahodí změny.",
+ "interactiveEditor.border": "Barva ohraničení widgetu interaktivního editoru",
+ "interactiveEditor.regionHighlight": "Zvýraznění pozadí aktuální interaktivní oblasti. Musí být transparentní.",
+ "interactiveEditor.shadow": "Barva stínu widgetu interaktivního editoru",
+ "interactiveEditorDidEdit": "Určuje, jestli interaktivní editor změnil nějaký kód.",
+ "interactiveEditorDiff": "Určuje, jestli interaktivní editor zobrazuje rozdíly pro změny.",
+ "interactiveEditorDiff.inserted": "Barva pozadí vloženého textu ve vstupu interaktivního editoru",
+ "interactiveEditorDiff.removed": "Barva pozadí odebraného textu ve vstupu interaktivního editoru",
+ "interactiveEditorDocumentChanged": "Určuje, jestli se současně změnil dokument.",
+ "interactiveEditorEmpty": "Určuje, jestli je vstup interaktivního editoru prázdný",
+ "interactiveEditorFocused": "Určuje, jestli má vstup interaktivního editoru fokus",
+ "interactiveEditorHasActiveRequest": "Určuje, jestli má interaktivní editor aktivní požadavek",
+ "interactiveEditorHasProvider": "Určuje, jestli existuje poskytovatel interaktivních editorů",
+ "interactiveEditorHasStashedSession": "Určuje, jestli interaktivní editor zachoval relaci pro rychlé obnovení",
+ "interactiveEditorInnerCursorFirst": "Určuje, jestli je kurzor vstupu interaktivního editoru na prvním řádku.",
+ "interactiveEditorInnerCursorLast": "Určuje, jestli je kurzor vstupu interaktivního editoru na posledním řádku",
+ "interactiveEditorInput.background": "Barva pozadí vstupu interaktivního editoru",
+ "interactiveEditorInput.border": "Barva ohraničení vstupu interaktivního editoru",
+ "interactiveEditorInput.focusBorder": "Barva ohraničení vstupu interaktivního editoru při fokusu",
+ "interactiveEditorInput.placeholderForeground": "Barva popředí zástupného symbolu vstupu interaktivního editoru",
+ "interactiveEditorLastFeedbackKind": "Poslední druh poskytnuté zpětné vazby",
+ "interactiveEditorMarkdownMessageCropState": "Určuje, jestli je zpráva interaktivního editoru oříznutá, neoříznutá, nebo rozbalená.",
+ "interactiveEditorOuterCursorPosition": "Určuje, jestli je kurzor vnějšího editoru nad nebo pod vstupem interaktivního editoru",
+ "interactiveEditorResponseType": "Jaký typ byl poslední odpovědí aktuální relace interaktivního editoru",
+ "interactiveEditorVisible": "Určuje, jestli je interaktivní vstup editoru viditelný"
+ },
+ "vs/workbench/contrib/interactiveSession/browser/actions/interactiveSessionActions": {
+ "actions.ineractiveSession.acceptInput": "Vstup přijetí interaktivní relace",
+ "actions.interactiveSession.focus": "Interaktivní relace intenzivní práce",
+ "interactiveSession.category": "Interaktivní relace",
+ "interactiveSession.clear.label": "Vymazat",
+ "interactiveSession.clearHistory.label": "Vymazat historii vstupu",
+ "interactiveSession.focusInput.label": "Vstup fokusu",
+ "interactiveSession.history.label": "Zobrazit historii",
+ "interactiveSession.history.pick": "Vyberte relaci chatu, která se má obnovit.",
+ "interactiveSession.open": "Otevřít Editor ({0})"
+ },
+ "vs/workbench/contrib/interactiveSession/browser/actions/interactiveSessionCodeblockActions": {
+ "interactive.copyCodeBlock.label": "Kopírovat",
+ "interactive.insertCodeBlock.label": "Vložit na kurzor",
+ "interactive.insertIntoNewFile.label": "Vložit do nového souboru",
+ "interactive.runInTerminal.label": "Spustit v terminálu"
+ },
+ "vs/workbench/contrib/interactiveSession/browser/actions/interactiveSessionCopyActions": {
+ "interactive.copyAll.label": "Kopírovat vše",
+ "interactive.copyItem.label": "Kopírovat"
+ },
+ "vs/workbench/contrib/interactiveSession/browser/actions/interactiveSessionExecuteActions": {
+ "interactive.cancel.label": "Zrušit",
+ "interactive.submit.label": "Odeslat"
+ },
+ "vs/workbench/contrib/interactiveSession/browser/actions/interactiveSessionTitleActions": {
+ "interactive.voteDown.label": "Hlasovat proti",
+ "interactive.voteUp.label": "Hlasovat pro"
+ },
+ "vs/workbench/contrib/interactiveSession/browser/contrib/interactiveSessionInputEditorContrib": {
+ "interactive.input.placeholderNoCommands": "Zeptejte se",
+ "interactive.input.placeholderWithCommands": "Položte otázku nebo zadejte /pro témata."
+ },
+ "vs/workbench/contrib/interactiveSession/browser/interactiveSession.contribution": {
+ "interactiveSession": "Interaktivní relace",
+ "interactiveSession.editor.fontFamily": "Určuje rodinu písem v interaktivních relacích.",
+ "interactiveSession.editor.fontSize": "Určuje velikost písma (v pixelech) v interaktivních relacích.",
+ "interactiveSession.editor.fontWeight": "Určuje tloušťku písma v interaktivních relacích.",
+ "interactiveSession.editor.lineHeight": "Určuje výšku čáry v pixelech v interaktivních relacích. K výpočtu výšky řádku z velikosti písma použijte 0.",
+ "interactiveSession.editor.wordWrap": "Určuje, jestli se řádky v interaktivních relacích mají zalamovat.",
+ "interactiveSessionConfigurationTitle": "Interaktivní relace"
+ },
+ "vs/workbench/contrib/interactiveSession/browser/interactiveSessionContributionServiceImpl": {
+ "vscode.extension.contributes.interactiveSession": "Přispívá k poskytovateli interaktivní relace.",
+ "vscode.extension.contributes.interactiveSession.icon": "Ikona pro tohoto zprostředkovatele interaktivní relace.",
+ "vscode.extension.contributes.interactiveSession.id": "Jedinečný identifikátor pro tohoto zprostředkovatele interaktivní relace.",
+ "vscode.extension.contributes.interactiveSession.label": "Zobrazovaný název tohoto zprostředkovatele interaktivní relace.",
+ "vscode.extension.contributes.interactiveSession.when": "Podmínka, která musí mít hodnotu true, aby bylo možné povolit tohoto zprostředkovatele interaktivní relace."
+ },
+ "vs/workbench/contrib/interactiveSession/browser/interactiveSessionEditorInput": {
+ "interactiveSessionEditorName": "Interaktivní relace"
+ },
+ "vs/workbench/contrib/interactiveSession/browser/interactiveSessionInputPart": {
+ "interactiveSessionInput": "Vstup interaktivní relace"
+ },
+ "vs/workbench/contrib/interactiveSession/browser/interactiveSessionListRenderer": {
+ "interactiveSession": "Interaktivní relace"
+ },
+ "vs/workbench/contrib/interactiveSession/browser/interactiveSessionWidget": {
+ "clear": "Vymazat relaci"
+ },
+ "vs/workbench/contrib/interactiveSession/common/interactiveSessionColors": {
+ "interactive.requestBackground": "Barva pozadí interaktivního požadavku.",
+ "interactive.requestBorder": "Barva ohraničení interaktivního požadavku."
+ },
+ "vs/workbench/contrib/interactiveSession/common/interactiveSessionContextKeys": {
+ "hasInteractiveSessionProvider": "Hodnota true, pokud je zaregistrovaný některý zprostředkovatel interaktivní relace.",
+ "inInteractiveInput": "True, pokud je fokus v interaktivním vstupu, jinak false.",
+ "inInteractiveSession": "True, pokud je fokus ve widgetu interaktivní relace, jinak false.",
+ "interactiveInputHasText": "Hodnota true, pokud interaktivní vstup obsahuje text.",
+ "interactiveSessionRequestInProgress": "True, pokud aktuální požadavek stále probíhá.",
+ "interactiveSessionResponseHasProviderId": "True, pokud zprostředkovatel přiřadil k této odpovědi ID.",
+ "interactiveSessionResponseVote": "Když se hlasuje pro odpověď, nastaví se na „pro“. Když se hlasuje proti ní, nastaví se na „proti“. V opačném případě jde o prázdný řetězec."
+ },
+ "vs/workbench/contrib/interactiveSession/common/interactiveSessionServiceImpl": {
+ "emptyResponse": "Zprostředkovatel vrátil odpověď s hodnotou null."
+ },
+ "vs/workbench/contrib/interactiveSession/common/interactiveSessionViewModel": {
+ "thinking": "Přemýšlím"
+ },
+ "vs/workbench/contrib/issue/browser/baseIssueReporterService": {
+ "acknowledge": "Potvrdit potvrzení verze",
+ "bugDescription": "Popište kroky, pomocí kterých je možné problém spolehlivě zreprodukovat. Uveďte prosím skutečné a očekávané výsledky. Podporujeme variantu Markdownu pro GitHub. Po zobrazení náhledu problému na GitHubu budete moct problém upravit a přidat k němu snímky obrazovky.",
+ "bugReporter": "Hlášení o chybě",
+ "closed": "Uzavřené",
+ "create": "Vytvořit na GitHubu",
+ "createInternally": "Vytvořit interně",
+ "createOnGitHub": "Vytvořit na GitHubu",
+ "description": "Popis",
+ "disabledExtensions": "Rozšíření jsou zakázaná.",
+ "elsewhereDescription": "Rozšíření “{0}“ preferuje použití externího zpravodaje problémů. Pokud se chcete tomuto prostředí pro hlášení problémů ohlásit, klikněte na tlačítko níže.",
+ "extension": "Rozšíření VS Code",
+ "extensionPlaceholder": "Například Chybějící alternativní text v obrázku k readme rozšíření",
+ "featureRequest": "Žádost o funkci",
+ "featureRequestDescription": "Popište prosím funkci, kterou bychom podle vás měli přidat. Podporujeme variantu Markdownu pro GitHub. Po zobrazení náhledu problému na GitHubu budete moct problém upravit a přidat k němu snímky obrazovky.",
+ "handlesIssuesElsewhere": "Toto rozšíření řeší problémy mimo VS Code",
+ "hide": "skrýt",
+ "internalPreviewMessage": "Pokud protokoly ladění kopilotu obsahují soukromé informace:",
+ "marketplace": "Marketplace rozšíření",
+ "marketplacePlaceholder": "Například: Nejde zakázat nainstalované rozšíření.",
+ "open": "Otevřené",
+ "openIssueReporter": "Otevřít externího oznamovatele problémů",
+ "pasteData": "Požadovaná data jsme zkopírovali do schránky, protože byla příliš velká pro odeslání. Vložte prosím tato data ze schránky.",
+ "performanceIssue": "Problém s výkonem (zablokování, pomalé, chybové ukončení)",
+ "performanceIssueDesciption": "Kdy k tomuto problému s výkonem došlo? Stává se to při spuštění nebo po provedení určitých akcí? Podporujeme variantu Markdownu pro GitHub. Po zobrazení náhledu problému na GitHubu budete moct problém upravit a přidat k němu snímky obrazovky.",
+ "preview": "Zobrazit náhled na GitHubu",
+ "previewOnGitHub": "Zobrazit náhled na GitHubu",
+ "privateCreate": "Vytvořit interně",
+ "saveExtensionData": "Uložit data rozšíření",
+ "selectExtension": "Vybrat rozšíření",
+ "selectSource": "Vybrat zdroj",
+ "show": "zobrazit",
+ "similarIssues": "Podobné problémy",
+ "stepsToReproduce": "Kroky ke zreprodukování problému",
+ "undefinedPlaceholder": "Zadejte prosím název",
+ "unknown": "Nevím",
+ "vscode": "Visual Studio Code",
+ "vscodePlaceholder": "Například: Workbench nemá panel problémů."
+ },
+ "vs/workbench/contrib/issue/browser/issue.contribution": {
+ "statusUnsupported": "Argument --status ještě není v prohlížečích podporovaný."
+ },
+ "vs/workbench/contrib/issue/browser/issueFormService": {
+ "cancel": "Zrušit",
+ "confirmCloseIssueReporter": "Váš vstup se neuloží. Opravdu chcete toto okno zavřít?",
+ "issueReporterWriteToClipboard": "Dat je příliš mnoho, takže je nelze přímo odeslat na GitHub. Data budou zkopírována do schránky. Vložte je prosím na stránku problému na GitHubu, která se otevře.",
+ "ok": "&&OK",
+ "yes": "&&Ano"
+ },
+ "vs/workbench/contrib/issue/browser/issueQuickAccess": {
+ "contributedIssuePage": "Otevřít stránku rozšíření",
+ "extensions": "Rozšíření",
+ "reportExtensionMarketplace": "Marketplace pro rozšíření"
+ },
+ "vs/workbench/contrib/issue/browser/issueReporterPage": {
+ "acknowledgements": "Potvrzuji, že moje verze VS Code není aktualizovaná a tento problém může být uzavřen.",
+ "chooseExtension": "Rozšíření",
+ "completeInEnglish": "Vyplňte prosím formulář v angličtině.",
+ "descriptionEmptyValidation": "Popis je povinný.",
+ "descriptionTooShortValidation": "Zadejte prosím delší popis.",
+ "details": "Zadejte prosím podrobnosti.",
+ "disableExtensions": "zakázání všech rozšíření a opětovné načtení okna",
+ "disableExtensionsLabelText": "Zkuste problém zreprodukovat po {0}. Pokud se problém znovu projeví, pouze když jsou aktivní rozšíření, pravděpodobně problém způsobuje některé rozšíření.",
+ "downloadExtensionData": "Stáhnout data rozšíření",
+ "extensionData": "Rozšíření neobsahuje další data, která by bylo možné zahrnout.",
+ "extensionWithNoBugsUrl": "Proces nahlašování problémů nemůže vytvářet problémy pro toto rozšíření, protože chybí adresa URL pro hlášení problémů. Podívejte se prosím na stránce tohoto rozšíření na Marketplace, jestli nejsou k dispozici další pokyny.",
+ "extensionWithNonstandardBugsUrl": "Proces nahlašování problémů nemůže vytvářet problémy pro toto rozšíření. Pokud chcete nahlásit problém, navštivte prosím tuto stránku: {0}.",
+ "issueSourceEmptyValidation": "Je vyžadován zdroj problému.",
+ "issueSourceLabel": "Pro",
+ "issueTitleLabel": "Název",
+ "issueTitleRequired": "Zadejte prosím název.",
+ "issueTypeLabel": "Toto je",
+ "reviewGuidanceLabel": "Než tady nahlásíte problém, projděte si naše pokyny . Vyplňte prosím formulář v angličtině.",
+ "sendExperiments": "Zahrnout informace o experimentu A/B",
+ "sendExtensionData": "Zahrnout další informace o rozšíření",
+ "sendExtensions": "Zahrnout moje povolená rozšíření",
+ "sendProcessInfo": "Zahrnout moje aktuálně spuštěné procesy",
+ "sendSystemInfo": "Zahrnout moje systémové informace",
+ "sendWorkspaceInfo": "Zahrnout moje metadata pracovního prostoru",
+ "show": "zobrazit",
+ "titleEmptyValidation": "Název je povinný.",
+ "titleLengthValidation": "Název je příliš dlouhý."
+ },
+ "vs/workbench/contrib/issue/browser/issueReporterService": {
+ "undefinedPlaceholder": "Zadejte prosím název"
+ },
+ "vs/workbench/contrib/issue/browser/issueTroubleshoot": {
+ "I cannot reproduce": "Nemůžu reprodukovat",
+ "Stop": "Zastavit",
+ "This is Bad": "Můžu reprodukovat",
+ "ask to download insiders": "Pokuste se stáhnout a reprodukovat problém v {0} Insiders.",
+ "ask to reproduce issue": "Zkuste prosím problém reprodukovat v {0} Insiders a ověřte, jestli tam problém existuje.",
+ "bad": "Můžu reprodukovat",
+ "detail.start": "Řešení potíží je proces, který vám pomůže identifikovat příčinu problému. Příčinou problému může být chybná konfigurace kvůli rozšíření nebo to může být samotn(ý/á/é) {0}.\r\n\r\nBěhem procesu se okno opakovaně znovu načítá. Pokaždé musíte potvrdit, jestli se problém stále zobrazuje.",
+ "download insiders": "Stáhnout {0} Insiders",
+ "empty.profile": "Řešení potíží je aktivní a dočasně resetovalo vaše konfigurace na výchozí hodnoty. Zkontrolujte, jestli problém stále můžete reprodukovat, a pokračujte výběrem z těchto možností.",
+ "good": "Nemůžu reprodukovat",
+ "issue is in core": "Při řešení potíží jsme zjistili, že se jedná o problém s {0}.",
+ "issue is with configuration": "Při řešení potíží bylo zjištěno, že příčinou problému jsou vaše konfigurace. Nahlaste problém exportováním konfigurací pomocí příkazu „Export Profile“ (Exportovat profil) a nasdílejte soubor v sestavě problému.",
+ "msg": "&&Řešení potíží",
+ "profile.extensions.disabled": "Řešení potíží je aktivní a dočasně zakázalo všechna nainstalovaná rozšíření. Zkontrolujte, jestli problém stále můžete reprodukovat, a pokračujte výběrem z těchto možností.",
+ "report anyway": "Přesto nahlásit problém",
+ "stop": "Zastavit",
+ "title.stop": "Zastavit řešení potíží",
+ "troubleshoot issue": "Řešení potíží",
+ "troubleshootIssue": "Řešení potíží…",
+ "use insiders": "To pravděpodobně znamená, že problém už byl vyřešen a oprava bude k dispozici v nadcházející verzi. Dokud nebude k dispozici nová stabilní verze, můžete bezpečně používat {0} Insiders."
+ },
+ "vs/workbench/contrib/issue/common/issue.contribution": {
+ "miReportIssue": "&&Nahlásit problém",
+ "reportIssueInEnglish": "Nahlásit problém..."
+ },
+ "vs/workbench/contrib/issue/electron-browser/issue.contribution": {
+ "openIssueReporter": "Otevřít hlášení problémů",
+ "reportPerformanceIssue": "Nahlásit problém s výkonem…",
+ "tasksQuickAccessPlaceholder": "Zadejte název rozšíření, pro které chcete vytvořit sestavu."
+ },
+ "vs/workbench/contrib/issue/electron-browser/issueReporterService": {
+ "noCurrentExperiments": "Žádné aktuální experimenty.",
+ "pasteData": "Požadovaná data jsme zkopírovali do schránky, protože byla příliš velká pro odeslání. Vložte prosím tato data ze schránky.",
+ "saveExtensionData": "Uložit data rozšíření",
+ "undefinedPlaceholder": "Zadejte prosím název",
+ "updateAvailable": "Je k dispozici nová verze pro {0}."
+ },
"vs/workbench/contrib/keybindings/browser/keybindings.contribution": {
"toggleKeybindingsLog": "Řešení potíží s přepínáním klávesových zkratek"
},
@@ -6569,10 +10797,9 @@
"noDetection": "Jazyk editoru nebylo možné rozpoznat",
"status.autoDetectLanguage": "Přijmout rozpoznaný jazyk: {0}"
},
- "vs/workbench/contrib/languageStatus/browser/languageStatus.contribution": {
+ "vs/workbench/contrib/languageStatus/browser/languageStatus": {
"aria.1": "{0}, {1}",
"aria.2": "{0}",
- "cat": "Zobrazit",
"langStatus.aria": "Stav jazyka editoru: {0}",
"langStatus.name": "Stav jazyka editoru",
"name.pattern": "{0} (stav jazyka)",
@@ -6580,6 +10807,27 @@
"reset": "Resetovat čítač interakce stavu jazyka",
"unpin": "Odebrat ze Stavového řádku"
},
+ "vs/workbench/contrib/limitIndicator/browser/limitIndicator.contribution": {
+ "colorDecoratorsStatusItem.name": "Stav dekoratéru barev",
+ "colorDecoratorsStatusItem.source": "Dekoratéry barev",
+ "foldingRangesStatusItem.name": "Stav sbalování",
+ "foldingRangesStatusItem.source": "Sbalování",
+ "status.button.configure": "Konfigurovat",
+ "status.limited.details": "jenom {0} z důvodů výkonu",
+ "status.limitedColorDecorators.short": "Dekoratéry barev",
+ "status.limitedFoldingRanges.short": "Rozsahy sbalování"
+ },
+ "vs/workbench/contrib/list/browser/listResizeColumnAction": {
+ "list": "Seznam",
+ "list.resizeColumn": "Změnit velikost sloupce"
+ },
+ "vs/workbench/contrib/list/browser/tableColumnResizeQuickPick": {
+ "table.column.resizeValue.invalidRange": "Zadejte číslo větší než 0 a menší nebo rovno 100.",
+ "table.column.resizeValue.invalidType": "Zadejte prosím celé číslo.",
+ "table.column.resizeValue.placeHolder": "Například 20, 60, 100",
+ "table.column.resizeValue.prompt": "Zadejte prosím šířku sloupce {0} v procentech.",
+ "table.column.selection": "Vyberte sloupec, jehož velikost chcete změnit. Pro filtrování zadejte text."
+ },
"vs/workbench/contrib/localHistory/browser/localHistory": {
"localHistoryIcon": "Ikona pro položku místní historie v zobrazení časové osy.",
"localHistoryRestore": "Ikona pro obnovení obsahu položky místní historie."
@@ -6606,6 +10854,7 @@
"localHistory.rename": "Přejmenovat",
"localHistory.restore": "Obnovit obsah",
"localHistory.restoreViaPicker": "Najít položku k obnovení",
+ "localHistory.restoreViaPickerMenu": "Místní historie: Najít položku k obnovení...",
"localHistory.selectForCompare": "Vybrat pro porovnání",
"localHistoryCompareToFileEditorLabel": "{0} ({1} • {2}) ↔ {3}",
"localHistoryCompareToPreviousEditorLabel": "{0} ({1} • {2}) ↔ {3} ({4} • {5})",
@@ -6621,34 +10870,16 @@
"vs/workbench/contrib/localHistory/browser/localHistoryTimeline": {
"localHistory": "Místní historie"
},
- "vs/workbench/contrib/localHistory/electron-sandbox/localHistoryCommands": {
+ "vs/workbench/contrib/localHistory/electron-browser/localHistoryCommands": {
"openContainer": "Otevřít nadřazenou složku",
"revealInMac": "Zobrazit ve Finderu",
"revealInWindows": "Zobrazit v Průzkumníkovi souborů"
},
- "vs/workbench/contrib/localization/browser/localizationsActions": {
- "available": "K dispozici",
- "chooseLocale": "Vybrat jazyk zobrazení",
- "clearDisplayLanguage": "Vymazat předvolbu jazyka zobrazení",
- "configureLocale": "Konfigurovat jazyk zobrazení",
- "installed": "Nainstalováno"
- },
- "vs/workbench/contrib/localization/electron-sandbox/localeService": {
- "argvInvalid": "Jazyk zobrazení se nedá zapisovat. Otevřete prosím nastavení modulu runtime, opravte chyby nebo varování v něm obsažené, a zkuste to znovu.",
- "installing": "Instaluje se {0} jazyková podpora",
- "openArgv": "Otevřít nastavení modulu runtime",
- "restart": "&&Restartovat",
- "restartDisplayLanguageDetail": "Stisknutím tlačítka Restartovat restartujte {0} a nastavíte jazyk zobrazení na {1}.",
- "restartDisplayLanguageMessage": "Pokud chcete změnit jazyk zobrazení, {0} se musí restartovat."
- },
- "vs/workbench/contrib/localization/electron-sandbox/localization.contribution": {
- "activateLanguagePack": "Aby bylo možné použít VS Code v {0}, je nutné VS Code restartovat.",
- "changeAndRestart": "Změnit jazyk a restartovat",
- "doNotChangeAndRestart": "Neměnit jazyk",
- "doNotRestart": "Nerestartovat",
- "neverAgain": "Znovu nezobrazovat",
- "restart": "Restartovat",
- "updateLocale": "Chcete změnit jazyk uživatelského rozhraní VS Code na {0} a restartovat VS Code?",
+ "vs/workbench/contrib/localization/common/localization.contribution": {
+ "language id": "ID jazyka",
+ "localizations": "Jazykové sady",
+ "localizations language name": "Název jazyka",
+ "localizations localized language name": "Název jazyka (lokalizovaný)",
"vscode.extension.contributes.localizations": "Přidává lokalizace do editoru.",
"vscode.extension.contributes.localizations.languageId": "ID jazyka, do kterého jsou zobrazované řetězce přeloženy",
"vscode.extension.contributes.localizations.languageName": "Název jazyka v angličtině",
@@ -6658,81 +10889,77 @@
"vscode.extension.contributes.localizations.translations.id.pattern": "ID musí být u překladů pro VS Code ve formátu vscode a pro rozšíření ve formátu publisherId.extensionName.",
"vscode.extension.contributes.localizations.translations.path": "Relativní cesta k souboru obsahujícímu překlady pro daný jazyk"
},
- "vs/workbench/contrib/localization/electron-sandbox/minimalTranslations": {
- "installAndRestart": "Nainstalovat a restartovat",
- "installAndRestartMessage": "Pokud chcete jazyk zobrazení změnit na {0}, nainstaluje jazykovou sadu.",
- "searchMarketplace": "Hledat na Marketplace",
- "showLanguagePackExtensions": "Pokud chcete jazyk zobrazení změnit na {0}, zkuste vyhledat jazykové sady na Marketplace."
+ "vs/workbench/contrib/localization/common/localizationsActions": {
+ "available": "K dispozici",
+ "chooseLocale": "Vybrat jazyk zobrazení",
+ "clearDisplayLanguage": "Vymazat předvolbu jazyka zobrazení",
+ "configureLocale": "Konfigurovat jazyk zobrazení",
+ "configureLocaleDescription": "Změní národní prostředí VS Code na základě nainstalovaných jazykových sad. Mezi běžné jazyky patří mimo jiné francouzština, čínština, španělština, japonština, němčina a korejština.",
+ "installed": "Nainstalováno",
+ "moreInfo": "Další informace"
},
- "vs/workbench/contrib/localizations/browser/localizations.contribution": {
- "activateLanguagePack": "Aby bylo možné použít VS Code v {0}, je nutné VS Code restartovat.",
+ "vs/workbench/contrib/localization/electron-browser/localization.contribution": {
"changeAndRestart": "Změnit jazyk a restartovat",
- "doNotChangeAndRestart": "Neměnit jazyk",
- "doNotRestart": "Nerestartovat",
- "neverAgain": "Znovu nezobrazovat",
- "restart": "Restartovat",
- "updateLocale": "Chcete změnit jazyk uživatelského rozhraní VS Code na {0} a restartovat VS Code?",
- "vscode.extension.contributes.localizations": "Přidává lokalizace do editoru.",
- "vscode.extension.contributes.localizations.languageId": "ID jazyka, do kterého jsou zobrazované řetězce přeloženy",
- "vscode.extension.contributes.localizations.languageName": "Název jazyka v angličtině",
- "vscode.extension.contributes.localizations.languageNameLocalized": "Název jazyka v přidaném jazyce",
- "vscode.extension.contributes.localizations.translations": "Seznam překladů přidružených k danému jazyku",
- "vscode.extension.contributes.localizations.translations.id": "ID VS Code nebo rozšíření, pro které je přidáván tento překlad. ID VS Code je vždy vscode a ID rozšíření musí být ve formátu publisherId.extensionName.",
- "vscode.extension.contributes.localizations.translations.id.pattern": "ID musí být u překladů pro VS Code ve formátu vscode a pro rozšíření ve formátu publisherId.extensionName.",
- "vscode.extension.contributes.localizations.translations.path": "Relativní cesta k souboru obsahujícímu překlady pro daný jazyk"
- },
- "vs/workbench/contrib/localizations/browser/localizationsActions": {
- "chooseDisplayLanguage": "Vybrat jazyk zobrazení",
- "configureLocale": "Konfigurovat jazyk zobrazení",
- "installAdditionalLanguages": "Nainstalovat další jazyky...",
- "relaunchDisplayLanguageDetail": "Stisknutím tlačítka Restartovat restartujte {0} a změníte jazyk zobrazení.",
- "relaunchDisplayLanguageMessage": "Změna jazyka zobrazení se projeví až po restartování.",
- "restart": "&&Restartovat"
+ "neverAgain": "Příště už nezobrazovat",
+ "updateLocale": "Chcete změnit jazyk zobrazení {0} na {1} a restartovat?"
},
- "vs/workbench/contrib/localizations/browser/minimalTranslations": {
+ "vs/workbench/contrib/localization/electron-browser/minimalTranslations": {
"installAndRestart": "Nainstalovat a restartovat",
"installAndRestartMessage": "Pokud chcete jazyk zobrazení změnit na {0}, nainstaluje jazykovou sadu.",
"searchMarketplace": "Hledat na Marketplace",
"showLanguagePackExtensions": "Pokud chcete jazyk zobrazení změnit na {0}, zkuste vyhledat jazykové sady na Marketplace."
},
"vs/workbench/contrib/logs/common/logs.contribution": {
- "editSessionsLog": "Upravit Relace",
- "rendererLog": "Okno",
- "show window log": "Zobrazit protokol okna",
- "telemetryLog": "Telemetrie",
- "userDataSyncLog": "Synchronizace nastavení"
+ "remote name": "{0} (vzdálené)",
+ "setDefaultLogLevel": "Set Default Log Level (Nastavit výchozí úroveň protokolu)",
+ "show window log": "Zobrazit protokol okna"
},
"vs/workbench/contrib/logs/common/logsActions": {
- "critical": "Kritické",
+ "all": "Vše",
"current": "Aktuální",
- "debug": "Ladit",
"default": "Výchozí",
- "default and current": "Výchozí a aktuální",
- "err": "Chyba",
- "info": "Informace",
+ "extensionLogs": "Protokoly rozšíření",
"log placeholder": "Vybrat soubor protokolu",
- "off": "Vypnuto",
+ "loggers": "Protokoly",
"openSessionLogFile": "Otevřít soubor protokolu okna (relace)...",
+ "resetLogLevel": "Set as Default Log Level (Nastavit jako výchozí úroveň protokolu)",
"selectLogLevel": "Vybrat úroveň protokolu",
+ "selectLogLevelFor": " {0}: Vyberte úroveň protokolu.",
+ "selectlog": "Nastavit úroveň protokolu",
"sessions placeholder": "Vybrat relaci",
- "setLogLevel": "Nastavit úroveň protokolu...",
- "trace": "Trasování",
- "warn": "Upozornění"
+ "setLogLevel": "Nastavit úroveň protokolu..."
},
- "vs/workbench/contrib/logs/electron-sandbox/logs.contribution": {
- "mainLog": "Hlavní",
- "sharedLog": "Sdíleno"
- },
- "vs/workbench/contrib/logs/electron-sandbox/logsActions": {
+ "vs/workbench/contrib/logs/electron-browser/logsActions": {
"openExtensionLogsFolder": "Otevřít složku protokolů rozšíření",
- "openLogsFolder": "Otevřít složku s logy"
+ "openLogsFolder": "Otevřít složku protokolů"
+ },
+ "vs/workbench/contrib/markdown/browser/markdownSettingRenderer": {
+ "alreadysetBoolFalse": "{0}: {1} – již zakázáno",
+ "alreadysetBoolTrue": "{0}: {1} – již povoleno",
+ "alreadysetNum": "{0}: {1} – již nastaveno na {2}",
+ "alreadysetString": "{0}: {1} – již nastaveno na {2}",
+ "changeSettingTitle": "Zobrazit nebo změnit nastavení",
+ "copySettingId": "Kopírovat ID nastavení",
+ "falseMessage": "Zakázat {0}: {1}",
+ "numberValue": "Nastavit {0}: {1} na {2}",
+ "restorePreviousValue": "Obnovit hodnotu {0}: {1}",
+ "stringValue": "Nastavit {0}: {1} na {2}",
+ "trueMessage": "Povolit {0}: {1}",
+ "viewInSettings": "Zobrazit v Nastavení",
+ "viewInSettingsDetailed": "Zobrazit {0}: {1} v Nastavení"
+ },
+ "vs/workbench/contrib/markdown/common/markdownColors": {
+ "markdownAlertCautionForeground": "Barva popředí pro upozornění typu caution v Markdownu",
+ "markdownAlertImportantForeground": "Barva popředí pro upozornění typu important v Markdownu",
+ "markdownAlertNoteForeground": "Barva popředí pro upozornění typu note v Markdownu",
+ "markdownAlertTipForeground": "Barva popředí pro upozornění typu tip v Markdownu",
+ "markdownAlertWarningForeground": "Barva popředí pro upozornění typu warning v Markdownu"
},
"vs/workbench/contrib/markers/browser/markers.contribution": {
"clearFiltersText": "Vymazat text filtrů",
"collapseAll": "Sbalit vše",
"copyMarker": "Kopírovat",
"copyMessage": "Kopírovat zprávu",
- "filter": "Filtr",
"focusProblemsFilter": "Přepnout fokus na filtr problémů",
"focusProblemsList": "Přepnout fokus na zobrazení problémů",
"manyProblems": "Více než 10 000",
@@ -6740,19 +10967,39 @@
"miMarker": "&&Problémy",
"noProblems": "Žádné problémy",
"problems": "Problémy",
+ "show active file": "Zobrazit pouze aktivní soubor",
+ "show errors": "Zobrazit chyby",
+ "show excluded files": "Zobrazit vyloučené soubory",
+ "show infos": "Zobrazit informace",
"show multiline": "Zobrazit zprávu na více řádcích",
"show singleline": "Zobrazit zprávu na jednom řádku",
+ "show warnings": "Zobrazit upozornění",
"status.problems": "Problémy",
+ "status.problemsVisibility": "Viditelnost problémů",
+ "status.problemsVisibilityOff": "Problémy jsou vypnuté. Kliknutím otevřete nastavení.",
+ "toggleActiveFileDescription": "Umožňuje zobrazit nebo skrýt problémy (chyby, upozornění, informace) pouze z aktivního souboru v zobrazení problémů.",
+ "toggleErrorsDescription": "Umožňuje zobrazit nebo skrýt chyby v zobrazení problémů.",
+ "toggleExcludedFilesDescription": "Umožňuje zobrazit nebo skrýt vyloučené soubory v zobrazení problémů.",
+ "toggleInfosDescription": "Umožňuje zobrazit nebo skrýt informace v zobrazení problémů.",
+ "toggleWarningsDescription": "Umožňuje zobrazit nebo skrýt upozornění v zobrazení problémů.",
"totalErrors": "Chyby: {0}",
"totalInfos": "Informace: {0}",
"totalProblems": "Celkový počet problémů: {0}",
"totalWarnings": "Upozornění: {0}",
"viewAsTable": "Zobrazit jako tabulku",
- "viewAsTree": "Zobrazit jako strom"
+ "viewAsTableDescription": "Umožňuje zobrazit zobrazení problémů jako tabulku.",
+ "viewAsTree": "Zobrazit jako strom",
+ "viewAsTreeDescription": "Umožňuje zobrazit zobrazení problémů jako strom."
+ },
+ "vs/workbench/contrib/markers/browser/markersChatContext": {
+ "chatContext.diagnstic": "Problémy...",
+ "chatContext.diagnstic.placeholder": "Vyberte problém, který chcete připojit.",
+ "markers.panel.allErrors": "Všechny problémy",
+ "markers.panel.at.ln.col.number": "[Řádek {0}, sloupec {1}]"
},
"vs/workbench/contrib/markers/browser/markersFileDecorations": {
"label": "Problémy",
- "markers.showOnFile": "Zobrazit chyby a upozornění pro soubory a složky",
+ "markers.showOnFile": "Zobrazit chyby a upozornění pro soubory a složku Přepisuje {0}, pokud je vypnuté.",
"tooltip.1": "1 problém v tomto souboru",
"tooltip.N": "Počet problémů v tomto souboru: {0}"
},
@@ -6772,10 +11019,7 @@
"vs/workbench/contrib/markers/browser/markersView": {
"No problems filtered": "Zobrazuje se tento počet problémů: {0}.",
"clearFilter": "Vymazat filtry",
- "problems filtered": "Zobrazuje se tento počet problémů: {0} z {1}."
- },
- "vs/workbench/contrib/markers/browser/markersViewActions": {
- "filterIcon": "Ikona pro konfiguraci filtru v zobrazení značek",
+ "problems filtered": "Zobrazuje se tento počet problémů: {0} z {1}.",
"showing filtered problems": "Zobrazuje se stránka {0} z {1}."
},
"vs/workbench/contrib/markers/browser/messages": {
@@ -6813,91 +11057,628 @@
"problems.panel.configuration.showCurrentInStatus": "Pokud je povoleno, zobrazí se aktuální problém na stavovém řádku.",
"problems.panel.configuration.title": "Zobrazení problémů",
"problems.panel.configuration.viewMode": "Určuje výchozí režim zobrazení zobrazení Problémy.",
- "problems.tree.aria.label.error.marker": "Chyba vygenerovaná v {0}: {1} na řádku {2}, znak {3}.{4}",
+ "problems.tree.aria.label.error.marker": "Chyba: {0} na řádku {1}, znak {2}.{3} vygenerováno {4}",
"problems.tree.aria.label.error.marker.nosource": "Chyba: {0} na řádku {1}, znak {2}.{3}",
- "problems.tree.aria.label.info.marker": "Informace vygenerované v {0}: {1} na řádku {2}, znak {3}.{4}",
+ "problems.tree.aria.label.info.marker": "Informace: {0} na řádku {1}, znak {2}.{3} vygenerováno {4}",
"problems.tree.aria.label.info.marker.nosource": "Informace: {0} na řádku {1}, znak {2}.{3}",
- "problems.tree.aria.label.marker": "Problém vygenerovaný v {0}: {1} na řádku {2}, znak {3}.{4}",
+ "problems.tree.aria.label.marker": "Problém: {0} na řádku {1}, znak {2}.{3} vygenerováno {4}",
"problems.tree.aria.label.marker.nosource": "Problém: {0} na řádku {1}, znak {2}.{3}",
"problems.tree.aria.label.marker.relatedInformation": " Tento problém odkazuje na více umístění ({0}).",
"problems.tree.aria.label.relatedinfo.message": "{0} na řádku {1}, znak {2} v {3}",
"problems.tree.aria.label.resource": "Počet problémů v souboru {1} složky {2}: {0}",
- "problems.tree.aria.label.warning.marker": "Upozornění vygenerované v {0}: {1} na řádku {2}, znak {3}.{4}",
+ "problems.tree.aria.label.warning.marker": "Upozornění: {0} na řádku {1}, znak {2}.{3} vygenerovaná {4}",
"problems.tree.aria.label.warning.marker.nosource": "Upozornění: {0} na řádku {1}, znak {2}.{3}",
"problems.view.focus.label": "Přepnout fokus na problémy (chyby, upozornění, informace)",
"problems.view.toggle.label": "Přepnout problémy (chyby, upozornění, informace)"
},
+ "vs/workbench/contrib/mcp/browser/mcp.contribution": {
+ "mcp.quickaccess.add": "Prostředky serveru MCP",
+ "mcp.quickaccess.placeholder": "Vyfiltrovat prostředek MCP",
+ "mcpServer": "Server MCP"
+ },
+ "vs/workbench/contrib/mcp/browser/mcpAddContextContribution": {
+ "mcp.addContext": "Prostředky MCP...",
+ "mcp.addContext.placeholder": "Vyberte prostředek MCP..."
+ },
+ "vs/workbench/contrib/mcp/browser/mcpCommands": {
+ "mcp.actions.resources": "Prostředky",
+ "mcp.actions.sampling": "Vzorkování",
+ "mcp.actions.status": "Stav",
+ "mcp.addConfiguration": "Přidat server...",
+ "mcp.addConfiguration.description": "Nainstaluje nový protokol kontextu modelu do nastavení mcp.json",
+ "mcp.addServer": "Přidat server",
+ "mcp.addServer.description": "Přidat novou konfiguraci serveru",
+ "mcp.autoStart": "Automaticky spouštět servery MCP při odesílání zprávy chatu",
+ "mcp.browseResources": "Procházet prostředky...",
+ "mcp.command.browse": "Servery MCP",
+ "mcp.command.browse.mcp": "Procházet servery MCP",
+ "mcp.command.browse.tooltip": "Procházet servery MCP",
+ "mcp.command.openRemoteUserMcp": "Otevřít konfiguraci vzdáleného uživatele",
+ "mcp.command.openUserMcp": "Otevřít konfiguraci uživatele",
+ "mcp.command.openWorkspaceFolderMcp": "Otevřít konfiguraci MCP složky pracovního prostoru",
+ "mcp.command.openWorkspaceMcp": "Otevřít konfiguraci MCP pracovního prostoru",
+ "mcp.command.restartServer": "Restartovat server",
+ "mcp.command.show.installed": "Zobrazit nainstalované servery",
+ "mcp.command.showConfiguration": "Zobrazit konfiguraci",
+ "mcp.command.showOutput": "Zobrazit výstup",
+ "mcp.command.startServer": "Spustit server",
+ "mcp.command.stopServer": "Zastavit server",
+ "mcp.config": "Zobrazit konfiguraci",
+ "mcp.configAccess": "Konfigurovat přístup k modelu",
+ "mcp.configureSamplingModels": "Konfigurovat SamplingModel",
+ "mcp.configureSamplingModels.ph": "Vyberte modely, ke kterým má {0} přístup prostřednictvím vzorkování MCP.",
+ "mcp.disconnect": "Odpojit účet",
+ "mcp.editStoredInput": "Upravit uložený vstup",
+ "mcp.err.md.multi": "Více serverů MCP se nepodařilo úspěšně spustit:\r\n\r\n{0}",
+ "mcp.err.md.single": "Server MCP {0} se nepodařilo úspěšně spustit.",
+ "mcp.list": "Vypsat servery",
+ "mcp.newTools": "K dispozici jsou nové nástroje ({0})",
+ "mcp.newTools.md.multi": "Servery MCP byly aktualizovány a můžou mít k dispozici nové nástroje:\r\n\r\n{0}",
+ "mcp.newTools.md.single": "Server MCP {0} byl aktualizován a může mít k dispozici nové nástroje.",
+ "mcp.options": "Možnosti serveru",
+ "mcp.resetCachedTools": "Resetovat nástroje uložené v mezipaměti",
+ "mcp.resetTrust": "Obnovit důvěru",
+ "mcp.resources": "Procházet prostředky",
+ "mcp.restart": "Restartovat server",
+ "mcp.samplingLog": "Zobrazit žádosti o vzorkování",
+ "mcp.samplingLog.description": "Zobrazit žádosti o vzorkování pro tento server",
+ "mcp.samplingLog.title": "Vzorkování MCP: {0}",
+ "mcp.selectAction": "Vybrat akci pro {0}",
+ "mcp.selectServer": "Vyberte server MCP",
+ "mcp.servers": "Servery MCP",
+ "mcp.showOutput": "Zobrazit výstup",
+ "mcp.showOutput.description": "Nastavení modelů, které může server používat prostřednictvím vzorkování MCP",
+ "mcp.signOut": "Odhlásit se",
+ "mcp.skipCurrentAutostart": "Přeskočit aktuální automatické spuštění",
+ "mcp.start": "Spustit server",
+ "mcp.startPromptingServer": "Spustit dotazování serveru",
+ "mcp.stop": "Zastavit server",
+ "mcp.toolError": "Chyba při načítání nástrojů (celkem {0})",
+ "mcp.toolRefresh": "Zjišťují se nástroje…"
+ },
+ "vs/workbench/contrib/mcp/browser/mcpCommandsAddConfiguration": {
+ "allow": "Povolit",
+ "cancel": "Zrušit",
+ "install.error": "Chyba při instalaci serveru MCP {0}: {1}",
+ "install.newName": "Zadejte nový název",
+ "install.rename": "Přejmenovat {0}",
+ "install.show": "Zobrazit konfiguraci",
+ "install.start": "Nainstalovat server",
+ "install.title": "Nainstalovat server MCP {0}",
+ "mcp.command.placeholder": "Příkaz, který se má spustit (s volitelnými argumenty)",
+ "mcp.command.title": "Zadejte příkaz",
+ "mcp.confirmPublish": "Nainstalovat {0}{1} z {2}?",
+ "mcp.docker.placeholder": "Název image (např. mcp/imagename)",
+ "mcp.docker.title": "Zadejte název image Dockeru",
+ "mcp.error.openHelpUri": "Otevřít adresu URL nápovědy",
+ "mcp.error.retry": "Vyzkoušejte jiný balíček",
+ "mcp.loading.title": "Načítají se podrobnosti balíčku...",
+ "mcp.npm.placeholder": "Název balíčku (např. @org/balíček)",
+ "mcp.npm.title": "Zadejte název balíčku NPM",
+ "mcp.nuget.placeholder": "Název balíčku (např. Nazev.Balicku)",
+ "mcp.nuget.title": "Zadejte název balíčku NuGet",
+ "mcp.pip.placeholder": "Název balíčku (např. název-balíčku)",
+ "mcp.pip.title": "Zadejte název balíčku Pip",
+ "mcp.serverId.placeholder": "Jedinečný identifikátor pro tento server",
+ "mcp.serverId.title": "Zadejte ID serveru",
+ "mcp.serverType.command": "Příkaz (stdio)",
+ "mcp.serverType.command.description": "Spuštění místního příkazu, který implementuje protokol MCP",
+ "mcp.serverType.copilot": "S asistencí modelu",
+ "mcp.serverType.docker": "Image Dockeru",
+ "mcp.serverType.docker.description": "Nainstalovat z image Dockeru",
+ "mcp.serverType.http": "HTTP (HTTP nebo události odeslané serverem)",
+ "mcp.serverType.http.description": "Připojení ke vzdálenému serveru HTTP, který implementuje protokol MCP",
+ "mcp.serverType.manual": "Ruční instalace",
+ "mcp.serverType.npm": "Balíček NPM",
+ "mcp.serverType.npm.description": "Instalace z názvu balíčku NPM",
+ "mcp.serverType.nuget": "Balíček NuGet",
+ "mcp.serverType.nuget.description": "Instalace z názvu balíčku NuGet",
+ "mcp.serverType.pip": "Balíček Pip",
+ "mcp.serverType.pip.description": "Instalace z názvu balíčku Pip",
+ "mcp.serverType.placeholder": "Zvolte typ serveru MCP, který se má přidat",
+ "mcp.servers.browse": "Procházet servery MCP...",
+ "mcp.servers.discovery": "Přidat z jiné aplikace...",
+ "mcp.target..remote.description": "K dispozici na tomto vzdáleném počítači, běží na {0}",
+ "mcp.target.placeholder": "Vyberte cíl konfigurace",
+ "mcp.target.remote": "Vzdálené",
+ "mcp.target.title": "Přidat server MCP",
+ "mcp.target.user": "Globální",
+ "mcp.target.user.description": "K dispozici ve všech pracovních prostorech, běží místně",
+ "mcp.target.workspace": "Pracovní prostor",
+ "mcp.target.workspace.description": "K dispozici v tomto pracovním prostoru, běží místně",
+ "mcp.target.workspace.description.remote": "K dispozici v tomto pracovním prostoru, běží na {0}",
+ "mcp.url.placeholder": "Adresa URL serveru MCP (např. http://localhost:3000)",
+ "mcp.url.title": "Zadejte adresu URL serveru"
+ },
+ "vs/workbench/contrib/mcp/browser/mcpElicitationService": {
+ "mcp.elicit.accept": "Odpovědět",
+ "mcp.elicit.cancel": "Zrušit",
+ "mcp.elicit.enum.none": "Žádné",
+ "mcp.elicit.enum.none.description": "Žádný výběr",
+ "mcp.elicit.give": "Reakce",
+ "mcp.elicit.reject": "Zrušit",
+ "mcp.elicit.source": "Server MCP ({0})",
+ "mcp.elicit.title": "Žádost o vstup",
+ "mcp.elicit.url.instruction": "Chcete otevřít tuto adresu URL?",
+ "mcp.elicit.url.instruction2": "Tím se otevře {0}",
+ "mcp.elicit.url.open": "Otevřít {0}",
+ "mcp.elicit.url.open2": "Otevřít adresu URL",
+ "mcp.elicit.url.title": "Vyžaduje se autorizace",
+ "mcp.elicit.useDefault": "Výchozí hodnota",
+ "mcp.elicit.validation.date": "Zadejte prosím platné datum (RRRR-MM-DD).",
+ "mcp.elicit.validation.dateTime": "Zadejte prosím platné datum a čas.",
+ "mcp.elicit.validation.email": "Zadejte prosím platnou e-mailovou adresu.",
+ "mcp.elicit.validation.integer": "Zadejte platné celé číslo.",
+ "mcp.elicit.validation.maxLength": "Maximální délka je {0}.",
+ "mcp.elicit.validation.maximum": "Maximální hodnota je {0}.",
+ "mcp.elicit.validation.minLength": "Minimální délka je {0}.",
+ "mcp.elicit.validation.minimum": "Minimální hodnota je {0}.",
+ "mcp.elicit.validation.number": "Zadejte prosím platné číslo.",
+ "mcp.elicit.validation.uri": "Zadejte prosím platný identifikátor URI.",
+ "msg.subtitle": "{0} (server MCP)",
+ "optional": "Volitelné"
+ },
+ "vs/workbench/contrib/mcp/browser/mcpLanguageFeatures": {
+ "cancel": "Zrušit",
+ "clear": "Vymazat",
+ "clearAll": "Vymazat vše",
+ "edit": "Upravit",
+ "mcp.debug": "Ladit",
+ "mcp.restart": "Restartovat",
+ "mcp.server.more": "Další…",
+ "mcp.start": "Spustit",
+ "mcp.stop": "Zastavit",
+ "mcp.variableNotFound": "Proměnná {0} nebyla nalezena. Měli jste na mysli ${{1}}?",
+ "server.error": "Chyba",
+ "server.promptcount": "Výzvy: {0}",
+ "server.running": "Spuštěno",
+ "server.starting": "Spouštění",
+ "server.toolCount": "Nástroje: {0}"
+ },
+ "vs/workbench/contrib/mcp/browser/mcpMigration": {
+ "mcp.migration.openRemoteConfig": "Otevřít konfiguraci MCP vzdáleného uživatele",
+ "mcp.migration.openUserConfig": "Otevřít konfiguraci MCP uživatele",
+ "mcp.migration.remoteConfigFound": "Servery MCP by už neměly být nakonfigurované v nastaveních vzdáleného uživatele. Místo toho použijte vyhrazenou konfiguraci MCP.",
+ "mcp.migration.update": "Aktualizovat hned",
+ "mcp.migration.userConfigFound": "Servery MCP by už neměly být nakonfigurované v uživatelských nastaveních. Místo toho použijte vyhrazenou konfiguraci MCP."
+ },
+ "vs/workbench/contrib/mcp/browser/mcpPromptArgumentPick": {
+ "loading": "Načítání...",
+ "mcp.arg.activeFile": "Aktivní soubor",
+ "mcp.arg.activeFiles": "Aktivní soubor",
+ "mcp.arg.asCommand": "Příkaz Spustit jako",
+ "mcp.arg.asCommand.description": "Vloží výstup příkazu jako argument výzvy.",
+ "mcp.arg.asText": "Vložit jako text",
+ "mcp.arg.files": "Soubory",
+ "mcp.arg.required": "Tento argument je povinný.",
+ "mcp.arg.selectedText": "Vybraný text",
+ "mcp.arg.selectedText.multiLine": "Počet řádků: {0}",
+ "mcp.arg.selectedText.singleLine": "řádek {0}",
+ "mcp.arg.suggestions": "Návrhy",
+ "mcp.prompt.pick.title": "Hodnota pro: {0}",
+ "mcp.terminal.name": "Terminál MCP",
+ "optional": "Volitelné"
+ },
+ "vs/workbench/contrib/mcp/browser/mcpResourceQuickAccess": {
+ "goBack": "Přejít zpět ↩",
+ "mcp.quickaccess.attach": "Připojit k chatu",
+ "mcp.quickaccess.placeholder": "Vyhledat prostředky",
+ "mcp.resource.template": "Šablona prostředku: {0}",
+ "mcp.resource.template.empty": "",
+ "mcp.resource.template.notFound": "Prostředek {0} nebyl nalezen.",
+ "mcp.resource.template.optional": "Volitelné",
+ "mcp.resource.template.placeholder": "Hodnota pro ${0} v {1}"
+ },
+ "vs/workbench/contrib/mcp/browser/mcpServerActions": {
+ "config": "Zobrazit konfiguraci",
+ "configJson": "Zobrazit konfiguraci (JSON)",
+ "install": "Nainstalovat",
+ "install in workspace folder": "Složka pracovního prostoru",
+ "installInRemote": "Nainstalovat (vzdáleně)",
+ "installInRemoteLabel": "Nainstalovat na server {0}",
+ "installInWorkspace": "Nainstalovat v pracovním prostoru",
+ "installing": "Probíhá instalace",
+ "manage": "Spravovat",
+ "mcp.configAccess": "Konfigurovat přístup k modelu",
+ "mcp.disconnect": "Odpojit účet",
+ "mcp.resources": "Procházet prostředky",
+ "mcp.samplingLog": "Zobrazit žádosti o vzorkování",
+ "mcp.samplingLog.title": "Vzorkování MCP: {0}",
+ "mcp.signOut": "Odhlásit se",
+ "mcp.target.title": "Zvolte, kam se má server MCP nainstalovat",
+ "mcp.target.workspace": "Pracovní prostor",
+ "mcpServerInstallation": "Instalace serveru MCP {0} byla spuštěna. Editor je teď otevřený s dalšími podrobnostmi o tomto serveru MCP.",
+ "output": "Zobrazit výstup",
+ "restart": "Restartovat server",
+ "start": "Spustit server",
+ "stop": "Zastavit server",
+ "uninstall": "Odinstalovat"
+ },
+ "vs/workbench/contrib/mcp/browser/mcpServerEditor": {
+ "Install Info": "Instalace",
+ "Marketplace Info": "Marketplace",
+ "Readme title": "Soubor Readme",
+ "Version": "Verze",
+ "arguments": "Argumenty:",
+ "command": "Příkaz:",
+ "configuration": "Konfigurace",
+ "configurationtooltip": "Podrobnosti o konfiguraci serveru",
+ "details": "Podrobnosti",
+ "detailstooltip": "Podrobnosti o rozšíření získané ze souboru README.md rozšíření",
+ "environmentVariables": "Proměnné prostředí:",
+ "headers": "Záhlaví:",
+ "id": "Identifikátor",
+ "last updated": "Naposledy vydáno",
+ "manifest": "Manifest",
+ "manifesttooltip": "Podrobnosti manifestu serveru",
+ "name": "Název rozšíření",
+ "noConfig": "Pro tento server MCP není k dispozici žádná konfigurace.",
+ "noManifest": "Pro tento server MCP není k dispozici žádný manifest.",
+ "noReadme": "K dispozici není žádný soubor README.",
+ "packageName": "Balíček:",
+ "packagearguments": "Argumenty balíčku:",
+ "packages": "Balíčky",
+ "published": "Publikováno",
+ "remotes": "Vzdálené",
+ "repository": "Úložiště",
+ "resources": "Prostředky",
+ "runtimeargs": "Argumenty modulu runtime:",
+ "serverName": "Název:",
+ "serverType": "Typ:",
+ "support": "Kontaktovat podporu",
+ "tags": "Značky",
+ "transport": "Přenos:",
+ "url": "Adresa URL:"
+ },
+ "vs/workbench/contrib/mcp/browser/mcpServerEditorInput": {
+ "extensionsInputName": "Server MCP: {0}",
+ "mcpServerEditorLabelIcon": "Ikona editoru MCP Serveru"
+ },
+ "vs/workbench/contrib/mcp/browser/mcpServerIcons": {
+ "licenseIcon": "Ikona zobrazená spolu se stavem licence.",
+ "mcpServer": "Ikona použitá pro server MCP",
+ "mcpServerRemoteIcon": "Ikona označující, že server MCP je pro obor vzdáleného uživatele.",
+ "mcpServerWorkspaceIcon": "Ikona označující, že server MCP je pro obor pracovního prostoru.",
+ "starredIcon": "Ikona zobrazená spolu se stavem označeným hvězdičkou"
+ },
+ "vs/workbench/contrib/mcp/browser/mcpServersView": {
+ "mcp": "Servery MCP",
+ "mcp servers": "Servery MCP",
+ "mcp-installed": "Servery MCP – nainstalováno",
+ "mcp.gallery.enableDialog.cancel": "Zrušit",
+ "mcp.gallery.enableDialog.enable": "Povolit",
+ "mcp.gallery.enableDialog.setting": "Tato funkce je aktuálně ve verzi Preview. Můžete ji kdykoli zakázat pomocí nastavení {0}.",
+ "mcp.gallery.enableDialog.title": "Chcete povolit Marketplace serverů MCP?",
+ "mcp.welcome.descriptionWithLink": "Procházejte a instalujte [servery MCP (Model Context Protocol)](https://code.visualstudio.com/docs/copilot/customization/mcp-servers) přímo z VS Code a rozšiřte režim agenta o další nástroje pro připojení k databázím, vyvolávání rozhraní API a provádění specializovaných úloh.",
+ "mcp.welcome.enableGalleryButton": "Povolit Marketplace serverů MCP",
+ "mcp.welcome.settings.tooltip": "Otevřít nastavení",
+ "mcp.welcome.title": "Servery MCP",
+ "no extensions found": "Nenašly se žádné servery MCP."
+ },
+ "vs/workbench/contrib/mcp/browser/mcpServerWidgets": {
+ "mcpIconStarForeground": "Barva ikony pro MCP s označením hvězdičkou",
+ "publisher": "Vydavatel ({0})",
+ "remote user extension": "Vzdálený server MCP",
+ "verified publisher": "Tento vydavatel ověřil vlastnictví u: {0}",
+ "workspace extension": "Server MCP pracovního prostoru"
+ },
+ "vs/workbench/contrib/mcp/browser/mcpWorkbenchService": {
+ "cannot be installed": "Server MCP {0} nelze nainstalovat, protože není v této instalaci k dispozici.",
+ "disabled - all not allowed": "Tento MCP Server je zakázán, protože servery MCP jsou nakonfigurovány tak, aby byly zakázány v Editoru. Zkontrolujte prosím [nastavení]({0}).",
+ "disabled - some not allowed": "Tento server MCP je zakázán, protože je nakonfigurován tak, aby byl zakázán v Editoru. Zkontrolujte prosím [nastavení]({0}).",
+ "mcp.configuration.userLocalValue": "Globální v: {0}",
+ "not an extension": "Zadaný objekt není server mcp.",
+ "overwriting": "Přepisuje se server MCP {0} z {1} pomocí {2}."
+ },
+ "vs/workbench/contrib/mcp/common/discovery/extensionMcpDiscovery": {
+ "invalidData": "Očekávalo se pole kolekcí MCP.",
+ "invalidId": "Očekávalo se, že id bude neprázdný řetězec.",
+ "invalidLabel": "Očekávalo se, že label bude neprázdný řetězec.",
+ "invalidWhen": "Očekávalo se, že when bude neprázdný řetězec."
+ },
+ "vs/workbench/contrib/mcp/common/discovery/nativeMcpDiscoveryAbstract": {
+ "onRemoteLabel": " v {0}"
+ },
+ "vs/workbench/contrib/mcp/common/mcpConfiguration": {
+ "app.mcp.args.command": "Argumenty předané serveru.",
+ "app.mcp.dev": "Byl povolen režim vývoje pro server. Pokud existuje, dojde ke včasnému spuštění serveru a výstup bude zahrnut do jeho výstupu. Vlastnosti uvnitř objektu dev mohou konfigurovat další chování.",
+ "app.mcp.dev.debug": "Pokud je nastaveno, ladí server MCP pomocí daného modulu runtime při jeho spuštění.",
+ "app.mcp.dev.debug.debugpyPath": "Cesta ke spustitelnému souboru debugpy",
+ "app.mcp.dev.debug.type.node": "Ladění serveru MCP pomocí Node.js",
+ "app.mcp.dev.debug.type.python": "Ladění serveru MCP pomocí Pythonu a debugpy",
+ "app.mcp.dev.watch": "Vzor glob nebo seznam vzorů glob relativně ke složce pracovního prostoru, která se má sledovat Server MCP se po změně těchto souborů restartuje.",
+ "app.mcp.env.command": "Proměnné prostředí předané na server.",
+ "app.mcp.envFile.command": "Cesta k souboru obsahujícímu proměnné prostředí pro server",
+ "app.mcp.json.command": "Příkaz pro spuštění serveru.",
+ "app.mcp.json.cwd": "Pracovní adresář pro příkaz serveru Při spuštění v pracovním prostoru se jako výchozí použije složka pracovního prostoru.",
+ "app.mcp.json.headers": "Na server byly odeslány další hlavičky.",
+ "app.mcp.json.title": "Servery protokolu kontextu modelu",
+ "app.mcp.json.type": "Typ serveru.",
+ "app.mcp.json.url": "Adresa URL koncového bodu Streamable HTTP nebo SSE.",
+ "app.mcp.json.url.pattern": "Adresa URL musí začínat na http:// nebo https://.",
+ "id": "ID",
+ "mcp.discovery.source.claude-desktop": "Claude Desktop",
+ "mcp.discovery.source.claude-desktop.config": "Konfigurace Claude Desktopu (claude_desktop_config.json)",
+ "mcp.discovery.source.cursor-global": "Kurzor (globální)",
+ "mcp.discovery.source.cursor-global.config": "Globální konfigurace kurzoru (~/.cursor/mcp.json)",
+ "mcp.discovery.source.cursor-workspace": "Kurzor (pracovní prostor)",
+ "mcp.discovery.source.cursor-workspace.config": "Konfigurace pracovního prostoru kurzoru (.cursor/mcp.json)",
+ "mcp.discovery.source.windsurf": "Windsurf",
+ "mcp.discovery.source.windsurf.config": "Konfigurace windsurfu (~/.codeium/windsurf/mcp_config.json)",
+ "mcpServerDefinitionProviders": "Servery MCP",
+ "name": "Název",
+ "vscode.extension.contributes.mcp": "Přidává servery s protokolem kontextu modelu. Uživatelé této funkce by také měli používat vscode.lm.registerMcpServerDefinitionProvider.",
+ "vscode.extension.contributes.mcp.id": "Jedinečné ID kolekce.",
+ "vscode.extension.contributes.mcp.label": "Zobrazovaný název kolekce.",
+ "vscode.extension.contributes.mcp.when": "Podmínka, která musí být true, aby bylo možné tuto kolekci povolit"
+ },
+ "vs/workbench/contrib/mcp/common/mcpContextKeys": {
+ "mcp.hasServersWithErrors.description": "Udává, zda existují nějaké servery MCP s chybami.",
+ "mcp.hasUnknownTools.description": "Určuje, zda existují servery MCP s neznámými nástroji.",
+ "mcp.serverCount.description": "Kontextový klíč s počtem registrovaných serverů MCP",
+ "mcp.toolsCount.description": "Kontextový klíč s počtem registrovaných nástrojů MCP"
+ },
+ "vs/workbench/contrib/mcp/common/mcpDevMode": {
+ "mcp.debug.nodeBinReq": "Aby bylo možné povolit ladění, musí být server MCP spuštěn se spustitelným souborem „node“. Byl ale spuštěn s: „{0}“.",
+ "mcp.debug.pythonBinReq": "Aby bylo možné povolit ladění, musí být server MCP spuštěn se spustitelným souborem „python“. Byl ale spuštěn s: „{0}“."
+ },
+ "vs/workbench/contrib/mcp/common/mcpLanguageModelToolContribution": {
+ "mcp.tool.warning": "Poznámka: Servery MCP nebo škodlivý konverzační obsah se můžou pokusit zneužít {0} prostřednictvím nástrojů.",
+ "mcp.toolset": "{0}: Všechny nástroje",
+ "msg.ran": "Spuštěno: {0} ",
+ "msg.run": "Běží: {0}",
+ "msg.subtitle": "{0} (server MCP)",
+ "msg.title": "Spustit {0}"
+ },
+ "vs/workbench/contrib/mcp/common/mcpRegistry": {
+ "mcp.launchError": "Při spouštění {0} došlo k chybě: {1}",
+ "mcp.launchError.openConfig": "Otevřít konfiguraci",
+ "mcp.trust.details": "Server MCP {0} byl aktualizován. Servery MCP můžou do relace chatu přidávat kontext, což může vést k neočekávanému chování. Chcete důvěřovat tomuto serveru a spustit ho?",
+ "mcp.trust.detailsMulti": "Bylo zjištěno několik aktualizovaných serverů MCP:\r\n\r\n{0}\r\n\r\n Servery MCP můžou do relace chatu přidávat kontext, což může vést k neočekávanému chování. Chcete těmto serverům důvěřovat a spustit je?",
+ "mcp.trust.no": "Nedůvěřovat",
+ "mcp.trust.pick": "Vybrat důvěryhodné",
+ "mcp.trust.yes": "Důvěřovat",
+ "trustFromExt": "z {0}",
+ "trustTitleWithOrigin": "Chcete důvěřovat serveru MCP {0} a spustit ho?",
+ "trustTitleWithOriginMulti": "Chcete důvěřovat serverům MCP {0} a spustit je?"
+ },
+ "vs/workbench/contrib/mcp/common/mcpSamplingLog": {
+ "mcp.sampling.rpd": "Celkový počet požadavků za posledních 7 dnů: {0}"
+ },
+ "vs/workbench/contrib/mcp/common/mcpSamplingService": {
+ "cancel": "Zrušit",
+ "configure": "Nakonfigurovat",
+ "mcp.sampling.allow.always": "Vždy",
+ "mcp.sampling.allow.inSession": "Povolit v této relaci",
+ "mcp.sampling.allow.never": "Nikdy",
+ "mcp.sampling.allow.notNow": "Teď ne",
+ "mcp.sampling.allowDuringChat.desc": "Server MCP {0} vydal žádost o volání jazykového modelu. Chcete mu povolit provádění žádostí během chatu?",
+ "mcp.sampling.allowDuringChat.title": "Chcete povolit vytváření požadavků na LLM pomocí nástrojů MCP z {0}?",
+ "mcp.sampling.allowOutsideChat.desc": "Server MCP {0} vydal žádost o volání jazykového modelu. Chcete mu povolit provádění žádostí mimo volání nástroje během chatu?",
+ "mcp.sampling.allowOutsideChat.title": "Povolit serveru MCP {0} provádět požadavky na LLM?",
+ "mcp.sampling.needsModels": "Server MCP {0} aktivoval požadavek na jazykový model, ale nemá žádné modely na seznamu povolených."
+ },
+ "vs/workbench/contrib/mcp/common/mcpServer": {
+ "mcp.command.showOutput": "Zobrazit výstup",
+ "mcpBadSchema": "Server MCP {0} obsahuje nástroje s neplatnými parametry, které budou vynechány.",
+ "mcpBadSchema.show": "Zobrazit",
+ "mcpBadSchema.tool": "Nástroj {0} má neplatné parametry JSON:",
+ "mcpDebugPyHelp": "Příkaz {0} nebyl nalezen. Cestu k debugpy můžete zadat v parametru dev.debug.debugpyPath.",
+ "mcpServerError": "Server MCP {0} se nepodařilo spustit: {1}",
+ "mcpServerInstall": "Nainstalovat {0}",
+ "mcpServerNotFound": "Příkaz {0} potřebný k tomu, aby bylo možné spustit {1}, nebyl nalezen.",
+ "mcpViewDocs": "Zobrazit dokumentaci"
+ },
+ "vs/workbench/contrib/mcp/common/mcpServerConnection": {
+ "mcpServer.starting": "Spouští se server {0}",
+ "mcpServer.state": "Stav připojení: {0}",
+ "mcpServer.stopping": "Zastavuje se server {0}"
+ },
+ "vs/workbench/contrib/mcp/common/mcpTypes": {
+ "mcpstate.error": "Chyba {0}",
+ "mcpstate.running": "Spuštěno",
+ "mcpstate.starting": "Spouštění",
+ "mcpstate.stopped": "Zastaveno"
+ },
"vs/workbench/contrib/mergeEditor/browser/commands/commands": {
"layout.column": "Rozložení sloupce",
"layout.mixed": "Smíšené rozložení",
- "merge.acceptAllInput1": "Accept All Changes from Left",
- "merge.acceptAllInput2": "Accept All Changes from Right",
- "merge.goToNextConflict": "Přejít na další konflikt",
- "merge.goToPreviousConflict": "Přejít na předchozí konflikt",
+ "layout.showBase": "Zobrazit základ",
+ "layout.showBaseCenter": "Zobrazit střed báze",
+ "layout.showBaseTop": "Zobrazit horní část báze",
+ "merge.acceptAllInput1": "Přijmout všechny příchozí změny zleva",
+ "merge.acceptAllInput2": "Přijmout všechny aktuální změny zprava",
+ "merge.goToNextUnhandledConflict": "Přejít na další neošetřený konflikt",
+ "merge.goToPreviousUnhandledConflict": "Přejít na předchozí neošetřený konflikt",
"merge.openBaseEditor": "Otevřít základní soubor",
"merge.toggleCurrentConflictFromLeft": "Přepnout aktuální konflikt zleva",
"merge.toggleCurrentConflictFromRight": "Přepnout aktuální konflikt zprava",
"mergeEditor": "Editor slučování",
+ "mergeEditor.acceptAllCombination": "Přijmout všechny kombinace",
+ "mergeEditor.acceptMerge": "Dokončit sloučení",
+ "mergeEditor.acceptMerge.unhandledConflicts.accept": "&&Dokončit s konflikty",
+ "mergeEditor.acceptMerge.unhandledConflicts.detail": "Soubor obsahuje neošetřené konflikty.",
+ "mergeEditor.acceptMerge.unhandledConflicts.message": "Chcete dokončit sloučení {0}?",
"mergeEditor.compareInput1WithBase": "Porovnat vstup 1 se základem",
"mergeEditor.compareInput2WithBase": "Porovnat vstup 2 se základem",
"mergeEditor.compareWithBase": "Porovnat se základem",
+ "mergeEditor.resetChoice": "Resetovat volbu na Zavřít s konflikty",
+ "mergeEditor.resetResultToBaseAndAutoMerge": "Obnovit výsledek",
+ "mergeEditor.resetResultToBaseAndAutoMerge.short": "Resetovat",
+ "mergeEditor.toggleBetweenInputs": "Přepnout mezi vstupy editoru sloučení",
"openfile": "Otevřít soubor",
+ "showNonConflictingChanges": "Zobrazit nekonfliktní změny",
"title": "Otevřít editor slučování"
},
"vs/workbench/contrib/mergeEditor/browser/commands/devCommands": {
"merge.dev.copyState": "Kopírovat stav editoru sloučení jako JSON",
- "merge.dev.openState": "Otevřít stav editoru sloučení z JSON",
- "mergeEditor.enterJSON": "Zadat JSON",
+ "merge.dev.loadContentsFromFolder": "Načíst stav editoru sloučení ze složky",
+ "merge.dev.saveContentsToFolder": "Uložit stav editoru sloučení do složky",
+ "mergeEditor": "Editor sloučení (vývojář)",
"mergeEditor.name": "Editor slučování",
"mergeEditor.noActiveMergeEditor": "Žádný aktivní editor sloučení",
- "mergeEditor.successfullyCopiedMergeEditorContents": "Stav editoru sloučení se úspěšně zkopíroval"
+ "mergeEditor.selectFolderToSaveTo": "Vyberte složku, do které chcete soubor uložit.",
+ "mergeEditor.successfullyCopiedMergeEditorContents": "Stav editoru sloučení se úspěšně zkopíroval",
+ "mergeEditor.successfullySavedMergeEditorContentsToFolder": "Stav editoru sloučení se úspěšně uložil do složky."
},
"vs/workbench/contrib/mergeEditor/browser/mergeEditor.contribution": {
+ "diffAlgorithm.advanced": "Používá pokročilý rozdílový algoritmus.",
+ "diffAlgorithm.legacy": "Používá starší rozdílový algoritmus.",
"name": "Editor slučování"
},
+ "vs/workbench/contrib/mergeEditor/browser/mergeEditorAccessibilityHelp": {
+ "msg1": "Jste v editoru slučování.",
+ "msg2": "Mezi konflikty slučování můžete přecházet pomocí příkazů Přejít na další neošetřený konflikt{0} a Přejít na předchozí neošetřený konflikt{1}.",
+ "msg3": "Spusťte příkaz Editor sloučení: přijmout všechny příchozí změny zleva{0} a Editor sloučení: přijmout všechny aktuální změny zprava{1}",
+ "msg4": "Dokončete sloučení{0}.",
+ "msg5": "Přepnout mezi vstupy editoru sloučení, příchozí a aktuální změny {0}."
+ },
"vs/workbench/contrib/mergeEditor/browser/mergeEditorInput": {
- "name": "Slučování: {0}",
- "unhandledConflicts.cancel": "Zrušit",
- "unhandledConflicts.detail1": "Konflikty sloučení v tomto editoru zůstanou neošetřené.",
- "unhandledConflicts.detailN": "Konflikty sloučení v {0} editorech zůstanou neošetřené.",
- "unhandledConflicts.discard": "Zahodit změny sloučení",
- "unhandledConflicts.ignore": "Pokračovat s konflikty",
- "unhandledConflicts.msg": "Chcete pokračovat s neošetřenými konflikty?",
- "unhandledConflicts.saveAndIgnore": "Uložit a pokračovat s konflikty"
+ "mergeEditor.input1": "Příchozí, levý vstup",
+ "mergeEditor.input2": "Aktuální, pravý vstup",
+ "mergeEditor.result": "Výsledek sloučení",
+ "name": "Slučování: {0}"
+ },
+ "vs/workbench/contrib/mergeEditor/browser/mergeEditorInputModel": {
+ "acceptMerge": "&&Přijmout sloučení",
+ "detail1": "Pokud výsledek sloučení neuložíte, ztratí se.",
+ "detail1Conflicts": "Soubor obsahuje neošetřené konflikty. Pokud výsledek sloučení neuložíte, přijdete o něj.",
+ "detailN": "Pokud výsledky sloučení neuložíte, ztratí se.",
+ "detailNConflicts": "Soubory obsahují neošetřené konflikty. Pokud výsledky sloučení neuložíte, ztratí se.",
+ "discard": "Ne&&ukládat",
+ "merge-editor.source": "Před vyřešením konfliktů v editoru sloučení",
+ "message1": "Chcete zachovat výsledek sloučení {0}?",
+ "messageN": "Chcete zachovat výsledek sloučení {0} souborů?",
+ "noMoreWarn": "Tento dotaz příště nezobrazovat",
+ "save": "&&Uložit",
+ "saveTempFile.detail": "Tím se sloučí výsledek s původním souborem a zavře se editor sloučení.",
+ "saveTempFile.message": "Chcete přijmout výsledek sloučení?",
+ "saveWithConflict": "&&Uložit s konflikty",
+ "workspace.close": "&&Zavřít",
+ "workspace.closeWithConflicts": "&&Zavřít s konflikty",
+ "workspace.detail1.handled": "Pokud své změny neuložíte, ztratí se.",
+ "workspace.detail1.unhandled": "Soubor obsahuje neošetřené konflikty. Pokud změny neuložíte, přijdete o ně.",
+ "workspace.detail1.unhandled.nonDirty": "Soubor obsahuje neošetřené konflikty.",
+ "workspace.detailN.handled": "Pokud své změny neuložíte, ztratí se.",
+ "workspace.detailN.unhandled": "Soubory obsahují neošetřené konflikty. Pokud změny neuložíte, přijdete o ně.",
+ "workspace.detailN.unhandled.nonDirty": "Soubory obsahují neošetřené konflikty.",
+ "workspace.doNotSave": "Ne&&ukládat",
+ "workspace.message1": "Chcete uložit změny, které jste provedli v souboru {0}?",
+ "workspace.message1.nonDirty": "Chcete zavřít editor sloučení pro {0}?",
+ "workspace.messageN": "Chcete uložit změny, které jste provedli v {0} souborech?",
+ "workspace.messageN.nonDirty": "Chcete zavřít {0} slučovací editory?",
+ "workspace.save": "&&Uložit",
+ "workspace.saveWithConflict": "&&Uložit s konflikty"
+ },
+ "vs/workbench/contrib/mergeEditor/browser/mergeMarkers/mergeMarkersController": {
+ "conflictingLine": "1 konfliktní řádek",
+ "conflictingLines": "{0} Konfliktní řádky"
+ },
+ "vs/workbench/contrib/mergeEditor/browser/model/mergeEditorModel": {
+ "setInputHandled": "Nastavit zpracování vstupu",
+ "undoMarkAsHandled": "Vrátit zpět označení jako zpracované"
},
"vs/workbench/contrib/mergeEditor/browser/view/colors": {
"mergeEditor.change.background": "Barva pozadí pro změny.",
"mergeEditor.change.word.background": "Barva pozadí pro změny slov.",
+ "mergeEditor.changeBase.background": "Barva pozadí pro změny v bázi.",
+ "mergeEditor.changeBase.word.background": "Barva pozadí v bázi pro změny slov v bázi.",
"mergeEditor.conflict.handled.minimapOverViewRuler": "Barva popředí pro změny ve vstupu 1.",
"mergeEditor.conflict.handledFocused.border": "Barva ohraničení zpracovaných konfliktů s fokusem.",
"mergeEditor.conflict.handledUnfocused.border": "Barva ohraničení zpracovaných konfliktů bez fokusu.",
+ "mergeEditor.conflict.input1.background": "Barva pozadí dekorace ve vstupu 1.",
+ "mergeEditor.conflict.input2.background": "Barva pozadí dekorace ve vstupu 2.",
"mergeEditor.conflict.unhandled.minimapOverViewRuler": "Barva popředí pro změny ve vstupu 1.",
"mergeEditor.conflict.unhandledFocused.border": "Barva ohraničení nezpracovaných konfliktů s fokusem.",
- "mergeEditor.conflict.unhandledUnfocused.border": "Barva ohraničení nezpracovaných konfliktů bez fokusu."
+ "mergeEditor.conflict.unhandledUnfocused.border": "Barva ohraničení nezpracovaných konfliktů bez fokusu.",
+ "mergeEditor.conflictingLines.background": "Pozadí textu „Konfliktní řádky“."
+ },
+ "vs/workbench/contrib/mergeEditor/browser/view/conflictActions": {
+ "accept": "Přijmout {0}",
+ "acceptBoth": "Přijmout kombinaci",
+ "acceptBoth0First": "Accept Combination ({0} First) (Přijmout kombinaci (nejdříve {0}))",
+ "acceptBothTooltip": "Umožňuje přijmout automatickou kombinaci obou stran ve výsledném dokumentu.",
+ "acceptTooltip": "Přijměte {0} z výsledného dokumentu.",
+ "append": "Připojit {0}",
+ "appendTooltip": "Připojit {0} k výslednému dokumentu.",
+ "combine": "Přijmout kombinaci",
+ "ignore": "Ignorovat",
+ "manualResolution": "Ruční rozlišení",
+ "manualResolutionTooltip": "Tento konflikt byl vyřešen ručně.",
+ "markAsHandledTooltip": "Nepoužívejte tuto stranu konfliktu.",
+ "noChangesAccepted": "Nebyly přijaty žádné změny.",
+ "noChangesAcceptedTooltip": "Aktuální řešení tohoto konfliktu se shoduje s běžným nadřazeným prvkem změny zprava i zleva.",
+ "remove": "Odebrat {0}",
+ "removeTooltip": "Odeberte {0} z výsledného dokumentu.",
+ "resetToBase": "Obnovit na bázi",
+ "resetToBaseTooltip": "Resetujte tento konflikt na společný nadřazeným prvkem změny zprava i zleva."
+ },
+ "vs/workbench/contrib/mergeEditor/browser/view/editors/baseCodeEditorView": {
+ "base": "Základní",
+ "compareWith": "Porovnání s {0}",
+ "compareWithTooltip": "Rozdíly jsou zvýrazněné barvou pozadí."
},
"vs/workbench/contrib/mergeEditor/browser/view/editors/inputCodeEditorView": {
- "accept": "Přijmout",
+ "accept.conflicting": "Přijmout (výsledek je změněný)",
+ "accept.excluded": "Přijmout",
+ "accept.first": "Vrátit zpět přijetí",
+ "accept.second": "Vrátit zpět přijetí (aktuálně druhý)",
+ "input1": "Vstup 1",
+ "input2": "Vstup 2",
"mergeEditor.accept": "Přijmout {0}",
"mergeEditor.acceptBoth": "Přijmout obojí",
"mergeEditor.markAsHandled": "Označit jako zpracované",
"mergeEditor.swap": "Prohodit"
},
"vs/workbench/contrib/mergeEditor/browser/view/editors/resultCodeEditorView": {
+ "allConflictHandled": "Všechny konflikty byly zpracovány. Sloučení je teď možné dokončit.",
+ "goToNextConflict": "Přejít na další konflikt",
"mergeEditor.remainingConflict": "{0} Zbývající konflikty ",
- "mergeEditor.remainingConflicts": "{0} Zbývající konflikt"
+ "mergeEditor.remainingConflicts": "{0} Zbývající konflikt",
+ "result": "Výsledek"
},
"vs/workbench/contrib/mergeEditor/browser/view/mergeEditor": {
- "editor.mergeEditor.label": "Merge Editor",
- "input1": "Vstup 1",
- "input2": "Vstup 2",
- "mergeEditor": "Editor sloučení textu",
- "result": "Výsledek"
+ "mergeEditor": "Editor sloučení textu"
+ },
+ "vs/workbench/contrib/mergeEditor/browser/view/viewModel": {
+ "noConflictMessage": "Momentálně není k dispozici žádný fokus na konflikt, který by bylo možné přepnout."
},
"vs/workbench/contrib/mergeEditor/common/mergeEditor": {
"baseUri": "Identifikátor URI baseru slučovacího editoru",
"editorLayout": "Režim rozložení slučovacího editoru",
"is": "Editor je editor sloučení.",
- "resultUri": "Identifikátor URI výsledku editoru sloučení"
+ "isr": "Editor je výsledný editor editoru slučování.",
+ "resultUri": "Identifikátor URI výsledku editoru sloučení",
+ "showBase": "Pokud se v editoru sloučení zobrazí základní verze",
+ "showBaseAtTop": "Pokud se má báze zobrazit nahoře",
+ "showNonConflictingChanges": "Pokud se v editoru slučování zobrazí nekonfliktní změny"
+ },
+ "vs/workbench/contrib/mergeEditor/electron-browser/devCommands": {
+ "merge.dev.openSelectionInTemporaryMergeEditor": "Otevřít výběr v editoru dočasného sloučení",
+ "merge.dev.openState": "Otevřít stav editoru sloučení z JSON",
+ "mergeEditor": "Editor sloučení (vývojář)",
+ "mergeEditor.enterJSON": "Zadat JSON"
+ },
+ "vs/workbench/contrib/multiDiffEditor/browser/actions": {
+ "ExpandAllDiffs": "Rozbalit všechny rozdíly",
+ "collapseAllDiffs": "Sbalit všechny rozdíly",
+ "goToFile": "Otevřít soubor",
+ "goToNextChange": "Přejít na další změnu",
+ "goToPreviousChange": "Přejít na předchozí změnu"
+ },
+ "vs/workbench/contrib/multiDiffEditor/browser/icons.contribution": {
+ "multiDiffEditorLabelIcon": "Ikona popisku editoru rozdílů ve více souborech"
+ },
+ "vs/workbench/contrib/multiDiffEditor/browser/multiDiffEditor.contribution": {
+ "name": "Editor rozdílů ve více souborech"
+ },
+ "vs/workbench/contrib/multiDiffEditor/browser/multiDiffEditorInput": {
+ "name": "Editor rozdílů ve více souborech",
+ "nameWithFiles": "{0} (soubory {1})",
+ "nameWithOneFile": "{0} (1 soubor)"
+ },
+ "vs/workbench/contrib/multiDiffEditor/browser/scmMultiDiffSourceResolver": {
+ "openChanges": "Otevřít změny"
},
"vs/workbench/contrib/notebook/browser/contrib/cellCommands/cellCommands": {
"notebookActions.changeCellToCode": "Změnit buňku na kód",
@@ -6914,22 +11695,41 @@
"notebookActions.expandCellOutput": "Rozbalit výstup buňky",
"notebookActions.joinCellAbove": "Spojit s předchozí buňkou",
"notebookActions.joinCellBelow": "Spojit s další buňkou",
+ "notebookActions.joinSelectedCells": "Spojit vybrané buňky",
"notebookActions.moveCellDown": "Přesunout buňku dolů",
"notebookActions.moveCellUp": "Přesunout buňku nahoru",
"notebookActions.splitCell": "Rozdělit buňku",
- "notebookActions.toggleOutputs": "Přepnout výstupy"
+ "notebookActions.toggleOutputs": "Přepnout výstupy",
+ "notebookActions.toggleScrolling": "Přepnout posouvání výstupu buňky"
+ },
+ "vs/workbench/contrib/notebook/browser/contrib/cellDiagnostics/cellDiagnosticsActions": {
+ "cellCommands.quickFix.noneMessage": "Nejsou k dispozici žádné akce kódu.",
+ "notebookActions.cellFailureActions": "Zobrazit akce při selhání buňky",
+ "notebookActions.chatExplainCellError": "Vysvětlit chybu buňky",
+ "notebookActions.chatFixCellError": "Opravit chybu buňky"
+ },
+ "vs/workbench/contrib/notebook/browser/contrib/cellDiagnostics/diagnosticCellStatusBarContrib": {
+ "notebook.cell.status.diagnostic": "Rychlé akce {0}"
},
"vs/workbench/contrib/notebook/browser/contrib/cellStatusBar/executionStatusBarItemController": {
"notebook.cell.status.executing": "Provádí se",
"notebook.cell.status.failed": "Neúspěch",
"notebook.cell.status.pending": "Čekající",
- "notebook.cell.status.success": "Úspěch"
+ "notebook.cell.status.success": "Úspěch",
+ "notebook.cell.statusBar.timerTooltip": "**Poslední spuštění** {0}\r\n\r\n**Doba spuštění** {1}\r\n\r\n **Režijní čas** {2}\r\n\r\n **Doby vykreslování**\r\n\r\n{3}",
+ "notebook.cell.statusBar.timerTooltip.reportIssueFootnote": "Pomocí výše uvedených odkazů můžete nahlásit problém pomocí hlásiče problémů.",
+ "notebook.cell.statusBar.timerVerbose": "Poslední spuštění: {0}, doba trvání: {1}"
},
"vs/workbench/contrib/notebook/browser/contrib/cellStatusBar/statusBarProviders": {
"notebook.cell.status.autoDetectLanguage": "Přijmout rozpoznaný jazyk: {0}",
- "notebook.cell.status.language": "Vybrat režim jazyka buňky"
+ "notebook.cell.status.language": "Vybrat režim jazyka buňky",
+ "notebook.cell.status.searchLanguageExtensions": "Neznámý jazyk buňky. Kliknutím můžete vyhledat rozšíření „{0}“"
+ },
+ "vs/workbench/contrib/notebook/browser/contrib/chat/notebookChatUtils": {
+ "notebookOutputCellLabel": "{0} • Buňka {1} • Výstup {2}"
},
"vs/workbench/contrib/notebook/browser/contrib/clipboard/notebookClipboard": {
+ "notebook.cell.output.selectAll": "Vybrat vše",
"notebookActions.copy": "Kopírovat buňku",
"notebookActions.cut": "Vyjmout buňku",
"notebookActions.paste": "Vložit buňku",
@@ -6937,25 +11737,19 @@
"toggleNotebookClipboardLog": "Řešení potíží s přepnutím schránky poznámkového bloku"
},
"vs/workbench/contrib/notebook/browser/contrib/editorStatusBar/editorStatusBar": {
- "current1": "Aktuálně vybráno",
- "current2": "{0} – aktuálně vybráno",
- "installSuggestedKernel": "Nainstalovat navržená rozšíření",
"kernel.select.label": "Vybrat jádro",
"notebook.activeCellStatusName": "Výběr editorů poznámkového bloku",
+ "notebook.indentation": "Odsazení poznámkového bloku",
"notebook.info": "Informace o jádru poznámkového bloku",
"notebook.multiActiveCellIndicator": "Buňka {0} (vybráno: {1})",
"notebook.select": "Výběr jádra poznámkového bloku",
"notebook.singleActiveCellIndicator": "Buňka {0} z {1}",
- "notebookActions.selectKernel": "Vybrat jádro poznámkového bloku",
- "notebookActions.selectKernel.args": "Argumenty jádra poznámkového bloku",
- "otherKernelKinds": "Jiné",
- "prompt.placeholder.change": "Změnit jádro pro {0}",
- "prompt.placeholder.select": "Vyberte jádro pro {0}.",
- "searchForKernels": "Vyhledat rozšíření jádra přes marketplace",
- "suggestedKernels": "Navrhováno",
+ "selectNotebookIndentation": "Vybrat odsazení",
"tooltop": "{0} (návrh)"
},
"vs/workbench/contrib/notebook/browser/contrib/find/notebookFind": {
+ "notebook.findNext.fromWidget": "Najít další",
+ "notebook.findPrevious.fromWidget": "Najít předchozí",
"notebookActions.findInNotebook": "Najít v poznámkovém bloku",
"notebookActions.hideFind": "Skrýt hledání v poznámkovém bloku"
},
@@ -6969,9 +11763,10 @@
"label.replaceAllButton": "Nahradit vše",
"label.replaceButton": "Nahradit",
"label.toggleReplaceButton": "Přepnout nahrazení",
+ "label.toggleSelectionFind": "Najít ve výběru",
"notebook.find.filter.filterAction": "Najít filtry",
"notebook.find.filter.findInCodeInput": "Zdroj buňky kódu",
- "notebook.find.filter.findInCodeOutput": "Výstup buňky",
+ "notebook.find.filter.findInCodeOutput": "Výstupy buňky kódu",
"notebook.find.filter.findInMarkupInput": "Zdroj Markdown",
"notebook.find.filter.findInMarkupPreview": "Vykreslený Markdown",
"placeholder.find": "Najít",
@@ -6985,6 +11780,7 @@
"vs/workbench/contrib/notebook/browser/contrib/format/formatting": {
"format.title": "Formátovat poznámkový blok",
"formatCell.label": "Formátovat buňku",
+ "formatCells.label": "Formátovat buňky",
"label": "Formátovat poznámkový blok"
},
"vs/workbench/contrib/notebook/browser/contrib/gettingStarted/notebookGettingStarted": {
@@ -6993,6 +11789,13 @@
"vs/workbench/contrib/notebook/browser/contrib/layout/layoutActions": {
"notebook.toggleCellToolbarPosition": "Přepnout pozici panelu nástrojů buňky"
},
+ "vs/workbench/contrib/notebook/browser/contrib/multicursor/notebookMulticursor": {
+ "addFindMatchToSelection": "Přidat výběr k další nalezené shodě",
+ "deleteLeftMultiSelection": "Odstranit nalevo",
+ "deleteRightMultiSelection": "Odstranit vpravo",
+ "exitMultiSelection": "Ukončit režim s více kurzory",
+ "selectAllFindMatches": "Vybrat všechny výskyty nalezené shody"
+ },
"vs/workbench/contrib/notebook/browser/contrib/navigation/arrow": {
"cursorMoveDown": "Přepnout fokus na další editor buněk",
"cursorMoveUp": "Přepnout fokus na předchozí editor buněk",
@@ -7004,21 +11807,90 @@
"focusLastCell": "Přepnout fokus na poslední buňku",
"focusOutput": "Přepnout fokus na výstup aktivní buňky",
"focusOutputOut": "Přepnout fokus mimo výstup aktivní buňky",
+ "notebook.cell.webviewHandledEvents": "Stisknutí kláves, která by měla být zpracována elementem s fokusem ve výstupu buňky",
"notebook.navigation.allowNavigateToSurroundingCells": "Pokud je tato možnost povolena, může kurzor přejít na další nebo předchozí buňku, když se aktuální kurzor v editoru buněk nachází na prvním nebo posledním řádku.",
"notebookActions.centerActiveCell": "Zarovnat aktivní buňku na střed"
},
+ "vs/workbench/contrib/notebook/browser/contrib/notebookVariables/notebookInlineVariables": {
+ "clearAllInlineValues": "Vymazat všechny vložené hodnoty"
+ },
+ "vs/workbench/contrib/notebook/browser/contrib/notebookVariables/notebookVariableCommands": {
+ "copyWorkspaceVariableValue": "Kopírovat hodnotu",
+ "executeNotebookVariableProvider": "Spustit zprostředkovatele proměnných poznámkového bloku"
+ },
+ "vs/workbench/contrib/notebook/browser/contrib/notebookVariables/notebookVariables": {
+ "notebookVariables": "Proměnné poznámkového bloku"
+ },
+ "vs/workbench/contrib/notebook/browser/contrib/notebookVariables/notebookVariablesDataSource": {
+ "notebook.indexedChildrenLimitReached": "Dosáhlo se limitu zobrazení."
+ },
+ "vs/workbench/contrib/notebook/browser/contrib/notebookVariables/notebookVariablesTree": {
+ "notebook.ReplVariables": "Proměnné REPL",
+ "notebook.notebookVariables": "Proměnné poznámkového bloku",
+ "notebookVariableAriaLabel": "Proměnná {0}, hodnota {1}"
+ },
"vs/workbench/contrib/notebook/browser/contrib/outline/notebookOutline": {
"breadcrumbs.showCodeCells": "Pokud se tato možnost povolí, popis cesty poznámkového bloku bude obsahovat buňky kódu.",
- "empty": "prázdná buňka",
- "outline.showCodeCells": "Pokud je povolená osnova poznámkového bloku, zobrazí buňky kódu."
+ "filter": "Filtrovat položky",
+ "notebook.gotoSymbols.showAllSymbols": "Pokud je tato možnost povolena, zobrazí se při rychlé volbě Přejít na symbol kompletní symboly kódu z poznámkového bloku a také hlavičky Markdownu.",
+ "outline.showCodeCellSymbols": "Pokud je povolená tato možnost, zobrazí se v osnově poznámkového bloku symboly buněk kódu. Vyžaduje, aby byla povolena možnost #notebook.outline.showCodeCells#.",
+ "outline.showCodeCells": "Pokud je povolená osnova poznámkového bloku, zobrazí buňky kódu.",
+ "outline.showMarkdownHeadersOnly": "Pokud je povolena tato možnost, zobrazí se v osnově poznámkového bloku pouze buňky Markdownu obsahující záhlaví.",
+ "toggleCodeCellSymbols": "Symboly buněk kódu",
+ "toggleCodeCells": "Buňky kódu",
+ "toggleShowMarkdownHeadersOnly": "Jenom záhlaví Markdownu"
},
"vs/workbench/contrib/notebook/browser/contrib/profile/notebookProfile": {
"setProfileTitle": "Nastavit profil"
},
+ "vs/workbench/contrib/notebook/browser/contrib/saveParticipants/saveParticipants": {
+ "codeAction.apply": "Aplikuje se akce kódu {0}.",
+ "codeaction.get2": "Získávají se akce kódu z {0} ([configure]({1})).",
+ "formatNotebook": "Formátovat poznámkový blok",
+ "insertFinalNewLine": "Vložit konečný nový řádek",
+ "notebookFormatSave.formatting": "Formátování",
+ "notebookSaveParticipants.cellCodeActions": "Spouštění akcí kódu Cell",
+ "notebookSaveParticipants.formatCodeActions": "Spouští se akce kódu Format.",
+ "notebookSaveParticipants.notebookCodeActions": "Spouští se akce kódu „Poznámkový blok“.",
+ "trimNotebookNewlines": "Zkrátit poslední nové řádky",
+ "trimNotebookWhitespace": "Oříznutí poznámkového bloku – prázdné znaky na konci"
+ },
"vs/workbench/contrib/notebook/browser/contrib/troubleshoot/layout": {
"workbench.notebook.clearNotebookEdtitorTypeCache": "Vymazat mezipaměť typu editoru poznámkových bloků",
"workbench.notebook.inspectLayout": "Zkontrolovat rozložení poznámkového bloku",
- "workbench.notebook.toggleLayoutTroubleshoot": "Přepnout řešení potíží s rozložením"
+ "workbench.notebook.toggleLayoutTroubleshoot": "Přepnout řešení potíží s rozložením poznámkového bloku"
+ },
+ "vs/workbench/contrib/notebook/browser/controller/cellOperations": {
+ "notebookActions.joinSelectedCells": "Nelze spojit buňky různých druhů.",
+ "notebookActions.joinSelectedCells.label": "Spojit buňky poznámkového bloku"
+ },
+ "vs/workbench/contrib/notebook/browser/controller/cellOutputActions": {
+ "imageFiles": "Soubory obrázků",
+ "notebookActions.copyOutput": "Kopírovat výstup buňky",
+ "notebookActions.openOutputInEditor": "Otevřít výstup buňky v textovém editoru",
+ "notebookActions.openOutputInNotebookOutputEditor": "Otevřít v náhledu výstupu",
+ "notebookActions.saveOutputImage": "Uložit obrázek",
+ "notebookActions.showAllOutput": "Zobrazit prázdné výstupy"
+ },
+ "vs/workbench/contrib/notebook/browser/controller/chat/cellChatActions": {
+ "notebook.apply1": "Přijmout a spustit",
+ "notebook.apply2": "Přijmout a spustit",
+ "notebook.apply3": "Přijměte změny a spusťte buňku.",
+ "notebookActions.menu.insertCode.ontoolbar": "Generovat",
+ "notebookActions.menu.insertCode.tooltip": "Zahájit chat a vygenerovat kód",
+ "notebookActions.menu.insertCodeCellWithChat": "Vygenerovat",
+ "notebookActions.menu.insertCodeCellWithChat.tooltip": "Zahájit chat a vygenerovat kód"
+ },
+ "vs/workbench/contrib/notebook/browser/controller/chat/notebook.chat.contribution": {
+ "chatContext.notebook.kernelVariable": "Proměnná jádra...",
+ "chatContext.notebook.kernelVariable.placeholder": "Vyberte proměnnou jádra",
+ "noKernelVariables": "Nenašly se žádné proměnné jádra",
+ "notebookActions.addOutputToChat": "Přidat výstup buňky do chatu",
+ "pickKernelVariableLabel": "Výběr proměnné z jádra",
+ "selectKernelVariablePlaceholder": "Vyberte proměnnou jádra"
+ },
+ "vs/workbench/contrib/notebook/browser/controller/chat/notebookChatContext": {
+ "notebookChatAgentRegistered": "Určuje, jestli je zaregistrovaný agent chatu pro poznámkový blok."
},
"vs/workbench/contrib/notebook/browser/controller/coreActions": {
"miShare": "Sdílet",
@@ -7029,17 +11901,28 @@
"vs/workbench/contrib/notebook/browser/controller/editActions": {
"autoDetect": "Automaticky zjistit",
"changeLanguage": "Změnit jazyk buňky",
- "clearAllCellsOutputs": "Vymazat výstupy všech buněk",
+ "clearAllCellsOutputs": "Vymazat všechny výstupy",
"clearCellOutputs": "Vymazat výstupy buněk",
+ "commentSelectedCells": "Okomentovat vybrané buňky",
+ "confirmDeleteButton": "Odstranit",
+ "confirmDeleteButtonMessage": "Tato buňka je spuštěná. Opravdu ji chcete odstranit?",
"detectLanguage": "Přijmout rozpoznaný jazyk pro buňku",
+ "doNotAskAgain": "Tento dotaz příště nezobrazovat",
+ "indentConvert": "převést soubor",
+ "indentView": "změnit zobrazení",
"languageDescription": "({0}) – aktuální jazyk",
"languageDescriptionConfigured": "({0})",
"languagesPicks": "jazyky (identifikátor)",
"noDetection": "Jazyk buňky nebylo možné rozpoznat",
+ "noNotebookEditor": "V tuto chvíli není aktivní žádný editor poznámkových bloků.",
+ "noWritableCodeEditor": "Aktivní editor poznámkových bloků je jen pro čtení.",
"notebookActions.deleteCell": "Odstranit buňku",
"notebookActions.editCell": "Upravit buňku",
"notebookActions.quitEdit": "Ukončit úpravy buňky",
- "pickLanguageToConfigure": "Vybrat režim jazyka"
+ "notebookActions.quitEditAllCells": "Ukončit úpravy všech buněk",
+ "pickAction": "Vybrat akci",
+ "pickLanguageToConfigure": "Vybrat režim jazyka",
+ "selectNotebookIndentation": "Vybrat odsazení"
},
"vs/workbench/contrib/notebook/browser/controller/executeActions": {
"notebookActions.cancel": "Zastavit provádění buňky",
@@ -7051,10 +11934,11 @@
"notebookActions.executeAndSelectBelow": "Provést buňku poznámkového bloku a vybrat níže",
"notebookActions.executeBelow": "Provést buňku a buňky níže",
"notebookActions.executeNotebook": "Spustit vše",
+ "notebookActions.interruptNotebook": "Přerušit",
"notebookActions.renderMarkdown": "Vykreslit všechny buňky Markdownu",
"revealLastFailedCell": "Přejít na naposledy neúspěšnou buňku",
- "revealLastFailedCellShort": "Přejít na",
- "revealRunningCell": "Go to Running Cell",
+ "revealLastFailedCellShort": "Přejít na naposledy neúspěšnou buňku",
+ "revealRunningCell": "Přejít na spuštěnou buňku",
"revealRunningCellShort": "Přejít na"
},
"vs/workbench/contrib/notebook/browser/controller/foldingController": {
@@ -7081,16 +11965,48 @@
},
"vs/workbench/contrib/notebook/browser/controller/layoutActions": {
"customizeNotebook": "Přizpůsobit poznámkové bloky...",
+ "mitoggleNotebookStickyScroll": "&Přepnout pevné posouvání poznámkového bloku",
"notebook.placeholder": "Soubor nastavení, do kterého se má uložit",
"notebook.saveMimeTypeOrder": "Uložit pořadí zobrazení mimetype",
- "notebook.showLineNumbers": "Zobrazit čísla řádků poznámkového bloku",
+ "notebook.showLineNumbers": "Čísla řádků poznámkového bloku",
"notebook.toggleBreadcrumb": "Přepnout popis cesty",
"notebook.toggleCellToolbarPosition": "Přepnout pozici panelu nástrojů buňky",
"notebook.toggleLineNumbers": "Přepnout čísla řádků poznámkového bloku",
+ "notebookStickyScroll": "Přepnout pevné posouvání poznámkového bloku",
"saveTarget.machine": "Uživatelská nastavení",
"saveTarget.workspace": "Nastavení pracovního prostoru",
+ "toggleStickyScroll": "Přepnout pevné posouvání poznámkového bloku",
"workbench.notebook.layout.configure.label": "Přizpůsobit rozložení poznámkového bloku",
- "workbench.notebook.layout.select.label": "Vybrat rozložení poznámkového bloku"
+ "workbench.notebook.layout.select.label": "Vybrat rozložení poznámkového bloku",
+ "workbench.notebook.layout.webview.reset.label": "Obnovit webové zobrazení poznámkového bloku"
+ },
+ "vs/workbench/contrib/notebook/browser/controller/notebookIndentationActions": {
+ "changeTabDisplaySize": "Změnit velikost zobrazení tabulátoru",
+ "convertIndentation": "Převést odsazení",
+ "convertIndentationToSpaces": "Převést odsazení na mezery",
+ "convertIndentationToTabs": "Převést odsazení na tabulátory",
+ "indentUsingSpaces": "Odsadit pomocí mezer",
+ "indentUsingTabs": "Odsadit pomocí tabulátorů",
+ "selectTabWidth": "Vybrat velikost tabulátoru pro aktuální soubor"
+ },
+ "vs/workbench/contrib/notebook/browser/controller/sectionActions": {
+ "expandSection": "Rozbalit oddíl",
+ "foldSection": "Sbalit oddíl",
+ "miexpandSection": "&&Rozbalit oddíl",
+ "mifoldSection": "&&Sbalit oddíl",
+ "mirunCell": "&&Spustit buňku",
+ "mirunCellsInSection": "&&Spustit buňky v oddílu",
+ "runCell": "Spustit buňku",
+ "runCellsInSection": "Spustit buňky v oddílu"
+ },
+ "vs/workbench/contrib/notebook/browser/controller/variablesActions": {
+ "notebookActions.openVariablesView": "Proměnné"
+ },
+ "vs/workbench/contrib/notebook/browser/diff/diffComponents": {
+ "hiddenCell": "{0} skrytá buňka",
+ "hiddenCells": "{0} skryté buňky",
+ "hideUnchangedCells": "Skrýt nezměněné buňky",
+ "showUnchangedCells": "Zobrazit nezměněné buňky"
},
"vs/workbench/contrib/notebook/browser/diff/diffElementOutputs": {
"builtinRenderInfo": "integrované",
@@ -7102,81 +12018,142 @@
"promptChooseMimeTypeInSecure.placeHolder": "Vyberte typ mimetype, který se má vykreslit pro aktuální výstup. Formátované typy mimetype jsou dostupné jenom v případě, že je poznámkový blok důvěryhodný."
},
"vs/workbench/contrib/notebook/browser/diff/notebookDiffActions": {
+ "goToCell": "Přejít na buňku",
+ "hideUnchangedCells": "Skrýt nezměněné buňky",
+ "ignoreTrimWhitespace.label": "Zobrazovat rozdíly v prázdných znacích na začátku/konci",
+ "notebook.diff.action.next.title": "Zobrazit další změnu",
+ "notebook.diff.action.previous.title": "Zobrazit předchozí změnu",
"notebook.diff.cell.revertInput": "Vrátit vstup",
"notebook.diff.cell.revertMetadata": "Obnovit metadata",
"notebook.diff.cell.revertOutputs": "Obnovit výstupy",
"notebook.diff.cell.switchOutputRenderingStyleToText": "Přepnout vykreslování výstupu",
+ "notebook.diff.cell.toggleCollapseUnchangedRegions": "Přepnout sbalení nezměněných oblastí",
"notebook.diff.ignoreMetadata": "Skrýt rozdíly v metadatech",
"notebook.diff.ignoreOutputs": "Skrýt rozdíly ve výstupech",
+ "notebook.diff.inline.toggle.title": "Přepnout vložené zobrazení",
+ "notebook.diff.openFile": "Otevřít soubor",
+ "notebook.diff.revertMetadata": "Vrátit metadata poznámkového bloku",
"notebook.diff.showMetadata": "Zobrazit rozdíly v metadatech",
"notebook.diff.showOutputs": "Zobrazit rozdíly ve výstupech",
- "notebook.diff.switchToText": "Otevřít editor rozdílů v textu"
+ "notebook.diff.switchToText": "Otevřít editor rozdílů v textu",
+ "notebook.diff.toggleInline": "Pokud chcete přepnout experimentální vložený editor rozdílů poznámkového bloku, povolte příkaz.",
+ "showUnchangedCells": "Zobrazit nezměněné buňky"
},
- "vs/workbench/contrib/notebook/browser/diff/notebookTextDiffEditor": {
+ "vs/workbench/contrib/notebook/browser/diff/notebookDiffEditor": {
"notebookTreeAriaLabel": "Rozdíly v textu poznámkového bloku"
},
- "vs/workbench/contrib/notebook/browser/extensionPoint": {
- "contributes.notebook.provider": "Přidává zprostředkovatele dokumentu poznámkového bloku.",
- "contributes.notebook.provider.displayName": "Lidsky čitelný název poznámkového bloku",
- "contributes.notebook.provider.selector": "Sada vzorů glob, pro kterou je poznámkový blok určený",
- "contributes.notebook.provider.selector.filenamePattern": "Vzor glob, pro který je poznámkový blok povolen",
- "contributes.notebook.provider.viewType": "Typ poznámkového bloku",
- "contributes.notebook.renderer": "Přidává zprostředkovatele rendereru výstupu poznámkového bloku.",
- "contributes.notebook.renderer.displayName": "Lidsky čitelný název rendereru výstupu poznámkového bloku",
- "contributes.notebook.renderer.entrypoint": "Soubor, který má být načten ve webovém zobrazení za účelem vykreslení rozšíření",
- "contributes.notebook.renderer.entrypoint.extends": "Existující zobrazovací modul, který tento rozšiřuje.",
- "contributes.notebook.renderer.hardDependencies": "Seznam závislostí jádra, které renderer vyžaduje. Pokud je některá z těchto závislostí přítomná v „NotebookKernel.preloads“, může být renderer použit.",
- "contributes.notebook.renderer.optionalDependencies": "Seznam závislostí softwarového jádra, které může renderer využívat. Pokud je některá ze závislostí přítomná v „NotebookKernel.preloads“, bude tento renderer upřednostňován před rendery, které s jádrem nekomunikují.",
- "contributes.notebook.renderer.requiresMessaging": "Definuje, jak a jestli musí renderer komunikovat s hostitelem rozšíření přes „createRendererMessaging“. Renderery s přísnějšími požadavky na zasílání zpráv nemusí fungovat ve všech prostředích.",
- "contributes.notebook.renderer.requiresMessaging.always": "Je vyžadováno zasílání zpráv. Renderer bude použit pouze v případě, když bude součástí rozšíření, které může být spuštěno v hostiteli rozšíření.",
- "contributes.notebook.renderer.requiresMessaging.never": "Renderer nevyžaduje zasílání zpráv.",
- "contributes.notebook.renderer.requiresMessaging.optional": "Renderer je lepší, když je k dispozici zasílání zpráv, ale není to vyžadováno.",
- "contributes.notebook.renderer.viewType": "Jedinečný identifikátor rendereru výstupu poznámkového bloku",
- "contributes.notebook.selector": "Sada vzorů glob, pro kterou je poznámkový blok určený",
- "contributes.notebook.selector.provider.excludeFileNamePattern": "Vzor glob, pro který je poznámkový blok zakázaný",
- "contributes.priority": "Určuje, jestli je vlastní editor povolen automaticky, když uživatel otevře soubor. Může být přepsáno uživatelem pomocí nastavení workbench.editorAssociations.",
- "contributes.priority.default": "Editor se použije automaticky, když uživatel otevře prostředek, za předpokladu, že pro tento prostředek nejsou zaregistrovány žádné jiné výchozí vlastní editory.",
- "contributes.priority.option": "Editor se nepoužije automaticky, když uživatel otevře daný prostředek, uživatel ale může přepnout do editoru pomocí příkazu Znovu otevřít pomocí."
+ "vs/workbench/contrib/notebook/browser/diff/notebookDiffEditorBrowser": {
+ "notebook.diffEditor.allCollapsed": "Určuje, jestli jsou všechny buňky v editoru rozdílů poznámkového bloku sbalené.",
+ "notebook.diffEditor.hasUnchangedCells": "Určuje, jestli jsou v editoru rozdílů poznámkového bloku nezměněné buňky.",
+ "notebook.diffEditor.item.kind": "Druh položky v editoru rozdílů poznámkového bloku – Buňka, Metadata nebo Výstup",
+ "notebook.diffEditor.item.state": "Rozdílový stav položky v editoru rozdílů poznámkového bloku – odstranit, vložit, upraveno nebo nezměněno",
+ "notebook.diffEditor.unchangedCellsAreHidden": "Určuje, jestli jsou nezměněné buňky v editoru rozdílů poznámkového bloku skryté."
+ },
+ "vs/workbench/contrib/notebook/browser/diff/notebookDiffList": {
+ "notebook.diff.hiddenCells.expandAll": "Zobrazíte dvojítým kliknutím."
+ },
+ "vs/workbench/contrib/notebook/browser/diff/notebookMultiDiffEditor": {
+ "notebookCellLabel": "Buňka {0}",
+ "notebookCellMetadataLabel": "Metadata",
+ "notebookCellOutputLabel": "Výstup"
},
"vs/workbench/contrib/notebook/browser/notebook.contribution": {
"insertToolbarLocation.betweenCells": "Panel nástrojů, který se zobrazuje při přechodu myší mezi buňkami.",
"insertToolbarLocation.both": "Oba panely nástrojů.",
"insertToolbarLocation.hidden": "Akce vložení se nezobrazí nikde.",
"insertToolbarLocation.notebookToolbar": "Panel nástrojů v horní části editoru poznámkového bloku.",
+ "notebook.VariablesView.description": "Na panelu ladění povolte experimentální zobrazení proměnných poznámkového bloku.",
+ "notebook.backup.sizeLimit": "Limit výstupní velikosti poznámkového bloku v kilobajtech (kB), kdy se již nebudou zálohovat soubory poznámkového bloku pro opětovné načtení za provozu. Pro neomezenou velikost použijte hodnotu 0.",
+ "notebook.cellExecutionTimeVerbosity.default.description": "Doba trvání spuštění buňky je viditelná s rozšířenými informacemi v popisu při přechodu myší.",
+ "notebook.cellExecutionTimeVerbosity.description": "Určuje podrobnost doby spuštění buňky na stavovém řádku buňky.",
+ "notebook.cellExecutionTimeVerbosity.verbose.description": "Zobrazí se časové razítko a doba trvání posledního spuštění buňky s rozšířenými informacemi v popisu při přechodu myší.",
+ "notebook.cellFailureDiagnostics": "Zobrazí dostupnou diagnostiku pro selhání buněk.",
+ "notebook.cellGenerate": "Pokud chcete vytvořit buňku kódu s povoleným vloženým chatem, povolte experimentální akci generování.",
"notebook.cellToolbarLocation.description": "Určuje, kde se má zobrazit panel nástrojů buňky nebo jestli má být skrytý.",
"notebook.cellToolbarLocation.viewType": "Nakonfigurujte pozici panelu nástrojů buňky pro konkrétní typy souborů.",
"notebook.cellToolbarVisibility.description": "Určuje, jestli se má při najetí myší nebo kliknutí zobrazit panel nástrojů buňky.",
"notebook.compactView.description": "Určuje, jestli se má editor poznámkového bloku vykreslit v kompaktní podobě. Například, pokud je zapnutý, zmenší se šířka levého okraje.",
+ "notebook.confirmDeleteRunningCell": "Určuje, jestli se k odstranění spuštěné buňky vyžaduje výzva k potvrzení.",
"notebook.consolidatedOutputButton.description": "Určuje, jestli se má na panelu nástrojů výstupu zobrazovat akce výstupů.",
"notebook.consolidatedRunButton.description": "Určuje, jestli jsou v rozevíracím seznamu vedle tlačítka pro spuštění zobrazeny další akce.",
+ "notebook.diff.enableOverviewRuler.description": "Určuje, jestli se má v editoru rozdílů pro poznámkový blok vykreslit přehledové pravítko.",
"notebook.diff.enablePreview.description": "Určuje, jestli se má pro poznámkový blok použít rozšířený editor rozdílů v textu.",
+ "notebook.disableOutputFilePathLinks": "Určuje, jestli se mají zakázat odkazy na cesty k souborům ve výstupu buněk poznámkového bloku.",
"notebook.displayOrder.description": "Seznam priorit pro typy výstupů mime",
"notebook.dragAndDrop.description": "Určuje, jestli má editor poznámkového bloku umožňovat přesouvání buněk přetažením.",
"notebook.editorOptions.experimentalCustomization": "Nastavení editorů kódu používaných v poznámkových blocích. Tato možnost slouží k přizpůsobení nastavení většiny editorů.",
+ "notebook.findFilters": "Přizpůsobte si chování funkce Najít widget pro vyhledávání v buňkách poznámkového bloku. Pokud je povolen zdroj revize i náhled revize, bude funkce Najít widget prohledávat zdrojový kód nebo náhled na základě aktuálního stavu buňky.",
"notebook.focusIndicator.description": "Určuje, kde je indikátor zaměření vykreslen, buď podél ohraničení buňky, nebo v levé mezeře.",
+ "notebook.formatOnCellExecution": "Při spuštění naformátuje buňku poznámkového bloku. Formátovací modul musí být k dispozici.",
+ "notebook.formatOnSave": "Naformátujte poznámkový blok při uložení. Formátovací modul musí být k dispozici a editor se nesmí vypínat. Když je {0} nastaveno na afterDelay, soubor se naformátuje jenom při explicitním uložení.",
"notebook.globalToolbar.description": "Určuje, jestli se má v editoru poznámkového bloku zobrazovat globální panel nástrojů.",
"notebook.globalToolbarShowLabel": "Určuje, zda mají akce na panelu nástrojů poznámkového bloku vykreslovat popisek nebo ne.",
+ "notebook.inlineValues.auto": "Zobrazit vložené hodnoty pouze v případě, že je registrován zprostředkovatel vložených hodnot",
+ "notebook.inlineValues.description": "Určuje, jestli se mají po provedení buňky zobrazovat vložené hodnoty v buňkách kódu poznámkového bloku. Hodnoty zůstanou zachovány, dokud nebude buňka upravena, znovu spuštěna nebo explicitně vymazána pomocí tlačítka panelu nástrojů Vymazat všechny výstupy nebo příkazu Poznámkový blok: Vymazat vložené hodnoty.",
+ "notebook.inlineValues.off": "Nikdy nezobrazovat vložené hodnoty",
+ "notebook.inlineValues.on": "Vždy zobrazovat vložené hodnoty s použitím náhradního regulárního výrazu, pokud není zaregistrován žádný vložený zprostředkovatel hodnot Poznámka: Pokud se použije záložní řešení, může to mít ve větších buňkách vliv na výkon.",
+ "notebook.insertFinalNewline": "Pokud je tato možnost povolena, vloží při ukládání poznámkového bloku na konec buněk kódu poslední nový řádek.",
"notebook.insertToolbarPosition.description": "Určuje, kde se mají zobrazovat akce vložení buněk.",
"notebook.interactiveWindow.collapseCodeCells": "Určuje, zda jsou buňky kódu v interaktivním okně ve výchozím nastavení sbaleny.",
+ "notebook.markdown.lineHeight": "Určuje výšku řádku v pixelech buněk Markdownu v poznámkových blocích. Při nastavení na {0} se použije {1}.",
+ "notebook.markup.fontFamily": "Určuje rodinu písem vykreslených značek v poznámkových blocích. Pokud necháte prázdné, vrátí se na výchozí rodinu písem pracovní plochy.",
"notebook.markup.fontSize": "Určuje velikost písma vykreslených značek v poznámkových blocích. Při nastavení na {0} se použije 120 % hodnoty {1}.",
- "notebook.outputFontFamily": "Rodina písem pro výstupní text buněk poznámkového bloku. Když se nastaví na prázdnou hodnotu, použije se {0}.",
- "notebook.outputFontSize": "Velikost písma pro výstupní text buněk poznámkového bloku. Při nastavení na hodnotu {0} se použije {1}.",
- "notebook.outputLineHeight": "Výška řádku výstupního textu pro buňky poznámkového bloku.\r\n – Hodnoty mezi 0 a 8 se použijí jako násobitel s velikostí písma.\r\n – Hodnoty větší nebo rovné 8 se použijí jako platné hodnoty.",
+ "notebook.minimalErrorRendering": "Určuje, jestli se má výstup chyby vykreslovat v minimálním stylu.",
+ "notebook.multiCursor.enabled": "Experimentální. Povolí omezenou sadu ovládacích prvků s více kurzory napříč více buňkami v editoru poznámkových bloků. V současné době se podporují základní akce editoru (psaní, vyjmutí, kopírování, vložení a kompozice) a omezená podmnožina příkazů editoru.",
+ "notebook.outputFontFamily": "Rodina písem výstupního textu v buňkách poznámkového bloku. Pokud je tato hodnota nastavená na prázdnou hodnotu, použije se {0}.",
+ "notebook.outputFontSize": "Velikost písma pro výstupní text v buňkách poznámkového bloku. Při nastavení na hodnotu 0 se použije {0}.",
+ "notebook.outputLineHeight": "Výška řádku výstupního textu v buňkách poznámkového bloku.\r\n – Pokud je nastavená hodnota 0, použije se výška řádku editoru.\r\n – Hodnoty mezi 0 a 8 se použijí jako násobitel s velikostí písma.\r\n – Hodnoty větší nebo rovné 8 se použijí jako platné hodnoty.",
+ "notebook.outputScrolling": "Na začátku vykreslovat výstupy poznámkového bloku v posouvatelné oblasti, když je delší než limit.",
+ "notebook.outputWordWrap": "Určuje, jestli se mají řádky ve výstupu zalamovat.",
+ "notebook.remoteSaving": "Umožňuje přírůstkové ukládání poznámkových bloků mezi procesy a vzdálenými připojeními. Pokud je tato možnost povolená, posílají se hostiteli rozšíření jenom změny poznámkového bloku, což zlepšuje výkon pro velké poznámkové bloky a pomalá síťová připojení.",
+ "notebook.scrolling.revealNextCellOnExecute.description": "Jak daleko se má posunout při zobrazení další buňky při spuštění {0}.",
+ "notebook.scrolling.revealNextCellOnExecute.firstLine.description": "Posunutím zobrazíte první řádek další buňky.",
+ "notebook.scrolling.revealNextCellOnExecute.fullCell.description": "Posunutím úplně zobrazíte další buňku.",
+ "notebook.scrolling.revealNextCellOnExecute.none.description": "Neposouvejte se.",
"notebook.showCellStatusbar.description": "Určuje, jestli má být zobrazen stavový řádek buňky.",
"notebook.showCellStatusbar.hidden.description": "Stavový řádek buňky je vždy skrytý.",
"notebook.showCellStatusbar.visible.description": "Stavový řádek buňky je vždy viditelný.",
- "notebook.showCellStatusbar.visibleAfterExecute.description": "Stavový řádek buňky je skrytý, dokud se buňka nespustí. Pak se zobrazí, aby se zobrazil stav spuštění.",
+ "notebook.showCellStatusbar.visibleAfterExecute.description": "Stavový řádek buňky je skrytý, dokud není buňka provedena. Pak se zobrazí, aby se zobrazil stav provádění.",
"notebook.showFoldingControls.description": "Určuje, jestli se zobrazí šipka pro sbalení záhlaví Markdownu.",
- "notebook.textOutputLineLimit": "Určuje, kolik řádků textu v textovém výstupu se vykreslí.",
+ "notebook.stickyScrollEnabled.description": "Experimentální. Určuje, jestli se mají v editoru poznámkových bloků při pevném posouvání vykreslovat záhlaví.",
+ "notebook.stickyScrollMode.description": "Určuje, jestli se mají vnořené statické čáry skládat z plochých nebo odsazených řádků.",
+ "notebook.stickyScrollMode.flat": "Vnořené statické řádky se zobrazují naplocho.",
+ "notebook.stickyScrollMode.indented": "Vnořené statické řádky se zobrazují odsazené.",
+ "notebook.textOutputLineLimit": "Určuje, kolik řádků textu se zobrazí ve výstupu textu. Pokud je povolená {0}, použije se k určení výšky posouvání výstupu toto nastavení.",
"notebook.undoRedoPerCell.description": "Určuje, jestli se má pro každou buňku použít samostatný zásobník pro akce vrátit zpět/provést znovu.",
"notebookConfigurationTitle": "Poznámkový blok",
+ "notebookFormatter.default": "Definuje výchozí formátovací modul poznámkového bloku, který má přednost před všemi ostatními nastaveními formátovacích modulů. Musí se jednat o identifikátor rozšíření, které přidává formátovací modul.",
"showFoldingControls.always": "Sklopné ovládací prvky jsou vždy viditelné.",
"showFoldingControls.mouseover": "Sbalitelné ovládací prvky jsou viditelné pouze při přejetí myší.",
"showFoldingControls.never": "Nikdy nezobrazujte ovládací prvky pro sbalování a zmenšujte velikost mezery."
},
+ "vs/workbench/contrib/notebook/browser/notebookAccessibilityHelp": {
+ "notebook.cell.edit": "Příkaz Upravit buňku {0} nastaví fokus na vstup buňky.",
+ "notebook.cell.executeAndFocusContainer": "Příkaz Spustit buňku {0} spustí buňku, která má aktuálně fokus.",
+ "notebook.cell.focusInOutput": "Příkaz Výstup fokusu {0} nastaví fokus ve výstupu buňky.",
+ "notebook.cell.insertCodeCellBelowAndFocusContainer": "Příkazy Vložit buňku nad {0} a pod {1} vytvoří nové prázdné buňky kódu.",
+ "notebook.cell.quitEdit": "Příkaz Ukončit úpravy {0} nastaví fokus na kontejner buněk. Pravděpodobně bude nutné stisknout dvakrát výchozí klávesu (Escape). Pokud je aktivní, ukončete virtuální kurzor.",
+ "notebook.cellNavigation": "Šipky nahoru a dolů budou také přesouvat fokus mezi buňkami s fokusem na vnější kontejner buněk",
+ "notebook.changeCellType": "Příkazy Změnit buňku na Kód nebo Markdown slouží k přepínání mezi typy buněk.",
+ "notebook.focusNextEditor": "Příkaz Přepnout fokus na další editor buněk {0} nastaví fokus v editoru další buňky.",
+ "notebook.focusPreviousEditor": "Příkaz Přepnout fokus na předchozí editor buněk {0} nastaví fokus v editoru předchozí buňky.",
+ "notebook.overview": "Zobrazení poznámkového bloku je kolekce kódu a buněk Markdownu. Buňky kódu se dají spustit a vytvoří výstup přímo pod buňkou."
+ },
+ "vs/workbench/contrib/notebook/browser/notebookAccessibilityProvider": {
+ "notebookTreeAriaLabel": "Poznámkový blok",
+ "notebookTreeAriaLabelHelp": "{0}\r\nPro nápovědu k přístupnosti použijte {1}.",
+ "notebookTreeAriaLabelHelpNoKb": "{0}\r\nDalší informace získáte spuštěním příkazu Otevřít nápovědu k přístupnosti",
+ "replHistoryTreeAriaLabel": "Historie editoru REPL"
+ },
"vs/workbench/contrib/notebook/browser/notebookEditor": {
"fail.noEditor": "Prostředek není možné s editorem poznámkového bloku typu {0} otevřít. Zkontrolujte prosím, jestli máte nainstalované a povolené správné rozšíření.",
- "notebookOpenInTextEditor": "Otevřít v textovém editoru"
+ "fail.noEditor.extensionMissing": "Prostředek není možné s editorem poznámkového bloku typu {0} otevřít. Zkontrolujte prosím, jestli máte nainstalované a povolené správné rozšíření.",
+ "notebookOpenAsText": "Otevřít jako text",
+ "notebookOpenEnableMissingViewType": "Povolit rozšíření pro {0}",
+ "notebookOpenInTextEditor": "Otevřít v textovém editoru",
+ "notebookOpenInstallMissingViewType": "Nainstalovat rozšíření pro „{0}“",
+ "notebookTooLargeForHeapErrorWithSize": "Poznámkový blok se v editoru poznámkového bloku nezobrazuje, protože je velmi velký ({0}).",
+ "notebookTooLargeForHeapErrorWithoutSize": "Poznámkový blok se nezobrazuje v editoru poznámkových bloků, protože je velmi velký."
},
"vs/workbench/contrib/notebook/browser/notebookEditorWidget": {
"focusedCellBackground": "Barva pozadí buňky, když má buňka fokus",
@@ -7195,22 +12172,52 @@
"notebook.outputContainerBorderColor": "Barva ohraničení kontejneru výstupu poznámkového bloku.",
"notebook.selectedCellBorder": "Barva horního a dolního ohraničení buňky, když je buňka vybraná, ale nemá fokus.",
"notebook.symbolHighlightBackground": "Barva pozadí zvýrazněné buňky",
+ "notebookEditorOverviewRuler.runningCellForeground": "Barva dekorace běžící buňky v přehledovém pravítku editoru poznámkového bloku.",
"notebookScrollbarSliderActiveBackground": "Barva pozadí jezdce posuvníku poznámkového bloku při kliknutí na něj",
"notebookScrollbarSliderBackground": "Barva pozadí jezdce posuvníku poznámkového bloku",
"notebookScrollbarSliderHoverBackground": "Barva pozadí jezdce posuvníku poznámkového bloku, když je na něj umístěn ukazatel myši",
"notebookStatusErrorIcon.foreground": "Barva ikony chyby buněk poznámkového bloku na stavovém řádku buňky",
"notebookStatusRunningIcon.foreground": "Barva ikony spuštění buněk poznámkového bloku na stavovém řádku buňky",
"notebookStatusSuccessIcon.foreground": "Barva ikony chyby buněk poznámkového bloku na stavovém řádku buňky",
- "notebookTreeAriaLabel": "Poznámkový blok",
"selectedCellBackground": "Barva pozadí buňky, když se buňka vybere"
},
- "vs/workbench/contrib/notebook/browser/notebookExecutionServiceImpl": {
- "notebookRunTrust": "Při provádění buňky poznámkového bloku se spustí kód z tohoto pracovního prostoru."
+ "vs/workbench/contrib/notebook/browser/notebookExtensionPoint": {
+ "Notebook id": "ID",
+ "Notebook mimetypes": "Typy mimetype",
+ "Notebook name": "Název",
+ "Notebook renderer name": "Název",
+ "contributes.notebook.provider": "Přidává zprostředkovatele dokumentu poznámkového bloku.",
+ "contributes.notebook.provider.displayName": "Lidsky čitelný název poznámkového bloku",
+ "contributes.notebook.provider.selector": "Sada vzorů glob, pro kterou je poznámkový blok určený",
+ "contributes.notebook.provider.selector.filenamePattern": "Vzor glob, pro který je poznámkový blok povolen",
+ "contributes.notebook.provider.viewType": "Typ poznámkového bloku",
+ "contributes.notebook.renderer": "Přidává zprostředkovatele rendereru výstupu poznámkového bloku.",
+ "contributes.notebook.renderer.displayName": "Lidsky čitelný název rendereru výstupu poznámkového bloku",
+ "contributes.notebook.renderer.entrypoint": "Soubor, který má být načten ve webovém zobrazení za účelem vykreslení rozšíření",
+ "contributes.notebook.renderer.entrypoint.extends": "Existující zobrazovací modul, který tento rozšiřuje.",
+ "contributes.notebook.renderer.hardDependencies": "Seznam závislostí jádra, které renderer vyžaduje. Pokud je některá z těchto závislostí přítomná v „NotebookKernel.preloads“, může být renderer použit.",
+ "contributes.notebook.renderer.optionalDependencies": "Seznam závislostí softwarového jádra, které může renderer využívat. Pokud je některá ze závislostí přítomná v „NotebookKernel.preloads“, bude tento renderer upřednostňován před rendery, které s jádrem nekomunikují.",
+ "contributes.notebook.renderer.requiresMessaging": "Definuje, jak a jestli musí renderer komunikovat s hostitelem rozšíření přes „createRendererMessaging“. Renderery s přísnějšími požadavky na zasílání zpráv nemusí fungovat ve všech prostředích.",
+ "contributes.notebook.renderer.requiresMessaging.always": "Je vyžadováno zasílání zpráv. Renderer bude použit pouze v případě, když bude součástí rozšíření, které může být spuštěno v hostiteli rozšíření.",
+ "contributes.notebook.renderer.requiresMessaging.never": "Renderer nevyžaduje zasílání zpráv.",
+ "contributes.notebook.renderer.requiresMessaging.optional": "Renderer je lepší, když je k dispozici zasílání zpráv, ale není to vyžadováno.",
+ "contributes.notebook.renderer.viewType": "Jedinečný identifikátor rendereru výstupu poznámkového bloku",
+ "contributes.notebook.selector": "Sada vzorů glob, pro kterou je poznámkový blok určený",
+ "contributes.notebook.selector.provider.excludeFileNamePattern": "Vzor glob, pro který je poznámkový blok zakázaný",
+ "contributes.preload.entrypoint": "Cesta k souboru načtenému ve webovém zobrazení.",
+ "contributes.preload.localResourceRoots": "Cesty k dalším prostředkům, které by se měly povolit ve webovém zobrazení.",
+ "contributes.preload.provider": "Přispívá k přednačtení poznámkového bloku.",
+ "contributes.preload.provider.viewType": "Typ poznámkového bloku",
+ "contributes.priority": "Určuje, jestli je vlastní editor povolen automaticky, když uživatel otevře soubor. Může být přepsáno uživatelem pomocí nastavení workbench.editorAssociations.",
+ "contributes.priority.default": "Editor se použije automaticky, když uživatel otevře prostředek, za předpokladu, že pro tento prostředek nejsou zaregistrovány žádné jiné výchozí vlastní editory.",
+ "contributes.priority.option": "Editor se nepoužije automaticky, když uživatel otevře daný prostředek, uživatel ale může přepnout do editoru pomocí příkazu Znovu otevřít pomocí.",
+ "notebookRenderer": "Renderery poznámkových bloků",
+ "notebooks": "Poznámkové bloky"
},
"vs/workbench/contrib/notebook/browser/notebookIcons": {
"clearIcon": "Ikona pro vymazání výstupu buněk v editorech poznámkových bloků",
"collapsedIcon": "Ikona pro poznámku sbaleného oddílu v editorech poznámkových bloků",
- "configureKernel": "Nakonfigurovat ikonu ve widgetu konfigurace jádra v editorech poznámkových bloků",
+ "copyIcon": "Ikona pro zkopírování obsahu do schránky",
"deleteCellIcon": "Ikona pro odstranění buňky v editorech poznámkových bloků",
"editIcon": "Ikona pro úpravu buňky v editorech poznámkových bloků",
"errorStateIcon": "Ikona, která označuje chybový stav v editorech poznámkových bloků",
@@ -7223,26 +12230,50 @@
"mimetypeIcon": "Ikona pro typ MIME v editorech poznámkových bloků",
"moveDownIcon": "Ikona pro přesun buňky dolů v editorech poznámkových bloků",
"moveUpIcon": "Ikona pro přesun buňky nahoru v editorech poznámkových bloků",
+ "nextChangeIcon": "Ikona pro akci další změny v editoru rozdílů",
"openAsTextIcon": "Ikona pro otevření poznámkového bloku v editorech textu",
"pendingStateIcon": "Ikona, která označuje stav čekání v editorech poznámkových bloků.",
+ "previousChangeIcon": "Ikona pro akci předchozí změny v editoru rozdílů",
"renderOutputIcon": "Ikona pro vykreslení výstupu v editoru rozdílů",
"revertIcon": "Ikona k přechodu zpět v editorech poznámkových bloků",
+ "saveIcon": "Ikona pro uložení obsahu na disk",
"selectKernelIcon": "Nakonfigurovat ikonu pro výběr jádra v editorech poznámkových bloků",
"splitCellIcon": "Ikona pro rozdělení buňky v editorech poznámkových bloků",
"stopEditIcon": "Ikona pro zastavení úprav buňky v editorech poznámkových bloků",
"stopIcon": "Ikona pro zastavení spouštění v editorech poznámkových bloků",
"successStateIcon": "Ikona, která označuje úspěšný stav v editorech poznámkových bloků",
- "unfoldIcon": "Ikona pro rozbalení buňky v editorech poznámkových bloků"
+ "toggleWhitespace": "Ikona pro akci přepnutí prázdných znaků v editoru rozdílů",
+ "variablesViewIcon": "Zobrazit ikonu zobrazení proměnných"
+ },
+ "vs/workbench/contrib/notebook/browser/outputEditor/notebookOutputEditor": {
+ "empty": "Buňka nemá žádný výstup.",
+ "noRenderer.2": "Nenašel se žádný renderer pro výstup. Má následující typy mimetype: {0}",
+ "notebookOutputEditor": "Editor výstupu poznámkového bloku"
+ },
+ "vs/workbench/contrib/notebook/browser/outputEditor/notebookOutputEditorInput": {
+ "notebookOutputEditorInput": "Náhled výstupu poznámkového bloku"
+ },
+ "vs/workbench/contrib/notebook/browser/services/notebookExecutionServiceImpl": {
+ "notebookRunTrust": "Při provádění buňky poznámkového bloku se spustí kód z tohoto pracovního prostoru."
+ },
+ "vs/workbench/contrib/notebook/browser/services/notebookKernelHistoryServiceImpl": {
+ "workbench.notebook.clearNotebookKernelsMRUCache": "Vymazat mezipaměť naposledy použitých jader poznámkového bloku"
},
"vs/workbench/contrib/notebook/browser/services/notebookKeymapServiceImpl": {
"disableOtherKeymapsConfirmation": "Chcete zakázat jiná mapování kláves ({0}), aby se předešlo konfliktům mezi klávesovými zkratkami?",
"no": "Ne",
"yes": "Ano"
},
+ "vs/workbench/contrib/notebook/browser/services/notebookLoggingServiceImpl": {
+ "renderChannelName": "Poznámkový blok"
+ },
+ "vs/workbench/contrib/notebook/browser/services/notebookServiceImpl": {
+ "notebookOpenInstallMissingViewType": "Nainstalovat rozšíření pro „{0}“"
+ },
"vs/workbench/contrib/notebook/browser/view/cellParts/cellEditorOptions": {
"notebook.cell.toggleLineNumbers.title": "Zobrazit čísla řádků buněk",
"notebook.lineNumbers": "Určuje zobrazení čísel řádků v editoru buněk.",
- "notebook.showLineNumbers": "Zobrazit čísla řádků poznámkového bloku",
+ "notebook.showLineNumbers": "Čísla řádků poznámkového bloku",
"notebook.toggleLineNumbers": "Přepnout čísla řádků poznámkového bloku"
},
"vs/workbench/contrib/notebook/browser/view/cellParts/cellOutput": {
@@ -7257,11 +12288,11 @@
},
"vs/workbench/contrib/notebook/browser/view/cellParts/codeCell": {
"cellExpandInputButtonLabel": "Rozbalit vstup buňky ({0})",
- "cellExpandInputButtonLabelWithDoubleClick": "Poklikáním rozbalíte vstup buňky ({0})."
+ "cellExpandInputButtonLabelWithDoubleClick": "Poklikáním rozbalíte vstup buňky ({0})"
},
"vs/workbench/contrib/notebook/browser/view/cellParts/codeCellExecutionIcon": {
"notebook.cell.status.executing": "Provádí se",
- "notebook.cell.status.failed": "Neúspěch",
+ "notebook.cell.status.failure": "Selhání",
"notebook.cell.status.pending": "Čekající",
"notebook.cell.status.success": "Úspěch"
},
@@ -7270,31 +12301,61 @@
},
"vs/workbench/contrib/notebook/browser/view/cellParts/collapsedCellOutput": {
"cellExpandOutputButtonLabel": "Rozbalit výstup buňky (${0})",
- "cellExpandOutputButtonLabelWithDoubleClick": "Dvojitým kliknutím rozbalíte výstup buňky ({0}).",
+ "cellExpandOutputButtonLabelWithDoubleClick": "Poklikáním rozbalíte výstup buňky ({0})",
"cellOutputsCollapsedMsg": "Výstupy jsou sbalené."
},
"vs/workbench/contrib/notebook/browser/view/cellParts/foldedCellHint": {
"hiddenCellsLabel": "Jedna skrytá buňka",
"hiddenCellsLabelPlural": "Počet skrytých buněk: {0}…"
},
- "vs/workbench/contrib/notebook/browser/view/cellParts/markdownCell": {
+ "vs/workbench/contrib/notebook/browser/view/cellParts/markupCell": {
"cellExpandInputButtonLabel": "Rozbalit vstup buňky ({0})",
- "cellExpandInputButtonLabelWithDoubleClick": "Poklikáním rozbalíte vstup buňky ({0})."
+ "cellExpandInputButtonLabelWithDoubleClick": "Poklikáním rozbalíte vstup buňky ({0})"
},
"vs/workbench/contrib/notebook/browser/view/renderers/backLayerWebView": {
- "notebook.emptyMarkdownPlaceholder": "Prázdná buňka Markdownu. Po poklikání nebo stisknutí klávesy Enter můžete provést úpravy.",
- "notebook.error.rendererNotFound": "Pro $0 a se nenašel žádný renderer."
+ "notebook.emptyMarkdownPlaceholder": "Prázdná buňka Markdown. Po poklikání nebo stisknutí klávesy Enter můžete provést úpravy.",
+ "notebook.error.rendererFallbacksExhausted": "Nepovedlo se vykreslit obsah pro $0",
+ "notebook.error.rendererNotFound": "Pro $0 a se nenašel žádný renderer.",
+ "webview title": "Obsah webového zobrazení poznámkového bloku"
},
"vs/workbench/contrib/notebook/browser/view/renderers/cellRenderer": {
"cellExecutionOrderCountLabel": "Pořadí provádění"
},
- "vs/workbench/contrib/notebook/browser/viewParts/notebookKernelActionViewItem": {
- "select": "Vybrat jádro"
+ "vs/workbench/contrib/notebook/browser/viewModel/notebookOutlineEntryFactory": {
+ "empty": "prázdná buňka"
+ },
+ "vs/workbench/contrib/notebook/browser/viewParts/notebookKernelQuickPickStrategy": {
+ "current1": "Aktuálně vybráno",
+ "current2": "{0} – aktuálně vybráno",
+ "installSuggestedKernel": "Instalace/povolení navrhovaných rozšíření",
+ "kernels.detecting": "Zjišťování jader",
+ "kernels.selectedKernelAndKernelDetectionRunning": "Vybrané jádro: {0} (spuštěné úlohy zjišťování jádra)",
+ "learnMoreTooltip": "Další informace",
+ "prompt.placeholder.change": "Změnit jádro pro {0}",
+ "prompt.placeholder.select": "Vyberte jádro pro {0}.",
+ "searchForKernels": "Vyhledat rozšíření jádra přes marketplace",
+ "select": "Vybrat jádro",
+ "selectAnotherKernel": "Vybrat jiné jádro",
+ "selectAnotherKernel.more": "Vybrat jiné jádro…",
+ "selectKernel.placeholder": "Zadejte zdroj jádra, který chcete zvolit",
+ "selectKernelFromExtension": "Vyberte jádro z {0}."
+ },
+ "vs/workbench/contrib/notebook/browser/viewParts/notebookKernelView": {
+ "notebookActions.selectKernel": "Vybrat jádro poznámkového bloku",
+ "notebookActions.selectKernel.args": "Argumenty jádra poznámkového bloku"
+ },
+ "vs/workbench/contrib/notebook/browser/viewParts/notebookViewZones": {
+ "workbench.notebook.developer.addViewZones": "Přepnout zóny zobrazení poznámkového bloku"
+ },
+ "vs/workbench/contrib/notebook/common/notebookEditorInput": {
+ "vetoAutoExtHostRestart": "Poznámkový blok poskytnutý rozšířením pro '{0}' je stále otevřený, jinak by se zavřel.",
+ "vetoExtHostRestart": "Nepovedlo se uložit poznámkový blok poskytnutý rozšířením pro '{0}'."
},
- "vs/workbench/contrib/notebook/common/notebookEditorModel": {
- "notebook.staleSaveError": "Obsah souboru se na disku změnil. Chcete otevřít aktualizovanou verzi nebo přepsat soubor vašimi změnami?",
- "notebook.staleSaveError.overwrite.": "Přepsat",
- "notebook.staleSaveError.revert": "Obnovit"
+ "vs/workbench/contrib/offline/browser/offline.contribution": {
+ "offline": "Zdá se, že síť je offline, některé funkce nemusí být dostupné.",
+ "statusBarOfflineBackground": "Barva pozadí stavového řádku, když je workbench offline. Stavový řádek se zobrazuje v dolní části okna.",
+ "statusBarOfflineBorder": "Oddělení barvy rámečku stavového řádku do postranního panelu a editoru, když je workbench offline. Stavový řádek se zobrazuje v dolní části okna",
+ "statusBarOfflineForeground": "Barva popředí stavového řádku, když je workbench offline. Stavový řádek se zobrazuje v dolní části okna."
},
"vs/workbench/contrib/outline/browser/outline.contribution": {
"filteredTypes.array": "Pokud je povoleno, zobrazují se v osnově symboly array.",
@@ -7324,75 +12385,96 @@
"filteredTypes.typeParameter": "Pokud je povoleno, zobrazují se v osnově symboly typeParameter.",
"filteredTypes.variable": "Pokud je povoleno, zobrazují se v osnově symboly variable.",
"name": "Osnova",
- "outline.problem.colors": "Pro chyby a upozornění používat barvy",
- "outline.problems.badges": "Pro chyby a upozornění používat odznáčky",
- "outline.showIcons": "Vykreslovat prvky osnovy s ikonami",
- "outline.showProblem": "Zobrazovat chyby a upozornění u prvků osnovy",
+ "outline.initialState": "Určuje, jestli jsou položky osnovy sbalené nebo rozbalené.",
+ "outline.initialState.collapsed": "Sbalit všechny položky.",
+ "outline.initialState.expanded": "Rozbalit všechny položky.",
+ "outline.problem.colors": "Pro chyby a upozornění u elementů Outline používat barvy. Přepsáno pomocí {0}, když je to vypnuto.",
+ "outline.problems.badges": "Pro chyby a upozornění u elementů Outline používat odznáčky. Přepsáno pomocí {0}, když je to vypnuto.",
+ "outline.showIcons": "Vykreslení obrysových prvků s ikonami.",
+ "outline.showProblem": "Zobrazovat chyby a upozornění u elementů Outline. Přepsáno pomocí {0}, když je to vypnuto.",
"outlineConfigurationTitle": "Osnova",
"outlineViewIcon": "Zobrazit ikonu zobrazení osnovy"
},
- "vs/workbench/contrib/outline/browser/outlinePane": {
+ "vs/workbench/contrib/outline/browser/outlineActions": {
"collapse": "Sbalit vše",
+ "expand": "Rozbalit vše",
"filterOnType": "Filtrovat při psaní",
"followCur": "Sledovat kurzor",
- "loading": "Načítají se symboly dokumentu pro {0}...",
- "no-editor": "Aktivní editor nemůže poskytnout informace o osnově.",
- "no-symbols": "V dokumentu {0} se nenašly žádné symboly.",
"sortByKind": "Seřadit podle: kategorie",
"sortByName": "Seřadit podle: názvu",
"sortByPosition": "Seřadit podle: pozice"
},
- "vs/workbench/contrib/output/browser/logViewer": {
- "logViewerAriaLabel": "Prohlížeč protokolů"
+ "vs/workbench/contrib/outline/browser/outlinePane": {
+ "loading": "Načítají se symboly dokumentu pro {0}...",
+ "no-editor": "Aktivní editor nemůže poskytnout informace o osnově.",
+ "no-symbols": "V dokumentu {0} se nenašly žádné symboly."
},
"vs/workbench/contrib/output/browser/output.contribution": {
+ "addCompoundLog": "Přidat složený protokol...",
+ "clearFiltersText": "Vymazat text filtrů",
"clearOutput.label": "Vymazat výstup",
- "logViewer": "Prohlížeč protokolů",
+ "exportLogs": "Exportovat protokoly…",
+ "extensionLogs": "Protokoly rozšíření",
+ "importLog": "Protokol importu...",
+ "importLogFile": "Importovat soubor protokolu",
+ "logFile": "ID souboru protokolu, který se má otevřít, například „okno“. V současné době je nejlepší získat ID kontrolou příkazů workbench.action.output.show.",
+ "logFiles": "Soubory protokolu",
+ "logLevel.label": "Nastavit úroveň protokolu...",
+ "logLevelDefault.label": "Nastavit jako výchozí",
"miToggleOutput": "&&Výstup",
- "openActiveLogOutputFile": "Otevřít výstupní soubor protokolu",
- "openLogFile": "Otevřít soubor protokolu...",
+ "nocustumoutput": "Nejsou k dispozici žádné vlastní výstupy, které by se odebraly.",
+ "openActiveOutputFile": "Otevřít výstup v editoru",
+ "openActiveOutputFileInNewWindow": "Otevřít výstup v novém okně",
+ "openLogFile": "Otevřít protokol…",
"output": "Výstup",
"output.smartScroll.enabled": "Umožňuje povolit nebo zakázat inteligentní posouvání v zobrazení výstupu. Inteligentní posouvání umožňuje automaticky blokovat posouvání při kliknutí do zobrazení výstupu a při kliknutí na poslední řádek ho zase odemknout.",
- "outputCleared": "Výstup byl vymazán.",
"outputScrollOff": "Vypnout automatické posouvání",
"outputScrollOn": "Zapnout automatické posouvání",
"outputViewIcon": "Zobrazit ikonu zobrazení výstupu",
+ "removeLog": "Odebrat výstup…",
+ "saveActiveOutputAs": "Uložit výstup jako...",
+ "selectOutput": "Vybrat výstupní kanál",
"selectlog": "Vybrat protokol",
"selectlogFile": "Vybrat soubor protokolu",
"showLogs": "Zobrazit protokoly...",
- "switchToOutput.label": "Přepnout na výstup",
- "toggleAutoScroll": "Přepnout automatické posouvání"
+ "showOutputChannels": "Zobrazit výstupní kanály...",
+ "switchBetweenOutputs.label": "Přepnout výstup",
+ "switchToOutput.label": "Přepnout výstup",
+ "toggleAutoScroll": "Přepnout automatické posouvání",
+ "toggleTraceDescription": "Zobrazit nebo skrýt {0} zprávy ve výstupu",
+ "userLogs": "Protokoly uživatelů"
+ },
+ "vs/workbench/contrib/output/browser/outputServices": {
+ "saveLog.dialogTitle": "Uložit výstup jako"
},
"vs/workbench/contrib/output/browser/outputView": {
"channel": "Výstupní kanál pro: {0}",
- "logChannel": "Protokol ({0})",
"output": "Výstup",
"output model title": "{0} – výstup",
- "outputChannels": "Výstupní kanály",
- "outputViewAriaLabel": "Výstupní panel",
- "outputViewWithInputAriaLabel": "{0}, výstupní panel"
+ "outputView.filter.placeholder": "Filtr",
+ "outputViewAriaLabel": "Výstupní panel"
},
"vs/workbench/contrib/performance/browser/performance.contribution": {
+ "cycles": "Cykly tiskové služby",
+ "emitter": "Profily tiskových vysílačů",
+ "insta.trace": "Trasování tiskové služby",
"show.label": "Výkon při spuštění"
},
"vs/workbench/contrib/performance/browser/perfviewEditor": {
"name": "Výkon při spuštění"
},
- "vs/workbench/contrib/performance/electron-sandbox/startupProfiler": {
+ "vs/workbench/contrib/performance/electron-browser/performance.contribution": {
+ "experimental.rendererProfiling": "Když je tato možnost povolená, pomalé renderery se automaticky profilují."
+ },
+ "vs/workbench/contrib/performance/electron-browser/startupProfiler": {
"prof.detail": "Vytvořte prosím problém a připojte ručně následující soubory:\r\n{0}",
"prof.detail.restart": "Aby bylo možné dál používat {0}, je nutné znovu provést restart. Ještě jednou vám děkujeme za váš příspěvek.",
"prof.message": "Profily se úspěšně vytvořily.",
- "prof.restart": "&&Restartovat",
+ "prof.restart": "Restartovat",
"prof.restart.button": "&&Restartovat",
"prof.restartAndFileIssue": "&&Vytvořit problém a restartovat",
"prof.thanks": "Děkujeme vám za pomoc."
},
- "vs/workbench/contrib/preferences/browser/keybindingWidgets": {
- "defineKeybinding.chordsTo": "klávesový akord pro",
- "defineKeybinding.existing": "Tuto klávesovou zkratku má tento počet existujících příkazů: {0}.",
- "defineKeybinding.initial": "Stiskněte požadovanou kombinaci kláves a pak stiskněte ENTER.",
- "defineKeybinding.oneExists": "Tuto klávesovou zkratku má 1 existující příkaz."
- },
"vs/workbench/contrib/preferences/browser/keybindingsEditor": {
"SearchKeybindings.FullTextSearchPlaceholder": "Napište, co chcete vyhledat v klávesových zkratkách.",
"SearchKeybindings.KeybindingsSearchPlaceholder": "Zaznamenávají se klávesové zkratky. Zaznamenávání ukončíte stisknutím klávesy Esc.",
@@ -7409,10 +12491,13 @@
"editKeybindingLabelWithKey": "Změnit klávesové zkratky {0}",
"editWhen": "Změnit výraz Kdy",
"error": "Při úpravách klávesových zkratek došlo k chybě {0}. Otevřete prosím soubor keybindings.json a zkontrolujte chyby.",
+ "extension label": "Rozšíření ({0})",
+ "foundResults": "Počet výsledků: {0}",
"keybinding": "Klávesová zkratka",
"keybindingsLabel": "Klávesové zkratky",
- "noKeybinding": "Nejsou přiřazeny žádné klávesové zkratky.",
- "noWhen": "Žádný kontext výrazu Kdy",
+ "keyboard shortcuts aria label": "klávesovou zkratku můžete změnit pomocí mezery nebo klávesy Enter.",
+ "noKeybinding": "Nejsou přiřazené žádné klávesové zkratky",
+ "noWhen": "Ne, když kontext",
"recordKeysLabel": "Zaznamenat klávesové zkratky",
"recording": "Zaznamenání klávesových zkratek",
"removeLabel": "Odebrat klávesovou zkratku",
@@ -7423,25 +12508,44 @@
"sortByPrecedeneLabel": "Seřadit podle priority (nejvyšší první)",
"source": "Zdroj",
"title": "{0} ({1})",
- "when": "Kdy",
- "whenContextInputAriaLabel": "Zadejte kontext výrazu Kdy. (Potvrdíte stisknutím klávesy Enter. Zrušíte klávesou Esc.)"
+ "when": "Kdy"
},
"vs/workbench/contrib/preferences/browser/keybindingsEditorContribution": {
"defineKeybinding.kbLayoutErrorMessage": "V aktuálním rozložení klávesnice nebudete moct tuto klávesovou zkratku stisknout.",
"defineKeybinding.kbLayoutLocalAndUSMessage": "**{0}** pro aktuální rozložení klávesnice (**{1}** pro standardní rozložení klávesnice jazyka angličtina, USA)",
- "defineKeybinding.kbLayoutLocalMessage": "**{0}** pro aktuální rozložení klávesnice",
- "defineKeybinding.start": "Definovat klávesovou zkratku"
+ "defineKeybinding.kbLayoutLocalMessage": "**{0}** pro aktuální rozložení klávesnice"
},
- "vs/workbench/contrib/preferences/browser/preferences.contribution": {
- "Keyboard Shortcuts": "Klávesové zkratky",
- "clear": "Vymazat výsledky vyhledávání",
- "clearHistory": "Vymazat historii vyhledávání klávesových zkratek",
+ "vs/workbench/contrib/preferences/browser/keybindingWidgets": {
+ "defineKeybinding.chordsTo": "klávesový akord pro",
+ "defineKeybinding.existing": "Tuto klávesovou zkratku má tento počet existujících příkazů: {0}.",
+ "defineKeybinding.initial": "Stiskněte požadovanou kombinaci kláves a pak stiskněte ENTER.",
+ "defineKeybinding.oneExists": "Tuto klávesovou zkratku má 1 existující příkaz."
+ },
+ "vs/workbench/contrib/preferences/browser/keyboardLayoutPicker": {
+ "autoDetect": "Automaticky zjistit",
+ "configureKeyboardLayout": "Konfigurovat rozložení klávesnice",
+ "displayLanguage": "Definuje rozložení klávesnice použité ve VS Code v prostředí prohlížeče.",
+ "doc": "Otevřete VS Code a z palety příkazů spusťte příkaz Vývojář: Kontrola mapování klíčů (JSON).",
+ "fail.createSettings": "Nelze vytvořit {0} ({1}).",
+ "keyboard.chooseLayout": "Změnit rozložení klávesnice",
+ "keyboardLayout": "Rozložení: {0}",
+ "layoutPicks": "Rozložení klávesnice ({0})",
+ "pickKeyboardLayout": "Vybrat rozložení klávesnice",
+ "status.workbench.keyboardLayout": "Rozložení klávesnice"
+ },
+ "vs/workbench/contrib/preferences/browser/preferences.contribution": {
+ "clear": "Vymazat výsledky vyhledávání",
+ "clearHistory": "Vymazat historii vyhledávání klávesových zkratek",
+ "defineKeybinding.start": "Definovat klávesovou zkratku",
"filterUntrusted": "Zobrazit nastavení nedůvěryhodného pracovního prostoru",
"keybindingsEditor": "Editor klávesových zkratek",
+ "keyboardShortcuts": "Klávesové zkratky",
"miOpenOnlineSettings": "&&Nastavení online služeb",
"miOpenSettings": "&&Nastavení",
+ "miOpenTelemetrySettings": "&&Nastavení telemetrie",
"miPreferences": "&&Předvolby",
- "openCurrentProfileSettingsJson": "Otevřít aktuální nastavení profilu (JSON)",
+ "openAccessibilitySettings": "Otevřít nastavení přístupnosti",
+ "openApplicationSettingsJson": "Otevřít nastavení aplikace (JSON)",
"openDefaultKeybindingsFile": "Otevřít výchozí klávesové zkratky (JSON)",
"openFolderSettings": "Otevřít nastavení složky",
"openFolderSettingsFile": "Otevřít nastavení složky (JSON)",
@@ -7457,6 +12561,7 @@
"openWorkspaceSettings": "Otevřít nastavení pracovního prostoru",
"openWorkspaceSettingsFile": "Otevřít nastavení pracovního prostoru (JSON)",
"preferences": "Předvolby",
+ "preferencesEditor": "Editor předvoleb",
"settings": "Nastavení",
"settings.clearResults": "Vymazat výsledky hledání v nastavení",
"settings.focusFile": "Přepnout fokus na soubor nastavení",
@@ -7466,42 +12571,51 @@
"settings.focusSettingsList": "Přepnout fokus na seznam nastavení",
"settings.focusSettingsTOC": "Přesunout fokus na obsah nastavení",
"settings.showContextMenu": "Zobrazit místní nabídku nastavení",
+ "settings.toggleAiSearch": "Přepnout vyhledávání nastavení AI",
"settingsEditor2": "Editor nastavení 2",
- "showDefaultKeybindings": "Zobrazit výchozí klávesové zkratky",
+ "showDefaultKeybindings": "Zobrazit klávesové zkratky systému",
"showExtensionKeybindings": "Zobrazit klávesové zkratky rozšíření",
- "showTelemtrySettings": "Nastavení telemetrie",
- "showUserKeybindings": "Zobrazit uživatelské klávesové zkratky"
+ "showUserKeybindings": "Zobrazit uživatelské klávesové zkratky",
+ "workbench.action.openSettingsJson.description": "Otevře soubor JSON obsahující aktuální nastavení profilu uživatele."
},
"vs/workbench/contrib/preferences/browser/preferencesActions": {
"configureLanguageBasedSettings": "Konfigurovat nastavení specifické pro jazyk...",
"languageDescriptionConfigured": "({0})",
"pickLanguage": "Vybrat jazyk"
},
+ "vs/workbench/contrib/preferences/browser/preferencesEditor": {
+ "FullTextSearchPlaceholder": "Hledat: {0}",
+ "preferencesTabSwitcherBarAriaLabel": "Přepínač karet předvoleb"
+ },
"vs/workbench/contrib/preferences/browser/preferencesIcons": {
"keybindingsAddIcon": "Ikona pro akci Přidat v uživatelském rozhraní klávesových zkratek",
"keybindingsEditIcon": "Ikona pro akci Upravit v uživatelském rozhraní klávesových zkratek",
"keybindingsRecordKeysIcon": "Ikona pro akci Zaznamenat klávesové zkratky v uživatelském rozhraní klávesových zkratek",
"keybindingsSortIcon": "Ikona pro přepínač Seřadit podle priority v uživatelském rozhraní klávesových zkratek",
+ "preferencesAiResults": "Ikona pro zobrazení výsledků AI v uživatelském rozhraní Nastavení",
"preferencesClearInput": "Ikona pro vymazání vstupu v nastaveních a uživatelském rozhraní klávesových zkratek",
"preferencesDiscardIcon": "Ikona pro akci Zahodit v uživatelském rozhraní Nastavení",
"preferencesOpenSettings": "Ikona pro příkazy Otevřít nastavení",
- "settingsAddIcon": "Ikona pro akci Přidat v uživatelském rozhraní Nastavení",
"settingsEditIcon": "Ikona pro akci Upravit v uživatelském rozhraní Nastavení",
"settingsFilter": "Ikona tlačítka, které navrhuje filtry pro uživatelské rozhraní Nastavení.",
- "settingsGroupCollapsedIcon": "Ikona pro sbalený oddíl v rozděleném editoru Nastavení JSON",
- "settingsGroupExpandedIcon": "Ikona pro rozbalený oddíl v rozděleném editoru Nastavení JSON",
"settingsMoreActionIcon": "Ikona pro akci Další akce v uživatelském rozhraní Nastavení",
"settingsRemoveIcon": "Ikona pro akci Odebrat v uživatelském rozhraní Nastavení",
"settingsScopeDropDownIcon": "Ikona pro rozevírací tlačítko složek v rozděleném editoru Nastavení JSON"
},
"vs/workbench/contrib/preferences/browser/preferencesRenderers": {
+ "allProfileSettingWhileInNonDefaultProfileSetting": "Toto nastavení nelze použít, protože je nakonfigurováno pro použití ve všech profilech pomocí nastavení {0}. Místo toho se použije hodnota z výchozího profilu.",
"copyDefaultValue": "Kopírovat do nastavení",
"defaultProfileSettingWhileNonDefaultActive": "Toto nastavení nelze použít, pokud je aktivní jiný než výchozí profil. Použije se, když je aktivní výchozí profil.",
"editTtile": "Upravit",
"manage workspace trust": "Spravovat vztah důvěryhodnosti pracovního prostoru",
+ "mcp.renderer.openRemoteConfig": "Otevřít konfiguraci MCP vzdáleného uživatele",
+ "mcp.renderer.openUserConfig": "Otevřít konfiguraci MCP uživatele",
+ "mcp.renderer.remoteConfigFound": "Servery MCP by neměly být nakonfigurované v nastaveních vzdáleného uživatele. Místo toho použijte vyhrazenou konfiguraci MCP.",
+ "mcp.renderer.userConfigFound": "Servery MCP by neměly být nakonfigurované v uživatelských nastaveních. Místo toho použijte vyhrazenou konfiguraci MCP.",
"replaceDefaultValue": "Nahradit v nastavení",
"unknown configuration setting": "Neznámé nastavení konfigurace",
- "unsupportedApplicationSetting": "Toto nastavení má obor aplikace a lze ho nastavit pouze v souboru nastavení uživatele.",
+ "unsupportLanguageOverrideSetting": "Toto nastavení nelze použít, protože není registrované jako nastavení přepsání jazyka.",
+ "unsupportedApplicationSetting": "Toto nastavení má obor aplikace a lze ho nastavit pouze v souboru nastavení z výchozího profilu.",
"unsupportedMachineSetting": "Toto nastavení je možné použít pouze v uživatelských nastaveních v místním okně nebo ve vzdálených nastavení ve vzdáleném okně.",
"unsupportedPolicySetting": "Toto nastavení nelze použít, protože je nakonfigurováno v zásadách systému.",
"unsupportedProperty": "Nepodporovaná vlastnost",
@@ -7523,13 +12637,20 @@
"filterInput": "Nastavení filtru",
"lastSyncedLabel": "Poslední synchronizace: {0}",
"moreThanOneResult": "Nalezená nastavení: {0}",
+ "moreThanOneResultWithAiAvailable": "Nalezená nastavení: {0} Dostupné výsledky AI",
+ "noAiResults": "V tuto chvíli nejsou k dispozici žádné výsledky AI.",
"noResults": "Nenalezena žádná nastavení",
+ "noResultsWithAiAvailable": "Nenašla se žádná nastavení. Dostupné výsledky AI",
"oneResult": "Nalezeno 1 nastavení",
+ "oneResultWithAiAvailable": "Bylo nalezeno 1 nastavení. Dostupné výsledky AI",
"settings": "Nastavení",
"settings require trust": "Vztah důvěryhodnosti pracovního prostoru",
- "turnOnSyncButton": "Zapnout synchronizaci nastavení"
+ "showAiResultsDisabled": "V tuto chvíli nejsou k dispozici žádné výsledky od AI…",
+ "showAiResultsEnabled": "Zobrazit výsledky doporučené umělou inteligencí",
+ "turnOnSyncButton": "Nastavení zálohování a synchronizace"
},
"vs/workbench/contrib/preferences/browser/settingsEditorSettingIndicators": {
+ "advancedLabel": "Upřesnit",
"alsoConfiguredElsewhere": "Změněno i jinde",
"alsoConfiguredIn": "Také změněno v",
"alsoModifiedInScopes": "Nastavení se také změnilo v následujících oborech:",
@@ -7538,32 +12659,47 @@
"applicationSettingDescriptionAccessible": "Nastavení hodnoty zachované při přepínání profilů",
"configuredElsewhere": "Změněno jinde",
"configuredIn": "Změněno v",
- "defaultOverriddenDetails": "Výchozí hodnota nastavení byla přepsána hodnotou {0}",
+ "defaultOverriddenDetails": "Výchozí hodnota nastavení byla přepsána prostřednictvím {0}.",
"defaultOverriddenDetailsAriaLabel": "{0} přepíše výchozí hodnotu.",
"defaultOverriddenLabel": "Výchozí hodnota byla změněna",
"defaultOverriddenLanguagesList": "Pro {0} existují výchozí hodnoty specifické pro jazyk.",
+ "experimentalLabel": "Experimentální",
"extensionSyncIgnoredLabel": "Nesynchronizované",
"hasDefaultOverridesForLanguages": "Následující jazyky mají výchozí přepsání:",
+ "manageWorkspaceTrust": "Spravovat vztah důvěryhodnosti pracovního prostoru",
"modifiedInScopeForLanguage": "Obor {0} pro {1}",
"modifiedInScopeForLanguageMidSentence": "obor {0} pro {1}",
"modifiedInScopes": "Nastavení se změnilo v následujících oborech:",
+ "multipleDefaultOverriddenDetailsAriaLabel": "Přepsat výchozí hodnoty hodnotou {0}",
+ "multipledefaultOverriddenDetails": "{0} stanovuje výchozí hodnoty.",
+ "policyDescription": "Toto nastavení spravuje vaše organizace a jeho skutečnou hodnotu nelze změnit.",
+ "policyDescriptionAccessible": "Spravováno zásadami organizace; hodnota nastavení se nepoužila",
+ "policyFilterLink": "Zobrazit nastavení zásad",
+ "policyLabelText": "Spravováno organizací",
+ "previewLabel": "Preview",
"remote": "Vzdálené",
"syncIgnoredAriaLabel": "Nastavení se během synchronizace ignoruje.",
"syncIgnoredTitle": "Toto nastavení se během synchronizace ignoruje.",
+ "trustLabel": "Hodnotu nastavení lze použít jen v důvěryhodném pracovním prostoru.",
"user": "Uživatel",
- "workspace": "Pracovní prostor"
+ "workspace": "Pracovní prostor",
+ "workspaceUntrustedAriaLabel": "Nedůvěryhodný pracovní prostor; hodnota nastavení se nepoužije",
+ "workspaceUntrustedLabel": "Vyžaduje vztah důvěryhodnosti pracovního prostoru"
},
"vs/workbench/contrib/preferences/browser/settingsLayout": {
+ "accessibility": "Usnadnění",
+ "accessibility.signals": "Signály přístupnosti",
"appearance": "Vzhled",
"application": "Aplikace",
- "audioCues": "Zvukové signály",
"breadcrumbs": "Popis cesty",
+ "chat": "Chat",
"comments": "Komentáře",
"commonlyUsed": "Běžně používané",
"cursor": "Kurzor",
"debug": "Ladit",
"diffEditor": "Editor rozdílů",
"editorManagement": "Správa editoru",
+ "experimental": "Experimentální",
"extensions": "Rozšíření",
"features": "Funkce",
"fileExplorer": "Průzkumník",
@@ -7571,10 +12707,14 @@
"find": "Najít",
"font": "Písmo",
"formatting": "Formátování",
+ "issueReporter": "Sestavy problémů",
"keyboard": "Klávesnice",
+ "mergeEditor": "Editor slučování",
"minimap": "Minimapa",
+ "multiDiffEditor": "Editor rozdílů ve více souborech",
"newWindow": "Nové okno",
"notebook": "Poznámkový blok",
+ "other": "Další",
"output": "Výstup",
"problems": "Problémy",
"proxy": "Proxy server",
@@ -7599,51 +12739,67 @@
"zenMode": "Režim Zen"
},
"vs/workbench/contrib/preferences/browser/settingsSearchMenu": {
+ "advancedSettingsSearch": "Upřesnit",
+ "advancedSettingsSearchTooltip": "Zobrazit upřesňující nastavení",
+ "experimental": "Experimentální",
+ "experimentalSettingsSearchTooltip": "Zobrazit experimentální nastavení",
"extSettingsSearch": "ID rozšíření…",
"extSettingsSearchTooltip": "Přidat filtr ID rozšíření",
"featureSettingsSearch": "Funkce…",
"featureSettingsSearchTooltip": "Přidat filtr funkcí",
+ "idSettingsSearch": "Nastavuje se ID…",
+ "idSettingsSearchTooltip": "Přidat filtr ID nastavení",
"langSettingsSearch": "Jazyk…",
"langSettingsSearchTooltip": "Přidat filtr ID jazyka",
"modifiedSettingsSearch": "Změněno",
"modifiedSettingsSearchTooltip": "Přidat nebo odebrat filtr změněných nastavení",
"onlineSettingsSearch": "Online služby",
"onlineSettingsSearchTooltip": "Zobrazit nastavení pro online služby",
- "policySettingsSearch": "Služby zásad",
- "policySettingsSearchTooltip": "Zobrazit nastavení pro služby zásad",
+ "policySettingsSearch": "Zásady organizace",
+ "policySettingsSearchTooltip": "Zobrazit nastavení zásad organizace",
+ "previewSettings": "Náhled",
+ "previewSettingsSearchTooltip": "Zobrazit nastavení náhledu",
+ "stableSettings": "Stabilní",
+ "stableSettingsSearchTooltip": "Zobrazit stabilní nastavení",
"tagSettingsSearch": "Značka…",
"tagSettingsSearchTooltip": "Přidat filtr značek"
},
"vs/workbench/contrib/preferences/browser/settingsTree": {
+ "applyToAllProfiles": "Použít nastavení pro všechny profily",
"copySettingAsJSONLabel": "Kopírovat nastavení jako JSON",
+ "copySettingAsURLLabel": "Kopírovat nastavení jako adresu URL",
"copySettingIdLabel": "Kopírovat ID nastavení",
+ "dismiss": "Zavřít",
"editInSettingsJson": "Upravit v souboru settings.json",
"editLanguageSettingLabel": "Upravit nastavení pro {0}",
"extensions": "Rozšíření",
- "manageWorkspaceTrust": "Spravovat vztah důvěryhodnosti pracovního prostoru",
"modified": "Nastavení bylo nakonfigurováno v aktuálním oboru.",
"newExtensionsButtonLabel": "Zobrazit odpovídající rozšíření",
- "policyLabel": "Toto nastavení spravuje vaše organizace.",
"resetSettingLabel": "Obnovit nastavení",
"settings": "Nastavení",
"settings.Default": "výchozí",
"settings.Modified": "Upraveno",
"settingsContextMenuTitle": "Další akce... ",
+ "showExtension": "Zobrazit rozšíření",
"stopSyncingSetting": "Synchronizovat toto nastavení",
- "trustLabel": "Toto nastavení lze použít pouze v důvěryhodném pracovním prostoru.",
- "validationError": "Chyba ověření",
- "viewPolicySettings": "Zobrazit nastavení zásad"
+ "validationError": "Chyba ověření"
},
"vs/workbench/contrib/preferences/browser/settingsWidgets": {
"addItem": "Přidat položku",
"addPattern": "Přidat vzor",
"cancelButton": "Zrušit",
"editExcludeItem": "Upravit položku vyloučení",
+ "editIncludeItem": "Upravit položku zahrnutí",
"editItem": "Upravit položku",
+ "excludeIncludeSource": ". Výchozí hodnota poskytnutá prostřednictvím {0}",
"excludePatternHintLabel": "Vyloučit soubory odpovídající vzoru {0}",
"excludePatternInputPlaceholder": "Vyloučit vzor...",
"excludeSiblingHintLabel": "Vyloučit soubory odpovídající vzoru {0}, pouze pokud je k dispozici soubor odpovídající vzoru {1}",
"excludeSiblingInputPlaceholder": "Když existuje vzor...",
+ "includePatternHintLabel": "Zahrnout soubory odpovídající vzoru {0}",
+ "includePatternInputPlaceholder": "Zahrnout vzor...",
+ "includeSiblingHintLabel": "Zahrnout soubory odpovídající vzoru {0}, pouze pokud je k dispozici soubor odpovídající vzoru {1}",
+ "includeSiblingInputPlaceholder": "Když existuje vzor...",
"itemInputPlaceholder": "Položka…",
"listSiblingHintLabel": "Položka seznamu {0} s položkou na stejné úrovni ${1}",
"listSiblingInputPlaceholder": "Položka na stejné úrovni...",
@@ -7651,10 +12807,12 @@
"objectKeyHeader": "Položka",
"objectKeyInputPlaceholder": "Klávesa",
"objectPairHintLabel": "Vlastnost {0} je nastavená na hodnotu {1}.",
+ "objectPairHintLabelWithSource": "Vlastnost {0} je nastavená na hodnotu {1} prostřednictvím {2}.",
"objectValueHeader": "Hodnota",
"objectValueInputPlaceholder": "Hodnota",
"okButton": "OK",
"removeExcludeItem": "Odebrat položku vyloučení",
+ "removeIncludeItem": "Odebrat položku zahrnutí",
"removeItem": "Odebrat položku",
"resetItem": "Obnovit položku"
},
@@ -7662,9 +12820,14 @@
"groupRowAriaLabel": "{0}, skupina",
"settingsTOC": "Obsah nastavení"
},
+ "vs/workbench/contrib/preferences/common/preferences": {
+ "advancedIndicatorDescription": "Upřesňující nastavení: Toto nastavení je určeno pro pokročilé scénáře a konfigurace. Upravte ho pouze, pokud víte, co dělá.",
+ "experimentalIndicatorDescription": "Experimentální nastavení: Toto nastavení ovládá novou funkci, která se aktivně vyvíjí a může být nestabilní. Může být změněna nebo odebrána.",
+ "previewIndicatorDescription": "Nastavení ve verzi Preview: Toto nastavení ovládá novou funkci, kterou ještě vylepšujeme, ale je připravena k použití. Budeme rádi za zpětnou vazbu."
+ },
"vs/workbench/contrib/preferences/common/preferencesContribution": {
"enableNaturalLanguageSettingsSearch": "Určuje, jestli má být pro nastavení povolen režim vyhledávání v přirozeném jazyce. Vyhledávání v přirozeném jazyce poskytuje online služba Microsoftu.",
- "settingsSearchTocBehavior": "Určuje chování obsahu editoru nastavení při vyhledávání.",
+ "settingsSearchTocBehavior": "Určuje chování obsahu editoru nastavení při vyhledávání. Pokud se toto nastavení mění v editoru nastavení, nastavení se projeví po změně vyhledávacího dotazu.",
"settingsSearchTocBehavior.filter": "Vyfiltruje obsah pouze na kategorie s odpovídajícím nastavením. Kliknutím na kategorii se vyfiltrují výsledky z dané kategorie.",
"settingsSearchTocBehavior.hide": "Skrýt obsah při vyhledávání",
"splitSettingsEditorLabel": "Rozdělit Editor nastavení"
@@ -7686,28 +12849,45 @@
"settingsDropdownForeground": "Popředí rozevíracího seznam editoru nastavení",
"settingsDropdownListBorder": "Ohraničení rozevíracího seznamu editoru nastavení. Ohraničuje možnosti a odděluje možnosti od popisu.",
"settingsHeaderBorder": "Barva ohraničení kontejneru záhlaví.",
+ "settingsHeaderHoverForeground": "Barva popředí záhlaví oddílu nebo nadpisu po najetí myší.",
"settingsSashBorder": "Barva ohraničení rozděleného zobrazení okna editoru nastavení.",
"textInputBoxBackground": "Pozadí pole pro zadání textu v editoru nastavení",
"textInputBoxBorder": "Ohraničení pole pro zadání textu v editoru nastavení",
"textInputBoxForeground": "Popředí pole pro zadání textu v editoru nastavení"
},
- "vs/workbench/contrib/profiles/common/profilesActions": {
- "confiirmation message": "Toto nahradí vaše aktuální nastavení. Opravdu chcete pokračovat?",
- "export profile": "Exportovat nastavení jako profil…",
- "export profile dialog": "Uložit profil",
- "export success": "{0}: Exportování proběhlo úspěšně.",
- "import profile": "Importovat nastavení z profilu…",
- "import profile dialog": "Importovat profil",
- "import profile placeholder": "Zadejte URL profilu nebo vyberte soubor profilu, který chcete importovat.",
- "import profile quick pick title": "Importování nastavení z profilu",
- "import profile title": "Importování nastavení z profilu",
- "select from file": "Importovat ze souboru profilu",
- "select from url": "Importovat z adresy URL"
+ "vs/workbench/contrib/processExplorer/browser/processExplorer.contribution": {
+ "miOpenProcessExplorerer": "Otevřít &&Průzkumníka procesů",
+ "openProcessExplorer": "Otevřít Průzkumníka procesů",
+ "promptOpenWith.processExplorer.displayName": "Průzkumník procesů"
+ },
+ "vs/workbench/contrib/processExplorer/browser/processExplorer.web.contribution": {
+ "processExplorer": "Průzkumník procesů"
+ },
+ "vs/workbench/contrib/processExplorer/browser/processExplorerControl": {
+ "copy": "Kopírovat",
+ "copyAll": "Kopírovat vše",
+ "debug": "Ladit",
+ "forceKillProcess": "Vynutit ukončení procesu",
+ "killProcess": "Ukončit proces",
+ "processCpu": "CPU (%)",
+ "processExplorer": "Průzkumník procesů",
+ "processMemory": "Paměť (MB)",
+ "processName": "Název procesu",
+ "processPid": "PID"
+ },
+ "vs/workbench/contrib/processExplorer/browser/processExplorerEditorInput": {
+ "processExplorerEditorLabelIcon": "Ikona popisku editoru Průzkumníka procesů",
+ "processExplorerInputName": "Průzkumník procesů"
+ },
+ "vs/workbench/contrib/processExplorer/electron-browser/processExplorer.contribution": {
+ "processExplorer": "Průzkumník procesů"
},
"vs/workbench/contrib/quickaccess/browser/commandsQuickAccess": {
"clearButtonLabel": "&&Vymazat",
"clearCommandHistory": "Vymazat historii příkazů",
"commandWithCategory": "{0}: {1}",
+ "commandsQuickAccess.askInChat": "Zeptat se v chatu: {0}",
+ "commandsQuickAccess.configureAskInChatSetting": "Nakonfigurovat viditelnost",
"configure keybinding": "Nakonfigurovat klávesové zkratky",
"confirmClearDetail": "Tato akce je nevratná!",
"confirmClearMessage": "Chcete vymazat historii naposledy použitých příkazů?",
@@ -7724,13 +12904,13 @@
"miGotoLine": "Přejít na řádek/&&sloupec...",
"miOpenView": "&&Otevřít zobrazení...",
"miShowAllCommands": "Zobrazit všechny příkazy",
+ "more": "Další",
"viewQuickAccess": "Otevřít zobrazení",
"viewQuickAccessPlaceholder": "Zadejte název zobrazení, výstupní kanál nebo terminál, které chcete otevřít."
},
"vs/workbench/contrib/quickaccess/browser/viewQuickAccess": {
"channels": "Výstup",
"debugConsoles": "Konzola ladění",
- "logChannel": "Protokol ({0})",
"noViewResults": "Žádná odpovídající zobrazení",
"openView": "Otevřít zobrazení",
"panels": "Panel",
@@ -7746,19 +12926,13 @@
"relaunchSettingMessage": "Bylo změněno nastavení, které se projeví až po restartování.",
"relaunchSettingMessageWeb": "Bylo změněno nastavení, které se projeví až po opětovném načtení.",
"restart": "&&Restartovat",
+ "restartExtensionHost.reason": "Změna složek pracovního prostoru",
"restartWeb": "&&Načíst znovu"
},
"vs/workbench/contrib/remote/browser/explorerViewItems": {
- "remote.explorer.switch": "Přepnout vzdálené",
- "remotes": "Přepnout vzdálené"
+ "switchRemote.label": "Přepnout vzdálené"
},
"vs/workbench/contrib/remote/browser/remote": {
- "RemoteHelpInformationExtPoint": "Přidává informace nápovědy pro vzdálené připojení.",
- "RemoteHelpInformationExtPoint.documentation": "Adresa URL stránky dokumentace vašeho projektu (nebo příkaz, který vrátí tuto adresu URL)",
- "RemoteHelpInformationExtPoint.feedback": "Adresa URL nástroje pro odeslání zpětné vazby vašeho projektu (nebo příkaz, který vrátí tuto adresu URL)",
- "RemoteHelpInformationExtPoint.getStarted": "Adresa URL stránky Začínáme vašeho projektu (nebo příkaz, který vrátí tuto adresu URL)",
- "RemoteHelpInformationExtPoint.issues": "Adresa URL seznamu problémů vašeho projektu (nebo příkaz, který vrátí tuto adresu URL)",
- "cancel": "Zrušit",
"connectionLost": "Připojení bylo ztraceno.",
"pickRemoteExtension": "Vyberte adresu URL, kterou chcete otevřít.",
"reconnectNow": "Znovu připojit",
@@ -7767,25 +12941,39 @@
"reconnectionWaitMany": "Za {0} s proběhne pokus o opětovné připojení...",
"reconnectionWaitOne": "Za {0} s proběhne pokus o opětovné připojení...",
"reloadWindow": "Znovu načíst okno",
+ "reloadWindow.dialog": "&&Znovu načíst okno",
"remote.explorer": "Vzdálený průzkumník",
"remote.help": "Nápověda a zpětná vazba",
"remote.help.documentation": "Přečíst si dokumentaci",
- "remote.help.feedback": "Poslat názor",
"remote.help.getStarted": "Začínáme",
"remote.help.issues": "Zkontrolovat problémy",
"remote.help.report": "Nahlásit problém",
"remotehelp": "Vzdálená nápověda"
},
+ "vs/workbench/contrib/remote/browser/remoteConnectionHealth": {
+ "allow": "&&Povolit",
+ "learnMore": "&&Další informace",
+ "remember": "Už nezobrazovat",
+ "unsupportedGlibcBannerLearnMore": "Další informace",
+ "unsupportedGlibcWarning": "Chystáte se připojit k verzi operačního systému, kterou {0}nepodporuje.",
+ "unsupportedGlibcWarning.banner": "Jste připojení k verzi operačního systému, kterou {0}nepodporuje."
+ },
"vs/workbench/contrib/remote/browser/remoteExplorer": {
"1forwardedPort": "Počet přesměrovaných portů: 1",
"nForwardedPorts": "Počet přesměrovaných portů: {0}",
+ "noRemoteNoPorts": "Žádné přesměrované porty. Přesměrujte port pro přístup k místně spuštěným službám přes internet.\r\n[Přesměrování portu]({0})",
"ports": "Porty",
+ "remote.autoForwardPortsSource.fallback": "Automaticky se přesměrovalo více než 20 portů. Automatické přesměrování portů založené na možnosti process se v nastavení přepnulo na možnost hybrid. Některé porty už nemusí být detekovány.",
+ "remote.autoForwardPortsSource.fallback.showPortSourceSetting": "Zobrazit nastavení",
+ "remote.autoForwardPortsSource.fallback.switchBack": "Vrátit zpět",
"remote.forwardedPorts.statusbarTextNone": "Nepřesměrovávají se žádné porty.",
"remote.forwardedPorts.statusbarTooltip": "Přesměrovávané porty: {0}",
- "remote.tunnelsView.automaticForward": "Vaše aplikace spuštěná na portu {0} je k dispozici. ",
+ "remote.tunnelsView.automaticForward": "Vaše aplikace {0} spuštěná na portu {1} je k dispozici. ",
"remote.tunnelsView.elevationButton": "Použít port {0} jako sudo...",
"remote.tunnelsView.elevationMessage": "Abyste mohli port {0} použít místně, musíte program spustit jako superuživatel. ",
+ "remote.tunnelsView.makePublic": "Nastavit jako veřejné",
"remote.tunnelsView.notificationLink2": "[Zobrazit všechny přesměrované porty]({0})",
+ "remoteNoPorts": "Žádné přesměrované porty. Přesměrujte port pro místní přístup ke spuštěným službám.\r\n[Přesměrování portu]({0})",
"status.forwardedPorts": "Přesměrované porty"
},
"vs/workbench/contrib/remote/browser/remoteIcons": {
@@ -7814,18 +13002,30 @@
"host.open": "Otevírá se vzdálené připojení...",
"host.reconnecting": "Obnovuje se připojení k {0}...",
"host.tooltip": "Úpravy v {0}",
- "installRemotes": "Nainstalovat další vzdálená rozšíření...",
"miCloseRemote": "Zavřít &&vzdálené připojení",
+ "networkStatusHighLatencyTooltip": "Zdá se, že síť má vysokou latenci (poslední {0} ms, průměrná {1} ms), odezva některých funkcí může být zpožděná.",
+ "networkStatusOfflineTooltip": "Zdá se, že síť je offline, některé funkce nemusí být dostupné.",
"noHost.tooltip": "Otevřít vzdálené okno",
"reloadWindow": "Znovu načíst okno",
"remote.category": "Vzdálené",
"remote.close": "Zavřít vzdálené připojení",
"remote.install": "Nainstalovat rozšíření pro vzdálený vývoj",
+ "remote.showExtensionRecommendations": "Pokud je povolena tato možnost, zobrazí se v nabídce Vzdálený indikátor doporučení vzdálených rozšíření.",
"remote.showMenu": "Zobrazit vzdálenou nabídku",
+ "remote.startActions.help": "Další informace",
+ "remote.startActions.install": "Nainstalovat",
+ "remote.startActions.installingExtension": "Probíhá instalace rozšíření ",
+ "remoteActions": "Vyberte možnost pro otevření vzdáleného okna",
"remoteHost": "Vzdálený hostitel",
+ "retry": "Zkusit znovu",
+ "unknownSetupError": "Při nastavování {0} došlo k chybě. Chcete to zkusit znovu?",
"workspace.tooltip": "Úpravy v {0}",
"workspace.tooltip2": "Některé [funkce nejsou k dispozici]({0}) pro prostředky umístěné ve virtuálním systému souborů."
},
+ "vs/workbench/contrib/remote/browser/remoteStartEntry": {
+ "remote.category": "Vzdálené",
+ "remote.showWebStartEntryActions": "Zobrazit položku vzdáleného spuštění pro web"
+ },
"vs/workbench/contrib/remote/browser/tunnelFactory": {
"tunnelPrivacy.private": "Privátní",
"tunnelPrivacy.public": "Veřejné"
@@ -7847,6 +13047,7 @@
"remote.tunnel.copyAddressPlaceholdter": "Zvolte přesměrovaný port.",
"remote.tunnel.forward": "Přesměrovat port",
"remote.tunnel.forwardError": "Nelze přesměrovat port {0}:{1}. Je možné, že hostitel není k dispozici nebo že je již vzdálený port přesměrován.",
+ "remote.tunnel.forwardErrorProvided": "Nelze přeposlat {0}:{1}. {2}",
"remote.tunnel.forwardItem": "Přesměrovat port",
"remote.tunnel.forwardPrompt": "Číslo portu nebo adresa (například 3000 nebo 10.10.10.10:2000)",
"remote.tunnel.label": "Nastavit popisek portu",
@@ -7869,10 +13070,10 @@
"remote.tunnelsView.labelPlaceholder": "Popisek portu",
"remote.tunnelsView.portNumberToHigh": "Číslo portu musí být ≥ 0 a < {0}.",
"remote.tunnelsView.portNumberValid": "Přesměrovaný port by měl být číslo nebo host:port.",
- "tunnel.addressColumn.label": "Místní adresa",
- "tunnel.addressColumn.tooltip": "Adresa, na které je místně k dispozici přesměrovaný port",
+ "remote.tunnelsView.portShouldBeNumber": "Místní port by měl být číslo.",
+ "tunnel.addressColumn.label": "Přeposlaná adresa",
+ "tunnel.addressColumn.tooltip": "Adresa, na které je k dispozici přesměrovaný port.",
"tunnel.focusContext": "Určuje, jestli zobrazení Porty má fokus.",
- "tunnel.forwardedPortsViewEnabled": "Určuje, jestli je povolené zobrazení Porty.",
"tunnel.iconColumn.notRunning": "Žádné spuštěné procesy",
"tunnel.iconColumn.running": "Port má spuštěný proces.",
"tunnel.originColumn.label": "Původ",
@@ -7891,17 +13092,21 @@
"tunnelView.runningProcess.inacessable": "Informace o procesu nejsou k dispozici."
},
"vs/workbench/contrib/remote/common/remote.contribution": {
- "invalidWorkspaceCancel": "&&Zrušit",
- "invalidWorkspaceDetail": "Pracovní prostor neexistuje. Vyberte prosím jiný pracovní prostor, který chcete otevřít.",
+ "invalidWorkspaceDetail": "Vyberte prosím jiný pracovní prostor, který chcete otevřít.",
"invalidWorkspaceMessage": "Pracovní prostor neexistuje.",
"invalidWorkspacePrimary": "&&Otevřít pracovní prostor...",
"pauseSocketWriting": "Připojení: Pozastavit zápis soketu",
"remote": "Vzdálené",
- "remote.autoForwardPorts": "Pokud je tato možnost povolena, jsou zjištěny nové spuštěné procesy a porty, na kterých naslouchá, jsou automaticky předávány. Zakázání tohoto nastavení nezabrání přeposílání všech portů. I když je zakázané, rozšíření i nadále budou moci způsobit přesměrování portů a otevření některých adres URL bude přesto způsobovat přesměrování portů.",
- "remote.autoForwardPortsSource": "Nastaví zdroj, ze kterého se automaticky přesměrovávají porty, když je možnost {0} nastavená na true. Na vzdálených počítačích s Windows a Macích nemá možnost process žádný účinek a použije se možnost output. Aby se toto nastavení projevilo, vyžaduje restart.",
+ "remote.autoForwardPortFallback": "Počet automaticky přesměrovávaných portů, které při automatickém přesměrování portů a nastavení možnosti remote.autoForwardPortsSource na výchozí hodnotu process spustí přepnutí z process na hybrid. Pokud chcete zakázat náhradu, nastavte hodnotu 0. Pokud se nenakonfiguroval remote.autoForwardPortsFallback, ale remote.autoForwardPortsSource ano, bude se remote.autoForwardPortsFallback považovat za nastavený na hodnotu 0.",
+ "remote.autoForwardPorts": "Pokud je tato možnost povolena, jsou zjištěny nové spuštěné procesy a porty, na kterých naslouchá, jsou automaticky předávány. Zakázání tohoto nastavení nezabrání přeposílání všech portů. I když je zakázané, rozšíření i nadále budou moci způsobit přesměrování portů a otevření některých adres URL bude přesto způsobovat přesměrování portů. Viz také: {0}.",
+ "remote.autoForwardPortsSource": "Nastaví zdroj, ze kterého se automaticky přesměrovávají porty, když je možnost {0} nastavená na hodnotu true. Pokud je {0} false, {1} se použije k vyhledání informací o portech, které už byly přesměrovány. Na vzdálených počítačích s Windows a macOS nemají možnosti process a hybrid žádný účinek a použije se možnost output.",
+ "remote.autoForwardPortsSource.hybrid": "Porty zjištěné při čtení výstupu terminálu a ladění se budou automaticky přesměrovávat. Ne všechny procesy, které používají porty, se vytisknou do integrovaného terminálu nebo konzoly ladění, tudíž se některé porty vynechají. Portům se zruší přesměrování sledováním procesů, které naslouchají na daném portu, aby se ukončily.",
"remote.autoForwardPortsSource.output": "Porty zjištěné terminálem pro čtení nebo výstupem ladění se automaticky přesměrují. Do integrovaného terminálu nebo konzoly ladění nebudou zapisovat všechny procesy, které používají porty, proto některé porty budou chybě. Přesměrování portů, které jsou přesměrované podle výstupu, se nezruší, dokud se neprovede nové načtení nebo dokud uživatel port neuzavře v zobrazení Porty.",
"remote.autoForwardPortsSource.process": "Porty zjištěné sledováním spuštěných procesů, které zahrnují port, se automaticky přesměrují.",
+ "remote.defaultExtensionsIfInstalledLocally.invalidFormat": "Identifikátor rozšíření musí být ve formátu publisher.name.",
+ "remote.defaultExtensionsIfInstalledLocally.markdownDescription": "Seznam rozšíření, která se mají nainstalovat při připojení ke vzdálenému zařízení, pokud už proběhla místní instalace.",
"remote.extensionKind": "Umožňuje přepsat typ rozšíření. Rozšíření ui se nainstalují a spouštějí v místním počítači, zatímco rozšíření workspace se spouštějí na vzdáleném počítači. Přepsáním výchozího typu rozšíření pomocí tohoto nastavení určíte, jestli se má toto rozšíření nainstalovat a povolit místně nebo vzdáleně.",
+ "remote.forwardOnClick": "Určuje, jestli se místní adresy URL s portem přesměrují při otevření z terminálu a konzole ladění.",
"remote.localPortHost": "Určuje název místního hostitele, který bude použit pro přesměrování portů.",
"remote.portsAttributes": "Nastaví vlastnosti, které se zavedou, když se přesměruje konkrétní číslo portu. Příklad:\r\n\r\n```\r\n\"3000\": {\r\n \"label\": \"Application\"\r\n},\r\n\"40000-55000\": {\r\n \"onAutoForward\": \"ignore\"\r\n},\r\n\".+\\\\/server.js\": {\r\n \"onAutoForward\": \"openPreview\"\r\n}\r\n```",
"remote.portsAttributes.defaults": "Nastaví výchozí vlastnosti, které se zavedou pro všechny porty, které nezískávají vlastnosti z nastavení {0}. Příklad:\r\n\r\n```\r\n{\r\n \"onAutoForward\": \"ignore\"\r\n}\r\n```",
@@ -7920,41 +13125,125 @@
"remote.portsAttributes.requireLocalPort": "Při hodnotě true modální dialogové okno zobrazí, zda není zvolený místní port použitý pro přesměrování.",
"remote.portsAttributes.silent": "Při automatickém přesměrování tohoto portu se nezobrazí žádné oznámení ani neprovede žádná akce.",
"remote.restoreForwardedPorts": "Restores the ports you forwarded in a workspace.",
- "remoteExtensionLog": "Vzdálený server",
- "remotePtyHostLog": "Vzdálený hostitel Pty",
"triggerReconnect": "Připojení: Aktivovat opětovné připojení",
"ui": "Typ rozšíření uživatelského rozhraní. Ve vzdáleném okně jsou tato rozšíření povolena pouze v případě, že jsou k dispozici v místním počítači.",
"workspace": "Typ rozšíření pracovního prostoru. Ve vzdáleném okně jsou tato rozšíření povolena pouze v případě, že jsou k dispozici vzdáleně."
},
- "vs/workbench/contrib/remote/electron-sandbox/remote.contribution": {
+ "vs/workbench/contrib/remote/electron-browser/remote.contribution": {
"remote": "Vzdálené",
- "remote.downloadExtensionsLocally": "Pokud je povoleno, rozšíření jsou stažena místně a nainstalována na vzdáleném hostiteli."
+ "remote.actions.closeUnusedPorts": "Zavřít nepoužívané přesměrované porty",
+ "remote.category": "Vzdálené",
+ "remote.downloadExtensionsLocally": "Pokud je povoleno, rozšíření jsou stažena místně a nainstalována na vzdáleném hostiteli.",
+ "wslFeatureInstalled": "Určuje, jestli je na platformě nainstalovaná funkce WSL."
+ },
+ "vs/workbench/contrib/remoteCodingAgents/browser/remoteCodingAgents.contribution": {
+ "remoteCodingAgentsExtPoint": "Přidává do chatovacího widgetu integrace agenta vzdáleného psaní kódu.",
+ "remoteCodingAgentsExtPoint.command": "Identifikátor příkazu, který má být proveden. Příkaz musí být deklarován v oddílu příkazů.",
+ "remoteCodingAgentsExtPoint.description": "Popis vzdáleného agenta pro použití v nabídkách a popisech.",
+ "remoteCodingAgentsExtPoint.displayName": "Uživatelsky přívětivý název pro tuto položku, který se používá k zobrazení v nabídkách.",
+ "remoteCodingAgentsExtPoint.followUpRegex": "Poslední výskyt vzoru v existující chatové konverzaci se odešle do přispívajícího rozšíření, aby se usnadnily následné odpovědi.",
+ "remoteCodingAgentsExtPoint.id": "Jedinečný identifikátor této položky.",
+ "remoteCodingAgentsExtPoint.when": "Podmínka, která musí mít hodnotu true, aby se zobrazila tato položka."
+ },
+ "vs/workbench/contrib/remoteTunnel/electron-browser/remoteTunnel.contribution": {
+ "accountPreference.placeholder": "Pokud chcete povolit vzdálený přístup, přihlaste se k účtu.",
+ "action.copyToClipboard": "Kopírovat odkaz prohlížeče do schránky",
+ "action.doNotShowAgain": "Už nezobrazovat",
+ "action.showExtension": "Zobrazit rozšíření",
+ "enable": "&&Povolit",
+ "initialize.progress.title": "[Hledání vzdáleného tunelu](command:{0})",
+ "manage.placeholder": "Vyberte příkaz, který se má vyvolat.",
+ "manage.showLog": "Zobrazit protokol",
+ "manage.title.attached": "Vzdálený tunelový přístup povolen pro {0} (spuštěno externě)",
+ "manage.title.off": "Vzdálený přístup k tunelu není povolený",
+ "manage.title.orunning": "Vzdálený tunelový přístup povolen pro {0}",
+ "manage.tunnelName": "Změnit název tunelu",
+ "others": "Jiné",
+ "progress.turnOn.failed": "Vzdálený tunelový přístup nelze zapnout. Podrobnosti najdete v protokolu vzdálené služby tunelového propojení.",
+ "progress.turnOn.final": "K tomuto počítači teď můžete přistupovat odkudkoli přes zabezpečený tunel [{0}](příkaz:{4}). Pokud se chcete připojit přes jiný počítač, použijte vygenerovaný odkaz [{1}]({2}) nebo použijte rozšíření [{6}]({7}) na ploše nebo na webu. Tento přístup můžete [konfigurovat](příkaz:{3}) nebo [vypnout](příkaz:{5}) prostřednictvím nabídky účty VS Code.",
+ "recommend.remoteExtension": "Tunel '{0}' je dostupný pro vzdálený přístup. K připojení je možné použít rozšíření {1}.",
+ "remoteTunnel.actions.configure": "Konfigurovat název tunelu…",
+ "remoteTunnel.actions.copyToClipboard": "Kopírovat identifikátor URI prohlížeče do schránky",
+ "remoteTunnel.actions.learnMore": "Začínáme s tunely",
+ "remoteTunnel.actions.manage.connecting": "Vzdálený tunelový přístup se připojuje",
+ "remoteTunnel.actions.manage.on.v2": "Vzdálený tunelový přístup je zapnutý",
+ "remoteTunnel.actions.showLog": "Zobrazit protokol služby vzdáleného tunelového propojení",
+ "remoteTunnel.actions.turnOff": "Vypnout vzdálený tunelový přístup…",
+ "remoteTunnel.actions.turnOn": "Zapnout vzdálený tunelový přístup…",
+ "remoteTunnel.category": "Vzdálené tunely",
+ "remoteTunnel.serviceInstallFailed": "Instalace jako služba selhala a vrátili jsme se ke spuštění tunelu pro tuto relaci. Podrobnosti najdete v [protokolu chyb](command:{0}).",
+ "remoteTunnel.turnOff.confirm": "Chcete vypnout vzdálený tunelový přístup?",
+ "remoteTunnel.turnOffAttached.confirm": "Chcete vypnout vzdálený tunelový přístup? Tím také zastavíte službu, která byla spuštěna externě.",
+ "remoteTunnelAccess.machineName": "Název, pod kterým je vzdálený tunelový přístup zaregistrovaný. Pokud není nastavený, použije se název hostitele.",
+ "remoteTunnelAccess.machineNameRegex": "Název musí obsahovat jen písmena, číslice, podtržítka a spojovníky. Nesmí začínat pomlčkou.",
+ "remoteTunnelAccess.preventSleep": "Zabránit tomuto počítači v režimu spánku, pokud je zapnutý vzdálený tunelový přístup.",
+ "sign in using account": "Přihlásit přes {0}",
+ "signed in": "Přihlášeno",
+ "startTunnel.progress.title": "[Spouštění vzdáleného tunelu](command:{0})",
+ "tunnel.enable.placeholder": "Vyberte, jak chcete povolit přístup",
+ "tunnel.enable.service": "Nainstalovat jako službu",
+ "tunnel.enable.service.description": "Spustit pokaždé, když jste přihlášení",
+ "tunnel.enable.session": "Zapnout pro tuto relaci",
+ "tunnel.enable.session.description": "Spustit pokaždé, když je otevřený {0}",
+ "tunnel.preview": "Vzdálené tunely jsou aktuálně ve verzi Preview. Nahlaste všechny problémy pomocí příkazu Nápověda: Nahlásit problém."
+ },
+ "vs/workbench/contrib/replNotebook/browser/repl.contribution": {
+ "repl.execute": "Spustit vstup REPL",
+ "repl.focusLastReplOutput": "Přesunout fokus na poslední provádění REPL",
+ "repl.input.focus": "Přepnout fokus na editor vstupu"
+ },
+ "vs/workbench/contrib/replNotebook/browser/replEditor": {
+ "replEditorInput": "Vstup REPL"
+ },
+ "vs/workbench/contrib/replNotebook/browser/replEditorAccessibilityHelp": {
+ "replEditor.accessibilityView": "Spuštěním příkazu Otevřít zobrazení přístupnosti{0} při navigaci v historii otevřete zobrazení výstupu položky v režimu přístupnosti.",
+ "replEditor.autoFocusRepl": "Nastavení accessibility.replEditor.autoFocusReplExecution určuje, jestli se fokus po provádění kódu automaticky přesune na REPL.",
+ "replEditor.cellNavigation": "Příkaz Ukončit úpravy{0} přesune fokus na kontejner buněk, kde lze pomocí šipek nahoru a dolů také přesouvat fokus mezi buňkami v historii.",
+ "replEditor.configReadExecution": "Nastavení accessibility.replEditor.readLastExecutionOutput určuje, jestli se po dokončení provádění automaticky přečte výstup.",
+ "replEditor.execute": "Příkaz Provést {0} vyhodnotí výraz ve vstupním poli.",
+ "replEditor.focusCellEditor": "Příkaz Upravit buňku{0} přesune fokus do editoru jen pro čtení pro vstup buňky.",
+ "replEditor.focusInOutput": "Příkaz Výstup fokusu {0} nastaví fokus na výstup, pokud je fokus na dříve spuštěné položce.",
+ "replEditor.focusLastItemAdded": "Příkaz Přesunout fokus na poslední provedenou položku{0} přesune fokus na poslední provedenou položku v historii REPL.",
+ "replEditor.focusReplInput": "Příkaz Přepnout fokus na editor vstupu{0} přesune fokus zpět na tento editor.",
+ "replEditor.focusReplInputFromHistory": "Příkaz Editor vstupu fokusu {0} přesune fokus do vstupního pole REPL.",
+ "replEditor.historyOverview": "Nacházíte se v historii REPL, což je seznam buněk, které byly provedeny v REPL. Každá buňka má vstup, výstup a kontejner buněk.",
+ "replEditor.inputAccessibilityView": "Když spustíte příkaz Otevřít zobrazení přístupnosti{0} z tohoto vstupního pole, zobrazí se výstup z posledního provádění v zobrazení v režimu přístupnosti.",
+ "replEditor.inputOverview": "Jste ve vstupním poli editoru REPL, do kterého lze zadat kód, který se má provést v REPL."
+ },
+ "vs/workbench/contrib/replNotebook/browser/replEditorInput": {
+ "replEditorLabelIcon": "Ikona popisku editoru REPL"
},
"vs/workbench/contrib/sash/browser/sash.contribution": {
"sashHoverDelay": "Určuje zpoždění zpětné vazby najetí myší v milisekundách pro oblast přetažení mezi zobrazeními nebo editory.",
"sashSize": "Určuje velikost oblasti zpětné vazby (v pixelech) oblasti přetahování myší mezi zobrazeními/editory. Pokud je pro vás obtížné měnit velikost zobrazení myší, nastavte vyšší hodnotu."
},
"vs/workbench/contrib/scm/browser/activity": {
+ "scmActiveResourceHasChanges": "Určuje, jestli aktivní prostředek obsahuje změny.",
+ "scmActiveResourceRepository": "Úložiště aktivního prostředku",
"scmPendingChangesBadge": "Čekající změny: {0}",
- "status.scm": "Správa zdrojového kódu"
+ "status.scm": "Správa zdrojového kódu",
+ "status.scm.provider": "Poskytovatel správy zdrojového kódu"
},
- "vs/workbench/contrib/scm/browser/dirtydiffDecorator": {
- "change": "Změny: {0} z {1}",
- "changes": "Změny: {0} z {1}",
- "editorGutterAddedBackground": "Barva pozadí mezery u okraje v editoru pro přidané řádky",
- "editorGutterDeletedBackground": "Barva pozadí mezery u okraje v editoru pro odstraněné řádky",
- "editorGutterModifiedBackground": "Barva pozadí mezery u okraje v editoru pro upravené řádky",
+ "vs/workbench/contrib/scm/browser/menus": {
+ "miShare": "Sdílet"
+ },
+ "vs/workbench/contrib/scm/browser/quickDiffDecorator": {
+ "diffAdded": "Přidané řádky",
+ "diffDeleted": "Odebrané řádky",
+ "diffModified": "Změněné řádky"
+ },
+ "vs/workbench/contrib/scm/browser/quickDiffWidget": {
+ "change": "{0}–{1} z {2} změny",
+ "changes": "{0}–{1} z {2} změn",
"label.close": "Zavřít",
"miGotoNextChange": "Další &&změna",
"miGotoPreviousChange": "Předchozí &&změna",
- "minimapGutterAddedBackground": "Barva pozadí mezery u okraje v minimapě pro přidané řádky",
- "minimapGutterDeletedBackground": "Barva pozadí mezery u okraje v minimapě pro odstraněné řádky",
- "minimapGutterModifiedBackground": "Barva pozadí mezery u okraje v minimapě pro upravené řádky",
"move to next change": "Přejít na další změnu",
"move to previous change": "Přejít na předchozí změnu",
- "overviewRulerAddedForeground": "Barva značky přehledového pravítka pro přidaný obsah",
- "overviewRulerDeletedForeground": "Barva značky přehledového pravítka pro odstraněný obsah",
- "overviewRulerModifiedForeground": "Barva značky přehledového pravítka pro upravený obsah",
+ "multiChange": "Změny: {0} z {1}",
+ "multiChanges": "Změny: {0} z {1}",
+ "quickDiff.base.switch": "Přepnout základ Quick Diff",
+ "remotes": "Přepnout základ Quick Diff",
"show next change": "Zobrazit další změnu",
"show previous change": "Zobrazit předchozí změnu"
},
@@ -7970,16 +13259,22 @@
"diffGutterWidth": "Určuje šířku (px) dekorací rozdílů v mezeře u okraje (přidané a upravené).",
"inputFontFamily": "Určuje písmo pro vstupní zprávu. Pro rodinu písem uživatelského rozhraní pracovní plochy použijte možnost default, pro nastavení #editor.fontFamily# použijte hodnotu editor, případně použijte vlastní rodinu písem.",
"inputFontSize": "Určuje velikost písma pro vstupní zprávu v pixelech.",
+ "inputMaxLines": "Určuje maximální počet řádků, na které se vstup automaticky zvětší.",
+ "inputMinLines": "Určuje minimální počet řádků, ze kterých se vstup automaticky zvětší.",
"manageWorkspaceTrustAction": "Spravovat vztah důvěryhodnosti pracovního prostoru",
"miViewSCM": "Správa &&zdrojového kódu",
+ "no history items": "Vybraný zprostředkovatel správy zdrojového kódu nemá žádné položky historie správy zdrojového kódu.",
"no open repo": "Nejsou registrováni žádní zprostředkovatelé správy zdrojového kódu.",
"no open repo in an untrusted workspace": "Žádný z registrovaných poskytovatelů správy zdrojového kódu nefunguje v omezeném režimu.",
- "open in terminal": "Otevřít v terminálu",
+ "open in external terminal": "Otevřít v externím terminálu",
+ "open in integrated terminal": "Otevřít v integrovaném terminálu",
"providersVisible": "Určuje počet úložišť zobrazených v části Úložiště správy zdrojového kódu. Pokud chcete velikost zobrazení měnit ručně, nastavte hodnotu 0.",
+ "quickDiffDecoration": "Dekorace rozdílů",
"repositoriesSortOrder": "Určuje pořadí řazení úložišť v zobrazení úložiště správy zdrojového kódu.",
"scm accept": "Správa zdrojového kódu: Přijmout vstup",
"scm view next commit": "Správa zdrojového kódu: Zobrazit další potvrzení",
"scm view previous commit": "Správa zdrojového kódu: Zobrazit předchozí potvrzení",
+ "scm.compactFolders": "Určuje, jestli má zobrazení správy zdrojového kódu zobrazovat složky v kompaktní podobě. V takovémto kompaktním zobrazení pak budou jednotlivé podřízené složky sdruženy do jednoho kombinovaného prvku stromu.",
"scm.countBadge": "Řídí odznáček počtu na ikoně správy zdrojového kódu na panelu aktivity.",
"scm.countBadge.all": "Zobrazovat součet všech odznáčků s počtem pro zprostředkovatele správy zdrojového kódu",
"scm.countBadge.focused": "Zobrazovat odznáček s počtem pro zprostředkovatele správy zdrojového kódu, na kterém je fokus",
@@ -7997,7 +13292,7 @@
"scm.diffDecorations.none": "Nezobrazovat dekorace rozdílů",
"scm.diffDecorations.overviewRuler": "Zobrazovat dekorace rozdílů pouze na přehledovém pravítku",
"scm.diffDecorationsGutterAction": "Řídí chování dekorací rozdílů u okrajů při správě zdrojového kódu.",
- "scm.diffDecorationsGutterAction.diff": "Zobrazit vložený náhled rozdílů při kliknutí",
+ "scm.diffDecorationsGutterAction.diff": "Zobrazit vložený náhled rozdílů při kliknutí.",
"scm.diffDecorationsGutterAction.none": "Neprovádět žádnou akci",
"scm.diffDecorationsGutterVisibility": "Určuje viditelnost dekoratéru rozdílů správy zdrojového kódu v mezeře u okraje.",
"scm.diffDecorationsGutterVisibility.always": "Zobrazovat dekorátor rozdílů v mezeře u okraje vždy",
@@ -8005,32 +13300,138 @@
"scm.diffDecorationsIgnoreTrimWhitespace.false": "Neignorovat úvodní a koncové prázdné znaky",
"scm.diffDecorationsIgnoreTrimWhitespace.inherit": "Zdědit z diffEditor.ignoreTrimWhitespace",
"scm.diffDecorationsIgnoreTrimWhitespace.true": "Ignorovat úvodní a koncové prázdné znaky",
- "scm.providerCountBadge": "Řídí odznáčky počtu v záhlavích zprostředkovatele správy zdrojového kódu. Tato záhlaví se zobrazují pouze v případě, že existuje více než jeden zprostředkovatel.",
+ "scm.graph.badges": "Určuje, které odznáčky se zobrazí v zobrazení Graf správy zdrojového kódu. Odznáčky se zobrazují na pravé straně grafu a označují názvy skupin položek historie.",
+ "scm.graph.badges.all": "Umožňuje zobrazit odznáčky všech skupin položek historie v zobrazení Graf správy zdrojového kódu.",
+ "scm.graph.badges.filter": "Umožňuje zobrazit pouze odznáčky skupin položek historie, které byly použity jako filtr v zobrazení Graf správy zdrojového kódu.",
+ "scm.graph.pageOnScroll": "Určuje, jestli zobrazení Graf správy zdrojového kódu načte další stránku položek, když se posunete na konec seznamu.",
+ "scm.graph.pageSize": "Počet položek, které se mají zobrazit v zobrazení Graf správy zdrojového kódu ve výchozím nastavení a při načítání dalších položek",
+ "scm.graph.showIncomingChanges": "Určuje, jestli se mají zobrazit příchozí změny v zobrazení grafu správy zdrojového kódu.",
+ "scm.graph.showOutgoingChanges": "Určuje, jestli se mají zobrazit odchozí změny v zobrazení grafu správy zdrojového kódu.",
+ "scm.providerCountBadge": "Určuje odznáčky počtu v hlavičkách zprostředkovatele správy zdrojového kódu. Tyto hlavičky se zobrazují v zobrazení Správa zdrojového kódu, pokud existuje více než jeden zprostředkovatel nebo když je povoleno nastavení {0} a také v zobrazení Úložiště správy zdrojového kódu.",
"scm.providerCountBadge.auto": "Zobrazovat odznáček s počtem pro zprostředkovatele správy zdrojového kódu, pouze pokud je počet nenulový",
"scm.providerCountBadge.hidden": "Skrýt odznáčky s počtem pro zprostředkovatele správy zdrojového kódu",
"scm.providerCountBadge.visible": "Zobrazovat odznáčky s počtem pro zprostředkovatele správy zdrojového kódu",
+ "scm.repositories.explorer": "Určuje, jestli se mají zobrazovat artefakty úložiště v zobrazení úložišť správy zdrojového kódu. Tato funkce je experimentální a funguje jenom v případě nastavení možnosti {0} na {1}.",
+ "scm.repositories.selectionMode": "Řídí režim výběru úložišť v zobrazení úložišť správy zdrojového kódu.",
+ "scm.repositories.selectionMode.multiple": "Najednou je možné vybrat více úložišť.",
+ "scm.repositories.selectionMode.single": "Najednou lze vybrat pouze jedno úložiště.",
"scm.repositoriesSortOrder.discoveryTime": "V zobrazení úložiště správy zdrojového kódu jsou úložiště seřazená podle času zjišťování. V zobrazení správy zdrojového kódu jsou seřazená v pořadí, v jakém byla vybrána.",
"scm.repositoriesSortOrder.name": "Úložiště v zobrazení úložiště správy zdrojového kódu jsou seřazena podle názvu.",
"scm.repositoriesSortOrder.path": "V zobrazeních úložiště a správa zdrojového kódu jsou úložiště seřazena podle cesty k úložišti.",
+ "scm.workingSets.default": "Určuje výchozí pracovní sadu, která se má použít při přepínání na skupinu položek historie správy zdrojového kódu, která nemá pracovní sadu.",
+ "scm.workingSets.default.current": "Při přepínání na skupinu položek historie správy zdrojového kódu, která nemá pracovní sadu, použijte aktuální pracovní sadu.",
+ "scm.workingSets.default.empty": "Při přepínání na skupinu položek historie správy zdrojového kódu, která nemá pracovní sadu, použijte prázdnou pracovní sadu.",
+ "scm.workingSets.enabled": "Určuje, jestli se mají při přepínání mezi skupinami položek historie správy zdrojového kódu ukládat pracovní sady editoru.",
+ "scmActiveRepositoryAutoDescription": "Aktivní úložiště se aktualizuje na základě aktivního editoru.",
+ "scmActiveRepositoryPlaceHolder": "Vyberte aktivní úložiště. Pokud chcete filtrovat všechna úložiště, zadejte text.",
+ "scmChanges": "Změny",
"scmConfigurationTitle": "Správa zdrojového kódu",
+ "scmEditorResolveMergeConflict": "Řešení konfliktů s AI",
+ "scmGraph": "Graf",
+ "scmRepositories": "Úložiště",
"showActionButton": "Určuje, jestli se v zobrazení správy zdrojového kódu může zobrazit tlačítko akce.",
+ "showInputActionButton": "Určuje, jestli se ve vstupu správy zdrojového kódu může zobrazit tlačítko akce.",
"source control": "Správa zdrojového kódu",
+ "source control graph": "Graf správy zdrojového kódu",
"source control repositories": "Úložiště správy zdrojového kódu",
+ "source control view": "Správa zdrojového kódu",
"sourceControlViewIcon": "Zobrazit ikonu zobrazení správy zdrojového kódu"
},
+ "vs/workbench/contrib/scm/browser/scmAccessibilityHelp": {
+ "disabled": "zakázáno",
+ "enabled": "povoleno",
+ "scm-graph-msg1": "Pomocí příkazu Správa zdrojového kódu: Fokus na zobrazení grafu správy zdrojového kódu otevřete zobrazení grafu správy zdrojového kódu.",
+ "scm-graph-msg2": "Zobrazení grafu správy zdrojů zobrazuje položky historie grafu úložiště. Pokud pracovní prostor obsahuje více než jedno úložiště, zobrazí se seznam položek historie aktivního úložiště.",
+ "scm-graph-msg3": "Po otevření zobrazení grafu správy zdrojového kódu můžete:",
+ "scm-graph-msg4": " - Seznam položek historie můžete procházet pomocí kláves se šipkami nahoru a dolů.",
+ "scm-graph-msg5": " - Pomocí mezerníku otevřete podrobnosti položky historie v editoru rozdílů ve více souborech.",
+ "scm-msg1": "Pomocí příkazu Správa zdrojového kódu: Přepnout fokus na zobrazení správy zdrojového kódu otevřete zobrazení správy zdrojového kódu.",
+ "scm-msg2": "Zobrazení Správy zdrojového kódu zobrazuje skupiny prostředků a prostředky úložiště. Pokud pracovní prostor obsahuje více než jedno úložiště, zobrazí seznam skupin prostředků a prostředků úložišť vybraných v zobrazení úložišť správy zdrojového kódu.",
+ "scm-msg3": "Po otevření zobrazení správy zdrojového kódu můžete:",
+ "scm-msg4": " - Pomocí kláves se šipkami nahoru a dolů můžete procházet seznam úložišť, skupin prostředků a prostředků.",
+ "scm-msg5": " - Pomocí mezerníku rozbalte nebo sbalte skupinu prostředků.",
+ "scm-repositories-msg1": "Pokud chcete otevřít zobrazení úložišť správy zdrojového kódu, použijte příkaz Správa zdrojového kódu: Přepnout fokus na zobrazení úložišť správy zdrojového kódu.",
+ "scm-repositories-msg2": "Zobrazení úložišť správy zdrojového kódu obsahuje seznam všech úložišť z pracovního prostoru a zobrazuje se jen v případě, že pracovní prostor obsahuje více než jedno úložiště.",
+ "scm-repositories-msg3": "Po otevření zobrazení úložišť správy zdrojového kódu můžete:",
+ "scm-repositories-msg4": " - Pomocí kláves se šipkami nahoru a dolů můžete procházet seznam úložišť.",
+ "scm-repositories-msg5": " - K výběru úložiště použijte klávesy Enter nebo Mezerník.",
+ "scm-repositories-msg6": " - Pomocí Shift + Nahoru/Dolů kláves vyberte více úložišť.",
+ "state-msg1": "Viditelná úložiště: {0}",
+ "state-msg2": "Úložiště: {0}",
+ "state-msg3": "Odkaz na položku historie: {0}",
+ "state-msg4": "Zpráva potvrzení: {0}",
+ "state-msg5": "Tlačítko akce: {0}, {1}",
+ "state-msg6": "Skupiny prostředků: {0}"
+ },
+ "vs/workbench/contrib/scm/browser/scmHistory": {
+ "incomingChanges": "Příchozí změny",
+ "outgoingChanges": "Odchozí změny",
+ "scmGraph.HistoryItemHoverAdditionsForeground": "Barva popředí přidání položek historie při přechodu myší",
+ "scmGraph.HistoryItemHoverDeletionsForeground": "Barva popředí odstranění položek historie při přechodu myší",
+ "scmGraphForeground1": "Barva popředí grafu správy zdrojového kódu (1)",
+ "scmGraphForeground2": "Barva popředí grafu správy zdrojového kódu (2)",
+ "scmGraphForeground3": "Barva popředí grafu správy zdrojového kódu (3)",
+ "scmGraphForeground4": "Barva popředí grafu správy zdrojového kódu (4)",
+ "scmGraphForeground5": "Barva popředí grafu správy zdrojového kódu (5)",
+ "scmGraphHistoryItemBaseRefColor": "Barva základního odkazu na položku historie",
+ "scmGraphHistoryItemHoverDefaultLabelBackground": "Barva pozadí výchozího popisku položek historie při najetí myší",
+ "scmGraphHistoryItemHoverDefaultLabelForeground": "Barva popředí výchozího popisku položek historie při najetí myší",
+ "scmGraphHistoryItemHoverLabelForeground": "Barva popředí popisku položek historie při najetí myší",
+ "scmGraphHistoryItemRefColor": "Barva odkazu na položku historie",
+ "scmGraphHistoryItemRemoteRefColor": "Barva vzdáleného odkazu na položku historie"
+ },
+ "vs/workbench/contrib/scm/browser/scmHistoryChatContext": {
+ "chat.action.scmHistoryItemContext": "Přidat do chatu",
+ "chat.action.scmHistoryItemSummarize": "Vysvětlit změny",
+ "chatContext.scmHistoryItems": "Správa zdrojového kódu...",
+ "chatContext.scmHistoryItems.placeholder": "Vyberte změnu",
+ "files": "soubory"
+ },
+ "vs/workbench/contrib/scm/browser/scmHistoryViewPane": {
+ "activeRepository": "Zobrazit graf správy zdrojového kódu pro aktivní úložiště",
+ "all": "Všechny",
+ "allHistoryItemRefs": "Odkazy na všechny položky historie",
+ "auto": "Automaticky",
+ "currentHistoryItemRef": "Odkazy na aktuální položky historie",
+ "goToCurrentHistoryItem": "Přejít na aktuální položku historie",
+ "incomingChanges": "Příchozí změny",
+ "items": "Počet položek: {0}",
+ "loadMore": "{0} Načíst další...",
+ "openChanges": "Otevřít změny",
+ "openFile": "Otevřít soubor",
+ "outgoingChanges": "Odchozí změny",
+ "referencePicker": "Ovládací prvek pro výběr odkazu na položku historie",
+ "refreshGraph": "Aktualizovat",
+ "repositoryPicker": "Výběr úložiště",
+ "scm history": "Historie správy zdrojového kódu",
+ "scmGraphHistoryItemRef": "Vyberte jeden nebo více odkazů na položky historie, které chcete zobrazit. Pro filtrování zadejte text.",
+ "scmGraphRepository": "Vyberte úložiště, které se má zobrazit. Pokud chcete filtrovat všechna úložiště, zadejte text.",
+ "scmGraphViewOutdated": "Aktualizujte prosím graf pomocí akce aktualizace ($(refresh)).",
+ "setListViewMode": "Zobrazit jako seznam",
+ "setTreeViewMode": "Zobrazit jako strom"
+ },
"vs/workbench/contrib/scm/browser/scmRepositoriesViewPane": {
"scm": "Úložiště správy zdrojového kódu"
},
"vs/workbench/contrib/scm/browser/scmViewPane": {
"collapse all": "Sbalit všechna úložiště",
"expand all": "Rozbalit všechna úložiště",
- "input": "Vstup správy zdrojového kódu",
+ "label.close": "Zavřít",
"repositories": "Úložiště",
+ "repositoryMultiSelectionMode": "Vybrat více úložišť",
+ "repositorySingleSelectionMode": "Vybrat jedno úložiště",
"repositorySortByDiscoveryTime": "Seřadit podle času zjištění",
"repositorySortByName": "Seřadit podle názvu",
"repositorySortByPath": "Seřadit podle cesty",
"scm": "Správa zdrojového kódu",
- "scm.providerBorder": "Ohraničení oddělovače zprostředkovatele SCM",
+ "scmInput": "Vstup správy zdrojového kódu",
+ "scmInput.accessibilityHelp": "{0}, pomocí {1} otevřete nápovědu pro přístupnost správy zdrojového kódu.",
+ "scmInput.accessibilityHelpNoKb": "{0}. Další informace získáte spuštěním příkazu Otevřít nápovědu k přístupnosti.",
+ "scmInputCancelAction": "Zrušit",
+ "scmInputGenerateCommitMessage": "Vygenerovat zprávu potvrzení",
+ "scmInputMoreActions": "Další akce…",
+ "scmInputRow.accessibilityHelp": "Vstup správy zdrojového kódu. Pomocí {0} otevřete nápovědu pro přístupnost správy zdrojového kódu.",
+ "scmInputRow.accessibilityHelpNoKb": "Vstup správy zdrojového kódu. Další informace získáte spuštěním příkazu Otevřít nápovědu k přístupnosti.",
"setListViewMode": "Zobrazit jako seznam",
"setTreeViewMode": "Zobrazit jako strom",
"sortAction": "Zobrazit a seřadit",
@@ -8038,14 +13439,41 @@
"sortChangesByPath": "Seřadit změny podle cesty",
"sortChangesByStatus": "Seřadit změny podle stavu"
},
- "vs/workbench/contrib/scm/browser/scmViewPaneContainer": {
- "source control": "Správa zdrojového kódu"
+ "vs/workbench/contrib/scm/browser/scmViewService": {
+ "auto": "Automaticky"
+ },
+ "vs/workbench/contrib/scm/common/quickDiff": {
+ "editorGutterAddedBackground": "Barva pozadí mezery u okraje v editoru pro přidané řádky",
+ "editorGutterAddedSecondaryBackground": "Sekundární barva pozadí mezery u okraje v editoru pro přidané řádky.",
+ "editorGutterDeletedBackground": "Barva pozadí mezery u okraje v editoru pro odstraněné řádky",
+ "editorGutterDeletedSecondaryBackground": "Sekundární barva pozadí mezery u okraje v editoru pro odstraněné řádky.",
+ "editorGutterItemBackground": "Barva dekorace mezery editoru pro pozadí položky mezery. Tato barva by měla být neprůhledná.",
+ "editorGutterItemGlyphForeground": "Barva dekorace mezery editoru pro piktogramy položky mezery.",
+ "editorGutterModifiedBackground": "Barva pozadí mezery u okraje v editoru pro upravené řádky",
+ "editorGutterModifiedSecondaryBackground": "Sekundární barva pozadí mezery u okraje v editoru pro upravené řádky.",
+ "minimapGutterAddedBackground": "Barva pozadí mezery u okraje v minimapě pro přidané řádky",
+ "minimapGutterDeletedBackground": "Barva pozadí mezery u okraje v minimapě pro odstraněné řádky",
+ "minimapGutterModifiedBackground": "Barva pozadí mezery u okraje v minimapě pro upravené řádky",
+ "overviewRulerAddedForeground": "Barva značky přehledového pravítka pro přidaný obsah",
+ "overviewRulerDeletedForeground": "Barva značky přehledového pravítka pro odstraněný obsah",
+ "overviewRulerModifiedForeground": "Barva značky přehledového pravítka pro upravený obsah"
+ },
+ "vs/workbench/contrib/scrollLocking/browser/scrollLocking": {
+ "holdLockedScrolling": "Podržet uzamčené posouvání mezi editory",
+ "miHoldLockedScrolling": "Uzamčené posouvání",
+ "miToggleLockedScrolling": "Uzamčené posouvání",
+ "mouseLockScrollingEnabled": "Uzamčení posouvání povoleno",
+ "mouseScrolllingLocked": "Posouvání zamknuté",
+ "synchronizeScrolling": "Synchronizovat editory posouvání",
+ "toggleLockedScrolling": "Přepnout uzamčené posouvání mezi editory"
},
"vs/workbench/contrib/search/browser/anythingQuickAccess": {
+ "chat": "Otevřít rychlý chat",
"closeEditor": "Odebrat z naposledy otevřených",
"fileAndSymbolResultsSeparator": "výsledky pro soubory a symboly",
"filePickAriaLabelDirty": "Neuložené změny: {0}",
"fileResultsSeparator": "výsledky pro soubory",
+ "helpPickAriaLabel": "{0}, {1}",
"noAnythingResults": "Žádné odpovídající výsledky",
"openToBottom": "Otevřít dole",
"openToSide": "Otevřít na stranu",
@@ -8056,67 +13484,73 @@
"onlySearchInOpenEditors": "Hledat jen v otevřených editorech",
"useExcludesAndIgnoreFilesDescription": "Použít nastavení vyloučení a ignorovat soubory"
},
+ "vs/workbench/contrib/search/browser/quickTextSearch/textSearchQuickAccess": {
+ "QuickSearchMore": "Víc",
+ "QuickSearchOpenInFile": "Otevřít soubor",
+ "QuickSearchSeeMoreFiles": "Zobrazit další soubory",
+ "enterSearchTerm": "Zadejte termín, který chcete vyhledat v souborech.",
+ "goToSearch": "Otevřít v zobrazení vyhledávání",
+ "noAnythingResults": "Žádné odpovídající výsledky",
+ "showMore": "Otevřít v zobrazení vyhledávání"
+ },
"vs/workbench/contrib/search/browser/replaceService": {
"fileReplaceChanges": "{0} ↔ {1} (náhled nahrazení)",
"searchReplace.source": "Najít a nahradit"
},
"vs/workbench/contrib/search/browser/search.contribution": {
- "CancelSearchAction.label": "Zrušit vyhledávání",
- "ClearSearchResultsAction.label": "Vymazat výsledky vyhledávání",
- "CollapseDeepestExpandedLevelAction.label": "Sbalit vše",
- "ExpandAllAction.label": "Rozbalit vše",
- "RefreshAction.label": "Aktualizovat",
"anythingQuickAccess": "Přejít na soubor",
"anythingQuickAccessPlaceholder": "Vyhledávat soubory podle názvu (připojte {0} pro přechodu na řádek nebo {1} pro přechod na symbol)",
- "clearSearchHistoryLabel": "Vymazat historii hledání",
- "copyAllLabel": "Kopírovat vše",
- "copyMatchLabel": "Kopírovat",
- "copyPathLabel": "Kopírovat cestu",
- "exclude": "Umožňuje nakonfigurovat [vzory glob](https://code.visualstudio.com/docs/editor/codebasics#_advanced-search-options) pro vyloučení souborů a složek ve fulltextovém vyhledávání a rychlém otevření. Dědí všechny vzory glob z nastavení #files.exclude#.",
+ "exclude": "Nakonfigurujte [vzory glob](https://code.visualstudio.com/docs/editor/codebasics#_advanced-search-options) pro vyloučení souborů a složek ve fulltextových vyhledáváních a hledání souborů v rychlém otevření. Pokud chcete vyloučit soubory z nedávno otevřeného seznamu v rychlém otevření, musí být vzory absolutní (například **/node_modules/**). Dědí všechny vzory glob z nastavení #files.exclude#.",
"exclude.boolean": "Vzor glob pro hledání shod s cestami k souborům. Pokud chcete vzor povolit, nastavte hodnotu true, pokud ho chcete zakázat, nastavte hodnotu false.",
"exclude.when": "Další kontrola položek na stejné úrovni u odpovídajícího souboru. Jako proměnnou názvu odpovídajícího souboru použijte \\$(basename).",
"filterSortOrder": "Určuje pořadí řazení historie editoru v okně rychlého otevření při filtrování.",
"filterSortOrder.default": "Položky historie jsou seřazeny podle relevantnosti na základě použité hodnoty filtru. Nejprve se zobrazí relevantnější položky.",
"filterSortOrder.recency": "Položky historie jsou seřazeny podle času otevření. Nejdříve se zobrazí naposledy otevřené položky.",
- "findInFiles": "Najít v souborech",
- "findInFiles.args": "Sada možností pro hledání",
- "findInFiles.description": "Otevřít hledání v pracovním prostoru",
- "findInFolder": "Najít ve složce...",
- "findInWorkspace": "Najít v pracovním prostoru...",
- "focusSearchListCommandLabel": "Přepnout fokus na seznam",
"maintainFileSearchCacheDeprecated": "Mezipaměť vyhledávání se uchovává v hostiteli rozšíření, který se nikdy nevypíná, takže toto nastavení už není potřeba.",
- "miFindInFiles": "&&Najít v souborech",
- "miGotoSymbolInWorkspace": "Přejít na symbol v &&pracovním prostoru...",
- "miReplaceInFiles": "Nahradit v &&souborech",
"miViewSearch": "&&Hledat",
- "name": "Hledat",
- "revealInSideBar": "Zobrazit v zobrazení Průzkumníka",
+ "scm.defaultViewMode.list": "Zobrazí výsledky hledání jako seznam.",
+ "scm.defaultViewMode.tree": "Zobrazí výsledky hledání jako strom.",
"search": "Hledání",
"search.actionsPosition": "Určuje umístění panelu akcí na řádcích v zobrazení vyhledávání.",
"search.actionsPositionAuto": "Umístěte panel akcí doprava, pokud je zobrazení vyhledávání úzké, a bezprostředně za obsah, pokud je široké.",
"search.actionsPositionRight": "Vždy umístit panel akcí napravo",
"search.collapseAllResults": "Určuje, jestli mají být výsledky hledání sbalené a rozbalené.",
"search.collapseResults.auto": "Soubory s méně než 10 výsledky jsou rozbalené. Ostatní jsou sbalené.",
+ "search.decorations.badges": "Určuje, jestli mají dekorace vyhledávacích souborů používat odznáčky.",
+ "search.decorations.colors": "Určuje, jestli mají dekorace vyhledávacích souborů používat barvy.",
+ "search.defaultViewMode": "Určuje výchozí režim zobrazení výsledků hledání.",
+ "search.experimental.closedNotebookResults": "Umožňuje zobrazit výsledky bohatého obsahu editoru poznámkových bloků pro zavřené poznámkové bloky. Po změně tohoto nastavení prosím aktualizujte výsledky hledání.",
"search.followSymlinks": "Určuje, jestli se má při vyhledávání přecházet na symbolické odkazy.",
"search.globalFindClipboard": "Určuje, jestli má zobrazení vyhledávání číst nebo upravovat sdílenou schránku hledání v systému macOS.",
"search.location": "Určuje, jestli se má hledání zobrazit jako zobrazení na postranním panelu nebo jako panel v oblasti panelů, aby se vodorovně uvolnil prostor.",
"search.location.deprecationMessage": "Toto nastavení je zastaralé. Ikonu vyhledávání můžete místo toho přetáhnout na nové místo.",
"search.maintainFileSearchCache": "Pokud je povoleno, proces searchService bude udržován aktivní místo toho, aby byl po hodině nečinnosti vypnut. Tím se v paměti uchová mezipaměť vyhledávání souborů.",
"search.maxResults": "Určuje maximální počet výsledků hledání. Nastavením na hodnotu null (prázdné) se vrátí neomezený počet výsledků.",
- "search.mode": "Ovládací prvky, kde se provádějí nové operace Hledat: Najít v souborech a Najít ve složce: buď v zobrazení vyhledávání, nebo v Editoru vyhledávání",
+ "search.mode": "Ovládací prvky, kde se provádějí nové operace Hledat: Najít v souborech a Najít ve složce: buď v zobrazení vyhledávání, nebo v Editoru vyhledávání.",
"search.mode.newEditor": "Hledat v novém Editoru vyhledávání",
"search.mode.reuseEditor": "Hledat v existujícím Editoru vyhledávání, pokud je k dispozici, jinak hledat v novém Editoru vyhledávání.",
"search.mode.view": "Hledat v zobrazení vyhledávání buď na panelu, nebo na bočním panelu.",
+ "search.quickAccess.preserveInput": "Určuje, jestli se při příštím otevření mají obnovit data naposledy zadaná do okna rychlého vyhledávání.",
"search.quickOpen.includeHistory": "Určuje, jestli se mají do výsledků souborů zahrnout výsledky naposledy otevřených souborů pro rychlé otevření.",
"search.quickOpen.includeSymbols": "Určuje, jestli se mají do výsledků souborů zahrnout výsledky globálního hledání symbolů pro rychlé otevření.",
+ "search.ripgrep.maxThreads": "Počet vláken, která se mají použít pro vyhledávání. Pokud je nastaveno na hodnotu 0, modul tuto hodnotu určí automaticky.",
"search.searchEditor.defaultNumberOfContextLines": "Výchozí počet okolních kontextových řádků, které se mají použít při vytváření nových editorů vyhledávání. Pokud používáte možnost #search.searchEditor.reusePriorSearchConfiguration#, můžete ji nastavit na hodnotu null (prázdné) pro použití předchozí konfigurace editoru vyhledávání.",
- "search.searchEditor.doubleClickBehaviour": "Nakonfigurovat účinek poklikání na výsledek v editoru vyhledávání",
- "search.searchEditor.doubleClickBehaviour.goToLocation": "Poklikáním se otevře výsledek v aktivní skupině editorů.",
+ "search.searchEditor.doubleClickBehaviour": "Nakonfigurovat účinek poklikání na výsledek v editoru vyhledávání.",
+ "search.searchEditor.doubleClickBehaviour.goToLocation": "Poklikáním se otevře výsledek v aktivní skupině editoru.",
"search.searchEditor.doubleClickBehaviour.openLocationToSide": "Poklikáním otevřete výsledek ve skupině editorů na boku (vytvoří se, pokud ještě neexistuje).",
"search.searchEditor.doubleClickBehaviour.selectWord": "Poklikáním se vybere slovo, na kterém je kurzor.",
+ "search.searchEditor.focusResultsOnSearch": "Když se aktivuje hledání, přepne fokus na výsledky Editoru vyhledávání místo na vstup Editoru vyhledávání.",
"search.searchEditor.reusePriorSearchConfiguration": "Pokud je povoleno, nové editory vyhledávání znovu použijí zahrnutí, vyloučení a příznaky dříve otevřeného editoru vyhledávání.",
+ "search.searchEditor.singleClickBehaviour": "Umožňuje nakonfigurovat účinek jednoho kliknutí na výsledek v editoru vyhledávání.",
+ "search.searchEditor.singleClickBehaviour.default": "Při jednom kliknutí se neprovede žádná akce.",
+ "search.searchEditor.singleClickBehaviour.peekDefinition": "Při jednom kliknutí se otevře okno Náhled definice.",
"search.searchOnType": "Prohledávat všechny soubory při psaní",
"search.searchOnTypeDebouncePeriod": "Když je možnost {0} povolena, určuje časový limit v milisekundách mezi zadaným znakem a začátkem vyhledávání. Nemá žádný vliv, pokud je možnost {0} zakázaná.",
+ "search.searchView.keywordSuggestions": "Umožňuje povolit návrhy klíčových slov v zobrazení vyhledávání.",
+ "search.searchView.semanticSearchBehavior": "Určuje chování výsledků sémantického vyhledávání zobrazených v zobrazení vyhledávání.",
+ "search.searchView.semanticSearchBehavior.auto": "Umožňuje automaticky požadovat sémantické výsledky při každém hledání.",
+ "search.searchView.semanticSearchBehavior.manual": "Umožňuje vyžádat výsledky sémantického vyhledávání pouze ručně.",
+ "search.searchView.semanticSearchBehavior.runOnEmpty": "Sémantické výsledky požadavků se automaticky vyžádají jenom v případě, že jsou výsledky hledání v textu prázdné.",
"search.seedOnFocus": "Aktualizuje vyhledávací dotaz na vybraný text editoru, když se fokus přesune na zobrazení vyhledávání. K tomu dochází při kliknutí myší nebo při spuštění příkazu workbench.views.search.focus.",
"search.seedWithNearestWord": "Pokud v aktivním editoru není nic vybráno, povolit předvyplnění vyhledávacího dotazu slovem nejblíže ke kurzoru",
"search.showLineNumbers": "Určuje, jestli se mají pro výsledky hledání zobrazovat čísla řádků.",
@@ -8131,25 +13565,92 @@
"searchSortOrder.filesOnly": "Výsledky jsou seřazeny podle názvů souborů v abecedním pořadí, pořadí složek se ignoruje.",
"searchSortOrder.modified": "Výsledky jsou seřazeny podle data poslední změny souboru v sestupném pořadí.",
"searchSortOrder.type": "Výsledky jsou seřazeny podle přípon souborů v abecedním pořadí.",
- "showTriggerActions": "Přejít na symbol v pracovním prostoru...",
"symbolsQuickAccess": "Přejít na symbol v pracovním prostoru",
"symbolsQuickAccessPlaceholder": "Zadejte název symbolu, který chcete otevřít.",
- "useGlobalIgnoreFiles": "Určuje, jestli se mají při vyhledávání souborů používat globální soubory .gitignore a .ignore. Vyžaduje, aby bylo povoleno #search.useIgnoreFiles.",
+ "textSearchPickerHelp": "Hledat text",
+ "textSearchPickerPlaceholder": "Vyhledejte text v souborech pracovního prostoru.",
+ "useGlobalIgnoreFiles": "Určuje, jestli se má při hledání souborů použít globální soubor gitignore (například z $HOME/.config/git/ignore). Vyžaduje povolení nastavení {0}.",
"useIgnoreFiles": "Určuje, jestli se mají při vyhledávání souborů používat soubory .gitignore a .ignore.",
"usePCRE2Deprecated": "Zastaralé. Při použití funkcí regulárních výrazů, které podporuje pouze PCRE2, se automaticky použije PCRE2.",
- "useParentIgnoreFiles": "Určuje, jestli se mají při vyhledávání souborů používat v nadřazených adresářích soubory .gitignore a .ignore. Vyžaduje povolení #search.useIgnoreFiles#.",
+ "useParentIgnoreFiles": "Určuje, jestli se mají při vyhledávání souborů používat v nadřazených adresářích soubory .gitignore a .ignore. Vyžaduje povolení nastavení {0}.",
"useRipgrep": "Toto nastavení je zastaralé. Náhradní nastavení: search.usePCRE2",
"useRipgrepDeprecated": "Zastaralé. Za účelem podpory pokročilých funkcí regulárních výrazů zvažte použití možnosti search.usePCRE2."
},
- "vs/workbench/contrib/search/browser/searchActions": {
+ "vs/workbench/contrib/search/browser/searchActionsBase": {
+ "search": "Hledat"
+ },
+ "vs/workbench/contrib/search/browser/searchActionsCopy": {
+ "copyAllLabel": "Kopírovat vše",
+ "copyMatchLabel": "Kopírovat",
+ "copyPathLabel": "Kopírovat cestu",
+ "getSearchResultsLabel": "Získat výsledky hledání"
+ },
+ "vs/workbench/contrib/search/browser/searchActionsFind": {
+ "excludeFileTypeFromSearch": "Vyloučit typ souboru z hledání",
+ "excludeFolderFromSearch": "Vyloučit složku z hledání",
+ "findInFiles": "Najít v souborech",
+ "findInFiles.args": "Sada možností pro hledání",
+ "findInFiles.description": "Otevřít hledání v pracovním prostoru",
+ "findInFolder": "Najít ve složce...",
+ "findInWorkspace": "Najít v pracovním prostoru...",
+ "includeFileTypeInSearch": "Zahrnout typ souboru z hledání",
+ "miFindInFiles": "&&Najít v souborech",
+ "restrictResultsToFolder": "Omezit hledání na složku",
+ "revealInSideBar": "Zobrazit v zobrazení Průzkumníka",
+ "search.expandRecursively": "Rozbalit rekurzivně"
+ },
+ "vs/workbench/contrib/search/browser/searchActionsNav": {
+ "AddCursorsAtSearchResults.label": "Přidat kurzory ve výsledcích hledání",
+ "CloseReplaceWidget.label": "Zavřít nahrazení widgetu",
+ "FocusNextInputAction.label": "Fokus na další vstup",
"FocusNextSearchResult.label": "Přepnout fokus na další výsledek hledání",
+ "FocusPreviousInputAction.label": "Fokus na předchozí vstup",
"FocusPreviousSearchResult.label": "Přepnout fokus na předchozí výsledek hledání",
- "RemoveAction.label": "Zavřít",
- "file.replaceAll.label": "Nahradit vše",
- "match.replace.label": "Nahradit",
+ "FocusSearchFromResults.label": "Fokus na hledání z výsledků",
+ "OpenMatch.label": "Otevřít shodu",
+ "OpenMatchToSide.label": "Otevřít shodu na straně",
+ "ToggleCaseSensitiveCommandId.label": "Přepnout rozlišování velikosti písmen",
+ "TogglePreserveCaseId.label": "Přepnout zachování velikosti písmen",
+ "ToggleQueryDetailsAction.label": "Přepnout podrobnosti dotazu",
+ "ToggleRegexCommandId.label": "Přepnout regulární výraz",
+ "ToggleWholeWordCommandId.label": "Přepnout celé slovo",
+ "focusSearchListCommandLabel": "Přepnout fokus na seznam",
"replaceInFiles": "Nahradit v souborech",
"toggleTabs": "Přepnout vyhledávání při psaní"
},
+ "vs/workbench/contrib/search/browser/searchActionsRemoveReplace": {
+ "RemoveAction.label": "Zavřít",
+ "file.replaceAll.label": "Nahradit vše",
+ "match.replace.label": "Nahradit"
+ },
+ "vs/workbench/contrib/search/browser/searchActionsSymbol": {
+ "miGotoSymbolInWorkspace": "Přejít na symbol v &&pracovním prostoru...",
+ "showTriggerActions": "Přejít na symbol v pracovním prostoru..."
+ },
+ "vs/workbench/contrib/search/browser/searchActionsTextQuickAccess": {
+ "quickTextSearch": "Rychlé hledání"
+ },
+ "vs/workbench/contrib/search/browser/searchActionsTopBar": {
+ "CancelSearchAction.label": "Zrušit vyhledávání",
+ "ClearSearchResultsAction.label": "Vymazat výsledky vyhledávání",
+ "CollapseDeepestExpandedLevelAction.label": "Sbalit vše",
+ "ExpandAllAction.label": "Rozbalit vše",
+ "RefreshAction.label": "Aktualizovat",
+ "SearchWithAIAction.label": "Hledat pomocí AI",
+ "ViewAsListAction.label": "Zobrazit jako seznam",
+ "ViewAsTreeAction.label": "Zobrazit jako strom",
+ "clearSearchHistoryLabel": "Vymazat historii hledání"
+ },
+ "vs/workbench/contrib/search/browser/searchChatContext": {
+ "chatContext.attach.files.placeholder": "Vyhledejte soubor nebo složku podle názvu",
+ "chatContext.folder": "Soubory a složky...",
+ "chatContext.searchResults": "Výsledky hledání",
+ "select.symb": "Vybrat symbol",
+ "symbols": "Symboly..."
+ },
+ "vs/workbench/contrib/search/browser/searchFindInput": {
+ "searchFindInputNotebookFilter.label": "Filtry hledání v poznámkovém bloku"
+ },
"vs/workbench/contrib/search/browser/searchIcons": {
"searchClearIcon": "Ikona pro vymazávání výsledků v zobrazení vyhledávání",
"searchCollapseAllIcon": "Ikona pro sbalení výsledků v zobrazení vyhledávání",
@@ -8157,12 +13658,18 @@
"searchExpandAllIcon": "Ikona pro rozbalení výsledků v zobrazení vyhledávání",
"searchHideReplaceIcon": "Ikona pro sbalení oddílu nahrazování v zobrazení vyhledávání",
"searchNewEditorIcon": "Ikona pro akci otevření nového editoru vyhledávání",
+ "searchOpenInFile": "Ikona pro akci, která přejde do souboru aktuálního výsledku hledání",
"searchRefreshIcon": "Ikona pro aktualizaci zobrazení hledání",
"searchRemoveIcon": "Ikona pro odebrání výsledku hledání",
"searchReplaceAllIcon": "Ikona pro nahrazení všeho v zobrazení vyhledávání",
"searchReplaceIcon": "Ikona pro nahrazení v zobrazení vyhledávání",
+ "searchSeeMoreIcon": "Ikona pro zobrazení více kontextu v zobrazení vyhledávání",
+ "searchShowAsList": "Ikona pro zobrazení výsledků jako seznam v zobrazení vyhledávání.",
+ "searchShowAsTree": "Ikona pro zobrazení výsledků ve stromu v zobrazení vyhledávání.",
"searchShowContextIcon": "Ikona pro přepnutí kontextu v editoru vyhledávání",
"searchShowReplaceIcon": "Ikona pro rozbalení oddílu nahrazování v zobrazení vyhledávání",
+ "searchSparkleEmpty": "Ikona pro skrytí výsledků AI ve vyhledávání",
+ "searchSparkleFilled": "Ikona pro zobrazení výsledků AI ve vyhledávání",
"searchStopIcon": "Ikona pro zastavení v zobrazení vyhledávání",
"searchViewIcon": "Zobrazit ikonu zobrazení hledání"
},
@@ -8176,29 +13683,31 @@
"lineNumStr": "Z řádku {0}",
"numLinesStr": "Další řádky: {0}",
"otherFilesAriaLabel": "Počet shod mimo pracovní prostor: {0}, výsledek hledání",
- "replacePreviewResultAria": "Změnit {0} na {1} ve sloupci {2}, na řádku {3}",
+ "replacePreviewResultAria": "{0} ve sloupci {1} nahrazuje {2} tímto: {3}",
"search": "Hledat",
"searchFileMatch": "Počet nalezených souborů: {0}",
"searchFileMatches": "Počet nalezených souborů: {0}",
+ "searchFolderMatch.aiText.label": "Výsledky s asistencí AI",
"searchFolderMatch.other.label": "Ostatní soubory",
+ "searchFolderMatch.plainText.label": "Textové výsledky",
"searchMatch": "Počet nalezených shod: {0}",
"searchMatches": "Počet nalezených shod: {0}",
- "searchResultAria": "Nalezeno: {0} ve sloupci {1}, na řádku {2}"
+ "searchResultAria": "{0} ve sloupci {1} našel {2}"
},
"vs/workbench/contrib/search/browser/searchView": {
- "ariaSearchResultsClearStatus": "Výsledky hledání byly vymazány.",
"ariaSearchResultsStatus": "Vyhledávání vrátilo tento počet výsledků v {1} souborech: {0}.",
"disableOpenEditors": "Hledat v celém pracovním prostoru",
"emptySearch": "Prázdné hledání",
"excludes.enable": "povolit",
"forTerm": " – Hledat: {0}",
+ "keywordSuggestion.message": "Místo toho hledat: ",
"moreSearch": "Přepnout podrobnosti vyhledávání",
"noOpenEditorResultsExcludes": "V otevřených editorech kromě {0} nebyly nalezeny žádné výsledky – ",
- "noOpenEditorResultsFound": "V otevřených editorech nebyly nalezeny žádné výsledky. Zkontrolujte nastavení pro nakonfigurovaná vyloučení a zkontrolujte soubory gitignore – ",
+ "noOpenEditorResultsFound": "V otevřených editorech nebyly nalezeny žádné výsledky. Zkontrolujte nakonfigurovaná vyloučení a soubory gitignore – ",
"noOpenEditorResultsIncludes": "V otevřených editorech nebyly nalezeny žádné výsledky, které by odpovídaly {0} – ",
"noOpenEditorResultsIncludesExcludes": "V otevřených editorech nebyly nalezeny žádné výsledky, které by odpovídaly {0} kromě {1} – ",
"noResultsExcludes": "Nenašly se žádné výsledky s vyloučením {0} – ",
- "noResultsFound": "Nebyly nalezeny žádné výsledky. Zkontrolujte si v nastavení nakonfigurovaná vyloučení a také zkontrolujte soubory gitignore – ",
+ "noResultsFound": "Nenašly se žádné výsledky. Zkontrolujte nakonfigurovaná vyloučení a soubory gitignore – ",
"noResultsIncludes": "V {0} nebyly nalezeny žádné výsledky – ",
"noResultsIncludesExcludes": "V {0} nebyly nalezeny žádné výsledky s vyloučením {1} – ",
"onlyOpenEditors": "hledání pouze v otevřených souborech",
@@ -8206,7 +13715,6 @@
"openFolder": "Otevřít složku",
"openInEditor.message": "Otevřít v editoru",
"openInEditor.tooltip": "Kopírovat aktuální výsledky hledání do editoru",
- "openSettings.learnMore": "Další informace",
"openSettings.message": "Otevřít nastavení",
"placeholder.excludes": "např. *.ts, src/**/exclude",
"placeholder.includes": "např. *.ts, src/**/include",
@@ -8239,7 +13747,9 @@
"searchPathNotFoundError": "Cesta pro hledání nebyla nalezena: {0}",
"searchScope.excludes": "soubory, které se mají vyloučit",
"searchScope.includes": "soubory, které se mají zahrnout",
+ "searchWithAIButtonTooltip": "Hledat pomocí AI",
"searchWithoutFolder": "Neotevřeli jste ani jste nezadali složku. Aktuálně se prohledávají pouze otevřené soubory – ",
+ "triggerAISearch.tooltip": "Hledat pomocí AI",
"useExcludesAndIgnoreFilesDescription": "Použít nastavení vyloučení a ignorovat soubory",
"useIgnoresAndExcludesDisabled": "používání nastavení vyloučení a ignorování souborů je zakázáno"
},
@@ -8292,6 +13802,7 @@
"searchEditor.deleteResultBlock": "Odstranit výsledky hledání souboru"
},
"vs/workbench/contrib/searchEditor/browser/searchEditorInput": {
+ "searchEditorLabelIcon": "Ikona popisku editoru vyhledávání",
"searchTitle": "Hledat",
"searchTitle.withQuery": "Hledat: {0}"
},
@@ -8304,30 +13815,20 @@
"oneResult": "1 výsledek",
"searchMaxResultsWarning": "Sada výsledků dotazu obsahuje jen podmnožinu všech shod. Zadejte konkrétnější hledání, aby se počet výsledků snížil."
},
- "vs/workbench/contrib/sessionSync/browser/sessionSync.contribution": {
- "apply edit session warning": "Použití vaší relace úprav může vést k přepsání vašich nepotvrzených změn. Chcete pokračovat?",
- "apply failed": "Použití vaší relace úprav se nezdařilo.",
- "applying edit session": "Používá se relace úprav",
- "client too old": "Pokud chcete tuto relaci úprav použít, aktualizujte na novější verzi {0}.",
- "continue edit session": "Pokračovat v úpravách relace...",
- "continue edit session in local folder": "Otevřít v místní složce",
- "continueEditSession.openLocalFolder.title": "Vyberte místní složku, ve které chcete pokračovat v relaci úprav",
- "continueEditSessionExtPoint": "Přidává možnosti pro pokračování v aktuální relaci úprav v jiném prostředí.",
- "continueEditSessionExtPoint.command": "Identifikátor příkazu, který se má provést. Příkaz musí být deklarovaný v sekci commands a vracet identifikátor URI představující jiné prostředí, ve kterém je možné pokračovat v aktuální relaci úprav.",
- "continueEditSessionExtPoint.group": "Skupina, do které tato položka patří.",
- "continueEditSessionExtPoint.when": "Podmínka, která musí mít hodnotu true, aby se zobrazila tato položka.",
- "continueEditSessionItem.openInLocalFolder": "Otevřít v místní složce",
- "continueEditSessionPick.placeholder": "Zvolte, jak chcete pokračovat v práci",
- "continueEditSessionPick.title": "Pokračovat v úpravách relace...",
- "editSessionsEnabled": "Určuje, jestli se mají při přepínání mezi webem, počítačem a zařízeními zobrazovat akce s podporou cloudu pro ukládání a obnovení nepotvrzených změn.",
- "no edit session": "Neexistují žádné relace úprav, které by bylo možné použít.",
- "no edit session content for ref": "Pro {0} ID nelze použít obsah relace úprav.",
- "no edits to store": "Ukládání relace úprav bylo přeskočeno, protože nejsou k dispozici žádné úpravy, které by bylo možné uložit.",
- "payload failed": "Vaše relace úprav se nedá uložit.",
- "payload too large": "Vaše relace úprav překračuje limit pro velikost a nedá se uložit.",
- "resume latest": "Obnovit poslední relaci úprav",
- "store current": "Uložit aktuální relaci úprav",
- "storing edit session": "Ukládá se relace úprav"
+ "vs/workbench/contrib/share/browser/share.contribution": {
+ "close": "Zavřít",
+ "experimental.share.enabled": "Určuje, jestli se má renderovat akce Share vedle centra příkazů, pokud {0} je {1}.",
+ "generating link": "Generuje se odkaz...",
+ "open link": "Otevřít odkaz",
+ "share": "Sdílet...",
+ "shareSuccess": "Odkaz se zkopíroval do schránky!",
+ "shareTextSuccess": "Text se zkopíroval do schránky!"
+ },
+ "vs/workbench/contrib/share/browser/shareService": {
+ "shareProviderCount": "Počet dostupných poskytovatelů sdílených složek",
+ "toggle.share": "Sdílet",
+ "toggle.shareDescription": "Přepnout viditelnost akce Sdílet v záhlaví",
+ "type to filter": "Zvolte způsob sdílení {0}"
},
"vs/workbench/contrib/snippets/browser/commands/abstractSnippetsActions": {
"snippets": "Fragmenty"
@@ -8336,32 +13837,34 @@
"bad_name1": "Neplatný název souboru",
"bad_name2": "{0} není platný název souboru.",
"bad_name3": "{0} už existuje.",
+ "detail.label": "({0}) {1}",
"global.1": "({0})",
"global.scope": "(globální)",
"group.global": "Existující fragmenty kódu",
- "miOpenSnippets": "Fragmenty kódu &&uživatele",
+ "miOpenSnippets": "&&Fragmenty kódu",
"name": "Zadejte název souboru fragmentu kódu.",
"new.folder": "Nový soubor fragmentů kódu pro {0}...",
"new.global": "Nový soubor globálních fragmentů kódu...",
"new.global.sep": "Nové fragmenty kódu",
"new.global_scope": "globální",
"new.workspace_scope": "Pracovní prostor {0}",
- "openSnippet.label": "Konfigurovat fragmenty kódu uživatele",
+ "openSnippet.label": "Konfigurace fragmentů kódu",
"openSnippet.pickLanguage": "Vybrat soubor fragmentů kódu nebo vytvořit fragmenty kódu",
- "userSnippets": "Fragmenty kódu uživatele"
+ "userSnippets": "Fragmenty kódu"
},
"vs/workbench/contrib/snippets/browser/commands/fileTemplateSnippets": {
- "label": "Naplnit soubor z fragmentu kódu",
+ "label": "Vyplnit soubor fragmentem kódu",
"placeholder": "Vyberte fragment"
},
"vs/workbench/contrib/snippets/browser/commands/insertSnippet": {
"snippet.suggestions.label": "Vložit fragment kódu"
},
"vs/workbench/contrib/snippets/browser/commands/surroundWithSnippet": {
- "label": "Obklopit fragmenty kódu"
+ "label": "Obklopit fragmenty kódu..."
},
"vs/workbench/contrib/snippets/browser/snippetCodeActionProvider": {
- "codeAction": "Uzavřít do: {0}",
+ "codeAction": "{0}",
+ "more": "Další…",
"overflow.start.title": "Začít s fragmentem kódu",
"title": "Začněte s: {0}"
},
@@ -8379,7 +13882,7 @@
"sep.workspaceSnippet": "Fragmenty kódu pracovního prostoru"
},
"vs/workbench/contrib/snippets/browser/snippets.contribution": {
- "editor.snippets.codeActions.enabled": "Určuje, jestli se jako akce kódu zobrazí obklopování s fragmenty kódu nebo fragmenty šablony souboru.",
+ "editor.snippets.codeActions.enabled": "Určuje, jestli se obklopování fragmenty kódu nebo fragmenty kódu zobrazují jako akce kódu.",
"snippetSchema.json": "Konfigurace fragmentů kódu uživatele",
"snippetSchema.json.body": "Obsah fragmentu kódu. Pomocí $1, ${1:defaultText} definujte pozice kurzoru, pomocí $0 definujte konečnou pozici kurzoru. Pomocí možností ${varName} a ${varName:defaultText} vložte hodnoty proměnných, například „Toto je soubor: $TM_FILENAME“.",
"snippetSchema.json.default": "Prázdný fragment kódu",
@@ -8404,10 +13907,41 @@
"vscode.extension.contributes.snippets-language": "Identifikátor jazyka, pro který je tento fragment kódu přidáván",
"vscode.extension.contributes.snippets-path": "Cesta k souboru fragmentů kódu. Cesta je relativní ke složce rozšíření a obvykle začíná na ./snippets/."
},
- "vs/workbench/contrib/surveys/browser/ces.contribution": {
- "cesSurveyQuestion": "Měli byste chvíli, abyste pomohli týmu VS Code? Řekněte nám prosím o svých dosavadních zkušenostech s nástrojem VS Code.",
- "giveFeedback": "Váš názor",
- "remindLater": "Připomenout později"
+ "vs/workbench/contrib/speech/browser/speechService": {
+ "speechProviderDescription": "Popis tohoto zprostředkovatele řeči zobrazený v uživatelském rozhraní.",
+ "speechProviderName": "Jedinečný název pro tohoto zprostředkovatele řeči",
+ "vscode.extension.contributes.speechProvider": "Přidává zprostředkovatele řeči."
+ },
+ "vs/workbench/contrib/speech/common/speechService": {
+ "hasSpeechProvider": "Zprostředkovatel řeči je registrován ve službě Speech.",
+ "speechLanguage.da-DK": "Dánština (Dánsko)",
+ "speechLanguage.de-DE": "Němčina (Německo)",
+ "speechLanguage.en-AU": "Angličtina (Austrálie)",
+ "speechLanguage.en-CA": "Angličtina (Kanada)",
+ "speechLanguage.en-GB": "Angličtina (Spojené království)",
+ "speechLanguage.en-IE": "Angličtina (Irsko)",
+ "speechLanguage.en-IN": "Angličtina (Indie)",
+ "speechLanguage.en-NZ": "Angličtina (Nový Zéland)",
+ "speechLanguage.en-US": "Angličtina (Spojené státy)",
+ "speechLanguage.es-ES": "Španělština (Španělsko)",
+ "speechLanguage.es-MX": "Španělština (Mexiko)",
+ "speechLanguage.fr-CA": "Francouzština (Kanada)",
+ "speechLanguage.fr-FR": "Francouzština (Francie)",
+ "speechLanguage.hi-IN": "Hindština (Indie)",
+ "speechLanguage.it-IT": "Italština (Itálie)",
+ "speechLanguage.ja-JP": "Japonština (Japonsko)",
+ "speechLanguage.ko-KR": "Korejština (Jižní Korea)",
+ "speechLanguage.nl-NL": "Nizozemština (Nizozemsko)",
+ "speechLanguage.pt-BR": "Portugalština (Brazílie)",
+ "speechLanguage.pt-PT": "Portugalština (Portugalsko)",
+ "speechLanguage.ru-RU": "Ruština (Rusko)",
+ "speechLanguage.sv-SE": "Švédština (Švédsko)",
+ "speechLanguage.tr-TR": "Turečtina (Turecko)",
+ "speechLanguage.zh-CN": "Čínština (zjednodušená, Čína)",
+ "speechLanguage.zh-HK": "Čínština (tradiční, Hongkong – zvláštní administrativní oblast)",
+ "speechLanguage.zh-TW": "Čínština (tradiční, Tchaj-wan)",
+ "speechToTextInProgress": "Probíhá relace převodu řeči na text.",
+ "textToSpeechInProgress": "Probíhá relace převodu textu na řeč."
},
"vs/workbench/contrib/surveys/browser/languageSurveys.contribution": {
"helpUs": "Pomozte nám zdokonalit naši podporu pro {0}.",
@@ -8421,13 +13955,6 @@
"surveyQuestion": "Máte chvilku na rychlý průzkum názorů?",
"takeSurvey": "Vyplnit průzkum"
},
- "vs/workbench/contrib/tags/electron-browser/workspaceTagsService": {
- "workspaceFound": "Tato složka obsahuje soubor pracovního prostoru {0}. Chcete ho otevřít? [Další informace]({1}) o souborech pracovních prostorů.",
- "openWorkspace": "Otevřít pracovní prostor",
- "workspacesFound": "Tato složka obsahuje více souborů pracovních prostorů. Chcete jeden z nich otevřít? [Další informace] ({0}) o souborech pracovních prostorů",
- "selectWorkspace": "Vybrat pracovní prostor",
- "selectToOpen": "Vyberte pracovní prostor, který chcete otevřít."
- },
"vs/workbench/contrib/tasks/browser/abstractTaskService": {
"ConfigureTaskRunnerAction.label": "Konfigurovat úlohu",
"TaskServer.folderIgnored": "Složka {0} je ignorována, protože používá úlohu verze 0.1.0.",
@@ -8443,18 +13970,23 @@
"TaskService.fetchingBuildTasks": "Načítají se úlohy sestavení...",
"TaskService.fetchingTestTasks": "Načítají se testovací úlohy...",
"TaskService.ignoredFolder": "Následující složky pracovního prostoru jsou ignorovány, protože používají úlohu verze 0.1.0: {0}.",
+ "TaskService.instanceToTerminate": "Vyberte instanci, která se má ukončit.",
"TaskService.noBuildTask": "Nebyla nalezena žádná úloha sestavení, kterou by bylo možné spustit. Konfigurovat úlohu sestavení...",
"TaskService.noBuildTask1": "Není definovaná žádná úloha sestavení. Označte úlohu v souboru tasks.json jako isBuildCommand.",
"TaskService.noBuildTask2": "Není definovaná žádná úloha sestavení. Označte úlohu v souboru tasks.json jako skupinu build.",
- "TaskService.noConfiguration": "Error: The {0} task detection didn't contribute a task for the following configuration:\r\n{1}\r\nThe task will be ignored.\r\n",
+ "TaskService.noConfiguration": "Chyba: Zjišťování úlohy {0} nepřidalo úlohu pro následující konfiguraci:\r\n{1}\r\nÚloha bude ignorována.",
"TaskService.noEntryToRun": "Nakonfigurovat úlohu",
+ "TaskService.noInstanceRunning": "V tuto chvíli není spuštěná žádná instance.",
+ "TaskService.noRunningTasks": "Neexistují žádné spuštěné úlohy, které by bylo možné restartovat.",
"TaskService.noTaskIsRunning": "Není spuštěná žádná úloha.",
"TaskService.noTaskRunning": "Aktuálně není spuštěná žádná úloha.",
"TaskService.noTaskToRestart": "Žádná úloha pro restartování",
+ "TaskService.noTasks": "Nejsou k dispozici žádné trvalé úlohy, ke kterým by bylo možné se znovu připojit.",
"TaskService.noTestTask1": "Není definovaná žádná testovací úloha. Označte úlohu v souboru tasks.json jako isTestCommand.",
"TaskService.noTestTask2": "Není definovaná žádná testovací úloha. Označte úlohu v souboru tasks.json jako skupinu test.",
"TaskService.noTestTaskTerminal": "Nebyla nalezena žádná testovací úloha, kterou by bylo možné spustit. Konfigurovat úlohy...",
"TaskService.notAgain": "Znovu nezobrazovat",
+ "TaskService.notConnecting": "Nastavení nakonfigurované hodnoty připojených úloh {0}, úlohy již byly znovu připojeny {1}",
"TaskService.openJsonFile": "Otevřít soubor tasks.json",
"TaskService.pickBuildTask": "Vyberte úlohu sestavení, která se má spustit",
"TaskService.pickBuildTaskForLabel": "Vyberte úlohu sestavení (není definována žádná výchozí úloha sestavení)",
@@ -8464,19 +13996,24 @@
"TaskService.pickShowTask": "Vyberte úlohu, pro kterou chcete zobrazit výstup.",
"TaskService.pickTask": "Vyberte úlohu, kterou chcete nakonfigurovat.",
"TaskService.pickTestTask": "Vyberte testovací úlohu, kterou chcete spustit.",
- "TaskService.providerUnavailable": "Upozornění: Úlohy ({0}) nejsou v aktuálním prostředí k dispozici.\r\n",
+ "TaskService.providerUnavailable": "Upozornění: Úlohy ({0}) nejsou v aktuálním prostředí k dispozici.",
+ "TaskService.reconnected": "Obnovilo se připojení k běžícím úlohám.",
+ "TaskService.reconnecting": "Obnovuje se připojení k běžícím úlohám...",
+ "TaskService.reconnectingTasks": "Obnovuje se připojení k {0} úlohám...",
"TaskService.requestTrust": "Vytváření výpisu a spouštění úloh vyžaduje, aby byly některé soubory v tomto pracovním prostoru spouštěny jako kód.",
+ "TaskService.skippingReconnection": "Druh spouštění není opětovné načtení okna, nastavení připojených úloh a odebrání trvalých úloh",
"TaskService.taskToRestart": "Vyberte úlohu, která se má restartovat.",
"TaskService.taskToTerminate": "Vyberte úlohu, která se má ukončit.",
"TaskService.template": "Vyberte šablonu úlohy",
"TaskService.terminateAllRunningTasks": "Všechny spuštěné úlohy",
+ "TaskSystem.InstancePolicy.warn": "Bylo dosaženo limitu počtu instancí pro tuto úlohu.",
"TaskSystem.active": "Už je spuštěna jedna úloha. Před spuštěním jiné úlohy nejdříve ukončete tu, která běží.",
- "TaskSystem.activeSame.noBackground": "Úloha {0} už je aktivní.",
"TaskSystem.configurationErrors": "Chyba: Zadaná konfigurace úlohy obsahuje chyby ověření, nelze ji proto použít. Nejdříve prosím tyto chyby opravte.",
- "TaskSystem.invalidTaskJson": "Error: The content of the tasks.json file has syntax errors. Please correct them before executing a task.\r\n",
- "TaskSystem.invalidTaskJsonOther": "Error: The content of the tasks json in {0} has syntax errors. Please correct them before executing a task.\r\n",
+ "TaskSystem.invalidTaskJson": "Chyba: Soubor tasks.json obsahuje chyby syntaxe. Před spuštěním provádění úlohy prosím tyto chyby opravte.",
+ "TaskSystem.invalidTaskJsonOther": "Chyba: V obsahu kódu JSON úloh v {0} jsou chyby syntaxe. Před spuštěním provádění úlohy prosím tyto chyby opravte.",
"TaskSystem.restartFailed": "Nepovedlo se ukončit a restartovat úlohu {0}.",
"TaskSystem.saveBeforeRun.prompt.title": "Chcete uložit všechny editory?",
+ "TaskSystem.taskNoLongerExists": "Úloha {0} již neexistuje nebo byla změněna. Nelze restartovat.",
"TaskSystem.unknownError": "Při spouštění úlohy došlo k chybě. Podrobnosti najdete v protokolu úloh.",
"TaskSystem.versionSettings": "V uživatelských nastaveních jsou povoleny pouze úlohy verze 2.0.0.",
"TaskSystem.versionWorkspaceFile": "V konfiguračních souborech pracovního prostoru jsou povoleny pouze úlohy verze 2.0.0.",
@@ -8490,44 +14027,55 @@
"customizeParseErrors": "Aktuální konfigurace úlohy obsahuje chyby. Před přizpůsobením úlohy prosím tyto chyby opravte.",
"detail": "Chcete před spuštěním úlohy uložit všechny editory?",
"detected": "zjištěné úlohy",
- "moreThanOneBuildTask": "There are many build tasks defined in the tasks.json. Executing the first one.\r\n",
+ "moreThanOneBuildTask": "V souboru tasks.json je definováno mnoho úloh sestavení. Bude spuštěno provádění první z nich.",
"recentlyUsed": "naposledy použité úlohy",
- "restartTask": "Restartovat úlohu",
"runTask.arg": "Filtruje úlohy zobrazené v rychlém termínu.",
"runTask.label": "Popisek úlohy nebo termín, podle kterého se má filtrovat",
- "runTask.task": "The task's label or a term to filter by",
+ "runTask.task": "Popisek úkolu nebo termín, podle kterého se má filtrovat",
"runTask.type": "Typ přidaného úkolu",
- "saveBeforeRun.dontSave": "Neukládat",
- "saveBeforeRun.save": "Uložit",
+ "saveBeforeRun.dontSave": "Ne&&ukládat",
+ "saveBeforeRun.save": "&&Uložit",
+ "savePersistentTask": "Ukládání trvalých úloh: {0}",
"selectProblemMatcher": "Vyberte, jaký typ chyb a upozornění se má vyhledávat ve výstupu úlohy.",
"showOutput": "Zobrazit výstup",
+ "task.longRunningTaskCompleted": "Úloha byla dokončena za {0}.",
+ "task.longRunningTaskCompletedWithLabel": "Úloha {0} byla dokončena za {1}.",
+ "task.longRunningTaskDurationMinutes": "{0} min",
+ "task.longRunningTaskDurationMinutesSeconds": "{0} m {1} s",
+ "task.longRunningTaskDurationSeconds": "{0} s",
+ "taskEvent": "Druh události úlohy: {0}",
"taskQuickPick.userSettings": "Uživatel",
- "taskService.ignoreingFolder": "Ignoring task configurations for workspace folder {0}. Multi folder workspace task support requires that all folders use task version 2.0.0\r\n",
+ "taskService.getSavedTasks": "Načítají se úlohy z úložiště úloh.",
+ "taskService.getSavedTasks.error": "Nepovedlo se načíst úlohu z úložiště úloh: {0}.",
+ "taskService.getSavedTasks.reading": "Čtení úloh z úložiště úloh, {0}, {1}, {2}",
+ "taskService.getSavedTasks.resolved": "Vyřešena úloha {0}",
+ "taskService.getSavedTasks.unresolved": "Nelze přeložit úlohu {0} ",
+ "taskService.gettingCachedTasks": "Vracení úloh uložených v mezipaměti {0}",
+ "taskService.ignoringFolder": "Konfigurace úloh pro složku pracovního prostoru {0} se ignorují. Podpora úloh pracovních prostorů s více složkami vyžaduje, aby všechny složky používaly úlohu verze 2.0.0.",
"taskService.openDiff": "Otevřít porovnání",
"taskService.openDiffs": "Otevřít porovnání",
+ "taskService.removePersistentTask": "Odebírání trvalé úlohy {0}",
+ "taskService.setPersistentTask": "Nastavování trvalé úlohy {0}",
"taskService.upgradeVersion": "Zastaralé úlohy verze 0.1.0 byly odebrány. Vaše úlohy byly upgradovány na verzi 2.0.0. Pokud chcete upgrade zkontrolovat, otevřete porovnání.",
"taskService.upgradeVersionPlural": "Zastaralé úlohy verze 0.1.0 byly odebrány. Vaše úlohy byly upgradovány na verzi 2.0.0. Pokud chcete upgrade zkontrolovat, otevřete porovnání.",
"taskServiceOutputPrompt": "Došlo k chybám úlohy. Podrobnosti najdete ve výstupu.",
+ "taskServiceOutputPromptChat": "Došlo k chybám úlohy. K jejich opravě použijte chat nebo si prohlédněte výstup s podrobnostmi.",
"tasks": "Úlohy",
"tasksJsonComment": "\t// See https://go.microsoft.com/fwlink/?LinkId=733558 \r\n\t// for the documentation about the tasks.json format",
- "terminateTask": "Ukončit úlohu",
+ "troubleshootWithChat": "Opravit pomocí AI",
"unexpectedTaskType": "Zprostředkovatel úlohy pro úlohy {0} neočekávaně poskytl úlohu typu {1}.\r\n"
},
"vs/workbench/contrib/tasks/browser/runAutomaticTasks": {
- "allow": "Povolit a spustit",
- "disallow": "Nepovolit",
- "openTask": "Otevřít soubor",
- "openTasks": "Otevřít soubory",
- "tasks.run.allowAutomatic": "Tento pracovní prostor obsahuje definované ({1}) úlohy ({0}), které se spustí automaticky při otevření tohoto pracovního prostoru. Chcete povolit spuštění automatických úloh při otevření tohoto pracovního prostoru?",
- "workbench.action.tasks.allowAutomaticTasks": "Povolit automatické úlohy ve složce",
- "workbench.action.tasks.disallowAutomaticTasks": "Zakázat automatické úlohy ve složce",
- "workbench.action.tasks.manageAutomaticRunning": "Spravovat automatické úlohy ve složce"
+ "workbench.action.tasks.allowAutomaticTasks": "Povolit automatické úlohy",
+ "workbench.action.tasks.disallowAutomaticTasks": "Zakázat automatické úlohy",
+ "workbench.action.tasks.manageAutomaticRunning": "Spravovat automatické úlohy"
},
"vs/workbench/contrib/tasks/browser/task.contribution": {
"BuildAction.label": "Spustit úlohu sestavení",
"ConfigureDefaultBuildTask.label": "Konfigurovat výchozí úlohu sestavení",
"ConfigureDefaultTestTask.label": "Konfigurovat výchozí testovací úlohu",
"ReRunTaskAction.label": "Znovu spustit poslední úlohu",
+ "RerunAllRunningTasksAction.label": "Znovu spustit všechny spuštěné úlohy",
"RestartTaskAction.label": "Restartovat spuštěnou úlohu",
"RunTaskAction.label": "Spustit úlohu",
"ShowLogAction.label": "Zobrazit protokol úloh",
@@ -8545,12 +14093,12 @@
"numberOfRunningTasks": "Spuštěné úlohy: {0}",
"runningTasks": "Zobrazit spuštěné úlohy",
"status.runningTasks": "Spuštěné úlohy",
+ "task.NotifyWindowOnTaskCompletion": "Určuje minimální dobu běhu úlohy v milisekundách před zobrazením oznámení operačního systému po dokončení úlohy, pokud není fokus na okně. Pokud chcete zakázat oznámení, nastavte hodnotu -1. Pokud chcete, aby se vždy zobrazila oznámení, nastavte hodnotu 0. To zahrnuje odznáček okna i informační zprávu s oznámením.",
"task.SaveBeforeRun.prompt": "Před spuštěním zobrazí dotaz, jestli se mají uložit editory.",
- "task.allowAutomaticTasks": "Povolte automatické úlohy ve složce.",
- "task.allowAutomaticTasks.auto": "Vyzvat k oprávnění pro každou složku",
+ "task.allowAutomaticTasks": "Povolit automatické úlohy – poznámka: úlohy se nespustí v nedůvěryhodném pracovním prostoru.",
"task.allowAutomaticTasks.off": "Nikdy",
+ "task.allowAutomaticTasks.on": "Vždy",
"task.autoDetect": "Ovládá povolení nastavení provideTasks pro všechna rozšíření zprostředkovatele úloh. Pokud je příkaz Úlohy: Spustit úlohu pomalý, může pomoct zakázání automatického zjišťování pro zprostředkovatele úloh. Nastavení zakazující automatické zjišťování mohou poskytovat také jednotlivá rozšíření.",
- "task.experimental.reconnection": "On window reload, reconnect to running watch/background tasks. Note that this is experimental, so you could encounter issues.",
"task.problemMatchers.neverPrompt": "Konfiguruje, jestli se má při spuštění úlohy zobrazit výzva matcheru problémů. Pokud se nemá výzva zobrazit nikdy, nastavte hodnotu true. Pomocí slovníku typů úloh můžete také zobrazování výzvy vypnout jen pro určité typy úloh.",
"task.problemMatchers.neverPrompt.array": "Objekt, který obsahuje páry logických hodnot pro daný typ úlohy, aby se nikdy nezobrazila výzva k použití matcherů problémů",
"task.problemMatchers.neverPrompt.boolean": "Umožňuje nastavit chování při zobrazování výzev matcheru problémů pro všechny úlohy.",
@@ -8558,24 +14106,25 @@
"task.quickOpen.history": "Řídí počet posledních položek sledovaných v dialogovém okně pro rychlé otevření úlohy.",
"task.quickOpen.showAll": "Způsobí, že příkaz Úlohy: Spustit úlohu použije pomalejší chování pro operaci show all (zobrazit vše) místo rychlejšího dvojúrovňového ovládacího prvku pro výběr, kde jsou úlohy seskupeny podle zprostředkovatele.",
"task.quickOpen.skip": "Určuje, jestli se má přeskočit rychlý výběr úlohy, pokud je k výběru pouze jedna úloha.",
+ "task.reconnection": "Při opětovném načtení okna se znovu připojte k úlohám, které mají problémové přiřazovače.",
"task.saveBeforeRun": "Před spuštěním úlohy uložte všechny editory s neuloženými změnami.",
"task.saveBeforeRun.always": "Před spuštěním vždy uloží všechny editory.",
"task.saveBeforeRun.never": "Před spuštěním nikdy neuloží editory.",
- "task.showDecorations": "Zobrazuje dekorace v bodech zájmu ve vyrovnávací paměti terminálu, například první problém zjištěný prostřednictvím úlohy kukátka. Mějte na paměti,, že to se projeví jenom u budoucích úkolů.",
"task.slowProviderWarning": "Konfiguruje, jestli se zobrazí oznámení, když zprostředkovatel běží pomalu.",
"task.slowProviderWarning.array": "Pole hodnot typů úloh, pro které by se nikdy nemělo nezobrazovat upozornění na pomalého zprostředkovatele",
"task.slowProviderWarning.boolean": "Umožňuje nastavit upozornění na pomalé zprostředkovatele pro všechny úlohy.",
+ "task.verboseLogging": "Povolí podrobné protokolování pro úlohy.",
+ "tasks": "Úlohy",
"tasksConfigurationTitle": "Úlohy",
"tasksQuickAccessHelp": "Spustit úlohu",
"tasksQuickAccessPlaceholder": "Zadejte název úlohy, která se má spustit.",
- "ttask.allowAutomaticTasks.on": "Vždy",
"workbench.action.tasks.openUserTasks": "Otevřít úlohy uživatele",
- "workbench.action.tasks.openWorkspaceFileTasks": "Otevřít úlohy pracovního prostoru"
+ "workbench.action.tasks.openWorkspaceFileTasks": "Otevřít úlohy pracovního prostoru",
+ "workbench.action.tasks.rerunForActiveTerminal": "Opakovat úlohu"
},
"vs/workbench/contrib/tasks/browser/taskQuickPick": {
- "TaskQuickPick.changeSettingDetails": "Detekce úloh pro úlohy {0} způsobí, že soubory ve všech pracovních prostorech, které otevřete, budou spuštěny jako kód. Povolení detekce úloh {0} je uživatelské nastavení a použije se pro všechny pracovní prostory, které otevřete. Chcete povolit detekci úloh {0} pro všechny pracovní prostory?",
+ "TaskQuickPick.changeSettingDetails": "Detekce úloh pro úlohy {0} způsobí, že soubory ve všech pracovních prostorech, které otevřete, budou spuštěny jako kód. Povolení detekce úloh {0} je uživatelské nastavení a použije se pro všechny pracovní prostory, které otevřete. \r\n\r\n Chcete povolit {0} detekci úloh pro všechny pracovní prostory?",
"TaskQuickPick.changeSettingNo": "Ne",
- "TaskQuickPick.changeSettingYes": "Ano",
"TaskQuickPick.changeSettingsOptions": "$(gear) – detekce úloh {0} je vypnutá. Povolit detekci úloh {1}...",
"TaskQuickPick.goBack": "Přejít zpět ↩",
"TaskQuickPick.noTasksForType": "Nenašly se žádné úlohy {0}. Přejít zpět ↩",
@@ -8591,6 +14140,13 @@
"taskQuickPick.showAll": "Zobrazit všechny úlohy...",
"taskType": "Všechny úlohy ({0})"
},
+ "vs/workbench/contrib/tasks/browser/taskService": {
+ "taskService.processTaskSystem": "Procesový systém úloh není na webu podporován."
+ },
+ "vs/workbench/contrib/tasks/browser/tasksQuickAccess": {
+ "TaskService.pickRunTask": "Vyberte úlohu, která má být spuštěna.",
+ "noTaskResults": "Žádné odpovídající úlohy"
+ },
"vs/workbench/contrib/tasks/browser/taskTerminalStatus": {
"task.watchFirstError": "Začátek zjištěných chyb pro toto spuštění",
"taskTerminalStatus.active": "Úloha je spuštěná.",
@@ -8603,10 +14159,6 @@
"taskTerminalStatus.warnings": "Úloha obsahuje upozornění",
"taskTerminalStatus.warningsInactive": "Úloha obsahuje upozornění a čeká…"
},
- "vs/workbench/contrib/tasks/browser/tasksQuickAccess": {
- "TaskService.pickRunTask": "Vyberte úlohu, která má být spuštěna.",
- "noTaskResults": "Žádné odpovídající úlohy"
- },
"vs/workbench/contrib/tasks/browser/terminalTaskSystem": {
"TerminalTaskSystem": "Nelze provést příkaz prostředí na jednotce UNC pomocí cmd.exe.",
"TerminalTaskSystem.nonWatchingMatcher": "Úloha {0} je úloha na pozadí, ale používá matcher problémů bez vzoru pozadí.",
@@ -8615,46 +14167,14 @@
"closeTerminal": "Stisknutím libovolné klávesy zavřete terminál.",
"dependencyCycle": "Existuje cyklická závislost. Podívejte se na úlohu {0}.",
"dependencyFailed": "Nepovedlo se vyhodnotit závislou úlohu {0} ve složce pracovního prostoru {1}.",
+ "rerunTask": "Opakovat úlohu",
"reuseTerminal": "Terminál bude znovu použit úlohami. Stisknutím libovolné klávesy ho zavřete.",
"task.executing": "Provádění úkolu: {0}",
+ "task.executing.shell-integration": "Provádění úkolu: {0}",
+ "task.executing.shellIntegration": "Provádění úkolu: {0}",
"task.executingInFolder": "Provádění úkolu ve složce {0}: {1}",
"unknownProblemMatcher": "Matcher problémů {0} nelze vyhodnotit. Bude se ignorovat."
},
- "vs/workbench/contrib/tasks/common/jsonSchemaCommon": {
- "JsonSchema.args": "Příkazu byly předány další argumenty.",
- "JsonSchema.background": "Určuje, jestli je ponechána spuštěná prováděná úloha a jestli běží na pozadí.",
- "JsonSchema.command": "Příkaz, který se má provést. Může se jednat o externí program nebo o příkaz prostředí.",
- "JsonSchema.echoCommand": "Určuje, jestli bude provedený příkaz uveden ve výstupu. Výchozí hodnota je false.",
- "JsonSchema.matchers": "Matchery problémů, které se mají použít. Může to být buď definice matcheru problémů, nebo pole hodnot řetězců a matcherů problémů.",
- "JsonSchema.options": "Další parametry příkazu",
- "JsonSchema.options.cwd": "Aktuální pracovní adresář prováděného programu nebo skriptu. Pokud je vynecháno, bude použit kořen aktuálního pracovního prostoru Code.",
- "JsonSchema.options.env": "Prostředí prováděného programu nebo prostředí. Při vynechání se používá prostředí nadřazeného procesu.",
- "JsonSchema.promptOnClose": "Určuje, jestli se má uživateli zobrazit výzva při zavření VS Code s běžící úlohou na pozadí.",
- "JsonSchema.shell.args": "Argumenty prostředí",
- "JsonSchema.shell.executable": "Prostředí, které se má použít",
- "JsonSchema.shellConfiguration": "Nakonfiguruje prostředí, které se má použít.",
- "JsonSchema.showOutput": "Určuje, jestli se bude zobrazovat výstup běžící úlohy. Pokud je vynecháno, je použita hodnota nastavení always.",
- "JsonSchema.suppressTaskName": "Určuje, jestli má být název úlohy přidán jako argument k příkazu. Výchozí hodnota je false.",
- "JsonSchema.taskSelector": "Předpona označující, že argument je úloha",
- "JsonSchema.tasks": "Konfigurace úloh. Obvykle jde o rozšíření úlohy, která je již definována v externím spouštěči úloh.",
- "JsonSchema.tasks.args": "Argumenty předané příkazu při vyvolání této úlohy",
- "JsonSchema.tasks.background": "Určuje, jestli je ponechána spuštěná prováděná úloha a jestli běží na pozadí.",
- "JsonSchema.tasks.build": "Mapuje tuto úlohu na výchozí příkaz sestavení v Code.",
- "JsonSchema.tasks.linux": "Konfigurace příkazů specifická pro Linux",
- "JsonSchema.tasks.mac": "Konfigurace příkazů specifická pro Mac",
- "JsonSchema.tasks.matcherError": "Nerozpoznaný matcher problémů. Je nainstalované rozšíření, které tento matcher problémů přidává?",
- "JsonSchema.tasks.matchers": "Matchery problémů, které se mají použít. Může to být buď definice matcheru problémů, nebo pole hodnot řetězců a matcherů problémů.",
- "JsonSchema.tasks.promptOnClose": "Určuje, jestli se uživateli zobrazí výzva, když se VS Code zavře při běžící úloze.",
- "JsonSchema.tasks.showOutput": "Určuje, jestli se bude zobrazovat výstup běžící úlohy. Pokud je vynecháno, je použita globálně definovaná hodnota.",
- "JsonSchema.tasks.suppressTaskName": "Určuje, jestli má být název úlohy přidán jako argument k příkazu. Pokud je vynecháno, je použita globálně definovaná hodnota.",
- "JsonSchema.tasks.taskName": "Název úlohy",
- "JsonSchema.tasks.test": "Mapuje tuto úlohu na výchozí příkaz testování v Code.",
- "JsonSchema.tasks.watching": "Určuje, jestli je ponechána spuštěná prováděná úloha a jestli sleduje systém souborů.",
- "JsonSchema.tasks.watching.deprecation": "Zastaralé. Místo toho použijte isBackground.",
- "JsonSchema.tasks.windows": "Konfigurace příkazů specifická pro Windows",
- "JsonSchema.watching": "Určuje, jestli je ponechána spuštěná prováděná úloha a jestli sleduje systém souborů.",
- "JsonSchema.watching.deprecation": "Zastaralé. Místo toho použijte isBackground."
- },
"vs/workbench/contrib/tasks/common/jsonSchema_v1": {
"JsonSchema._runner": "Provádění spouštěče bylo dokončeno. Použijte oficiální vlastnost spouštěče.",
"JsonSchema.linux": "Konfigurace příkazů specifická pro Linux",
@@ -8703,6 +14223,12 @@
"JsonSchema.tasks.identifier": "Uživatelsky definovaný identifikátor pro odkazování na úlohu v souboru launch.json nebo klauzuli dependsOn",
"JsonSchema.tasks.identifier.deprecated": "Uživatelem definované identifikátory jsou zastaralé. Pro vlastní úlohu použijte název jako referenci a pro úlohy poskytované rozšířeními použijte jejich definovaný identifikátor úlohy.",
"JsonSchema.tasks.instanceLimit": "Počet instancí úlohy, které je možné spustit souběžně",
+ "JsonSchema.tasks.instancePolicy": "Zásada, která se mají použít při dosažení limitu počtu instancí",
+ "JsonSchema.tasks.instancePolicy.prompt": "Zobrazí dotaz, která instance má být ukončena.",
+ "JsonSchema.tasks.instancePolicy.silent": "Neprovádí žádnou akci.",
+ "JsonSchema.tasks.instancePolicy.terminateNewest": "Ukončí nejnovější instanci.",
+ "JsonSchema.tasks.instancePolicy.terminateOldest": "Ukončí nejstarší instanci.",
+ "JsonSchema.tasks.instancePolicy.warn": "Pouze upozorní, že bylo dosaženo limitu počtu instancí.",
"JsonSchema.tasks.isBuildCommand.deprecated": "Vlastnost isBuildCommand je zastaralá. Místo ní použijte vlastnost group. Viz také zpráva k vydání verze pro verzi 1.14.",
"JsonSchema.tasks.isShellCommand.deprecated": "Vlastnost isShellCommand je zastaralá. Místo ní použijte vlastnost type dané úlohy a vlastnost shell v parametrech. Viz také zpráva k vydání verze pro verzi 1.14.",
"JsonSchema.tasks.isTestCommand.deprecated": "Vlastnost isTestCommand je zastaralá. Místo ní použijte vlastnost group. Viz také zpráva k vydání verze pro verzi 1.14.",
@@ -8715,6 +14241,7 @@
"JsonSchema.tasks.presentation.focus": "Určuje, jestli panel získá fokus. Výchozí hodnota je false. Pokud je nastaveno na hodnotu true, zobrazí se i panel.",
"JsonSchema.tasks.presentation.group": "Určuje, jestli má být úloha prováděna v konkrétní skupině terminálů pomocí rozdělených podoken.",
"JsonSchema.tasks.presentation.instance": "Určuje, jestli je panel sdílen mezi více úlohami, omezen pouze na tuto úlohu nebo jestli je při každém spuštění vytvořen nový.",
+ "JsonSchema.tasks.presentation.preserveTerminalName": "Určuje, zda se má po dokončení úlohy v terminálu zachovat její název.",
"JsonSchema.tasks.presentation.reveal": "Určuje, jestli se má zobrazovat terminál, ve kterém je úloha spuštěna. Může být přepsáno možností revealProblems. Výchozí hodnota je always.",
"JsonSchema.tasks.presentation.reveal.always": "Po provedení této úlohy se vždy zobrazí terminál.",
"JsonSchema.tasks.presentation.reveal.never": "Po provedení této úlohy se nikdy nezobrazí terminál.",
@@ -8742,6 +14269,41 @@
"JsonSchema.version": "Číslo verze konfigurace",
"JsonSchema.windows": "Konfigurace příkazů specifická pro Windows"
},
+ "vs/workbench/contrib/tasks/common/jsonSchemaCommon": {
+ "JsonSchema.args": "Příkazu byly předány další argumenty.",
+ "JsonSchema.background": "Určuje, jestli je ponechána spuštěná prováděná úloha a jestli běží na pozadí.",
+ "JsonSchema.command": "Příkaz, který se má provést. Může se jednat o externí program nebo o příkaz prostředí.",
+ "JsonSchema.echoCommand": "Určuje, jestli bude provedený příkaz uveden ve výstupu. Výchozí hodnota je false.",
+ "JsonSchema.matchers": "Matchery problémů, které se mají použít. Může to být buď definice matcheru problémů, nebo pole hodnot řetězců a matcherů problémů.",
+ "JsonSchema.options": "Další parametry příkazu",
+ "JsonSchema.options.cwd": "Aktuální pracovní adresář prováděného programu nebo skriptu. Pokud je vynecháno, bude použit kořen aktuálního pracovního prostoru Code.",
+ "JsonSchema.options.env": "Prostředí prováděného programu nebo prostředí. Při vynechání se používá prostředí nadřazeného procesu.",
+ "JsonSchema.promptOnClose": "Určuje, jestli se má uživateli zobrazit výzva při zavření VS Code s běžící úlohou na pozadí.",
+ "JsonSchema.shell.args": "Argumenty prostředí",
+ "JsonSchema.shell.executable": "Prostředí, které se má použít",
+ "JsonSchema.shellConfiguration": "Nakonfiguruje prostředí, které se má použít.",
+ "JsonSchema.showOutput": "Určuje, jestli se bude zobrazovat výstup běžící úlohy. Pokud je vynecháno, je použita hodnota nastavení always.",
+ "JsonSchema.suppressTaskName": "Určuje, jestli má být název úlohy přidán jako argument k příkazu. Výchozí hodnota je false.",
+ "JsonSchema.taskSelector": "Předpona označující, že argument je úloha",
+ "JsonSchema.tasks": "Konfigurace úloh. Obvykle jde o rozšíření úlohy, která je již definována v externím spouštěči úloh.",
+ "JsonSchema.tasks.args": "Argumenty předané příkazu při vyvolání této úlohy",
+ "JsonSchema.tasks.background": "Určuje, jestli je ponechána spuštěná prováděná úloha a jestli běží na pozadí.",
+ "JsonSchema.tasks.build": "Mapuje tuto úlohu na výchozí příkaz sestavení v Code.",
+ "JsonSchema.tasks.linux": "Konfigurace příkazů specifická pro Linux",
+ "JsonSchema.tasks.mac": "Konfigurace příkazů specifická pro Mac",
+ "JsonSchema.tasks.matcherError": "Nerozpoznaný matcher problémů. Je nainstalované rozšíření, které tento matcher problémů přidává?",
+ "JsonSchema.tasks.matchers": "Matchery problémů, které se mají použít. Může to být buď definice matcheru problémů, nebo pole hodnot řetězců a matcherů problémů.",
+ "JsonSchema.tasks.promptOnClose": "Určuje, jestli se uživateli zobrazí výzva, když se VS Code zavře při běžící úloze.",
+ "JsonSchema.tasks.showOutput": "Určuje, jestli se bude zobrazovat výstup běžící úlohy. Pokud je vynecháno, je použita globálně definovaná hodnota.",
+ "JsonSchema.tasks.suppressTaskName": "Určuje, jestli má být název úlohy přidán jako argument k příkazu. Pokud je vynecháno, je použita globálně definovaná hodnota.",
+ "JsonSchema.tasks.taskName": "Název úlohy",
+ "JsonSchema.tasks.test": "Mapuje tuto úlohu na výchozí příkaz testování v Code.",
+ "JsonSchema.tasks.watching": "Určuje, jestli je ponechána spuštěná prováděná úloha a jestli sleduje systém souborů.",
+ "JsonSchema.tasks.watching.deprecation": "Zastaralé. Místo toho použijte isBackground.",
+ "JsonSchema.tasks.windows": "Konfigurace příkazů specifická pro Windows",
+ "JsonSchema.watching": "Určuje, jestli je ponechána spuštěná prováděná úloha a jestli sleduje systém souborů.",
+ "JsonSchema.watching.deprecation": "Zastaralé. Místo toho použijte isBackground."
+ },
"vs/workbench/contrib/tasks/common/problemMatcher": {
"LegacyProblemMatcherSchema.watchedBegin": "Regulární výraz, který signalizuje, že sledované úlohy se začnou provádět při aktivaci prostřednictvím sledování souborů",
"LegacyProblemMatcherSchema.watchedBegin.deprecated": "Tato vlastnost je zastaralá. Místo ní použijte vlastnost watching.",
@@ -8767,22 +14329,23 @@
"ProblemMatcherParser.unknownSeverity": "Info: unknown severity {0}. Valid values are error, warning and info.\r\n",
"ProblemMatcherSchema.applyTo": "Určuje, jestli se problém nahlášený k textovému dokumentu vztahuje pouze na otevřené/zavřené dokumenty nebo všechny dokumenty.",
"ProblemMatcherSchema.background": "Vzory pro sledování začátku a konce aktivního matcheru pro úlohu na pozadí.",
- "ProblemMatcherSchema.background.activeOnStart": "Pokud je nastaveno na hodnotu true, je monitor pozadí při spuštění úlohy v aktivním režimu. Je to ekvivalentní vygenerování řádku, který odpovídá vzoru beginPattern.",
+ "ProblemMatcherSchema.background.activeOnStart": "Pokud je nastaveno na hodnotu true, spustí se monitorování na pozadí v aktivním režimu. Je to stejné, jako když se při spuštění úlohy ve výstupu vypíše řádek, který odpovídá vzoru beginsPattern.",
"ProblemMatcherSchema.background.beginsPattern": "Pokud je ve výstupu zjištěna shoda, je signalizován začátek úlohy na pozadí.",
"ProblemMatcherSchema.background.endsPattern": "Pokud je ve výstupu zjištěna shoda, je signalizován konec úlohy na pozadí.",
"ProblemMatcherSchema.base": "Název základního matcheru problémů, který se má použít",
- "ProblemMatcherSchema.fileLocation": "Určuje, jak se mají interpretovat názvy souborů hlášené na základě vzoru problému. Relativní umístění souboru (fileLocation) může být pole hodnot, jehož druhým prvkem je cesta k relativnímu umístění souboru.",
+ "ProblemMatcherSchema.fileLocation": "Definuje, jak se mají interpretovat názvy souborů hlášené ve vzoru problému. Relativní fileLocation může být pole, kde druhým prvkem pole je cesta relativního umístění souboru. Režim hledání fileLocation provádí hloubkové (a pravděpodobně náročné) prohledávání systému souborů v adresářích určených vlastnostmi include/exclude druhého prvku (nebo aktuálního adresáře pracovního prostoru, pokud není zadán).",
"ProblemMatcherSchema.owner": "Vlastník problému v rámci Code. Může být vynecháno, pokud je zadána hodnota base. Pokud je vynecháno a není zadána hodnota base, výchozí hodnota je external.",
"ProblemMatcherSchema.severity": "Výchozí závažnost pro zachycování problémů. Používá se, pokud vzor nedefinuje skupinu shody pro závažnost.",
"ProblemMatcherSchema.source": "Lidsky čitelný řetězec, který popisuje zdroj této diagnostiky, například typescript nebo super lint",
"ProblemMatcherSchema.watching": "Vzory pro sledování začátku a konce matcheru problémů v rámci úlohy sledování",
- "ProblemMatcherSchema.watching.activeOnStart": "Pokud je nastaveno na hodnotu true, bude sledovací proces při spuštění úlohy v aktivním režimu. Je to ekvivalentní vygenerování řádku, který odpovídá vzoru beginPattern.",
+ "ProblemMatcherSchema.watching.activeOnStart": "Pokud je nastaveno na hodnotu true, spustí se sledovací proces v aktivním režimu. Je to stejné, jako když se při spuštění úlohy ve výstupu vypíše řádek, který odpovídá vzoru beginsPattern.",
"ProblemMatcherSchema.watching.beginsPattern": "Pokud je ve výstupu zjištěna shoda, je signalizován začátek úlohy sledování.",
"ProblemMatcherSchema.watching.deprecated": "Vlastnost watching je zastaralá. Místo ní použijte vlastnost background.",
"ProblemMatcherSchema.watching.endsPattern": "Pokud je ve výstupu zjištěna shoda, je signalizován konec úlohy sledování.",
"ProblemPatternExtPoint": "Přidává vzory problémů.",
"ProblemPatternParser.invalidRegexp": "Error: The string {0} is not a valid regular expression.\r\n",
"ProblemPatternParser.loopProperty.notLast": "Vlastnost loop je podporována pouze v matcheru problémů posledního řádku.",
+ "ProblemPatternParser.problemPattern.emptyPattern": "Vzor problému je neplatný. Musí obsahovat alespoň jeden vzor.",
"ProblemPatternParser.problemPattern.kindProperty.notFirst": "Vzor problému je neplatný. Vlastnost kind musí být zadána pouze v prvním prvku.",
"ProblemPatternParser.problemPattern.missingLocation": "Vzor problému je neplatný. Musí mít buď nastavený typ file, nebo musí mít skupinu shody pro řádky nebo umístění.",
"ProblemPatternParser.problemPattern.missingProperty": "Vzor problému je neplatný. Musí obsahovat aspoň soubor a zprávu.",
@@ -8836,11 +14399,20 @@
"TaskDefinitionExtPoint": "Přidává typy úloh.",
"TaskTypeConfiguration.noType": "V konfiguraci typu úlohy chybí požadovaná vlastnost taskType."
},
+ "vs/workbench/contrib/tasks/common/tasks": {
+ "TaskDefinition.missingRequiredProperty": "Chyba: V identifikátoru úlohy {0} chybí požadovaná vlastnost {1}. Identifikátor úlohy se bude ignorovat.",
+ "rerunTaskIcon": "Ikona zobrazení úlohy opětovného spuštění.",
+ "taskTerminalActive": "Určuje, jestli je aktivní terminál terminálem úlohy.",
+ "tasks.taskRunningContext": "Určuje, jestli je úloha aktuálně spuštěná.",
+ "tasksCategory": "Úlohy"
+ },
"vs/workbench/contrib/tasks/common/taskService": {
"tasks.customExecutionSupported": "Určuje, jestli se podporují úlohy CustomExecution. Zvažte možnost použít toto v klauzuli when příspěvku taskDefinition.",
"tasks.processExecutionSupported": "Určuje, jestli se podporují úlohy ProcessExecution. Zvažte možnost použít toto v klauzuli when příspěvku taskDefinition.",
+ "tasks.serverlessWebContext": "True, pokud je na webu bez vzdálené autority.",
"tasks.shellExecutionSupported": "Určuje, jestli se podporují úlohy ShellExecution. Zvažte možnost použít toto v klauzuli when příspěvku taskDefinition.",
- "tasks.taskCommandsRegistered": "Určuje, jestli se příkazy úlohy ještě nezaregistrovaly."
+ "tasks.taskCommandsRegistered": "Určuje, jestli se příkazy úlohy ještě nezaregistrovaly.",
+ "tasks.tasksAvailable": "Určuje, jestli jsou v pracovním prostoru k dispozici nějaké úkoly."
},
"vs/workbench/contrib/tasks/common/taskTemplates": {
"Maven": "Provede běžné příkazy Maven.",
@@ -8848,114 +14420,68 @@
"externalCommand": "Příklad spuštění libovolného externího příkazu",
"msbuild": "Provede cíl sestavení."
},
- "vs/workbench/contrib/tasks/common/tasks": {
- "TaskDefinition.missingRequiredProperty": "Chyba: V identifikátoru úlohy {0} chybí požadovaná vlastnost {1}. Identifikátor úlohy se bude ignorovat.",
- "tasks.taskRunningContext": "Určuje, jestli je úloha aktuálně spuštěná.",
- "tasksCategory": "Úlohy"
- },
- "vs/workbench/contrib/tasks/electron-sandbox/taskService": {
+ "vs/workbench/contrib/tasks/electron-browser/taskService": {
"TaskSystem.exitAnyways": "&&Přesto ukončit",
"TaskSystem.noProcess": "Spuštěná úloha už neexistuje. Pokud z úlohy vznikly procesy na pozadí, mohly by v důsledku ukončení VS Code vzniknout osamocené procesy. Pokud se tomu chcete vyhnout, spusťte poslední proces na pozadí s příznakem wait.",
"TaskSystem.runningTask": "Je spuštěná úloha. Chcete ji ukončit?",
"TaskSystem.terminateTask": "&&Ukončit úlohu"
},
+ "vs/workbench/contrib/telemetry/browser/telemetry.contribution": {
+ "showTelemetry": "Zobrazit telemetrii"
+ },
"vs/workbench/contrib/terminal/browser/baseTerminalBackend": {
- "nonResponsivePtyHost": "Připojení k procesu hostitele pty terminálu nereaguje. Je možné, že terminály přestanou fungovat.",
- "restartPtyHost": "Restartovat hostitele pty"
+ "nonResponsivePtyHost": "Připojení k hostitelskému procesu pty terminálu nereaguje. Terminály můžou přestat fungovat. Kliknutím můžete ručně restartovat hostitele pty.",
+ "ptyHostStatus": "Stav hostitele Pty",
+ "ptyHostStatus.ariaLabel": "Hostitel Pty nereaguje",
+ "ptyHostStatus.short": "Hostitel Pty"
},
"vs/workbench/contrib/terminal/browser/environmentVariableInfo": {
- "extensionEnvironmentContributionChanges": "Rozšíření chtějí v prostředí terminálu provést následující změny:",
- "extensionEnvironmentContributionInfo": "Rozšíření v tomto prostředí terminálu provedla změny.",
- "extensionEnvironmentContributionRemoval": "Rozšíření chtějí z prostředí terminálu odebrat tyto existující změny:",
- "relaunchTerminalLabel": "Znovu spustit terminál"
- },
- "vs/workbench/contrib/terminal/browser/links/terminalLink": {
- "focusFolder": "Přepnout fokus na složku v průzkumníkovi",
- "openFile": "Otevřít soubor v editoru",
- "openFolder": "Otevřít složku v novém okně"
- },
- "vs/workbench/contrib/terminal/browser/links/terminalLinkDetectorAdapter": {
- "focusFolder": "Přepnout fokus na složku v průzkumníkovi",
- "followLink": "Přejít na odkaz",
- "openFile": "Otevřít soubor v editoru",
- "openFolder": "Otevřít složku v novém okně",
- "searchWorkspace": "Prohledat pracovní prostor"
- },
- "vs/workbench/contrib/terminal/browser/links/terminalLinkManager": {
- "followForwardedLink": "Přejít na odkaz pomocí přesměrovaného portu",
- "followLink": "Přejít na odkaz",
- "followLinkUrl": "Odkaz",
- "terminalLinkHandler.followLinkAlt": "alt + kliknutí",
- "terminalLinkHandler.followLinkAlt.mac": "option + kliknutí",
- "terminalLinkHandler.followLinkCmd": "cmd + kliknutí",
- "terminalLinkHandler.followLinkCtrl": "ctrl + kliknutí"
- },
- "vs/workbench/contrib/terminal/browser/links/terminalLinkQuickpick": {
- "terminal.integrated.localFileLinks": "Místní soubor",
- "terminal.integrated.openDetectedLink": "Vyberte odkaz, který chcete otevřít.",
- "terminal.integrated.searchLinks": "Hledání v pracovním prostoru",
- "terminal.integrated.showMoreLinks": "Zobrazit další odkazy",
- "terminal.integrated.urlLinks": "Adresa URL"
+ "ScopedEnvironmentContributionInfo": "pracovní prostor",
+ "extensionEnvironmentContributionInfoActive": "Následující rozšíření přispěla k prostředí tohoto terminálu:",
+ "extensionEnvironmentContributionInfoStale": "Následující rozšíření chtějí znovu spustit terminál a přispět tak k jeho prostředí:",
+ "relaunchTerminalLabel": "Znovu spustit terminál",
+ "showEnvironmentContributions": "Zobrazit příspěvky prostředí"
},
"vs/workbench/contrib/terminal/browser/terminal.contribution": {
"miToggleIntegratedTerminal": "&&Terminál",
- "tasksQuickAccessHelp": "Zobrazit všechny otevřené terminály",
- "tasksQuickAccessPlaceholder": "Zadejte název terminálu, který chcete otevřít.",
"terminal": "Terminál"
},
"vs/workbench/contrib/terminal/browser/terminalActions": {
"emptyTerminalNameInfo": "Pokud nezadáte žádný název, obnoví se výchozí hodnota.",
+ "newWithProfile.location": "Kde se má vytvořit terminál",
+ "newWithProfile.location.editor": "Vytvořit terminál v editoru",
+ "newWithProfile.location.view": "Vytvořit terminál v zobrazení terminálu",
"noUnattachedTerminals": "Nejsou k dispozici žádné nepřipojené terminály, ke kterým by se dalo připojit.",
- "quickAccessTerminal": "Přepnout aktivní terminál",
"showTerminalTabs": "Zobrazit karty",
"terminalLaunchHelp": "Otevřít nápovědu",
"workbench.action.terminal.attachToSession": "Připojit k relaci",
"workbench.action.terminal.clear": "Vymazat",
- "workbench.action.terminal.clearCommandHistory": "Vymazat historii příkazů",
"workbench.action.terminal.clearSelection": "Vymazat výběr",
- "workbench.action.terminal.copyLastCommand": "Kopírovat poslední příkaz",
- "workbench.action.terminal.copySelection": "Kopírovat výběr",
- "workbench.action.terminal.copySelectionAsHtml": "Kopírovat výběr jako HTML",
"workbench.action.terminal.createTerminalEditor": "Vytvořit nový terminál v oblasti editoru",
"workbench.action.terminal.createTerminalEditorSide": "Vytvořit nový terminál v oblasti editoru na straně",
"workbench.action.terminal.detachSession": "Odpojit relaci",
- "workbench.action.terminal.findNext": "Najít další",
- "workbench.action.terminal.findPrevious": "Najít předchozí",
"workbench.action.terminal.focus.tabsView": "Zobrazení karet Zaměřit se na terminál",
- "workbench.action.terminal.focusFind": "Přepnout fokus na hledání",
"workbench.action.terminal.focusNext": "Přepnout fokus na další skupinu terminálů",
"workbench.action.terminal.focusNextPane": "Přepnout fokus na další terminál ve skupině terminálů",
"workbench.action.terminal.focusPrevious": "Přepnout fokus na předchozí skupinu terminálů",
"workbench.action.terminal.focusPreviousPane": "Přepnout fokus na předchozí terminál ve skupině terminálů",
- "workbench.action.terminal.goToRecentDirectory": "Přejít do posledního adresáře...",
- "workbench.action.terminal.hideFind": "Skrýt hledání",
- "workbench.action.terminal.join": "Spojit terminály",
+ "workbench.action.terminal.join": "Spojit terminály…",
"workbench.action.terminal.join.insufficientTerminals": "Nedostatečný počet terminálů pro akci připojení",
"workbench.action.terminal.join.onlySplits": "Všechny terminály už jsou připojené.",
"workbench.action.terminal.joinInstance": "Spojit terminály",
"workbench.action.terminal.kill": "Ukončit aktivní instanci terminálu",
"workbench.action.terminal.killAll": "Ukončit všechny terminály",
"workbench.action.terminal.killEditor": "Ukončit aktivní terminál v oblasti editoru",
- "workbench.action.terminal.navigationModeExit": "Ukončit režim navigace",
- "workbench.action.terminal.navigationModeFocusNext": "Přepnout fokus na další řádek (navigační režim)",
- "workbench.action.terminal.navigationModeFocusNextPage": "Přepnout fokus na další stránku (navigační režim)",
- "workbench.action.terminal.navigationModeFocusPrevious": "Přepnout fokus na předchozí řádek (navigační režim)",
- "workbench.action.terminal.navigationModeFocusPreviousPage": "Přepnout fokus na předchozí stránku (navigační režim)",
"workbench.action.terminal.new": "Vytvořit nový terminál",
"workbench.action.terminal.newInActiveWorkspace": "Vytvořit nový terminál (In Active Workspace)",
- "workbench.action.terminal.newWithCwd": "Vytvořit nový terminál s počátečním bodem ve vlastním pracovním adresáři",
"workbench.action.terminal.newWithCwd.cwd": "Adresář, ve kterém se má spustit terminál",
"workbench.action.terminal.newWithProfile": "Vytvořit nový terminál (s profilem)",
"workbench.action.terminal.newWithProfile.profileName": "Název profilu, který se má vytvořit",
"workbench.action.terminal.newWorkspacePlaceholder": "Vyberte aktuální pracovní adresář pro nový terminál.",
- "workbench.action.terminal.openDetectedLink": "Otevřít zjištěný odkaz…",
- "workbench.action.terminal.openLastLocalFileLink": "Otevřít poslední odkaz na místní soubor",
- "workbench.action.terminal.openLastUrlLink": "Otevřít poslední odkaz adresy URL",
"workbench.action.terminal.openSettings": "Konfigurovat nastavení terminálu",
- "workbench.action.terminal.paste": "Vložit do aktivního terminálu",
- "workbench.action.terminal.pasteSelection": "Vložit výběr do aktivního terminálu",
+ "workbench.action.terminal.overriddenCwdDescription": "(Přepsané) {0}",
"workbench.action.terminal.relaunch": "Znovu spustit aktivní terminál",
- "workbench.action.terminal.renameWithArg": "Přejmenovat aktuálně aktivní terminál",
+ "workbench.action.terminal.rename.prompt": "Zadejte název terminálu.",
"workbench.action.terminal.renameWithArg.name": "Nový název terminálu",
"workbench.action.terminal.renameWithArg.noName": "Nebyl zadán žádný argument názvu.",
"workbench.action.terminal.resizePaneDown": "Změnit velikost terminálu dolů",
@@ -8964,46 +14490,24 @@
"workbench.action.terminal.resizePaneUp": "Změnit velikost terminálu nahoru",
"workbench.action.terminal.runActiveFile": "Spustit aktivní soubor v aktivním terminálu",
"workbench.action.terminal.runActiveFile.noFile": "V terminálu lze spustit pouze soubory na disku.",
- "workbench.action.terminal.runRecentCommand": "Spustit poslední příkaz...",
"workbench.action.terminal.runSelectedText": "Spustit vybraný text v aktivním terminálu",
"workbench.action.terminal.scrollDown": "Posunout dolů (řádek)",
"workbench.action.terminal.scrollDownPage": "Posunout dolů (stránka)",
"workbench.action.terminal.scrollToBottom": "Posunout na konec",
- "workbench.action.terminal.scrollToNextCommand": "Posunout na další příkaz",
- "workbench.action.terminal.scrollToPreviousCommand": "Posunout na předchozí příkaz",
"workbench.action.terminal.scrollToTop": "Posunout na začátek",
"workbench.action.terminal.scrollUp": "Posunout nahoru (řádek)",
"workbench.action.terminal.scrollUpPage": "Posunout nahoru (stránka)",
- "workbench.action.terminal.searchWorkspace": "Hledat v pracovním prostoru",
"workbench.action.terminal.selectAll": "Vybrat vše",
"workbench.action.terminal.selectDefaultShell": "Vybrat výchozí profil",
"workbench.action.terminal.selectToNextCommand": "Vybrat do dalšího příkazu",
"workbench.action.terminal.selectToNextLine": "Vybrat do dalšího řádku",
"workbench.action.terminal.selectToPreviousCommand": "Vybrat do předchozího příkazu",
"workbench.action.terminal.selectToPreviousLine": "Vybrat do předchozího řádku",
- "workbench.action.terminal.sendSequence": "Poslat na terminál vlastní sekvenci",
"workbench.action.terminal.setFixedDimensions": "Nastavit pevné rozměry",
- "workbench.action.terminal.showEnvironmentInformation": "Zobrazit informace o prostředí",
- "workbench.action.terminal.showTabs": "Zobrazit karty",
- "workbench.action.terminal.sizeToContentWidth": "Přepnout velikost na šířku obsahu",
"workbench.action.terminal.splitInActiveWorkspace": "Rozdělit terminál (v aktivním pracovním prostoru)",
- "workbench.action.terminal.switchTerminal": "Přepnout terminál",
- "workbench.action.terminal.toggleEscapeSequenceLogging": "Přepnout protokolování řídicí sekvence",
- "workbench.action.terminal.toggleFindCaseSensitive": "Přepnout hledání s rozlišováním malých a velkých písmen",
- "workbench.action.terminal.toggleFindRegex": "Přepnout hledání pomocí regulárního výrazu",
- "workbench.action.terminal.toggleFindWholeWord": "Přepnout hledání pomocí celých slov",
- "workbench.action.terminal.writeDataToTerminal": "Zapsat data na terminál",
- "workbench.action.terminal.writeDataToTerminal.prompt": "Zadejte data, která se mají zapsat přímo na terminál (obejde se pty)."
- },
- "vs/workbench/contrib/terminal/browser/terminalConfigHelper": {
- "install": "Nainstalovat",
- "useWslExtension.title": "Pro otevření terminálu ve WSL se doporučuje rozšíření {0}."
- },
- "vs/workbench/contrib/terminal/browser/terminalDecorationsProvider": {
- "label": "Terminál"
+ "workbench.action.terminal.switchTerminal": "Přepnout terminál"
},
"vs/workbench/contrib/terminal/browser/terminalEditorInput": {
- "cancel": "Zrušit",
"confirmDirtyTerminal.button": "&&Ukončit",
"confirmDirtyTerminal.detail": "Při zavření dojde k ukončení spuštěných procesů v tomto terminálu.",
"confirmDirtyTerminal.message": "Chcete ukončit spuštěné procesy?",
@@ -9014,122 +14518,129 @@
"killTerminalIcon": "Ikona pro ukončení instance terminálu",
"newTerminalIcon": "Ikona pro vytvoření nové instance terminálu",
"renameTerminalIcon": "Ikona pro přejmenování v rychlé nabídce terminálu",
+ "terminalCommandHistoryFuzzySearch": "Ikona pro přepnutí přibližného vyhledávání historie příkazů.",
+ "terminalCommandHistoryOpenFile": "Ikona pro otevření souboru historie prostředí",
+ "terminalCommandHistoryOutput": "Ikona pro zobrazení výstupu příkazu terminálu.",
+ "terminalCommandHistoryRemove": "Ikona pro odebrání příkazu terminálu z historie příkazů.",
+ "terminalDecorationError": "Ikona pro dekorace terminálu příkazu, u kterého došlo k chybě.",
+ "terminalDecorationIncomplete": "Ikona pro dekorace terminálu příkazu, který nebyl dokončen..",
+ "terminalDecorationMark": "Ikona pro značku dekorace terminálu.",
+ "terminalDecorationSuccess": "Ikona pro dekorace terminálu příkazu, který byl úspěšný.",
"terminalViewIcon": "Zobrazit ikonu zobrazení terminálu"
},
"vs/workbench/contrib/terminal/browser/terminalInstance": {
"bellStatus": "Zvonek",
+ "changeColor": "Vyberte barvu terminálu",
"configureTerminalSettings": "Nakonfigurovat nastavení terminálu",
- "confirmMoveTrashMessageFilesAndDirectories": "Opravdu chcete vložit řádky (celkem {0}) textu do terminálu?",
"disconnectStatus": "Připojení nutné ke zpracování bylo ztraceno",
- "doNotAskAgain": "Tento dotaz příště nezobrazovat",
"keybindingHandling": "Některé klávesové zkratky se ve výchozím nastavení neposílají do terminálu a místo toho se zpracovávají pomocí {0}.",
"launchFailed.errorMessage": "Nepovedlo se spustit proces terminálu: {0}.",
"launchFailed.exitCodeAndCommandLine": "Nepovedlo se spustit proces terminálu {0} (ukončovací kód: {1}).",
"launchFailed.exitCodeOnly": "Nepovedlo se spustit proces terminálu (ukončovací kód: {0}).",
"launchFailed.exitCodeOnlyShellIntegration": "Možná vám pomůže zakázat integraci prostředí v uživatelských nastaveních.",
- "multiLinePasteButton": "&&Vložit",
- "preview": "Náhled:",
- "removeCommand": "Odebrat z historie příkazů",
- "selectRecentCommand": "Vyberte příkaz, který chcete spustit (pokud chcete příkaz upravit, podržte klávesu Alt)",
- "selectRecentCommandMac": "Vyberte příkaz, který chcete spustit (pokud chcete příkaz upravit, podržte Option)",
- "selectRecentDirectory": "Vyberte adresář, do kterého chcete přejít (pokud chcete příkaz upravit, podržte klávesu Alt)",
- "selectRecentDirectoryMac": "Vyberte adresář, do kterého chcete přejít (pokud chcete příkaz upravit, podržte klávesu Option)",
"setTerminalDimensionsColumn": "Nastavit pevné rozměry: sloupec",
"setTerminalDimensionsRow": "Nastavit pevné rozměry: řádek",
- "shellFileHistoryCategory": "{0} – historie",
"shellIntegration.learnMore": "Další informace o integraci prostředí",
"shellIntegration.openSettings": "Otevřít uživatelská nastavení",
- "terminal.contiguousSearch": "Použít souvislé hledání",
- "terminal.fuzzySearch": "Použít přibližné vyhledávání",
"terminal.integrated.a11yPromptLabel": "Vstup terminálu",
- "terminal.integrated.a11yTooMuchOutput": "Výstup je pro oznamování příliš dlouhý. Přejděte na řádky ručně a přečtěte si tyto informace sami.",
- "terminal.integrated.copySelection.noSelection": "Terminál neobsahuje žádný výběr, který by bylo možné kopírovat.",
+ "terminal.integrated.useAccessibleBuffer": "Použijte přístupnou vyrovnávací paměť {0} k ruční kontrole výstupu",
+ "terminal.integrated.useAccessibleBufferNoKb": "Použijte příkaz Terminal: Focus Accessible Buffer k ruční kontrole výstupu",
"terminal.requestTrust": "Vytváření procesu terminálu vyžaduje spuštění kódu.",
- "terminalNavigationMode": "K navigaci ve vyrovnávací paměti terminálu použijte {0} a {1}.",
+ "terminalHelpAriaLabel": "Použít {0} pro nápovědu k přístupnosti terminálu",
+ "terminalScreenReaderMode": "Spustit příkaz: Přepnout režim přístupnosti čtečky obrazovky pro optimalizované prostředí čtečky obrazovky",
"terminalStaleTextBoxAriaLabel": "Prostředí terminálu {0} je zastaralé. Pokud chcete zobrazit další informace, spusťte příkaz Zobrazit informace o prostředí.",
"terminalTextBoxAriaLabel": "Terminál {0}",
"terminalTextBoxAriaLabelNumberAndTitle": "Terminál {0}, {1}",
- "terminalTypeLocal": "Místní",
- "terminalTypeTask": "Úloha",
"terminated.exitCodeAndCommandLine": "Proces terminálu {0} byl ukončen s ukončovacím kódem: {1}.",
"terminated.exitCodeOnly": "Proces terminálu byl ukončen s ukončovacím kódem: {0}.",
- "viewCommandOutput": "Zobrazit výstup příkazu",
- "workbench.action.terminal.rename.prompt": "Zadejte název terminálu.",
"workspaceNotTrustedCreateTerminal": "Nejde spustit proces terminálu v nedůvěryhodnému pracovním prostoru.",
"workspaceNotTrustedCreateTerminalCwd": "Nejde spustit proces terminál v nedůvěryhodném pracovním prostoru s cwd {0} a userHome {1}"
},
- "vs/workbench/contrib/terminal/browser/terminalMainContribution": {
- "ptyHost": "Hostitel Pty"
- },
"vs/workbench/contrib/terminal/browser/terminalMenus": {
"defaultTerminalProfile": "{0} (výchozí)",
+ "launchProfile": "Profil spouštění…",
+ "miNewInNewWindow": "Nové &&okno terminálu",
"miNewTerminal": "&&Nový terminál",
"miRunActiveFile": "Spustit &&aktivní soubor",
"miRunSelectedText": "Spustit &&vybraný text",
"miSplitTerminal": "&&Rozdělit terminál",
- "splitTerminal": "Rozdělit terminál",
- "terminal.new": "Nový terminál",
+ "split.profile": "Rozdělit terminál s profilem",
+ "workbench.action.tasks.configureTaskRunner": "Konfigurovat úlohy...",
+ "workbench.action.tasks.runTask": "Spustit úlohu...",
"workbench.action.terminal.changeColor": "Změnit barvu...",
"workbench.action.terminal.changeIcon": "Změnit ikonu...",
"workbench.action.terminal.clear": "Vymazat",
+ "workbench.action.terminal.clearLong": "Vymazat terminál",
"workbench.action.terminal.copySelection.short": "Kopírovat",
"workbench.action.terminal.copySelectionAsHtml": "Kopírovat jako HTML",
"workbench.action.terminal.joinInstance": "Spojit terminály",
- "workbench.action.terminal.new.short": "Nový terminál",
- "workbench.action.terminal.newWithProfile.short": "Nový terminál s profilem",
+ "workbench.action.terminal.newWithProfile.short": "Nový terminál s profilem…",
"workbench.action.terminal.openSettings": "Nakonfigurovat nastavení terminálu",
"workbench.action.terminal.paste.short": "Vložit",
"workbench.action.terminal.renameInstance": "Přejmenovat...",
+ "workbench.action.terminal.runActiveFile": "Spustit aktivní soubor",
+ "workbench.action.terminal.runSelectedText": "Spustit vybraný text",
"workbench.action.terminal.selectAll": "Vybrat vše",
"workbench.action.terminal.selectDefaultProfile": "Vybrat výchozí profil",
- "workbench.action.terminal.showsTabs": "Zobrazit karty",
- "workbench.action.terminal.sizeToContentWidthInstance": "Přepnout velikost na šířku obsahu",
+ "workbench.action.terminal.startVoice": "Spustit diktování",
+ "workbench.action.terminal.startVoiceEditor": "Spustit diktování",
+ "workbench.action.terminal.stopVoice": "Zastavit diktování",
+ "workbench.action.terminal.stopVoiceEditor": "Zastavit diktování",
"workbench.action.terminal.switchTerminal": "Přepnout terminál"
},
"vs/workbench/contrib/terminal/browser/terminalProcessManager": {
+ "killportfailure": "Nejde ukončit proces naslouchání na portu {0}, příkaz byl ukončen s chybou {1}",
"ptyHostRelaunch": "Terminál se restartuje, protože se ztratilo připojení k procesu prostředí..."
},
"vs/workbench/contrib/terminal/browser/terminalProfileQuickpick": {
"ICreateContributedTerminalProfileOptions": "poskytnuté",
+ "cancel": "Zrušit",
"createQuickLaunchProfile": "Nakonfigurovat profil terminálu",
"enterTerminalProfileName": "Zadejte název profilu terminálu.",
"terminal.integrated.chooseDefaultProfile": "Vyberte výchozí profil terminálu.",
"terminal.integrated.selectProfileToCreate": "Vyberte profil terminálu, který se má vytvořit.",
"terminalProfileAlreadyExists": "Profil terminálu s tímto názvem už existuje.",
"terminalProfiles": "profily",
- "terminalProfiles.detected": "zjištěno"
- },
- "vs/workbench/contrib/terminal/browser/terminalProfileResolverService": {
- "migrateToProfile": "Migrovat",
- "terminalProfileMigration": "Terminál používá zastaralé nastavení prostředí shell/shellArgs. Chcete ho migrovat do profilu?"
- },
- "vs/workbench/contrib/terminal/browser/terminalQuickAccess": {
- "renameTerminal": "Přejmenovat terminál",
- "workbench.action.terminal.newWithProfilePlus": "Vytvořit nový terminál s profilem",
- "workbench.action.terminal.newplus": "Vytvořit nový terminál"
+ "terminalProfiles.detected": "zjištěno",
+ "unsafePathWarning": "Tento profil terminálu používá potenciálně nebezpečnou cestu, kterou může změnit jiný uživatel: {0}. Chcete ji použít?",
+ "yes": "Ano"
},
"vs/workbench/contrib/terminal/browser/terminalService": {
"localTerminalRemote": "Toto prostředí je spuštěné na vašem {0}místním{1} počítači, NE na připojeném vzdáleném počítači",
"localTerminalVirtualWorkspace": "Toto prostředí je otevřené pro {0}místní{1} složku, NE pro virtuální složku",
"terminalService.terminalCloseConfirmationPlural": "Chcete ukončit aktivní relace terminálu ({0})?",
"terminalService.terminalCloseConfirmationSingular": "Chcete ukončit aktivní relaci terminálu?",
- "terminate": "Ukončit"
+ "terminate": "&&Ukončit"
},
"vs/workbench/contrib/terminal/browser/terminalTabbedView": {
"hideTabs": "Skrýt karty",
"moveTabsLeft": "Přesunout karty doleva",
"moveTabsRight": "Přesunout karty doprava"
},
+ "vs/workbench/contrib/terminal/browser/terminalTabsChatEntry": {
+ "terminal.tabs.chatEntryAriaLabelPlural": "Zobrazit skryté terminály chatu (celkem {0})",
+ "terminal.tabs.chatEntryAriaLabelSingle": "Zobrazit 1 skrytý terminál chatu",
+ "terminal.tabs.chatEntryLabelPlural": "Skryté terminály: {0}",
+ "terminal.tabs.chatEntryLabelSingle": "{0} skrytý terminál",
+ "terminal.tabs.chatEntryTooltip": "Zobrazit skryté terminály chatu"
+ },
"vs/workbench/contrib/terminal/browser/terminalTabsList": {
+ "label": "Terminál",
"splitTerminalAriaLabel": "Terminál {0} {1}, rozdělení {2} z {3}",
"terminal.tabs": "Karty terminálu",
"terminalAriaLabel": "Terminál {0} {1}",
"terminalInputAriaLabel": "Zadejte název terminálu. (Potvrdíte stisknutím klávesy Enter. Zrušíte klávesou Esc.)"
},
"vs/workbench/contrib/terminal/browser/terminalTooltip": {
- "launchFailed.exitCodeOnlyShellIntegration": "Proces terminálu se nepovedlo spustit. Možná vám pomůže zakázání integrace prostředí pomocí terminal.integrated.shellIntegration.enabled.",
- "shellIntegration.activationFailed": "Integrace prostředí se nezdařila.",
- "shellIntegration.enabled": "Integrace prostředí aktivována"
+ "hideDetails": "Skrýt podrobnosti",
+ "shellIntegration": "Integrace do prostředí",
+ "shellIntegration.basic": "Základní",
+ "shellIntegration.injectionFailed": "Injektáž se nepovedlo aktivovat",
+ "shellIntegration.no": "Ne",
+ "shellIntegration.rich": "Rozšířená",
+ "shellProcessTooltip.commandLine": "Příkazový řádek: {0}",
+ "shellProcessTooltip.processId": "ID procesu ({0}): {1}",
+ "showDetails": "Zobrazit podrobnosti"
},
"vs/workbench/contrib/terminal/browser/terminalView": {
"terminal.monospaceOnly": "Terminál podporuje pouze neproporcionální písma. Pokud se jedná o nově nainstalované písmo, nezapomeňte VS Code restartovat.",
@@ -9138,41 +14649,48 @@
"terminals": "Otevřít terminály"
},
"vs/workbench/contrib/terminal/browser/xterm/decorationAddon": {
- "changeDefaultIcon": "Změnit výchozí ikonu",
- "changeErrorIcon": "Změnit ikonu chyby",
- "changeSuccessIcon": "Úspěšná změna ikony",
"gutter": "Dekorace příkazů mezery",
+ "no": "Ne",
"overviewRuler": "Dekorace příkazů přehledových pravítka",
- "terminal.configureCommandDecorations": "Konfigurovat dekorace příkazů",
+ "rerun": "Chcete spustit příkaz: {0}",
+ "terminal.attachToChat": "Připojit k chatu",
"terminal.copyCommand": "Příkaz Kopírovat",
+ "terminal.copyCommandAndOutput": "Kopírovat příkaz a výstup",
"terminal.copyOutput": "Kopírovat výstup",
"terminal.copyOutputAsHtml": "Zkopírujte výstup vybrané úlohy jako HTML",
"terminal.learnShellIntegration": "Další informace o integraci prostředí",
"terminal.rerunCommand": "Znovu spustit příkaz",
+ "toggleVisibility": "Přepnout viditelnost",
+ "workbench.action.terminal.goToRecentDirectory": "Přejít do posledního adresáře",
+ "workbench.action.terminal.runRecentCommand": "Spustit poslední příkaz",
+ "workbench.action.terminal.toggleVisibility": "Přepnout viditelnost",
+ "yes": "Ano"
+ },
+ "vs/workbench/contrib/terminal/browser/xterm/decorationStyles": {
+ "terminalCommandDecoration.running": "Spuštěno",
+ "terminalCommandDecoration.unknown": "Neznámé",
"terminalPromptCommandFailed": "Příkaz se spustil {0} a nezdařil se",
+ "terminalPromptCommandFailed.duration": "Proveden příkaz: {0}, doba trvání: {1}, selhal",
"terminalPromptCommandFailedWithExitCode": "Příkaz se spustil {0} a nezdařil se (Ukončovací kód {1})",
- "terminalPromptCommandSuccess": "Příkaz se spustil {0}",
- "terminalPromptContextMenu": "Zobrazit akce příkazů",
- "toggleVisibility": "Přepnout viditelnost"
+ "terminalPromptCommandFailedWithExitCode.duration": "Proveden příkaz: {0}, doba trvání: {1}, selhal (ukončovací kód {2})",
+ "terminalPromptCommandSuccess": "Byl proveden příkaz: {0}",
+ "terminalPromptCommandSuccess.": "Byl proveden příkaz: {0} ",
+ "terminalPromptCommandSuccess.duration": "Proveden příkaz: {0}, doba trvání: {1}",
+ "terminalPromptContextMenu": "Zobrazit akce příkazů"
},
"vs/workbench/contrib/terminal/browser/xterm/xtermTerminal": {
- "dontShowAgain": "Znovu nezobrazovat",
- "no": "Ne",
- "terminal.slowRendering": "Vypadá to, že urychlení terminálu pomocí GPU běží na vašem počítači pomalu. Chcete ji zakázat s tím, že by to mohlo zvýšit výkon? [Přečtěte si další informace o nastavení terminálu.](https://code.visualstudio.com/docs/editor/integrated-terminal#_changing-how-the-terminal-is-rendered)",
- "yes": "Ano"
+ "terminal.integrated.copySelection.noSelection": "Terminál neobsahuje žádný výběr, který by bylo možné kopírovat."
},
"vs/workbench/contrib/terminal/common/terminal": {
- "terminalCategory": "Terminál",
"vscode.extension.contributes.terminal": "Přidává funkci terminálu.",
+ "vscode.extension.contributes.terminal.completionProviders": "Definuje poskytovatele dokončení terminálu, kteří budou zaregistrováni při aktivaci rozšíření.",
+ "vscode.extension.contributes.terminal.completionProviders.description": "Popis toho, co dělá poskytovatel dokončení. Zobrazí se v uživatelském rozhraní nastavení.",
"vscode.extension.contributes.terminal.profiles": "Definuje další profily terminálů, které uživatel může vytvořit.",
"vscode.extension.contributes.terminal.profiles.id": "ID poskytovatele profilu terminálu",
"vscode.extension.contributes.terminal.profiles.title": "Název pro tento profil terminálu",
- "vscode.extension.contributes.terminal.types": "Definuje další typy terminálů, které uživatel může vytvořit.",
- "vscode.extension.contributes.terminal.types.command": "Příkaz, který má být proveden, když uživatel vytvoří tento typ terminálu",
"vscode.extension.contributes.terminal.types.icon": "Kodikon, identifikátor URI nebo světlé a tmavé identifikátory URI, které se mají přidružit k tomuto typu terminálu.",
"vscode.extension.contributes.terminal.types.icon.dark": "Cesta k ikoně při použití tmavého motivu",
- "vscode.extension.contributes.terminal.types.icon.light": "Cesta k ikoně při použití světlého motivu",
- "vscode.extension.contributes.terminal.types.title": "Název pro tento typ terminálu"
+ "vscode.extension.contributes.terminal.types.icon.light": "Cesta k ikoně při použití světlého motivu"
},
"vs/workbench/contrib/terminal/common/terminalColorRegistry": {
"terminal.ansiColor": "Barva ANSI {0} v terminálu",
@@ -9184,6 +14702,8 @@
"terminal.findMatchHighlightBackground": "Barva dalších shod hledání v terminálu. Barva nesmí být neprůhledná, aby se neskryl podkladový obsah terminálu.",
"terminal.findMatchHighlightBorder": "Barva ohraničení ostatních shod při vyhledávání v terminálu.",
"terminal.foreground": "Barva popředí terminálu",
+ "terminal.hoverHighlightBackground": "Zvýraznění pod slovem, pro které se zobrazují informace po umístění ukazatele myši. Barva nesmí být neprůhledná, aby se nepřekryly dekorace pod tím.",
+ "terminal.inactiveSelectionBackground": "Barva pozadí výběru terminálu, pokud nemá fokus.",
"terminal.selectionBackground": "Barva pozadí výběru terminálu",
"terminal.selectionForeground": "Barva popředí výběru terminálu. Pokud je tato hodnota null, popředí výběru se zachová a použije se funkce minimálního kontrastu.",
"terminal.tab.activeBorder": "Ohraničení na boční straně karty terminálu v panelu. Toto je výchozí nastavení pro tab.activeBorder.",
@@ -9192,40 +14712,52 @@
"terminalCommandDecoration.successBackground": "Barva pozadí dekorace příkazu terminálu pro úspěšné příkazy.",
"terminalCursor.background": "Barva pozadí kurzoru terminálu. Umožňuje přizpůsobit barvu znaku, který je překrýván kurzorem bloku.",
"terminalCursor.foreground": "Barva popředí kurzoru terminálu",
+ "terminalInitialHintForeground": "Barva popředí počáteční nápovědy terminálu",
+ "terminalOverviewRuler.border": "Barva ohraničení na levé straně přehledového pravítka",
"terminalOverviewRuler.cursorForeground": "Barva kurzoru přehledového pravítka.",
"terminalOverviewRuler.findMatchHighlightForeground": "Barva značky přehledového pravítka pro vyhledání shod v terminálu."
},
"vs/workbench/contrib/terminal/common/terminalConfiguration": {
- "cwd": "aktuální pracovní adresář terminálu",
+ "cwd": "aktuální pracovní adresář terminálu.",
"cwdFolder": "aktuální pracovní adresář terminálu zobrazený pro vícekořenové pracovní prostory nebo v jednokořenovém pracovním prostoru, pokud se hodnota liší od počátečního pracovního adresáře. Ve Windows se tato možnost zobrazí jen v případě, že je povolená integrace prostředí.",
- "local": "označuje místní terminál ve vzdáleném pracovním prostoru",
+ "enableFileLinks.notRemote": "Povolte pouze v případě, že není ve vzdáleném pracovním prostoru.",
+ "enableFileLinks.off": "Vždy vypnuté.",
+ "enableFileLinks.on": "Vždy zapnuté.",
+ "hideOnStartup.always": "Terminál vždy skryjte, i když se obnoví trvalé relace.",
+ "hideOnStartup.never": "Při spuštění nikdy neskrývejte zobrazení terminálu.",
+ "hideOnStartup.whenEmpty": "Terminál skryjte pouze v případě, že nejsou obnoveny žádné trvalé relace.",
+ "local": "označuje místní terminál ve vzdáleném pracovním prostoru.",
"openDefaultSettingsJson": "otevřete JSON výchozího nastavení",
"openDefaultSettingsJson.capitalized": "Otevřít výchozí nastavení (JSON)",
- "process": "název procesu terminálu",
- "separator": "podmíněný oddělovač („ - “), který se zobrazí pouze v případě uzavření do proměnných s hodnotami nebo statickým textem.",
- "sequence": "název zadaný pro proces terminálu",
- "task": "indikuje, že tento terminál je přidružený k úloze",
+ "process": "název procesu terminálu.",
+ "progress": "stav průběhu nahlášený sekvencí OSC 9;4.",
+ "separator": "podmíněný oddělovač {0}, který se zobrazí pouze v případě uzavření do proměnných s hodnotami nebo statickým textem.",
+ "sequence": "název zadaný pro proces terminálu.",
+ "shellCommand": "příkaz, který se provádí podle integrace prostředí. To také vyžaduje vysokou spolehlivost zjištěného příkazového řádku, který nemusí v některých rozhraních příkazového řádku fungovat.",
+ "shellPromptInput": "úplné zadání výzvy prostředí podle integrace prostředí.",
+ "shellType": "zjištěný typ prostředí.",
+ "task": "indikuje, že tento terminál je přidružený k úloze.",
"terminal.integrated.allowChords": "Určuje, jestli se mají na terminálu povolit posloupnosti kláves (klávesové akordy). Poznámka: Pokud je tato vlastnost nastavena na hodnotu true a výsledkem stisknutí klávesových zkratek je klávesový akord, nepoužije se nastavení {0}. Nastavení této vlastnosti na hodnotu false je užitečné, zejména když chcete pomocí kombinace kláves ctrl+k přejít do prostředí (neplatí pro VS Code).",
- "terminal.integrated.allowMnemonics": "Určuje, jestli se má povolit otevření řádku nabídek stisknutím klávesových zkratek řádku nabídek (například alt+f). Poznámka: V případě hodnoty true to způsobí, že všechny klávesové zkratky s klávesou alt přeskočí prostředí. Neplatí to pro macOS.",
+ "terminal.integrated.allowMnemonics": "Určuje, jestli se má povolit otevření řádku nabídek stisknutím klávesových zkratek řádku nabídek (například ALT+F). Poznámka: V případě hodnoty true to způsobí, že všechny klávesové zkratky s klávesou alt přeskočí prostředí. Neplatí to pro macOS.",
+ "terminal.integrated.allowedLinkSchemes": "Pole řetězců obsahující schémata identifikátorů URI, pro která může terminál otevírat odkazy Ve výchozím nastavení je z bezpečnostních důvodů povolena pouze malá podmnožina možných schémat.",
"terminal.integrated.altClickMovesCursor": "Když se tato možnost povolí a hodnota {0} je nastavená na {1} (výchozí hodnotu), Alt nebo Option + kliknutí přesune kurzor výzvy na pozici pod myší. Nemusí to fungovat spolehlivě, záleží na vašem prostředí.",
- "terminal.integrated.autoReplies": "Sada zpráv, na které bude automaticky odpovězeno, pokud se vyskytnou v terminálu. V případě, že bude zpráva dostatečně konkrétní, to pomůže to s automatizací běžných odpovědí.\r\n\r\nPoznámky:\r\n\r\n– Pomocí {0} můžete automaticky odpovědět na výzvu k ukončení dávkových úloh v systému Windows.\r\n– Zpráva zahrnuje řídící sekvence, takže k odpovědí nemusí dojít se stylizovaným textem.\r\n– Ke každé odpovědi může dojít jenom jednou za sekundu.\r\n– Použijte v odpovědi {1}, abyste tím naznačili klávesu Enter.\r\n– Pokud chcete zrušit nastavení výchozího klíče, nastavte hodnotu na null.\r\n– Restartujte VS pokud neplatí nové.",
- "terminal.integrated.autoReplies.reply": "Odpověď, která se má odeslat do procesu.",
"terminal.integrated.bellDuration": "Počet milisekund pro zobrazení zvonku na kartě terminálu, když se aktivuje.",
"terminal.integrated.commandsToSkipShell": "Sada ID příkazů, jejichž klávesové zkratky nebudou odeslány do prostředí, ale místo toho je bude vždy zpracovávat VS Code. To umožňuje používat klávesové zkratky, které by normálně byly zachyceny prostředím, jako kdyby terminál neměl fokus, například Ctrl+P pro spuštění rychlého otevření.\r\n\r\n \r\n\r\nVe výchozím nastavení je mnoho příkazů přeskakováno. Pokud chcete výchozí nastavení přepsat a místo toho předat prostředí klávesovou zkratku daného příkazu, přidejte příkaz s předponou „-“. Například přidáním příkazu -workbench.action.quickOpen umožníte předání klávesové zkratky Ctrl+P do prostředí.\r\n\r\n \r\n\r\nNásledující seznam výchozích přeskakovaných příkazů je při zobrazení v editoru nastavení zkrácen. Pokud chcete zobrazit úplný seznam, {1} a vyhledejte první příkaz z níže uvedeného seznamu.\r\n\r\n \r\n\r\nVýchozí přeskakované příkazy:\r\n\r\n{0}",
- "terminal.integrated.confirmOnExit": "Určuje, zda potvrdit, když se okno zavře, pokud existují aktivní relace terminálu.",
+ "terminal.integrated.confirmOnExit": "Určuje, jestli se má potvrdit, kdy se okno zavře, pokud existují aktivní relace terminálu. Potvrzení se nespustí u terminálů na pozadí, jako jsou terminály spuštěné některými rozšířeními.",
"terminal.integrated.confirmOnExit.always": "Vždy ověřte, zda jsou k dispozici terminály.",
"terminal.integrated.confirmOnExit.hasChildProcesses": "Ověřte, jestli existují terminály, které mají podřízené procesy.",
"terminal.integrated.confirmOnExit.never": "Nikdy nepotvrzovat.",
- "terminal.integrated.confirmOnKill": "Určuje, jestli se má potvrzovat ukončení terminálů, když mají podřízené procesy. Pokud se tato možnost nastaví na editor, budou terminály s podřízenými procesy v oblasti editoru označeny jako změněné. Poznámka: Detekce podřízených procesů nemusí správně fungovat pro prostředí jako Git Bash, která nespouštějí své procesy jako podřízené procesy prostředí.",
+ "terminal.integrated.confirmOnKill": "Určuje, jestli se má potvrzovat ukončení terminálů, když mají podřízené procesy. Pokud se tato možnost nastaví na editor, budou terminály s podřízenými procesy v oblasti editoru označeny jako změněné. Poznámka: Detekce podřízených procesů nemusí správně fungovat pro prostředí jako Git Bash, která nespouštějí své procesy jako podřízené procesy prostředí. Terminály na pozadí, jako jsou terminály spuštěné některými rozšířeními, neaktivují potvrzení.",
"terminal.integrated.confirmOnKill.always": "Ověřte, zda je terminál v editoru nebo v panelu.",
"terminal.integrated.confirmOnKill.editor": "Potvrďte, zda je terminál v editoru.",
"terminal.integrated.confirmOnKill.never": "Nikdy nepotvrzovat.",
"terminal.integrated.confirmOnKill.panel": "Potvrďte, zda je terminál v panelu.",
"terminal.integrated.copyOnSelection": "Určuje, jestli bude text vybraný v terminálu zkopírován do schránky.",
"terminal.integrated.cursorBlinking": "Určuje, jestli bude blikat kurzor terminálu.",
- "terminal.integrated.cursorStyle": "Určuje styl kurzoru terminálu.",
+ "terminal.integrated.cursorStyle": "Řídí styl kurzoru terminálu, když je terminál zaměřen.",
+ "terminal.integrated.cursorStyleInactive": "Řídí styl kurzoru terminálu, když není terminál zaměřen.",
"terminal.integrated.cursorWidth": "Určuje šířku kurzoru v případě, že má nastavení {0} hodnotu {1}.",
- "terminal.integrated.customGlyphs": "Ať už chcete místo použití písma kreslit vlastní glyfy pro prvky bloku a kresby rámečku, což obvykle vede k lepšímu vykreslování se souvislými čarami. Mějte na vědomí, že to nefunguje s rendererem DOM.",
+ "terminal.integrated.customGlyphs": "Určuje, jestli se místo použití písma mají nakreslit vlastní piktogramy pro blokový element a znaky kreslení polí, což ve výsledku obvykle dává lepší vykreslování s průběžnými čarami. Upozorňujeme, že to nefunguje, pokud je {0} zakázané.",
"terminal.integrated.cwd": "Explicitní spouštěcí cesta, kde bude spuštěn terminál, který bude použit jako aktuální pracovní adresář (cwd) procesu prostředí. To může být užitečné zejména v nastavení pracovního prostoru, pokud kořenový adresář není užitečný jako aktuální pracovní adresář.",
"terminal.integrated.defaultLocation": "Určuje, kde se zobrazí nově vytvořené terminály.",
"terminal.integrated.defaultLocation.editor": "Vytvořit terminály v editoru",
@@ -9234,76 +14766,87 @@
"terminal.integrated.detectLocale.auto": "Pokud existující proměnná neexistuje nebo nekončí na .UTF-8, nastavte proměnnou prostředí $LANG.",
"terminal.integrated.detectLocale.off": "Nenastavovat proměnnou prostředí $LANG",
"terminal.integrated.detectLocale.on": "Vždy nastavit proměnnou prostředí $LANG",
+ "terminal.integrated.developer.devMode": "Povolte pro terminál režim vývojáře. Zobrazí se další ladicí informace a vizualizace pro sekvence integrace prostředí.",
+ "terminal.integrated.developer.ptyHost.latency": "Simulovaná latence v milisekundách aplikovaná na všechna volání prováděná na hostiteli pty. To je užitečné při testování chování terminálu za podmínek s vysokou latencí.",
+ "terminal.integrated.developer.ptyHost.startupDelay": "Simulované zpoždění spuštění v milisekundách pro hostitelský proces pty. To je užitečné při testování inicializace terminálu za pomalých podmínek spouštění.",
"terminal.integrated.drawBoldTextInBrightColors": "Určuje, jestli se bude pro tučný text v terminálu vždy používat varianta „bright“ barvy ANSI.",
- "terminal.integrated.enableBell": "Určuje, jestli má být povolen zvonek terminálu, zobrazuje se v podobě vizuálního zvonku vedle názvu terminálu.",
- "terminal.integrated.enableFileLinks": "Určuje, jestli se mají povolit odkazy na soubory v terminálu. Odkazy mohou být pomalé, zejména pokud jsou spuštěny na síťové jednotce, protože každý odkaz na soubor je ověřen v systému souborů. Změna tohoto nastavení bude platit pouze pro nové terminály.",
- "terminal.integrated.enableMultiLinePasteWarning": "Umožňuje zobrazit dialogové okno s upozorněním při vkládání více řádků do terminálu. Dialogové okno se nezobrazuje, pokud je povolen režim\r\n\r\n– Vkládání v závorkách (prostředí nativně podporuje víceřádkové vkládání)\r\n– Vložení je zpracováno příkazem readline prostředí (v případě pwsh).",
+ "terminal.integrated.enableBell": "Toto je teď zastaralé. Místo toho použijte nastavení terminal.integrated.enableVisualBell a accessibility.signals.terminalBell.",
+ "terminal.integrated.enableFileLinks": "Určuje, jestli se mají povolit odkazy na soubory v terminálech. Odkazy mohou být pomalé, zejména pokud jsou spuštěny na síťové jednotce, protože každý odkaz na soubor se ověřuje v systému souborů. Změna tohoto nastavení bude platit pouze pro nové terminály.",
+ "terminal.integrated.enableImages": "Povolí podporu obrázků v terminálu. Bude fungovat jen v případě, že je povolená {0}. Linux a macOS podporují jak protokol vložené image sixel, tak iTerm. Tato funkce bude ve Windows fungovat jenom pro verze ConPTY >= v2, které se dodává spolu se systémem Windows samotné. Viz také {1}. Mezi opětovným načtením nebo opětovným připojením oken se obrázky v tuto chvíli neobnoví.",
+ "terminal.integrated.enableMultiLinePasteWarning": "Určuje, jestli se zobrazí dialog upozornění při vkládání více řádků do terminálu.",
+ "terminal.integrated.enableMultiLinePasteWarning.always": "Pokud text obsahuje nový řádek, vždy zobrazovat upozornění.",
+ "terminal.integrated.enableMultiLinePasteWarning.auto": "Povolit upozornění, ale nezobrazovat, pokud:\r\n\r\n– Vkládání v závorkách (prostředí nativně podporuje víceřádkové vkládání)\r\n– Vložení je zpracováno příkazem readline prostředí (v případě pwsh).",
+ "terminal.integrated.enableMultiLinePasteWarning.never": "Upozornění se nikdy nezobrazí.",
"terminal.integrated.enablePersistentSessions": "Zachovat relace nebo historii terminálu pro pracovní prostor mezi načteními oken.",
+ "terminal.integrated.enableVisualBell": "Určuje, jestli má být povolen vizuální zvonek terminálu. Zobrazuje se vedle názvu terminálu.",
"terminal.integrated.env.linux": "Objekt s proměnnými prostředí, které se přidají do procesu VS Code, který bude používat terminál v systému Linux. Pokud chcete proměnnou prostředí odstranit, nastavte hodnotu null.",
"terminal.integrated.env.osx": "Objekt s proměnnými prostředí, které se přidají do procesu VS Code používaného terminálem v systému macOS. Pokud chcete proměnnou prostředí odstranit, nastavte hodnotu null.",
"terminal.integrated.env.windows": "Objekt s proměnnými prostředí, které se přidají do procesu VS Code používaného terminálem v systému Windows. Pokud chcete proměnnou prostředí odstranit, nastavte hodnotu null.",
- "terminal.integrated.environmentChangesIndicator": "Určuje, jestli se má na každém terminálu zobrazit indikátor změn prostředí, který vysvětluje, jestli daná rozšíření provedla (nebo chtějí provést) změny v prostředí terminálu.",
- "terminal.integrated.environmentChangesIndicator.off": "Zakázat indikátor",
- "terminal.integrated.environmentChangesIndicator.on": "Povolit indikátor",
- "terminal.integrated.environmentChangesIndicator.warnonly": "V případě, že je prostředí terminálu zastaralé (stale), zobrazovat pouze indikátor upozornění, nikoli informační indikátor, který indikuje, že rozšíření změnilo prostředí terminálu.",
"terminal.integrated.environmentChangesRelaunch": "Určuje, jestli se mají terminály automaticky spustit znovu, pokud má rozšíření přispívat do jejich prostředí, ale zatím se s ním nepracovalo.",
"terminal.integrated.fastScrollSensitivity": "Multiplikátor rychlosti posouvání při podržené klávese Alt",
+ "terminal.integrated.focusAfterRun": "Řídí, zda bude zaměřen terminál, dostupná vyrovnávací paměť nebo ani jedno z toho po \"Terminálu: Bylo spuštěno Spustit vybraný text v aktivním terminálu.",
+ "terminal.integrated.focusAfterRun.accessible-buffer": "Vždy zaměřte přístupnou vyrovnávací paměť.",
+ "terminal.integrated.focusAfterRun.none": "Neprovádět žádnou akci.",
+ "terminal.integrated.focusAfterRun.terminal": "Vždy zaměřte na terminál.",
"terminal.integrated.fontFamily": "Určuje rodinu písem terminálu. Ve výchozím nastavení se použije hodnota nastavení {0}.",
+ "terminal.integrated.fontLigatures.enabled": "Určuje, jestli jsou v terminálu povolené ligatury písem. Ligatury budou fungovat jenom v případě, že je nakonfigurovaný {0} podporuje.",
+ "terminal.integrated.fontLigatures.fallbackLigatures": "Pokud je povolena {0} a konkrétní {1} nelze analyzovat, jedná se o sadu posloupností znaků, které budou vždy vykreslovány společně. Tato možnost umožňuje použití pevné sady ligatur i v případě, že písmo není podporováno.",
+ "terminal.integrated.fontLigatures.featureSettings": "Určuje, jaká nastavení funkcí písma se použijí, když jsou ve formátu vlastnosti CSS font-feature-settings povolené ligatury. Některé příklady, které mohou být platné v závislosti na písmu:",
"terminal.integrated.fontSize": "Určuje velikost písma v pixelech terminálu.",
"terminal.integrated.fontWeight": "Tloušťka písma, která se má v terminálu používat pro netučný text. Přijímá klíčová slova normal a bold nebo čísla v rozmezí 1 až 1000.",
"terminal.integrated.fontWeightBold": "Tloušťka písma, která se má v terminálu používat pro tučný text. Přijímá klíčová slova normal a bold nebo čísla v rozmezí 1 až 1000.",
"terminal.integrated.fontWeightError": "Jsou povolená jen klíčová slova normal a bold nebo čísla v rozmezí 1 až 1000.",
"terminal.integrated.gpuAcceleration": "Určuje, jestli bude terminál k vykreslování používat GPU.",
"terminal.integrated.gpuAcceleration.auto": "Nechat VS Code zjistit, který renderer nabídne nejlepší prostředí",
- "terminal.integrated.gpuAcceleration.canvas": "Použijte nouzový renderer plátna terminálu, který používá 2d kontext místo webgl, což může být na některých systémech výkonnější. Všimněte si, že některé funkce jsou v rendereru plátna omezené, například neprůhledný výběr.",
"terminal.integrated.gpuAcceleration.off": "Zakažte akceleraci GPU v terminálu. Když je akcelerace GPU vypnutá, terminál se vykreslí mnohem pomaleji, ale měl by spolehlivě fungovat ve všech systémech.",
"terminal.integrated.gpuAcceleration.on": "Povolit urychlení pomocí GPU v terminálu",
+ "terminal.integrated.hideOnLastClosed": "Určuje, jestli se má při zavření posledního terminálu skrýt zobrazení terminálu. K tomu dojde pouze v případě, že terminál je jediným viditelným zobrazením v kontejneru zobrazení.",
+ "terminal.integrated.hideOnStartup": "Zda se má při spuštění skrýt zobrazení terminálu, aby se zabránilo vytvoření terminálu, když neexistují žádné trvalé relace.",
+ "terminal.integrated.ignoreBracketedPasteMode": "Řídí, jestli terminál bude ignorovat režim vkládání v závorkách i v případě, že byl terminál uveden do tohoto režimu, a při vkládání vynechá {0} a sekvence {1}. To je užitečné, když prostředí nerespektuje režim, ke kterému může dojít například v dílčích prostředích.",
"terminal.integrated.letterSpacing": "Určuje mezery mezi písmeny na terminálu. Je to celočíselná hodnota představující množství dalších pixelů, které se mají přidat mezi znaky.",
"terminal.integrated.lineHeight": "Určuje výšku řádku terminálu. Toto číslo se vynásobí velikostí písma terminálu a tím se získá skutečná výška řádku v pixelech.",
- "terminal.integrated.localEchoEnabled": "Když by měla být povolená místní ozvěna. Tím se přepíše {0}.",
- "terminal.integrated.localEchoEnabled.auto": "Povolená pouze pro vzdálené pracovní prostory",
- "terminal.integrated.localEchoEnabled.off": "Vždy zakázaná",
- "terminal.integrated.localEchoEnabled.on": "Vždy povolená",
- "terminal.integrated.localEchoExcludePrograms": "Místní odezva bude zakázaná při nalezení některého z těchto názvů programů v názvu terminálu.",
- "terminal.integrated.localEchoLatencyThreshold": "Doba prodlevy sítě v milisekundách, kdy se místní úpravy budou vypisovat na terminálu, aniž by se čekalo na potvrzení serveru. Když se nastaví na 0, místní výpis bude vždy zapnutý. Hodnota -1 ho zakáže.",
- "terminal.integrated.localEchoStyle": "Styl místně vypisovaného textu na terminálu, tedy buď styl písma, nebo barva RGB.",
"terminal.integrated.macOptionClickForcesSelection": "Určuje, jestli se má při kliknutí s podrženou klávesou Option v systému macOS vynucovat výběr. Vynutí se tím běžný (řádkový) výběr a zakáže se použití režimu sloupcového výběru. To umožňuje kopírování a vkládání pomocí běžného výběru terminálu, například pokud je v tmux povolen režim myši.",
"terminal.integrated.macOptionIsMeta": "Určuje, jestli se má klávesa Option na terminálu v systému macOS považovat za meta klávesu.",
+ "terminal.integrated.middleClickBehavior": "Určuje, jak terminál reaguje na kliknutí prostředním tlačítkem myši.",
+ "terminal.integrated.middleClickBehavior.default": "Výchozí nastavení platformy, kam se má přesunout fokus terminálu V Linuxu vloží i výběr.",
+ "terminal.integrated.middleClickBehavior.paste": "Vložit při kliknutí prostředním tlačítkem myši",
"terminal.integrated.minimumContrastRatio": "Pokud je nastaveno, barva popředí každé buňky se změní, aby se dosáhlo zadaného kontrastního poměru. Tímto se nepoužijí znaky powerline podle #146406. Příklady hodnot:\r\n\r\n- 1: Nic neprovádějte a použijte standardní barevný motiv.\r\n- 4.5: [Soulad s WCAG AA (minimálně)](https://www.w3.org/TR/UNDERSTANDING-WCAG20/visual-audio-contrast-contrast.html) (výchozí).\r\n- 7: [Soulad s WCAG AAA (rozšířené)](https://www.w3.org/TR/UNDERSTANDING-WCAG20/visual-audio-contrast7.html).\r\n- 21: Bílá na černé nebo černá na bílé.",
"terminal.integrated.mouseWheelScrollSensitivity": "Multiplikátor, který se má použít pro hodnotu deltaY událostí posouvání kolečka myši",
- "terminal.integrated.persistentSessionReviveProcess": "Když je nutné ukončit proces terminálu (např. při zavření okna nebo aplikace) toto určuje, kdy se má obnovit obsah nebo historie předchozí relace terminálu a kdy se mají znovu vytvořit procesy při dalším otevření pracovního prostoru.\r\n\r\nUpozornění:\r\n\r\n– Obnovení procesu, na kterém závisí aktuální pracovní adresář, nezávisle na tom, jestli ho podporuje prostředí.\r\n– Doba uchování relace během vypínání je omezená, takže může být přerušena při použití vzdálených připojení s vysokou latencí.",
+ "terminal.integrated.persistentSessionReviveProcess": "Když je nutné ukončit proces terminálu (například při zavření okna nebo aplikace), toto určuje se, kdy se má obnovit předchozí obsah/historie relace terminálu a kdy se při dalším otevření pracovního prostoru znovu vytvoří procesy.\r\n\r\n Upozornění:\r\n\r\n- Obnovení aktuálního pracovního adresáře procesu závisí na tom, jestli ho prostředí podporuje.\r\n - Doba uchování relace během vypínání je omezená, takže může být přerušena při použití vzdálených připojení s vysokou latencí.",
"terminal.integrated.persistentSessionReviveProcess.never": "Nikdy neobnovovat vyrovnávací paměti terminálu ani znovu nevytvářet proces.",
"terminal.integrated.persistentSessionReviveProcess.onExit": "Obnovte procesy po zavření posledního okna v systému Windows/Linux nebo po spuštění příkazu „workbench.action.quit“ (paleta příkazů, klávesová zkratka, nabídka).",
"terminal.integrated.persistentSessionReviveProcess.onExitAndWindowClose": "Obnovte procesy po zavření posledního okna v systému Windows/Linux nebo po spuštění příkazu „workbench.action.quit“ (paleta příkazů, klávesová zkratka, nabídka) nebo po zavření okna.",
+ "terminal.integrated.rescaleOverlappingGlyphs": "Určuje, jestli se má změnit vodorovné měřítko piktogramů, které mají šířku jedné buňky, ale překrývaly by následující buňky. Obvykle se to stává u znaků nejednoznačné šířky (např. znaky římských číslic U+2160+), které nejsou v neproporcionálním písmu. U piktogramů emoji se nikdy nemění měřítko.",
"terminal.integrated.rightClickBehavior": "Určuje, jak terminál reaguje na kliknutí pravým tlačítkem.",
"terminal.integrated.rightClickBehavior.copyPaste": "Kopírovat, pokud je něco vybráno, jinak vložit",
"terminal.integrated.rightClickBehavior.default": "Zobrazit místní nabídku",
"terminal.integrated.rightClickBehavior.nothing": "Neproběhnou žádné akce a předávají událost do terminálu.",
"terminal.integrated.rightClickBehavior.paste": "Vložit po kliknutí pravým tlačítkem",
"terminal.integrated.rightClickBehavior.selectWord": "Vybrat slovo pod kurzorem a zobrazit místní nabídku",
- "terminal.integrated.scrollback": "Určuje maximální počet řádků, které terminál udržuje ve vyrovnávací paměti.",
+ "terminal.integrated.scrollback": "Určuje maximální počet řádků, které terminál uchovává ve vyrovnávací paměti. Na základě této hodnoty předem přidělujeme paměť, abychom zajistili bezproblémové prostředí. S tím, jak se hodnota zvyšuje, se zvýší také množství paměti.",
"terminal.integrated.sendKeybindingsToShell": "Odešle většinu klávesových zkratek do terminálu namísto do služby Workbench, čímž se přepíše {0}, které se dá alternativně použít k přesné optimalizaci.",
- "terminal.integrated.shellIntegration.decorationIcon": "Určuje ikonu, která se použije u přeskočených nebo prázdných příkazů. Nastavte hodnotu na {0}, pokud chcete ikonu skrýt nebo zakázat dekorace s {1}.",
- "terminal.integrated.shellIntegration.decorationIconError": "Určuje ikonu, která se použije u jednotlivých příkazů v terminálech s povolenou integrací prostředí, které mají přidružený ukončovací kód. Pokud chcete skrýt ikonu, nastavte hodnotu na {0} nebo zakázat dekorace s {1}.",
- "terminal.integrated.shellIntegration.decorationIconSuccess": "Určuje ikonu, která se použije u jednotlivých příkazů v terminálech s povolenou integrací prostředí, které nemají přidružený ukončovací kód. Pokud chcete skrýt ikonu, nastavte hodnotu na {0} nebo zakázat dekorace s {1}.",
"terminal.integrated.shellIntegration.decorationsEnabled": "Když je povolená integrace prostředí, přidá dekorace pro každý příkaz.",
"terminal.integrated.shellIntegration.decorationsEnabled.both": "Zobrazovat dekorace u mezery (vlevo) a přehledového pravítka (vpravo)",
"terminal.integrated.shellIntegration.decorationsEnabled.gutter": "Zobrazit dekorace mezery nalevo od terminálu",
"terminal.integrated.shellIntegration.decorationsEnabled.never": "Nezobrazovat dekorace",
"terminal.integrated.shellIntegration.decorationsEnabled.overviewRuler": "Zobrazit dekorace přehledového pravítka napravo od terminálu",
- "terminal.integrated.shellIntegration.enabled": "Určuje, jestli se integrace prostředí automaticky vloží, aby podporovala funkce, jako je rozšířené sledování příkazů a detekce aktuálního pracovního adresáře. \r\n\r\nIntegrace prostředí funguje vložením prostředí do spouštěcího skriptu. Skript poskytuje nástroji VS Code přehled o tom, co se děje v terminálu.\r\n\r\nPodporovaná prostředí:\r\n\r\n– Linux/macOS: bash, pwsh, zsh\r\n – Windows: pwsh\r\n\r\nToto nastavení se používá pouze při vytváření terminálů, takže budete muset restartovat terminály, aby se projevilo.\r\n\r\nUpozorňujeme, že vkládání skriptu nemusí fungovat, pokud máte v profilu terminálu definované vlastní argumenty, [příkaz pro komplexní bash PROMPT_COMMAND](https://code.visualstudio.com/docs/editor/integrated-terminal#_complex-bash-promptcommand) nebo jiné nepodporované nastavení. Pokud chcete dekorace zakázat, přečtěte si článek {0}.",
- "terminal.integrated.shellIntegration.history": "Určuje počet naposledy použitých příkazů, které se mají zachovat v historii příkazů terminálu. Pokud chcete zakázat historii příkazů terminálu, nastavte hodnotu na 0.",
+ "terminal.integrated.shellIntegration.enabled": "Určuje, jestli se integrace prostředí automaticky vloží, aby podporovala funkce, jako je rozšířené sledování příkazů a detekce aktuálního pracovního adresáře. \r\n\r\nIntegrace prostředí funguje vložením prostředí do spouštěcího skriptu. Skript poskytuje nástroji VS Code přehled o tom, co se děje v terminálu.\r\n\r\nPodporovaná prostředí:\r\n\r\n– Linux/macOS: bash, fish, pwsh, zsh\r\n – Windows: pwsh, git bash\r\n\r\nToto nastavení se používá pouze při vytváření terminálů, takže budete muset restartovat terminály, aby se projevilo.\r\n\r\n Upozorňujeme, že vkládání skriptu nemusí fungovat, pokud máte v profilu terminálu definované vlastní argumenty, povolili jste {1}, máte [příkaz pro komplexní bash PROMPT_COMMAND](https://code.visualstudio.com/docs/editor/integrated-terminal#_complex-bash-promptcommand) nebo jiné nepodporované nastavení. Pokud chcete dekorace zakázat, přečtěte si {0}.",
+ "terminal.integrated.shellIntegration.environmentReporting": "Určuje, jestli se má nahlásit prostředí prostředí a povolit jeho použití ve funkcích, jako je {0}. To může způsobit zpomalení při tisku výzvy prostředí.",
+ "terminal.integrated.shellIntegration.quickFixEnabled": "Když je povolena integrace prostředí, povolí rychlé opravy příkazů terminálu, které se zobrazují jako ikona žárovky nebo jiskry vlevo od výzvy.",
+ "terminal.integrated.shellIntegration.timeout": "Nakonfiguruje dobu trvání v milisekundách, po kterou se má čekat na integraci prostředí po spuštění, než se deklaruje, že tam není. Při nastavení na {0} bude doba čekání minimální (500 ms). Výchozí hodnota {1} znamená, že doba čekání je proměnná na základě toho, jestli je povoleno vkládání integrace prostředí a jestli se jedná o vzdálené okno. Zvažte nastavení na nízkou hodnotu, pokud jste integraci prostředí záměrně zakázali, nebo na vysokou hodnotu, pokud se prostředí spouští velmi pomalu.",
"terminal.integrated.showExitAlert": "Určuje, jestli se má v případě nenulového ukončovacího kódu zobrazit upozornění, že proces terminálu byl ukončen s ukončovacím kódem.",
+ "terminal.integrated.smoothScrolling": "Určuje, jestli se má pro posouvání v terminálu používat animace.",
"terminal.integrated.splitCwd": "Určuje pracovní adresář, se kterým začíná rozdělený terminál.",
"terminal.integrated.splitCwd.inherited": "V systémech macOS a Linux bude nový rozdělený terminál používat pracovní adresář nadřazeného terminálu. V systému Windows bude chování stejné jako původní chování.",
"terminal.integrated.splitCwd.initial": "Nový rozdělený terminál bude používat pracovní adresář, se kterým byl spuštěn nadřazený terminál.",
"terminal.integrated.splitCwd.workspaceRoot": "Nový rozdělený terminál bude jako pracovní adresář používat kořenový adresář pracovního prostoru. V pracovním prostoru s více kořenovými adresáři se zobrazí výzva k výběru kořenové složky, která se má použít.",
+ "terminal.integrated.tabStopWidth": "Počet buněk na zarážku tabulátoru.",
"terminal.integrated.tabs.defaultColor": "ID barvy motivu, které se má ve výchozím nastavení přidružit k ikoně terminálu.",
"terminal.integrated.tabs.defaultIcon": "ID ikony codicon, které se má ve výchozím nastavení přidružit k ikoně terminálu.",
"terminal.integrated.tabs.enableAnimation": "Určuje, zda stavy na kartě terminálu podporují animaci (např. probíhající úlohy).",
"terminal.integrated.tabs.enabled": "Určuje, zda jsou karty terminálu zobrazeny na boku terminálu jako seznam. Pokud je toto zakázáno, zobrazí se v rozevíracím seznamu.",
"terminal.integrated.tabs.focusMode": "Určuje, zda se má terminál karty zaměřit po dvojitém nebo jednom kliknutí.",
- "terminal.integrated.tabs.focusMode.doubleClick": "Na terminál se zaměříte, když dvakrát kliknete na kartu terminálu",
+ "terminal.integrated.tabs.focusMode.doubleClick": "Při poklikání na kartu terminálu se zaměřit na terminál",
"terminal.integrated.tabs.focusMode.singleClick": "Na terminál se zaměříte, když kliknete na kartu terminálu",
"terminal.integrated.tabs.hideCondition": "Určuje, zda se má za určitých podmínek skrýt zobrazení karet terminálu.",
"terminal.integrated.tabs.hideCondition.never": "Nikdy neskrývat zobrazení karet terminálů",
@@ -9312,40 +14855,46 @@
"terminal.integrated.tabs.location": "Určuje umístění karet terminálů buď vlevo, nebo napravo od skutečných terminálů.",
"terminal.integrated.tabs.location.left": "Zobrazit karty terminálu nalevo od terminálu.",
"terminal.integrated.tabs.location.right": "Zobrazit karty terminálu napravo od terminálu.",
- "terminal.integrated.tabs.separator": "Oddělovač používaný {0} a {0}",
+ "terminal.integrated.tabs.separator": "Oddělovač používaný {0} a {1}.",
"terminal.integrated.tabs.showActions": "Určuje, jestli se vedle nového tlačítka terminálu zobrazují tlačítka pro rozdělení a ukončení terminálu.",
"terminal.integrated.tabs.showActions.always": "Vždy zobrazovat akce",
"terminal.integrated.tabs.showActions.never": "Nikdy nezobrazovat akce",
"terminal.integrated.tabs.showActions.singleTerminal": "Zobrazit akce, když se jedná o jediný otevřený terminál",
"terminal.integrated.tabs.showActions.singleTerminalOrNarrow": "Zobrazit akce, pokud se jedná o jediný terminál, který je otevřený, nebo pokud se zobrazení karet nachází v úzkém beztextovém stavu.",
- "terminal.integrated.tabs.showActiveTerminal": "Zobrazí aktivní informace o terminálu v zobrazení, což je užitečné zejména v případě, že se název na kartách nezobrazí.",
+ "terminal.integrated.tabs.showActiveTerminal": "Zobrazí aktivní informace o terminálu ve zobrazení, což je užitečné zejména v případě, že se název na kartách nezobrazí.",
"terminal.integrated.tabs.showActiveTerminal.always": "Vždy zobrazovat aktivní terminál",
"terminal.integrated.tabs.showActiveTerminal.never": "Nikdy nezobrazovat aktivní terminál",
"terminal.integrated.tabs.showActiveTerminal.singleTerminal": "Zobrazit aktivní terminál, pokud se jedná o jediný terminál, který je otevřený",
"terminal.integrated.tabs.showActiveTerminal.singleTerminalOrNarrow": "Zobrazit aktivní terminál, pokud se jedná o jediný terminál, který je otevřený, nebo pokud se zobrazení karet nachází v úzkém beztextovém stavu.",
- "terminal.integrated.unicodeVersion": "Určuje, jaká verze Unicode se má používat k vyhodnocování šířky znaků v terminálu. Pokud zjistíte, že emoji nebo jiné široké znaky nezabírají správné místo nebo že klávesa Backspace odstraňuje příliš málo nebo příliš mnoho dat, můžete zkusit toto nastavení upravit.",
+ "terminal.integrated.unicodeVersion": "Určuje, která verze Unicode se má používat k vyhodnocování šířky znaků v terminálu. Pokud zjistíte, že emoji nebo jiné široké znaky nezabírají správné místo nebo že klávesa Backspace odstraňuje příliš málo nebo příliš mnoho dat, můžete zkusit toto nastavení upravit.",
"terminal.integrated.unicodeVersion.eleven": "Unicode verze 11. Tato verze poskytuje vylepšenou podporu v moderních systémech, které používají moderní verze Unicode.",
"terminal.integrated.unicodeVersion.six": "Unicode verze 6. Toto je starší verze, která by měla lépe fungovat ve starších systémech.",
"terminal.integrated.windowsEnableConpty": "Určuje, jestli se má pro komunikaci s procesem terminálu systému Windows používat konzola ConPTY (vyžaduje Windows 10 build 18309+). V případě hodnoty false se bude používat winpty.",
- "terminal.integrated.wordSeparators": "Řetězec obsahující všechny znaky, které má funkce výběru slov při poklikání považovat za oddělovače slov",
+ "terminal.integrated.windowsUseConptyDll": "Určuje, jestli se má používat experimentální knihovna conpty.dll (v1.22.250204002) dodávaná s VS Code místo knihovny dodávané s Windows.",
+ "terminal.integrated.wordSeparators": "Řetězec obsahující všechny znaky, které se mají považovat za oddělovače slov při dvojitém kliknutí pro výběr slova a v náhradní detekci odkazů „slov“. Vzhledem k tomu, že se toto používá k detekci odkazů, včetně znaků, jako je například „:“, které se používají při zjišťování odkazů, dojde k ignorování spojnicové a sloupcové části odkazů, jako je „file:10:5“.",
"terminalDescription": "Určuje popis terminálu, který se zobrazí napravo od názvu. Proměnné jsou nahrazeny na základě kontextu:",
"terminalIntegratedConfigurationTitle": "Integrovaný terminál",
"terminalTitle": "Určuje název terminálu. Proměnné jsou nahrazeny na základě kontextu:",
- "workspaceFolder": "pracovní prostor, ve kterém se spustil terminál"
+ "workspaceFolder": "pracovní prostor, ve kterém se spustil terminál.",
+ "workspaceFolderName": "název pracovního prostoru, ve kterém byl terminál spuštěn."
},
"vs/workbench/contrib/terminal/common/terminalContextKey": {
"inTerminalRunCommandPickerContextKey": "Určuje, jestli je aktuálně otevřený nástroj pro výběr příkazů spuštění terminálu.",
"isSplitTerminalContextKey": "Určuje, zda je prioritní terminál karty rozdělený terminál.",
+ "splitPaneActive": "Určuje, jestli je aktivní terminál rozděleným podoknem.",
"terminalAltBufferActive": "Určuje, zda je alternativní vyrovnávací paměť terminálu aktivní.",
"terminalCountContextKey": "Aktuální počet terminálů.",
"terminalEditorFocusContextKey": "Určuje, zda je terminál v oblasti editoru prioritní.",
"terminalFocusContextKey": "Určuje, zda je terminál prioritní.",
+ "terminalFocusInAnyContextKey": "Určuje, jestli je na nějaký terminál zaměřený fokus, včetně odpojených terminálů používaných v jiném uživatelském rozhraní.",
"terminalProcessSupportedContextKey": "Určuje, zda je v aktuálním pracovním prostoru možné spustit terminálové procesy.",
"terminalShellIntegrationEnabled": "Určuje, jestli je v aktivním terminálu povolená integrace prostředí.",
- "terminalShellTypeContextKey": "Typ prostředí aktivního terminálu je nastaven na poslední známou hodnotu v případě, že neexistují žádné terminály.",
+ "terminalShellTypeContextKey": "Typ prostředí aktivního terminálu. Nastaví se, pokud lze typ zjistit.",
+ "terminalSuggestWidgetVisible": "Určuje, jestli je widget návrhů terminálu viditelný.",
"terminalTabsFocusContextKey": "Určuje, zda je widget karet terminálu prioritní.",
"terminalTabsSingularSelectedContextKey": "Určuje, zda je v seznamu karet terminálu vybrán jeden terminál.",
"terminalTextSelectedContextKey": "Určuje, zda je text vybrán v aktivním terminálu.",
+ "terminalTextSelectedInFocusedContextKey": "Určuje, jestli je v terminálu s fokusem vybraný text.",
"terminalViewShowing": "Určuje, jestli se zobrazuje zobrazení terminálu."
},
"vs/workbench/contrib/terminal/common/terminalStrings": {
@@ -9353,79 +14902,753 @@
"doNotShowAgain": "Už nezobrazovat",
"killTerminal": "Ukončit terminál",
"killTerminal.short": "Ukončit",
+ "local": "Místní",
+ "moveIntoNewWindow": "Přesunout terminál do nového okna",
"moveToEditor": "Přesunout terminál do oblasti editoru",
+ "newInNewWindow": "Nové okno terminálu",
"previousSessionCategory": "předchozí relace",
"splitTerminal": "Rozdělit terminál",
"splitTerminal.short": "Rozdělit",
+ "task": "Úloha",
"terminal": "Terminál",
+ "terminal.new": "Nový terminál",
+ "terminalCategory": "Terminál",
"unsplitTerminal": "Zrušit rozdělení terminálu",
"workbench.action.terminal.changeColor": "Změnit barvu...",
"workbench.action.terminal.changeIcon": "Změnit ikonu...",
"workbench.action.terminal.focus": "Přepnout na terminál",
+ "workbench.action.terminal.focusAndHideAccessibleBuffer": "Zaměřit terminál a skrýt přístupnou vyrovnávací paměť",
+ "workbench.action.terminal.focusHover": "Fokus na najetí myší",
+ "workbench.action.terminal.focusInstance": "Přepnout na terminál",
"workbench.action.terminal.moveToTerminalPanel": "Přesunout terminál do panelu",
+ "workbench.action.terminal.newWithCwd": "Vytvořit nový terminál s počátečním bodem ve vlastním pracovním adresáři",
"workbench.action.terminal.rename": "Přejmenovat...",
+ "workbench.action.terminal.renameWithArg": "Přejmenovat aktuálně aktivní terminál",
+ "workbench.action.terminal.revealCommand": "Zobrazit příkaz v terminálu",
+ "workbench.action.terminal.scrollToNextCommand": "Posunout na další příkaz",
+ "workbench.action.terminal.scrollToPreviousCommand": "Posunout na předchozí příkaz",
"workbench.action.terminal.sizeToContentWidthInstance": "Přepnout velikost na šířku obsahu"
},
- "vs/workbench/contrib/terminal/electron-sandbox/terminalRemote": {
+ "vs/workbench/contrib/terminal/electron-browser/terminalRemote": {
"workbench.action.terminal.newLocal": "Vytvořit nový integrovaný terminál (místní)"
},
+ "vs/workbench/contrib/terminalContrib/accessibility/browser/terminal.accessibility.contribution": {
+ "workbench.action.terminal.accessibleBufferGoToNextCommand": "Přístupná vyrovnávací paměť – přechod na další příkaz",
+ "workbench.action.terminal.accessibleBufferGoToPreviousCommand": "Přístupná vyrovnávací paměť – přechod na předchozí příkaz",
+ "workbench.action.terminal.focusAccessibleBuffer": "Přepnout fokus na přístupné zobrazení terminálu",
+ "workbench.action.terminal.scrollToBottomAccessibleView": "Posunout na dolní část přístupného zobrazení",
+ "workbench.action.terminal.scrollToTopAccessibleView": "Posunout na horní část přístupného zobrazení"
+ },
+ "vs/workbench/contrib/terminalContrib/accessibility/browser/terminalAccessibilityHelp": {
+ "commandPromptMigration": "Pro lepší prostředí zvažte použití PowerShellu místo příkazového řádku.",
+ "focusAccessibleTerminalView": "Příkaz Přepnout fokus na přístupné zobrazení terminálu umožňuje čtečkám obrazovky číst obsah terminálu.",
+ "focusAfterRun": "Nakonfigurujte, co se po spuštění vybraného textu v terminálu zaměří pomocí „{0}“.",
+ "focusViewOnExecution": "Pokud povolíte možnost terminal.integrated.accessibleViewFocusOnCommandExecution, při spuštění příkazu na terminálu se fokus automaticky přepne na přístupné zobrazení terminálu.",
+ "goToNextCommand": "Přejít na další příkaz v přístupném zobrazení",
+ "goToPreviousCommand": "Přejít na předchozí příkaz v přístupném zobrazení",
+ "goToRecentDirectory": "Přejít do posledního adresáře",
+ "goToSymbol": "Přejít na symbol",
+ "newWithProfile": "Příkaz Vytvořit nový terminál (s profilem) umožňuje snadné vytvoření terminálu pomocí konkrétního profilu.",
+ "noShellIntegration": "Integrace prostředí není povolená. Některé funkce usnadnění nemusí být k dispozici.",
+ "openDetectedLink": "Příkaz Otevřít zjištěný odkaz umožňuje čtečkám obrazovky snadno otevírat odkazy nalezené v terminálu.",
+ "preserveCursor": "Přizpůsobte si chování kurzoru při přepínání mezi terminálem a zobrazením s podporou přístupnosti pomocí nastavení terminal.integrated.accessibleViewPreserveCursorPosition.",
+ "runRecentCommand": "Spustit poslední příkaz",
+ "shellIntegration": "Terminál obsahuje funkci s názvem do integrace prostředí, která nabízí vylepšené prostředí a poskytuje užitečné příkazy pro čtečky obrazovky, jako například:",
+ "suggest": "Když je widget návrhů terminálu zaměřen:",
+ "suggestCommands": "– Přijměte návrh a nakonfigurujte nastavení návrhu.",
+ "suggestCommandsMore": "– Přepínejte mezi widgetem a terminálem a přepněte fokus detailů, abyste se o návrhu dozvěděli více.",
+ "suggestConfigure": "– Konfigurujte nastavení návrhu ",
+ "suggestLearnMore": "– Další informace o návrhu.",
+ "suggestTrigger": "Příkaz dokončení terminálového požadavku lze vyvolat ručně, ale také se zobrazí při psaní."
+ },
+ "vs/workbench/contrib/terminalContrib/accessibility/common/terminalAccessibilityConfiguration": {
+ "terminal.integrated.accessibleViewFocusOnCommandExecution": "Umožňuje při provedení příkazu přepnout fokus na přístupné zobrazení terminálu.",
+ "terminal.integrated.accessibleViewPreserveCursorPosition": "Zachování pozice kurzoru při opětovném otevření zobrazení terminálu s podporou přístupnosti (místo toho, aby se kurzor nastavil na konec vyrovnávací paměti)."
+ },
+ "vs/workbench/contrib/terminalContrib/autoReplies/common/terminalAutoRepliesConfiguration": {
+ "terminal.integrated.autoReplies": "Sada zpráv, na které bude automaticky odpovězeno, pokud se vyskytnou v terminálu. V případě, že bude zpráva dostatečně konkrétní, to pomůže s automatizací běžných odpovědí.\r\n\r\nPoznámky:\r\n\r\n– Pomocí {0} můžete automaticky odpovědět na výzvu k ukončení dávkových úloh v systému Windows.\r\n– Zpráva zahrnuje řídící sekvence, takže k odpovědí nemusí dojít se stylizovaným textem.\r\n– Ke každé odpovědi může dojít jenom jednou za sekundu.\r\n– Použijte v odpovědi {1}, abyste tím naznačili klávesu Enter.\r\n– Pokud chcete zrušit nastavení výchozího klíče, nastavte hodnotu na null.\r\n– Restartujte VS pokud neplatí nové.",
+ "terminal.integrated.autoReplies.reply": "Odpověď, která se má odeslat do procesu."
+ },
+ "vs/workbench/contrib/terminalContrib/chat/browser/terminal.initialHint.contribution": {
+ "disableHint": " Přepnutím {0} v nastavení tento tip zakážete.",
+ "disableInitialHint": "Zakázat počáteční nápovědu",
+ "emptyHintText": "Otevřete chat {0}. ",
+ "hintTextDismiss": "Začněte psát pro zavření.",
+ "inlineChatHint": "[[Otevřete chat]] nebo začněte psát a zavřete ho."
+ },
+ "vs/workbench/contrib/terminalContrib/chat/browser/terminalChat": {
+ "chatAgentRegisteredContextKey": "Určuje, jestli je pro umístění terminálu zaregistrovaný agent chatu.",
+ "chatFocusedContextKey": "Udává, jestli je fokus na zobrazení chatu.",
+ "chatInputHasTextContextKey": "Udává, jestli má vstup chatu text.",
+ "chatRequestActiveContextKey": "Udává, jestli existuje aktivní žádost o chat.",
+ "chatResponseContainsCodeBlockContextKey": "Udává, jestli odpověď chatu obsahuje blok kódu.",
+ "chatResponseContainsMultipleCodeBlocksContextKey": "Udává, jestli odpověď chatu obsahuje několik bloků kódu.",
+ "chatVisibleContextKey": "Udává, jestli je zobrazení chatu viditelné.",
+ "terminalHasChatTerminals": "Určuje, jestli existují nějaké terminály chatu.",
+ "terminalHasHiddenChatTerminals": "Určuje, jestli existují nějaké skryté terminály chatu."
+ },
+ "vs/workbench/contrib/terminalContrib/chat/browser/terminalChatAccessibilityHelp": {
+ "chat.signals": "Signály přístupnosti se dají změnit prostřednictvím nastavení s předponou signals.chat. Pokud žádost trvá déle než 4 sekundy, uslyšíte ve výchozím nastavení zvuk, který indikuje, že nadále pokračuje její zpracování.",
+ "inlineChat.access": "Dá se aktivovat pomocí příkazu: Terminál: Zahájit chat ({0}), který přesune fokus na vstupní pole.",
+ "inlineChat.focusInput": "Dosáhněte na vstupní pole z odpovědi ({0}).",
+ "inlineChat.focusInputNoKb": "Na odpověď ze vstupního pole se dostanete pomocí kombinace shift+ tabulátoru nebo přiřazením klávesové zkratky pro příkaz Přepnout fokus na vstup terminálu.",
+ "inlineChat.focusResponse": "Dosáhněte na odpověď ze vstupního pole ({0}).",
+ "inlineChat.focusResponseNoKb": "Na odpověď ze vstupního pole se dostanete pomocí tabulátoru nebo přiřazením klávesové zkratky pro příkaz Přepnout fokus na odpověď terminálu.",
+ "inlineChat.input": "Do vstupního pole může uživatel zadat požadavek a vytvořit požadavek ({0}). Po stisknutí klávesy Escape se zavře widget, zahodí se veškerý obsah a fokus přejde zpět na terminál.",
+ "inlineChat.inputNoKb": "Do vstupního pole může uživatel zadat žádost, a to tak, že tabulátorem přejde na tlačítko Vytvořit žádost, které v současné době nelze spustit pomocí klávesové zkratky. Po stisknutí klávesy Escape se zavře widget, zahodí se veškerý obsah a fokus přejde zpět na terminál.",
+ "inlineChat.insertCommand": "S fokusem na editoru příkazů vstupního pole, akce Terminál: Vložit příkaz chatu ({0}).",
+ "inlineChat.insertCommandNoKb": "Vložte příkaz přechodem stisknutím klávesy Tab k tlačítku, protože akce se v tuto chvíli nedá aktivovat klávesovou zkratkou.",
+ "inlineChat.inspectResponseMessage": "Odpověď lze zkontrolovat v zobrazení s podporou přístupnosti ({0}).",
+ "inlineChat.inspectResponseNoKb": "Když máte fokus na vstupním poli, zkontrolujte odpověď v přístupném zobrazení pomocí příkazu Otevřít prohlížeč rozdílů s podporou přístupnosti, který se v tuto chvíli nedá aktivovat klávesovou zkratkou.",
+ "inlineChat.overview": "Vložený chat probíhá v rámci terminálu. To je užitečné při navrhování příkazů terminálu. Mějte na paměti, že kód vygenerovaný umělou inteligencí může být nesprávný.",
+ "inlineChat.runCommand": "S fokusem na vstupním poli nebo editoru příkazů, akce Terminál: Spustit příkaz chatu ({0}).",
+ "inlineChat.runCommandNoKb": "Spusťte příkaz přechodem stisknutím klávesy Tab k tlačítku, protože akce se v tuto chvíli nedá aktivovat klávesovou zkratkou.",
+ "inlineChat.toolbar": "Tabulátor slouží k dosažení podmíněných částí, jako jsou příkazy, stav, odpovědi na zprávy a další."
+ },
+ "vs/workbench/contrib/terminalContrib/chat/browser/terminalChatActions": {
+ "chat.rerun.label": "Znovu spustit žádost",
+ "chatTerminal.lastCommand": "Poslední: {0}",
+ "closeChat": "Zavřít",
+ "insert": "Vložit",
+ "insertCommand": "Vložit příkaz chatu",
+ "insertFirst": "Vložit jako první",
+ "insertFirstCommand": "Vložit první příkaz chatu",
+ "run": "Spustit",
+ "runCommand": "Spustit příkaz chatu",
+ "runFirst": "Spustit jako první",
+ "runFirstCommand": "Spustit první příkaz chatu",
+ "selectChatTerminal": "Vyberte terminál chatu, který se má zobrazit a na který se má nastavit fokus",
+ "showChatTerminals.title": "Terminály chatu",
+ "startChat": "Otevřít vložený chat",
+ "terminalCategory": "Terminál",
+ "terminalCategory2": "Terminál",
+ "viewHiddenChatTerminals": "Zobrazit skryté terminály chatu",
+ "viewInChat": "Zobrazit v chatu"
+ },
+ "vs/workbench/contrib/terminalContrib/chat/browser/terminalChatWidget": {
+ "askAboutCommands": "Zeptat se na příkazy"
+ },
+ "vs/workbench/contrib/terminalContrib/chat/common/terminalInitialHintConfiguration": {
+ "terminal.integrated.initialHint": "Určuje, jestli první terminál bez vstupu zobrazí nápovědu k dostupným akcím, když má fokus."
+ },
+ "vs/workbench/contrib/terminalContrib/chatAgentTools/browser/runInTerminalHelpers": {
+ "allowSession": "Povolit všechny příkazy v této relaci",
+ "allowSessionTooltip": "Povolit tomuto nástroji běžet v této relaci bez potvrzení",
+ "autoApprove.baseCommand": "Vždy povolit příkazy: {0}",
+ "autoApprove.baseCommandSingle": "Vždy povolit příkaz: {0}",
+ "autoApprove.configure": "Konfigurovat automatické schvalování...",
+ "autoApprove.exactCommand": "Vždy povolit přesný příkazový řádek"
+ },
+ "vs/workbench/contrib/terminalContrib/chatAgentTools/browser/terminal.chatAgentTools.contribution": {
+ "addTerminalSelection": "Přidat výběr terminálu do chatu",
+ "terminalSelection": "Výběr terminálu",
+ "toolset.shell": "Run commands in the terminal"
+ },
+ "vs/workbench/contrib/terminalContrib/chatAgentTools/browser/tools/commandLineAnalyzer/commandLineAutoApproveAnalyzer": {
+ "autoApprove.global": "Automaticky schváleno nastavením {0}",
+ "autoApprove.rule": "Automaticky schváleno pravidlem {0}",
+ "autoApprove.rules": "Automaticky schváleno pravidly {0}",
+ "autoApprove.session": "Automaticky schváleno pro tuto relaci",
+ "autoApprove.session.disable": "Zakázat",
+ "autoApproveDenied.rule": "Automatické schválení zamítnuto pravidlem {0}",
+ "autoApproveDenied.rules": "Automatické schválení zamítnuto pravidly {0}",
+ "ruleTooltip": "Zobrazit pravidlo v nastavení",
+ "ruleTooltip.global": "Zobrazit nastavení",
+ "runInTerminal.promptInjectionDisclaimer": "Webový obsah může obsahovat škodlivý kód nebo se pokusit o útoky prostřednictvím injektáže výzvy."
+ },
+ "vs/workbench/contrib/terminalContrib/chatAgentTools/browser/tools/commandLineAnalyzer/commandLineFileWriteAnalyzer": {
+ "runInTerminal.fileWriteBlockedDisclaimer": "Byly zjištěny operace zápisu do souboru, které nelze automaticky schválit: {0}",
+ "runInTerminal.fileWriteDisclaimer": "Zjištěné operace zápisu do souborů: {0}"
+ },
+ "vs/workbench/contrib/terminalContrib/chatAgentTools/browser/tools/getTerminalLastCommandTool": {
+ "getTerminalLastCommand.past": "Načetl se poslední příkaz terminálu",
+ "getTerminalLastCommand.progressive": "Načítá se poslední příkaz terminálu",
+ "terminalLastCommandTool.displayName": "Načíst poslední příkaz terminálu"
+ },
+ "vs/workbench/contrib/terminalContrib/chatAgentTools/browser/tools/getTerminalOutputTool": {
+ "bg.past": "Kontroluje se výstup terminálu na pozadí",
+ "bg.progressive": "Kontroluje se výstup terminálu na pozadí",
+ "getTerminalOutputTool.displayName": "Načíst výstup terminálu"
+ },
+ "vs/workbench/contrib/terminalContrib/chatAgentTools/browser/tools/getTerminalSelectionTool": {
+ "getTerminalSelection.past": "Přečíst výběr terminálu",
+ "getTerminalSelection.progressive": "Čtení výběru terminálu",
+ "terminalSelectionTool.displayName": "Načíst výběr terminálu"
+ },
+ "vs/workbench/contrib/terminalContrib/chatAgentTools/browser/tools/monitoring/outputMonitor": {
+ "poll.terminal.accept": "Ano",
+ "poll.terminal.acceptRun": "Povolit",
+ "poll.terminal.confirmRequired": "Terminál čeká na vstup.",
+ "poll.terminal.confirmRunDetail": "{0}\r\n Chcete odeslat příkaz {1} {2} následovaný stisknutím klávesy Enter do terminálu?",
+ "poll.terminal.enterInput": "Přepnout na terminál",
+ "poll.terminal.inputRequest": "Terminál čeká na vstup.",
+ "poll.terminal.polling": "Bude se dál dotazovat výstup, aby se určilo, kdy se terminál stane nečinný po dobu až 2 minut.",
+ "poll.terminal.reject": "Ne",
+ "poll.terminal.rejectRun": "Přepnout na terminál",
+ "poll.terminal.requireInput": "{0}\r\nZadejte požadovaný vstup do terminálu.\r\n\r\n",
+ "poll.terminal.waiting": "Chcete pokračovat v čekání na {0}?"
+ },
+ "vs/workbench/contrib/terminalContrib/chatAgentTools/browser/tools/runInTerminalConfirmationTool": {
+ "confirmTerminalCommandTool.displayName": "Potvrdit příkaz terminálu",
+ "confirmTerminalCommandTool.userDescription": "Nástroj pro potvrzení příkazů terminálu"
+ },
+ "vs/workbench/contrib/terminalContrib/chatAgentTools/browser/tools/runInTerminalTool": {
+ "runInTerminal": "Spustit příkaz {0}?",
+ "runInTerminal.background": "Spustit příkaz {0}? (terminál na pozadí)",
+ "runInTerminalTool.displayName": "Spustit v terminálu",
+ "runInTerminalTool.userDescription": "Run commands in the terminal"
+ },
+ "vs/workbench/contrib/terminalContrib/chatAgentTools/browser/tools/task/createAndRunTaskTool": {
+ "allowTaskCreationExecution": "Chcete povolit vytvoření a provedení úlohy?",
+ "alreadyRunning": "Úloha {0} již běží.",
+ "copilotChat.fetchingTask": "Řešení úlohy",
+ "copilotChat.noTerminal": "Úloha byla spuštěna, ale nebyl nalezen žádný terminál pro: „{0}“",
+ "copilotChat.runningTask": "Běží úloha {0}",
+ "copilotChat.taskNotFound": "Úloha nebyla nalezena: {0}",
+ "createAndRunTask.displayName": "Vytvořit a spustit úlohu",
+ "createAndRunTask.userDescription": "Vytvořit a spustit úlohu v pracovním prostoru",
+ "createTask": "Bude vytvořena úloha {0} s příkazem {1}{2}.",
+ "createdTask": "Vytvořena úloha {0}",
+ "createdTaskPast": "Vytvořena úloha {0}",
+ "taskExists": "Úloha {0} už existuje.",
+ "taskExistsPast": "Úloha {0} už existuje."
+ },
+ "vs/workbench/contrib/terminalContrib/chatAgentTools/browser/tools/task/getTaskOutputTool": {
+ "copilotChat.checkedTerminalOutput": "Byl zkontrolován výstup pro úlohu {0}.",
+ "copilotChat.checkingTerminalOutput": "Kontroluje se výstup pro úlohu {0}.",
+ "copilotChat.taskAlreadyRunning": "Úloha „{0}“ již běží.",
+ "copilotChat.taskNotFound": "Úloha nebyla nalezena: {0}",
+ "copilotChat.terminalNotFound": "Pro úlohu „{0}“ nebyl nalezen terminál",
+ "getTaskOutputTool.displayName": "Načíst výstup úlohy"
+ },
+ "vs/workbench/contrib/terminalContrib/chatAgentTools/browser/tools/task/runTaskTool": {
+ "chat.allowTaskRunMsg": "Chcete povolit spuštění úlohy {0}?",
+ "chat.allowTaskRunTitle": "Chcete povolit spuštění úlohy?",
+ "chat.noTerminal": "Úloha byla spuštěna, ale nebyl nalezen žádný terminál pro: „{0}“",
+ "chat.ranTask": "Proběhlo: {0}",
+ "chat.runningTask": "Běží: {0}",
+ "chat.startedTask": "Zahájeno: {0}",
+ "chat.taskAlreadyActive": "Úloha již běží.",
+ "chat.taskAlreadyRunning": "Úloha „{0}“ již běží.",
+ "chat.taskIsAlreadyRunning": "{0} už běží.",
+ "chat.taskNotFound": "Úloha nebyla nalezena: {0}",
+ "chat.taskWasAlreadyRunning": "Proces {0} už běžel.",
+ "runInTerminalTool.displayName": "Spustit úlohu",
+ "runInTerminalTool.userDescription": "Run tasks in the workspace"
+ },
+ "vs/workbench/contrib/terminalContrib/chatAgentTools/browser/tools/task/taskHelpers": {
+ "copilotChat.taskFailedWithExitCode": "Úloha {0} se nezdařila s ukončovacím kódem {1}."
+ },
+ "vs/workbench/contrib/terminalContrib/chatAgentTools/common/terminalChatAgentToolsConfiguration": {
+ "autoApprove.defaults": "Všimněte si, že existuje výchozí sada pravidel, která povolují i zakazují příkazy. Zvažte nastavení {0} na {1}, abyste ignorovali všechna výchozí pravidla a zajistili tak, že nedojde ke konfliktům s vašimi vlastními pravidly. Proveďte tuto změnu pouze na vlastní riziko. Výchozí pravidla odmítnutí jsou navržena tak, aby vás chránila před spuštěním nebezpečných příkazů.",
+ "autoApprove.deprecated": "Místo toho použijte {0}",
+ "autoApprove.description.commandLine": "Objekt lze použít k porovnání s celým příkazovým řádkem namísto odpovídajících dílčích a vložených příkazů, například {0}. Aby bylo možné automaticky schválit _oba_ prvky – dílčí příkaz i příkazový řádek – nesmí být výslovně zamítnuty. Musí být schválené _buď_ všechny dílčí příkazy nebo příkazový řádek.",
+ "autoApprove.description.examples.binTest": "Povolit všechny příkazy, které odpovídají cestě {0} ({1}, {2} atd.)",
+ "autoApprove.description.examples.description": "Popis",
+ "autoApprove.description.examples.mkdir": "Povolit všechny příkazy začínající na {0}",
+ "autoApprove.description.examples.npmRunBuild": "Povolit všechny příkazy začínající na {0}",
+ "autoApprove.description.examples.ps1": "Vyžadovat explicitní schválení pro všechny _příkazové řádky_, které obsahují {0}, bez ohledu na velikost písmen",
+ "autoApprove.description.examples.regexAll": "Povolit všechny příkazy (i zamítnuté příkazy vyžadují schválení)",
+ "autoApprove.description.examples.regexCase": "povolí příkazy {0} bez ohledu na malá a velká písmena",
+ "autoApprove.description.examples.regexGit": "Povolit {0} a všechny příkazy začínající na {1}",
+ "autoApprove.description.examples.rm": "Vyžadovat explicitní schválení pro všechny příkazy začínající na {0}",
+ "autoApprove.description.examples.rmUnset": "Zrušit nastavení výchozí hodnoty {0} pro {1}",
+ "autoApprove.description.examples.title": "Příklady:",
+ "autoApprove.description.examples.value": "Hodnota",
+ "autoApprove.description.intro": "Seznam příkazů nebo regulárních výrazů, které určují, jestli příkazy nástroje spouštěné v terminálu vyžadují výslovné schválení. Ty se budou shodovat se začátkem příkazu. Regulární výraz lze zadat zabalením řetězce do znaků {0} následovaných volitelnými příznaky, jako je například {1} pro rozlišování velkých a malých písmen.",
+ "autoApprove.description.subCommands": "Poznámka: Tyto příkazy a regulární výrazy se vyhodnocují pro každý _dílčí příkaz_ v rámci celého _příkazového řádku_, takže například {0} bude potřebovat {1} i {2}, aby byla vyhodnocena shoda s položkou {3}, a nesmí odpovídat položce {4}, aby došlo k automatickému schválení. Měly by být zjištěny také vložené příkazy, jako je například {5} (nahrazení procesu).",
+ "autoApprove.description.values": "Nastavte na {0}, pokud se mají příkazy schvalovat automaticky, na {1}, pokud se má vždy vyžadovat výslovné schválení, nebo na {2}, pokud se má zrušit nastavení hodnoty.",
+ "autoApprove.false": "Umožňuje vyžadovat explicitní schválení pro vzor.",
+ "autoApprove.key": "Začátek příkazu, proti kterému se má porovnávat. Regulární výraz lze zadat zabalením řetězce do znaků /.",
+ "autoApprove.matchCommandLine": "Určuje, jestli se má zjišťovat shoda s celým příkazovým řádkem místo dělení podle dílčích a vložených příkazů.",
+ "autoApprove.matchCommandLine.false": "Shoda s dílčími a vloženými příkazy, např. „foo && bar“ bude ke shodě potřebovat jak „foo“, tak „bar“",
+ "autoApprove.matchCommandLine.true": "Shoda s celým příkazovým řádkem, např. „foo &bar“",
+ "autoApprove.null": "Umožňuje ignorovat vzor, což je užitečné pro zrušení nastavení stejného vzoru ve větším rozsahu.",
+ "autoApprove.true": "Umožňuje automaticky schválit vzor.",
+ "autoApproveMode.description": "Určuje, jestli se má povolit automatické schvalování při spuštění v nástroji terminálu.",
+ "autoReplyToPrompts.key": "Určuje, zda se má automaticky odpovídat na výzvy v terminálu, například Chcete potvrdit? y/n. Jde o experimentální funkci, která nemusí fungovat ve všech scénářích.",
+ "blockFileWrites.all": "Zablokovat všechny zjištěné zápisy do souborů",
+ "blockFileWrites.description": "Určuje, zda mají být v nástroji Spustit v terminálu blokovány operace zápisu do souboru, které byly zjištěny. V případě jejich zjištění bude nutné výslovné schválení bez ohledu na to, zda by byl příkaz za běžných okolností automaticky schválen. Poznámka: Tímto způsobem nelze detekovat všechny možné způsoby zápisu do souborů, ale aktuálně se detekují následující:\r\n\r\n– Přesměrování souboru (detekované pomocí gramatiky tree-sitteru pro Bash nebo PowerShell)",
+ "blockFileWrites.never": "Povolit všechny zjištěné zápisy do souborů",
+ "blockFileWrites.outsideWorkspace": "Zablokuje zápisy do souborů zjištěné mimo pracovní prostor. Závisí to na správné funkci integrace prostředí, aby bylo možné určit aktuální pracovní adresář terminálu.",
+ "ignoreDefaultAutoApproveRules.description": "Určuje, jestli se mají ignorovat integrovaná výchozí pravidla automatického schvalování používaná nástrojem Spustit v terminálu, jak je definováno v {0}. Když je toto nastavení povoleno, nástroj Spustit v terminálu bude ignorovat všechna pravidla z výchozí sady, ale bude se řídit pravidly definovanými v uživatelském nastavení, ve vzdáleném nastavení a v nastavení pracovního prostoru. Používejte toto nastavení na vlastní riziko. Výchozí pravidla automatického schvalování jsou navržena tak, aby vás chránila před spouštěním nebezpečných příkazů.",
+ "outputLocation.description": "Kde zobrazit výstup spuštění v relaci nástroje terminálu",
+ "outputLocation.none": "Terminál nezobrazovat automaticky",
+ "outputLocation.terminal": "Při spuštění příkazu zobrazit terminál",
+ "shellIntegrationTimeout.deprecated": "Místo toho použijte {0}",
+ "shellIntegrationTimeout.description": "Konfiguruje dobu v milisekundách, po kterou se má čekat na integraci prostředí, když nástroj Spustit v terminálu spustí nový terminál. Při nastavení hodnoty 0 se čeká minimální dobu, výchozí hodnota -1 znamená, že doba čekání je proměnlivá v závislosti na hodnotě {0} a na tom, zda se jedná o vzdálené okno. Vysoká hodnota může být užitečná, pokud se vaše prostředí spouští velmi pomalu, a nízká hodnota, pokud záměrně nepoužíváte integraci prostředí.",
+ "terminalChatAgentProfile.linux": "Profil terminálu, který se má použít v systému Linux pro agenta chatu spuštěného v nástroji terminálu",
+ "terminalChatAgentProfile.osx": "Profil terminálu, který se má použít v systému macOS pro agenta chatu spuštěného v nástroji terminálu",
+ "terminalChatAgentProfile.path": "Cesta ke spustitelnému souboru prostředí",
+ "terminalChatAgentProfile.windows": "Profil terminálu, který se má použít v systému Windows pro agenta chatu spuštěného v nástroji terminálu"
+ },
+ "vs/workbench/contrib/terminalContrib/clipboard/browser/terminal.clipboard.contribution": {
+ "workbench.action.terminal.copyAndClearSelection": "Kopírovat a vymazat výběr",
+ "workbench.action.terminal.copyLastCommand": "Kopírovat poslední příkaz",
+ "workbench.action.terminal.copyLastCommandAndOutput": "Zkopírovat poslední příkaz a výstup",
+ "workbench.action.terminal.copyLastCommandOutput": "Kopírovat výstup posledního příkazu",
+ "workbench.action.terminal.copySelection": "Kopírovat výběr",
+ "workbench.action.terminal.copySelectionAsHtml": "Kopírovat výběr jako HTML",
+ "workbench.action.terminal.paste": "Vložit do aktivního terminálu",
+ "workbench.action.terminal.pasteSelection": "Vložit výběr do aktivního terminálu"
+ },
+ "vs/workbench/contrib/terminalContrib/clipboard/browser/terminalClipboard": {
+ "confirmMoveTrashMessageFilesAndDirectories": "Opravdu chcete vložit řádky (celkem {0}) textu do terminálu?",
+ "doNotAskAgain": "Tento dotaz příště nezobrazovat",
+ "multiLinePasteButton": "&&Vložit",
+ "multiLinePasteButton.oneLine": "Vložit jako &&jeden řádek",
+ "preview": "Náhled:"
+ },
+ "vs/workbench/contrib/terminalContrib/commandGuide/browser/terminal.commandGuide.contribution": {
+ "terminalCommandGuide.foreground": "Barva popředí průvodce příkazem terminálu vlevo od příkazu a jeho výstupu při najetí myší"
+ },
+ "vs/workbench/contrib/terminalContrib/commandGuide/common/terminalCommandGuideConfiguration": {
+ "showCommandGuide": "Určuje, jestli se má při umístění ukazatele myši na příkaz v terminálu zobrazit průvodce příkazem."
+ },
+ "vs/workbench/contrib/terminalContrib/developer/browser/terminal.developer.contribution": {
+ "workbench.action.terminal.recordSession": "Zaznamenat relaci terminálu",
+ "workbench.action.terminal.recordSession.recording": "Zaznamenává se relace terminálu...",
+ "workbench.action.terminal.restartPtyHost": "Restartovat hostitele Pty",
+ "workbench.action.terminal.showTextureAtlas": "Zobrazit atlas textury terminálu",
+ "workbench.action.terminal.writeDataToTerminal": "Zapsat data na terminál",
+ "workbench.action.terminal.writeDataToTerminal.prompt": "Zadejte data, která se mají zapsat přímo na terminál (obejde se pty)."
+ },
+ "vs/workbench/contrib/terminalContrib/environmentChanges/browser/terminal.environmentChanges.contribution": {
+ "ScopedEnvironmentContributionInfo": "pracovní prostor",
+ "envChanges": "Změny prostředí terminálu",
+ "extension": "Rozšíření: {0}",
+ "workbench.action.terminal.showEnvironmentContributions": "Zobrazit příspěvky prostředí"
+ },
+ "vs/workbench/contrib/terminalContrib/find/browser/terminal.find.contribution": {
+ "workbench.action.terminal.findNext": "Najít další",
+ "workbench.action.terminal.findPrevious": "Najít předchozí",
+ "workbench.action.terminal.focusFind": "Přepnout fokus na hledání",
+ "workbench.action.terminal.hideFind": "Skrýt hledání",
+ "workbench.action.terminal.searchWorkspace": "Hledat v pracovním prostoru",
+ "workbench.action.terminal.toggleFindCaseSensitive": "Přepnout hledání s rozlišováním malých a velkých písmen",
+ "workbench.action.terminal.toggleFindRegex": "Přepnout hledání pomocí regulárního výrazu",
+ "workbench.action.terminal.toggleFindWholeWord": "Přepnout hledání pomocí celých slov"
+ },
+ "vs/workbench/contrib/terminalContrib/history/browser/terminal.history.contribution": {
+ "goToRecentDirectory.metadata": "Přejde do poslední složky.",
+ "workbench.action.terminal.clearPreviousSessionHistory": "Clear Previous Session History (Vymazat předchozí historii relace)",
+ "workbench.action.terminal.goToRecentDirectory": "Přejít do posledního adresáře...",
+ "workbench.action.terminal.runRecentCommand": "Spustit poslední příkaz…"
+ },
+ "vs/workbench/contrib/terminalContrib/history/browser/terminalRunRecentQuickPick": {
+ "openShellHistoryFile": "Otevřít soubor",
+ "removeCommand": "Odebrat z historie příkazů",
+ "selectRecentCommand": "Vyberte příkaz, který chcete spustit (pokud chcete příkaz upravit, podržte klávesu Alt)",
+ "selectRecentCommandMac": "Vyberte příkaz, který chcete spustit (pokud chcete příkaz upravit, podržte Option)",
+ "selectRecentDirectory": "Vyberte adresář, do kterého chcete přejít (pokud chcete příkaz upravit, podržte klávesu Alt)",
+ "selectRecentDirectoryMac": "Vyberte adresář, do kterého chcete přejít (pokud chcete příkaz upravit, podržte klávesu Option)",
+ "shellFileHistoryCategory": "{0} – historie",
+ "viewCommandOutput": "Zobrazit výstup příkazu"
+ },
+ "vs/workbench/contrib/terminalContrib/history/common/terminal.history": {
+ "terminal.integrated.shellIntegration.history": "Určuje počet naposledy použitých příkazů, které se mají zachovat v historii příkazů terminálu. Pokud chcete zakázat historii příkazů terminálu, nastavte hodnotu na 0."
+ },
+ "vs/workbench/contrib/terminalContrib/links/browser/terminal.links.contribution": {
+ "workbench.action.terminal.openDetectedLink": "Otevřít zjištěný odkaz…",
+ "workbench.action.terminal.openLastLocalFileLink": "Otevřít poslední odkaz na místní soubor",
+ "workbench.action.terminal.openLastUrlLink": "Otevřít poslední odkaz adresy URL",
+ "workbench.action.terminal.openLastUrlLink.description": "Otevře poslední zjištěný odkaz URL/URI v terminálu."
+ },
+ "vs/workbench/contrib/terminalContrib/links/browser/terminalLinkDetectorAdapter": {
+ "focusFolder": "Přepnout fokus na složku v průzkumníkovi",
+ "followLink": "Přejít na odkaz",
+ "openFile": "Otevřít soubor v editoru",
+ "openFolder": "Otevřít složku v novém okně",
+ "searchWorkspace": "Prohledat pracovní prostor"
+ },
+ "vs/workbench/contrib/terminalContrib/links/browser/terminalLinkManager": {
+ "allow": "Povolit {0}",
+ "followForwardedLink": "Přejít na odkaz pomocí přesměrovaného portu",
+ "followLink": "Přejít na odkaz",
+ "followLinkUrl": "Odkaz",
+ "scheme": "Otevírání identifikátorů URI může být nezabezpečené. Chcete povolit otevírání odkazů se schématem {0}?",
+ "terminalLinkHandler.followLinkAlt": "alt + kliknutí",
+ "terminalLinkHandler.followLinkAlt.mac": "option + kliknutí",
+ "terminalLinkHandler.followLinkCmd": "cmd + kliknutí",
+ "terminalLinkHandler.followLinkCtrl": "ctrl + kliknutí"
+ },
+ "vs/workbench/contrib/terminalContrib/links/browser/terminalLinkQuickpick": {
+ "terminal.integrated.localFileLinks": "Soubor",
+ "terminal.integrated.localFolderLinks": "Složka",
+ "terminal.integrated.openDetectedLink": "Vyberte odkaz, který chcete otevřít, zadáním vyfiltrujte všechny odkazy.",
+ "terminal.integrated.searchLinks": "Hledání v pracovním prostoru",
+ "terminal.integrated.urlLinks": "Adresa URL"
+ },
+ "vs/workbench/contrib/terminalContrib/quickAccess/browser/terminal.quickAccess.contribution": {
+ "quickAccessTerminal": "Přepnout aktivní terminál",
+ "tasksQuickAccessHelp": "Zobrazit všechny otevřené terminály",
+ "tasksQuickAccessPlaceholder": "Zadejte název terminálu, který chcete otevřít."
+ },
+ "vs/workbench/contrib/terminalContrib/quickAccess/browser/terminalQuickAccess": {
+ "renameTerminal": "Přejmenovat terminál",
+ "workbench.action.terminal.newWithProfilePlus": "Vytvořit nový terminál s profilem…",
+ "workbench.action.terminal.newplus": "Vytvořit nový terminál"
+ },
+ "vs/workbench/contrib/terminalContrib/quickFix/browser/quickFixAddon": {
+ "codeAction.widget.id.quickfix": "Rychlá oprava",
+ "quickFix.command": "Spustit: {0}",
+ "quickFix.opener": "Otevřít: {0}"
+ },
+ "vs/workbench/contrib/terminalContrib/quickFix/browser/terminal.quickFix.contribution": {
+ "workbench.action.terminal.showQuickFixes": "Zobrazit rychlé opravy terminálu"
+ },
+ "vs/workbench/contrib/terminalContrib/quickFix/browser/terminalQuickFixBuiltinActions": {
+ "terminal.createPR": "Vytvořit PR {0}",
+ "terminal.freePort": "Uvolnit port {0}"
+ },
+ "vs/workbench/contrib/terminalContrib/quickFix/browser/terminalQuickFixService": {
+ "vscode.extension.contributes.terminalQuickFixes": "Přispívá k rychlým opravám terminálu.",
+ "vscode.extension.contributes.terminalQuickFixes.commandExitResult": "Výsledek ukončení příkazu, který se má shodovat",
+ "vscode.extension.contributes.terminalQuickFixes.commandLineMatcher": "Regulární výraz nebo řetězec k otestování příkazového řádku.",
+ "vscode.extension.contributes.terminalQuickFixes.id": "ID poskytovatele rychlé opravy.",
+ "vscode.extension.contributes.terminalQuickFixes.kind": "Druh výsledné rychlé opravy. Tím se změní způsob prezentace rychlé opravy. Má výchozí hodnotu {0}.",
+ "vscode.extension.contributes.terminalQuickFixes.outputMatcher": "Regulární výraz nebo řetězec, který se má shodovat s jedním řádkem výstupu, který poskytuje skupiny, na které se má odkazovat v terminalCommand a uri.\r\n\r\nPříklad:\r\n\r\n `lineMatcher: /git push --set-upstream origin (?[^s]+)/;`\r\n\r\n`terminalCommand: 'git push --set-upstream origin ${group:branchName}';`\r\n"
+ },
+ "vs/workbench/contrib/terminalContrib/sendSequence/browser/terminal.sendSequence.contribution": {
+ "sendSequence": "Pořadí odesílání",
+ "sendSequence.text.desc": "Posloupnost textu, který se má odeslat do terminálu",
+ "workbench.action.terminal.sendSequence.prompt": "Zadejte sekvenci pro odeslání do terminálu"
+ },
+ "vs/workbench/contrib/terminalContrib/sendSignal/browser/terminal.sendSignal.contribution": {
+ "SIGCONT": "Pokračovat v procesu",
+ "SIGHUP": "Zavěsit",
+ "SIGINT": "Přerušit proces (Ctrl+C)",
+ "SIGKILL": "Vynutit ukončení procesu",
+ "SIGQUIT": "Ukončit proces",
+ "SIGSTOP": "Zastavit proces",
+ "SIGTERM": "Řádně ukončit proces",
+ "SIGUSR1": "Uživatelem definovaný signál 1",
+ "SIGUSR2": "Uživatelem definovaný signál 2",
+ "enterSignal": "Zadejte název signálu (např. SIGTERM, SIGKILL)",
+ "manualSignal": "Zadejte signál ručně",
+ "selectSignal": "Vyberte signál, který se má odeslat do konečného procesu",
+ "sendSignal": "Odeslat signál",
+ "sendSignal.signal.desc": "Signál pro odeslání do procesu terminálu (např. SIGTERM, SIGINT, SIGKILL)"
+ },
+ "vs/workbench/contrib/terminalContrib/stickyScroll/browser/terminal.stickyScroll.contribution": {
+ "miStickyScroll": "&&Pevné posouvání",
+ "stickyScroll": "Pevné posouvání",
+ "workbench.action.terminal.toggleStickyScroll": "Přepnout pevné posouvání"
+ },
+ "vs/workbench/contrib/terminalContrib/stickyScroll/browser/terminalStickyScrollColorRegistry": {
+ "terminalStickyScroll.background": "Barva pozadí překryvného prvku pevného posouvání v terminálu.",
+ "terminalStickyScroll.border": "Ohraničení překryvu pevného posouvání v terminálu.",
+ "terminalStickyScrollHover.background": "Barva pozadí překryvného prvku pevného posouvání v terminálu při najetí myší."
+ },
+ "vs/workbench/contrib/terminalContrib/stickyScroll/browser/terminalStickyScrollOverlay": {
+ "labelWithKeybinding": "{0} ({1})",
+ "stickyScrollHoverTitle": "Přejít na příkaz"
+ },
+ "vs/workbench/contrib/terminalContrib/stickyScroll/common/terminalStickyScrollConfiguration": {
+ "stickyScroll.enabled": "Zobrazí aktuální příkaz v horní části terminálu. Tato funkce vyžaduje aktivaci [integrace prostředí]({0}). Další informace najdete tady: {1}.",
+ "stickyScroll.maxLineCount": "Definuje maximální počet řádků, které se mají zobrazit při pevném posouvání. Bez ohledu na toto nastavení řádky pevného posouvání nikdy nepřekročí 40 % oblasti zobrazení."
+ },
+ "vs/workbench/contrib/terminalContrib/suggest/browser/terminal.suggest.contribution": {
+ "workbench.action.terminal.acceptSelectedSuggestion": "Vložit",
+ "workbench.action.terminal.acceptSelectedSuggestionEnter": "Přijmout vybraný návrh (Enter)",
+ "workbench.action.terminal.configureSuggestSettings": "Nakonfigurovat",
+ "workbench.action.terminal.hideSuggestWidget": "Skrýt widget návrhů",
+ "workbench.action.terminal.hideSuggestWidgetAndNavigateHistory": "Skrýt widget návrhů a procházet historii",
+ "workbench.action.terminal.learnMore": "Další informace",
+ "workbench.action.terminal.resetSuggestWidgetSize": "Obnovit velikost widgetu návrhů",
+ "workbench.action.terminal.selectNextPageSuggestion": "Vybrat návrh další stránky.",
+ "workbench.action.terminal.selectNextSuggestion": "Vybrat další návrh",
+ "workbench.action.terminal.selectPrevPageSuggestion": "Vybrat návrh předchozí stránky.",
+ "workbench.action.terminal.selectPrevSuggestion": "Vybrat předchozí návrh.",
+ "workbench.action.terminal.suggestToggleDetails": "Podrobnosti o přepínači pro návrhy",
+ "workbench.action.terminal.suggestToggleDetailsFocus": "Navrhnout – přepnout fokus na návrhy",
+ "workbench.action.terminal.suggestToggleExplainMode": "Navrhnout přepnutí režimů vysvětlení",
+ "workbench.action.terminal.triggerSuggest": "Aktivovat návrh"
+ },
+ "vs/workbench/contrib/terminalContrib/suggest/browser/terminalSuggestAddon": {
+ "alias": "Alias",
+ "argument": "Argument",
+ "branch": "Větev",
+ "commit": "Potvrdit",
+ "file": "Soubor",
+ "flag": "Příznak",
+ "folder": "Složka",
+ "inlineSuggestion": "Vložený návrh",
+ "inlineSuggestionAlwaysOnTop": "Vložený návrh",
+ "method": "Metoda",
+ "option": "Možnost",
+ "optionValue": "Hodnota možnosti",
+ "pullRequest": "Žádost o přijetí změn",
+ "pullRequestDone": "Žádost o přijetí změn (hotovo)",
+ "remote": "Vzdálené",
+ "stash": "Dočasné úložiště",
+ "symbolicLinkFile": "Soubor symbolického odkazu",
+ "symbolicLinkFolder": "Složka symbolických odkazů",
+ "tag": "Značka"
+ },
+ "vs/workbench/contrib/terminalContrib/suggest/browser/terminalSymbolIcons": {
+ "terminalSymbolAliasIcon": "Ikona pro aliasy ve widgetu návrhů terminálu",
+ "terminalSymbolArgumentIcon": "Ikona pro argumenty ve widgetu návrhů terminálu",
+ "terminalSymbolBranchIcon": "Ikona pro větve ve widgetu návrhů terminálu.",
+ "terminalSymbolCommitIcon": "Ikona pro potvrzení ve widgetu návrhů terminálu.",
+ "terminalSymbolFileIcon": "Ikona pro soubory ve widgetu návrhů terminálu",
+ "terminalSymbolFlagIcon": "Ikona pro příznaky ve widgetu návrhů terminálu",
+ "terminalSymbolFolderIcon": "Ikona pro složky ve widgetu návrhů terminálu",
+ "terminalSymbolIcon.aliasForeground": "Barva popředí pro ikonu aliasu. Tyto ikony se zobrazí ve widgetu návrhů terminálu.",
+ "terminalSymbolIcon.argumentForeground": "Barva popředí pro ikonu argumentu Tyto ikony se zobrazí ve widgetu návrhů terminálu.",
+ "terminalSymbolIcon.branchForeground": "Barva popředí pro ikonu větve. Tyto ikony se zobrazí ve widgetu návrhů terminálu.",
+ "terminalSymbolIcon.commitForeground": "Barva popředí pro ikonu potvrzení. Tyto ikony se zobrazí ve widgetu návrhů terminálu.",
+ "terminalSymbolIcon.enumMemberForeground": "Barva popředí pro ikonu člena výčtu Tyto ikony se zobrazí ve widgetu návrhů terminálu.",
+ "terminalSymbolIcon.fileForeground": "Barva popředí pro ikonu souboru Tyto ikony se zobrazí ve widgetu návrhů terminálu.",
+ "terminalSymbolIcon.flagForeground": "Barva popředí pro ikonu příznaku. Tyto ikony se zobrazí ve widgetu návrhů terminálu.",
+ "terminalSymbolIcon.folderForeground": "Barva popředí pro ikonu složky Tyto ikony se zobrazí ve widgetu návrhů terminálu.",
+ "terminalSymbolIcon.inlineSuggestionForeground": "Barva popředí pro ikonu vloženého návrhu Tyto ikony se zobrazí ve widgetu návrhů terminálu.",
+ "terminalSymbolIcon.methodForeground": "Barva popředí pro ikonu metody Tyto ikony se zobrazí ve widgetu návrhů terminálu.",
+ "terminalSymbolIcon.optionForeground": "Barva popředí pro ikonu možnosti Tyto ikony se zobrazí ve widgetu návrhů terminálu.",
+ "terminalSymbolIcon.pullRequestDoneForeground": "Barva popředí pro ikonu dokončené žádosti o přijetí změn Tyto ikony se zobrazí ve widgetu návrhů terminálu.",
+ "terminalSymbolIcon.pullRequestForeground": "Barva popředí pro ikonu žádosti o přijetí změn. Tyto ikony se zobrazí ve widgetu návrhů terminálu.",
+ "terminalSymbolIcon.remoteForeground": "Barva popředí pro ikonu vzdálené. Tyto ikony se zobrazí ve widgetu návrhů terminálu.",
+ "terminalSymbolIcon.stashForeground": "Barva popředí pro ikonu dočasného úložiště. Tyto ikony se zobrazí ve widgetu návrhů terminálu.",
+ "terminalSymbolIcon.symbolTextForeground": "Barva popředí pro návrh ve formátu prostého textu Tyto ikony se zobrazí ve widgetu návrhů terminálu.",
+ "terminalSymbolIcon.symbolicLinkFileForeground": "Barva popředí ikony souboru symbolického odkazu. Tyto ikony se zobrazí ve widgetu návrhů terminálu.",
+ "terminalSymbolIcon.symbolicLinkFolderForeground": "Barva popředí ikony složky symbolického odkazu. Tyto ikony se zobrazí ve widgetu návrhů terminálu.",
+ "terminalSymbolIcon.tagForeground": "Barva popředí pro ikonu značky. Tyto ikony se zobrazí ve widgetu návrhů terminálu.",
+ "terminalSymbolInlineSuggestionIcon": "Ikona pro vložené návrhy ve widgetu návrhů terminálu",
+ "terminalSymbolMethodIcon": "Ikona pro metody ve widgetu návrhů terminálu",
+ "terminalSymbolOptionIcon": "Ikona pro možnosti ve widgetu návrhů terminálu",
+ "terminalSymbolOptionValue": "Ikona pro členy výčtu ve widgetu návrhů terminálu",
+ "terminalSymbolPullRequestDoneIcon": "Ikona pro dokončené žádosti o přijetí změn ve widgetu návrhů terminálu",
+ "terminalSymbolPullRequestIcon": "Ikona pro žádosti o přijetí změn ve widgetu návrhů terminálu",
+ "terminalSymbolRemoteIcon": "Ikona pro vzdálené ve widgetu návrhů terminálu.",
+ "terminalSymbolStashIcon": "Ikona pro dočasná úložiště ve widgetu návrhů terminálu.",
+ "terminalSymbolSymboTextIcon": "Ikona pro návrhy ve formátu prostého textu ve widgetu návrhů terminálu",
+ "terminalSymbolSymbolicLinkFileIcon": "Ikona pro soubory symbolických odkazů ve widgetu návrhů terminálu.",
+ "terminalSymbolSymbolicLinkFolderIcon": "Ikona pro složky symbolických odkazů ve widgetu návrhů terminálu.",
+ "terminalSymbolTagIcon": "Ikona pro značky ve widgetu návrhů terminálu."
+ },
+ "vs/workbench/contrib/terminalContrib/suggest/common/terminalSuggestConfiguration": {
+ "runOnEnter.always": "Vždy spustit při stisknutí klávesy Enter.",
+ "runOnEnter.exactMatch": "Spustit při stisknutí klávesy Enter, když je zadán celý návrh.",
+ "runOnEnter.exactMatchIgnoreExtension": "Spustit při stisknutí klávesy Enter, když je zadán celý návrh nebo když je zadán soubor bez přípony.",
+ "runOnEnter.never": "Nikdy nespouštět při stisknutí klávesy Enter.",
+ "suggest.cdPath": "Určuje, jestli se má povolit podpora $CDPATH, která zpřístupňuje podřízené složky v proměnné $CDPATH bez ohledu na aktuální pracovní adresář. $CDPATH má být ve Windows oddělená středníkem a na jiných platformách oddělená dvojtečkou.",
+ "suggest.cdPath.absolute": "Povolte funkci a použijte absolutní cesty. To je užitečné, když prostředí nativně nepodporuje $CDPATH.",
+ "suggest.cdPath.off": "Zakáže funkci.",
+ "suggest.cdPath.relative": "Povolte funkci a použijte relativní cesty.",
+ "suggest.enabled": "Povolí návrhy IntelliSense terminálu (Preview) pro podporovaná prostředí ({0}), když je možnost {1} nastavena na {2}.",
+ "suggest.inlineSuggestion": "Určuje, jestli se má detekovat vložený návrh prostředí a jak se má vyhodnotovat.",
+ "suggest.inlineSuggestion.alwaysOnTop": "Povolte funkci a vždy na začátek vložte vložený návrh.",
+ "suggest.inlineSuggestion.alwaysOnTopExceptExactMatch": "Povolí funkci a seřadí vložený návrh bez vynucení, aby byl nahoře. To znamená, že přesné shody budou nad vloženým návrhem.",
+ "suggest.inlineSuggestion.off": "Zakáže funkci.",
+ "suggest.insertTrailingSpace": "Určuje, zda se po přijetí návrhu automaticky vloží mezera a znovu aktivují návrhy. Ke složkám a složkám symbolických odkazů se nikdy nepřidá mezera na konci.",
+ "suggest.provider.lsp.description": "Zobrazit návrhy z jazykových serverů",
+ "suggest.provider.title": "Zobrazit návrhy z {0}",
+ "suggest.providers": "Zprostředkovatelé jsou ve výchozím nastavení povoleni. Vynecháte je nastavením ID zprostředkovatele na false.",
+ "suggest.providersEnabledByDefault": "Určuje, které návrhy se budou automaticky zobrazovat při psaní. Poskytovatelé návrhů jsou ve výchozím nastavení povoleni.",
+ "suggest.quickSuggestions": "Určuje, jestli se při psaní mají automaticky zobrazovat návrhy. Pozor také na nastavení {0}, které řídí, jestli budou návrhy vyvolány speciálními znaky.",
+ "suggest.quickSuggestions.arguments": "Povolí rychlé návrhy argumentů, cokoli za prvním slovem ve vstupu příkazového řádku.",
+ "suggest.quickSuggestions.commands": "Umožňuje povolit rychlé návrhy pro příkazy, první slovo ve vstupu příkazového řádku.",
+ "suggest.quickSuggestions.unknown": "Umožňuje povolit rychlé návrhy, když není jasné, jaký je nejlepší návrh. Pokud se jedná o soubory a složky, budou navrženy jako náhradní řešení.",
+ "suggest.runOnEnter": "Určuje, jestli se mají návrhy spustit okamžitě, když je k přijetí výsledku použita klávesa Enter (nikoli Tab).",
+ "suggest.showStatusBar": "Určuje, jestli se má zobrazit stavový řádek návrhů terminálu.",
+ "suggest.suggestOnTriggerCharacters": "Určuje, jestli se mají při napsání aktivačních znaků automaticky zobrazovat návrhy.",
+ "suggest.upArrowNavigatesHistory": "Určuje, jestli klávesa se šipkou nahoru prochází historii příkazů, když je fokus na prvním návrhu a navigace ještě neproběhla. Pokud je tato možnost nastavená na false, šipka nahoru přesune fokus na poslední návrh.",
+ "terminal.integrated.selectionMode": "Určuje, jak funguje výběr návrhů v integrovaném terminálu.",
+ "terminal.integrated.selectionMode.always": "Při automatické aktivaci IntelliSense vždy vyberte návrh. K přijetí prvního návrhu se dají použít klávesy Enter nebo Tab.",
+ "terminal.integrated.selectionMode.never": "Při automatické aktivaci IntelliSense nikdy nevybírejte návrh. Než budete moct přijmout aktivní návrh klávesou Enter nebo Tab, je třeba procházet seznam klávesou se šipkou dolů.",
+ "terminal.integrated.selectionMode.partial": "Při automatické aktivaci IntelliSense částečně vyberte návrh. K přijetí prvního návrhu se dá použít klávesa Tab. Aktivní návrh se dá přijmout i po přechodu na návrhy pomocí klávesy Enter.",
+ "terminalSuggestProvidersConfigurationTitle": "Zprostředkovatelé návrhů terminálu",
+ "terminalWindowsExecutableSuggestionSetting": "Sada spustitelných rozšíření příkazů systému Windows, která budou zahrnuta jako návrhy v terminálu\r\n\r\nVe výchozím nastavení je zahrnuto mnoho spustitelných souborů, které jsou uvedeny níže:\r\n\r\n{0}.\r\n\r\nPokud chcete rozšíření vyloučit, nastavte ho na false.\r\n\r\n. Pokud chcete do seznamu zahrnout položku, která není, přidejte ji a nastavte ji na true."
+ },
+ "vs/workbench/contrib/terminalContrib/typeAhead/common/terminalTypeAheadConfiguration": {
+ "terminal.integrated.localEchoEnabled": "Když by měla být povolená místní ozvěna. Tím se přepíše {0}.",
+ "terminal.integrated.localEchoEnabled.auto": "Povolená pouze pro vzdálené pracovní prostory",
+ "terminal.integrated.localEchoEnabled.off": "Vždy zakázaná",
+ "terminal.integrated.localEchoEnabled.on": "Vždy povolená",
+ "terminal.integrated.localEchoExcludePrograms": "Místní odezva bude zakázaná při nalezení některého z těchto názvů programů v názvu terminálu.",
+ "terminal.integrated.localEchoLatencyThreshold": "Doba prodlevy sítě v milisekundách, kdy se místní úpravy budou vypisovat na terminálu, aniž by se čekalo na potvrzení serveru. Když se nastaví na 0, místní výpis bude vždy zapnutý. Hodnota -1 ho zakáže.",
+ "terminal.integrated.localEchoStyle": "Styl místně vypisovaného textu na terminálu, tedy buď styl písma, nebo barva RGB."
+ },
+ "vs/workbench/contrib/terminalContrib/voice/browser/terminalVoice": {
+ "terminalVoiceTextInserted": "Vloženo: {0}"
+ },
+ "vs/workbench/contrib/terminalContrib/voice/browser/terminalVoiceActions": {
+ "enableExtension": "Povolit rozšíření",
+ "installExtension": "Nainstalovat rozšíření",
+ "terminal.voice.detail": "Podpora mikrofonu vyžaduje rozšíření.",
+ "terminal.voice.enableSpeechExtension": "Chcete povolit rozšíření pro řeč?",
+ "terminal.voice.installSpeechExtension": "Chcete nainstalovat rozšíření VS Code Speech od Microsoftu?",
+ "workbench.action.terminal.startDictation": "Spustit diktování v terminálu",
+ "workbench.action.terminal.stopDictation": "Zastavit diktování v terminálu"
+ },
+ "vs/workbench/contrib/terminalContrib/wslRecommendation/browser/terminal.wslRecommendation.contribution": {
+ "install": "Nainstalovat",
+ "useWslExtension.title": "Pro otevření terminálu ve WSL se doporučuje rozšíření {0}."
+ },
+ "vs/workbench/contrib/terminalContrib/zoom/browser/terminal.zoom.contribution": {
+ "fontZoomIn": "Zvětšit velikost písma",
+ "fontZoomOut": "Zmenšit velikost písma",
+ "fontZoomReset": "Obnovit velikost písma"
+ },
+ "vs/workbench/contrib/terminalContrib/zoom/common/terminal.zoom": {
+ "terminal.integrated.mouseWheelZoom": "Přiblížit písmo terminálu při podržení klávesy Ctrl a současném použití kolečka myši",
+ "terminal.integrated.mouseWheelZoom.mac": "Přiblížit písmo terminálu při podržení klávesy Cmd a současném použití kolečka myši"
+ },
+ "vs/workbench/contrib/testing/browser/codeCoverageDecorations": {
+ "coverage.branchCovered": "Větev {0} v umístění {1} byla spuštěna {2}krát.",
+ "coverage.branchCoveredYes": "Větev {0} v umístění {1} byla spuštěna.",
+ "coverage.branchNotCovered": "Větev {0} v {1} nebyla zahrnuta do rozsahu testování.",
+ "coverage.branches": "Tento počet větví v umístění {2} byl zahrnut do rozsahu testování: {0} z(e) {1}.",
+ "coverage.declExecutedCount": "{0} – provedeno {1}krát.",
+ "coverage.declExecutedNo": "Příkaz {0} nebyl proveden.",
+ "coverage.declExecutedYes": "Byl proveden příkaz {0}.",
+ "coverage.hideInline": "Skrýt vložené pokrytí",
+ "coverage.toggleInline": "Přepnout vložený rozsah testování",
+ "testing.coverageForTestAvailable": "Počet testů, které spustily kód v tomto souboru: {0}",
+ "testing.filterActionLabel": "Filtrovat pokrytí k testování",
+ "testing.goToNextMissedLine": "Přejít na další nepokrytý řádek",
+ "testing.goToNextMissedLineDesc": "Přejde na další řádek, který není pokrytý testy.",
+ "testing.goToPreviousMissedLine": "Přejít na předchozí nepokrytý řádek",
+ "testing.goToPreviousMissedLineDesc": "Přejde na předchozí řádek, který není pokrytý testy.",
+ "testing.hideCoverageInExplorer": "Skrýt pokrytí v Průzkumníku",
+ "testing.hideInlineCoverage": "Skrýt vložené pokrytí",
+ "testing.rerun": "Spustit znovu",
+ "testing.showInlineCoverage": "Zobrazit vložené pokrytí",
+ "testing.toggleCoverageInExplorerDesc": "Umožňuje přepnout zobrazení pokrytí testu v zobrazení Průzkumníku souborů.",
+ "testing.toggleCoverageInExplorerTitle": "Přepnout pokrytí v Průzkumníku",
+ "testing.toggleInlineCoverage": "Přepnout vložené zobrazení",
+ "testing.toggleToolbarDesc": "Přepne panel pokrytí jedním prstem v editoru.",
+ "testing.toggleToolbarTitle": "Panel nástrojů pokrytí testu"
+ },
+ "vs/workbench/contrib/testing/browser/codeCoverageDisplayUtils": {
+ "changePerTestFilter": "Kliknutím zobrazíte pokrytí pro jeden test.",
+ "testing.allTests": "Všechny testy",
+ "testing.coverageForTest": "Zobrazuje se: {0}.",
+ "testing.percentCoverage": "{0} – pokrytí",
+ "testing.pickTest": "Vyberte test, pro který chcete zobrazit pokrytí."
+ },
"vs/workbench/contrib/testing/browser/icons": {
"filterIcon": "Ikona pro akci Filtrovat v testovacím zobrazení",
"hiddenIcon": "Ikona, která se zobrazuje vedle zobrazených skrytých testů",
"testViewIcon": "Zobrazit ikonu zobrazení testů",
"testingCancelIcon": "Ikona pro zrušení probíhajících testovacích běhů",
"testingCancelRefreshTests": "Ikona na tlačítku pro zrušení aktualizací testů.",
+ "testingCoverage": "Ikona představující pokrytí testu",
+ "testingCoverageIcon": "Ikona akce Spustit test s rozsahem testování",
"testingDebugAllIcon": "Ikona akce Ladit všechny testy.",
"testingDebugIcon": "Ikona akce ladění testu",
"testingErrorIcon": "Ikona zobrazovaná pro testy, které mají chybu",
"testingFailedIcon": "Ikona zobrazovaná pro neúspěšné testy",
+ "testingMissingBranch": "Ikona představující blok bez rozsahu nezahrnutý do rozsahu testování",
"testingPassedIcon": "Ikona zobrazovaná pro úspěšné testy",
"testingQueuedIcon": "Ikona zobrazovaná pro testy zařazené do fronty",
"testingRefreshTests": "Ikona na tlačítku pro aktualizaci testů.",
+ "testingRerunIcon": "Ikona akce „Znovu spustit testy“.",
+ "testingResultsIcon": "Ikony pro výsledky testu.",
"testingRunAllIcon": "Ikona akce spuštění všech testů",
+ "testingRunAllWithCoverageIcon": "Ikona akce Spustit všechny testy s rozsahem testování",
"testingRunIcon": "Ikona akce spuštění testu",
"testingShowAsList": "Ikona zobrazovaná v případě, že Průzkumník testů je zakázaný jako strom.",
"testingShowAsTree": "Ikona zobrazovaná v případě, že Průzkumník testů je zakázaný jako seznam.",
"testingSkippedIcon": "Ikona zobrazovaná pro přeskočené testy",
+ "testingTurnContinuousRunIsOn": "Ikona při zapnutém nepřetržitém spuštění pro testovací web.",
+ "testingTurnContinuousRunOff": "Ikona pro vypnutí průběžných testovacích běhů.",
+ "testingTurnContinuousRunOn": "Ikona pro zapnutí průběžných testovacích běhů.",
"testingUnsetIcon": "Ikona zobrazovaná pro testy, které jsou ve stavu, kdy nejsou nastavené",
- "testingUpdateProfiles": "Ikona zobrazená pro aktualizaci testovacích profilů."
+ "testingUpdateProfiles": "Ikona zobrazená pro aktualizaci testovacích profilů.",
+ "testingWasCovered": "Ikona, která představuje, že byl element zahrnut do rozsahu testování"
+ },
+ "vs/workbench/contrib/testing/browser/testCoverageBars": {
+ "branchCoverage": "Pokryté větve: {0}/{1} ({2})",
+ "functionCoverage": "Pokryté funkce: {0}/{1} ({2})",
+ "statementCoverage": "Pokryté příkazy: {0}/{1} ({2})"
+ },
+ "vs/workbench/contrib/testing/browser/testCoverageView": {
+ "filteredToTest": "Zobrazuje se pokrytí pro \"{0}\".",
+ "functionsWithoutCoverage": "Deklarace ({0}) bez rozsahu testování...",
+ "loadingCoverageDetails": "Načítají se podrobnosti rozsahu testování...",
+ "testCoverageItemLabel": "Pokrytí {0}: {0} %",
+ "testCoverageTreeLabel": "Průzkumník pokrytí testu",
+ "testing.changeCoverageFilter": "Filtrovat pokrytí podle testu",
+ "testing.changeCoverageSort": "Změnit pořadí řazení",
+ "testing.coverageCollapseAll": "Sbalit všechny pokrytí",
+ "testing.coverageSortByCoverage": "Seřadit podle rozsahu testování",
+ "testing.coverageSortByCoverageDescription": "Soubory a deklarace jsou seřazené podle celkového rozsahu testování.",
+ "testing.coverageSortByLocation": "Seřadit podle umístění",
+ "testing.coverageSortByLocationDescription": "Soubory jsou seřazené abecedně, deklarace jsou seřazené podle pozice.",
+ "testing.coverageSortByName": "Seřadit podle názvu",
+ "testing.coverageSortByNameDescription": "Soubory a funkce jsou seřazené abecedně.",
+ "testing.coverageSortPlaceholder": "Seřadit zobrazení rozsahu testování..."
},
"vs/workbench/contrib/testing/browser/testExplorerActions": {
"configureProfile": "Vyberte profil, který chcete aktualizovat.",
+ "coverageSelectedTests": "Spustit testy s rozsahem testování",
"debug test": "Ladit test",
"debugAllTests": "Ladit všechny testy",
"debugSelectedTests": "Ladit testy",
"discoveringTests": "Zjišťují se testy.",
+ "getExplorerSelection": "Získat výběr Průzkumníka",
+ "getSelectedProfiles": "Získat vybrané profily",
"hideTest": "Skrýt test",
+ "noCoverageTestProvider": "V tomto pracovním prostoru nebyly nalezeny žádné testy se spouštěči pro rozsah testování. Možná bude nutné nainstalovat rozšíření poskytovatele testů.",
"noDebugTestProvider": "V tomto pracovním prostoru se nenašly žádné laditelné testy. Možná bude nutné nainstalovat rozšíření poskytovatele testů.",
+ "noRelatedCode": "Nenašel se žádný související kód.",
+ "noTestFound": "Nenašly se žádné související testy.",
"noTestProvider": "V tomto pracovním prostoru se nenašly žádné testy. Možná bude nutné nainstalovat rozšíření poskytovatele testů.",
+ "noTests": "Ve vybraném souboru nebo složce se nenašly žádné testy.",
+ "noTestsAtCursor": "Nenašly se zde žádné testy.",
+ "noTestsInFile": "V tomto souboru nebyly nalezeny žádné testy.",
+ "relatedCode": "Související kód",
+ "relatedTests": "Související testy",
"run test": "Spustit test",
+ "run with cover test": "Spustit test s rozsahem testování",
"runAllTests": "Spustit všechny testy",
+ "runAllWithCoverage": "Spustit všechny testy s rozsahem testování",
"runSelectedTests": "Spustit testy",
"testing.cancelRun": "Zrušit testovací běh",
"testing.cancelTestRefresh": "Zrušit aktualizaci testu",
+ "testing.clearCoverage": "Vymazat rozsah testování",
"testing.clearResults": "Vymazat všechny výsledky",
"testing.collapseAll": "Sbalit všechny testy",
"testing.configureProfile": "Konfigurovat profily testů",
+ "testing.coverageAtCursor": "Spustit test v místě kurzoru s rozsahem testování",
+ "testing.coverageCurrentFile": "Spustit testy s rozsahem testování v aktuálním souboru",
+ "testing.coverageLastRun": "Znovu spustit poslední spuštění s rozsahem testování",
"testing.debugAtCursor": "Ladit test v místě kurzoru",
"testing.debugCurrentFile": "Ladit testy v rámci aktuálního souboru",
"testing.debugFailTests": "Ladit neúspěšné testy",
+ "testing.debugFailedFromLastRun": "Ladit neúspěšné testy z posledního spuštění",
"testing.debugLastRun": "Ladit poslední běh",
"testing.editFocusedTest": "Přejít na test",
+ "testing.goToRelatedCode": "Přejít na související kód",
+ "testing.goToRelatedTest": "Přejít na související test",
+ "testing.noCoverage": "Pro poslední testovací běh nejsou k dispozici žádné informace o rozsahu testování.",
+ "testing.noProfiles": "Nenašly se žádné profily s průběžným spouštěním testů.",
+ "testing.openCoverage": "Otevřít rozsah testování",
"testing.openOutputPeek": "Náhled výstupu",
+ "testing.peekToRelatedCode": "Náhled souvisejícího kódu",
+ "testing.peekToRelatedTest": "Náhled souvisejícího testu",
"testing.reRunFailTests": "Spustit znovu neúspěšné testy",
+ "testing.reRunFailedFromLastRun": "Spustit znovu neúspěšné testy z posledního spuštění",
"testing.reRunLastRun": "Spustit znovu poslední běh",
"testing.refreshTests": "Aktualizovat testy",
"testing.runAtCursor": "Spustit test v místě kurzoru",
"testing.runCurrentFile": "Spustit testy v rámci aktuálního souboru",
"testing.runUsing": "Provést pomocí profilu...",
"testing.searchForTestExtension": "Hledat podle rozšíření testu",
+ "testing.selectContinuousProfiles": "Vyberte profily, které se mají spustit při změně souborů:",
"testing.selectDefaultTestProfiles": "Vybrat výchozí profil",
"testing.showMostRecentOutput": "Zobrazit výstup",
"testing.sortByDuration": "Seřadit podle doby trvání",
"testing.sortByLocation": "Seřadit podle umístění",
"testing.sortByStatus": "Seřadit podle stavu",
+ "testing.startContinuous": "Spustit průběžné spuštění",
+ "testing.startContinuousRunUsing": "Spustit nepřetržité spuštění pomocí…",
+ "testing.stopContinuous": "Zastavit průběžné spuštění",
+ "testing.toggleContinuousRunOff": "Vypnout nepřetržité spuštění",
+ "testing.toggleContinuousRunOn": "Zapnout nepřetržité spuštění",
"testing.toggleInlineTestOutput": "Přepnout výstup vloženého testu",
+ "testing.toggleResultsViewLayout": "Přepnout umístění stromu",
"testing.viewAsList": "Zobrazit jako seznam",
"testing.viewAsTree": "Zobrazit jako strom",
"unhideAllTests": "Zobrazit všechny testy",
@@ -9436,7 +15659,9 @@
"noTestProvidersRegistered": "V tomto pracovním prostoru se zatím nenašly žádné testy.",
"searchForAdditionalTestExtensions": "Nainstalovat dodatečná testovací rozšíření",
"test": "Testování",
- "testExplorer": "Průzkumník testů"
+ "testCoverage": "Pokrytí testu",
+ "testExplorer": "Průzkumník testů",
+ "testResultsPanelName": "Výsledky testů"
},
"vs/workbench/contrib/testing/browser/testingConfigurationUi": {
"testConfigurationUi.pick": "Vyberte testovací profil, který chcete použít.",
@@ -9444,6 +15669,7 @@
},
"vs/workbench/contrib/testing/browser/testingDecorations": {
"actual.title": "Skutečný",
+ "coverage test": "Spustit s rozsahem testování",
"debug all test": "Ladit všechny testy",
"debug test": "Ladit test",
"expected.title": "Očekáváno",
@@ -9451,19 +15677,24 @@
"peekTestOutout": "Náhled výstupu testu",
"reveal test": "Zobrazit v Průzkumníkovi testů",
"run all test": "Spustit všechny testy",
+ "run all test with coverage": "Spustit všechny testy s rozsahem testování",
"run test": "Spustit test",
+ "selectTestToRun": "Vyberte test, který se má spustit.",
+ "testOverflowItems": "Další testy ({0})...",
+ "testing.cancelRun": "Zrušit testovací běh",
"testing.gutterMsg.contextMenu": "Kliknutím zobrazíte možnosti testu.",
+ "testing.gutterMsg.coverage": "Kliknutím spustíte testy s rozsahem testování, kliknutím pravým tlačítkem myši zobrazíte další možnosti.",
"testing.gutterMsg.debug": "Kliknutím spustíte ladění testů. Kliknutím pravým tlačítkem myši zobrazíte další možnosti.",
"testing.gutterMsg.run": "Kliknutím spustíte testy, kliknutím pravým tlačítkem myši zobrazíte další možnosti.",
"testing.runUsing": "Provést pomocí profilu..."
},
"vs/workbench/contrib/testing/browser/testingExplorerFilter": {
- "filter": "Filtr",
"testExplorerFilter": "Filtrovat (například text, !exclude, @tag)",
"testExplorerFilterLabel": "Filtrovat text pro testy v průzkumníkovi",
"testing.filters.currentFile": "Zobrazit pouze v aktivním souboru",
"testing.filters.fuzzyMatch": "Přibližná shoda",
"testing.filters.menu": "Další filtry...",
+ "testing.filters.openedFiles": "Zobrazit jenom v otevřených souborech",
"testing.filters.removeTestExclusions": "Zobrazit všechny testy",
"testing.filters.showExcludedTests": "Zobrazit skryté testy",
"testing.filters.showOnlyExecuted": "Zobrazit pouze provedené testy",
@@ -9472,86 +15703,139 @@
"vs/workbench/contrib/testing/browser/testingExplorerView": {
"configureTestProfiles": "Konfigurovat profily testů",
"defaultTestProfile": "{0} (Výchozí)",
+ "noResults": "Zatím žádné výsledky testů.",
"selectDefaultConfigs": "Vybrat výchozí profil",
"testExplorer": "Průzkumník testů",
"testing.treeElementLabelDuration": "{0}, v {1}",
+ "testing.treeElementLabelOutdated": "{0}, zastaralý výsledek",
+ "testingContinuousBadge": "Probíhá sledování změn testů",
+ "testingCountBadgeFailed": "Neúspěšné testy: {0}",
+ "testingCountBadgePassed": "Úspěšné testy: {0}",
+ "testingCountBadgeSkipped": "Přeskočené testy: {0}",
"testingFindExtension": "Zobrazit testy pracovní prostoru",
- "testingNoTest": "V tomto souboru nebyly nalezeny žádné testy."
+ "testingNoTest": "V tomto souboru nebyly nalezeny žádné testy.",
+ "testingSelectConfig": "Vybrat konfiguraci..."
},
"vs/workbench/contrib/testing/browser/testingOutputPeek": {
"close": "Zavřít",
+ "testOutputTitle": "Výstup testu",
+ "testing.collapsePeekStack": "Sbalit bloky zásobníku",
+ "testing.goToNextMessage": "Přejít na další selhání testu",
+ "testing.goToNextMessage.description": "Zobrazí další zprávu o selhání ve vašem souboru.",
+ "testing.goToPreviousMessage": "Přejít na předchozí selhání testu",
+ "testing.goToPreviousMessage.description": "Zobrazí předchozí zprávu o selhání ve vašem souboru.",
+ "testing.markdownPeekError": "Nepodařilo se otevřít náhled markdownu: {0}\r\n\r\nUjistěte se prosím, že je povolené rozšíření markdownu.",
+ "testing.openMessageInEditor": "Otevřít v editoru",
+ "testing.toggleTestingPeekHistory": "Přepnout historii testů v náhledu",
+ "testing.toggleTestingPeekHistory.description": "Zobrazí nebo skryje historii testovacích běhů v zobrazení náhledu."
+ },
+ "vs/workbench/contrib/testing/browser/testingViewPaneContainer": {
+ "testing": "Testování"
+ },
+ "vs/workbench/contrib/testing/browser/testResultsView/testResultsOutput": {
+ "caseNoOutput": "Testovací případ neohlásil žádný výstup.",
+ "runNoOutput": "Testovací běh neevidoval žádný výstup.",
+ "runNoOutputForPast": "Výstup testu je k dispozici pouze pro nové testovací běhy.",
+ "testingOutputActual": "Skutečný výsledek",
+ "testingOutputExpected": "Očekávaný výsledek"
+ },
+ "vs/workbench/contrib/testing/browser/testResultsView/testResultsTree": {
+ "closeTestCoverage": "Zavřít pokrytí testy",
"debug test": "Ladit test",
"messageMoreLines1": "+ 1 další řádek",
"messageMoreLinesN": "+ {0} dalších řádků",
+ "nOlderResults": "Starší výsledky: {0}",
+ "oneOlderResult": "1 starší výsledek",
+ "openTestCoverage": "Zobrazit pokrytí testy",
"run test": "Spustit test",
- "testUnnamedTask": "Nepojmenovaný úkol",
- "testing.debugLastRun": "Ladit testovací běh",
- "testing.goToFile": "Přejít na soubor",
- "testing.goToNextMessage": "Přejít na další selhání testu",
- "testing.goToPreviousMessage": "Přejít na předchozí selhání testu",
- "testing.openMessageInEditor": "Otevřít v editoru",
- "testing.reRunLastRun": "Znovu spustit testovací běh",
+ "testing.cancelRun": "Zrušit testovací běh",
+ "testing.debugFailedFromLastRun": "Ladit neúspěšné testy",
+ "testing.debugLastRun": "Ladit poslední běh",
+ "testing.debugTest": "Ladit test",
+ "testing.goToError": "Přejít na chybu",
+ "testing.goToTest": "Přejít na test",
+ "testing.reRunFailedFromLastRun": "Spustit znovu neúspěšné testy",
+ "testing.reRunLastRun": "Spustit znovu poslední běh",
+ "testing.reRunTest": "Znovu spustit test",
"testing.revealInExplorer": "Zobrazit v Průzkumníkovi testů",
"testing.showResultOutput": "Zobrazit výstup výsledku",
- "testing.toggleTestingPeekHistory": "Přepnout historii testů v náhledu",
- "testingOutputActual": "Skutečný výsledek",
- "testingOutputExpected": "Očekávaný výsledek",
"testingPeekLabel": "Zprávy výsledků testu"
},
- "vs/workbench/contrib/testing/browser/testingOutputTerminalService": {
- "runFinished": "Testovací běh byl dokončen v {0}",
- "runNoOutout": "Testovací běh neevidoval žádný výstup.",
- "testNoRunYet": "\r\nZatím nebyly spuštěny žádné testy.\r\n",
- "testOutputTerminalTitle": "Výstup testu",
- "testOutputTerminalTitleWithDate": "Výstup testu v {0}"
- },
- "vs/workbench/contrib/testing/browser/testingProgressUiService": {
- "testProgress.completed": "Počet úspěšných testů: {0}/{1} ({2} %)",
- "testProgress.running": "Spouštějí se testy, počet úspěšných: {0}/{1} ({2} %)",
- "testProgress.runningInitial": "Spouštějí se testy...",
- "testProgressWithSkip.completed": "Počet úspěšných testů: {0}/{1} ({2} %, přeskočeno: {3})",
- "testProgressWithSkip.running": "Spouštějí testy, počet úspěšných testů: {0}/{1} ({2} %, přeskočeno: {3})"
- },
- "vs/workbench/contrib/testing/browser/testingViewPaneContainer": {
- "testing": "Testování"
+ "vs/workbench/contrib/testing/browser/testResultsView/testResultsViewContent": {
+ "testFollowup.more": "+{0} další(ch)...",
+ "testing.callStack.debug": "Ladit test",
+ "testing.callStack.run": "Znovu spustit test"
},
"vs/workbench/contrib/testing/browser/theme": {
+ "testing.coverCountBadgeBackground": "Pozadí pro odznáček označující počet spuštění",
+ "testing.coverCountBadgeForeground": "Popředí pro odznáček označující počet spuštění",
+ "testing.coveredBackground": "Barva pozadí textu, který byl zahrnut do rozsahu testování",
+ "testing.coveredBorder": "Barva ohraničení textu, který byl zahrnut do rozsahu testování",
+ "testing.coveredGutterBackground": "Barva mezery u okraje u oblastí, ve kterých byl kód zahrnut do rozsahu testování",
"testing.iconErrored": "Barva ikony chybného testu v Průzkumníkovi testů",
+ "testing.iconErrored.retired": "Vyřazená barva ikony chybného testu v Průzkumníkovi testů",
"testing.iconFailed": "Barva ikony neúspěšného testu v Průzkumníkovi testů",
+ "testing.iconFailed.retired": "Vyřazená barva ikony neúspěšného testu v Průzkumníkovi testů",
"testing.iconPassed": "Barva ikony úspěšného testu v Průzkumníkovi testů",
+ "testing.iconPassed.retired": "Vyřazená barva ikony úspěšného testu v Průzkumníkovi testů",
"testing.iconQueued": "Barva ikony testu ve frontě v Průzkumníkovi testů",
+ "testing.iconQueued.retired": "Vyřazená barva ikony testu ve frontě v Průzkumníkovi testů",
"testing.iconSkipped": "Barva ikony přeskočeného testu v Průzkumníkovi testů",
+ "testing.iconSkipped.retired": "Vyřazená barva ikony přeskočeného testu v Průzkumníkovi testů",
"testing.iconUnset": "Barva ikony nenastaveného testu v Průzkumníkovi testů",
- "testing.message.error.decorationForeground": "Barva textu chybových zpráv testu zobrazených jako vložené v editoru",
+ "testing.iconUnset.retired": "Vyřazená barva ikony nenastaveného testu v Průzkumníkovi testů",
+ "testing.message.error.badgeBackground": "Barva pozadí chybových zpráv testu zobrazovaných v editoru jako vložené",
+ "testing.message.error.badgeBorder": "Barva ohraničení chybových zpráv testu zobrazovaných v editoru jako vložené",
+ "testing.message.error.badgeForeground": "Barva textu chybových zpráv testu zobrazených jako vložené v editoru",
"testing.message.error.marginBackground": "Barva okraje vedle chybových zpráv zobrazených jako vložené v editoru",
"testing.message.info.decorationForeground": "Barva textu informačních zpráv testu zobrazených jako vložené v editoru",
"testing.message.info.marginBackground": "Barva okraje vedle informačních zpráv zobrazených jako vložené v editoru",
+ "testing.messagePeekBorder": "Barva ohraničení zobrazení náhledu a šipky při prohlížení náhledu protokolované zprávy",
+ "testing.messagePeekHeaderBackground": "Barva ohraničení zobrazení náhledu a šipky při prohlížení náhledu protokolované zprávy",
"testing.peekBorder": "Barva ohraničení a šipky zobrazení náhledu",
- "testing.runAction": "Barva pro ikony spustit v editoru"
+ "testing.runAction": "Barva pro ikony spustit v editoru",
+ "testing.uncoveredBackground": "Barva pozadí textu, který nebyl zahrnut do rozsahu testování",
+ "testing.uncoveredBorder": "Barva ohraničení textu, který nebyl zahrnut do rozsahu testování",
+ "testing.uncoveredBranchBackground": "Pozadí widgetu zobrazeného pro větev nezahrnutou do rozsahu testování",
+ "testing.uncoveredGutterBackground": "Barva mezery u okraje u oblastí, ve kterých kód nebyl zahrnut do rozsahu testování"
},
"vs/workbench/contrib/testing/common/configuration": {
"testConfigurationTitle": "Testování",
- "testing.alwaysRevealTestOnStateChange": "Když je zapnuté nastavení #testing.followRunningTest#, vždy zobrazit spuštěný test. Pokud je toto nastavení vypnuté, zobrazí se jen neúspěšné testy.",
- "testing.autoRun.delay": "Jak dlouho čekat (v milisekundách) poté, co se test označí jako zastaralý a spustí se nový běh.",
- "testing.autoRun.mode": "Určuje, které testy se mají automaticky spustit.",
- "testing.autoRun.mode.allInWorkspace": "Při přepnutí automatického spuštění automaticky spustí všechny zjištěné testy. Znovu spustí jednotlivé změněné testy.",
- "testing.autoRun.mode.onlyPreviouslyRun": "Znovu spustí jednotlivé změněné testy. Nebude automaticky spouštět testy, které se ještě neprovedly.",
+ "testing.ShowCoverageInExplorer": "Určuje, jestli se má dole v zobrazení Průzkumník souborů zobrazovat pokrytí testy.",
+ "testing.alwaysRevealTestOnStateChange": "Když je zapnuté nastavení {0}, vždy zobrazit spuštěný test. Pokud je toto nastavení vypnuté, zobrazí se jen neúspěšné testy.",
"testing.automaticallyOpenPeekView": "Nakonfiguruje, kdy se automaticky otevře zobrazení náhledu chyby.",
"testing.automaticallyOpenPeekView.failureAnywhere": "Otevřít automaticky bez ohledu na to, kde došlo k chybě",
"testing.automaticallyOpenPeekView.failureInVisibleDocument": "Otevřít automaticky, když ve viditelném dokumentu neproběhne úspěšně test",
"testing.automaticallyOpenPeekView.never": "Nikdy automaticky neotevírat.",
- "testing.automaticallyOpenPeekViewDuringAutoRun": "Určuje, jestli se má v režimu automatického spuštění automaticky otevřít zobrazení náhledu.",
+ "testing.automaticallyOpenPeekViewDuringContinuousRun": "Určuje, jestli se má v režimu průběžného spuštění automaticky otevřít zobrazení náhledu.",
+ "testing.countBadge": "Řídí odznáček počtu na ikoně Testování na panelu Aktivity.",
+ "testing.countBadge.failed": "Zobrazit počet neúspěšných testů",
+ "testing.countBadge.off": "Zakázat odznáček počtu testování",
+ "testing.countBadge.passed": "Zobrazit počet úspěšných testů",
+ "testing.countBadge.skipped": "Zobrazit počet přeskočených testů",
+ "testing.coverageBarThresholds": "Umožňuje nakonfigurovat barvy používané pro procenta v pruzích rozsahu testování.",
+ "testing.coverageToolbarEnabled": "Určuje, jestli se v editoru zobrazí panel nástrojů pokrytí.",
"testing.defaultGutterClickAction": "Určuje akci, která se má provést při kliknutí levým tlačítkem myši na dekoraci testu na hřbetu.",
"testing.defaultGutterClickAction.contextMenu": "Pokud chcete zobrazit další možnosti, otevřete místní nabídku.",
+ "testing.defaultGutterClickAction.coverage": "Umožňuje spustit test s rozsahem testování.",
"testing.defaultGutterClickAction.debug": "Spustit ladění testu",
"testing.defaultGutterClickAction.run": "Spustit test",
+ "testing.displayedCoveragePercent": "Nakonfiguruje, jaké procento se ve výchozím nastavení zobrazí pro pokrytí testu.",
+ "testing.displayedCoveragePercent.minimum": "Minimální pokrytí příkazů, funkcí a větví.",
+ "testing.displayedCoveragePercent.statement": "Pokrytí příkazu.",
+ "testing.displayedCoveragePercent.totalCoverage": "Výpočet kombinovaného pokrytí příkazů, funkcí a větví.",
"testing.followRunningTest": "Určuje, zda má být spuštěný test zahájen v zobrazení Průzkumníka testů.",
"testing.gutterEnabled": "Určuje, zda jsou ve hřbetu editoru zobrazeny kontrolní dekorace.",
"testing.openTesting": "Určuje, kdy se má otevřít testovací zobrazení.",
"testing.openTesting.neverOpen": "Nikdy neotevírat testovací zobrazení automaticky",
- "testing.openTesting.openOnTestFailure": "Otevřít testovací zobrazení při jakémkoli selhání testu",
- "testing.openTesting.openOnTestStart": "Otevřít testovací zobrazení při spuštění testů",
- "testing.saveBeforeTest": "Určuje, jestli se mají před spuštěním testu uložit všechny editory s neuloženými změnami."
+ "testing.openTesting.openExplorerOnTestStart": "Otevření průzkumník testů při spuštění testů",
+ "testing.openTesting.openOnTestFailure": "Otevření zobrazení výsledků testu při jakémkoli selhání testu",
+ "testing.openTesting.openOnTestStart": "Otevření zobrazení výsledků testu při spuštění testů",
+ "testing.resultsView.layout": "Určuje rozložení zobrazení Výsledky testu.",
+ "testing.resultsView.layout.treeLeft": "Zobrazí strom testovacího běhu na levé straně s podrobnostmi vpravo.",
+ "testing.resultsView.layout.treeRight": "Zobrazí strom testovacího běhu na pravé straně s podrobnostmi vlevo.",
+ "testing.saveBeforeTest": "Určuje, jestli se mají před spuštěním testu uložit všechny editory s neuloženými změnami.",
+ "testing.showAllMessages": "Určuje, jestli se mají zobrazovat zprávy ze všech testovacích běhů."
},
"vs/workbench/contrib/testing/common/constants": {
"testGroup.coverage": "Pokrytí",
@@ -9566,65 +15850,123 @@
"testState.unset": "Zatím nespuštěno",
"testing.treeElementLabel": "{0} ({1})"
},
- "vs/workbench/contrib/testing/common/testResult": {
- "runFinished": "Testovací běh v {0}"
- },
- "vs/workbench/contrib/testing/common/testServiceImpl": {
- "testError": "Při pokusu o spuštění testů došlo k chybě: {0}",
- "testTrust": "Spuštěné testy můžou ve vašem pracovním prostoru spustit kód."
+ "vs/workbench/contrib/testing/common/testingChatAgentTool": {
+ "runTestTool.confirm.all": "Model chce spustit všechny testy.",
+ "runTestTool.confirm.invocation": "Spouštějí se testy…",
+ "runTestTool.confirm.message": "Model chce spouštět testy v {0}.",
+ "runTestTool.confirm.title": "Povolit testovací běh?",
+ "runTestTool.invoke.cancelled": "Testovací běh byl zrušen.",
+ "runTestTool.invoke.filesProgress": "Hledají se testy…",
+ "runTestTool.invoke.filterProgress": "Filtrují se testy...",
+ "runTestTool.invoke.progress": "Spouští se testovací běh…",
+ "runTestTool.noRunStarted": "Nebyl spuštěn žádný testovací běh. Může se jednat o problém s vaším spouštěčem testů nebo rozšířením.",
+ "runTestTool.noTests": "V souborech se nenašly žádné testy",
+ "runTestTool.userDescription": "Run unit tests (optionally with coverage)"
+ },
+ "vs/workbench/contrib/testing/common/testingContentProvider": {
+ "runNoOutout": "Testovací běh neevidoval žádný výstup."
},
"vs/workbench/contrib/testing/common/testingContextKeys": {
+ "testing.activeEditorHasTests": "Určuje, jestli se v aktuálním editoru nacházejí nějaké testy.",
+ "testing.canGoToRelatedCode": "Určuje, jestli kontroler implementuje funkci pro vyhledání kódu souvisejícího s testem.",
+ "testing.canGoToRelatedTest": "Určuje, jestli kontroler implementuje funkci pro vyhledání testů souvisejících s kódem.",
"testing.canRefresh": "Určuje, zda má některý kontroler testů připojenou obslužnou rutinu aktualizace.",
"testing.controllerId": "ID kontroleru aktuální testovací položky",
+ "testing.coverageToolbarEnabled": "Označuje, jestli je povolený panel nástrojů pokrytí.",
+ "testing.cursorInsideTestRange": "Určuje, jestli je kurzor aktuálně uvnitř testovacího rozsahu.",
"testing.hasConfigurableConfig": "Označuje, zda lze konfigurovat jakoukoli konfiguraci testu.",
"testing.hasCoverableTests": "Označuje, zda nějaký kontroler testů zaregistroval konfiguraci pokrytí.",
+ "testing.hasCoverageInFile": "Indikuje, že v aktuálním editoru bylo hlášeno pokrytí.",
"testing.hasDebuggableTests": "Určuje, zda nějaký kontroler testů zaregistroval konfiguraci ladění.",
+ "testing.hasInlineCoverageDetails": "Určuje, jestli je pro vložené zobrazení k dispozici podrobné pokrytí podle řádků.",
"testing.hasNonDefaultConfig": "Označuje, zda některý kontroler testů zaregistroval nevýchozí konfiguraci.",
+ "testing.hasPerTestCoverage": "Označuje, jestli je k dispozici pokrytí pro jednotlivé testy.",
"testing.hasRunnableTests": "Určuje, zda nějaký kontroler testů zaregistroval konfiguraci spuštení.",
+ "testing.inlineCoverageEnabled": "Určuje, jestli se má zobrazit vložené pokrytí.",
+ "testing.isContinuousModeOn": "Určuje, zda je zapnutý režim průběžného testování.",
+ "testing.isCoverageFilteredToTest": "Označuje, jestli se pokrytí vyfiltrovalo na jeden test.",
+ "testing.isParentRunningContinuously": "Určuje, jestli je nadřazený prvek testu nepřetržitě spuštěný, a je nastavený v kontextu nabídky testovacích položek.",
"testing.isRefreshing": "Určuje, zda některý kontroler testů aktuálně aktualizuje testy.",
+ "testing.isTestCoverageOpen": "Udává, jestli je otevřená sestava pokrytí testu.",
+ "testing.peekHasStack": "Určuje, jestli zpráva zobrazená v zobrazení náhledu obsahuje trasování zásobníku",
"testing.peekItemType": "Typ položky v zobrazení náhledu výstupu. Buď \"test\", \"zpráva\", \"úkol\" nebo \"výsledek\".",
+ "testing.profile.context.group": "Typ nabídky, ve které existuje podnabídka konfigurace testovacího profilu: spuštění, ladění nebo pokrytí.",
+ "testing.supportsContinuousRun": "Označuje, jestli je podporovaný průběžný testovací běh.",
"testing.testId": "ID aktuální testovací položky, které se nastavuje, když se vytvářejí nebo otevírají nabídky v testovacích položkách",
"testing.testItemHasUri": "Logická hodnota označující, jestli má položka testu definovaný identifikátor URI",
- "testing.testItemIsHidden": "Logická hodnota označující, zda je testovací položka skrytá"
+ "testing.testItemIsHidden": "Logická hodnota označující, zda je testovací položka skrytá",
+ "testing.testMessage": "Hodnota nastavená v „testMessage.contextValue“, k dispozici v editoru/obsahu a testování/zpráva/kontext",
+ "testing.testResultOutdated": "Hodnota dostupná v editoru/obsahu a testování/zprávě/kontextu, když je výsledek zastaralý",
+ "testing.testResultState": "Hodnota dostupná pro testování/položku/výsledek označující stav položky"
+ },
+ "vs/workbench/contrib/testing/common/testingProgressMessages": {
+ "testProgress.completed": "Počet úspěšných testů: {0}/{1} ({2} %)",
+ "testProgress.running": "Spouštějí se testy, počet úspěšných: {0}/{1} ({2} %)",
+ "testProgress.runningInitial": "Spouštějí se testy…",
+ "testProgressWithSkip.completed": "Počet úspěšných testů: {0}/{1} ({2} %, přeskočeno: {3})",
+ "testProgressWithSkip.running": "Spouštějí testy, počet úspěšných testů: {0}/{1} ({2} %, přeskočeno: {3})"
+ },
+ "vs/workbench/contrib/testing/common/testResult": {
+ "runFinished": "Testovací běh v {0}",
+ "testUnnamedTask": "Nepojmenovaná úloha"
+ },
+ "vs/workbench/contrib/testing/common/testServiceImpl": {
+ "testError": "Při pokusu o spuštění testů došlo k chybě: {0}",
+ "testTrust": "Spuštěné testy můžou ve vašem pracovním prostoru spustit kód."
+ },
+ "vs/workbench/contrib/testing/common/testTypes": {
+ "testing.runProfileBitset.coverage": "Pokrytí",
+ "testing.runProfileBitset.debug": "Ladit",
+ "testing.runProfileBitset.run": "Spustit"
},
"vs/workbench/contrib/themes/browser/themes.contribution": {
+ "browseColorThemeInMarketPlace.label": "Procházení barevných motivů na Marketplace",
"browseColorThemes": "Procházet další barevné motivy…",
"browseProductIconThemes": "Vyhledat další motivy ikon produktu...",
+ "cannotToggle": "Pokud je v nastavení povolená možnost {0}, nejde přepínat mezi světlým a tmavým motivem.",
"defaultProductIconThemeLabel": "Výchozí",
"fileIconThemeCategory": "motivy ikon souboru",
"generateColorTheme.label": "Generovat barevný motiv z aktuálního nastavení",
+ "goToSetting": "Otevřít nastavení",
"installColorThemes": "Nainstalovat další barevné motivy...",
+ "installExtension.button.ok": "OK",
+ "installExtension.confirm": "Tím se nainstaluje rozšíření {0} publikované uživatelem {1}. Chcete pokračovat?",
"installIconThemes": "Nainstalovat další motivy ikon souborů...",
"installProductIconThemes": "Nainstalovat další motivy ikon produktu...",
"installing extensions": "Instaluje se rozšíření {0}…",
"manage extension": "Spravovat rozšíření",
"manageExtensionIcon": "Ikona pro akci „Spravovat“ v rychlém výběru motivu",
- "miSelectColorTheme": "&&Barevný motiv",
- "miSelectIconTheme": "Motiv &&ikon souboru",
- "miSelectProductIconTheme": "Motiv ikony &&produktu",
+ "miSelectTheme": "&&Motivy",
"noIconThemeDesc": "Zakázat ikony souborů",
"noIconThemeLabel": "Žádný",
"productIconThemeCategory": "motivy ikon produktu",
+ "search.error": "Došlo k chybě při hledání motivů: {0}",
"selectIconTheme.label": "Motiv ikon souboru",
"selectProductIconTheme.label": "Motiv ikon produktu",
"selectTheme.label": "Barevný motiv",
+ "themes": "Motivy",
"themes.category.dark": "tmavé motivy",
"themes.category.hc": "motivy s vysokým kontrastem",
"themes.category.light": "světlé motivy",
+ "themes.configure.switchingDisabled": "Detekce systémového barevného režimu je zakázána. Po kliknutí můžete nakonfigurovat nastavení.",
+ "themes.configure.switchingEnabled": "Detekce systémového barevného režimu je povolená. Po kliknutí můžete nakonfigurovat nastavení.",
"themes.selectIconTheme": "Vybrat motiv ikon souboru (klávesami nahoru/dolů zobrazíte náhled)",
"themes.selectIconTheme.label": "Motiv ikon souboru",
"themes.selectMarketplaceTheme": "Pokud chcete vyhledat více, zadejte text. Výběrem nainstalujete. Klávesy nahoru/dolů k náhledu.",
"themes.selectProductIconTheme": "Vybrat motiv ikon produktu (klávesami nahoru/dolů zobrazíte náhled)",
"themes.selectProductIconTheme.label": "Motiv ikony produktu",
- "themes.selectTheme": "Vyberte barevný motiv (pomocí klávesy se šipkou nahoru/dolů zobrazíte náhled)",
+ "themes.selectTheme.darkHC": "Vybrat barevný motiv pro tmavý režim s vysokým kontrastem",
+ "themes.selectTheme.darkScheme": "Vybrat barevný motiv pro tmavý systémový režim",
+ "themes.selectTheme.default": "Vybrat barevný motiv (detekce systémového barevného režimu je zakázána)",
+ "themes.selectTheme.lightHC": "Vybrat barevný motiv pro světlý režim s vysokým kontrastem",
+ "themes.selectTheme.lightScheme": "Vybrat barevný motiv pro světlý systémový režim",
"toggleLightDarkThemes.label": "Přepnout mezi světlými nebo tmavými motivy"
},
"vs/workbench/contrib/timeline/browser/timeline.contribution": {
"files.openTimeline": "Otevřít časovou osu",
"filterTimeline": "Filtrovat časovou osu",
- "timeline.excludeSources": "Pole hodnot zdrojů časové osy, které by se mělo vyloučit ze zobrazení časové osy",
- "timeline.pageOnScroll": "Experimentální: Určuje, jestli se při zobrazení časové osy při posunutí na konec seznamu načte další stránka položek.",
- "timeline.pageSize": "Počet položek zobrazených ve výchozím nastavení v zobrazení časové osy a při načítání více položek. Když je nastaveno na null (výchozí), velikost stránky se automaticky zvolí na základě viditelné oblasti zobrazení časové osy.",
+ "timeline.pageOnScroll": "Určuje, jestli se v zobrazení časové osy při posunutí na konec seznamu načte další stránka položek.",
+ "timeline.pageSize": "Počet položek zobrazených ve výchozím nastavení v zobrazení časové osy a při načítání více položek. Když je nastaveno na null, velikost stránky se automaticky zvolí na základě viditelné oblasti zobrazení časové osy.",
"timelineConfigurationTitle": "Časová osa",
"timelineFilter": "Ikona pro akci časové osy filtru.",
"timelineOpenIcon": "Ikona pro akci otevření časové osy",
@@ -9638,7 +15980,11 @@
"timeline.loadMore": "Načíst další",
"timeline.loading": "Načítá se časová osa pro {0}...",
"timeline.loadingMore": "Načítání...",
+ "timeline.noLocalHistoryYet": "Místní historie bude při ukládání sledovat nedávné změny, pokud soubor nebyl vyloučen nebo je příliš velký.",
+ "timeline.noSCM": "Správa zdrojového kódu nebyla nakonfigurována.",
"timeline.noTimelineInfo": "Nebyly zadány žádné informace týkající se časové osy.",
+ "timeline.noTimelineInfoFromEnabledSources": "Nebyly zadány žádné filtrované informace o časové ose.",
+ "timeline.noTimelineSourcesEnabled": "Všechny zdroje časové osy byly odfiltrovány.",
"timeline.toggleFollowActiveEditorCommand.follow": "Připnout aktuální časovou osu",
"timeline.toggleFollowActiveEditorCommand.unfollow": "Odepnout aktuální časovou osu",
"timelinePin": "Ikona pro akci připnutí časové osy",
@@ -9671,51 +16017,61 @@
},
"vs/workbench/contrib/update/browser/releaseNotesEditor": {
"releaseNotesInputName": "Zpráva k vydání verze: {0}",
+ "showOnUpdate": "Po aktualizaci zobrazit zprávu k vydání verze",
"unassigned": "nepřiřazené"
},
"vs/workbench/contrib/update/browser/update": {
"DownloadingUpdate": "Stahuje se aktualizace...",
- "cancel": "Zrušit",
"checkForUpdates": "Vyhledat aktualizace...",
- "checkingForUpdates": "Vyhledávají se aktualizace...",
+ "checkingForUpdates": "Kontrolují se aktualizace {0}...",
+ "checkingForUpdates2": "Vyhledávají se aktualizace...",
"download update": "Stáhnout aktualizaci",
"download update_1": "Stáhnout aktualizaci (1)",
- "downloading": "Stahování...",
+ "downloading": "Stahuje se {0} aktualizace...",
"installUpdate": "Nainstalovat aktualizaci",
"installUpdate...": "Nainstalovat aktualizaci... (1)",
"installingUpdate": "Instaluje se aktualizace...",
"later": "Později",
+ "learn more": "Další informace",
"noUpdatesAvailable": "Momentálně nejsou k dispozici žádné aktualizace.",
"read the release notes": "Vítá vás {0} verze {1}! Chcete si přečíst zprávu k vydání verze?",
- "relaunchDetailInsiders": "Stisknutím tlačítka Znovu načíst přepnete na verzi VS Code pro účastníky programu Insider.",
+ "relaunchDetailInsiders": "Stisknutím tlačítka Znovu načíst přepnete na verzi VS Code Insiders.",
"relaunchDetailStable": "Stisknutím tlačítka Znovu načíst přepnete na stabilní verzi VS Code.",
"relaunchMessage": "Aby se změna verze projevila, je vyžadováno opětovné načtení.",
"releaseNotes": "Zpráva k vydání verze",
"reload": "&&Načíst znovu",
"restartToUpdate": "Restartovat za účelem aktualizace (1)",
- "selectSyncService.detail": "Verze nástroje VS Code pro program Insider ve výchozím nastavení synchronizuje vaše nastavení, klávesové zkratky, rozšíření, fragmenty a stav uživatelského rozhraní pomocí samostatné služby synchronizace nastavení programu Insider.",
+ "selectSyncService.detail": "Verze VS Code Insiders ve výchozím nastavení synchronizuje vaše nastavení, klávesové zkratky, rozšíření, fragmenty a stav uživatelského rozhraní pomocí samostatné služby synchronizace nastavení Insiders.",
"selectSyncService.message": "Zvolte službu synchronizace nastavení, která se má použít, až se změní verze.",
- "showReleaseNotes": "Zobrazit zprávu k vydání verze",
- "switchToInsiders": "Přepnout na verzi programu Insider...",
+ "showUpdateReleaseNotes": "Zobrazit poznámky k verzi aktualizace",
+ "switchToInsiders": "Přepnout na verzi programu Insiders...",
"switchToStable": "Přepnout na stabilní verzi...",
"thereIsUpdateAvailable": "K dispozici je aktualizace.",
"update service": "Aktualizovat službu",
+ "update service disabled": "Aktualizace jsou zakázány, protože spouštíte instalaci {0} v oboru uživatele jako správce.",
"update.noReleaseNotesOnline": "K této verzi {0} není k dispozici online zpráva k vydání verze.",
"updateAvailable": "K dispozici je aktualizace: {0} {1}",
"updateAvailableAfterRestart": "Pokud chcete nainstalovat nejnovější aktualizaci, restartujte {0}.",
"updateIsReady": "K dispozici je nová aktualizace ({0}).",
"updateNow": "Aktualizovat",
- "updating": "Probíhá aktualizace...",
- "use insiders": "Program Insider",
- "use stable": "Stabilní (aktuální)"
+ "updating": "Aktualizuje se {0}…",
+ "use insiders": "&&Insiders",
+ "use stable": "&&Stabilní (aktuální)"
},
"vs/workbench/contrib/update/browser/update.contribution": {
"applyUpdate": "Použít aktualizaci...",
+ "checkForUpdates": "Vyhledat aktualizace…",
+ "developerCategory": "Vývojář",
"downloadUpdate": "Stáhnout aktualizaci",
"installUpdate": "Nainstalovat aktualizaci",
- "miReleaseNotes": "&&Zpráva k vydání verze",
+ "mshowReleaseNotes": "Zobrazit &&poznámky k verzi",
+ "openDownloadPage": "Stáhnout {0}",
"pickUpdate": "Použít aktualizaci",
+ "releaseNotesFromFileNone": "Aktuální soubor nelze otevřít jako poznámky k verzi",
"restartToUpdate": "Restartovat za účelem aktualizace",
+ "showReleaseNotes": "Zobrazit zprávu k vydání verze",
+ "showReleaseNotesCurrentFile": "Otevřít aktuální soubor jako poznámky k verzi",
+ "update.noReleaseNotesOnline": "K této verzi {0} není k dispozici online zpráva k vydání verze.",
"updateButton": "&&Aktualizace"
},
"vs/workbench/contrib/url/browser/trustedDomains": {
@@ -9727,10 +16083,9 @@
"trustedDomain.trustSubDomain": "Považovat doménu {0} a všechny její subdomény za důvěryhodné"
},
"vs/workbench/contrib/url/browser/trustedDomainsValidator": {
- "cancel": "Zrušit",
- "configureTrustedDomains": "Konfigurovat důvěryhodné domény",
- "copy": "Kopírovat",
- "open": "Otevřít",
+ "configureTrustedDomains": "Konfigurovat &&důvěryhodné domény",
+ "copy": "&&Kopírovat",
+ "open": "&&Otevřít",
"openExternalLinkAt": "Chcete, ať {0} otevře externí web?"
},
"vs/workbench/contrib/url/browser/url.contribution": {
@@ -9739,108 +16094,186 @@
"workbench.trustedDomains.promptInTrustedWorkspace": "Když se tato možnost povolí, zobrazí se při otevírání odkazů v důvěryhodných pracovních prostorech výzvy důvěryhodné domény."
},
"vs/workbench/contrib/userDataProfile/browser/userDataProfile": {
- "currentProfile": "Aktuální Profil Nastavení je {0}",
- "manageProfiles": "{0} ({1})",
- "profileTooltip": "{0}: {1}",
- "settingsProfilesIcon": "Ikona pro profily nastavení.",
- "statusBarItemSettingsProfileBackground": "Barva pozadí položky profilu nastavení na stavovém řádku.",
- "statusBarItemSettingsProfileForeground": "Barva popředí položky profilu nastavení na stavovém řádku.",
- "workbench.experimental.settingsProfiles.enabled": "Určuje, jestli se má povolit funkce Preview Profilů nastavení."
- },
- "vs/workbench/contrib/userDataProfile/common/userDataProfileActions": {
- "cleanup profile": "Vymazat profily nastavení",
- "confiirmation message": "Toto nahradí vaše aktuální nastavení. Opravdu chcete pokračovat?",
- "create and enter empty profile": "Vytvořit prázdný Profil",
- "create empty profile": "Vytvořit prázdný profil nastavení…",
- "create profile": "Vytvořit...",
- "create settings profile": "{0}: Vytvořit...",
+ "New Profile Window": "Nové okno s profilem",
+ "change profile": "Přepnout na profil {0}",
+ "create profile": "Nový profil...",
"current": "Aktuální",
- "delete profile": "Odstranit...",
- "edit settings profile": "Přejmenovat profil nastavení...",
- "export profile": "Exportovat...",
- "export profile dialog": "Uložit Profil",
- "export success": "{0}: Exportování proběhlo úspěšně.",
- "import profile": "Importovat...",
- "import profile dialog": "Importovat Profil",
- "import profile placeholder": "Zadejte URL profilu nebo vyberte soubor profilu, který chcete importovat.",
- "import profile quick pick title": "Importování nastavení z profilu",
- "import profile title": "Importování nastavení z profilu",
- "name": "Název Profilu",
- "pick profile": "Vybrat Profil Nastavení",
- "pick profile to delete": "Vyberte profily nastavení, které chcete odstranit",
- "pick profile to rename": "Vyberte profil nastavení, který chcete přejmenovat",
- "rename profile": "Přejmenovat...",
- "save profile as": "Vytvořit z aktuálního profilu nastavení…",
- "select from file": "Importovat ze souboru profilu",
- "select from url": "Importovat z adresy URL",
- "switch profile": "Přepnout..."
+ "delete profile": "Odstranit profil…",
+ "delete specific profile": "Odstranit profil…",
+ "export profile": "Exportovat profil...",
+ "export profile in share": "Exportovat profil ({0})…",
+ "manage profiles": "Profily",
+ "miOpenProfiles": "&&Profily",
+ "new window with profile": "Nové okno s profilem",
+ "newWindowWithProfile": "Nové okno s profilem…",
+ "open": "Otevřít profil {0}",
+ "open profile": "Otevřít nové okno s profilem {0}",
+ "open profiles": "Otevřít profily (uživatelské rozhraní)",
+ "openShort": "{0}",
+ "pick profile": "Vybrat profil",
+ "pick profile to delete": "Vyberte profily, které chcete odstranit.",
+ "profiles": "Profil ({0})",
+ "save profile as": "Uložit aktuální profil jako...",
+ "selectProfile": "Vyberte profil",
+ "switchProfile": "Přepnout profil…",
+ "userdataprofilesEditor": "Editor profilů"
+ },
+ "vs/workbench/contrib/userDataProfile/browser/userDataProfileActions": {
+ "cleanup profile": "Vyčistit profily",
+ "create temporary profile": "Nové okno s dočasným profilem",
+ "reset workspaces": "Obnovení přidružení profilů pracovního prostoru"
+ },
+ "vs/workbench/contrib/userDataProfile/browser/userDataProfilesEditor": {
+ "activeProfile": "Aktivní",
+ "addButton": "Přidat složku",
+ "addFolder": "Přidat složku",
+ "addFolderTitle": "Vybrat složky, které se mají přidat",
+ "change profile": "Změnit profil",
+ "changeIcon": "Ikonu můžete změnit kliknutím.",
+ "contents": "Obsah",
+ "contents source description": "Konfigurovat zdroj obsahu pro tento profil\r\n",
+ "copy description": "Kopírovat",
+ "copy from default": "{0} (kopie)",
+ "copy from description": "Vyberte zdroj profilu, ze kterého chcete zkopírovat obsah.",
+ "copy from profile description": "Kopírovat {0} z profilu {1}",
+ "copy info": "- *{0}:* Kopírovat obsah z profilu {1}\r\n",
+ "copy profile from": "Zkopírovat profil z",
+ "create from": "Kopírovat z",
+ "current description": "Použít {0} z profilu {1}",
+ "default": "Výchozí",
+ "default description": "Použít {0} z výchozího profilu",
+ "default info": "- *Výchozí:* Použít obsah z výchozího profilu\r\n",
+ "default profile contents description": "Konfigurovat obsah tohoto profilu\r\n",
+ "defaultProfileIcon": "Ikonu výchozího profilu nelze změnit.",
+ "defaultProfileName": "Název výchozího profilu nelze změnit.",
+ "deleteTrustedUri": "Odstranit cestu",
+ "editIcon": "Ikona pro úpravu složky v editoru profilů",
+ "empty profile": "Žádný",
+ "enable for current window": "Použít tento profil pro aktuální okno",
+ "enable for new windows": "Použít tento profil jako výchozí pro nová okna",
+ "extensions": "Rozšíření",
+ "folders_workspaces": "Složky a pracovní prostory",
+ "folders_workspaces_description": "Tento profil používají následující složky a pracovní prostory.",
+ "from existing profiles": "Existující profily",
+ "from template": "Ze šablony",
+ "from templates": "Šablony profilů",
+ "hostColumnLabel": "Hostitel",
+ "icon": "Ikona profilu",
+ "icon-description": "Ikona profilu, která se má zobrazit na panelu aktivity",
+ "icon-label": "Ikona",
+ "import from file": "Vybrat soubor...",
+ "import from url": "Importovat z adresy URL",
+ "import profile dialog": "Vybrat soubor šablony profilu",
+ "import profile placeholder": "Zadejte adresu URL šablony profilu.",
+ "import profile quick pick title": "Importovat ze šablony profilu...",
+ "importProfile": "Importovat profil…",
+ "keybindings": "Klávesové zkratky",
+ "localAuthority": "Místní",
+ "mcp": "Servery MCP",
+ "name": "Název",
+ "name required": "Název profilu je povinný a musí být neprázdnou hodnotou.",
+ "new from template": "Nový profil ze šablony",
+ "newProfile": "Nový profil",
+ "no_folder_description": "Tento profil nepoužívají žádné složky ani pracovní prostory.",
+ "none": "Žádné",
+ "none description": "Vytvořit prázd. {0}",
+ "none info": "- *Žádný:* Vytvořit prázdný obsah\r\n",
+ "open": "Otevřít v novém okně",
+ "options": "Zdroj",
+ "pathColumnLabel": "Cesta",
+ "profileExists": "Profil nastavení s názvem {0} už existuje.",
+ "profileName": "Název profilu",
+ "profiles": "Profily",
+ "profilesSashBorder": "Barva ohraničení rozděleného zobrazení okna editoru profilů",
+ "removeIcon": "Ikona pro odebrání složky v editoru profilů",
+ "settings": "Nastavení",
+ "snippets": "Fragmenty kódu",
+ "tasks": "Úlohy",
+ "trustedFolderAriaLabel": "{0}, důvěryhodné",
+ "trustedFolderWithHostAriaLabel": "{0} na {1}, důvěryhodné",
+ "trustedFoldersAndWorkspaces": "Důvěryhodné složky a pracovní prostory",
+ "use for curren window": "Použít pro aktuální okno",
+ "use for new windows": "Použít pro nová okna",
+ "userDataProfiles": "Profily"
+ },
+ "vs/workbench/contrib/userDataProfile/browser/userDataProfilesEditorModel": {
+ "active": "Použít tento profil pro aktuální okno",
+ "applyToAllProfiles": "Použít rozšíření pro všechny profily",
+ "cancel": "Zrušit",
+ "copy from": "{0} (kopie)",
+ "copyFromProfile": "Duplikovat…",
+ "create": "Vytvořit",
+ "delete": "Odstranit",
+ "deleteProfile": "Opravdu chcete odstranit profil {0}?",
+ "discard": "Zahodit a vytvořit",
+ "export": "Exportovat...",
+ "import in desktop": "Vytvořit v {0}",
+ "invalid configurations": "Profil by měl obsahovat alespoň jednu konfiguraci.",
+ "name required": "Název profilu je povinný a musí být neprázdnou hodnotou.",
+ "new profile exists": "Nový profil se už vytváří. Chcete ho zahodit a vytvořit nový?",
+ "open": "Otevřít na boku",
+ "open new window": "Otevřít nové okno s tímto profilem",
+ "preview": "Náhled",
+ "profileExists": "Profil nastavení s názvem {0} už existuje.",
+ "replace": "Nahradit",
+ "untitled": "Bez názvu"
},
"vs/workbench/contrib/userDataSync/browser/userDataSync": {
- "Theirs": "Jejich",
- "Yours": "Váš",
"accept failed": "Při přijímání změn došlo k chybě. Další podrobnosti najdete v [protokolech]({0}).",
- "accept merges title": "Přijmout sloučení",
- "ask to turn on in global": "Synchronizace nastavení je vypnutá (1).",
"auth failed": "Při zapínání synchronizace nastavení došlo k chybě: neúspěšné ověření.",
- "cancel": "Zrušit",
- "change later": "Toto můžete později kdykoli změnit.",
+ "cancel turning on sync": "Zrušit",
+ "complete merges title": "Dokončit sloučení",
"configure": "Konfigurovat...",
- "configure and turn on sync detail": "Přihlaste se prosím, aby se vaše data mohla synchronizovat mezi zařízeními.",
- "configure sync": "{0}: Konfigurovat...",
+ "configure and turn on sync detail": "Přihlaste se prosím, abyste mohli zálohovat a synchronizovat data mezi zařízeními.",
+ "configure sync": "Konfigurovat…",
"configure sync placeholder": "Zvolte, co se má synchronizovat",
+ "configure sync title": "{0}: Konfigurovat…",
"conflicts detected": "Synchronizaci nelze provést, protože v {0} byly zjištěny konflikty. Před pokračováním je prosím vyřešte.",
"default": "Výchozí",
+ "download sync activity complete": "Aktivita synchronizace nastavení se úspěšně stáhla.",
"error reset required": "Synchronizace nastavení je zakázaná, protože vaše data v cloudu jsou starší než data klienta. Před zapnutím synchronizace prosím vymažte svá data v cloudu.",
"error reset required while starting sync": "Synchronizaci nastavení nelze zapnout, protože vaše data v cloudu jsou starší než data klienta. Před zapnutím synchronizace prosím vymažte svá data v cloudu.",
"error upgrade required": "Synchronizace nastavení je zakázaná, protože aktuální verze ({0}, {1}) není kompatibilní se synchronizační službou. Před zapnutím synchronizace prosím proveďte aktualizaci.",
"error upgrade required while starting sync": "Synchronizaci nastavení nelze zapnout, protože aktuální verze ({0}, {1}) není kompatibilní se synchronizační službou. Před zapnutím synchronizace prosím proveďte aktualizaci.",
"errorInvalidConfiguration": "Soubor {0} nelze synchronizovat, protože obsah souboru není platný. Otevřete prosím soubor a opravte ho.",
- "global activity turn on sync": "Zapnout synchronizaci nastavení...",
+ "global activity turn on sync": "Nastavení zálohování a synchronizace...",
"has conflicts": "{0}: Zjištěny konflikty",
- "insiders": "Program Insider",
- "learn more": "Další informace",
- "localResourceName": "{0} (místní)",
+ "insiders": "Insiders",
+ "method not found": "Synchronizace nastavení se zakázala, protože klient provádí neplatné požadavky. Nahlaste prosím problém s protokoly.",
"no authentication providers": "Nejsou k dispozici žádní zprostředkovatelé ověřování.",
"open file": "Otevřít soubor {0}",
"operationId": "ID operace: {0}",
- "per platform": "pro každou platformu",
- "remoteResourceName": "{0} (vzdálené)",
"replace local": "Nahradit místní",
"replace remote": "Nahradit vzdálené",
+ "report issue": "Nahlásit problém",
"reset": "Vymazat data v cloudu...",
- "resolveConflicts_global": "{0}: Zobrazit konflikty nastavení (1)",
- "resolveKeybindingsConflicts_global": "{0}: Zobrazit konflikty klávesových zkratek (1)",
- "resolveSnippetsConflicts_global": "{0}: Zobrazit konflikty fragmentů kódu uživatele ({1})",
- "resolveTasksConflicts_global": "{0}: Zobrazit konflikty uživatelských úkolů (1)",
+ "resolveConflicts_global": "Zobrazit konflikty ({0})",
"service changed and turned off": "Synchronizace nastavení se vypnula, protože {0} teď používá samostatnou službu. Znovu prosím synchronizaci zapněte.",
- "service switched to insiders": "Nastavení synchronizace se přepnulo na službu programu Insider.",
+ "service switched to insiders": "Nastavení synchronizace se přepnulo na službu Insiders",
"service switched to stable": "Synchronizace nastavení se přepnula na stabilní službu.",
"session expired": "Synchronizace nastavení byla vypnuta, protože vypršela platnost aktuální relace. Pokud chcete zapnout synchronizaci, přihlaste se prosím znovu.",
- "settings sync is off": "Synchronizace nastavení je vypnutá.",
"show conflicts": "Zobrazit konflikty",
"show sync log title": "{0}: Zobrazit protokol",
"show sync log toolrip": "Zobrazit protokol",
- "show synced data": "{0}: Zobrazit synchronizovaná data",
+ "show sync logs": "Zobrazit protokol",
+ "show synced data": "Zobrazit synchronizovaná data",
"show synced data action": "Zobrazit synchronizovaná data",
- "showConflicts": "{0}: Zobrazit konflikty nastavení",
- "showKeybindingsConflicts": "{0}: Zobrazit konflikty klávesových zkratek",
- "showSnippetsConflicts": "{0}: Zobrazit konflikty fragmentů kódu uživatele",
- "showTasksConflicts": "{0}: Zobrazit konflikty uživatelských úkolů",
"sign in accounts": "Přihlaste se, aby bylo možné synchronizovat nastavení (1)",
- "sign in and turn on": "Přihlásit se a zapnout",
+ "sign in and turn on": "Přihlásit",
"sign in global": "Pokud chcete synchronizovat nastavení, přihlaste se.",
"sign in to sync": "Pokud chcete synchronizovat nastavení, přihlaste se.",
"stable": "Stabilní",
- "stop sync": "{0}: Vypnout",
+ "stop sync": "Vypnout",
"switchSyncService.description": "Při synchronizaci s více prostředími se ujistěte, že používáte stejnou službu synchronizace nastavení.",
"switchSyncService.title": "{0}: Vyberte službu",
"sync is on": "Synchronizace nastavení je zapnutá.",
- "sync now": "{0}: Synchronizovat hned",
- "sync settings": "{0}: Zobrazit nastavení",
+ "sync now": "Synchronizovat nyní",
+ "sync settings": "Zobrazit nastavení",
"synced with time": "synchronizováno: {0}",
"syncing": "probíhá synchronizace",
"too large": "Synchronizace {0} je zakázaná, protože velikost souboru {1}, která se má synchronizovat, je větší než {2}. Otevřete prosím soubor, zmenšete jeho velikost a povolte synchronizaci.",
"too large while starting sync": "Synchronizaci nastavení nelze zapnout, protože soubor {0}, který se má synchronizovat, je větší než {1}. Otevřete prosím soubor, zmenšete jeho velikost a pak zapněte synchronizaci.",
+ "too many profiles": "Synchronizace profilů se zakázala, protože existuje příliš mnoho profilů k synchronizaci. Synchronizace nastavení podporuje synchronizaci maximálně 20 profilů. Snižte prosím počet profilů a povolte synchronizaci.",
"turn off": "Vypnou&&t",
"turn off failed": "Při vypínání synchronizace nastavení došlo k chybě. Další podrobnosti najdete v [protokolech]({0}).",
"turn off sync confirmation": "Chcete vypnout synchronizaci?",
@@ -9848,15 +16281,11 @@
"turn off sync everywhere": "Vypnout synchronizaci na všech vašich zařízeních a vymazat data z cloudu.",
"turn on failed": "Při zapínání synchronizace nastavení došlo k chybě: {0}",
"turn on failed with user data sync error": "Při zapínání synchronizace nastavení došlo k chybě. Další podrobnosti najdete v [protokolech]({0}).",
- "turn on settings sync": "Zapnout synchronizaci nastavení",
"turn on sync": "Zapnout synchronizaci nastavení...",
- "turn on sync with category": "{0}: Zapnout...",
"turned off": "Synchronizace nastavení byla vypnuta z jiného zařízení. Znovu prosím synchronizaci zapněte.",
- "turnin on sync": "Zapíná se synchronizace nastavení...",
+ "turning on sync": "Zapíná se synchronizace nastavení...",
"turning on syncing": "Zapíná se synchronizace nastavení...",
- "turnon sync after initialization message": "Vaše nastavení, klávesové zkratky, rozšíření, fragmenty kódu a stav uživatelského rozhraní byly inicializovány, ale neprobíhá jejich synchronizace. Chcete zapnout synchronizaci nastavení?",
"using separate service": "Synchronizace nastavení teď používá samostatnou službu. Další informace najdete v [dokumentaci k synchronizaci nastavení](https://aka.ms/vscode-settings-sync-help#_syncing-stable-versus-insiders).",
- "workbench.action.showSyncRemoteBackup": "Zobrazit synchronizovaná data",
"workbench.actions.syncData.reset": "Vymazat data v cloudu..."
},
"vs/workbench/contrib/userDataSync/browser/userDataSync.contribution": {
@@ -9869,38 +16298,24 @@
"settings sync": "Synchronizace nastavení. ID operace: {0}",
"show sync logs": "Zobrazit protokol"
},
- "vs/workbench/contrib/userDataSync/browser/userDataSyncMergesView": {
- "accept local": "Přijmout místní",
- "accept merges": "Přijmout sloučení",
- "accept remote": "Přijmout vzdálené",
- "accepted": "Přijato",
- "cancel": "Zrušit",
- "conflict": "Zjištěny konflikty",
- "conflicts detected": "Zjištěny konflikty",
- "explanation": "Pokud chcete povolit synchronizaci, projděte si všechny položky a proveďte sloučení.",
- "label": "UserDataSyncResources",
- "leftResourceName": "{0} (vzdálené)",
- "merges": "{0} (sloučení)",
- "preview": "{0} (náhled)",
- "resolve": "Sloučení nelze provést, protože byly zjištěny konflikty. Před pokračováním je prosím vyřešte.",
- "rightResourceName": "{0} (místní)",
- "sideBySideDescription": "Synchronizace nastavení",
- "sideBySideLabels": "{0} ↔ {1}",
- "turn on sync": "Zapnout synchronizaci nastavení",
- "turning on": "Zapínání...",
+ "vs/workbench/contrib/userDataSync/browser/userDataSyncConflictsView": {
+ "Theirs": "Jejich",
+ "Yours": "Váš",
+ "explanation": "Projděte prosím jednotlivé položky a vyřešte konflikty sloučením.",
+ "localResourceName": "{0} (místní)",
+ "remoteResourceName": "{0} (vzdálené)",
"workbench.actions.sync.acceptLocal": "Přijmout místní",
"workbench.actions.sync.acceptRemote": "Přijmout vzdálené",
- "workbench.actions.sync.discard": "Zahodit",
- "workbench.actions.sync.merge": "Sloučit",
- "workbench.actions.sync.showChanges": "Otevřít změny"
+ "workbench.actions.sync.openConflicts": "Zobrazit konflikty"
},
"vs/workbench/contrib/userDataSync/browser/userDataSyncViews": {
"confirm replace": "Chcete aktuální data {0} nahradit vybranými daty?",
+ "conflicts": "Konflikty",
"current": "Aktuální",
+ "downloaded sync activity title": "Aktivita synchronizace (vývojář)",
"last sync states": "Poslední synchronizovaná vzdálená úložiště",
"leftResourceName": "{0} (vzdálené)",
"local sync activity title": "Aktivita synchronizace (místní)",
- "merges": "Sloučení",
"no machines": "Žádné počítače",
"not found": "nenašel se počítač s ID: {0}",
"placeholder": "Zadejte název počítače.",
@@ -9908,6 +16323,7 @@
"remoteToLocalDiff": "{0} ↔ {1}",
"reset": "Obnovit synchronizovaná data",
"rightResourceName": "{0} (místní)",
+ "select sync activity file": "Vybrat soubor nebo složku aktivity synchronizace",
"sideBySideLabels": "{0} ↔ {1}",
"sync logs": "Protokoly",
"synced machines": "Synchronizované počítače",
@@ -9918,24 +16334,21 @@
"valid message": "Název počítače musí být jedinečný a nesmí být prázdný.",
"workbench.actions.sync.compareWithLocal": "Porovnat s místními",
"workbench.actions.sync.editMachineName": "Upravit název",
+ "workbench.actions.sync.loadActivity": "Načíst aktivitu synchronizace",
"workbench.actions.sync.replaceCurrent": "Obnovit",
- "workbench.actions.sync.resolveResourceRef": "Zobrazit nezpracovaná data synchronizace JSON",
+ "workbench.actions.sync.resolveResourceRef": "Zobrazit data synchronizace nezpracovaného JSON",
"workbench.actions.sync.turnOffSyncOnMachine": "Vypnout synchronizaci nastavení"
},
- "vs/workbench/contrib/userDataSync/electron-sandbox/userDataSync.contribution": {
+ "vs/workbench/contrib/userDataSync/electron-browser/userDataSync.contribution": {
"Open Backup folder": "Otevřít složku místních záloh",
- "no backups": "Složka místních záloh neexistuje."
- },
- "vs/workbench/contrib/views/browser/treeView": {
- "no-dataprovider": "Neexistuje žádný zaregistrovaný zprostředkovatel dat, který by mohl poskytovat data zobrazení.",
- "refresh": "Aktualizovat",
- "collapseAll": "Sbalit vše",
- "command-error": "Chyba při spouštění příkazu {1}: {0}. Pravděpodobně je způsobeno rozšířením, které přidává: {1}."
+ "download sync activity complete": "Aktivita synchronizace nastavení se úspěšně stáhla.",
+ "no backups": "Složka místních záloh neexistuje.",
+ "open": "Otevřít složku"
},
"vs/workbench/contrib/watermark/browser/watermark": {
"tips.enabled": "Pokud je povoleno, zobrazí v případě, že není otevřený žádný editor, tipy ve vodoznacích.",
"watermark.findInFiles": "Najít v souborech",
- "watermark.newUntitledFile": "Nový soubor bez názvu",
+ "watermark.newUntitledFile": "Nový textový soubor bez názvu",
"watermark.openFile": "Otevřít soubor",
"watermark.openFileFolder": "Otevřít soubor nebo složku",
"watermark.openFolder": "Otevřít složku",
@@ -9955,285 +16368,43 @@
"vs/workbench/contrib/webview/browser/webviewElement": {
"fatalErrorMessage": "Chyba při načítání webového zobrazení: {0}"
},
- "vs/workbench/contrib/webview/electron-sandbox/webviewCommands": {
- "iframeWebviewAlert": "Ladí se webové zobrazení založené na prvcích IFrame pomocí standardních vývojových nástrojů.",
- "openToolsLabel": "Otevřít vývojářské nástroje webového zobrazení"
- },
- "vs/workbench/contrib/webviewPanel/browser/webviewCommands": {
- "editor.action.webvieweditor.findNext": "Najít další",
- "editor.action.webvieweditor.findPrevious": "Najít předchozí",
- "editor.action.webvieweditor.hideFind": "Zastavit hledání",
- "editor.action.webvieweditor.showFind": "Zobrazit hledání",
- "refreshWebviewLabel": "Znovu načíst webová zobrazení"
- },
- "vs/workbench/contrib/webviewPanel/browser/webviewPanel.contribution": {
- "webview.editor.label": "editor webových zobrazení"
- },
- "vs/workbench/contrib/welcome/common/newFile.contribution": {
- "Built-In": "Integrované",
- "Create": "Vytvořit",
- "change keybinding": "Nakonfigurovat klávesové zkratky",
- "createNew": "Vytvořit nový...",
- "file": "Soubor",
- "miNewFile2": "Textový soubor",
- "notebook": "Poznámkový blok",
- "welcome.newFile": "Nový soubor…"
- },
- "vs/workbench/contrib/welcome/common/viewsWelcomeContribution": {
- "ViewsWelcomeExtensionPoint.proposedAPI": "Příspěvek viewsWelcome v {0} vyžaduje enabledApiProposals: [\"contribViewsWelcome\"], aby bylo možné použít navrhovanou vlastnost „group“."
- },
- "vs/workbench/contrib/welcome/common/viewsWelcomeExtensionPoint": {
- "contributes.viewsWelcome": "Přidaný uvítací obsah pro zobrazení. Uvítací obsah se vykreslí ve stromových zobrazeních, kde není žádný smysluplný obsah, který by bylo možné zobrazit, například v Průzkumníkovi souborů, když nejsou otevřené žádné složky. Tento obsah je užitečný jako integrovaná dokumentace k produktu, která má uživatele motivovat k používání určitých funkcí ještě před jejich oficiálním vydáním (například tlačítko Klonovat úložiště v uvítacím zobrazení Průzkumníka souborů).",
- "contributes.viewsWelcome.view": "Přidaný uvítací obsah pro konkrétní zobrazení",
- "contributes.viewsWelcome.view.contents": "Uvítací obsah, který se má zobrazit. Formát obsahu je podmnožinou Markdownu s podporou pouze pro odkazy.",
- "contributes.viewsWelcome.view.enablement": "Podmínka, kdy se mají povolit tlačítka uvítacího obsahu a odkazy na příkazy.",
- "contributes.viewsWelcome.view.group": "Skupina, do které patří tento uvítací obsah. Navrhované rozhraní API",
- "contributes.viewsWelcome.view.view": "Cílový identifikátor zobrazení pro tento uvítací obsah. Podporují se jen stromová zobrazení.",
- "contributes.viewsWelcome.view.when": "Podmínka, kdy se má zobrazit uvítací obsah"
- },
- "vs/workbench/contrib/welcome/gettingStarted/browser/gettingStarted": {
- "allDone": "Označit jako hotové",
- "checkboxTitle": "Pokud je tato možnost zaškrtnutá, zobrazí se tato stránka při spuštění.",
- "close": "Skrýt",
- "footer": "{0} shromažďuje data o využití. Přečtěte si naše {1} a podívejte se, jak {2}.",
- "getStarted": "Začínáme",
- "gettingStarted.allStepsComplete": "Všechny kroky ({0}) jsou dokončeny.",
- "gettingStarted.editingEvolved": "Vylepšené úpravy",
- "gettingStarted.someStepsComplete": "Dokončené kroky: {0} z {1}",
- "imageShowing": "Obrázek zobrazující {0}",
- "new": "Nové",
- "newItems": "Aktualizováno",
- "nextOne": "Další oddíl",
- "optOut": "Odhlásit",
- "pickWalkthroughs": "Otevřít podrobný návod...",
- "privacy statement": "prohlášení o zásadách ochrany osobních údajů",
- "recent": "Nedávné",
- "show more recents": "Zobrazit všechny nedávné složky {0}",
- "showAll": "Více...",
- "start": "Spustit",
- "walkthroughs": "Návody",
- "welcomeAriaLabel": "Přehled toho, jak se seznámit s editorem",
- "welcomePage.openFolderWithPath": "Otevřít složku {0} s cestou {1}",
- "welcomePage.showOnStartup": "Zobrazit úvodní stránku při spuštění"
- },
- "vs/workbench/contrib/welcome/gettingStarted/browser/gettingStarted.contribution": {
- "getStarted": "Začínáme",
- "help": "Nápověda",
- "miGetStarted": "Začínáme",
- "pickWalkthroughs": "Otevřít podrobný návod...",
- "welcome.goBack": "Přejít zpět",
- "welcome.markStepComplete": "Označit krok jako dokončený",
- "welcome.markStepInomplete": "Označit krok jako nedokončený",
- "welcome.showAllWalkthroughs": "Otevřít návod",
- "workbench.welcomePage.preferReducedMotion": "Pokud je tato možnost povolená, omezí se pohyb na úvodní stránce.",
- "workbench.welcomePage.walkthroughs.openOnInstall": "Pokud je tato možnost povolená, průvodce rozšířením se otevře při instalaci rozšíření.",
- "workspacePlatform": "Platforma aktuálního pracovního prostoru, která se může ve vzdálených nebo bezserverových kontextech lišit od platformy uživatelského rozhraní."
- },
- "vs/workbench/contrib/welcome/gettingStarted/browser/gettingStartedColors": {
- "welcomePage.background": "Barva pozadí uvítací stránky",
- "welcomePage.progress.background": "Barva popředí indikátorů průběhu uvítací stránky",
- "welcomePage.progress.foreground": "Barva pozadí indikátorů průběhu uvítací stránky",
- "welcomePage.tileBackground": "Barva pozadí dlaždic na stránce Začínáme",
- "welcomePage.tileHoverBackground": "Barva pozadí na dlaždici Začínáme po najetí myší",
- "welcomePage.tileShadow": "Barva stínu tlačítek kategorií pro Úvodní stránku návodu"
- },
- "vs/workbench/contrib/welcome/gettingStarted/browser/gettingStartedExtensionPoint": {
- "pathDeprecated": "Zastaralé. Místo toho prosím použijte „image“ nebo „markdown“.",
- "title": "Název",
- "walkthroughs": "Poskytněte návody, které pomůžou uživatelům začít používat vaše rozšíření.",
- "walkthroughs.description": "Popis návodu",
- "walkthroughs.featuredFor": "Návody, které odpovídají jednomu z těchto vzorů glob, se v pracovních prostorech se zadanými soubory zobrazují jako doporučené. Například návod pro projekty TypeScriptu tady může uvést „tsconfig.json“.",
- "walkthroughs.id": "Jedinečný identifikátor tohoto návodu",
- "walkthroughs.steps": "Kroky, které se mají dokončit v rámci tohoto návodu.",
- "walkthroughs.steps.button.deprecated.interpolated": "Zastaralé. Místo toho použijte odkazy Markdown v popisu, tj. {0}, {1} nebo {2}.",
- "walkthroughs.steps.completionEvents": "Události, které by měly aktivovat tento krok, aby byl odškrtnut. Pokud je tato možnost prázdná nebo není definovaná, krok bude odškrtnut při kliknutí na jakékoli tlačítko nebo odkaz v tomto kroku. Pokud tento krok žádné tlačítko nebo odkaz nemá, bude odškrtnut, když bude vybrán.",
- "walkthroughs.steps.completionEvents.extensionInstalled": "Odškrtnout krok, když je nainstalováno rozšíření s daným ID. Pokud je rozšíření už nainstalované, krok začne jako odškrtnutý.",
- "walkthroughs.steps.completionEvents.onCommand": "Odškrtnout krok, když je daný příkaz proveden kdekoli v nástroji VS Code.",
- "walkthroughs.steps.completionEvents.onContext": "Odškrtnout krok, když má výraz kontextového klíče hodnotu „true“.",
- "walkthroughs.steps.completionEvents.onLink": "Odškrtnout krok, když se daný odkaz otevře přes krok v návodu",
- "walkthroughs.steps.completionEvents.onSettingChanged": "Odškrtnout krok, když se změní dané nastavení.",
- "walkthroughs.steps.completionEvents.onView": "Odškrtnout krok, když se otevře dané zobrazení.",
- "walkthroughs.steps.completionEvents.stepSelected": "Odškrtnout krok, jakmile je vybrán.",
- "walkthroughs.steps.description.interpolated": "Popis kroku. Podporuje ``předformátovaný`` text, __kurzívu__ a **tučný** text. Pro příkazy a externí odkazy používejte odkazy ve stylu markdown: {0}, {1} nebo {2}. Odkazy na vlastních řádcích budou zobrazeny jako tlačítka.",
- "walkthroughs.steps.doneOn": "Signál, který označí krok jako dokončený.",
- "walkthroughs.steps.doneOn.deprecation": "Možnost doneOn je zastaralá. Ve výchozím nastavení budou kroky odškrtnuty při kliknutí na jejich tlačítka, aby se nakonfigurovalo další použití completionEvents.",
- "walkthroughs.steps.id": "Jedinečný identifikátor pro tento krok. Používá se ke sledování, které kroky se dokončily.",
- "walkthroughs.steps.media": "Médium, které se má zobrazit v tomto kroku. Obrázek nebo obsah markdown.",
- "walkthroughs.steps.media.altText": "Alternativní text, který se zobrazí, když se obrázek nedá načíst nebo ve čtečkách obrazovky",
- "walkthroughs.steps.media.image.path.dark.string": "Cesta k obrázku pro tmavé motivy, relativní vůči adresáři rozšíření",
- "walkthroughs.steps.media.image.path.hc.string": "Cesta k obrázku pro motivy HC, relativní vůči adresáři rozšíření",
- "walkthroughs.steps.media.image.path.light.string": "Cesta k obrázku pro světlé motivy, relativní vůči adresáři rozšíření",
- "walkthroughs.steps.media.image.path.string": "Cesta k obrázku – nebo objekt skládající se z cest ke světlým a tmavým obrázkům a obrázkům HC – relativní vůči adresáři rozšíření. V závislosti na kontextu bude obrázek zobrazen s šířkou od 400 px do 800 px s podobnými mezemi pro výšku. Kvůli podpoře displejů HIDPI se obrázek vykreslí se škálováním 1,5, například obrázek s šířkou 900 fyzických pixelů se zobrazí s šířkou 600 logických pixelů.",
- "walkthroughs.steps.media.image.path.svg": "Cesta k SVG, barevné tokeny jsou podporovány v proměnných, které podporují motivy tak, aby odpovídaly workbench.",
- "walkthroughs.steps.media.markdown.path": "Cesta k dokumentu markdown, relativní vůči adresáři rozšíření",
- "walkthroughs.steps.oneOn.command": "Označí krok jako dokončený, když se provede určený příkaz.",
- "walkthroughs.steps.title": "Název kroku",
- "walkthroughs.steps.when": "Výraz kontextového klíče, který bude řídit viditelnost tohoto kroku.",
- "walkthroughs.title": "Název návodu",
- "walkthroughs.when": "Výraz kontextového klíče, který bude řídit viditelnost tohoto návodu"
- },
- "vs/workbench/contrib/welcome/gettingStarted/browser/gettingStartedIcons": {
- "gettingStartedChecked": "Slouží k reprezentaci dokončených kroků návodu.",
- "gettingStartedUnchecked": "Slouží k reprezentaci nedokončených kroků návodu."
- },
- "vs/workbench/contrib/welcome/gettingStarted/browser/gettingStartedInput": {
- "getStarted": "Začínáme"
- },
- "vs/workbench/contrib/welcome/gettingStarted/browser/gettingStartedService": {
- "builtin": "Integrované"
- },
- "vs/workbench/contrib/welcome/gettingStarted/common/gettingStartedContent": {
- "browseLangExts": "Procházet rozšíření jazyků",
- "browsePopular": "Procházet oblíbená webová rozšíření",
- "browseRecommended": "Procházet doporučená rozšíření",
- "cloneRepo": "Naklonovat úložiště",
- "commandPalette": "Otevřít paletu příkazů",
- "enableSync": "Povolit synchronizaci nastavení",
- "enableTrust": "Povolit důvěryhodnost",
- "getting-started-beginner-icon": "Ikona používaní pro kategorii pro začátečníky na úvodní stránce",
- "getting-started-intermediate-icon": "Ikona používaná pro kategorii pro středně pokročilé na úvodní stránce",
- "getting-started-setup-icon": "Ikona používaná pro kategorii nastavení na úvodní stránce",
- "gettingStarted.beginner.description": "Pokud chcete získat přehled funkcí, které musíte mít, přejděte rovnou na VS Code.",
- "gettingStarted.beginner.title": "Naučte se základy",
- "gettingStarted.commandPalette.description.interpolated": "Příkazy jsou klávesnicový způsob, jak provést libovolný úkol ve VS Code. **Procvičte** si ho vyhledáním často používaných příkazů, abyste ušetřili čas.\r\n{0}\r\n__Zkuste vyhledat přepínač zobrazení.__",
- "gettingStarted.commandPalette.title": "Jeden zástupce pro přístup ke všemu",
- "gettingStarted.debug.description.interpolated": "Urychlete cyklus úprav, sestavení, testování a ladění nastavením konfigurace spuštění.\r\n{0}",
- "gettingStarted.debug.title": "Sledujte svůj kód v akci",
- "gettingStarted.extensions.description.interpolated": "Rozšíření vylepšují VS Code. Nabízejí užitečné nástroje pro produktivitu, rozšiřují původní funkce, nebo třeba přidávají funkce, které jsou zcela nové.\r\n{0}",
- "gettingStarted.extensions.title": "Neomezená rozšiřitelnost",
- "gettingStarted.extensionsWeb.description.interpolated": "Rozšíření jsou hnací silou VS Code. Na webu je jich stále více.\r\n{0}",
- "gettingStarted.findLanguageExts.description.interpolated": "Kódujte chytřeji se zvýrazňováním syntaxe, dokončením kódu, lintováním a laděním. I když je předdefinovaná řada jazyků, lze přidat spoustu dalších jako rozšíření.\r\n{0}",
- "gettingStarted.findLanguageExts.title": "Bohatá podpora pro všechny vaše jazyky",
- "gettingStarted.installGit.description.interpolated": "Pokud chcete sledovat změny ve vašich projektech, nainstalujte Git.\r\n{0}",
- "gettingStarted.installGit.title": "Nainstalovat Git",
- "gettingStarted.intermediate.description": "Optimalizujte svůj pracovní postup vývoje pomocí těchto tipů a rad.",
- "gettingStarted.intermediate.title": "Zvyšte svoji produktivitu",
- "gettingStarted.menuBar.description.interpolated": "V rozbalovací nabídce je k dispozici úplný panel nabídek, který uvolní místo pro váš kód. Přepněte jeho vzhled pro rychlejší přístup. \r\n{0}",
- "gettingStarted.menuBar.title": "Správné množství uživatelského rozhraní",
- "gettingStarted.newFile.description": "Otevře nový soubor bez názvu, poznámkový blok nebo vlastní editor.",
- "gettingStarted.newFile.title": "Nový soubor…",
- "gettingStarted.notebook.title": "Přizpůsobit poznámkové bloky",
- "gettingStarted.notebookProfile.description": "Získejte poznámkové bloky, které budou podle vašich představ.",
- "gettingStarted.notebookProfile.title": "Vyberte rozložení svých poznámkových bloků",
- "gettingStarted.openFile.description": "Pokud chcete začít pracovat, otevřete soubor.",
- "gettingStarted.openFile.title": "Otevřít soubor...",
- "gettingStarted.openFolder.description": "Pokud chcete začít pracovat, otevřete složku.",
- "gettingStarted.openFolder.title": "Otevřít složku...",
- "gettingStarted.openMac.description": "Pokud chcete začít pracovat, otevřete soubor nebo složku.",
- "gettingStarted.openMac.title": "Otevřít...",
- "gettingStarted.pickColor.description.interpolated": "Ta pravá barevná paleta vám pomůže se zaměřit na váš kód, nedráždí vaše oči a jednoduše je zábavné ji používat.\r\n{0}",
- "gettingStarted.pickColor.title": "Zvolte požadovaný vzhled.",
- "gettingStarted.playground.description.interpolated": "Chcete programovat rychleji a chytřeji? Procvičte si výkonné funkce pro úpravy kódu v interaktivním testovacím prostředí.\r\n{0}",
- "gettingStarted.playground.title": "Redefinujte své dovednosti úprav",
- "gettingStarted.quickOpen.description.interpolated": "Jediným stisknutím klávesy můžete okamžitě přecházet mezi soubory. Tip: Pomocí klávesy šipky vpravo můžete otevřít více souborů.\r\n{0}",
- "gettingStarted.quickOpen.title": "Rychlé procházení mezi soubory",
- "gettingStarted.scm.description.interpolated": "Už nemusíte vyhledávat příkazy Gitu! Pracovní postupy Gitu a GitHub jsou úzce integrovány.\r\n{0}",
- "gettingStarted.scm.title": "Sledujte svůj kód pomocí Gitu",
- "gettingStarted.scmClone.description.interpolated": "Nastavte u svého projektu integrovanou správu verzí, abyste mohli sledovat změny a spolupracovat s ostatními.\r\n{0}",
- "gettingStarted.scmSetup.description.interpolated": "Nastavte u svého projektu integrovanou správu verzí, abyste mohli sledovat změny a spolupracovat s ostatními.\r\n{0}",
- "gettingStarted.settings.description.interpolated": "Upravte si každý aspekt VS Code a rozšíření podle sebe. Běžně používaná nastavení se uvádějí jako první, abyste mohli snadněji začít pracovat.\r\n{0}",
- "gettingStarted.settings.title": "Optimalizace nastavení",
- "gettingStarted.settingsSync.description.interpolated": "Zachovejte si základní VS Code přizpůsobení zálohovaná a aktualizovaná na všech svých zařízeních.\r\n{0}",
- "gettingStarted.settingsSync.title": "Synchronizovat do a z jiných zařízení",
- "gettingStarted.setup.OpenFolder.description.interpolated": "Všechno je nastavené tak, abyste mohli začít programovat. Otevřete složku projektu, aby se soubory načetly do VS Code.\r\n{0}",
- "gettingStarted.setup.OpenFolder.title": "Otevřete si svůj kód.",
- "gettingStarted.setup.OpenFolderWeb.description.interpolated": "Všechno máte nastavené, abyste mohli začít kódovat. Pokud chcete své soubory dostat do VS Code, můžete otevřít místní projekt nebo vzdálené úložiště.\r\n{0}\r\n{1}",
- "gettingStarted.setup.description": "Podívejte se na nejlepší přizpůsobení, aby vám aplikace VS Code vyhovovala.",
- "gettingStarted.setup.title": "Začínáme s VS Code",
- "gettingStarted.setupWeb.description": "Seznamte se s nejlepšími možnostmi přizpůsobení, aby vám aplikace VS Code vyhovovala.",
- "gettingStarted.setupWeb.title": "Začínáme s VS Code na webu",
- "gettingStarted.shortcuts.description.interpolated": "Jakmile objevíte své oblíbené příkazy, vytvořte si vlastní klávesové zkratky pro okamžitý přístup.\r\n{0}",
- "gettingStarted.shortcuts.title": "Přizpůsobte si zástupce",
- "gettingStarted.splitview.description.interpolated": "Využívejte co nejlépe místo na obrazovce a otevírejte soubory vedle sebe, vertikálně nebo horizontálně.\r\n{0}",
- "gettingStarted.splitview.title": "Úpravy v zobrazení vedle sebe",
- "gettingStarted.tasks.description.interpolated": "Vytvořte úlohy pro své běžné pracovní postupy a využívejte integrované prostředí pro spouštění skriptů a automatickou kontrolu výsledků.\r\n{0}",
- "gettingStarted.tasks.title": "Automatizujte své projektové úlohy",
- "gettingStarted.terminal.description.interpolated": "Rychle spouštějte příkazy prostředí a monitorujte výstup sestavení hned vedle svého kódu.\r\n{0}",
- "gettingStarted.terminal.title": "Pohodlný integrovaný terminál",
- "gettingStarted.topLevelGitClone.description": "Klonovat vzdálené úložiště do místní složky",
- "gettingStarted.topLevelGitClone.title": "Klonovat úložiště Git…",
- "gettingStarted.topLevelGitOpen.description": "Připojení ke vzdálenému úložišti nebo žádost o procházení, vyhledávání, úpravy a potvrzení",
- "gettingStarted.topLevelGitOpen.title": "Otevření úložiště…",
- "gettingStarted.topLevelShowWalkthroughs.description": "Zobrazit průvodce editoru nebo rozšíření",
- "gettingStarted.topLevelShowWalkthroughs.title": "Otevřít návod...",
- "gettingStarted.videoTutorial.description.interpolated": "Podívejte se na první z řady krátkých a praktických videokurzů pro hlavní funkce nástroje VS Code.\r\n{0}",
- "gettingStarted.videoTutorial.title": "Opřete se a učte se",
- "gettingStarted.workspaceTrust.description.interpolated": "{0} umožňuje rozhodnout, jestli složky projektu mají **povolit, nebo omezit** automatické spouštění kódu __(požadováno pro rozšíření, ladění atd.)__.\r\nOtevření souboru nebo složky zobrazí výzvu k potvrzení vztahu důvěryhodnosti. {1} můžete i kdykoli později.",
- "gettingStarted.workspaceTrust.title": "Bezpečně procházení a úpravy kódu",
- "initRepo": "Inicializovat úložiště Git",
- "installGit": "Nainstalovat Git",
- "keyboardShortcuts": "Klávesové zkratky",
- "openEditorPlayground": "Otevřít testovací prostředí editoru",
- "openFolder": "Otevřít složku",
- "openRepository": "Otevřít úložiště",
- "openSCM": "Otevřít správu zdrojového kódu",
- "pickFolder": "Vybrat složku",
- "quickOpen": "Rychle otevřít soubor",
- "runProject": "Spuštění projektu",
- "runTasks": "Spustit automaticky zjištěné úkoly",
- "showTerminal": "Zobrazit panel terminálu",
- "splitEditor": "Rozdělit editor",
- "titleID": "Procházet barevné motivy",
- "toggleMenuBar": "Přepnout řádek nabídek",
- "tweakSettings": "Vylepšit moje nastavení",
- "watch": "Zhlédnout kurz",
- "workspaceTrust": "Vztah důvěryhodnosti pracovního prostoru"
- },
- "vs/workbench/contrib/welcome/gettingStarted/common/media/example_markdown_media": {
- "HighContrast": "Vysoký kontrast",
- "dark": "Tmavý",
- "light": "Světlý",
- "seeMore": "Zobrazit další motivy..."
- },
- "vs/workbench/contrib/welcome/gettingStarted/common/media/notebookProfile": {
- "colab": "Colab",
- "default": "Výchozí",
- "jupyter": "Jupyter"
- },
- "vs/workbench/contrib/welcome/overlay/browser/welcomeOverlay": {
- "hideWelcomeOverlay": "Skrýt přehled rozhraní",
- "welcomeOverlay": "Přehled uživatelského rozhraní",
- "welcomeOverlay.commandPalette": "Najít a spustit všechny příkazy",
- "welcomeOverlay.debug": "Spustit a ladit",
- "welcomeOverlay.explorer": "Průzkumník souborů",
- "welcomeOverlay.extensions": "Správa rozšíření",
- "welcomeOverlay.git": "Správa zdrojového kódu",
- "welcomeOverlay.notifications": "Zobrazit oznámení",
- "welcomeOverlay.problems": "Zobrazit chyby a upozornění",
- "welcomeOverlay.search": "Hledat v souborech",
- "welcomeOverlay.terminal": "Přepnout integrovaný terminál"
+ "vs/workbench/contrib/webview/electron-browser/webviewCommands": {
+ "iframeWebviewAlert": "Ladí se webové zobrazení založené na prvcích IFrame pomocí standardních vývojových nástrojů.",
+ "openToolsDescription": "Otevře Vývojářské nástroje pro aktivní webová zobrazení.",
+ "openToolsLabel": "Otevřít vývojářské nástroje webového zobrazení"
},
- "vs/workbench/contrib/welcome/page/browser/welcomePage.contribution": {
- "workbench.startupEditor": "Určuje, který editor se má zobrazit při spuštění, pokud není žádný obnoven z předchozí relace.",
- "workbench.startupEditor.newUntitledFile": "Umožňuje otevřít nový soubor bez názvu (platí pouze při otevírání prázdného okna).",
- "workbench.startupEditor.none": "Spustit bez editoru",
- "workbench.startupEditor.readme": "Při otevření složky obsahující soubor README tento soubor otevřít, jinak použít welcomePage. Poznámka: Toto je pouze globální konfigurace. Nastavení bude ignorováno, pokud se nastaví v konfiguraci pracovního prostoru nebo složky.",
- "workbench.startupEditor.welcomePage": "Otevře úvodní stránku s obsahem, který má pomoci při seznámení s VS Code a rozšířeními.",
- "workbench.startupEditor.welcomePageInEmptyWorkbench": "Při otevření prázdné pracovní plochy otevřít úvodní stránku"
+ "vs/workbench/contrib/webviewPanel/browser/webviewCommands": {
+ "editor.action.webvieweditor.findNext": "Najít další",
+ "editor.action.webvieweditor.findPrevious": "Najít předchozí",
+ "editor.action.webvieweditor.hideFind": "Zastavit hledání",
+ "editor.action.webvieweditor.showFind": "Zobrazit hledání",
+ "refreshWebviewLabel": "Znovu načíst webová zobrazení"
},
- "vs/workbench/contrib/welcome/walkThrough/browser/editor/editorWalkThrough": {
- "editorWalkThrough": "Interaktivní editor – testovací prostředí",
- "editorWalkThrough.title": "Testovací prostředí editoru"
+ "vs/workbench/contrib/webviewPanel/browser/webviewEditor": {
+ "context.activeWebviewId": "ViewType aktuálně aktivního panelu webového zobrazení."
},
- "vs/workbench/contrib/welcome/walkThrough/browser/walkThrough.contribution": {
- "miPlayground": "&&Testovací prostředí editoru",
- "walkThrough.editor.label": "Testovací prostředí"
+ "vs/workbench/contrib/webviewPanel/browser/webviewPanel.contribution": {
+ "webview.editor.label": "editor webových zobrazení"
},
- "vs/workbench/contrib/welcome/walkThrough/browser/walkThroughPart": {
- "walkThrough.embeddedEditorBackground": "Barva pozadí vložených editorů v interaktivním testovacím prostředí",
- "walkThrough.gitNotFound": "Vypadá to, že v systému nemáte nainstalovaný Git.",
- "walkThrough.unboundCommand": "nesvázáno"
+ "vs/workbench/contrib/welcomeDialog/browser/welcomeDialog.contribution": {
+ "workbench.welcome.dialog": "Pokud je tato možnost povolená, zobrazí se v editoru uvítací widget."
+ },
+ "vs/workbench/contrib/welcomeDialog/browser/welcomeWidget": {
+ "dialogClose": "Zavřít dialogové okno"
},
"vs/workbench/contrib/welcomeGettingStarted/browser/gettingStarted": {
+ "acessibleViewHint": "Zkontrolujte to v přístupném zobrazení ({0}).\r\n",
+ "acessibleViewHintNoKbOpen": "Zkontrolujte to v přístupném zobrazení pomocí příkazu Otevřít přístupné zobrazení, které se v tuto chvíli nedá aktivovat klávesovou zkratkou.\r\n",
"allDone": "Označit jako hotové",
"checkboxTitle": "Pokud je tato možnost zaškrtnutá, zobrazí se tato stránka při spuštění.",
"close": "Skrýt",
+ "closeAriaLabel": "Skrýt",
"footer": "{0} shromažďuje data o využití. Přečtěte si naše {1} a podívejte se, jak {2}.",
- "getStarted": "Začínáme",
"gettingStarted.allStepsComplete": "Všechny kroky ({0}) jsou dokončeny.",
"gettingStarted.editingEvolved": "Vylepšené úpravy",
"gettingStarted.keyboardTip": "Tip: Použijte klávesovou zkratku ",
"gettingStarted.someStepsComplete": "Dokončené kroky: {0} z {1}",
+ "goBack": "Přejít zpět",
"imageShowing": "Obrázek zobrazující {0}",
"new": "Nové",
"newItems": "Aktualizováno",
@@ -10247,40 +16418,51 @@
"show more recents": "Zobrazit všechny nedávné složky {0}",
"showAll": "Více…",
"start": "Spustit",
+ "stepDone": "Zaškrtávací políčko pro krok {0}: Dokončeno",
+ "stepNotDone": "Zaškrtávací políčko pro krok {0}: Nedokončeno",
"toStart": "na začátek.",
+ "videoAltText": "Video pro {0}",
+ "videoShowing": "Video zobrazující {0}",
"walkthroughs": "Návody",
+ "welcome": "Vítejte",
"welcomeAriaLabel": "Přehled toho, jak se seznámit s editorem",
"welcomePage.openFolderWithPath": "Otevřít složku {0} s cestou {1}",
"welcomePage.showOnStartup": "Zobrazit úvodní stránku při spuštění"
},
"vs/workbench/contrib/welcomeGettingStarted/browser/gettingStarted.contribution": {
"deprecationMessage": "Zastaralé, použijte globální workbench.reduceMotion.",
- "getStarted": "Začínáme",
- "help": "Nápověda",
- "miGetStarted": "Začínáme",
- "pickWalkthroughs": "Otevřít návod",
+ "miWelcome": "Vítejte",
+ "minWelcomeDescription": "Otevře průvodce, který vám pomůže začít pracovat s VS Code.",
+ "pickWalkthroughs": "Vyberte návod, který chcete otevřít",
+ "welcome": "Vítejte",
"welcome.goBack": "Přejít zpět",
"welcome.markStepComplete": "Označit krok jako dokončený",
"welcome.markStepInomplete": "Označit krok jako nedokončený",
"welcome.showAllWalkthroughs": "Otevřít návod",
"workbench.startupEditor": "Určuje, který editor se má zobrazit při spuštění, pokud není žádný obnoven z předchozí relace.",
- "workbench.startupEditor.newUntitledFile": "Umožňuje otevřít nový soubor bez názvu (platí pouze při otevírání prázdného okna).",
+ "workbench.startupEditor.newUntitledFile": "Umožňuje otevřít nový textový soubor bez názvu (platí pouze při otevírání prázdného okna).",
"workbench.startupEditor.none": "Spustit bez editoru",
"workbench.startupEditor.readme": "Při otevření složky obsahující soubor README tento soubor otevřít, jinak použít welcomePage. Poznámka: Toto je pouze globální konfigurace. Nastavení bude ignorováno, pokud se nastaví v konfiguraci pracovního prostoru nebo složky.",
+ "workbench.startupEditor.terminal": "Otevře nový terminál v oblasti editoru.",
"workbench.startupEditor.welcomePage": "Otevře úvodní stránku s obsahem, který má pomoci při seznámení s VS Code a rozšířeními.",
"workbench.startupEditor.welcomePageInEmptyWorkbench": "Při otevření prázdné pracovní plochy otevřít úvodní stránku",
"workbench.welcomePage.preferReducedMotion": "Pokud je tato možnost povolená, omezí se pohyb na úvodní stránce.",
- "workbench.welcomePage.videoTutorials": "Pokud je tato možnost povolená, stránka Začínáme obsahuje další odkazy na videokurzy.",
"workbench.welcomePage.walkthroughs.openOnInstall": "Pokud je tato možnost povolená, průvodce rozšířením se otevře při instalaci rozšíření.",
"workspacePlatform": "Platforma aktuálního pracovního prostoru, která se může ve vzdálených nebo bezserverových kontextech lišit od platformy uživatelského rozhraní."
},
+ "vs/workbench/contrib/welcomeGettingStarted/browser/gettingStartedAccessibleView": {
+ "gettingStarted.description": "Popis: {0}",
+ "gettingStarted.step": "{0}\r\n{1}",
+ "gettingStarted.title": "Název: {0}"
+ },
"vs/workbench/contrib/welcomeGettingStarted/browser/gettingStartedColors": {
+ "walkthrough.stepTitle.foreground": "Barva popředí nadpisu každého kroku názorného postupu",
"welcomePage.background": "Barva pozadí uvítací stránky",
"welcomePage.progress.background": "Barva popředí indikátorů průběhu uvítací stránky",
"welcomePage.progress.foreground": "Barva pozadí indikátorů průběhu uvítací stránky",
- "welcomePage.tileBackground": "Barva pozadí dlaždic na stránce Začínáme",
- "welcomePage.tileHoverBackground": "Barva pozadí na dlaždici Začínáme po najetí myší",
- "welcomePage.tileShadow": "Barva stínu tlačítek kategorií pro Úvodní stránku návodu"
+ "welcomePage.tileBackground": "Barva pozadí dlaždic na stránce Vítejte.",
+ "welcomePage.tileBorder": "Barva ohraničení dlaždic na stránce Vítejte.",
+ "welcomePage.tileHoverBackground": "Najeďte myší na barvu pozadí dlaždic na stránce Vítejte."
},
"vs/workbench/contrib/welcomeGettingStarted/browser/gettingStartedExtensionPoint": {
"pathDeprecated": "Zastaralé. Místo toho prosím použijte „image“ nebo „markdown“.",
@@ -10288,6 +16470,7 @@
"walkthroughs": "Poskytněte návody, které pomůžou uživatelům začít používat vaše rozšíření.",
"walkthroughs.description": "Popis návodu",
"walkthroughs.featuredFor": "Návody, které odpovídají jednomu z těchto vzorů glob, se v pracovních prostorech se zadanými soubory zobrazují jako doporučené. Například návod pro projekty TypeScriptu tady může uvést „tsconfig.json“.",
+ "walkthroughs.icon": "Relativní cesta k ikoně průvodce. Cesta je relativní vzhledem k umístění rozšíření. Pokud není určena, nastaví se výchozí ikona rozšíření, pokud je k dispozici.",
"walkthroughs.id": "Jedinečný identifikátor tohoto návodu",
"walkthroughs.steps": "Kroky, které se mají dokončit v rámci tohoto návodu.",
"walkthroughs.steps.button.deprecated.interpolated": "Zastaralé. Místo toho použijte odkazy Markdown v popisu, tj. {0}, {1} nebo {2}.",
@@ -10323,44 +16506,76 @@
"gettingStartedUnchecked": "Slouží k reprezentaci nedokončených kroků návodu."
},
"vs/workbench/contrib/welcomeGettingStarted/browser/gettingStartedInput": {
- "getStarted": "Začínáme"
+ "getStarted": "Vítejte",
+ "walkthroughPageTitle": "Podrobný návod: {0}"
},
"vs/workbench/contrib/welcomeGettingStarted/browser/gettingStartedService": {
"builtin": "Integrované",
"developer": "Vývojář",
+ "resetGettingStartedProgressDescription": "Resetujte průběh všech kroků průvodce na úvodní stránce, aby se zobrazovaly jako při prvním otevření, a získejte tak nový začátek v úvodním prostředí.",
"resetWelcomePageWalkthroughProgress": "Průběh resetování úvodní stránky s návodem"
},
+ "vs/workbench/contrib/welcomeGettingStarted/browser/startupPage": {
+ "startupPage.markdownPreviewError": "Nepodařilo se otevřít náhled markdownu: {0}\r\n\r\nUjistěte se prosím, že je povolené rozšíření markdownu.",
+ "welcome.displayName": "Úvodní stránka"
+ },
"vs/workbench/contrib/welcomeGettingStarted/common/gettingStartedContent": {
"browseLangExts": "Procházet rozšíření jazyků",
- "browsePopular": "Procházet oblíbená webová rozšíření",
- "browseRecommended": "Procházet doporučená rozšíření",
+ "browsePopular": "Procházet oblíbená rozšíření",
+ "browsePopularWeb": "Procházet oblíbená webová rozšíření",
"cloneRepo": "Naklonovat úložiště",
"commandPalette": "Otevřít paletu příkazů",
- "enableSync": "Povolit synchronizaci nastavení",
+ "enableSync": "Nastavení zálohování a synchronizace",
"enableTrust": "Povolit důvěryhodnost",
"getting-started-beginner-icon": "Ikona používaní pro kategorii pro začátečníky na úvodní stránce",
- "getting-started-intermediate-icon": "Ikona používaná pro kategorii pro středně pokročilé na úvodní stránce",
"getting-started-setup-icon": "Ikona používaná pro kategorii nastavení na úvodní stránce",
- "gettingStarted.beginner.description": "Pokud chcete získat přehled funkcí, které musíte mít, přejděte rovnou na VS Code.",
+ "gettingStarted.accessibilityHelp.description.interpolated": "Dialogové okno nápovědy k funkcím přístupnosti poskytuje informace o tom, co lze od dané funkce očekávat, a o příkazech / klávesových zkratkách pro její ovládání.\r\n Když je fokus v editoru, terminálu, poznámkovém bloku, odpovědi chatu, komentáři nebo ladicí konzole, lze otevřít příslušné dialogové okno příkazem Otevřít nápovědu k přístupnosti.\r\n{0}",
+ "gettingStarted.accessibilityHelp.title": "Informace o funkcích získáte pomocí dialogového okna nápovědy k přístupnosti.",
+ "gettingStarted.accessibilitySettings.description.interpolated": "Nastavení přístupnosti lze nakonfigurovat spuštěním příkazu Otevřít nastavení přístupnosti.\r\n{0}",
+ "gettingStarted.accessibilitySettings.title": "Konfigurace nastavení přístupnosti",
+ "gettingStarted.accessibilitySignals.description.interpolated": "Při různých událostech na pracovní ploše se přehrávají zvuky a oznámení týkající se přístupnosti.\r\n Ty se dají zjistit a nakonfigurovat pomocí příkazů Vypsat signalizační zvuky a Vypsat signalizační oznámení.\r\n{0}\r\n{1}",
+ "gettingStarted.accessibilitySignals.title": "Nastavte si podrobně, které signály přístupnosti chcete přijímat zvukově nebo pomocí zařízení pro Braillovo písmo.",
+ "gettingStarted.accessibleView.description.interpolated": "Přístupné zobrazení je k dispozici pro terminál, popisky zobrazované po umístění ukazatele myši na prvek, oznámení, komentáře, výstup poznámkového bloku, odpovědi chatu, vložená dokončování a výstup konzoly ladění.\r\n S fokusem na některé z těchto funkcí se dá otevřít pomocí příkazu Otevřít přístupné zobrazení.\r\n{0}",
+ "gettingStarted.accessibleView.title": "Uživatelé čtečky obrazovky mohou v přístupném zobrazení prohlížet obsah řádek po řádku a znak po znaku.",
+ "gettingStarted.beginner.description": "Získejte přehled o nejdůležitějších funkcích",
"gettingStarted.beginner.title": "Naučte se základy",
- "gettingStarted.commandPalette.description.interpolated": "Příkazy jsou klávesnicový způsob, jak provést libovolný úkol ve VS Code. **Procvičte** si ho vyhledáním často používaných příkazů, abyste ušetřili čas.\r\n{0}\r\n__Zkuste vyhledat přepínač zobrazení.__",
- "gettingStarted.commandPalette.title": "Jeden zástupce pro přístup ke všemu",
+ "gettingStarted.beginner.walkthroughPageTitle": "Základní funkce",
+ "gettingStarted.codeFolding.description.interpolated": "Použijte k tomu příkaz Přepnout sbalení.\r\n{0}\r\n Rekurzivní sbalení a rozbalení pomocí příkazu Přepnout možnost Sbalit rekurzivně\r\n{1}\r\n",
+ "gettingStarted.codeFolding.title": "Pomocí sbalování kódu můžete sbalit bloky kódu a zaměřit se na kód, který vás zajímá.",
+ "gettingStarted.commandPalette.description.interpolated": "Spouštějte příkazy pro jakékoli úlohy ve VS Code bez nutnosti používat myš.\r\n{0}",
+ "gettingStarted.commandPalette.title": "Pracujte produktivněji díky využívání palety příkazů ",
+ "gettingStarted.commandPaletteAccessibility.description.interpolated": "Spouštějte příkazy pro jakékoli úlohy ve VS Code bez nutnosti používat myš.\r\n{0}",
+ "gettingStarted.commandPaletteAccessibility.title": "Pracujte produktivněji díky využívání palety příkazů ",
+ "gettingStarted.copilotSetup.description": "Pomocí [Copilotu]({0}) můžete generovat kód napříč více soubory, opravovat chyby, klást otázky týkající se kódu a provádět řadu dalších činností pomocí přirozeného jazyka.",
+ "gettingStarted.copilotSetup.terms": "Pokračováním v používání {0} Copilotu souhlasíte s [Podmínkami]({2}){1} a [Prohlášením o zásadách ochrany osobních údajů]({3}).",
+ "gettingStarted.copilotSetup.title": "Používejte AI funkce s Copilotem zdarma",
"gettingStarted.debug.description.interpolated": "Urychlete cyklus úprav, sestavení, testování a ladění nastavením konfigurace spuštění.\r\n{0}",
"gettingStarted.debug.title": "Sledujte svůj kód v akci",
+ "gettingStarted.dictation.description.interpolated": "Diktování umožňuje psát kód a text pomocí hlasu. Dá se aktivovat pomocí příkazu Hlas: Spustit diktování v editoru.\r\n{0}\r\n Pro diktování v terminálu použijte příkazy Hlas: Spustit diktování v terminálu a Hlas: Zastavit diktování v terminálu.\r\n{1}\r\n{2}",
+ "gettingStarted.dictation.title": "K psaní kódu a textu v editoru a terminálu použijte diktování",
"gettingStarted.extensions.description.interpolated": "Rozšíření vylepšují VS Code. Nabízejí užitečné nástroje pro produktivitu, rozšiřují původní funkce, nebo třeba přidávají funkce, které jsou zcela nové.\r\n{0}",
- "gettingStarted.extensions.title": "Neomezená rozšiřitelnost",
+ "gettingStarted.extensions.title": "Kódování s rozšířeními",
"gettingStarted.extensionsWeb.description.interpolated": "Rozšíření jsou hnací silou VS Code. Na webu je jich stále více.\r\n{0}",
- "gettingStarted.findLanguageExts.description.interpolated": "Kódujte chytřeji se zvýrazňováním syntaxe, dokončením kódu, lintováním a laděním. I když je předdefinovaná řada jazyků, lze přidat spoustu dalších jako rozšíření.\r\n{0}",
+ "gettingStarted.findLanguageExts.description.interpolated": "Pište kód chytřeji se zvýrazňováním syntaxe, vkládanými návrhy, lintováním a laděním. I když je předdefinovaná řada jazyků, lze přidat spoustu dalších jako rozšíření.\r\n{0}",
"gettingStarted.findLanguageExts.title": "Bohatá podpora pro všechny vaše jazyky",
- "gettingStarted.installGit.description.interpolated": "Pokud chcete sledovat změny ve vašich projektech, nainstalujte Git.\r\n{0}",
+ "gettingStarted.goToSymbol.description.interpolated": "Příkaz Přejít na symbol je užitečný pro přechod mezi důležitými orientačními body v dokumentu.\r\n{0}",
+ "gettingStarted.goToSymbol.title": "Přejít na symboly v souboru",
+ "gettingStarted.hover.description.interpolated": "S fokusem v editoru na proměnné nebo symbolu lze na informace zobrazované po najetí myší přesunout fokus pomocí příkazu Zobrazit nebo otevřít informace po umístění ukazatele myši.\r\n{0}",
+ "gettingStarted.hover.title": "Pokud chcete získat další informace o proměnné nebo symbolu, otevřete popisek zobrazovaný po umístění ukazatele myši.",
+ "gettingStarted.installGit.description.interpolated": "Pokud chcete sledovat změny v projektech, nainstalujte Git.\r\n{0}\r\n{1}Po instalaci znovu načtěte okno {2}, aby se dokončilo nastavení Gitu.",
"gettingStarted.installGit.title": "Nainstalovat Git",
- "gettingStarted.intermediate.description": "Optimalizujte svůj pracovní postup vývoje pomocí těchto tipů a rad.",
- "gettingStarted.intermediate.title": "Zvyšte svoji produktivitu",
- "gettingStarted.menuBar.description.interpolated": "V rozbalovací nabídce je k dispozici úplný panel nabídek, který uvolní místo pro váš kód. Přepněte jeho vzhled pro rychlejší přístup. \r\n{0}",
+ "gettingStarted.intellisense.description.interpolated": "Návrhy IntelliSense je možné otevřít pomocí příkazu Aktivovat Intellisense.\r\n{0}\r\n Vložené návrhy IntelliSense se dají aktivovat pomocí příkazu Aktivovat vložený návrh.\r\n{1}\r\n Mezi užitečná nastavení patří editor.inlineCompletionsAccessibilityVerbose a editor.screenReaderAnnounceInlineSuggestion.",
+ "gettingStarted.intellisense.title": "Intellisense vám pomůže zvýšit efektivitu kódování",
+ "gettingStarted.keyboardShortcuts.description.interpolated": "Jakmile objevíte své oblíbené příkazy, vytvořte si vlastní klávesové zkratky pro okamžitý přístup.\r\n{0}",
+ "gettingStarted.keyboardShortcuts.title": "Přizpůsobení klávesových zkratek",
+ "gettingStarted.menuBar.description.interpolated": "V rozbalovací nabídce je k dispozici úplný řádek nabídek, který uvolní místo pro váš kód. Přepněte jeho vzhled pro rychlejší přístup. \r\n{0}",
"gettingStarted.menuBar.title": "Správné množství uživatelského rozhraní",
- "gettingStarted.newFile.description": "Otevře nový soubor bez názvu, poznámkový blok nebo vlastní editor.",
+ "gettingStarted.newFile.description": "Otevře nový textový soubor bez názvu, poznámkový blok nebo vlastní editor.",
"gettingStarted.newFile.title": "Nový soubor…",
+ "gettingStarted.newWorkspaceChat.description": "Vytvořte nový pracovní prostor prostřednictvím chatu.",
+ "gettingStarted.newWorkspaceChat.title": "Vygenerovat nový pracovní prostor...",
"gettingStarted.notebook.title": "Přizpůsobit poznámkové bloky",
+ "gettingStarted.notebook.walkthroughPageTitle": "Poznámkové bloky",
"gettingStarted.notebookProfile.description": "Získejte poznámkové bloky, které budou podle vašich představ.",
"gettingStarted.notebookProfile.title": "Vyberte rozložení svých poznámkových bloků",
"gettingStarted.openFile.description": "Pokud chcete začít pracovat, otevřete soubor.",
@@ -10369,63 +16584,80 @@
"gettingStarted.openFolder.title": "Otevřít složku…",
"gettingStarted.openMac.description": "Pokud chcete začít pracovat, otevřete soubor nebo složku.",
"gettingStarted.openMac.title": "Otevřít…",
- "gettingStarted.pickColor.description.interpolated": "Ta pravá barevná paleta vám pomůže se zaměřit na váš kód, nedráždí vaše oči a jednoduše je zábavné ji používat.\r\n{0}",
- "gettingStarted.pickColor.title": "Zvolte požadovaný vzhled.",
- "gettingStarted.playground.description.interpolated": "Chcete programovat rychleji a chytřeji? Procvičte si výkonné funkce pro úpravy kódu v interaktivním testovacím prostředí.\r\n{0}",
- "gettingStarted.playground.title": "Redefinujte své dovednosti úprav",
+ "gettingStarted.pickColor.description.interpolated": "Správný motiv vám pomůže soustředit se na kód, je příjemný na pohled a jeho používání je jednoduše zábavnější.\r\n{0}",
+ "gettingStarted.pickColor.title": "Zvolte motiv",
"gettingStarted.quickOpen.description.interpolated": "Jediným stisknutím klávesy můžete okamžitě přecházet mezi soubory. Tip: Pomocí klávesy šipky vpravo můžete otevřít více souborů.\r\n{0}",
"gettingStarted.quickOpen.title": "Rychlé procházení mezi soubory",
"gettingStarted.scm.description.interpolated": "Už nemusíte vyhledávat příkazy Gitu! Pracovní postupy Gitu a GitHub jsou úzce integrovány.\r\n{0}",
"gettingStarted.scm.title": "Sledujte svůj kód pomocí Gitu",
"gettingStarted.scmClone.description.interpolated": "Nastavte u svého projektu integrovanou správu verzí, abyste mohli sledovat změny a spolupracovat s ostatními.\r\n{0}",
"gettingStarted.scmSetup.description.interpolated": "Nastavte u svého projektu integrovanou správu verzí, abyste mohli sledovat změny a spolupracovat s ostatními.\r\n{0}",
- "gettingStarted.settings.description.interpolated": "Upravte si každý aspekt VS Code a rozšíření podle sebe. Běžně používaná nastavení se uvádějí jako první, abyste mohli snadněji začít pracovat.\r\n{0}",
"gettingStarted.settings.title": "Optimalizace nastavení",
- "gettingStarted.settingsSync.description.interpolated": "Zachovejte si základní VS Code přizpůsobení zálohovaná a aktualizovaná na všech svých zařízeních.\r\n{0}",
- "gettingStarted.settingsSync.title": "Synchronizovat do a z jiných zařízení",
- "gettingStarted.setup.OpenFolder.description.interpolated": "Všechno je nastavené tak, abyste mohli začít programovat. Otevřete složku projektu, aby se soubory načetly do VS Code.\r\n{0}",
+ "gettingStarted.settingsAndSync.description.interpolated": "Přizpůsobte si každý aspekt VS Code a [sync](command:workbench.userDataSync.actions.turnOn) své úpravy napříč zařízeními.\r\n{0}",
+ "gettingStarted.settingsSync.description.interpolated": "Mějte základní přizpůsobení zálohovaná a aktualizovaná na všech svých zařízeních.\r\n{0}",
+ "gettingStarted.settingsSync.title": "Nastavení synchronizace mezi zařízeními",
"gettingStarted.setup.OpenFolder.title": "Otevřete si svůj kód.",
"gettingStarted.setup.OpenFolderWeb.description.interpolated": "Všechno máte nastavené, abyste mohli začít kódovat. Pokud chcete své soubory dostat do VS Code, můžete otevřít místní projekt nebo vzdálené úložiště.\r\n{0}\r\n{1}",
- "gettingStarted.setup.description": "Podívejte se na nejlepší přizpůsobení, aby vám aplikace VS Code vyhovovala.",
+ "gettingStarted.setup.description": "Přizpůsobte si editor, naučte se základy a začněte kódovat.",
"gettingStarted.setup.title": "Začínáme s VS Code",
- "gettingStarted.setupWeb.description": "Seznamte se s nejlepšími možnostmi přizpůsobení, aby vám aplikace VS Code vyhovovala.",
- "gettingStarted.setupWeb.title": "Začínáme s VS Code na webu",
+ "gettingStarted.setup.walkthroughPageTitle": "Nastavení VS Code",
+ "gettingStarted.setupAccessibility.description": "Seznamte se s nástroji a klávesovými zkratkami, díky kterým je zajišťována přístupnost ve VS Code. Poznámka: Některé akce se nedají provést v kontextu podrobného návodu.",
+ "gettingStarted.setupAccessibility.title": "Začínáme s funkcemi přístupnosti",
+ "gettingStarted.setupAccessibility.walkthroughPageTitle": "Nastavení přístupnosti VS Code",
+ "gettingStarted.setupWeb.description": "Přizpůsobte si editor, naučte se základy a začněte kódovat.",
+ "gettingStarted.setupWeb.title": "Začínáme s VS Code pro web",
+ "gettingStarted.setupWeb.walkthroughPageTitle": "Nastavení webu VS Code",
"gettingStarted.shortcuts.description.interpolated": "Jakmile objevíte své oblíbené příkazy, vytvořte si vlastní klávesové zkratky pro okamžitý přístup.\r\n{0}",
"gettingStarted.shortcuts.title": "Přizpůsobte si zástupce",
- "gettingStarted.splitview.description.interpolated": "Využívejte co nejlépe místo na obrazovce a otevírejte soubory vedle sebe, vertikálně nebo horizontálně.\r\n{0}",
- "gettingStarted.splitview.title": "Úpravy v zobrazení vedle sebe",
"gettingStarted.tasks.description.interpolated": "Vytvořte úlohy pro své běžné pracovní postupy a využívejte integrované prostředí pro spouštění skriptů a automatickou kontrolu výsledků.\r\n{0}",
"gettingStarted.tasks.title": "Automatizujte své projektové úlohy",
"gettingStarted.terminal.description.interpolated": "Rychle spouštějte příkazy prostředí a monitorujte výstup sestavení hned vedle svého kódu.\r\n{0}",
- "gettingStarted.terminal.title": "Pohodlný integrovaný terminál",
+ "gettingStarted.terminal.title": "Integrovaný terminál",
"gettingStarted.topLevelGitClone.description": "Klonovat vzdálené úložiště do místní složky",
"gettingStarted.topLevelGitClone.title": "Klonovat úložiště Git…",
"gettingStarted.topLevelGitOpen.description": "Připojení ke vzdálenému úložišti nebo žádost o procházení, vyhledávání, úpravy a potvrzení",
"gettingStarted.topLevelGitOpen.title": "Otevření úložiště…",
- "gettingStarted.topLevelShowWalkthroughs.description": "Zobrazit průvodce editoru nebo rozšíření",
- "gettingStarted.topLevelShowWalkthroughs.title": "Otevřít návod…",
- "gettingStarted.topLevelVideoTutorials.description": "Podívejte naši řadu krátkých a praktických videokurzů pro hlavní funkce nástroje VS Code.",
- "gettingStarted.topLevelVideoTutorials.title": "Podívejte se na videokurzy",
+ "gettingStarted.topLevelOpenTunnel.description": "Připojení ke vzdálenému počítači prostřednictvím aplikace Tunnel",
+ "gettingStarted.topLevelOpenTunnel.title": "Otevřít Tunel...",
+ "gettingStarted.topLevelRemoteOpen.description": "Připojte se k pracovním prostorům pro vzdálený vývoj.",
+ "gettingStarted.topLevelRemoteOpen.title": "Připojit k",
+ "gettingStarted.verbositySettings.description.interpolated": "Pro funkce na pracovní ploše jsou k dispozici nastavení podrobností pro čtečku obrazovky zobrazované nápovědy. Jakmile se uživatel s danou funkcí seznámí, může nastavit, aby se nezobrazovala nápověda, jak ji používat. Například u funkcí, pro které existuje dialogové okno nápovědy k přístupnosti, bude uvedeno, jak toto dialogové okno otevřít, dokud nebude pro danou funkci nastavení podrobností zakázáno.\r\n Tato a další nastavení přístupnosti lze nakonfigurovat spuštěním příkazu Otevřít nastavení přístupnosti.\r\n{0}",
+ "gettingStarted.verbositySettings.title": "Řízení podrobností popisků aria",
"gettingStarted.videoTutorial.description.interpolated": "Podívejte se na první z řady krátkých a praktických videokurzů pro hlavní funkce nástroje VS Code.\r\n{0}",
- "gettingStarted.videoTutorial.title": "Opřete se a učte se",
+ "gettingStarted.videoTutorial.title": "Podívejte se na videokurzy",
"gettingStarted.workspaceTrust.description.interpolated": "{0} umožňuje rozhodnout, jestli složky projektu mají **povolit, nebo omezit** automatické spouštění kódu __(požadováno pro rozšíření, ladění atd.)__.\r\nOtevření souboru nebo složky zobrazí výzvu k potvrzení vztahu důvěryhodnosti. {1} můžete i kdykoli později.",
"gettingStarted.workspaceTrust.title": "Bezpečně procházení a úpravy kódu",
"initRepo": "Inicializovat úložiště Git",
"installGit": "Nainstalovat Git",
"keyboardShortcuts": "Klávesové zkratky",
- "openEditorPlayground": "Otevřít testovací prostředí editoru",
+ "listSignalAnnouncements": "Vypsat signalizační oznámení",
+ "listSignalSounds": "Vypsat signalizační zvuky",
+ "openAccessibilityHelp": "Otevřít nápovědu k přístupnosti",
+ "openAccessibilitySettings": "Otevřít nastavení přístupnosti",
+ "openAccessibleView": "Otevřít přístupné zobrazení",
"openFolder": "Otevřít složku",
+ "openGoToSymbol": "Přejít na symbol",
"openRepository": "Otevřít úložiště",
"openSCM": "Otevřít správu zdrojového kódu",
- "pickFolder": "Vybrat složku",
+ "openVerbositySettings": "Otevřít nastavení přístupnosti",
"quickOpen": "Rychle otevřít soubor",
"runProject": "Spuštění projektu",
"runTasks": "Spustit automaticky zjištěné úkoly",
- "showTerminal": "Zobrazit panel terminálu",
- "splitEditor": "Rozdělit editor",
+ "settings": "{0} Copilot může zobrazovat [veřejný kód]({1}) návrhy a používat vaše data k vylepšování produktu. Tato [nastavení]({2}) můžete kdykoli změnit.",
+ "setupCopilotButton.chatWithCopilot": "Začít chatovat",
+ "setupCopilotButton.setup": "Použití funkcí AI",
+ "showOrFocusHover": "Zobrazit nebo zaměřit na najetí myší",
+ "showTerminal": "Otevřít terminál",
+ "terminalStartDictation": "Terminál: Spustit diktování v terminálu",
+ "terminalStopDictation": "Terminál: Zastavit diktování v terminálu",
"titleID": "Procházet barevné motivy",
+ "toggleDictation": "Hlas: Spustit diktování v editoru",
+ "toggleFold": "Přepnout sbalení",
+ "toggleFoldRecursively": "Přepnout možnost Sbalit rekurzivně",
"toggleMenuBar": "Přepnout řádek nabídek",
- "tweakSettings": "Vylepšit moje nastavení",
+ "triggerInlineSuggestion": "Aktivovat vložený návrh",
+ "triggerIntellisense": "Aktivovat Intellisense",
+ "tweakSettings": "Otevřít nastavení",
"watch": "Zhlédnout kurz",
"workspaceTrust": "Vztah důvěryhodnosti pracovního prostoru"
},
@@ -10437,10 +16669,16 @@
"vs/workbench/contrib/welcomeGettingStarted/common/media/theme_picker": {
"HighContrast": "Tmavý vysoký kontrast",
"HighContrastLight": "Jemně Vysoký kontrast",
- "dark": "Tmavý",
- "light": "Světlý",
+ "dark": "Tmavé moderní",
+ "light": "Světlé moderní",
"seeMore": "Zobrazit další motivy…"
},
+ "vs/workbench/contrib/welcomeGettingStarted/common/media/theme_picker_small": {
+ "HighContrast": "Tmavý – vysoký kontrast",
+ "HighContrastLight": "Světlý – vysoký kontrast",
+ "dark": "Tmavý – moderní",
+ "light": "Světlý – moderní"
+ },
"vs/workbench/contrib/welcomeOverlay/browser/welcomeOverlay": {
"hideWelcomeOverlay": "Skrýt přehled rozhraní",
"welcomeOverlay": "Přehled uživatelského rozhraní",
@@ -10452,15 +16690,8 @@
"welcomeOverlay.notifications": "Zobrazit oznámení",
"welcomeOverlay.problems": "Zobrazit chyby a upozornění",
"welcomeOverlay.search": "Hledat v souborech",
- "welcomeOverlay.terminal": "Přepnout integrovaný terminál"
- },
- "vs/workbench/contrib/welcomePage/browser/welcomePage.contribution": {
- "workbench.startupEditor": "Určuje, který editor se má zobrazit při spuštění, pokud není žádný obnoven z předchozí relace.",
- "workbench.startupEditor.newUntitledFile": "Umožňuje otevřít nový soubor bez názvu (platí pouze při otevírání prázdného okna).",
- "workbench.startupEditor.none": "Spustit bez editoru",
- "workbench.startupEditor.readme": "Při otevření složky obsahující soubor README tento soubor otevřít, jinak použít welcomePage. Poznámka: Toto je pouze globální konfigurace. Nastavení bude ignorováno, pokud se nastaví v konfiguraci pracovního prostoru nebo složky.",
- "workbench.startupEditor.welcomePage": "Otevře úvodní stránku s obsahem, který má pomoci při seznámení s VS Code a rozšířeními.",
- "workbench.startupEditor.welcomePageInEmptyWorkbench": "Při otevření prázdné pracovní plochy otevřít úvodní stránku"
+ "welcomeOverlay.terminal": "Přepnout integrovaný terminál",
+ "welcomeOverlayBackground": "Barva pozadí welcomeOverlay."
},
"vs/workbench/contrib/welcomeViews/common/newFile.contribution": {
"Built-In": "Integrované",
@@ -10468,9 +16699,10 @@
"change keybinding": "Nakonfigurovat klávesové zkratky",
"file": "Soubor",
"miNewFile2": "Textový soubor",
- "miNewFileWithName": "Nový soubor ({0})",
+ "miNewFileWithName": "Vytvořit nový soubor ({0})",
+ "newFilePlaceholder": "Vyberte typ souboru nebo zadejte název souboru...",
+ "newFileTitle": "Nový soubor…",
"notebook": "Poznámkový blok",
- "selectFileType": "Vyberte typ souboru...",
"welcome.newFile": "Nový soubor…"
},
"vs/workbench/contrib/welcomeViews/common/viewsWelcomeContribution": {
@@ -10487,43 +16719,46 @@
},
"vs/workbench/contrib/welcomeWalkthrough/browser/editor/editorWalkThrough": {
"editorWalkThrough": "Interaktivní editor – testovací prostředí",
- "editorWalkThrough.title": "Testovací prostředí editoru"
+ "editorWalkThrough.title": "Testovací prostředí editoru",
+ "editorWalkThroughMetadata": "Otevře interaktivní testovací prostředí pro informace o editoru."
},
"vs/workbench/contrib/welcomeWalkthrough/browser/walkThrough.contribution": {
"miPlayground": "&&Testovací prostředí editoru",
"walkThrough.editor.label": "Testovací prostředí"
},
"vs/workbench/contrib/welcomeWalkthrough/browser/walkThroughPart": {
- "walkThrough.embeddedEditorBackground": "Barva pozadí vložených editorů v interaktivním testovacím prostředí",
"walkThrough.gitNotFound": "Vypadá to, že v systému nemáte nainstalovaný Git.",
"walkThrough.unboundCommand": "nesvázáno"
},
+ "vs/workbench/contrib/welcomeWalkthrough/common/walkThroughUtils": {
+ "walkThrough.embeddedEditorBackground": "Barva pozadí vložených editorů v interaktivním testovacím prostředí"
+ },
"vs/workbench/contrib/workspace/browser/workspace.contribution": {
"addWorkspaceFolderDetail": "Do důvěryhodného pracovního prostoru přidáváte soubory, které aktuálně nejsou označené jako důvěryhodné. Důvěřujete autorům těchto nových souborů?",
"addWorkspaceFolderMessage": "Důvěřujete autorům souborů v této složce?",
- "cancel": "Zrušit",
"cancelWorkspaceTrustButton": "Zrušit",
"checkboxString": "Důvěřovat autorům všech souborů v nadřazené složce “{0}“",
- "configureWorkspaceTrust": "Konfigurovat vztah důvěryhodnosti pracovního prostoru",
+ "configureWorkspaceTrustSettings": "Konfigurace nastavení důvěryhodnosti pracovního prostoru",
"dontTrustFolderOptionDescription": "Procházet složku v omezeném režimu",
- "dontTrustOption": "Ne, nedůvěřuji autorům",
+ "dontTrustOption": "&&Ne, nedůvěřuji autorům",
"dontTrustWorkspaceOptionDescription": "Procházet pracovní prostor v omezeném režimu",
"folderStartupTrustDetails": "{0} poskytuje funkce, které můžou automaticky spouštět soubory v této složce.",
"folderTrust": "Důvěřujete autorům souborů v této složce?",
- "grantFolderTrustButton": "Důvěřovat složce & Pokračovat",
- "grantWorkspaceTrustButton": "Důvěřovat pracovnímu prostoru & Pokračovat",
- "immediateTrustRequestLearnMore": "If you don't trust the authors of these files, we do not recommend continuing as the files may be malicious. See [our docs](https://aka.ms/vscode-workspace-trust) to learn more.",
+ "grantFolderTrustButton": "&&Důvěřovat složce a pokračovat",
+ "grantWorkspaceTrustButton": "&&Důvěřovat pracovnímu prostoru a pokračovat",
+ "immediateTrustRequestLearnMore": "Pokud autorům těchto souborů nedůvěřujete, nedoporučujeme pokračovat, protože soubory můžou být škodlivé. Další informace najdete v [naší dokumentaci](https://aka.ms/vscode-workspace-trust).",
"immediateTrustRequestMessage": "Pokud nedůvěřujete zdroji aktuálně otevřených souborů nebo složek, funkce, kterou se pokoušíte použít, může být bezpečnostním rizikem.",
"manageWorkspaceTrust": "Spravovat vztah důvěryhodnosti pracovního prostoru",
- "manageWorkspaceTrustButton": "Spravovat",
- "newWindow": "Otevřít v omezeném režimu",
+ "manageWorkspaceTrustButton": "&&Správa",
+ "newWindow": "Otevřít v &&omezeném režimu",
"no": "Ne",
- "open": "Otevřít",
- "openLooseFileLearnMore": "Pokud autorům těchto souborů nedůvěřujete, doporučujeme je otevírat v omezeném režimu v novém okně, protože tyto soubory můžou být škodlivé. Další informace najdete v [naší dokumentaci](https://aka.ms/vscode-workspace-trust).",
- "openLooseFileMesssage": "Důvěřujete autorům těchto souborů?",
+ "open": "&&Otevřít",
+ "openLooseFileLearnMore": "Pokud nechcete otevírat nedůvěryhodné soubory, doporučujeme je otevřít v omezeném režimu v novém okně, protože tyto soubory mohou být škodlivé. Další informace najdete v [naší dokumentaci](https://aka.ms/vscode-workspace-trust).",
"openLooseFileWindowDetails": "Pokoušíte se otevřít nedůvěryhodné soubory v okně, které je důvěryhodné.",
+ "openLooseFileWindowMesssage": "Chcete v tomto okně povolit nedůvěryhodné soubory?",
"openLooseFileWorkspaceCheckbox": "Pamatovat si mé rozhodnutí pro všechny pracovní prostory",
"openLooseFileWorkspaceDetails": "Pokoušíte se otevřít nedůvěryhodné soubory v pracovním prostoru, který je důvěryhodný.",
+ "openLooseFileWorkspaceMesssage": "Chcete v tomto pracovním prostoru povolit nedůvěryhodné soubory?",
"restrictedModeBannerAriaLabelFolder": "Omezený režim je určený k bezpečnému procházení kódu. Pokud chcete povolit všechny funkce, můžete tuto složku nastavit jako důvěryhodnou. Pro přístup k akcím bannerů použijte navigační klávesy.",
"restrictedModeBannerAriaLabelWindow": "Omezený režim je určený k bezpečnému procházení kódu. Pokud chcete povolit všechny funkce, můžete toto okno nastavit jako důvěryhodné. Pro přístup k akcím bannerů použijte navigační klávesy.",
"restrictedModeBannerAriaLabelWorkspace": "Omezený režim je určený k bezpečnému procházení kódu. Pokud chcete povolit všechny funkce, můžete důvěřovat tomuto pracovnímu prostoru. Pro přístup k akcím bannerů použijte navigační klávesy.",
@@ -10532,12 +16767,8 @@
"restrictedModeBannerMessageFolder": "Omezený režim je určený k bezpečnému procházení kódu. Pokud chcete povolit všechny funkce, můžete tuto složku nastavit jako důvěryhodnou.",
"restrictedModeBannerMessageWindow": "Omezený režim je určený k bezpečnému procházení kódu. Pokud chcete povolit všechny funkce, můžete toto okno nastavit jako důvěryhodné.",
"restrictedModeBannerMessageWorkspace": "Omezený režim je určený k bezpečnému procházení kódu. Pokud chcete povolit všechny funkce, můžete tento pracovní prostor nastavit jako důvěryhodný.",
- "securityConfigurationTitle": "Zabezpečení",
- "startupTrustRequestLearnMore": "If you don't trust the authors of these files, we recommend to continue in restricted mode as the files may be malicious. See [our docs](https://aka.ms/vscode-workspace-trust) to learn more.",
+ "startupTrustRequestLearnMore": "Pokud autorům těchto souborů nedůvěřujete, doporučujeme pokračovat v omezeném režimu, protože soubory můžou být škodlivé. Další informace najdete v [naší dokumentaci](https://aka.ms/vscode-workspace-trust).",
"status.WorkspaceTrust": "Vztah důvěryhodnosti pracovního prostoru",
- "status.ariaTrustedFolder": "Tato složka je důvěryhodná.",
- "status.ariaTrustedWindow": "Toto okno je důvěryhodné.",
- "status.ariaTrustedWorkspace": "Tento pracovní prostor je důvěryhodný.",
"status.ariaUntrustedFolder": "Omezený režim: některé funkce jsou zakázané, protože tato složka není důvěryhodná.",
"status.ariaUntrustedWindow": "Omezený režim: některé funkce jsou zakázané, protože toto okno není důvěryhodné.",
"status.ariaUntrustedWorkspace": "Omezený režim: některé funkce jsou zakázané, protože tento pracovní prostor není důvěryhodný.",
@@ -10545,8 +16776,9 @@
"status.tooltipUntrustedWindow2": "Spuštěno v omezeném režimu\r\n\r\nNěkteré [funkce jsou zakázány]({0}), protože toto [okno není důvěryhodné]({1}).",
"status.tooltipUntrustedWorkspace2": "Spuštěno v omezeném režimu\r\n\r\nNěkteré [funkce jsou zakázány]({0}), protože tento [pracovní prostor není důvěryhodný]({1}).",
"trustFolderOptionDescription": "Důvěřovat složce a povolit všechny funkce",
- "trustOption": "Ano, důvěřuji autorům",
+ "trustOption": "&&Ano, důvěřuji autorům",
"trustWorkspaceOptionDescription": "Důvěřovat pracovnímu prostoru a povolit všechny funkce",
+ "untrusted": "Omezený režim",
"workspace.trust.banner.always": "Zobrazit banner při každém otevření nedůvěryhodného pracovního prostoru",
"workspace.trust.banner.description": "Určuje, kdy se zobrazí banner s omezeným režimem.",
"workspace.trust.banner.never": "Nezobrazovat banner při otevření nedůvěryhodného pracovního prostoru",
@@ -10564,8 +16796,7 @@
"workspaceStartupTrustDetails": "{0} poskytuje funkce, které můžou automaticky spouštět soubory v tomto pracovním prostoru.",
"workspaceTrust": "Důvěřujete autorům souborů v tomto pracovním prostoru?",
"workspaceTrustEditor": "Editor důvěryhodnosti pracovního prostoru",
- "workspacesCategory": "Pracovní prostory",
- "yes": "Ano"
+ "workspacesCategory": "Pracovní prostory"
},
"vs/workbench/contrib/workspace/browser/workspaceTrustEditor": {
"addButton": "Přidat složku",
@@ -10577,6 +16808,7 @@
"folderPickerIcon": "Ikona pro výběr složky v editoru důvěryhodnosti pracovního prostoru",
"hostColumnLabel": "Hostitel",
"invalidTrust": "V rámci úložiště nemůžete důvěřovat jednotlivým složkám.",
+ "keyboardShortcut": "Klávesové zkratky: {0}",
"localAuthority": "Místní",
"no untrustedSettings": "Nastavení pracovního prostoru vyžadující vztah důvěryhodnosti se nepoužívají.",
"noTrustedFoldersDescriptions": "Zatím nedůvěřujete žádným složkám nebo souborům pracovního prostoru.",
@@ -10594,7 +16826,7 @@
"trustUri": "Důvěřovat složce",
"trustedDebugging": "Ladění je povoleno.",
"trustedDescription": "Všechny funkce jsou povolené, protože pracovnímu prostoru byl udělen vztah důvěryhodnosti.",
- "trustedExtensions": "Všechna rozšíření jsou povolená.",
+ "trustedExtensions": "Všechna povolená rozšíření jsou aktivována",
"trustedFolder": "V důvěryhodné složce",
"trustedFolderAriaLabel": "{0}, důvěryhodné",
"trustedFolderSubtitle": "Autorům souborů v aktuální složce důvěřujete. Všechny funkce jsou povolené:",
@@ -10617,14 +16849,14 @@
"untrustedExtensions": "[Rozšíření (počet: {0})]({1}) jsou zakázaná nebo mají omezené funkce.",
"untrustedFolderReason": "Tato složka je důvěryhodná prostřednictvím tučně formátovaných položek v důvěryhodných složkách níže.",
"untrustedFolderSubtitle": "Autorům souborů v aktuálním složce nedůvěřujete. Následující funkce jsou zakázané:",
- "untrustedHeader": "Jste v omezeném režimu.",
+ "untrustedHeader": "Jste v omezeném režimu",
"untrustedSettings": "[{0} nastavení pracovního prostoru]({1}) se neuplatní.",
"untrustedTasks": "Úlohy není povoleno spouštět.",
"untrustedWindowSubtitle": "Autorům souborů v aktuálním okně nedůvěřujete. Následující funkce jsou zakázané:",
"untrustedWorkspace": "V omezeném režimu",
"untrustedWorkspaceReason": "Tento pracovní prostor je důvěryhodný prostřednictvím tučně formátovaných položek v důvěryhodných složkách níže.",
"untrustedWorkspaceSubtitle": "Autorům souborů v aktuálním pracovním prostoru nedůvěřujete. Následující funkce jsou zakázané:",
- "workspaceTrustEditorHeaderActions": "[Konfigurace nastavení] ({0}) nebo [další informace](https://aka.ms/vscode-workspace-trust).",
+ "workspaceTrustEditorHeaderActions": "[Konfigurace nastavení]({0}) nebo [další informace](https://aka.ms/vscode-workspace-trust).",
"xListIcon": "Ikona křížku v editoru důvěryhodnosti pracovního prostoru"
},
"vs/workbench/contrib/workspace/common/workspace": {
@@ -10632,53 +16864,90 @@
"workspaceTrustedCtx": "Určuje, jestli byl aktuální pracovní prostor nastaven uživatelem jako důvěryhodný."
},
"vs/workbench/contrib/workspaces/browser/workspaces.contribution": {
+ "alreadyOpen": "Tento pracovní prostor je již otevřen.",
+ "foundWorkspace": "Tato složka obsahuje soubor pracovního prostoru {0}. Chcete ho otevřít? [Další informace]({1}) o souborech pracovních prostorů.",
+ "foundWorkspaces": "Tato složka obsahuje více souborů pracovních prostorů. Chcete jeden z nich otevřít? [Další informace]({0}) o souborech pracovních prostorů",
"openWorkspace": "Otevřít pracovní prostor",
"selectToOpen": "Vyberte pracovní prostor, který chcete otevřít.",
- "selectWorkspace": "Vybrat pracovní prostor",
- "workspaceFound": "Tato složka obsahuje soubor pracovního prostoru {0}. Chcete ho otevřít? [Další informace]({1}) o souborech pracovních prostorů.",
- "workspacesFound": "Tato složka obsahuje více souborů pracovních prostorů. Chcete jeden z nich otevřít? [Další informace] ({0}) o souborech pracovních prostorů"
+ "selectWorkspace": "Vybrat pracovní prostor"
+ },
+ "vs/workbench/services/accounts/common/defaultAccount": {
+ "sign in": "Přihlásit se"
},
"vs/workbench/services/actions/common/menusExtensionPoint": {
+ "command name": "ID",
+ "command title": "Název",
+ "commands": "Příkazy",
"comment.actions": "Přidaná místní nabídka komentářů zobrazující se v podobě tlačítek pod editorem komentářů",
+ "comment.commentContext": "Přidaná kontextová nabídka komentáře, vykreslená jako nabídka kliknutí pravým tlačítkem myši na jednotlivý komentář v okénkovém zobrazení vlákna komentářů.",
"comment.title": "Přidaná nabídka názvů komentářů",
"commentThread.actions": "Přidaná místní nabídka vláken komentářů zobrazující se v podobě tlačítek pod editorem komentářů",
+ "commentThread.editorActions": "Akce v editoru s přidaným komentářem",
"commentThread.title": "Přidaná nabídka názvů vláken komentářů",
- "dup": "Příkaz {0} se v oddílu commands objevuje několikrát.",
+ "commentThread.titleContext": "Přidaná kontextová nabídka náhledu vlákna komentáře, vykreslená jako nabídka pravého tlačítka myši na nahlédnutí do názvu vlákna komentáře.",
+ "commentsView.threadActions": "Kontextová nabídka vlákna přidaných komentářů v zobrazení komentářů.",
+ "dup0": "Příkaz{0}je už zaregistrovaný",
+ "dup1": "Příkaz{0}je už zaregistrovaný {1} ({2})",
"dupe.command": "Položka nabídky odkazuje na stejný příkaz jako výchozí a alternativní příkaz.",
+ "editorLineNumberContext": "Místní nabídka čísla řádku přidaného editoru",
"file.newFile": "Rychlý výběr Nový soubor… zobrazený na úvodní stránce a v nabídce Soubor",
"inlineCompletions.actions": "Akce zobrazené při najetí myší na vložené dokončení",
"interactive.cell.title": "Poskytnutá interaktivní nabídka názvu buňky",
"interactive.toolbar": "Poskytnutá interaktivní nabídka panelu nástrojů",
+ "issue.reporter": "Nabídka hlášení problémů, kterými bylo přispěno",
+ "keyboard shortcuts": "Klávesové zkratky",
+ "menuContexts": "Kontexty nabídek",
+ "menus.artifactContext": "Místní nabídka artefaktů správy zdrojového kódu",
+ "menus.artifactGroupContext": "Místní nabídka skupiny artefaktů správy zdrojového kódu",
"menus.changeTitle": "Nabídka vložených (inline) změn správy zdrojového kódu",
+ "menus.chatMultiDiffContext": "Místní nabídka pro více rozdílů v chatu",
+ "menus.chatSessions": "Nabídka relací chatu",
+ "menus.chatSessionsNewSession": "Nabídka pro nové relace chatu",
+ "menus.chatTextEditor": "Podnabídka Chat v místní nabídce textového editoru.",
"menus.commandPalette": "Paleta příkazů",
"menus.debugCallstackContext": "Místní nabídka zobrazení zásobníku volání ladění",
+ "menus.debugCreateConfiguation": "Nabídka konfigurace pro vytvoření ladění",
"menus.debugToolBar": "Nabídka panelu nástrojů ladění",
"menus.debugVariablesContext": "Místní nabídka zobrazení proměnných pro ladění",
+ "menus.debugWatchContext": "Místní nabídka zobrazení sledování ladění",
+ "menus.diffEditorGutterToolBarMenus": "Panel nástrojů na okraji v editoru rozdílů",
"menus.editorContext": "Místní nabídka editoru",
"menus.editorContextCopyAs": "Podnabídka Kopírovat jako v místní nabídce editoru",
"menus.editorContextShare": "Podnabídka Sdílení v místní nabídce editoru",
"menus.editorTabContext": "Místní nabídka karet editoru",
"menus.editorTitle": "Nabídka názvů editorů",
+ "menus.editorTitleContextShare": "Podnabídka „Sdílet“ v místní nabídce názvu editoru",
"menus.editorTitleRun": "Spustit podnabídku v nabídce u názvu editoru",
"menus.explorerContext": "Místní nabídka průzkumníka souborů",
+ "menus.explorerContextShare": "Podnabídka „Sdílet“ v místní nabídce Průzkumníka souborů",
"menus.extensionContext": "Místní nabídka rozšíření",
+ "menus.historyItemContext": "Místní nabídka položky historie správy zdrojového kódu",
+ "menus.historyItemRefContext": "Místní nabídka odkazu na položku historie správy zdrojového kódu",
"menus.home": "Místní nabídka indikátoru domovské stránky (jen web)",
+ "menus.input": "Nabídka vstupního pole správy zdrojového kódu",
+ "menus.mergeEditorResult": "Panel nástrojů výsledků v editoru sloučení",
+ "menus.multiDiffEditorResource": "Panel nástrojů prostředků v editoru rozdílů ve více souborech",
+ "menus.notebookVariablesContext": "Místní nabídka zobrazení proměnných poznámkového bloku",
"menus.opy": "Podnabídka Kopírovat jako v nabídce Úpravy nejvyšší úrovně",
"menus.resourceFolderContext": "Místní nabídka složky prostředků správy zdrojového kódu",
"menus.resourceGroupContext": "Místní nabídka skupiny prostředků správy zdrojového kódu",
"menus.resourceStateContext": "Místní nabídka stavu prostředků správy zdrojového kódu",
+ "menus.scmHistoryTitle": "Nabídka názvů historie správy zdrojového kódu",
"menus.scmSourceControl": "Nabídka správy zdrojového kódu",
+ "menus.scmSourceControlInline": "Nabídka úložiště správy zdrojového kódu",
+ "menus.scmSourceControlTitle": "Nabídka názvů úložišť správy zdrojového kódu",
"menus.scmTitle": "Nabídka názvů správy zdrojového kódu",
"menus.share": "Podnabídka Sdílení zobrazená v horní úrovni nabídky Soubor.",
"menus.statusBarRemoteIndicator": "Nabídka indikátoru vzdáleného připojení na stavovém řádku",
+ "menus.terminalContext": "Místní nabídka terminálu",
+ "menus.terminalTabContext": "Místní nabídka karet terminálu",
"menus.touchBar": "Touch Bar (pouze macOS)",
- "merge.toolbar": "Zvýrazněné tlačítko v editoru sloučení",
+ "merge.toolbar": "Prominentní tlačítko v editoru, překrývá jeho obsah",
"missing.altCommand": "Položka nabídky odkazuje na alternativní příkaz {0}, který není definovaný v oddílu commands.",
"missing.command": "Položka nabídky odkazuje na příkaz {0}, který není definovaný v oddílu commands.",
"missing.submenu": "Položka nabídky odkazuje na podnabídku {0}, která není definovaná v oddílu submenus.",
"nonempty": "byla očekávána neprázdná hodnota.",
"notebook.cell.execute": "Přidaná nabídka spuštění buňky poznámkového bloku",
- "notebook.cell.executePrimary": "Tlačítko pro spuštění buňky primárního poznámkového bloku, do kterého přispíváte",
"notebook.cell.title": "Přidaná nabídka názvů buněk poznámkových bloků",
"notebook.kernelSource": "Přidaná nabídka zdrojů jádra poznámkového bloku",
"notebook.toolbar": "Přidaná nabídka panelu nástrojů poznámkových bloků",
@@ -10691,13 +16960,19 @@
"requirearray": "položky podnabídky musí být pole hodnot",
"requirestring": "Vlastnost {0} je povinná a musí být typu string.",
"requirestrings": "Vlastnosti {0} a {1} jsou povinné a musí být typu string.",
+ "searchPanel.aiResultsCommands": "Příkazy, které přispějí do nabídky vykreslené jako tlačítka vedle názvu vyhledávání AI",
"submenuId.duplicate.id": "Podnabídka {0} už byla zaregistrována dříve.",
"submenuId.invalid.id": "{0} není platný identifikátor podnabídky.",
"submenuId.invalid.label": "{0} není platný popisek podnabídky.",
"submenuItem.duplicate": "Podnabídka {0} už byla přidána k nabídce {1}.",
"testing.item.context": "Přidaná nabídka položky testu",
"testing.item.gutter.title": "Nabídka pro dekorace navigačního okraje pro položku testu",
+ "testing.item.result.title": "Nabídka položky v zobrazení Výsledky testů nebo náhledu.",
+ "testing.message.content.title": "Místní nabídka pro zprávu ve stromu výsledků",
+ "testing.message.context.title": "Viditelné tlačítko překryvného obsahu editoru, kde se zpráva zobrazuje",
+ "testing.profiles.context.title": "Nabídka pro konfiguraci testovacích profilů",
"unsupported.submenureference": "Položka nabídky odkazuje na podnabídku nabídky, která podnabídky nepodporuje.",
+ "view.containerTitle": "Přidaná nabídka názvů kontejneru zobrazení",
"view.itemContext": "Přidaná místní nabídka položek zobrazení",
"view.timelineContext": "Místní nabídka položky zobrazení časové osy",
"view.timelineTitle": "Nabídka názvů zobrazení časové osy",
@@ -10705,9 +16980,10 @@
"view.tunnelOriginInline": "Vložená nabídka původu položky zobrazení portů",
"view.tunnelPortInline": "Vložená nabídka portu položky zobrazení portů",
"view.viewTitle": "Přidaná nabídka názvů zobrazení",
+ "viewContainerTitle.when": "Přidání nabídky {0} musí zkontrolovat {1} v příslušné klauzuli {2}.",
"vscode.extension.contributes.commandType.category": "(Volitelné) Řetězec kategorie, podle kterého příkazu je seskupen v uživatelském rozhraní.",
"vscode.extension.contributes.commandType.command": "Identifikátor příkazu, který se má provést",
- "vscode.extension.contributes.commandType.icon": "(Volitelné) Ikona, která se používá k reprezentaci příkazu v uživatelském rozhraní. Jedná se o cestu k souboru, objekt s cestami k souborům pro tmavé a světlé motivy nebo odkazy na ikony motivů, například `\\$(zap)`.",
+ "vscode.extension.contributes.commandType.icon": "(Volitelné) Ikona, která se používá k reprezentaci příkazu v uživatelském rozhraní Jedná se o cestu k souboru, objekt s cestami k souborům pro tmavé a světlé motivy nebo odkazy na ikony motivů, například \\$(zap).",
"vscode.extension.contributes.commandType.icon.dark": "Cesta k ikoně, pokud je použito tmavé téma",
"vscode.extension.contributes.commandType.icon.light": "Cesta k ikoně při použití světlého motivu",
"vscode.extension.contributes.commandType.precondition": "(Nepovinné) Podmínka, která se musí vyhodnotit jako pravdivá, aby se povolil příkaz v uživatelském rozhraní (nabídka a klávesové zkratky). Nezabrání spouštění příkazů jinými způsoby, třeba `executeCommand`-api.",
@@ -10720,7 +16996,7 @@
"vscode.extension.contributes.menuItem.submenu": "Identifikátor podnabídky, která se má zobrazit v této položce",
"vscode.extension.contributes.menuItem.when": "Podmínka, která musí mít hodnotu true, aby se zobrazila tato položka",
"vscode.extension.contributes.menus": "Přidává položky nabídky do editoru.",
- "vscode.extension.contributes.submenu.icon": "(Volitelné) Ikona, která se používá k reprezentaci podnabídky v uživatelském rozhraní. Jedná se o cestu k souboru, objekt s cestami k souborům pro tmavé a světlé motivy nebo odkazy na ikony motivů, například \\$(zap).",
+ "vscode.extension.contributes.submenu.icon": "(Volitelné) Ikona, která se používá k reprezentaci podnabídky v uživatelském rozhraní Jedná se o cestu k souboru, objekt s cestami k souborům pro tmavé a světlé motivy nebo odkazy na ikony motivů, například \\$(zap).",
"vscode.extension.contributes.submenu.icon.dark": "Cesta k ikoně při použití tmavého motivu",
"vscode.extension.contributes.submenu.icon.light": "Cesta k ikoně, pokud je použito světlé téma",
"vscode.extension.contributes.submenu.id": "Identifikátor nabídky, která se má zobrazit jako podnabídka",
@@ -10728,38 +17004,78 @@
"vscode.extension.contributes.submenus": "Vkládá položky nabídky do editoru.",
"webview.context": "Místní nabídka webového zobrazení"
},
- "vs/workbench/services/authentication/browser/authenticationService": {
+ "vs/workbench/services/activity/common/activity": {
+ "activityErrorBadge.background": "Barva pozadí odznáčku chybové aktivity",
+ "activityErrorBadge.foreground": "Barva popředí odznáčku chybové aktivity",
+ "activityWarningBadge.background": "Barva pozadí odznáčku aktivity upozornění",
+ "activityWarningBadge.foreground": "Barva popředí odznáčku aktivity upozornění"
+ },
+ "vs/workbench/services/assignment/common/assignmentService": {
+ "workbench.enableExperiments": "Načte experimenty, které se mají spustit z online služby Microsoftu."
+ },
+ "vs/workbench/services/authentication/browser/authenticationExtensionsService": {
"accessRequest": "Udělit přístup k {0} pro {1}... (1)",
- "allow": "Povolit",
- "authentication.Placeholder": "Zatím se nepožadují žádné účty…",
- "authentication.id": "ID zprostředkovatele ověřování",
- "authentication.idConflict": "Toto ID ověřování {0} už je zaregistrované.",
- "authentication.label": "Lidsky čitelný název zprostředkovatele ověřování",
- "authentication.missingId": "Při přidávání ověřování je nutné specifikovat ID.",
- "authentication.missingLabel": "Při přidávání ověřování je nutné specifikovat popisek.",
- "authenticationExtensionPoint": "Přidává ověřování.",
- "cancel": "Zrušit",
+ "allow": "&&Povolit",
"confirmAuthenticationAccess": "Rozšíření {0} chce získat přístup k účtu {1} ({2}).",
- "deny": "Zamítnout",
+ "deny": "&&Odmítnout",
"getSessionPlateholder": "Vyberte účet pro: {0}, který se má použít. Akci zrušte stisknutím klávesy Esc.",
- "loading": "Načítání...",
"selectAccount": "Rozšíření {0} chce získat přístup k účtu {1}.",
"sign in": "Požadováno přihlášení",
"signInRequest": "Přihlaste se pomocí {0}, abyste mohli používat {1} (1).",
"useOtherAccount": "Přihlásit se s jiným účtem"
},
- "vs/workbench/services/bulkEdit/browser/bulkEditService": {
- "summary.0": "Nebyly provedeny žádné úpravy.",
- "summary.nm": "Počet provedených úprav textu v {1} souborech: {0}",
- "summary.n0": "Počet provedených úprav textu v jednom souboru: {0}",
- "workspaceEdit": "Úprava pracovního prostoru",
- "nothing": "Nebyly provedeny žádné úpravy."
+ "vs/workbench/services/authentication/browser/authenticationMcpService": {
+ "accessRequest": "Udělit přístup k {0} pro {1}... (1)",
+ "allow": "&&Povolit",
+ "confirmAuthenticationAccess": "Server MCP {0} chce získat přístup k účtu {1} ({2}).",
+ "deny": "&&Odmítnout",
+ "getSessionPlateholder": "Vyberte účet pro: {0}, který se má použít. Akci zrušte stisknutím klávesy Esc.",
+ "selectAccount": "Server MCP {0} chce získat přístup k účtu {1}.",
+ "sign in": "Požadováno přihlášení",
+ "signInRequest": "Přihlaste se pomocí {0}, abyste mohli používat {1} (1).",
+ "useOtherAccount": "Přihlásit se s jiným účtem"
+ },
+ "vs/workbench/services/authentication/browser/authenticationService": {
+ "authentication.authorizationServerGlobs": "Seznam vzorů glob, které odpovídají autorizačním serverům, jež tento zprostředkovatel podporuje.",
+ "authentication.authorizationServerGlobsDescription": "Seznam vzorů glob, které odpovídají autorizačním serverům, jež tento zprostředkovatel podporuje.",
+ "authentication.id": "ID zprostředkovatele ověřování",
+ "authentication.idConflict": "Toto ID ověřování {0} už je zaregistrované.",
+ "authentication.label": "Lidsky čitelný název zprostředkovatele ověřování",
+ "authentication.missingId": "Při přidávání ověřování je nutné specifikovat ID.",
+ "authentication.missingLabel": "Při přidávání ověřování je nutné specifikovat popisek.",
+ "authenticationExtensionPoint": "Přidává ověřování."
+ },
+ "vs/workbench/services/auxiliaryWindow/browser/auxiliaryWindowService": {
+ "lifecycleVeto": "Změny, které jste provedli, se nemusí uložit. Zkontrolujte prosím, že jste stlačili Zrušit, a zkuste to znovu.",
+ "retry": "&&Zkusit znovu",
+ "unableToOpenWindow": "Prohlížeč zablokoval otevření nového okna. Zkuste to znovu výběrem možnosti Zkusit znovu.",
+ "unableToOpenWindowDetail": "Povolte prosím automaticky otevíraná okna pro tento web v [nastavení prohlížeče]({0}).",
+ "unableToOpenWindowError": "Nelze otevřít nové okno."
+ },
+ "vs/workbench/services/auxiliaryWindow/electron-browser/auxiliaryWindowService": {
+ "backupErrorDetails": "Nejdříve zkuste editory uložit nebo vrátit zpět s neuloženými změnami a pak to zkuste znovu."
+ },
+ "vs/workbench/services/chat/common/chatEntitlementService": {
+ "learnMore": "Další informace",
+ "ok": "OK",
+ "retry": "Opakovat",
+ "signUpInvalidResponseError": "Neplatný obsah odpovědi.",
+ "signUpNoResponseContentsError": "Odpověď nemá žádný obsah.",
+ "signUpNoResponseError": "Nebyla přijata žádná odpověď.",
+ "signUpUnexpectedStatusError": "Neočekávaný stavový kód {0}.",
+ "unknownSignUpError": "Při registraci plánu GitHub Copilot Free došlo k chybě. Chcete to zkusit znovu?",
+ "unprocessableSignUpError": "Při registraci plánu GitHub Copilot Free došlo k chybě."
+ },
+ "vs/workbench/services/clipboard/browser/clipboardService": {
+ "clipboardError": "Není možné číst ze schránky prohlížeče. Ujistěte se prosím, že jste této webové stránce povolili přístup ke čtení ze schránky.",
+ "learnMore": "Další informace",
+ "retry": "Opakovat"
},
"vs/workbench/services/configuration/browser/configurationService": {
"configurationDefaults.description": "Přidání výchozích nastavení pro konfigurace",
- "experimental": "Experimenty"
+ "setting description": "Nakonfigurujte nastavení, která se použijí pro všechny profily."
},
- "vs/workbench/services/configuration/common/configurationEditingService": {
+ "vs/workbench/services/configuration/common/configurationEditing": {
"errorConfigurationFileDirty": "Nelze zapisovat do nastavení uživatele, protože soubor obsahuje neuložené změny. Nejprve prosím soubor nastavení uživatele uložte a potom to zkuste znovu.",
"errorConfigurationFileDirtyFolder": "Nelze zapisovat do nastavení složky, protože soubor obsahuje neuložené změny. Nejprve prosím soubor nastavení složky {0} uložte a potom to zkuste znovu.",
"errorConfigurationFileDirtyWorkspace": "Nelze zapisovat do nastavení pracovního prostoru, protože soubor obsahuje neuložené změny. Nejprve prosím soubor nastavení pracovního prostoru uložte a potom to zkuste znovu.",
@@ -10772,6 +17088,7 @@
"errorInvalidFolderConfiguration": "Nelze zapisovat do nastavení složky, protože {0} nepodporuje obor prostředků složky.",
"errorInvalidFolderTarget": "Nelze zapisovat do nastavení složky, protože není k dispozici žádný prostředek.",
"errorInvalidLaunchConfiguration": "Nelze zapisovat do souboru konfigurace spuštění. Otevřete ho prosím, opravte v něm chyby/upozornění a zkuste to znovu.",
+ "errorInvalidMCPConfiguration": "Nelze zapisovat do souboru konfigurace MCP. Otevřete ho prosím, opravte v něm chyby/upozornění a zkuste to znovu.",
"errorInvalidRemoteConfiguration": "Nelze zapisovat do vzdáleného uživatelského nastavení. Otevřete prosím vzdálené uživatelské nastavení, opravte v něm chyby/upozornění a zkuste to znovu.",
"errorInvalidResourceLanguageConfiguration": "Nelze zapisovat do nastavení jazyka, protože {0} není nastavení jazyka prostředku.",
"errorInvalidTaskConfiguration": "Nelze zapisovat do souboru konfigurace úloh. Otevřete ho prosím, opravte v něm chyby/upozornění a zkuste to znovu.",
@@ -10781,6 +17098,8 @@
"errorInvalidWorkspaceTarget": "Nelze zapisovat do nastavení pracovního prostoru, protože {0} nepodporuje obor pracovního prostoru v pracovním prostoru s více složkami.",
"errorLaunchConfigurationFileDirty": "Nelze zapisovat do souboru konfigurace spuštění, protože soubor obsahuje neuložené změny. Nejdříve prosím soubor uložte a pak to zkuste znovu.",
"errorLaunchConfigurationFileModifiedSince": "Nelze zapisovat do souboru konfigurace spuštění, protože obsah souboru je novější.",
+ "errorMCPConfigurationFileDirty": "Nelze zapisovat do souboru konfigurace MCP, protože soubor obsahuje neuložené změny. Nejdříve prosím soubor uložte a pak to zkuste znovu.",
+ "errorMCPConfigurationFileModifiedSince": "Nelze zapisovat do souboru konfigurace MCP, protože obsah souboru je novější.",
"errorNoWorkspaceOpened": "Do {0} nelze zapisovat, protože není otevřený žádný pracovní prostor. Nejprve prosím otevřete pracovní prostor a pak to zkuste znovu.",
"errorPolicyConfiguration": "Nelze zapsat {0}, protože je nakonfigurováno v zásadách systému.",
"errorRemoteConfigurationFileDirty": "Nelze zapisovat do nastavení vzdáleného uživatele, protože soubor obsahuje neuložené změny. Nejdříve prosím soubor nastavení vzdáleného uživatele uložte a potom to zkuste znovu.",
@@ -10790,8 +17109,10 @@
"errorUnknown": "Kvůli vnitřní chybě nejde zapisovat do {0}.",
"errorUnknownKey": "Nelze zapisovat do {0}, protože {1} není registrovaná konfigurace.",
"folderTarget": "Nastavení složky",
+ "fsError": "Při zápisu do {0}došlo k chybě. {1}",
"open": "Otevřít nastavení",
"openLaunchConfiguration": "Otevřít konfiguraci spuštění",
+ "openMcpConfiguration": "Otevřít konfiguraci MCP",
"openTasksConfiguration": "Otevřít konfiguraci úloh",
"remoteUserTarget": "Nastavení vzdáleného uživatele",
"saveAndRetry": "Uložit a zkusit znovu",
@@ -10799,7 +17120,6 @@
"workspaceTarget": "Nastavení pracovního prostoru"
},
"vs/workbench/services/configuration/common/jsonEditingService": {
- "errorFileDirty": "Nelze zapisovat do souboru, protože soubor obsahuje neuložené změny. Uložte prosím soubor a zkuste to znovu.",
"errorInvalidFile": "Nelze zapisovat do souboru. Otevřete prosím soubor, opravte v něm chyby/upozornění a zkuste to znovu."
},
"vs/workbench/services/configurationResolver/browser/baseConfigurationResolverService": {
@@ -10832,6 +17152,7 @@
},
"vs/workbench/services/configurationResolver/common/variableResolver": {
"canNotFindFolder": "Proměnnou {0} nelze vyhodnotit. Složka {1} neexistuje.",
+ "canNotResolveColumnNumber": "Proměnnou {0} nelze vyhodnotit. Ujistěte se, že je v aktivním editoru vybraný sloupec.",
"canNotResolveFile": "Proměnnou {0} nelze vyhodnotit. Otevřete prosím editor.",
"canNotResolveFolderForFile": "Proměnná {0}: nemůže najít složku pracovního prostoru souboru {1}.",
"canNotResolveLineNumber": "Proměnnou {0} nelze vyhodnotit. Ujistěte se, že je v aktivním editoru vybraný řádek.",
@@ -10852,7 +17173,6 @@
},
"vs/workbench/services/dialogs/browser/abstractFileDialogService": {
"allFiles": "Všechny soubory",
- "cancel": "Zrušit",
"dontSave": "&&Neukládat",
"filterName.workspace": "Pracovní prostor",
"noExt": "Žádné rozšíření",
@@ -10868,21 +17188,35 @@
"saveChangesMessages": "Chcete uložit změny do následujících {0} souborů?",
"saveFileAs.title": "Uložit jako"
},
+ "vs/workbench/services/dialogs/browser/fileDialogService": {
+ "learnMore": "&&Další informace",
+ "openFiles": "Otevřít &&soubory…",
+ "openRemote": "&&Otevřít vzdálené…",
+ "pickFolderAndOpen": "Složky nejde otevřít, zkuste místo toho přidat složku do pracovního prostoru.",
+ "pickWorkspaceAndOpen": "Pracovní prostory nejde otevřít, zkuste místo toho přidat složku do pracovního prostoru.",
+ "unsupportedBrowserDetail": "Váš prohlížeč nepodporuje otevírání místních složek.\r\nMůžete buď otevřít jednotlivé soubory, nebo otevřít vzdálené úložiště.",
+ "unsupportedBrowserMessage": "Otevírání místních složek není podporováno."
+ },
"vs/workbench/services/dialogs/browser/simpleFileDialog": {
"openLocalFile": "Otevřít místní soubor...",
"openLocalFileFolder": "Otevřít místní...",
"openLocalFolder": "Otevřít místní složku...",
- "remoteFileDialog.badPath": "Cesta neexistuje.",
+ "remoteFileDialog.badPath": "Cesta neexistuje. Pomocí ~ přejdete do svého domovského adresáře.",
"remoteFileDialog.cancel": "Zrušit",
+ "remoteFileDialog.hideDotFiles": "Skrýt soubory s tečkami",
"remoteFileDialog.invalidPath": "Zadejte prosím platnou cestu.",
"remoteFileDialog.local": "Zobrazit místní",
"remoteFileDialog.notConnectedToRemote": "Zprostředkovatel systému souborů pro {0} není k dispozici.",
+ "remoteFileDialog.placeholder": "Cesta ke složce",
+ "remoteFileDialog.showDotFiles": "Zobrazit soubory s tečkami",
"remoteFileDialog.validateBadFilename": "Zadejte prosím platný název souboru.",
+ "remoteFileDialog.validateCreateDirectory": "Složka {0} neexistuje. Chcete ji vytvořit?",
"remoteFileDialog.validateExisting": "Soubor {0} již existuje. Opravdu jej chcete přepsat?",
"remoteFileDialog.validateFileOnly": "Vyberte soubor.",
"remoteFileDialog.validateFolder": "Složka již existuje. Použijte prosím nový název souboru.",
"remoteFileDialog.validateFolderOnly": "Vyberte prosím složku.",
"remoteFileDialog.validateNonexistentDir": "Zadejte prosím cestu, která existuje.",
+ "remoteFileDialog.validateReadonlyFolder": "Tuto složku nelze použít jako cíl uložení. Zvolte prosím jinou složku",
"remoteFileDialog.windowsDriveLetter": "Na začátku cesty prosím uveďte písmeno jednotky.",
"saveLocalFile": "Uložit místní soubor..."
},
@@ -10898,27 +17232,28 @@
"promptOpenWith.updateDefaultPlaceHolder": "Vyberte nový výchozí editor pro {0}."
},
"vs/workbench/services/editor/common/editorResolverService": {
- "editor.editorAssociations": "Nakonfigurujte vzory glob pro editory (například „*.hex“: „hexEditor.hexEdit“). Tyto mají přednost před výchozím chováním."
+ "editor.editorAssociations": "Nakonfigurujte [vzory glob](https://aka.ms/vscode-glob-patterns) pro editory (například „*.hex“: „hexEditor.hexedit“). Tyto mají přednost před výchozím chováním."
},
"vs/workbench/services/extensionManagement/browser/extensionBisect": {
+ "I cannot reproduce": "Nemůžu reprodukovat",
+ "This is Bad": "Můžu reprodukovat",
"bisect": "Bisekce rozšíření je aktivní a zakázala {0} rozšíření. Zkontrolujte, jestli stále můžete problém reprodukovat, a pokračujte výběrem z těchto možností.",
"bisect.plural": "Bisekce rozšíření je aktivní a zakázala {0} rozšíření. Zkontrolujte, jestli stále můžete problém reprodukovat, a pokračujte výběrem z těchto možností.",
"bisect.singular": "Rozšíření Bisect je aktivní a zakázalo 1 rozšíření. Zkontrolujte, jestli stále můžete problém reprodukovat, a pokračujte výběrem z těchto možností.",
+ "continue": "Pokračovat",
"detail.start": "Bisekce rozšíření bude pomocí binárního vyhledávání hledat rozšíření, které způsobuje problém. Během procesu se bude okno opakovaně znovu načítat (přibližně {0}krát). Pokaždé budete muset potvrdit, jestli se pořád vyskytují problémy.",
- "done": "Pokračovat",
"done.detail": "Bisekce rozšíření se dokončila a identifikovala jako příčinu problému rozšíření {0}.",
"done.detail2": "Bisekce rozšíření se dokončila, ale nepovedlo se identifikovat žádné rozšíření. Příčinou problému může být: {0}.",
"done.disbale": "Nechat toto rozšíření zakázané",
"done.msg": "Bisekce rozšíření",
- "help": "Nápověda",
"msg.next": "Bisekce rozšíření",
"msg.start": "Bisekce rozšíření",
- "msg2": "Spustit bisekci rozšíření",
- "next.bad": "Je to špatné",
- "next.cancel": "Zrušit",
- "next.good": "Teď už dobré",
- "next.stop": "Zastavit bisekci",
- "report": "Nahlásit problém a pokračovat",
+ "msg2": "&&Spustit bisekci rozšíření",
+ "next.bad": "Můžu &&reprodukovat",
+ "next.cancel": "&&Zrušit bisekci",
+ "next.good": "Nemůžu &&reprodukovat",
+ "next.stop": "&&Zastavit bisekci",
+ "report": "&&Nahlásit problém a pokračovat",
"title.isBad": "Pokračovat v bisekci rozšíření",
"title.start": "Spustit bisekci rozšíření",
"title.stop": "Zastavit bisekci rozšíření"
@@ -10926,47 +17261,93 @@
"vs/workbench/services/extensionManagement/browser/extensionEnablementService": {
"Reload": "Znovu načíst a povolit rozšíření",
"cannot change disablement environment": "Povolení rozšíření {0} není možné změnit, protože je v prostředí zakázáno.",
+ "cannot change disallowed extension enablement": "Povolení rozšíření {0} nelze změnit, protože je zakázáno.",
"cannot change enablement dependency": "Rozšíření {0} se nedá povolit, protože závisí na rozšíření {1}, které není možné povolit.",
"cannot change enablement environment": "Povolení rozšíření {0} není možné změnit, protože je povoleno v prostředí.",
"cannot change enablement extension kind": "Povolení rozšíření {0} se nedá kvůli jeho typu rozšíření změnit",
+ "cannot change enablement malicious": "Povolení rozšíření {0} nejde změnit, protože je dané rozšíření škodlivé",
"cannot change enablement virtual workspace": "Povolení rozšíření {0} není možné změnit, protože nepodporuje virtuální pracovní prostory.",
+ "cannot change invalid extension enablement": "Povolení rozšíření {0} nejde změnit, protože je neplatné.",
"cannot disable auth extension": "Nelze změnit povolení u rozšíření {0}, protože na něm závisí synchronizace nastavení.",
"cannot disable auth extension in workspace": "V pracovním prostoru nelze změnit povolení u rozšíření {0}, protože přispívá ke zprostředkovatelům ověřování.",
"cannot disable language pack extension": "Nelze změnit povolení u rozšíření {0}, protože přispívá k jazykovým sadám.",
"extensionsDisabled": "Všechna nainstalovaná rozšíření jsou dočasně zakázaná.",
"noWorkspace": "Žádný pracovní prostor"
},
+ "vs/workbench/services/extensionManagement/browser/webExtensionsScannerService": {
+ "not a web extension": "{0} nejde přidat, protože toto rozšíření není webové rozšíření.",
+ "openInstalledWebExtensionsResource": "Otevřít nainstalovaný prostředek webových rozšíření"
+ },
+ "vs/workbench/services/extensionManagement/common/extensionFeaturesManagemetService": {
+ "accessExtensionFeature": "Přístup k funkci {0}",
+ "accessExtensionFeatureMessage": "Rozšíření {0} by chtělo získat přístup k funkci {1}.",
+ "allow": "Povolit",
+ "disallow": "Nepovolovat"
+ },
+ "vs/workbench/services/extensionManagement/common/extensionManagementServerService": {
+ "browser": "Prohlížeč",
+ "remote": "Vzdálené"
+ },
"vs/workbench/services/extensionManagement/common/extensionManagementService": {
"Manifest is not found": "Instalace rozšíření {0} selhala: Manifest nebyl nalezen.",
"VS Code for Web": "{0} pro Web",
- "cancel": "Zrušit",
+ "allUnverifed": "Všichni vydavatelé se [**neověřili]({0}).",
"cannot be installed": "Rozšíření {0} se nedá nainstalovat, protože není v tomto nastavení k dispozici.",
+ "cannot be installed in server": "Rozšíření {0} se nedá nainstalovat, protože není v nastavení {1} k dispozici.",
+ "checkAllTrustedPublishersTitle": "Důvěřujete vydavateli \"{0}\" a {1} ostatním?",
+ "checkTrustedPublisherTitle": "Důvěřujete \"{0}\" vydavatele?",
+ "checkTwoTrustedPublishersTitle": "Důvěřujete vydavatelům \"{0}\" a \"{1}\"?",
+ "extension published by message": "{1} publikuje {0} rozšíření.",
"extensionInstallWorkspaceTrustButton": "Důvěřovat pracovnímu prostoru & Nainstalovat",
"extensionInstallWorkspaceTrustContinueButton": "Nainstalovat",
"extensionInstallWorkspaceTrustManageButton": "Další informace",
"extensionInstallWorkspaceTrustMessage": "Povolení tohoto rozšíření vyžaduje důvěryhodný pracovní prostor.",
- "install": "Nainstalovat",
- "install and do no sync": "Nainstalovat (nesynchronizovat)",
- "install anyways": "Přesto nainstalovat",
+ "firstTimeInstallingMessage": "Toto je první instalace rozšíření od těchto vydavatelů.",
+ "install": "&&Nainstalovat",
+ "install and do no sync": "Nainstalovat (&&nesynchronizovat)",
+ "install anyways": "&&Přesto nainstalovat",
"install extension": "Nainstalovat rozšíření",
"install extensions": "Nainstalovat rozšíření",
"install multiple extensions": "Chcete nainstalovat a synchronizovat rozšíření mezi zařízeními?",
"install single extension": "Chcete nainstalovat a synchronizovat rozšíření {0} mezi zařízeními?",
+ "learnMore": "&&Další informace",
"limited support": "{0} má v {1} omezenou funkčnost.",
+ "main.notFound": "Nejde aktivovat, protože se nepovedlo najít {0}.",
+ "manifest is not found": "Manifest nebyl nalezen.",
+ "message1": "{1} publikuje {0} rozšíření. Toto je první rozšíření, které instalujete od tohoto vydavatele.",
+ "message2": "{0} nemá žádnou kontrolu nad chováním rozšíření třetích stran, včetně způsobu správy vašich osobních údajů. Pokračujte jen v případě, že důvěřujete vydavateli.",
+ "message3": "Instalací tohoto rozšíření se nainstalují také [rozšíření]({0}) publikovaná vydavatelem {1} a {2}.",
+ "message4": "{0} nemá žádnou kontrolu nad chováním rozšíření třetích stran, včetně způsobu správy vašich osobních údajů. Pokračujte jen v případě, že důvěřujete vydavatelům.",
+ "multiInstallMessage": "Toto je první instalace rozšíření od vydavatelů {0} a {1}.",
"multipleDependentsError": "Rozšíření {0} nelze odinstalovat. Závisí na něm rozšíření {1}, {2} a další rozšíření.",
"non web extensions": "{0}obsahuje rozšíření, která nejsou v {1} podporována.",
"non web extensions detail": "Obsahuje nepodporovaná rozšíření.",
- "showExtensions": "Zobrazit rozšíření",
+ "showExtensions": "&&Zobrazit rozšíření",
"singleDependentError": "Rozšíření {0} nelze odinstalovat. Závisí na něm rozšíření {1}.",
- "twoDependentsError": "Rozšíření {0} nelze odinstalovat. Závisí na něm rozšíření {1} a {2}."
+ "singleUntrustedPublisher": "Instalací tohoto rozšíření se nainstalují také [rozšíření]({0}) publikovaná vydavatelem {1}.",
+ "trust and install": "Důvěřovat vydavateli &> Nainstalovat",
+ "trust publishers and install": "Důvěřovat vydavatelům &> Nainstalovat",
+ "twoDependentsError": "Rozšíření {0} nelze odinstalovat. Závisí na něm rozšíření {1} a {2}.",
+ "unverifiedPublisherWithName": "{0} se [**neověřil**]({1}).",
+ "unverifiedPublishers": "Vydavatelé {0} a {1} **nejsou** [ověření]({2}).",
+ "verifiedPublisherWithName": "{0} ověřil vlastnictví {1}."
+ },
+ "vs/workbench/services/extensionManagement/common/extensionsIcons": {
+ "extensionDefault": "Ikona použitá pro výchozí rozšíření v zobrazení rozšíření a editoru.",
+ "extensionIconVerifiedForeground": "Barva ikony pro ověřeného vydavatele rozšíření",
+ "verifiedPublisher": "Ikona používaná pro ověřeného vydavatele rozšíření v zobrazení a editoru rozšíření"
+ },
+ "vs/workbench/services/extensionManagement/electron-browser/extensionGalleryManifestService": {
+ "extensionGalleryManifestService.accountChange": "{0} je teď nakonfigurovaný na jiný marketplace. Restartujte prosím počítač, aby se změny projevily.",
+ "restart": "&&Restartovat"
},
- "vs/workbench/services/extensionManagement/electron-sandbox/extensionManagementServerService": {
+ "vs/workbench/services/extensionManagement/electron-browser/extensionManagementServerService": {
"local": "Místní",
"remote": "Vzdálené"
},
- "vs/workbench/services/extensionManagement/electron-sandbox/remoteExtensionManagementService": {
+ "vs/workbench/services/extensionManagement/electron-browser/remoteExtensionManagementService": {
+ "incompatibleAPI": "Rozšíření {0} nejde nainstalovat. {1}",
"notFoundCompatibleDependency": "Rozšíření {0} nelze nainstalovat, protože není kompatibilní s aktuální verzí {1} (verze {2}).",
- "notFoundCompatiblePrereleaseDependency": "Nejde nainstalovat předběžnou verzi rozšíření {0}, protože není kompatibilní s aktuální verzí {1}(verze {2}).",
"notFoundReleaseExtension": "Není možné nainstalovat vydanou verzi rozšíření {0}, protože nemá žádnou vydanou verzi."
},
"vs/workbench/services/extensionRecommendations/common/workspaceExtensionsConfig": {
@@ -10976,33 +17357,36 @@
"workspace folder": "Složka pracovního prostoru"
},
"vs/workbench/services/extensions/browser/extensionUrlHandler": {
- "Installing": "Instaluje se rozšíření {0}...",
- "confirmUrl": "Chcete rozšíření povolit otevření tohoto identifikátoru URI?",
- "enableAndHandle": "Rozšíření {0} je zakázané. Chcete rozšíření povolit a otevřít adresu URL?",
- "enableAndReload": "&&Povolit a otevřít",
+ "confirmUrl": "Chcete rozšíření {0} povolit otevření tohoto identifikátoru URI?",
"extensions": "Rozšíření",
- "install and open": "&&Nainstalovat a otevřít",
- "installAndHandle": "Rozšíření {0} není nainstalované. Chcete rozšíření nainstalovat a otevřít tuto adresu URL?",
+ "installDetail": "Toto rozšíření chce otevřít identifikátor URI:",
"manage": "Spravovat identifikátory URI autorizovaných rozšíření...",
"no": "V tuto chvíli neexistují žádné autorizované identifikátory URI rozšíření.",
"open": "&&Otevřít",
+ "openUri": "Otevřít identifikátor URI",
"reloadAndHandle": "Rozšíření {0} není načtené. Chcete opětovným načtením okna rozšíření načíst a otevřít adresu URL?",
"reloadAndOpen": "&&Znovu načíst okno a otevřít",
"rememberConfirmUrl": "Pro toto rozšíření už příště dotaz nezobrazovat"
},
- "vs/workbench/services/extensions/browser/webWorkerExtensionHost": {
- "name": "Hostitel rozšíření pracovního procesu"
- },
"vs/workbench/services/extensions/common/abstractExtensionService": {
+ "activation": "Aktivační události",
+ "disconnectRemote": "Odpojit službu Vzdálený agent",
"extensionService.autoRestart": "Hostitel vzdáleného rozšíření se neočekávaně ukončil. Probíhá restartování…",
"extensionService.crash": "Hostitel vzdáleného rozšíření se během posledních 5 minut neočekávaně 3krát ukončil.",
+ "extensionStopVetoError": "{0} (chyba: {1})",
+ "extensionStopVetoMessage": "Potvrďte restartování rozšíření.",
"extensionTestError": "Nenašel se žádný hostitel rozšíření, který by mohl spustit Test Runner v {0}.",
"looping": "The following extensions contain dependency loops and have been disabled: {0}",
- "restart": "Restartovat hostitele vzdáleného rozšíření"
+ "proceedAnyways": "Přesto restartovat",
+ "restart": "Restartovat hostitele vzdáleného rozšíření",
+ "stopExtensionHosts": "Zastavování hostitelů rozšíření"
},
"vs/workbench/services/extensions/common/extensionHostManager": {
"measureExtHostLatency": "Měřit latenci hostitele rozšíření"
},
+ "vs/workbench/services/extensions/common/extensionsProposedApi": {
+ "enabledProposedAPIs": "Návrhy rozhraní API"
+ },
"vs/workbench/services/extensions/common/extensionsRegistry": {
"extensionKind": "Definujte typ rozšíření. Rozšíření typu „ui“ se instalují a spouštějí na místním počítači, zatímco rozšíření typu „workspace“ se spouštějí na vzdáleném počítači.",
"extensionKind.empty": "Definujte rozšíření, které nelze spustit ve vzdáleném kontextu, a to ani na místním ani na vzdáleném počítači.",
@@ -11014,6 +17398,7 @@
"ui": "Typ rozšíření uživatelského rozhraní. Ve vzdáleném okně jsou tato rozšíření povolena pouze v případě, že jsou k dispozici v místním počítači.",
"vscode.extension.activationEvents": "Aktivační události pro rozšíření VS Code",
"vscode.extension.activationEvents.onAuthenticationRequest": "Událost aktivace, která se vygeneruje pokaždé, když se od zadaného poskytovatele ověřování požádá o relace.",
+ "vscode.extension.activationEvents.onChatParticipant": "Aktivační událost vygenerovaná při vyvolání zadaného účastníka chatu.",
"vscode.extension.activationEvents.onCommand": "Aktivační událost vyvolaná vždy, když je vyvolán zadaný příkaz",
"vscode.extension.activationEvents.onCustomEditor": "Aktivační událost vyvolaná vždy, když se zobrazí zadaný vlastní editor",
"vscode.extension.activationEvents.onDebug": "Aktivační událost vyvolaná vždy, když se uživatel chystá spustit ladění nebo nastavit konfigurace ladění",
@@ -11021,22 +17406,31 @@
"vscode.extension.activationEvents.onDebugDynamicConfigurations": "Aktivační událost vyvolaná vždy, když je nutné vytvořit seznam všech konfigurací ladění (a musí být volány všechny metody provideDebugConfigurations pro obor dynamic)",
"vscode.extension.activationEvents.onDebugInitialConfigurations": "Aktivační událost vyvolaná vždy, když je potřeba vytvořit soubor launch.json (a je potřeba volat všechny metody provideDebugConfigurations)",
"vscode.extension.activationEvents.onDebugResolve": "Aktivační událost vyvolaná vždy, když má být spuštěna relace ladění s konkrétním typem (a je potřeba volat odpovídající metodu resolveDebugConfiguration)",
+ "vscode.extension.activationEvents.onEditSession": "Aktivační událost vyvolaná při každém přístupu k relaci úprav s daným schématem.",
"vscode.extension.activationEvents.onFileSystem": "Aktivační událost vyvolaná při každém přístupu k souboru nebo složce s daným schématem",
- "vscode.extension.activationEvents.onIdentity": "Aktivační událost vyvolaná vždy při zadané identitě uživatele",
+ "vscode.extension.activationEvents.onIssueReporterOpened": "Aktivační událost vysílaná při otevření sestavy problémů",
"vscode.extension.activationEvents.onLanguage": "Aktivační událost vyvolaná vždy, když se otevře soubor rozpoznaný jako soubor pro konkrétní jazyk",
+ "vscode.extension.activationEvents.onLanguageModelChatProvider": "Aktivační událost vygenerovaná při vyžádání poskytovatele modelu chatu pro daného dodavatele",
+ "vscode.extension.activationEvents.onLanguageModelTool": "Aktivační událost vygenerovaná při vyvolání zadaného nástroje jazykového modelu.",
+ "vscode.extension.activationEvents.onMcpCollection": "Aktivační událost vygenerovaná při vyžádání nástroje ze serveru MCP.",
"vscode.extension.activationEvents.onNotebook": "Aktivační událost vygenerovaná vždy, když se otevře zadaný dokument poznámkového bloku",
"vscode.extension.activationEvents.onOpenExternalUri": "Událost aktivace vygenerovaná vždy, když se otevírá externí identifikátor URI (například odkaz HTTP nebo HTTPS).",
"vscode.extension.activationEvents.onRenderer": "Aktivační událost, která je vyvolána při každém použití rendereru výstupu poznámkového bloku.",
"vscode.extension.activationEvents.onSearch": "Aktivační událost vyvolaná při každém spuštění vyhledávání ve složce s daným schématem",
"vscode.extension.activationEvents.onStartupFinished": "Aktivační událost vyvolaná po dokončení spuštění – po dokončení aktivace všech aktivovaných rozšíření (*)",
"vscode.extension.activationEvents.onTaskType": "Aktivační událost vyvolaná vždy, když je třeba vypisovat nebo řešit úlohy určitého typu.",
+ "vscode.extension.activationEvents.onTerminal": "Aktivační událost vyvolaná při otevření terminálu daného typu prostředí.",
"vscode.extension.activationEvents.onTerminalProfile": "Aktivační událost, která je vyvolána při spuštění konkrétního profilu terminálu.",
+ "vscode.extension.activationEvents.onTerminalQuickFixRequest": "Aktivační událost vygenerovaná v případě, že příkaz odpovídá selektoru přidruženému k tomuto ID",
+ "vscode.extension.activationEvents.onTerminalShellIntegration": "Aktivační událost vyvolaná při aktivaci integrace prostředí terminálu pro daný typ prostředí.",
"vscode.extension.activationEvents.onUri": "Aktivační událost vyvolaná vždy, když je otevřen systémový identifikátor URI směrovaný na toto rozšíření",
"vscode.extension.activationEvents.onView": "Aktivační událost vyvolaná vždy, když je rozbaleno zadané zobrazení",
"vscode.extension.activationEvents.onWalkthrough": "Událost aktivace vygenerovaná při otevření zadaného podrobného návodu.",
"vscode.extension.activationEvents.onWebviewPanel": "Aktivační událost generovaná při načtení webového zobrazení určitého typu zobrazení",
"vscode.extension.activationEvents.star": "Aktivační událost vyvolaná při spuštění VS Code. Aby byla zajištěna optimální uživatelská zkušenost koncového uživatele, použijte prosím tuto aktivační událost ve svém rozšíření, pouze pokud ve vašem případu použití nefunguje žádná jiná kombinace aktivačních událostí.",
"vscode.extension.activationEvents.workspaceContains": "Aktivační událost vyvolaná při každém otevření složky, která obsahuje minimálně jeden soubor odpovídající zadanému vzoru glob",
+ "vscode.extension.api": "Popište rozhraní API poskytované tímto rozšířením. Další podrobnosti najdete tady: https://code.visualstudio.com/api/advanced-topics/remote-extensions#handling-dependencies-with-remote-extensions",
+ "vscode.extension.api.none": "Zcela se vzdáte možnosti exportovat všechna rozhraní API. To umožňuje spuštění dalších rozšíření, která závisí na tomto rozšíření, v samostatném hostitelském procesu rozšíření nebo ve vzdáleném počítači.",
"vscode.extension.badges": "Pole hodnot odznáčků, které se mají zobrazit na postranním panelu stránky rozšíření na Marketplace.",
"vscode.extension.badges.description": "Popis odznáčku",
"vscode.extension.badges.href": "Odkaz na odznáček",
@@ -11071,8 +17465,10 @@
"vscode.extension.galleryBanner.color": "Barva banneru v záhlaví stránky Marketplace pro VS Code",
"vscode.extension.galleryBanner.theme": "Barevný motiv pro písmo použité v banneru",
"vscode.extension.icon": "Cesta k ikoně o velikosti 128×128 pixelů",
+ "vscode.extension.l10n": "Relativní cesta ke složce obsahující lokalizační soubory (bundle.l10n.*.json). Pokud používáte vscode.l10n API, musí se zadat.",
"vscode.extension.markdown": "Řídí vykreslovací modul Markdownu, který se používá v Marketplace. Možné hodnoty: github (výchozí) nebo standard",
"vscode.extension.preview": "Nastaví rozšíření, které má být v Marketplace označeno příznakem Preview.",
+ "vscode.extension.pricing": "Informace o cenách pro toto rozšíření. Může být zdarma (výchozí) nebo zkušební verze. Další podrobnosti najdete tady: https://code.visualstudio.com/api/working-with-extensions/publishing-extension#extension-pricing-label",
"vscode.extension.publisher": "Vydavatel rozšíření VS Code",
"vscode.extension.qna": "Řídí odkaz na otázky a odpovědi v Marketplace. Nastavte hodnotu marketplace, pokud chcete povolit výchozí web otázek a odpovědí Marketplace. Pokud chcete zadat adresu URL vlastního webu otázek a odpovědí, nastavte hodnotu string. Pokud chcete otázky a odpovědi úplně zakázat, nastavte hodnotu false.",
"vscode.extension.scripts.prepublish": "Skript provedený před publikováním balíčku jako rozšíření VS Code.",
@@ -11081,17 +17477,23 @@
},
"vs/workbench/services/extensions/common/extensionsUtil": {
"extensionUnderDevelopment": "Načítá se rozšíření pro vývoj v {0}.",
- "overwritingExtension": "Rozšíření {0} se přepisuje na {1}."
+ "overwritingExtension": "Rozšíření {0} se přepisuje na {1}.",
+ "overwritingWithWorkspaceExtension": "Přepisování {0} pomocí rozšíření pracovního prostoru {1}."
},
- "vs/workbench/services/extensions/common/remoteExtensionHost": {
- "remote extension host Log": "Vzdálený hostitel rozšíření"
- },
- "vs/workbench/services/extensions/electron-sandbox/cachedExtensionScanner": {
+ "vs/workbench/services/extensions/electron-browser/cachedExtensionScanner": {
"extensionCache.invalid": "Rozšíření byla upravena na disku. Načtěte prosím okno znovu.",
+ "extensionUnderDevelopment.invalid": "Nepovedlo se načíst rozšíření {0} ve vývoji, protože je neplatné: {1}",
+ "extensionsUnderDevelopment.invalid": "Nepovedlo se načíst rozšíření {0} ve vývoji, protože jsou neplatná: {1}",
+ "reloadWindow": "Znovu načíst okno"
+ },
+ "vs/workbench/services/extensions/electron-browser/localProcessExtensionHost": {
+ "extensionHost.startupFail": "Hostitel rozšíření nebyl spuštěn do 10 sekund, což může být problém.",
+ "extensionHost.startupFailDebug": "Hostitel rozšíření se nespustil do 10 sekund. Může být zastavený na prvním řádku a může k pokračování potřebovat ladicí program.",
+ "join.extensionDevelopment": "Ukončuje se relace ladění rozšíření.",
"reloadWindow": "Znovu načíst okno"
},
- "vs/workbench/services/extensions/electron-sandbox/electronExtensionService": {
- "devTools": "Otevřít vývojářské nástroje",
+ "vs/workbench/services/extensions/electron-browser/nativeExtensionService": {
+ "devTools": "Otevřít Vývojářské nástroje",
"enable": "Povolit a znovu načíst",
"enableResolver": "K otevření vzdáleného okna je vyžadováno rozšíření {0}.\r\nChcete ho povolit?",
"extensionService.autoRestart": "Hostitel rozšíření se neočekávaně ukončil. Probíhá restartování…",
@@ -11100,89 +17502,28 @@
"getEnvironmentFailure": "Nepovedlo se načíst vzdálené prostředí.",
"install": "Nainstalovat a znovu načíst",
"installResolver": "K otevření vzdáleného okna je vyžadováno rozšíření {0}.\r\nChcete toto rozšíření nainstalovat?",
- "looping": "Následující rozšíření obsahují smyčky závislostí a byla zakázána: {0}.",
+ "learnMore": "Další informace",
"relaunch": "Znovu spustit VS Code",
"resolverExtensionNotFound": "Rozšíření {0} nebylo nalezeno na Marketplace.",
"restart": "Restartovat hostitele rozšíření",
- "restartExtensionHost": "Restartovat hostitele rozšíření"
- },
- "vs/workbench/services/extensions/electron-sandbox/localProcessExtensionHost": {
- "extension host Log": "Hostitel rozšíření",
- "extensionHost.error": "Chyba v hostiteli rozšíření: {0}",
- "extensionHost.startupFail": "Hostitel rozšíření nebyl spuštěn do 10 sekund, což může být problém.",
- "extensionHost.startupFailDebug": "Hostitel rozšíření se nespustil do 10 sekund. Může být zastavený na prvním řádku a může k pokračování potřebovat ladicí program.",
- "join.extensionDevelopment": "Ukončuje se relace ladění rozšíření.",
- "reloadWindow": "Znovu načíst okno"
+ "restartExtensionHost": "Restartovat hostitele rozšíření",
+ "restartExtensionHost.reason": "Explicitní žádost",
+ "startBisect": "Spustit bisekci rozšíření"
},
"vs/workbench/services/files/electron-browser/diskFileSystemProvider": {
- "binFailed": "{0} se nepovedlo přesunout do koše.",
- "trashFailed": "{0} se nepovedlo přesunout do koše."
- },
- "vs/workbench/services/gettingStarted/common/gettingStartedContent": {
- "getting-started-setup-icon": "Ikona, která se používá pro kategorii nastavení v příručce Začínáme",
- "getting-started-beginner-icon": "Ikona, která se používá pro kategorii pro začátečníky v příručce Začínáme",
- "getting-started-codespaces-icon": "Ikona, která se používá pro kategorii codespaces v příručce Začínáme",
- "gettingStarted.newFile.title": "Nový soubor",
- "gettingStarted.newFile.description": "Začít s novým prázdným souborem",
- "gettingStarted.openMac.title": "Otevřít...",
- "gettingStarted.openMac.description": "Pokud chcete začít pracovat, otevřete soubor nebo složku.",
- "gettingStarted.openFile.title": "Otevřít soubor...",
- "gettingStarted.openFile.description": "Pokud chcete začít pracovat, otevřete soubor.",
- "gettingStarted.openFolder.title": "Otevřít složku...",
- "gettingStarted.openFolder.description": "Pokud chcete začít pracovat, otevřete složku.",
- "gettingStarted.cloneRepo.title": "Klonovat úložiště Git...",
- "gettingStarted.cloneRepo.description": "Klonovat úložiště Git",
- "gettingStarted.topLevelCommandPalette.title": "Spustit příkaz...",
- "gettingStarted.topLevelCommandPalette.description": "Pokud chcete zobrazit a spustit všechny příkazy VSCode, použijte paletu příkazů.",
- "gettingStarted.codespaces.title": "Primer v Codespaces",
- "gettingStarted.codespaces.description": "Zprovozněte své prostředí rychlého kódu.",
- "gettingStarted.runProject.title": "Sestavit a spustit aplikaci",
- "gettingStarted.runProject.description": "Sestavení, spuštění a ladění kódu v cloudu přímo z prohlížeče",
- "gettingStarted.runProject.button": "Spustit ladění (F5)",
- "gettingStarted.forwardPorts.title": "Přístup ke spuštěné aplikaci",
- "gettingStarted.forwardPorts.description": "Porty spuštěné v rámci codespace se automaticky přesměrovávají na web, takže je můžete otevřít v prohlížeči.",
- "gettingStarted.forwardPorts.button": "Zobrazit panel Porty",
- "gettingStarted.pullRequests.title": "Žádosti o přijetí změn na dosah ruky",
- "gettingStarted.pullRequests.description": "Spojte pracovní postup GitHubu s vaším kódem, abyste si mohli kontrolovat žádosti o přijetí změn, přidávat komentáře, slučovat větve apod.",
- "gettingStarted.pullRequests.button": "Otevřít zobrazení GitHubu",
- "gettingStarted.remoteTerminal.title": "Spouštění úloh v integrovaném terminálu",
- "gettingStarted.remoteTerminal.description": "Pomocí integrovaného terminálu můžete provádět rychlé úlohy příkazového řádku.",
- "gettingStarted.remoteTerminal.button": "Zaměřit se na terminál",
- "gettingStarted.openVSC.title": "Vzdálený vývoj ve VS Code",
- "gettingStarted.openVSC.description": "Využijte výkon cloudového vývojového prostředí z místní aplikace VS Code. Nastavte to tak, že nainstalujete rozšíření GitHub Codespaces a připojíte svůj účet GitHub.",
- "gettingStarted.openVSC.button": "Otevřít ve VS Code",
- "gettingStarted.setup.title": "Rychlé nastavení",
- "gettingStarted.setup.description": "Rozšiřte a přizpůsobte si aplikaci VS Code tak, aby vám vyhovovala.",
- "gettingStarted.pickColor.title": "Přizpůsobení vzhledu pomocí motivů",
- "gettingStarted.pickColor.description": "Vyberte barevný motiv, který bude odpovídat vašemu vkusu a náladě při kódování.",
- "gettingStarted.pickColor.button": "Vybrat motiv",
- "gettingStarted.findLanguageExts.title": "Kód v jakémkoli jazyce, bez přepínání editorů",
- "gettingStarted.findLanguageExts.description": "VS Code podporuje více než 50 programovacích jazyků. Mnohé jsou integrované a další se dají snadno nainstalovat jedním kliknutím jako rozšíření.",
- "gettingStarted.findLanguageExts.button": "Procházet rozšíření jazyků",
- "gettingStarted.settingsSync.title": "Synchronizace oblíbeného nastavení",
- "gettingStarted.settingsSync.description": "Už nikdy nepřijdete o své dokonalé nastavení VS Code! Synchronizace nastavení bude zálohovat a sdílet nastavení, klávesové zkratky a rozšíření mezi několika instancemi VS Code.",
- "gettingStarted.settingsSync.button": "Povolit synchronizaci nastavení",
- "gettingStarted.setup.OpenFolder.title": "Otevřít projekt",
- "gettingStarted.setup.OpenFolder.description": "Otevřete složku projektu a začněte pracovat!",
- "gettingStarted.setup.OpenFolder.button": "Vybrat složku",
- "gettingStarted.setup.OpenFolder.description2": "Pokud chcete začít pracovat, otevřete složku.",
- "gettingStarted.beginner.title": "Naučte se základy",
- "gettingStarted.beginner.description": "Ušetřete čas s těmito nepostradatelnými klávesovými zkratkami a funkcemi.",
- "gettingStarted.commandPalette.title": "Najít a spustit příkazy",
- "gettingStarted.commandPalette.description": "Nejsnazší způsob, jak najít vše, co VS Code dokáže. Pokud někdy budete hledat nějakou funkci nebo klávesovou zkratku, podívejte se nejdříve sem.",
- "gettingStarted.commandPalette.button": "Otevřít paletu příkazů",
- "gettingStarted.terminal.title": "Spouštění úloh v integrovaném terminálu",
- "gettingStarted.terminal.description": "Rychle spouštějte příkazy prostředí a monitorujte výstup sestavení hned vedle svého kódu.",
- "gettingStarted.terminal.button": "Otevřít terminál",
- "gettingStarted.extensions.title": "Neomezená rozšiřitelnost",
- "gettingStarted.extensions.description": "Rozšíření vylepšují VS Code. Nabízejí užitečné nástroje pro produktivitu, rozšiřují původní funkce, nebo třeba přidávají funkce, které jsou zcela nové.",
- "gettingStarted.extensions.button": "Procházet doporučená rozšíření",
- "gettingStarted.settings.title": "Všechno se dá nastavit",
- "gettingStarted.settings.description": "Optimalizujte každou část vzhledu VS Code podle svých představ. Povolením synchronizace nastavení můžete sdílet svá osobní vylepšení mezi počítači.",
- "gettingStarted.settings.button": "Vylepšit moje nastavení",
- "gettingStarted.videoTutorial.title": "Opřete se a učte se",
- "gettingStarted.videoTutorial.description": "Podívejte se na první z řady krátkých a praktických videokurzů pro hlavní funkce nástroje VS Code.",
- "gettingStarted.videoTutorial.button": "Zhlédnout kurz"
+ "fileWatcher": "Sledovací proces souborů"
+ },
+ "vs/workbench/services/files/electron-browser/elevatedFileService": {
+ "fileNotTrusted": "Pracovní prostor není důvěryhodný.",
+ "fileNotTrustedMessagePosix": "Chystáte se uložit {0} jako superuživatele.",
+ "fileNotTrustedMessageWindows": "Chystáte se uložit {0} jako správce."
+ },
+ "vs/workbench/services/filesConfiguration/common/filesConfigurationService": {
+ "configuredReadonly": "Editor je jen pro čtení, protože soubor byl nastavený jen pro čtení prostřednictvím nastavení. Pro konfiguraci [klikněte sem](command:{0}) nebo [přepněte v této relaci](command:{1}).",
+ "fileLocked": "Editor je jen pro čtení kvůli oprávněním souboru. [Klikněte sem](command:{0}), abyste přesto nastavili možnost zápisu.",
+ "fileReadonly": "Editor je jen pro čtení, protože soubor je jen pro čtení.",
+ "providerReadonly": "Editor je jen pro čtení, protože systém souborů je jen pro čtení.",
+ "sessionReadonly": "Editor je jen pro čtení, protože soubor byl v této relaci nastavený jen pro čtení. [Klikněte sem](command:{0}) pro nastavení možnosti zápisu."
},
"vs/workbench/services/history/browser/historyService": {
"canNavigateBack": "Určuje, jestli je možné v historii editoru přejít zpět.",
@@ -11195,20 +17536,51 @@
"canNavigateToLastNavigationLocation": "Jestli je možné přejít do posledního navigačního místa v editoru",
"canReopenClosedEditor": "Určuje, jestli je možné znovu otevřít naposledy zavřený editor."
},
- "vs/workbench/services/integrity/electron-sandbox/integrityService": {
+ "vs/workbench/services/host/browser/browserHostService": {
+ "retry": "&&Zkusit znovu",
+ "unableToOpenExternal": "Prohlížeč zablokoval otevření nové karty nebo okna. Zkuste to znovu výběrem možnosti Zkusit znovu.",
+ "unableToOpenExternalWorkspace": "Prohlížeč zablokoval otevření nové karty nebo okna pro {0}. Zkuste to znovu výběrem možnosti Zkusit znovu.",
+ "unableToOpenWindowDetail": "Povolte prosím automaticky otevíraná okna pro tento web v [nastavení prohlížeče]({0})."
+ },
+ "vs/workbench/services/hover/browser/hoverWidget": {
+ "hoverhint": "Podržením {0} klávesy najeďte myší"
+ },
+ "vs/workbench/services/integrity/electron-browser/integrityService": {
"integrity.dontShowAgain": "Znovu nezobrazovat",
"integrity.moreInformation": "Další informace",
"integrity.prompt": "Vaše instalace {0} je pravděpodobně poškozená. Proveďte prosím přeinstalaci."
},
+ "vs/workbench/services/issue/browser/issueTroubleshoot": {
+ "I cannot reproduce": "Nemůžu reprodukovat",
+ "Stop": "Zastavit",
+ "This is Bad": "Můžu reprodukovat",
+ "ask to download insiders": "Pokuste se stáhnout a reprodukovat problém v {0} Insiders.",
+ "ask to reproduce issue": "Zkuste prosím problém reprodukovat v {0} Insiders a ověřte, jestli tam problém existuje.",
+ "bad": "Můžu reprodukovat",
+ "detail.start": "Řešení potíží je proces, který vám pomůže identifikovat příčinu problému. Příčinou problému může být chybná konfigurace kvůli rozšíření nebo to může být samotn(ý/á/é) {0}.\r\n\r\nBěhem procesu se okno opakovaně znovu načítá. Pokaždé musíte potvrdit, jestli se problém stále zobrazuje.",
+ "download insiders": "Stáhnout {0} Insiders",
+ "empty.profile": "Řešení potíží je aktivní a dočasně resetovalo vaše konfigurace na výchozí hodnoty. Zkontrolujte, jestli problém stále můžete reprodukovat, a pokračujte výběrem z těchto možností.",
+ "good": "Nemůžu reprodukovat",
+ "issue is in core": "Při řešení potíží jsme zjistili, že se jedná o problém s {0}.",
+ "issue is with configuration": "Při řešení potíží bylo zjištěno, že příčinou problému jsou vaše konfigurace. Nahlaste problém exportováním konfigurací pomocí příkazu „Export Profile“ (Exportovat profil) a nasdílejte soubor v sestavě problému.",
+ "msg": "&&Řešení potíží",
+ "profile.extensions.disabled": "Řešení potíží je aktivní a dočasně zakázalo všechna nainstalovaná rozšíření. Zkontrolujte, jestli problém stále můžete reprodukovat, a pokračujte výběrem z těchto možností.",
+ "report anyway": "Přesto nahlásit problém",
+ "stop": "Zastavit",
+ "title.stop": "Zastavit řešení potíží",
+ "troubleshoot issue": "Řešení potíží",
+ "troubleshootIssue": "Řešení potíží…",
+ "use insiders": "To pravděpodobně znamená, že problém už byl vyřešen a oprava bude k dispozici v nadcházející verzi. Dokud nebude k dispozici nová stabilní verze, můžete bezpečně používat {0} Insiders."
+ },
"vs/workbench/services/keybinding/browser/keybindingService": {
- "dispatch": "Řídí logiku odeslání klávesových zkratek. Možné hodnoty code (doporučeno) nebo keyCode",
"invalid.keybindings": "Neplatné nastavení contributes.{0}: {1}",
+ "keybindings.commandsIsArray": "Nesprávný typ. Očekávalo se „{0}“. Pole 'command' nepodporuje spouštění více příkazů. Pomocí příkazu 'runCommands' předejte více příkazů ke spuštění.",
"keybindings.json.args": "Argumenty, které se mají předat příkazu, který se má provést",
"keybindings.json.command": "Název příkazu, který má být proveden",
"keybindings.json.key": "Klávesa nebo posloupnost kláves (oddělené mezerou)",
+ "keybindings.json.removalCommand": "Název příkazu, pro který se má odebrat klávesová zkratka",
"keybindings.json.title": "Konfigurace klávesových zkratek",
"keybindings.json.when": "Podmínka, když je klávesa aktivní",
- "keyboardConfigurationTitle": "Klávesnice",
"nonempty": "byla očekávána neprázdná hodnota.",
"optstring": "Vlastnost {0} může být vynechána nebo musí být typu string.",
"requirestring": "Vlastnost {0} je povinná a musí být typu string.",
@@ -11222,6 +17594,10 @@
"vscode.extension.contributes.keybindings.when": "Podmínka, když je klávesa aktivní",
"vscode.extension.contributes.keybindings.win": "Klávesa nebo posloupnost kláves specifická pro Windows"
},
+ "vs/workbench/services/keybinding/browser/keyboardLayoutService": {
+ "keyboard.layout.config": "Umožňuje řídit rozložení klávesnice používané na webu.",
+ "keyboardConfigurationTitle": "Klávesnice"
+ },
"vs/workbench/services/keybinding/common/keybindingEditing": {
"emptyKeybindingsHeader": "Pokud chcete přepsat výchozí hodnoty, umístěte do tohoto souboru své klávesové zkratky.",
"errorInvalidConfiguration": "Nelze zapisovat do konfiguračního souboru klávesových zkratek. Obsahuje objekt, který není typu Array. Otevřete prosím soubor, vyčistěte ho a zkuste to znovu.",
@@ -11244,8 +17620,13 @@
"workspaceNameVerbose": "{0} (pracovní prostor)"
},
"vs/workbench/services/language/common/languageService": {
+ "file extensions": "Přípony souborů",
+ "grammar": "Gramatika",
"invalid": "Neplatné nastavení contributes.{0}. Očekávalo se pole hodnot.",
"invalid.empty": "Prázdná hodnota nastavení contributes.{0}",
+ "language id": "ID",
+ "language name": "Název",
+ "languages": "Programovací jazyky",
"opt.aliases": "Vlastnost {0} může být vynechána a musí být typu string[].",
"opt.configuration": "Vlastnost {0} může být vynechána a musí být typu string.",
"opt.extensions": "Vlastnost {0} může být vynechána a musí být typu string[].",
@@ -11254,6 +17635,7 @@
"opt.icon": "vlastnost {0} je možné vynechat a musí být typu object s vlastnostmi {1} a {2} typu string",
"opt.mimetypes": "Vlastnost {0} může být vynechána a musí být typu string[].",
"require.id": "Vlastnost {0} je povinná a musí být typu string.",
+ "snippets": "Fragmenty kódu",
"vscode.extension.contributes.languages": "Přidává deklarace jazyka.",
"vscode.extension.contributes.languages.aliases": "Aliasy názvu pro daný jazyk",
"vscode.extension.contributes.languages.configuration": "Relativní cesta k souboru, který obsahuje možnosti konfigurace pro daný jazyk",
@@ -11267,41 +17649,37 @@
"vscode.extension.contributes.languages.id": "ID daného jazyka",
"vscode.extension.contributes.languages.mimetypes": "Typy Mime přidružené k danému jazyku"
},
- "vs/workbench/services/lifecycle/electron-sandbox/lifecycleService": {
- "errorClose": "Při pokusu o zavření okna ({0}) došlo k neočekávané chybě.",
- "errorLoad": "Při pokusu o změnu pracovního prostoru okna ({0}) došlo k neočekávané chybě.",
- "errorQuit": "Při pokusu o ukončení aplikace ({0}) došlo k neočekávané chybě.",
- "errorReload": "Při pokusu o opětovné načtení okna ({0}) došlo k neočekávané chybě."
+ "vs/workbench/services/lifecycle/browser/lifecycleService": {
+ "lifecycleVeto": "Změny, které jste provedli, se nemusí uložit. Zkontrolujte prosím, že jste stlačili Zrušit, a zkuste to znovu."
},
- "vs/workbench/services/mode/common/workbenchLanguageService": {
- "invalid": "Neplatné nastavení contributes.{0}. Očekávalo se pole hodnot.",
- "invalid.empty": "Prázdná hodnota nastavení contributes.{0}",
- "opt.aliases": "Vlastnost {0} může být vynechána a musí být typu string[].",
- "opt.configuration": "Vlastnost {0} může být vynechána a musí být typu string.",
- "opt.extensions": "Vlastnost {0} může být vynechána a musí být typu string[].",
- "opt.filenames": "Vlastnost {0} může být vynechána a musí být typu string[].",
- "opt.firstLine": "Vlastnost {0} může být vynechána a musí být typu string.",
- "opt.mimetypes": "Vlastnost {0} může být vynechána a musí být typu string[].",
- "require.id": "Vlastnost {0} je povinná a musí být typu string.",
- "vscode.extension.contributes.languages": "Přidává deklarace jazyka.",
- "vscode.extension.contributes.languages.aliases": "Aliasy názvu pro daný jazyk",
- "vscode.extension.contributes.languages.configuration": "Relativní cesta k souboru, který obsahuje možnosti konfigurace pro daný jazyk",
- "vscode.extension.contributes.languages.extensions": "Přípony souborů přidružené k danému jazyku",
- "vscode.extension.contributes.languages.filenamePatterns": "Vzory glob názvu souboru přidružené k danému jazyku",
- "vscode.extension.contributes.languages.filenames": "Názvy souborů přidružené k danému jazyku",
- "vscode.extension.contributes.languages.firstLine": "Regulární výraz odpovídající prvnímu řádku souboru daného jazyka",
- "vscode.extension.contributes.languages.id": "ID daného jazyka",
- "vscode.extension.contributes.languages.mimetypes": "Typy Mime přidružené k danému jazyku"
+ "vs/workbench/services/localization/browser/localeService": {
+ "clearDisplayLanguageDetail": "Stisknutím tlačítka Znovu načíst stránku aktualizujte a použijte jazyk prohlížeče.",
+ "clearDisplayLanguageMessage": "Pokud chcete změnit jazyk zobrazení, {0} se musí znovu načíst.",
+ "relaunchDisplayLanguageDetail": "Stisknutím tlačítka Znovu načíst stránku aktualizujte a nastavte jazyk zobrazení na {0}.",
+ "relaunchDisplayLanguageMessage": "Pokud chcete změnit jazyk zobrazení, {0} se musí znovu načíst.",
+ "reload": "&&Načíst znovu"
+ },
+ "vs/workbench/services/localization/electron-browser/localeService": {
+ "argvInvalid": "Jazyk zobrazení se nedá zapisovat. Otevřete prosím nastavení modulu runtime, opravte chyby nebo varování v něm obsažené, a zkuste to znovu.",
+ "installing": "Instaluje se {0} jazyková podpora",
+ "openArgv": "Otevřít nastavení modulu runtime",
+ "restart": "&&Restartovat",
+ "restartDisplayLanguageDetail1": "Pokud chcete změnit jazyk zobrazení {0}, {1} se musí restartovat.",
+ "restartDisplayLanguageMessage1": "Restartovat {0} a přepnout na {1}?"
+ },
+ "vs/workbench/services/log/common/logConstants": {
+ "window": "Časové období"
},
"vs/workbench/services/notification/common/notificationService": {
"neverShowAgain": "Znovu nezobrazovat"
},
"vs/workbench/services/preferences/browser/keybindingsEditorInput": {
+ "keybindingsEditorLabelIcon": "Ikona popisku editoru klávesových zkratek",
"keybindingsInputName": "Klávesové zkratky"
},
"vs/workbench/services/preferences/browser/keybindingsEditorModel": {
"cat.title": "{0}: {1}",
- "default": "Výchozí",
+ "default": "Systém",
"extension": "Rozšíření",
"meta": "meta",
"option": "parametr",
@@ -11314,7 +17692,10 @@
"openFolderFirst": "Než vytvoříte nastavení pracovního prostoru nebo složky, nejprve otevřete složku nebo pracovní prostor."
},
"vs/workbench/services/preferences/common/preferencesEditorInput": {
- "settingsEditor2InputName": "Nastavení"
+ "preferencesEditorInputName": "Předvolby",
+ "preferencesEditorLabelIcon": "Ikona popisku editoru předvoleb",
+ "settingsEditor2InputName": "Nastavení",
+ "settingsEditorLabelIcon": "Ikona popisku editoru nastavení"
},
"vs/workbench/services/preferences/common/preferencesModels": {
"commonlyUsed": "Běžně používané",
@@ -11322,6 +17703,7 @@
},
"vs/workbench/services/preferences/common/preferencesValidation": {
"invalidTypeError": "Nastavení má neplatný typ. Očekávalo se {0}. Opravte to v kódu JSON.",
+ "regexParsingError": "Chyba při analýze následujícího regulárního výrazu s příznakem U i bez něj:",
"validations.arrayIncorrectType": "Nesprávný typ. Očekávalo se pole.",
"validations.booleanIncorrectType": "Nesprávný typ. Očekávala se hodnota boolean.",
"validations.colorFormat": "Neplatný formát barvy. Použijte #RGB, #RGBA, #RRGGBB nebo #RRGGBBAA.",
@@ -11350,14 +17732,6 @@
"validations.uriMissing": "Očekává se identifikátor URI.",
"validations.uriSchemeMissing": "Očekává se identifikátor URI se schématem."
},
- "vs/workbench/services/profiles/common/profile": {
- "profile": "Profil nastavení",
- "settings profiles": "Profil nastavení"
- },
- "vs/workbench/services/profiles/common/profileService": {
- "applied profile": "{0}: Aplikování proběhlo úspěšně.",
- "profiles.applying": "{0}: Probíhá aplikování…"
- },
"vs/workbench/services/progress/browser/progressService": {
"cancel": "Zrušit",
"dismiss": "Zavřít",
@@ -11366,32 +17740,102 @@
"progress.title3": "[{0}] {1}: {2}",
"status.progress": "Zpráva o průběhu"
},
+ "vs/workbench/services/remote/browser/remoteAgentService": {
+ "connectionError": "Došlo k neočekávané chybě, která vyžaduje opětovné načtení této stránky.",
+ "connectionErrorDetail": "Workbench se nepodařilo připojit k serveru (chyba: {0})",
+ "reload": "&&Načíst znovu"
+ },
"vs/workbench/services/remote/common/remoteExplorerService": {
+ "RemoteHelpInformationExtPoint": "Přidává informace nápovědy pro vzdálené připojení.",
+ "RemoteHelpInformationExtPoint.documentation": "Adresa URL stránky dokumentace vašeho projektu (nebo příkaz, který vrátí tuto adresu URL)",
+ "RemoteHelpInformationExtPoint.feedback": "Adresa URL nástroje pro odeslání zpětné vazby vašeho projektu (nebo příkaz, který vrátí tuto adresu URL)",
+ "RemoteHelpInformationExtPoint.feedback.deprecated": "Místo toho použít {0}",
+ "RemoteHelpInformationExtPoint.getStarted": "Adresa URL nebo příkaz, který vrátí adresu URL, na stránku Začínáme v projektu, nebo ID průvodce, které poskytlo rozšíření projektu",
+ "RemoteHelpInformationExtPoint.issues": "Adresa URL seznamu problémů vašeho projektu (nebo příkaz, který vrátí tuto adresu URL)",
+ "RemoteHelpInformationExtPoint.reportIssue": "Adresa URL oznamovatele problémů vašeho projektu (nebo příkaz, který vrátí tuto adresu URL)",
+ "getStartedWalkthrough.id": "ID průvodce Začínáme, který se má otevřít."
+ },
+ "vs/workbench/services/remote/common/tunnelModel": {
"remote.localPortMismatch.single": "Místní port {0} se nedá použít pro přesměrování na vzdálený port {1}.\r\n\r\nK tomu obvykle dochází, pokud už existuje jiný proces, který používá místní port {0}.\r\n\r\nPoužilo se místo toho číslo portu {2}.",
+ "tunnel.forwardedPortsViewEnabled": "Určuje, jestli je povolené zobrazení Porty.",
"tunnel.source.auto": "Automaticky přesměrováno",
"tunnel.source.user": "Přesměrováno uživatelem",
"tunnel.staticallyForwarded": "Staticky přesměrováno"
},
- "vs/workbench/services/remote/electron-sandbox/remoteAgentService": {
+ "vs/workbench/services/remote/electron-browser/remoteAgentService": {
"connectionError": "Nepovedlo se připojit ke vzdálenému serveru hostitele rozšíření. (Chyba: {0})",
- "devTools": "Otevřít vývojářské nástroje",
+ "devTools": "Otevřít Vývojářské nástroje",
"directUrl": "Otevřít v prohlížeči"
},
+ "vs/workbench/services/request/browser/requestService": {
+ "network": "Síť"
+ },
+ "vs/workbench/services/request/electron-browser/requestService": {
+ "network": "Síť"
+ },
+ "vs/workbench/services/search/browser/searchService": {
+ "errorSearchFile": "Není možné hledat pomocí vyhledávání souborů webového pracovního procesu.",
+ "errorSearchText": "Není možné hledat pomocí vyhledávání textu webového pracovního procesu."
+ },
"vs/workbench/services/search/common/queryBuilder": {
"search.noWorkspaceWithName": "Složka pracovního prostoru neexistuje: {0}"
},
- "vs/workbench/services/sessionSync/browser/sessionSyncWorkbenchService": {
- "account preference": "Přihlaste se, abyste mohli používat úpravy relací",
- "choose account placeholder": "Vyberte účet pro přihlášení.",
- "others": "Jiné",
- "reset auth": "Odhlásit se",
- "sign in using account": "Přihlásit přes {0}",
- "signed in": "Přihlášený"
+ "vs/workbench/services/secrets/electron-browser/secretStorageService": {
+ "encryptionNotAvailableJustTroubleshootingGuide": "Nepodařilo se identifikovat klíčování operačního systému pro ukládání dat souvisejících se šifrováním ve vašem aktuálním desktopovém prostředí.",
+ "isGnome": "Používáte prostředí GNOME, ale klíčování operačního systému není k dispozici pro šifrování. Ujistěte se, že máte nainstalovaný a spuštěný gnome-keyring nebo jinou implementaci kompatibilní s libsecret.",
+ "isKwallet": "Používáte prostředí KDE, ale klíčování operačního systému není k dispozici pro šifrování. Ujistěte se, že máte spuštěnou sadu Kwallet.",
+ "troubleshootingButton": "Otevřít průvodce odstraňováním potíží",
+ "usePlainText": "Použít slabší šifrování",
+ "usePlainTextExtraSentence": "Pokud to chcete vyřešit, otevřete průvodce odstraňováním potíží, nebo můžete použít slabší šifrování, které nepoužívá keyring operačního systému."
+ },
+ "vs/workbench/services/suggest/browser/simpleSuggestWidget": {
+ "ariaCurrenttSuggestionReadDetails": "{0}, dokumenty: {1}",
+ "label": "{0}, {1}",
+ "label.desc": "{0}, {1} {2}",
+ "label.detail": "{0}{1} {2}",
+ "label.full": "{0}{1}, {2} {3}",
+ "simpleSuggestWidgetFirstSuggestionFocused": "Určuje, jestli je fokus na prvním jednoduchém návrhu.",
+ "simpleSuggestWidgetHasFocusedSuggestion": "Určuje, jestli je nějaký jednoduchý návrh ve fokusu",
+ "simpleSuggestWidgetHasNavigated": "Určuje, jestli byl widget jednoduchého návrhu navigován směrem dolů",
+ "suggest": "Návrh",
+ "suggestWidget.loading": "Načítání…",
+ "suggestWidget.noSuggestions": "Žádné návrhy"
+ },
+ "vs/workbench/services/suggest/browser/simpleSuggestWidgetDetails": {
+ "details.close": "Zavřít",
+ "loading": "Načítání…"
+ },
+ "vs/workbench/services/textfile/browser/textFileService": {
+ "confirmMakeWriteable": "Soubor {0} je označen jako jen pro čtení. Chcete soubor přesto uložit?",
+ "confirmMakeWriteableDetail": "Cesty lze v nastavení nakonfigurovat jako jen pro čtení.",
+ "confirmOverwrite": "{0} už existuje. Chcete provést nahrazení?",
+ "deleted": "Odstraněno",
+ "fileBinaryError": "Vypadá to, že soubor je binární a nedá se otevřít jako text.",
+ "makeWriteableButtonLabel": "&&Přesto uložit",
+ "overwriteIrreversible": "Soubor nebo složka s názvem {0} už ve složce {1} existují. Jejich nahrazením se přepíše jejich aktuální obsah.",
+ "readonly": "Jen pro čtení",
+ "readonlyAndDeleted": "Odstraněno, jen pro čtení",
+ "replaceButtonLabel": "&&Nahradit",
+ "textFileCreate.source": "Vytvořený soubor:",
+ "textFileModelDecorations": "Dekorace modelu textového souboru",
+ "textFileOverwrite.source": "Soubor nahrazen"
+ },
+ "vs/workbench/services/textfile/common/textFileEditorModel": {
+ "saveParticipants": "Ukládá se {0}.",
+ "saveTextFile": "Probíhá zápis do souboru...",
+ "textFileCreate.source": "Kódování souboru se změnilo."
+ },
+ "vs/workbench/services/textfile/common/textFileEditorModelManager": {
+ "genericSaveError": "Nepovedlo se uložit {0}: {1}"
+ },
+ "vs/workbench/services/textfile/common/textFileSaveParticipant": {
+ "saveParticipants1": "Spouští se akce kódu a formátovací moduly...",
+ "skip": "Přeskočit"
},
- "vs/workbench/services/sessionSync/common/sessionSync": {
- "session sync": "Upravit Relace"
+ "vs/workbench/services/textfile/electron-browser/nativeTextFileService": {
+ "join.textFiles": "Ukládání textových souborů"
},
- "vs/workbench/services/textMate/browser/abstractTextMateService": {
+ "vs/workbench/services/textMate/browser/textMateTokenizationFeatureImpl": {
"alreadyDebugging": "Protokolování už probíhá.",
"invalid.embeddedLanguages": "Neplatná hodnota v nastavení contributes.{0}.embeddedLanguages. Musí se jednat o mapování objektu z názvu oboru na jazyk. Zadaná hodnota: {1}",
"invalid.injectTo": "Neplatná hodnota v contributes.{0}.injectTo. Musí se jednat o pole hodnot názvů oboru jazyka. Zadaná hodnota: {1}",
@@ -11415,30 +17859,6 @@
"vscode.extension.contributes.grammars.tokenTypes": "Mapování názvu oboru na typy tokenů",
"vscode.extension.contributes.grammars.unbalancedBracketScopes": "Definuje, které názvy oborů neobsahují vyvážené hranaté závorky."
},
- "vs/workbench/services/textfile/browser/textFileService": {
- "confirmOverwrite": "{0} už existuje. Chcete provést nahrazení?",
- "deleted": "Odstraněno",
- "fileBinaryError": "Vypadá to, že soubor je binární a nedá se otevřít jako text.",
- "irreversible": "Soubor nebo složka s názvem {0} už ve složce {1} existují. Jejich nahrazením se přepíše jejich aktuální obsah.",
- "readonly": "Jen pro čtení",
- "readonlyAndDeleted": "Odstraněno, jen pro čtení",
- "replaceButtonLabel": "&&Nahradit",
- "textFileCreate.source": "Vytvořený soubor:",
- "textFileModelDecorations": "Dekorace modelu textového souboru",
- "textFileOverwrite.source": "Soubor nahrazen"
- },
- "vs/workbench/services/textfile/common/textFileEditorModel": {
- "textFileCreate.source": "Kódování souboru se změnilo."
- },
- "vs/workbench/services/textfile/common/textFileEditorModelManager": {
- "genericSaveError": "Nepovedlo se uložit {0}: {1}"
- },
- "vs/workbench/services/textfile/common/textFileSaveParticipant": {
- "saveParticipants": "Ukládá se: {0}."
- },
- "vs/workbench/services/textfile/electron-sandbox/nativeTextFileService": {
- "join.textFiles": "Ukládání textových souborů"
- },
"vs/workbench/services/themes/browser/fileIconThemeData": {
"error.cannotparseicontheme": "Problémy s parsováním souboru ikon souboru: {0}",
"error.invalidformat": "Neplatný formát souboru motivu ikon souboru: Očekával se objekt."
@@ -11451,7 +17871,7 @@
"error.fontStyle": "Neplatný řez písma v písmu {0}. Nastavení se ignoruje.",
"error.fontWeight": "Neplatná tloušťka písma v písmu {0}. Nastavení se ignoruje.",
"error.icon.font": "Přeskakuje se definice ikony {0}. Neznámé písmo (font)",
- "error.icon.fontCharacter": "Přeskakuje se definice ikony {0}. Neznámý znak písma (fontCharacter)",
+ "error.icon.fontCharacter": "Přeskakuje se definice ikony '{0}': Musí se definovat.",
"error.invalidformat": "Neplatný formát souboru motivu ikon produktu: Očekával se objekt.",
"error.missingProperties": "Neplatný formát souboru motivu ikon produktu: Musí obsahovat definice ikon (iconDefinition) a písma (font).",
"error.noFontSrc": "V písmu {0} není platný zdroj písma. Definice písma se ignoruje.",
@@ -11461,6 +17881,7 @@
"error.cannotloadtheme": "Nelze načíst {0}: {1}"
},
"vs/workbench/services/themes/common/colorExtensionPoint": {
+ "colors": "Barvy",
"contributes.color": "Přidává barvy motivu definované rozšířením.",
"contributes.color.description": "Popis barvy motivu",
"contributes.color.id": "Identifikátor barvy motivu",
@@ -11469,6 +17890,11 @@
"contributes.defaults.highContrast": "Výchozí barva pro tmavý motiv s vysokým kontrastem. Buď hodnota barvy v šestnáctkovém formátu (#RRGGBB[AA]), nebo identifikátor barvy motivu, která poskytuje výchozí hodnotu. Pokud ji nezadáte, použije se jako výchozí pro tmavé motivy s vysokým kontrastem tmavá barva dark.",
"contributes.defaults.highContrastLight": "Výchozí barva pro světlý motiv s vysokým kontrastem. Buď hodnota barvy v šestnáctkovém formátu (#RRGGBB[AA]), nebo identifikátor barvy motivu, která poskytuje výchozí hodnotu. Pokud ji nezadáte, použije se jako výchozí pro světlé motivy s vysokým kontrastem tmavá barva light.",
"contributes.defaults.light": "Výchozí barva pro světlé motivy. Buď hodnota barvy v šestnáctkovém formátu (#RRGGBB[AA] nebo #RGB[A]), nebo identifikátor barvy motivu, což je výchozí hodnota",
+ "defaultDark": "Tmavý (výchozí)",
+ "defaultHC": "Vysoký kontrast (výchozí)",
+ "defaultLight": "Světlý (výchozí)",
+ "description": "Popis",
+ "id": "ID",
"invalid.colorConfiguration": "configuration.colors musí být pole hodnot.",
"invalid.default.colorType": "{0} musí být hodnota barvy v šestnáctkovém formátu (#RRGGBB[AA] nebo #RGB[A]) nebo identifikátor barvy motivu, což je výchozí hodnota",
"invalid.defaults": "configuration.colors.defaults musí být definované a musí obsahovat hodnoty light a dark.",
@@ -11517,7 +17943,7 @@
"schema.folderNamesExpanded": "Přidruží názvy složek k ikonám pro rozbalené složky. Klíčem objektu je název složky bez segmentů cesty. Nelze použít vzory ani zástupné znaky. Při porovnávání názvů složek se nerozlišují malá a velká písmena.",
"schema.font-format": "Formát písma",
"schema.font-path": "Cesta k písmu relativní vzhledem k aktuálnímu souboru motivu ikon souboru",
- "schema.font-size": "Výchozí velikost písma. Platné hodnoty najdete na https://developer.mozilla.org/en-US/docs/Web/CSS/font-size.",
+ "schema.font-size": "Velikost písma. Důrazně doporučujeme použít procentuální hodnotu, například: 125 %.",
"schema.font-style": "Styl písma. Platné hodnoty najdete na https://developer.mozilla.org/en-US/docs/Web/CSS/font-style.",
"schema.font-weight": "Tloušťka písma. Platné hodnoty najdete na https://developer.mozilla.org/en-US/docs/Web/CSS/font-weight.",
"schema.fontCharacter": "Při použití piktogramového písma: znak v písmu, který se má použít",
@@ -11531,10 +17957,14 @@
"schema.iconDefinitions": "Popis všech ikon, které mohou být použity při přidružování souborů k ikonám",
"schema.iconPath": "Při použití SVG nebo PNG: Cesta k obrázku. Cesta je relativní k souboru sady ikon.",
"schema.id": "ID písma",
- "schema.id.formatError": "ID může obsahovat pouze písmena, číslice, podtržítka a symbol minus.",
"schema.languageId": "ID definice ikony pro přidružení",
"schema.languageIds": "Přidruží jazyky k ikonám. Klíčem objektu je ID jazyka definované v přidávacím bodě pro daný jazyk.",
"schema.light": "Volitelná přidružení pro ikony souborů ve světlých barevných motivech",
+ "schema.rootFolder": "Ikona složky pro sbalené kořenové složky, a pokud není nastavená vlastnost rootFolderExpanded, také pro rozbalené kořenové složky.",
+ "schema.rootFolderExpanded": "Ikona složky pro rozbalené kořenové složky Ikona rozbalené kořenové složky je volitelná. Pokud není nastaveno, zobrazí se ikona definovaná pro kořenovou složku.",
+ "schema.rootFolderNameExpanded": "ID definice ikony pro přidružení",
+ "schema.rootFolderNames": "Přidruží názvy kořenových složek k ikonám. Klíč objektu je název kořenové složky. Nejsou povoleny žádné vzory ani zástupné znaky. Při porovnávání názvů kořenových složek se nerozlišují malá a velká písmena.",
+ "schema.rootFolderNamesExpanded": "Přidruží názvy kořenových složek k ikonám pro rozbalené kořenové složky. Klíč objektu je název kořenové složky. Nejsou povoleny žádné vzory ani zástupné znaky. Při porovnávání názvů kořenových složek se nerozlišují malá a velká písmena.",
"schema.showLanguageModeIcons": "Konfiguruje, jestli se mají používat ikony výchozího jazyka, pokud motiv nedefinuje ikonu pro jazyk.",
"schema.src": "Umístění písma"
},
@@ -11560,16 +17990,15 @@
"schema.font-weight": "Tloušťka písma. Platné hodnoty najdete na https://developer.mozilla.org/en-US/docs/Web/CSS/font-weight.",
"schema.iconDefinitions": "Přidružení názvu ikony ke znaku písma",
"schema.id": "ID písma",
- "schema.id.formatError": "ID může obsahovat pouze písmena, číslice, podtržítka a symbol minus.",
"schema.src": "Umístění písma"
},
"vs/workbench/services/themes/common/themeConfiguration": {
- "autoDetectHighContrast": "Pokud je tato možnost povolená, změní se automaticky na motiv s vysokým kontrastem, pokud operační systém používá motiv s vysokým kontrastem. Motiv s vysokým kontrastem, který se má použít, je specifikovaný znaky #{0}# a #{1}#.",
- "colorTheme": "Určuje barevný motiv používaný na pracovní ploše.",
+ "autoDetectHighContrast": "Pokud je tato možnost povolená, změní se automaticky na motiv s vysokým kontrastem, pokud operační systém používá motiv s vysokým kontrastem. Motiv s vysokým kontrastem, který se má použít, je specifikovaný nastavením {0} a {1}.",
+ "colorTheme": "Určuje barevný motiv použitý na pracovní ploše, pokud není povolené nastavení {0}.",
"colorThemeError": "Motiv je neznámý nebo není nainstalovaný.",
"defaultProductIconThemeDesc": "Výchozí",
"defaultProductIconThemeLabel": "Výchozí",
- "detectColorScheme": "Když se tato možnost nastaví, automaticky přepne na preferovaný barevný motiv na základě vzhledu operačního systému. Pokud je vzhled operačního systému tmavý, používá se motiv určený v #{0}#, pro světlý se použije #{1}#.",
+ "detectColorScheme": "Pokud je tato možnost povolená, automaticky vybere barevný motiv na základě systémového barevného režimu. Pokud je systémový barevný režim tmavý, použije se {0}, jinak se použije {1}.",
"editorColors": "Přepíše barvy syntaxe editoru a řez písma z aktuálně vybraného barevného motivu.",
"editorColors.comments": "Nastaví barvy a styly pro komentáře.",
"editorColors.functions": "Nastaví barvy a styly pro odkazy a deklarace funkcí.",
@@ -11577,7 +18006,7 @@
"editorColors.numbers": "Nastaví barvy a styly pro číselné literály.",
"editorColors.semanticHighlighting": "Určuje, jestli má být pro tento motiv povoleno sémantické zvýrazňování.",
"editorColors.semanticHighlighting.deprecationMessage": "Místo toho použijte hodnotu enabled nastavení editor.semanticTokenColorCustomizations.",
- "editorColors.semanticHighlighting.deprecationMessageMarkdown": "Místo toho použijte nastavení Enabled v #editor.semanticTokenColorCustomizations#.",
+ "editorColors.semanticHighlighting.deprecationMessageMarkdown": "Místo toho použijte v nastavení {0} hodnotu enabled.",
"editorColors.semanticHighlighting.enabled": "Určuje, jestli je pro tento motiv povoleno nebo zakázáno sémantické zvýrazňování.",
"editorColors.semanticHighlighting.rules": "Pravidla stylu sémantického tokenu pro tento motiv",
"editorColors.strings": "Nastaví barvy a styly pro řetězcové literály.",
@@ -11588,20 +18017,24 @@
"iconThemeError": "Motiv ikon souboru je neznámý nebo není nainstalovaný.",
"noIconThemeDesc": "Žádné ikony souborů",
"noIconThemeLabel": "Žádný",
- "preferredDarkColorTheme": "Určuje preferovaný barevný motiv pro tmavý vzhled operačního systému, když je povolena funkce #{0}#.",
- "preferredHCDarkColorTheme": "Určuje preferovaný barevný motiv používaný v tmavém režimu vysokého kontrastu, když je povolena funkce #{0}#.",
- "preferredHCLightColorTheme": "Určuje preferovaný barevný motiv používaný ve světlém režimu vysokého kontrastu, když je povolena funkce #{0}#.",
- "preferredLightColorTheme": "Určuje preferovaný barevný motiv pro světlý vzhled operačního systému, když je povolené nastavení #{0}#.",
+ "preferredDarkColorTheme": "Určuje barevný motiv, pokud je systémový barevný režim tmavý a je povolené nastavení {0}.",
+ "preferredHCDarkColorTheme": "Určuje barevný motiv, když se používá tmavý režim s vysokým kontrastem a je povolené nastavení {0}.",
+ "preferredHCLightColorTheme": "Určuje barevný motiv, když se používá světlý režim s vysokým kontrastem a je povolené nastavení {0}.",
+ "preferredLightColorTheme": "Určuje barevný motiv, pokud je systémový barevný režim světlý a je povolené nastavení {0}.",
"productIconTheme": "Určuje použitý motiv ikon produktu.",
"productIconThemeError": "Motiv ikon produktu je neznámý nebo není nainstalovaný.",
"semanticTokenColors": "Přepíše barvu a styly sémantického tokenu editoru z aktuálně vybraného barevného motivu.",
"workbenchColors": "Přepíše barvy z aktuálně vybraného barevného motivu."
},
"vs/workbench/services/themes/common/themeExtensionPoints": {
+ "color themes": "Barevné motivy",
+ "file icon themes": "Motivy ikon souboru",
"invalid.path.1": "Očekávalo se, že bude contributes.{0}.path ({1}) zahrnuto do složky rozšíření ({2}). To by mohlo způsobit, že rozšíření nebude přenosné.",
+ "product icon themes": "Motivy ikon produktu",
"reqarray": "Bod rozšíření {0} musí být pole hodnot.",
"reqid": "V contributes.{0}.id byl očekáván řetězec. Zadaná hodnota: {1}",
"reqpath": "Očekávalo se, že contributes.{0}.path bude obsahovat řetězec. Zadaná hodnota: {1}",
+ "themes": "Motivy",
"vscode.extension.contributes.iconThemes": "Přidává motivy ikon souborů.",
"vscode.extension.contributes.iconThemes.id": "ID motivu ikon souboru používané v uživatelských nastaveních",
"vscode.extension.contributes.iconThemes.label": "Popisek motivu ikon souboru zobrazovaný v uživatelském rozhraní",
@@ -11642,87 +18075,191 @@
"invalid.semanticTokenTypeConfiguration": "configuration.semanticTokenType musí být pole hodnot.",
"invalid.superType.format": "configuration.{0}.superType musí odpovídat vzoru písmenoNeboČíslice[-_písmenoNeboČíslice]*"
},
+ "vs/workbench/services/themes/electron-browser/themes.contribution": {
+ "window.systemColorTheme": "Umožňuje nastavit barevný motiv pro nativní prvky uživatelského rozhraní, jako jsou nativní dialogová okna, nabídky a záhlaví. I když je váš operační systém nakonfigurovaný na světlý barevný režim, můžete pro okno vybrat tmavý systémový barevný motiv. Můžete také nakonfigurovat automatické úpravy na základě nastavení {0}.\r\n\r\nPoznámka: Toto nastavení je ignorováno, pokud je povolené nastavení {1}.",
+ "window.systemColorTheme.auto": "Umožňuje pro světlé motivy používat světlé nativní barvy widgetů a pro tmavé barevné motivy tmavé barvy.",
+ "window.systemColorTheme.dark": "Umožňuje používat tmavé nativní barvy widgetů.",
+ "window.systemColorTheme.default": "Nativní barvy widgetů odpovídají systémovým barvám.",
+ "window.systemColorTheme.light": "Umožňuje používat světlé nativní barvy widgetů."
+ },
+ "vs/workbench/services/userDataProfile/browser/extensionsResource": {
+ "all profiles and disabled": "Všechny profily",
+ "exclude": "Vybrat rozšíření {0}",
+ "extensions": "Rozšíření",
+ "installingExtension": "Instaluje se rozšíření {0}..."
+ },
+ "vs/workbench/services/userDataProfile/browser/globalStateResource": {
+ "globalState": "Stav uživatelského rozhraní"
+ },
+ "vs/workbench/services/userDataProfile/browser/keybindingsResource": {
+ "keybindings": "Klávesové zkratky"
+ },
+ "vs/workbench/services/userDataProfile/browser/mcpProfileResource": {
+ "mcp": "Servery MCP"
+ },
+ "vs/workbench/services/userDataProfile/browser/settingsResource": {
+ "settings": "Nastavení"
+ },
+ "vs/workbench/services/userDataProfile/browser/snippetsResource": {
+ "exclude": "Vybrat úryvek {0}",
+ "snippets": "Fragmenty"
+ },
+ "vs/workbench/services/userDataProfile/browser/tasksResource": {
+ "tasks": "Úlohy"
+ },
+ "vs/workbench/services/userDataProfile/browser/userDataProfileImportExportService": {
+ "applying global state": "Aplikuje se stav uživatelského rozhraní...",
+ "close": "Zavřít",
+ "copy": "&&Zkopírovat odkaz",
+ "create from profile": "Vytvořit profil: {0}",
+ "create keybindings": "Vytváří se klávesové zkratky...",
+ "create snippets": "Vytváří se fragmenty kódu...",
+ "create tasks": "Vytváří se úlohy...",
+ "creating settings": "Vytváří se nastavení...",
+ "export profile dialog": "Uložit Profil",
+ "export profile name": "Pojmenujte profil.",
+ "export profile title": "Exportovat profil",
+ "export success": "Profil {0} se úspěšně exportoval.",
+ "file": "soubor",
+ "from default": "Z výchozího profilu",
+ "installing extensions": "Instalují se rozšíření...",
+ "invalid profile content": "Tento profil není platný.",
+ "local": "Místní",
+ "open": "&&Otevřít odkaz",
+ "open in": "&&Otevřít v {0}",
+ "overwrite": "&&Nahradit",
+ "profile already exists": "Profil s názvem {0} už existuje. Chcete nahradit jeho obsah?",
+ "profile name required": "Musí se zadat název profilu.",
+ "profiles.exporting": "{0}: Probíhá export...",
+ "progress extensions": "Zavádění rozšíření...",
+ "progress global state": "Zavádění stavu...",
+ "progress keybindings": "Přepínání profilu...",
+ "progress settings": "Aplikuje se nastavení...",
+ "progress snippets": "Zavádění fragmentů kódu...",
+ "progress tasks": "Zavádění úkolů...",
+ "select": "Vyberte {0}.",
+ "select profile": "Vyberte profil",
+ "select profile content handler": "Exportovat profil {0} jako...",
+ "switching profile": "Přepínání profilu...",
+ "troubleshoot issue": "Řešení potíží",
+ "troubleshoot profile progress": "Nastavení profilu poradce při potížích: {0}"
+ },
"vs/workbench/services/userDataProfile/browser/userDataProfileManagement": {
- "cannotDeleteDefaultProfile": "Výchozí profil nastavení se nedá odstranit",
- "cannotRenameDefaultProfile": "Výchozí profil nastavení se nedá přejmenovat",
+ "cannotDeleteDefaultProfile": "Výchozí profil se nedá odstranit",
+ "cannotRenameDefaultProfile": "Výchozí profil nejde přejmenovat.",
"reload button": "&&Načíst znovu",
- "reload message": "Přepnutí profilu nastavení vyžaduje opětovné načtení VS Code.",
- "reload message when removed": "Aktuální profil nastavení byl odebrán. Pokud chcete přepnout zpět na výchozí profil nastavení, načtěte ho prosím znovu."
+ "reload message": "Přepnutí profilu vyžaduje opětovné načtení VS Code.",
+ "reload message when removed": "Aktuální profil byl odebrán. Pokud chcete přepnout zpět na výchozí profil, načtěte prosím znovu.",
+ "reload message when switched": "Aktuální pracovní prostor se odebral z aktuálního profilu. Pokud chcete přepnout zpět na aktualizovaný profil, načtěte ho prosím znovu.",
+ "reload message when updated": "Aktuální profil byl aktualizován. Pokud chcete přejít zpět na aktualizovaný profil, načtěte ho prosím znovu.",
+ "switch profile": "Přepíná se na profil."
},
"vs/workbench/services/userDataProfile/common/userDataProfile": {
- "profile": "Profil nastavení",
- "settings profiles": "Profily nastavení"
+ "defaultProfileIcon": "Ikona pro výchozí profil.",
+ "profile": "Profil",
+ "profiles": "Profily"
},
- "vs/workbench/services/userDataProfile/common/userDataProfileImportExportService": {
- "applied profile": "{0}: Aplikování proběhlo úspěšně.",
- "imported profile": "{0}: Import proběhl úspěšně.",
- "name": "Název profilu",
- "profiles.applying": "{0}: Probíhá aplikování...",
- "profiles.importing": "{0}: Probíhá import...",
- "save profile as": "Vytvořit z aktuálního Profilu"
+ "vs/workbench/services/userDataProfile/common/userDataProfileIcons": {
+ "settingsViewBarIcon": "Ikona Nastavení na panelu zobrazení"
},
"vs/workbench/services/userDataSync/browser/userDataSyncWorkbenchService": {
- "cancel": "Zrušit",
+ "and": " a ",
"choose account placeholder": "Vyberte účet pro přihlášení.",
- "conflicts detected": "Zjištěny konflikty",
- "first time sync detail": "Vypadá to, že jste poslední synchronizaci prováděli z jiného počítače.\r\nChcete data sloučit nebo je chcete nahradit daty z cloudu?",
+ "conflicts detected": "V {0} byly zjištěny konflikty.",
+ "download sync activity dialog open label": "Uložit",
+ "download sync activity dialog title": "Vyberte složku, do které se má stáhnout aktivita synchronizace nastavení.",
"last used": "Naposledy použito se synchronizací",
- "merge": "Sloučit",
- "merge Manually": "Sloučit ručně...",
- "merge or replace": "Sloučit nebo nahradit",
- "no": "&&Ne",
+ "no": "Ne",
"no account": "Není k dispozici žádný účet.",
"no authentication providers": "Synchronizaci nastavení nelze zapnout, protože nejsou k dispozici žádní zprostředkovatelé ověřování.",
+ "no authentication providers during signin": "Nelze se přihlásit, protože nejsou k dispozici žádní zprostředkovatelé ověřování.",
"others": "Jiné",
- "replace local": "Nahradit místní",
+ "replace local": "Přijmout &&vzdálené",
+ "replace local single": "Přijmout &&vzdálenou {0}",
+ "replace remote": "Přijmout míst&&ní",
+ "replace remote single": "Přijmout &&místní {0}",
"reset": "Vymažete tím svá cloudová data a zastavíte synchronizaci na všech svých zařízeních.",
"reset title": "Vymazat",
"resetButton": "&&Resetovat",
- "resolve": "Sloučení nelze provést, protože byly zjištěny konflikty. Pokud chcete pokračovat, proveďte prosím sloučení ručně...",
+ "resolve": "Vyřešte konflikty a zapněte...",
+ "resolving conflicts": "Řešení konfliktů...",
"settings sync": "Synchronizace nastavení",
- "show log": "zobrazit protokol",
- "sign in": "Přihlásit se",
+ "show conflicts": "&&Zobrazit konflikty",
"sign in using account": "Přihlásit přes {0}",
"signed in": "Uživatel přihlášen",
- "successive auth failures": "Synchronizace nastavení je kvůli opakovaným selháním autorizace pozastavená. Pokud chcete pokračovat v synchronizaci, přihlaste se prosím znovu.",
"sync in progress": "Zapíná se synchronizace nastavení. Chcete to zrušit?",
"sync turned on": "{0} je zapnuto",
- "syncing resource": "Synchronizuje se {0}...",
+ "syncing...": "Zapínání…",
"turning on": "Zapínání...",
"yes": "&&Ano"
},
"vs/workbench/services/userDataSync/common/userDataSync": {
+ "download sync activity title": "Stahování Nastavení Synchronizace Aktivity",
"extensions": "Rozšíření",
"keybindings": "Klávesové zkratky",
+ "mcp": "Servery MCP",
+ "profiles": "Profily",
+ "prompts": "Výzvy a pokyny",
"settings": "Nastavení",
- "snippets": "Fragmenty kódu uživatele",
+ "snippets": "Fragmenty kódu",
"sync category": "Synchronizace nastavení",
"syncViewIcon": "Zobrazit ikonu zobrazení Synchronizace nastavení",
- "tasks": "Uživatelské úkoly",
- "ui state label": "Stav uživatelského rozhraní"
+ "tasks": "Úlohy",
+ "ui state label": "Stav uživatelského rozhraní",
+ "workspace state label": "Stav pracovního prostoru"
},
"vs/workbench/services/views/browser/viewDescriptorService": {
- "cachedViewContainerPositions": "Zobrazit přizpůsobení umístění kontejneru",
- "cachedViewPositions": "Zobrazit přizpůsobení umístění",
"hideView": "Skrýt {0}",
- "resetViewLocation": "Obnovit umístění"
+ "hideViewDescription": "Skryje zobrazení {0}, pokud je viditelné a pokud kontejner zobrazení, ve které se nachází, je viditelný.",
+ "resetViewLocation": "Obnovit umístění",
+ "toggleVisibilityDescription": "Přepíná viditelnost zobrazení {0}, pokud je viditelný kontejner zobrazení, ve které se nachází.",
+ "user": "Kontejner zobrazení uživatele"
+ },
+ "vs/workbench/services/views/browser/viewsService": {
+ "editor": "Textový editor",
+ "focus view": "Přepnout fokus na zobrazení {0}",
+ "open view": "Otevře zobrazení {0}",
+ "preserveFocus": "Určuje, jestli se má při otevírání zobrazení zachovat existující fokus.",
+ "resetViewLocation": "Obnovit umístění",
+ "show view": "Zobrazit: {0}",
+ "toggle view": "Přepnout {0}"
},
- "vs/workbench/services/views/common/viewContainerModel": {
- "globalViewsStateStorageId": "Zobrazí přizpůsobení viditelnosti v kontejneru zobrazení {0}."
+ "vs/workbench/services/views/test/browser/viewContainerModel.test": {
+ "Test View 1": "Prohlížeč testů 1",
+ "Test View 2": "Prohlížeč testů 2",
+ "Test View 3": "Prohlížeč testů 3",
+ "Test View 4": "Prohlížeč testů 4",
+ "Test View 5": "Prohlížeč testů 5",
+ "test": "test"
+ },
+ "vs/workbench/services/views/test/browser/viewDescriptorService.test": {
+ "Test View 1": "Prohlížeč testů 1",
+ "Test View 2": "Prohlížeč testů 2",
+ "Test View 3": "Prohlížeč testů 3",
+ "Test View 4": "Prohlížeč testů 4",
+ "test": "test"
+ },
+ "vs/workbench/services/voiceRecognition/electron-sandbox/workbenchVoiceRecognitionService": {
+ "voiceTranscription": "Přepis hlasu",
+ "voiceTranscriptionError": "Přepis hlasu se nezdařil: {0}",
+ "voiceTranscriptionGettingReady": "Připravuje se mikrofon...",
+ "voiceTranscriptionRecording": "Nahrávání z mikrofonu..."
},
"vs/workbench/services/workingCopy/common/fileWorkingCopyManager": {
+ "confirmMakeWriteable": "Soubor {0} je označen jako jen pro čtení. Chcete soubor přesto uložit?",
+ "confirmMakeWriteableDetail": "Cesty lze v nastavení nakonfigurovat jako jen pro čtení.",
"confirmOverwrite": "{0} už existuje. Chcete provést nahrazení?",
"deleted": "Odstraněno",
"fileWorkingCopyCreate.source": "Vytvořený soubor:",
"fileWorkingCopyDecorations": "Dekorace pracovní kopie souboru",
"fileWorkingCopyReplace.source": "Soubor nahrazen",
- "irreversible": "Soubor nebo složka s názvem {0} už ve složce {1} existují. Jejich nahrazením se přepíše jejich aktuální obsah.",
+ "makeWriteableButtonLabel": "&&Přesto uložit",
+ "overwriteIrreversible": "Soubor nebo složka s názvem {0} už ve složce {1} existují. Jejich nahrazením se přepíše jejich aktuální obsah.",
"readonly": "Jen pro čtení",
"readonlyAndDeleted": "Odstraněno, jen pro čtení",
"replaceButtonLabel": "&&Nahradit"
},
"vs/workbench/services/workingCopy/common/storedFileWorkingCopy": {
- "discard": "Zahodit",
"genericSaveError": "Nepovedlo se uložit {0}: {1}",
"overwrite": "Přepsat",
"overwriteElevated": "Přepsat jako správce...",
@@ -11733,59 +18270,66 @@
"readonlySaveErrorAdmin": "Soubor {0} se nepovedlo uložit: Soubor je jen pro čtení. Pokud to chcete zkusit znovu s oprávněními správce, vyberte Přepsat jako správce.",
"readonlySaveErrorSudo": "Soubor {0} se nepovedlo uložit: Soubor je jen pro čtení. Pokud to chcete zkusit znovu s oprávněními superuživatele, vyberte Přepsat jako Sudo.",
"retry": "Zkusit znovu",
+ "revert": "Obnovit",
"saveAs": "Uložit jako…",
"saveElevated": "Zkusit znovu jako Správce…",
"saveElevatedSudo": "Zkusit znovu jako Sudo...",
+ "saveParticipants": "Ukládá se {0}.",
+ "saveTextFile": "Probíhá zápis do souboru...",
"staleSaveError": "Nepovedlo se uložit {0}: obsah souboru je novější. Chcete soubor přepsat vašimi změnami?"
},
"vs/workbench/services/workingCopy/common/storedFileWorkingCopyManager": {
"join.fileWorkingCopyManager": "Ukládání pracovních kopií"
},
"vs/workbench/services/workingCopy/common/storedFileWorkingCopySaveParticipant": {
- "saveParticipants": "Ukládá se: {0}"
+ "saveParticipants1": "Spouští se akce kódu a formátovací moduly...",
+ "skip": "Přeskočit"
},
"vs/workbench/services/workingCopy/common/workingCopyHistoryService": {
"default.source": "Soubor uložen",
+ "join.workingCopyHistory": "Ukládání místní historie",
"moved.source": "Soubor se přesunul",
"renamed.source": "Soubor se přejmenoval"
},
"vs/workbench/services/workingCopy/common/workingCopyHistoryTracker": {
"undoRedo.source": "Zpět nebo Znovu"
},
- "vs/workbench/services/workingCopy/electron-sandbox/workingCopyBackupService": {
+ "vs/workbench/services/workingCopy/electron-browser/workingCopyBackupService": {
"join.workingCopyBackups": "Záložní pracovní kopie"
},
- "vs/workbench/services/workingCopy/electron-sandbox/workingCopyBackupTracker": {
+ "vs/workbench/services/workingCopy/electron-browser/workingCopyBackupTracker": {
"backupBeforeShutdownDetail": "Kliknutím na Zrušit zastavíte čekání a uložíte nebo vrátíte editory s neuloženými změnami.",
"backupBeforeShutdownMessage": "Zálohování editorů s neuloženými změnami trvá trochu déle…",
"backupErrorDetails": "Nejdříve zkuste editory uložit nebo vrátit zpět s neuloženými změnami a pak to zkuste znovu.",
"backupTrackerBackupFailed": "Následující editory s neuloženými změnami nebylo možné uložit do záložního umístění.",
"backupTrackerConfirmFailed": "Následující editory s neuloženými změnami nebylo možné uložit ani vrátit zpět.",
"discardBackupsBeforeShutdown": "Zahazování záloh trvá trochu déle…",
+ "ok": "&&OK",
"revertBeforeShutdown": "Vrácení editorů s neuloženými změnami trvá trochu déle…",
- "saveBeforeShutdown": "Ukládání editorů s neuloženými změnami trvá trochu déle…"
- },
- "vs/workbench/services/workingCopy/electron-sandbox/workingCopyHistoryService": {
- "join.workingCopyHistory": "Ukládání místní historie"
+ "saveBeforeShutdown": "Ukládání editorů s neuloženými změnami trvá trochu déle…",
+ "shutdownForceClose": "Přesto zavřít",
+ "shutdownForceQuit": "Přesto ukončit",
+ "shutdownForceReload": "Přesto znovu načíst"
},
"vs/workbench/services/workspaces/browser/abstractWorkspaceEditingService": {
"errorInvalidTaskConfiguration": "Do souboru konfigurace pracovního prostoru nelze zapisovat. Otevřete prosím soubor, opravte v něm chyby/upozornění a zkuste to znovu.",
- "errorWorkspaceConfigurationFileDirty": "Do souboru konfigurace pracovního prostoru nelze zapisovat, protože soubor obsahuje neuložené změny. Uložte ho prosím a zkuste to znovu.",
"openWorkspaceConfigurationFile": "Otevřít konfiguraci pracovního prostoru",
"save": "Uložit",
"saveWorkspace": "Uložit pracovní prostor"
},
"vs/workbench/services/workspaces/browser/workspaceTrustEditorInput": {
- "workspaceTrustEditorInputName": "Vztah důvěryhodnosti pracovního prostoru"
+ "workspaceTrustEditorInputName": "Vztah důvěryhodnosti pracovního prostoru",
+ "workspaceTrustEditorLabelIcon": "Ikona popisku editoru vztahu důvěryhodnosti pracovního prostoru"
},
- "vs/workbench/services/workspaces/electron-sandbox/workspaceEditingService": {
- "cancel": "Zrušit",
- "doNotSave": "Neukládat",
- "save": "Uložit",
+ "vs/workbench/services/workspaces/electron-browser/workspaceEditingService": {
+ "doNotAskAgain": "Pracovní prostory bez názvu vždy zahodit bez dotazování",
+ "doNotSave": "Ne&&ukládat",
+ "restartExtensionHost.reason": "Otevírá se vícekořenový pracovní prostor.",
+ "save": "&&Uložit",
"saveWorkspaceDetail": "Pokud chcete pracovní prostor znovu otevřít, uložte ho.",
"saveWorkspaceMessage": "Chcete uložit konfiguraci pracovního prostoru jako soubor?",
- "workspaceOpenedDetail": "Pracovní prostor už je otevřený v jiném okně. Nejdříve prosím toto okno zavřete a pak to zkuste znovu.",
- "workspaceOpenedMessage": "Pracovní prostor {0} nelze uložit."
+ "workspaceOpenedDetail": "Pracovní prostor je již otevřen v jiném okně. Nejdřív prosím toto okno zavřete a zkuste to znovu.",
+ "workspaceOpenedMessage": "Nepodařilo se uložit pracovní prostor {0}"
}
}
}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-de/package.json b/i18n/vscode-language-pack-de/package.json
index c756bbc14e..08cb63e0b4 100644
--- a/i18n/vscode-language-pack-de/package.json
+++ b/i18n/vscode-language-pack-de/package.json
@@ -2,7 +2,7 @@
"name": "vscode-language-pack-de",
"displayName": "German Language Pack for Visual Studio Code",
"description": "Language pack extension for German",
- "version": "1.70.0",
+ "version": "1.108.0",
"publisher": "MS-CEINTL",
"repository": {
"type": "git",
@@ -10,12 +10,15 @@
},
"license": "SEE MIT LICENSE IN LICENSE.md",
"engines": {
- "vscode": "^1.70.0"
+ "vscode": "^1.108.0"
},
"icon": "languagepack.png",
"categories": [
"Language Packs"
],
+ "keywords": [
+ "Deutsch"
+ ],
"contributes": {
"localizations": [
{
@@ -27,601 +30,369 @@
"id": "vscode",
"path": "./translations/main.i18n.json"
},
+ {
+ "id": "ms-vscode.js-debug",
+ "path": "./translations/extensions/ms-vscode.js-debug.i18n.json"
+ },
{
"id": "vscode.bat",
- "path": "./translations/extensions/bat.i18n.json"
+ "path": "./translations/extensions/vscode.bat.i18n.json"
+ },
+ {
+ "id": "vscode.builtin-notebook-renderers",
+ "path": "./translations/extensions/vscode.builtin-notebook-renderers.i18n.json"
},
{
"id": "vscode.clojure",
- "path": "./translations/extensions/clojure.i18n.json"
+ "path": "./translations/extensions/vscode.clojure.i18n.json"
},
{
"id": "vscode.coffeescript",
- "path": "./translations/extensions/coffeescript.i18n.json"
+ "path": "./translations/extensions/vscode.coffeescript.i18n.json"
},
{
"id": "vscode.configuration-editing",
- "path": "./translations/extensions/configuration-editing.i18n.json"
+ "path": "./translations/extensions/vscode.configuration-editing.i18n.json"
},
{
"id": "vscode.cpp",
- "path": "./translations/extensions/cpp.i18n.json"
+ "path": "./translations/extensions/vscode.cpp.i18n.json"
},
{
"id": "vscode.csharp",
- "path": "./translations/extensions/csharp.i18n.json"
+ "path": "./translations/extensions/vscode.csharp.i18n.json"
},
{
"id": "vscode.css-language-features",
- "path": "./translations/extensions/css-language-features.i18n.json"
+ "path": "./translations/extensions/vscode.css-language-features.i18n.json"
},
{
"id": "vscode.css",
- "path": "./translations/extensions/css.i18n.json"
+ "path": "./translations/extensions/vscode.css.i18n.json"
},
{
"id": "vscode.dart",
- "path": "./translations/extensions/dart.i18n.json"
+ "path": "./translations/extensions/vscode.dart.i18n.json"
},
{
"id": "vscode.debug-auto-launch",
- "path": "./translations/extensions/debug-auto-launch.i18n.json"
+ "path": "./translations/extensions/vscode.debug-auto-launch.i18n.json"
},
{
"id": "vscode.debug-server-ready",
- "path": "./translations/extensions/debug-server-ready.i18n.json"
+ "path": "./translations/extensions/vscode.debug-server-ready.i18n.json"
},
{
"id": "vscode.diff",
- "path": "./translations/extensions/diff.i18n.json"
+ "path": "./translations/extensions/vscode.diff.i18n.json"
},
{
"id": "vscode.docker",
- "path": "./translations/extensions/docker.i18n.json"
+ "path": "./translations/extensions/vscode.docker.i18n.json"
+ },
+ {
+ "id": "vscode.dotenv",
+ "path": "./translations/extensions/vscode.dotenv.i18n.json"
},
{
"id": "vscode.emmet",
- "path": "./translations/extensions/emmet.i18n.json"
+ "path": "./translations/extensions/vscode.emmet.i18n.json"
},
{
"id": "vscode.extension-editing",
- "path": "./translations/extensions/extension-editing.i18n.json"
+ "path": "./translations/extensions/vscode.extension-editing.i18n.json"
},
{
"id": "vscode.fsharp",
- "path": "./translations/extensions/fsharp.i18n.json"
+ "path": "./translations/extensions/vscode.fsharp.i18n.json"
},
{
"id": "vscode.git-base",
- "path": "./translations/extensions/git-base.i18n.json"
- },
- {
- "id": "vscode.git-ui",
- "path": "./translations/extensions/git-ui.i18n.json"
+ "path": "./translations/extensions/vscode.git-base.i18n.json"
},
{
"id": "vscode.git",
- "path": "./translations/extensions/git.i18n.json"
+ "path": "./translations/extensions/vscode.git.i18n.json"
},
{
"id": "vscode.github-authentication",
- "path": "./translations/extensions/github-authentication.i18n.json"
- },
- {
- "id": "vscode.github-browser",
- "path": "./translations/extensions/github-browser.i18n.json"
+ "path": "./translations/extensions/vscode.github-authentication.i18n.json"
},
{
"id": "vscode.github",
- "path": "./translations/extensions/github.i18n.json"
+ "path": "./translations/extensions/vscode.github.i18n.json"
},
{
"id": "vscode.go",
- "path": "./translations/extensions/go.i18n.json"
+ "path": "./translations/extensions/vscode.go.i18n.json"
},
{
"id": "vscode.groovy",
- "path": "./translations/extensions/groovy.i18n.json"
+ "path": "./translations/extensions/vscode.groovy.i18n.json"
},
{
"id": "vscode.grunt",
- "path": "./translations/extensions/grunt.i18n.json"
+ "path": "./translations/extensions/vscode.grunt.i18n.json"
},
{
"id": "vscode.gulp",
- "path": "./translations/extensions/gulp.i18n.json"
+ "path": "./translations/extensions/vscode.gulp.i18n.json"
},
{
"id": "vscode.handlebars",
- "path": "./translations/extensions/handlebars.i18n.json"
+ "path": "./translations/extensions/vscode.handlebars.i18n.json"
},
{
"id": "vscode.hlsl",
- "path": "./translations/extensions/hlsl.i18n.json"
+ "path": "./translations/extensions/vscode.hlsl.i18n.json"
},
{
"id": "vscode.html-language-features",
- "path": "./translations/extensions/html-language-features.i18n.json"
+ "path": "./translations/extensions/vscode.html-language-features.i18n.json"
},
{
"id": "vscode.html",
- "path": "./translations/extensions/html.i18n.json"
- },
- {
- "id": "vscode.image-preview",
- "path": "./translations/extensions/image-preview.i18n.json"
+ "path": "./translations/extensions/vscode.html.i18n.json"
},
{
"id": "vscode.ini",
- "path": "./translations/extensions/ini.i18n.json"
+ "path": "./translations/extensions/vscode.ini.i18n.json"
},
{
"id": "vscode.ipynb",
- "path": "./translations/extensions/ipynb.i18n.json"
+ "path": "./translations/extensions/vscode.ipynb.i18n.json"
},
{
"id": "vscode.jake",
- "path": "./translations/extensions/jake.i18n.json"
+ "path": "./translations/extensions/vscode.jake.i18n.json"
},
{
"id": "vscode.java",
- "path": "./translations/extensions/java.i18n.json"
+ "path": "./translations/extensions/vscode.java.i18n.json"
},
{
"id": "vscode.javascript",
- "path": "./translations/extensions/javascript.i18n.json"
+ "path": "./translations/extensions/vscode.javascript.i18n.json"
},
{
"id": "vscode.json-language-features",
- "path": "./translations/extensions/json-language-features.i18n.json"
+ "path": "./translations/extensions/vscode.json-language-features.i18n.json"
},
{
"id": "vscode.json",
- "path": "./translations/extensions/json.i18n.json"
+ "path": "./translations/extensions/vscode.json.i18n.json"
},
{
"id": "vscode.julia",
- "path": "./translations/extensions/julia.i18n.json"
+ "path": "./translations/extensions/vscode.julia.i18n.json"
},
{
"id": "vscode.latex",
- "path": "./translations/extensions/latex.i18n.json"
+ "path": "./translations/extensions/vscode.latex.i18n.json"
},
{
"id": "vscode.less",
- "path": "./translations/extensions/less.i18n.json"
+ "path": "./translations/extensions/vscode.less.i18n.json"
},
{
"id": "vscode.log",
- "path": "./translations/extensions/log.i18n.json"
+ "path": "./translations/extensions/vscode.log.i18n.json"
},
{
"id": "vscode.lua",
- "path": "./translations/extensions/lua.i18n.json"
+ "path": "./translations/extensions/vscode.lua.i18n.json"
},
{
"id": "vscode.make",
- "path": "./translations/extensions/make.i18n.json"
- },
- {
- "id": "vscode.markdown-basics",
- "path": "./translations/extensions/markdown-basics.i18n.json"
+ "path": "./translations/extensions/vscode.make.i18n.json"
},
{
"id": "vscode.markdown-language-features",
- "path": "./translations/extensions/markdown-language-features.i18n.json"
+ "path": "./translations/extensions/vscode.markdown-language-features.i18n.json"
},
{
"id": "vscode.markdown-math",
- "path": "./translations/extensions/markdown-math.i18n.json"
- },
- {
- "id": "vscode.markdown-notebook-math",
- "path": "./translations/extensions/markdown-notebook-math.i18n.json"
- },
- {
- "id": "vscode.merge-conflict",
- "path": "./translations/extensions/merge-conflict.i18n.json"
- },
- {
- "id": "vscode.microsoft-authentication",
- "path": "./translations/extensions/microsoft-authentication.i18n.json"
+ "path": "./translations/extensions/vscode.markdown-math.i18n.json"
},
{
- "id": "vscode.ms-vscode.github-browser",
- "path": "./translations/extensions/ms-vscode.github-browser.i18n.json"
- },
- {
- "id": "vscode.ms-vscode.js-debug",
- "path": "./translations/extensions/ms-vscode.js-debug.i18n.json"
- },
- {
- "id": "vscode.ms-vscode.node-debug",
- "path": "./translations/extensions/ms-vscode.node-debug.i18n.json"
+ "id": "vscode.markdown",
+ "path": "./translations/extensions/vscode.markdown.i18n.json"
},
{
- "id": "vscode.ms-vscode.node-debug2",
- "path": "./translations/extensions/ms-vscode.node-debug2.i18n.json"
+ "id": "vscode.media-preview",
+ "path": "./translations/extensions/vscode.media-preview.i18n.json"
},
{
- "id": "vscode.ms-vscode.remotehub",
- "path": "./translations/extensions/ms-vscode.remotehub.i18n.json"
+ "id": "vscode.merge-conflict",
+ "path": "./translations/extensions/vscode.merge-conflict.i18n.json"
},
{
- "id": "vscode.notebook-markdown-extensions",
- "path": "./translations/extensions/notebook-markdown-extensions.i18n.json"
+ "id": "vscode.mermaid-chat-features",
+ "path": "./translations/extensions/vscode.mermaid-chat-features.i18n.json"
},
{
- "id": "vscode.notebook-renderers",
- "path": "./translations/extensions/notebook-renderers.i18n.json"
+ "id": "vscode.microsoft-authentication",
+ "path": "./translations/extensions/vscode.microsoft-authentication.i18n.json"
},
{
"id": "vscode.npm",
- "path": "./translations/extensions/npm.i18n.json"
+ "path": "./translations/extensions/vscode.npm.i18n.json"
},
{
"id": "vscode.objective-c",
- "path": "./translations/extensions/objective-c.i18n.json"
+ "path": "./translations/extensions/vscode.objective-c.i18n.json"
},
{
"id": "vscode.perl",
- "path": "./translations/extensions/perl.i18n.json"
+ "path": "./translations/extensions/vscode.perl.i18n.json"
},
{
"id": "vscode.php-language-features",
- "path": "./translations/extensions/php-language-features.i18n.json"
+ "path": "./translations/extensions/vscode.php-language-features.i18n.json"
},
{
"id": "vscode.php",
- "path": "./translations/extensions/php.i18n.json"
+ "path": "./translations/extensions/vscode.php.i18n.json"
},
{
"id": "vscode.powershell",
- "path": "./translations/extensions/powershell.i18n.json"
+ "path": "./translations/extensions/vscode.powershell.i18n.json"
+ },
+ {
+ "id": "vscode.prompt",
+ "path": "./translations/extensions/vscode.prompt.i18n.json"
},
{
"id": "vscode.pug",
- "path": "./translations/extensions/pug.i18n.json"
+ "path": "./translations/extensions/vscode.pug.i18n.json"
},
{
"id": "vscode.python",
- "path": "./translations/extensions/python.i18n.json"
+ "path": "./translations/extensions/vscode.python.i18n.json"
},
{
"id": "vscode.r",
- "path": "./translations/extensions/r.i18n.json"
+ "path": "./translations/extensions/vscode.r.i18n.json"
},
{
"id": "vscode.razor",
- "path": "./translations/extensions/razor.i18n.json"
+ "path": "./translations/extensions/vscode.razor.i18n.json"
},
{
"id": "vscode.references-view",
- "path": "./translations/extensions/references-view.i18n.json"
+ "path": "./translations/extensions/vscode.references-view.i18n.json"
},
{
"id": "vscode.restructuredtext",
- "path": "./translations/extensions/restructuredtext.i18n.json"
+ "path": "./translations/extensions/vscode.restructuredtext.i18n.json"
},
{
"id": "vscode.ruby",
- "path": "./translations/extensions/ruby.i18n.json"
+ "path": "./translations/extensions/vscode.ruby.i18n.json"
},
{
"id": "vscode.rust",
- "path": "./translations/extensions/rust.i18n.json"
+ "path": "./translations/extensions/vscode.rust.i18n.json"
},
{
"id": "vscode.scss",
- "path": "./translations/extensions/scss.i18n.json"
+ "path": "./translations/extensions/vscode.scss.i18n.json"
},
{
"id": "vscode.search-result",
- "path": "./translations/extensions/search-result.i18n.json"
+ "path": "./translations/extensions/vscode.search-result.i18n.json"
},
{
"id": "vscode.shaderlab",
- "path": "./translations/extensions/shaderlab.i18n.json"
+ "path": "./translations/extensions/vscode.shaderlab.i18n.json"
},
{
"id": "vscode.shellscript",
- "path": "./translations/extensions/shellscript.i18n.json"
+ "path": "./translations/extensions/vscode.shellscript.i18n.json"
},
{
"id": "vscode.simple-browser",
- "path": "./translations/extensions/simple-browser.i18n.json"
+ "path": "./translations/extensions/vscode.simple-browser.i18n.json"
},
{
"id": "vscode.sql",
- "path": "./translations/extensions/sql.i18n.json"
+ "path": "./translations/extensions/vscode.sql.i18n.json"
},
{
"id": "vscode.swift",
- "path": "./translations/extensions/swift.i18n.json"
+ "path": "./translations/extensions/vscode.swift.i18n.json"
},
{
- "id": "vscode.testing-editor-contributions",
- "path": "./translations/extensions/testing-editor-contributions.i18n.json"
+ "id": "vscode.terminal-suggest",
+ "path": "./translations/extensions/vscode.terminal-suggest.i18n.json"
},
{
"id": "vscode.theme-abyss",
- "path": "./translations/extensions/theme-abyss.i18n.json"
+ "path": "./translations/extensions/vscode.theme-abyss.i18n.json"
},
{
"id": "vscode.theme-defaults",
- "path": "./translations/extensions/theme-defaults.i18n.json"
+ "path": "./translations/extensions/vscode.theme-defaults.i18n.json"
},
{
"id": "vscode.theme-kimbie-dark",
- "path": "./translations/extensions/theme-kimbie-dark.i18n.json"
+ "path": "./translations/extensions/vscode.theme-kimbie-dark.i18n.json"
},
{
"id": "vscode.theme-monokai-dimmed",
- "path": "./translations/extensions/theme-monokai-dimmed.i18n.json"
+ "path": "./translations/extensions/vscode.theme-monokai-dimmed.i18n.json"
},
{
"id": "vscode.theme-monokai",
- "path": "./translations/extensions/theme-monokai.i18n.json"
+ "path": "./translations/extensions/vscode.theme-monokai.i18n.json"
},
{
"id": "vscode.theme-quietlight",
- "path": "./translations/extensions/theme-quietlight.i18n.json"
+ "path": "./translations/extensions/vscode.theme-quietlight.i18n.json"
},
{
"id": "vscode.theme-red",
- "path": "./translations/extensions/theme-red.i18n.json"
- },
- {
- "id": "vscode.theme-seti",
- "path": "./translations/extensions/theme-seti.i18n.json"
+ "path": "./translations/extensions/vscode.theme-red.i18n.json"
},
{
"id": "vscode.theme-solarized-dark",
- "path": "./translations/extensions/theme-solarized-dark.i18n.json"
+ "path": "./translations/extensions/vscode.theme-solarized-dark.i18n.json"
},
{
"id": "vscode.theme-solarized-light",
- "path": "./translations/extensions/theme-solarized-light.i18n.json"
+ "path": "./translations/extensions/vscode.theme-solarized-light.i18n.json"
},
{
"id": "vscode.theme-tomorrow-night-blue",
- "path": "./translations/extensions/theme-tomorrow-night-blue.i18n.json"
+ "path": "./translations/extensions/vscode.theme-tomorrow-night-blue.i18n.json"
},
{
- "id": "vscode.typescript-basics",
- "path": "./translations/extensions/typescript-basics.i18n.json"
+ "id": "vscode.tunnel-forwarding",
+ "path": "./translations/extensions/vscode.tunnel-forwarding.i18n.json"
},
{
"id": "vscode.typescript-language-features",
- "path": "./translations/extensions/typescript-language-features.i18n.json"
- },
- {
- "id": "vscode.vb",
- "path": "./translations/extensions/vb.i18n.json"
- },
- {
- "id": "vscode.vscode-chrome-debug-core",
- "path": "./translations/extensions/vscode-chrome-debug-core.i18n.json"
- },
- {
- "id": "ms-vscode.node-debug",
- "path": "./translations/extensions/vscode-node-debug.i18n.json"
- },
- {
- "id": "ms-vscode.node-debug2",
- "path": "./translations/extensions/vscode-node-debug2.i18n.json"
+ "path": "./translations/extensions/vscode.typescript-language-features.i18n.json"
},
{
- "id": "vscode.vscode.bat",
- "path": "./translations/extensions/vscode.bat.i18n.json"
- },
- {
- "id": "vscode.vscode.clojure",
- "path": "./translations/extensions/vscode.clojure.i18n.json"
- },
- {
- "id": "vscode.vscode.coffeescript",
- "path": "./translations/extensions/vscode.coffeescript.i18n.json"
- },
- {
- "id": "vscode.vscode.cpp",
- "path": "./translations/extensions/vscode.cpp.i18n.json"
- },
- {
- "id": "vscode.vscode.csharp",
- "path": "./translations/extensions/vscode.csharp.i18n.json"
- },
- {
- "id": "vscode.vscode.css",
- "path": "./translations/extensions/vscode.css.i18n.json"
- },
- {
- "id": "vscode.vscode.docker",
- "path": "./translations/extensions/vscode.docker.i18n.json"
- },
- {
- "id": "vscode.vscode.fsharp",
- "path": "./translations/extensions/vscode.fsharp.i18n.json"
- },
- {
- "id": "vscode.vscode.go",
- "path": "./translations/extensions/vscode.go.i18n.json"
- },
- {
- "id": "vscode.vscode.groovy",
- "path": "./translations/extensions/vscode.groovy.i18n.json"
- },
- {
- "id": "vscode.vscode.handlebars",
- "path": "./translations/extensions/vscode.handlebars.i18n.json"
- },
- {
- "id": "vscode.vscode.hlsl",
- "path": "./translations/extensions/vscode.hlsl.i18n.json"
- },
- {
- "id": "vscode.vscode.html",
- "path": "./translations/extensions/vscode.html.i18n.json"
- },
- {
- "id": "vscode.vscode.ini",
- "path": "./translations/extensions/vscode.ini.i18n.json"
- },
- {
- "id": "vscode.vscode.java",
- "path": "./translations/extensions/vscode.java.i18n.json"
- },
- {
- "id": "vscode.vscode.javascript",
- "path": "./translations/extensions/vscode.javascript.i18n.json"
- },
- {
- "id": "vscode.vscode.json",
- "path": "./translations/extensions/vscode.json.i18n.json"
- },
- {
- "id": "vscode.vscode.less",
- "path": "./translations/extensions/vscode.less.i18n.json"
- },
- {
- "id": "vscode.vscode.log",
- "path": "./translations/extensions/vscode.log.i18n.json"
- },
- {
- "id": "vscode.vscode.lua",
- "path": "./translations/extensions/vscode.lua.i18n.json"
- },
- {
- "id": "vscode.vscode.make",
- "path": "./translations/extensions/vscode.make.i18n.json"
- },
- {
- "id": "vscode.vscode.markdown",
- "path": "./translations/extensions/vscode.markdown.i18n.json"
- },
- {
- "id": "vscode.vscode.objective-c",
- "path": "./translations/extensions/vscode.objective-c.i18n.json"
- },
- {
- "id": "vscode.vscode.perl",
- "path": "./translations/extensions/vscode.perl.i18n.json"
- },
- {
- "id": "vscode.vscode.php",
- "path": "./translations/extensions/vscode.php.i18n.json"
- },
- {
- "id": "vscode.vscode.powershell",
- "path": "./translations/extensions/vscode.powershell.i18n.json"
- },
- {
- "id": "vscode.vscode.pug",
- "path": "./translations/extensions/vscode.pug.i18n.json"
- },
- {
- "id": "vscode.vscode.r",
- "path": "./translations/extensions/vscode.r.i18n.json"
- },
- {
- "id": "vscode.vscode.razor",
- "path": "./translations/extensions/vscode.razor.i18n.json"
- },
- {
- "id": "vscode.vscode.ruby",
- "path": "./translations/extensions/vscode.ruby.i18n.json"
- },
- {
- "id": "vscode.vscode.rust",
- "path": "./translations/extensions/vscode.rust.i18n.json"
- },
- {
- "id": "vscode.vscode.scss",
- "path": "./translations/extensions/vscode.scss.i18n.json"
- },
- {
- "id": "vscode.vscode.shaderlab",
- "path": "./translations/extensions/vscode.shaderlab.i18n.json"
- },
- {
- "id": "vscode.vscode.shellscript",
- "path": "./translations/extensions/vscode.shellscript.i18n.json"
- },
- {
- "id": "vscode.vscode.sql",
- "path": "./translations/extensions/vscode.sql.i18n.json"
- },
- {
- "id": "vscode.vscode.swift",
- "path": "./translations/extensions/vscode.swift.i18n.json"
- },
- {
- "id": "vscode.vscode.theme-abyss",
- "path": "./translations/extensions/vscode.theme-abyss.i18n.json"
- },
- {
- "id": "vscode.vscode.theme-defaults",
- "path": "./translations/extensions/vscode.theme-defaults.i18n.json"
- },
- {
- "id": "vscode.vscode.theme-kimbie-dark",
- "path": "./translations/extensions/vscode.theme-kimbie-dark.i18n.json"
- },
- {
- "id": "vscode.vscode.theme-monokai-dimmed",
- "path": "./translations/extensions/vscode.theme-monokai-dimmed.i18n.json"
- },
- {
- "id": "vscode.vscode.theme-monokai",
- "path": "./translations/extensions/vscode.theme-monokai.i18n.json"
- },
- {
- "id": "vscode.vscode.theme-quietlight",
- "path": "./translations/extensions/vscode.theme-quietlight.i18n.json"
- },
- {
- "id": "vscode.vscode.theme-red",
- "path": "./translations/extensions/vscode.theme-red.i18n.json"
- },
- {
- "id": "vscode.vscode.theme-solarized-dark",
- "path": "./translations/extensions/vscode.theme-solarized-dark.i18n.json"
- },
- {
- "id": "vscode.vscode.theme-solarized-light",
- "path": "./translations/extensions/vscode.theme-solarized-light.i18n.json"
- },
- {
- "id": "vscode.vscode.theme-tomorrow-night-blue",
- "path": "./translations/extensions/vscode.theme-tomorrow-night-blue.i18n.json"
- },
- {
- "id": "vscode.vscode.typescript",
+ "id": "vscode.typescript",
"path": "./translations/extensions/vscode.typescript.i18n.json"
},
{
- "id": "vscode.vscode.vb",
+ "id": "vscode.vb",
"path": "./translations/extensions/vscode.vb.i18n.json"
},
{
- "id": "vscode.vscode.vscode-theme-seti",
+ "id": "vscode.vscode-theme-seti",
"path": "./translations/extensions/vscode.vscode-theme-seti.i18n.json"
},
- {
- "id": "vscode.vscode.xml",
- "path": "./translations/extensions/vscode.xml.i18n.json"
- },
- {
- "id": "vscode.vscode.yaml",
- "path": "./translations/extensions/vscode.yaml.i18n.json"
- },
{
"id": "vscode.xml",
- "path": "./translations/extensions/xml.i18n.json"
+ "path": "./translations/extensions/vscode.xml.i18n.json"
},
{
"id": "vscode.yaml",
- "path": "./translations/extensions/yaml.i18n.json"
+ "path": "./translations/extensions/vscode.yaml.i18n.json"
}
]
}
diff --git a/i18n/vscode-language-pack-de/translations/extensions/bat.i18n.json b/i18n/vscode-language-pack-de/translations/extensions/bat.i18n.json
deleted file mode 100644
index 23f00f871b..0000000000
--- a/i18n/vscode-language-pack-de/translations/extensions/bat.i18n.json
+++ /dev/null
@@ -1,16 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "package": {
- "description": "Bietet Schnipsel, Syntaxhervorhebung, Klammernabgleich und Falten in Windows-Batch-Dateien.",
- "displayName": "Windows-Bat-Sprachgrundlagen"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-de/translations/extensions/clojure.i18n.json b/i18n/vscode-language-pack-de/translations/extensions/clojure.i18n.json
deleted file mode 100644
index 8a66dbd82c..0000000000
--- a/i18n/vscode-language-pack-de/translations/extensions/clojure.i18n.json
+++ /dev/null
@@ -1,16 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "package": {
- "description": "Bietet Syntaxhervorhebung und Klammernabgleich in Clojure-Dateien.",
- "displayName": "Clojure-Sprachgrundlagen"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-de/translations/extensions/coffeescript.i18n.json b/i18n/vscode-language-pack-de/translations/extensions/coffeescript.i18n.json
deleted file mode 100644
index e40c1749a0..0000000000
--- a/i18n/vscode-language-pack-de/translations/extensions/coffeescript.i18n.json
+++ /dev/null
@@ -1,16 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "package": {
- "description": "Bietet Schnipsel, Syntaxhervorhebung, Klammernabgleich und Falten in CoffeeScript-Dateien.",
- "displayName": "CoffeeScript-Sprachgrundlagen"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-de/translations/extensions/configuration-editing.i18n.json b/i18n/vscode-language-pack-de/translations/extensions/configuration-editing.i18n.json
deleted file mode 100644
index 6a86e4e390..0000000000
--- a/i18n/vscode-language-pack-de/translations/extensions/configuration-editing.i18n.json
+++ /dev/null
@@ -1,70 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "dist/configurationEditingMain": {
- "cwd": "Das aktuelle Arbeitsverzeichnis der Aufgabenausführung beim Start",
- "defaultBuildTask": "Der Name des Standardbuildtasks. Wenn es keinen Standardbuildtask gibt, wird eine Schnellauswahl angezeigt, um den Buildtask auszuwählen.",
- "extensionInstallFolder": "Der Pfad, in dem eine Erweiterung installiert ist.",
- "file": "Die aktuell geöffnete Datei",
- "fileBasename": "Der Basisname der aktuellen geöffneten Datei",
- "fileBasenameNoExtension": "Der Basisname der aktuellen geöffneten Datei ohne Erweiterung",
- "fileDirname": "Der Verzeichnisname der aktuellen geöffneten Datei",
- "fileExtname": "Die Erweiterung der aktuellen geöffneten Datei",
- "lineNumber": "Die aktuelle ausgewählte Zeilennummer in der aktiven Datei",
- "pathSeparator": "Das Zeichen, das vom Betriebssystem verwendet wird, um Komponenten in Dateipfaden zu trennen.",
- "relativeFile": "Die aktuelle geöffnete Datei bezogen auf ${WorkspaceFolder}",
- "relativeFileDirname": "Der DirName-Wert der aktuell geöffneten Datei relativ zu \"${workspaceFolder}\"",
- "selectedText": "Der aktuelle ausgewählte Text in der aktiven Datei",
- "workspaceFolder": "Pfad des in VS Code geöffneten Ordners",
- "workspaceFolderBasename": "Name des in VS Code geöffneten Ordners ohne Schrägstriche (/)"
- },
- "dist/extensionsProposals": {
- "exampleExtension": "Beispiel"
- },
- "dist/settingsDocumentHelper": {
- "activeEditor": "Falls möglich, verwenden Sie die Sprache des aktuell aktiven Text-Editors.",
- "activeEditorLong": "der vollständige Pfad der Datei (z.B. /Benutzer/Development/myFolder/myFileFolder/myFile.txt)",
- "activeEditorMedium": "der Pfad der Datei relativ zum Arbeitsbereichsordner (z.B. myFolder/myFileFolder/myFile.txt)",
- "activeEditorShort": "Der Dateiname (z.B. meineDatei.txt)",
- "activeFolderLong": "der vollständige Pfad des Ordners, der die Datei enthält (z.B. /Benutzer/Development/myFolder/myFileFolder)",
- "activeFolderMedium": "der Pfad des Ordners, der die Datei enthält, relativ zum Arbeitsbereichsordner (z.B. myfolder/MyFileFolder)",
- "activeFolderShort": "der Name des Ordners, der die Datei enthält (z.B. MyFileFolder)",
- "appName": "z. B. VS Code",
- "assocDescriptionFile": "Ordnet alle Dateien, deren Dateinamen mit dem Globmuster übereinstimmen, der Sprache mit dem angegebenen Bezeichner zu.",
- "assocDescriptionPath": "Ordnet alle Dateien, die mit dem absoluten Pfad des Globmusters in ihrem Pfad übereinstimmen, der Sprache mit dem angegebenen Bezeichner zu.",
- "assocLabelFile": "Dateien mit Erweiterung",
- "assocLabelPath": "Dateien mit Pfad",
- "derivedDescription": "Ordnet Dateien zu, die gleichgeordnete Elemente mit dem gleichen Namen und einer anderen Erweiterung besitzen.",
- "derivedLabel": "Dateien mit gleichgeordneten Elementen nach Name",
- "dirty": "ein Indikator für den Fall, dass der aktive Editor nicht gespeicherte Änderungen aufweist",
- "fileDescription": "Ordnet alle Dateien mit einer bestimmten Erweiterung zu.",
- "fileLabel": "Dateien nach Erweiterung",
- "filesDescription": "Ordnet alle Dateien mit einer der Dateierweiterungen zu.",
- "filesLabel": "Dateien mit mehreren Erweiterungen",
- "folderDescription": "Zuordnen eines Ordners mit einem bestimmten Namen an einem beliebigen Speicherort.",
- "folderLabel": "Ordner nach Name (beliebiger Speicherort)",
- "folderName": "Name des Arbeitsbereichsordners, der die Datei enthält (z.B. MeinOrdner)",
- "folderPath": "Dateipfad des Arbeitsbereichsordners, der die Datei enthält (z.B. /Benutzer/Entwicklung/MeinOrdner)",
- "remoteName": "z.B. SSH",
- "rootName": "Name des Arbeitsbereichs (z.B. meinOrdner oder meinArbeitsberech)",
- "rootPath": "Dateipfad des Arbeitsbereichs (z.B. /Benutzer/Entwicklung/meinArbeitsbereich)",
- "separator": "Ein bedingtes Trennzeichen (' - '), das nur in der Umgebung von Variablen mit Werten angezeigt wird",
- "siblingsDescription": "Ordnet Dateien zu, die gleichgeordnete Elemente mit dem gleichen Namen und einer anderen Erweiterung besitzen.",
- "topFolderDescription": "Ordnet einen Ordner auf oberster Ebene einem bestimmten Namen zu.",
- "topFolderLabel": "Ordner nach Name (oberste Ebene)",
- "topFoldersDescription": "Ordnet mehrere Ordner auf oberster Ebene zu.",
- "topFoldersLabel": "Ordner mit mehreren Namen (oberste Ebene)"
- },
- "package": {
- "description": "Stellt Funktionen (erweitertes IntelliSense, automatische Korrektur) in Konfigurationsdateien wie Einstellungs-, Start- und Erweiterungsempfehlungsdateien bereit.",
- "displayName": "Konfigurationsänderung"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-de/translations/extensions/cpp.i18n.json b/i18n/vscode-language-pack-de/translations/extensions/cpp.i18n.json
deleted file mode 100644
index 2e34a8848f..0000000000
--- a/i18n/vscode-language-pack-de/translations/extensions/cpp.i18n.json
+++ /dev/null
@@ -1,16 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "package": {
- "description": "Bietet Schnipsel, Syntaxhervorhebung, Klammernabgleich und Falten in C/C++-Dateien.",
- "displayName": "C/C++-Sprachgrundlagen"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-de/translations/extensions/csharp.i18n.json b/i18n/vscode-language-pack-de/translations/extensions/csharp.i18n.json
deleted file mode 100644
index 7fee822c64..0000000000
--- a/i18n/vscode-language-pack-de/translations/extensions/csharp.i18n.json
+++ /dev/null
@@ -1,16 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "package": {
- "description": "Bietet Schnipsel, Syntaxhervorhebung, Klammernabgleich und Falten in C#-Dateien.",
- "displayName": "C# Sprachgrundlagen"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-de/translations/extensions/css-language-features.i18n.json b/i18n/vscode-language-pack-de/translations/extensions/css-language-features.i18n.json
deleted file mode 100644
index 47ae071746..0000000000
--- a/i18n/vscode-language-pack-de/translations/extensions/css-language-features.i18n.json
+++ /dev/null
@@ -1,128 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "client\\dist\\node/cssClient": {
- "cssserver.name": "CSS-Sprachserver",
- "folding.end": "Ende des Faltbereichs",
- "folding.start": "Anfang des Faltbereichs"
- },
- "package": {
- "css.colorDecorators.enable.deprecationMessage": "Die Einstellung \"css.colorDecorators.enable\" ist veraltet und wurde durch \"editor.colorDecorators\" ersetzt.",
- "css.completion.completePropertyWithSemicolon.desc": "Hiermit wird beim Vervollständigen von CSS-Eigenschaften ein Semikolon am Zeilenende eingefügt.",
- "css.completion.triggerPropertyValueCompletion.desc": "VS Code löst die Vervollständigung des Eigenschaftswerts standardmäßig aus, nachdem eine CSS-Eigenschaft ausgewählt wurde. Mit dieser Einstellung deaktivieren Sie dieses Verhalten.",
- "css.customData.desc": "Eine Liste relativer Dateipfade, die auf JSON-Dateien im [benutzerdefinierten Datenformat](https://github.com/microsoft/vscode-css-languageservice/blob/master/docs/customData.md) verweisen.\r\n\r\nVS Code lädt benutzerdefinierte Daten beim Start, um die CSS-Unterstützung für die benutzerdefinierten CSS-Eigenschaften bei Anweisungen, Pseudoklassen und Pseudoelementen, die Sie in den JSON-Dateien angeben, zu verbessern.\r\n\r\nDie Dateipfade werden relativ zum Arbeitsbereich angegeben und es werden nur Einstellungen für den Arbeitsbereichsordner berücksichtigt.",
- "css.format.braceStyle.desc": "Fügen Sie geschweifte Klammern in dieselbe Zeile wie Regeln (`collapse`) oder geschweifte Klammern in eine eigene Zeile (`expand`) ein.",
- "css.format.enable.desc": "Aktivieren/Deaktivieren Sie den standardmäßigen CSS-Formatierer.",
- "css.format.maxPreserveNewLines.desc": "Maximale Anzahl von Zeilenumbrüchen, die in einem Block beibehalten werden, wenn `#css.format.preserveNewLines#` aktiviert ist.",
- "css.format.newlineBetweenRules.desc": "Trennen Sie Regelsätze durch eine leere Zeile.",
- "css.format.newlineBetweenSelectors.desc": "Trennen Sie Selektoren durch eine neue Zeile.",
- "css.format.preserveNewLines.desc": "Gibt an, ob vorhandene Zeilenumbrüche vor Elementen beibehalten werden sollen.",
- "css.format.spaceAroundSelectorSeparator.desc": "Stellen Sie sicher, dass um die Auswahltrennzeichen „>“, „+“, „~“ (z. B. „a > b“) ein Leerzeichen steht.",
- "css.hover.documentation": "Hiermit wird bei CSS-Hovers eine Tag- und Attributdokumentation eingeblendet.",
- "css.hover.references": "Hiermit werden bei CSS-Hovers Verweise auf MDN eingeblendet.",
- "css.lint.argumentsInColorFunction.desc": "Ungültige Anzahl von Parametern.",
- "css.lint.boxModel.desc": "\"width\" oder \"height\" nicht verwenden, wenn \"padding\" oder \"border\" genutzt werden.",
- "css.lint.compatibleVendorPrefixes.desc": "Beim Verwenden eines anbieterspezifischen Präfixes sicherstellen, dass alle anderen anbieterspezifischen Eigenschaften einbezogen werden.",
- "css.lint.duplicateProperties.desc": "Keine doppelten Formatdefinitionen verwenden.",
- "css.lint.emptyRules.desc": "Keine leeren Regelsätze verwenden.",
- "css.lint.float.desc": "Die Verwendung von \"float\" vermeiden. float-Eigenschaften führen leicht dazu, dass CSS nicht mehr funktioniert, wenn sich ein Aspekt des Layouts ändert.",
- "css.lint.fontFaceProperties.desc": "`@font-face`-Regel muss Eigenschaften `src` und `font-family` definieren.",
- "css.lint.hexColorLength.desc": "Farben im Hexadezimalformat müssen aus drei oder sechs Hexadezimalzahlen bestehen.",
- "css.lint.idSelector.desc": "Selektoren sollten keine IDs enthalten, da diese Regeln zu eng mit HTML verknüpft sind.",
- "css.lint.ieHack.desc": "IE-Hacks sind nur für die Unterstützung von IE7 und niedriger erforderlich.",
- "css.lint.importStatement.desc": "Import-Anweisungen werden nicht parallel geladen.",
- "css.lint.important.desc": "Verwendung von \"!important\" vermeiden. Damit wird angegeben, dass es mit der Spezifität des gesamten CSS-Codes Probleme gibt und eine Umgestaltung erforderlich ist.",
- "css.lint.propertyIgnoredDueToDisplay.desc": "Die Eigenschaft wird aufgrund der Anzeige ignoriert. Durch die Angabe \"display: inline\" haben beispielsweise die Eigenschaften \"width\", \"height\", \"margin-top\", \"margin-bottom\" und \"float\" keine Auswirkung.",
- "css.lint.universalSelector.desc": "Der Universalselektor (*) ist bekanntermaßen langsam.",
- "css.lint.unknownAtRules.desc": "Unbekannte at-Regel.",
- "css.lint.unknownProperties.desc": "Unbekannte Eigenschaft.",
- "css.lint.unknownVendorSpecificProperties.desc": "Unbekannte anbieterspezifische Eigenschaft.",
- "css.lint.validProperties.desc": "Eine Liste der Eigenschaften, die nicht auf Übereinstimmung mit der Regel \"unknownProperties\" überprüft werden.",
- "css.lint.vendorPrefix.desc": "Beim Verwenden eines anbieterspezifischen Präfixes auch die Standardeigenschaft einbeziehen.",
- "css.lint.zeroUnits.desc": "Keine Einheit für Null erforderlich.",
- "css.title": "CSS",
- "css.trace.server.desc": "Verfolgt die Kommunikation zwischen VS Code und dem CSS-Sprachserver.",
- "css.validate.desc": "Aktiviert oder deaktiviert alle Überprüfungen.",
- "css.validate.title": "Steuert die CSS-Validierung und Problemschweregrade.",
- "description": "Bietet umfangreiche Sprachunterstützung für CSS-, LESS- und SCSS-Dateien.",
- "displayName": "CSS-Sprachfeatures",
- "less.colorDecorators.enable.deprecationMessage": "Die Einstellung \"less.colorDecorators.enable\" ist veraltet und wurde durch \"editor.colorDecorators\" ersetzt.",
- "less.completion.completePropertyWithSemicolon.desc": "Hiermit wird beim Vervollständigen von CSS-Eigenschaften ein Semikolon am Zeilenende eingefügt.",
- "less.completion.triggerPropertyValueCompletion.desc": "VS Code löst die Vervollständigung des Eigenschaftswerts standardmäßig aus, nachdem eine CSS-Eigenschaft ausgewählt wurde. Mit dieser Einstellung deaktivieren Sie dieses Verhalten.",
- "less.format.braceStyle.desc": "Fügen Sie geschweifte Klammern in dieselbe Zeile wie Regeln (`collapse`) oder geschweifte Klammern in eine eigene Zeile (`expand`) ein.",
- "less.format.enable.desc": "Aktivieren/Deaktivieren Sie den LESS-Standardformatierer.",
- "less.format.maxPreserveNewLines.desc": "Maximale Anzahl von Zeilenumbrüchen, die in einem Block beibehalten werden, wenn `#less.format.preserveNewLines#` aktiviert ist.",
- "less.format.newlineBetweenRules.desc": "Trennen Sie Regelsätze durch eine leere Zeile.",
- "less.format.newlineBetweenSelectors.desc": "Trennen Sie Selektoren durch eine neue Zeile.",
- "less.format.preserveNewLines.desc": "Gibt an, ob vorhandene Zeilenumbrüche vor Elementen beibehalten werden sollen.",
- "less.format.spaceAroundSelectorSeparator.desc": "Stellen Sie sicher, dass um die Auswahltrennzeichen „>“, „+“, „~“ (z. B. „a > b“) ein Leerzeichen steht.",
- "less.hover.documentation": "Hiermit wird bei LESS-Hovers eine Tag- und Attributdokumentation eingeblendet.",
- "less.hover.references": "Hiermit werden bei LESS-Hovers Verweise auf MDN eingeblendet.",
- "less.lint.argumentsInColorFunction.desc": "Ungültige Anzahl von Parametern.",
- "less.lint.boxModel.desc": "\"width\" oder \"height\" nicht verwenden, wenn \"padding\" oder \"border\" genutzt werden.",
- "less.lint.compatibleVendorPrefixes.desc": "Beim Verwenden eines anbieterspezifischen Präfixes sicherstellen, dass alle anderen anbieterspezifischen Eigenschaften einbezogen werden.",
- "less.lint.duplicateProperties.desc": "Keine doppelten Formatdefinitionen verwenden.",
- "less.lint.emptyRules.desc": "Keine leeren Regelsätze verwenden.",
- "less.lint.float.desc": "Die Verwendung von \"float\" vermeiden. float-Eigenschaften führen leicht dazu, dass CSS nicht mehr funktioniert, wenn sich ein Aspekt des Layouts ändert.",
- "less.lint.fontFaceProperties.desc": "`@font-face`-Regel muss Eigenschaften `src` und `font-family` definieren.",
- "less.lint.hexColorLength.desc": "Farben im Hexadezimalformat müssen aus drei oder sechs Hexadezimalzahlen bestehen.",
- "less.lint.idSelector.desc": "Selektoren sollten keine IDs enthalten, da diese Regeln zu eng mit HTML verknüpft sind.",
- "less.lint.ieHack.desc": "IE-Hacks sind nur für die Unterstützung von IE7 und niedriger erforderlich.",
- "less.lint.importStatement.desc": "Import-Anweisungen werden nicht parallel geladen.",
- "less.lint.important.desc": "Verwendung von \"!important\" vermeiden. Damit wird angegeben, dass es mit der Spezifität des gesamten CSS-Codes Probleme gibt und eine Umgestaltung erforderlich ist.",
- "less.lint.propertyIgnoredDueToDisplay.desc": "Die Eigenschaft wird aufgrund der Anzeige ignoriert. Durch die Angabe \"display: inline\" haben beispielsweise die Eigenschaften \"width\", \"height\", \"margin-top\", \"margin-bottom\" und \"float\" keine Auswirkung.",
- "less.lint.universalSelector.desc": "Der Universalselektor (*) ist bekanntermaßen langsam.",
- "less.lint.unknownAtRules.desc": "Unbekannte at-Regel.",
- "less.lint.unknownProperties.desc": "Unbekannte Eigenschaft.",
- "less.lint.unknownVendorSpecificProperties.desc": "Unbekannte anbieterspezifische Eigenschaft.",
- "less.lint.validProperties.desc": "Eine Liste der Eigenschaften, die nicht auf Übereinstimmung mit der Regel \"unknownProperties\" überprüft werden.",
- "less.lint.vendorPrefix.desc": "Beim Verwenden eines anbieterspezifischen Präfixes auch die Standardeigenschaft einbeziehen.",
- "less.lint.zeroUnits.desc": "Keine Einheit für Null erforderlich.",
- "less.title": "LESS",
- "less.validate.desc": "Aktiviert oder deaktiviert alle Überprüfungen.",
- "less.validate.title": "Steuert die LESS-Validierung und Problemschweregrade.",
- "scss.colorDecorators.enable.deprecationMessage": "Die Einstellung \"scss.colorDecorators.enable\" ist veraltet und wurde durch \"editor.colorDecorators\" ersetzt.",
- "scss.completion.completePropertyWithSemicolon.desc": "Hiermit wird beim Vervollständigen von CSS-Eigenschaften ein Semikolon am Zeilenende eingefügt.",
- "scss.completion.triggerPropertyValueCompletion.desc": "VS Code löst die Vervollständigung des Eigenschaftswerts standardmäßig aus, nachdem eine CSS-Eigenschaft ausgewählt wurde. Mit dieser Einstellung deaktivieren Sie dieses Verhalten.",
- "scss.format.braceStyle.desc": "Fügen Sie geschweifte Klammern in dieselbe Zeile wie Regeln (`collapse`) oder geschweifte Klammern in eine eigene Zeile (`expand`) ein.",
- "scss.format.enable.desc": "Aktivieren/Deaktivieren Sie den standardmäßigen SCSS-Formatierer.",
- "scss.format.maxPreserveNewLines.desc": "Maximale Anzahl von Zeilenumbrüchen, die in einem Block beibehalten werden sollen, wenn `#scss.format.preserveNewLines#` aktiviert ist.",
- "scss.format.newlineBetweenRules.desc": "Trennen Sie Regelsätze durch eine leere Zeile.",
- "scss.format.newlineBetweenSelectors.desc": "Trennen Sie Selektoren durch eine neue Zeile.",
- "scss.format.preserveNewLines.desc": "Gibt an, ob vorhandene Zeilenumbrüche vor Elementen beibehalten werden sollen.",
- "scss.format.spaceAroundSelectorSeparator.desc": "Stellen Sie sicher, dass um die Auswahltrennzeichen „>“, „+“, „~“ (z. B. „a > b“) ein Leerzeichen steht.",
- "scss.hover.documentation": "Hiermit wird bei SCSS-Hovers eine Tag- und Attributdokumentation eingeblendet.",
- "scss.hover.references": "Hiermit werden bei SCSS-Hovers Verweise auf MDN eingeblendet.",
- "scss.lint.argumentsInColorFunction.desc": "Ungültige Anzahl von Parametern.",
- "scss.lint.boxModel.desc": "\"width\" oder \"height\" nicht verwenden, wenn \"padding\" oder \"border\" genutzt werden.",
- "scss.lint.compatibleVendorPrefixes.desc": "Beim Verwenden eines anbieterspezifischen Präfixes sicherstellen, dass alle anderen anbieterspezifischen Eigenschaften einbezogen werden.",
- "scss.lint.duplicateProperties.desc": "Keine doppelten Formatdefinitionen verwenden.",
- "scss.lint.emptyRules.desc": "Keine leeren Regelsätze verwenden.",
- "scss.lint.float.desc": "Die Verwendung von \"float\" vermeiden. float-Eigenschaften führen leicht dazu, dass CSS nicht mehr funktioniert, wenn sich ein Aspekt des Layouts ändert.",
- "scss.lint.fontFaceProperties.desc": "`@font-face`-Regel muss Eigenschaften `src` und `font-family` definieren.",
- "scss.lint.hexColorLength.desc": "Farben im Hexadezimalformat müssen aus drei oder sechs Hexadezimalzahlen bestehen.",
- "scss.lint.idSelector.desc": "Selektoren sollten keine IDs enthalten, da diese Regeln zu eng mit HTML verknüpft sind.",
- "scss.lint.ieHack.desc": "IE-Hacks sind nur für die Unterstützung von IE7 und niedriger erforderlich.",
- "scss.lint.importStatement.desc": "Import-Anweisungen werden nicht parallel geladen.",
- "scss.lint.important.desc": "Verwendung von \"!important\" vermeiden. Damit wird angegeben, dass es mit der Spezifität des gesamten CSS-Codes Probleme gibt und eine Umgestaltung erforderlich ist.",
- "scss.lint.propertyIgnoredDueToDisplay.desc": "Die Eigenschaft wird aufgrund der Anzeige ignoriert. Durch die Angabe \"display: inline\" haben beispielsweise die Eigenschaften \"width\", \"height\", \"margin-top\", \"margin-bottom\" und \"float\" keine Auswirkung.",
- "scss.lint.universalSelector.desc": "Der Universalselektor (*) ist bekanntermaßen langsam.",
- "scss.lint.unknownAtRules.desc": "Unbekannte at-Regel.",
- "scss.lint.unknownProperties.desc": "Unbekannte Eigenschaft.",
- "scss.lint.unknownVendorSpecificProperties.desc": "Unbekannte anbieterspezifische Eigenschaft.",
- "scss.lint.validProperties.desc": "Eine Liste der Eigenschaften, die nicht auf Übereinstimmung mit der Regel \"unknownProperties\" überprüft werden.",
- "scss.lint.vendorPrefix.desc": "Beim Verwenden eines anbieterspezifischen Präfixes auch die Standardeigenschaft einbeziehen.",
- "scss.lint.zeroUnits.desc": "Keine Einheit für Null erforderlich.",
- "scss.title": "SCSS (SASS)",
- "scss.validate.desc": "Aktiviert oder deaktiviert alle Überprüfungen.",
- "scss.validate.title": "Steuert die SCSS-Überprüfung und Problemschweregrade."
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-de/translations/extensions/css.i18n.json b/i18n/vscode-language-pack-de/translations/extensions/css.i18n.json
deleted file mode 100644
index 9e76bbaea3..0000000000
--- a/i18n/vscode-language-pack-de/translations/extensions/css.i18n.json
+++ /dev/null
@@ -1,16 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "package": {
- "description": "Bietet Syntaxhervorhebung und Klammernabgleich für CSS-, LESS- und SCSS-Dateien.",
- "displayName": "CSS-Sprachgrundlagen"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-de/translations/extensions/debug-auto-launch.i18n.json b/i18n/vscode-language-pack-de/translations/extensions/debug-auto-launch.i18n.json
deleted file mode 100644
index ca8540b173..0000000000
--- a/i18n/vscode-language-pack-de/translations/extensions/debug-auto-launch.i18n.json
+++ /dev/null
@@ -1,38 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "dist/extension": {
- "debug.javascript.autoAttach.always.description": "Hiermit wird automatisch an jeden Node.js-Prozess angefügt, der im Terminal gestartet wird.",
- "debug.javascript.autoAttach.always.label": "Immer",
- "debug.javascript.autoAttach.disabled.description": "Das automatische Anfügen ist deaktiviert und wird in der Statusleiste nicht angezeigt.",
- "debug.javascript.autoAttach.disabled.label": "6Deaktiviert",
- "debug.javascript.autoAttach.onlyWithFlag.description": "Hiermit wird nur dann automatisch angefügt, wenn das Flag \"--inspect\" angegeben ist.",
- "debug.javascript.autoAttach.onlyWithFlag.label": "Nur mit Flag",
- "debug.javascript.autoAttach.smart.description": "Hiermit wird bei Ausführung von Skripts automatisch angefügt, die sich nicht in einem node_modules-Ordner befinden.",
- "debug.javascript.autoAttach.smart.label": "Intelligent",
- "scope.global": "Automatisches Anfügen auf diesem Computer umschalten",
- "scope.workspace": "Automatisches Anfügen in diesem Arbeitsbereich umschalten",
- "status.name.auto.attach": "Automatisches Anfügen debuggen",
- "status.text.auto.attach.always": "Automatisch anfügen: immer",
- "status.text.auto.attach.disabled": "Automatisch anfügen: deaktiviert",
- "status.text.auto.attach.smart": "Automatisch anfügen: intelligent",
- "status.text.auto.attach.withFlag": "Automatisch anfügen: mit Flag",
- "status.tooltip.auto.attach": "Im Debugmodus automatisch an Node.js-Prozesse anfügen",
- "tempDisable.disable": "Automatisches Anfügen in dieser Sitzung vorübergehend deaktivieren",
- "tempDisable.enable": "Automatisches Anfügen erneut aktivieren",
- "tempDisable.suffix": "Automatisch anfügen: deaktiviert"
- },
- "package": {
- "description": "Hilfsprogramm für Feature \"Automatisches Anfügen\", wenn Node-Debugging-Erweiterungen nicht aktiv sind.",
- "displayName": "Node-Debugging – Automatisches Anfügen",
- "toggle.auto.attach": "Automatisches Anfügen umschalten"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-de/translations/extensions/debug-server-ready.i18n.json b/i18n/vscode-language-pack-de/translations/extensions/debug-server-ready.i18n.json
deleted file mode 100644
index 5c5b1ed891..0000000000
--- a/i18n/vscode-language-pack-de/translations/extensions/debug-server-ready.i18n.json
+++ /dev/null
@@ -1,29 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "dist/extension": {
- "server.ready.nocapture.error": "URI-Format ('{0}') verwendet einen Ersatzplatzhalter, aber das Muster hat nichts erfasst.",
- "server.ready.placeholder.error": "Das Format des URI ('{0}') muss genau einen Ersatzplatzhalter enthalten."
- },
- "package": {
- "debug.server.ready.action.debugWithChrome.description": "Das Debuggen mit dem \"Debugger für Chrome\" beginnen.",
- "debug.server.ready.action.description": "Verwendung des URI, wenn der Server bereit ist.",
- "debug.server.ready.action.openExternally.description": "URI mit der Standardanwendung extern öffnen.",
- "debug.server.ready.action.startDebugging.description": "Führen Sie eine andere Startkonfiguration aus.",
- "debug.server.ready.debugConfigName.description": "Name der auszuführenden Startkonfiguration.",
- "debug.server.ready.pattern.description": "Der Server ist bereit, wenn dieses Muster auf der Debugging-Konsole erscheint. Die erste Erfassungsgruppe muss einen URI oder eine Portnummer enthalten.",
- "debug.server.ready.serverReadyAction.description": "Reagieren Sie auf einen URI, wenn ein Serverprogramm beim Debugging bereit ist (wird durch Senden einer Meldung wie \"Port 3000 wird überwacht\" oder \"https://localhost:5001 wird gerade überwacht\" an die Debugging-Konsole signalisiert.)",
- "debug.server.ready.uriFormat.description": "Eine Formatzeichenfolge, die beim Erstellen des URI über eine Portnummer verwendet wird. Das erste '%s' wird durch die Portnummer ersetzt.",
- "debug.server.ready.webRoot.description": "Der an die Debugkonfiguration für den \"Debugger für Chrome\" übermittelte Wert.",
- "description": "URI in Browser öffnen, wenn der Server bereit ist, für den ein Debugging durchgeführt wird.",
- "displayName": "Aktion \"Server bereit\""
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-de/translations/extensions/docker.i18n.json b/i18n/vscode-language-pack-de/translations/extensions/docker.i18n.json
deleted file mode 100644
index 412d457f54..0000000000
--- a/i18n/vscode-language-pack-de/translations/extensions/docker.i18n.json
+++ /dev/null
@@ -1,16 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "package": {
- "description": "Bietet Syntaxhervorhebung und Klammernabgleich in Docker-Dateien.",
- "displayName": "Docker-Sprachgrundlagen"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-de/translations/extensions/emmet.i18n.json b/i18n/vscode-language-pack-de/translations/extensions/emmet.i18n.json
deleted file mode 100644
index 4d97c2bd11..0000000000
--- a/i18n/vscode-language-pack-de/translations/extensions/emmet.i18n.json
+++ /dev/null
@@ -1,79 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "dist\\node/abbreviationActions": {
- "wrapWithAbbreviationPrompt": "Abkürzung eingeben"
- },
- "package": {
- "command.balanceIn": "Ausgleichen (einwärts)",
- "command.balanceOut": "Ausgleichen (auswärts)",
- "command.decrementNumberByOne": "Um 1 verringern",
- "command.decrementNumberByOneTenth": "Um 0,1 verringern",
- "command.decrementNumberByTen": "Um 10 verringern",
- "command.evaluateMathExpression": "Mathematischen Ausdruck auswerten",
- "command.incrementNumberByOne": "Um 1 erhöhen",
- "command.incrementNumberByOneTenth": "Um 0,1 erhöhen",
- "command.incrementNumberByTen": "Um 10 erhöhen",
- "command.matchTag": "Gehe zu übereinstimmendem Paar",
- "command.mergeLines": "Zeilen mergen",
- "command.nextEditPoint": "Gehe zum nächsten Bearbeitungspunkt",
- "command.prevEditPoint": "Gehe zum vorherigen Bearbeitungspunkt",
- "command.reflectCSSValue": "CSS-Wert reflektieren",
- "command.removeTag": "Tag entfernen",
- "command.selectNextItem": "Nächstes Element auswählen",
- "command.selectPrevItem": "Vorheriges Element auswählen",
- "command.showEmmetCommands": "Emmet-Befehle anzeigen",
- "command.splitJoinTag": "Tag teilen/verknüpfen",
- "command.toggleComment": "Kommentar ein-/ausschalten",
- "command.updateImageSize": "Bildgröße aktualisieren",
- "command.updateTag": "Tag aktualisieren",
- "command.wrapWithAbbreviation": "Mit Abkürzung umschließen",
- "description": "Emmet-Unterstützung für VS Code",
- "emmetExclude": "Ein Array von Sprachen, in dem Emmet-Abkürzungen nicht erweitert werden sollten.",
- "emmetExtensionsPath": "Ein Array von Pfaden, in dem jeder Pfad Emmet-syntaxProfiles und/oder Schnipseldateien enthalten kann.\r\nBei Konflikten überschreiben die Profile/Schnipsel der späteren Pfade die der früheren Pfade.\r\nWeitere Informationen und eine Beispielschnipseldatei finden Sie unter https://code.visualstudio.com/docs/editor/emmet.",
- "emmetExtensionsPathItem": "Ein Pfad, der Emmet-syntaxProfiles und/oder-Schnipsel enthält.",
- "emmetIncludeLanguages": "Aktivieren Sie Emmet-Abkürzungen in Sprachen, die nicht standardmäßig unterstützt werden. Fügen Sie hier eine Zuordnung zwischen der unterstützten Sprache und der unterstützten Emmet-Sprache hinzu.\r\n Beispiel: {\"vue-html\": \"html\", \"javascript\": \"javascriptreact\"}",
- "emmetOptimizeStylesheetParsing": "Bei FALSE wird die gesamte Datei analysiert, um zu ermitteln, ob das Erweitern von Emmet-Abkürzungen an der aktuellen Position möglich ist. Bei TRUE wird nur der Inhalt vor und nach der aktuellen Position in CSS-, SCSS-, und LESS-Dateien analysiert.",
- "emmetPreferences": "Einstellungen, die zum Ändern des Verhaltens einiger Aktionen und Konfliktlöser von Emmet verwendet werden.",
- "emmetPreferencesAllowCompactBoolean": "Bei TRUE wird eine kompakte Notation boolescher Attribute erzeugt.",
- "emmetPreferencesBemElementSeparator": "Elementtrennzeichen für Klassen unter Verwendung des BEM-Filters.",
- "emmetPreferencesBemModifierSeparator": "Modifizierertrennzeichen für Klassen unter Verwendung des BEM-Filters.",
- "emmetPreferencesCssAfter": "Symbol, das beim Erweitern von CSS-Abkürzungen am Ende der CSS-Eigenschaft eingefügt werden soll.",
- "emmetPreferencesCssBetween": "Symbol, das beim Erweitern von CSS-Abkürzungen zwischen der CSS-Eigenschaft und dem Wert eingefügt werden soll.",
- "emmetPreferencesCssColorShort": "Bei „true“ werden Farbwerte wie `#f auf `#fff anstelle von `#ffffff erweitert.",
- "emmetPreferencesCssFuzzySearchMinScore": "Das Mindestergebnis (zwischen 0 und 1), das die Abkürzung mit Fuzzyübereinstimmung erreichen muss. Niedrigere Werte führen zu vielen falsch positiven Übereinstimmungen, höhere Werte verringern unter Umständen die möglichen Übereinstimmungen.",
- "emmetPreferencesCssMozProperties": "Durch Trennzeichen getrennte CSS-Eigenschaften, die das \"moz\"-Herstellerpräfix erhalten, wenn sie in einer Emmet-Abkürzung verwendet werden, die mit \"-\" beginnt. Legen Sie eine leere Zeichenfolge fest, um das \"moz\"-Präfix immer zu vermeiden.",
- "emmetPreferencesCssMsProperties": "Durch Trennzeichen getrennte CSS-Eigenschaften, die das \"ms\"-Herstellerpräfix erhalten, wenn sie in einer Emmet-Abkürzung verwendet werden, die mit \"-\" beginnt. Legen Sie eine leere Zeichenfolge fest, um das \"ms\"-Präfix immer zu vermeiden.",
- "emmetPreferencesCssOProperties": "Durch Trennzeichen getrennte CSS-Eigenschaften, die das \"o\"-Herstellerpräfix erhalten, wenn sie in einer Emmet-Abkürzung verwendet werden, die mit \"-\" beginnt. Legen Sie eine leere Zeichenfolge fest, um das \"o\"-Präfix immer zu vermeiden.",
- "emmetPreferencesCssWebkitProperties": "Durch Trennzeichen getrennte CSS-Eigenschaften, die das \"webkit\"-Herstellerpräfix erhalten, wenn sie in einer Emmet-Abkürzung verwendet werden, die mit \"-\" beginnt. Legen Sie eine leere Zeichenfolge fest, um das \"webkit\"-Präfix immer zu vermeiden.",
- "emmetPreferencesFilterCommentAfter": "Eine Kommentardefinition, die nach dem abgeglichenen Element platziert werden muss, wenn ein Kommentarfilter angewendet wird.",
- "emmetPreferencesFilterCommentBefore": "Eine Kommentardefinition, die vor dem abgeglichenen Element platziert werden muss, wenn ein Kommentarfilter angewendet wird.",
- "emmetPreferencesFilterCommentTrigger": "Eine durch Trennzeichen getrennte Liste von Attributnamen, die in abgekürzter Form vorliegen müssen, damit der Kommentarfilter angewendet werden kann.",
- "emmetPreferencesFloatUnit": "Standardeinheit für Floatwerte.",
- "emmetPreferencesFormatForceIndentTags": "Ein Array von Tagnamen, die immer einen inneren Einzug erhalten.",
- "emmetPreferencesFormatNoIndentTags": "Ein Array von Tagnamen, die nie einen inneren Einzug erhalten.",
- "emmetPreferencesIntUnit": "Standardeinheit für Integerwerte.",
- "emmetPreferencesOutputInlineBreak": "Die Anzahl gleichgeordneter Inline-Elemente, die erforderlich sind, damit Zeilenumbrüche zwischen diesen Elementen eingefügt werden. Bei \"0\" werden Inline-Elemente immer auf einer einzigen Zeile platziert.",
- "emmetPreferencesOutputReverseAttributes": "Bei TRUE werden beim Auflösen von Schnipseln die Richtungen von Attributzusammenführungen umgekehrt.",
- "emmetPreferencesOutputSelfClosingStyle": "Formatvorlage der selbstschließenden Tags: HTML („ “), XML („ “) oder XHTML („ “).",
- "emmetPreferencesSassAfter": "Symbol, das beim Erweitern von CSS-Abkürzungen in Sass-Dateien am Ende der CSS-Eigenschaft eingefügt werden soll.",
- "emmetPreferencesSassBetween": "Symbol, das beim Erweitern von CSS-Abkürzungen in Sass-Dateien zwischen der CSS-Eigenschaft und dem Wert eingefügt werden soll.",
- "emmetPreferencesStylusAfter": "Symbol, das beim Erweitern von CSS-Abkürzungen in Stylus-Dateien am Ende der CSS-Eigenschaft eingefügt werden soll.",
- "emmetPreferencesStylusBetween": "Symbol, das beim Erweitern von CSS-Abkürzungen in Stylus-Dateien zwischen der CSS-Eigenschaft und dem Wert eingefügt werden soll.",
- "emmetShowAbbreviationSuggestions": "Zeigt mögliche Emmet-Abkürzungen als Vorschläge an. Diese Option gilt nicht in Stylesheets oder wenn emmet.showExpandedAbbreviation auf `\"never`\" festgelegt ist.",
- "emmetShowExpandedAbbreviation": "Zeigt erweiterte Emmet-Abkürzungen als Vorschläge an.\r\nDie Option \"inMarkupAndStylesheetFilesOnly\" gilt für: html, haml, jade, slim, xml, xsl, css, scss, sass, less, stylus.\r\nDie Option \"always\" gilt unabhängig von Markup/CSS für alle Teile der Datei.",
- "emmetShowSuggestionsAsSnippets": "Bei TRUE werden die Emmet-Vorschläge als Schnipsel angezeigt. Dadurch können Sie die Vorschläge entsprechend der `#editor.snippetSuggestions#`-Einstellung anordnen.",
- "emmetSyntaxProfiles": "Definieren Sie das Profil für die angegebene Syntax, oder verwenden Sie Ihr eigenes Profil mit bestimmten Regeln.",
- "emmetTriggerExpansionOnTab": "Wenn aktiviert, werden Emmet-Abkürzungen beim Drücken der TAB-Taste erweitert.",
- "emmetUseInlineCompletions": "Wenn \"true\", verwendet Emmet Inline-Vervollständigungen, um Erweiterungen vorzuschlagen. Um zu verhindern, dass der Nicht-Inline-Vervollständigungselementanbieter so oft angezeigt wird, während diese Einstellung auf „true“ gesetzt ist, schalten Sie „#editor.quickSuggestions#“ für das „andere“ Element auf „inline“ oder „off“.",
- "emmetVariables": "In Emmet-Schnipseln zu verwendende Codeschnipsel."
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-de/translations/extensions/extension-editing.i18n.json b/i18n/vscode-language-pack-de/translations/extensions/extension-editing.i18n.json
deleted file mode 100644
index 4138e6f4b3..0000000000
--- a/i18n/vscode-language-pack-de/translations/extensions/extension-editing.i18n.json
+++ /dev/null
@@ -1,30 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "dist/extensionLinter": {
- "apiProposalNotListed": "Dieser Vorschlag kann nicht verwendet werden, da das Produkt für diese Erweiterung einen festen Satz von API-Vorschlägen definiert. Sie können Ihre Erweiterung testen, aber vor der Veröffentlichung MÜSSEN Sie sich an das VS Code-Team wenden.",
- "dataUrlsNotValid": "Daten-URLs sind keine gültige Bildquelle.",
- "embeddedSvgsNotValid": "Eingebettete SVGs sind keine gültige Bildquelle.",
- "httpsRequired": "Für Bilder muss das HTTPS-Protokoll verwendet werden.",
- "relativeBadgeUrlRequiresHttpsRepository": "Relative Badge-URLs erfordern die Angabe eines Repositorys mit dem HTTPS-Protokoll in dieser Datei \"package.json\".",
- "relativeIconUrlRequiresHttpsRepository": "Ein Symbol erfordert die Angabe eines Repositorys mit dem HTTPS-Protokoll in dieser Datei \"package.json\".",
- "relativeUrlRequiresHttpsRepository": "Relative Bild-URLs erfordern die Angabe eines Repositorys mit dem HTTPS-Protokoll in der Datei \"package.json\".",
- "svgsNotValid": "SVGs sind keine gültige Bildquelle."
- },
- "dist/packageDocumentHelper": {
- "languageSpecificEditorSettings": "Sprachspezifische Editor-Einstellungen",
- "languageSpecificEditorSettingsDescription": "Editor-Einstellungen für Sprache überschreiben"
- },
- "package": {
- "description": "Stellt Bereinigungsfunktionen für die Erstellung von Erweiterungen zur Verfügung.",
- "displayName": "Erweiterungserstellung"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-de/translations/extensions/fsharp.i18n.json b/i18n/vscode-language-pack-de/translations/extensions/fsharp.i18n.json
deleted file mode 100644
index 5636b3cc4f..0000000000
--- a/i18n/vscode-language-pack-de/translations/extensions/fsharp.i18n.json
+++ /dev/null
@@ -1,16 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "package": {
- "description": "Bietet Schnipsel, Syntaxhervorhebung, Klammernabgleich und Falten in F#-Dateien.",
- "displayName": "F#-Sprachgrundlagen"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-de/translations/extensions/git-base.i18n.json b/i18n/vscode-language-pack-de/translations/extensions/git-base.i18n.json
deleted file mode 100644
index 9155bf7a1d..0000000000
--- a/i18n/vscode-language-pack-de/translations/extensions/git-base.i18n.json
+++ /dev/null
@@ -1,30 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "dist/remoteSource": {
- "branch name": "Branchname",
- "error": "{0}-Fehler: {1}",
- "none found": "Keine Remoterepositorys gefunden.",
- "pick url": "Wählen Sie eine URL für den Klonvorgang aus.",
- "provide url": "Repository-URL angeben",
- "provide url or pick": "Geben Sie die Repository-URL an, oder wählen Sie eine Repositoryquelle aus.",
- "recently opened": "zuletzt geöffnet",
- "remote sources": "remotequellen",
- "type to filter": "Repositoryname",
- "type to search": "Repositoryname (zur Suche eingeben)",
- "url": "URL"
- },
- "package": {
- "command.api.getRemoteSources": "Remotequellen abrufen",
- "description": "Statische Git-Beiträge und -Auswahl.",
- "displayName": "Git-Basis"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-de/translations/extensions/git-ui.i18n.json b/i18n/vscode-language-pack-de/translations/extensions/git-ui.i18n.json
deleted file mode 100644
index ebb8a646bd..0000000000
--- a/i18n/vscode-language-pack-de/translations/extensions/git-ui.i18n.json
+++ /dev/null
@@ -1,16 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "package": {
- "displayName": "Git-Benutzeroberfläche",
- "description": "Integration der Git-SCM-Benutzeroberfläche"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-de/translations/extensions/git.i18n.json b/i18n/vscode-language-pack-de/translations/extensions/git.i18n.json
deleted file mode 100644
index 9e1a0f9545..0000000000
--- a/i18n/vscode-language-pack-de/translations/extensions/git.i18n.json
+++ /dev/null
@@ -1,577 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "dist/actionButton": {
- "scm button commit and push title": "Commit und Push \"{0}\"",
- "scm button commit and push tooltip": "Committen und Änderungen pushen",
- "scm button commit and sync title": "Commit und Synchronisieren \"{0}\"",
- "scm button commit and sync tooltip": "Committen und Änderungen synchronisieren",
- "scm button commit title": "Commit \"{0}\"",
- "scm button commit to new branch and push tooltip": "Commit an neuer Verzweigung ausführen und Änderungen mit Push übertragen",
- "scm button commit to new branch and sync tooltip": "Commit an neuer Verzweigung ausführen und Änderungen synchronisieren",
- "scm button commit to new branch tooltip": "Commit der Änderungen für neue Verzweigung ausführen",
- "scm button commit tooltip": "Änderungen committen",
- "scm button committing and pushing tooltip": "Commit wird ausgeführt und Änderungen werden per Push übertragen...",
- "scm button committing and synching tooltip": "Commit wird ausgeführt und Änderungen werden synchronisiert...",
- "scm button committing to new branch and pushing tooltip": "Committen an neuer Verzweigung wird ausgeführt und Änderungen werden mit Push übertragen...",
- "scm button committing to new branch and synching tooltip": "Committen an neuer Verzweigung wird ausgeführt und Änderungen werden synchronisiert...",
- "scm button committing to new branch tooltip": "Committen von Änderungen an neuer Verzweigung wird ausgeführt...",
- "scm button committing tooltip": "Änderungen werden committet...",
- "scm button continue title": "{0} Continue",
- "scm button continue tooltip": "Continue Rebase",
- "scm button continuing tooltip": "Continuing Rebase...",
- "scm button publish branch": "Branch veröffentlichen",
- "scm button publish branch running": "Branch wird veröffentlicht...",
- "scm button sync description": "{0} Änderungen synchronisieren{1}{2}",
- "scm publish branch action button title": "{0} Branch veröffentlichen",
- "scm secondary button commit": "Commit",
- "syncing changes": "Änderungen werden synchronisiert..."
- },
- "dist/askpass-main": {
- "missOrInvalid": "Fehlende oder ungültige Anmeldeinformationen."
- },
- "dist/autofetch": {
- "no": "Nein",
- "not now": "Erneut nachfragen",
- "suggest auto fetch": "Möchten Sie Code [regelmäßig \"git fetch\" ausführen lassen]({0})?",
- "yes": "Ja"
- },
- "dist/commands": {
- "HEAD not available": "Es ist keine HEAD-Version von \"{0}\" verfügbar.",
- "Theirs": "Andere",
- "Yours": "Ihre",
- "add": "Zum Arbeitsbereich hinzufügen",
- "add remote": "Neues Remoterepository hinzufügen...",
- "addFrom": "Remoterepository aus URL hinzufügen",
- "addfrom": "Remoterepository aus {0} hinzufügen",
- "addremote": "Remoterepository hinzufügen",
- "always": "Immer",
- "are you sure": "Erstellt ein Git-Repository unter '{0}'. Sind Sie sicher das Sie weiterfahren möchten?",
- "auth failed": "Fehler bei der Authentifizierung beim Git-Remoterepository.",
- "auth failed specific": "Fehler bei der Authentifizierung beim Git-Remoterepository:\r\n\r\n{0}",
- "branch already exists": "Ein Branch namens \"{0}\" bereits vorhanden.",
- "branch name": "Branchname",
- "branch name does not match sanitized": "Die neue Verzweigung lautet „{0}“",
- "branch name format invalid": "Der Name des Branches muss mit RegEx übereinstimmen: {0}",
- "cant push": "Verweise können nicht per Push an einen Remotespeicherort übertragen werden. Führen Sie zuerst \"Pull\" aus, um Ihre Änderungen zu integrieren.",
- "checkout detached": "Getrennte auschecken...",
- "choose": "Ordner auswählen...",
- "clean repo": "Bereinigen Sie Ihre Repository-Arbeitsstruktur vor Auftragsabschluss.",
- "clonefrom": "Aus \"{0}\" klonen",
- "cloning": "Das Git-Repository \"{0}\" wird geklont ...",
- "commit": "Gestagete Änderungen committen",
- "commit anyway": "Leeren Commit erstellen",
- "commit changes": "Commit dennoch ausführen",
- "commit hash": "Commithash",
- "commit message": "Commit-Nachricht",
- "commit to branch": "Commit für eine neue Verzweigung ausführen",
- "commitMessageWithHeadLabel2": "Nachricht (Commit für \"{0}\")",
- "confirm branch protection commit": "Sie versuchen, einen Commit für eine geschützte Verzweigung auszuführen, und sind möglicherweise nicht berechtigt, Ihre Commits per Push auf die Remote-Verzweigung zu übertragen.\r\n\r\nWie möchten Sie fortfahren?",
- "confirm delete": "Möchten Sie \"{0}\" LÖSCHEN?\r\nDieser Vorgang ist UNUMKEHRBAR!\r\nWenn Sie fortfahren, geht die Datei DAUERHAFT VERLOREN.",
- "confirm delete multiple": "Möchten Sie {0} Dateien LÖSCHEN?\r\nDieser Vorgang ist UNUMKEHRBAR!\r\nWenn Sie fortfahren, gehen diese Dateien DAUERHAFT VERLOREN.",
- "confirm discard": "Möchten Sie die Änderungen in {0} wirklich verwerfen?",
- "confirm discard all": "Möchten Sie ALLE Änderungen in {0} Dateien verwerfen?\r\nDieser Vorgang ist UNUMKEHRBAR!\r\nWenn Sie fortfahren, geht Ihr aktueller Arbeitssatz DAUERHAFT VERLOREN.",
- "confirm discard all 2": "{0}\r\n\r\nDies kann NICHT rückgängig gemacht werden, und Ihr aktueller Arbeitssatz geht DAUERHAFT verloren.",
- "confirm discard all single": "Möchten Sie die Änderungen in {0} wirklich verwerfen?",
- "confirm discard multiple": "Möchten Sie wirklich Änderungen in {0} Dateien verwerfen?",
- "confirm empty commit": "Are you sure you want to create an empty commit?",
- "confirm force delete branch": "Der Branch '{0}' ist noch nicht vollständig zusammengeführt. Trotzdem löschen?",
- "confirm force push": "Sie sind dabei, einen erzwungenen Push für Ihre Änderungen durchzuführen. Dieser Vorgang kann negative Auswirkungen haben und die Änderungen anderer Benutzer überschreiben.\r\n\r\nMöchten Sie fortfahren?",
- "confirm no verify commit": "Sie sind im Begriff, Ihre Änderungen ohne Überprüfung zu committen. Hierdurch werden Pre-commit-Hooks übersprungen, was möglicherweise nicht erwünscht ist.\r\n\r\nMöchten Sie den Vorgang fortsetzen?",
- "confirm publish branch": "Der Branch \"{0}\" weist keinen Remotebranch auf. Möchten Sie diesen Branch veröffentlichen?",
- "confirm restore": "Möchten Sie {0} wirklich wiederherstellen?",
- "confirm restore multiple": "Möchten Sie {0} Dateien wirklich wiederherstellen?",
- "confirm stage file with merge conflicts": "Möchten Sie {0} mit Mergingkonflikten bereitstellen?",
- "confirm stage files with merge conflicts": "Möchten Sie {0} Dateien mit Mergingkonflikten bereitstellen?",
- "create branch": "Neuen Branch erstellen...",
- "create branch from": "Neuen Branch erstellen aus...",
- "create repo": "Repository initialisieren",
- "current": "Aktuell",
- "default": "Standard",
- "delete": "Datei löschen",
- "delete branch": "Branch löschen",
- "delete file": "Datei löschen",
- "delete files": "Dateien löschen",
- "deleted by them": "Die Datei \"{0}\" wurde von Dritten gelöscht und von uns geändert.\r\n\r\nWas möchten Sie tun?",
- "deleted by us": "Die Datei \"{0}\" wurde von uns gelöscht und von Dritten geändert.\r\n\r\nWas möchten Sie tun?",
- "discard": "Änderungen verwerfen",
- "discardAll": "Alle {0} Dateien verwerfen",
- "discardAll multiple": "Eine Datei verwerfen",
- "drop all stashes": "Sind Sie sich sicher, dass Sie ALLE Stashes löschen möchten? Es sind {0} Stashes vorhanden, die gelöscht werden müssen und MÖGLICHERWEISE NICHT WIEDERHERGESTELLT werden können.",
- "drop one stash": "Sind Sie sich sicher, dass Sie ALLE Stashes löschen möchten? Es ist 1 Stash vorhanden, der gelöscht werden muss und MÖGLICHERWEISE NICHT WIEDERHERGESTELLT werden kann.",
- "empty commit": "Der Commitvorgang wurde aufgrund einer leeren Commitnachricht abgebrochen.",
- "force": "Auschecken erzwingen",
- "force push not allowed": "Erzwungene Pushes sind nicht zulässig. Aktivieren Sie diese bitte über die Einstellung \"git.allowForcePush\".",
- "git error": "Git-Fehler",
- "git error details": "Git: {0}",
- "git.timeline.openDiffCommand": "Vergleich öffnen",
- "git.title.diff": "{0} ↔ {1}",
- "git.title.diffRefs": "{0} ({1}) ↔ {0} ({2})",
- "git.title.index": "{0} (Index)",
- "git.title.ref": "{0} ({1})",
- "git.title.workingTree": "{0} (Arbeitsstruktur)",
- "init": "Arbeitsbereichsordner auswählen, in dem das Git-Repository initialisiert wird",
- "init repo": "Repository initialisieren",
- "invalid branch name": "Ungültiger Branchname",
- "keep ours": "Unsere Version beibehalten",
- "keep theirs": "Deren Version beibehalten",
- "learn more": "Weitere Informationen",
- "local changes": "Ihre lokalen Änderungen werden durch Auschecken überschrieben.",
- "merge commit": "Der letzte Commit war ein Mergecommit. Möchten Sie den Vorgang wirklich rückgängig machen?",
- "merge conflicts": "Es liegen Zusammenführungskonflikte vor. Beheben Sie die Konflikte vor dem Committen.",
- "missing user info": "Stellen Sie sicher, dass Sie in git Ihren „user.name“ und Ihre „user.email“ konfigurieren.",
- "never": "Nie",
- "never again": "OK, nicht mehr anzeigen",
- "never ask again": "OK, nicht mehr fragen",
- "no changes": "Keine Änderungen zum Speichern vorhanden.",
- "no changes stash": "Es sind keine Änderungen vorhanden, für die ein Stash ausgeführt werden kann.",
- "no more": "Die Aktion kann nicht rückgängig gemacht werden, da HEAD nicht auf einen Commit verweist.",
- "no rebase": "Es wird kein Rebase ausgeführt.",
- "no remotes added": "In Ihrem Repository liegen keine Remoteelemente vor.",
- "no remotes to fetch": "In diesem Repository wurden keine Remoteelemente konfiguriert, aus denen ein Abrufen erfolgt.",
- "no remotes to publish": "In Ihrem Repository wurden keine Remoteelemente für die Veröffentlichung konfiguriert.",
- "no remotes to pull": "In Ihrem Repository wurden keine Remoteelemente für den Pull konfiguriert.",
- "no remotes to push": "In Ihrem Repository wurden keine Remoteelemente für den Push konfiguriert.",
- "no staged changes": "Es sind keine gestageten Änderungen vorhanden, für die ein Commit durchgeführt werden kann.\r\n\r\nMöchten Sie all Ihre Änderungen stagen und direkt committen?",
- "no stashes": "Das Repository enthält keine Stashes.",
- "no tags": "Dieses Repository hat keine Tags.",
- "no verify commit not allowed": "Commits ohne Überprüfung sind nicht zulässig, aktivieren Sie sie mit der Einstellung \"git.allowNoVerifyCommit\".",
- "nobranch": "Wählen Sie ein Branch für den Push zu einem Remoteelement aus.",
- "ok": "OK",
- "open git log": "Git-Protokoll öffnen",
- "open repo": "Repository öffnen",
- "openrepo": "Öffnen",
- "openreponew": "In neuem Fenster öffnen",
- "pick branch pull": "Branch für Pull auswählen",
- "pick provider": "Wählen Sie einen Anbieter aus, um den Branch \"{0}\" hier zu veröffentlichen:",
- "pick remote": "Remotespeicherort auswählen, an dem der Branch \"{0}\" veröffentlicht wird:",
- "pick remote pull repo": "Remoteelement zum Pullen des Branch auswählen",
- "pick stash to apply": "Stash zum Anwenden auswählen",
- "pick stash to drop": "Zu löschenden Stash auswählen",
- "pick stash to pop": "Wählen Sie einen Stash aus, für den ein Pop ausgeführt werden soll.",
- "proposeopen": "Möchten Sie das geklonte Repository öffnen?",
- "proposeopen init": "Möchten Sie das initialisierte Repository öffnen?",
- "proposeopen2": "Möchten Sie das geklonte Repository öffnen oder es zum aktuellen Arbeitsbereich hinzufügen?",
- "proposeopen2 init": "Möchten Sie das initialisierte Repository öffnen oder es zum aktuellen Arbeitsbereich hinzufügen?",
- "provide branch name": "Bitte geben Sie einen neuen Branchnamen an.",
- "provide commit hash": "Geben Sie den Commithash an.",
- "provide commit message": "Geben Sie eine Commit-Nachrichte ein.",
- "provide remote name": "Remotenamen angeben",
- "provide stash message": "Geben Sie optional eine Stash-Nachricht ein.",
- "provide tag message": "Geben Sie eine Meldung ein, um das Tag mit einer Anmerkung zu versehen.",
- "provide tag name": "Geben Sie einen Tagnamen an.",
- "publish to": "In \"{0}\" veröffentlichen",
- "remote already exists": "Remote-'{0}' ist bereits vorhanden.",
- "remote branch at": "Remotebranch unter {0}",
- "remote name": "Remotename",
- "remote name format invalid": "Ungültiges Format des Remotenamens",
- "remove remote": "Remote zum Entfernen auswählen",
- "repourl": "Repository-URL",
- "restore file": "Datei wiederherstellen",
- "restore files": "Dateien wiederherstellen",
- "save and commit": "Alle speichern & committen",
- "save and stash": "Alle speichern und stashen",
- "select a branch to merge from": "Branch für die Zusammenführung auswählen",
- "select a branch to rebase onto": "Branch für Rebase auswählen",
- "select a ref to checkout": "Referenz zum Auschecken auswählen",
- "select a ref to checkout detached": "Referenz zum Auschecken im getrennten Modus auswählen",
- "select a ref to create a new branch from": "Verweis auswählen, aus dem der Branch \"{0}\" erstellt werden soll",
- "select a tag to delete": "Zu löschendes Tag auswählen",
- "select branch to delete": "Wählen Sie einen Branch zum Löschen aus",
- "select log level": "Protokollstufe auswählen",
- "selectFolder": "Repositoryspeicherort auswählen",
- "show command output": "Befehlsausgabe anzeigen",
- "stash": "Dennoch stashen",
- "stash merge conflicts": "Beim Anwenden des Stashes sind Merge-Konflikte aufgetreten.",
- "stash message": "Stash-Nachricht",
- "stashcheckout": "Stashen und auschecken",
- "sure drop": "Möchten Sie den folgenden Stash löschen: {0}?",
- "sync is unpredictable": "Durch diese Aktion werden Commits von und an '{0}/{1}' gepullt und gepusht.",
- "tag at": "Tag bei {0}",
- "tag message": "Nachricht",
- "tag name": "Tag-Name",
- "there are untracked files": "Es sind {0} nicht verfolgte Dateien vorhanden, die VOM DATENTRÄGER GELÖSCHT werden, wenn sie verworfen werden.",
- "there are untracked files single": "Die folgende nicht verfolgte Datei wird VOM DATENTRÄGER GELÖSCHT, wenn sie verworfen wird: {0}.",
- "undo commit": "Mergecommit rückgängig machen",
- "unsaved files": "{0} Dateien wurden nicht gespeichert.\r\n\r\nMöchten Sie diese vor dem Ausführen des Commits speichern?",
- "unsaved files single": "Die folgende Datei umfasst noch nicht gespeicherte Änderungen, die beim Fortsetzen des Vorgangs nicht in den Commit einbezogen werden: {0}.\r\n\r\nMöchten Sie vor dem Commit speichern?",
- "unsaved stash files": "{0} Dateien wurden nicht gespeichert.\r\n\r\nMöchten Sie diese vor dem Stashen speichern?",
- "unsaved stash files single": "Die folgende Datei umfasst nicht gespeicherte Änderungen, die beim Fortsetzen des Vorgangs nicht in den Stash einbezogen werden: {0}.\r\n\r\nMöchten Sie sie vor dem Stashen speichern?",
- "warn untracked": "Hierdurch werden {0} nicht nachverfolgte Dateien GELÖSCHT!\r\nDieser Vorgang ist UNUMKEHRBAR.\r\nDie Dateien gehen DAUERHAFT VERLOREN.",
- "yes": "Ja",
- "yes discard tracked": "1 verfolgte Datei verwerfen",
- "yes discard tracked multiple": "{0} verfolgte Dateien verwerfen",
- "yes never again": "Ja, nicht mehr anzeigen"
- },
- "dist/log": {
- "gitLogLevel": "Protokolliergrad: {0}"
- },
- "dist/main": {
- "downloadgit": "Git herunterladen",
- "git20": "Sie haben anscheinend Git {0} installiert. Der Code funktioniert am besten mit Git >= 2",
- "git2526": "Bei der installierten Git-Version {0} sind bekannte Issues aufgetreten. Aktualisieren Sie auf eine Git-Version >= 2.27, damit die Git-Features ordnungsgemäß funktionieren.",
- "neverShowAgain": "Nicht mehr anzeigen",
- "notfound": "Git nicht gefunden. Installieren Sie es, oder konfigurieren Sie es mithilfe der Einstellung \"git.path\".",
- "skipped": "Gefundenes Git wurde übersprungen in: {0}",
- "updateGit": "Git aktualisieren",
- "using git": "Verwenden von Git {0} von {1}",
- "validating": "Gefundenes Git wurde überprüft in: {0}"
- },
- "dist/model": {
- "no repositories": "Es sind keine verfügbaren Repositorys vorhanden.",
- "not supported": "Absolute Pfade werden in der Einstellung \"git.canRepositories\" nicht unterstützt.",
- "pick repo": "Repository auswählen",
- "repoOnHomeDriveRootWarning": "Das Git-Repository kann bei '{0}' nicht automatisch geöffnet werden. Um dieses Git-Repository zu öffnen, öffnen Sie es direkt als Ordner in VS Code.",
- "too many submodules": "Das Repository \"{0}\" enthält {1} Submodule, die nicht automatisch geöffnet werden. Sie könne Sie einzeln öffnen, indem Sie darin erhaltene Datei öffnen."
- },
- "dist/postCommitCommands": {
- "scm secondary button commit and push": "Commit und Push",
- "scm secondary button commit and sync": "Bestätigen und synchronisieren"
- },
- "dist/repository": {
- "add known": "Möchten Sie \"{0}\" zu .gitignore hinzufügen?",
- "added by them": "Konflikt: von Anderen hinzugefügt",
- "added by us": "Konflikt: von uns hinzugefügt",
- "always pull": "Immer pullen",
- "both added": "Konflikt: beide hinzugefügt",
- "both deleted": "Konflikt: beide gelöscht",
- "both modified": "Konflikt: beide geändert",
- "changes": "Änderungen",
- "commit": "Commit",
- "commit in rebase": "Die Commit-Nachricht kann während der Rebase-Ausführung nicht geändert werden. Verwenden Sie stattdessen den interaktiven Rebase-Vorgang und schließen Sie die Rebase-Ausführung ab.",
- "commitMessage": "Nachricht ({0} für Commit)",
- "commitMessageCountdown": "{0} Zeichen in der aktuellen Zeile verbleibend",
- "commitMessageWarning": "{0} Zeichen über {1} in der aktuellen Zeile",
- "commitMessageWhitespacesOnlyWarning": "Die aktuelle Commitnachricht enthält nur Leerzeichen.",
- "commitMessageWithHeadLabel": "Nachricht ({0} für Commit in \"{1}\")",
- "deleted": "Gelöscht",
- "deleted by them": "Konflikt: von Anderen gelöscht",
- "deleted by us": "Konflikt: von uns gelöscht",
- "dont pull": "Nicht pullen",
- "git.title.deleted": "{0} (gelöscht)",
- "git.title.index": "{0} (Index)",
- "git.title.ours": "{0} (unseres)",
- "git.title.theirs": "{0} (ihres)",
- "git.title.untracked": "{0} (keine Nachverfolgung)",
- "git.title.workingTree": "{0} (Arbeitsstruktur)",
- "huge": "Das Git-Repository unter {0} umfasst zu viele aktive Änderungen. Nur ein Teil der Git-Features wird aktiviert.",
- "ignored": "Ignoriert",
- "index added": "Index hinzugefügt",
- "index copied": "Index kopiert",
- "index deleted": "Index gelöscht",
- "index modified": "Index geändert",
- "index renamed": "Index umbenannt",
- "intent to add": "Hinzuzufügende Absicht",
- "merge changes": "Änderungen zusammenführen",
- "modified": "Geändert",
- "neveragain": "Nicht mehr anzeigen",
- "no": "Nein",
- "ok": "OK",
- "open": "Öffnen",
- "open.merge": "Merge öffnen",
- "pull": "Pull",
- "pull branch maybe rebased": "Offenbar wurde für den aktuellen Branch (\"{0}\") ein Rebase ausgeführt. Möchten Sie ihn dennoch als Ziel für den Pullvorgang verwenden?",
- "pull maybe rebased": "Offenbar wurde für den aktuellen Branch ein Rebase ausgeführt. Möchten Sie ihn dennoch als Ziel für den Pullvorgang verwenden?",
- "pull n": "{0} Commits aus {1}/{2} per Pull übertragen",
- "pull push n": "{0} Commits per Pull und {1} Commits per Push zwischen {2}/{3} übertragen",
- "push n": "{0} Commits per Push nach {1}/{2} übertragen",
- "push success": "Push wurde erfolgreich ausgeführt.",
- "staged changes": "Gestagete Änderungen",
- "sync changes": "Änderungen synchronisieren",
- "sync is unpredictable": "Synchronisierung wird durchgeführt. Das Abbrechen des Vorgangs kann zu schweren Schäden am Repository führen.",
- "tooManyChangesWarning": "Es wurden zu viele Änderungen erkannt. Im Folgenden werden nur die ersten {0} Änderungen angezeigt.",
- "untracked": "Nicht verfolgt",
- "untracked changes": "Nicht nachverfolgte Änderungen",
- "yes": "Ja"
- },
- "dist/statusbar": {
- "checkout": "Branch/Tag auschecken...",
- "publish branch": "Verzweigung veröffentlichen",
- "publish to": "In \"{0}\" veröffentlichen",
- "publish to...": "Veröffentlichen in...",
- "rebasing": "Rebase wird ausgeführt",
- "syncing changes": "Änderungen werden synchronisiert..."
- },
- "dist/timelineProvider": {
- "git.timeline.email": "E-Mail",
- "git.timeline.openComparison": "Vergleich öffnen",
- "git.timeline.source": "Git-Verlauf",
- "git.timeline.stagedChanges": "Gestagete Änderungen",
- "git.timeline.uncommitedChanges": "Ausgecheckte Änderungen",
- "git.timeline.you": "Sie"
- },
- "package": {
- "colors.added": "Farbe für hinzugefügte Ressourcen.",
- "colors.conflict": "Farbe für Ressourcen mit Konflikten.",
- "colors.deleted": "Farbe für gelöschte Ressourcen.",
- "colors.ignored": "Farbe für ignorierte Ressourcen.",
- "colors.modified": "Farbe für geänderte Ressourcen.",
- "colors.renamed": "Farbe für umbenannte oder kopierte Ressourcen.",
- "colors.stageDeleted": "Farbe für gelöschte Ressourcen, die gestaget wurden.",
- "colors.stageModified": "Farbe für geänderte Ressourcen, die gestaget wurden.",
- "colors.submodule": "Farbe für Submodul-Ressourcen.",
- "colors.untracked": "Farbe für nicht verfolgte Ressourcen.",
- "command.addRemote": "Remoterepository hinzufügen...",
- "command.api.getRemoteSources": "Remotequellen abrufen",
- "command.api.getRepositories": "Repositorys abrufen",
- "command.api.getRepositoryState": "Repositorystatus abrufen",
- "command.branch": "Branch wird erstellt...",
- "command.branchFrom": "Branch erstellen aus...",
- "command.checkout": "Check-Out nach...",
- "command.checkoutDetached": "Auschecken an (getrennt)...",
- "command.cherryPick": "Cherry-Pick...",
- "command.clean": "Änderungen verwerfen",
- "command.cleanAll": "Alle Änderungen verwerfen",
- "command.cleanAllTracked": "Alle nachverfolgten Änderungen verwerfen",
- "command.cleanAllUntracked": "Alle nicht nachverfolgten Änderungen verwerfen",
- "command.clone": "Klonen",
- "command.cloneRecursive": "Klonen (rekursiv)",
- "command.close": "Repository schließen",
- "command.closeAllDiffEditors": "Alle Diff-Editoren schließen",
- "command.commit": "Commit",
- "command.commitAll": "Commit für alle ausführen",
- "command.commitAllAmend": "Commit für alle ausführen (Ändern)",
- "command.commitAllAmendNoVerify": "Alle committen (ändern, keine Überprüfung)",
- "command.commitAllNoVerify": "Alle committen (keine Überprüfung)",
- "command.commitAllSigned": "Alle committen (unterzeichnet)",
- "command.commitAllSignedNoVerify": "Alle committen (abgemeldet, keine Überprüfung)",
- "command.commitEmpty": "Leer committen",
- "command.commitEmptyNoVerify": "Commit leer (keine Überprüfung)",
- "command.commitMessageAccept": "Commit-Nachricht akzeptieren",
- "command.commitMessageDiscard": "Commit-Nachricht verwerfen",
- "command.commitNoVerify": "Commit ausführen (keine Überprüfung)",
- "command.commitStaged": "Gestagetes committen",
- "command.commitStagedAmend": "Gestagetes committen (Ändern)",
- "command.commitStagedAmendNoVerify": "Commit gestaget (ändern, keine Überprüfung)",
- "command.commitStagedNoVerify": "Commit gestaget (keine Überprüfung)",
- "command.commitStagedSigned": "Gestagetes committen (signiert)",
- "command.commitStagedSignedNoVerify": "Commit gestaget (abgemeldet, keine Überprüfung)",
- "command.createTag": "Tag erstellen",
- "command.deleteBranch": "Branch löschen...",
- "command.deleteTag": "Tag löschen",
- "command.fetch": "Fetchen",
- "command.fetchAll": "Von allen Remotes holen",
- "command.fetchPrune": "Abrufen (Prune)",
- "command.git.acceptMerge": "Merge akzeptieren",
- "command.ignore": "Zu .gitignore hinzufügen",
- "command.init": "Repository initialisieren",
- "command.merge": "Branch zusammenführen...",
- "command.openAllChanges": "Alle Änderungen öffnen",
- "command.openChange": "Offene Änderungen",
- "command.openFile": "Datei öffnen",
- "command.openHEADFile": "Datei öffnen (HEAD)",
- "command.openRepository": "Repository öffnen",
- "command.publish": "Branch veröffentlichen...",
- "command.pull": "Pull",
- "command.pullFrom": "Pullen von...",
- "command.pullRebase": "Pull (Rebase)",
- "command.push": "Push",
- "command.pushFollowTags": "Push (Tags folgen)",
- "command.pushFollowTagsForce": "Push (Tags folgen, Erzwingen)",
- "command.pushForce": "Push (Erzwingen)",
- "command.pushTags": "Tags pushen",
- "command.pushTo": "Push zu...",
- "command.pushToForce": "Push zu... (Erzwingen)",
- "command.rebase": "Rebase für Branch ausführen...",
- "command.rebaseAbort": "Rebase abbrechen",
- "command.refresh": "Aktualisieren",
- "command.removeRemote": "Remote entfernen",
- "command.rename": "Umbenennen",
- "command.renameBranch": "Branch umbenennen...",
- "command.restoreCommitTemplate": "Commitvorlage wiederherstellen",
- "command.revealFileInOS.linux": "Übergeordneten Ordner öffnen",
- "command.revealFileInOS.mac": "Im Finder anzeigen",
- "command.revealFileInOS.windows": "Im Datei-Explorer anzeigen",
- "command.revealInExplorer": "In Explorer-Ansicht anzeigen",
- "command.revertChange": "Änderung zurücksetzen",
- "command.revertSelectedRanges": "Ausgewählte Bereiche zurücksetzen",
- "command.setLogLevel": "Protokollstufe festlegen...",
- "command.showOutput": "Git-Ausgabe anzeigen",
- "command.stage": "Änderungen bereitstellen",
- "command.stageAll": "Alle Änderungen bereitstellen",
- "command.stageAllMerge": "Alle zusammengeführten Änderungen stagen",
- "command.stageAllTracked": "Alle nachverfolgten Änderungen bereitstellen",
- "command.stageAllUntracked": "Alle nicht nachverfolgten Änderungen bereitstellen",
- "command.stageChange": "Änderung bereitstellen",
- "command.stageSelectedRanges": "Gewählte Bereiche bereitstellen",
- "command.stash": "Stash ausführen",
- "command.stashApply": "Stash anwenden...",
- "command.stashApplyLatest": "Neuesten Stash anwenden",
- "command.stashDrop": "Stash löschen...",
- "command.stashDropAll": "Alle Stashes löschen...",
- "command.stashIncludeUntracked": "Stash (einschließlich nicht verfolgt)",
- "command.stashPop": "Pop für Stash ausführen...",
- "command.stashPopLatest": "Pop für letzten Stash ausführen",
- "command.sync": "Synchronisierung",
- "command.syncRebase": "Sync (Rebase)",
- "command.timelineCompareWithSelected": "Mit Auswahl vergleichen",
- "command.timelineCopyCommitId": "Commit-ID kopieren",
- "command.timelineCopyCommitMessage": "Commitnachricht kopieren",
- "command.timelineOpenDiff": "Offene Änderungen",
- "command.timelineSelectForCompare": "Für Vergleich auswählen",
- "command.undoCommit": "Letzten Commit rückgängig machen",
- "command.unstage": "Bereitstellung der Änderungen aufheben",
- "command.unstageAll": "Bereitstellung aller Änderungen aufheben",
- "command.unstageSelectedRanges": "Bereitstellung gewählter Bereiche aufheben",
- "config.allowForcePush": "Steuert, ob erzwungene Pushes (mit oder ohne Lease) aktiviert sind.",
- "config.allowNoVerifyCommit": "Hiermit wird gesteuert, ob Commits ohne Ausführung von pre-commit- und commit-msg-Hooks zulässig sind.",
- "config.alwaysShowStagedChangesResourceGroup": "Ressourcengruppe für gestagete Änderungen immer anzeigen.",
- "config.alwaysSignOff": "Legt das signoff-Flag für alle Commits fest.",
- "config.autoRepositoryDetection": "Legt fest, in welchen Fällen Repositorys automatisch erkannt werden sollen.",
- "config.autoRepositoryDetection.false": "Automatisches Durchsuchen von Repositorys deaktiveren.",
- "config.autoRepositoryDetection.openEditors": "Nach übergeordneten Ordnern von geöffneten Dateien suchen.",
- "config.autoRepositoryDetection.subFolders": "Nach Unterordnern des aktuell geöffneten Ordners suchen.",
- "config.autoRepositoryDetection.true": "Sowohl nach Unterordnern des aktuell geöffneten Ordners als auch nach übergeordneten Ordnern von geöffneten Dateien suchen.",
- "config.autoStash": "Führen Sie für Änderungen einen Stash aus, bevor Sie sie pullen, und stellen Sie sie nach einem erfolgreichen Pull wieder her.",
- "config.autofetch": "Bei Festlegung auf TRUE werden Commits automatisch aus dem Standardremoteverzeichnis des aktuellen Git-Repositorys abgerufen. Bei Festlegung auf \"Alle\" erfolgt der Abruf aus allen Remoteverzeichnissen.",
- "config.autofetchPeriod": "Dauer in Sekunden zwischen jeder automatischen Git-Abrufung, wenn \"#git.autofetch#\" aktiviert ist.",
- "config.autorefresh": "Gibt an, ob die automatische Aktualisierung aktiviert ist.",
- "config.branchPrefix": "Präfix, das beim Erstellen einer neuen Verzweigung verwendet wird.",
- "config.branchProtection": "Liste der geschützten Verzweigungen. Standardmäßig wird eine Eingabeaufforderung angezeigt, bevor ein Commit für Änderungen für eine geschützte Verzweigung ausgeführt wird. Die Eingabeaufforderung kann mithilfe der Einstellung „#git.branchProtectionPrompt#“ gesteuert werden.",
- "config.branchProtectionPrompt": "Steuert, ob eine Eingabeaufforderung angezeigt wird, bevor ein Commit für Änderungen für eine geschützte Verzweigung ausgeführt wird.",
- "config.branchProtectionPrompt.alwaysCommit": "Der Commit für Änderungen muss immer für die geschützte Verzweigung ausgeführt werden.",
- "config.branchProtectionPrompt.alwaysCommitToNewBranch": "Der Commit für Änderungen muss immer für eine neue Verzweigung ausgeführt werden.",
- "config.branchProtectionPrompt.alwaysPrompt": "Immer fragen, bevor für Änderungen ein Commit für eine geschützte Verzweigung ausgeführt wird.",
- "config.branchRandomNameDictionary": "Liste der Wörterbücher, die für den zufällig generierten Zweignamen verwendet werden. Jeder Wert stellt das Wörterbuch dar, das zum Generieren des Segments des Zweignamens verwendet wird. Unterstützte Wörterbücher: „Adjektive“, „Tiere“, „Farben“ und „Zahlen“.",
- "config.branchRandomNameDictionary.adjectives": "Ein zufälliges Adjektiv",
- "config.branchRandomNameDictionary.animals": "Ein zufälliger Tiername",
- "config.branchRandomNameDictionary.colors": "Ein zufälliger Farbname",
- "config.branchRandomNameDictionary.numbers": "Eine Zufallszahl zwischen 100 und 999",
- "config.branchRandomNameEnable": "Steuert, ob beim Erstellen einer neuen Verzweigung ein zufälliger Name generiert wird.",
- "config.branchSortOrder": "Steuert die Sortierreihenfolge für Branches.",
- "config.branchValidationRegex": "Regulärer Ausdruck zum Validieren neuer Branch-Namen.",
- "config.branchWhitespaceChar": "Das Zeichen, das Leerzeichen in neuen Verzweigungsnamen ersetzen und Segmente eines zufällig generierten Verzweigungsnamens trennen soll.",
- "config.checkoutType": "Legt fest, welche Git-Referenzen aufgelistet werden, wenn \"Auschecken an...\" ausgeführt wird.",
- "config.checkoutType.local": "Lokale Branches",
- "config.checkoutType.remote": "Remotebranches",
- "config.checkoutType.tags": "Tags",
- "config.closeDiffOnOperation": "Steuert, ob der Diff-Editor automatisch geschlossen werden soll, wenn Änderungen gestasht, zugesagt, verworfen, bereitgestellt oder nicht bereitgestellt werden.",
- "config.commandsToLog": "Liste der Git-Befehle (z. B. Commit, Push), deren „stdout“ in der [Git-Ausgabe](command:git.showOutput) protokolliert werden würde. Wenn für den Git-Befehl ein clientseitiger Hook konfiguriert ist, wird „stdout“ des clientseitigen Hooks auch in der [Git-Ausgabe](command:git.showOutput) protokolliert.",
- "config.confirmEmptyCommits": "Bestätigen Sie die Erstellung leerer Commits für den Befehl \"Git: Commit Empty\" immer.",
- "config.confirmForcePush": "Steuert, ob der Benutzer vor einem erzwungenen Push zur Bestätigung aufgefordert wird.",
- "config.confirmNoVerifyCommit": "Steuert, ob vor dem Committen eine Bestätigung ohne Überprüfung angefragt werden soll.",
- "config.confirmSync": "Vor dem Synchronisieren von Git-Repositorys bestätigen.",
- "config.countBadge": "Steuert den Git-Anzahlbadge.",
- "config.countBadge.all": "Alle Änderungen zählen.",
- "config.countBadge.off": "Zähler deaktivieren.",
- "config.countBadge.tracked": "Nur nachverfolgte Änderungen zählen.",
- "config.decorations.enabled": "Legt fest, ob Git Farben und Badges für die Explorer-Ansicht und die Ansicht \"Geöffnete Editoren\" bereitstellt.",
- "config.defaultCloneDirectory": "Das Standardspeicherort für einen Klon eines Git-Repositorys.",
- "config.detectSubmodules": "Steuert, ob Git-Submodule automatisch erkannt werden.",
- "config.detectSubmodulesLimit": "Steuert die Begrenzung der Git-Submodule.",
- "config.discardAllScope": "Legt fest, welche Änderungen vom Befehl \"Alle Änderungen verwerfen\" verworfen werden. \"all\" verwirft alle Änderungen. \"tracked\" verwirft nur verfolgte Dateien. \"prompt\" zeigt immer eine Eingabeaufforderung an, wenn die Aktion ausgeführt wird.",
- "config.enableCommitSigning": "Aktiviert die Commitsignierung mit GPG oder X.509.",
- "config.enableSmartCommit": "Alle Änderungen committen, wenn keine gestageten Änderungen vorhanden sind.",
- "config.enableStatusBarSync": "Steuert, ob der Git Sync-Befehl in der Statusleiste angezeigt wird.",
- "config.enabled": "Legt fest, ob Git aktiviert ist.",
- "config.experimental.installGuide": "Experimentelle Verbesserungen für den Git-Setupfluss.",
- "config.fetchOnPull": "Wenn aktiviert, beim Pullen alle Branches abrufen. Andernfalls nur den aktuellen abrufen.",
- "config.followTagsWhenSync": "Führt einen Pushvorgang für alle Tags durch, wenn der Synchronisierungsbefehl ausgeführt wird.",
- "config.ignoreLegacyWarning": "Ignoriert die Legacy-Git-Warnung.",
- "config.ignoreLimitWarning": "Ignoriert die Warnung bei zu hoher Anzahl von Änderungen in einem Repository.",
- "config.ignoreMissingGitWarning": "Ignoriert die Warnung, wenn Git nicht vorhanden ist.",
- "config.ignoreRebaseWarning": "Ignoriert die Warnung beim Pullvorgang, wenn für den Branch möglicherweise ein Rebase ausgeführt wurde.",
- "config.ignoreSubmodules": "Ignoriert Änderungen an Untermodulen in der Dateistruktur.",
- "config.ignoreWindowsGit27Warning": "Ignoriert die Warnung, wenn Git 2.25–2.26 unter Windows installiert ist.",
- "config.ignoredRepositories": "Liste der zu ignorierenden Git-Repositorys.",
- "config.inputValidation": "Steuert, wann die Commit-Meldung der Eingabevalidierung angezeigt wird.",
- "config.inputValidationLength": "Steuert, ab welcher Länge für Commit-Nachrichten eine Warnung eingeblendet werden soll.",
- "config.inputValidationSubjectLength": "Legt den Grenzwert der Länge des Betreffs der Commitmeldung beim Anzeigen einer Warnung fest. Heben Sie die Festlegung auf, um den Wert von \"config.inputValidationLength\" zu erben.",
- "config.logLevel": "Gibt an, wie viele Informationen (falls vorhanden) bei der [Git-Ausgabe](command:git.showOutput) protokolliert werden sollen.",
- "config.logLevel.critical": "Nur wichtige Informationen protokollieren",
- "config.logLevel.debug": "Nur Fehlersuche, Informationen, Warnungen, Fehler und wichtige Informationen protokollieren",
- "config.logLevel.error": "Nur Fehler und wichtige Informationen protokollieren",
- "config.logLevel.info": "Nur Informationen, Warnungen, Fehler und wichtige Informationen protokollieren",
- "config.logLevel.off": "Nichts protokollieren",
- "config.logLevel.trace": "Alle Informationen protokollieren",
- "config.logLevel.warn": "Nur Warnungen, Fehler und wichtige Informationen protokollieren",
- "config.mergeEditor": "Den Zusammenführungseditor für Dateien öffnen, die derzeit in Konflikt stehen.",
- "config.openAfterClone": "Steuert, ob ein Repository nach dem Klonen automatisch geöffnet wird.",
- "config.openAfterClone.always": "Öffnet Elemente immer im aktuellen Fenster.",
- "config.openAfterClone.alwaysNewWindow": "Öffnet Elemente immer in einem neuen Fenster.",
- "config.openAfterClone.prompt": "Fordert immer eine Aktion an.",
- "config.openAfterClone.whenNoFolderOpen": "Öffnet Elemente nur dann im aktuellen Fenster, wenn kein Ordner geöffnet ist.",
- "config.openDiffOnClick": "Steuert, ob der Diff-Editor geöffnet werden soll, wenn Sie auf eine Änderung klicken. Ansonsten wird der normale Editor geöffnet.",
- "config.path": "Der Pfad und der Dateiname der ausführbaren Git-Datei, beispielsweise \"C:\\Programme\\Git\\bin\\git.exe\" (Windows). Hierbei kann es sich auch um Array mit Zeichenfolgenwerten handeln, die mehrere Pfade für die Suche enthalten.",
- "config.postCommitCommand": "Führt einen Git-Befehl nach erfolgreichem Commit aus.",
- "config.postCommitCommand.none": "Führen Sie keinen Befehl nach einem Commit aus.",
- "config.postCommitCommand.push": "Führen Sie \"Git Push\" nach einem erfolgreichen Commit aus.",
- "config.postCommitCommand.sync": "Führen Sie \"Git Sync\" nach einem erfolgreichen Commit aus.",
- "config.promptToSaveFilesBeforeCommit": "Legt fest, ob Git vor dem einchecken nach nicht gespeicherten Dateien suchen soll.",
- "config.promptToSaveFilesBeforeCommit.always": "Hiermit prüfen Sie auf nicht gespeicherte Dateien.",
- "config.promptToSaveFilesBeforeCommit.never": "Hiermit wird diese Prüfung deaktiviert.",
- "config.promptToSaveFilesBeforeCommit.staged": "Hiermit prüfen Sie nur auf nicht gespeicherte gestagete Dateien.",
- "config.promptToSaveFilesBeforeStash": "Legt fest, ob Git vor dem Stashen von Änderungen nach nicht gespeicherten Dateien suchen soll.",
- "config.promptToSaveFilesBeforeStash.always": "Hiermit prüfen Sie auf nicht gespeicherte Dateien.",
- "config.promptToSaveFilesBeforeStash.never": "Deaktiviert diese Prüfung.",
- "config.promptToSaveFilesBeforeStash.staged": "Hiermit prüfen Sie nur auf nicht gespeicherte gestagete Dateien.",
- "config.pruneOnFetch": "Löscht Elemente beim Abrufen.",
- "config.pullTags": "Hiermit werden alle Tags beim Pullvorgang abgerufen.",
- "config.rebaseWhenSync": "Erzwingen, dass Git \"rebase\" verwendet, wenn der Synchronisierungsbefehl ausgeführt wird.",
- "config.repositoryScanIgnoredFolders": "Liste der Ordner, die beim Scannen nach Git-Repositorys ignoriert werden, wenn „#git.autoRepositoryDetection#“ auf „TRUE“ oder „subFolders“ festgelegt ist.",
- "config.repositoryScanMaxDepth": "Steuert die Tiefe, die beim Überprüfen von Arbeitsbereichsordnern für Git-Repositorys verwendet wird, wenn „#git.autoRepositoryDetection#“ auf „TRUE“ oder „subFolders“ festgelegt ist. Kann auf „-1“ festgelegt werden, wenn kein Limit gelten soll.",
- "config.requireGitUserConfig": "Steuert, ob eine explizite Git-Benutzerkonfiguration erforderlich ist oder ob Git Annahmen treffen soll, falls die Konfiguration fehlt.",
- "config.scanRepositories": "Liste mit Pfaden, an denen nach Git-Repositorys gesucht wird.",
- "config.showActionButton": "Steuert, ob eine Aktionsschaltfläche in der Quellensteuerungsansicht angezeigt wird.",
- "config.showActionButton.commit": "Zeigen Sie eine Aktionsschaltfläche zum Übertragen von Änderungen an, wenn der lokale Zweig geänderte Dateien enthält, die zum Übertragen bereit sind.",
- "config.showActionButton.publish": "Zeigen Sie eine Aktionsschaltfläche an, um den lokalen Branch zu veröffentlichen, wenn er keinen verfolgenden Remote Branch hat.",
- "config.showActionButton.sync": "Zeigen Sie eine Aktionsschaltfläche zum Synchronisieren von Änderungen an, wenn der lokale Zweig entweder vor oder hinter dem entfernten Zweig liegt.",
- "config.showCommitInput": "Steuert, ob die Commiteingabe im Panel für die Git-Quellcodeverwaltung angezeigt wird.",
- "config.showInlineOpenFileAction": "Steuert, ob eine Inlineaktion zum Öffnen der Datei in der Ansicht \"Git-Änderungen\" angezeigt wird.",
- "config.showProgress": "Steuert, ob für Git-Aktionen der Fortschritt zu sehen ist.",
- "config.showPushSuccessNotification": "Legt fest, ob bei einem erfolgreichen Push eine Benachrichtigung angezeigt werden soll.",
- "config.smartCommitChanges": "Hiermit steuern Sie, welche Änderungen beim intelligenten Commit automatisch gestaget werden.",
- "config.smartCommitChanges.all": "Hiermit werden alle Änderungen automatisch gestaget.",
- "config.smartCommitChanges.tracked": "Es wurden nur nachverfolgte Änderungen automatisch gestaget.",
- "config.statusLimit": "Steuert, wie die Anzahl der Änderungen begrenzt wird, die über den Git-Statusbefehl analysiert werden können. Kann auf 0 (Null) festgelegt werden, um keinen Grenzwert zu setzen.",
- "config.suggestSmartCommit": "Schlägt das Aktivieren intelligenter Commits vor. Dabei werden alle Änderungen committet, wenn keine gestageten Änderungen vorliegen.",
- "config.supportCancellation": "Steuert, ob bei Ausführung der Synchronisierungsaktion eine Benachrichtigung angezeigt wird, sodass der Benutzer den Vorgang abbrechen kann.",
- "config.terminalAuthentication": "Steuert, ob VS Code als Authentifizierungshandler für git-Prozesse aktiviert werden soll, die im integrierten Terminal erzeugt werden. Hinweis: Terminals müssen neu gestartet werden, damit eine Änderung dieser Einstellung wirksam wird.",
- "config.terminalGitEditor": "Steuert, ob VS Code als Git-Editor für Git-Prozesse aktiviert werden soll, die im integrierten Terminal erzeugt werden. Hinweis: Terminals müssen neu gestartet werden, um eine Änderung in dieser Einstellung zu übernehmen.",
- "config.timeline.date": "Steuert, welches Datum für Elemente in der Zeitachsenansicht verwendet werden soll.",
- "config.timeline.date.authored": "Erstellungsdatum verwenden",
- "config.timeline.date.committed": "Commitdatum verwenden",
- "config.timeline.showAuthor": "Steuert, ob der Commitautor in der Zeitachsenansicht angezeigt wird.",
- "config.timeline.showUncommitted": "Steuert, ob der Commitautor in der Zeitachsenansicht angezeigt wird.",
- "config.untrackedChanges": "Legt fest, wie sich nicht nachverfolgte Änderungen verhalten.",
- "config.untrackedChanges.hidden": "Nicht nachverfolgte Änderungen werden ausgeblendet und von mehreren Aktionen ausgeschlossen.",
- "config.untrackedChanges.mixed": "Alle Änderungen (nachverfolgte und nicht nachverfolgte) werden zusammen angezeigt und verhalten sich identisch.",
- "config.untrackedChanges.separate": "Nicht nachverfolgte Änderungen werden separat in der Quellcodeverwaltung angezeigt. Sie sind zudem von mehreren Aktionen ausgeschlossen.",
- "config.useCommitInputAsStashMessage": "Steuert, ob die Nachricht aus dem Commiteingabefeld als Standardstashnachricht verwendet wird.",
- "config.useEditorAsCommitInput": "Steuert, ob ein Volltext-Editor zum Erstellen von Commitnachrichten verwendet wird, wenn im Eingabefeld für den Commit keine Nachricht bereitgestellt wird.",
- "config.useForcePushWithLease": "Steuert, ob erzwungene Pushes die sicherere Variante mit Leases verwenden.",
- "config.useIntegratedAskPass": "Steuert, ob GIT_ASKPASS überschrieben werden soll, um die integrierte Version zu verwenden.",
- "config.verboseCommit": "Aktivieren Sie die ausführliche Ausgabe, wenn \"#git.useEditorAsCommitInput#\" aktiviert ist.",
- "description": "Git SCM-Integration",
- "displayName": "Git",
- "submenu.branch": "Branch",
- "submenu.changes": "Änderungen",
- "submenu.commit": "Commit",
- "submenu.commit.amend": "Korrigieren",
- "submenu.commit.signoff": "Abmelden",
- "submenu.explorer": "Git",
- "submenu.pullpush": "Pull, Push",
- "submenu.remotes": "Remote",
- "submenu.stash": "Stash ausführen",
- "submenu.tags": "Tags",
- "view.workbench.cloneRepository": "Sie können ein Repository lokal klonen.\r\n[Repository klonen](command:git.clone 'Clone a repository once the git extension has activated')",
- "view.workbench.learnMore": "Weitere Informationen zur Verwendung von Git und Quellcodeverwaltung in VS Code [finden Sie in unserer Dokumentation](https://aka.ms/vscode-scm).",
- "view.workbench.scm.disabled": "Wenn Sie Git-Features verwenden möchten, müssen Sie Git in Ihren [Einstellungen](command:workbench.action.openSettings?%5B%22git.enabled%22%5D) aktivieren.\r\nWeitere Informationen zur Verwendung von Git und der Quellcodeverwaltung in VS Code [finden Sie in unserer Dokumentation](https://aka.ms/vscode-scm).",
- "view.workbench.scm.empty": "Zum Verwenden von Git-Features können Sie einen Ordner mit einem Git-Repository öffnen oder das Repository von einer URL klonen.\r\n[Ordner öffnen](command:vscode.openFolder)\r\n[Repository klonen](command:git.clone)\r\nWeitere Informationen zur Verwendung von Git und der Quellcodeverwaltung in VS Code [finden Sie in unserer Dokumentation](https://aka.ms/vscode-scm).",
- "view.workbench.scm.emptyWorkspace": "Der derzeit geöffnete Arbeitsbereich verfügt über keine Ordner, die Git-Repositorys enthalten.\r\n[Ordner zum Arbeitsbereich hinzufügen](command:workbench.action.addRootFolder)\r\nWeitere Informationen zur Verwendung von Git und der Quellcodeverwaltung in VS Code [finden Sie in unserer Dokumentation](https://aka.ms/vscode-scm).",
- "view.workbench.scm.folder": "Der aktuell geöffnete Ordner enthält kein Git-Repository. Sie können ein Repository initialisieren, wodurch die Git-Features zur Quellcodeverwaltung aktiviert werden.\r\n[Repository initialisieren](command:git.init?%5Btrue%5D)\r\nWeitere Informationen zur Verwendung von Git und der Quellcodeverwaltung in VS Code finden Sie in unserer [Dokumentation](https://aka.ms/vscode-scm).",
- "view.workbench.scm.missing": "Installieren Sie Git, ein beliebtes Quellcodeverwaltungssystem, um Codeänderungen nachzuverfolgen und mit anderen zusammenzuarbeiten. Weitere Informationen finden Sie in unseren [Git-Leitfäden](https://aka.ms/vscode-scm).",
- "view.workbench.scm.missing.linux": "Die Quellcodeverwaltung hängt davon ab, ob Git installiert wird.\r\n[Git für Linux herunterladen](https://git-scm.com/download/linux)\r\nNach der Installation bitte [neu laden](command:workbench.action.reloadWindow) (oder [troubleshoot](command:git.showOutput)). Zusätzliche Quellcodeanbieter können [aus dem Marketplace](command:workbench.extensions.search?%22%40category%3A%5C%22scm%20providers%5C%22%22) installiert werden.",
- "view.workbench.scm.missing.mac": "[Git für macOS herunterladen](https://git-scm.com/download/mac)\r\nNach der Installation bitte [neu laden](command:workbench.action.reloadWindow) (oder [Fehlerbehebung](command:git.showOutput)). Zusätzliche Quellcodeverwaltungsanbieter können [aus dem Marketplace](command:workbench.extensions.search?%22%40category%3A%5C%22scm%20providers%5C%22%22) installiert werden.",
- "view.workbench.scm.missing.windows": "[Git für Windows herunterladen](https://git-scm.com/download/win)\r\nNach der Installation bitte [neu laden](command:workbench.action.reloadWindow) (oder [Fehlerbehebung](command:git.showOutput)). Zusätzliche Quellcodeverwaltungsanbieter können [aus dem Marketplace](command:workbench.extensions.search?%22%40category%3A%5C%22scm%20providers%5C%22%22) installiert werden.",
- "view.workbench.scm.workspace": "Der aktuell geöffnete Arbeitsbereich enthält keine Ordner mit Git-Repositorys. Sie können ein Repository für einen Ordner initialisieren, wodurch die Git-Features zur Quellcodeverwaltung aktiviert werden.\r\n[Repository initialisieren](command:git.init)\r\nWeitere Informationen zur Verwendung von Git und der Quellcodeverwaltung in VS Code finden Sie in unserer [Dokumentation](https://aka.ms/vscode-scm)."
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-de/translations/extensions/github-authentication.i18n.json b/i18n/vscode-language-pack-de/translations/extensions/github-authentication.i18n.json
deleted file mode 100644
index 74579fe6c3..0000000000
--- a/i18n/vscode-language-pack-de/translations/extensions/github-authentication.i18n.json
+++ /dev/null
@@ -1,27 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "dist/githubServer": {
- "code.detail": "Um die Authentifizierung abzuschließen, navigieren Sie zu GitHub, und fügen Sie den obigen Einmalcode ein.",
- "code.title": "Ihr Code: {0}",
- "no": "Nein",
- "otherReasonMessage": "Sie haben die Autorisierung dieser Erweiterung für die Verwendung von GitHub noch nicht abgeschlossen. Möchten Sie es weiter versuchen?",
- "progress": "Öffnen Sie [{0}]({0}) auf einer neuen Registerkarte, und fügen Sie Ihren einmaligen Code ein: {1}",
- "signingIn": "Bei github.com anmelden...",
- "signingInAnotherWay": "Bei github.com anmelden...",
- "userCancelledMessage": "Haben Sie Probleme bei der Anmeldung? Möchten Sie eine andere Methode ausprobieren?",
- "yes": "Ja"
- },
- "package": {
- "description": "GitHub-Authentifizierungsanbieter",
- "displayName": "GitHub-Authentifizierung"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-de/translations/extensions/github-browser.i18n.json b/i18n/vscode-language-pack-de/translations/extensions/github-browser.i18n.json
deleted file mode 100644
index 3bc4f79879..0000000000
--- a/i18n/vscode-language-pack-de/translations/extensions/github-browser.i18n.json
+++ /dev/null
@@ -1,19 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "package": {
- "displayName": "GitHub-Browser",
- "description": "Hiermit wird ein GitHub-Remoterepository durchsucht."
- },
- "dist/scm": {
- "no changes": "Keine Änderungen zum Speichern vorhanden."
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-de/translations/extensions/github.i18n.json b/i18n/vscode-language-pack-de/translations/extensions/github.i18n.json
deleted file mode 100644
index 3db83ad8bf..0000000000
--- a/i18n/vscode-language-pack-de/translations/extensions/github.i18n.json
+++ /dev/null
@@ -1,46 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "dist/publish": {
- "ignore": "Wählen Sie aus, welche Dateien in das Repository eingeschlossen werden sollen.",
- "openingithub": "In GitHub öffnen",
- "pick folder": "Wählen Sie einen Ordner für die Veröffentlichung in GitHub aus.",
- "publishing_done": "Das Repository \"{0}\" wurde erfolgreich in GitHub veröffentlicht.",
- "publishing_firstcommit": "Erster Commit wird erstellt.",
- "publishing_private": "Veröffentlichung in privatem GitHub-Repository",
- "publishing_public": "Veröffentlichung in öffentlichem GitHub-Repository",
- "publishing_uploading": "Dateien werden hochgeladen."
- },
- "dist/pushErrorHandler": {
- "create a fork": "Verzweigung erstellen",
- "create fork": "GitHub-Verzweigung erstellen",
- "createghpr": "GitHub-Pull Request wird erstellt...",
- "createpr": "PR erstellen",
- "donepr": "Der Pull Request \"{0}/{1}#{2}\" wurde erfolgreich in GitHub erstellt.",
- "fork": "Sie besitzen keine Berechtigungen zum Pushen von \"{0}/{1}\" nach GitHub. Möchten Sie eine Verzweigung erstellen und den Pushvorgang stattdessen dorthin ausführen?",
- "forking": "Verzweigung für \"{0}/{1}\" wird erstellt...",
- "forking_done": "Die Verzweigung \"{0}\" wurde erfolgreich in GitHub erstellt.",
- "forking_pushing": "Änderungen pushen...",
- "no": "Nein",
- "no pr template": "Keine Vorlage",
- "openingithub": "In GitHub öffnen",
- "openpr": "PR öffnen",
- "select pr template": "Pull Requestvorlage auswählen"
- },
- "package": {
- "config.gitAuthentication": "Steuert, ob die automatische GitHub-Authentifizierung für Git-Befehle innerhalb von VS Code aktiviert werden soll.",
- "config.gitProtocol": "Steuert, welches Protokoll zum Klonen eines GitHub-Repositorys verwendet wird",
- "description": "GitHub-Features für VS Code",
- "displayName": "GitHub",
- "welcome.publishFolder": "Sie können diesen Ordner auch direkt in einem GitHub-Repository veröffentlichen. Nach der Veröffentlichung haben Sie Zugriff auf die Funktionen zur Quellcodeverwaltung von Git und GitHub.\r\n[$(github): Veröffentlichung in GitHub](command:github.publish)",
- "welcome.publishWorkspaceFolder": "Sie können einen Arbeitsbereichsordner auch direkt in einem GitHub-Repository veröffentlichen. Nach der Veröffentlichung haben Sie Zugriff auf die Funktionen zur Quellcodeverwaltung von Git und GitHub.\r\n[$(github): Veröffentlichung in GitHub](command:github.publish)"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-de/translations/extensions/go.i18n.json b/i18n/vscode-language-pack-de/translations/extensions/go.i18n.json
deleted file mode 100644
index ea170e59dd..0000000000
--- a/i18n/vscode-language-pack-de/translations/extensions/go.i18n.json
+++ /dev/null
@@ -1,16 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "package": {
- "description": "Bietet Syntaxhervorhebung und Klammernabgleich in Go-Dateien.",
- "displayName": "Go-Sprachgrundlagen"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-de/translations/extensions/groovy.i18n.json b/i18n/vscode-language-pack-de/translations/extensions/groovy.i18n.json
deleted file mode 100644
index 994f8a61e1..0000000000
--- a/i18n/vscode-language-pack-de/translations/extensions/groovy.i18n.json
+++ /dev/null
@@ -1,16 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "package": {
- "description": "Bietet Schnipsel, Syntaxhervorhebung und Klammernabgleich in Groovy-Dateien.",
- "displayName": "Groovy-Sprachgrundlagen"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-de/translations/extensions/grunt.i18n.json b/i18n/vscode-language-pack-de/translations/extensions/grunt.i18n.json
deleted file mode 100644
index 8c3506bc01..0000000000
--- a/i18n/vscode-language-pack-de/translations/extensions/grunt.i18n.json
+++ /dev/null
@@ -1,25 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "dist/main": {
- "execFailed": "Fehler bei der automatischen Grunt-Erkennung für den Ordner {0}. Fehlermeldung: {1}",
- "gruntShowOutput": "Zur Ausgabe wechseln",
- "gruntTaskDetectError": "Problem bei der Suche nach Grunt-Aufgaben. Weitere Informationen finden Sie in der Ausgabe."
- },
- "package": {
- "config.grunt.autoDetect": "Steuerelemente ermöglichen die Grunt-Vorgangserkennung. Die Grunt-Vorgangserkennung kann dazu führen, dass Dateien in jedem geöffneten Arbeitsbereich ausgeführt werden.",
- "description": "Erweiterung zum Hinzufügen von Grunt-Funktionen in VS Code.",
- "displayName": "Grunt-Unterstützung für VS Code",
- "grunt.taskDefinition.args.description": "Befehlszeilenargumente, die an den Grunt-Task übergeben werden sollen",
- "grunt.taskDefinition.file.description": "Die Grunt-Datei zum Bereitstellen der Aufgabe. Kann ausgelassen werden.",
- "grunt.taskDefinition.type.description": "Die anzupassende Grunt-Aufgabe."
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-de/translations/extensions/gulp.i18n.json b/i18n/vscode-language-pack-de/translations/extensions/gulp.i18n.json
deleted file mode 100644
index 0024cb586a..0000000000
--- a/i18n/vscode-language-pack-de/translations/extensions/gulp.i18n.json
+++ /dev/null
@@ -1,24 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "dist/main": {
- "execFailed": "Fehler bei der automatischen Gulp-Erkennung für den Ordner {0}. Fehlermeldung: {1}",
- "gulpShowOutput": "Zur Ausgabe wechseln",
- "gulpTaskDetectError": "Problem bei der Suche nach gulp-Tasks. In der Ausgabe finden Sie weitere Informationen."
- },
- "package": {
- "config.gulp.autoDetect": "Steuerelemente ermöglichen die Gulp-Vorgangserkennung. Die Gulp-Vorgangserkennung kann dazu führen, dass Dateien in jedem geöffneten Arbeitsbereich ausgeführt werden.",
- "description": "Erweiterung zum Hinzufügen von Gulp-Funktionen in VSCode.",
- "displayName": "Gulp-Unterstützung für VSCode",
- "gulp.taskDefinition.file.description": "Die Gulp-Datei zum Bereitstellen der Aufgabe. Kann ausgelassen werden.",
- "gulp.taskDefinition.type.description": "Die anzupassende Gulp-Aufgabe."
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-de/translations/extensions/handlebars.i18n.json b/i18n/vscode-language-pack-de/translations/extensions/handlebars.i18n.json
deleted file mode 100644
index 38190f60d6..0000000000
--- a/i18n/vscode-language-pack-de/translations/extensions/handlebars.i18n.json
+++ /dev/null
@@ -1,16 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "package": {
- "description": "Bietet Syntaxhervorhebung und Klammernabgleich in Handlebars-Dateien.",
- "displayName": "Handlebars-Sprachgrundlagen"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-de/translations/extensions/hlsl.i18n.json b/i18n/vscode-language-pack-de/translations/extensions/hlsl.i18n.json
deleted file mode 100644
index 90e38e17f9..0000000000
--- a/i18n/vscode-language-pack-de/translations/extensions/hlsl.i18n.json
+++ /dev/null
@@ -1,16 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "package": {
- "description": "Bietet Syntaxhervorhebung und Klammernabgleich in HLSL-Dateien.",
- "displayName": "HLSL-Sprachgrundlagen"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-de/translations/extensions/html-language-features.i18n.json b/i18n/vscode-language-pack-de/translations/extensions/html-language-features.i18n.json
deleted file mode 100644
index 3c2493b83b..0000000000
--- a/i18n/vscode-language-pack-de/translations/extensions/html-language-features.i18n.json
+++ /dev/null
@@ -1,59 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "client\\dist\\node/htmlClient": {
- "configureButton": "Konfigurieren",
- "folding.end": "Regionsende wird gefaltet",
- "folding.html": "Einfacher HTML5-Ausgangspunkt",
- "folding.start": "Regionsanfang wird gefaltet",
- "htmlserver.name": "HTML-Sprachserver",
- "linkedEditingQuestion": "VS Code bietet jetzt integrierte Unterstützung für das automatische Umbenennen von Tags. Möchten Sie dieses Feature aktivieren?"
- },
- "package": {
- "description": "Umfangreiche Sprachunterstützung für HTML- und HANDLEBAR-Dateien",
- "displayName": "HTML-Sprachfeatures",
- "html.autoClosingTags": "Automatisches Schließen von HTML-Tags aktivieren/deaktivieren.",
- "html.autoCreateQuotes": "Aktivieren/Deaktivieren der automatischen Erstellung von Anführungszeichen für die HTML-Attributzuweisung. Der Typ von Anführungszeichen kann durch `#html.completion.attributeDefaultValue#` konfiguriert werden.",
- "html.completion.attributeDefaultValue": "Steuert den Standardwert für Attribute, wenn der Abschluss akzeptiert wird.",
- "html.completion.attributeDefaultValue.doublequotes": "Der Attributwert ist auf „“ festgelegt.",
- "html.completion.attributeDefaultValue.empty": "Der Attributwert ist nicht festgelegt.",
- "html.completion.attributeDefaultValue.singlequotes": "Der Attributwert ist auf „ festgelegt.",
- "html.customData.desc": "Eine Liste relativer Dateipfade, die auf JSON-Dateien im [benutzerdefinierten Datenformat](https://github.com/microsoft/vscode-html-languageservice/blob/master/docs/customData.md) verweisen.\r\n\r\nVS Code lädt benutzerdefinierte Daten beim Start, um die HTML-Unterstützung für die benutzerdefinierten HTML-Tags, -Attribute und -Attributwerte, die Sie in den JSON-Dateien angeben, zu verbessern.\r\n\r\nDie Dateipfade werden relativ zum Arbeitsbereich angegeben, und es werden nur Einstellungen für den Arbeitsbereichsordner berücksichtigt.",
- "html.format.contentUnformatted.desc": "Liste der Tags (durch Trennzeichen getrennt), in der der Inhalt nicht neu formatiert werden muss. `null` entspricht standardmäßig dem Tag `pre`.",
- "html.format.enable.desc": "HTML-Standardformatierer aktivieren/deaktivieren.",
- "html.format.extraLiners.desc": "Die Liste der Tags (durch Kommas getrennt), vor denen eine zusätzliche neue Zeile eingefügt werden soll. `null` verwendet standardmäßig `\"head, body, /HTML\"`.",
- "html.format.indentHandlebars.desc": "Formatiert `{{#foo}}` und `{{/foo}}` und nimmt einen Einzug vor.",
- "html.format.indentInnerHtml.desc": "Hiermit werden ``- und ``-Abschnitte eingerückt.",
- "html.format.maxPreserveNewLines.desc": "Die maximale Anzahl von Zeilenumbrüchen, die in einem Block beibehalten werden soll. Verwenden Sie `null` für eine unbegrenzte Anzahl.",
- "html.format.preserveNewLines.desc": "Legt fest, ob vorhandene Zeilenumbrüche vor Elementen beibehalten werden sollen. Funktioniert nur vor Elementen, nicht in Tags oder bei Text.",
- "html.format.templating.desc": "Hiermit werden Sprachtags für die Django-, ERB-, Handlebars- und PHP-Vorlagenerstellung berücksichtigt.",
- "html.format.unformatted.desc": "Die Liste der Tags (durch Kommas getrennt), die nicht erneut formatiert werden sollen. `null` bezieht sich standardmäßig auf alle Tags, die unter https://www.w3.org/TR/html5/dom.html#phrasing-content aufgeführt werden.",
- "html.format.unformattedContentDelimiter.desc": "Hiermit werden Textinhalte innerhalb dieser Zeichenfolge zusammengehalten.",
- "html.format.wrapAttributes.alignedmultiple": "Umbruch bei überschrittener Zeilenlänge, Attribute vertikal ausrichten.",
- "html.format.wrapAttributes.auto": "Attribute nur dann umschließen, wenn die Zeilenlänge überschritten wird.",
- "html.format.wrapAttributes.desc": "Attribute umschließen.",
- "html.format.wrapAttributes.force": "Jedes Attribut mit Ausnahme des ersten umschließen.",
- "html.format.wrapAttributes.forcealign": "Jedes Attribut mit Ausnahme des ersten umschließen und Ausrichtung beibehalten.",
- "html.format.wrapAttributes.forcemultiline": "Jedes Attribut umschließen.",
- "html.format.wrapAttributes.preserve": "Umbruch von Attributen beibehalten",
- "html.format.wrapAttributes.preservealigned": "Ausrichten, aber Umschließung von Attributen beibehalten.",
- "html.format.wrapAttributesIndentSize.desc": "Rücken Sie umschlossene Attribute nach „N“ Zeichen ein. Verwenden Sie „NULL“, um die Standardeinzugsgröße zu verwenden. Dies wird ignoriert, wenn „#html.format.wrapAttributes#“ auf „aligned“ festgelegt ist.",
- "html.format.wrapLineLength.desc": "Die maximale Anzahl von Zeichen pro Zeile (0 = deaktiviert).",
- "html.hover.documentation": "Hiermit wird beim Zeigen auf ein Element eine Tag- und Attributdokumentation eingeblendet.",
- "html.hover.references": "Hiermit werden beim Zeigen auf ein Element Verweise auf MDN eingeblendet.",
- "html.mirrorCursorOnMatchingTag": "Spielcursor bei übereinstimmendem HTML-Tag aktivieren/deaktivieren",
- "html.mirrorCursorOnMatchingTagDeprecationMessage": "Veraltet und durch \"editor.linkedEditing\" ersetzt",
- "html.suggest.html5.desc": "Legt fest, ob die integrierte HTML-Sprachuntersützung HTML5-Tags, -Eigenschaften und -Werte vorschlägt.",
- "html.trace.server.desc": "Verfolgt die Kommunikation zwischen VS Code und dem HTML-Sprachserver.",
- "html.validate.scripts": "Legt fest, ob die integrierte HTML-Sprachunterstützung eingebettete Skripts überprüft.",
- "html.validate.styles": "Legt fest, ob die integrierte HTML-Sprachunterstützung eingebettete Stile überprüft."
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-de/translations/extensions/html.i18n.json b/i18n/vscode-language-pack-de/translations/extensions/html.i18n.json
deleted file mode 100644
index 4c206d2333..0000000000
--- a/i18n/vscode-language-pack-de/translations/extensions/html.i18n.json
+++ /dev/null
@@ -1,16 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "package": {
- "description": "Bietet Syntaxhervorhebung, Klammerabgleich und Schnipsel in HTML-Dateien.",
- "displayName": "HTML-Sprachgrundlagen"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-de/translations/extensions/image-preview.i18n.json b/i18n/vscode-language-pack-de/translations/extensions/image-preview.i18n.json
deleted file mode 100644
index f7582d0a47..0000000000
--- a/i18n/vscode-language-pack-de/translations/extensions/image-preview.i18n.json
+++ /dev/null
@@ -1,39 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "dist/binarySizeStatusBarEntry": {
- "sizeB": "{0} B",
- "sizeGB": "{0} GB",
- "sizeKB": "{0} KB",
- "sizeMB": "{0} MB",
- "sizeStatusBar.name": "Größe der Imagebinärdatei",
- "sizeTB": "{0} TB"
- },
- "dist/preview": {
- "preview.imageLoadError": "Beim Laden des Bildes ist ein Fehler aufgetreten.",
- "preview.imageLoadErrorLink": "Datei mit dem standardmäßigen Text-/Binär-Editor von Visual Studio Code öffnen?"
- },
- "dist/sizeStatusBarEntry": {
- "sizeStatusBar.name": "Imagegröße"
- },
- "dist/zoomStatusBarEntry": {
- "zoomStatusBar.name": "Bildzoom",
- "zoomStatusBar.placeholder": "Zoomfaktor auswählen",
- "zoomStatusBar.wholeImageLabel": "Ganzes Bild"
- },
- "package": {
- "command.zoomIn": "Vergrößern",
- "command.zoomOut": "Verkleinern",
- "customEditors.displayName": "Bildvorschau",
- "description": "Stellt die integrierte Bildvorschau von Visual Studio Code bereit",
- "displayName": "Bildvorschau"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-de/translations/extensions/ini.i18n.json b/i18n/vscode-language-pack-de/translations/extensions/ini.i18n.json
deleted file mode 100644
index e65e62c8fd..0000000000
--- a/i18n/vscode-language-pack-de/translations/extensions/ini.i18n.json
+++ /dev/null
@@ -1,16 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "package": {
- "description": "Bietet Syntaxhervorhebung und Klammernabgleich in Ini-Dateien.",
- "displayName": "Ini-Sprachgrundlagen"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-de/translations/extensions/ipynb.i18n.json b/i18n/vscode-language-pack-de/translations/extensions/ipynb.i18n.json
deleted file mode 100644
index a05eb12fc0..0000000000
--- a/i18n/vscode-language-pack-de/translations/extensions/ipynb.i18n.json
+++ /dev/null
@@ -1,16 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "package": {
- "description": "Bietet grundlegende Unterstützung für das Öffnen und Lesen von Jupyters .ipynb-Notizbuchdateien",
- "displayName": ".ipynb-Unterstützung"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-de/translations/extensions/jake.i18n.json b/i18n/vscode-language-pack-de/translations/extensions/jake.i18n.json
deleted file mode 100644
index 0082bd8496..0000000000
--- a/i18n/vscode-language-pack-de/translations/extensions/jake.i18n.json
+++ /dev/null
@@ -1,24 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "dist/main": {
- "execFailed": "Fehler bei der automatischen Jake-Erkennung für den Ordner {0}. Fehlermeldung: {1}",
- "jakeShowOutput": "Zur Ausgabe wechseln",
- "jakeTaskDetectError": "Fehler bei der Suche nach jake-Tasks. In der Ausgabe finden Sie weitere Informationen."
- },
- "package": {
- "config.jake.autoDetect": "Steuerelemente ermöglichen die Jake-Vorgangserkennung. Die Jake-Vorgangserkennung kann dazu führen, dass Dateien in jedem geöffneten Arbeitsbereich ausgeführt werden.",
- "description": "Erweiterung zum Hinzufügen von Jake-Funktionen in VS Code.",
- "displayName": "Jake-Unterstützung für VS Code",
- "jake.taskDefinition.file.description": "Die Jake-Datei zum Bereitstellen der Aufgabe. Kann ausgelassen werden.",
- "jake.taskDefinition.type.description": "Die anzupassende Jake-Aufgabe."
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-de/translations/extensions/java.i18n.json b/i18n/vscode-language-pack-de/translations/extensions/java.i18n.json
deleted file mode 100644
index 9f6c3eef33..0000000000
--- a/i18n/vscode-language-pack-de/translations/extensions/java.i18n.json
+++ /dev/null
@@ -1,16 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "package": {
- "description": "Bietet Schnipsel, Syntaxhervorhebung, Klammernabgleich und Falten in Java-Dateien.",
- "displayName": "Java-Sprachgrundlagen"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-de/translations/extensions/javascript.i18n.json b/i18n/vscode-language-pack-de/translations/extensions/javascript.i18n.json
deleted file mode 100644
index 86676b7ae4..0000000000
--- a/i18n/vscode-language-pack-de/translations/extensions/javascript.i18n.json
+++ /dev/null
@@ -1,16 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "package": {
- "description": "Bietet Schnipsel, Syntaxhervorhebung, Klammernabgleich und Falten in JavaScript-Dateien.",
- "displayName": "JavaScript-Sprachgrundlagen"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-de/translations/extensions/json-language-features.i18n.json b/i18n/vscode-language-pack-de/translations/extensions/json-language-features.i18n.json
deleted file mode 100644
index c35ef48260..0000000000
--- a/i18n/vscode-language-pack-de/translations/extensions/json-language-features.i18n.json
+++ /dev/null
@@ -1,73 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "client\\dist\\node/jsonClient": {
- "json.clearCache.completed": "Der JSON-Schemacache wurde gelöscht.",
- "json.resolveError": "JSON: Schemaauflösungsfehler",
- "json.schemaResolutionDisabledMessage": "Das Herunterladen von Schemas ist deaktiviert. Klicken Sie, um eine Konfiguration durchzuführen.",
- "json.schemaResolutionErrorMessage": "Das Schema kann nicht aufgelöst werden. Klicken Sie, um es noch mal zu versuchen.",
- "jsonserver.name": "JSON-Sprachserver",
- "schemaDownloadDisabled": "Das Herunterladen von Schemas wird über die Einstellung \"{0}\" deaktiviert.",
- "untitled.schema": "\"{0}\" kann nicht geladen werden."
- },
- "client\\dist\\node/languageStatus": {
- "documentColorsStatusItem.name": "JSON-Farbsymbolstatus",
- "documentSymbolsStatusItem.name": "JSON-Gliederungsstatus",
- "foldingRangesStatusItem.name": "JSON-Faltstatus",
- "openExtension": "Erweiterung öffnen",
- "openSettings": "Einstellungen öffnen",
- "pending.detail": "JSON-Informationen werden geladen.",
- "schema.noSchema": "Für diese Datei ist kein Schema konfiguriert",
- "schema.showdocs": "Weitere Informationen zur JSON-Schemakonfiguration...",
- "schemaFromFolderSettings": "In Arbeitsbereichseinstellungen konfiguriert",
- "schemaFromUserSettings": "In Benutzereinstellungen konfiguriert",
- "schemaFromextension": "Konfiguriert durch Erweiterung: {0}",
- "schemaPicker.title": "JSON-Schemas, die für „{0}“ verwendet werden",
- "status.button.configure": "Konfigurieren",
- "status.error": "Die verwendeten Schemata können nicht berechnet werden.",
- "status.limitedDocumentColors.details": "nur {0} angezeigte Farbdecorators",
- "status.limitedDocumentColors.short": "Eingeschränkte Farbsymbole",
- "status.limitedDocumentSymbols.details": "nur {0} angezeigte Dokumentsymbole",
- "status.limitedDocumentSymbols.short": "Eingeschränkte Gliederung",
- "status.limitedFoldingRanges.details": "nur {0} angezeigte Faltbereiche",
- "status.limitedFoldingRanges.short": "Eingeschränkte Faltbereiche",
- "status.multipleSchema": "Mehrere JSON-Schemas konfiguriert",
- "status.noSchema": "Kein JSON-Schema konfiguriert",
- "status.noSchema.short": "Schemaüberprüfung",
- "status.notJSON": "Kein JSON-Editor",
- "status.openSchemasLink": "Schemata anzeigen",
- "status.singleSchema": "JSON-Schema konfiguriert",
- "status.withSchema.short": "Schema überprüft",
- "status.withSchemas.short": "Schema überprüft",
- "statusItem.name": "JSON-Validierungsstatus"
- },
- "package": {
- "description": "Bietet umfangreiche Sprachunterstützung für JSON-Dateien.",
- "displayName": "JSON-Sprachfeatures",
- "json.clickToRetry": "Klicken Sie, um es noch mal zu versuchen.",
- "json.colorDecorators.enable.deprecationMessage": "Die Einstellung \"json.colorDecorators.enable\" ist veraltet und wurde durch \"editor.colorDecorators\" ersetzt.",
- "json.colorDecorators.enable.desc": "Aktiviert oder deaktiviert Farb-Decorators",
- "json.command.clearCache": "Löschen des Schemacaches",
- "json.enableSchemaDownload.desc": "Sofern aktiviert, können JSON-Schemas aus HTTP- und HTTPS-Speicherorten abgerufen werden.",
- "json.format.enable.desc": "JSON-Standardformatierer aktivieren/deaktivieren",
- "json.format.keepLines.desc": "Behalten Sie bei der Formatierung alle vorhandenen neuen Zeilen bei.",
- "json.maxItemsComputed.desc": "Die maximale Anzahl der berechneten Umrisssymbole und Faltbereiche (aus Leistungsgründen begrenzt).",
- "json.maxItemsExceededInformation.desc": "Hiermit wird eine Benachrichtigung angezeigt, wenn die maximale Anzahl von Gliederungssymbolen und Faltregionen überschritten wird.",
- "json.schemaResolutionErrorMessage": "Das Schema kann nicht aufgelöst werden.",
- "json.schemas.desc": "Hiermit werden Schemas JSON-Dateien im aktuellen Projekt zugeordnet.",
- "json.schemas.fileMatch.desc": "Ein Array von Dateimustern für den Abgleich, wenn JSON-Dateien in Schemas aufgelöst werden. * kann als Platzhalterzeichen verwendet werden. Zudem können Ausschlussmuster definiert werden (mit ! beginnend). Eine Datei gilt als Übereinstimmung, wenn mindestens ein übereinstimmendes Muster vorhanden ist und das letzte übereinstimmende Muster kein Ausschlussmuster ist.",
- "json.schemas.fileMatch.item.desc": "Ein Dateimuster, das \"*\" enthalten kann, zum Abgleich beim Auflösen von JSON-Dateien in Schemas",
- "json.schemas.schema.desc": "Die Schemadefinition für die angegebene URL. Das Schema muss nur angegeben werden, um Zugriffe auf die Schema-URL zu vermeiden.",
- "json.schemas.url.desc": "Eine URL zu einem Schema oder ein relativer Pfad zu einem Schema im aktuellen Verzeichnis",
- "json.tracing.desc": "Verfolgt die Kommunikation zwischen VS Code und JSON-Sprachserver nach.",
- "json.validate.enable.desc": "Aktiviert/deaktiviert die JSON-Überprüfung."
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-de/translations/extensions/json.i18n.json b/i18n/vscode-language-pack-de/translations/extensions/json.i18n.json
deleted file mode 100644
index 980a253110..0000000000
--- a/i18n/vscode-language-pack-de/translations/extensions/json.i18n.json
+++ /dev/null
@@ -1,16 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "package": {
- "description": "Bietet Syntaxhervorhebung und Klammerabgleich in JSON-Dateien.",
- "displayName": "JSON-Sprachgrundlagen"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-de/translations/extensions/less.i18n.json b/i18n/vscode-language-pack-de/translations/extensions/less.i18n.json
deleted file mode 100644
index 7ca2dc63e2..0000000000
--- a/i18n/vscode-language-pack-de/translations/extensions/less.i18n.json
+++ /dev/null
@@ -1,16 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "package": {
- "description": "Bietet Syntaxhervorhebung, Klammernabgleich und Falten in LESS-Dateien.",
- "displayName": "Less-Sprachgrundlagen"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-de/translations/extensions/log.i18n.json b/i18n/vscode-language-pack-de/translations/extensions/log.i18n.json
deleted file mode 100644
index fbc991fe0d..0000000000
--- a/i18n/vscode-language-pack-de/translations/extensions/log.i18n.json
+++ /dev/null
@@ -1,16 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "package": {
- "description": "Bietet Syntaxhervorhebung für Dateien mit .log-Erweiterung.",
- "displayName": "Protokoll"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-de/translations/extensions/lua.i18n.json b/i18n/vscode-language-pack-de/translations/extensions/lua.i18n.json
deleted file mode 100644
index 1dbb57ca87..0000000000
--- a/i18n/vscode-language-pack-de/translations/extensions/lua.i18n.json
+++ /dev/null
@@ -1,16 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "package": {
- "description": "Bietet Syntaxhervorhebung und Klammernabgleich in Lua-Dateien.",
- "displayName": "Lua-Sprachgrundlagen"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-de/translations/extensions/make.i18n.json b/i18n/vscode-language-pack-de/translations/extensions/make.i18n.json
deleted file mode 100644
index 8febaa4a6c..0000000000
--- a/i18n/vscode-language-pack-de/translations/extensions/make.i18n.json
+++ /dev/null
@@ -1,16 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "package": {
- "description": "Bietet Syntaxhervorhebung und Klammernabgleich in Make-Dateien.",
- "displayName": "Make-Sprachgrundlagen"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-de/translations/extensions/markdown-basics.i18n.json b/i18n/vscode-language-pack-de/translations/extensions/markdown-basics.i18n.json
deleted file mode 100644
index 68dd2ffaf6..0000000000
--- a/i18n/vscode-language-pack-de/translations/extensions/markdown-basics.i18n.json
+++ /dev/null
@@ -1,16 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "package": {
- "description": "Bietet Schnipsel und Syntaxhervorhebung für Markdown.",
- "displayName": "Markdown-Sprachgrundlagen"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-de/translations/extensions/markdown-language-features.i18n.json b/i18n/vscode-language-pack-de/translations/extensions/markdown-language-features.i18n.json
deleted file mode 100644
index 63ced443d5..0000000000
--- a/i18n/vscode-language-pack-de/translations/extensions/markdown-language-features.i18n.json
+++ /dev/null
@@ -1,90 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "dist/client": {
- "markdownServer.name": "Markdown Sprachserver"
- },
- "dist/languageFeatures/diagnostics": {
- "ignoreLinksQuickFix.title": "Schließen Sie '{0}' von der Linkvalidierung aus."
- },
- "dist/languageFeatures/fileReferences": {
- "error.noResource": "Fehler beim Suchen nach Dateiverweisen. Es wurde keine Ressource angegeben.",
- "progress.title": "Dateiverweise werden gesucht"
- },
- "dist/preview/documentRenderer": {
- "preview.notFound": "{0} kann nicht gefunden werden.",
- "preview.securityMessage.label": "Sicherheitswarnung – Inhalt deaktiviert",
- "preview.securityMessage.text": "In diesem Dokument wurden einige Inhalte deaktiviert.",
- "preview.securityMessage.title": "Potenziell unsichere Inhalte wurden in der Markdown-Vorschau deaktiviert. Ändern Sie die Sicherheitseinstellung der Markdown-Vorschau, um unsichere Inhalte zuzulassen oder Skripts zu aktivieren."
- },
- "dist/preview/preview": {
- "lockedPreviewTitle": "[Vorschau] {0}",
- "onPreviewStyleLoadError": "'markdown.styles' konnte nicht geladen werden: {0}",
- "preview.clickOpenFailed": "{0} konnte nicht geöffnet werden.",
- "previewTitle": "Vorschau von {0}"
- },
- "dist/preview/security": {
- "disable.description": "Alle Inhalte und Skriptausführung zulassen. Nicht empfohlen.",
- "disable.title": "Deaktivieren",
- "disableSecurityWarning.title": "Vorschau von Sicherheitswarnungen in diesem Arbeitsbereich deaktivieren",
- "enableSecurityWarning.title": "Vorschau von Sicherheitswarnungen in diesem Arbeitsbereich aktivieren",
- "insecureContent.description": "Laden von Inhalten über HTTP aktivieren",
- "insecureContent.title": "Unsicheren Inhalt zulassen",
- "insecureLocalContent.description": "Laden von Inhalten über HTTP von localhost aktivieren",
- "insecureLocalContent.title": "Unsichere lokale Inhalte zulassen",
- "moreInfo.title": "Weitere Informationen",
- "preview.showPreviewSecuritySelector.title": "Sicherheitseinstellungen für die Markdown-Vorschau in diesem Arbeitsbereich auswählen",
- "strict.description": "Nur sicheren Inhalt laden",
- "strict.title": "Strict",
- "toggleSecurityWarning.description": "Hat keinen Einfluss auf die Inhaltssicherheitsebene"
- },
- "package": {
- "configuration.markdown.editor.drop.enabled": "Enable/disable dropping into the markdown editor to insert shift. Requires enabling `#editor.dropIntoEditor.enabled#`.",
- "configuration.markdown.editor.pasteLinks.enabled": "Aktivieren/Deaktivieren des Einfügens von Dateien in einen Markdown-Editor fügt Markdown-Links ein. Erfordert die Aktivierung von `#editor.experimental.pasteActions.enabled#`.",
- "configuration.markdown.experimental.validate.enabled.description": "Aktiviert/deaktiviert alle Fehlerberichte in Markdown-Dateien.",
- "configuration.markdown.experimental.validate.fileLinks.enabled.description": "Überprüfen Sie Links zu anderen Dateien in Markdown-Dateien, z. B. „[link](/path/to/file.md)“. Hiermit wird überprüft, ob die Zieldateien vorhanden sind. Erfordert die Aktivierung von „#markdown.experimental.validate.enabled#“.",
- "configuration.markdown.experimental.validate.fileLinks.markdownFragmentLinks.description": "Überprüfen Sie den Fragmentteil von Links zu Headern in anderen Dateien in Markdowndateien, z. B. \"[link](/path/to/file.md#header)\". Erbt standardmäßig den Einstellungswert von \"#markdown.experimental.validate.fragmentLinks.enabled#\".",
- "configuration.markdown.experimental.validate.fragmentLinks.enabled.description": "Überprüfen Sie Fragmentlinks zu Headern in der aktuellen Markdowndatei, z. B. \"[link](#header)\". Erfordert die Aktivierung von \"#markdown.experimental.validate.enabled#\".",
- "configuration.markdown.experimental.validate.ignoreLinks.description": "Konfigurieren Sie Links, die nicht validiert werden sollen. Zum Beispiel würde „/about“ den Link „[about](/about)“ nicht validieren, während der Glob „/assets/**/*.svg“ es Ihnen ermöglichen würde, die Validierung für jeden Link zu „.svg“-Dateien darunter zu überspringen das `assets`-Verzeichnis.",
- "configuration.markdown.experimental.validate.referenceLinks.enabled.description": "Überprüfen Sie verweisende Links in Markdown-Dateien, z. B. „[link][ref]“. Erfordert die Aktivierung von „#markdown.experimental.validate.enabled#“.",
- "configuration.markdown.links.openLocation.beside": "Öffnen Sie die Links neben dem aktiven Editor.",
- "configuration.markdown.links.openLocation.currentGroup": "Öffnen Sie Links in der aktiven Editor-Gruppe.",
- "configuration.markdown.links.openLocation.description": "Steuert, wo Links in Markdowndateien geöffnet werden sollen.",
- "configuration.markdown.preview.openMarkdownLinks.description": "Steuert, wie Links zu anderen Markdowndateien in der Markdown-Vorschau geöffnet werden sollen.",
- "configuration.markdown.preview.openMarkdownLinks.inEditor": "Links im Editor öffnen",
- "configuration.markdown.preview.openMarkdownLinks.inPreview": "Links in der Markdown-Vorschau öffnen",
- "configuration.markdown.suggest.paths.enabled.description": "Aktivieren/Deaktivieren von Pfadvorschlägen für Markdownlinks",
- "description": "Bietet umfangreiche Sprachunterstützung für Markdown.",
- "displayName": "Markdown-Sprachfeatures",
- "markdown.findAllFileReferences": "Dateiverweise suchen",
- "markdown.preview.breaks.desc": "Legt fest, wie Zeilenumbrüche in der Markdown-Vorschau gerendert werden. Durch eine Festlegung auf TRUE wird \" \" für Zeilenumbrüche innerhalb von Absätzen erstellt.",
- "markdown.preview.doubleClickToSwitchToEditor.desc": "Doppelklicken Sie in die Markdown-Vorschau, um zum Editor zu wechseln.",
- "markdown.preview.fontFamily.desc": "Steuert die Schriftfamilie, die in der Markdown-Vorschau verwendet wird.",
- "markdown.preview.fontSize.desc": "Steuert den Schriftgrad in Pixeln, der in der Markdown-Vorschau verwendet wird.",
- "markdown.preview.lineHeight.desc": "Steuert die Zeilenhöhe, die in der Markdown-Vorschau verwendet wird. Diese Zahl ist relativ zum Schriftgrad.",
- "markdown.preview.linkify": "Aktiviert oder deaktiviert die Konvertierung von URL-ähnlichem Text in Links in der Markdown-Vorschau.",
- "markdown.preview.markEditorSelection.desc": "Hiermit wird die aktuelle Editor-Auswahl in der Markdown-Vorschau markiert.",
- "markdown.preview.refresh.title": "Vorschau aktualisieren",
- "markdown.preview.scrollEditorWithPreview.desc": "Hiermit wird die Ansicht des Editors beim Scrollen in einer Markdown-Vorschau aktualisiert.",
- "markdown.preview.scrollPreviewWithEditor.desc": "Hiermit wird die Ansicht der Vorschau beim Scrollen in einem Markdown-Editor aktualisiert.",
- "markdown.preview.title": "Vorschau öffnen",
- "markdown.preview.toggleLock.title": "Vorschausperre umschalten",
- "markdown.preview.typographer": "Hiermit aktivieren oder deaktivieren Sie sprachneutrale Ersetzungen und die Anpassung von Anführungszeichen in der Markdown-Vorschau.",
- "markdown.previewSide.title": "Vorschau an der Seite öffnen",
- "markdown.showLockedPreviewToSide.title": "Gesperrte Vorschau an der Seite öffnen",
- "markdown.showPreviewSecuritySelector.title": "Sicherheitseinstellungen für Vorschau ändern",
- "markdown.showSource.title": "Quelle anzeigen",
- "markdown.styles.dec": "Eine Liste von URLs oder lokalen Pfaden zu CSS-Stylesheets, die aus der Markdownvorschau verwendet werden sollen. Relative Pfade werden relativ zum im Explorer geöffneten Ordner interpretiert. Wenn kein geöffneter Ordner vorhanden ist, werden sie relativ zum Speicherort der Markdowndatei interpretiert. Alle '\\ müssen als '\\\\' geschrieben werden.",
- "markdown.trace.extension.desc": "Aktiviert die Debugprotokollierung für die Markdownerweiterung.",
- "markdown.trace.server.desc": "Verfolgt die Kommunikation zwischen VS Code und Markdown-Sprachserver nach.",
- "workspaceTrust": "Erforderlich, um Formatvorlagen zu laden, die im Arbeitsbereich konfiguriert sind."
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-de/translations/extensions/markdown-math.i18n.json b/i18n/vscode-language-pack-de/translations/extensions/markdown-math.i18n.json
deleted file mode 100644
index 43c8dddb1d..0000000000
--- a/i18n/vscode-language-pack-de/translations/extensions/markdown-math.i18n.json
+++ /dev/null
@@ -1,17 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "package": {
- "config.markdown.math.enabled": "Aktivieren/Deaktivieren der Renderingberechnung in der integrierten Markdownvorschau.",
- "description": "Fügt Markdown in Notebooks mathematische Unterstützung hinzu.",
- "displayName": "Markdown Math"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-de/translations/extensions/markdown-notebook-math.i18n.json b/i18n/vscode-language-pack-de/translations/extensions/markdown-notebook-math.i18n.json
deleted file mode 100644
index 6203dffdeb..0000000000
--- a/i18n/vscode-language-pack-de/translations/extensions/markdown-notebook-math.i18n.json
+++ /dev/null
@@ -1,16 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "package": {
- "displayName": "Mathematische Ausdrücke für Notebook-Markdown",
- "description": "Bietet umfangreiche Sprachunterstützung für Markdown."
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-de/translations/extensions/merge-conflict.i18n.json b/i18n/vscode-language-pack-de/translations/extensions/merge-conflict.i18n.json
deleted file mode 100644
index 72e3fcb57c..0000000000
--- a/i18n/vscode-language-pack-de/translations/extensions/merge-conflict.i18n.json
+++ /dev/null
@@ -1,35 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "package": {
- "command.accept.all-both": "Alle beide akzeptieren",
- "command.accept.all-current": "Alle aktuellen akzeptieren",
- "command.accept.all-incoming": "Alle eingehenden akzeptieren",
- "command.accept.both": "Beides akzeptieren",
- "command.accept.current": "Aktuelles akzeptieren",
- "command.accept.incoming": "Eingehendes akzeptieren",
- "command.accept.selection": "Auswahl akzeptieren",
- "command.category": "Merge-Konflikt",
- "command.compare": "Aktuellen Konflikt vergleichen",
- "command.next": "Nächster Konflikt",
- "command.previous": "Vorheriger Konflikt",
- "config.autoNavigateNextConflictEnabled": "Gibt an, ob automatisch zum nächsten Mergekonflikt navigiert werden soll, nachdem ein Mergekonflikt behoben wurde.",
- "config.codeLensEnabled": "CodeLens für Mergingkonfliktblöcke im Editor erstellen.",
- "config.decoratorsEnabled": "Decorator-Elemente für Mergingkonfliktblöcke im Editor erstellen.",
- "config.diffViewPosition": "Steuert, wo die Vergleichsansicht beim Vergleich von Änderungen in Zusammenführungskonflikten geöffnet wird.",
- "config.diffViewPosition.below": "Hiermit wird die Vergleichsansicht unterhalb der aktuellen Editorgruppe geöffnet.",
- "config.diffViewPosition.beside": "Hiermit öffnen Sie die Vergleichsansicht neben der aktuellen Editorgruppe.",
- "config.diffViewPosition.current": "Hiermit wird die Vergleichsansicht in der aktuellen Editorgruppe geöffnet.",
- "config.title": "Merge-Konflikt",
- "description": "Hervorhebung und Befehle für Inline-Mergingkonflikte.",
- "displayName": "Merge-Konflikt"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-de/translations/extensions/microsoft-authentication.i18n.json b/i18n/vscode-language-pack-de/translations/extensions/microsoft-authentication.i18n.json
deleted file mode 100644
index 682031e267..0000000000
--- a/i18n/vscode-language-pack-de/translations/extensions/microsoft-authentication.i18n.json
+++ /dev/null
@@ -1,24 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "dist/AADHelper": {
- "pasteCodePlaceholder": "Paste authorization code here...",
- "pasteCodePrompt": "Provide the authorization code to complete the sign in flow.",
- "pasteCodeTitle": "Microsoft Authentication",
- "signOut": "Sie wurden abgemeldet, weil beim Lesen der gespeicherten Authentifizierungsinformationen ein Fehler aufgetreten ist."
- },
- "package": {
- "description": "Microsoft-Authentifizierungsanbieter",
- "displayName": "Microsoft-Konto",
- "signIn": "Anmelden",
- "signOut": "Abmelden"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-de/translations/extensions/ms-vscode.github-browser.i18n.json b/i18n/vscode-language-pack-de/translations/extensions/ms-vscode.github-browser.i18n.json
deleted file mode 100644
index 83877fbf97..0000000000
--- a/i18n/vscode-language-pack-de/translations/extensions/ms-vscode.github-browser.i18n.json
+++ /dev/null
@@ -1,16 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "package": {
- "displayName": "GitHub-Browser",
- "description": "Hiermit wird ein GitHub-Remoterepository durchsucht."
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-de/translations/extensions/ms-vscode.js-debug.i18n.json b/i18n/vscode-language-pack-de/translations/extensions/ms-vscode.js-debug.i18n.json
index e1e53a2c0e..3120373c86 100644
--- a/i18n/vscode-language-pack-de/translations/extensions/ms-vscode.js-debug.i18n.json
+++ b/i18n/vscode-language-pack-de/translations/extensions/ms-vscode.js-debug.i18n.json
@@ -8,281 +8,14 @@
],
"version": "1.0.0",
"contents": {
- "/src/adapter/breakpoints/userDefinedBreakpoint": {
- "breakpoint.provisionalBreakpoint": "Ungebundener Haltepunkt"
- },
- "/src/adapter/console/queryObjectsMessage": {
- "queryObject.couldNotQuery": "Das bereitgestellte Objekt konnte nicht abgefragt werden.",
- "queryObject.errorPreview": "Die Vorschau konnte generiert werden: {0}",
- "queryObject.invalidObject": "Es können nur Objekte abgefragt werden."
- },
- "/src/adapter/console/textualMessage": {
- "console.assert": "Assertionsfehler"
- },
- "/src/adapter/customBreakpoints": {
- "breakpoint.animationFrameFired": "Animationsframe ausgelöst",
- "breakpoint.cancelAnimationFrame": "Animationsframe abbrechen",
- "breakpoint.closeAudioContext": "AudioContext schließen",
- "breakpoint.createAudioContext": "AudioContext erstellen",
- "breakpoint.createCanvasContext": "Canvas-Kontext erstellen",
- "breakpoint.cspViolation": "Von Inhaltssicherheitsrichtlinie blockiertes Skript",
- "breakpoint.cspViolationNamed": "Inhaltssicherheitsrichtlinien-Verstoß \"{0}\"",
- "breakpoint.cspViolationNamedDetails": "Bei Instrumentierungshaltepunkt für Verstöße gegen die Inhaltssicherheitsrichtlinie angehalten. Direktive: \"{0}\".",
- "breakpoint.eventListenerNamed": "Bei Ereignislistener-Haltepunkt \"{0}\" angehalten, ausgelöst für \"{1}\"",
- "breakpoint.instrumentationNamed": "Bei Instrumentierungshaltepunkt \"{0}\" angehalten",
- "breakpoint.requestAnimationFrame": "Animationsframe anfordern",
- "breakpoint.resumeAudioContext": "AudioContext fortsetzen",
- "breakpoint.scriptFirstStatement": "Erste Anweisung in Skript",
- "breakpoint.setInnerHtml": "innerHTML festlegen",
- "breakpoint.setIntervalFired": "setInterval ausgelöst",
- "breakpoint.setTimeoutFired": "setTimeout ausgelöst",
- "breakpoint.suspendAudioContext": "AudioContext anhalten",
- "breakpoint.webglErrorFired": "WebGL-Fehler ausgelöst",
- "breakpoint.webglErrorNamed": "WebGL-Fehler \"{0}\"",
- "breakpoint.webglErrorNamedDetails": "Bei Instrumentierungshaltepunkt für WebGL-Fehler angehalten. Fehler: \"{0}\".",
- "breakpoint.webglWarningFired": "WebGL-Warnung ausgelöst"
- },
- "/src/adapter/debugAdapter": {
- "breakpoint.caughtExceptions": "Abgefangene Ausnahmen",
- "breakpoint.caughtExceptions.description": "Führt bei allen ausgelösten Fehlern zur Unterbrechung, selbst wenn die Fehler später abgefangen werden.",
- "breakpoint.uncaughtExceptions": "Nicht abgefangene Ausnahmen",
- "error.cannotPrettyPrint": "Automatische Strukturierung und Einrückung nicht möglich.",
- "error.sourceContentDidFail": "Quellinhalte können nicht abgerufen werden.",
- "error.sourceNotFound": "Quelle nicht gefunden.",
- "error.variableNotFound": "Variable nicht gefunden."
- },
- "/src/adapter/profiling/basicCpuProfiler": {
- "profile.cpu.description": "Generiert eine .cpuprofile-Datei, die Sie in den Chrome DevTools öffnen können.",
- "profile.cpu.label": "CPU-Profil"
- },
- "/src/adapter/profiling/basicHeapProfiler": {
- "profile.heap.description": "Generiert eine .heapprofile-Datei, die Sie in den Chrome-Entwicklungstools öffnen können.",
- "profile.heap.label": "Heapprofil"
- },
- "/src/adapter/profiling/heapDumpProfiler": {
- "profile.heap.description": "Generiert eine .heapsnapshot-Datei, die Sie in den Chrome-Developer-Tools öffnen können.",
- "profile.heap.label": "Heap-Momentaufnahme"
- },
- "/src/adapter/sources": {
- "source.skipFiles": "Von skipFiles übersprungen"
- },
- "/src/adapter/stackTrace": {
- "scope.block": "Block",
- "scope.catch": "Catch-Block",
- "scope.closure": "Abschluss",
- "scope.closureNamed": "Abschluss ({0})",
- "scope.eval": "Eval",
- "scope.global": "Global",
- "scope.local": "Lokal",
- "scope.module": "Modul",
- "scope.returnValue": "Rückgabewert",
- "scope.script": "Skript",
- "scope.with": "With-Block",
- "smartStepSkipLabel": "Von smartStep übersprungen",
- "source.skipFiles": "Von skipFiles übersprungen"
- },
- "/src/adapter/threads": {
- "error.evaluateDidFail": "Auswertung nicht möglich.",
- "error.evaluateOnAsyncStackFrame": "Auswertung für asynchronen Stapelrahmen nicht möglich.",
- "error.pauseDidFail": "Anhalten nicht möglich.",
- "error.restartFrameAsync": "Asynchroner Rahmen kann nicht neu gestartet werden.",
- "error.resumeDidFail": "Fortsetzen nicht möglich.",
- "error.stackFrameNotFound": "Stapelrahmen nicht gefunden.",
- "error.stepInDidFail": "Einzelschritt nicht möglich.",
- "error.stepOutDidFail": "Rücksprung nicht möglich.",
- "error.stepOverDidFail": "Nächster Schritt nicht möglich.",
- "error.threadNotPaused": "Der Thread wird nicht angehalten.",
- "error.threadNotPausedOnException": "Der Thread wird bei einer Ausnahme nicht angehalten.",
- "error.unknownRestartError": "Rahmen konnte nicht neu gestartet werden",
- "pause.DomBreakpoint": "Bei DOM-Haltepunkt angehalten",
- "pause.assert": "Bei Assert angehalten",
- "pause.breakpoint": "Bei Haltepunkt angehalten",
- "pause.debugCommand": "Bei debug()-Aufruf angehalten",
- "pause.default": "Angehalten",
- "pause.eventListener": "Bei Ereignislistener angehalten",
- "pause.exception": "Bei Ausnahme angehalten",
- "pause.instrumentation": "Bei Instrumentierungshaltepunkt angehalten",
- "pause.oom": "Vor Speicherausnahmefehler angehalten",
- "pause.promiseRejection": "Bei Promise-Ablehnung angehalten",
- "pause.xhr": "Bei XMLHttpRequest oder Fetch angehalten",
- "reason.description.restart": "Bei Frameeintritt angehalten",
- "warnings.handleSourceMapPause.didNotWait": "WARNUNG: Die Verarbeitung von Quellzuordnungen von \"{0}\" hat mehr als {1} ms gedauert. Aus diesem Grund wurde die Ausführung fortgesetzt, ohne auf die Festlegung aller Haltepunkte für das Skript zu warten."
- },
- "/src/adapter/variableStore": {
- "error.customValueDescriptionGeneratorFailed": "{0} (Beschreibung nicht möglich: {1})",
- "error.emptyExpression": "Es darf kein leerer Wert festgelegt werden.",
- "error.invalidExpression": "Ungültiger Ausdruck",
- "error.setVariableDidFail": "Der Variablenwert kann nicht festgelegt werden.",
- "error.unknown": "Unbekannter Fehler",
- "error.variableNotFound": "Variable nicht gefunden"
- },
- "/src/binder": {
- "breakpoint.provisionalBreakpoint": "Ungebundener Haltepunkt"
- },
- "/src/dap/errors": {
- "NVM_HOME.not.found.message": "Das Attribut \"runtimeVersion\" erfordert den Node.js-Versions-Manager \"nvm-windows\" oder \"nvs\".",
- "NVS_HOME.not.found.message": "Für das Attribut \"runtimeVersion\" muss der Node.js-Versions-Manager \"nvs\" oder \"nvm\" installiert sein.",
- "VSND2011": "Das Debugziel im Terminal kann nicht gestartet werden ({0}).",
- "VSND2029": "Umgebungsvariablen können nicht aus Datei geladen werden ({0}).",
- "asyncScopesNotAvailable": "Nicht verfügbare Variablen in asynchronen Stapeln.",
- "breakpointSyntaxError": "Syntaxfehler beim Festlegen des Haltepunkts mit Bedingung \"{0}\" in Zeile {1}: {2}",
- "browserVersionNotFound": "{0}-Version {1} wurde nicht gefunden. Automatisch ermittelte verfügbare Versionen: {2}. Sie können \"runtimeExecutable\" in der Datei \"launch.json\" auf eine dieser Versionen festlegen oder einen absoluten Pfad zur ausführbaren Browserdatei angeben.",
- "error.browserAttachError": "Anfügen an Browser nicht möglich.",
- "error.browserLaunchError": "Der Browser kann nicht gestartet werden: \"{0}\"",
- "error.threadNotFound": "Zielseite nicht gefunden. Möglicherweise müssen Sie Ihren \"urlFilter\" aktualisieren, damit er der Seite entspricht, die Sie debuggen möchten.",
- "invalidHitCondition": "Ungültige Trefferbedingung \"{0}\". Es wurde ein Ausdruck wie \"> 42\" oder \"== 2\" erwartet.",
- "noBrowserInstallFound": "Es wurde keine Installation auf Ihrem Browser gefunden. Versuchen Sie, eine Installation durchzuführen, oder geben Sie einen absoluten Pfad zum Browser in „runtimeExecutable“ in der Datei „launch.json“ an.",
- "noUwpPipeFound": "Es konnte keine Verbindung mit einer Pipe der UWP-Webansicht hergestellt werden. Stellen Sie sicher, dass Ihre Webansicht im Debugmodus gehostet wird und dass „pipeName“ in Ihrer Datei „launch.json“ richtig ist.",
- "profile.error.concurrent": "Beenden Sie das aktuell ausgeführte Profil, bevor Sie ein neues starten.",
- "profile.error.generic": "Fehler beim Übernehmen eines Profils aus dem Ziel.",
- "runtime.node.notfound": "Die Node.js-Binärdatei \"{0}\" wurde nicht gefunden: {1}. Stellen Sie sicher, dass Node.js installiert und in PATH vorhanden ist, oder legen Sie \"runtimeExecutable\" in der Datei \"launch.json\" fest.",
- "runtime.node.outdated": "Die Node-Version in \"{0}\" ist veraltet (Version {1}), es ist mindestens Node 8.x erforderlich.",
- "runtime.version.not.found.message": "Die Node.js-Version {0} wurde nicht mit dem Versions-Manager \"{1}\" installiert.",
- "sourcemapParseError": "Die Quellzuordnung für \"{0}\" konnte nicht gelesen werden: {1}",
- "uwpPipeNotAvailable": "Das Debuggen der UWP-Webansicht ist auf Ihrer Plattform nicht verfügbar."
- },
- "/src/debugServer": {
- "breakpoint.provisionalBreakpoint": "Ungebundener Haltepunkt"
- },
- "/src/targets/browser/browserAttacher": {
- "attach.cannotConnect": "Es kann keine Verbindung mit dem Ziel unter \"{0}\" hergestellt werden: {1}",
- "chrome.targets.placeholder": "Wählen Sie eine Registerkarte"
- },
- "/src/targets/node/nodeAttacher": {
- "node.attach.restart.message": "Die Verbindung mit der zu debuggenden Komponente wurde getrennt. Die Verbindung wird in {0} ms wiederhergestellt.\r\n"
- },
- "/src/targets/node/nodeBinaryProvider": {
- "outOfDate": "{0} Möchten Sie dennoch debuggen?",
- "runtime.node.notfound.enoent": "Der Pfad ist nicht vorhanden.",
- "runtime.node.notfound.spawnErr": "Fehler beim Abrufen der Version: {0}",
- "warning.16bpIssue": "Einige Haltepunkte funktionieren möglicherweise nicht in Ihrer Version von Node.js. Wir empfehlen ein Upgrade auf die neuesten Fehler-, Leistungs- und Sicherheitsfixes. Details: https://aka.ms/AAcsvqm",
- "warning.8outdated": "Sie führen eine veraltete Version von Node.js aus. Wir empfehlen ein Upgrade auf die neuesten Fehler-, Leistungs- und Sicherheitsfixes.",
- "yes": "Ja"
- },
- "/src/ui/autoAttach": {
- "details": "Details"
- },
- "/src/ui/companionBrowserLaunch": {
- "cannotDebugInBrowser": "Von hier aus kann kein Browser im Debugmodus gestartet werden. Öffnen Sie diesen Arbeitsbereich in VS Code auf Ihrem Desktop, um das Debugging zu aktivieren."
- },
- "/src/ui/configuration/chromiumDebugConfigurationProvider": {
- "chrome.launch.name": "Chrome mit \"localhost\" starten",
- "existingBrowser.alert": "Offenbar wird über {0} bereits ein Browser ausgeführt. Schließen Sie ihn vor dem Debuggen, weil VS Code andernfalls möglicherweise keine Verbindung herstellen kann.",
- "existingBrowser.debugAnyway": "Dennoch debuggen",
- "existingBrowser.location.default": "eine alte Debugsitzung",
- "existingBrowser.location.userDataDir": "das konfigurierte userDataDir"
- },
- "/src/ui/configuration/edgeDebugConfigurationProvider": {
- "chrome.launch.name": "Microsoft Edge mit \"Localhost\" starten"
- },
- "/src/ui/configuration/nodeDebugConfigurationProvider": {
- "debug.terminal.label": "JavaScript-Debugterminal",
- "node.launch.currentFile": "Aktuelle Datei ausführen",
- "node.launch.script": "Skript ausführen: {0}"
- },
- "/src/ui/configuration/nodeDebugConfigurationResolver": {
- "cwd.notFound": "Die konfigurierte \"cwd\"- {0} ist nicht vorhanden.",
- "mern.starter.explanation": "Startet die Konfiguration für das erstellte Projekt \"{0}\".",
- "node.launch.config.name": "Programm starten",
- "outFiles.explanation": "Stellt das oder die Globmuster im \"outFiles\"- Attribut so ein, dass sie den generierten JavaScript-Code abdecken.",
- "program.guessed.from.package.json.explanation": "Startet die auf Basis von \"package.json\" erstellte Konfiguration.",
- "program.not.found.message": "Es wurde kein zu debuggendes Programm gefunden"
- },
- "/src/ui/debugLinkUI": {
- "debugLink.invalidUrl": "Die angegebene URL ist ungültig.",
- "debugLink.savePrompt": "Möchten Sie eine Konfiguration in Ihrer launch.json-Datei speichern, um den späteren Zugriff zu vereinfachen?",
- "never": "Nie",
- "no": "Nein",
- "yes": "Ja"
- },
- "/src/ui/debugNpmScript": {
- "debug.npm.noScripts": "In Ihrer package.json-Datei wurden keine npm-Skripts gefunden.",
- "debug.npm.noWorkspaceFolder": "Sie müssen einen Arbeitsbereichsordner öffnen, um npm-Skripts zu debuggen.",
- "debug.npm.notFound.open": "package.json bearbeiten",
- "debug.npm.parseError": "Fehler beim Lesen von {0}: {1}"
- },
- "/src/ui/debugTerminalUI": {
- "terminal.cwdpick": "Aktuelles Arbeitsverzeichnis für neues Terminal auswählen"
- },
- "/src/ui/diagnosticsUI": {
- "inspectSessionEnded": "Anscheinend ist Ihre Debugsitzung bereits beendet. Wiederholen Sie das Debugging, und führen Sie dann den Befehl \"Debug: Diagnose von Haltepunkt-Problemen\" aus.",
- "never": "Nie",
- "notNow": "Jetzt nicht",
- "selectInspectSession": "Wählen Sie die Sitzung aus, die Sie überprüfen möchten:",
- "yes": "Ja"
- },
- "/src/ui/disableSourceMapUI": {
- "always": "Immer",
- "disableSourceMapUi.msg": "Eine Sourcemap verweist auf einen fehlenden Dateipfad. Möchten Sie stattdessen die kompilierte Version debuggen?",
- "no": "Nein",
- "yes": "Ja"
- },
- "/src/ui/edgeDevToolOpener": {
- "selectEdgeToolSession": "Wählen Sie die Seite aus, auf der Sie die DevTools öffnen möchten."
- },
- "/src/ui/linkedBreakpointLocationUI": {
- "ignore": "Ignorieren",
- "readMore": "Weitere Informationen"
- },
- "/src/ui/longPredictionUI": {
- "longPredictionWarning.disable": "Nicht mehr anzeigen",
- "longPredictionWarning.message": "Es dauert einen Moment, Ihre Haltepunkte zu konfigurieren. Sie können den Vorgang beschleunigen, indem Sie die das outFiles-Attribut in der Datei \"launch.json\" aktualisieren.",
- "longPredictionWarning.noFolder": "Kein Ordner des Arbeitsbereichs geöffnet.",
- "longPredictionWarning.open": "\"launch.json\" öffnen"
- },
- "/src/ui/processPicker": {
- "cannot.enable.debug.mode.error": "An den Prozess anhängen: Der Debugmodus für den Prozess \"{0}\" kann nicht aktiviert werden ({1}).",
- "pickNodeProcess": "Node.js-Prozess zum Anfügen auswählen",
- "process.id.error": "An Prozess anfügen: \"{0}\" scheint keine Prozess-ID zu sein.",
- "process.id.port.signal": "Prozess-ID: {0}, Debugport: {1} ({2})",
- "process.id.signal": "Prozess-ID: {0} ({1})",
- "process.picker.error": "Fehler bei der Prozessauswahl ({0})"
- },
- "/src/ui/profiling/breakpointTerminationCondition": {
- "breakpointTerminationWarnConfirm": "Verstanden!",
- "breakpointTerminationWarnSlow": "Die Profilerstellung mit aktivierten Haltepunkten kann sich auf die Leistung Ihres Codes auswirken. Es kann nützlich sein, Ihre Ergebnisse mit den Beendigungsbedingungen \"duration\" oder \"manual\" zu validieren.",
- "profile.termination.breakpoint.description": "Bis zum Erreichen eines bestimmten Haltepunkts ausführen",
- "profile.termination.breakpoint.label": "Haltepunkt auswählen"
- },
- "/src/ui/profiling/durationTerminationCondition": {
- "profile.termination.duration.description": "Für einen bestimmten Zeitraum ausführen",
- "profile.termination.duration.inputTitle": "Profildauer",
- "profile.termination.duration.invalidFormat": "Geben Sie eine Zahl ein.",
- "profile.termination.duration.invalidLength": "Geben Sie eine Zahl ein, die größer ist als 1.",
- "profile.termination.duration.label": "Dauer",
- "profile.termination.duration.placeholder": "Profildauer in Sekunden, z. B. 5"
- },
- "/src/ui/profiling/manualTerminationCondition": {
- "profile.termination.duration.description": "Bis zur manuellen Beendigung ausführen",
- "profile.termination.duration.label": "Manuell"
- },
- "/src/ui/profiling/uiProfileManager": {
- "no": "Nein",
- "profile.alreadyRunning": "Es wird bereits eine Sitzung zur Profilerstellung ausgeführt. Möchten Sie diese Sitzung beenden und eine neue Sitzung starten?",
- "profile.sessionState": "Profilerstellung",
- "profile.status.default": "$(loading~spin) Klicken Sie, um die Profilerstellung zu beenden.",
- "profile.status.multiSession": "$(loading~spin) Klicken Sie, um die Profilerstellung ({0} Sitzungen) zu beenden.",
- "profile.status.single": "$(loading~spin) Klicken Sie, um die Profilerstellung ({0}) zu beenden.",
- "profile.termination.title": "Dauer der Profilausführung:",
- "profile.type.title": "Profiltyp:",
- "yes": "Ja"
- },
- "/src/ui/profiling/uiProfileSession": {
- "profile.saving": "Speichern",
- "progress.profile.start": "Profil wird gestartet...",
- "progress.profile.stop": "Profil wird beendet..."
- },
- "/src/ui/terminalLinkHandler": {
- "cantOpenChromeOnWeb": "Von hier aus kann kein Browser im Debugmodus gestartet werden. Wenn Sie diese Webseite debuggen möchten, öffnen Sie diesen Arbeitsbereich über VS Code auf Ihrem Desktop.",
- "terminalLinkHover.debug": "URL debuggen"
- },
- "/src/vsDebugServer": {
- "session.rootSessionName": "JavaScript-Debugadapter"
- },
"package": {
- "add.browser.breakpoint": "Browserhaltepunkt hinzufügen",
+ "add.eventListener.breakpoint": "Ereignislistener-Haltepunkte umschalten",
+ "add.xhr.breakpoint": "XHR/Fetch-Breakpoint hinzufügen",
"attach.node.process": "An Node-Prozess anfügen",
"base.cascadeTerminateToConfigurations.label": "Eine Liste der Debugsitzungen, die bei Beenden dieser Debugsitzung ebenfalls beendet werden.",
+ "base.enableDWARF.label": "Schaltet um, ob der Debugger versucht, DWARF-Debugsymbole aus WebAssembly zu lesen, was ressourcenintensiv sein kann. Erfordert die Erweiterung \"ms-vscode.wasm-debugging\", um zu funktionieren.",
+ "breakpoint.xhr.any": "Beliebiger XHR/Fetch",
+ "breakpoint.xhr.contains": "Unterbrechen, wenn URL enthält:",
"browser.address.description": "IP-Adresse oder Hostname, auf die bzw. den der Browser lauscht, für den ein Debugging durchgeführt wird.",
"browser.attach.port.description": "Port, der beim Remotedebugging des Browsers verwendet wird, angegeben als \"--remote-debugging-port\" beim Starten des Browsers.",
"browser.baseUrl.description": "Die Basis-URL zum Auflösen von Pfaden (baseUrl). baseURL wird beim Zuordnen von URLs zu den Dateien auf dem Datenträger gekürzt. Der Standardwert ist die Start-URL-Domäne.",
@@ -294,7 +27,9 @@
"browser.env.description": "Optionales Wörterbuch der Umgebungs-Schlüssel-/Wert-Paare für den Browser.",
"browser.file.description": "Eine lokale HTML-Datei zum Öffnen im Browser",
"browser.includeDefaultArgs.description": "Gibt an, ob Standardargumente für den Browserstart (zum Deaktivieren von Features, die das Debuggen erschweren können) beim Start einbezogen werden.",
+ "browser.includeLaunchArgs.description": "Erweitert: Gibt an, ob standardmäßige Start-/Debuggenargumente im Browser festgelegt sind. Der Debugger geht davon aus, dass der Browser das Pipedebuggen verwendet, wie es z. B. mit „--remote-debugging-pipe“ bereitgestellt wird.",
"browser.inspectUri.description": "Format zum Neuschreiben von inspectUri: Es handelt sich um eine Vorlagenzeichenfolge, die Schlüssel in \"{curlyBraces}\" interpoliert. Verfügbare Schlüssel:\r\n – \"url.*\" ist die analysierte Adresse der derzeit ausgeführten Anwendung, zum Beispiel \"{url.port}\" oder \"{url.hostname}\".\r\n – \"port\" ist der Debugport, an dem Chrome lauscht.\r\n – \"browserInspectUri\" ist der Inspektor-URI im gestarteten Browser\r\n – \"browserInspectUriPath\" ist der Pfad des Inspektor-URIs im gestarteten Browser (z. B. \"/devtools/browser/e9ec0098-306e-472a-8133-5e42488929c2\").\r\n – \"wsProtocol\" ist das WebSocket-Protokoll, auf das hingewiesen wird. Dies ist auf \"wss\" festgelegt, wenn es sich bei der ursprünglichen URL um eine https-URL handelt. Andernfalls it es auf ws\" festgelegt.\r\n",
+ "browser.killBehavior.description": "Konfiguriert, wie Browserprozesse beim Beenden der Sitzung mit „cleanUp: wholeBrowser“ beendet werden. Mögliche Optionen:\r\n\r\n– forceful (Standardeinstellung): Der Abbruch der Prozessstruktur wird erzwungen. Unter POSIX wird SIGKILL gesendet, unter Windows „taskkill.exe/F“.\r\n– polite: Die Prozessstruktur wird ordnungsgemäß beendet. Prozesse ohne Standardverhalten werden nach dem Herunterfahren möglicherweise weiterhin ausgeführt. Unter POSIX wird SIGTERM gesendet, unter Windows „taskkill.exe“ ohne „/F(force)-Flag“.\r\n– none: Es erfolgt keine Beendigung.",
"browser.launch.port.description": "Port, auf dem der Browser lauscht. Der Standardwert lautet \"0\" und führt dazu, dass das Browserdebugging über Pipes durchgeführt wird. Diese Option bietet im Allgemeinen mehr Sicherheit und sollte verwendet werden – es sei denn, Sie müssen den Browser über ein anderes Tool anfügen.",
"browser.pathMapping.description": "Eine Zuordnung von URLs/Pfaden zu lokalen Ordnern, um Skripts im Browser in Skripts auf dem Datenträger aufzulösen",
"browser.perScriptSourcemaps.description": "Gibt an, ob Skripts einzeln mit eindeutigen Sourcemaps geladen werden, die den Basisnamen der Quelldatei enthalten. Diese Option kann festgelegt werden, um die Sourcemap-Verarbeitung beim Umgang mit zahlreichen kleinen Skripts zu optimieren. Wenn diese Option auf \"Automatisch\" festgelegt ist, werden bekannte Fälle ermittelt, in denen diese Verarbeitung angemessen ist.",
@@ -305,7 +40,7 @@
"browser.runtimeExecutable.description": "Entweder \"canary\", \"stable\", \"custom\" oder der Pfad zur ausführbaren Browserdatei. \"custom\" steht für einen benutzerdefinierten Wrapper, einen benutzerdefinierten Build oder eine CHROME_PATH-Umgebungsvariable.",
"browser.runtimeExecutable.edge.description": "Entweder \"canary\", \"stable\", \"dev\", \"custom\" oder der Pfad zur ausführbaren Browserdatei. Mit \"custom\" wird ein benutzerdefinierter Wrapper, ein benutzerdefinierter Build oder die EDGE_PATH-Umgebungsvariable angegeben.",
"browser.server.description": "Konfiguriert einen Webserver für den Start. Nimmt dieselbe Konfiguration wie die Startaufgabe \"node\".",
- "browser.skipFiles.description": "Ein Array aus Datei- oder Ordnernamen oder Pfadglobs, die beim Debuggen übersprungen werden sollen.",
+ "browser.skipFiles.description": "Ein Array von Datei- oder Ordnernamen oder Pfadglobs, das bzw. die beim Debuggen übersprungen werden soll. Sternmuster und Negationen sind zulässig, z. B. „[\"**/node_modules/**\", \"!**/node_modules/my-module/**\"]“",
"browser.smartStep.description": "Automatisch nicht zugeordnete Zeilen in Sourcemapdateien durchlaufen, z.B. von TypeScript automatisch generierter Code beim Herunterkompilieren von async/await oder anderen Features.",
"browser.sourceMapPathOverrides.description": "Eine Reihe von Zuordnungen zum Umschreiben der Speicherorte von Quelldateien gemäß Sourcemap in die Speicherorte auf dem Datenträger. Ausführliche Informationen finden Sie in der README-Datei.",
"browser.sourceMapRenames.description": "Gibt an, ob die Zuordnung \"names\" in Quellzuordnungen verwendet werden soll. Dies erfordert das Anfordern von Quellinhalten, was bei bestimmten Debuggern langsam sein kann.",
@@ -330,6 +65,12 @@
"commands.callersRemoveAll.label": "Alle ausgeschlossenen Aufrufer entfernen",
"commands.disableSourceMapStepping.label": "Source Mapped Stepping deaktivieren",
"commands.enableSourceMapStepping.label": "Source Mapped Stepping aktivieren",
+ "commands.networkClear.label": "Netzwerkprotokoll löschen",
+ "commands.networkCopyURI.label": "Anforderungs-ID kopieren",
+ "commands.networkOpenBody.label": "Antworttext öffnen",
+ "commands.networkOpenBodyInHexEditor.label": "Antworttext im Hexadezimal-Editor öffnen",
+ "commands.networkReplayXHR.label": "Wiedergabeanforderung",
+ "commands.networkViewRequest.label": "Anforderung als cURL anzeigen",
"configuration.autoAttachMode": "Konfiguriert, welche Prozesse automatisch angefügt und gedebuggt werden, wenn \"#debug.node.autoAttach#\" aktiviert ist. Ein mit dem Flag \"--inspect\" gestarteter Node-Prozess wird unabhängig von dieser Einstellung immer angefügt.",
"configuration.autoAttachMode.always": "Hiermit wird automatisch an jeden Node.js-Prozess angefügt, der im Terminal gestartet wird.",
"configuration.autoAttachMode.disabled": "Automatisches Anfügen ist deaktiviert und wird nicht in der Statusleiste angezeigt.",
@@ -340,6 +81,7 @@
"configuration.breakOnConditionalError": "Gibt an, ob der Vorgang beendet werden soll, wenn bedingte Haltepunkte einen Fehler auslösen.",
"configuration.debugByLinkOptions": "Optionen, die verwendet werden, wenn beim Debuggen innerhalb des Terminals auf geöffnete Links geklickt wird. Legen Sie diese Einstellung auf \"false\" fest, um dieses Verhalten zu deaktivieren.",
"configuration.defaultRuntimeExecutables": "Der Standardwert für \"runtimeExecutable\", der für Startkonfigurationen verwendet wird, falls nicht angegeben. Dies kann zum Konfigurieren von benutzerdefinierten Pfaden für Node.js- oder Browserinstallationen verwendet werden.",
+ "configuration.enableNetworkView": "Aktiviert die experimentelle Netzwerkansicht für Ziele, die sie unterstützen.",
"configuration.npmScriptLensLocation": "Wo in Ihren npm-Skripts \"Ausführen\" und \"Debuggen\" für CodeLens angezeigt werden soll. Mögliche Einstellungen sind \"Alle\" Skripts, \"Oben\" im Skriptabschnitt oder \"Keine\".",
"configuration.pickAndAttachOptions": "Standardoptionen, die beim Debuggen eines Prozesses über den Befehl \"Debuggen: An Node.js-Prozess anfügen\" verwendet werden",
"configuration.resourceRequestOptions": "Anforderungsoptionen, die beim Laden von Ressourcen wie z. B. Quellzuordnungsdateien im Debugger verwendet werden sollen. Diese müssen möglicherweise konfiguriert werden, wenn Ihre Quellzuordnungsdateien eine Authentifizierung erfordern oder ein selbstsigniertes Zertifikat verwenden. Optionen werden zum Erstellen einer Anforderung mithilfe der [„got“](https://github.com/sindresorhus/got)-Bibliothek verwendet.\r\n\r\nEin gängiger Fall ist beispielsweise das Deaktivieren der Zertifikatüberprüfung durch Übergabe von „{ „https\": { „rejectUnauthorized\": false } }“.",
@@ -361,7 +103,7 @@
"debug.terminal.welcome": "[JavaScript-Debugterminal](command:extension.js-debug.createDebuggerTerminal)\r\n\r\nMit dem JavaScript-Debugterminal können Sie Node.js-Prozesse debuggen, die in der Befehlszeile ausgeführt werden.",
"debug.terminal.welcomeWithLink": "[JavaScript-Debugterminal](command:extension.js-debug.createDebuggerTerminal)\r\n\r\nMit dem JavaScript-Debugterminal können Sie Node.js-Prozesse debuggen, die in der Befehlszeile ausgeführt werden.\r\n\r\n[Debug-URL](command:extension.js-debug.debugLink)",
"debug.unverifiedBreakpoints": "Einige Ihrer Breakpoints konnten nicht gesetzt werden. Wenn Sie ein Problem haben, können Sie [Fehler bei Ihrer Startkonfiguration beheben](command:extension.js-debug.createDiagnostics).",
- "debugLink.label": "Link öffnen",
+ "debugLink.label": "Verknüpfung öffnen",
"edge.address.description": "Beim Debuggen von Webansichten die IP-Adresse oder der Hostname, auf die bzw. den die Webansicht lauscht. Sofern nicht festgelegt, wird eine automatische Erkennung durchgeführt.",
"edge.attach.description": "An eine Microsoft Edge-Instanz anfügen, die sich bereits im Debugmodus befindet",
"edge.attach.label": "Edge: Anfügen",
@@ -371,6 +113,7 @@
"edge.port.description": "Beim Debuggen von Webansichten der Port, auf den die Webansicht lauscht. Sofern nicht festgelegt, wird eine automatische Erkennung durchgeführt.",
"edge.useWebView.attach.description": "Ein Objekt, das den „pipeName“ einer Debug-Pipe für eine von UWP gehostete Webview2 enthält. Dies ist das \"MyTestSharedMemory\" beim Erstellen der Pipe \"\\\\.\\pipe\\LOCAL\\MyTestSharedMemory\"",
"edge.useWebView.launch.description": "Bei „true“ behandelt der Debugger die ausführbare Laufzeitdatei als Hostanwendung, die eine WebView enthält, mit der Sie den Inhalt des WebView-Skripts debuggen können.",
+ "edit.xhr.breakpoint": "XHR/Fetch-Breakpoint bearbeiten",
"enableContentValidation.description": "Aktiviert oder deaktiviert die Überprüfung, ob die Inhalte von Dateien auf dem Datenträger mit denen der zur Laufzeit geladenen Dateien übereinstimmt. Dies ist in einer Vielzahl von Szenarios hilfreich und in einigen Fällen erforderlich, kann jedoch Probleme verursachen, wenn Sie beispielsweise eine serverseitige Transformation von Skripts durchführen.",
"errors.timeout": "{0}: Timeout nach {1} ms",
"extension.description": "Erweiterung zum Debuggen von Node.js-Programmen und Chrome.",
@@ -382,13 +125,15 @@
"extensionHost.launch.rendererDebugOptions": "Chrome-Startoptionen, die beim Anfügen an den Rendererprozess mit \"debugWebviews\" oder \"debugWebWorkerHost\" verwendet werden.",
"extensionHost.launch.runtimeExecutable.description": "Absoluter Pfad zu VS Code.",
"extensionHost.launch.stopOnEntry.description": "Hiermit wird der Erweiterungshost nach dem Start automatisch beendet.",
+ "extensionHost.launch.testConfiguration": "Pfad zu einer Testkonfigurationsdatei für die [Test-CLI](https://code.visualstudio.com/api/working-with-extensions/testing-extension#quick-setup-the-test-cli).",
+ "extensionHost.launch.testConfigurationLabel": "Eine einzelne Konfiguration, die aus der Datei ausgeführt werden soll. Wenn keine Angabe erfolgt, werden Sie möglicherweise zur Auswahl aufgefordert.",
"extensionHost.snippet.launch.description": "VS Code-Erweiterung im Debugmodus starten",
"extensionHost.snippet.launch.label": "VS Code-Erweiterungsentwicklung",
"getDiagnosticLogs.label": "Diagnose-JS-Debug-Protokolle speichern",
"longPredictionWarning.disable": "Nicht mehr anzeigen",
"longPredictionWarning.message": "Es dauert einen Moment, Ihre Haltepunkte zu konfigurieren. Sie können den Vorgang beschleunigen, indem Sie die das outFiles-Attribut in der Datei \"launch.json\" aktualisieren.",
"longPredictionWarning.noFolder": "Kein Ordner des Arbeitsbereichs geöffnet.",
- "longPredictionWarning.open": "\"launch.json\" öffnen",
+ "longPredictionWarning.open": "launch.json öffnen",
"node.address.description": "Die TCP/IP-Adresse des zu debuggenden Prozesses. Der Standardwert ist \"localhost\".",
"node.attach.attachExistingChildren.description": "Gibt an, ob versucht werden soll, bereits erstellte untergeordnete Prozesse anzufügen.",
"node.attach.attachSpawnedProcesses.description": "Ob Umgebungsvariablen im angefügten Prozess festgelegt werden sollen, um generierte untergeordnete Elemente nachzuverfolgen.",
@@ -399,9 +144,11 @@
"node.attachSimplePort.description": "Sofern festgelegt, erfolgt über den angegebenen Port eine Anfügung an den Prozess. Dies ist in der Regel für Node.js-Programme nicht mehr erforderlich, und es besteht nicht mehr die Möglichkeit zur Problembehandlung untergeordneter Prozesse. In Szenarien mit Deno- und Docker-Starts kann die Anfügung jedoch nützlich sein. Bei Festlegung auf 0 wird ein Port nach dem Zufallsprinzip ausgewählt, und \"--inspect-brk\" wird den Startargumenten automatisch hinzugefügt.",
"node.console.title": "Node-Debugging-Konsole",
"node.disableOptimisticBPs.description": "Hiermit werden Haltepunkte in einer beliebigen Datei erst festgelegt, wenn eine Sourcemap für diese Datei geladen wurde.",
+ "node.enableTurboSourcemaps.description": "Konfiguriert, ob ein neuer, schnellerer Mechanismus für die Sourcemap-Ermittlung verwendet werden soll",
+ "node.experimentalNetworking.description": "Experimentelle Inspektion in Node.js aktivieren. Bei der Einstellung `auto` ist dies für Versionen von Node.js aktiviert, die es unterstützen. Sie kann auf `on` oder `off` gesetzt werden, um sie explizit zu aktivieren oder zu deaktivieren.",
"node.killBehavior.description": "Konfiguriert, wie Debugprozesse beim Sitzungsende beendet wird. Mögliche Optionen:\r\n\r\n– forceful (Standardeinstellung): Der Abbruch der Prozessstruktur wird erzwungen. Unter POSIX wird SIGKILL gesendet, unter Windows „taskkill.exe/F\".\r\n– polite: Die Prozessstruktur wird ordnungsgemäß beendet. Prozesse ohne Standardverhalten werden nach dem Herunterfahren möglicherweise weiterhin ausgeführt. Unter POSIX wird SIGTERM gesendet, unter Windows „taskkill.exe“ ohne „/F(force)-Flag“.\r\n– none: Es erfolgt keine Beendigung.",
"node.label": "Node.js",
- "node.launch.args.description": "Command line arguments passed to the program.\r\n\r\nCan be an array of strings or a single string. When the program is launched in a terminal, setting this property to a single string will result in the arguments not being escaped for the shell.",
+ "node.launch.args.description": "Befehlszeilenargumente, die an das Programm übergeben werden.\r\n\r\nKann ein Array aus Zeichenfolgen oder eine einzelne Zeichenfolge sein. Wenn das Programm in einem Terminal gestartet wird, führt das Festlegen dieser Eigenschaft auf eine einzelne Zeichenfolge dazu, dass die Argumente für die Shell nicht escaped werden.",
"node.launch.autoAttachChildProcesses.description": "Debugger automatisch an neue Unterprozesse anfügen.",
"node.launch.config.name": "Starten",
"node.launch.console.description": "Startort des Debugziels",
@@ -426,8 +173,9 @@
"node.localRoot.description": "Pfad zum lokalen Verzeichnis mit dem Programm.",
"node.pauseForSourceMap.description": "Gibt an, ob für jedes eingehende Skript gewartet werden soll, bis die Quellzuordnungsdateien geladen wurden. Dieser Vorgang führt zu einem Leistungsaufwand und ist möglicherweise sicher deaktiviert, wenn er auf einem Datenträger ausgeführt wird, solange \"rootPath\" nicht deaktiviert ist.",
"node.port.description": "Debugport für das Anfügen. Der Standardwert ist 9229.",
- "node.processattach.config.name": "An Prozess anfügen",
+ "node.processattach.config.name": "An den Prozess anhängen",
"node.profileStartup.description": "Sofern TRUE, beginnt die Profilerstellung, sobald der Prozess gestartet wird",
+ "node.remote.host.header.description": "Expliziter Hostheader, der beim Herstellen einer Verbindung mit dem Websocket des Inspektors verwendet werden soll. Wenn keine Angabe erfolgt, wird der Hostheader auf \"localhost\" festgelegt. Dies ist nützlich, wenn der Inspektor hinter einem Proxy ausgeführt wird, der nur einen bestimmten Hostheader akzeptiert.",
"node.remoteRoot.description": "Absoluter Pfad zum Remoteverzeichnis mit dem Programm.",
"node.resolveSourceMapLocations.description": "Eine Liste von Minimatchmustern für Speicherorte (Ordner und URLs), in denen Quellzuordnungsdateien zum Auflösen lokaler Dateien verwendet werden können. Damit lassen sich vermeiden, dass der Code aus externen Quellzuordnungsdateien falsch umgebrochen wird. Sie können Mustern ein \"!\" voranstellen, um sie auszuschließen. Die Einstellung kann auf ein leeres Array oder NULL gesetzt werden, um Einschränkungen zu vermeiden.",
"node.showAsyncStacks.description": "Hiermit werden die asynchronen Aufrufe angezeigt, die zur aktuellen Aufrufliste geführt haben.",
@@ -462,8 +210,9 @@
"pretty.print.script": "Schöndruck zum Debuggen",
"profile.start": "Leistungsprofil übernehmen",
"profile.stop": "Leistungsprofil beenden",
- "remove.browser.breakpoint": "Browserhaltepunkt entfernen",
- "remove.browser.breakpoint.all": "Alle Browserhaltepunkte entfernen",
+ "remove.eventListener.breakpoint.all": "Alle Ereignislistener-Haltepunkte entfernen",
+ "remove.xhr.breakpoint": "XHR/Fetch-Breakpoint entfernen",
+ "remove.xhr.breakpoint.all": "Alle XHR/Fetch-Breakpoints entfernen",
"requestCDPProxy.label": "CDP-Proxy für Debugsitzung anfordern",
"skipFiles.description": "Ein Array für Globmuster für Dateien, die beim Debuggen übersprungen werden. Das Muster \"/**\" stimmt mit allen internen Node.js-Modulen überein.",
"smartStep.description": "Hiermit wird automatisch der generierte Code durchlaufen, der nicht der ursprünglichen Quelle zugeordnet werden kann.",
@@ -481,6 +230,230 @@
"trace.logFile.description": "Konfiguriert, wo auf dem Datenträger Protokolle geschrieben werden.",
"trace.stdio.description": "Gibt an, ob Ablaufverfolgungsdaten aus der gestarteten Anwendung oder dem gestarteten Browser zurückgegeben werden sollen.",
"workspaceTrust.description": "Um Code in diesem Arbeitsbereich zu debuggen, ist eine Vertrauensstellung erforderlich."
+ },
+ "bundle": {
+ "A profiling session is already running, would you like to stop it and start a new session?": "Es wird bereits eine Sitzung zur Profilerstellung ausgeführt. Möchten Sie diese Sitzung beenden und eine neue Sitzung starten?",
+ "Add XHR Breakpoint": "XHR-Breakpoint hinzufügen",
+ "Add new URL...": "Neue URL hinzufügen...",
+ "Adjust glob pattern(s) in the 'outFiles' attribute so that they cover the generated JavaScript.": "Stellt das oder die Globmuster im \"outFiles\"- Attribut so ein, dass sie den generierten JavaScript-Code abdecken.",
+ "Always": "Immer",
+ "Always in this Workspace": "Immer in diesem Arbeitsbereich",
+ "An error occurred taking a profile from the target.": "Fehler beim Übernehmen eines Profils aus dem Ziel.",
+ "Animation Frame Fired": "Animationsframe ausgelöst",
+ "Any XHR or fetch": "Beliebiger XHR oder Fetch",
+ "Assertion failed": "Assertionsfehler",
+ "Attach to process: '{0}' doesn't look like a process id.": "An Prozess anfügen: \"{0}\" scheint keine Prozess-ID zu sein.",
+ "Attach to process: cannot enable debug mode for process '{0}' ({1}).": "An den Prozess anhängen: Der Debugmodus für den Prozess \"{0}\" kann nicht aktiviert werden ({1}).",
+ "Attribute 'runtimeVersion' requires Node.js version manager 'nvm-windows' or 'nvs'.": "Das Attribut \"runtimeVersion\" erfordert den Node.js-Versions-Manager \"nvm-windows\" oder \"nvs\".",
+ "Attribute 'runtimeVersion' requires Node.js version manager 'nvs', 'nvm' or 'fnm' to be installed.": "Für das Attribut \"runtimeVersion\" muss der Node.js-Versions-Manager \"nvs\", \"nvm\" oder \"fnm\" installiert sein.",
+ "Attribute 'runtimeVersion' with a flavor/architecture requires 'nvs' to be installed.": "Für das Attribut \"runtimeVersion\" mit einer Variante/Architektur muss \"nvs\" installiert sein.",
+ "Bidder Bidding Phase Start": "Beginn der Angebotsphase des Kaufinteressenten",
+ "Bidder Reporting Phase Start": "Beginn der Berichterstellungsphase des Kaufinteressenten",
+ "Block": "Block",
+ "Break when URL Contains": "Unterbrechen, wenn URL enthält",
+ "Breaks on all throw errors, even if they're caught later.": "Führt bei allen ausgelösten Fehlern zur Unterbrechung, selbst wenn die Fehler später abgefangen werden.",
+ "Breaks only on errors or promise rejections that are not handled.": "Bricht nur bei Fehlern oder Zusageverweigerungen ab, die nicht behandelt werden.",
+ "Browser connection failed, will retry: {0}": "Fehler bei der Browserverbindung. Es wird erneut versucht: {0}",
+ "CPU Profile": "CPU-Profil",
+ "CPU profile saved as \"{0}\" in your workspace folder": "CPU-Profil, das als „{0}“ in Ihrem Arbeitsbereichsordner gespeichert wurde",
+ "CSP violation \"{0}\"": "Inhaltssicherheitsrichtlinien-Verstoß \"{0}\"",
+ "Can't find Node.js binary \"{0}\": {1}. Make sure Node.js is installed and in your PATH, or set the \"runtimeExecutable\" in your launch.json": "Die Node.js-Binärdatei \"{0}\" wurde nicht gefunden: {1}. Stellen Sie sicher, dass Node.js installiert und in PATH vorhanden ist, oder legen Sie \"runtimeExecutable\" in der Datei \"launch.json\" fest.",
+ "Can't load environment variables from file ({0}).": "Umgebungsvariablen können nicht aus Datei geladen werden ({0}).",
+ "Cancel Animation Frame": "Animationsframe abbrechen",
+ "Cannot connect to the target at {0}: {1}": "Es kann keine Verbindung mit dem Ziel unter \"{0}\" hergestellt werden: {1}",
+ "Cannot find `{0}` installed in {1}": "In {1} installierte {0} wurde nicht gefunden.",
+ "Cannot find a program to debug": "Es wurde kein zu debuggendes Programm gefunden",
+ "Cannot find test configuration with label `{0}`, got: {1}": "Die Testkonfiguration mit der Bezeichnung „{0}“ wurde nicht gefunden. Es wurde Folgendes abgerufen: {1}",
+ "Cannot launch debug target in terminal ({0}).": "Das Debugziel im Terminal kann nicht gestartet werden ({0}).",
+ "Cannot restart asynchronous frame": "Asynchroner Rahmen kann nicht neu gestartet werden.",
+ "Cannot set an empty value": "Es darf kein leerer Wert festgelegt werden.",
+ "Catch Block": "Catch-Block",
+ "Caught Exceptions": "Abgefangene Ausnahmen",
+ "Close AudioContext": "AudioContext schließen",
+ "Closure": "Abschluss",
+ "Closure ({0})": "Abschluss ({0})",
+ "Console profile started": "Konsolenprofil wurde gestartet",
+ "Could not connect to any UWP Webview pipe. Make sure your webview is hosted in debug mode, and that the `pipeName` in your `launch.json` is correct.": "Es konnte keine Verbindung mit einer Pipe der UWP-Webansicht hergestellt werden. Stellen Sie sicher, dass Ihre Webansicht im Debugmodus gehostet wird und dass „pipeName“ in Ihrer Datei „launch.json“ richtig ist.",
+ "Could not find a location for the variable": "Für die Variable wurde kein Speicherort gefunden.",
+ "Could not query the provided object": "Das bereitgestellte Objekt konnte nicht abgefragt werden.",
+ "Could not read source map for {0}: {1}": "Die Quellzuordnung für \"{0}\" konnte nicht gelesen werden: {1}",
+ "Could not read {0}: {1}": "Fehler beim Lesen von {0}: {1}",
+ "Create AudioContext": "AudioContext erstellen",
+ "Create canvas context": "Canvaskontext erstellen",
+ "Debug Anyway": "Dennoch debuggen",
+ "Debug URL": "URL debuggen",
+ "Details": "Details",
+ "Don't show again": "Nicht mehr anzeigen",
+ "Duration": "Laufzeit",
+ "Duration of Profile": "Laufzeit des Profils",
+ "Edit XHR Breakpoint": "XHR-Breakpoint bearbeiten",
+ "Edit package.json": "package.json bearbeiten",
+ "Enables Node.js [auto attach]({0}) debugging in \"{1}\" mode/{Locked='[auto attach]({0})'}the 2nd placeholder is the setting value": "Aktiviert das Debuggen des Node.js-Features [auto attach]({0}) im Modus \"{1}\".",
+ "Enter a URL or a pattern to match": "URL oder Muster für Vergleich eingeben",
+ "Eval": "Auswerten",
+ "Frame could not be restarted": "Rahmen konnte nicht neu gestartet werden",
+ "Generates a .cpuprofile file you can open in VS Code or the Edge/Chrome devtools": "Generiert eine .cpuprofile-Datei, die Sie in den VS Code oder Edge/Chrome DevTools öffnen können.",
+ "Generates a .heapprofile file you can open in VS Code or the Edge/Chrome devtools": "Generiert eine HEAPPROFILE-Datei, die Sie in den VS Code oder Edge/Chrome DevTools öffnen können.",
+ "Generates a .heapsnapshot file you can open in VS Code or the Edge/Chrome devtools": "Generiert eine HEAPSNAPSHOT-Datei, die Sie in den VS Code oder Edge/Chrome DevTools öffnen können.",
+ "Global": "Global",
+ "Globals": "Global",
+ "Got it!": "Verstanden!",
+ "Heap Profile": "Heapprofil",
+ "Heap Snapshot": "Heapmomentaufnahme",
+ "How long to run the profile": "Dauer der Profilausführung",
+ "Ignore": "Ignorieren",
+ "Installation complete! The extension will be used after you restart your debug session.": "Installation abgeschlossen! Die Erweiterung wird nach dem Neustart der Debugsitzung verwendet.",
+ "Installing the DWARF debugger...": "Der DWARF-Debugger wird Installiert...",
+ "Invalid expression": "Ungültiger Ausdruck",
+ "Invalid hit condition \"{0}\". Expected an expression like \"> 42\" or \"== 2\".": "Ungültige Trefferbedingung \"{0}\". Es wurde ein Ausdruck wie \"> 42\" oder \"== 2\" erwartet.",
+ "It looks like a browser is already running from {0}. Please close it before trying to debug, otherwise VS Code may not be able to connect to it.": "Offenbar wird über {0} bereits ein Browser ausgeführt. Schließen Sie ihn vor dem Debuggen, weil VS Code andernfalls möglicherweise keine Verbindung herstellen kann.",
+ "It looks like your debug session has already ended. Try debugging again, then run the \"Debug: Diagnose Breakpoint Problems\" command.": "Anscheinend ist Ihre Debugsitzung bereits beendet. Wiederholen Sie das Debugging, und führen Sie dann den Befehl \"Debug: Diagnose von Haltepunkt-Problemen\" aus.",
+ "It's taking a while to configure your breakpoints. You can speed this up by updating the 'outFiles' in your launch.json.": "Es dauert einen Moment, Ihre Haltepunkte zu konfigurieren. Sie können den Vorgang beschleunigen, indem Sie die das outFiles-Attribut in der Datei \"launch.json\" aktualisieren.",
+ "JavaScript Debug Terminal": "JavaScript Debug-Terminal",
+ "JavaScript debug adapter": "JavaScript-Debugadapter",
+ "Launch Chrome against localhost": "Chrome mit \"localhost\" starten",
+ "Launch Edge against localhost": "Microsoft Edge mit \"Localhost\" starten",
+ "Launch Program": "Programm starten",
+ "Launch configuration created based on 'package.json'.": "Startet die auf Basis von \"package.json\" erstellte Konfiguration.",
+ "Launch configuration for '{0}' project created.": "Startet die Konfiguration für das erstellte Projekt \"{0}\".",
+ "Local": "Lokal",
+ "Locals": "Lokal",
+ "Lost connection to debugee, reconnecting in {0}ms\r\n": "Die Verbindung mit der zu debuggenden Komponente wurde getrennt. Die Verbindung wird in {0} ms wiederhergestellt.\r\n",
+ "Manual": "Manuell",
+ "Missing source information. Did you set \"originalUrl\" or \"source\"?": "Fehlende Quellinformationen. Haben Sie \"originalUrl\" oder \"source\" festgelegt?",
+ "Module": "Modul",
+ "Networking not available.": "Netzwerk nicht verfügbar.",
+ "Never": "Nie",
+ "No": "Nein",
+ "No npm scripts found in the workspace folder.": "Im Arbeitsbereichsordner wurden keine npm-Skripts gefunden.",
+ "No npm scripts found in your package.json": "In Ihrer package.json-Datei wurden keine npm-Skripts gefunden.",
+ "No package.json files found in your workspace.": "In Ihrem Arbeitsbereich wurden keine package.json-Dateien gefunden.",
+ "No workspace folder open.": "Kein Ordner des Arbeitsbereichs geöffnet.",
+ "Node Attributes": "Knotenattribute",
+ "Node.js version '{0}' not installed using version manager {1}.": "Die Node.js-Version {0} wurde nicht mit dem Versions-Manager \"{1}\" installiert.",
+ "Not Now": "Nicht jetzt",
+ "Only objects can be queried": "Es können nur Objekte abgefragt werden.",
+ "Open launch.json": "launch.json öffnen",
+ "Output has been truncated to the first {0} characters. Run `{1}` to copy the full output.": "Die Ausgabe wurde auf die ersten {0} Zeichen abgeschnitten. Führen Sie \"{1}\" aus, um die vollständige Ausgabe zu kopieren.",
+ "Parameters": "Parameter",
+ "Paused": "Angehalten",
+ "Paused before Out Of Memory exception": "Vor Speicherausnahmefehler angehalten",
+ "Paused on Content Security Policy violation instrumentation breakpoint, directive \"{0}\"": "Bei Instrumentierungshaltepunkt für Verstöße gegen die Inhaltssicherheitsrichtlinie angehalten. Direktive: \"{0}\".",
+ "Paused on DOM breakpoint": "Bei DOM-Haltepunkt angehalten",
+ "Paused on WebGL Error instrumentation breakpoint, error \"{0}\"": "Bei Instrumentierungshaltepunkt für WebGL-Fehler angehalten. Fehler: \"{0}\".",
+ "Paused on XMLHttpRequest or fetch": "Bei XMLHttpRequest oder Fetch angehalten",
+ "Paused on assert": "Bei Assert angehalten",
+ "Paused on breakpoint": "Bei Haltepunkt angehalten",
+ "Paused on debug() call": "Bei debug()-Aufruf angehalten",
+ "Paused on debugger statement": "Bei Debuggeranweisung angehalten",
+ "Paused on event listener": "Bei Ereignislistener angehalten",
+ "Paused on event listener breakpoint \"{0}\", triggered on \"{1}\"": "Bei Ereignislistener-Haltepunkt \"{0}\" angehalten, ausgelöst für \"{1}\"",
+ "Paused on exception": "Bei Ausnahme angehalten",
+ "Paused on frame entry": "Bei Frameeintritt angehalten",
+ "Paused on instrumentation breakpoint": "Bei Instrumentierungshaltepunkt angehalten",
+ "Paused on instrumentation breakpoint \"{0}\"": "Bei Instrumentierungshaltepunkt \"{0}\" angehalten",
+ "Paused on {0}": "Angehalten bei {0}",
+ "Pick Breakpoint": "Haltepunkt auswählen",
+ "Pick the node.js process to attach to": "Node.js-Prozess zum Anfügen auswählen",
+ "Please enter a number": "Geben Sie eine Zahl ein.",
+ "Please enter a number greater than 1": "Geben Sie eine Zahl ein, die größer ist als 1.",
+ "Please stop the running profile before starting a new one.": "Beenden Sie das aktuell ausgeführte Profil, bevor Sie ein neues starten.",
+ "Process picker failed ({0})": "Fehler bei der Prozessauswahl ({0})",
+ "Profile duration in seconds, e.g \"5\"": "Profildauer in Sekunden, z. B. 5",
+ "Profiling": "Profilerstellung",
+ "Profiling with breakpoints enabled can change the performance of your code. It can be useful to validate your findings with the \"duration\" or \"manual\" termination conditions.": "Die Profilerstellung mit aktivierten Haltepunkten kann sich auf die Leistung Ihres Codes auswirken. Es kann nützlich sein, Ihre Ergebnisse mit den Beendigungsbedingungen \"duration\" oder \"manual\" zu validieren.",
+ "Read More": "Weitere Informationen",
+ "Request Animation Frame": "Animationsframe anfordern",
+ "Resume AudioContext": "AudioContext fortsetzen",
+ "Return value": "Rückgabewert",
+ "Run Current File": "Aktuelle Datei ausführen",
+ "Run Node.js tool": "Node.js-Tool ausführen",
+ "Run Script: {0}": "Skript ausführen: {0}",
+ "Run Script: {0} ({1})": "Skript ausführen: {0} ({1})",
+ "Run for a specific amount of time": "Für einen bestimmten Zeitraum ausführen",
+ "Run until a specific breakpoint is hit": "Bis zum Erreichen eines bestimmten Haltepunkts ausführen",
+ "Run until manually stopped": "Bis zur manuellen Beendigung ausführen",
+ "Runs a Node.js command-line installed in the workspace node_modules.": "Führt eine Node.js Befehlszeile aus, die im Arbeitsbereich node_modules installiert ist.",
+ "Saving": "Wird gespeichert",
+ "Script": "Skript",
+ "Script Blocked by Content Security Policy": "Von Inhaltssicherheitsrichtlinie blockiertes Skript",
+ "Script First Statement": "Erste Anweisung im Skript",
+ "Select a tab": "Registerkarte wählen",
+ "Select a tool to run": "Ein auszuführendes Tool auswählen",
+ "Select current working directory for new terminal": "Aktuelles Arbeitsverzeichnis für neues Terminal auswählen",
+ "Select test configuration to run": "Wählen Sie die auszuführende Testkonfiguration aus.",
+ "Select the page where you want to open the devtools": "Wählen Sie die Seite aus, auf der Sie die DevTools öffnen möchten.",
+ "Select the session you want to inspect:": "Wählen Sie die Sitzung aus, die Sie überprüfen möchten:",
+ "Seller Reporting Phase Start": "Beginn der Berichterstellungsphase der Verkäufers",
+ "Seller Scoring Phase Start": "Beginn der Bewertungsphase des Verkäufers",
+ "Set innerHTML": "innerHTML festlegen",
+ "Skipped by skipFiles": "Von skipFiles übersprungen",
+ "Skipped by smartStep": "Von smartStep übersprungen",
+ "Some breakpoints might not work in your version of Node.js. We recommend upgrading for the latest bug, performance, and security fixes. Details: https://aka.ms/AAcsvqm": "Einige Haltepunkte funktionieren möglicherweise nicht in Ihrer Version von Node.js. Wir empfehlen ein Upgrade auf die neuesten Fehler-, Leistungs- und Sicherheitsfixes. Details: https://aka.ms/AAcsvqm",
+ "Source not a source map": "Die Quelle ist keine Quellzuordnungsdatei",
+ "Source not found": "Quelle nicht gefunden.",
+ "Stack frame not found": "Stapelrahmen nicht gefunden.",
+ "Starting profile...": "Profil wird gestartet...",
+ "Stopping profile...": "Profil wird beendet...",
+ "Suspend AudioContext": "AudioContext anhalten",
+ "Syntax error setting breakpoint with condition {0} on line {1}: {2}": "Syntaxfehler beim Festlegen des Haltepunkts mit Bedingung \"{0}\" in Zeile {1}: {2}",
+ "Target page not found. You may need to update your \"urlFilter\" to match the page you want to debug.": "Zielseite nicht gefunden. Möglicherweise müssen Sie Ihren \"urlFilter\" aktualisieren, damit er der Seite entspricht, die Sie debuggen möchten.",
+ "The Node version in \"{0}\" is outdated (version {1}), we require at least Node 8.x.": "Die Node-Version in \"{0}\" ist veraltet (Version {1}), es ist mindestens Node 8.x erforderlich.",
+ "The URL provided is invalid": "Die angegebene URL ist ungültig.",
+ "The browser process exited with code {0} before connecting to the debug server. Make sure the `runtimeExecutable` is configured correctly and that it can run without errors.": "Der Browserprozess wurde mit Code {0} beendet, bevor eine Verbindung mit dem Debugserver hergestellt wurde. Stellen Sie sicher, dass \"runtimeExecutable\" ordnungsgemäß konfiguriert ist und fehlerfrei ausgeführt werden kann.",
+ "The configured `cwd` {0} does not exist.": "Die konfigurierte \"cwd\"- {0} ist nicht vorhanden.",
+ "The configured `cwd` {0} is not a folder.": "Das konfigurierte \"cwd\" {0} ist kein Ordner.",
+ "This is a missing file path referenced by a sourcemap. Would you like to debug the compiled version instead?": "Eine Sourcemap verweist auf einen fehlenden Dateipfad. Möchten Sie stattdessen die kompilierte Version debuggen?",
+ "Thread is not paused": "Der Thread wird nicht angehalten.",
+ "Thread is not paused on exception": "Der Thread wird bei einer Ausnahme nicht angehalten.",
+ "Thread not found": "Thread nicht gefunden.",
+ "Type of profile": "Profiltyp",
+ "URL contains \"{0}\"": "Die URL enthält \"{0}\"",
+ "UWP webview debugging is not available on your platform.": "Das Debuggen der UWP-Webansicht ist auf Ihrer Plattform nicht verfügbar.",
+ "Unable to attach to browser": "Anfügen an Browser nicht möglich.",
+ "Unable to evaluate": "Auswertung nicht möglich.",
+ "Unable to evaluate on async stack frame": "Auswertung für asynchronen Stapelrahmen nicht möglich.",
+ "Unable to find an installation of the browser on your system. Try installing it, or providing an absolute path to the browser in the \"runtimeExecutable\" in your launch.json.": "Es wurde keine Installation auf Ihrem Browser gefunden. Versuchen Sie, eine Installation durchzuführen, oder geben Sie einen absoluten Pfad zum Browser in „runtimeExecutable“ in der Datei „launch.json“ an.",
+ "Unable to find {0} version {1}. Available auto-discovered versions are: {2}. You can set the \"runtimeExecutable\" in your launch.json to one of these, or provide an absolute path to the browser executable.": "{0}-Version {1} wurde nicht gefunden. Automatisch ermittelte verfügbare Versionen: {2}. Sie können \"runtimeExecutable\" in der Datei \"launch.json\" auf eine dieser Versionen festlegen oder einen absoluten Pfad zur ausführbaren Browserdatei angeben.",
+ "Unable to launch browser: \"{0}\"": "Der Browser kann nicht gestartet werden: \"{0}\"",
+ "Unable to pause": "Anhalten nicht möglich.",
+ "Unable to pretty print": "Automatische Strukturierung und Einrückung nicht möglich.",
+ "Unable to resume": "Fortsetzen nicht möglich.",
+ "Unable to retrieve source content": "Quellinhalte können nicht abgerufen werden.",
+ "Unable to set variable value": "Der Variablenwert kann nicht festgelegt werden.",
+ "Unable to step in": "Einzelschritt nicht möglich.",
+ "Unable to step next": "Nächster Schritt nicht möglich.",
+ "Unable to step out": "Rücksprung nicht möglich.",
+ "Unbound breakpoint": "Ungebundener Haltepunkt",
+ "Uncaught Exceptions": "Nicht abgefangene Ausnahmen",
+ "Unknown error": "Unbekannter Fehler.",
+ "VS Code can provide better debugging experience for WebAssembly via \"DWARF Debugging\" extension. Would you like to install it?/\"DWARF Debugging\" is the extension name and should not be localized.": "VS Code kann über die DWARF-Debugerweiterung eine bessere Debugoberfläche für WebAssembly bereitstellen. Möchten Sie sie installieren?",
+ "Variable not found": "Variable nicht gefunden",
+ "Variables not available in async stacks": "Nicht verfügbare Variablen in asynchronen Stapeln.",
+ "WARNING: Processing source-maps of {0} took longer than {1} ms so we continued execution without waiting for all the breakpoints for the script to be set.": "WARNUNG: Die Verarbeitung von Quellzuordnungen von \"{0}\" hat mehr als {1} ms gedauert. Aus diesem Grund wurde die Ausführung fortgesetzt, ohne auf die Festlegung aller Haltepunkte für das Skript zu warten.",
+ "We can't launch a browser in debug mode from here. If you want to debug this webpage, open this workspace from VS Code on your desktop.": "Von hier aus kann kein Browser im Debugmodus gestartet werden. Wenn Sie diese Webseite debuggen möchten, öffnen Sie diesen Arbeitsbereich über VS Code auf Ihrem Desktop.",
+ "We can't launch a browser in debug mode from here. Open this workspace in VS Code on your desktop to enable debugging.": "Von hier aus kann kein Browser im Debugmodus gestartet werden. Öffnen Sie diesen Arbeitsbereich in VS Code auf Ihrem Desktop, um das Debugging zu aktivieren.",
+ "WebGL Error Fired": "WebGL-Fehler ausgelöst",
+ "WebGL Warning Fired": "WebGL-Warnung ausgelöst",
+ "With Block": "With-Block",
+ "Would you like to save a configuration in your launch.json for easy access later?": "Möchten Sie eine Konfiguration in Ihrer launch.json-Datei speichern, um den späteren Zugriff zu vereinfachen?",
+ "XHR/Fetch URLs": "XHR/Fetch-URLs",
+ "Yes": "Ja",
+ "You may install the `{}` module via npm for enhanced WebAssembly debugging": "Sie können das {}-Modul über npm installieren, um erweitertes WebAssembly-Debuggen zu ermöglichen.",
+ "You need to open a workspace folder to debug npm scripts.": "Sie müssen einen Arbeitsbereichsordner öffnen, um npm-Skripts zu debuggen.",
+ "You're running an outdated version of Node.js. We recommend upgrading for the latest bug, performance, and security fixes.": "Sie führen eine veraltete Version von Node.js aus. Wir empfehlen ein Upgrade auf die neuesten Fehler-, Leistungs- und Sicherheitsfixes.",
+ "an old debug session": "eine alte Debugsitzung",
+ "breakpoint.provisionalBreakpoint": "breakpoint.provisionalBreakpoint",
+ "path does not exist": "Der Pfad ist nicht vorhanden.",
+ "process id: {0} ({1})": "Prozess-ID: {0} ({1})",
+ "process id: {0}, debug port: {1} ({2})": "Prozess-ID: {0}, Debugport: {1} ({2})",
+ "setInterval fired": "setInterval ausgelöst",
+ "setTimeout fired": "setTimeout ausgelöst",
+ "the configured userDataDir": "das konfigurierte userDataDir",
+ "{0} (couldn't describe: {1})": "{0} (Beschreibung nicht möglich: {1})",
+ "{0} Click to Stop Profiling": "{0}Klicken Sie, um die Profilerstellung zu beenden",
+ "{0} Click to Stop Profiling ({1} sessions)": "{0} Klicken Sie hier, um die Profilerstellung zu beenden ({1}Sitzungen)",
+ "{0} Click to Stop Profiling ({1})": "{0}Klicken Sie, um die Profilerstellung zu beenden ({1})"
}
}
}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-de/translations/extensions/ms-vscode.node-debug.i18n.json b/i18n/vscode-language-pack-de/translations/extensions/ms-vscode.node-debug.i18n.json
deleted file mode 100644
index e7c7028a89..0000000000
--- a/i18n/vscode-language-pack-de/translations/extensions/ms-vscode.node-debug.i18n.json
+++ /dev/null
@@ -1,183 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "dist/node/extension/autoAttach": {
- "process.with.pid.label": "Automatisch angefügt ({0})"
- },
- "dist/node/extension/cluster": {
- "child.process.with.pid.label": "Untergeordneter Prozess \"{0}\""
- },
- "dist/node/extension/configurationProvider": {
- "NVM_DIR.not.found.message": "Das Attribut \"runtimeVersion\" erfordert den Node.js-Versions-Manager \"nvm\" oder \"nvs\".",
- "NVM_HOME.not.found.message": "Das Attribut \"runtimeVersion\" erfordert den Node.js-Versions-Manager \"nvm-windows\" oder \"nvs\".",
- "NVS_HOME.not.found.message": "Das Attribut \"runtimeVersion\" erfordert den Node.js-Versions-Manager \"nvs\".",
- "mern.starter.explanation": "Startet die Konfiguration für das erstellte Projekt \"{0}\".",
- "node.launch.config.name": "Programm starten",
- "outFiles.explanation": "Stellt das oder die Globmuster im \"outFiles\"- Attribut so ein, dass sie den generierten JavaScript-Code abdecken.",
- "program.guessed.from.package.json.explanation": "Startet die auf Basis von \"package.json\" erstellte Konfiguration.",
- "program.not.found.message": "Es wurde kein zu debuggendes Programm gefunden",
- "runtime.version.not.found.message": "Die Node.js-Version \"{0}\" ist für \"{1}\" nicht installiert.",
- "useWslDeprecationWarning.doNotShowAgain": "Nicht mehr anzeigen",
- "useWslDeprecationWarning.title": "Das Attribut \"useWSL\" ist veraltet. Verwenden Sie stattdessen die Erweiterung \"Remote WSL\". Klicken Sie [hier]({0}), um weitere Informationen zu erhalten."
- },
- "dist/node/extension/processPicker": {
- "cannot.enable.debug.mode.error": "An den Prozess anhängen: Der Debugmodus für den Prozess \"{0}\" kann nicht aktiviert werden ({1}).",
- "pickNodeProcess": "Node.js-Prozess zum Anfügen auswählen",
- "pid.error": "An Prozess anfügen: Der Prozess \"{0}\" kann nicht in den Debugmodus gesetzt werden.",
- "process.id.error": "An Prozess anfügen: \"{0}\" scheint keine Prozess-ID zu sein.",
- "process.id.port": "Prozess-ID: {0}, Debugport: {1}",
- "process.id.port.legacy": "Prozess-ID: {0}, Debugport: {1} (Legacy-Protokoll)",
- "process.id.port.signal": "Prozess-ID: {0}, Debugport: {1} ({2})",
- "process.id.signal": "Prozess-ID: {0} ({1})",
- "process.picker.error": "Fehler bei der Prozessauswahl ({0})"
- },
- "dist/node/extension/protocolDetection": {
- "protocol.switch.legacy.detected": "Debugging mit Legacy-Protokoll, da es erkannt wurde.",
- "protocol.switch.legacy.version": "Node.js {0} wurde erkannt. Deswegen erfolgt das Debuggen mit dem Legacyprotokoll.",
- "protocol.switch.unknown.error": "Das Debugging erfolgt mit dem Inspektorprotokoll, weil die Node.js-Version nicht ermittelt werden konnte ({0})."
- },
- "dist/node/nodeDebug": {
- "VSND2001": "Die Runtime \"{0}\" wurde nicht in PATH gefunden. Stellen Sie sicher, dass \"{0}\" installiert ist.",
- "VSND2002": "Das Programm \"{0}\" kann nicht gestartet werden. Möglicherweise kann das Problem durch Konfigurieren von Quellzuordnungsdateien behoben werden.",
- "VSND2003": "Das Programm \"{0}\" kann nicht gestartet werden. Möglicherweise kann das Problem durch Festlegen des Attributs \"{1}\" behoben werden.",
- "VSND2009": "Das Programm \"{0}\" kann nicht gestartet werden, weil das zugehörige JavaScript nicht gefunden wurde.",
- "VSND2010": "Es kann keine Verbindung mit dem Laufzeitprozess hergestellt werden (Ursache: {0}).",
- "VSND2011": "Das Debugziel im Terminal kann nicht gestartet werden ({0}).",
- "VSND2015": "Die Anforderung \"{_request}\" wurde abgebrochen, weil Node.js nicht reagiert.",
- "VSND2016": "Node.js\" hat auf die Anforderung \"{_request}\" nicht innerhalb einer angemessenen Zeitspanne geantwortet.",
- "VSND2017": "Das Debugziel kann nicht gestartet werden ({0}).",
- "VSND2018": "Es ist keine Aufrufliste verfügbar ({_command}: {_error}).",
- "VSND2019": "Das interne Modul {0} wurde nicht gefunden.",
- "VSND2022": "Keine Aufrufliste verfügbar, weil das Programm außerhalb von JavaScript angehalten wurde.",
- "VSND2023": "Es ist keine Aufrufliste verfügbar.",
- "VSND2028": "Unbekannter Konsolentyp \"{0}\".",
- "VSND2029": "Umgebungsvariablen können nicht aus Datei geladen werden ({0}).",
- "VSND2033": "Es kann keine Verbindung mit der Runtime hergestellt werden. Stellen Sie sicher, dass für die Runtime der Debugmodus \"legacy\" festgelegt ist.",
- "VSND2034": "Über das Protokoll \"legacy\" kann keine Verbindung mit der Runtime hergestellt werden. Versuchen Sie, das Protokoll \"inspector\" zu verwenden.",
- "anonymous.function": "(anonyme Funktion)",
- "attribute.path.not.absolute": "Das Attribut \"{0}\" ist nicht absolut ({1}). Erwägen Sie das Hinzufügen von \"{2}\" als Präfix, um ein absolutes Attribut zu erhalten.",
- "attribute.path.not.exist": "Das Attribut \"{0}\" ist nicht vorhanden ({1}).",
- "attribute.wls.not.exist": "Die Installation des Windows-Subsystems für Linux wurde nicht gefunden.",
- "eval.invalid.expression": "Ungültiger Ausdruck: \"{0}\"",
- "eval.not.available": "Nicht verfügbar",
- "exception.paused.promise.rejection": "Bei Promise-Rejection angehalten",
- "exception.promise.rejection": "Zusageablehnung",
- "exception.promise.rejection.text": "Zusageablehnung ({0})",
- "exceptions.all": "Alle Ausnahmen",
- "exceptions.rejects": "Zusageablehnungen",
- "exceptions.uncaught": "Nicht abgefangene Ausnahmen",
- "file.on.disk.changed": "Nicht überprüft, weil sich die Datei auf dem Datenträger geändert hat. Starten Sie die Debugsitzung neu.",
- "more.information": "Weitere Informationen",
- "node.console.title": "Node-Debugging-Konsole",
- "origin.core.module": "Schreibgeschütztes Kernmodul",
- "origin.from.node": "Schreibgeschützter Inhalt aus Node.js",
- "origin.from.remote.node": "Schreibgeschützter Inhalt aus Remote-Node.js.",
- "origin.inlined.source.map": "Schreibgeschützter Inlineinhalt aus Quellzuordnungsdatei",
- "program.path.case.mismatch.warning": "Der Programmpfad verwendet eine andere Groß-/Kleinschreibung als die Datei auf dem Datenträger. Dies kann dazu führen, dass Haltepunkte nicht wirksam sind.",
- "reason.description.breakpoint": "Beim Haltepunkt angehalten",
- "reason.description.debugger_statement": "Bei Debuggeranweisung angehalten",
- "reason.description.entry": "Bei Eintrag angehalten",
- "reason.description.exception": "Bei Ausnahme angehalten",
- "reason.description.restart": "Bei Frameeintritt angehalten",
- "reason.description.step": "Bei Schritt angehalten",
- "reason.description.user_request": "Bei Benutzeranforderung angehalten",
- "scope.block": "Block",
- "scope.catch": "Catch",
- "scope.closure": "Closure",
- "scope.exception": "Ausnahme",
- "scope.global": "GLOBAL",
- "scope.local": "LOCAL",
- "scope.local.with.count": "Lokal ({0} von {1})",
- "scope.script": "Skript",
- "scope.unknown": "Unbekannter Bereichstyp: {0}",
- "scope.with": "mit",
- "setVariable.error": "Einstellungswert nicht unterstützt.",
- "source.not.found": "Inhalt konnte nicht abgerufen werden.",
- "source.skipFiles": "Aufgrund von \"skipFiles\" übersprungen",
- "source.smartstep": "Aufgrund von \"smartStep\" übersprungen",
- "sourcemapping.fail.message": "Der Haltepunkt wurde ignoriert, weil der generierte Code nicht gefunden wurde (Problem mit Quellzuordnungsdatei?)."
- },
- "dist/node/nodeV8Protocol": {
- "not.connected": "Keine Verbindung mit Runtime.",
- "runtime.timeout": "Timeout nach {0} ms",
- "runtime.unresponsive": "Abgebrochen, weil Node.js nicht reagiert."
- },
- "package": {
- "attach.node.process": "An Node-Prozess anfügen (Legacy)",
- "debug.node.showUseWslIsDeprecatedWarning.description": "Steuert, ob eine Warnung angezeigt werden soll, wenn das Attribut \"useWSL\" verwendet wird.",
- "extension.description": "Unterstützung für das Node.js-Debugging (Versionen vor 8.0)",
- "launch.args.description": "Befehlszeilenargumente, die an das Programm übergeben werden.",
- "node.address.description": "Die TCP/IP-Adresse des zu debuggenden Prozesses (nur für Node.js >= 5.0). Der Standardwert ist \"localhost\".",
- "node.attach.config.name": "Anfügen",
- "node.attach.processId.description": "Die ID des Prozesses für das Anfügen.",
- "node.disableOptimisticBPs.description": "Hiermit werden Haltepunkte in einer beliebigen Datei erst festgelegt, wenn eine Sourcemap für diese Datei geladen wurde.",
- "node.label": "Node.js (Legacy)",
- "node.launch.autoAttachChildProcesses.description": "Debugger automatisch an neue Unterprozesse anfügen.",
- "node.launch.config.name": "Starten",
- "node.launch.console.description": "Startort des Debugziels",
- "node.launch.console.externalTerminal.description": "Ein externes Terminal, das über die Benutzereinstellungen konfiguriert werden kann",
- "node.launch.console.integratedTerminal.description": "Das integrierte Terminal von VS Code",
- "node.launch.console.internalConsole.description": "Die Debugging-Konsole von VS Code (die das Lesen von Eingaben von einem Programm nicht unterstützt)",
- "node.launch.cwd.description": "Absoluter Pfad zum Arbeitsverzeichnis des Programms, für das ein Debugging durchgeführt werden soll.",
- "node.launch.env.description": "Umgebungsvariablen, die an das Programm übergeben werden. Durch den Wert NULL wird die Variable aus der Umgebung entfernt.",
- "node.launch.envFile.description": "Absoluter Pfad zu einer Datei mit Umgebungsvariablendefinitionen.",
- "node.launch.externalConsole.deprecationMessage": "Das Attribut \"externalConsole\" ist veraltet. Verwenden Sie stattdessen \"console\".",
- "node.launch.outputCapture.description": "Hiermit wird angegeben, wo Ausgabemeldungen erfasst werden: Debug-API oder stdout/stderr-Streams.",
- "node.launch.program.description": "Der absolute Pfad zum Programm. Der generierte Wert wird anhand von \"package.json\" und geöffneter Dateien geschätzt. Bearbeiten Sie dieses Attribut.",
- "node.launch.runtimeArgs.description": "Optionale Argumente, die an die ausführbare Datei der Runtime übergeben werden.",
- "node.launch.runtimeExecutable.description": "Die Runtime, die verwendet werden soll: Geben Sie entweder einen absoluten Pfad oder den Namen einer im Pfad verfügbaren Runtime an. Wenn keine Angabe erfolgt, wird \"node\" angenommen.",
- "node.launch.runtimeVersion.description": "Die Version der node-Runtime, die verwendet werden soll. Benötigt \"nvm\".",
- "node.launch.useWSL.deprecation": "\"useWSL\" ist veraltet und wird demnächst nicht mehr unterstützt. Verwenden Sie stattdessen die Erweiterung \"Remote – WSL\".",
- "node.launch.useWSL.description": "Verwenden Sie das Windows-Subsystem für Linux.",
- "node.localRoot.description": "Pfad zum lokalen Verzeichnis mit dem Programm.",
- "node.port.description": "Der Debugport zum Anfügen. Der Standardwert ist 5858.",
- "node.processattach.config.name": "An den Prozess anhängen",
- "node.protocol.auto.description": "Versuchen, das beste Protokoll automatisch zu ermitteln, wobei \"inspector\" für das Starten von Node 8.0 und höher ausgewählt wird",
- "node.protocol.description": "Zu verwendendes Debugging-Protokoll für Node.js",
- "node.protocol.inspector.description": "Neues Protokoll, das von Node.js-Versionen vor 6.3 unterstützt wird",
- "node.protocol.legacy.description": "Altes Protokoll, das von Node.js-Versionen vor 8.0 unterstützt wird",
- "node.remoteRoot.description": "Absoluter Pfad zum Remoteverzeichnis mit dem Programm.",
- "node.restart.description": "Hiermit wird die Sitzung neu gestartet, nachdem Node.js beendet wurde.",
- "node.showAsyncStacks.description": "Zeigt die asynchronen Aufrufe an, die zur aktuellen Aufrufliste geführt haben. Nur Protokoll \"inspector\".",
- "node.snippet.attach.description": "An ein ausgeführtes Node-Programm anfügen",
- "node.snippet.attach.label": "Node.js: Anfügen",
- "node.snippet.attachProcess.description": "Prozessauswahl zum Auswählen des Node-Prozesses zum Anfügen öffnen",
- "node.snippet.attachProcess.label": "Node.js: An Prozess anfügen",
- "node.snippet.electron.description": "Electron-Hauptprozess debuggen",
- "node.snippet.electron.label": "Node.js: Electron-Hauptprozess",
- "node.snippet.gulp.description": "Gulp-Aufgabe debuggen (in Ihrem Projekt muss ein lokales Gulp installiert sein)",
- "node.snippet.gulp.label": "Node.js: Gulp-Aufgabe",
- "node.snippet.launch.description": "Node-Programm im Debugmodus starten",
- "node.snippet.launch.label": "Node.js: Programm starten",
- "node.snippet.mocha.description": "Mocha-Tests debuggen",
- "node.snippet.mocha.label": "Node.js: Mocha-Tests",
- "node.snippet.nodemon.description": "Verwenden Sie Nodemon zum erneuten Starten einer Debugsitzung bei Quellenänderungen.",
- "node.snippet.nodemon.label": "Node.js: Nodemon-Einrichtung",
- "node.snippet.npm.description": "Node-Programme über das npm-Skript \"debug\" starten",
- "node.snippet.npm.label": "Node.js: Über NPM starten",
- "node.snippet.remoteattach.description": "An den Debugport eines Remote-Node-Programms anfügen",
- "node.snippet.remoteattach.label": "Node.js: An Remote-Programm anfügen",
- "node.snippet.yo.description": "Yeoman-Generator debuggen (Installation erfolgt durch Ausführen von \"npm link\" im Projektordner)",
- "node.snippet.yo.label": "Node.js: Yeoman-Generator",
- "node.sourceMapPathOverrides.description": "Eine Gruppe von Mappings, mit denen die in der Sourcemap angegebenen Pfade der Quelldateien in ihre Pfade auf dem Datenträger umgeschrieben werden.",
- "node.sourceMaps.description": "Hiermit werden JavaScript-Quellzuordnungsdateien verwendet (sofern vorhanden).",
- "node.stopOnEntry.description": "Hiermit wird das Programm nach dem Start automatisch beendet.",
- "node.timeout.description": "Gibt den Zeitraum in Millisekunden an, nach dem erneut versucht wird, eine Verbindung mit Node.js herzustellen. Der Standardwert ist 10000 ms.",
- "open.loaded.script": "Geladenes Skript öffnen",
- "outDir.deprecationMessage": "Das Attribut \"outDir\" ist veraltet, verwenden Sie stattdessen \"outFiles\".",
- "outFiles.description": "Wenn Quellzuordnungsdateien aktiviert sind, geben diese Globmuster die generierten JavaScript-Dateien an. Wenn ein Muster mit \"!\" beginnt, werden die Dateien ausgeschlossen. Sofern nicht angegeben, wird der generierte Code im selben Verzeichnis wie seine Quelle erwartet. Beispiel: [\"${workspaceFolder}/out/**/*.js\"]",
- "skipFiles.description": "Ein Array für Globmuster für Dateien, die beim Debuggen übersprungen werden. Das Muster \"/**\" stimmt mit allen internen Node.js-Modulen überein.",
- "smartStep.description": "Hiermit wird automatisch der generierte Code durchlaufen, der nicht der ursprünglichen Quelle zugeordnet werden kann.",
- "start.with.stop.on.entry": "Debuggen starten und bei Eintrag beenden (Legacy)",
- "toggle.skipping.this.file": "Überspringen dieser Datei aktivieren/deaktivieren",
- "trace.description": "Diagnoseausgabe erzeugen: Anstatt diese Einstellung auf \"true\" festzulegen, können Sie einen oder mehr durch Kommas getrennte Selektoren aufführen. Der Selektor \"verbose\" aktiviert die detaillierte Ausgabe."
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-de/translations/extensions/ms-vscode.node-debug2.i18n.json b/i18n/vscode-language-pack-de/translations/extensions/ms-vscode.node-debug2.i18n.json
deleted file mode 100644
index 13fcd76324..0000000000
--- a/i18n/vscode-language-pack-de/translations/extensions/ms-vscode.node-debug2.i18n.json
+++ /dev/null
@@ -1,138 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "node_modules\\vscode-chrome-debug-core\\out/src/chrome/breakpoints": {
- "bp.fail.noscript": "Das Skript für die Haltepunktanforderung wurde nicht gefunden.",
- "bp.fail.unbound": "Haltepunkt festgelegt, aber noch nicht gebunden.",
- "invalidHitCondition": "Ungültige Trefferbedingung: {0}",
- "setBPTimedOut": "Timeout bei Anforderung zum Festlegen von Haltepunkten.",
- "validateBP.notFound": "Der Haltepunkt wurde ignoriert, weil der Zielpfad nicht gefunden wurde.",
- "validateBP.sourcemapFail": "Der Haltepunkt wurde ignoriert, weil der generierte Code nicht gefunden wurde (Problem mit Quellzuordnungsdatei?)."
- },
- "node_modules\\vscode-chrome-debug-core\\out/src/chrome/chromeDebugAdapter": {
- "exceptions.all": "Alle Ausnahmen",
- "exceptions.promise_rejects": "Zusageablehnungen",
- "exceptions.uncaught": "Nicht abgefangene Ausnahmen"
- },
- "node_modules\\vscode-chrome-debug-core\\out/src/chrome/chromeTargetDiscoveryStrategy": {
- "attach.cannotConnect": "Verbindung mit Ziel nicht möglich: {0}",
- "attach.devToolsAttached": "Anfügen an dieses Ziel nicht möglich, an das möglicherweise Chrome DevTools angefügt sind: {0}",
- "attach.invalidResponse": "Die Antwort vom Ziel ist offenbar ungültig. Fehler: {0}. Antwort: {1}",
- "attach.invalidResponseArray": "Die Antwort vom Ziel ist offenbar ungültig: {0}",
- "attach.noMatchingTarget": "Es wurde kein gültiges Ziel gefunden, das \"{0}\" entspricht. Verfügbare Seiten: {1}",
- "attach.responseButNoTargets": "Es wurde eine Antwort von der Ziel-App empfangen, aber es wurden keine Zielseiten gefunden."
- },
- "node_modules\\vscode-chrome-debug-core\\out/src/chrome/stackFrames": {
- "scope.exception": "Ausnahme",
- "skipReason": "(übersprungen durch \"{0}\")"
- },
- "node_modules\\vscode-chrome-debug-core\\out/src/chrome/stoppedEvent": {
- "reason.description.breakpoint": "Beim Haltepunkt angehalten",
- "reason.description.caughtException": "Bei abgefangener Ausnahme angehalten",
- "reason.description.debugger_statement": "Bei Debuggeranweisung angehalten",
- "reason.description.entry": "Bei Eintrag angehalten",
- "reason.description.exception": "Bei Ausnahme angehalten",
- "reason.description.promiseRejection": "Bei Promise-Ablehnung angehalten",
- "reason.description.restart": "Bei Frameeintritt angehalten",
- "reason.description.step": "Bei Schritt angehalten",
- "reason.description.uncaughtException": "Bei nicht abgefangener Ausnahme angehalten",
- "reason.description.user_request": "Bei Benutzeranforderung angehalten"
- },
- "node_modules\\vscode-chrome-debug-core\\out/src/errors": {
- "VSND2010": "Verbindung mit Runtimeprozess nicht möglich, Timeout nach {0} ms – (Ursache: {1}).",
- "VSND2023": "Es ist keine Aufrufliste verfügbar.",
- "attribute.path.not.absolute": "Das Attribut \"{0}\" ist nicht absolut ({1}). Erwägen Sie das Hinzufügen von \"{2}\" als Präfix, um ein absolutes Attribut zu erhalten.",
- "attribute.path.not.exist": "Das Attribut \"{0}\" ist nicht vorhanden ({1}).",
- "eval.not.available": "Nicht verfügbar",
- "failed.to.read.port": "Fehler beim Lesen der Datei \"{dataDirPath}\": {error}",
- "more.information": "Weitere Informationen",
- "not.connected": "Keine Verbindung mit Runtime.",
- "port.file.contents.invalid": "Die Datei am Speicherort \"{dataDirPath}\" enthielt keine gültigen Portdaten. Inhalt: {dataDirContents}",
- "restartFrame.cannot": "Frame kann nicht neu gestartet werden",
- "setVariable.error": "Einstellungswert nicht unterstützt.",
- "source.not.found": "Inhalt konnte nicht abgerufen werden."
- },
- "node_modules\\vscode-chrome-debug-core\\out/src/transformers/baseSourceMapTransformer": {
- "origin.inlined.source.map": "Schreibgeschützter Inlineinhalt aus Quellzuordnungsdatei"
- },
- "node_modules\\vscode-chrome-debug-core\\out/src/transformers/remotePathTransformer": {
- "localRootAndRemoteRoot": "Sowohl localRoot als auch remoteRoot müssen angegeben werden."
- },
- "out/src/errors": {
- "VSND2001": "Die Runtime \"{0}\" wurde nicht in PATH gefunden. Ist \"{0}\" installiert?",
- "VSND2002": "Das Programm \"{0}\" kann nicht gestartet werden. Möglicherweise kann das Problem durch Konfigurieren von Quellzuordnungsdateien behoben werden.",
- "VSND2003": "Das Programm \"{0}\" kann nicht gestartet werden. Möglicherweise kann das Problem durch Festlegen des Attributs \"{1}\" behoben werden.",
- "VSND2009": "Das Programm \"{0}\" kann nicht gestartet werden, weil das zugehörige JavaScript nicht gefunden wurde.",
- "VSND2011": "Das Debugziel im Terminal kann nicht gestartet werden ({0}).",
- "VSND2017": "Das Debugziel kann nicht gestartet werden ({0}).",
- "VSND2028": "Unbekannter Konsolentyp \"{0}\".",
- "VSND2029": "Umgebungsvariablen können nicht aus Datei geladen werden ({0}).",
- "VSND2035": "Debuggen der Erweiterung nicht möglich ({0})."
- },
- "out/src/nodeDebugAdapter": {
- "VSND2001": "Die Runtime \"{0}\" wurde nicht in PATH gefunden. Stellen Sie sicher, dass \"{0}\" installiert ist.",
- "attribute.path.not.absolute": "Das Attribut \"{0}\" ist nicht absolut ({1}). Erwägen Sie das Hinzufügen von \"{2}\" als Präfix, um ein absolutes Attribut zu erhalten.",
- "attribute.path.not.exist": "Das Attribut \"{0}\" ist nicht vorhanden ({1}).",
- "attribute.wsl.not.exist": "Das Windows-Subsystem für die Linux-Installation wurde nicht gefunden.",
- "more.information": "Weitere Informationen",
- "node.console.title": "Node-Debugging-Konsole",
- "origin.core.module": "Schreibgeschütztes Kernmodul",
- "origin.from.node": "Schreibgeschützter Inhalt aus Node.js",
- "program.path.case.mismatch.warning": "Der Programmpfad verwendet eine andere Groß-/Kleinschreibung als die Datei auf dem Datenträger. Dies kann dazu führen, dass Haltepunkte nicht wirksam sind."
- },
- "package": {
- "extension.description": "Node.js-Debuggingunterstützung",
- "extensionHost.label": "VS Code-Erweiterungsentwicklung",
- "extensionHost.launch.config.name": "Extension starten",
- "extensionHost.launch.env.description": "Umgebungsvariablen, die an den Erweiterungshost übergeben werden.",
- "extensionHost.launch.runtimeExecutable.description": "Absoluter Pfad zu VS Code.",
- "extensionHost.launch.stopOnEntry.description": "Hiermit wird der Erweiterungshost nach dem Start automatisch beendet.",
- "extensionHost.snippet.launch.description": "VS Code-Erweiterung im Debugmodus starten",
- "extensionHost.snippet.launch.label": "VS Code-Erweiterungsentwicklung",
- "node.address.description": "TCP/IP-Adresse des Debugports. Der Standardwert ist \"localhost\".",
- "node.attach.config.name": "Anfügen",
- "node.attach.localRoot.description": "Der lokale Quellstamm, der \"remoteRoot\" entspricht.",
- "node.attach.processId.description": "Die ID des Prozesses für das Anfügen.",
- "node.attach.remoteRoot.description": "Der Quellstamm des Remotehosts.",
- "node.diagnosticLogging.deprecationMessage": "\"diagnosticLogging\" ist veraltet. Verwenden Sie stattdessen \"trace\".",
- "node.diagnosticLogging.description": "Bei Festlegung auf TRUE protokolliert der Adapter eigene Diagnoseinformationen in der Konsole.",
- "node.disableOptimisticBPs.description": "Hiermit werden Haltepunkte in einer beliebigen Datei erst festgelegt, wenn eine Sourcemap für diese Datei geladen wurde.",
- "node.enableSourceMapCaching.description": "Hiermit werden aus einer URL heruntergeladene Sourcemaps auf dem Datenträger zwischengespeichert.",
- "node.label": "Node.js v6.3 und höher über Inspector Protocol",
- "node.launch.args.description": "Befehlszeilenargumente, die an das Programm übergeben werden.",
- "node.launch.config.name": "Starten",
- "node.launch.console.description": "Hiermit wird angegeben, wo das Debugziel gestartet werden soll: interne Konsole, integriertes Terminal oder externes Terminal.",
- "node.launch.cwd.description": "Absoluter Pfad zum Arbeitsverzeichnis des Programms, für das ein Debugging durchgeführt werden soll.",
- "node.launch.env.description": "Umgebungsvariablen, die an das Programm übergeben werden. Durch den Wert NULL wird die Variable aus der Umgebung entfernt.",
- "node.launch.envFile.description": "Absoluter Pfad zu einer Datei mit Umgebungsvariablendefinitionen.",
- "node.launch.outputCapture.description": "Hiermit wird angegeben, wo Ausgabemeldungen erfasst werden: Debug-API oder stdout/stderr-Streams.",
- "node.launch.program.description": "Absoluter Pfad zum Programm.",
- "node.launch.runtimeArgs.description": "Optionale Argumente, die an die ausführbare Datei der Runtime übergeben werden.",
- "node.launch.runtimeExecutable.description": "Die zu verwendende Runtime. Dies ist entweder ein absoluter Pfad oder der Name einer Runtime, die in PATH verfügbar ist. Sofern nicht angegeben, wird \"node\" angenommen.",
- "node.outFiles.description": "Wenn Quellzuordnungsdateien aktiviert sind, geben diese Globmuster die generierten JavaScript-Dateien an. Wenn ein Muster mit \"!\" beginnt, werden die Dateien ausgeschlossen. Sofern nicht angegeben, wird der generierte Code im selben Verzeichnis wie die zugehörige Quelle erwartet.",
- "node.port.description": "Debugport für das Anfügen. Der Standardwert ist 9229.",
- "node.processattach.config.name": "An den Prozess anhängen",
- "node.restart.description": "Hiermit wird die Sitzung neu gestartet, nachdem Node.js beendet wurde.",
- "node.showAsyncStacks.description": "Hiermit werden die asynchronen Aufrufe angezeigt, die zur aktuellen Aufrufliste geführt haben.",
- "node.skipFiles.description": "Ein Array aus Datei- oder Ordnernamen oder Globmustern, die beim Debuggen übersprungen werden sollen.",
- "node.smartStep.description": "Hiermit wird automatisch der generierte Code durchlaufen, der nicht der ursprünglichen Quelle zugeordnet werden kann.",
- "node.sourceMapPathOverrides.description": "Eine Reihe von Zuordnungen zum Umschreiben der Speicherorte von Quelldateien gemäß Sourcemap in die Speicherorte auf dem Datenträger. Ausführliche Informationen finden Sie in der README-Datei.",
- "node.sourceMaps.description": "Hiermit werden JavaScript-Quellzuordnungsdateien verwendet (sofern vorhanden).",
- "node.stopOnEntry.description": "Hiermit wird das Programm nach dem Start automatisch beendet.",
- "node.timeout.description": "Gibt den Zeitraum in Millisekunden an, nach dem erneut versucht wird, eine Verbindung mit Node.js herzustellen. Der Standardwert ist 10000 ms.",
- "node.trace.description": "Bei Festlegung auf TRUE protokolliert der Debugger Ablaufverfolgungsinformationen in einer Datei. Bei Festlegung auf \"verbose\" werden auch Protokolle in der Konsole angezeigt.",
- "node.verboseDiagnosticLogging.deprecationMessage": "\"verboseDiagnosticLogging\" ist veraltet. Verwenden Sie stattdessen \"trace\".",
- "node.verboseDiagnosticLogging.description": "Bei Festlegung auf TRUE protokolliert der Adapter den gesamten Datenverkehr mit Client und Ziel (sowie die über \"diagnosticLogging\" erfassten Informationen).",
- "outDir.deprecationMessage": "Das Attribut \"outDir\" ist veraltet, verwenden Sie stattdessen \"outFiles\".",
- "toggle.skipping.this.file": "Überspringen dieser Datei aktivieren/deaktivieren",
- "workspaceTrust": "Um Code in diesem Arbeitsbereich zu debuggen, ist eine Vertrauensstellung erforderlich."
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-de/translations/extensions/ms-vscode.remotehub.i18n.json b/i18n/vscode-language-pack-de/translations/extensions/ms-vscode.remotehub.i18n.json
deleted file mode 100644
index 1b5ffbdd1b..0000000000
--- a/i18n/vscode-language-pack-de/translations/extensions/ms-vscode.remotehub.i18n.json
+++ /dev/null
@@ -1,81 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "package": {
- "colors.added": "Color for added resources",
- "colors.conflict": "Color for resources with conflicts",
- "colors.deleted": "Color for deleted resources",
- "colors.incomingAdded": "Color for incoming added resources",
- "colors.incomingDeleted": "Color for incoming deleted resources",
- "colors.incomingModified": "Color for incoming modified resources",
- "colors.incomingRenamed": "Color for incoming renamed resources",
- "colors.modified": "Color for modified resources",
- "colors.possibleConflict": "Color for resources with possible conflicts",
- "command.timeline.compareWithSelected": "Compare with Selected",
- "command.timeline.copyCommitId": "Copy Commit ID",
- "command.timeline.copyCommitMessage": "Copy Commit Message",
- "command.timeline.openDiff": "Open Changes",
- "command.timeline.openOnGitHub": "Open on GitHub",
- "command.timeline.selectForCompare": "Select for Compare",
- "commands.addRepositoryToWorkspace": "Add Remote Repository to Workspace...",
- "commands.clone": "Clone Repository Locally...",
- "commands.commit": "Commit",
- "commands.continueOn": "Continue on...",
- "commands.createBranch": "Create New Branch...",
- "commands.createBranchFrom": "Create New Branch from...",
- "commands.createDraftPullRequest": "Create a Draft Pull Request",
- "commands.createPullRequest": "Create a Pull Request",
- "commands.deleteAllLocalRepositoryData": "Delete All Local Repository Data",
- "commands.deleteLocalRepositoryData": "Delete Local Repository Data...",
- "commands.discardAllChanges": "Discard All Changes",
- "commands.discardChanges": "Discard Changes",
- "commands.enableIndexing": "Enable Search Indexing",
- "commands.exportPatch": "Export Changes...",
- "commands.fetch": "Fetch",
- "commands.keepChanges": "Keep Changes",
- "commands.openChanges": "Open Changes",
- "commands.openFile": "Open File",
- "commands.openInCodespaces": "Open in Codespaces...",
- "commands.openOnDesktop": "Reopen on the Desktop",
- "commands.openOnRemote": "Open on GitHub",
- "commands.openOnWeb": "Reopen on the Web",
- "commands.openRepository": "Open Remote Repository...",
- "commands.pull": "Pull",
- "commands.stageAllChanges": "Stage All Changes",
- "commands.stageChanges": "Stage Changes",
- "commands.switchToBranch": "Switch to Branch...",
- "commands.sync": "Sync (Pull & Push)",
- "commands.unstageAllChanges": "Unstage All Changes",
- "commands.unstageChanges": "Unstage Changes",
- "config.autoFetch.enabled": "Specifies whether to periodically fetch from the upstream repository",
- "config.autoFetch.interval": "Specifies the interval, in seconds, to periodically fetch from the upstream repository",
- "config.search.download.corsProxy": "Specifies the proxy to use when downloading repository indicies from a browser context",
- "config.search.download.enabled": "Specifies whether text search should download an index of the repository in order to provide more accurate search results",
- "config.search.download.repoLimit": "Specifies the maximum number of search indicies cached per repo. Each reference requires a separate search index",
- "config.search.download.sizeLimit": "Specifies the size (in MB) of search index cache. The search cache is located in the extension's global storage folder",
- "config.staging.enabled": "Specifies whether to enable the staging of changes before committing",
- "config.staging.smart": "Specifies whether to automatically stage all changes, if there are none, before committing",
- "description": "Remotely browse and edit a GitHub repository",
- "displayName": "Remote Repositories (RemoteHub)",
- "displayNameInsiders": "RemoteHub (Insiders)",
- "submenu.branch": "Branch",
- "submenu.changes": "Changes",
- "submenu.commit": "Commit",
- "submenu.export": "Export",
- "submenu.pullRequest": "Pull Request",
- "viewsWelcome.debug": "Run and Debug are not available in this environment. To run and debug, you will need to continue in another Visual Studio Code setup.",
- "viewsWelcome.debug.continueOn": "[Continue on...](command:remoteHub.continueOn 'Continue working on this remote repository elsewhere')",
- "viewsWelcome.explorer": "Or, you can remotely open a repository or pull request directly from Visual Studio Code without cloning.\r\n[Open Remote Repository](command:remoteHub.openRepository 'Open a remote repository (e.g. from GitHub)')",
- "viewsWelcome.explorer.web": "Or, you can remotely open a repository or pull request directly from Visual Studio Code.\r\n[Open Remote Repository](command:remoteHub.openRepository 'Open a remote repository (e.g. from GitHub)')",
- "viewsWelcome.terminal": "Terminals are not available in this environment. To use the terminal, you will need to continue in another Visual Studio Code setup.",
- "viewsWelcome.terminal.continueOn": "[Continue on...](command:remoteHub.continueOn 'Continue working on this remote repository elsewhere')"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-de/translations/extensions/notebook-markdown-extensions.i18n.json b/i18n/vscode-language-pack-de/translations/extensions/notebook-markdown-extensions.i18n.json
deleted file mode 100644
index b6efff70d3..0000000000
--- a/i18n/vscode-language-pack-de/translations/extensions/notebook-markdown-extensions.i18n.json
+++ /dev/null
@@ -1,16 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "package": {
- "description": "Bietet umfangreiche Sprachunterstützung für Markdown.",
- "displayName": "Mathematische Ausdrücke für Notebook-Markdown"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-de/translations/extensions/npm.i18n.json b/i18n/vscode-language-pack-de/translations/extensions/npm.i18n.json
deleted file mode 100644
index c8a6555448..0000000000
--- a/i18n/vscode-language-pack-de/translations/extensions/npm.i18n.json
+++ /dev/null
@@ -1,77 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "dist/commands": {
- "noScriptFound": "Am ausgewählten Ort wurde kein gültiges npm-Skript gefunden."
- },
- "dist/features/bowerJSONContribution": {
- "json.bower.default": "Standarddatei \"bower.json\"",
- "json.bower.error.repoaccess": "Fehler bei der Anforderung des Bower-Repositorys: {0}",
- "json.bower.latest.version": "Neueste"
- },
- "dist/features/packageJSONContribution": {
- "json.npm.error.repoaccess": "Fehler bei der Anforderung des NPM-Repositorys: {0}",
- "json.npm.latestversion": "Die zurzeit neueste Version des Pakets.",
- "json.npm.majorversion": "Entspricht der aktuellsten Hauptversion (1.x.x).",
- "json.npm.minorversion": "Entspricht der aktuellsten Nebenversion (1.2.x).",
- "json.npm.version.hover": "Aktuelle Version: {0}",
- "json.package.default": "Standarddatei \"package.json\""
- },
- "dist/npmScriptLens": {
- "codelens.debug": "Debuggen"
- },
- "dist/npmView": {
- "autoDetectIsOff": "Die Einstellung \"npm.autoDetect\" ist deaktiviert.",
- "noScripts": "Es wurden keine Skripts gefunden."
- },
- "dist/scriptHover": {
- "debugScript": "Debugskript",
- "debugScript.tooltip": "Skript im Debugmodus ausführen",
- "runScript": "Skript ausführen",
- "runScript.tooltip": "Skript als Aufgabe ausführen"
- },
- "dist/tasks": {
- "npm.multiplePMWarning": "\"{0}\" wird als bevorzugter Paket-Manager verwendet. Es wurden mehrere Sperrdateien für \"{1}\" gefunden. Um dieses Problem zu beheben, löschen Sie die Sperrdateien, die nicht mit Ihrem bevorzugten Paket-Manager übereinstimmen, oder ändern Sie die Einstellung „npm.packageManager>“ auf einen anderen Wert als „auto>“.",
- "npm.multiplePMWarning.doNotShow": "Nicht mehr anzeigen",
- "npm.multiplePMWarning.learnMore": "Weitere Informationen",
- "npm.parseError": "npm-Aufgabenerkennung: Fehler beim Analysieren der Datei \"{0}\"."
- },
- "package": {
- "command.debug": "Debuggen",
- "command.openScript": "Öffnen",
- "command.packageManager": "Konfigurierten Paket-Manager abrufen",
- "command.refresh": "Aktualisieren",
- "command.run": "Starten",
- "command.runInstall": "Installation ausführen",
- "command.runScriptFromFolder": "NPM-Skript im Ordner ausführen...",
- "command.runSelectedScript": "Skript ausführen",
- "config.npm.autoDetect": "Legt fest, ob npm-Skripts automatisch erkannt werden sollen.",
- "config.npm.enableRunFromFolder": "Aktivieren Sie das Ausführen von NPM-Skripts, die sich in einem Ordner im Kontextmenü des Explorers befinden.",
- "config.npm.enableScriptExplorer": "Hiermit wird eine Explorer-Ansicht für npm-Skripts aktiviert, wenn auf der obersten Ebene keine Datei \"package.json\" vorliegt.",
- "config.npm.exclude": "Konfigurieren Sie Globmuster für Ordner, die von der automatischen Skripterkennung ausgeschlossen werden sollen.",
- "config.npm.fetchOnlinePackageInfo": "Rufen Sie Daten von https://registry.npmjs.org und https://registry.bower.io ab, um die automatische Vervollständigung zu ermöglichen und Informationen zu Hoverfeatures von npm-Abhängigkeiten bereitzustellen.",
- "config.npm.packageManager": "Der zu verwendende Paket-Manager, um Skripte auszuführen.",
- "config.npm.packageManager.auto": "Hiermit wird basierend auf Sperrdateien und installierten Paket-Managern automatisch erkannt, welcher Paket-Manager für das Ausführen von Skripts verwendet werden soll.",
- "config.npm.packageManager.npm": "Hiermit wird npm als Paket-Manager zum Ausführen von Skripts verwendet.",
- "config.npm.packageManager.pnpm": "Hiermit wird pnpm als Paket-Manager zum Ausführen von Skripts verwendet.",
- "config.npm.packageManager.yarn": "Hiermit wird Yarn als Paket-Manager zum Ausführen von Skripts verwendet.",
- "config.npm.runSilent": "npm-Befehle mit der Option \"--silent\" ausführen.",
- "config.npm.scriptExplorerAction": "Die Klickaktion, die im npm-Skript-Explorer standardmäßig verwendet wird: \"Öffnen\" (Standard) oder \"Ausführen\".",
- "config.npm.scriptExplorerExclude": "Ein Array regulärer Ausdrücke, das angibt, welche Skripts aus der NPM-Skriptansicht ausgeschlossen werden sollen.",
- "description": "Erweiterung zum Hinzufügen von Aufgabenunterstützung für NPM-Skripts.",
- "displayName": "npm-Unterstützung für VS Code",
- "npm.parseError": "npm-Aufgabenerkennung: Fehler beim Analysieren der Datei \"{0}\".",
- "taskdef.path": "Der Pfad zum Ordner der package.json-Datei, die das Skript bereitstellt. Kann weggelassen werden.",
- "taskdef.script": "Das anzupassende NPM-Skript.",
- "view.name": "npm-Skripts",
- "workspaceTrust": "Mit dieser Erweiterung werden Aufgaben ausgeführt, für deren Ausführung eine Vertrauensstellung erforderlich ist."
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-de/translations/extensions/objective-c.i18n.json b/i18n/vscode-language-pack-de/translations/extensions/objective-c.i18n.json
deleted file mode 100644
index 2ac3569a6f..0000000000
--- a/i18n/vscode-language-pack-de/translations/extensions/objective-c.i18n.json
+++ /dev/null
@@ -1,16 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "package": {
- "description": "Bietet Syntaxhervorhebung und Klammernabgleich in Objective-C-Dateien.",
- "displayName": "Objective-C-Sprachgrundlagen"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-de/translations/extensions/perl.i18n.json b/i18n/vscode-language-pack-de/translations/extensions/perl.i18n.json
deleted file mode 100644
index c7319a4b13..0000000000
--- a/i18n/vscode-language-pack-de/translations/extensions/perl.i18n.json
+++ /dev/null
@@ -1,16 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "package": {
- "description": "Bietet Syntaxhervorhebung und Klammernabgleich in Perl-Dateien.",
- "displayName": "Perl-Sprachgrundlagen"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-de/translations/extensions/php-language-features.i18n.json b/i18n/vscode-language-pack-de/translations/extensions/php-language-features.i18n.json
deleted file mode 100644
index 7661ea1685..0000000000
--- a/i18n/vscode-language-pack-de/translations/extensions/php-language-features.i18n.json
+++ /dev/null
@@ -1,31 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "dist/features/validationProvider": {
- "goToSetting": "Einstellungen öffnen",
- "noExecutable": "Eine Überprüfung ist nicht möglich, da keine ausführbare PHP-Datei festgelegt ist. Verwenden Sie die Einstellung \"php.validate.executablePath\", um die ausführbare PHP-Datei zu konfigurieren.",
- "noPhp": "Kann nicht überprüft werden, da eine PHP-Installation nicht gefunden werden konnte. Verwenden Sie die Einstellung „php.validate.executablePath“, um die ausführbare PHP-Datei zu konfigurieren.",
- "unknownReason": "Fehler beim Ausführen von PHP mithilfe des Pfads \"{0}\". Die Ursache ist unbekannt.",
- "wrongExecutable": "Eine Überprüfung ist nicht möglich, da {0} keine gültige ausführbare PHP-Datei ist. Verwenden Sie die Einstellung \"'php.validate.executablePath\", um die ausführbare PHP-Datei zu konfigurieren."
- },
- "package": {
- "command.untrustValidationExecutable": "Ausführbare Datei für PHP-Überprüfung nicht zulassen (als Arbeitsbereicheinstellung definiert)",
- "commands.categroy.php": "PHP",
- "configuration.suggest.basic": "Legt fest, ob die integrierten PHP-Sprachvorschläge aktiviert sind. Die Unterstützung schlägt globale und variable PHP-Elemente vor.",
- "configuration.title": "PHP",
- "configuration.validate.enable": "Integrierte PHP-Überprüfung aktivieren/deaktivieren.",
- "configuration.validate.executablePath": "Zeigt auf die ausführbare PHP-Datei.",
- "configuration.validate.run": "Gibt an, ob der Linter beim Speichern oder bei der Eingabe ausgeführt wird.",
- "description": "Bietet umfangreiche Sprachunterstützung für PHP-Dateien.",
- "displayName": "PHP-Sprachfeatures",
- "workspaceTrust": "Für diese Erweiterung ist die Vertrauenswürdigkeit des Arbeitsbereichs erforderlich, wenn die Einstellung „php.validate.executablePath“ eine Version von PHP im Arbeitsbereich lädt."
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-de/translations/extensions/php.i18n.json b/i18n/vscode-language-pack-de/translations/extensions/php.i18n.json
deleted file mode 100644
index 8cc98661de..0000000000
--- a/i18n/vscode-language-pack-de/translations/extensions/php.i18n.json
+++ /dev/null
@@ -1,16 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "package": {
- "description": "Bietet Syntaxhervorhebung und Klammernabgleich für PHP-Dateien.",
- "displayName": "PHP-Sprachgrundlagen"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-de/translations/extensions/powershell.i18n.json b/i18n/vscode-language-pack-de/translations/extensions/powershell.i18n.json
deleted file mode 100644
index a45b2c6d06..0000000000
--- a/i18n/vscode-language-pack-de/translations/extensions/powershell.i18n.json
+++ /dev/null
@@ -1,16 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "package": {
- "description": "Bietet Schnipsel, Syntaxhervorhebung, Klammernabgleich und Falten in Powershell-Dateien.",
- "displayName": "Powershell-Sprachgrundlagen"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-de/translations/extensions/pug.i18n.json b/i18n/vscode-language-pack-de/translations/extensions/pug.i18n.json
deleted file mode 100644
index 7cdebdf6b6..0000000000
--- a/i18n/vscode-language-pack-de/translations/extensions/pug.i18n.json
+++ /dev/null
@@ -1,16 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "package": {
- "description": "Bietet Syntaxhervorhebung und Klammernabgleich in Pug-Dateien.",
- "displayName": "Pug-Sprachgrundlagen"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-de/translations/extensions/r.i18n.json b/i18n/vscode-language-pack-de/translations/extensions/r.i18n.json
deleted file mode 100644
index cee37b9747..0000000000
--- a/i18n/vscode-language-pack-de/translations/extensions/r.i18n.json
+++ /dev/null
@@ -1,16 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "package": {
- "description": "Bietet Syntaxhervorhebung und Klammernabgleich in R-Dateien.",
- "displayName": "R-Sprachgrundlagen"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-de/translations/extensions/razor.i18n.json b/i18n/vscode-language-pack-de/translations/extensions/razor.i18n.json
deleted file mode 100644
index 4848ac8130..0000000000
--- a/i18n/vscode-language-pack-de/translations/extensions/razor.i18n.json
+++ /dev/null
@@ -1,16 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "package": {
- "description": "Bietet Syntaxhervorhebung, Klammernabgleich und Falten in Razor-Dateien.",
- "displayName": "Razor-Sprachgrundlagen"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-de/translations/extensions/references-view.i18n.json b/i18n/vscode-language-pack-de/translations/extensions/references-view.i18n.json
deleted file mode 100644
index e725353370..0000000000
--- a/i18n/vscode-language-pack-de/translations/extensions/references-view.i18n.json
+++ /dev/null
@@ -1,73 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "dist/calls/model": {
- "noresult": "Keine Ergebnisse.",
- "open": "Aufruf öffnen",
- "title.callers": "Aufrufer von",
- "title.calls": "Aufrufe von"
- },
- "dist/references/index": {
- "title": "Verweise"
- },
- "dist/references/model": {
- "noresult": "Keine Ergebnisse.",
- "open": "Verweis öffnen",
- "result.1": "{0} Ergebnis in {1} Datei",
- "result.1n": "{0} Ergebnis in {1} Dateien",
- "result.n1": "{0} Ergebnisse in {1} Datei",
- "result.nm": "{0} Ergebnisse in {1} Dateien"
- },
- "dist/tree": {
- "noresult": "Keine Ergebnisse.",
- "noresult2": "Keine Ergebnisse. Versuchen Sie erneut, eine vorherige Suche auszuführen:",
- "placeholder": "Vorherige Verweissuche auswählen",
- "title": "Verweise",
- "title.rerun": "Erneut ausführen"
- },
- "dist/types/model": {
- "noresult": "Keine Ergebnisse.",
- "title.openType": "Offener Typ",
- "title.sub": "Untertypen von",
- "title.sup": "Obertypen von"
- },
- "package": {
- "cmd.category.references": "Verweise",
- "cmd.references-view.clear": "Löschen",
- "cmd.references-view.clearHistory": "Verlauf löschen",
- "cmd.references-view.copy": "Kopieren",
- "cmd.references-view.copyAll": "Alles kopieren",
- "cmd.references-view.copyPath": "Pfad kopieren",
- "cmd.references-view.findImplementations": "Alle Implementierungen suchen",
- "cmd.references-view.findReferences": "Alle Verweise suchen",
- "cmd.references-view.next": "Zum nächsten Verweis wechseln",
- "cmd.references-view.pickFromHistory": "Verlauf anzeigen",
- "cmd.references-view.prev": "Zum vorherigen Verweis wechseln",
- "cmd.references-view.refind": "Erneut ausführen",
- "cmd.references-view.refresh": "Aktualisieren",
- "cmd.references-view.removeCallItem": "Schließen",
- "cmd.references-view.removeReferenceItem": "Schließen",
- "cmd.references-view.removeTypeItem": "Schließen",
- "cmd.references-view.showCallHierarchy": "Aufrufhierarchie anzeigen",
- "cmd.references-view.showIncomingCalls": "Eingehende Aufrufe anzeigen",
- "cmd.references-view.showOutgoingCalls": "Ausgehende Aufrufe anzeigen",
- "cmd.references-view.showSubtypes": "Untertypen anzeigen",
- "cmd.references-view.showSupertypes": "Obertypen anzeigen",
- "cmd.references-view.showTypeHierarchy": "Typhierarchie anzeigen",
- "config.references.preferredLocation": "Steuert, ob „Verweise einsehen“ oder „Verweise suchen“ aufgerufen wird, wenn CodeLens-Verweise ausgewählt werden",
- "config.references.preferredLocation.peek": "Verweise im Peek-Editor anzeigen.",
- "config.references.preferredLocation.view": "Verweise in separater Ansicht anzeigen.",
- "container.title": "Verweise",
- "description": "Suchergebnisse für Verweise als separate, stabile Ansicht in der Randleiste",
- "displayName": "Ansicht der Verweissuche",
- "view.title": "Ergebnisse"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-de/translations/extensions/ruby.i18n.json b/i18n/vscode-language-pack-de/translations/extensions/ruby.i18n.json
deleted file mode 100644
index b8a9a3b89d..0000000000
--- a/i18n/vscode-language-pack-de/translations/extensions/ruby.i18n.json
+++ /dev/null
@@ -1,16 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "package": {
- "description": "Bietet Syntaxhervorhebung und Klammernabgleich in Ruby-Dateien.",
- "displayName": "Ruby-Sprachgrundlagen"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-de/translations/extensions/rust.i18n.json b/i18n/vscode-language-pack-de/translations/extensions/rust.i18n.json
deleted file mode 100644
index 276a3e2c16..0000000000
--- a/i18n/vscode-language-pack-de/translations/extensions/rust.i18n.json
+++ /dev/null
@@ -1,16 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "package": {
- "description": "Bietet Syntaxhervorhebung und Klammernabgleich in Rust-Dateien.",
- "displayName": "Rust-Sprachgrundlagen"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-de/translations/extensions/scss.i18n.json b/i18n/vscode-language-pack-de/translations/extensions/scss.i18n.json
deleted file mode 100644
index f8c8a35221..0000000000
--- a/i18n/vscode-language-pack-de/translations/extensions/scss.i18n.json
+++ /dev/null
@@ -1,16 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "package": {
- "description": "Bietet Syntaxhervorhebung, Klammernabgleich und Falten in SCSS-Dateien.",
- "displayName": "SCSS-Sprachgrundlagen"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-de/translations/extensions/shaderlab.i18n.json b/i18n/vscode-language-pack-de/translations/extensions/shaderlab.i18n.json
deleted file mode 100644
index fc37e65770..0000000000
--- a/i18n/vscode-language-pack-de/translations/extensions/shaderlab.i18n.json
+++ /dev/null
@@ -1,16 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "package": {
- "description": "Bietet Syntaxhervorhebung und Klammernabgleich in Shaderlab-Dateien.",
- "displayName": "Shaderlab-Sprachgrundlagen"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-de/translations/extensions/shellscript.i18n.json b/i18n/vscode-language-pack-de/translations/extensions/shellscript.i18n.json
deleted file mode 100644
index 80944585c6..0000000000
--- a/i18n/vscode-language-pack-de/translations/extensions/shellscript.i18n.json
+++ /dev/null
@@ -1,16 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "package": {
- "description": "Bietet Syntaxhervorhebung und Klammernabgleich in Shellskript-Dateien.",
- "displayName": "Sprachgrundlagen für Shellskript"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-de/translations/extensions/simple-browser.i18n.json b/i18n/vscode-language-pack-de/translations/extensions/simple-browser.i18n.json
deleted file mode 100644
index 53ebe770ec..0000000000
--- a/i18n/vscode-language-pack-de/translations/extensions/simple-browser.i18n.json
+++ /dev/null
@@ -1,30 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "dist/extension": {
- "openTitle": "Im einfachen Browser öffnen",
- "simpleBrowser.show.placeholder": "https://example.com",
- "simpleBrowser.show.prompt": "Zu besuchende URL eingeben"
- },
- "dist/simpleBrowserView": {
- "control.back.title": "Zurück",
- "control.forward.title": "Weiter",
- "control.openExternal.title": "Im Browser öffnen",
- "control.reload.title": "Neu laden",
- "view.iframe-focused": "Fokussperre",
- "view.title": "Einfacher Browser"
- },
- "package": {
- "configuration.focusLockIndicator.enabled.description": "Hiermit wird der unverankerte Indikator aktiviert/deaktiviert, der beim Fokussieren im einfachen Browser angezeigt wird.",
- "description": "Eine sehr einfache, integrierte Webansicht zum Anzeigen von Webinhalten.",
- "displayName": "Einfacher Browser"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-de/translations/extensions/sql.i18n.json b/i18n/vscode-language-pack-de/translations/extensions/sql.i18n.json
deleted file mode 100644
index ab73c60fd2..0000000000
--- a/i18n/vscode-language-pack-de/translations/extensions/sql.i18n.json
+++ /dev/null
@@ -1,16 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "package": {
- "description": "Bietet Syntaxhervorhebung und Klammernabgleich in SQL-Dateien.",
- "displayName": "SQL-Sprachgrundlagen"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-de/translations/extensions/swift.i18n.json b/i18n/vscode-language-pack-de/translations/extensions/swift.i18n.json
deleted file mode 100644
index 0ed70aa584..0000000000
--- a/i18n/vscode-language-pack-de/translations/extensions/swift.i18n.json
+++ /dev/null
@@ -1,16 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "package": {
- "description": "Bietet Schnipsel, Syntaxhervorhebung und Klammernabgleich in Swift-Dateien.",
- "displayName": "Swift-Sprachgrundlagen"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-de/translations/extensions/testing-editor-contributions.i18n.json b/i18n/vscode-language-pack-de/translations/extensions/testing-editor-contributions.i18n.json
deleted file mode 100644
index b9ae31d1a5..0000000000
--- a/i18n/vscode-language-pack-de/translations/extensions/testing-editor-contributions.i18n.json
+++ /dev/null
@@ -1,27 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "package": {
- "action.debug": "Debuggen",
- "action.run": "Tests ausführen",
- "config.enableCodeLens": "Gibt an, ob CodeLens für Testfälle und Testsammlungen angezeigt werden soll.",
- "config.enableProblemDiagnostics": "Gibt an, ob Testfehler in der Ansicht \"Probleme\" gemeldet und als Fehler im Editor angezeigt werden sollen.",
- "description": "Stellt die Editor-interne Benutzeroberfläche für Tests und Testergebnisse bereit.",
- "displayName": "Beiträge zu Test-Editor",
- "state.failed": "Fehler",
- "state.passed": "Bestanden",
- "state.passedWithDuration": "Bestanden, Dauer: {0}",
- "tooltip.debug": "\"{0}\" debuggen",
- "tooltip.run": "\"{0}\" ausführen",
- "tooltip.runState": "{0}/{1} Tests bestanden",
- "tooltip.runStateWithDuration": "{0}/{1} Tests bestanden, Dauer: {2}"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-de/translations/extensions/theme-abyss.i18n.json b/i18n/vscode-language-pack-de/translations/extensions/theme-abyss.i18n.json
deleted file mode 100644
index bb90c41c00..0000000000
--- a/i18n/vscode-language-pack-de/translations/extensions/theme-abyss.i18n.json
+++ /dev/null
@@ -1,17 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "package": {
- "description": "Abyss-Design für Visual Studio Code",
- "displayName": "Abyss-Design",
- "themeLabel": "Abyss"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-de/translations/extensions/theme-defaults.i18n.json b/i18n/vscode-language-pack-de/translations/extensions/theme-defaults.i18n.json
deleted file mode 100644
index 5afcab62dc..0000000000
--- a/i18n/vscode-language-pack-de/translations/extensions/theme-defaults.i18n.json
+++ /dev/null
@@ -1,23 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "package": {
- "darkColorThemeLabel": "Dunkel (Visual Studio)",
- "darkPlusColorThemeLabel": "Dunkel+ (dunkles Standarddesign)",
- "description": "Die hellen und dunklen Visual Studio-Standarddesigns",
- "displayName": "Standarddesigns",
- "hcColorThemeLabel": "Dunkle hoher Kontrast",
- "lightColorThemeLabel": "Hell (Visual Studio)",
- "lightHcColorThemeLabel": "Hell hoher Kontrast",
- "lightPlusColorThemeLabel": "Hell+ (helles Standarddesign)",
- "minimalIconThemeLabel": "Minimal (Visual Studio Code)"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-de/translations/extensions/theme-kimbie-dark.i18n.json b/i18n/vscode-language-pack-de/translations/extensions/theme-kimbie-dark.i18n.json
deleted file mode 100644
index 1cb9f4b5db..0000000000
--- a/i18n/vscode-language-pack-de/translations/extensions/theme-kimbie-dark.i18n.json
+++ /dev/null
@@ -1,17 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "package": {
- "description": "Dunkles Kimbie-Design für Visual Studio Code",
- "displayName": "Dunkles Kimbie-Design",
- "themeLabel": "Kimbie dunkel"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-de/translations/extensions/theme-monokai-dimmed.i18n.json b/i18n/vscode-language-pack-de/translations/extensions/theme-monokai-dimmed.i18n.json
deleted file mode 100644
index 41c676db70..0000000000
--- a/i18n/vscode-language-pack-de/translations/extensions/theme-monokai-dimmed.i18n.json
+++ /dev/null
@@ -1,17 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "package": {
- "description": "Abgedunkeltes Monokai-Design für Visual Studio Code",
- "displayName": "Abgedunkeltes Monokai-Design",
- "themeLabel": "Monokai abgedunkelt"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-de/translations/extensions/theme-monokai.i18n.json b/i18n/vscode-language-pack-de/translations/extensions/theme-monokai.i18n.json
deleted file mode 100644
index 5f89306026..0000000000
--- a/i18n/vscode-language-pack-de/translations/extensions/theme-monokai.i18n.json
+++ /dev/null
@@ -1,17 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "package": {
- "description": "Monokai-Design für Visual Studio Code",
- "displayName": "Monokai-Design",
- "themeLabel": "Monokai"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-de/translations/extensions/theme-quietlight.i18n.json b/i18n/vscode-language-pack-de/translations/extensions/theme-quietlight.i18n.json
deleted file mode 100644
index 41aba56d40..0000000000
--- a/i18n/vscode-language-pack-de/translations/extensions/theme-quietlight.i18n.json
+++ /dev/null
@@ -1,17 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "package": {
- "description": "Dezentes, helles Design für Visual Studio Code",
- "displayName": "Dezentes, helles Design",
- "themeLabel": "Dezent hell"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-de/translations/extensions/theme-red.i18n.json b/i18n/vscode-language-pack-de/translations/extensions/theme-red.i18n.json
deleted file mode 100644
index f83921257b..0000000000
--- a/i18n/vscode-language-pack-de/translations/extensions/theme-red.i18n.json
+++ /dev/null
@@ -1,17 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "package": {
- "description": "Rotes Design für Visual Studio Code",
- "displayName": "Rotes Design",
- "themeLabel": "Rot"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-de/translations/extensions/theme-seti.i18n.json b/i18n/vscode-language-pack-de/translations/extensions/theme-seti.i18n.json
deleted file mode 100644
index 9beae7ffd4..0000000000
--- a/i18n/vscode-language-pack-de/translations/extensions/theme-seti.i18n.json
+++ /dev/null
@@ -1,17 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "package": {
- "description": "Ein Dateisymboldesign aus den Dateisymbolen der Seti-Benutzeroberfläche",
- "displayName": "Seti-Dateisymboldesign",
- "themeLabel": "Seti (Visual Studio Code)"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-de/translations/extensions/theme-solarized-dark.i18n.json b/i18n/vscode-language-pack-de/translations/extensions/theme-solarized-dark.i18n.json
deleted file mode 100644
index 8f130d860b..0000000000
--- a/i18n/vscode-language-pack-de/translations/extensions/theme-solarized-dark.i18n.json
+++ /dev/null
@@ -1,17 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "package": {
- "description": "Dunkles Solarisationsdesign für Visual Studio Code",
- "displayName": "Dunkles Solarisationsdesign",
- "themeLabel": "Solarisation dunkel"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-de/translations/extensions/theme-solarized-light.i18n.json b/i18n/vscode-language-pack-de/translations/extensions/theme-solarized-light.i18n.json
deleted file mode 100644
index bcaaeaa6b4..0000000000
--- a/i18n/vscode-language-pack-de/translations/extensions/theme-solarized-light.i18n.json
+++ /dev/null
@@ -1,17 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "package": {
- "description": "Helles Solarisationsdesign für Visual Studio Code",
- "displayName": "Helles Solarisationsdesign",
- "themeLabel": "Solarisation hell"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-de/translations/extensions/theme-tomorrow-night-blue.i18n.json b/i18n/vscode-language-pack-de/translations/extensions/theme-tomorrow-night-blue.i18n.json
deleted file mode 100644
index 5a74397df5..0000000000
--- a/i18n/vscode-language-pack-de/translations/extensions/theme-tomorrow-night-blue.i18n.json
+++ /dev/null
@@ -1,17 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "package": {
- "description": "Nachtblaues Tomorrow-Design für Visual Studio Code",
- "displayName": "Nachtblaues Tomorrow-Design",
- "themeLabel": "Tomorrow nachtblau"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-de/translations/extensions/typescript-basics.i18n.json b/i18n/vscode-language-pack-de/translations/extensions/typescript-basics.i18n.json
deleted file mode 100644
index 99730e4059..0000000000
--- a/i18n/vscode-language-pack-de/translations/extensions/typescript-basics.i18n.json
+++ /dev/null
@@ -1,16 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "package": {
- "description": "Bietet Schnipsel, Syntaxhervorhebung, Klammernpaare und Falten in TypeScript-Dateien.",
- "displayName": "TypeScript-Sprachgrundlagen"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-de/translations/extensions/typescript-language-features.i18n.json b/i18n/vscode-language-pack-de/translations/extensions/typescript-language-features.i18n.json
deleted file mode 100644
index 66be1dea5a..0000000000
--- a/i18n/vscode-language-pack-de/translations/extensions/typescript-language-features.i18n.json
+++ /dev/null
@@ -1,328 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "dist/languageFeatures/codeLens/baseCodeLensProvider": {
- "referenceErrorLabel": "Verweise konnten nicht bestimmt werden"
- },
- "dist/languageFeatures/codeLens/implementationsCodeLens": {
- "manyImplementationLabel": "{0} Implementierungen",
- "oneImplementationLabel": "1 Implementierung"
- },
- "dist/languageFeatures/codeLens/referencesCodeLens": {
- "manyReferenceLabel": "{0} Verweise",
- "oneReferenceLabel": "1 Verweis"
- },
- "dist/languageFeatures/completions": {
- "acquiringTypingsDetail": "Eingabedefinitionen für IntelliSense werden abgerufen.",
- "acquiringTypingsLabel": "Eingaben werden abgerufen...",
- "selectCodeAction": "Anzuwendende Codeaktion auswählen"
- },
- "dist/languageFeatures/directiveCommentCompletions": {
- "ts-check": "Aktiviert die Semantiküberprüfung in einer JavaScript-Datei. Muss sich oben in einer Datei befinden.",
- "ts-expect-error": "Unterdrückt @ts-check-Fehler in der nächsten Zeile einer Datei und erwartet, dass mindestens einer vorhanden ist.",
- "ts-ignore": "Unterdrückt @ts-check-Fehler in der nächsten Zeile einer Datei.",
- "ts-nocheck": "Deaktiviert die Semantiküberprüfung in einer JavaScript-Datei. Muss sich oben in einer Datei befinden."
- },
- "dist/languageFeatures/fileReferences": {
- "error.noResource": "Fehler beim Suchen nach Dateiverweisen. Es wurde keine Ressource angegeben.",
- "error.unknownFile": "Fehler beim Suchen nach Dateiverweisen. Unbekannter Dateityp.",
- "error.unsupportedLanguage": "Fehler beim Suchen nach Dateiverweisen. Nicht unterstützter Dateityp.",
- "error.unsupportedVersion": "Fehler beim Suchen nach Dateiverweisen. Erfordert TypeScript 4.2+.",
- "progress.title": "Dateiverweise werden gesucht"
- },
- "dist/languageFeatures/fixAll": {
- "autoFix.label": "Alle behebbaren JS/TS-Probleme beheben",
- "autoFix.missingImports.label": "Alle fehlenden Importe hinzufügen",
- "autoFix.unused.label": "Gesamten nicht verwendeten Code entfernen"
- },
- "dist/languageFeatures/jsDocCompletions": {
- "typescript.jsDocCompletionItem.documentation": "JSDoc-Kommentar"
- },
- "dist/languageFeatures/organizeImports": {
- "organizeImportsAction.title": "Importe organisieren",
- "sortImportsAction.title": "Importe sortieren"
- },
- "dist/languageFeatures/quickFix": {
- "fixAllInFileLabel": "{0} (Behebe alle in Datei)"
- },
- "dist/languageFeatures/refactor": {
- "extractConstant.disabled.reason": "Die aktuelle Auswahl kann nicht extrahiert werden.",
- "extractConstant.disabled.title": "In Konstante extrahieren",
- "extractFunction.disabled.reason": "Die aktuelle Auswahl kann nicht extrahiert werden.",
- "extractFunction.disabled.title": "In Funktion extrahieren",
- "refactor.documentation.title": "Weitere Informationen zu JS/TS-Refactorings",
- "refactoringFailed": "Umgestaltung nicht möglich"
- },
- "dist/languageFeatures/rename": {
- "fileRenameFail": "Beim Umbenennen der Datei ist ein Fehler aufgetreten."
- },
- "dist/languageFeatures/sourceDefinition": {
- "error.noReferences": "Keine Definitionen gefunden.",
- "error.noResource": "Gehe zu Quelldefinition fehlgeschlagen. Keine Ressource bereitgestellt.",
- "error.unknownFile": "Gehe zu Quelldefinition fehlgeschlagen. Unbekannter Dateityp.",
- "error.unsupportedLanguage": "Gehe zu Quelldefinition fehlgeschlagen. Nicht unterstütztes Dateiformat.",
- "error.unsupportedVersion": "Gehe zu Quelldefinition fehlgeschlagen. Erfordert TypeScript 4.7+.",
- "progress.title": "Quellendefinitionen finden"
- },
- "dist/languageFeatures/tsconfig": {
- "documentLink.tooltip": "Link folgen",
- "openTsconfigExtendsModuleFail": "Fehler beim Auflösen von {0} als Modul"
- },
- "dist/languageFeatures/updatePathsOnRename": {
- "accept.title": "Ja",
- "always.title": "Importe immer automatisch aktualisieren",
- "moreFile": "...1 weitere Datei wird nicht angezeigt",
- "moreFiles": "...{0} weitere Dateien werden nicht angezeigt",
- "never.title": "Importe nie automatisch aktualisieren",
- "prompt": "Importe für \"{0}\" aktualisieren?",
- "promptMoreThanOne": "Importe für die folgenden {0}-Dateien aktualisieren?",
- "reject.title": "Nein",
- "renameProgress.title": "Überprüfung der Aktualisierung der JS/TS-Importe"
- },
- "dist/task/taskProvider": {
- "badTsConfig": "Die TypeScript-Task in tasks.json enthält \"\\\\\". Für TypeScript-Tasks in tsconfig muss \"/\" verwendet werden.",
- "buildAndWatchTscLabel": "Überwachen – {0}",
- "buildTscLabel": "Erstellen – {0}"
- },
- "dist/tsServer/serverProcess.electron": {
- "noServerFound": "Der Pfad \"{0}\" zeigt nicht auf eine gültige tsserver-Installation. Fallback auf gebündelte TypeScript-Version wird durchgeführt."
- },
- "dist/tsServer/versionManager": {
- "allow": "Zulassen",
- "dismiss": "Schließen",
- "learnMore": "Weitere Informationen zum Verwalten von TypeScript-Versionen",
- "promptUseWorkspaceTsdk": "Dieser Arbeitsbereich enthält eine TypeScript-Version. Möchten Sie die TypeScript-Version des Arbeitsbereichs für TypeScript- und JavaScript-Sprachfeatures verwenden?",
- "selectTsVersion": "Wählen Sie die für die JavaScript- und TypeScript-Sprachfunktionen verwendete TypeScript-Version aus.",
- "suppress prompt": "Nie in diesem Arbeitsbereich",
- "useVSCodeVersionOption": "Version von VS Code verwenden",
- "useWorkspaceVersionOption": "Arbeitsbereichsversion verwenden"
- },
- "dist/typescriptServiceClient": {
- "noServerFound": "Der Pfad \"{0}\" zeigt nicht auf eine gültige tsserver-Installation. Fallback auf gebündelte TypeScript-Version wird durchgeführt.",
- "openTsServerLog.openFileFailedFailed": "Die TS-Server-Protokolldatei konnte nicht geöffnet werden.",
- "serverDied": "Der TypeScript-Sprachdienst wurde während der letzten fünf Minuten fünfmal unerwartet beendet.",
- "serverDiedAfterStart": "Der TypeScript-Sprachdienst wurde direkt nach seinem Start fünfmal beendet. Der Dienst wird nicht neu gestartet.",
- "serverDiedOnce": "Der TypeScript-Sprachdienst ist unerwartet abgestürzt.",
- "serverDiedReportIssue": "Problem melden",
- "serverExitedWithError": "Der TypeScript-Sprachserver wurde durch einen Fehler beendet. Fehlermeldung: {0}",
- "serverLoading.progress": "Sprachfeatures von JavaScript bzw. TypeScript werden initialisiert",
- "typescript.openTsServerLog.enableAndReloadOption": "Aktiviert die Protokollierung und startet den TS-Server neu.",
- "typescript.openTsServerLog.loggingNotEnabled": "Die TS Server-Protokollierung ist deaktiviert. Legen Sie \"typescript.tsserver.log\" fest, und laden Sie VS Code erneut, um die Protokollierung zu aktivieren.",
- "typescript.openTsServerLog.noLogFile": "TS Server hat noch nicht mit der Protokollierung begonnen.",
- "usingOldTsVersion.detail": "Der Arbeitsbereich verwendet eine alte Version von TypeScript ({0}).\r\n\r\nBevor Sie ein Problem melden, aktualisieren Sie den Arbeitsbereich, sodass die neueste stabile Version verwendet und sichergestellt wird, dass der Fehler nicht bereits behoben wurde.",
- "usingOldTsVersion.title": "Bitte aktualisieren Sie Ihre TypeScript-Version."
- },
- "dist/ui/intellisenseStatus": {
- "pending.detail": "IntelliSense-Status wird geladen",
- "resolved.command.title.createJsconfig": "Erstellen von jsconfig",
- "resolved.command.title.createTsconfig": "tsconfig erstellen",
- "resolved.command.title.open": "Konfigurationsdatei öffnen",
- "resolved.detail.noJsConfig": "Keine jsconfig",
- "resolved.detail.noOpenedFolders": "Keine geöffneten Ordner",
- "resolved.detail.noTsConfig": "Keine tsconfig",
- "resolved.detail.notInOpenedFolder": "Datei ist kein Teil geöffneter Ordner",
- "statusItem.name": "JS/TS IntelliSense-Status",
- "syntaxOnly.command.title.learnMore": "Weitere Informationen",
- "syntaxOnly.detail": "Projektweites IntelliSense nicht verfügbar",
- "syntaxOnly.text": "Teilmodus"
- },
- "dist/ui/versionStatus": {
- "versionStatus.command": "Version auswählen",
- "versionStatus.detail": "TypeScript-Version",
- "versionStatus.name": "TypeScript-Version"
- },
- "dist/utils/api": {
- "invalidVersion": "Ungültige Version"
- },
- "dist/utils/logger": {
- "channelName": "TypeScript"
- },
- "dist/utils/tsconfig": {
- "typescript.configureJsconfigQuickPick": "jsconfig.json konfigurieren",
- "typescript.configureTsconfigQuickPick": "tsconfig.json konfigurieren",
- "typescript.noJavaScriptProjectConfig": "Die Datei ist nicht Teil eines JavaScript-Projekts. Weitere Informationen finden Sie in der [jsconfig.json-Dokumentation]({0}).",
- "typescript.noTypeScriptProjectConfig": "Die Datei ist nicht Teil eines TypeScript-Projekts. Weitere Informationen finden Sie in der [tsconfig.json-Dokumentation]({0}).",
- "typescript.projectConfigCouldNotGetInfo": "TypeScript- oder JavaScript-Projekt konnte nicht ermittelt werden.",
- "typescript.projectConfigNoWorkspace": "Öffnen Sie einen Ordner in VS Code, um ein TypeScript- oder JavaScript-Projekt zu verwenden.",
- "typescript.projectConfigUnsupportedFile": "TypeScript- oder JavaScript-Projekt konnte nicht ermittelt werden. Nicht unterstützter Dateityp."
- },
- "package": {
- "codeActions.refactor.extract.constant.description": "Ausdruck in Konstante extrahieren",
- "codeActions.refactor.extract.constant.title": "Konstante extrahieren",
- "codeActions.refactor.extract.function.description": "Ausdruck in Methode oder Funktion extrahieren",
- "codeActions.refactor.extract.function.title": "Funktion extrahieren",
- "codeActions.refactor.extract.interface.description": "Typ in eine Schnittstelle extrahieren",
- "codeActions.refactor.extract.interface.title": "Schnittstelle extrahieren",
- "codeActions.refactor.extract.type.description": "Typ in einen Typalias extrahieren",
- "codeActions.refactor.extract.type.title": "Typ extrahieren",
- "codeActions.refactor.move.newFile.description": "Ausdruck in eine neue Datei verschieben",
- "codeActions.refactor.move.newFile.title": "In neue Datei verschieben",
- "codeActions.refactor.rewrite.arrow.braces.description": "Klammern in einer Pfeilfunktion hinzufügen oder entfernen",
- "codeActions.refactor.rewrite.arrow.braces.title": "Pfeilklammern neu schreiben",
- "codeActions.refactor.rewrite.export.description": "Zwischen Standardexport und benanntem Export konvertieren",
- "codeActions.refactor.rewrite.export.title": "Export konvertieren",
- "codeActions.refactor.rewrite.import.description": "Zwischen benannten Importen und Namespaceimporten konvertieren",
- "codeActions.refactor.rewrite.import.title": "Import konvertieren",
- "codeActions.refactor.rewrite.parameters.toDestructured.title": "Parameter in destrukturiertes Objekt konvertieren",
- "codeActions.refactor.rewrite.property.generateAccessors.description": "GET- und SET-Accessoren generieren",
- "codeActions.refactor.rewrite.property.generateAccessors.title": "Accessoren generieren",
- "codeActions.source.organizeImports.title": "Importe organisieren",
- "configuration.implicitProjectConfig.checkJs": "Aktiviert/deaktiviert die Semantikprüfung bei JavaScript-Dateien. Diese Einstellung wird von vorhandenen Dateien \"jsconfig.json\" oder \"tsconfig.json\" außer Kraft gesetzt.",
- "configuration.implicitProjectConfig.experimentalDecorators": "Aktiviert/deaktiviert \"experimentalDecorators\" in JavaScript-Dateien, die keinem Projekt angehören. Diese Einstellung wird von vorhandenen Dateien \"jsconfig.json\" oder \"tsconfig.json\" außer Kraft gesetzt.",
- "configuration.implicitProjectConfig.module": "Legt das Modulsystem für das Programm fest. Weitere Informationen finden Sie unter https://www.typescriptlang.org/tsconfig#module.",
- "configuration.implicitProjectConfig.strictFunctionTypes": "Aktiviert/deaktiviert [strenge Funktionstypen](https://www.typescriptlang.org/tsconfig#strictFunctionTypes) in JavaScript- und TypeScript-Dateien, die keinem Projekt angehören. Diese Einstellung wird von vorhandenen Dateien \"jsconfig.json\" oder \"tsconfig.json\" außer Kraft gesetzt.",
- "configuration.implicitProjectConfig.strictNullChecks": "Aktiviert/deaktiviert [strenge NULL-Prüfungen](https://www.typescriptlang.org/tsconfig#strictNullChecks) in JavaScript- und TypeScript-Dateien, die keinem Projekt angehören. Diese Einstellung wird von vorhandenen Dateien \"jsconfig.json\" oder \"tsconfig.json\" außer Kraft gesetzt.",
- "configuration.implicitProjectConfig.target": "Legen Sie die JavaScript-Zielsprachversion für ausgegebenes JavaScript fest, und schließen Sie Bibliotheksdeklarationen ein. Weitere Informationen finden Sie unter https://www.typescriptlang.org/tsconfig#target.",
- "configuration.inlayHints.parameterNames.suppressWhenArgumentMatchesName": "Unterdrückt Hinweise für Parameternamen auf Argumenten, deren Text mit dem Parameternamen identisch ist.",
- "configuration.inlayHints.variableTypes.suppressWhenTypeMatchesName": "Unterdrücken Sie Typhinweise für Variablen, deren Name mit dem Typnamen identisch ist. Erfordert die Verwendung von TypeScript 4.8 und höher im Arbeitsbereich.",
- "configuration.javascript.checkJs.checkJs.deprecation": "Diese Einstellung ist veraltet. Verwenden Sie stattdessen \"js/ts.implicitProjectConfig.checkJs\".",
- "configuration.javascript.checkJs.experimentalDecorators.deprecation": "Diese Einstellung ist veraltet. Verwenden Sie stattdessen \"js/ts.implicitProjectConfig.experimentalDecorators\".",
- "configuration.suggest.autoImports": "Aktiviert/deaktiviert automatische Importvorschläge.",
- "configuration.suggest.classMemberSnippets.enabled": "Aktivieren/Deaktivieren von Codeschnipseln für Klassenmember. Erfordert die Verwendung von TypeScript 4.5 und höher im Arbeitsbereich",
- "configuration.suggest.completeFunctionCalls": "Vervollständigen Sie Funktionen mit deren Parametersignatur.",
- "configuration.suggest.completeJSDocs": "Vorschläge zum Vervollständigen von JSDoc-Kommentaren aktivieren/deaktivieren.",
- "configuration.suggest.includeAutomaticOptionalChainCompletions": "Aktiviert/deaktiviert Vervollständigungen für möglicherweise nicht definierte Werte, die eine optionale Aufrufkette einfügen. Hierfür muss TS 3.7+ vorhanden sein, und strikte NULL-Überprüfungen müssen aktiviert sein.",
- "configuration.suggest.includeCompletionsForImportStatements": "Hiermit aktivieren/deaktivieren Sie Vervollständigungen für teilweise eingegebene Importanweisungen für den automatischen Import. Erfordert die Verwendung von TypeScript 4.3 und höher im Arbeitsbereich.",
- "configuration.suggest.includeCompletionsWithSnippetText": "Hiermit aktivieren/deaktivieren Sie Schnipselvervollständigungen über TS Server. Erfordert die Verwendung von TypeScript 4.3 und höher im Arbeitsbereich.",
- "configuration.suggest.jsdoc.generateReturns": "Aktivieren/deaktivieren Sie das Generieren von `@returns`-Anmerkungen für JSDoc-Vorlagen. Erfordert die Verwendung von TypeScript 4.2 und höher im Arbeitsbereich.",
- "configuration.suggest.names": "Aktivieren/Deaktivieren, dass eindeutige Namen aus der Datei in JavaScript-Vorschläge eingeschlossen werden. Beachten Sie, dass Namensvorschläge in JavaScript-Code, dessen Semantik mit \"@ts-check\" oder \"checkJs\" überprüft wird, immer deaktiviert sind.",
- "configuration.suggest.objectLiteralMethodSnippets.enabled": "Aktivieren/Deaktivieren Sie Vervollständigungen von Codeausschnitten für Methoden in Objektliteralen. Erfordert die Verwendung von TypeScript 4.7 und höher im Arbeitsbereich",
- "configuration.suggest.paths": "Vorschläge für Pfade in Importanweisungen und require-Aufrufen aktivieren bzw. deaktivieren.",
- "configuration.surveys.enabled": "Gelegentliche Umfragen zur Verbesserung der Unterstützung von JavaScript und TypeScript in Visual Studio Code aktivieren bzw. deaktivieren.",
- "configuration.tsserver.experimental.enableProjectDiagnostics": "(Experimentell) Ermöglicht eine projektweite Fehlerberichterstattung.",
- "configuration.tsserver.maxTsServerMemory": "Der maximale Arbeitsspeicher (in MB), der dem TypeScript-Serverprozess zugeordnet werden soll.",
- "configuration.tsserver.useSeparateSyntaxServer": "Hiermit aktivieren/deaktivieren Sie das Erzeugen eines separaten TypeScript-Servers, der schneller auf syntaxbezogene Vorgänge reagieren kann, beispielsweise das Berechnen von Codefaltung oder von Dokumentsymbolen. Hierfür ist TypeScript 3.4.0 oder höher im Arbeitsbereich erforderlich.",
- "configuration.tsserver.useSeparateSyntaxServer.deprecation": "Diese Einstellung ist veraltet und wurde durch „typescript.tsserver.useSyntaxServer“ ersetzt.",
- "configuration.tsserver.useSyntaxServer": "Kontrolliert, ob TypeScript einen dedizierten Server startet, um syntaxbezogene Vorgänge schneller zu verarbeiten, z. B. das Berechnen der Codefaltung.",
- "configuration.tsserver.useSyntaxServer.always": "Verwenden Sie einen Syntaxserver mit leichter Gewichtung, um alle IntelliSense-Vorgänge zu bearbeiten. Dieser Syntaxserver kann IntelliSense nur für geöffnete Dateien bereitstellen.",
- "configuration.tsserver.useSyntaxServer.auto": "Erzeugen Sie einen vollständigen Server und einen Server mit leichter Gewichtung für Syntaxvorgänge. Der Syntaxserver wird verwendet, um Syntaxvorgänge zu beschleunigen und IntelliSense bereitzustellen, während Projekte geladen werden.",
- "configuration.tsserver.useSyntaxServer.never": "Verwenden Sie keinen dedizierten Syntaxserver. Verwenden Sie einen Einzelserver, um alle IntelliSense-Vorgänge zu bearbeiten.",
- "configuration.tsserver.watchOptions": "Konfigurieren, welche Beobachtungsstrategien verwendet werden sollen, um Dateien und Verzeichnisse nachzuverfolgen. Erfordert die Verwendung von TypeScript 3.8+ im Arbeitsbereich.",
- "configuration.tsserver.watchOptions.fallbackPolling": "Bei der Verwendung von Dateisystemereignissen gibt diese Option die Abrufstrategie an, die verwendet wird, wenn das System keine nativen Dateiüberwachungselemente mehr hat und/oder keine nativen Dateiüberwachungselemente unterstützt.",
- "configuration.tsserver.watchOptions.fallbackPolling.dynamicPriorityPolling ": "Dynamische Warteschlange verwenden, in der weniger häufig geänderte Dateien seltener überprüft werden.",
- "configuration.tsserver.watchOptions.fallbackPolling.fixedPollingInterval": "Jede Datei mehrmals pro Sekunde in einem festen Intervall auf Änderungen überprüfen.",
- "configuration.tsserver.watchOptions.fallbackPolling.priorityPollingInterval": "Jede Datei mehrmals pro Sekunde auf Änderungen überprüfen, bestimmte Dateitypen jedoch mithilfe von Heuristiken seltener als andere überprüfen.",
- "configuration.tsserver.watchOptions.synchronousWatchDirectory": "Verzögertes Beobachten von Verzeichnissen deaktivieren. Das verzögertes Beobachten ist nützlich, wenn viele Dateiänderungen gleichzeitig auftreten können (z. B. eine Änderung in node_modules über eine Ausführung von npm-install). Sie sollten das verzögerte Beobachten jedoch mit diesem Flag für einige weniger häufige Setups deaktivieren.",
- "configuration.tsserver.watchOptions.watchDirectory": "Strategie, wie ganze Verzeichnisbäume unter Systemen ohne rekursive Dateibeobachtungsfunktionalität beobachtet werden.",
- "configuration.tsserver.watchOptions.watchDirectory.dynamicPriorityPolling": "Dynamische Warteschlange verwenden, in der weniger häufig geänderte Verzeichnisse seltener überprüft werden.",
- "configuration.tsserver.watchOptions.watchDirectory.fixedChunkSizePolling": "Ruft in regelmäßigen Abständen Verzeichnisse in Blöcken ab. Hierzu muss im Arbeitsbereich TypeScript 4.3 und höher verwendet werden.",
- "configuration.tsserver.watchOptions.watchDirectory.fixedPollingInterval": "Jedes Verzeichnis mehrmals pro Sekunde in einem festen Intervall auf Änderungen überprüfen.",
- "configuration.tsserver.watchOptions.watchDirectory.useFsEvents": "Versuchen Sie, die nativen Ereignisse des Betriebssystems/Dateisystems für Verzeichnisänderungen zu verwenden.",
- "configuration.tsserver.watchOptions.watchFile": "Strategie für die Anzeige einzelner Dateien.",
- "configuration.tsserver.watchOptions.watchFile.dynamicPriorityPolling": "Dynamische Warteschlange verwenden, in der weniger häufig geänderte Dateien seltener überprüft werden.",
- "configuration.tsserver.watchOptions.watchFile.fixedChunkSizePolling": "Ruft in regelmäßigen Abständen Dateien in Blöcken ab. Hierzu muss im Arbeitsbereich TypeScript 4.3 und höher verwendet werden.",
- "configuration.tsserver.watchOptions.watchFile.fixedPollingInterval": "Jede Datei mehrmals pro Sekunde in einem festen Intervall auf Änderungen überprüfen.",
- "configuration.tsserver.watchOptions.watchFile.priorityPollingInterval": "Jede Datei mehrmals pro Sekunde auf Änderungen überprüfen, bestimmte Dateitypen jedoch mithilfe von Heuristiken seltener als andere überprüfen.",
- "configuration.tsserver.watchOptions.watchFile.useFsEvents": "Versuchen Sie, die nativen Ereignisse des Betriebssystems/Dateisystems für Dateiänderungen zu verwenden.",
- "configuration.tsserver.watchOptions.watchFile.useFsEventsOnParentDirectory": "Versuchen Sie, die nativen Ereignisse des Betriebssystems/Dateisystems zu verwenden, um Änderungen an den Verzeichnissen einer Datei zu überwachen. Dies kann weniger Dateiüberwachungselemente erfordern, doch der Vorgang ist möglicherweise weniger genau.",
- "configuration.typescript": "TypeScript",
- "description": "Bietet umfangreiche Sprachunterstützung für JavaScript und TypeScript.",
- "displayName": "TypeScript- und JavaScript-Sprachfeatures",
- "format.insertSpaceAfterCommaDelimiter": "Definiert die Verarbeitung von Leerzeichen nach einem Kommatrennzeichen.",
- "format.insertSpaceAfterConstructor": "Definiert die Verarbeitung von Leerzeichen nach dem Konstruktorschlüsselwort.",
- "format.insertSpaceAfterFunctionKeywordForAnonymousFunctions": "Definiert die Verarbeitung von Leerzeichen nach einem Funktionsschlüsselwort für anonyme Funktionen.",
- "format.insertSpaceAfterKeywordsInControlFlowStatements": "Definiert die Verarbeitung von Leerzeichen nach Schlüsselwörtern in einer Flusssteuerungsanweisung.",
- "format.insertSpaceAfterOpeningAndBeforeClosingEmptyBraces": "Definiert die Verarbeitung von Leerzeichen nach geschweifter Klammer links und vor geschweifter Klammer rechts, wenn diese keine Inhalte umschließen.",
- "format.insertSpaceAfterOpeningAndBeforeClosingJsxExpressionBraces": "Definiert die Verarbeitung von Leerzeichen nach öffnenden und vor schließenden geschweiften Klammern für JSX-Ausdrücke.",
- "format.insertSpaceAfterOpeningAndBeforeClosingNonemptyBraces": "Definiert die Verarbeitung von Leerzeichen nach öffnenden und vor schließenden nicht leeren geschweiften Klammern.",
- "format.insertSpaceAfterOpeningAndBeforeClosingNonemptyBrackets": "Definiert die Verarbeitung von Leerzeichen nach öffnenden und vor schließenden nicht leeren eckigen Klammern.",
- "format.insertSpaceAfterOpeningAndBeforeClosingNonemptyParenthesis": "Definiert die Verarbeitung von Leerzeichen nach öffnenden und vor schließenden nicht leeren runden Klammern.",
- "format.insertSpaceAfterOpeningAndBeforeClosingTemplateStringBraces": "Definiert die Verarbeitung von Leerzeichen nach öffnenden und vor schließenden geschweiften Klammern für Vorlagenzeichenfolgen.",
- "format.insertSpaceAfterSemicolonInForStatements": "Definiert die Verarbeitung von Leerzeichen nach einem Semikolon in einer for-Anweisung.",
- "format.insertSpaceAfterTypeAssertion": "Definiert die Verarbeitung von Leerzeichen nach Typassertionen in TypeScript.",
- "format.insertSpaceBeforeAndAfterBinaryOperators": "Definiert die Verarbeitung von Leerzeichen nach einem binären Operator.",
- "format.insertSpaceBeforeFunctionParenthesis": "Definiert die Verarbeitung von Leerzeichen vor Funktionsargumentklammern.",
- "format.placeOpenBraceOnNewLineForControlBlocks": "Definiert, ob eine öffnende geschweifte Klammer für Kontrollblöcke in eine neue Zeile eingefügt wird.",
- "format.placeOpenBraceOnNewLineForFunctions": "Definiert, ob eine öffnende geschweifte Klammer für Funktionen in eine neue Zeile eingefügt wird.",
- "format.semicolons": "Definiert die Behandlung optionaler Semikola. Erfordert die Verwendung von TypeScript 3.7 oder höher im Arbeitsbereich.",
- "format.semicolons.ignore": "Fügen Sie keine Semikolons ein, und entfernen Sie diese auch nicht.",
- "format.semicolons.insert": "Fügen Sie am Ende von Anweisungen ein Semikolon ein.",
- "format.semicolons.remove": "Entfernen Sie unnötige Semikola.",
- "goToProjectConfig.title": "Zur Projektkonfiguration wechseln",
- "inlayHints.parameterNames.all": "Aktivieren Sie Hinweise für Parameternamen für literale und nicht literale Argumente.",
- "inlayHints.parameterNames.literals": "Aktivieren Sie Hinweise für Parameternamen nur für literale Argumente.",
- "inlayHints.parameterNames.none": "Deaktivieren Sie Hinweise für Parameternamen.",
- "javascript.format.enable": "Standardmäßigen JavaScript-Formatierer aktivieren/deaktivieren.",
- "javascript.preferences.jsxAttributeCompletionStyle.auto": "Fügen Sie `={}` oder `=\"\"` nach Attributnamen ein, die auf dem Eigenschaftentyp basieren. Informationen zum Steuern des Typs von Anführungszeichen, die für die Attribute in Zeichenfolgen verwendet werden, finden Sie unter „javascript.preferences.quoteStyle“.",
- "javascript.referencesCodeLens.enabled": "Aktiviert oder deaktiviert CodeLens-Verweise in JavaScript-Dateien.",
- "javascript.referencesCodeLens.showOnAllFunctions": "Verweise auf CodeLens für alle Funktionen in JavaScript-Dateien aktivieren/deaktivieren",
- "javascript.suggestionActions.enabled": "Aktiviert oder deaktiviert Vorschlagsdiagnosen für JavaScript-Dateien im Editor.",
- "javascript.validate.enable": "JavaScript-Überprüfung aktivieren/deaktivieren.",
- "reloadProjects.title": "Projekt erneut laden",
- "taskDefinition.tsconfig.description": "Die \"tsconfig\"-Datei, die den TS-Build definiert.",
- "typescript.autoClosingTags": "Aktiviert/deaktiviert das automatische Schließen von JSX-Tags.",
- "typescript.check.npmIsInstalled": "Check if npm is installed for [Automatic Type Acquisition](https://code.visualstudio.com/docs/nodejs/working-with-javascript#_typings-and-automatic-type-acquisition).",
- "typescript.disableAutomaticTypeAcquisition": "Deaktiviert [automatische Typerfassung](https://code.visualstudio.com/docs/nodejs/working-with-javascript#_typings-and-automatic-type-acquisition). Die automatische Typerfassung ruft „@types\" Pakete von npm ab, um IntelliSense für externe Bibliotheken zu verbessern.",
- "typescript.enablePromptUseWorkspaceTsdk": "Aktiviert eine Benutzeraufforderung zur Verwendung der im Arbeitsbereich konfigurierten TypeScript-Version für IntelliSense.",
- "typescript.findAllFileReferences": "Dateiverweise suchen",
- "typescript.format.enable": "Standardmäßigen TypeScript-Formatierer aktivieren/deaktivieren.",
- "typescript.goToSourceDefinition": "Gehen Sie zu Quelldefinition",
- "typescript.implementationsCodeLens.enabled": "Aktiviert oder deaktiviert CodeLens-Implementierungen. Dieses CodeLens-Element zeigt an, wer eine Schnittstelle implementiert hat.",
- "typescript.locale": "Legt das zum Melden von JavaScript- und TypeScript-Fehlern verwendete Gebietsschema fest. Standardmäßig wird das Gebietsschema von VS Code verwendet.",
- "typescript.npm": "Specifies the path to the npm executable used for [Automatic Type Acquisition](https://code.visualstudio.com/docs/nodejs/working-with-javascript#_typings-and-automatic-type-acquisition).",
- "typescript.openTsServerLog.title": "TS Server-Protokolldatei öffnen",
- "typescript.preferences.autoImportFileExcludePatterns": "Globale Muster von Dateien angeben, die von automatischen Importen ausgeschlossen werden sollen. Erfordert die Verwendung von TypeScript 4.8 oder höher im Arbeitsbereich.",
- "typescript.preferences.importModuleSpecifier": "Bevorzugter Pfadstil für automatische Importe.",
- "typescript.preferences.importModuleSpecifier.nonRelative": "Hiermit wird ein nicht relativer Import basierend auf den Werten von \"baseUrl\" oder \"paths\" vorgezogen, die in \"jsconfig.json\"/\"tsconfig.json\" konfiguriert sind.",
- "typescript.preferences.importModuleSpecifier.projectRelative": "Hiermit wird ein nicht relativer Import nur dann vorgezogen, wenn der relative Importpfad das Paket oder das Projektverzeichnis verlassen würde. Hierfür ist die Verwendung von TypeScript 4.2+ im Arbeitsbereich erforderlich.",
- "typescript.preferences.importModuleSpecifier.relative": "Hiermit wird ein relativer Pfad zum importierten Dateispeicherort vorgezogen.",
- "typescript.preferences.importModuleSpecifier.shortest": "Hiermit wird ein nicht relativer Import vorgezogen, falls einer verfügbar ist, der weniger Pfadsegmente als ein relativer Import aufweist.",
- "typescript.preferences.importModuleSpecifierEnding": "Bevorzugtes Pfadende für automatische Importe. Erfordert die Verwendung von TypeScript 4.5+ und höher im Arbeitsbereich.",
- "typescript.preferences.importModuleSpecifierEnding.auto": "Wählen Sie über die Projekteinstellungen einen Standardwert aus.",
- "typescript.preferences.importModuleSpecifierEnding.index": "Hiermit wird \"./component/index.js\" auf \"./component/index\" gekürzt.",
- "typescript.preferences.importModuleSpecifierEnding.js": "Kürzen Sie keine Pfadenden; fügen Sie die Erweiterung \".js\" ein.",
- "typescript.preferences.importModuleSpecifierEnding.minimal": "./component/index.js zu ./component kürzen.",
- "typescript.preferences.includePackageJsonAutoImports": "Hiermit wird die Suche nach \"package.json\"-Abhängigkeiten für verfügbare automatische Importe aktiviert/deaktiviert.",
- "typescript.preferences.includePackageJsonAutoImports.auto": "Basierend auf der geschätzten Leistungsbeeinträchtigung nach Abhängigkeiten suchen",
- "typescript.preferences.includePackageJsonAutoImports.off": "Niemals nach Abhängigkeiten suchen",
- "typescript.preferences.includePackageJsonAutoImports.on": "Immer nach Abhängigkeiten suchen",
- "typescript.preferences.jsxAttributeCompletionStyle": "Bevorzugter Stil für JSX-Attribut-Vervollständigungen.",
- "typescript.preferences.jsxAttributeCompletionStyle.auto": "Fügen Sie `={}` oder `=\"\"` nach Attributnamen ein, die auf dem Eigenschaftentyp basieren. Informationen zum Steuern des Typs von Anführungszeichen, die für die Attribute in Zeichenfolgen verwendet werden, finden Sie unter „typescript.preferences.quoteStyle“.",
- "typescript.preferences.jsxAttributeCompletionStyle.braces": "Fügen Sie „={}“ nach Attributnamen ein.",
- "typescript.preferences.jsxAttributeCompletionStyle.none": "Fügen Sie nur Attributnamen ein.",
- "typescript.preferences.quoteStyle": "Bevorzugtes Anführungszeichenformat, das für schnelle Problembehebungen verwendet werden soll.",
- "typescript.preferences.quoteStyle.auto": "Anführungszeichentyp aus vorhandenem Code ableiten",
- "typescript.preferences.quoteStyle.double": "Verwenden Sie immer doppelte Anführungszeichen: `\"`",
- "typescript.preferences.quoteStyle.single": "Verwenden Sie immer einfache Anführungszeichen: `'`",
- "typescript.preferences.renameShorthandProperties.deprecationMessage": "Die Einstellung \"typescript.preferences.renameShorthandProperties\" wurde zugunsten von \"typescript.preferences.useAliasesForRenames\" als veraltet markiert.",
- "typescript.preferences.useAliasesForRenames": "Hiermit wird die Einführung von Aliasen für Objektkompakteigenschaften während des Umbenennens aktiviert/deaktiviert. Erfordert die Verwendung von TypeScript 3.4 oder höher im Arbeitsbereich.",
- "typescript.problemMatchers.tsc.label": "TypeScript-Probleme",
- "typescript.problemMatchers.tscWatch.label": "TypeScript-Probleme (Überwachungsmodus)",
- "typescript.referencesCodeLens.enabled": "Aktiviert oder deaktiviert CodeLens-Verweise in TypeScript-Dateien.",
- "typescript.referencesCodeLens.showOnAllFunctions": "Verweise auf CodeLens für alle Funktionen in TypeScript-Dateien aktivieren/deaktivieren",
- "typescript.reportStyleChecksAsWarnings": "Stilüberprüfungen als Warnungen melden.",
- "typescript.restartTsServer": "TS Server neu starten",
- "typescript.selectTypeScriptVersion.title": "TypeScript-Version auswählen ...",
- "typescript.suggest.enabled": "Vorschläge für die automatische Vervollständigung aktivieren bzw. deaktivieren.",
- "typescript.suggestionActions.enabled": "Aktiviert oder deaktiviert Vorschlagsdiagnosen für TypeScript-Dateien im Editor.",
- "typescript.tsc.autoDetect": "Legt fest, ob tsc-Tasks automatisch erkannt werden.",
- "typescript.tsc.autoDetect.build": "Nur Tasks mit einmaliger Kompilierung erstellen.",
- "typescript.tsc.autoDetect.off": "Dieses Feature deaktivieren.",
- "typescript.tsc.autoDetect.on": "Build- und Überwachungstasks erstellen",
- "typescript.tsc.autoDetect.watch": "Nur Kompilierungs- und Überwachungstasks erstellen.",
- "typescript.tsdk.desc": "Gibt den Ordnerpfad zu den tsserver- und lib*.d.ts-Dateien unter einer TypeScript-Installation zur Verwendung mit IntelliSense an, zum Beispiel: „./node_modules/typescript/lib“.\r\n\r\n– Sofern als Benutzereinstellung angegeben, ersetzt die TypeScript-Version aus „typescript.tsdk“ automatisch die integrierte TypeScript-Version.\r\n– Sofern als Arbeitsbereichseinstellung angegeben, erlaubt Ihnen „typescript.tsdk“ mit dem Befehl „TypeScript: Select TypeScript version“ zu dieser Arbeitsbereichsversion von TypeScript zu wechseln und sie für IntelliSense zu verwenden.\r\n\r\nWeitere Informationen zum Verwalten von TypeScript-Versionen finden Sie in der [Dokumentation zu TypeScript](https://code.visualstudio.com/docs/typescript/typescript-compiling#_using-newer-typescript-versions).",
- "typescript.tsserver.enableTracing": "Aktiviert die Ablaufverfolgung für die TS-Serverleistung in einem Verzeichnis. Mithilfe dieser Ablaufverfolgungsdateien lassen sich Probleme mit der TS-Serverleistung diagnostizieren. Das Protokoll kann Dateipfade, Quellcode und weitere potenziell vertrauliche Informationen aus Ihrem Projekt enthalten.",
- "typescript.tsserver.log": "Aktiviert die Protokollierung des TS-Servers in eine Datei. Mithilfe der Protokolldatei lassen sich Probleme beim TS-Server diagnostizieren. Die Protokolldatei kann Dateipfade, Quellcode und weitere potenziell sensible Informationen aus Ihrem Projekt enthalten.",
- "typescript.tsserver.pluginPaths": "Zusätzliche Pfade zum Ermitteln von TypeScript Language Service-Plug-Ins.",
- "typescript.tsserver.pluginPaths.item": "Ein absoluter oder relativer Pfad. Ein relativer Pfad wird in Bezug auf die Arbeitsbereichsordner aufgelöst.",
- "typescript.tsserver.trace": "Aktiviert die Ablaufverfolgung von an den TS-Server gesendeten Nachrichten. Mithilfe der Ablaufverfolgung lassen sich Probleme beim TS-Server diagnostizieren. Die Ablaufverfolgung kann Dateipfade, Quellcode und weitere potenziell sensible Informationen aus Ihrem Projekt enthalten.",
- "typescript.updateImportsOnFileMove.enabled": "Aktiviert/deaktiviert die automatische Aktualisierung von Importpfaden beim Umbenennen oder Verschieben einer Datei in VS Code.",
- "typescript.updateImportsOnFileMove.enabled.always": "Pfade immer automatisch aktualisieren lassen.",
- "typescript.updateImportsOnFileMove.enabled.never": "Pfade nie umbenennen und keine Aufforderung anzeigen.",
- "typescript.updateImportsOnFileMove.enabled.prompt": "Bei jeder Umbenennung auffordern.",
- "typescript.validate.enable": "TypeScript-Überprüfung aktivieren/deaktivieren.",
- "typescript.workspaceSymbols.scope": "Hiermit wird gesteuert, welche Dateien über [Zu Symbol im Arbeitsbereich wechseln](https://code.visualstudio.com/docs/editor/editingevolved#_open-symbol-by-name) durchsucht werden.",
- "typescript.workspaceSymbols.scope.allOpenProjects": "Hiermit werden alle geöffneten JavaScript- oder TypeScript-Projekte nach Symbolen durchsucht. Erfordert die Verwendung von TypeScript 3.9 oder höher im Arbeitsbereich.",
- "typescript.workspaceSymbols.scope.currentProject": "Hiermit wird nur im aktuellen JavaScript- oder TypeScript-Projekt nach Symbolen gesucht.",
- "virtualWorkspaces": "In virtuellen Arbeitsbereichen wird das Auflösen und Suchen von Verweisen in Dateien nicht unterstützt.",
- "workspaceTrust": "Für die Erweiterung ist die Arbeitsbereichsvertrauensstellung erforderlich, wenn die Arbeitsbereichsversion verwendet wird, da sie vom Arbeitsbereich angegebene Code ausführt."
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-de/translations/extensions/vb.i18n.json b/i18n/vscode-language-pack-de/translations/extensions/vb.i18n.json
deleted file mode 100644
index 1366e192ac..0000000000
--- a/i18n/vscode-language-pack-de/translations/extensions/vb.i18n.json
+++ /dev/null
@@ -1,16 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "package": {
- "description": "Bietet Schnipsel, Syntaxhervorhebung, Klammernabgleich und Falten in Visual Basic-Dateien.",
- "displayName": "Visual Basic-Sprachgrundlagen"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-de/translations/extensions/vscode-chrome-debug-core.i18n.json b/i18n/vscode-language-pack-de/translations/extensions/vscode-chrome-debug-core.i18n.json
deleted file mode 100644
index 8785d51101..0000000000
--- a/i18n/vscode-language-pack-de/translations/extensions/vscode-chrome-debug-core.i18n.json
+++ /dev/null
@@ -1,69 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "errors": {
- "eval.not.available": "Nicht verfügbar",
- "not.connected": "Keine Verbindung mit Runtime.",
- "restartFrame.cannot": "Frame kann nicht neu gestartet werden.",
- "attribute.path.not.exist": "Das Attribut \"{0}\" ist nicht vorhanden ({1}).",
- "attribute.path.not.absolute": "Das Attribut \"{0}\" ist nicht absolut ({1}). Erwägen Sie das Hinzufügen von \"{2}\" als Präfix, um ein absolutes Attribut zu erhalten.",
- "more.information": "Weitere Informationen",
- "setVariable.error": "Einstellungswert nicht unterstützt.",
- "source.not.found": "Inhalt konnte nicht abgerufen werden.",
- "VSND2010": "Verbindung mit Runtimeprozess nicht möglich, Timeout nach {0} ms – (Ursache: {1}).",
- "VSND2023": "Es ist keine Aufrufliste verfügbar.",
- "failed.to.read.port": "Fehler beim Lesen der Datei \"{dataDirPath}\": {error}",
- "port.file.contents.invalid": "Die Datei am Speicherort \"{dataDirPath}\" enthielt keine gültigen Portdaten. Inhalt: {dataDirContents}"
- },
- "chrome/breakpoints": {
- "setBPTimedOut": "Timeout bei Anforderung zum Festlegen von Haltepunkten.",
- "bp.fail.unbound": "Haltepunkt festgelegt, aber noch nicht gebunden.",
- "bp.fail.noscript": "Das Skript für die Haltepunktanforderung wurde nicht gefunden.",
- "validateBP.sourcemapFail": "Der Haltepunkt wurde ignoriert, weil der generierte Code nicht gefunden wurde (Problem mit Quellzuordnungsdatei?).",
- "validateBP.notFound": "Der Haltepunkt wurde ignoriert, weil der Zielpfad nicht gefunden wurde.",
- "invalidHitCondition": "Ungültige Trefferbedingung: {0}"
- },
- "chrome/chromeDebugAdapter": {
- "exceptions.all": "Alle Ausnahmen",
- "exceptions.uncaught": "Nicht abgefangene Ausnahmen",
- "exceptions.promise_rejects": "Promise-Ablehnungen"
- },
- "chrome/chromeTargetDiscoveryStrategy": {
- "attach.responseButNoTargets": "Es wurde eine Antwort von der Ziel-App empfangen, aber es wurden keine Zielseiten gefunden.",
- "attach.cannotConnect": "Verbindung mit Ziel nicht möglich: {0}",
- "attach.invalidResponse": "Die Antwort vom Ziel ist offenbar ungültig. Fehler: {0}. Antwort: {1}",
- "attach.invalidResponseArray": "Die Antwort vom Ziel ist offenbar ungültig: {0}",
- "attach.noMatchingTarget": "Es wurde kein gültiges Ziel gefunden, das \"{0}\" entspricht. Verfügbare Seiten: {1}",
- "attach.devToolsAttached": "Anfügen an dieses Ziel nicht möglich, an das möglicherweise Chrome DevTools angefügt sind: {0}"
- },
- "chrome/stackFrames": {
- "skipReason": "(übersprungen durch \"{0}\")",
- "scope.exception": "Ausnahme"
- },
- "chrome/stoppedEvent": {
- "reason.description.step": "Bei Schritt angehalten",
- "reason.description.breakpoint": "Bei Haltepunkt angehalten",
- "reason.description.exception": "Bei Ausnahme angehalten",
- "reason.description.uncaughtException": "Bei nicht abgefangener Ausnahme angehalten",
- "reason.description.caughtException": "Bei abgefangener Ausnahme angehalten",
- "reason.description.user_request": "Bei Benutzeranforderung angehalten",
- "reason.description.entry": "Bei Eintritt angehalten",
- "reason.description.debugger_statement": "Bei Debuggeranweisung angehalten",
- "reason.description.restart": "Bei Frameeintritt angehalten",
- "reason.description.promiseRejection": "Bei Promise-Ablehnung angehalten"
- },
- "transformers/baseSourceMapTransformer": {
- "origin.inlined.source.map": "Schreibgeschützter Inlineinhalt aus Quellzuordnungsdatei"
- },
- "transformers/remotePathTransformer": {
- "localRootAndRemoteRoot": "Sowohl localRoot als auch remoteRoot müssen angegeben werden."
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-de/translations/extensions/vscode-node-debug.i18n.json b/i18n/vscode-language-pack-de/translations/extensions/vscode-node-debug.i18n.json
deleted file mode 100644
index d05e2e6d1a..0000000000
--- a/i18n/vscode-language-pack-de/translations/extensions/vscode-node-debug.i18n.json
+++ /dev/null
@@ -1,185 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "package": {
- "extension.description": "Unterstützung für das Node.js-Debugging (Versionen vor 8.0)",
- "node.label": "Node.js",
- "open.loaded.script": "Geladenes Skript öffnen",
- "attach.node.process": "An Node-Prozess anfügen",
- "toggle.skipping.this.file": "Überspringen dieser Datei aktivieren/deaktivieren",
- "start.with.stop.on.entry": "Debuggen starten und beim Eintrag beenden",
- "smartStep.description": "Hiermit wird automatisch der generierte Code durchlaufen, der nicht der ursprünglichen Quelle zugeordnet werden kann.",
- "skipFiles.description": "Ein Array für Globmuster für Dateien, die beim Debuggen übersprungen werden. Das Muster \"/**\" stimmt mit allen internen Node.js-Modulen überein.",
- "outFiles.description": "Wenn Quellzuordnungsdateien aktiviert sind, geben diese Globmuster die generierten JavaScript-Dateien an. Wenn ein Muster mit \"!\" beginnt, werden die Dateien ausgeschlossen. Sofern nicht angegeben, wird der generierte Code im selben Verzeichnis wie seine Quelle erwartet. Beispiel: [\"${workspaceFolder}/out/**/*.js\"]",
- "outDir.deprecationMessage": "Das Attribut \"outDir\" ist veraltet, verwenden Sie stattdessen \"outFiles\".",
- "trace.description": "Diagnoseausgabe erzeugen: Anstatt diese Einstellung auf \"true\" festzulegen, können Sie einen oder mehr durch Kommas getrennte Selektoren aufführen. Der Selektor \"verbose\" aktiviert die detaillierte Ausgabe.",
- "launch.args.description": "Befehlszeilenargumente, die an das Programm übergeben werden.",
- "debug.node.showUseWslIsDeprecatedWarning.description": "Steuert, ob eine Warnung angezeigt werden soll, wenn das Attribut \"useWSL\" verwendet wird.",
- "debug.node.useV3.description": "[Experimentell] Steuert, ob Startkonfigurationen vom Typ \"node\" an die js-debug-Erweiterung delegiert werden sollen.",
- "debug.extensionHost.useV3.description": "[Experimentell] Steuert, ob Startkonfigurationen vom Typ \"extensionHost\" an die js-debug-Erweiterung delegiert werden sollen.",
- "node.protocol.description": "Zu verwendendes Debugging-Protokoll für Node.js",
- "node.protocol.auto.description": "Versuchen, das beste Protokoll automatisch zu ermitteln, wobei \"inspector\" für das Starten von Node 8.0 und höher ausgewählt wird",
- "node.protocol.inspector.description": "Neues Protokoll, das von Node.js-Versionen vor 6.3 unterstützt wird",
- "node.protocol.legacy.description": "Altes Protokoll, das von Node.js-Versionen vor 8.0 unterstützt wird",
- "node.sourceMaps.description": "Hiermit werden JavaScript-Quellzuordnungsdateien verwendet (sofern vorhanden).",
- "node.stopOnEntry.description": "Hiermit wird das Programm nach dem Start automatisch beendet.",
- "node.port.description": "Der Debugport zum Anfügen. Der Standardwert ist 5858.",
- "node.address.description": "Die TCP/IP-Adresse des zu debuggenden Prozesses (nur für Node.js >= 5.0). Der Standardwert ist \"localhost\".",
- "node.timeout.description": "Gibt den Zeitraum in Millisekunden an, nach dem erneut versucht wird, eine Verbindung mit Node.js herzustellen. Der Standardwert ist 10000 ms.",
- "node.restart.description": "Hiermit wird die Sitzung neu gestartet, nachdem Node.js beendet wurde.",
- "node.localRoot.description": "Pfad zum lokalen Verzeichnis mit dem Programm.",
- "node.remoteRoot.description": "Absoluter Pfad zum Remoteverzeichnis mit dem Programm.",
- "node.showAsyncStacks.description": "Zeigt die asynchronen Aufrufe an, die zur aktuellen Aufrufliste geführt haben. Nur Protokoll \"inspector\".",
- "node.sourceMapPathOverrides.description": "Eine Gruppe von Mappings, mit denen die in der Sourcemap angegebenen Pfade der Quelldateien in ihre Pfade auf dem Datenträger umgeschrieben werden.",
- "node.disableOptimisticBPs.description": "Hiermit werden Haltepunkte in einer beliebigen Datei erst festgelegt, wenn eine Sourcemap für diese Datei geladen wurde.",
- "node.launch.program.description": "Der absolute Pfad zum Programm. Der generierte Wert wird anhand von \"package.json\" und geöffneter Dateien geschätzt. Bearbeiten Sie dieses Attribut.",
- "node.launch.externalConsole.deprecationMessage": "Das Attribut \"externalConsole\" ist veraltet. Verwenden Sie stattdessen \"console\".",
- "node.launch.console.description": "Startort des Debugziels",
- "node.launch.console.internalConsole.description": "Die Debugging-Konsole von VS Code (die das Lesen von Eingaben von einem Programm nicht unterstützt)",
- "node.launch.console.integratedTerminal.description": "Das integrierte Terminal von VS Code",
- "node.launch.console.externalTerminal.description": "Ein externes Terminal, das über die Benutzereinstellungen konfiguriert werden kann",
- "node.launch.cwd.description": "Absoluter Pfad zum Arbeitsverzeichnis des Programms, für das ein Debugging durchgeführt werden soll.",
- "node.launch.runtimeExecutable.description": "Die Runtime, die verwendet werden soll: Geben Sie entweder einen absoluten Pfad oder den Namen einer im Pfad verfügbaren Runtime an. Wenn keine Angabe erfolgt, wird \"node\" angenommen.",
- "node.launch.runtimeArgs.description": "Optionale Argumente, die an die ausführbare Datei der Runtime übergeben werden.",
- "node.launch.runtimeVersion.description": "Die Version der node-Runtime, die verwendet werden soll. Benötigt \"nvm\".",
- "node.launch.env.description": "Umgebungsvariablen, die an das Programm übergeben werden. Durch den Wert NULL wird die Variable aus der Umgebung entfernt.",
- "node.launch.envFile.description": "Absoluter Pfad zu einer Datei mit Umgebungsvariablendefinitionen.",
- "node.launch.useWSL.description": "Verwenden Sie das Windows-Subsystem für Linux.",
- "node.launch.useWSL.deprecation": "\"useWSL\" ist veraltet und wird demnächst nicht mehr unterstützt. Verwenden Sie stattdessen die Erweiterung \"Remote – WSL\".",
- "node.launch.outputCapture.description": "Hiermit wird angegeben, wo Ausgabemeldungen erfasst werden: Debug-API oder stdout/stderr-Streams.",
- "node.launch.autoAttachChildProcesses.description": "Debugger automatisch an neue Unterprozesse anfügen.",
- "node.launch.config.name": "Starten",
- "node.attach.processId.description": "Die ID des Prozesses für das Anfügen.",
- "node.attach.config.name": "Anfügen",
- "node.processattach.config.name": "An den Prozess anhängen",
- "node.snippet.launch.label": "Node.js: Programm starten",
- "node.snippet.launch.description": "Node-Programm im Debugmodus starten",
- "node.snippet.npm.label": "Node.js: Über NPM starten",
- "node.snippet.npm.description": "Node-Programme über das npm-Skript \"debug\" starten",
- "node.snippet.attach.label": "Node.js: Anfügen",
- "node.snippet.attach.description": "An ein ausgeführtes Node-Programm anfügen",
- "node.snippet.remoteattach.label": "Node.js: An Remote-Programm anfügen",
- "node.snippet.remoteattach.description": "An den Debugport eines Remote-Node-Programms anfügen",
- "node.snippet.attachProcess.label": "Node.js: An Prozess anfügen",
- "node.snippet.attachProcess.description": "Prozessauswahl zum Auswählen des Node-Prozesses zum Anfügen öffnen",
- "node.snippet.nodemon.label": "Node.js: Nodemon-Einrichtung",
- "node.snippet.nodemon.description": "Verwenden Sie Nodemon zum erneuten Starten einer Debugsitzung bei Quellenänderungen.",
- "node.snippet.mocha.label": "Node.js: Mocha-Tests",
- "node.snippet.mocha.description": "Mocha-Tests debuggen",
- "node.snippet.yo.label": "Node.js: Yeoman-Generator",
- "node.snippet.yo.description": "Yeoman-Generator debuggen (Installation erfolgt durch Ausführen von \"npm link\" im Projektordner)",
- "node.snippet.gulp.label": "Node.js: Gulp-Aufgabe",
- "node.snippet.gulp.description": "Gulp-Aufgabe debuggen (in Ihrem Projekt muss ein lokales Gulp installiert sein)",
- "node.snippet.electron.label": "Node.js: Electron-Hauptprozess",
- "node.snippet.electron.description": "Electron-Hauptprozess debuggen"
- },
- "dist/node/nodeDebug": {
- "setVariable.error": "Einstellungswert nicht unterstützt.",
- "exception.paused.promise.rejection": "Bei Promise-Rejection angehalten",
- "exception.promise.rejection.text": "Zusageablehnung ({0})",
- "exception.promise.rejection": "Zusageablehnung",
- "reason.description.step": "Bei Schritt angehalten",
- "reason.description.breakpoint": "Beim Haltepunkt angehalten",
- "reason.description.exception": "Bei Ausnahme angehalten",
- "reason.description.user_request": "Bei Benutzeranforderung angehalten",
- "reason.description.entry": "Bei Eintrag angehalten",
- "reason.description.debugger_statement": "Bei Debuggeranweisung angehalten",
- "reason.description.restart": "Bei Frameeintritt angehalten",
- "exceptions.all": "Alle Ausnahmen",
- "exceptions.uncaught": "Nicht abgefangene Ausnahmen",
- "exceptions.rejects": "Zusageablehnungen",
- "VSND2028": "Unbekannter Konsolentyp \"{0}\".",
- "attribute.wls.not.exist": "Die Installation des Windows-Subsystems für Linux wurde nicht gefunden.",
- "VSND2001": "Die Runtime \"{0}\" wurde nicht in PATH gefunden. Stellen Sie sicher, dass \"{0}\" installiert ist.",
- "program.path.case.mismatch.warning": "Der Programmpfad verwendet eine andere Groß-/Kleinschreibung als die Datei auf dem Datenträger. Dies kann dazu führen, dass Haltepunkte nicht wirksam sind.",
- "VSND2002": "Das Programm \"{0}\" kann nicht gestartet werden. Möglicherweise kann das Problem durch Konfigurieren von Quellzuordnungsdateien behoben werden.",
- "VSND2009": "Das Programm \"{0}\" kann nicht gestartet werden, weil das zugehörige JavaScript nicht gefunden wurde.",
- "VSND2003": "Das Programm \"{0}\" kann nicht gestartet werden. Möglicherweise kann das Problem durch Festlegen des Attributs \"{1}\" behoben werden.",
- "VSND2029": "Umgebungsvariablen können nicht aus Datei geladen werden ({0}).",
- "node.console.title": "Node-Debugging-Konsole",
- "VSND2011": "Das Debugziel im Terminal kann nicht gestartet werden ({0}).",
- "VSND2017": "Das Debugziel kann nicht gestartet werden ({0}).",
- "VSND2010": "Es kann keine Verbindung mit dem Laufzeitprozess hergestellt werden (Ursache: {0}).",
- "VSND2033": "Es kann keine Verbindung mit der Runtime hergestellt werden. Stellen Sie sicher, dass für die Runtime der Debugmodus \"legacy\" festgelegt ist.",
- "VSND2034": "Über das Protokoll \"legacy\" kann keine Verbindung mit der Runtime hergestellt werden. Versuchen Sie, das Protokoll \"inspector\" zu verwenden.",
- "file.on.disk.changed": "Nicht überprüft, weil sich die Datei auf dem Datenträger geändert hat. Starten Sie die Debugsitzung neu.",
- "VSND2019": "Das interne Modul {0} wurde nicht gefunden.",
- "sourcemapping.fail.message": "Der Haltepunkt wurde ignoriert, weil der generierte Code nicht gefunden wurde (Problem mit Quellzuordnungsdatei?).",
- "VSND2022": "Keine Aufrufliste verfügbar, weil das Programm außerhalb von JavaScript angehalten wurde.",
- "VSND2023": "Es ist keine Aufrufliste verfügbar.",
- "VSND2018": "Es ist keine Aufrufliste verfügbar ({_command}: {_error}).",
- "origin.from.node": "Schreibgeschützter Inhalt aus Node.js",
- "origin.from.remote.node": "Schreibgeschützter Inhalt aus Remote-Node.js.",
- "origin.core.module": "Schreibgeschütztes Kernmodul",
- "source.skipFiles": "Aufgrund von \"skipFiles\" übersprungen",
- "source.smartstep": "Aufgrund von \"smartStep\" übersprungen",
- "origin.inlined.source.map": "Schreibgeschützter Inlineinhalt aus Quellzuordnungsdatei",
- "anonymous.function": "(anonyme Funktion)",
- "scope.local.with.count": "Lokal ({0} von {1})",
- "scope.unknown": "Unbekannter Bereichstyp: {0}",
- "scope.exception": "Ausnahme",
- "eval.not.available": "Nicht verfügbar",
- "eval.invalid.expression": "Ungültiger Ausdruck: \"{0}\"",
- "source.not.found": "Inhalt konnte nicht abgerufen werden.",
- "attribute.path.not.exist": "Das Attribut \"{0}\" ist nicht vorhanden ({1}).",
- "attribute.path.not.absolute": "Das Attribut \"{0}\" ist nicht absolut ({1}). Erwägen Sie das Hinzufügen von \"{2}\" als Präfix, um ein absolutes Attribut zu erhalten.",
- "more.information": "Weitere Informationen",
- "VSND2015": "Die Anforderung \"{_request}\" wurde abgebrochen, weil Node.js nicht reagiert.",
- "VSND2016": "Node.js\" hat auf die Anforderung \"{_request}\" nicht innerhalb einer angemessenen Zeitspanne geantwortet.",
- "scope.global": "GLOBAL",
- "scope.local": "LOCAL",
- "scope.with": "mit",
- "scope.closure": "Closure",
- "scope.catch": "Catch",
- "scope.block": "Block",
- "scope.script": "Skript"
- },
- "dist/node/nodeV8Protocol": {
- "not.connected": "Keine Verbindung mit Runtime.",
- "runtime.unresponsive": "Abgebrochen, weil Node.js nicht reagiert.",
- "runtime.timeout": "Timeout nach {0} ms"
- },
- "dist/node/extension/autoAttach": {
- "process.with.pid.label": "Automatisch angefügt ({0})"
- },
- "dist/node/extension/cluster": {
- "child.process.with.pid.label": "Untergeordneter Prozess \"{0}\""
- },
- "dist/node/extension/configurationProvider": {
- "program.not.found.message": "Es wurde kein zu debuggendes Programm gefunden",
- "useWslDeprecationWarning.title": "Das Attribut \"useWSL\" ist veraltet. Verwenden Sie stattdessen die Erweiterung \"Remote WSL\". Klicken Sie [hier]({0}), um weitere Informationen zu erhalten.",
- "useWslDeprecationWarning.doNotShowAgain": "Nicht mehr anzeigen",
- "NVS_HOME.not.found.message": "Das Attribut \"runtimeVersion\" erfordert den Node.js-Versions-Manager \"nvs\".",
- "NVM_HOME.not.found.message": "Das Attribut \"runtimeVersion\" erfordert den Node.js-Versions-Manager \"nvm-windows\" oder \"nvs\".",
- "NVM_DIR.not.found.message": "Das Attribut \"runtimeVersion\" erfordert den Node.js-Versions-Manager \"nvm\" oder \"nvs\".",
- "runtime.version.not.found.message": "Die Node.js-Version \"{0}\" ist für \"{1}\" nicht installiert.",
- "node.launch.config.name": "Programm starten",
- "mern.starter.explanation": "Startet die Konfiguration für das erstellte Projekt \"{0}\".",
- "program.guessed.from.package.json.explanation": "Startet die auf Basis von \"package.json\" erstellte Konfiguration.",
- "outFiles.explanation": "Stellt das oder die Globmuster im \"outFiles\"- Attribut so ein, dass sie den generierten JavaScript-Code abdecken."
- },
- "dist/node/extension/processPicker": {
- "pid.error": "An Prozess anfügen: Der Prozess \"{0}\" kann nicht in den Debugmodus gesetzt werden.",
- "process.id.error": "An Prozess anfügen: \"{0}\" scheint keine Prozess-ID zu sein.",
- "pickNodeProcess": "Node.js-Prozess zum Anfügen auswählen",
- "process.picker.error": "Fehler bei der Prozessauswahl ({0})",
- "process.id.port": "Prozess-ID: {0}, Debugport: {1}",
- "process.id.port.legacy": "Prozess-ID: {0}, Debugport: {1} (Legacy-Protokoll)",
- "process.id.port.signal": "Prozess-ID: {0}, Debugport: {1} ({2})",
- "process.id.signal": "Prozess-ID: {0} ({1})",
- "cannot.enable.debug.mode.error": "An den Prozess anhängen: Der Debugmodus für den Prozess \"{0}\" kann nicht aktiviert werden ({1})."
- },
- "dist/node/extension/protocolDetection": {
- "protocol.switch.legacy.detected": "Debugging mit Legacy-Protokoll, da es erkannt wurde.",
- "protocol.switch.unknown.error": "Das Debugging erfolgt mit dem Inspektorprotokoll, weil die Node.js-Version nicht ermittelt werden konnte ({0}).",
- "protocol.switch.legacy.version": "Node.js {0} wurde erkannt. Deswegen erfolgt das Debuggen mit dem Legacyprotokoll."
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-de/translations/extensions/vscode-node-debug2.i18n.json b/i18n/vscode-language-pack-de/translations/extensions/vscode-node-debug2.i18n.json
deleted file mode 100644
index 0dc0380248..0000000000
--- a/i18n/vscode-language-pack-de/translations/extensions/vscode-node-debug2.i18n.json
+++ /dev/null
@@ -1,80 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "package": {
- "extension.description": "Node.js-Debuggingunterstützung",
- "node.label": "Node.js v6.3 und höher über Inspector Protocol",
- "node.sourceMaps.description": "Hiermit werden JavaScript-Quellzuordnungsdateien verwendet (sofern vorhanden).",
- "outDir.deprecationMessage": "Das Attribut \"outDir\" ist veraltet, verwenden Sie stattdessen \"outFiles\".",
- "node.outFiles.description": "Wenn Quellzuordnungsdateien aktiviert sind, geben diese Globmuster die generierten JavaScript-Dateien an. Wenn ein Muster mit \"!\" beginnt, werden die Dateien ausgeschlossen. Sofern nicht angegeben, wird der generierte Code im selben Verzeichnis wie die zugehörige Quelle erwartet.",
- "node.stopOnEntry.description": "Hiermit wird das Programm nach dem Start automatisch beendet.",
- "node.port.description": "Debugport für das Anfügen. Der Standardwert ist 9229.",
- "node.address.description": "TCP/IP-Adresse des Debugports. Der Standardwert ist \"localhost\".",
- "node.timeout.description": "Gibt den Zeitraum in Millisekunden an, nach dem erneut versucht wird, eine Verbindung mit Node.js herzustellen. Der Standardwert ist 10000 ms.",
- "node.smartStep.description": "Hiermit wird automatisch der generierte Code durchlaufen, der nicht der ursprünglichen Quelle zugeordnet werden kann.",
- "node.enableSourceMapCaching.description": "Hiermit werden aus einer URL heruntergeladene Sourcemaps auf dem Datenträger zwischengespeichert.",
- "node.diagnosticLogging.description": "Bei Festlegung auf TRUE protokolliert der Adapter eigene Diagnoseinformationen in der Konsole.",
- "node.diagnosticLogging.deprecationMessage": "\"diagnosticLogging\" ist veraltet. Verwenden Sie stattdessen \"trace\".",
- "node.verboseDiagnosticLogging.description": "Bei Festlegung auf TRUE protokolliert der Adapter den gesamten Datenverkehr mit Client und Ziel (sowie die über \"diagnosticLogging\" erfassten Informationen).",
- "node.verboseDiagnosticLogging.deprecationMessage": "\"verboseDiagnosticLogging\" ist veraltet. Verwenden Sie stattdessen \"trace\".",
- "node.trace.description": "Bei Festlegung auf TRUE protokolliert der Debugger Ablaufverfolgungsinformationen in einer Datei. Bei Festlegung auf \"verbose\" werden auch Protokolle in der Konsole angezeigt.",
- "node.sourceMapPathOverrides.description": "Eine Reihe von Zuordnungen zum Umschreiben der Speicherorte von Quelldateien gemäß Sourcemap in die Speicherorte auf dem Datenträger. Ausführliche Informationen finden Sie in der README-Datei.",
- "node.skipFiles.description": "Ein Array aus Datei- oder Ordnernamen oder Globmustern, die beim Debuggen übersprungen werden sollen.",
- "node.restart.description": "Hiermit wird die Sitzung neu gestartet, nachdem Node.js beendet wurde.",
- "node.showAsyncStacks.description": "Hiermit werden die asynchronen Aufrufe angezeigt, die zur aktuellen Aufrufliste geführt haben.",
- "node.disableOptimisticBPs.description": "Hiermit werden Haltepunkte in einer beliebigen Datei erst festgelegt, wenn eine Sourcemap für diese Datei geladen wurde.",
- "node.launch.program.description": "Absoluter Pfad zum Programm.",
- "node.launch.console.description": "Hiermit wird angegeben, wo das Debugziel gestartet werden soll: interne Konsole, integriertes Terminal oder externes Terminal.",
- "node.launch.args.description": "Befehlszeilenargumente, die an das Programm übergeben werden.",
- "node.launch.cwd.description": "Absoluter Pfad zum Arbeitsverzeichnis des Programms, für das ein Debugging durchgeführt werden soll.",
- "node.launch.runtimeExecutable.description": "Die zu verwendende Runtime. Dies ist entweder ein absoluter Pfad oder der Name einer Runtime, die in PATH verfügbar ist. Sofern nicht angegeben, wird \"node\" angenommen.",
- "node.launch.runtimeArgs.description": "Optionale Argumente, die an die ausführbare Datei der Runtime übergeben werden.",
- "node.launch.env.description": "Umgebungsvariablen, die an das Programm übergeben werden. Durch den Wert NULL wird die Variable aus der Umgebung entfernt.",
- "node.launch.envFile.description": "Absoluter Pfad zu einer Datei mit Umgebungsvariablendefinitionen.",
- "node.launch.outputCapture.description": "Hiermit wird angegeben, wo Ausgabemeldungen erfasst werden: Debug-API oder stdout/stderr-Streams.",
- "node.launch.config.name": "Starten",
- "node.attach.processId.description": "Die ID des Prozesses für das Anfügen.",
- "node.attach.localRoot.description": "Der lokale Quellstamm, der \"remoteRoot\" entspricht.",
- "node.attach.remoteRoot.description": "Der Quellstamm des Remotehosts.",
- "node.attach.config.name": "Anfügen",
- "node.processattach.config.name": "An den Prozess anhängen",
- "toggle.skipping.this.file": "Überspringen dieser Datei aktivieren/deaktivieren",
- "extensionHost.label": "VS Code-Erweiterungsentwicklung",
- "extensionHost.launch.runtimeExecutable.description": "Absoluter Pfad zu VS Code.",
- "extensionHost.launch.stopOnEntry.description": "Hiermit wird der Erweiterungshost nach dem Start automatisch beendet.",
- "extensionHost.launch.env.description": "Umgebungsvariablen, die an den Erweiterungshost übergeben werden.",
- "extensionHost.snippet.launch.label": "VS Code-Erweiterungsentwicklung",
- "extensionHost.snippet.launch.description": "VS Code-Erweiterung im Debugmodus starten",
- "extensionHost.launch.config.name": "Erweiterung starten"
- },
- "out/src/errors": {
- "VSND2001": "Die Runtime \"{0}\" wurde nicht in PATH gefunden. Ist \"{0}\" installiert?",
- "VSND2011": "Das Debugziel im Terminal kann nicht gestartet werden ({0}).",
- "VSND2017": "Das Debugziel kann nicht gestartet werden ({0}).",
- "VSND2035": "Debuggen der Erweiterung nicht möglich ({0}).",
- "VSND2028": "Unbekannter Konsolentyp \"{0}\".",
- "VSND2002": "Das Programm \"{0}\" kann nicht gestartet werden. Möglicherweise kann das Problem durch Konfigurieren von Quellzuordnungsdateien behoben werden.",
- "VSND2003": "Das Programm \"{0}\" kann nicht gestartet werden. Möglicherweise kann das Problem durch Festlegen des Attributs \"{1}\" behoben werden.",
- "VSND2009": "Das Programm \"{0}\" kann nicht gestartet werden, weil das zugehörige JavaScript nicht gefunden wurde.",
- "VSND2029": "Umgebungsvariablen können nicht aus Datei geladen werden ({0})."
- },
- "out/src/nodeDebugAdapter": {
- "attribute.wsl.not.exist": "Das Windows-Subsystem für die Linux-Installation wurde nicht gefunden.",
- "program.path.case.mismatch.warning": "Der Programmpfad verwendet eine andere Groß-/Kleinschreibung als die Datei auf dem Datenträger. Dies kann dazu führen, dass Haltepunkte nicht wirksam sind.",
- "node.console.title": "Node-Debugkonsole",
- "attribute.path.not.exist": "Das Attribut \"{0}\" ist nicht vorhanden ({1}).",
- "attribute.path.not.absolute": "Das Attribut \"{0}\" ist nicht absolut ({1}). Erwägen Sie das Hinzufügen von \"{2}\" als Präfix, um ein absolutes Attribut zu erhalten.",
- "VSND2001": "Die Runtime \"{0}\" wurde nicht in PATH gefunden. Stellen Sie sicher, dass \"{0}\" installiert ist.",
- "more.information": "Weitere Informationen",
- "origin.from.node": "Schreibgeschützter Inhalt aus Node.js",
- "origin.core.module": "Schreibgeschütztes Kernmodul"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-de/translations/extensions/vscode.bat.i18n.json b/i18n/vscode-language-pack-de/translations/extensions/vscode.bat.i18n.json
index df2e282175..23f00f871b 100644
--- a/i18n/vscode-language-pack-de/translations/extensions/vscode.bat.i18n.json
+++ b/i18n/vscode-language-pack-de/translations/extensions/vscode.bat.i18n.json
@@ -9,8 +9,8 @@
"version": "1.0.0",
"contents": {
"package": {
- "displayName": "Windows-Bat-Sprachgrundlagen",
- "description": "Bietet Ausschnitte, Syntaxhervorhebung, Klammernabgleich und Falten in Windows-Batch-Dateien."
+ "description": "Bietet Schnipsel, Syntaxhervorhebung, Klammernabgleich und Falten in Windows-Batch-Dateien.",
+ "displayName": "Windows-Bat-Sprachgrundlagen"
}
}
}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-de/translations/extensions/notebook-renderers.i18n.json b/i18n/vscode-language-pack-de/translations/extensions/vscode.builtin-notebook-renderers.i18n.json
similarity index 100%
rename from i18n/vscode-language-pack-de/translations/extensions/notebook-renderers.i18n.json
rename to i18n/vscode-language-pack-de/translations/extensions/vscode.builtin-notebook-renderers.i18n.json
diff --git a/i18n/vscode-language-pack-de/translations/extensions/vscode.clojure.i18n.json b/i18n/vscode-language-pack-de/translations/extensions/vscode.clojure.i18n.json
index 10bc7932e7..8a66dbd82c 100644
--- a/i18n/vscode-language-pack-de/translations/extensions/vscode.clojure.i18n.json
+++ b/i18n/vscode-language-pack-de/translations/extensions/vscode.clojure.i18n.json
@@ -9,8 +9,8 @@
"version": "1.0.0",
"contents": {
"package": {
- "displayName": "Clojure-Sprachgrundlagen",
- "description": "Bietet Syntaxhervorhebung und Klammernabgleich in Clojure-Dateien."
+ "description": "Bietet Syntaxhervorhebung und Klammernabgleich in Clojure-Dateien.",
+ "displayName": "Clojure-Sprachgrundlagen"
}
}
}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-de/translations/extensions/vscode.coffeescript.i18n.json b/i18n/vscode-language-pack-de/translations/extensions/vscode.coffeescript.i18n.json
index 974006bacf..e40c1749a0 100644
--- a/i18n/vscode-language-pack-de/translations/extensions/vscode.coffeescript.i18n.json
+++ b/i18n/vscode-language-pack-de/translations/extensions/vscode.coffeescript.i18n.json
@@ -9,8 +9,8 @@
"version": "1.0.0",
"contents": {
"package": {
- "displayName": "CoffeeScript-Sprachgrundlagen",
- "description": "Bietet Ausschnitte, Syntaxhervorhebung, Klammernabgleich und Falten in CoffeeScript-Dateien."
+ "description": "Bietet Schnipsel, Syntaxhervorhebung, Klammernabgleich und Falten in CoffeeScript-Dateien.",
+ "displayName": "CoffeeScript-Sprachgrundlagen"
}
}
}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-de/translations/extensions/vscode.configuration-editing.i18n.json b/i18n/vscode-language-pack-de/translations/extensions/vscode.configuration-editing.i18n.json
new file mode 100644
index 0000000000..4e7bf9492e
--- /dev/null
+++ b/i18n/vscode-language-pack-de/translations/extensions/vscode.configuration-editing.i18n.json
@@ -0,0 +1,77 @@
+{
+ "": [
+ "--------------------------------------------------------------------------------------------",
+ "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."
+ ],
+ "version": "1.0.0",
+ "contents": {
+ "bundle": {
+ "Example": "Beispiel",
+ "Files by Extension": "Dateien nach Erweiterung",
+ "Files with Extension": "Dateien mit Erweiterung",
+ "Files with Multiple Extensions": "Dateien mit mehreren Erweiterungen",
+ "Files with Path": "Dateien mit Pfad",
+ "Files with Siblings by Name": "Dateien mit gleichgeordneten Elementen nach Name",
+ "Folder by Name (Any Location)": "Ordner nach Name (beliebiger Speicherort)",
+ "Folder by Name (Top Level)": "Ordner nach Name (oberste Ebene)",
+ "Folders with Multiple Names (Top Level)": "Ordner mit mehreren Namen (oberste Ebene)",
+ "GitHub": "GitHub",
+ "Map all files matching the absolute path glob pattern in their path to the language with the given identifier.": "Ordnet alle Dateien, die mit dem absoluten Pfad des Globmusters in ihrem Pfad übereinstimmen, der Sprache mit dem angegebenen Bezeichner zu.",
+ "Map all files matching the glob pattern in their filename to the language with the given identifier.": "Ordnet alle Dateien, deren Dateinamen mit dem Globmuster übereinstimmen, der Sprache mit dem angegebenen Bezeichner zu.",
+ "Match a folder with a specific name in any location.": "Zuordnen eines Ordners mit einem bestimmten Namen an einem beliebigen Speicherort.",
+ "Match a top level folder with a specific name.": "Ordnet einen Ordner auf oberster Ebene einem bestimmten Namen zu.",
+ "Match all files of a specific file extension.": "Ordnet alle Dateien mit einer bestimmten Erweiterung zu.",
+ "Match all files with any of the file extensions.": "Ordnet alle Dateien mit einer der Dateierweiterungen zu.",
+ "Match files that have siblings with the same name but a different extension.": "Ordnet Dateien zu, die gleichgeordnete Elemente mit dem gleichen Namen und einer anderen Erweiterung besitzen.",
+ "Match multiple top level folders.": "Ordnet mehrere Ordner auf oberster Ebene zu.",
+ "The character used by the operating system to separate components in file paths. Is also aliased to '/'.": "Das Zeichen, das vom Betriebssystem zum Trennen von Komponenten in Dateipfaden verwendet wird. Wird auch mit einem Alias auf \"/\" bezeichnet.",
+ "The current opened file": "Die aktuell geöffnete Datei",
+ "The current opened file relative to ${workspaceFolder}": "Die aktuelle geöffnete Datei bezogen auf ${WorkspaceFolder}",
+ "The current opened file workspace folder name without any slashes (/)": "Der aktuell geöffnete Ordnername des Dateiarbeitsbereichs ohne Schrägstriche (/)",
+ "The current opened file's basename": "Der Basisname der aktuellen geöffneten Datei",
+ "The current opened file's basename with no file extension": "Der Basisname der aktuellen geöffneten Datei ohne Erweiterung",
+ "The current opened file's dirname": "Der Verzeichnisname der aktuellen geöffneten Datei",
+ "The current opened file's dirname relative to ${workspaceFolder}": "Der DirName-Wert der aktuell geöffneten Datei relativ zu \"${workspaceFolder}\"",
+ "The current opened file's extension": "Die Erweiterung der aktuellen geöffneten Datei",
+ "The current opened file's folder name": "Der Ordnername der aktuellen geöffneten Datei",
+ "The current selected line number in the active file": "Die aktuelle ausgewählte Zeilennummer in der aktiven Datei",
+ "The current selected text in the active file": "Der aktuelle ausgewählte Text in der aktiven Datei",
+ "The file extension of the editor (e.g. txt)": "Die Dateierweiterung des Editors (z. B. txt)",
+ "The file name of the editor without its directory or extension (e.g. myFile)": "Der Dateiname des Editors ohne Verzeichnis oder Erweiterung (z. B. myFile)",
+ "The name of the default build task. If there is not a single default build task then a quick pick is shown to choose the build task.": "Der Name des Standardbuildtasks. Wenn es keinen Standardbuildtask gibt, wird eine Schnellauswahl angezeigt, um den Buildtask auszuwählen.",
+ "The name of the folder opened in VS Code without any slashes (/)": "Name des in VS Code geöffneten Ordners ohne Schrägstriche (/)",
+ "The nth parent folder name of the editor": "Der Name des übergeordneten Ordners des Editors",
+ "The parent folder name of the editor (e.g. myFileFolder)": "Der Name des übergeordneten Ordners des Editors (z. B. myFileFolder)",
+ "The path of the folder opened in VS Code": "Pfad des in VS Code geöffneten Ordners",
+ "The path where an extension is installed.": "Der Pfad, in dem eine Erweiterung installiert ist.",
+ "The task runner's current working directory on startup": "Das aktuelle Arbeitsverzeichnis der Aufgabenausführung beim Start",
+ "Use the language of the currently active text editor if any": "Falls möglich, verwenden Sie die Sprache des aktuell aktiven Text-Editors.",
+ "a conditional separator (' - ') that only shows when surrounded by variables with values": "Ein bedingtes Trennzeichen (' - '), das nur in der Umgebung von Variablen mit Werten angezeigt wird",
+ "an indicator for when the active editor has unsaved changes": "ein Indikator für den Fall, dass der aktive Editor nicht gespeicherte Änderungen aufweist",
+ "e.g. SSH": "z.B. SSH",
+ "e.g. VS Code": "z. B. VS Code",
+ "file path of the workspace (e.g. /Users/Development/myWorkspace)": "Dateipfad des Arbeitsbereichs (z.B. /Benutzer/Entwicklung/meinArbeitsbereich)",
+ "file path of the workspace folder the file is contained in (e.g. /Users/Development/myFolder)": "Dateipfad des Arbeitsbereichsordners, der die Datei enthält (z.B. /Benutzer/Entwicklung/MeinOrdner)",
+ "gist": "Gist",
+ "name of the workspace folder the file is contained in (e.g. myFolder)": "Name des Arbeitsbereichsordners, der die Datei enthält (z.B. MeinOrdner)",
+ "name of the workspace with optional remote name and workspace indicator if applicable (e.g. myFolder, myRemoteFolder [SSH] or myWorkspace (Workspace))": "Name des Arbeitsbereichs mit optionalem Remote-Namen und Arbeitsbereichs-Indikator, falls vorhanden, (z. B. „myFolder“, „myRemoteFolder“ [SSH] oder „myWorkspace“ [Workspace]).",
+ "shortened name of the workspace without suffixes (e.g. myFolder or myWorkspace)": "Gekürzter Name des Arbeitsbereichs ohne Suffixe (z. B. „myFolder“ oder „myWorkspace“)",
+ "the file name (e.g. myFile.txt)": "Der Dateiname (z.B. meineDatei.txt)",
+ "the full path of the file (e.g. /Users/Development/myFolder/myFileFolder/myFile.txt)": "der vollständige Pfad der Datei (z.B. /Benutzer/Development/myFolder/myFileFolder/myFile.txt)",
+ "the full path of the folder the file is contained in (e.g. /Users/Development/myFolder/myFileFolder)": "der vollständige Pfad des Ordners, der die Datei enthält (z.B. /Benutzer/Development/myFolder/myFileFolder)",
+ "the name of the active branch in the active repository (e.g. main)": "der Name des aktiven Branches im aktiven Repository (z. B. „main“)",
+ "the name of the active repository (e.g. vscode)": "der Name des aktiven Repositorys (z. B. „vscode“)",
+ "the name of the folder the file is contained in (e.g. myFileFolder)": "der Name des Ordners, der die Datei enthält (z.B. MyFileFolder)",
+ "the path of the file relative to the workspace folder (e.g. myFolder/myFileFolder/myFile.txt)": "der Pfad der Datei relativ zum Arbeitsbereichsordner (z.B. myFolder/myFileFolder/myFile.txt)",
+ "the path of the folder the file is contained in, relative to the workspace folder (e.g. myFolder/myFileFolder)": "der Pfad des Ordners, der die Datei enthält, relativ zum Arbeitsbereichsordner (z.B. myfolder/MyFileFolder)",
+ "the state of the active editor (e.g. modified).": "der Status des aktiven Editors (z. B. modifiziert)."
+ },
+ "package": {
+ "description": "Stellt Funktionen (erweitertes IntelliSense, automatische Korrektur) in Konfigurationsdateien wie Einstellungs-, Start- und Erweiterungsempfehlungsdateien bereit.",
+ "displayName": "Konfigurationsänderung"
+ }
+ }
+}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-de/translations/extensions/vscode.cpp.i18n.json b/i18n/vscode-language-pack-de/translations/extensions/vscode.cpp.i18n.json
index 70415a698a..2e34a8848f 100644
--- a/i18n/vscode-language-pack-de/translations/extensions/vscode.cpp.i18n.json
+++ b/i18n/vscode-language-pack-de/translations/extensions/vscode.cpp.i18n.json
@@ -9,8 +9,8 @@
"version": "1.0.0",
"contents": {
"package": {
- "displayName": "C/C++-Sprachgrundlagen",
- "description": "Bietet Ausschnitte, Syntaxhervorhebung, Klammernabgleich und Falten in C/C++-Dateien."
+ "description": "Bietet Schnipsel, Syntaxhervorhebung, Klammernabgleich und Falten in C/C++-Dateien.",
+ "displayName": "C/C++-Sprachgrundlagen"
}
}
}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-de/translations/extensions/vscode.csharp.i18n.json b/i18n/vscode-language-pack-de/translations/extensions/vscode.csharp.i18n.json
index be6cb01a38..7fee822c64 100644
--- a/i18n/vscode-language-pack-de/translations/extensions/vscode.csharp.i18n.json
+++ b/i18n/vscode-language-pack-de/translations/extensions/vscode.csharp.i18n.json
@@ -9,8 +9,8 @@
"version": "1.0.0",
"contents": {
"package": {
- "displayName": "C# Sprachgrundlagen",
- "description": "Bietet Ausschnitte, Syntaxhervorhebung, Klammernabgleich und Falten in C#-Dateien."
+ "description": "Bietet Schnipsel, Syntaxhervorhebung, Klammernabgleich und Falten in C#-Dateien.",
+ "displayName": "C# Sprachgrundlagen"
}
}
}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-de/translations/extensions/vscode.css-language-features.i18n.json b/i18n/vscode-language-pack-de/translations/extensions/vscode.css-language-features.i18n.json
new file mode 100644
index 0000000000..45fb84d3b6
--- /dev/null
+++ b/i18n/vscode-language-pack-de/translations/extensions/vscode.css-language-features.i18n.json
@@ -0,0 +1,368 @@
+{
+ "": [
+ "--------------------------------------------------------------------------------------------",
+ "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."
+ ],
+ "version": "1.0.0",
+ "contents": {
+ "bundle": {
+ "\"store\" a boolean test for later evaluation in a guard or if().": "„store“ i.e. Speichern eines booleschen Tests für die spätere Auswertung in einem Wächter oder if().",
+ "'from' expected": "„from2 erwartet",
+ "'in' expected": "„in“ erwartet",
+ "'through' or 'to' expected": "„through“ oder „to“ erwartet",
+ "'{0}'": "„{0}“",
+ "( expected": "( erwartet",
+ ") expected": ") erwartet",
+ "": "",
+ "@font-face": "@font-face",
+ "@font-face rule must define 'src' and 'font-family' properties": "Die „@font-face“-Regel muss die Eigenschaften „src“ und „font-family“ definieren.",
+ "@keyframes {0}": "@keyframes {0}",
+ "A list of properties that are not validated against the `unknownProperties` rule.": "Eine Liste der Eigenschaften, die nicht auf Übereinstimmung mit der Regel \"unknownProperties\" überprüft werden.",
+ "Adds quotes to a string.": "Fügt einer Zeichenfolge Anführungszeichen hinzu.",
+ "Also define the standard property '{0}' for compatibility": "Definieren Sie außerdem die Standardeigenschaft „{0}“ aus Kompatibilitätsgründen",
+ "Always define standard rule '@keyframes' when defining keyframes.": "Definieren Sie beim Definieren von Keyframes immer die Standardregel „@keyframes“.",
+ "Always include all vendor specific properties: Missing: {0}": "Schließen Sie immer alle herstellerspezifischen Eigenschaften ein: Fehlt: {0}",
+ "Always include all vendor specific rules: Missing: {0}": "Schließen Sie immer alle herstellerspezifischen Regeln ein: Fehlt: {0}",
+ "Appends a single value onto the end of a list.": "Fügt einen einzelnen Wert an das Ende einer Liste an.",
+ "Appends selectors to one another without spaces in between.": "Fügt Selektoren ohne Leerzeichen dazwischen an.",
+ "Avoid using !important. It is an indication that the specificity of the entire CSS has gotten out of control and needs to be refactored.": "Verwendung von „!important“ vermeiden. Damit wird angegeben, dass es mit der Spezifität des gesamten CSS-Codes Probleme gibt und eine Umgestaltung erforderlich ist.",
+ "Avoid using 'float'. Floats lead to fragile CSS that is easy to break if one aspect of the layout changes.": "Die Verwendung von „float“ vermeiden. „float“-Eigenschaften führen leicht dazu, dass CSS nicht mehr funktioniert, wenn sich ein Aspekt des Layouts ändert.",
+ "CSS Language Server": "CSS-Sprachserver",
+ "CSS fix is outdated and can't be applied to the document.": "Der CSS-Fix ist veraltet und kann nicht auf das Dokument angewendet werden.",
+ "Causes one or more rules to be emitted at the root of the document.": "Bewirkt, dass eine oder mehrere Regeln im Stammverzeichnis des Dokuments ausgegeben werden.",
+ "Changes one or more properties of a color.": "Ändert eine oder mehrere Eigenschaften einer Farbe.",
+ "Changes the alpha component for a color.": "Ändert die Alphakomponente für eine Farbe.",
+ "Changes the hue of a color.": "Ändert den Farbton einer Farbe.",
+ "Combines several lists into a single multidimensional list.": "Kombiniert mehrere Listen zu einer einzelnen mehrdimensionalen Liste.",
+ "Converts a color into the format understood by IE filters.": "Konvertiert eine Farbe in das Format, das von IE-Filtern verstanden wird.",
+ "Converts a color to grayscale.": "Konvertiert eine Farbe in Graustufen.",
+ "Converts a string to lower case.": "Konvertiert eine Zeichenfolge in Kleinbuchstaben.",
+ "Converts a string to upper case.": "Konvertiert eine Zeichenfolge in Großbuchstaben.",
+ "Converts a unitless number to a percentage.": "Konvertiert eine einheitslose Zahl in einen Prozentsatz.",
+ "Creates a Color from hue, saturation, and lightness values.": "Erstellt eine Farbe aus Farbton-, Sättigungs- und Helligkeitswerten.",
+ "Creates a Color from hue, saturation, lightness, and alpha values.": "Erstellt eine Farbe aus Farbton-, Sättigungs-, Helligkeits- und Alphawerten.",
+ "Creates a Color from hue, white, and black values.": "Erstellt eine Farbe aus den Farbton-, Weiß- und Schwarzwerten.",
+ "Creates a Color from lightness, a, and b values.": "Erstellt eine Farbe aus Helligkeits-, a- und b-Werten.",
+ "Creates a Color from lightness, chroma, and hue values.": "Erstellt eine Farbe aus den Helligkeits-, Füll- und Farbtonwerten.",
+ "Creates a Color from red, green, and blue values.": "Erstellt eine Farbe aus roten, grünen und blauen Werten.",
+ "Creates a Color from red, green, blue, and alpha values.": "Erstellt eine Farbe aus Rot-, Grün-, Blau- und Alphawerten.",
+ "Creates a Color from the hue, saturation, and lightness values of another Color.": "Erstellt eine Farbe aus den Farbton-, Sättigungs- und Helligkeitswerten einer anderen Farbe.",
+ "Creates a Color from the hue, white, and black values of another Color.": "Erstellt eine Farbe aus den Farbton-, Weiß- und Schwarzwerten einer anderen Farbe.",
+ "Creates a Color from the lightness, a, and b values of another Color.": "Erstellt eine Farbe aus den Helligkeits-, a- und b-Werten einer anderen Farbe.",
+ "Creates a Color from the lightness, chroma, and hue values of another Color.": "Erstellt eine Farbe aus den Helligkeits-, Füll- und Farbtonwerten einer anderen Farbe.",
+ "Creates a Color from the red, green, and blue values of another Color.": "Erstellt eine Farbe aus den Rot-, Grün- und Blauwerten einer anderen Farbe.",
+ "Creates a Color in a specific color space from red, green, and blue values.": "Erstellt eine Farbe in einem bestimmten Farbraum aus den Rot-, Grün- und Blauwerten.",
+ "Creates a Color in a specific color space from the red, green, and blue values of another Color.": "Erstellt eine Farbe in einem bestimmten Farbraum aus den Rot-, Grün- und Blauwerten einer anderen Farbe.",
+ "Defines complex operations that can be re-used throughout stylesheets.": "Definiert komplexe Vorgänge, die in Stylesheets wiederverwendet werden können.",
+ "Defines styles that can be re-used throughout the stylesheet with `@include`.": "Definiert Formatvorlagen, die im gesamten Stylesheet mit „@include“ wiederverwendet werden können.",
+ "Do not use duplicate style definitions": "Keine doppelten Formatdefinitionen verwenden",
+ "Do not use empty rulesets": "Keine leeren Regelsätze verwenden",
+ "Do not use width or height when using padding or border": "Verwenden Sie keine Breite oder Höhe, wenn Sie Innenabstand oder Rahmen verwenden",
+ "Dynamically calls a Sass function.": "Ruft dynamisch eine Sass-Funktion auf.",
+ "Each loop that sets `$var` to each item in the list or map, then outputs the styles it contains using that value of `$var`.": "Jede Schleife, die „$var“ auf jedes Element in der Liste oder Zuordnung festlegt, gibt dann die darin enthaltenen Formatvorlagen mit dem Wert „$var“ aus.",
+ "Exposes the details of Sass’s inner workings.": "Macht die Details der inneren Funktionsweise von Sass verfügbar.",
+ "Extends $extendee with $extender within $selector.": "Erweitert $extendee mit $extender innerhalb $selector.",
+ "Extracts a substring from $string.": "Extrahiert eine Teilzeichenfolge aus $string.",
+ "Failed to apply CSS fix to the document. Please consider opening an issue with steps to reproduce.": "Die CSS-Korrektur konnte nicht auf das Dokument angewendet werden. Bitte erwägen Sie die Eröffnung eines Problems mit Schritten zur Reproduktion.",
+ "Finds the maximum of several numbers.": "Sucht das Maximum mehrerer Zahlen.",
+ "Finds the minimum of several numbers.": "Sucht das Minimum mehrerer Zahlen.",
+ "Fluidly scales one or more properties of a color.": "Skaliert eine oder mehrere Eigenschaften einer Farbe dynamisch.",
+ "Folding Region End": "Ende des Faltbereichs",
+ "Folding Region Start": "Regionsanfang wird gefaltet",
+ "For loop that repeatedly outputs a set of styles for each `$var` in the `from/through` or `from/to` clause.": "„For“-Schleife, die wiederholt einen Satz von Stilen für jedes „$var“ in der „from/through“- oder „from/to“-Klausel ausgibt.",
+ "Generates new colors based on existing ones, making it easy to build color themes.": "Generiert neue Farben basierend auf vorhandenen, sodass Sie ganz einfach Farbdesigns erstellen können.",
+ "Gets the blue component of a color.": "Ruft die blaue Komponente einer Farbe ab.",
+ "Gets the green component of a color.": "Ruft die grüne Komponente einer Farbe ab.",
+ "Gets the hue component of a color.": "Ruft die Farbtonkomponente einer Farbe ab.",
+ "Gets the lightness component of a color.": "Ruft die Helligkeitskomponente einer Farbe ab.",
+ "Gets the opacity component of a color.": "Ruft die Deckkraftkomponente einer Farbe ab.",
+ "Gets the red component of a color.": "Ruft die rote Komponente einer Farbe ab.",
+ "Gets the saturation component of a color.": "Ruft die Sättigungskomponente einer Farbe ab.",
+ "Hex colors must consist of three, four, six or eight hex numbers": "Hexadezimalfarben müssen aus drei, vier, sechs oder acht Hexadezimalzahlen bestehen.",
+ "IE hacks are only necessary when supporting IE7 and older": "IE-Hacks sind nur für die Unterstützung von IE7 und niedriger erforderlich",
+ "Import statements do not load in parallel": "Import-Anweisungen werden nicht parallel geladen",
+ "Includes the body if the expression does not evaluate to `false` or `null`.": "Schließt den Text ein, wenn der Ausdruck nicht als „FALSE“ oder „NULL“ ausgewertet wird.",
+ "Includes the styles defined by another mixin into the current rule.": "Schließt die von einer anderen Mixin definierten Stile in die aktuelle Regel ein.",
+ "Increases or decreases one or more components of a color.": "Vergrößert oder verringert eine oder mehrere Komponenten einer Farbe.",
+ "Inherits the styles of another selector.": "Erbt die Stile eines anderen Selektors.",
+ "Insert url() Function": "URL()-Funktion einfügen",
+ "Insert url() Functions": "URL()-Funktionen einfügen",
+ "Inserts $insert into $string at $index.": "Fügt $insert bei $index in $string ein.",
+ "Invalid number of parameters": "Ungültige Anzahl von Parametern",
+ "Joins together two lists into one.": "Verknüpft zwei Listen zu einer.",
+ "Lets you access and modify values in lists.": "Ermöglicht ihnen den Zugriff auf und das Ändern von Werten in Listen.",
+ "Loads a Sass stylesheet and makes its mixins, functions, and variables available when this stylesheet is loaded with the @use rule.": "Lädt ein Sass-Stylesheet und macht dessen Mixins, Funktionen und Variablen verfügbar, wenn dieses Stylesheet mit der @use-Regel geladen wird.",
+ "Loads mixins, functions, and variables from other Sass stylesheets as 'modules', and combines CSS from multiple stylesheets together.": "Lädt Mixins, Funktionen und Variablen aus anderen Sass-Stylesheets als „Module“ und kombiniert CSS aus mehreren Stylesheets.",
+ "Makes a color darker.": "Macht eine Farbe dunkler.",
+ "Makes a color less saturated.": "Macht eine Farbe weniger gesättigt.",
+ "Makes a color lighter.": "Macht eine Farbe heller.",
+ "Makes a color more opaque.": "Macht eine Farbe opaker.",
+ "Makes a color more saturated.": "Erhöht die Sättigung einer Farbe.",
+ "Makes a color more transparent.": "Macht eine Farbe transparenter.",
+ "Makes it easy to combine, search, or split apart strings.": "Erleichtert das Kombinieren, Suchen oder Aufteilen von Zeichenfolgen.",
+ "Makes it possible to look up the value associated with a key in a map, and much more.": "Ermöglicht das Nachschlagen des Werts, der einem Schlüssel in einer Karte zugeordnet ist, und vieles mehr.",
+ "Merges two maps together into a new map.": "Führt zwei Zuordnungen zu einer neuen Karte zusammen.",
+ "Mix two colors together in a polar color space.": "Mischen Sie zwei Farben in einem Polarfarbraum.",
+ "Mix two colors together in a rectangular color space.": "Mischen Sie zwei Farben in einem rechteckigen Farbraum.",
+ "Mixes two colors together.": "Kombiniert zwei Farben.",
+ "Nests selector beneath one another like they would be nested in the stylesheet.": "Verschachtelt Selektoren untereinander, wie sie im Stylesheet geschachtelt werden.",
+ "No unit for zero needed": "Keine Einheit für Null erforderlich",
+ "Parses a selector into the format returned by &.": "Analysiert einen Selektor in das von & zurückgegebene Format.",
+ "Prints the value of an expression to the standard error output stream. Useful for debugging complicated Sass files.": "Gibt den Wert eines Ausdrucks in den Standardausgabestream für Fehler aus. Nützlich für das Debuggen komplizierter Sass-Dateien.",
+ "Prints the value of an expression to the standard error output stream. Useful for libraries that need to warn users of deprecations or recovering from minor mixin usage mistakes. Warnings can be turned off with the `--quiet` command-line option or the `:quiet` Sass option.": "Gibt den Wert eines Ausdrucks in den Standardfehlerausgabestrom aus. Nützlich für Bibliotheken, die Benutzer vor Verwerfungen warnen müssen, oder um kleinere Fehler bei der Verwendung von Mixins zu beheben. Warnungen können mit der Kommandozeilenoption „--quiet“ oder der Sass-Option „:quiet“ ausgeschaltet werden.",
+ "Property is ignored due to the display.": "Die Eigenschaft wird aufgrund der Anzeige ignoriert.",
+ "Property is ignored due to the display. With 'display: block', vertical-align should not be used.": "Die Eigenschaft wird aufgrund der Anzeige ignoriert. Bei „display: block“ sollte die vertikale Ausrichtung nicht verwendet werden.",
+ "Provides access to Sass’s powerful selector engine.": "Bietet Zugriff auf die leistungsstarke Selektor-Engine von Sass.",
+ "Provides functions that operate on numbers.": "Stellt Funktionen bereit, die mit Zahlen arbeiten.",
+ "Removes quotes from a string.": "Entfernt Anführungszeichen aus einer Zeichenfolge.",
+ "Rename to '{0}'": "In „{0}“ umbenennen",
+ "Replaces $original with $replacement within $selector.": "Ersetzt $original in $selector durch $replacement.",
+ "Replaces the nth item in a list.": "Ersetzt das nth-Element in einer Liste.",
+ "Returns a list of all keys in a map.": "Gibt eine Liste aller Schlüssel in einer Zuordnung zurück.",
+ "Returns a list of all values in a map.": "Gibt eine Liste aller Werte in einer Zuordnung zurück.",
+ "Returns a new map with keys removed.": "Gibt eine neue Zuordnung mit entfernten Schlüsseln zurück.",
+ "Returns a random number.": "Gibt eine Zufallszahl zurück.",
+ "Returns a specific item in a list.": "Gibt ein bestimmtes Element in einer Liste zurück.",
+ "Returns the absolute value of a number.": "Gibt den absoluten Wert einer Zahl zurück.",
+ "Returns the complement of a color.": "Gibt das Komplement einer Farbe zurück.",
+ "Returns the index of the first occurance of $substring in $string.": "Gibt den Index des ersten Vorkommens von $substring in $string zurück.",
+ "Returns the inverse of a color.": "Gibt die inverse Form einer Farbe zurück.",
+ "Returns the keywords passed to a function that takes variable arguments.": "Gibt die Schlüsselwörter zurück, die an eine Funktion übergeben werden, die variablen Argumente akzeptiert.",
+ "Returns the length of a list.": "Gibt die Länge einer Liste zurück.",
+ "Returns the number of characters in a string.": "Gibt die Anzahl von Zeichen in einer Zeichenfolge zurück.",
+ "Returns the position of a value within a list.": "Gibt die Position eines Werts innerhalb einer Liste zurück.",
+ "Returns the separator of a list.": "Gibt das Trennzeichen einer Liste zurück.",
+ "Returns the simple selectors that comprise a compound selector.": "Gibt die einfachen Selektoren zurück, aus denen ein zusammengesetzter Selektor besteht.",
+ "Returns the string representation of a value as it would be represented in Sass.": "Gibt die Zeichenfolgendarstellung eines Werts zurück, wie er in Sass dargestellt wird.",
+ "Returns the type of a value.": "Gibt den Typ eines Werts zurück.",
+ "Returns the unit(s) associated with a number.": "Gibt die Einheiten zurück, die einer Zahl zugeordnet sind.",
+ "Returns the value in a map associated with a given key.": "Gibt den Wert in einer Zuordnung zu einem bestimmten Schlüssel zurück.",
+ "Returns whether $super matches all the elements $sub does, and possibly more.": "Gibt zurück, ob $super allen Elementen entspricht, die $sub erfüllt, und möglicherweise mehr.",
+ "Returns whether a feature exists in the current Sass runtime.": "Gibt zurück, ob ein Feature in der aktuellen Sass-Laufzeit vorhanden ist.",
+ "Returns whether a function with the given name exists.": "Gibt zurück, ob eine Funktion mit dem angegebenen Namen vorhanden ist.",
+ "Returns whether a map has a value associated with a given key.": "Gibt zurück, ob einer Zuordnung ein Wert zugeordnet ist, der einem bestimmten Schlüssel zugeordnet ist.",
+ "Returns whether a mixin with the given name exists.": "Gibt zurück, ob ein Mixin mit dem angegebenen Namen vorhanden ist.",
+ "Returns whether a number has units.": "Gibt zurück, ob eine Zahl Einheiten aufweist.",
+ "Returns whether a variable with the given name exists in the current scope.": "Gibt zurück, ob eine Variable mit dem angegebenen Namen im aktuellen Bereich vorhanden ist.",
+ "Returns whether a variable with the given name exists in the global scope.": "Gibt zurück, ob eine Variable mit dem angegebenen Namen im globalen Bereich vorhanden ist.",
+ "Returns whether two numbers can be added, subtracted, or compared.": "Gibt zurück, ob zwei Zahlen hinzugefügt, subtrahiert oder verglichen werden können.",
+ "Rounds a number down to the previous whole number.": "Rundet eine Zahl auf die vorherige ganze Zahl ab.",
+ "Rounds a number to the nearest whole number.": "Rundet eine Zahl auf die nächste ganze Zahl.",
+ "Rounds a number up to the next whole number.": "Rundet eine Zahl auf die nächste ganze Zahl auf.",
+ "Sass documentation": "Sass-Dokumentation",
+ "Selector Specificity": "Selektorspezifität",
+ "Selectors should not contain IDs because these rules are too tightly coupled with the HTML.": "Selektoren sollten keine IDs enthalten, da diese Regeln zu eng mit HTML verknüpft sind.",
+ "The universal selector (*) is known to be slow": "Der Universalselektor (*) ist bekanntermaßen langsam",
+ "Throws the value of an expression as a fatal error with stack trace. Useful for validating arguments to mixins and functions.": "Wirft den Wert eines Ausdrucks als fatalen Fehler mit Stack-Trace. Nützlich für die Validierung von Argumenten für Mixins und Funktionen.",
+ "URI expected": "URI erwartet",
+ "URL encodes a string": "URL codiert eine Zeichenfolge",
+ "Unifies two selectors to produce a selector that matches elements matched by both.": "Vereinigt zwei Selektoren, um einen Selektor zu erzeugen, der mit Elementen übereinstimmt, die von beiden übereinstimmen.",
+ "Unknown at-rule.": "Unbekannte at-Regel.",
+ "Unknown property.": "Unbekannte Eigenschaft.",
+ "Unknown property: '{0}'": "Unbekannte Eigenschaft: „{0}“",
+ "Unknown vendor specific property.": "Unbekannte anbieterspezifische Eigenschaft.",
+ "When using a vendor-specific prefix also include the standard property": "Beim Verwenden eines anbieterspezifischen Präfixes auch die Standardeigenschaft einbeziehen",
+ "When using a vendor-specific prefix make sure to also include all other vendor-specific properties": "Beim Verwenden eines anbieterspezifischen Präfixes sicherstellen, dass alle anderen anbieterspezifischen Eigenschaften einbezogen werden",
+ "While loop that takes an expression and repeatedly outputs the nested styles until the statement evaluates to `false`.": "„While“-Schleife, die einen Ausdruck akzeptiert und wiederholt die geschachtelten Stile ausgibt, bis die Anweisung als „FALSE“ ausgewertet wird.",
+ "[ expected": "[ erwartet",
+ "] expected": "] erwartet",
+ "absolute value of a number": "Absoluter Wert einer Zahl",
+ "arccosine - inverse of cosine function": "Arkuskosinus – Umkehrung der Kosinusfunktion",
+ "arcsine - inverse of sine function": "Arkuskosinus – Umkehrung der Sinusfunktion",
+ "arctangent - inverse of tangent function": "Arkustangens – Umkehrung der Tangensfunktion",
+ "argument from '{0}'": "Argument von '{0}'",
+ "at-rule or selector expected": "„at“-Regel oder Selektor erwartet",
+ "at-rule unknown": "„at“-Regel unbekannt",
+ "bind the evaluation of a ruleset to each member of a list.": "die Auswertung eines Regelsatzes an jedes Mitglied einer Liste binden.",
+ "calculates square root of a number": "Berechnet die Quadratwurzel einer Zahl",
+ "colon expected": "Ein Doppelpunkt wurde erwartet",
+ "comma expected": "Komma erwartet",
+ "condition expected": "Bedingung erwartet",
+ "converts numbers from one type into another": "konvertiert Zahlen von einem Typ in einen anderen.",
+ "converts to a %, e.g. 0.5 > 50%": "konvertiert in %, z. B. 0,5 > 50 %",
+ "cosine function": "Kosinusfunktion",
+ "creates a #AARRGGBB": "erstellt eine #AARRGGBB",
+ "creates a color": "erstellt eine Farbe",
+ "css.builtin.lab": "css.builtin.lab",
+ "dot expected": "Punkt erwartet",
+ "escape string content": "Escapezeichenfolgeninhalt",
+ "expression expected": "Ausdruck erwartet",
+ "first argument modulus second argument": "Erstes Argument Modulus zweites Argument",
+ "first argument raised to the power of the second argument": "Erstes Argument, das mit der Potenz des zweiten Arguments ausgelöst wird",
+ "generate a list spanning a range of values": "Generieren einer Liste, die einen Wertebereich umfasst",
+ "identifier expected": "Bezeichner erwartet",
+ "identifier or variable expected": "Bezeichner oder Variable erwartet",
+ "identifier or wildcard expected": "Bezeichner oder Platzhalter erwartet",
+ "inline-block is ignored due to the float. If 'float' has a value other than 'none', the box is floated and 'display' is treated as 'block'": "Der Inlineblock wird aufgrund des Gleitkommawerts ignoriert. Wenn „float“ einen anderen Wert als „none“ aufweist, wird das Feld als „floated“ und „display“ als „Block“ behandelt.",
+ "inlines a resource and falls back to `url()`": "inline eine Ressource und greift auf „url()“ zurück.",
+ "media query expected": "Medienabfrage erwartet",
+ "number expected": "Zahl erwartet",
+ "operator expected": "Operator erwartet",
+ "page directive or declaraton expected": "Seitendirektive oder -deklaration erwartet",
+ "parses a string to a color": "analysiert eine Zeichenfolge in eine Farbe.",
+ "percentage expected": "Prozentsatz erwartet",
+ "property value expected": "Eigenschaftswert erwartet",
+ "remove or change the unit of a dimension": "Entfernen oder Ändern der Einheit einer Dimension",
+ "return `@color` 10% points darker": "\"@color\" um 10 % Punkte dunkler zurückgeben",
+ "return `@color` 10% points less saturated": "gibt „@color“ 10 %-Punkte weniger gesättigt zurück",
+ "return `@color` 10% points less transparent": "gibt „@color“ um 10 % Punkte weniger transparent zurück",
+ "return `@color` 10% points lighter": "gibt „@color“ um 10 % Punkte heller zurück",
+ "return `@color` 10% points more saturated": "„@color“ 10 %-Punkte gesättigter zurückgeben",
+ "return `@color` 10% points more transparent": "„@color“ 10 %-Punkte transparenter zurückgeben",
+ "return `@color` with 50% transparency": "„@color“ mit 50 % Transparenz zurückgeben",
+ "return `@color` with a 10 degree larger in hue": "gibt „@color“ mit einem 10 Grad größeren Farbton zurück.",
+ "return `@darkcolor` if `@color1 is> 43% luma` otherwise return `@lightcolor`, see notes": "„@darkcolor“ zurückgeben, wenn „@color1 > 43 % luma ist“ andernfalls „@lightcolor“ zurückgeben, siehe Hinweise",
+ "return a mix of `@color1` and `@color2`": "gibt eine Mischung aus „@color1“ und „@color2“ zurück.",
+ "returns a grey, 100% desaturated color": "liefert eine graue, 100 % entsättigte Farbe",
+ "returns a value at the specified position in the list": "gibt einen Wert an der angegebenen Position in der Liste zurück.",
+ "returns one of two values depending on a condition.": "gibt je nach Bedingung einen von zwei Werten zurück.",
+ "returns pi": "gibt Pi zurück.",
+ "returns the `alpha` channel of `@color`": "gibt den Alphakanal von „@color“ zurück",
+ "returns the `blue` channel of `@color`": "gibt den blauen Kanal von „@color“ zurück.",
+ "returns the `green` channel of `@color`": "gibt den grünen Kanal von „@color“ zurück.",
+ "returns the `hue` channel of `@color` in the HSL space": "gibt den „Farbton“-Kanal von „@color“ im HSL-Raum zurück",
+ "returns the `hue` channel of `@color` in the HSV space": "gibt den Farbton-Kanal von „@color“ im HSV-Bereich zurück.",
+ "returns the `lightness` channel of `@color` in the HSL space": "gibt den Helligkeitskanal von „@color“ im HSL-Raum zurück.",
+ "returns the `luma` value (perceptual brightness) of `@color`": "gibt den „luma“-Wert (wahrnehmbare Helligkeit) von „@color“ zurück.",
+ "returns the `red` channel of `@color`": "gibt den roten Kanal von „@color“ zurück",
+ "returns the `saturation` channel of `@color` in the HSL space": "gibt den Sättigungskanal von „@color“\" im HSL-Raum zurück.",
+ "returns the `saturation` channel of `@color` in the HSV space": "gibt den Sättigungskanal von „@color“ im HSV-Raum zurück.",
+ "returns the `value` channel of `@color` in the HSV space": "gibt den Value-Kanal von „@color“ im HSV-Bereich zurück.",
+ "returns the lowest of one or more values": "gibt den niedrigsten von mindestens einem Wert zurück.",
+ "returns the number of elements in a value list": "gibt die Anzahl der Elemente in einer Wertliste zurück.",
+ "rounds a number to a number of places": "Rundet eine Zahl auf eine Anzahl von Stellen",
+ "rounds down to an integer": "Rundet auf eine ganze Zahl ab",
+ "rounds up to an integer": "Rundet auf eine ganze Zahl auf",
+ "selector expected": "Selektor erwartet",
+ "semi-colon expected": "Semikolon erwartet",
+ "sine function": "Sinusfunktion",
+ "string literal expected": "Ein Zeichenfolgenliteral wurde erwartet",
+ "string replace": "Ersetzen von Zeichenfolgen",
+ "tangent function": "Gleichungen",
+ "term expected": "Begriff erwartet",
+ "unknown keyword": "Unbekanntes Schlüsselwort",
+ "uri or string expected": "URI oder Zeichenfolge erwartet",
+ "variable name expected": "Es wurde ein Variablenname erwartet",
+ "variable value expected": "Variablenwert erwartet",
+ "whitespace expected": "Leerzeichen erwartet",
+ "wildcard expected": "Platzhalter erwartet",
+ "{ expected": "{ erwartet.",
+ "{0}, '{1}'": "{0}, „{1}“",
+ "} expected": "} erwartet."
+ },
+ "package": {
+ "css.colorDecorators.enable.deprecationMessage": "Die Einstellung \"css.colorDecorators.enable\" ist veraltet und wurde durch \"editor.colorDecorators\" ersetzt.",
+ "css.completion.completePropertyWithSemicolon.desc": "Hiermit wird beim Vervollständigen von CSS-Eigenschaften ein Semikolon am Zeilenende eingefügt.",
+ "css.completion.triggerPropertyValueCompletion.desc": "VS Code löst die Vervollständigung des Eigenschaftswerts standardmäßig aus, nachdem eine CSS-Eigenschaft ausgewählt wurde. Mit dieser Einstellung deaktivieren Sie dieses Verhalten.",
+ "css.customData.desc": "Eine Liste relativer Dateipfade, die auf JSON-Dateien im [benutzerdefinierten Datenformat](https://github.com/microsoft/vscode-css-languageservice/blob/master/docs/customData.md) verweisen.\r\n\r\nVS Code lädt benutzerdefinierte Daten beim Start, um die CSS-Unterstützung für benutzerdefinierte CSS-Eigenschaften (Variablen), At-Regeln, Pseudoklassen und Pseudoelemente zu verbessern, die Sie in den JSON-Dateien angeben.\r\n\r\nDie Dateipfade werden relativ zum Arbeitsbereich angegeben und es werden nur Einstellungen für den Arbeitsbereichsordner berücksichtigt.",
+ "css.format.braceStyle.desc": "Fügen Sie geschweifte Klammern in dieselbe Zeile wie Regeln (`collapse`) oder geschweifte Klammern in eine eigene Zeile (`expand`) ein.",
+ "css.format.enable.desc": "Aktivieren/Deaktivieren Sie den standardmäßigen CSS-Formatierer.",
+ "css.format.maxPreserveNewLines.desc": "Maximale Anzahl von Zeilenumbrüchen, die in einem Block beibehalten werden, wenn `#css.format.preserveNewLines#` aktiviert ist.",
+ "css.format.newlineBetweenRules.desc": "Trennen Sie Regelsätze durch eine leere Zeile.",
+ "css.format.newlineBetweenSelectors.desc": "Trennen Sie Selektoren durch eine neue Zeile.",
+ "css.format.preserveNewLines.desc": "Gibt an, ob vorhandene Zeilenumbrüche vor Regeln und Deklarationen beibehalten werden sollen.",
+ "css.format.spaceAroundSelectorSeparator.desc": "Stellen Sie sicher, dass um die Auswahltrennzeichen „>“, „+“, „~“ (z. B. „a > b“) ein Leerzeichen steht.",
+ "css.hover.documentation": "Eigenschaften- und Wertdokumentation in CSS-Hovers anzeigen.",
+ "css.hover.references": "Hiermit werden bei CSS-Hovers Verweise auf MDN eingeblendet.",
+ "css.lint.argumentsInColorFunction.desc": "Ungültige Anzahl von Parametern.",
+ "css.lint.boxModel.desc": "\"width\" oder \"height\" nicht verwenden, wenn \"padding\" oder \"border\" genutzt werden.",
+ "css.lint.compatibleVendorPrefixes.desc": "Beim Verwenden eines anbieterspezifischen Präfixes sicherstellen, dass alle anderen anbieterspezifischen Eigenschaften einbezogen werden.",
+ "css.lint.duplicateProperties.desc": "Keine doppelten Formatdefinitionen verwenden.",
+ "css.lint.emptyRules.desc": "Keine leeren Regelsätze verwenden.",
+ "css.lint.float.desc": "Die Verwendung von \"float\" vermeiden. float-Eigenschaften führen leicht dazu, dass CSS nicht mehr funktioniert, wenn sich ein Aspekt des Layouts ändert.",
+ "css.lint.fontFaceProperties.desc": "`@font-face`-Regel muss Eigenschaften `src` und `font-family` definieren.",
+ "css.lint.hexColorLength.desc": "Hexadezimalfarben müssen aus 3, 4, 6 oder 8 Hexadezimalzahlen bestehen.",
+ "css.lint.idSelector.desc": "Selektoren sollten keine IDs enthalten, da diese Regeln zu eng mit HTML verknüpft sind.",
+ "css.lint.ieHack.desc": "IE-Hacks sind nur für die Unterstützung von IE7 und niedriger erforderlich.",
+ "css.lint.importStatement.desc": "Import-Anweisungen werden nicht parallel geladen.",
+ "css.lint.important.desc": "Verwendung von \"!important\" vermeiden. Damit wird angegeben, dass es mit der Spezifität des gesamten CSS-Codes Probleme gibt und eine Umgestaltung erforderlich ist.",
+ "css.lint.propertyIgnoredDueToDisplay.desc": "Die Eigenschaft wird aufgrund der Anzeige ignoriert. Durch die Angabe \"display: inline\" haben beispielsweise die Eigenschaften \"width\", \"height\", \"margin-top\", \"margin-bottom\" und \"float\" keine Auswirkung.",
+ "css.lint.universalSelector.desc": "Der Universalselektor (*) ist bekanntermaßen langsam.",
+ "css.lint.unknownAtRules.desc": "Unbekannte at-Regel.",
+ "css.lint.unknownProperties.desc": "Unbekannte Eigenschaft.",
+ "css.lint.unknownVendorSpecificProperties.desc": "Unbekannte anbieterspezifische Eigenschaft.",
+ "css.lint.validProperties.desc": "Eine Liste der Eigenschaften, die nicht auf Übereinstimmung mit der Regel \"unknownProperties\" überprüft werden.",
+ "css.lint.vendorPrefix.desc": "Beim Verwenden eines anbieterspezifischen Präfixes auch die Standardeigenschaft einbeziehen.",
+ "css.lint.zeroUnits.desc": "Keine Einheit für Null erforderlich.",
+ "css.title": "CSS",
+ "css.trace.server.desc": "Verfolgt die Kommunikation zwischen VS Code und dem CSS-Sprachserver.",
+ "css.validate.desc": "Aktiviert oder deaktiviert alle Überprüfungen.",
+ "css.validate.title": "Steuert die CSS-Validierung und Problemschweregrade.",
+ "description": "Bietet umfangreiche Sprachunterstützung für CSS-, LESS- und SCSS-Dateien.",
+ "displayName": "CSS-Sprachfeatures",
+ "less.colorDecorators.enable.deprecationMessage": "Die Einstellung \"less.colorDecorators.enable\" ist veraltet und wurde durch \"editor.colorDecorators\" ersetzt.",
+ "less.completion.completePropertyWithSemicolon.desc": "Hiermit wird beim Vervollständigen von CSS-Eigenschaften ein Semikolon am Zeilenende eingefügt.",
+ "less.completion.triggerPropertyValueCompletion.desc": "VS Code löst die Vervollständigung des Eigenschaftswerts standardmäßig aus, nachdem eine CSS-Eigenschaft ausgewählt wurde. Mit dieser Einstellung deaktivieren Sie dieses Verhalten.",
+ "less.format.braceStyle.desc": "Fügen Sie geschweifte Klammern in dieselbe Zeile wie Regeln (`collapse`) oder geschweifte Klammern in eine eigene Zeile (`expand`) ein.",
+ "less.format.enable.desc": "Aktivieren/Deaktivieren Sie den LESS-Standardformatierer.",
+ "less.format.maxPreserveNewLines.desc": "Maximale Anzahl von Zeilenumbrüchen, die in einem Block beibehalten werden, wenn `#less.format.preserveNewLines#` aktiviert ist.",
+ "less.format.newlineBetweenRules.desc": "Trennen Sie Regelsätze durch eine leere Zeile.",
+ "less.format.newlineBetweenSelectors.desc": "Trennen Sie Selektoren durch eine neue Zeile.",
+ "less.format.preserveNewLines.desc": "Gibt an, ob vorhandene Zeilenumbrüche vor Regeln und Deklarationen beibehalten werden sollen.",
+ "less.format.spaceAroundSelectorSeparator.desc": "Stellen Sie sicher, dass um die Auswahltrennzeichen „>“, „+“, „~“ (z. B. „a > b“) ein Leerzeichen steht.",
+ "less.hover.documentation": "Eigenschaften- und Wertdokumentation in LESS-Hovers anzeigen.",
+ "less.hover.references": "Hiermit werden bei LESS-Hovers Verweise auf MDN eingeblendet.",
+ "less.lint.argumentsInColorFunction.desc": "Ungültige Anzahl von Parametern.",
+ "less.lint.boxModel.desc": "\"width\" oder \"height\" nicht verwenden, wenn \"padding\" oder \"border\" genutzt werden.",
+ "less.lint.compatibleVendorPrefixes.desc": "Beim Verwenden eines anbieterspezifischen Präfixes sicherstellen, dass alle anderen anbieterspezifischen Eigenschaften einbezogen werden.",
+ "less.lint.duplicateProperties.desc": "Keine doppelten Formatdefinitionen verwenden.",
+ "less.lint.emptyRules.desc": "Keine leeren Regelsätze verwenden.",
+ "less.lint.float.desc": "Die Verwendung von \"float\" vermeiden. float-Eigenschaften führen leicht dazu, dass CSS nicht mehr funktioniert, wenn sich ein Aspekt des Layouts ändert.",
+ "less.lint.fontFaceProperties.desc": "`@font-face`-Regel muss Eigenschaften `src` und `font-family` definieren.",
+ "less.lint.hexColorLength.desc": "Hexadezimalfarben müssen aus 3, 4, 6 oder 8 Hexadezimalzahlen bestehen.",
+ "less.lint.idSelector.desc": "Selektoren sollten keine IDs enthalten, da diese Regeln zu eng mit HTML verknüpft sind.",
+ "less.lint.ieHack.desc": "IE-Hacks sind nur für die Unterstützung von IE7 und niedriger erforderlich.",
+ "less.lint.importStatement.desc": "Import-Anweisungen werden nicht parallel geladen.",
+ "less.lint.important.desc": "Verwendung von \"!important\" vermeiden. Damit wird angegeben, dass es mit der Spezifität des gesamten CSS-Codes Probleme gibt und eine Umgestaltung erforderlich ist.",
+ "less.lint.propertyIgnoredDueToDisplay.desc": "Die Eigenschaft wird aufgrund der Anzeige ignoriert. Durch die Angabe \"display: inline\" haben beispielsweise die Eigenschaften \"width\", \"height\", \"margin-top\", \"margin-bottom\" und \"float\" keine Auswirkung.",
+ "less.lint.universalSelector.desc": "Der Universalselektor (*) ist bekanntermaßen langsam.",
+ "less.lint.unknownAtRules.desc": "Unbekannte at-Regel.",
+ "less.lint.unknownProperties.desc": "Unbekannte Eigenschaft.",
+ "less.lint.unknownVendorSpecificProperties.desc": "Unbekannte anbieterspezifische Eigenschaft.",
+ "less.lint.validProperties.desc": "Eine Liste der Eigenschaften, die nicht auf Übereinstimmung mit der Regel \"unknownProperties\" überprüft werden.",
+ "less.lint.vendorPrefix.desc": "Beim Verwenden eines anbieterspezifischen Präfixes auch die Standardeigenschaft einbeziehen.",
+ "less.lint.zeroUnits.desc": "Keine Einheit für Null erforderlich.",
+ "less.title": "LESS",
+ "less.validate.desc": "Aktiviert oder deaktiviert alle Überprüfungen.",
+ "less.validate.title": "Steuert die LESS-Validierung und Problemschweregrade.",
+ "scss.colorDecorators.enable.deprecationMessage": "Die Einstellung \"scss.colorDecorators.enable\" ist veraltet und wurde durch \"editor.colorDecorators\" ersetzt.",
+ "scss.completion.completePropertyWithSemicolon.desc": "Hiermit wird beim Vervollständigen von CSS-Eigenschaften ein Semikolon am Zeilenende eingefügt.",
+ "scss.completion.triggerPropertyValueCompletion.desc": "VS Code löst die Vervollständigung des Eigenschaftswerts standardmäßig aus, nachdem eine CSS-Eigenschaft ausgewählt wurde. Mit dieser Einstellung deaktivieren Sie dieses Verhalten.",
+ "scss.format.braceStyle.desc": "Fügen Sie geschweifte Klammern in dieselbe Zeile wie Regeln (`collapse`) oder geschweifte Klammern in eine eigene Zeile (`expand`) ein.",
+ "scss.format.enable.desc": "Aktivieren/Deaktivieren Sie den standardmäßigen SCSS-Formatierer.",
+ "scss.format.maxPreserveNewLines.desc": "Maximale Anzahl von Zeilenumbrüchen, die in einem Block beibehalten werden sollen, wenn `#scss.format.preserveNewLines#` aktiviert ist.",
+ "scss.format.newlineBetweenRules.desc": "Trennen Sie Regelsätze durch eine leere Zeile.",
+ "scss.format.newlineBetweenSelectors.desc": "Trennen Sie Selektoren durch eine neue Zeile.",
+ "scss.format.preserveNewLines.desc": "Gibt an, ob vorhandene Zeilenumbrüche vor Regeln und Deklarationen beibehalten werden sollen.",
+ "scss.format.spaceAroundSelectorSeparator.desc": "Stellen Sie sicher, dass um die Auswahltrennzeichen „>“, „+“, „~“ (z. B. „a > b“) ein Leerzeichen steht.",
+ "scss.hover.documentation": "Eigenschaften- und Wertdokumentation in SCSS-Hovers anzeigen.",
+ "scss.hover.references": "Hiermit werden bei SCSS-Hovers Verweise auf MDN eingeblendet.",
+ "scss.lint.argumentsInColorFunction.desc": "Ungültige Anzahl von Parametern.",
+ "scss.lint.boxModel.desc": "\"width\" oder \"height\" nicht verwenden, wenn \"padding\" oder \"border\" genutzt werden.",
+ "scss.lint.compatibleVendorPrefixes.desc": "Beim Verwenden eines anbieterspezifischen Präfixes sicherstellen, dass alle anderen anbieterspezifischen Eigenschaften einbezogen werden.",
+ "scss.lint.duplicateProperties.desc": "Keine doppelten Formatdefinitionen verwenden.",
+ "scss.lint.emptyRules.desc": "Keine leeren Regelsätze verwenden.",
+ "scss.lint.float.desc": "Die Verwendung von \"float\" vermeiden. float-Eigenschaften führen leicht dazu, dass CSS nicht mehr funktioniert, wenn sich ein Aspekt des Layouts ändert.",
+ "scss.lint.fontFaceProperties.desc": "`@font-face`-Regel muss Eigenschaften `src` und `font-family` definieren.",
+ "scss.lint.hexColorLength.desc": "Hexadezimalfarben müssen aus 3, 4, 6 oder 8 Hexadezimalzahlen bestehen.",
+ "scss.lint.idSelector.desc": "Selektoren sollten keine IDs enthalten, da diese Regeln zu eng mit HTML verknüpft sind.",
+ "scss.lint.ieHack.desc": "IE-Hacks sind nur für die Unterstützung von IE7 und niedriger erforderlich.",
+ "scss.lint.importStatement.desc": "Import-Anweisungen werden nicht parallel geladen.",
+ "scss.lint.important.desc": "Verwendung von \"!important\" vermeiden. Damit wird angegeben, dass es mit der Spezifität des gesamten CSS-Codes Probleme gibt und eine Umgestaltung erforderlich ist.",
+ "scss.lint.propertyIgnoredDueToDisplay.desc": "Die Eigenschaft wird aufgrund der Anzeige ignoriert. Durch die Angabe \"display: inline\" haben beispielsweise die Eigenschaften \"width\", \"height\", \"margin-top\", \"margin-bottom\" und \"float\" keine Auswirkung.",
+ "scss.lint.universalSelector.desc": "Der Universalselektor (*) ist bekanntermaßen langsam.",
+ "scss.lint.unknownAtRules.desc": "Unbekannte at-Regel.",
+ "scss.lint.unknownProperties.desc": "Unbekannte Eigenschaft.",
+ "scss.lint.unknownVendorSpecificProperties.desc": "Unbekannte anbieterspezifische Eigenschaft.",
+ "scss.lint.validProperties.desc": "Eine Liste der Eigenschaften, die nicht auf Übereinstimmung mit der Regel \"unknownProperties\" überprüft werden.",
+ "scss.lint.vendorPrefix.desc": "Beim Verwenden eines anbieterspezifischen Präfixes auch die Standardeigenschaft einbeziehen.",
+ "scss.lint.zeroUnits.desc": "Keine Einheit für Null erforderlich.",
+ "scss.title": "SCSS (SASS)",
+ "scss.validate.desc": "Aktiviert oder deaktiviert alle Überprüfungen.",
+ "scss.validate.title": "Steuert die SCSS-Überprüfung und Problemschweregrade."
+ }
+ }
+}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-de/translations/extensions/vscode.css.i18n.json b/i18n/vscode-language-pack-de/translations/extensions/vscode.css.i18n.json
index 66abb7e011..9e76bbaea3 100644
--- a/i18n/vscode-language-pack-de/translations/extensions/vscode.css.i18n.json
+++ b/i18n/vscode-language-pack-de/translations/extensions/vscode.css.i18n.json
@@ -9,8 +9,8 @@
"version": "1.0.0",
"contents": {
"package": {
- "displayName": "CSS-Sprachgrundlagen",
- "description": "Bietet Syntaxhervorhebung und Klammernabgleich für CSS-, LESS- und SCSS-Dateien."
+ "description": "Bietet Syntaxhervorhebung und Klammernabgleich für CSS-, LESS- und SCSS-Dateien.",
+ "displayName": "CSS-Sprachgrundlagen"
}
}
}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-de/translations/extensions/dart.i18n.json b/i18n/vscode-language-pack-de/translations/extensions/vscode.dart.i18n.json
similarity index 100%
rename from i18n/vscode-language-pack-de/translations/extensions/dart.i18n.json
rename to i18n/vscode-language-pack-de/translations/extensions/vscode.dart.i18n.json
diff --git a/i18n/vscode-language-pack-de/translations/extensions/vscode.debug-auto-launch.i18n.json b/i18n/vscode-language-pack-de/translations/extensions/vscode.debug-auto-launch.i18n.json
new file mode 100644
index 0000000000..695b84504d
--- /dev/null
+++ b/i18n/vscode-language-pack-de/translations/extensions/vscode.debug-auto-launch.i18n.json
@@ -0,0 +1,38 @@
+{
+ "": [
+ "--------------------------------------------------------------------------------------------",
+ "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."
+ ],
+ "version": "1.0.0",
+ "contents": {
+ "bundle": {
+ "Always": "Immer",
+ "Auto Attach: Always": "Automatisch anfügen: immer",
+ "Auto Attach: Disabled": "Automatisch anfügen: deaktiviert",
+ "Auto Attach: Smart": "Automatisch anfügen: intelligent",
+ "Auto Attach: With Flag": "Automatisch anfügen: mit Flag",
+ "Auto attach is disabled and not shown in status bar": "Das automatische Anfügen ist deaktiviert und wird in der Statusleiste nicht angezeigt.",
+ "Auto attach to every Node.js process launched in the terminal": "Hiermit wird automatisch an jeden Node.js-Prozess angefügt, der im Terminal gestartet wird.",
+ "Auto attach when running scripts that aren't in a node_modules folder": "Hiermit wird bei Ausführung von Skripts automatisch angefügt, die sich nicht in einem node_modules-Ordner befinden.",
+ "Automatically attach to node.js processes in debug mode": "Im Debugmodus automatisch an Node.js-Prozesse anfügen",
+ "Debug Auto Attach": "Automatisches Anfügen debuggen",
+ "Disabled": "6Deaktiviert",
+ "Only With Flag": "Nur mit Flag",
+ "Only auto attach when the `--inspect` flag is given": "Hiermit wird nur dann automatisch angefügt, wenn das Flag \"--inspect\" angegeben ist.",
+ "Re-enable auto attach": "Automatisches Anfügen erneut aktivieren",
+ "Smart": "Intelligent",
+ "Temporarily disable auto attach in this session": "Automatisches Anfügen in dieser Sitzung vorübergehend deaktivieren",
+ "Toggle Auto Attach": "Automatisches Anfügen umschalten",
+ "Toggle auto attach in this workspace": "Automatisches Anfügen in diesem Arbeitsbereich umschalten",
+ "Toggle auto attach on this machine": "Automatisches Anfügen auf diesem Computer umschalten"
+ },
+ "package": {
+ "description": "Hilfsprogramm für Feature \"Automatisches Anfügen\", wenn Node-Debugging-Erweiterungen nicht aktiv sind.",
+ "displayName": "Node-Debugging – Automatisches Anfügen",
+ "toggle.auto.attach": "Automatisches Anfügen umschalten"
+ }
+ }
+}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-de/translations/extensions/vscode.debug-server-ready.i18n.json b/i18n/vscode-language-pack-de/translations/extensions/vscode.debug-server-ready.i18n.json
new file mode 100644
index 0000000000..c37953dc7e
--- /dev/null
+++ b/i18n/vscode-language-pack-de/translations/extensions/vscode.debug-server-ready.i18n.json
@@ -0,0 +1,31 @@
+{
+ "": [
+ "--------------------------------------------------------------------------------------------",
+ "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."
+ ],
+ "version": "1.0.0",
+ "contents": {
+ "bundle": {
+ "Format uri ('{0}') must contain exactly one substitution placeholder.": "Das Format des URI ('{0}') muss genau einen Ersatzplatzhalter enthalten.",
+ "Format uri ('{0}') uses a substitution placeholder but pattern did not capture anything.": "URI-Format ('{0}') verwendet einen Ersatzplatzhalter, aber das Muster hat nichts erfasst."
+ },
+ "package": {
+ "debug.server.ready.action.debugWithChrome.description": "Das Debuggen mit dem \"Debugger für Chrome\" beginnen.",
+ "debug.server.ready.action.description": "Verwendung des URI, wenn der Server bereit ist.",
+ "debug.server.ready.action.openExternally.description": "URI mit der Standardanwendung extern öffnen.",
+ "debug.server.ready.action.startDebugging.description": "Führen Sie eine andere Startkonfiguration aus.",
+ "debug.server.ready.debugConfig.description": "Die auszuführende Debugkonfiguration.",
+ "debug.server.ready.debugConfigName.description": "Name der auszuführenden Startkonfiguration.",
+ "debug.server.ready.killOnServerStop.description": "Beendet die untergeordnete Sitzung, wenn die übergeordnete Sitzung angehalten wird.",
+ "debug.server.ready.pattern.description": "Der Server ist bereit, wenn dieses Muster auf der Debugging-Konsole erscheint. Die erste Erfassungsgruppe muss einen URI oder eine Portnummer enthalten.",
+ "debug.server.ready.serverReadyAction.description": "Reagieren Sie auf einen URI, wenn ein Serverprogramm beim Debugging bereit ist (wird durch Senden einer Meldung wie \"Port 3000 wird überwacht\" oder \"https://localhost:5001 wird gerade überwacht\" an die Debugging-Konsole signalisiert.)",
+ "debug.server.ready.uriFormat.description": "Eine Formatzeichenfolge, die beim Erstellen des URI über eine Portnummer verwendet wird. Das erste '%s' wird durch die Portnummer ersetzt.",
+ "debug.server.ready.webRoot.description": "Der an die Debugkonfiguration für den \"Debugger für Chrome\" übermittelte Wert.",
+ "description": "URI in Browser öffnen, wenn der Server bereit ist, für den ein Debugging durchgeführt wird.",
+ "displayName": "Aktion \"Server bereit\""
+ }
+ }
+}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-de/translations/extensions/diff.i18n.json b/i18n/vscode-language-pack-de/translations/extensions/vscode.diff.i18n.json
similarity index 100%
rename from i18n/vscode-language-pack-de/translations/extensions/diff.i18n.json
rename to i18n/vscode-language-pack-de/translations/extensions/vscode.diff.i18n.json
diff --git a/i18n/vscode-language-pack-de/translations/extensions/vscode.docker.i18n.json b/i18n/vscode-language-pack-de/translations/extensions/vscode.docker.i18n.json
index 6ba8259085..412d457f54 100644
--- a/i18n/vscode-language-pack-de/translations/extensions/vscode.docker.i18n.json
+++ b/i18n/vscode-language-pack-de/translations/extensions/vscode.docker.i18n.json
@@ -9,8 +9,8 @@
"version": "1.0.0",
"contents": {
"package": {
- "displayName": "Docker-Sprachgrundlagen",
- "description": "Bietet Syntaxhervorhebung und Klammernabgleich in Docker-Dateien."
+ "description": "Bietet Syntaxhervorhebung und Klammernabgleich in Docker-Dateien.",
+ "displayName": "Docker-Sprachgrundlagen"
}
}
}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-de/translations/extensions/vscode.dotenv.i18n.json b/i18n/vscode-language-pack-de/translations/extensions/vscode.dotenv.i18n.json
new file mode 100644
index 0000000000..21ad051e8b
--- /dev/null
+++ b/i18n/vscode-language-pack-de/translations/extensions/vscode.dotenv.i18n.json
@@ -0,0 +1,16 @@
+{
+ "": [
+ "--------------------------------------------------------------------------------------------",
+ "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."
+ ],
+ "version": "1.0.0",
+ "contents": {
+ "package": {
+ "description": "Bietet Syntaxhervorhebung und Klammernabgleich in dotenv-Dateien.",
+ "displayName": "dotenv-Sprachgrundlagen"
+ }
+ }
+}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-de/translations/extensions/vscode.emmet.i18n.json b/i18n/vscode-language-pack-de/translations/extensions/vscode.emmet.i18n.json
new file mode 100644
index 0000000000..b157f30f35
--- /dev/null
+++ b/i18n/vscode-language-pack-de/translations/extensions/vscode.emmet.i18n.json
@@ -0,0 +1,83 @@
+{
+ "": [
+ "--------------------------------------------------------------------------------------------",
+ "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."
+ ],
+ "version": "1.0.0",
+ "contents": {
+ "bundle": {
+ "Emmet Abbreviation": "Emmet-Abkürzung",
+ "Enter Abbreviation": "Abkürzung eingeben",
+ "Invalid emmet.variables field. See https://code.visualstudio.com/docs/editor/emmet#_emmet-configuration for a valid example.": "Ungültiges emmet.variables-Feld. Ein gültiges Beispiel finden Sie unter „https://code.visualstudio.com/docs/editor/emmet#_emmet-configuration“.",
+ "Invalid snippets file. See https://code.visualstudio.com/docs/editor/emmet#_using-custom-emmet-snippets for a valid example.": "Ungültige Codeschnipseldatei. Ein gültiges Beispiel finden Sie unter „https://code.visualstudio.com/docs/editor/emmet#_using-custom-emmet-snippets“.",
+ "Invalid syntax profile. See https://code.visualstudio.com/docs/editor/emmet#_emmet-configuration for a valid example.": "Ungültiges Syntaxprofil. Ein gültiges Beispiel finden Sie unter „https://code.visualstudio.com/docs/editor/emmet#_emmet-configuration“."
+ },
+ "package": {
+ "command.balanceIn": "Ausgleichen (einwärts)",
+ "command.balanceOut": "Ausgleichen (auswärts)",
+ "command.decrementNumberByOne": "Um 1 verringern",
+ "command.decrementNumberByOneTenth": "Um 0,1 verringern",
+ "command.decrementNumberByTen": "Um 10 verringern",
+ "command.evaluateMathExpression": "Mathematischen Ausdruck auswerten",
+ "command.incrementNumberByOne": "Um 1 erhöhen",
+ "command.incrementNumberByOneTenth": "Um 0,1 erhöhen",
+ "command.incrementNumberByTen": "Um 10 erhöhen",
+ "command.matchTag": "Gehe zu übereinstimmendem Paar",
+ "command.mergeLines": "Zeilen mergen",
+ "command.nextEditPoint": "Gehe zum nächsten Bearbeitungspunkt",
+ "command.prevEditPoint": "Gehe zum vorherigen Bearbeitungspunkt",
+ "command.reflectCSSValue": "CSS-Wert reflektieren",
+ "command.removeTag": "Tag entfernen",
+ "command.selectNextItem": "Nächstes Element auswählen",
+ "command.selectPrevItem": "Vorheriges Element auswählen",
+ "command.showEmmetCommands": "Emmet-Befehle anzeigen",
+ "command.splitJoinTag": "Tag teilen/verknüpfen",
+ "command.toggleComment": "Kommentar ein-/ausschalten",
+ "command.updateImageSize": "Bildgröße aktualisieren",
+ "command.updateTag": "Tag aktualisieren",
+ "command.wrapWithAbbreviation": "Mit Abkürzung umschließen",
+ "description": "Emmet-Unterstützung für VS Code",
+ "emmetExclude": "Ein Array von Sprachen, in dem Emmet-Abkürzungen nicht erweitert werden sollten.",
+ "emmetExtensionsPath": "Ein Array von Pfaden, in dem jeder Pfad Emmet-syntaxProfiles und/oder Schnipseldateien enthalten kann.\r\nBei Konflikten überschreiben die Profile/Schnipsel der späteren Pfade die der früheren Pfade.\r\nWeitere Informationen und eine Beispielschnipseldatei finden Sie unter https://code.visualstudio.com/docs/editor/emmet.",
+ "emmetExtensionsPathItem": "Ein Pfad, der Emmet-syntaxProfiles und/oder-Schnipsel enthält.",
+ "emmetIncludeLanguages": "Aktivieren Sie Emmet-Abkürzungen in Sprachen, die nicht standardmäßig unterstützt werden. Fügen Sie hier eine Zuordnung zwischen der unterstützten Sprache und der unterstützten Emmet-Sprache hinzu.\r\n Beispiel: {\"vue-html\": \"html\", \"javascript\": \"javascriptreact\"}",
+ "emmetOptimizeStylesheetParsing": "Bei FALSE wird die gesamte Datei analysiert, um zu ermitteln, ob das Erweitern von Emmet-Abkürzungen an der aktuellen Position möglich ist. Bei TRUE wird nur der Inhalt vor und nach der aktuellen Position in CSS-, SCSS-, und LESS-Dateien analysiert.",
+ "emmetPreferences": "Einstellungen, die zum Ändern des Verhaltens einiger Aktionen und Konfliktlöser von Emmet verwendet werden.",
+ "emmetPreferencesAllowCompactBoolean": "Bei TRUE wird eine kompakte Notation boolescher Attribute erzeugt.",
+ "emmetPreferencesBemElementSeparator": "Elementtrennzeichen für Klassen unter Verwendung des BEM-Filters.",
+ "emmetPreferencesBemModifierSeparator": "Modifizierertrennzeichen für Klassen unter Verwendung des BEM-Filters.",
+ "emmetPreferencesCssAfter": "Symbol, das beim Erweitern von CSS-Abkürzungen am Ende der CSS-Eigenschaft eingefügt werden soll.",
+ "emmetPreferencesCssBetween": "Symbol, das beim Erweitern von CSS-Abkürzungen zwischen der CSS-Eigenschaft und dem Wert eingefügt werden soll.",
+ "emmetPreferencesCssColorShort": "Bei „true“ werden Farbwerte wie `#f auf `#fff anstelle von `#ffffff erweitert.",
+ "emmetPreferencesCssFuzzySearchMinScore": "Das Mindestergebnis (zwischen 0 und 1), das die Abkürzung mit Fuzzyübereinstimmung erreichen muss. Niedrigere Werte führen zu vielen falsch positiven Übereinstimmungen, höhere Werte verringern unter Umständen die möglichen Übereinstimmungen.",
+ "emmetPreferencesCssMozProperties": "Durch Trennzeichen getrennte CSS-Eigenschaften, die das \"moz\"-Herstellerpräfix erhalten, wenn sie in einer Emmet-Abkürzung verwendet werden, die mit \"-\" beginnt. Legen Sie eine leere Zeichenfolge fest, um das \"moz\"-Präfix immer zu vermeiden.",
+ "emmetPreferencesCssMsProperties": "Durch Trennzeichen getrennte CSS-Eigenschaften, die das \"ms\"-Herstellerpräfix erhalten, wenn sie in einer Emmet-Abkürzung verwendet werden, die mit \"-\" beginnt. Legen Sie eine leere Zeichenfolge fest, um das \"ms\"-Präfix immer zu vermeiden.",
+ "emmetPreferencesCssOProperties": "Durch Trennzeichen getrennte CSS-Eigenschaften, die das \"o\"-Herstellerpräfix erhalten, wenn sie in einer Emmet-Abkürzung verwendet werden, die mit \"-\" beginnt. Legen Sie eine leere Zeichenfolge fest, um das \"o\"-Präfix immer zu vermeiden.",
+ "emmetPreferencesCssWebkitProperties": "Durch Trennzeichen getrennte CSS-Eigenschaften, die das \"webkit\"-Herstellerpräfix erhalten, wenn sie in einer Emmet-Abkürzung verwendet werden, die mit \"-\" beginnt. Legen Sie eine leere Zeichenfolge fest, um das \"webkit\"-Präfix immer zu vermeiden.",
+ "emmetPreferencesFilterCommentAfter": "Eine Kommentardefinition, die nach dem abgeglichenen Element platziert werden muss, wenn ein Kommentarfilter angewendet wird.",
+ "emmetPreferencesFilterCommentBefore": "Eine Kommentardefinition, die vor dem abgeglichenen Element platziert werden muss, wenn ein Kommentarfilter angewendet wird.",
+ "emmetPreferencesFilterCommentTrigger": "Eine durch Trennzeichen getrennte Liste von Attributnamen, die in abgekürzter Form vorliegen müssen, damit der Kommentarfilter angewendet werden kann.",
+ "emmetPreferencesFloatUnit": "Standardeinheit für Floatwerte.",
+ "emmetPreferencesFormatForceIndentTags": "Ein Array von Tagnamen, die immer einen inneren Einzug erhalten.",
+ "emmetPreferencesFormatNoIndentTags": "Ein Array von Tagnamen, die nie einen inneren Einzug erhalten.",
+ "emmetPreferencesIntUnit": "Standardeinheit für Integerwerte.",
+ "emmetPreferencesOutputInlineBreak": "Die Anzahl gleichgeordneter Inline-Elemente, die erforderlich sind, damit Zeilenumbrüche zwischen diesen Elementen eingefügt werden. Bei \"0\" werden Inline-Elemente immer auf einer einzigen Zeile platziert.",
+ "emmetPreferencesOutputReverseAttributes": "Bei TRUE werden beim Auflösen von Schnipseln die Richtungen von Attributzusammenführungen umgekehrt.",
+ "emmetPreferencesOutputSelfClosingStyle": "Formatvorlage der selbstschließenden Tags: HTML („ “), XML („ “) oder XHTML („ “).",
+ "emmetPreferencesSassAfter": "Symbol, das beim Erweitern von CSS-Abkürzungen in Sass-Dateien am Ende der CSS-Eigenschaft eingefügt werden soll.",
+ "emmetPreferencesSassBetween": "Symbol, das beim Erweitern von CSS-Abkürzungen in Sass-Dateien zwischen der CSS-Eigenschaft und dem Wert eingefügt werden soll.",
+ "emmetPreferencesStylusAfter": "Symbol, das beim Erweitern von CSS-Abkürzungen in Stylus-Dateien am Ende der CSS-Eigenschaft eingefügt werden soll.",
+ "emmetPreferencesStylusBetween": "Symbol, das beim Erweitern von CSS-Abkürzungen in Stylus-Dateien zwischen der CSS-Eigenschaft und dem Wert eingefügt werden soll.",
+ "emmetShowAbbreviationSuggestions": "Zeigt mögliche Emmet-Abkürzungen als Vorschläge an. Diese Option gilt nicht in Stylesheets oder wenn emmet.showExpandedAbbreviation auf `\"never`\" festgelegt ist.",
+ "emmetShowExpandedAbbreviation": "Zeigt erweiterte Emmet-Abkürzungen als Vorschläge an.\r\nDie Option \"inMarkupAndStylesheetFilesOnly\" gilt für: html, haml, jade, slim, xml, xsl, css, scss, sass, less, stylus.\r\nDie Option \"always\" gilt unabhängig von Markup/CSS für alle Teile der Datei.",
+ "emmetShowSuggestionsAsSnippets": "Bei TRUE werden die Emmet-Vorschläge als Schnipsel angezeigt. Dadurch können Sie die Vorschläge entsprechend der `#editor.snippetSuggestions#`-Einstellung anordnen.",
+ "emmetSyntaxProfiles": "Definieren Sie das Profil für die angegebene Syntax, oder verwenden Sie Ihr eigenes Profil mit bestimmten Regeln.",
+ "emmetTriggerExpansionOnTab": "Wenn diese Option aktiviert ist, werden Emmet-Abkürzungen beim Drücken der TAB-TASTE erweitert, auch wenn keine Vervollständigungen angezeigt werden. Wenn diese Option deaktiviert ist, können Vervollständigungen, die angezeigt werden, weiterhin durch Drücken der TAB-TASTE akzeptiert werden.",
+ "emmetUseInlineCompletions": "Wenn \"true\", verwendet Emmet Inline-Vervollständigungen, um Erweiterungen vorzuschlagen. Um zu verhindern, dass der Nicht-Inline-Vervollständigungselementanbieter so oft angezeigt wird, während diese Einstellung auf „true“ gesetzt ist, schalten Sie „#editor.quickSuggestions#“ für das „andere“ Element auf „inline“ oder „off“.",
+ "emmetVariables": "In Emmet-Schnipseln zu verwendende Codeschnipsel."
+ }
+ }
+}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-de/translations/extensions/vscode.extension-editing.i18n.json b/i18n/vscode-language-pack-de/translations/extensions/vscode.extension-editing.i18n.json
new file mode 100644
index 0000000000..51402f00dd
--- /dev/null
+++ b/i18n/vscode-language-pack-de/translations/extensions/vscode.extension-editing.i18n.json
@@ -0,0 +1,33 @@
+{
+ "": [
+ "--------------------------------------------------------------------------------------------",
+ "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."
+ ],
+ "version": "1.0.0",
+ "contents": {
+ "bundle": {
+ "Data URLs are not a valid image source.": "Daten-URLs sind keine gültige Bildquelle.",
+ "Embedded SVGs are not a valid image source.": "Eingebettete SVGs sind keine gültige Bildquelle.",
+ "Error parsing the when-clause:": "Fehler beim Analysieren der when-Klausel:",
+ "Images must use the HTTPS protocol.": "Für Bilder muss das HTTPS-Protokoll verwendet werden.",
+ "Language specific editor settings": "Sprachspezifische Editor-Einstellungen",
+ "Override editor settings for language": "Editor-Einstellungen für Sprache überschreiben",
+ "Relative badge URLs require a repository with HTTPS protocol to be specified in this package.json.": "Relative Badge-URLs erfordern die Angabe eines Repositorys mit dem HTTPS-Protokoll in dieser Datei \"package.json\".",
+ "Relative image URLs require a repository with HTTPS protocol to be specified in the package.json.": "Relative Bild-URLs erfordern die Angabe eines Repositorys mit dem HTTPS-Protokoll in der Datei \"package.json\".",
+ "Remove activation event": "Aktivierungsereignis entfernen",
+ "SVGs are not a valid image source.": "SVGs sind keine gültige Bildquelle.",
+ "This activation event can be removed as VS Code generates these automatically from your package.json contribution declarations.": "Dieses Aktivierungsereignis kann entfernt werden, da VS Code diese automatisch aus Ihren package.json-Beitragsdeklarationen generiert.",
+ "This activation event can be removed for extensions targeting engine version ^1.75.0 as VS Code will generate these automatically from your package.json contribution declarations.": "Dieses Aktivierungsereignis kann für Erweiterungen mit der Engine-Version ^1.75.0 entfernt werden, da VS Code diese automatisch aus Ihren package.json-Beitragsdeklarationen generieren.",
+ "This activation event cannot be explicitly listed by your extension.": "Dieses Aktivierungsereignis kann von Ihrer Erweiterung nicht explizit aufgeführt werden.",
+ "This proposal cannot be used because for this extension the product defines a fixed set of API proposals. You can test your extension but before publishing you MUST reach out to the VS Code team.": "Dieser Vorschlag kann nicht verwendet werden, da das Produkt für diese Erweiterung einen festen Satz von API-Vorschlägen definiert. Sie können Ihre Erweiterung testen, aber vor der Veröffentlichung MÜSSEN Sie sich an das VS Code-Team wenden.",
+ "Using '*' activation is usually a bad idea as it impacts performance.": "Die Verwendung der Aktivierung \"*\" ist in der Regel eine schlechte Idee, da sie sich auf die Leistung auswirkt."
+ },
+ "package": {
+ "description": "Stellt Bereinigungsfunktionen für die Erstellung von Erweiterungen zur Verfügung.",
+ "displayName": "Erweiterungserstellung"
+ }
+ }
+}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-de/translations/extensions/vscode.fsharp.i18n.json b/i18n/vscode-language-pack-de/translations/extensions/vscode.fsharp.i18n.json
index 515756dfe3..5636b3cc4f 100644
--- a/i18n/vscode-language-pack-de/translations/extensions/vscode.fsharp.i18n.json
+++ b/i18n/vscode-language-pack-de/translations/extensions/vscode.fsharp.i18n.json
@@ -9,8 +9,8 @@
"version": "1.0.0",
"contents": {
"package": {
- "displayName": "F#-Sprachgrundlagen",
- "description": "Bietet Ausschnitte, Syntaxhervorhebung, Klammernabgleich und Falten in F#-Dateien."
+ "description": "Bietet Schnipsel, Syntaxhervorhebung, Klammernabgleich und Falten in F#-Dateien.",
+ "displayName": "F#-Sprachgrundlagen"
}
}
}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-de/translations/extensions/vscode.git-base.i18n.json b/i18n/vscode-language-pack-de/translations/extensions/vscode.git-base.i18n.json
new file mode 100644
index 0000000000..a57760a8b5
--- /dev/null
+++ b/i18n/vscode-language-pack-de/translations/extensions/vscode.git-base.i18n.json
@@ -0,0 +1,30 @@
+{
+ "": [
+ "--------------------------------------------------------------------------------------------",
+ "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."
+ ],
+ "version": "1.0.0",
+ "contents": {
+ "bundle": {
+ "Branch name": "Branchname",
+ "Choose a URL to clone from.": "Wählen Sie eine URL für den Klonvorgang aus.",
+ "No remote repositories found.": "Keine Remoterepositorys gefunden.",
+ "Provide repository URL": "Repository-URL angeben",
+ "Provide repository URL or pick a repository source.": "Geben Sie die Repository-URL an, oder wählen Sie eine Repositoryquelle aus.",
+ "Repository name": "Repositoryname",
+ "Repository name (type to search)": "Repositoryname (zur Suche eingeben)",
+ "URL": "URL",
+ "recently opened": "zuletzt geöffnet",
+ "remote sources": "remotequellen",
+ "{0} Error: {1}": "{0}-Fehler: {1}"
+ },
+ "package": {
+ "command.api.getRemoteSources": "Remotequellen abrufen",
+ "description": "Statische Git-Beiträge und -Auswahl.",
+ "displayName": "Git-Basis"
+ }
+ }
+}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-de/translations/extensions/vscode.git.i18n.json b/i18n/vscode-language-pack-de/translations/extensions/vscode.git.i18n.json
new file mode 100644
index 0000000000..dc44128603
--- /dev/null
+++ b/i18n/vscode-language-pack-de/translations/extensions/vscode.git.i18n.json
@@ -0,0 +1,807 @@
+{
+ "": [
+ "--------------------------------------------------------------------------------------------",
+ "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."
+ ],
+ "version": "1.0.0",
+ "contents": {
+ "bundle": {
+ "\n\nAre you sure you want to discard ALL changes in {0} files?": "Möchten Sie alle Änderungen in {0} Dateien verwerfen?",
+ "\n\nAre you sure you want to discard changes in '{0}'?": "\n\nMöchten Sie die Änderungen in {0} wirklich verwerfen?",
+ "\n and {0} more file{1}...": "\n und {0} weitere Datei{1}...",
+ "\"{0}\" has fingerprint \"{1}\"": "\"{0}\" hat Fingerabdruck \"{1}\"",
+ "$(info) Remote \"{0}\" has no tags.": "$(info) Remote \"{0}\" hat keine Tags.",
+ "$(info) This repository has no stashes.": "$(info) Dieses Repository hat keine Stashes.",
+ "$(info) This repository has no tags.": "$(info) Dieses Repository hat keine Tags.",
+ "$(info) This repository has no worktrees.": "$(info) Dieses Repository hat keine Worktrees.",
+ "A branch named \"{0}\" already exists": "Ein Branch mit dem Namen \"{0}\" ist bereits vorhanden.",
+ "A git repository was found in the parent folders of the workspace or the open file(s). Would you like to open the repository?": "Ein Git-Repository wurde in den übergeordneten Ordnern des Arbeitsbereichs oder in den geöffneten Dateien gefunden. Möchten Sie das Repository öffnen?",
+ "A worktree already exists at \"{0}\".": "In „{0}“ ist bereits ein Worktree vorhanden.",
+ "Absolute paths not supported in \"git.scanRepositories\" setting.": "Absolute Pfade werden in der Einstellung \"git.scanRepositories\" nicht unterstützt.",
+ "Add Remote": "Remoterepository hinzufügen",
+ "Add a new remote...": "Neues Remoterepository hinzufügen...",
+ "Add remote from URL": "Remoterepository aus URL hinzufügen",
+ "Add remote from {0}": "Remoterepository aus {0} hinzufügen",
+ "Add to Workspace": "Zum Arbeitsbereich hinzufügen",
+ "All Repositories": "Alle Repositorys",
+ "Always": "Immer",
+ "Always Pull": "Immer pullen",
+ "Always Replace Local Tag(s)": "Lokale Tags immer ersetzen",
+ "Are you sure you want to DELETE the following untracked file: '{0}'?{1}": "Möchten Sie die folgende nicht verfolgte Datei löschen: '{0}'?{1}",
+ "Are you sure you want to DELETE the {0} untracked files?{1}": "Möchten Sie wirklich die {0} nicht nachverfolgten Dateien LÖSCHEN?{1}",
+ "Are you sure you want to continue connecting?": "Möchten Sie die Verbindungsherstellung fortsetzen?",
+ "Are you sure you want to create an empty commit?": "Möchten Sie wirklich einen leeren Commit erstellen?",
+ "Are you sure you want to delete branch \"{0}\"? This action will permanently remove the branch reference from the repository.": "Möchten Sie den Branch „{0}“ löschen? Durch diese Aktion wird der Branchverweis dauerhaft aus dem Repository entfernt.",
+ "Are you sure you want to delete tag \"{0}\"? This action will permanently remove the tag reference from the repository.": "Möchten Sie das Tag „{0}“ wirklich löschen? Durch diese Aktion wird der Tagverweis dauerhaft aus dem Repository entfernt.",
+ "Are you sure you want to discard ALL changes in {0} files?\n\nThis is IRREVERSIBLE!\nYour current working set will be FOREVER LOST if you proceed.": "Möchten Sie wirklich ALLE Änderungen in {0} Dateien verwerfen?\n\nDieser Vorgang ist UNUMKEHRBAR!\nWenn Sie fortfahren, geht Ihr aktueller Arbeitssatz DAUERHAFT VERLOREN.",
+ "Are you sure you want to discard changes in '{0}'?": "Möchten Sie die Änderungen in {0} wirklich verwerfen?",
+ "Are you sure you want to drop ALL stashes? There are {0} stashes that will be subject to pruning, and MAY BE IMPOSSIBLE TO RECOVER.": "Sind Sie sich sicher, dass Sie ALLE Stashes löschen möchten? Es sind {0} Stashes vorhanden, die gelöscht werden müssen und MÖGLICHERWEISE NICHT WIEDERHERGESTELLT werden können.",
+ "Are you sure you want to drop ALL stashes? There is 1 stash that will be subject to pruning, and MAY BE IMPOSSIBLE TO RECOVER.": "Sind Sie sich sicher, dass Sie ALLE Stashes löschen möchten? Es ist 1 Stash vorhanden, der gelöscht werden muss und MÖGLICHERWEISE NICHT WIEDERHERGESTELLT werden kann.",
+ "Are you sure you want to drop the stash: {0}?": "Möchten Sie den folgenden Stash löschen: {0}?",
+ "Are you sure you want to restore '{0}'?": "Möchten Sie {0} wirklich wiederherstellen?",
+ "Are you sure you want to restore ALL {0} files?": "Möchten Sie wirklich ALLE {0} Dateien wiederherstellen?",
+ "Are you sure you want to stage {0} files with merge conflicts?": "Möchten Sie {0} Dateien mit Mergingkonflikten bereitstellen?",
+ "Are you sure you want to stage {0} with merge conflicts?": "Möchten Sie {0} mit Mergingkonflikten bereitstellen?",
+ "Ask Me Later": "Erneut nachfragen",
+ "Branch \"{0}\" already exists": "Die Verzweigung „{0}“ ist bereits vorhanden.",
+ "Branch \"{0}\" is already checked out in the current repository.": "Branch „{0}“ ist im aktuellen Repository bereits ausgecheckt.",
+ "Branch \"{0}\" is already checked out in the current window.": "Branch „{0}“ ist im aktuellen Fenster bereits ausgecheckt.",
+ "Branch \"{0}\" is already checked out in the worktree at \"{1}\".": "Branch „{0}“ ist bereits im Worktree unter „{1}“ ausgecheckt.",
+ "Branch name": "Branchname",
+ "Branch name needs to match regex: {0}": "Der Name des Branches muss mit RegEx übereinstimmen: {0}",
+ "Branches": "Branches",
+ "Can't force push refs to remote. The tip of the remote-tracking branch has been updated since the last checkout. Try running \"Pull\" first to pull the latest changes from the remote branch first.": "Pushverweise an remote kann nicht erzwungen werden. Die Spitze des Remotenachverfolgungsbranchs wurde seit dem letzten Check-Out aktualisiert. Führen Sie zuerst „Pull“ aus, um zuerst die neuesten Änderungen aus dem Remotebranch abzurufen.",
+ "Can't push refs to remote. Try running \"Pull\" first to integrate your changes.": "Verweise können nicht per Push an remote übertragen werden. Führen Sie zunächst \"Pull\" aus, um Ihre Änderungen zu integrieren.",
+ "Can't undo because HEAD doesn't point to any commit.": "Die Aktion kann nicht rückgängig gemacht werden, da HEAD nicht auf einen Commit verweist.",
+ "Changes": "Änderungen",
+ "Checking Out Branch/Tag...": "Verzweigung/Tag wird ausgecheckt ...",
+ "Checking Out Changes...": "Änderungen werden ausgecheckt ...",
+ "Checkout Branch/Tag...": "Verzweigung/Tag auschecken ...",
+ "Choose Folder...": "Ordner auswählen...",
+ "Choose a folder to clone {0} into": "Wählen Sie einen Ordner aus, in den {0} geklont werden soll.",
+ "Choose a repository": "Repository auswählen",
+ "Choose which repository to clone": "Wählen Sie aus, welches Repository geklont werden soll.",
+ "Choose which repository to publish": "Wählen Sie aus, welches Repository veröffentlicht werden soll",
+ "Clear whitespace characters": "Leerzeichen löschen",
+ "Clone again": "Erneut klonen",
+ "Clone from URL": "Repository-URL",
+ "Clone from {0}": "Aus \"{0}\" klonen",
+ "Cloning git repository \"{0}\"...": "Git-Repository \"{0}\" wird geklont...",
+ "Commit": "Commit",
+ "Commit & Push Changes": "Committen und Änderungen pushen",
+ "Commit & Sync Changes": "Committen und Änderungen synchronisieren",
+ "Commit Anyway": "Commit dennoch ausführen",
+ "Commit Changes": "Änderungen committen",
+ "Commit Changes on \"{0}\"": "Änderungen an \"{0}\" committen",
+ "Commit Changes to New Branch": "Commit der Änderungen für neue Verzweigung ausführen",
+ "Commit Hash": "Commithash",
+ "Commit message": "Commit-Nachricht",
+ "Commit operation was cancelled due to empty commit message.": "Der Commitvorgang wurde aufgrund einer leeren Commitnachricht abgebrochen.",
+ "Commit to New Branch & Push Changes": "Commit an neuer Verzweigung ausführen und Änderungen mit Push übertragen",
+ "Commit to New Branch & Synchronize Changes": "Commit an neuer Verzweigung ausführen und Änderungen synchronisieren",
+ "Commit to a New Branch": "Commit für eine neue Verzweigung ausführen",
+ "Commits without verification are not allowed, please enable them with the \"git.allowNoVerifyCommit\" setting.": "Commits ohne Überprüfung sind nicht zulässig. Aktivieren Sie sie mit der Einstellung \"git.allowNoVerifyCommit\".",
+ "Committing & Pushing Changes...": "Commit wird ausgeführt und Änderungen werden per Push übertragen...",
+ "Committing & Synchronizing Changes...": "Commit wird ausgeführt und Änderungen werden synchronisiert...",
+ "Committing Changes to New Branch...": "Committen von Änderungen an neuer Verzweigung wird ausgeführt...",
+ "Committing Changes...": "Änderungen werden committet...",
+ "Committing to New Branch & Pushing Changes...": "Committen an neuer Verzweigung wird ausgeführt und Änderungen werden mit Push übertragen...",
+ "Committing to New Branch & Synchronizing Changes...": "Commit an neuer Verzweigung wird ausgeführt und Änderungen werden synchronisiert...",
+ "Conflict: Added By Them": "Konflikt: von Anderen hinzugefügt",
+ "Conflict: Added By Us": "Konflikt: von uns hinzugefügt",
+ "Conflict: Both Added": "Konflikt: beide hinzugefügt",
+ "Conflict: Both Deleted": "Konflikt: beide gelöscht",
+ "Conflict: Both Modified": "Konflikt: beide geändert",
+ "Conflict: Deleted By Them": "Konflikt: von Anderen gelöscht",
+ "Conflict: Deleted By Us": "Konflikt: von uns gelöscht",
+ "Continue Merge": "Merge fortsetzen",
+ "Continue Rebase": "Rebase fortsetzen",
+ "Continuing Merge...": "Merge wird fortgesetzt...",
+ "Continuing Rebase...": "Rebase wird fortgesetzt...",
+ "Copy Commit Hash": "Commithash kopieren",
+ "Could not clone your repository as Git is not installed.": "Ihr Repository konnte nicht geklont werden, da Git nicht installiert ist.",
+ "Create Empty Commit": "Leeren Commit erstellen",
+ "Create New Branch": "Neuen Branch erstellen",
+ "Current": "Aktuell",
+ "Current commit message only contains whitespace characters": "Die aktuelle Commitnachricht enthält nur Leerzeichen.",
+ "Delete All {0} Files": "Alle {0} Dateien löschen",
+ "Delete Branch": "Branch löschen",
+ "Delete File": "Datei löschen",
+ "Delete Tag": "Tag löschen",
+ "Deleted": "Gelöscht",
+ "Discard 1 Tracked File": "1 verfolgte Datei verwerfen",
+ "Discard All {0} Files": "Alle {0} Dateien verwerfen",
+ "Discard All {0} Tracked Files": "Alle {0} nachverfolgten Dateien verwerfen",
+ "Discard File": "Datei verwerfen",
+ "Don't Pull": "Nicht pullen",
+ "Don't Show Again": "Nicht mehr anzeigen",
+ "Download Git": "Git herunterladen",
+ "Enables the following features: {0}": "Folgende Features werden aktivieren: {0}",
+ "Failed to authenticate to git remote.": "Fehler bei der Authentifizierung beim Git-Remoterepository.",
+ "Failed to authenticate to git remote:\n\n{0}": "Fehler bei der Authentifizierung beim Git-Remoterepository:\n\n{0}",
+ "Failed to delete using the Recycle Bin. Do you want to permanently delete instead?": "Fehler beim Löschen über den Papierkorb. Möchten Sie den Löschvorgang stattdessen dauerhaft ausführen?",
+ "Failed to delete using the Trash. Do you want to permanently delete instead?": "Fehler beim Löschen über den Papierkorb. Möchten Sie den Löschvorgang stattdessen dauerhaft ausführen?",
+ "Failed to open changes between \"{0}\" and \"{1}\": {2}": "Fehler beim Öffnen der Änderungen zwischen „{0}“ und „{1}“: {2}",
+ "File \"{0}\" was deleted by them and modified by us.\n\nWhat would you like to do?": "Die Datei \"{0}\" wurde von ihnen gelöscht und von uns geändert.\n\nWas möchten Sie tun?",
+ "File \"{0}\" was deleted by us and modified by them.\n\nWhat would you like to do?": "Die Datei \"{0}\" wurde von uns gelöscht und von ihnen geändert.\n\nWas möchten Sie tun?",
+ "Force Checkout": "Auschecken erzwingen",
+ "Force Delete": "Löschen erzwingen",
+ "Force push is not allowed, please enable it with the \"git.allowForcePush\" setting.": "Push erzwingen ist nicht zulässig. Aktivieren Sie es mit der Einstellung \"git.allowForcePush\".",
+ "Git Blame Information": "Git Blame-Informationen",
+ "Git History": "Git-Verlauf",
+ "Git Local Changes (Index)": "Lokale Git-Änderungen (Index)",
+ "Git Local Changes (Working Tree)": "Lokale Git-Änderungen (Arbeitsstruktur)",
+ "Git error": "Git-Fehler",
+ "Git not found. Install it or configure it using the \"git.path\" setting.": "Git wurde nicht gefunden. Installieren Sie es, oder konfigurieren Sie es mithilfe der Einstellung \"git.path\".",
+ "Git repositories were found in the parent folders of the workspace or the open file(s). Would you like to open the repositories?": "Git-Repositorys wurden in den übergeordneten Ordnern des Arbeitsbereichs oder in den geöffneten Dateien gefunden. Möchten Sie die Repositorys öffnen?",
+ "Git: {0}": "Git: {0}",
+ "HEAD version of \"{0}\" is not available.": "Es ist keine HEAD-Version von \"{0}\" verfügbar.",
+ "Hard wrap all lines": "Alle Zeilen hart umbrechen",
+ "Hard wrap line": "Zeile hart umbrechen",
+ "Ignored": "Ignoriert",
+ "Incoming": "Eingehend",
+ "Incoming Changes": "Eingehende Änderungen",
+ "Incoming Changes (added)": "Eingehende Änderungen (hinzugefügt)",
+ "Incoming Changes (deleted)": "Eingehende Änderungen (gelöscht)",
+ "Incoming Changes (modified)": "Eingehende Änderungen (geändert)",
+ "Incoming Changes (renamed)": "Eingehende Änderungen (umbenannt)",
+ "Index Added": "Index hinzugefügt",
+ "Index Copied": "Index kopiert",
+ "Index Deleted": "Index gelöscht",
+ "Index Modified": "Index geändert",
+ "Index Renamed": "Index umbenannt",
+ "Initialize Repository": "Repository initialisieren",
+ "Intent to Add": "Hinzuzufügende Absicht",
+ "Intent to Rename": "Absicht zum Umbenennen",
+ "Invalid branch name": "Ungültiger Branchname",
+ "It looks like the current branch \"{0}\" might have been rebased. Are you sure you still want to pull into it?": "Es sieht so aus, als wäre der aktuelle Branch \"{0}\" möglicherweise rebasiert worden. Möchten Sie den Pullvorgang wirklich fortsetzen?",
+ "It looks like the current branch might have been rebased. Are you sure you still want to pull into it?": "Offenbar wurde für den aktuellen Branch ein Rebase ausgeführt. Möchten Sie ihn dennoch als Ziel für den Pullvorgang verwenden?",
+ "It's not possible to change the commit message in the middle of a rebase. Please complete the rebase operation and use interactive rebase instead.": "Die Commit-Nachricht kann während der Rebase-Ausführung nicht geändert werden. Verwenden Sie stattdessen den interaktiven Rebase-Vorgang und schließen Sie die Rebase-Ausführung ab.",
+ "Keep Our Version": "Unsere Version beibehalten",
+ "Keep Their Version": "Deren Version beibehalten",
+ "Learn More": "Weitere Informationen",
+ "Make sure you configure your \"user.name\" and \"user.email\" in git.": "Stellen Sie sicher, dass Sie Ihre \"user.name\" und \"user.email\" in Git konfigurieren.",
+ "Manage Unsafe Repositories": "Unsichere Repositorys verwalten",
+ "Merge Changes": "Änderungen zusammenführen",
+ "Message": "Nachricht",
+ "Message (commit on \"{0}\")": "Nachricht (Commit auf \"{0}\")",
+ "Message ({0} to commit on \"{1}\")": "Nachricht ({0} für \"{1}\" committen)",
+ "Message ({0} to commit)": "Nachricht ({0} für Commit)",
+ "Migrate Changes": "Änderungen migrieren",
+ "Modified": "Geändert",
+ "Move to Recycle Bin": "In Papierkorb verschieben",
+ "Move to Trash": "In Papierkorb verschieben",
+ "Never": "Nie",
+ "No": "Nein",
+ "No hunk found at cursor position.": "An der Cursorposition wurde kein Hunk gefunden.",
+ "No rebase in progress.": "Es wird kein Rebase ausgeführt.",
+ "Not Committed Yet": "Noch kein Commit ausgeführt",
+ "Not Committed Yet (Staged)": "Noch kein Commit ausgeführt (gestaffelt)",
+ "OK": "OK",
+ "OK, Don't Ask Again": "OK, nicht mehr fragen",
+ "OK, Don't Show Again": "OK, nicht mehr anzeigen",
+ "Open": "Öffnen",
+ "Open Commit": "Commit öffnen",
+ "Open Comparison": "Vergleich öffnen",
+ "Open Existing Repository Clone": "Vorhandenen Repositoryklon öffnen",
+ "Open File": "Datei öffnen",
+ "Open Git Log": "Git-Protokoll öffnen",
+ "Open Merge": "Merge öffnen",
+ "Open Repositories In Parent Folders": "Repositorys in übergeordneten Ordnern öffnen",
+ "Open Repository": "Repository öffnen",
+ "Open Settings": "Einstellungen öffnen",
+ "Open Worktree in Current Window": "Worktree im aktuellen Fenster öffnen",
+ "Open Worktree in New Window": "Öffnen des Worktree im neuen Fenster",
+ "Open in New Window": "In neuem Fenster öffnen",
+ "Optionally provide a stash message": "Geben Sie optional eine Stash-Nachricht ein.",
+ "Passphrase": "Passphrase",
+ "Pick a branch to pull from": "Branch für Pull auswählen",
+ "Pick a provider to publish the branch \"{0}\" to:": "Wählen Sie einen Anbieter aus, um den Branch \"{0}\" hier zu veröffentlichen:",
+ "Pick a remote to publish the branch \"{0}\" to:": "Wählen Sie ein Remote-Objekt aus, in dem der Branch \"{0}\" veröffentlicht werden soll:",
+ "Pick a remote to pull the branch from": "Remoteelement zum Pullen des Branch auswählen",
+ "Pick a remote to remove": "Remote zum Entfernen auswählen",
+ "Pick a repository to mark as safe and open": "Wählen Sie ein Repository aus, das als sicher markiert werden soll und öffnen Sie es",
+ "Pick a repository to open": "Zu öffnendes Repository auswählen",
+ "Pick a repository to reopen": "Zu öffnendes Repository auswählen",
+ "Pick a stash to apply": "Stash zum Anwenden auswählen",
+ "Pick a stash to drop": "Zu löschenden Stash auswählen",
+ "Pick a stash to pop": "Wählen Sie einen Stash aus, für den ein Pop ausgeführt werden soll.",
+ "Pick a stash to view": "Stash zum Anzeigen auswählen",
+ "Pick workspace folder to initialize git repo in": "Arbeitsbereichsordner auswählen, in dem das Git-Repository initialisiert wird",
+ "Please check out a branch to push to a remote.": "Wählen Sie ein Branch für den Push zu einem Remoteelement aus.",
+ "Please clean your repository working tree before checkout.": "Bereinigen Sie Ihre Repository-Arbeitsstruktur vor Auftragsabschluss.",
+ "Please provide a commit message": "Geben Sie eine Commit-Nachrichte ein.",
+ "Please provide a message to annotate the tag": "Geben Sie eine Meldung ein, um das Tag mit einer Anmerkung zu versehen.",
+ "Please provide a new branch name": "Bitte geben Sie einen neuen Branchnamen an.",
+ "Please provide a remote name": "Remotenamen angeben",
+ "Please provide a tag name": "Geben Sie einen Tagnamen an.",
+ "Please provide a worktree path": "Geben Sie einen Pfad für den Worktree an",
+ "Please provide the commit hash": "Geben Sie den Commithash an.",
+ "Proceed": "Fortfahren",
+ "Proceed with migrating changes to the current repository?": "Möchten Sie mit der Migration von Änderungen zum aktuellen Repository fortfahren?",
+ "Publish Branch": "Verzweigung veröffentlichen",
+ "Publish Branch \"{0}\"/{Locked=\"Branch\"}Do not translate \"Branch\" as it is a git term": "Branch \"{0}\" veröffentlichen",
+ "Publish Branch/{Locked=\"Branch\"}Do not translate \"Branch\" as it is a git term": "Branch veröffentlichen",
+ "Publish to {0}": "In \"{0}\" veröffentlichen",
+ "Publish to...": "Veröffentlichen in...",
+ "Publishing Branch \"{0}\".../{Locked=\"Branch\"}Do not translate \"Branch\" as it is a git term": "Branch \"{0}\" wird veröffentlicht...",
+ "Publishing Branch.../{Locked=\"Branch\"}Do not translate \"Branch\" as it is a git term": "Branch wird veröffentlicht...",
+ "Pull": "Pull",
+ "Pull {0} and push {1} commits between {2}/{3}": "{0} Commits per Pull und {1} Commits per Push zwischen {2}/{3} übertragen",
+ "Pull {0} commits from {1}/{2}": "{0} Commits aus {1}/{2} per Pull übertragen",
+ "Push {0} commits to {1}/{2}": "{0} Commits per Push nach {1}/{2} übertragen",
+ "Rebasing": "Rebase wird ausgeführt",
+ "Regenerate Branch Name": "Branchnamen neu generieren",
+ "Remote \"{0}\" already exists.": "Remote \"{0}\" ist bereits vorhanden.",
+ "Remote branch at {0}": "Remotebranch unter {0}",
+ "Remote name": "Remotename",
+ "Remote name format invalid": "Ungültiges Format des Remotenamens",
+ "Remote tag at {0}": "Remotetag bei {0}",
+ "Reopen Closed Repositories": "Geschlossene Repositorys erneut öffnen",
+ "Replace Local Tag(s)": "Lokale Tags ersetzen",
+ "Restore All {0} Files": "Alle {0} Dateien wiederherstellen",
+ "Restore File": "Datei wiederherstellen",
+ "Save All & Commit Changes": "Alles speichern und Änderungen committen",
+ "Save All & Stash": "Alle speichern und stashen",
+ "Select Worktree Destination": "Worktree-Ziel auswählen",
+ "Select a branch or tag to checkout": "Wählen Sie einen Branch oder ein Tag zum Auschecken aus.",
+ "Select a branch or tag to create the new worktree from": "Wählen Sie eine Verzweigung oder ein Tag aus, aus dem der neue Worktree erstellt werden soll",
+ "Select a branch or tag to merge from": "Wählen Sie einen Branch oder ein Tag aus, aus dem zusammengeführt werden sollen.",
+ "Select a branch to checkout in detached mode": "Wählen Sie einen Branch zum Auschecken im getrennten Modus aus.",
+ "Select a branch to delete": "Wählen Sie einen Branch zum Löschen aus",
+ "Select a branch to rebase onto": "Branch für Rebase auswählen",
+ "Select a ref to create the branch from": "Wählen Sie einen Verweis aus, aus dem der Branch erstellt werden soll.",
+ "Select a reference to compare with": "Wählen Sie einen Verweis aus, mit dem verglichen werden soll",
+ "Select a remote branch to delete": "Zu löschenden Remotebranch auswählen",
+ "Select a remote tag to delete": "Remotetag zum Löschen auswählen",
+ "Select a remote to delete a tag from": "Wählen Sie ein Remoteelement aus, aus dem ein Tag gelöscht werden soll.",
+ "Select a remote to fetch": "Remote zum Abrufen auswählen",
+ "Select a tag to delete": "Zu löschendes Tag auswählen",
+ "Select a worktree to delete": "Zu löschenden Worktree auswählen",
+ "Select a worktree to migrate changes from": "Wählen Sie eine Arbeitsstruktur aus, von der Änderungen migriert werden sollen.",
+ "Select as Repository Destination": "Als Repositoryziel auswählen",
+ "Select as Worktree Destination": "Als Worktree-Ziel auswählen",
+ "Show Changes": "Änderungen anzeigen",
+ "Show Command Output": "Befehlsausgabe anzeigen",
+ "Staged Changes": "Gestagete Änderungen",
+ "Stash & Checkout": "Stashen und auschecken",
+ "Stash Anyway": "Dennoch stashen",
+ "Stash message": "Stash-Nachricht",
+ "Stashed Changes": "Gestashte Änderungen",
+ "Successfully pushed.": "Push wurde erfolgreich ausgeführt.",
+ "Synchronize Changes": "Änderungen synchronisieren",
+ "Synchronizing Changes...": "Änderungen werden synchronisiert...",
+ "Syncing. Cancelling may cause serious damages to the repository": "Synchronisierung wird durchgeführt. Das Abbrechen des Vorgangs kann zu schweren Schäden am Repository führen.",
+ "Tag at {0}": "Tag bei {0}",
+ "Tag name": "Tag-Name",
+ "Tags": "Tags",
+ "The \"{0}\" repository has {1} submodules which won't be opened automatically. You can still open each one individually by opening a file within.": "Das Repository \"{0}\" enthält {1} Submodule, die nicht automatisch geöffnet werden. Sie können jede Datei dennoch einzeln öffnen, indem Sie darin eine Datei öffnen.",
+ "The \"{0}\" repository has {1} worktrees which won't be opened automatically. You can still open each one individually by opening a file within.": "Das Repository „{0}“ enthält {1} Worktrees, die nicht automatisch geöffnet werden. Sie können jede Datei dennoch einzeln öffnen, indem Sie darin eine Datei öffnen.",
+ "The active branch cannot be deleted.": "Der aktive Branch kann nicht gelöscht werden.",
+ "The branch \"{0}\" has no remote branch. Would you like to publish this branch?": "Der Branch \"{0}\" weist keinen Remotebranch auf. Möchten Sie diesen Branch veröffentlichen?",
+ "The branch \"{0}\" is not fully merged. Delete anyway?": "Der Branch \"{0}\" ist nicht vollständig zusammengeführt. Trotzdem löschen?",
+ "The changes are already present in the current branch.": "Die Änderungen sind bereits im aktuellen Branch vorhanden.",
+ "The current branch is not published to the remote. Would you like to publish it to access your changes elsewhere?": "Der aktuelle Branch wird nicht auf dem Remotecomputer veröffentlicht. Möchten Sie ihn veröffentlichen, um an anderer Stelle auf Ihre Änderungen zuzugreifen?",
+ "The following file has unresolved diagnostics: '{0}'.\n\nHow would you like to proceed?": "Die folgende Datei hat Diagnose nicht aufgelöst: '{0}'.\n\nWie möchten Sie fortfahren?",
+ "The following file has unsaved changes which won't be included in the commit if you proceed: {0}.\n\nWould you like to save it before committing?": "Die folgende Datei umfasst noch nicht gespeicherte Änderungen, die beim Fortsetzen des Vorgangs nicht in den Commit einbezogen werden: {0}.\n\nMöchten Sie vor dem Commit speichern?",
+ "The following file has unsaved changes which won't be included in the stash if you proceed: {0}.\n\nWould you like to save it before stashing?": "Die folgende Datei umfasst nicht gespeicherte Änderungen, die beim Fortsetzen des Vorgangs nicht in den Stash einbezogen werden: {0}.\n\nMöchten Sie sie vor dem Stashen speichern?",
+ "The git repositories in the current folder are potentially unsafe as the folders are owned by someone other than the current user.": "Die Git-Repositorys im aktuellen Ordner sind potenziell unsicher, weil sich die Ordner im Besitz einer anderen Person als dem aktuellen Benutzer befinden.",
+ "The git repository at \"{0}\" has too many active changes, only a subset of Git features will be enabled.": "Das Git-Repository unter \"{0}\" weist zu viele aktive Änderungen auf. Es wird nur eine Teilmenge der Git-Features aktiviert.",
+ "The git repository in the current folder is potentially unsafe as the folder is owned by someone other than the current user.": "Das Git-Repository im aktuellen Ordner ist potenziell unsicher, weil sich der Ordner im Besitz einer anderen Person als dem aktuellen Benutzer befindet.",
+ "The last commit was a merge commit. Are you sure you want to undo it?": "Der letzte Commit war ein Mergecommit. Möchten Sie den Vorgang wirklich rückgängig machen?",
+ "The new branch will be \"{0}\"": "Der neue Branch lautet \"{0}\".",
+ "The remote branch of the active branch cannot be deleted.": "Der Remotebranch des aktiven Branches kann nicht gelöscht werden.",
+ "The repository does not have any changes.": "Das Repository weist keine Änderungen auf.",
+ "The repository does not have any commits. Please make an initial commit before creating a stash.": "Das Repository weist keine Commits auf. Führen Sie einen ersten Commit aus, bevor Sie einen Stash erstellen.",
+ "The repository does not have any staged changes.": "Das Repository weist keine gestageten Änderungen auf.",
+ "The repository does not have any untracked changes.": "Das Repository weist keine nicht verfolgten Änderungen auf.",
+ "The selection range does not contain any changes.": "Der Auswahlbereich enthält keine Änderungen.",
+ "The source repository could not be found.": "Das Quell-Repository konnte nicht gefunden werden.",
+ "The worktree contains modified or untracked files. Do you want to force delete?": "Der Workertree enthält geänderte oder nicht nachverfolgte Dateien. Möchten Sie das Löschen erzwingen?",
+ "There are known issues with the installed Git \"{0}\". Please update to Git >= 2.27 for the git features to work correctly.": "Es gibt bekannte Probleme mit der installierten Git \"{0}\". Aktualisieren Sie auf Git >= 2.27, damit die Git-Features ordnungsgemäß funktionieren.",
+ "There are merge conflicts from migrating changes. Please resolve them before committing.": "Beim Migrieren von Änderungen treten Zusammenführungskonflikte auf. Bitte beheben Sie diese vor dem Commit.",
+ "There are merge conflicts while applying the stash. Please resolve them before committing your changes.": "Beim Anwenden des Stashs liegen Mergekonflikte vor. Beheben Sie diese vor dem Committen Ihrer Änderungen.",
+ "There are merge conflicts. Please resolve them before committing your changes.": "Es liegen Zusammenführungskonflikte vor. Beheben Sie diese vor dem Committen Ihrer Änderungen.",
+ "There are no available repositories": "Es sind keine verfügbaren Repositorys vorhanden.",
+ "There are no available repositories matching the filter": "Es sind keine verfügbaren Repositories vorhanden, die dem Filter entsprechen.",
+ "There are no changes between \"{0}\" and \"{1}\".": "Es gibt keine Änderungen zwischen „{0}“ und „{1}“.",
+ "There are no changes in the selected worktree to migrate.": "In der ausgewählten Arbeitsstruktur sind keine Änderungen zum Migrieren vorhanden.",
+ "There are no changes to commit.": "Keine Änderungen zum Speichern vorhanden.",
+ "There are no changes to stash.": "Es sind keine Änderungen vorhanden, für die ein Stash ausgeführt werden kann.",
+ "There are no staged changes to commit.\n\nWould you like to stage all your changes and commit them directly?": "Es sind keine gestageten Änderungen vorhanden, für die ein Commit durchgeführt werden kann.\n\nMöchten Sie all Ihre Änderungen stagen und direkt committen?",
+ "There are no staged changes to stash.": "Es sind keine gestagete Änderungen vorhanden, um einen Stash auszuführen.",
+ "There are no stashes in the repository.": "Das Repository enthält keine Stashes.",
+ "There are {0} files that have unresolved diagnostics.\n\nHow would you like to proceed?": "Es sind {0} Dateien vorhanden, die nicht aufgelöste Diagnose haben.\n\nWie möchten Sie fortfahren?",
+ "There are {0} unsaved files.\n\nWould you like to save them before committing?": "{0} Dateien wurden nicht gespeichert.\n\nMöchten Sie diese vor dem Ausführen des Commits speichern?",
+ "There are {0} unsaved files.\n\nWould you like to save them before stashing?": "{0} Dateien wurden nicht gespeichert.\n\nMöchten Sie diese vor dem Stashen speichern?",
+ "There were merge conflicts while cherry picking the changes. Resolve the conflicts before committing them.": "Mergekonflikte beim Cherrypicking der Änderungen. Lösen Sie die Konflikte vor dem Commit.",
+ "This action will pull and push commits from and to \"{0}/{1}\".": "Durch diese Aktion werden Commits von und an \"{0}/{1}\" gepullt und gepusht.",
+ "This is IRREVERSIBLE!\nThese files will be FOREVER LOST if you proceed.": "Dieser Vorgang ist UNUMKEHRBAR!\nWenn Sie fortfahren, gehen diese Dateien DAUERHAFT VERLOREN.",
+ "This is IRREVERSIBLE!\nThis file will be FOREVER LOST if you proceed.": "Dieser Vorgang ist UNUMKEHRBAR!\nWenn Sie fortfahren, geht diese Datei DAUERHAFT VERLOREN.",
+ "This repository has no remotes configured to fetch from.": "In diesem Repository wurden keine Remoteelemente konfiguriert, aus denen ein Abrufen erfolgt.",
+ "This will apply the worktree's changes to this repository and discard changes in the worktree.\nThis is IRREVERSIBLE!": "Dies wendet die Änderungen der Arbeitsstruktur auf dieses Repository an und verwirft Änderungen in der Arbeitsstruktur.\nDieser Vorgang ist UNUMKEHRBAR!",
+ "This will create a Git repository in \"{0}\". Are you sure you want to continue?": "Dadurch wird ein Git-Repository in \"{0}\" erstellt. Möchten Sie den Vorgang wirklich fortsetzen?",
+ "Too many changes were detected. Only the first {0} changes will be shown below.": "Es wurden zu viele Änderungen erkannt. Im Folgenden werden nur die ersten {0} Änderungen angezeigt.",
+ "Type Changed": "Typ geändert",
+ "Unable to pull from remote repository due to conflicting tag(s): {0}. Would you like to resolve the conflict by replacing the local tag(s)?": "Aus dem Remote Repository kann aufgrund von in Konflikt stehenden Tags nicht zugegriffen werden: {0}. Möchten Sie den Konflikt lösen, indem Sie die lokalen Tags ersetzen?",
+ "Uncommitted Changes": "Ausgecheckte Änderungen",
+ "Undo merge commit": "Mergecommit rückgängig machen",
+ "Untracked": "Nicht verfolgt",
+ "Untracked Changes": "Nicht nachverfolgte Änderungen",
+ "Update Git": "Git aktualisieren",
+ "View Problems": "Probleme anzeigen",
+ "Workspace": "Arbeitsbereich",
+ "Workspace: {0}": "Arbeitsbereich: {0}",
+ "Worktree": "Worktree",
+ "Worktree path": "Worktree-Pfad",
+ "Would you like to add \"{0}\" to .gitignore?": "Möchten Sie \"{0}\" zu \".gitignore\" hinzufügen?",
+ "Would you like to open the initialized repository, or add it to the current workspace?": "Möchten Sie das initialisierte Repository öffnen oder es zum aktuellen Arbeitsbereich hinzufügen?",
+ "Would you like to open the initialized repository?": "Möchten Sie das initialisierte Repository öffnen?",
+ "Would you like to open the repository, or add it to the current workspace?": "Möchten Sie das Repository öffnen oder dem aktuellen Arbeitsbereich hinzufügen?",
+ "Would you like to open the repository?": "Möchten Sie das Repository öffnen?",
+ "Would you like to publish this repository to continue working on it elsewhere?": "Möchten Sie dieses Repository veröffentlichen, um die Arbeit daran einem anderen Ort fortzusetzen?",
+ "Would you like {0} to [periodically run \"git fetch\"]({1})?": "Soll {0} [in regelmäßigen Abständen \"git fetch\" ausführen]({1})?",
+ "Yes": "Ja",
+ "Yes, Don't Show Again": "Ja, nicht mehr anzeigen",
+ "You": "Sie",
+ "You are about to commit your changes without verification, this skips pre-commit hooks and can be undesirable.\n\nAre you sure to continue?": "Sie sind im Begriff, Ihre Änderungen ohne Überprüfung zu committen. Hierdurch werden Pre-commit-Hooks übersprungen, was möglicherweise nicht erwünscht ist.\n\nMöchten Sie den Vorgang fortsetzen?",
+ "You are about to force push your changes, this can be destructive and could inadvertently overwrite changes made by others.\n\nAre you sure to continue?": "Sie sind dabei, einen erzwungenen Push für Ihre Änderungen durchzuführen. Dieser Vorgang kann negative Auswirkungen haben und die Änderungen anderer Benutzer überschreiben.\n\nMöchten Sie fortfahren?",
+ "You are trying to commit to a protected branch and you might not have permission to push your commits to the remote.\n\nHow would you like to proceed?": "Sie versuchen, einen Commit für eine geschützte Verzweigung auszuführen, und sind möglicherweise nicht berechtigt, Ihre Commits per Push auf die Remote-Verzweigung zu übertragen.\n\nWie möchten Sie fortfahren?",
+ "You can restore these files from the Recycle Bin.": "Sie können diese Dateien aus dem Papierkorb wiederherstellen.",
+ "You can restore these files from the Trash.": "Sie können diese Dateien aus dem Papierkorb wiederherstellen.",
+ "You can restore this file from the Recycle Bin.": "Sie können diese Datei aus dem Papierkorb wiederherstellen.",
+ "You can restore this file from the Trash.": "Sie können diese Datei aus dem Papierkorb wiederherstellen.",
+ "You cannot delete the worktree you are currently in. Please switch to the main repository first.": "Sie können die Arbeitsstruktur, in der Sie sich gerade befinden, nicht löschen. Wechseln Sie zuerst zum Haupt-Repository.",
+ "You seem to have git \"{0}\" installed. Code works best with git >= 2": "Git \"{0}\" scheint installiert zu sein. Code funktioniert am besten mit Git >= 2",
+ "Your local changes to the following files would be overwritten by merge:\n {0}\n\nPlease stage, commit, or stash your changes in the repository before migrating changes.": "Ihre lokalen Änderungen an den folgenden Dateien würden durch zusammenführen überschrieben:\n {0}\n\nBitte stufen Sie Ihre Änderungen im Repository ein, führen Sie einen Commit aus oder stashen Sie sie, bevor Sie Änderungen migrieren.",
+ "Your local changes would be overwritten by checkout.": "Ihre lokalen Änderungen werden durch Auschecken überschrieben.",
+ "Your repository has no remotes configured to publish to.": "In Ihrem Repository wurden keine Remoteelemente für die Veröffentlichung konfiguriert.",
+ "Your repository has no remotes configured to pull from.": "In Ihrem Repository wurden keine Remoteelemente für den Pull konfiguriert.",
+ "Your repository has no remotes configured to push to.": "In Ihrem Repository wurden keine Remoteelemente für den Push konfiguriert.",
+ "Your repository has no remotes.": "In Ihrem Repository liegen keine Remoteelemente vor.",
+ "[main] Log level: {0}": "[main] Protokolliergrad: {0}",
+ "[main] Skipped found git in: \"{0}\"": "[main] Gefundenes Git wurde übersprungen in: \"{0}\"",
+ "[main] Using git \"{0}\" from \"{1}\"": "[main] Git \"{0}\" von \"{1}\" verwenden",
+ "[main] Validating found git in: \"{0}\"": "[main] Gefundenes Git wird überprüft in: \"{0}\"",
+ "branches": "Branches",
+ "in {0}": "in {0}",
+ "no": "Nein",
+ "now": "jetzt",
+ "remote branches": "Remotebranches",
+ "tags": "Tags",
+ "yes": "Ja",
+ "{0} (Deleted)": "{0} (gelöscht)",
+ "{0} (Index)": "{0} (Index)",
+ "{0} (Intent to add)": "{0} (Hinzuzufügende Absicht)",
+ "{0} (Ours)": "{0} (unseres)",
+ "{0} (Theirs)": "{0} (ihres)",
+ "{0} (Type changed)": "{0} (Typ geändert)",
+ "{0} (Untracked)": "{0} (keine Nachverfolgung)",
+ "{0} (Working Tree)": "{0} (Arbeitsstruktur)",
+ "{0} ({1})": "{0} ({1})",
+ "{0} ({1}) ș {0} ({2})": "{0} ({1}) ș {0} ({2})",
+ "{0} Checkout detached...": "{0} Auschecken getrennt...",
+ "{0} Commit": "{0} Commit",
+ "{0} Commit & Push": "{0} Commit und Push",
+ "{0} Commit & Sync": "{0} Commit und Synchronisieren",
+ "{0} Commit (Amend)": "{0} Committen (Korrigieren)",
+ "{0} Continue": "{0} fortsetzen",
+ "{0} Create new branch from...": "{0} Neuen Branch erstellen aus...",
+ "{0} Create new branch...": "{0} Neuen Branch erstellen...",
+ "{0} Fetch all remotes": "{0} Abrufen aller Remotes",
+ "{0} Publish Branch/{Locked=\"Branch\"}Do not translate \"Branch\" as it is a git term": "{0} Branch veröffentlichen",
+ "{0} Sync Changes{1}{2}": "{0} Änderungen synchronisieren{1}{2}",
+ "{0} characters over {1} in current line": "{0} Zeichen über {1} in der aktuellen Zeile",
+ "{0} day": "{0} Tag",
+ "{0} day ago": "Vor {0} Tag",
+ "{0} days": "{0} Tage",
+ "{0} days ago": "Vor {0} Tagen",
+ "{0} deletions{1}": "{0} Löschvorgänge{1}",
+ "{0} deletion{1}": "{0} Löschvorgang{1}",
+ "{0} file changed": "{0} Datei geändert",
+ "{0} files changed": "{0} Dateien geändert",
+ "{0} hour": "{0} Stunde",
+ "{0} hour ago": "Vor {0} Stunde",
+ "{0} hours": "{0} Stunden",
+ "{0} hours ago": "Vor {0} Stunden",
+ "{0} hr": "{0} Std.",
+ "{0} hr ago": "vor {0} Std.",
+ "{0} hrs": "{0} Std.",
+ "{0} hrs ago": "vor {0} Std.",
+ "{0} insertions{1}": "{0} Einfügevorgänge{1}",
+ "{0} insertion{1}": "{0} Einfügevorgang{1}",
+ "{0} min": "{0} Min.",
+ "{0} min ago": "Vor {0} Min.",
+ "{0} mins": "{0} Min.",
+ "{0} mins ago": "Vor {0} Min.",
+ "{0} minute": "{0} Minute",
+ "{0} minute ago": "Vor {0} Minute",
+ "{0} minutes": "{0} Minuten",
+ "{0} minutes ago": "Vor {0} Minuten",
+ "{0} mo": "{0} Mo.",
+ "{0} mo ago": "vor {0} Mo.",
+ "{0} month": "{0} Monat",
+ "{0} month ago": "Vor {0} Monat",
+ "{0} months": "{0} Monate",
+ "{0} months ago": "Vor {0} Monaten",
+ "{0} mos": "{0} Mo.",
+ "{0} mos ago": "Vor {0} Mo.",
+ "{0} sec": "{0} Sek.",
+ "{0} sec ago": "vor {0} Sek.",
+ "{0} second": "{0} Sekunde",
+ "{0} second ago": "Vor {0} Sekunde",
+ "{0} seconds": "{0} Sekunden",
+ "{0} seconds ago": "Vor {0} Sekunden",
+ "{0} secs": "{0} Sek.",
+ "{0} secs ago": "Vor {0} Sek.",
+ "{0} week": "{0} Woche",
+ "{0} week ago": "Vor {0} Woche",
+ "{0} weeks": "{0} Wochen",
+ "{0} weeks ago": "Vor {0} Wochen",
+ "{0} wk": "{0} Wo.",
+ "{0} wk ago": "Vor {0} Woche",
+ "{0} wks": "{0} Wochen",
+ "{0} wks ago": "Vor {0} Wochen",
+ "{0} year": "{0} Jahr",
+ "{0} year ago": "Vor {0} Jahr",
+ "{0} years": "{0} Jahre",
+ "{0} years ago": "Vor {0} Jahren",
+ "{0} yr": "{0} J.",
+ "{0} yr ago": "Vor {0} J.",
+ "{0} yrs": "{0} J.",
+ "{0} yrs ago": "Vor {0} J.",
+ "{0} ș {1}": "{0} ș {1}"
+ },
+ "package": {
+ "colors.added": "Farbe für hinzugefügte Ressourcen.",
+ "colors.blameEditorDecoration": "Farbe für die Dekoration des Blame-Editors.",
+ "colors.conflict": "Farbe für Ressourcen mit Konflikten.",
+ "colors.deleted": "Farbe für gelöschte Ressourcen.",
+ "colors.ignored": "Farbe für ignorierte Ressourcen.",
+ "colors.incomingAdded": "Farbe für hinzugefügte eingehende Ressource.",
+ "colors.incomingDeleted": "Farbe für gelöschte eingehende Ressource.",
+ "colors.incomingModified": "Farbe für geänderte eingehende Ressource.",
+ "colors.incomingRenamed": "Farbe für umbenannte eingehende Ressource.",
+ "colors.modified": "Farbe für geänderte Ressourcen.",
+ "colors.renamed": "Farbe für umbenannte oder kopierte Ressourcen.",
+ "colors.stageDeleted": "Farbe für gelöschte Ressourcen, die gestaget wurden.",
+ "colors.stageModified": "Farbe für geänderte Ressourcen, die gestaget wurden.",
+ "colors.submodule": "Farbe für Submodul-Ressourcen.",
+ "colors.untracked": "Farbe für nicht verfolgte Ressourcen.",
+ "command.addRemote": "Remoterepository hinzufügen...",
+ "command.api.getRemoteSources": "Remotequellen abrufen",
+ "command.api.getRepositories": "Repositorys abrufen",
+ "command.api.getRepositoryState": "Repositorystatus abrufen",
+ "command.blameToggleEditorDecoration": "Git Blame Editor Decoration umschalten",
+ "command.blameToggleStatusBarItem": "Git-Blame-Statusleistenelement umschalten",
+ "command.branch": "Branch wird erstellt...",
+ "command.branchFrom": "Branch erstellen aus...",
+ "command.checkout": "Check-Out nach...",
+ "command.checkoutDetached": "Auschecken an (getrennt)...",
+ "command.cherryPick": "Cherry-Pick...",
+ "command.cherryPickAbort": "Cherrypicking abbrechen",
+ "command.clean": "Änderungen verwerfen",
+ "command.cleanAll": "Alle Änderungen verwerfen",
+ "command.cleanAllTracked": "Alle nachverfolgten Änderungen verwerfen",
+ "command.cleanAllUntracked": "Alle nicht nachverfolgten Änderungen verwerfen",
+ "command.clone": "Klonen",
+ "command.cloneRecursive": "Klonen (rekursiv)",
+ "command.close": "Repository schließen",
+ "command.closeAllDiffEditors": "Alle Diff-Editoren schließen",
+ "command.closeAllUnmodifiedEditors": "Alle unveränderten Editoren schließen",
+ "command.closeOtherRepositories": "Andere Repositorys schließen",
+ "command.commit": "Commit",
+ "command.commitAll": "Commit für alle ausführen",
+ "command.commitAllAmend": "Alle committen (Bearbeiten)",
+ "command.commitAllAmendNoVerify": "Alle committen (Bearbeiten, keine Überprüfung)",
+ "command.commitAllNoVerify": "Alle committen (keine Überprüfung)",
+ "command.commitAllSigned": "Alle committen (unterzeichnet)",
+ "command.commitAllSignedNoVerify": "Alle committen (abgemeldet, keine Überprüfung)",
+ "command.commitAmend": "Committen (Korrigieren)",
+ "command.commitAmendNoVerify": "Committen (Korrigieren, keine Überprüfung)",
+ "command.commitEmpty": "Leer committen",
+ "command.commitEmptyNoVerify": "Commit leer (keine Überprüfung)",
+ "command.commitMessageAccept": "Commit-Nachricht akzeptieren",
+ "command.commitMessageDiscard": "Commit-Nachricht verwerfen",
+ "command.commitNoVerify": "Commit ausführen (keine Überprüfung)",
+ "command.commitSigned": "Committen (Abgemeldet)",
+ "command.commitSignedNoVerify": "Committen (Abgemeldet, keine Überprüfung)",
+ "command.commitStaged": "Gestagetes committen",
+ "command.commitStagedAmend": "Gestagete committen (Bearbeiten)",
+ "command.commitStagedAmendNoVerify": "Gestagete commiten (Bearbeiten, keine Überprüfung)",
+ "command.commitStagedNoVerify": "Commit gestaget (keine Überprüfung)",
+ "command.commitStagedSigned": "Gestagetes committen (signiert)",
+ "command.commitStagedSignedNoVerify": "Commit gestaget (abgemeldet, keine Überprüfung)",
+ "command.compareWithWorkspace": "Vergleichen mit Arbeitsbereich",
+ "command.continueInLocalClone": "Repository lokal klonen und auf Desktop öffnen...",
+ "command.continueInLocalClone.qualifiedName": "Weiterarbeiten im neuen lokalen Klon",
+ "command.createFrom": "Erstellen aus …",
+ "command.createTag": "Tag erstellen...",
+ "command.createWorktree": "Worktree erstellen …",
+ "command.deleteBranch": "Branch löschen...",
+ "command.deleteRef": "Löschen",
+ "command.deleteRemoteBranch": "Remotebranch löschen...",
+ "command.deleteRemoteTag": "Remotetag löschen...",
+ "command.deleteTag": "Tag löschen...",
+ "command.deleteWorktree": "Worktree löschen …",
+ "command.deleteWorktree2": "Worktree löschen",
+ "command.fetch": "Fetchen",
+ "command.fetchAll": "Von allen Remotes holen",
+ "command.fetchPrune": "Abrufen (Prune)",
+ "command.git.acceptMerge": "Zusammenführen abschließen",
+ "command.git.openMergeEditor": "Im Merge-Editor auflösen",
+ "command.git.runGitMerge": "Computekonflikte mit Git",
+ "command.git.runGitMergeDiff3": "Computekonflikte mit Git (Diff3)",
+ "command.graphCheckout": "Check-Out",
+ "command.graphCheckoutDetached": "Check-Out (getrennt)",
+ "command.graphCherryPick": "Cherrypicking",
+ "command.graphCompareRef": "Vergleichen mit …",
+ "command.graphCompareWithMergeBase": "Vergleich mit Mergebasis",
+ "command.graphCompareWithRemote": "Vergleichen mit Remote",
+ "command.graphDeleteBranch": "Branch löschen",
+ "command.graphDeleteTag": "Tag löschen",
+ "command.ignore": "Zu .gitignore hinzufügen",
+ "command.init": "Repository initialisieren",
+ "command.manageUnsafeRepositories": "Unsichere Repositorys verwalten",
+ "command.merge": "Zusammenführen...",
+ "command.merge2": "Zusammenführen",
+ "command.mergeAbort": "Merge abbrechen",
+ "command.migrateWorktreeChanges": "Änderungen der Arbeitsstruktur migrieren...",
+ "command.openAllChanges": "Alle Änderungen öffnen",
+ "command.openChange": "Offene Änderungen",
+ "command.openFile": "Datei öffnen",
+ "command.openHEADFile": "Datei öffnen (HEAD)",
+ "command.openRepositoriesInParentFolders": "Repositorys in übergeordneten Ordnern öffnen",
+ "command.openRepository": "Repository öffnen",
+ "command.openWorktree": "Worktree im aktuellen Fenster öffnen",
+ "command.openWorktreeInNewWindow": "Öffnen des Worktree im neuen Fenster",
+ "command.publish": "Branch veröffentlichen...",
+ "command.pull": "Pull",
+ "command.pullFrom": "Pullen von...",
+ "command.pullRebase": "Pull (Rebase)",
+ "command.push": "Push",
+ "command.pushFollowTags": "Push (Tags folgen)",
+ "command.pushFollowTagsForce": "Push (Tags folgen, Erzwingen)",
+ "command.pushForce": "Push (Erzwingen)",
+ "command.pushTags": "Tags pushen",
+ "command.pushTo": "Push zu...",
+ "command.pushToForce": "Push zu... (Erzwingen)",
+ "command.rebase": "Rebase für Branch ausführen...",
+ "command.rebase2": "Rebase ausführen",
+ "command.rebaseAbort": "Rebase abbrechen",
+ "command.refresh": "Aktualisieren",
+ "command.removeRemote": "Remote entfernen",
+ "command.rename": "Umbenennen",
+ "command.renameBranch": "Branch umbenennen...",
+ "command.reopenClosedRepositories": "Geschlossene Repositorys erneut öffnen...",
+ "command.restoreCommitTemplate": "Commitvorlage wiederherstellen",
+ "command.revealFileInOS.linux": "Übergeordneten Ordner öffnen",
+ "command.revealFileInOS.mac": "Im Finder anzeigen",
+ "command.revealFileInOS.windows": "Im Datei-Explorer anzeigen",
+ "command.revealInExplorer": "In Explorer-Ansicht anzeigen",
+ "command.revertChange": "Änderung zurücksetzen",
+ "command.revertSelectedRanges": "Ausgewählte Bereiche zurücksetzen",
+ "command.showOutput": "Git-Ausgabe anzeigen",
+ "command.stage": "Änderungen bereitstellen",
+ "command.stageAll": "Alle Änderungen bereitstellen",
+ "command.stageAllMerge": "Alle zusammengeführten Änderungen stagen",
+ "command.stageAllTracked": "Alle nachverfolgten Änderungen bereitstellen",
+ "command.stageAllUntracked": "Alle nicht nachverfolgten Änderungen bereitstellen",
+ "command.stageBlock": "Phasenblock",
+ "command.stageChange": "Änderung bereitstellen",
+ "command.stageSelectedRanges": "Gewählte Bereiche bereitstellen",
+ "command.stageSelection": "Phasenauswahl",
+ "command.stash": "Stash ausführen",
+ "command.stashApply": "Stash anwenden...",
+ "command.stashApplyEditor": "Stash anwenden",
+ "command.stashApplyLatest": "Neuesten Stash anwenden",
+ "command.stashDrop": "Stash löschen...",
+ "command.stashDropAll": "Alle Stashes löschen...",
+ "command.stashDropEditor": "Stash ablegen",
+ "command.stashIncludeUntracked": "Stash (einschließlich nicht verfolgt)",
+ "command.stashPop": "Pop für Stash ausführen...",
+ "command.stashPopEditor": "Pop-Stash",
+ "command.stashPopLatest": "Pop für letzten Stash ausführen",
+ "command.stashStaged": "Stash (gestaget)",
+ "command.stashView": "Stash anzeigen...",
+ "command.sync": "Synchronisierung",
+ "command.syncRebase": "Sync (Rebase)",
+ "command.timelineCompareWithSelected": "Mit Auswahl vergleichen",
+ "command.timelineCopyCommitId": "Commit-ID kopieren",
+ "command.timelineCopyCommitMessage": "Commitnachricht kopieren",
+ "command.timelineOpenDiff": "Offene Änderungen",
+ "command.timelineSelectForCompare": "Für Vergleich auswählen",
+ "command.undoCommit": "Letzten Commit rückgängig machen",
+ "command.unstage": "Bereitstellung der Änderungen aufheben",
+ "command.unstageAll": "Bereitstellung aller Änderungen aufheben",
+ "command.unstageChange": "Staging der Änderung aufheben",
+ "command.unstageSelectedRanges": "Bereitstellung gewählter Bereiche aufheben",
+ "command.viewChanges": "Offene Änderungen",
+ "command.viewCommit": "Commit öffnen",
+ "command.viewStagedChanges": "Gestagete Änderungen öffnen",
+ "command.viewUntrackedChanges": "Nicht nachverfolgte Änderungen öffnen",
+ "config.allowForcePush": "Steuert, ob erzwungene Pushes (mit oder ohne Lease) aktiviert sind.",
+ "config.allowNoVerifyCommit": "Hiermit wird gesteuert, ob Commits ohne Ausführung von pre-commit- und commit-msg-Hooks zulässig sind.",
+ "config.alwaysShowStagedChangesResourceGroup": "Ressourcengruppe für gestagete Änderungen immer anzeigen.",
+ "config.alwaysSignOff": "Legt das signoff-Flag für alle Commits fest.",
+ "config.autoRepositoryDetection": "Legt fest, in welchen Fällen Repositorys automatisch erkannt werden sollen.",
+ "config.autoRepositoryDetection.false": "Automatisches Durchsuchen von Repositorys deaktiveren.",
+ "config.autoRepositoryDetection.openEditors": "Nach übergeordneten Ordnern von geöffneten Dateien suchen.",
+ "config.autoRepositoryDetection.subFolders": "Nach Unterordnern des aktuell geöffneten Ordners suchen.",
+ "config.autoRepositoryDetection.true": "Sowohl nach Unterordnern des aktuell geöffneten Ordners als auch nach übergeordneten Ordnern von geöffneten Dateien suchen.",
+ "config.autoStash": "Führen Sie für Änderungen einen Stash aus, bevor Sie sie pullen, und stellen Sie sie nach einem erfolgreichen Pull wieder her.",
+ "config.autofetch": "Bei Festlegung auf TRUE werden Commits automatisch aus dem Standardremoteverzeichnis des aktuellen Git-Repositorys abgerufen. Bei Festlegung auf \"Alle\" erfolgt der Abruf aus allen Remoteverzeichnissen.",
+ "config.autofetchPeriod": "Dauer in Sekunden zwischen jeder automatischen Git-Abrufung, wenn \"#git.autofetch#\" aktiviert ist.",
+ "config.autorefresh": "Gibt an, ob die automatische Aktualisierung aktiviert ist.",
+ "config.blameEditorDecoration.enabled": "Steuert, ob Blame-Informationen mithilfe von Editordekorationen im Editor angezeigt werden.",
+ "config.blameEditorDecoration.template": "Vorlage für die Editor-Dekoration der Blame-Informationen. Unterstützte Variablen:\r\n\r\n* ‚hash‘: Hash committen\r\n\r\n* ‚hashShort‘: Erste N Zeichen des Commithash gemäß ‚#git.commitShortHashLength#‘\r\n\r\n* ‚subject‘: Erste Zeile der Commitnachricht\r\n\r\n* ‚authorName‘: Name des Autors\r\n\r\n* ‚authorEmail‘: E-Mail-Adresse des Autors\r\n\r\n* ‚authorDate‘: Erstellungsdatum\r\n\r\n* ‚authorDateAgo‘: Zeitunterschied zwischen jetzt und Erstellungsdatum\r\n\r\n",
+ "config.blameStatusBarItem.enabled": "Steuert, ob Blame-Informationen in der Statusleiste angezeigt werden.",
+ "config.blameStatusBarItem.template": "Vorlage für das Statusleistenelement für Blame-Informationen. Unterstützte Variablen:\r\n\r\n* ‚hash‘: Hash committen\r\n\r\n* ‚hashShort‘: Erste N Zeichen des Commithash gemäß ‚#git.commitShortHashLength#‘\r\n\r\n* ‚subject‘: Erste Zeile der Commitnachricht\r\n\r\n* ‚authorName‘: Name des Autors\r\n\r\n* ‚authorEmail‘: E-Mail-Adresse des Autors\r\n\r\n* ‚authorDate‘: Erstellungsdatum\r\n\r\n* ‚authorDateAgo‘: Zeitunterschied zwischen jetzt und Erstellungsdatum\r\n\r\n",
+ "config.branchPrefix": "Präfix, das beim Erstellen einer neuen Verzweigung verwendet wird.",
+ "config.branchProtection": "Liste der geschützten Verzweigungen. Standardmäßig wird eine Eingabeaufforderung angezeigt, bevor ein Commit für Änderungen für eine geschützte Verzweigung ausgeführt wird. Die Eingabeaufforderung kann mithilfe der Einstellung „#git.branchProtectionPrompt#“ gesteuert werden.",
+ "config.branchProtectionPrompt": "Steuert, ob eine Eingabeaufforderung angezeigt wird, bevor ein Commit für Änderungen an einen geschützten Branch ausgeführt wird.",
+ "config.branchProtectionPrompt.alwaysCommit": "Der Commit für Änderungen muss immer für die geschützte Verzweigung ausgeführt werden.",
+ "config.branchProtectionPrompt.alwaysCommitToNewBranch": "Der Commit für Änderungen muss immer für eine neue Verzweigung ausgeführt werden.",
+ "config.branchProtectionPrompt.alwaysPrompt": "Immer fragen, bevor für Änderungen ein Commit für eine geschützte Verzweigung ausgeführt wird.",
+ "config.branchRandomNameDictionary": "Liste der Wörterbücher, die für den zufällig generierten Zweignamen verwendet werden. Jeder Wert stellt das Wörterbuch dar, das zum Generieren des Segments des Zweignamens verwendet wird. Unterstützte Wörterbücher: „Adjektive“, „Tiere“, „Farben“ und „Zahlen“.",
+ "config.branchRandomNameDictionary.adjectives": "Ein zufälliges Adjektiv",
+ "config.branchRandomNameDictionary.animals": "Ein zufälliger Tiername",
+ "config.branchRandomNameDictionary.colors": "Ein zufälliger Farbname",
+ "config.branchRandomNameDictionary.numbers": "Eine Zufallszahl zwischen 100 und 999",
+ "config.branchRandomNameEnable": "Steuert, ob beim Erstellen einer neuen Verzweigung ein zufälliger Name generiert wird.",
+ "config.branchSortOrder": "Steuert die Sortierreihenfolge für Branches.",
+ "config.branchValidationRegex": "Regulärer Ausdruck zum Validieren neuer Branch-Namen.",
+ "config.branchWhitespaceChar": "Das Zeichen, das Leerzeichen in neuen Verzweigungsnamen ersetzen und Segmente eines zufällig generierten Verzweigungsnamens trennen soll.",
+ "config.checkoutType": "Legt fest, welche Art von Git-Referenzen bei Ausführung von \"Check-Out nach\" aufgelistet wird.",
+ "config.checkoutType.local": "Lokale Branches",
+ "config.checkoutType.remote": "Remotebranches",
+ "config.checkoutType.tags": "Tags",
+ "config.closeDiffOnOperation": "Steuert, ob der Diff-Editor automatisch geschlossen werden soll, wenn Änderungen gestasht, zugesagt, verworfen, bereitgestellt oder nicht bereitgestellt werden.",
+ "config.commandsToLog": "Liste der Git-Befehle (z. B. Commit, Push), deren „stdout“ in der [Git-Ausgabe](command:git.showOutput) protokolliert werden würde. Wenn für den Git-Befehl ein clientseitiger Hook konfiguriert ist, wird „stdout“ des clientseitigen Hooks auch in der [Git-Ausgabe](command:git.showOutput) protokolliert.",
+ "config.commitShortHashLength": "Steuert die Länge des kurzen Commithashs.",
+ "config.confirmEmptyCommits": "Bestätigen Sie die Erstellung leerer Commits für den Befehl \"Git: Commit Empty\" immer.",
+ "config.confirmForcePush": "Steuert, ob der Benutzer vor einem erzwungenen Push zur Bestätigung aufgefordert wird.",
+ "config.confirmNoVerifyCommit": "Steuert, ob vor dem Committen eine Bestätigung ohne Überprüfung angefragt werden soll.",
+ "config.confirmSync": "Bestätigen Sie den Vorgang vor dem Synchronisieren von Git-Repositorys.",
+ "config.countBadge": "Steuert den Git-Anzahlbadge.",
+ "config.countBadge.all": "Alle Änderungen zählen.",
+ "config.countBadge.off": "Zähler deaktivieren.",
+ "config.countBadge.tracked": "Nur nachverfolgte Änderungen zählen.",
+ "config.decorations.enabled": "Legt fest, ob Git Farben und Badges für die Explorer-Ansicht und die Ansicht \"Geöffnete Editoren\" bereitstellt.",
+ "config.defaultBranchName": "Der Name des Standardbranchs (z. B. main, trunk, development) beim Initialisieren eines neuen Git-Repositorys. Bei Festlegung auf \"empty\" wird der in Git konfigurierte Standardbranchname verwendet. **Hinweis:** Erfordert Git-Version 2.28.0 oder höher.",
+ "config.defaultCloneDirectory": "Der Standardspeicherort zum Klonen eines Git-Repositorys.",
+ "config.detectSubmodules": "Steuert, ob Git-Submodule automatisch erkannt werden.",
+ "config.detectSubmodulesLimit": "Steuert den Grenzwert für erkannte Git-Submodule.",
+ "config.detectWorktrees": "Steuert, ob Git-Worktrees automatisch erkannt werden.",
+ "config.detectWorktreesLimit": "Steuert den Grenzwert der erkannten Git-Worktrees.",
+ "config.diagnosticsCommitHook.enabled": "Steuert, ob vor dem Commit auf nicht aufgelöste Diagnosen überprüft werden soll.",
+ "config.diagnosticsCommitHook.sources": "Steuert die Liste der Quellen (**Element**) und den Mindestschweregrad (**Wert**), die vor dem Commit berücksichtigt werden sollen. **Hinweis:** Um Diagnosen aus einer bestimmten Quelle zu ignorieren, fügen Sie die Quelle zur Liste hinzu, und setzen Sie den Mindestschweregrad auf \"„kein“.",
+ "config.discardAllScope": "Legt fest, welche Änderungen vom Befehl \"Alle Änderungen verwerfen\" verworfen werden. \"all\" verwirft alle Änderungen. \"tracked\" verwirft nur verfolgte Dateien. \"prompt\" zeigt immer eine Eingabeaufforderung an, wenn die Aktion ausgeführt wird.",
+ "config.discardUntrackedChangesToTrash": "Steuert, ob das Verwerfen nicht nachverfolgter Änderungen die Dateien in den Papierkorb (Windows), Papierkorb (macOS, Linux) verschiebt, anstatt sie dauerhaft zu löschen. **Hinweis:** Diese Einstellung hat keine Auswirkungen, wenn eine Verbindung mit einem Remotecomputer besteht oder bei Ausführung in Linux als Snap-Paket.",
+ "config.enableCommitSigning": "Aktiviert die Commitsignatur mit GPG, X.509 oder SSH.",
+ "config.enableSmartCommit": "Alle Änderungen committen, wenn keine gestageten Änderungen vorhanden sind.",
+ "config.enableStatusBarSync": "Steuert, ob der Git Sync-Befehl in der Statusleiste angezeigt wird.",
+ "config.enabled": "Legt fest, ob Git aktiviert ist.",
+ "config.experimental.installGuide": "Experimentelle Verbesserungen für den Git-Setupflow.",
+ "config.fetchOnPull": "Wenn aktiviert, beim Pullen alle Branches abrufen. Andernfalls nur den aktuellen abrufen.",
+ "config.followTagsWhenSync": "Übertragen Sie alle annotierten Tags per Push, wenn der Synchronisierungsbefehl ausgeführt wird.",
+ "config.ignoreLegacyWarning": "Ignoriert die Legacy-Git-Warnung.",
+ "config.ignoreLimitWarning": "Ignoriert die Warnung bei zu hoher Anzahl von Änderungen in einem Repository.",
+ "config.ignoreMissingGitWarning": "Ignoriert die Warnung, wenn Git nicht vorhanden ist.",
+ "config.ignoreRebaseWarning": "Ignoriert die Warnung beim Pullvorgang, wenn für den Branch möglicherweise ein Rebase ausgeführt wurde.",
+ "config.ignoreSubmodules": "Ignoriert Änderungen an Untermodulen in der Dateistruktur.",
+ "config.ignoreWindowsGit27Warning": "Ignoriert die Warnung, wenn Git 2.25–2.26 unter Windows installiert ist.",
+ "config.ignoredRepositories": "Liste der zu ignorierenden Git-Repositorys.",
+ "config.inputValidation": "Steuert, ob eine Diagnose zur Validierung der Eingaben von Commitnachrichten angezeigt werden soll.",
+ "config.inputValidationLength": "Steuert, ab welcher Länge für Commit-Nachrichten eine Warnung eingeblendet werden soll.",
+ "config.inputValidationSubjectLength": "Steuert den Schwellenwert für die Länge des Betreffs einer Commitnachricht, ab dem eine Warnung angezeigt wird. Heben Sie die Festlegung auf, um den Wert von \"#git.inputValidationLength#\" zu erben.",
+ "config.mergeEditor": "Den Zusammenführungseditor für Dateien öffnen, die derzeit in Konflikt stehen.",
+ "config.openAfterClone": "Steuert, ob ein Repository nach dem Klonen automatisch geöffnet wird.",
+ "config.openAfterClone.always": "Öffnet Elemente immer im aktuellen Fenster.",
+ "config.openAfterClone.alwaysNewWindow": "Öffnet Elemente immer in einem neuen Fenster.",
+ "config.openAfterClone.prompt": "Fordert immer eine Aktion an.",
+ "config.openAfterClone.whenNoFolderOpen": "Öffnet Elemente nur dann im aktuellen Fenster, wenn kein Ordner geöffnet ist.",
+ "config.openDiffOnClick": "Steuert, ob der Diff-Editor geöffnet werden soll, wenn Sie auf eine Änderung klicken. Ansonsten wird der normale Editor geöffnet.",
+ "config.openRepositoryInParentFolders": "Steuern Sie, ob ein Repository in übergeordneten Ordnern von Arbeitsbereichen oder geöffneten Dateien geöffnet werden soll.",
+ "config.openRepositoryInParentFolders.always": "Öffnen Sie immer ein Repository in übergeordneten Ordnern von Arbeitsbereichen, oder öffnen Sie Dateien.",
+ "config.openRepositoryInParentFolders.never": "Öffnen Sie niemals ein Repository in übergeordneten Ordnern von Arbeitsbereichen, oder öffnen Sie Dateien.",
+ "config.openRepositoryInParentFolders.prompt": "Fordern Sie vor dem Öffnen eines Repositorys die übergeordneten Ordner von Arbeitsbereichen an, oder öffnen Sie Dateien.",
+ "config.optimisticUpdate": "Steuert, ob der Status der Quellcodeverwaltungsansicht nach dem Ausführen von Git-Befehlen optimistisch aktualisiert werden soll.",
+ "config.path": "Der Pfad und der Dateiname der ausführbaren Git-Datei, beispielsweise \"C:\\Programme\\Git\\bin\\git.exe\" (Windows). Hierbei kann es sich auch um Array mit Zeichenfolgenwerten handeln, die mehrere Pfade für die Suche enthalten.",
+ "config.postCommitCommand": "Git-Befehl nach erfolgreichem Commit ausführen.",
+ "config.postCommitCommand.none": "Führen Sie keinen Befehl nach einem Commit aus.",
+ "config.postCommitCommand.push": "\"Git push\" nach einem erfolgreichen Commit ausführen.",
+ "config.postCommitCommand.sync": "\"Git pull\" und \"git push\" nach einem erfolgreichen Commit ausführen.",
+ "config.promptToSaveFilesBeforeCommit": "Legt fest, ob Git vor dem einchecken nach nicht gespeicherten Dateien suchen soll.",
+ "config.promptToSaveFilesBeforeCommit.always": "Hiermit prüfen Sie auf nicht gespeicherte Dateien.",
+ "config.promptToSaveFilesBeforeCommit.never": "Deaktiviert diese Prüfung.",
+ "config.promptToSaveFilesBeforeCommit.staged": "Hiermit prüfen Sie nur auf nicht gespeicherte gestagete Dateien.",
+ "config.promptToSaveFilesBeforeStash": "Legt fest, ob Git vor dem Stashen von Änderungen nach nicht gespeicherten Dateien suchen soll.",
+ "config.promptToSaveFilesBeforeStash.always": "Hiermit prüfen Sie auf nicht gespeicherte Dateien.",
+ "config.promptToSaveFilesBeforeStash.never": "Hiermit wird diese Prüfung deaktiviert.",
+ "config.promptToSaveFilesBeforeStash.staged": "Hiermit prüfen Sie nur auf nicht gespeicherte gestagete Dateien.",
+ "config.pruneOnFetch": "Löscht Elemente beim Abrufen.",
+ "config.publishBeforeContinueOn": "Steuert, ob der unveröffentlichte Git-Status veröffentlicht werden soll, wenn \"Weiterarbeiten an\" aus einem Git-Repository verwendet wird.",
+ "config.publishBeforeContinueOn.always": "Unveröffentlichten Git-Status immer veröffentlichen, wenn \"Weiterarbeiten an\" aus einem Git-Repository verwendet wird",
+ "config.publishBeforeContinueOn.never": "Unveröffentlichten Git-Status niemals veröffentlichen, wenn \"Weiterarbeiten an\" aus einem Git-Repository verwendet wird",
+ "config.publishBeforeContinueOn.prompt": "Bei Verwendung von \"Weiterarbeiten an\" aus einem Git-Repository vor dem Veröffentlichen des unveröffentlichten Git-Status nachfragen",
+ "config.pullBeforeCheckout": "Steuert, ob ein Branch ohne ausgehende Commits vor dem Auschecken schnell weitergeleitet wird.",
+ "config.pullTags": "Hiermit werden alle Tags beim Pullvorgang abgerufen.",
+ "config.rebaseWhenSync": "Erzwingt, dass Git „rebase“ verwendet, wenn der Synchronisierungsbefehl ausgeführt wird.",
+ "config.rememberPostCommitCommand": "Den letzten Git-Befehl speichern, der nach einem Commit ausgeführt wurde.",
+ "config.replaceTagsWhenPull": "Bei einem Konflikt beim Ausführen des Pull-Befehls werden die lokalen Tags automatisch durch die Remotetags ersetzt.",
+ "config.repositoryScanIgnoredFolders": "Liste der Ordner, die beim Scannen nach Git-Repositorys ignoriert werden, wenn „#git.autoRepositoryDetection#“ auf „TRUE“ oder „subFolders“ festgelegt ist.",
+ "config.repositoryScanMaxDepth": "Steuert die Tiefe, die beim Überprüfen von Arbeitsbereichsordnern für Git-Repositorys verwendet wird, wenn „#git.autoRepositoryDetection#“ auf „TRUE“ oder „subFolders“ festgelegt ist. Kann auf „-1“ festgelegt werden, wenn kein Limit gelten soll.",
+ "config.requireGitUserConfig": "Steuert, ob eine explizite Git-Benutzerkonfiguration erforderlich ist oder ob Git Annahmen treffen soll, falls die Konfiguration fehlt.",
+ "config.scanRepositories": "Liste mit Pfaden, in denen nach Git-Repositorys gesucht wird.",
+ "config.showActionButton": "Steuert, ob eine Aktionsschaltfläche in der Quellensteuerungsansicht angezeigt wird.",
+ "config.showActionButton.commit": "Zeigen Sie eine Aktionsschaltfläche zum Übertragen von Änderungen an, wenn der lokale Zweig geänderte Dateien enthält, die zum Übertragen bereit sind.",
+ "config.showActionButton.publish": "Zeigen Sie eine Aktionsschaltfläche an, um den lokalen Branch zu veröffentlichen, wenn er keinen verfolgenden Remote Branch hat.",
+ "config.showActionButton.sync": "Zeigen Sie eine Aktionsschaltfläche zum Synchronisieren von Änderungen an, wenn der lokale Zweig entweder vor oder hinter dem entfernten Zweig liegt.",
+ "config.showCommitInput": "Steuert, ob die Commiteingabe im Panel für die Git-Quellcodeverwaltung angezeigt wird.",
+ "config.showInlineOpenFileAction": "Steuert, ob eine Inlineaktion zum Öffnen der Datei in der Ansicht \"Git-Änderungen\" angezeigt wird.",
+ "config.showProgress": "Steuert, ob für Git-Aktionen der Fortschritt zu sehen ist.",
+ "config.showPushSuccessNotification": "Legt fest, ob bei einem erfolgreichen Push eine Benachrichtigung angezeigt werden soll.",
+ "config.showReferenceDetails": "Steuert, ob die Details des letzten Commits für Git-Referenzen in den Auswahlfeldern für Check-Out, Branch und Tag angezeigt werden.",
+ "config.similarityThreshold": "Steuert den Schwellenwert des Ähnlichkeitsindexes (die Anzahl der Hinzufügungen/Löschungen im Vergleich zur Dateigröße), ab dem Änderungen in einem Paar hinzugefügter/gelöschter Dateien als Umbenennung betrachtet werden. **Hinweis:** Erfordert Git-Version 2.18.0 oder höher.",
+ "config.smartCommitChanges": "Hiermit steuern Sie, welche Änderungen beim intelligenten Commit automatisch gestaget werden.",
+ "config.smartCommitChanges.all": "Hiermit werden alle Änderungen automatisch gestaget.",
+ "config.smartCommitChanges.tracked": "Es wurden nur nachverfolgte Änderungen automatisch gestaget.",
+ "config.statusLimit": "Steuert, wie die Anzahl der Änderungen begrenzt wird, die über den Git-Statusbefehl analysiert werden können. Kann auf 0 (Null) festgelegt werden, um keinen Grenzwert zu setzen.",
+ "config.suggestSmartCommit": "Schlägt das Aktivieren intelligenter Commits vor. Dabei werden alle Änderungen committet, wenn keine gestageten Änderungen vorliegen.",
+ "config.supportCancellation": "Steuert, ob bei Ausführung der Synchronisierungsaktion eine Benachrichtigung angezeigt wird, sodass der Benutzer den Vorgang abbrechen kann.",
+ "config.terminalAuthentication": "Steuert, ob VS Code als Authentifizierungshandler für Git-Prozesse aktiviert werden soll, die im integrierten Terminal erzeugt werden. Hinweis: Terminals müssen neu gestartet werden, damit eine Änderung dieser Einstellung wirksam wird.",
+ "config.terminalGitEditor": "Steuert, ob VS Code als Git-Editor für Git-Prozesse aktiviert werden soll, die im integrierten Terminal erzeugt werden. Hinweis: Terminals müssen neu gestartet werden, um eine Änderung in dieser Einstellung zu übernehmen.",
+ "config.timeline.date": "Steuert, welches Datum für Elemente in der Zeitachsenansicht verwendet werden soll.",
+ "config.timeline.date.authored": "Erstellungsdatum verwenden",
+ "config.timeline.date.committed": "Commitdatum verwenden",
+ "config.timeline.showAuthor": "Steuert, ob der Commitautor in der Zeitachsenansicht angezeigt wird.",
+ "config.timeline.showUncommitted": "Steuert, ob der Commitautor in der Zeitachsenansicht angezeigt wird.",
+ "config.untrackedChanges": "Legt fest, wie sich nicht nachverfolgte Änderungen verhalten.",
+ "config.untrackedChanges.hidden": "Nicht nachverfolgte Änderungen werden ausgeblendet und von mehreren Aktionen ausgeschlossen.",
+ "config.untrackedChanges.mixed": "Alle Änderungen (nachverfolgte und nicht nachverfolgte) werden zusammen angezeigt und verhalten sich identisch.",
+ "config.untrackedChanges.separate": "Nicht nachverfolgte Änderungen werden separat in der Quellcodeverwaltung angezeigt. Sie sind zudem von mehreren Aktionen ausgeschlossen.",
+ "config.useCommitInputAsStashMessage": "Steuert, ob die Nachricht aus dem Commiteingabefeld als Standardstashnachricht verwendet wird.",
+ "config.useEditorAsCommitInput": "Steuert, ob ein Volltext-Editor zum Erstellen von Commitnachrichten verwendet wird, wenn im Eingabefeld für den Commit keine Nachricht bereitgestellt wird.",
+ "config.useForcePushIfIncludes": "Steuert, ob erzwungene Pushes die sicherere Variante mit force-if-includes verwenden. Hinweis: Für diese Einstellung muss die Einstellung \"#git.useForcePushWithLease#\" aktiviert sein. Zudem ist Git-Version 2.30.0 oder höher erforderlich.",
+ "config.useForcePushWithLease": "Steuert, ob erzwungene Pushes die sicherere Variante mit Leases verwenden.",
+ "config.useIntegratedAskPass": "Steuert, ob GIT_ASKPASS überschrieben werden soll, um die integrierte Version zu verwenden.",
+ "config.verboseCommit": "Aktivieren Sie die ausführliche Ausgabe, wenn \"#git.useEditorAsCommitInput#\" aktiviert ist.",
+ "description": "Git SCM-Integration",
+ "displayName": "Git",
+ "submenu.branch": "Branch",
+ "submenu.changes": "Änderungen",
+ "submenu.commit": "Commit",
+ "submenu.commit.amend": "Korrigieren",
+ "submenu.commit.signoff": "Abmelden",
+ "submenu.explorer": "Git",
+ "submenu.pullpush": "Pull, Push",
+ "submenu.remotes": "Remote",
+ "submenu.stash": "Stash ausführen",
+ "submenu.tags": "Tags",
+ "submenu.worktrees": "Worktrees",
+ "view.workbench.cloneRepository": "Sie können ein Repository lokal klonen.\r\n[Repository klonen](command:git.clone 'Clone a repository once the git extension has activated')",
+ "view.workbench.learnMore": "Weitere Informationen zur Verwendung von Git und der Quellcodeverwaltung in VS Code [finden Sie in unserer Dokumentation](https://aka.ms/vscode-scm).",
+ "view.workbench.scm.closedRepositories": "Es wurden Git-Repositorys gefunden, die zuvor geschlossen wurden.\r\n[Geschlossene Repositorys erneut öffnen](command:git.reopenClosedRepositories)\r\nWeitere Informationen zur Verwendung von Git und der Quellcodeverwaltung in VS Code [finden Sie in unserer Dokumentation](https://aka.ms/vscode-scm).",
+ "view.workbench.scm.closedRepository": "Es wurde ein Git-Repository gefunden, das zuvor geschlossen wurde.\r\n[Geschlossenes Repository erneut öffnen](command:git.reopenClosedRepositories)\r\nWeitere Informationen zur Verwendung von Git und der Quellcodeverwaltung in VS Code [finden Sie in unserer Dokumentation](https://aka.ms/vscode-scm).",
+ "view.workbench.scm.disabled": "Wenn Sie Git-Features verwenden möchten, aktivieren Sie Git in Ihren [Einstellungen](command:workbench.action.openSettings?%5B%22git.enabled%22%5D).\r\nWeitere Informationen zur Verwendung von Git und der Quellcodeverwaltung in VS Code [finden Sie in unserer Dokumentation](https://aka.ms/vscode-scm).",
+ "view.workbench.scm.empty": "Um Git-Features zu verwenden, können Sie einen Ordner mit einem Git-Repository öffnen oder ein Repository aus einer URL klonen.\r\n[Ordner öffnen](command:vscode.openFolder)\r\n[Repository klonen](command:git.cloneRecursive)\r\nWeitere Informationen zur Verwendung von Git und der Quellcodeverwaltung in VS Code [finden Sie in unserer Dokumentation](https://aka.ms/vscode-scm).",
+ "view.workbench.scm.emptyWorkspace": "Der zurzeit geöffnete Arbeitsbereich enthält keine Ordner mit Git-Repositorys.\r\n[Ordner zum Arbeitsbereich hinzufügen](command:workbench.action.addRootFolder)\r\nWeitere Informationen zur Verwendung von Git und der Quellcodeverwaltung in VS Code [finden Sie in unserer Dokumentation](https://aka.ms/vscode-scm).",
+ "view.workbench.scm.folder": "Der zurzeit geöffnete Ordner enthält kein Git-Repository. Sie können ein Repository initialisieren, wodurch die Git-Features zur Quellcodeverwaltung aktiviert werden.\r\n[Repository initialisieren](command:git.init?%5Btrue%5D)\r\nWeitere Informationen zur Verwendung von Git und der Quellcodeverwaltung in VS Code [finden Sie in unserer Dokumentation](https://aka.ms/vscode-scm).",
+ "view.workbench.scm.missing": "Installieren Sie Git, ein beliebtes Quellcodeverwaltungssystem, um Codeänderungen nachzuverfolgen und mit anderen zusammenzuarbeiten. Weitere Informationen finden Sie in unseren [Git-Leitfäden](https://aka.ms/vscode-scm).",
+ "view.workbench.scm.missing.linux": "Die Quellcodeverwaltung hängt davon ab, ob Git installiert wird.\r\n[Git für Linux herunterladen](https://git-scm.com/download/linux)\r\nNach der Installation bitte [neu laden](command:workbench.action.reloadWindow) (oder [troubleshoot](command:git.showOutput)). Zusätzliche Quellcodeanbieter können [aus dem Marketplace](command:workbench.extensions.search?%22%40category%3A%5C%22scm%20providers%5C%22%22) installiert werden.",
+ "view.workbench.scm.missing.mac": "[Git für macOS herunterladen](https://git-scm.com/download/mac)\r\nNach der Installation bitte [neu laden](command:workbench.action.reloadWindow) (oder [Fehlerbehebung](command:git.showOutput)). Zusätzliche Quellcodeverwaltungsanbieter können [aus dem Marketplace](command:workbench.extensions.search?%22%40category%3A%5C%22scm%20providers%5C%22%22) installiert werden.",
+ "view.workbench.scm.missing.windows": "[Git für Windows herunterladen](https://git-scm.com/download/win)\r\nNach der Installation bitte [neu laden](command:workbench.action.reloadWindow) (oder [Fehlerbehebung](command:git.showOutput)). Zusätzliche Quellcodeverwaltungsanbieter können [aus dem Marketplace](command:workbench.extensions.search?%22%40category%3A%5C%22scm%20providers%5C%22%22) installiert werden.",
+ "view.workbench.scm.repositoriesInParentFolders": "Git-Repositorys wurden in den übergeordneten Ordnern des Arbeitsbereichs oder der geöffneten Datei(en) gefunden.\r\n[Repository öffnen](command:git.openRepositoriesInParentFolders)\r\nVerwenden Sie die Einstellung [git.openRepositoryInParentFolders](command:workbench.action.openSettings?%5B%22git.openRepositoryInParentFolders%22%5D), um zu steuern, ob Git-Repositorys in übergeordneten Ordnern von Arbeitsbereichen oder offenen Dateien geöffnet werden. Weitere Informationen finden Sie [in unserer Dokumentation](https://aka.ms/vscode-git-repository-in-parent-folders).",
+ "view.workbench.scm.repositoryInParentFolders": "Ein Git-Repository wurde in den übergeordneten Ordnern des Arbeitsbereichs oder der geöffneten Datei(en) gefunden.\r\n[Repository öffnen](command:git.openRepositoriesInParentFolders)\r\nVerwenden Sie die Einstellung [git.openRepositoryInParentFolders](command:workbench.action.openSettings?%5B%22git.openRepositoryInParentFolders%22%5D), um zu steuern, ob Git-Repositorys in übergeordneten Ordnern von Arbeitsbereichen oder offenen Dateien geöffnet werden. Weitere Informationen finden Sie [in unserer Dokumentation](https://aka.ms/vscode-git-repository-in-parent-folders).",
+ "view.workbench.scm.scanFolderForRepositories": "Der Ordner wird auf Git-Repositorys überprüft...",
+ "view.workbench.scm.scanWorkspaceForRepositories": "Arbeitsbereich wird auf Git-Repositorys überprüft...",
+ "view.workbench.scm.unsafeRepositories": "Die erkannten Git-Repositorys sind potenziell unsicher, weil sich die Ordner im Besitz einer anderen Person als dem/der aktuellen Benutzer*in befinden.\r\n[Unsichere Repositorys verwalten](command:git.manageUnsafeRepositories)\r\nWeitere Informationen zu unsicheren Repositorys finden Sie in [unserer Dokumentation](https://aka.ms/vscode-git-unsafe-repository).",
+ "view.workbench.scm.unsafeRepository": "Das erkannte Git-Repository ist potenziell unsicher, weil sich der Ordner im Besitz einer anderen Person als dem/der aktuellen Benutzer*in befindet.\r\n[Unsichere Repositorys verwalten](command:git.manageUnsafeRepositories)\r\nWeitere Informationen zu unsicheren Repositorys finden Sie in [unserer Dokumentation](https://aka.ms/vscode-git-unsafe-repository).",
+ "view.workbench.scm.workspace": "Der zurzeit geöffnete Arbeitsbereich enthält keine Ordner mit Git-Repositorys. Sie können ein Repository für einen Ordner initialisieren, wodurch die Git-Features zur Quellcodeverwaltung aktiviert werden.\r\n[Repository initialisieren](command:git.init)\r\nWeitere Informationen zur Verwendung von Git und der Quellcodeverwaltung in VS Code [finden Sie in unserer Dokumentation](https://aka.ms/vscode-scm)."
+ }
+ }
+}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-de/translations/extensions/vscode.github-authentication.i18n.json b/i18n/vscode-language-pack-de/translations/extensions/vscode.github-authentication.i18n.json
new file mode 100644
index 0000000000..50ff1363f2
--- /dev/null
+++ b/i18n/vscode-language-pack-de/translations/extensions/vscode.github-authentication.i18n.json
@@ -0,0 +1,47 @@
+{
+ "": [
+ "--------------------------------------------------------------------------------------------",
+ "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."
+ ],
+ "version": "1.0.0",
+ "contents": {
+ "bundle": {
+ "A reload is required for the fetch setting change to take effect.": "Ein erneutes Laden ist erforderlich, damit die Änderung der Abrufeinstellung wirksam wird.",
+ "Apple": "Apple",
+ "Continue to GitHub": "Weiter zu GitHub",
+ "Continue to GitHub to create a Personal Access Token (PAT)": "Weiter zu GitHub, um ein persönliches Zugriffstoken (Personal Access Token, PAT) zu erstellen.",
+ "Copy & Continue to {0}": "Kopieren und Fortfahren auf {0}",
+ "GitHub": "GitHub",
+ "GitHub Authentication - Reload required": "GitHub-Authentifizierung – Erneutes Laden ist erforderlich.",
+ "GitHub Enterprise Server URI is not a valid URI: {0}": "GitHub Enterprise Server-URI ist kein gültiger URI: {0}",
+ "Google": "Google",
+ "Having trouble logging in? Would you like to try a different way? ({0})": "Haben Sie Probleme bei der Anmeldung? Möchten Sie eine andere Methode ausprobieren? ({0})",
+ "No": "Nein",
+ "Open [{0}]({0}) in a new tab and paste your one-time code: {1}/The [{0}]({0}) will be a url and the {1} will be a code, e.g. 123-456{Locked=\"[{0}]({0})\"}": "Öffnen Sie [{0}]({0}) auf einer neuen Registerkarte, und fügen Sie Ihren einmaligen Code ein: {1}",
+ "Reload Window": "Fenster erneut laden",
+ "Sign in failed: {0}": "Fehler bei der Anmeldung: {0}",
+ "Sign out failed: {0}": "Fehler bei der Abmeldung: {0}",
+ "Signing in to {0}.../The {0} will be a url, e.g. github.com": "Anmelden bei {0}...",
+ "To finish authenticating, navigate to GitHub and paste in the above one-time code.": "Um die Authentifizierung abzuschließen, navigieren Sie zu GitHub, und fügen Sie den obigen Einmalcode ein.",
+ "To finish authenticating, navigate to GitHub to create a PAT then paste the PAT into the input box.": "Um die Authentifizierung abzuschließen, navigieren Sie zu GitHub, um eine PAT zu erstellen, und fügen Sie dann die PAT in das Eingabefeld ein.",
+ "Yes": "Ja",
+ "You have not yet finished authorizing this extension to use GitHub. Would you like to try a different way? ({0})": "Sie haben die Autorisierung dieser Erweiterung für die Verwendung von GitHub noch nicht abgeschlossen. Möchten Sie eine andere Methode ausprobieren? ({0})",
+ "Your Code: {0}/The {0} will be a code, e.g. 123-456": "Ihr Code: {0}",
+ "device code": "Gerätecode",
+ "local server": "lokaler Server",
+ "personal access token": "Persönliches Zugriffstoken",
+ "url handler": "URL-Handler"
+ },
+ "package": {
+ "config.github-authentication.preferDeviceCodeFlow.description": "Wenn WAHR, wird der Gerätecodeflow für die Authentifizierung gegenüber anderen verfügbaren Flows bevorzugt. Dies ist nützlich in Umgebungen wie WSL, in denen lokale Server- oder URL-Handler-Flows möglicherweise nicht wie erwartet funktionieren.",
+ "config.github-authentication.useElectronFetch.description": "Bei TRUE wird die integrierte Abruffunktion von Electron für HTTP-Anforderungen verwendet. Bei FALSE wird die globale Abruffunktion von Node.js verwendet. Diese Einstellung gilt nur, wenn Sie in der Electron-Umgebung arbeiten. **Hinweis:** Ein Neustart ist erforderlich, damit diese Einstellung wirksam wird.",
+ "config.github-enterprise.title": "GHE.com und GitHub Enterprise Serverauthentifizierung",
+ "config.github-enterprise.uri.description": "Der URI für ihre GHE.com- oder GitHub Enterprise Server-instance.\r\n\r\nBeispiele:\r\n* GHE.com: 'https://octocat.ghe.com`\r\n* GitHub Enterprise Server: 'https://github.octocat.com`\r\n\r\n> **Hinweis:** Dies sollte _nicht_ auf einen GitHub.com-URI festgelegt werden. Wenn Ihr Konto auf GitHub.com vorhanden ist oder ein GitHub Enterprise verwalteter Benutzer ist, benötigen Sie keine zusätzliche Konfiguration und können sich einfach bei GitHub anmelden.",
+ "description": "GitHub-Authentifizierungsanbieter",
+ "displayName": "GitHub-Authentifizierung"
+ }
+ }
+}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-de/translations/extensions/vscode.github.i18n.json b/i18n/vscode-language-pack-de/translations/extensions/vscode.github.i18n.json
new file mode 100644
index 0000000000..d809de770d
--- /dev/null
+++ b/i18n/vscode-language-pack-de/translations/extensions/vscode.github.i18n.json
@@ -0,0 +1,65 @@
+{
+ "": [
+ "--------------------------------------------------------------------------------------------",
+ "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."
+ ],
+ "version": "1.0.0",
+ "contents": {
+ "bundle": {
+ "Checkout on vscode.dev": "Auf vscode.dev auschecken",
+ "Commit Changes": "Commit-Änderungen",
+ "Copy Anyway": "Trotzdem kopieren",
+ "Copy vscode.dev Link": "Vscode.dev-Link kopieren",
+ "Create Fork": "Verzweigung erstellen",
+ "Create GitHub fork": "GitHub-Verzweigung erstellen",
+ "Create PR": "PR erstellen",
+ "Creating GitHub Pull Request...": "GitHub-Pull Request wird erstellt...",
+ "Creating first commit": "Erster Commit wird erstellt.",
+ "Forking \"{0}/{1}\"...": "Verzweigung für \"{0}/{1}\" wird erstellt...",
+ "Learn More": "Weitere Informationen",
+ "Log level: {0}": "Protokollebene: {0}",
+ "No": "Nein",
+ "No GitHub remotes found that contain this commit.": "Es wurden keine GitHub-Remotes gefunden, die diesen Commit enthalten.",
+ "No template": "Keine Vorlage",
+ "Open PR": "PR öffnen",
+ "Open on GitHub": "In GitHub öffnen",
+ "Pick a folder to publish to GitHub": "Wählen Sie einen Ordner für die Veröffentlichung in GitHub aus.",
+ "Publish Branch & Copy Link": "Verzweigung veröffentlichen und Link kopieren",
+ "Publishing to a private GitHub repository": "Veröffentlichung in privatem GitHub-Repository",
+ "Publishing to a public GitHub repository": "Veröffentlichung in öffentlichem GitHub-Repository",
+ "Pull Changes & Copy Link": "Änderungen pullen und Link kopieren",
+ "Push Commits & Copy Link": "Commits pushen und Link kopieren",
+ "Pushing changes...": "Änderungen pushen...",
+ "Select the Pull Request template": "Pull Requestvorlage auswählen",
+ "Select which files should be included in the repository.": "Wählen Sie aus, welche Dateien in das Repository eingeschlossen werden sollen.",
+ "Successfully published the \"{0}\" repository to GitHub.": "Das Repository \"{0}\" wurde erfolgreich in GitHub veröffentlicht.",
+ "The PR \"{0}/{1}#{2}\" was successfully created on GitHub.": "Der Pull Request \"{0}/{1}#{2}\" wurde erfolgreich in GitHub erstellt.",
+ "The current branch has unpublished commits. Would you like to push your commits before copying a link?": "Der aktuelle Branch weist nicht veröffentlichte Commits auf. Möchten Sie Ihre Commits pushen, bevor Sie einen Link kopieren?",
+ "The current branch is not published to the remote. Would you like to publish your branch before copying a link?": "Der aktuelle Branch wird nicht auf dem Remoteserver veröffentlicht. Möchten Sie Ihren Branch veröffentlichen, bevor Sie einen Link kopieren?",
+ "The current branch is not up to date. Would you like to pull before copying a link?": "Der aktuelle Branch ist nicht auf dem neuesten Stand. Möchten Sie einen Pullvorgang ausführen, bevor Sie einen Link kopieren?",
+ "The current file has uncommitted changes. Please commit your changes before copying a link.": "Die aktuelle Datei enthält Änderungen, für die kein Commit erfolgt ist. Committen Sie Ihre Änderungen, bevor Sie einen Link kopieren.",
+ "The fork \"{0}\" was successfully created on GitHub.": "Die Verzweigung \"{0}\" wurde erfolgreich in GitHub erstellt.",
+ "Uploading files": "Dateien werden hochgeladen.",
+ "You don't have permissions to push to \"{0}/{1}\" on GitHub. Would you like to create a fork and push to it instead?": "Sie sind nicht berechtigt, bei GitHub auf \"{0}/{1}\" zu pushen. Möchten Sie eine Kopie erstellen und stattdessen dorthin pushen?",
+ "Your push to \"{0}/{1}\" was rejected by GitHub because push protection is enabled and one or more secrets were detected.": "Ihr Push an \"{0}/{1}\" wurde von GitHub abgelehnt, weil der Pushschutz aktiviert ist und mindestens ein Geheimnis erkannt wurde.",
+ "{0} Open on GitHub": "{0} In GitHub öffnen"
+ },
+ "package": {
+ "command.copyVscodeDevLink": "Vscode.dev-Link kopieren",
+ "command.openOnGitHub": "In GitHub öffnen",
+ "command.openOnVscodeDev": "In vscode.dev öffnen",
+ "command.publish": "In GitHub veröffentlichen",
+ "config.branchProtection": "Steuert, ob Repositoryregeln für GitHub-Repositorys abgefragt werden",
+ "config.gitAuthentication": "Steuert, ob die automatische GitHub-Authentifizierung für Git-Befehle innerhalb von VS Code aktiviert werden soll.",
+ "config.gitProtocol": "Steuert, welches Protokoll zum Klonen eines GitHub-Repositorys verwendet wird",
+ "config.showAvatar": "Steuert, ob der GitHub-Avatar des Commitautors in verschiedenen Hovers angezeigt werden soll (z. B. Git Blame, Timeline, Source Control Graph usw.).",
+ "description": "GitHub-Features für VS Code",
+ "displayName": "GitHub",
+ "welcome.publishFolder": "Sie können diesen Ordner direkt in einem GitHub-Repository veröffentlichen. Nach der Veröffentlichung haben Sie Zugriff auf die Funktionen zur Quellcodeverwaltung von Git und GitHub.\r\n[$(github): Veröffentlichung in GitHub](command:github.publish)",
+ "welcome.publishWorkspaceFolder": "Sie können einen Arbeitsbereichsordner direkt in einem GitHub-Repository veröffentlichen. Nach der Veröffentlichung haben Sie Zugriff auf die Funktionen zur Quellcodeverwaltung von Git und GitHub.\r\n[$(github): Veröffentlichung in GitHub](command:github.publish)"
+ }
+ }
+}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-de/translations/extensions/vscode.go.i18n.json b/i18n/vscode-language-pack-de/translations/extensions/vscode.go.i18n.json
index fcffafa7ef..ea170e59dd 100644
--- a/i18n/vscode-language-pack-de/translations/extensions/vscode.go.i18n.json
+++ b/i18n/vscode-language-pack-de/translations/extensions/vscode.go.i18n.json
@@ -9,8 +9,8 @@
"version": "1.0.0",
"contents": {
"package": {
- "displayName": "Go-Sprachgrundlagen",
- "description": "Bietet Syntaxhervorhebung und Klammernabgleich in Go-Dateien."
+ "description": "Bietet Syntaxhervorhebung und Klammernabgleich in Go-Dateien.",
+ "displayName": "Go-Sprachgrundlagen"
}
}
}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-de/translations/extensions/vscode.groovy.i18n.json b/i18n/vscode-language-pack-de/translations/extensions/vscode.groovy.i18n.json
index f5bdb4b73b..994f8a61e1 100644
--- a/i18n/vscode-language-pack-de/translations/extensions/vscode.groovy.i18n.json
+++ b/i18n/vscode-language-pack-de/translations/extensions/vscode.groovy.i18n.json
@@ -9,8 +9,8 @@
"version": "1.0.0",
"contents": {
"package": {
- "displayName": "Groovy-Sprachgrundlagen",
- "description": "Bietet Ausschnitte, Syntaxhervorhebung und Klammernabgleich in Groovy-Dateien."
+ "description": "Bietet Schnipsel, Syntaxhervorhebung und Klammernabgleich in Groovy-Dateien.",
+ "displayName": "Groovy-Sprachgrundlagen"
}
}
}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-de/translations/extensions/vscode.grunt.i18n.json b/i18n/vscode-language-pack-de/translations/extensions/vscode.grunt.i18n.json
new file mode 100644
index 0000000000..73f58e9fe0
--- /dev/null
+++ b/i18n/vscode-language-pack-de/translations/extensions/vscode.grunt.i18n.json
@@ -0,0 +1,25 @@
+{
+ "": [
+ "--------------------------------------------------------------------------------------------",
+ "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."
+ ],
+ "version": "1.0.0",
+ "contents": {
+ "bundle": {
+ "Auto detecting Grunt for folder {0} failed with error: {1}', this.workspaceFolder.name, err.error ? err.error.toString() : 'unknown": "Fehler {1}' beim automatischen Erkennen von Grunt für Ordner {0}; this.workspaceFolder.name, err.error ? err.error.toString() : 'unbekannt",
+ "Go to output": "Zur Ausgabe wechseln",
+ "Problem finding grunt tasks. See the output for more information.": "Problem bei der Suche nach Grunt-Aufgaben. Weitere Informationen finden Sie in der Ausgabe."
+ },
+ "package": {
+ "config.grunt.autoDetect": "Steuerelemente ermöglichen die Grunt-Vorgangserkennung. Die Grunt-Vorgangserkennung kann dazu führen, dass Dateien in jedem geöffneten Arbeitsbereich ausgeführt werden.",
+ "description": "Erweiterung zum Hinzufügen von Grunt-Funktionen in VS Code.",
+ "displayName": "Grunt-Unterstützung für VS Code",
+ "grunt.taskDefinition.args.description": "Befehlszeilenargumente, die an den Grunt-Task übergeben werden sollen",
+ "grunt.taskDefinition.file.description": "Die Grunt-Datei zum Bereitstellen der Aufgabe. Kann ausgelassen werden.",
+ "grunt.taskDefinition.type.description": "Die anzupassende Grunt-Aufgabe."
+ }
+ }
+}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-de/translations/extensions/vscode.gulp.i18n.json b/i18n/vscode-language-pack-de/translations/extensions/vscode.gulp.i18n.json
new file mode 100644
index 0000000000..31ced8a102
--- /dev/null
+++ b/i18n/vscode-language-pack-de/translations/extensions/vscode.gulp.i18n.json
@@ -0,0 +1,24 @@
+{
+ "": [
+ "--------------------------------------------------------------------------------------------",
+ "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."
+ ],
+ "version": "1.0.0",
+ "contents": {
+ "bundle": {
+ "Auto detecting gulp for folder {0} failed with error: {1}', this.workspaceFolder.name, err.error ? err.error.toString() : 'unknown": "Fehler beim automatischen Erkennen von gulp für Ordner {0} : {1}', this.workspaceFolder.name, err.error ? err.error.toString() : 'unbekannt",
+ "Go to output": "Zur Ausgabe wechseln",
+ "Problem finding gulp tasks. See the output for more information.": "Problem bei der Suche nach gulp-Tasks. In der Ausgabe finden Sie weitere Informationen."
+ },
+ "package": {
+ "config.gulp.autoDetect": "Steuerelemente ermöglichen die Gulp-Vorgangserkennung. Die Gulp-Vorgangserkennung kann dazu führen, dass Dateien in jedem geöffneten Arbeitsbereich ausgeführt werden.",
+ "description": "Erweiterung zum Hinzufügen von Gulp-Funktionen in VSCode.",
+ "displayName": "Gulp-Unterstützung für VSCode",
+ "gulp.taskDefinition.file.description": "Die Gulp-Datei zum Bereitstellen der Aufgabe. Kann ausgelassen werden.",
+ "gulp.taskDefinition.type.description": "Die anzupassende Gulp-Aufgabe."
+ }
+ }
+}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-de/translations/extensions/vscode.handlebars.i18n.json b/i18n/vscode-language-pack-de/translations/extensions/vscode.handlebars.i18n.json
index 16088fe9ef..38190f60d6 100644
--- a/i18n/vscode-language-pack-de/translations/extensions/vscode.handlebars.i18n.json
+++ b/i18n/vscode-language-pack-de/translations/extensions/vscode.handlebars.i18n.json
@@ -9,8 +9,8 @@
"version": "1.0.0",
"contents": {
"package": {
- "displayName": "Handlebars-Sprachgrundlagen",
- "description": "Bietet Syntaxhervorhebung und Klammernabgleich in Handlebars-Dateien."
+ "description": "Bietet Syntaxhervorhebung und Klammernabgleich in Handlebars-Dateien.",
+ "displayName": "Handlebars-Sprachgrundlagen"
}
}
}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-de/translations/extensions/vscode.hlsl.i18n.json b/i18n/vscode-language-pack-de/translations/extensions/vscode.hlsl.i18n.json
index fa4481b9c3..90e38e17f9 100644
--- a/i18n/vscode-language-pack-de/translations/extensions/vscode.hlsl.i18n.json
+++ b/i18n/vscode-language-pack-de/translations/extensions/vscode.hlsl.i18n.json
@@ -9,8 +9,8 @@
"version": "1.0.0",
"contents": {
"package": {
- "displayName": "HLSL-Sprachgrundlagen",
- "description": "Bietet Syntaxhervorhebung und Klammernabgleich in HLSL-Dateien."
+ "description": "Bietet Syntaxhervorhebung und Klammernabgleich in HLSL-Dateien.",
+ "displayName": "HLSL-Sprachgrundlagen"
}
}
}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-de/translations/extensions/vscode.html-language-features.i18n.json b/i18n/vscode-language-pack-de/translations/extensions/vscode.html-language-features.i18n.json
new file mode 100644
index 0000000000..97e971fb21
--- /dev/null
+++ b/i18n/vscode-language-pack-de/translations/extensions/vscode.html-language-features.i18n.json
@@ -0,0 +1,304 @@
+{
+ "": [
+ "--------------------------------------------------------------------------------------------",
+ "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."
+ ],
+ "version": "1.0.0",
+ "contents": {
+ "bundle": {
+ "\"store\" a boolean test for later evaluation in a guard or if().": "„store“ i.e. Speichern eines booleschen Tests für die spätere Auswertung in einem Wächter oder if().",
+ "'from' expected": "„from2 erwartet",
+ "'in' expected": "„in“ erwartet",
+ "'through' or 'to' expected": "„through“ oder „to“ erwartet",
+ "'{0}'": "„{0}“",
+ "( expected": "( erwartet",
+ ") expected": ") erwartet",
+ "": "",
+ "@font-face": "@font-face",
+ "@font-face rule must define 'src' and 'font-family' properties": "Die „@font-face“-Regel muss die Eigenschaften „src“ und „font-family“ definieren.",
+ "@keyframes {0}": "@keyframes {0}",
+ "A list of properties that are not validated against the `unknownProperties` rule.": "Eine Liste der Eigenschaften, die nicht auf Übereinstimmung mit der Regel \"unknownProperties\" überprüft werden.",
+ "Adds quotes to a string.": "Fügt einer Zeichenfolge Anführungszeichen hinzu.",
+ "Also define the standard property '{0}' for compatibility": "Definieren Sie außerdem die Standardeigenschaft „{0}“ aus Kompatibilitätsgründen",
+ "Always define standard rule '@keyframes' when defining keyframes.": "Definieren Sie beim Definieren von Keyframes immer die Standardregel „@keyframes“.",
+ "Always include all vendor specific properties: Missing: {0}": "Schließen Sie immer alle herstellerspezifischen Eigenschaften ein: Fehlt: {0}",
+ "Always include all vendor specific rules: Missing: {0}": "Schließen Sie immer alle herstellerspezifischen Regeln ein: Fehlt: {0}",
+ "Appends a single value onto the end of a list.": "Fügt einen einzelnen Wert an das Ende einer Liste an.",
+ "Appends selectors to one another without spaces in between.": "Fügt Selektoren ohne Leerzeichen dazwischen an.",
+ "Avoid using !important. It is an indication that the specificity of the entire CSS has gotten out of control and needs to be refactored.": "Verwendung von „!important“ vermeiden. Damit wird angegeben, dass es mit der Spezifität des gesamten CSS-Codes Probleme gibt und eine Umgestaltung erforderlich ist.",
+ "Avoid using 'float'. Floats lead to fragile CSS that is easy to break if one aspect of the layout changes.": "Die Verwendung von „float“ vermeiden. „float“-Eigenschaften führen leicht dazu, dass CSS nicht mehr funktioniert, wenn sich ein Aspekt des Layouts ändert.",
+ "Causes one or more rules to be emitted at the root of the document.": "Bewirkt, dass eine oder mehrere Regeln im Stammverzeichnis des Dokuments ausgegeben werden.",
+ "Changes one or more properties of a color.": "Ändert eine oder mehrere Eigenschaften einer Farbe.",
+ "Changes the alpha component for a color.": "Ändert die Alphakomponente für eine Farbe.",
+ "Changes the hue of a color.": "Ändert den Farbton einer Farbe.",
+ "Character entity representing '{0}'": "Zeichenentität, die „{0}“ darstellt",
+ "Character entity representing '{0}', unicode equivalent '{1}'": "Zeichenentität, die „{0}“ darstellt, Unicode-Entsprechung „{1}“",
+ "Closing bracket expected.": "Eine schließende Klammer wurde erwartet.",
+ "Closing bracket missing.": "Schließende Klammer fehlt.",
+ "Combines several lists into a single multidimensional list.": "Kombiniert mehrere Listen zu einer einzelnen mehrdimensionalen Liste.",
+ "Configure": "Konfigurieren",
+ "Converts a color into the format understood by IE filters.": "Konvertiert eine Farbe in das Format, das von IE-Filtern verstanden wird.",
+ "Converts a color to grayscale.": "Konvertiert eine Farbe in Graustufen.",
+ "Converts a string to lower case.": "Konvertiert eine Zeichenfolge in Kleinbuchstaben.",
+ "Converts a string to upper case.": "Konvertiert eine Zeichenfolge in Großbuchstaben.",
+ "Converts a unitless number to a percentage.": "Konvertiert eine einheitslose Zahl in einen Prozentsatz.",
+ "Creates a Color from hue, saturation, and lightness values.": "Erstellt eine Farbe aus Farbton-, Sättigungs- und Helligkeitswerten.",
+ "Creates a Color from hue, saturation, lightness, and alpha values.": "Erstellt eine Farbe aus Farbton-, Sättigungs-, Helligkeits- und Alphawerten.",
+ "Creates a Color from hue, white, and black values.": "Erstellt eine Farbe aus den Farbton-, Weiß- und Schwarzwerten.",
+ "Creates a Color from lightness, a, and b values.": "Erstellt eine Farbe aus Helligkeits-, a- und b-Werten.",
+ "Creates a Color from lightness, chroma, and hue values.": "Erstellt eine Farbe aus den Helligkeits-, Füll- und Farbtonwerten.",
+ "Creates a Color from red, green, and blue values.": "Erstellt eine Farbe aus roten, grünen und blauen Werten.",
+ "Creates a Color from red, green, blue, and alpha values.": "Erstellt eine Farbe aus Rot-, Grün-, Blau- und Alphawerten.",
+ "Creates a Color from the hue, saturation, and lightness values of another Color.": "Erstellt eine Farbe aus den Farbton-, Sättigungs- und Helligkeitswerten einer anderen Farbe.",
+ "Creates a Color from the hue, white, and black values of another Color.": "Erstellt eine Farbe aus den Farbton-, Weiß- und Schwarzwerten einer anderen Farbe.",
+ "Creates a Color from the lightness, a, and b values of another Color.": "Erstellt eine Farbe aus den Helligkeits-, a- und b-Werten einer anderen Farbe.",
+ "Creates a Color from the lightness, chroma, and hue values of another Color.": "Erstellt eine Farbe aus den Helligkeits-, Füll- und Farbtonwerten einer anderen Farbe.",
+ "Creates a Color from the red, green, and blue values of another Color.": "Erstellt eine Farbe aus den Rot-, Grün- und Blauwerten einer anderen Farbe.",
+ "Creates a Color in a specific color space from red, green, and blue values.": "Erstellt eine Farbe in einem bestimmten Farbraum aus den Rot-, Grün- und Blauwerten.",
+ "Creates a Color in a specific color space from the red, green, and blue values of another Color.": "Erstellt eine Farbe in einem bestimmten Farbraum aus den Rot-, Grün- und Blauwerten einer anderen Farbe.",
+ "Defines complex operations that can be re-used throughout stylesheets.": "Definiert komplexe Vorgänge, die in Stylesheets wiederverwendet werden können.",
+ "Defines styles that can be re-used throughout the stylesheet with `@include`.": "Definiert Formatvorlagen, die im gesamten Stylesheet mit „@include“ wiederverwendet werden können.",
+ "Do not use duplicate style definitions": "Keine doppelten Formatdefinitionen verwenden",
+ "Do not use empty rulesets": "Keine leeren Regelsätze verwenden",
+ "Do not use width or height when using padding or border": "Verwenden Sie keine Breite oder Höhe, wenn Sie Innenabstand oder Rahmen verwenden",
+ "Dynamically calls a Sass function.": "Ruft dynamisch eine Sass-Funktion auf.",
+ "Each loop that sets `$var` to each item in the list or map, then outputs the styles it contains using that value of `$var`.": "Jede Schleife, die „$var“ auf jedes Element in der Liste oder Zuordnung festlegt, gibt dann die darin enthaltenen Formatvorlagen mit dem Wert „$var“ aus.",
+ "End tag name expected.": "Endtagname erwartet.",
+ "Exposes the details of Sass’s inner workings.": "Macht die Details der inneren Funktionsweise von Sass verfügbar.",
+ "Extends $extendee with $extender within $selector.": "Erweitert $extendee mit $extender innerhalb $selector.",
+ "Extracts a substring from $string.": "Extrahiert eine Teilzeichenfolge aus $string.",
+ "Finds the maximum of several numbers.": "Sucht das Maximum mehrerer Zahlen.",
+ "Finds the minimum of several numbers.": "Sucht das Minimum mehrerer Zahlen.",
+ "Fluidly scales one or more properties of a color.": "Skaliert eine oder mehrere Eigenschaften einer Farbe dynamisch.",
+ "Folding Region End": "Ende des Faltbereichs",
+ "Folding Region Start": "Regionsanfang wird gefaltet",
+ "For loop that repeatedly outputs a set of styles for each `$var` in the `from/through` or `from/to` clause.": "„For“-Schleife, die wiederholt einen Satz von Stilen für jedes „$var“ in der „from/through“- oder „from/to“-Klausel ausgibt.",
+ "Generates new colors based on existing ones, making it easy to build color themes.": "Generiert neue Farben basierend auf vorhandenen, sodass Sie ganz einfach Farbdesigns erstellen können.",
+ "Gets the blue component of a color.": "Ruft die blaue Komponente einer Farbe ab.",
+ "Gets the green component of a color.": "Ruft die grüne Komponente einer Farbe ab.",
+ "Gets the hue component of a color.": "Ruft die Farbtonkomponente einer Farbe ab.",
+ "Gets the lightness component of a color.": "Ruft die Helligkeitskomponente einer Farbe ab.",
+ "Gets the opacity component of a color.": "Ruft die Deckkraftkomponente einer Farbe ab.",
+ "Gets the red component of a color.": "Ruft die rote Komponente einer Farbe ab.",
+ "Gets the saturation component of a color.": "Ruft die Sättigungskomponente einer Farbe ab.",
+ "HTML Language Server": "HTML-Sprachserver",
+ "Hex colors must consist of three, four, six or eight hex numbers": "Hexadezimalfarben müssen aus drei, vier, sechs oder acht Hexadezimalzahlen bestehen.",
+ "IE hacks are only necessary when supporting IE7 and older": "IE-Hacks sind nur für die Unterstützung von IE7 und niedriger erforderlich",
+ "Import statements do not load in parallel": "Import-Anweisungen werden nicht parallel geladen",
+ "Includes the body if the expression does not evaluate to `false` or `null`.": "Schließt den Text ein, wenn der Ausdruck nicht als „FALSE“ oder „NULL“ ausgewertet wird.",
+ "Includes the styles defined by another mixin into the current rule.": "Schließt die von einer anderen Mixin definierten Stile in die aktuelle Regel ein.",
+ "Increases or decreases one or more components of a color.": "Vergrößert oder verringert eine oder mehrere Komponenten einer Farbe.",
+ "Inherits the styles of another selector.": "Erbt die Stile eines anderen Selektors.",
+ "Inserts $insert into $string at $index.": "Fügt $insert bei $index in $string ein.",
+ "Invalid number of parameters": "Ungültige Anzahl von Parametern",
+ "Joins together two lists into one.": "Verknüpft zwei Listen zu einer.",
+ "Lets you access and modify values in lists.": "Ermöglicht ihnen den Zugriff auf und das Ändern von Werten in Listen.",
+ "Loads a Sass stylesheet and makes its mixins, functions, and variables available when this stylesheet is loaded with the @use rule.": "Lädt ein Sass-Stylesheet und macht dessen Mixins, Funktionen und Variablen verfügbar, wenn dieses Stylesheet mit der @use-Regel geladen wird.",
+ "Loads mixins, functions, and variables from other Sass stylesheets as 'modules', and combines CSS from multiple stylesheets together.": "Lädt Mixins, Funktionen und Variablen aus anderen Sass-Stylesheets als „Module“ und kombiniert CSS aus mehreren Stylesheets.",
+ "Makes a color darker.": "Macht eine Farbe dunkler.",
+ "Makes a color less saturated.": "Macht eine Farbe weniger gesättigt.",
+ "Makes a color lighter.": "Macht eine Farbe heller.",
+ "Makes a color more opaque.": "Macht eine Farbe opaker.",
+ "Makes a color more saturated.": "Erhöht die Sättigung einer Farbe.",
+ "Makes a color more transparent.": "Macht eine Farbe transparenter.",
+ "Makes it easy to combine, search, or split apart strings.": "Erleichtert das Kombinieren, Suchen oder Aufteilen von Zeichenfolgen.",
+ "Makes it possible to look up the value associated with a key in a map, and much more.": "Ermöglicht das Nachschlagen des Werts, der einem Schlüssel in einer Karte zugeordnet ist, und vieles mehr.",
+ "Merges two maps together into a new map.": "Führt zwei Zuordnungen zu einer neuen Karte zusammen.",
+ "Mix two colors together in a polar color space.": "Mischen Sie zwei Farben in einem Polarfarbraum.",
+ "Mix two colors together in a rectangular color space.": "Mischen Sie zwei Farben in einem rechteckigen Farbraum.",
+ "Mixes two colors together.": "Kombiniert zwei Farben.",
+ "Nests selector beneath one another like they would be nested in the stylesheet.": "Verschachtelt Selektoren untereinander, wie sie im Stylesheet geschachtelt werden.",
+ "No unit for zero needed": "Keine Einheit für Null erforderlich",
+ "Parses a selector into the format returned by &.": "Analysiert einen Selektor in das von & zurückgegebene Format.",
+ "Prints the value of an expression to the standard error output stream. Useful for debugging complicated Sass files.": "Gibt den Wert eines Ausdrucks in den Standardausgabestream für Fehler aus. Nützlich für das Debuggen komplizierter Sass-Dateien.",
+ "Prints the value of an expression to the standard error output stream. Useful for libraries that need to warn users of deprecations or recovering from minor mixin usage mistakes. Warnings can be turned off with the `--quiet` command-line option or the `:quiet` Sass option.": "Gibt den Wert eines Ausdrucks in den Standardfehlerausgabestrom aus. Nützlich für Bibliotheken, die Benutzer vor Verwerfungen warnen müssen, oder um kleinere Fehler bei der Verwendung von Mixins zu beheben. Warnungen können mit der Kommandozeilenoption „--quiet“ oder der Sass-Option „:quiet“ ausgeschaltet werden.",
+ "Property is ignored due to the display.": "Die Eigenschaft wird aufgrund der Anzeige ignoriert.",
+ "Property is ignored due to the display. With 'display: block', vertical-align should not be used.": "Die Eigenschaft wird aufgrund der Anzeige ignoriert. Bei „display: block“ sollte die vertikale Ausrichtung nicht verwendet werden.",
+ "Provides access to Sass’s powerful selector engine.": "Bietet Zugriff auf die leistungsstarke Selektor-Engine von Sass.",
+ "Provides functions that operate on numbers.": "Stellt Funktionen bereit, die mit Zahlen arbeiten.",
+ "Removes quotes from a string.": "Entfernt Anführungszeichen aus einer Zeichenfolge.",
+ "Rename to '{0}'": "In „{0}“ umbenennen",
+ "Replaces $original with $replacement within $selector.": "Ersetzt $original in $selector durch $replacement.",
+ "Replaces the nth item in a list.": "Ersetzt das nth-Element in einer Liste.",
+ "Returns a list of all keys in a map.": "Gibt eine Liste aller Schlüssel in einer Zuordnung zurück.",
+ "Returns a list of all values in a map.": "Gibt eine Liste aller Werte in einer Zuordnung zurück.",
+ "Returns a new map with keys removed.": "Gibt eine neue Zuordnung mit entfernten Schlüsseln zurück.",
+ "Returns a random number.": "Gibt eine Zufallszahl zurück.",
+ "Returns a specific item in a list.": "Gibt ein bestimmtes Element in einer Liste zurück.",
+ "Returns the absolute value of a number.": "Gibt den absoluten Wert einer Zahl zurück.",
+ "Returns the complement of a color.": "Gibt das Komplement einer Farbe zurück.",
+ "Returns the index of the first occurance of $substring in $string.": "Gibt den Index des ersten Vorkommens von $substring in $string zurück.",
+ "Returns the inverse of a color.": "Gibt die inverse Form einer Farbe zurück.",
+ "Returns the keywords passed to a function that takes variable arguments.": "Gibt die Schlüsselwörter zurück, die an eine Funktion übergeben werden, die variablen Argumente akzeptiert.",
+ "Returns the length of a list.": "Gibt die Länge einer Liste zurück.",
+ "Returns the number of characters in a string.": "Gibt die Anzahl von Zeichen in einer Zeichenfolge zurück.",
+ "Returns the position of a value within a list.": "Gibt die Position eines Werts innerhalb einer Liste zurück.",
+ "Returns the separator of a list.": "Gibt das Trennzeichen einer Liste zurück.",
+ "Returns the simple selectors that comprise a compound selector.": "Gibt die einfachen Selektoren zurück, aus denen ein zusammengesetzter Selektor besteht.",
+ "Returns the string representation of a value as it would be represented in Sass.": "Gibt die Zeichenfolgendarstellung eines Werts zurück, wie er in Sass dargestellt wird.",
+ "Returns the type of a value.": "Gibt den Typ eines Werts zurück.",
+ "Returns the unit(s) associated with a number.": "Gibt die Einheiten zurück, die einer Zahl zugeordnet sind.",
+ "Returns the value in a map associated with a given key.": "Gibt den Wert in einer Zuordnung zu einem bestimmten Schlüssel zurück.",
+ "Returns whether $super matches all the elements $sub does, and possibly more.": "Gibt zurück, ob $super allen Elementen entspricht, die $sub erfüllt, und möglicherweise mehr.",
+ "Returns whether a feature exists in the current Sass runtime.": "Gibt zurück, ob ein Feature in der aktuellen Sass-Laufzeit vorhanden ist.",
+ "Returns whether a function with the given name exists.": "Gibt zurück, ob eine Funktion mit dem angegebenen Namen vorhanden ist.",
+ "Returns whether a map has a value associated with a given key.": "Gibt zurück, ob einer Zuordnung ein Wert zugeordnet ist, der einem bestimmten Schlüssel zugeordnet ist.",
+ "Returns whether a mixin with the given name exists.": "Gibt zurück, ob ein Mixin mit dem angegebenen Namen vorhanden ist.",
+ "Returns whether a number has units.": "Gibt zurück, ob eine Zahl Einheiten aufweist.",
+ "Returns whether a variable with the given name exists in the current scope.": "Gibt zurück, ob eine Variable mit dem angegebenen Namen im aktuellen Bereich vorhanden ist.",
+ "Returns whether a variable with the given name exists in the global scope.": "Gibt zurück, ob eine Variable mit dem angegebenen Namen im globalen Bereich vorhanden ist.",
+ "Returns whether two numbers can be added, subtracted, or compared.": "Gibt zurück, ob zwei Zahlen hinzugefügt, subtrahiert oder verglichen werden können.",
+ "Rounds a number down to the previous whole number.": "Rundet eine Zahl auf die vorherige ganze Zahl ab.",
+ "Rounds a number to the nearest whole number.": "Rundet eine Zahl auf die nächste ganze Zahl.",
+ "Rounds a number up to the next whole number.": "Rundet eine Zahl auf die nächste ganze Zahl auf.",
+ "Sass documentation": "Sass-Dokumentation",
+ "Selector Specificity": "Selektorspezifität",
+ "Selectors should not contain IDs because these rules are too tightly coupled with the HTML.": "Selektoren sollten keine IDs enthalten, da diese Regeln zu eng mit HTML verknüpft sind.",
+ "Simple HTML5 starting point": "Einfacher HTML5-Ausgangspunkt",
+ "Start tag name expected.": "Starttagname erwartet.",
+ "Tag name must directly follow the open bracket.": "Der Tagname muss direkt auf die geöffnete Klammer folgen.",
+ "The universal selector (*) is known to be slow": "Der Universalselektor (*) ist bekanntermaßen langsam",
+ "Throws the value of an expression as a fatal error with stack trace. Useful for validating arguments to mixins and functions.": "Wirft den Wert eines Ausdrucks als fatalen Fehler mit Stack-Trace. Nützlich für die Validierung von Argumenten für Mixins und Funktionen.",
+ "URI expected": "URI erwartet",
+ "URL encodes a string": "URL codiert eine Zeichenfolge",
+ "Unexpected character in tag.": "Unerwartetes Zeichen im Tag.",
+ "Unifies two selectors to produce a selector that matches elements matched by both.": "Vereinigt zwei Selektoren, um einen Selektor zu erzeugen, der mit Elementen übereinstimmt, die von beiden übereinstimmen.",
+ "Unknown at-rule.": "Unbekannte at-Regel.",
+ "Unknown property.": "Unbekannte Eigenschaft.",
+ "Unknown property: '{0}'": "Unbekannte Eigenschaft: „{0}“",
+ "Unknown vendor specific property.": "Unbekannte anbieterspezifische Eigenschaft.",
+ "VS Code now has built-in support for auto-renaming tags. Do you want to enable it?": "VS Code bietet jetzt integrierte Unterstützung für das automatische Umbenennen von Tags. Möchten Sie dieses Feature aktivieren?",
+ "When using a vendor-specific prefix also include the standard property": "Beim Verwenden eines anbieterspezifischen Präfixes auch die Standardeigenschaft einbeziehen",
+ "When using a vendor-specific prefix make sure to also include all other vendor-specific properties": "Beim Verwenden eines anbieterspezifischen Präfixes sicherstellen, dass alle anderen anbieterspezifischen Eigenschaften einbezogen werden",
+ "While loop that takes an expression and repeatedly outputs the nested styles until the statement evaluates to `false`.": "„While“-Schleife, die einen Ausdruck akzeptiert und wiederholt die geschachtelten Stile ausgibt, bis die Anweisung als „FALSE“ ausgewertet wird.",
+ "[ expected": "[ erwartet",
+ "] expected": "] erwartet",
+ "absolute value of a number": "Absoluter Wert einer Zahl",
+ "arccosine - inverse of cosine function": "Arkuskosinus – Umkehrung der Kosinusfunktion",
+ "arcsine - inverse of sine function": "Arkuskosinus – Umkehrung der Sinusfunktion",
+ "arctangent - inverse of tangent function": "Arkustangens – Umkehrung der Tangensfunktion",
+ "argument from '{0}'": "Argument von „{0}“",
+ "at-rule or selector expected": "„at“-Regel oder Selektor erwartet",
+ "at-rule unknown": "„at“-Regel unbekannt",
+ "bind the evaluation of a ruleset to each member of a list.": "die Auswertung eines Regelsatzes an jedes Mitglied einer Liste binden.",
+ "calculates square root of a number": "Berechnet die Quadratwurzel einer Zahl",
+ "colon expected": "Ein Doppelpunkt wurde erwartet",
+ "comma expected": "Komma erwartet",
+ "condition expected": "Bedingung erwartet",
+ "converts numbers from one type into another": "konvertiert Zahlen von einem Typ in einen anderen.",
+ "converts to a %, e.g. 0.5 > 50%": "konvertiert in %, z. B. 0,5 > 50 %",
+ "cosine function": "Kosinusfunktion",
+ "creates a #AARRGGBB": "erstellt eine #AARRGGBB",
+ "creates a color": "erstellt eine Farbe",
+ "css.builtin.lab": "css.builtin.lab",
+ "dot expected": "Punkt erwartet",
+ "escape string content": "Escapezeichenfolgeninhalt",
+ "expression expected": "Ausdruck erwartet",
+ "first argument modulus second argument": "Erstes Argument Modulus zweites Argument",
+ "first argument raised to the power of the second argument": "Erstes Argument, das mit der Potenz des zweiten Arguments ausgelöst wird",
+ "generate a list spanning a range of values": "Generieren einer Liste, die einen Wertebereich umfasst",
+ "identifier expected": "Bezeichner erwartet",
+ "identifier or variable expected": "Bezeichner oder Variable erwartet",
+ "identifier or wildcard expected": "Bezeichner oder Platzhalter erwartet",
+ "inline-block is ignored due to the float. If 'float' has a value other than 'none', the box is floated and 'display' is treated as 'block'": "Der Inlineblock wird aufgrund des Gleitkommawerts ignoriert. Wenn „float“ einen anderen Wert als „none“ aufweist, wird das Feld als „floated“ und „display“ als „Block“ behandelt.",
+ "inlines a resource and falls back to `url()`": "inline eine Ressource und greift auf „url()“ zurück.",
+ "media query expected": "Medienabfrage erwartet",
+ "number expected": "Zahl erwartet",
+ "operator expected": "Operator erwartet",
+ "page directive or declaraton expected": "Seitendirektive oder -deklaration erwartet",
+ "parses a string to a color": "analysiert eine Zeichenfolge in eine Farbe.",
+ "percentage expected": "Prozentsatz erwartet",
+ "property value expected": "Eigenschaftswert erwartet",
+ "remove or change the unit of a dimension": "Entfernen oder Ändern der Einheit einer Dimension",
+ "return `@color` 10% points darker": "\"@color\" um 10 % Punkte dunkler zurückgeben",
+ "return `@color` 10% points less saturated": "gibt „@color“ 10 %-Punkte weniger gesättigt zurück",
+ "return `@color` 10% points less transparent": "gibt „@color“ um 10 % Punkte weniger transparent zurück",
+ "return `@color` 10% points lighter": "gibt „@color“ um 10 % Punkte heller zurück",
+ "return `@color` 10% points more saturated": "„@color“ 10 %-Punkte gesättigter zurückgeben",
+ "return `@color` 10% points more transparent": "„@color“ 10 %-Punkte transparenter zurückgeben",
+ "return `@color` with 50% transparency": "„@color“ mit 50 % Transparenz zurückgeben",
+ "return `@color` with a 10 degree larger in hue": "gibt „@color“ mit einem 10 Grad größeren Farbton zurück.",
+ "return `@darkcolor` if `@color1 is> 43% luma` otherwise return `@lightcolor`, see notes": "„@darkcolor“ zurückgeben, wenn „@color1 > 43 % luma ist“ andernfalls „@lightcolor“ zurückgeben, siehe Hinweise",
+ "return a mix of `@color1` and `@color2`": "gibt eine Mischung aus „@color1“ und „@color2“ zurück.",
+ "returns a grey, 100% desaturated color": "liefert eine graue, 100 % entsättigte Farbe",
+ "returns a value at the specified position in the list": "gibt einen Wert an der angegebenen Position in der Liste zurück.",
+ "returns one of two values depending on a condition.": "gibt je nach Bedingung einen von zwei Werten zurück.",
+ "returns pi": "gibt Pi zurück.",
+ "returns the `alpha` channel of `@color`": "gibt den Alphakanal von „@color“ zurück",
+ "returns the `blue` channel of `@color`": "gibt den blauen Kanal von „@color“ zurück.",
+ "returns the `green` channel of `@color`": "gibt den grünen Kanal von „@color“ zurück.",
+ "returns the `hue` channel of `@color` in the HSL space": "gibt den „Farbton“-Kanal von „@color“ im HSL-Raum zurück",
+ "returns the `hue` channel of `@color` in the HSV space": "gibt den Farbton-Kanal von „@color“ im HSV-Bereich zurück.",
+ "returns the `lightness` channel of `@color` in the HSL space": "gibt den Helligkeitskanal von „@color“ im HSL-Raum zurück.",
+ "returns the `luma` value (perceptual brightness) of `@color`": "gibt den „luma“-Wert (wahrnehmbare Helligkeit) von „@color“ zurück.",
+ "returns the `red` channel of `@color`": "gibt den roten Kanal von „@color“ zurück",
+ "returns the `saturation` channel of `@color` in the HSL space": "gibt den Sättigungskanal von „@color“\" im HSL-Raum zurück.",
+ "returns the `saturation` channel of `@color` in the HSV space": "gibt den Sättigungskanal von „@color“ im HSV-Raum zurück.",
+ "returns the `value` channel of `@color` in the HSV space": "gibt den Value-Kanal von „@color“ im HSV-Bereich zurück.",
+ "returns the lowest of one or more values": "gibt den niedrigsten von mindestens einem Wert zurück.",
+ "returns the number of elements in a value list": "gibt die Anzahl der Elemente in einer Wertliste zurück.",
+ "rounds a number to a number of places": "Rundet eine Zahl auf eine Anzahl von Stellen",
+ "rounds down to an integer": "Rundet auf eine ganze Zahl ab",
+ "rounds up to an integer": "Rundet auf eine ganze Zahl auf",
+ "selector expected": "Selektor erwartet",
+ "semi-colon expected": "Semikolon erwartet",
+ "sine function": "Sinusfunktion",
+ "string literal expected": "Ein Zeichenfolgenliteral wurde erwartet",
+ "string replace": "Ersetzen von Zeichenfolgen",
+ "tangent function": "Gleichungen",
+ "term expected": "Begriff erwartet",
+ "unknown keyword": "Unbekanntes Schlüsselwort",
+ "uri or string expected": "URI oder Zeichenfolge erwartet",
+ "variable name expected": "Es wurde ein Variablenname erwartet",
+ "variable value expected": "Variablenwert erwartet",
+ "whitespace expected": "Leerzeichen erwartet",
+ "wildcard expected": "Platzhalter erwartet",
+ "{ expected": "{ erwartet.",
+ "{0}, '{1}'": "{0}, „{1}“",
+ "} expected": "} erwartet."
+ },
+ "package": {
+ "description": "Umfangreiche Sprachunterstützung für HTML- und HANDLEBAR-Dateien",
+ "displayName": "HTML-Sprachfeatures",
+ "html.autoClosingTags": "Automatisches Schließen von HTML-Tags aktivieren/deaktivieren.",
+ "html.autoCreateQuotes": "Aktivieren/Deaktivieren der automatischen Erstellung von Anführungszeichen für die HTML-Attributzuweisung. Der Typ von Anführungszeichen kann durch `#html.completion.attributeDefaultValue#` konfiguriert werden.",
+ "html.completion.attributeDefaultValue": "Steuert den Standardwert für Attribute, wenn der Abschluss akzeptiert wird.",
+ "html.completion.attributeDefaultValue.doublequotes": "Der Attributwert ist auf „“ festgelegt.",
+ "html.completion.attributeDefaultValue.empty": "Der Attributwert ist nicht festgelegt.",
+ "html.completion.attributeDefaultValue.singlequotes": "Der Attributwert ist auf „ festgelegt.",
+ "html.customData.desc": "Eine Liste relativer Dateipfade, die auf JSON-Dateien im [benutzerdefinierten Datenformat](https://github.com/microsoft/vscode-html-languageservice/blob/master/docs/customData.md) verweisen.\r\n\r\nVS Code lädt benutzerdefinierte Daten beim Start, um die HTML-Unterstützung für die benutzerdefinierten HTML-Tags, -Attribute und -Attributwerte, die Sie in den JSON-Dateien angeben, zu verbessern.\r\n\r\nDie Dateipfade werden relativ zum Arbeitsbereich angegeben, und es werden nur Einstellungen für den Arbeitsbereichsordner berücksichtigt.",
+ "html.format.contentUnformatted.desc": "Liste der Tags (durch Trennzeichen getrennt), in der der Inhalt nicht neu formatiert werden muss. `null` entspricht standardmäßig dem Tag `pre`.",
+ "html.format.enable.desc": "HTML-Standardformatierer aktivieren/deaktivieren.",
+ "html.format.extraLiners.desc": "Die Liste der Tags (durch Kommas getrennt), vor denen eine zusätzliche neue Zeile eingefügt werden soll. `null` verwendet standardmäßig `\"head, body, /HTML\"`.",
+ "html.format.indentHandlebars.desc": "Formatiert `{{#foo}}` und `{{/foo}}` und nimmt einen Einzug vor.",
+ "html.format.indentInnerHtml.desc": "Hiermit werden ``- und ``-Abschnitte eingerückt.",
+ "html.format.maxPreserveNewLines.desc": "Die maximale Anzahl von Zeilenumbrüchen, die in einem Block beibehalten werden soll. Verwenden Sie `null` für eine unbegrenzte Anzahl.",
+ "html.format.preserveNewLines.desc": "Legt fest, ob vorhandene Zeilenumbrüche vor Elementen beibehalten werden sollen. Funktioniert nur vor Elementen, nicht in Tags oder bei Text.",
+ "html.format.templating.desc": "Hiermit werden Sprachtags für die Django-, ERB-, Handlebars- und PHP-Vorlagenerstellung berücksichtigt.",
+ "html.format.unformatted.desc": "Die Liste der Tags (durch Kommas getrennt), die nicht erneut formatiert werden sollen. `null` bezieht sich standardmäßig auf alle Tags, die unter https://www.w3.org/TR/html5/dom.html#phrasing-content aufgeführt werden.",
+ "html.format.unformattedContentDelimiter.desc": "Hiermit werden Textinhalte innerhalb dieser Zeichenfolge zusammengehalten.",
+ "html.format.wrapAttributes.alignedmultiple": "Umbrechen, wenn Zeilenlänge überschritten wird, und Attribute vertikal ausrichten.",
+ "html.format.wrapAttributes.auto": "Attribute nur umbrechen, wenn Zeilenlänge überschritten wird.",
+ "html.format.wrapAttributes.desc": "Attribute umbrechen.",
+ "html.format.wrapAttributes.force": "Alle Attribute mit Ausnahme des ersten umbrechen.",
+ "html.format.wrapAttributes.forcealign": "Alle Attribute mit Ausnahme des ersten umbrechen und Ausrichtung beibehalten.",
+ "html.format.wrapAttributes.forcemultiline": "Alle Attribute umbrechen.",
+ "html.format.wrapAttributes.preserve": "Umbrechen von Attributen beibehalten.",
+ "html.format.wrapAttributes.preservealigned": "Umbrechen von Attributen beibehalten, aber ausrichten.",
+ "html.format.wrapAttributesIndentSize.desc": "Umbrochene Attribute nach N Zeichen einrücken. Verwenden Sie \"null\", um die Standardeinzugsgröße zu verwenden. Wird ignoriert, wenn \"#html.format.wrapAttributes#\" auf \"aligned\" festgelegt ist.",
+ "html.format.wrapLineLength.desc": "Die maximale Anzahl von Zeichen pro Zeile (0 = deaktiviert).",
+ "html.hover.documentation": "Hiermit wird beim Zeigen auf ein Element eine Tag- und Attributdokumentation eingeblendet.",
+ "html.hover.references": "Hiermit werden beim Zeigen auf ein Element Verweise auf MDN eingeblendet.",
+ "html.mirrorCursorOnMatchingTag": "Spielcursor bei übereinstimmendem HTML-Tag aktivieren/deaktivieren",
+ "html.mirrorCursorOnMatchingTagDeprecationMessage": "Veraltet und durch \"editor.linkedEditing\" ersetzt",
+ "html.suggest.hideEndTagSuggestions.desc": "Steuert, ob die integrierte HTML-Sprachunterstützung das Schließen von Tags vorschlägt. Wenn diese Option deaktiviert ist, werden Endtag-Vervollständigungen wie „“ nicht angezeigt.",
+ "html.suggest.html5.desc": "Legt fest, ob die integrierte HTML-Sprachuntersützung HTML5-Tags, -Eigenschaften und -Werte vorschlägt.",
+ "html.trace.server.desc": "Verfolgt die Kommunikation zwischen VS Code und dem HTML-Sprachserver.",
+ "html.validate.scripts": "Legt fest, ob die integrierte HTML-Sprachunterstützung eingebettete Skripts überprüft.",
+ "html.validate.styles": "Legt fest, ob die integrierte HTML-Sprachunterstützung eingebettete Stile überprüft."
+ }
+ }
+}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-de/translations/extensions/vscode.html.i18n.json b/i18n/vscode-language-pack-de/translations/extensions/vscode.html.i18n.json
index be21ef004c..4c206d2333 100644
--- a/i18n/vscode-language-pack-de/translations/extensions/vscode.html.i18n.json
+++ b/i18n/vscode-language-pack-de/translations/extensions/vscode.html.i18n.json
@@ -9,8 +9,8 @@
"version": "1.0.0",
"contents": {
"package": {
- "displayName": "HTML-Sprachgrundlagen",
- "description": "Bietet Syntaxhervorhebung, Klammerabgleich und Ausschnitte in HTML-Dateien."
+ "description": "Bietet Syntaxhervorhebung, Klammerabgleich und Schnipsel in HTML-Dateien.",
+ "displayName": "HTML-Sprachgrundlagen"
}
}
}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-de/translations/extensions/vscode.ini.i18n.json b/i18n/vscode-language-pack-de/translations/extensions/vscode.ini.i18n.json
index 69c3921cfa..e65e62c8fd 100644
--- a/i18n/vscode-language-pack-de/translations/extensions/vscode.ini.i18n.json
+++ b/i18n/vscode-language-pack-de/translations/extensions/vscode.ini.i18n.json
@@ -9,8 +9,8 @@
"version": "1.0.0",
"contents": {
"package": {
- "displayName": "Ini-Sprachgrundlagen",
- "description": "Bietet Syntaxhervorhebung und Klammernabgleich in Ini-Dateien."
+ "description": "Bietet Syntaxhervorhebung und Klammernabgleich in Ini-Dateien.",
+ "displayName": "Ini-Sprachgrundlagen"
}
}
}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-de/translations/extensions/vscode.ipynb.i18n.json b/i18n/vscode-language-pack-de/translations/extensions/vscode.ipynb.i18n.json
new file mode 100644
index 0000000000..e0d5b8e942
--- /dev/null
+++ b/i18n/vscode-language-pack-de/translations/extensions/vscode.ipynb.i18n.json
@@ -0,0 +1,29 @@
+{
+ "": [
+ "--------------------------------------------------------------------------------------------",
+ "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."
+ ],
+ "version": "1.0.0",
+ "contents": {
+ "bundle": {
+ "Insert Image as Attachment": "Bild als Anlage einfügen"
+ },
+ "package": {
+ "addCellOutputToChat.title": "Zellenausgabe zum Chat hinzufügen",
+ "cleanInvalidImageAttachment.title": "Ungültigen Bildanlagenverweis bereinigen",
+ "copyCellOutput.title": "Zellenausgabe kopieren",
+ "description": "Bietet grundlegende Unterstützung für das Öffnen und Lesen von Jupyters .ipynb-Notizbuchdateien",
+ "displayName": "IPYNB-Unterstützung",
+ "ipynb.experimental.serialization": "Experimentelles Feature zum Serialisieren des Jupyter-Notebooks in einem Arbeitsthread.",
+ "ipynb.pasteImagesAsAttachments.enabled": "Aktivieren/Deaktivieren des Einfügens von Bildern in Markdownzellen in IPYNB-Notebook-Dateien. Eingefügte Bilder werden als Anlagen in die Zelle eingefügt.",
+ "markdownAttachmentRenderer.displayName": "Zellenanlage-Renderer „Markdown-It-IPYNB“",
+ "newUntitledIpynb.shortTitle": "Jupyter Notebook",
+ "newUntitledIpynb.title": "Neues Jupyter Notebook",
+ "openCellOutput.title": "Zellenausgabe im Text-Editor öffnen",
+ "openIpynbInNotebookEditor.title": "IPYNB-Datei im Notebook-Editor öffnen"
+ }
+ }
+}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-de/translations/extensions/vscode.jake.i18n.json b/i18n/vscode-language-pack-de/translations/extensions/vscode.jake.i18n.json
new file mode 100644
index 0000000000..df104d34e8
--- /dev/null
+++ b/i18n/vscode-language-pack-de/translations/extensions/vscode.jake.i18n.json
@@ -0,0 +1,24 @@
+{
+ "": [
+ "--------------------------------------------------------------------------------------------",
+ "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."
+ ],
+ "version": "1.0.0",
+ "contents": {
+ "bundle": {
+ "Auto detecting Jake for folder {0} failed with error: {1}', this.workspaceFolder.name, err.error ? err.error.toString() : 'unknown": "Fehler {1}' bei der automatischen Erkennung von Jake für Ordner {0}; this.workspaceFolder.name, err.error ? err.error.toString() : 'unbekannt",
+ "Go to output": "Zur Ausgabe wechseln",
+ "Problem finding jake tasks. See the output for more information.": "Fehler bei der Suche nach jake-Tasks. In der Ausgabe finden Sie weitere Informationen."
+ },
+ "package": {
+ "config.jake.autoDetect": "Steuerelemente ermöglichen die Jake-Vorgangserkennung. Die Jake-Vorgangserkennung kann dazu führen, dass Dateien in jedem geöffneten Arbeitsbereich ausgeführt werden.",
+ "description": "Erweiterung zum Hinzufügen von Jake-Funktionen in VS Code.",
+ "displayName": "Jake-Unterstützung für VS Code",
+ "jake.taskDefinition.file.description": "Die Jake-Datei zum Bereitstellen der Aufgabe. Kann ausgelassen werden.",
+ "jake.taskDefinition.type.description": "Die anzupassende Jake-Aufgabe."
+ }
+ }
+}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-de/translations/extensions/vscode.java.i18n.json b/i18n/vscode-language-pack-de/translations/extensions/vscode.java.i18n.json
index 2e8d26ae1c..9f6c3eef33 100644
--- a/i18n/vscode-language-pack-de/translations/extensions/vscode.java.i18n.json
+++ b/i18n/vscode-language-pack-de/translations/extensions/vscode.java.i18n.json
@@ -9,8 +9,8 @@
"version": "1.0.0",
"contents": {
"package": {
- "displayName": "Java-Sprachgrundlagen",
- "description": "Bietet Ausschnitte, Syntaxhervorhebung, Klammernabgleich und Falten in Java-Dateien."
+ "description": "Bietet Schnipsel, Syntaxhervorhebung, Klammernabgleich und Falten in Java-Dateien.",
+ "displayName": "Java-Sprachgrundlagen"
}
}
}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-de/translations/extensions/vscode.javascript.i18n.json b/i18n/vscode-language-pack-de/translations/extensions/vscode.javascript.i18n.json
index b72348ba59..86676b7ae4 100644
--- a/i18n/vscode-language-pack-de/translations/extensions/vscode.javascript.i18n.json
+++ b/i18n/vscode-language-pack-de/translations/extensions/vscode.javascript.i18n.json
@@ -9,8 +9,8 @@
"version": "1.0.0",
"contents": {
"package": {
- "displayName": "JavaScript-Sprachgrundlagen",
- "description": "Bietet Ausschnitte, Syntaxhervorhebung, Klammernabgleich und Falten in JavaScript-Dateien."
+ "description": "Bietet Schnipsel, Syntaxhervorhebung, Klammernabgleich und Falten in JavaScript-Dateien.",
+ "displayName": "JavaScript-Sprachgrundlagen"
}
}
}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-de/translations/extensions/vscode.json-language-features.i18n.json b/i18n/vscode-language-pack-de/translations/extensions/vscode.json-language-features.i18n.json
new file mode 100644
index 0000000000..e52e487bfc
--- /dev/null
+++ b/i18n/vscode-language-pack-de/translations/extensions/vscode.json-language-features.i18n.json
@@ -0,0 +1,190 @@
+{
+ "": [
+ "--------------------------------------------------------------------------------------------",
+ "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."
+ ],
+ "version": "1.0.0",
+ "contents": {
+ "bundle": {
+ "$ref '{0}' in '{1}' can not be resolved.": "$ref „{0}“ in „{1}“ kann nicht aufgelöst werden.",
+ "": "",
+ "A default value. Used by suggestions.": "Ein Standardwert. Wird von Vorschlägen verwendet.",
+ "A descriptive title of the schema.": "Ein beschreibender Titel des Schemas.",
+ "A long description of the schema. Used in hover menus and suggestions.": "Eine lange Beschreibung des Schemas. Wird in Daraufzeigemenüs und Vorschlägen verwendet.",
+ "A map of property names to either an array of property names or a schema. An array of property names means the property named in the key depends on the properties in the array being present in the object in order to be valid. If the value is a schema, then the schema is only applied to the object if the property in the key exists on the object.": "Eine Zuordnung von Eigenschaftsnamen zu entweder einem Array von Eigenschaftsnamen oder einem Schema. Ein Array von Eigenschaftsnamen bedeutet, dass die im Schlüssel genannte Eigenschaft davon abhängt, dass die Eigenschaften im Array im Objekt vorhanden sind, um gültig zu sein. Wenn der Wert ein Schema ist, wird das Schema nur dann auf das Objekt angewendet, wenn die Eigenschaft im Schlüssel im Objekt vorhanden ist.",
+ "A map of property names to schemas for each property.": "Eine Zuordnung von Eigenschaftennamen zu Schemas für jede Eigenschaft.",
+ "A map of regular expressions on property names to schemas for matching properties.": "Eine Zuordnung von regulären Ausdrücken für Eigenschaftsnamen zu Schemata für passende Eigenschaften.",
+ "A number that should cleanly divide the current value (i.e. have no remainder).": "Eine Zahl, die den aktuellen Wert sauber dividieren soll (d. h. keinen Rest haben).",
+ "A regular expression to match the string against. It is not implicitly anchored.": "Ein regulärer Ausdruck, mit dem die Zeichenfolge verglichen werden soll. Sie ist nicht implizit verankert.",
+ "A schema which must not match.": "Ein Schema, das nicht übereinstimmen darf.",
+ "A unique identifier for the schema.": "Ein eindeutiger Bezeichner für das Schema.",
+ "An array instance is valid against \"contains\" if at least one of its elements is valid against the given schema.": "Eine Arrayinstanz ist für „contains“ gültig, wenn mindestens eines ihrer Elemente für das angegebene Schema gültig ist.",
+ "An array of schemas, all of which must match.": "Ein Array von Schemas, die alle übereinstimmen müssen.",
+ "An array of schemas, exactly one of which must match.": "Ein Array von Schemas, von denen genau eines übereinstimmen muss.",
+ "An array of schemas, where at least one must match.": "Ein Array von Schemas, wobei mindestens ein Schema übereinstimmen muss.",
+ "An array of strings that lists the names of all properties required on this object.": "Ein Array von Zeichenfolgen, das die Namen aller Eigenschaften auflistet, die für dieses Objekt erforderlich sind.",
+ "An instance validates successfully against this keyword if its value is equal to the value of the keyword.": "Eine Instanz überprüft dieses Schlüsselwort erfolgreich, wenn ihr Wert mit dem Wert des Schlüsselworts übereinstimmt.",
+ "Array does not contain required item.": "Das Array enthält kein erforderliches Element.",
+ "Array has duplicate items.": "Das Array weist doppelte Elemente auf.",
+ "Array has too few items that match the contains contraint. Expected {0} or more.": "Array hat zu wenige Elemente, die der „contains“-Beschränkung entsprechen. Es wurde {0} oder mehr erwartet.",
+ "Array has too few items. Expected {0} or more.": "Das Array enthält zu wenige Elemente. Es wurde {0} oder mehr erwartet.",
+ "Array has too many items according to schema. Expected {0} or fewer.": "Das Array weist gemäß Schema zu viele Elemente auf. Es wurde {0} oder weniger erwartet.",
+ "Array has too many items that match the contains contraint. Expected {0} or less.": "Array hat zu viele Elemente, die der „contains“-Beschränkung entsprechen. Es wurde {0} oder weniger erwartet.",
+ "Array has too many items. Expected {0} or fewer.": "Das Array enthält zu viele Elemente. Es wurde {0} oder weniger erwartet.",
+ "Colon expected": "Ein Doppelpunkt wurde erwartet.",
+ "Comments are not permitted in JSON.": "Kommentare sind in JSON nicht zulässig.",
+ "Comments from schema authors to readers or maintainers of the schema.": "Kommentare von Schema-Autoren an Leser oder Pfleger des Schemas.",
+ "Configure": "Konfigurieren",
+ "Configured by extension: {0}": "Konfiguriert durch Erweiterung: {0}",
+ "Configured in user settings": "In Benutzereinstellungen konfiguriert",
+ "Configured in workspace settings": "In Arbeitsbereichseinstellungen konfiguriert",
+ "Default value": "Standardwert",
+ "Describes the content encoding of a string property.": "Beschreibt die Inhaltscodierung einer Zeichenfolgeneigenschaft.",
+ "Describes the format expected for the value. By default, not used for validation": "Beschreibt das für den Wert erwartete Format. Wird standardmäßig nicht zur Überprüfung verwendet",
+ "Describes the media type of a string property.": "Beschreibt den Medientyp einer Zeichenfolgeneigenschaft.",
+ "Downloading schemas is disabled in untrusted workspaces": "Das Herunterladen von Schemas ist in nicht vertrauenswürdigen Arbeitsbereichen nicht möglich.",
+ "Downloading schemas is disabled through setting '{0}'": "Das Herunterladen von Schemas wird über die Einstellung \"{0}\" deaktiviert.",
+ "Downloading schemas is disabled. Click to configure.": "Das Herunterladen von Schemas ist deaktiviert. Klicken Sie, um eine Konfiguration durchzuführen.",
+ "Draft-03 schemas are not supported.": "Draft-03-Schemas werden nicht unterstützt.",
+ "Duplicate anchor declaration: '{0}'": "Doppelte Ankerdeklaration: „{0}“",
+ "Duplicate object key": "Doppelter Objektschlüssel",
+ "Either a schema or a boolean. If a schema, used to validate all properties not matched by 'properties', 'propertyNames', or 'patternProperties'. If false, any properties not defined by the adajacent keywords will cause this schema to fail.": "Entweder ein Schema oder ein boolescher Wert. Wenn es sich um ein Schema handelt, werden alle Eigenschaften überprüft, die nicht mit „properties“, „propertyNames“ oder „patternProperties“ übereinstimmen. Wenn dies nicht der Fall ist, führen alle Eigenschaften, die nicht durch die angrenzenden Schlüsselwörter definiert sind, zum Scheitern dieses Schemas.",
+ "Either a string of one of the basic schema types (number, integer, null, array, object, boolean, string) or an array of strings specifying a subset of those types.": "Entweder eine Zeichenfolge eines der grundlegenden Schematypen (Zahl, Ganzzahl, Null, Array, Objekt, Boolescher Wert, Zeichenfolge) oder eine Reihe von Zeichenfolgen, die eine Untermenge dieser Typen angeben.",
+ "End of file expected.": "Ende der Datei erwartet.",
+ "Expected a JSON object, array or literal.": "Es wurde ein JSON-Objekt, ein Array oder ein Literal erwartet.",
+ "Expected comma": "Komma erwartet",
+ "Expected comma or closing brace": "Komma oder schließende geschweifte Klammer erwartet",
+ "Expected comma or closing bracket": "Komma oder schließende Klammer erwartet",
+ "Failed to sort the JSONC document, please consider opening an issue.": "Fehler beim Sortieren des JSONC-Dokuments. Erwägen Sie, ein Problem zu öffnen.",
+ "For arrays, only when items is set as an array. If items are a schema, this schema validates items after the ones specified by the items schema. If false, additional items will cause validation to fail.": "Für Arrays, nur wenn Elemente als Array festgelegt sind. Wenn Elemente ein Schema sind, validiert dieses Schema Elemente nach den im Elementschema angegebenen Elementen. Wenn dies nicht der Fall ist, führen zusätzliche Elemente zu einer fehlgeschlagenen Validierung.",
+ "For arrays. Can either be a schema to validate every element against or an array of schemas to validate each item against in order (the first schema will validate the first element, the second schema will validate the second element, and so on.": "Für Arrays. Kann entweder ein Schema sein, gegen das jedes Element validiert wird, oder ein Array von Schemata, gegen die jedes Element der Reihe nach validiert wird (das erste Schema validiert das erste Element, das zweite Schema validiert das zweite Element usw.).",
+ "If all of the items in the array must be unique. Defaults to false.": "Wenn alle Elemente im Array eindeutig sein müssen. Der Standardwert ist „FALSE“.",
+ "If the instance is an object, this keyword validates if every property name in the instance validates against the provided schema.": "Wenn es sich bei der Instanz um ein Objekt handelt, prüft dieses Schlüsselwort, ob jeder Eigenschaftsname in der Instanz anhand des angegebenen Schemas validiert wird.",
+ "Incorrect type. Expected \"{0}\".": "Falscher Typ. „{0}“ erwartet.",
+ "Incorrect type. Expected one of {0}.": "Falscher Typ. Es wurde einer von {0} erwartet.",
+ "Indicates that the value of the instance is managed exclusively by the owning authority.": "Gibt an, dass der Wert der Instanz ausschließlich von der besitzenden Autorität verwaltet wird.",
+ "Invalid characters in string. Control characters must be escaped.": "Ungültige Zeichen in der Zeichenfolge. Steuerzeichen müssen mit Escapezeichen versehen werden.",
+ "Invalid color format. Use #RGB, #RGBA, #RRGGBB or #RRGGBBAA.": "Ungültiges Farbformat. Verwenden Sie #RGB, #RGBA, #RRGGBB oder #RRGGBBAA.",
+ "Invalid escape character in string.": "Ungültiges Escapezeichen in Zeichenfolge.",
+ "Invalid number format.": "Ungültiges Zahlenformat.",
+ "Invalid unicode sequence in string.": "Ungültige Unicode-Sequenz in Zeichenfolge.",
+ "Item does not match any validation rule from the array.": "Das Element stimmt mit keiner Validierungsregel aus dem Array überein.",
+ "JSON Language Server": "JSON-Sprachserver",
+ "JSON Outline Status": "JSON-Gliederungsstatus",
+ "JSON Validation Status": "JSON-Validierungsstatus",
+ "JSON schema cache cleared.": "Der JSON-Schemacache wurde gelöscht.",
+ "JSON schema configured": "JSON-Schema konfiguriert",
+ "JSON: Schema Resolution Error": "JSON: Schemaauflösungsfehler",
+ "Learn more about JSON schema configuration...": "Weitere Informationen zur JSON-Schemakonfiguration...",
+ "Loading JSON info": "JSON-Informationen werden geladen.",
+ "Makes the maximum property exclusive.": "Macht die maximale Eigenschaft exklusiv.",
+ "Makes the minimum property exclusive.": "Macht die minimale Eigenschaft exklusiv.",
+ "Matches a schema that is not allowed.": "Entspricht einem unzulässigen Schema.",
+ "Matches multiple schemas when only one must validate.": "Gleicht mehrere Schemas ab, wenn nur ein Schema überprüft werden muss.",
+ "Missing property \"{0}\".": "Fehlende Eigenschaft: „{0}“.",
+ "New array": "Neues Array",
+ "New object": "Neues Objekt",
+ "No schema configured for this file": "Für diese Datei ist kein Schema konfiguriert",
+ "No schema validation": "Keine Schemaüberprüfung",
+ "Not used for validation. Place subschemas here that you wish to reference inline with $ref.": "Wird nicht für die Überprüfung verwendet. Platzieren Sie hier Unterschemas, auf die Sie inline mit $ref verweisen möchten.",
+ "Object has fewer properties than the required number of {0}": "Das Objekt hat weniger Eigenschaften als die erforderliche Anzahl von {0}",
+ "Object has more properties than limit of {0}.": "Das Objekt hat mehr Eigenschaften als das Limit von {0}.",
+ "Object is missing property {0} required by property {1}.": "Dem Objekt fehlt die Eigenschaft {0}, die für die Eigenschaft {1} erforderlich ist.",
+ "Open Extension": "Erweiterung öffnen",
+ "Open Settings": "Einstellungen öffnen",
+ "Outline": "Gliederung",
+ "Problem reading content from '{0}': UTF-8 with BOM detected, only UTF 8 is allowed.": "Problem beim Lesen von Inhalt aus „{0}“: UTF-8 mit BOM erkannt, nur UTF 8 ist zulässig.",
+ "Problems loading reference '{0}': {1}": "Probleme beim Laden des Verweises „{0}“: {1}",
+ "Property expected": "Eigenschaft erwartet",
+ "Property keys must be doublequoted": "Eigenschaftsschlüssel müssen mit doppelter Anführungszeichen angegeben werden.",
+ "Property {0} is not allowed.": "Eigenschaft {0} ist nicht zulässig.",
+ "Reference a definition hosted on any location.": "Verweisen Sie auf eine Definition, die an einem beliebigen Speicherort gehostet wird.",
+ "Sample JSON values associated with a particular schema, for the purpose of illustrating usage.": "Json-Beispielwerte, die einem bestimmten Schema zugeordnet sind, zur Veranschaulichung der Verwendung.",
+ "Schema not found: {0}": "Schema nicht gefunden: {0}",
+ "Schema validated": "Schema überprüft",
+ "Select the schema to use for {0}": "Wählen Sie das Schema aus, das für {0} verwendet werden soll",
+ "Show Schemas": "Schemata anzeigen",
+ "Sort JSON": "JSON sortieren",
+ "String does not match the pattern of \"{0}\".": "Die Zeichenfolge entspricht nicht dem Muster von „{0}“.",
+ "String is longer than the maximum length of {0}.": "Die Zeichenfolge ist länger als die maximale Länge von {0}.",
+ "String is not a RFC3339 date-time.": "Die Zeichenfolge ist kein RFC3339-Datums-/Uhrzeitwert.",
+ "String is not a RFC3339 date.": "Die Zeichenfolge ist kein RFC3339-Datum.",
+ "String is not a RFC3339 time.": "Die Zeichenfolge ist keine RFC3339-Zeit.",
+ "String is not a URI: {0}": "Die Zeichenfolge ist kein URI: {0}",
+ "String is not a hostname.": "Die Zeichenfolge ist kein Hostname.",
+ "String is not an IPv4 address.": "Die Zeichenfolge ist keine IPv4-Adresse.",
+ "String is not an IPv6 address.": "Die Zeichenfolge ist keine IPv6-Adresse.",
+ "String is not an e-mail address.": "Die Zeichenfolge ist keine E-Mail-Adresse.",
+ "String is shorter than the minimum length of {0}.": "Die Zeichenfolge ist kürzer als die Mindestlänge von {0}.",
+ "The \"else\" subschema is used for validation when the \"if\" subschema fails.": "Das Unterschema „else“ wird für die Überprüfung verwendet, wenn das Unterschema „if“ fehlschlägt.",
+ "The \"then\" subschema is used for validation when the \"if\" subschema succeeds.": "Das Unterschema „then“ wird für die Überprüfung verwendet, wenn das Unterschema „if“ erfolgreich ist.",
+ "The maximum length of a string.": "Die maximale Länge einer Zeichenfolge.",
+ "The maximum number of items that can be inside an array. Inclusive.": "Die maximale Anzahl von Elementen, die sich innerhalb eines Arrays befinden können. Inklusive.",
+ "The maximum number of properties an object can have. Inclusive.": "Die maximale Anzahl von Eigenschaften, die ein Objekt aufweisen kann. Inklusive.",
+ "The maximum numerical value, inclusive by default.": "Der maximale numerische Wert, standardmäßig inklusive.",
+ "The minimum length of a string.": "Die Mindestlänge einer Zeichenfolge.",
+ "The minimum number of items that can be inside an array. Inclusive.": "Die Mindestanzahl von Elementen, die sich innerhalb eines Arrays befinden können. Inklusive.",
+ "The minimum number of properties an object can have. Inclusive.": "Die Mindestanzahl von Eigenschaften, die ein Objekt aufweisen kann. Inklusive.",
+ "The minimum numerical value, inclusive by default.": "Der numerische Mindestwert (standardmäßig einschließlich).",
+ "The schema to verify this document against.": "Das Schema, mit dem dieses Dokument überprüft werden soll.",
+ "The schema uses meta-schema features ({0}) that are not yet supported by the validator.": "Das Schema verwendet Metaschemafunktionen ({0}), die noch nicht vom Validierungssteuerelement unterstützt werden.",
+ "The set of literal values that are valid.": "Der Satz gültiger Literalwerte.",
+ "The validation outcome of the \"if\" subschema controls which of the \"then\" or \"else\" keywords are evaluated.": "Das Validierungsergebnis des Unterschemas „if“ steuert, welches der Schlüsselwörter „then“ oder „else“ ausgewertet wird.",
+ "Trailing comma": "Nachgestelltes Komma",
+ "URI expected.": "URI erwartet.",
+ "URI is expected.": "Es wird ein URI erwartet.",
+ "URI with a scheme is expected.": "Ein URI mit einem Schema wird erwartet.",
+ "Unable to compute used schemas: No document": "Die verwendeten Schemas können nicht berechnet werden: Kein Dokument",
+ "Unable to compute used schemas: {0}": "Die verwendeten Schemas können nicht berechnet werden: {0}",
+ "Unable to download schemas in untrusted workspaces.": "Schemas können in nicht vertrauenswürdigen Arbeitsbereichen nicht heruntergeladen werden.",
+ "Unable to load schema from '{0}'. No schema request service available": "Das Schema kann nicht aus „{0}“ geladen werden. Kein Schemaanforderungsdienst verfügbar",
+ "Unable to load schema from '{0}': No content.": "Das Schema kann nicht aus „{0}“ geladen werden: Kein Inhalt.",
+ "Unable to load schema from '{0}': {1}.": "Das Schema kann nicht aus „{0}“ geladen werden: {1}.",
+ "Unable to load {0}": "\"{0}\" kann nicht geladen werden.",
+ "Unable to parse content from '{0}': Parse error at offset {1}.": "Inhalt von „{0}“ kann nicht analysiert werden: Analysefehler bei Offset {1}.",
+ "Unable to resolve schema. Click to retry.": "Das Schema kann nicht aufgelöst werden. Klicken Sie, um es noch mal zu versuchen.",
+ "Unexpected end of comment.": "Unerwartetes Ende des Kommentars.",
+ "Unexpected end of number.": "Unerwartetes Ende der Zahl.",
+ "Unexpected end of string.": "Unerwartetes Ende der Zeichenfolge.",
+ "Value expected": "Ein Wert wurde erwartet.",
+ "Value is above the exclusive maximum of {0}.": "Der Wert liegt über dem exklusiven Maximum von {0}.",
+ "Value is above the maximum of {0}.": "Der Wert liegt über dem Maximum von {0}.",
+ "Value is below the exclusive minimum of {0}.": "Der Wert liegt unter dem exklusiven Minimum von {0}.",
+ "Value is below the minimum of {0}.": "Der Wert liegt unter dem Minimum von {0}.",
+ "Value is deprecated": "Der Wert ist veraltet.",
+ "Value is not accepted. Valid values: {0}.": "Der Wert wird nicht akzeptiert. Gültige Werte: {0}.",
+ "Value is not divisible by {0}.": "Der Wert ist durch {0} nicht teilbar.",
+ "Value must be {0}.": "Wert muss {0} sein",
+ "multiple JSON schemas configured": "Mehrere JSON-Schemas konfiguriert",
+ "no JSON schema configured": "Kein JSON-Schema konfiguriert",
+ "only {0} document symbols shown for performance reasons": "aus Leistungsgründen werden nur {0} Dokumentsymbole angezeigt",
+ "{0} is a directory, not a file": "{0} ist ein Verzeichnis, keine Datei"
+ },
+ "package": {
+ "description": "Bietet umfangreiche Sprachunterstützung für JSON-Dateien.",
+ "displayName": "JSON-Sprachfeatures",
+ "json.clickToRetry": "Klicken Sie, um es noch mal zu versuchen.",
+ "json.colorDecorators.enable.deprecationMessage": "Die Einstellung \"json.colorDecorators.enable\" ist veraltet und wurde durch \"editor.colorDecorators\" ersetzt.",
+ "json.colorDecorators.enable.desc": "Aktiviert oder deaktiviert Farb-Decorators",
+ "json.command.clearCache": "Löschen des Schemacaches",
+ "json.command.sort": "Dokument sortieren",
+ "json.enableSchemaDownload.desc": "Sofern aktiviert, können JSON-Schemas aus HTTP- und HTTPS-Speicherorten abgerufen werden.",
+ "json.format.enable.desc": "JSON-Standardformatierer aktivieren/deaktivieren",
+ "json.format.keepLines.desc": "Behalten Sie bei der Formatierung alle vorhandenen neuen Zeilen bei.",
+ "json.maxItemsComputed.desc": "Die maximale Anzahl der berechneten Umrisssymbole und Faltbereiche (aus Leistungsgründen begrenzt).",
+ "json.maxItemsExceededInformation.desc": "Hiermit wird eine Benachrichtigung angezeigt, wenn die maximale Anzahl von Gliederungssymbolen und Faltregionen überschritten wird.",
+ "json.schemaResolutionErrorMessage": "Das Schema kann nicht aufgelöst werden.",
+ "json.schemas.desc": "Hiermit werden Schemas JSON-Dateien im aktuellen Projekt zugeordnet.",
+ "json.schemas.fileMatch.desc": "Ein Array von Dateimustern für den Abgleich, wenn JSON-Dateien in Schemas aufgelöst werden. Die Zeichen \"*\" und \"**\" können als Platzhalter verwendet werden. Ausschlussmuster können ebenfalls definiert werden und beginnen mit \"!\". Eine Datei gilt als Übereinstimmung, wenn mindestens ein übereinstimmendes Muster vorhanden ist und das letzte übereinstimmende Muster kein Ausschlussmuster ist.",
+ "json.schemas.fileMatch.item.desc": "Ein Dateimuster, das \"*\" und \"**\" enthalten kann, und das beim Auflösen von JSON-Dateien in Schemas zum Abgleich verwendet wird. Wenn es mit \"!\" beginnt, definiert es ein Ausschlussmuster.",
+ "json.schemas.schema.desc": "Die Schemadefinition für die angegebene URL. Das Schema muss nur angegeben werden, um Zugriffe auf die Schema-URL zu vermeiden.",
+ "json.schemas.url.desc": "Eine URL oder ein absoluter Dateipfad zu einem Schema. Kann ein relativer Pfad (beginnend mit \"./\") in den Arbeitsbereichs- und Arbeitsbereichsordnereinstellungen sein.",
+ "json.tracing.desc": "Verfolgt die Kommunikation zwischen VS Code und JSON-Sprachserver nach.",
+ "json.validate.enable.desc": "Aktiviert/deaktiviert die JSON-Überprüfung.",
+ "json.workspaceTrust": "Die Erweiterung benötigt eine Vertrauensstellung des Arbeitsbereichs, um Schemas von HTTP und HTTPS zu laden."
+ }
+ }
+}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-de/translations/extensions/vscode.json.i18n.json b/i18n/vscode-language-pack-de/translations/extensions/vscode.json.i18n.json
index d19a4ef8ee..980a253110 100644
--- a/i18n/vscode-language-pack-de/translations/extensions/vscode.json.i18n.json
+++ b/i18n/vscode-language-pack-de/translations/extensions/vscode.json.i18n.json
@@ -9,8 +9,8 @@
"version": "1.0.0",
"contents": {
"package": {
- "displayName": "JSON-Sprachgrundlagen",
- "description": "Bietet Syntaxhervorhebung und Klammerabgleich in JSON-Dateien."
+ "description": "Bietet Syntaxhervorhebung und Klammerabgleich in JSON-Dateien.",
+ "displayName": "JSON-Sprachgrundlagen"
}
}
}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-de/translations/extensions/julia.i18n.json b/i18n/vscode-language-pack-de/translations/extensions/vscode.julia.i18n.json
similarity index 100%
rename from i18n/vscode-language-pack-de/translations/extensions/julia.i18n.json
rename to i18n/vscode-language-pack-de/translations/extensions/vscode.julia.i18n.json
diff --git a/i18n/vscode-language-pack-de/translations/extensions/latex.i18n.json b/i18n/vscode-language-pack-de/translations/extensions/vscode.latex.i18n.json
similarity index 100%
rename from i18n/vscode-language-pack-de/translations/extensions/latex.i18n.json
rename to i18n/vscode-language-pack-de/translations/extensions/vscode.latex.i18n.json
diff --git a/i18n/vscode-language-pack-de/translations/extensions/vscode.less.i18n.json b/i18n/vscode-language-pack-de/translations/extensions/vscode.less.i18n.json
index 11304efeac..7ca2dc63e2 100644
--- a/i18n/vscode-language-pack-de/translations/extensions/vscode.less.i18n.json
+++ b/i18n/vscode-language-pack-de/translations/extensions/vscode.less.i18n.json
@@ -9,8 +9,8 @@
"version": "1.0.0",
"contents": {
"package": {
- "displayName": "Less-Sprachgrundlagen",
- "description": "Bietet Syntaxhervorhebung, Klammernabgleich und Falten in LESS-Dateien."
+ "description": "Bietet Syntaxhervorhebung, Klammernabgleich und Falten in LESS-Dateien.",
+ "displayName": "Less-Sprachgrundlagen"
}
}
}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-de/translations/extensions/vscode.log.i18n.json b/i18n/vscode-language-pack-de/translations/extensions/vscode.log.i18n.json
index 81d810b45b..fbc991fe0d 100644
--- a/i18n/vscode-language-pack-de/translations/extensions/vscode.log.i18n.json
+++ b/i18n/vscode-language-pack-de/translations/extensions/vscode.log.i18n.json
@@ -9,8 +9,8 @@
"version": "1.0.0",
"contents": {
"package": {
- "displayName": "Protokoll",
- "description": "Bietet Syntaxhervorhebung für Dateien mit .log-Erweiterung."
+ "description": "Bietet Syntaxhervorhebung für Dateien mit .log-Erweiterung.",
+ "displayName": "Protokoll"
}
}
}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-de/translations/extensions/vscode.lua.i18n.json b/i18n/vscode-language-pack-de/translations/extensions/vscode.lua.i18n.json
index 4f91e49cf3..1dbb57ca87 100644
--- a/i18n/vscode-language-pack-de/translations/extensions/vscode.lua.i18n.json
+++ b/i18n/vscode-language-pack-de/translations/extensions/vscode.lua.i18n.json
@@ -9,8 +9,8 @@
"version": "1.0.0",
"contents": {
"package": {
- "displayName": "Lua-Sprachgrundlagen",
- "description": "Bietet Syntaxhervorhebung und Klammernabgleich in Lua-Dateien."
+ "description": "Bietet Syntaxhervorhebung und Klammernabgleich in Lua-Dateien.",
+ "displayName": "Lua-Sprachgrundlagen"
}
}
}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-de/translations/extensions/vscode.make.i18n.json b/i18n/vscode-language-pack-de/translations/extensions/vscode.make.i18n.json
index 66076eece7..8febaa4a6c 100644
--- a/i18n/vscode-language-pack-de/translations/extensions/vscode.make.i18n.json
+++ b/i18n/vscode-language-pack-de/translations/extensions/vscode.make.i18n.json
@@ -9,8 +9,8 @@
"version": "1.0.0",
"contents": {
"package": {
- "displayName": "Make-Sprachgrundlagen",
- "description": "Bietet Syntaxhervorhebung und Klammernabgleich in Make-Dateien."
+ "description": "Bietet Syntaxhervorhebung und Klammernabgleich in Make-Dateien.",
+ "displayName": "Make-Sprachgrundlagen"
}
}
}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-de/translations/extensions/vscode.markdown-language-features.i18n.json b/i18n/vscode-language-pack-de/translations/extensions/vscode.markdown-language-features.i18n.json
new file mode 100644
index 0000000000..80f0580e33
--- /dev/null
+++ b/i18n/vscode-language-pack-de/translations/extensions/vscode.markdown-language-features.i18n.json
@@ -0,0 +1,172 @@
+{
+ "": [
+ "--------------------------------------------------------------------------------------------",
+ "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."
+ ],
+ "version": "1.0.0",
+ "contents": {
+ "bundle": {
+ "...1 additional file not shown": "...1 weitere Datei wird nicht angezeigt",
+ "...{0} additional files not shown": "...{0} weitere Dateien werden nicht angezeigt",
+ "Allow all content and script execution. Not recommended": "Alle Inhalte und Skriptausführung zulassen. Nicht empfohlen.",
+ "Allow insecure content": "Unsicheren Inhalt zulassen",
+ "Allow insecure local content": "Unsichere lokale Inhalte zulassen",
+ "Always": "Immer",
+ "An unexpected error occurred while restoring the Markdown preview.": "Unerwarteter Fehler beim Wiederherstellen der Markdownvorschau.",
+ "Checking for Markdown links to update": "Es wird nach zu aktualisierenden Markdownlinks gesucht.",
+ "Content Disabled Security Warning": "Sicherheitswarnung – Inhalt deaktiviert",
+ "Could not load 'markdown.styles': {0}": "'markdown.styles' konnte nicht geladen werden: {0}",
+ "Could not open {0}": "{0} konnte nicht geöffnet werden.",
+ "Disable": "Deaktivieren",
+ "Disable preview security warning in this workspace": "Vorschau von Sicherheitswarnungen in diesem Arbeitsbereich deaktivieren",
+ "Disable validation of Markdown links": "Überprüfung von Markdownlinks deaktivieren",
+ "Does not affect the content security level": "Hat keinen Einfluss auf die Inhaltssicherheitsebene",
+ "Enable": "Aktivieren",
+ "Enable loading content over http": "Laden von Inhalten über HTTP aktivieren",
+ "Enable loading content over http served from localhost": "Laden von Inhalten über HTTP von localhost aktivieren",
+ "Enable preview security warnings in this workspace": "Vorschau von Sicherheitswarnungen in diesem Arbeitsbereich aktivieren",
+ "Enable validation of Markdown links": "Überprüfung von Markdownlinks aktivieren",
+ "Exclude '{0}' from link validation.": "Schließen Sie '{0}' von der Linkvalidierung aus.",
+ "Extract to link definition": "In Verknüpfungsdefinition extrahieren",
+ "File does not exist at path: {0}": "Die Datei ist unter dem Pfad nicht vorhanden: {0}",
+ "Find file references failed. No resource provided.": "Fehler beim Suchen nach Dateiverweisen. Es wurde keine Ressource angegeben.",
+ "Finding file references": "Dateiverweise werden gesucht",
+ "Follow link": "Verknüpfung folgen",
+ "Go to link definition": "Zur Linkdefinition gehen",
+ "Header does not exist in file: {0}": "Der Header ist in der Datei nicht vorhanden: {0}",
+ "Insert Markdown Audio": "Markdownaudio einfügen",
+ "Insert Markdown Image": "Markdownbild einfügen",
+ "Insert Markdown Images": "Markdownbilder einfügen",
+ "Insert Markdown Images and Links": "Markdownbilder und -links einfügen",
+ "Insert Markdown Link": "Markdownlink einfügen",
+ "Insert Markdown Links": "Markdownlinks einfügen",
+ "Insert Markdown Media": "Markdownmedien einfügen",
+ "Insert Markdown Media and Images": "Markdownmedien und -bilder einfügen",
+ "Insert Markdown Media and Links": "Markdownmedien und -links einfügen",
+ "Insert Markdown Video": "Markdownvideo einfügen",
+ "Insert image": "Bild einfügen",
+ "Insert link": "Link einfügen",
+ "Link definition for '{0}' already exists": "Die Verknüpfungsdefinition für „{0}“ ist bereits vorhanden",
+ "Link definition is unused": "Die Verknüpfungsdefinition wird nicht verwendet",
+ "Link is already a reference": "Die Verknüpfung ist bereits ein Verweis",
+ "Link is also defined here": "Die Verknüpfung ist hier ebenfalls definiert",
+ "Link to '# {0}' in '{1}'": "Link zu „# {0}“ in „{1}“",
+ "Link to '{0}'": "Link zu „{0}“",
+ "Markdown Language Server": "Markdown Sprachserver",
+ "Markdown link validation disabled": "Markdownlinküberprüfung deaktiviert",
+ "Markdown link validation enabled": "Markdownlinküberprüfung aktiviert",
+ "Media": "Medien",
+ "More Information": "Weitere Informationen",
+ "Never": "Nie",
+ "No": "Nein",
+ "No header found: '{0}'": "Kein Header gefunden: „{0}“",
+ "No link definition found: '{0}'": "Keine Linkdefinition gefunden: „{0}“",
+ "Not on link": "Nicht auf Verknüpfung",
+ "Only load secure content": "Nur sicheren Inhalt laden",
+ "Paste and update pasted links": "Eingefügte Links einfügen und aktualisieren",
+ "Potentially unsafe or insecure content has been disabled in the Markdown preview. Change the Markdown preview security setting to allow insecure content or enable scripts": "Potenziell unsichere Inhalte wurden in der Markdown-Vorschau deaktiviert. Ändern Sie die Sicherheitseinstellung der Markdown-Vorschau, um unsichere Inhalte zuzulassen oder Skripts zu aktivieren.",
+ "Preview {0}": "Vorschau von {0}",
+ "Reference link '{0}'": "Referenzlink „{0}“",
+ "Remove duplicate link definition": "Doppelte Verknüpfungsdefinition entfernen",
+ "Remove unused link definition": "Nicht verwendete Verknüpfungsdefinition entfernen",
+ "Renaming is not supported here. Try renaming a header or link.": "Das Umbenennen wird hier nicht unterstützt. Versuchen Sie, eine Kopfzeile oder eine Verknüpfung umzubenennen.",
+ "Select security settings for Markdown previews in this workspace": "Sicherheitseinstellungen für die Markdown-Vorschau in diesem Arbeitsbereich auswählen",
+ "Some content has been disabled in this document": "In diesem Dokument wurden einige Inhalte deaktiviert.",
+ "Strict": "Strict",
+ "Update Markdown links for '{0}'?": "Markdownlinks für „{0}“ aktualisieren?",
+ "Update Markdown links for the following {0} files?": "Markdownlinks für die folgenden {0}-Dateien aktualisieren?",
+ "Yes": "Ja",
+ "[Preview] {0}": "[Vorschau] {0}",
+ "{0} cannot be found": "{0} kann nicht gefunden werden."
+ },
+ "package": {
+ "configuration.copyIntoWorkspace.mediaFiles": "Versuchen Sie, externe Bild- und Videodateien in den Arbeitsbereich zu kopieren.",
+ "configuration.copyIntoWorkspace.never": "Kopieren Sie keine externen Dateien in den Arbeitsbereich.",
+ "configuration.markdown.copyFiles.destination": "Konfiguriert den Pfad und Dateinamen von Dateien, die durch Kopieren/Einfügen oder Drag & Drop erstellt wurden. Dies ist eine Zuordnung von Globs, die mit einem Markdowndokumentpfad mit dem Zielpfad übereinstimmen, in dem die neue Datei erstellt werden soll.\r\n\r\nDer Zielpfad kann die folgenden Variablen verwenden:\r\n\r\n– „${documentDirName}“: Absoluter übergeordneter Verzeichnispfad des Markdowndokuments, z. B. „/Users/me/myProject/docs“.\r\n– „${documentRelativeDirName}“: Relativer übergeordneter Verzeichnispfad des Markdowndokuments, z. B. „docs“. Dies ist identisch mit „${documentDirName}“, wenn die Datei nicht Teil eines Arbeitsbereichs ist.\r\n– „${documentFileName}“: Der vollständige Dateiname des Markdowndokuments, z. B. „README.md“.\r\n– „${documentBaseName}“: Der Basisname des Markdowndokuments, z. B. „README“.\r\n– „${documentExtName}“: Die Erweiterung des Markdowndokuments, z. B. „md“.\r\n– „${documentFilePath}“: Absoluter Pfad des Markdowndokuments, z. B. „/Users/me/myProject/docs/README.md“.\r\n– „${documentRelativeFilePath}“: Relativer Pfad des Markdowndokuments, z. B. „docs/README.md“. Dies ist identisch mit „${documentFilePath}“, wenn die Datei nicht Teil eines Arbeitsbereichs ist.\r\n– „${documentWorkspaceFolder}“: Der Arbeitsbereichsordner für das Markdowndokument, z. B. „/Users/me/myProject“. Dies ist identisch mit „${documentDirName}“, wenn die Datei nicht Teil eines Arbeitsbereichs ist.\r\n– „${fileName}“: Der Dateiname der gelöschten Datei, z. B. „image.png“.\r\n– „${fileExtName}“: Die Erweiterung der gelöschten Datei, z. B. „png“.\r\n– „${unixTime}“: Der aktuelle Unix-Zeitstempel in Millisekunden.\r\n– „${isoTime}“ – Die aktuelle Zeit im ISO 8601-Format, z. B. „2025-06-06T08:40:32.123Z“.",
+ "configuration.markdown.copyFiles.overwriteBehavior": "Steuert, ob Dateien, die durch Ablegen oder Einfügen erstellt werden, vorhandene Dateien überschreiben sollen.",
+ "configuration.markdown.copyFiles.overwriteBehavior.nameIncrementally": "Wenn bereits eine Datei mit demselben Namen vorhanden ist, fügen Sie eine Zahl an den Dateinamen an, z. B.: \"image.png\" wird zu \"image-1.png\".",
+ "configuration.markdown.copyFiles.overwriteBehavior.overwrite": "Wenn bereits eine Datei mit dem gleichen Namen vorhanden ist, überschreiben Sie sie.",
+ "configuration.markdown.editor.drop.copyIntoWorkspace": "Steuert, ob Dateien außerhalb des Arbeitsbereichs, die in einen Markdown-Editor abgelegt werden, in den Arbeitsbereich kopiert werden sollen.\r\n\r\nVerwenden Sie \"#markdown.copyFiles.destination#\", um zu konfigurieren, wo kopierte, abgelegte Dateien erstellt werden sollen.",
+ "configuration.markdown.editor.drop.enabled": "Das Ablegen von Dateien in einem Markdown-Editor aktivieren, während Sie die UMSCHALTTASTE gedrückt halten. Erfordert die Aktivierung von \"#editor.dropIntoEditor.enabled#\".",
+ "configuration.markdown.editor.drop.enabled.always": "Markdownlinks immer einfügen.",
+ "configuration.markdown.editor.drop.enabled.never": "Markdownlinks nie erstellen.",
+ "configuration.markdown.editor.drop.enabled.smart": "Erstellen Sie Markdownlinks standardmäßig intelligent, wenn sie nicht in einen Codeblock oder ein anderes spezielles Element fallen. Verwenden Sie das Ablagewidget, um zwischen dem Einfügen als Nur-Text- oder Markdownlinks zu wechseln.",
+ "configuration.markdown.editor.filePaste.audioSnippet": "Ausschnitt, der beim Hinzufügen von Audio zu Markdown verwendet wird. Dieser Codeausschnitt kann die folgenden Variablen verwenden:\r\n– „${src}“ – Der aufgelöste Pfad der Audiodatei.\r\n– „${title}“ – Der für das Audio verwendete Titel. Für diese Variable wird automatisch ein Ausschnittplatzhalter erstellt.",
+ "configuration.markdown.editor.filePaste.copyIntoWorkspace": "Steuert, ob Dateien außerhalb des Arbeitsbereichs, die in einen Markdown-Editor eingefügt werden, in den Arbeitsbereich kopiert werden sollen.\r\n\r\nVerwenden Sie \"#markdown.copyFiles.destination#\", um zu konfigurieren, wo kopierte Dateien erstellt werden sollen.",
+ "configuration.markdown.editor.filePaste.enabled": "Aktivieren Sie das Einfügen von Dateien in einen Markdown-Editor, um Markdownlinks zu erstellen. Erfordert die Aktivierung von \"#editor.pasteAs.enabled#\".",
+ "configuration.markdown.editor.filePaste.enabled.always": "Markdownlinks immer einfügen.",
+ "configuration.markdown.editor.filePaste.enabled.never": "Markdownlinks nie erstellen.",
+ "configuration.markdown.editor.filePaste.enabled.smart": "Erstellen Sie Markdownlinks standardmäßig intelligent, wenn sie nicht in einen Codeblock oder ein anderes spezielles Element eingefügt werden. Verwenden Sie das Widget zum Einfügen, um zwischen dem Einfügen als Nur-Text- oder Markdownlinks zu wechseln.",
+ "configuration.markdown.editor.filePaste.videoSnippet": "Ausschnitt, der beim Hinzufügen von Videos zu Markdown verwendet wird. Dieser Codeausschnitt kann die folgenden Variablen verwenden:\r\n– „${src}“ – Der aufgelöste Pfad der Videodatei.\r\n– „${title}“ – Der für das Video verwendete Titel. Für diese Variable wird automatisch ein Ausschnittplatzhalter erstellt.",
+ "configuration.markdown.editor.pasteUrlAsFormattedLink.enabled": "Steuert, ob Markdownlinks erstellt werden, wenn URLs in einen Markdown-Editor eingefügt werden. Erfordert die Aktivierung von „#editor.pasteAs.enabled#“.",
+ "configuration.markdown.editor.updateLinksOnPaste.enabled": "Aktivieren/deaktivieren Sie eine Einfügeoption, die Links und Verweise in Text aktualisiert, der zwischen Markdown-Editoren kopiert und eingefügt wird.\r\n\r\nUm dieses Feature zu verwenden, klicken Sie nach dem Einfügen von Text, der aktualisierbare Links enthält, einfach auf das Widget „Einfügen“, und wählen Sie „Eingefügte Links einfügen und aktualisieren“ aus.",
+ "configuration.markdown.links.openLocation.beside": "Öffnen Sie die Links neben dem aktiven Editor.",
+ "configuration.markdown.links.openLocation.currentGroup": "Öffnen Sie Links in der aktiven Editor-Gruppe.",
+ "configuration.markdown.links.openLocation.description": "Steuert, wo Links in Markdowndateien geöffnet werden sollen.",
+ "configuration.markdown.occurrencesHighlight.enabled": "Das Hervorheben von Verknüpfungsvorkommnissen im aktuellen Dokument aktivieren.",
+ "configuration.markdown.preferredMdPathExtensionStyle": "Steuert, ob Markdowndateien Dateierweiterungen (z. B. \".md\") für Links hinzugefügt werden oder nicht. Diese Einstellung wird verwendet, wenn Dateipfade durch Tools wie Pfadvervollständigungen oder Dateiumbenennungen hinzugefügt werden.",
+ "configuration.markdown.preferredMdPathExtensionStyle.auto": "Versuchen Sie bei vorhandenen Pfaden, den Dateierweiterungsstil beizubehalten. Fügen Sie für neue Pfade Dateierweiterungen hinzu.",
+ "configuration.markdown.preferredMdPathExtensionStyle.includeExtension": "Schließen Sie die Dateierweiterung lieber ein. Beispielsweise fügen Pfadvervollständigungen zu einer Datei mit dem Namen \"file.md\" eine Datei namens \"file\" ohne das zugehörige \".md\" ein.",
+ "configuration.markdown.preferredMdPathExtensionStyle.removeExtension": "Entfernen Sie lieber die Dateierweiterung. Beispielsweise fügen Pfadvervollständigungen zu einer Datei mit dem Namen \"file.md\" eine Datei namens \"file\" ohne das zugehörige \".md\" ein.",
+ "configuration.markdown.preview.openMarkdownLinks.description": "Steuert, wie Links zu anderen Markdowndateien in der Markdown-Vorschau geöffnet werden sollen.",
+ "configuration.markdown.preview.openMarkdownLinks.inEditor": "Links im Editor öffnen",
+ "configuration.markdown.preview.openMarkdownLinks.inPreview": "Links in der Markdown-Vorschau öffnen",
+ "configuration.markdown.suggest.paths.enabled.description": "Pfadvorschläge aktivieren, während Sie Links in Markdowndateien schreiben.",
+ "configuration.markdown.suggest.paths.includeWorkspaceHeaderCompletions": "Vorschläge für Header in anderen Markdowndateien im aktuellen Arbeitsbereich aktivieren. Wenn Sie einen dieser Vorschläge akzeptieren, wird der vollständige Pfad zum Header in dieser Datei eingefügt, z. B. \"[Linktext](/path/to/file.md#header)\".",
+ "configuration.markdown.suggest.paths.includeWorkspaceHeaderCompletions.never": "Arbeitsbereichsheadervorschläge deaktivieren.",
+ "configuration.markdown.suggest.paths.includeWorkspaceHeaderCompletions.onDoubleHash": "Aktivieren Sie Vorschläge für Arbeitsbereichsheader, nachdem Sie \"##\" in einen Pfad eingeben, z. B. \"[Linktext](##).\"",
+ "configuration.markdown.suggest.paths.includeWorkspaceHeaderCompletions.onSingleOrDoubleHash": "Aktivieren Sie Vorschläge für Arbeitsbereichsheader, nachdem Sie entweder \"##\" oder \"#\" in einen Pfad eingeben, z. B. \"[Linktext](#) oder \"[Linktext](##).\"",
+ "configuration.markdown.updateLinksOnFileMove.enableForDirectories": "Aktualisieren von Links aktivieren, wenn ein Verzeichnis im Arbeitsbereich verschoben oder umbenannt wird.",
+ "configuration.markdown.updateLinksOnFileMove.enabled": "Versuchen Sie, Links in Markdowndateien zu aktualisieren, wenn eine Datei im Arbeitsbereich umbenannt/verschoben wird. Verwenden Sie \"#markdown.updateLinksOnFileMove.include#\", um zu konfigurieren, welche Dateien Linkupdates auslösen.",
+ "configuration.markdown.updateLinksOnFileMove.enabled.always": "Links immer automatisch aktualisieren.",
+ "configuration.markdown.updateLinksOnFileMove.enabled.never": "Link nie aktualisieren und keine Eingabeaufforderung eingeben.",
+ "configuration.markdown.updateLinksOnFileMove.enabled.prompt": "Bei jeder Dateibewegung auffordern.",
+ "configuration.markdown.updateLinksOnFileMove.include": "Globmuster, das Dateien angibt, welche automatische Linkaktualisierungen auslösen. Ausführliche Informationen zu diesem Feature finden Sie unter „#markdown.updateLinksOnFileMove.enabled#“.",
+ "configuration.markdown.updateLinksOnFileMove.include.property": "Das Globmuster, mit dem Dateipfade verglichen werden sollen. Legen Sie diesen Wert auf \"true\" fest, um das Muster zu aktivieren.",
+ "configuration.markdown.validate.duplicateLinkDefinitions.description": "Überprüfen Sie doppelte Definitionen in der aktuellen Datei.",
+ "configuration.markdown.validate.enabled.description": "Alle Fehlerberichte in Markdown-Dateien aktivieren.",
+ "configuration.markdown.validate.fileLinks.enabled.description": "Überprüfen Sie Links zu anderen Dateien in Markdowndateien, z. B. „[link](/path/to/file.md)“. Dadurch wird überprüft, ob die Zieldateien vorhanden sind. Erfordert die Aktivierung von „#markdown.validate.enabled#“.",
+ "configuration.markdown.validate.fileLinks.markdownFragmentLinks.description": "Überprüfen Sie den Fragmentteil von Links zu Headern in anderen Dateien in Markdown-Dateien, z. B. „[link](/path/to/file.md#header)“. Übernimmt standardmäßig den Einstellungswert von „#markdown.validate.fragmentLinks.enabled#“.",
+ "configuration.markdown.validate.fragmentLinks.enabled.description": "Überprüfen Sie Fragmentlinks zu Headern in der aktuellen Markdowndatei, z. B. „[link](#header)“. Erfordert die Aktivierung von „#markdown.validate.enabled#“.",
+ "configuration.markdown.validate.ignoredLinks.description": "Konfigurieren Sie Links, die nicht überprüft werden sollen. Wenn Sie z. B. „/about“ hinzufügen, wird der Link „[about](/about)“ nicht überprüft, während Sie mit dem Glob „/assets/**/*.svg“ die Überprüfung für alle Verknüpfungen zu „.svg“-Dateien im Verzeichnis „assets“ überspringen können.",
+ "configuration.markdown.validate.referenceLinks.enabled.description": "Überprüfen Sie Verweislinks in Markdowndateien, z. B. „[link][ref]“. Erfordert die Aktivierung von „#markdown.validate.enabled#“.",
+ "configuration.markdown.validate.unusedLinkDefinitions.description": "Überprüfen Sie Linkdefinitionen, die in der aktuellen Datei nicht verwendet werden.",
+ "configuration.pasteUrlAsFormattedLink.always": "Markdownlinks immer einfügen.",
+ "configuration.pasteUrlAsFormattedLink.never": "Markdownlinks nie erstellen.",
+ "configuration.pasteUrlAsFormattedLink.smart": "Erstellen Sie Markdownlinks standardmäßig intelligent, wenn sie nicht in einen Codeblock oder ein anderes spezielles Element eingefügt werden. Verwenden Sie das Widget zum Einfügen, um zwischen dem Einfügen als Nur-Text- oder Markdownlinks zu wechseln.",
+ "configuration.pasteUrlAsFormattedLink.smartWithSelection": "Erstellen Sie standardmäßig intelligente Markdownlinks, wenn Sie Text ausgewählt haben und nicht in einen Codeblock oder ein anderes spezielles Element einfügen. Verwenden Sie das Widget zum Einfügen, um zwischen dem Einfügen als Nur-Text- oder Markdownlinks zu wechseln.",
+ "description": "Bietet umfangreiche Sprachunterstützung für Markdown.",
+ "displayName": "Markdown-Sprachfeatures",
+ "markdown.copyImage.title": "Bild kopieren",
+ "markdown.editor.insertImageFromWorkspace": "Bild aus Arbeitsbereich einfügen",
+ "markdown.editor.insertLinkFromWorkspace": "Link zur Datei im Arbeitsbereich einfügen",
+ "markdown.findAllFileReferences": "Dateiverweise suchen",
+ "markdown.openImage.title": "Bild öffnen",
+ "markdown.preview.breaks.desc": "Legt fest, wie Zeilenumbrüche in der Markdownvorschau gerendert werden. Durch eine Festlegung auf TRUE wird \" \" für Zeilenumbrüche innerhalb von Absätzen erstellt.",
+ "markdown.preview.doubleClickToSwitchToEditor.desc": "Um zum Editor zu wechseln, doppelklicken Sie in der Markdown-Vorschau.",
+ "markdown.preview.fontFamily.desc": "Steuert die Schriftfamilie, die in der Markdown-Vorschau verwendet wird.",
+ "markdown.preview.fontSize.desc": "Steuert den Schriftgrad in Pixeln, der in der Markdown-Vorschau verwendet wird.",
+ "markdown.preview.lineHeight.desc": "Steuert die Zeilenhöhe, die in der Markdown-Vorschau verwendet wird. Diese Zahl ist relativ zum Schriftgrad.",
+ "markdown.preview.linkify": "Konvertieren von URL-ähnlichem Text in Links in der Markdownvorschau.",
+ "markdown.preview.markEditorSelection.desc": "Hiermit wird die aktuelle Editor-Auswahl in der Markdown-Vorschau markiert.",
+ "markdown.preview.refresh.title": "Vorschau aktualisieren",
+ "markdown.preview.scrollEditorWithPreview.desc": "Hiermit wird die Ansicht des Editors beim Scrollen in einer Markdown-Vorschau aktualisiert.",
+ "markdown.preview.scrollPreviewWithEditor.desc": "Hiermit wird die Ansicht der Vorschau beim Scrollen in einem Markdown-Editor aktualisiert.",
+ "markdown.preview.title": "Vorschau öffnen",
+ "markdown.preview.toggleLock.title": "Vorschausperre umschalten",
+ "markdown.preview.typographer": "Sprachneutrale Ersetzungen und die Anpassung von Anführungszeichen in der Markdown-Vorschau aktivieren.",
+ "markdown.previewSide.title": "Vorschau an der Seite öffnen",
+ "markdown.server.log.desc": "Steuert den Protokolliergrad des Markdown-Sprachservers.",
+ "markdown.showLockedPreviewToSide.title": "Gesperrte Vorschau an der Seite öffnen",
+ "markdown.showPreviewSecuritySelector.title": "Sicherheitseinstellungen für Vorschau ändern",
+ "markdown.showSource.title": "Quelle anzeigen",
+ "markdown.styles.dec": "Eine Liste von URLs oder lokalen Pfaden zu CSS-Stylesheets, die aus der Markdownvorschau verwendet werden sollen. Relative Pfade werden relativ zum im Explorer geöffneten Ordner interpretiert. Wenn kein geöffneter Ordner vorhanden ist, werden sie relativ zum Speicherort der Markdowndatei interpretiert. Alle '\\ müssen als '\\\\' geschrieben werden.",
+ "markdown.trace.extension.desc": "Aktiviert die Debugprotokollierung für die Markdownerweiterung.",
+ "markdown.trace.server.desc": "Verfolgt die Kommunikation zwischen VS Code und Markdown-Sprachserver nach.",
+ "workspaceTrust": "Erforderlich, um Formatvorlagen zu laden, die im Arbeitsbereich konfiguriert sind."
+ }
+ }
+}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-de/translations/extensions/vscode.markdown-math.i18n.json b/i18n/vscode-language-pack-de/translations/extensions/vscode.markdown-math.i18n.json
new file mode 100644
index 0000000000..b77060c2ba
--- /dev/null
+++ b/i18n/vscode-language-pack-de/translations/extensions/vscode.markdown-math.i18n.json
@@ -0,0 +1,18 @@
+{
+ "": [
+ "--------------------------------------------------------------------------------------------",
+ "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."
+ ],
+ "version": "1.0.0",
+ "contents": {
+ "package": {
+ "config.markdown.math.enabled": "Aktivieren/Deaktivieren der Renderingberechnung in der integrierten Markdownvorschau.",
+ "config.markdown.math.macros": "Eine Auflistung benutzerdefinierter Makros. Jedes Makro ist ein Schlüssel-Wert-Paar, bei dem der Schlüssel ein neuer Befehlsname und der Wert die Erweiterung des Makros ist.",
+ "description": "Fügt Markdown in Notebooks mathematische Unterstützung hinzu.",
+ "displayName": "Markdown Math"
+ }
+ }
+}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-de/translations/extensions/vscode.markdown.i18n.json b/i18n/vscode-language-pack-de/translations/extensions/vscode.markdown.i18n.json
index aeb03ec3d1..68dd2ffaf6 100644
--- a/i18n/vscode-language-pack-de/translations/extensions/vscode.markdown.i18n.json
+++ b/i18n/vscode-language-pack-de/translations/extensions/vscode.markdown.i18n.json
@@ -9,8 +9,8 @@
"version": "1.0.0",
"contents": {
"package": {
- "displayName": "Markdown-Sprachgrundlagen",
- "description": "Bietet Ausschnitte und Syntaxhervorhebung für Markdown."
+ "description": "Bietet Schnipsel und Syntaxhervorhebung für Markdown.",
+ "displayName": "Markdown-Sprachgrundlagen"
}
}
}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-de/translations/extensions/vscode.media-preview.i18n.json b/i18n/vscode-language-pack-de/translations/extensions/vscode.media-preview.i18n.json
new file mode 100644
index 0000000000..3b8648f08d
--- /dev/null
+++ b/i18n/vscode-language-pack-de/translations/extensions/vscode.media-preview.i18n.json
@@ -0,0 +1,42 @@
+{
+ "": [
+ "--------------------------------------------------------------------------------------------",
+ "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."
+ ],
+ "version": "1.0.0",
+ "contents": {
+ "bundle": {
+ "An error occurred while loading the audio file.": "Fehler beim Laden der Audiodatei.",
+ "An error occurred while loading the image.": "Beim Laden des Bildes ist ein Fehler aufgetreten.",
+ "An error occurred while loading the video file.": "Fehler beim Laden der Videodatei.",
+ "Image Binary Size": "Größe der Imagebinärdatei",
+ "Image Size": "Imagegröße",
+ "Image Zoom": "Bildzoom",
+ "Open file using VS Code's standard text/binary editor?": "Datei mit dem standardmäßigen Text-/Binär-Editor von Visual Studio Code öffnen?",
+ "Select zoom level": "Zoomfaktor auswählen",
+ "Whole Image": "Ganzes Bild",
+ "{0}B": "{0} B",
+ "{0}GB": "{0} GB",
+ "{0}KB": "{0} KB",
+ "{0}MB": "{0} MB",
+ "{0}TB": "{0} TB"
+ },
+ "package": {
+ "command.copyImage": "Kopieren",
+ "command.reopenAsPreview": "Als Bildvorschau erneut öffnen",
+ "command.reopenAsText": "Als Quelltext erneut öffnen",
+ "command.zoomIn": "Vergrößern",
+ "command.zoomOut": "Verkleinern",
+ "customEditor.audioPreview.displayName": "Audiovorschau",
+ "customEditor.imagePreview.displayName": "Bildvorschau",
+ "customEditor.videoPreview.displayName": "Videovorschau",
+ "description": "Stellt die integrierten Vorschauversionen von VS Code für Bilder, Audio und Video bereit.",
+ "displayName": "Medienvorschau",
+ "videoPreviewerAutoPlay": "Beginnen Sie automatisch mit der Wiedergabe von Videos beim Stummschalten.",
+ "videoPreviewerLoop": "Videos automatisch erneut durchlaufen lassen."
+ }
+ }
+}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-de/translations/extensions/vscode.merge-conflict.i18n.json b/i18n/vscode-language-pack-de/translations/extensions/vscode.merge-conflict.i18n.json
new file mode 100644
index 0000000000..dfd92abe8b
--- /dev/null
+++ b/i18n/vscode-language-pack-de/translations/extensions/vscode.merge-conflict.i18n.json
@@ -0,0 +1,49 @@
+{
+ "": [
+ "--------------------------------------------------------------------------------------------",
+ "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."
+ ],
+ "version": "1.0.0",
+ "contents": {
+ "bundle": {
+ "(Current Change)": "(Aktuelle Änderung)",
+ "(Incoming Change)": "(Eingehende Änderung)",
+ "Accept Both Changes": "Beide Änderungen akzeptieren",
+ "Accept Current Change": "Aktuelle Änderung akzeptieren",
+ "Accept Incoming Change": "Eingehende Änderung akzeptieren",
+ "Compare Changes": "Änderungen vergleichen",
+ "Editor cursor is not within a merge conflict": "Der Editor-Cursor ist nicht innerhalb eines Mergingkonflikts",
+ "Editor cursor is within the common ancestors block, please move it to either the \"current\" or \"incoming\" block": "Der Editor-Cursor ist innerhalb des Blocks gemeinsamer Vorgänger, verschieben Sie ihn entweder in den Block \"aktuell\" oder \"eingehend\".",
+ "Editor cursor is within the merge conflict splitter, please move it to either the \"current\" or \"incoming\" block": "Der Editor-Cursor ist innerhalb der Mergingkonfliktaufteilung, verschieben Sie ihn entweder in den Block \"aktuell\" oder \"eingehend\".",
+ "No merge conflicts found in this file": "Keine Merge-Konflikte in dieser Datei gefunden",
+ "No other merge conflicts within this file": "Keine weiteren Merge-Konflikte in dieser Datei",
+ "{0}: Current Changes ↔ Incoming Changes": "{0}: Aktuelle Änderungen ↔ Eingehende Änderungen"
+ },
+ "package": {
+ "command.accept.all-both": "Alle beide akzeptieren",
+ "command.accept.all-current": "Alle aktuellen akzeptieren",
+ "command.accept.all-incoming": "Alle eingehenden akzeptieren",
+ "command.accept.both": "Beides akzeptieren",
+ "command.accept.current": "Aktuelles akzeptieren",
+ "command.accept.incoming": "Eingehendes akzeptieren",
+ "command.accept.selection": "Auswahl akzeptieren",
+ "command.category": "Merge-Konflikt",
+ "command.compare": "Aktuellen Konflikt vergleichen",
+ "command.next": "Nächster Konflikt",
+ "command.previous": "Vorheriger Konflikt",
+ "config.autoNavigateNextConflictEnabled": "Gibt an, ob automatisch zum nächsten Mergekonflikt navigiert werden soll, nachdem ein Mergekonflikt behoben wurde.",
+ "config.codeLensEnabled": "CodeLens für Mergingkonfliktblöcke im Editor erstellen.",
+ "config.decoratorsEnabled": "Decorator-Elemente für Mergingkonfliktblöcke im Editor erstellen.",
+ "config.diffViewPosition": "Steuert, wo die Vergleichsansicht beim Vergleich von Änderungen in Zusammenführungskonflikten geöffnet wird.",
+ "config.diffViewPosition.below": "Hiermit wird die Vergleichsansicht unterhalb der aktuellen Editorgruppe geöffnet.",
+ "config.diffViewPosition.beside": "Hiermit öffnen Sie die Vergleichsansicht neben der aktuellen Editorgruppe.",
+ "config.diffViewPosition.current": "Hiermit wird die Vergleichsansicht in der aktuellen Editorgruppe geöffnet.",
+ "config.title": "Merge-Konflikt",
+ "description": "Hervorhebung und Befehle für Inline-Mergingkonflikte.",
+ "displayName": "Merge-Konflikt"
+ }
+ }
+}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-de/translations/extensions/vscode.mermaid-chat-features.i18n.json b/i18n/vscode-language-pack-de/translations/extensions/vscode.mermaid-chat-features.i18n.json
new file mode 100644
index 0000000000..e73176a09b
--- /dev/null
+++ b/i18n/vscode-language-pack-de/translations/extensions/vscode.mermaid-chat-features.i18n.json
@@ -0,0 +1,17 @@
+{
+ "": [
+ "--------------------------------------------------------------------------------------------",
+ "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."
+ ],
+ "version": "1.0.0",
+ "contents": {
+ "package": {
+ "config.enabled.description": "Aktivieren Sie ein Tool für das experimentelle Rendern von Mermaid-Diagrammen in Chat-Antworten.",
+ "description": "Fügt integrierten Chats Unterstützung für Mermaid-Diagramme hinzu.",
+ "displayName": "Mermaid-Chatfunktionen"
+ }
+ }
+}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-de/translations/extensions/vscode.microsoft-authentication.i18n.json b/i18n/vscode-language-pack-de/translations/extensions/vscode.microsoft-authentication.i18n.json
new file mode 100644
index 0000000000..4bf7b54f3d
--- /dev/null
+++ b/i18n/vscode-language-pack-de/translations/extensions/vscode.microsoft-authentication.i18n.json
@@ -0,0 +1,51 @@
+{
+ "": [
+ "--------------------------------------------------------------------------------------------",
+ "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."
+ ],
+ "version": "1.0.0",
+ "contents": {
+ "bundle": {
+ "Copy & Continue to Microsoft": "Kopieren und weiter zu Microsoft",
+ "Error validating custom environment setting: {0}": "Fehler beim Überprüfen der benutzerdefinierten Umgebungseinstellung: {0}",
+ "Having trouble logging in? Would you like to try a different way? ({0})": "Haben Sie Probleme bei der Anmeldung? Möchten Sie eine andere Methode ausprobieren? ({0})",
+ "Microsoft Account configuration has been changed.": "Die Konfiguration des Microsoft-Kontos wurde geändert.",
+ "Microsoft Authentication": "Microsoft Authentication",
+ "Microsoft Sovereign Cloud Authentication": "Microsoft Sovereign Cloud-Authentifizierung",
+ "No": "Nein",
+ "Open [{0}]({0}) in a new tab and paste your one-time code: {1}/The [{0}]({0}) will be a url and the {1} will be a code, e.g. 123456{Locked=\"[{0}]({0})\"}": "Öffnen Sie [{0}]({0}) auf einer neuen Registerkarte, und fügen Sie Ihren einmaligen Code ein: {1}",
+ "Open settings": "Einstellungen öffnen",
+ "Reload": "Neu laden",
+ "Signing in to Microsoft...": "Anmeldung bei Microsoft...",
+ "The environment `{0}` is not a valid environment.": "Die Umgebung \"{0}\" ist keine gültige Umgebung.",
+ "To finish authenticating, navigate to Microsoft and paste in the above one-time code.": "Um die Authentifizierung abzuschließen, navigieren Sie zu Microsoft, und fügen Sie den obigen Einmalcode ein.",
+ "Yes": "Ja",
+ "You have not yet finished authorizing this extension to use your Microsoft Account. Would you like to try a different way? ({0})": "Sie haben die Autorisierung dieser Erweiterung für die Verwendung Ihres Microsoft-Kontos noch nicht abgeschlossen. Möchten Sie eine andere Methode ausprobieren? ({0})",
+ "You must also specify a custom environment in order to use the custom environment auth provider.": "Sie müssen auch eine benutzerdefinierte Umgebung angeben, um den Authentifizierungsanbieter der benutzerdefinierten Umgebung zu verwenden.",
+ "Your Code: {0}/The {0} will be a code, e.g. 123-456": "Ihr Code: {0}"
+ },
+ "package": {
+ "description": "Microsoft-Authentifizierungsanbieter",
+ "displayName": "Microsoft-Konto",
+ "microsoft-authentication.implementation.description": "Die Authentifizierungsimplementierung, die für die Anmeldung mit einem Microsoft-Konto verwendet werden soll.",
+ "microsoft-authentication.implementation.enumDescriptions.msal": "Verwenden Sie die Microsoft Authentication Library (MSAL), um sich mit einem Microsoft-Konto anzumelden.",
+ "microsoft-authentication.implementation.enumDescriptions.msal-no-broker": "Verwenden Sie die Microsoft Authentication Library (MSAL), um sich mit einem Microsoft-Konto über einen Browser anzumelden. Dies ist hilfreich, wenn Sie Probleme mit dem nativen Broker haben.",
+ "microsoft-sovereign-cloud.customEnvironment.activeDirectoryEndpointUrl.description": "Der Active Directory-Endpunkt für die benutzerdefinierte Sovereign Cloud.",
+ "microsoft-sovereign-cloud.customEnvironment.activeDirectoryResourceId.description": "Der Active Directory-Ressourcen-ID für die benutzerdefinierte Sovereign Cloud.",
+ "microsoft-sovereign-cloud.customEnvironment.description": "Die benutzerdefinierte Konfiguration für die Sovereign Cloud, die mit dem Microsoft Sovereign Cloud-Authentifizierungsanbieter verwendet werden soll. Dies ist zusammen mit der Einstellung `#microsoft-sovereign-cloud.environment#` auf \"benutzerdefiniert\" erforderlich, um dieses Feature zu verwenden.",
+ "microsoft-sovereign-cloud.customEnvironment.managementEndpointUrl.description": "Der Verwaltungsendpunkt für die benutzerdefinierte Sovereign Cloud.",
+ "microsoft-sovereign-cloud.customEnvironment.name.description": "Der Name der benutzerdefinierten Sovereign Cloud.",
+ "microsoft-sovereign-cloud.customEnvironment.portalUrl.description": "Die Portal-URL für die benutzerdefinierte Sovereign Cloud.",
+ "microsoft-sovereign-cloud.customEnvironment.resourceManagerEndpointUrl.description": "Der Ressourcen-Manager-Endpunkt für die benutzerdefinierte Sovereign Cloud.",
+ "microsoft-sovereign-cloud.environment.description": "Die für die Authentifizierung zu verwendende Sovereign Cloud. Wenn Sie \"Benutzerdefiniert\" auswählen, müssen Sie auch die Einstellung `#microsoft-sovereign-cloud.customEnvironment#` vornehmen.",
+ "microsoft-sovereign-cloud.environment.enumDescriptions.AzureChinaCloud": "Azure China",
+ "microsoft-sovereign-cloud.environment.enumDescriptions.AzureUSGovernment": "Azure US Government",
+ "microsoft-sovereign-cloud.environment.enumDescriptions.custom": "Eine benutzerdefinierte Microsoft Sovereign Cloud",
+ "signIn": "Anmelden",
+ "signOut": "Abmelden"
+ }
+ }
+}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-de/translations/extensions/vscode.npm.i18n.json b/i18n/vscode-language-pack-de/translations/extensions/vscode.npm.i18n.json
new file mode 100644
index 0000000000..8010c73985
--- /dev/null
+++ b/i18n/vscode-language-pack-de/translations/extensions/vscode.npm.i18n.json
@@ -0,0 +1,127 @@
+{
+ "": [
+ "--------------------------------------------------------------------------------------------",
+ "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."
+ ],
+ "version": "1.0.0",
+ "contents": {
+ "bundle": {
+ "Could not find a valid npm script at the selection.": "Am ausgewählten Ort wurde kein gültiges npm-Skript gefunden.",
+ "Debug": "Debuggen",
+ "Debug Script": "Debugskript",
+ "Default package.json": "Standarddatei \"package.json\"",
+ "Do not show again": "Nicht mehr anzeigen",
+ "Latest version: {0}": "Aktuelle Version: {0}",
+ "Latest version: {0} published {1}": "Neueste Version: {0} veröffentlicht {1}",
+ "Learn more": "Weitere Informationen",
+ "Matches the most recent major version (1.x.x)": "Entspricht der aktuellsten Hauptversion (1.x.x).",
+ "Matches the most recent minor version (1.2.x)": "Entspricht der aktuellsten Nebenversion (1.2.x).",
+ "No scripts found.": "Es wurden keine Skripts gefunden.",
+ "Npm task detection: failed to parse the file {0}": "npm-Aufgabenerkennung: Fehler beim Analysieren der Datei \"{0}\".",
+ "Request to the NPM repository failed: {0}": "Fehler bei der Anforderung des NPM-Repositorys: {0}",
+ "Run Script": "Skript ausführen",
+ "Run the script as a task": "Skript als Aufgabe ausführen",
+ "Runs the script under the debugger": "Skript im Debugmodus ausführen",
+ "The currently latest version of the package": "Die zurzeit neueste Version des Pakets.",
+ "The setting \"npm.autoDetect\" is \"off\".": "Die Einstellung \"npm.autoDetect\" ist deaktiviert.",
+ "Using {0} as the preferred package manager. Found multiple lockfiles for {1}. To resolve this issue, delete the lockfiles that don't match your preferred package manager or change the setting \"npm.packageManager\" to a value other than \"auto\".": "\"{0}\" wird als bevorzugter Paket-Manager verwendet. Es wurden mehrere Sperrdateien für \"{1}\" gefunden. Um dieses Problem zu beheben, löschen Sie die Sperrdateien, die nicht mit Ihrem bevorzugten Paket-Manager übereinstimmen, oder ändern Sie die Einstellung „npm.packageManager>“ auf einen anderen Wert als „auto>“.",
+ "in {0}": "in \"{0}\"",
+ "now": "jetzt",
+ "{0} day": "{0} Tag(e)",
+ "{0} day ago": "Vor {0} Tag",
+ "{0} days": "{0} Tage",
+ "{0} days ago": "Vor {0} Tagen",
+ "{0} hour": "{0} Stunde",
+ "{0} hour ago": "Vor {0} Stunde",
+ "{0} hours": "{0} Stunden",
+ "{0} hours ago": "Vor {0} Stunden",
+ "{0} hr": "{0} Std.",
+ "{0} hr ago": "Vor {0} Stunde(n)",
+ "{0} hrs": "{0} Stunde(n)",
+ "{0} hrs ago": "Vor {0} Stunde(n)",
+ "{0} min": "{0} min",
+ "{0} min ago": "Vor {0} Minute(n)",
+ "{0} mins": "{0} Minute(n)",
+ "{0} mins ago": "Vor {0} Minute(n)",
+ "{0} minute": "{0} Minute",
+ "{0} minute ago": "Vor {0} Minute",
+ "{0} minutes": "{0} Minuten",
+ "{0} minutes ago": "vor {0} Minuten",
+ "{0} mo": "{0} Monat",
+ "{0} mo ago": "Vor {0} Monat(en)",
+ "{0} month": "{0} Monat",
+ "{0} month ago": "Vor {0} Monat",
+ "{0} months": "{0} Monate",
+ "{0} months ago": "Vor {0} Monaten",
+ "{0} mos": "{0} Monate",
+ "{0} mos ago": "Vor {0} Monat(en)",
+ "{0} sec": "{0} Sek.",
+ "{0} sec ago": "Vor {0} Sekunde(n)",
+ "{0} second": "{0} Sekunde",
+ "{0} second ago": "vor {0} Sekunde",
+ "{0} seconds": "{0} Sekunden",
+ "{0} seconds ago": "Vor {0} Sekunden",
+ "{0} secs": "{0} Sekunde(n)",
+ "{0} secs ago": "Vor {0} Sekunde(n)",
+ "{0} week": "{0} Woche",
+ "{0} week ago": "Vor {0} Woche",
+ "{0} weeks": "{0} Wochen",
+ "{0} weeks ago": "vor {0} Wochen",
+ "{0} wk": "{0} Woche(n)",
+ "{0} wk ago": "Vor {0} Woche(n)",
+ "{0} wks": "{0} Woche(n)",
+ "{0} wks ago": "Vor {0} Woche(n)",
+ "{0} year": "{0} Jahr",
+ "{0} year ago": "Vor {0} Jahr",
+ "{0} years": "{0} Jahre",
+ "{0} years ago": "Vor {0} Jahren",
+ "{0} yr": "{0} Jahr(e)",
+ "{0} yr ago": "Vor {0} Jahre(n)",
+ "{0} yrs": "{0} Jahr(e)",
+ "{0} yrs ago": "Vor {0} Jahr(en)"
+ },
+ "package": {
+ "command.debug": "Debuggen",
+ "command.openScript": "Öffnen",
+ "command.packageManager": "Konfigurierten Paket-Manager abrufen",
+ "command.refresh": "Aktualisieren",
+ "command.run": "Starten",
+ "command.runInstall": "Installation ausführen",
+ "command.runScriptFromFolder": "NPM-Skript im Ordner ausführen...",
+ "command.runSelectedScript": "Skript ausführen",
+ "config.npm.autoDetect": "Legt fest, ob npm-Skripts automatisch erkannt werden sollen.",
+ "config.npm.enableRunFromFolder": "Aktivieren Sie das Ausführen von NPM-Skripts, die sich in einem Ordner im Kontextmenü des Explorers befinden.",
+ "config.npm.enableScriptExplorer": "Hiermit wird eine Explorer-Ansicht für npm-Skripts aktiviert, wenn auf der obersten Ebene keine Datei \"package.json\" vorliegt.",
+ "config.npm.exclude": "Konfigurieren Sie Globmuster für Ordner, die von der automatischen Skripterkennung ausgeschlossen werden sollen.",
+ "config.npm.fetchOnlinePackageInfo": "Rufen Sie Daten von https://registry.npmjs.org und https://registry.bower.io ab, um die automatische Vervollständigung zu ermöglichen und Informationen zu Hoverfeatures von npm-Abhängigkeiten bereitzustellen.",
+ "config.npm.packageManager": "Der Paket-Manager, der zum Installieren von Abhängigkeiten verwendet wird.",
+ "config.npm.packageManager.auto": "Automatisches Erkennen, welcher Paket-Manager basierend auf Sperrdateien und installierten Paket-Managern verwendet werden soll.",
+ "config.npm.packageManager.bun": "Bun als Paket-Manager verwenden.",
+ "config.npm.packageManager.npm": "Npm als Paket-Manager verwenden.",
+ "config.npm.packageManager.pnpm": "Pnpm als Paket-Manager verwenden.",
+ "config.npm.packageManager.yarn": "Yarn als Paket-Manager verwenden.",
+ "config.npm.runSilent": "npm-Befehle mit der Option \"--silent\" ausführen.",
+ "config.npm.scriptExplorerAction": "Die Klickaktion, die im NPM-Skript-Explorer standardmäßig verwendet wird: „Öffnen“ (Standard) oder „Ausführen“.",
+ "config.npm.scriptExplorerExclude": "Ein Array regulärer Ausdrücke, das angibt, welche Skripts aus der NPM-Skriptansicht ausgeschlossen werden sollen.",
+ "config.npm.scriptHover": "Zeigen Sie den Mauszeiger mit den Befehlen „Ausführen“ und „Debuggen“ für Skripts an.",
+ "config.npm.scriptRunner": "Der Zum Ausführen von Skripts verwendete Skriptausführung.",
+ "config.npm.scriptRunner.auto": "Automatisches Erkennen, welche Skriptausführung basierend auf Sperrdateien und installierten Paket-Managern verwendet werden soll.",
+ "config.npm.scriptRunner.bun": "Verwenden Sie bun als Skriptausführung.",
+ "config.npm.scriptRunner.node": "Verwenden Sie Node.js als Skriptausführung.",
+ "config.npm.scriptRunner.npm": "Verwenden Sie npm als Skriptausführung.",
+ "config.npm.scriptRunner.pnpm": "PNPM als Skriptausführung verwenden.",
+ "config.npm.scriptRunner.yarn": "Verwenden Sie Yarn als Skriptausführung.",
+ "description": "Erweiterung zum Hinzufügen von Aufgabenunterstützung für NPM-Skripts.",
+ "displayName": "npm-Unterstützung für VS Code",
+ "npm.parseError": "npm-Aufgabenerkennung: Fehler beim Analysieren der Datei \"{0}\".",
+ "taskdef.path": "Der Pfad zum Ordner der package.json-Datei, die das Skript bereitstellt. Kann weggelassen werden.",
+ "taskdef.script": "Das anzupassende NPM-Skript.",
+ "view.name": "npm-Skripts",
+ "virtualWorkspaces": "Funktionen, die das Ausführen des Befehls „npm“ erfordern, sind in virtuellen Arbeitsbereichen nicht verfügbar.",
+ "workspaceTrust": "Mit dieser Erweiterung werden Aufgaben ausgeführt, für deren Ausführung eine Vertrauensstellung erforderlich ist."
+ }
+ }
+}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-de/translations/extensions/vscode.objective-c.i18n.json b/i18n/vscode-language-pack-de/translations/extensions/vscode.objective-c.i18n.json
index ad0d195ca6..2ac3569a6f 100644
--- a/i18n/vscode-language-pack-de/translations/extensions/vscode.objective-c.i18n.json
+++ b/i18n/vscode-language-pack-de/translations/extensions/vscode.objective-c.i18n.json
@@ -9,8 +9,8 @@
"version": "1.0.0",
"contents": {
"package": {
- "displayName": "Objective-C-Sprachgrundlagen",
- "description": "Bietet Syntaxhervorhebung und Klammernabgleich in Objective-C-Dateien."
+ "description": "Bietet Syntaxhervorhebung und Klammernabgleich in Objective-C-Dateien.",
+ "displayName": "Objective-C-Sprachgrundlagen"
}
}
}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-de/translations/extensions/vscode.perl.i18n.json b/i18n/vscode-language-pack-de/translations/extensions/vscode.perl.i18n.json
index 85ff88418d..c7319a4b13 100644
--- a/i18n/vscode-language-pack-de/translations/extensions/vscode.perl.i18n.json
+++ b/i18n/vscode-language-pack-de/translations/extensions/vscode.perl.i18n.json
@@ -9,8 +9,8 @@
"version": "1.0.0",
"contents": {
"package": {
- "displayName": "Perl-Sprachgrundlagen",
- "description": "Bietet Syntaxhervorhebung und Klammernabgleich in Perl-Dateien."
+ "description": "Bietet Syntaxhervorhebung und Klammernabgleich in Perl-Dateien.",
+ "displayName": "Perl-Sprachgrundlagen"
}
}
}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-de/translations/extensions/vscode.php-language-features.i18n.json b/i18n/vscode-language-pack-de/translations/extensions/vscode.php-language-features.i18n.json
new file mode 100644
index 0000000000..0ba8f9ad93
--- /dev/null
+++ b/i18n/vscode-language-pack-de/translations/extensions/vscode.php-language-features.i18n.json
@@ -0,0 +1,31 @@
+{
+ "": [
+ "--------------------------------------------------------------------------------------------",
+ "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."
+ ],
+ "version": "1.0.0",
+ "contents": {
+ "bundle": {
+ "Cannot validate since a PHP installation could not be found. Use the setting 'php.validate.executablePath' to configure the PHP executable.": "Kann nicht überprüft werden, da eine PHP-Installation nicht gefunden werden konnte. Verwenden Sie die Einstellung „php.validate.executablePath“, um die ausführbare PHP-Datei zu konfigurieren.",
+ "Cannot validate since no PHP executable is set. Use the setting 'php.validate.executablePath' to configure the PHP executable.": "Eine Überprüfung ist nicht möglich, da keine ausführbare PHP-Datei festgelegt ist. Verwenden Sie die Einstellung \"php.validate.executablePath\", um die ausführbare PHP-Datei zu konfigurieren.",
+ "Cannot validate since {0} is not a valid php executable. Use the setting 'php.validate.executablePath' to configure the PHP executable.": "Eine Überprüfung ist nicht möglich, da {0} keine gültige ausführbare PHP-Datei ist. Verwenden Sie die Einstellung \"'php.validate.executablePath\", um die ausführbare PHP-Datei zu konfigurieren.",
+ "Failed to run php using path: {0}. Reason is unknown.": "Fehler beim Ausführen von PHP mithilfe des Pfads \"{0}\". Die Ursache ist unbekannt.",
+ "Open Settings": "Einstellungen öffnen"
+ },
+ "package": {
+ "command.untrustValidationExecutable": "Ausführbare Datei für PHP-Überprüfung nicht zulassen (als Arbeitsbereicheinstellung definiert)",
+ "commands.categroy.php": "PHP",
+ "configuration.suggest.basic": "Legt fest, ob die integrierten PHP-Sprachvorschläge aktiviert sind. Die Unterstützung schlägt globale und variable PHP-Elemente vor.",
+ "configuration.title": "PHP",
+ "configuration.validate.enable": "Integrierte PHP-Überprüfung aktivieren/deaktivieren.",
+ "configuration.validate.executablePath": "Zeigt auf die ausführbare PHP-Datei.",
+ "configuration.validate.run": "Gibt an, ob der Linter beim Speichern oder bei der Eingabe ausgeführt wird.",
+ "description": "Bietet umfangreiche Sprachunterstützung für PHP-Dateien.",
+ "displayName": "PHP-Sprachfeatures",
+ "workspaceTrust": "Für diese Erweiterung ist die Vertrauenswürdigkeit des Arbeitsbereichs erforderlich, wenn die Einstellung „php.validate.executablePath“ eine Version von PHP im Arbeitsbereich lädt."
+ }
+ }
+}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-de/translations/extensions/vscode.php.i18n.json b/i18n/vscode-language-pack-de/translations/extensions/vscode.php.i18n.json
index c8be8686d8..8cc98661de 100644
--- a/i18n/vscode-language-pack-de/translations/extensions/vscode.php.i18n.json
+++ b/i18n/vscode-language-pack-de/translations/extensions/vscode.php.i18n.json
@@ -9,8 +9,8 @@
"version": "1.0.0",
"contents": {
"package": {
- "displayName": "PHP-Sprachgrundlagen",
- "description": "Bietet Syntaxhervorhebung und Klammernabgleich für PHP-Dateien."
+ "description": "Bietet Syntaxhervorhebung und Klammernabgleich für PHP-Dateien.",
+ "displayName": "PHP-Sprachgrundlagen"
}
}
}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-de/translations/extensions/vscode.powershell.i18n.json b/i18n/vscode-language-pack-de/translations/extensions/vscode.powershell.i18n.json
index 710860978f..a45b2c6d06 100644
--- a/i18n/vscode-language-pack-de/translations/extensions/vscode.powershell.i18n.json
+++ b/i18n/vscode-language-pack-de/translations/extensions/vscode.powershell.i18n.json
@@ -9,8 +9,8 @@
"version": "1.0.0",
"contents": {
"package": {
- "displayName": "Powershell-Sprachgrundlagen",
- "description": "Bietet Ausschnitte, Syntaxhervorhebung, Klammernabgleich und Falten in Powershell-Dateien."
+ "description": "Bietet Schnipsel, Syntaxhervorhebung, Klammernabgleich und Falten in Powershell-Dateien.",
+ "displayName": "Powershell-Sprachgrundlagen"
}
}
}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-de/translations/extensions/vscode.prompt.i18n.json b/i18n/vscode-language-pack-de/translations/extensions/vscode.prompt.i18n.json
new file mode 100644
index 0000000000..060bc1052a
--- /dev/null
+++ b/i18n/vscode-language-pack-de/translations/extensions/vscode.prompt.i18n.json
@@ -0,0 +1,16 @@
+{
+ "": [
+ "--------------------------------------------------------------------------------------------",
+ "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."
+ ],
+ "version": "1.0.0",
+ "contents": {
+ "package": {
+ "description": "Syntaxhervorhebung für Dokumente zu Eingabeaufforderungen und Anweisungen.",
+ "displayName": "Prompt-Sprachgrundlagen"
+ }
+ }
+}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-de/translations/extensions/vscode.pug.i18n.json b/i18n/vscode-language-pack-de/translations/extensions/vscode.pug.i18n.json
index 5c8f6687c4..7cdebdf6b6 100644
--- a/i18n/vscode-language-pack-de/translations/extensions/vscode.pug.i18n.json
+++ b/i18n/vscode-language-pack-de/translations/extensions/vscode.pug.i18n.json
@@ -9,8 +9,8 @@
"version": "1.0.0",
"contents": {
"package": {
- "displayName": "Pug-Sprachgrundlagen",
- "description": "Bietet Syntaxhervorhebung und Klammernabgleich in Pug-Dateien."
+ "description": "Bietet Syntaxhervorhebung und Klammernabgleich in Pug-Dateien.",
+ "displayName": "Pug-Sprachgrundlagen"
}
}
}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-de/translations/extensions/python.i18n.json b/i18n/vscode-language-pack-de/translations/extensions/vscode.python.i18n.json
similarity index 100%
rename from i18n/vscode-language-pack-de/translations/extensions/python.i18n.json
rename to i18n/vscode-language-pack-de/translations/extensions/vscode.python.i18n.json
diff --git a/i18n/vscode-language-pack-de/translations/extensions/vscode.r.i18n.json b/i18n/vscode-language-pack-de/translations/extensions/vscode.r.i18n.json
index 8bc3d540be..cee37b9747 100644
--- a/i18n/vscode-language-pack-de/translations/extensions/vscode.r.i18n.json
+++ b/i18n/vscode-language-pack-de/translations/extensions/vscode.r.i18n.json
@@ -9,8 +9,8 @@
"version": "1.0.0",
"contents": {
"package": {
- "displayName": "R-Sprachgrundlagen",
- "description": "Bietet Syntaxhervorhebung und Klammernabgleich in R-Dateien."
+ "description": "Bietet Syntaxhervorhebung und Klammernabgleich in R-Dateien.",
+ "displayName": "R-Sprachgrundlagen"
}
}
}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-de/translations/extensions/vscode.razor.i18n.json b/i18n/vscode-language-pack-de/translations/extensions/vscode.razor.i18n.json
index d7971af668..4848ac8130 100644
--- a/i18n/vscode-language-pack-de/translations/extensions/vscode.razor.i18n.json
+++ b/i18n/vscode-language-pack-de/translations/extensions/vscode.razor.i18n.json
@@ -9,8 +9,8 @@
"version": "1.0.0",
"contents": {
"package": {
- "displayName": "Razor-Sprachgrundlagen",
- "description": "Bietet Syntaxhervorhebung, Klammernabgleich und Falten in Razor-Dateien."
+ "description": "Bietet Syntaxhervorhebung, Klammernabgleich und Falten in Razor-Dateien.",
+ "displayName": "Razor-Sprachgrundlagen"
}
}
}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-de/translations/extensions/vscode.references-view.i18n.json b/i18n/vscode-language-pack-de/translations/extensions/vscode.references-view.i18n.json
new file mode 100644
index 0000000000..677443a386
--- /dev/null
+++ b/i18n/vscode-language-pack-de/translations/extensions/vscode.references-view.i18n.json
@@ -0,0 +1,61 @@
+{
+ "": [
+ "--------------------------------------------------------------------------------------------",
+ "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."
+ ],
+ "version": "1.0.0",
+ "contents": {
+ "bundle": {
+ "Callers Of": "Aufrufer von",
+ "Calls From": "Aufrufe von",
+ "No results.": "Keine Ergebnisse.",
+ "No results. Try running a previous search again:": "Keine Ergebnisse. Versuchen Sie erneut, eine vorherige Suche auszuführen:",
+ "Open Call": "Aufruf öffnen",
+ "Open Reference": "Verweis öffnen",
+ "Open Type": "Offener Typ",
+ "References": "Verweise",
+ "Rerun": "Erneut ausführen",
+ "Select previous reference search": "Vorherige Verweissuche auswählen",
+ "Subtypes Of": "Untertypen von",
+ "Supertypes Of": "Obertypen von",
+ "{0} result in {1} file": "{0} Ergebnis in {1} Datei",
+ "{0} result in {1} files": "{0} Ergebnis in {1} Dateien",
+ "{0} results in {1} file": "{0} Ergebnisse in {1} Datei",
+ "{0} results in {1} files": "{0} Ergebnisse in {1} Dateien"
+ },
+ "package": {
+ "cmd.category.references": "Verweise",
+ "cmd.references-view.clear": "Löschen",
+ "cmd.references-view.clearHistory": "Verlauf löschen",
+ "cmd.references-view.copy": "Kopieren",
+ "cmd.references-view.copyAll": "Alles kopieren",
+ "cmd.references-view.copyPath": "Pfad kopieren",
+ "cmd.references-view.findImplementations": "Alle Implementierungen suchen",
+ "cmd.references-view.findReferences": "Alle Verweise suchen",
+ "cmd.references-view.next": "Zum nächsten Verweis wechseln",
+ "cmd.references-view.pickFromHistory": "Verlauf anzeigen",
+ "cmd.references-view.prev": "Zum vorherigen Verweis wechseln",
+ "cmd.references-view.refind": "Erneut ausführen",
+ "cmd.references-view.refresh": "Aktualisieren",
+ "cmd.references-view.removeCallItem": "Schließen",
+ "cmd.references-view.removeReferenceItem": "Schließen",
+ "cmd.references-view.removeTypeItem": "Schließen",
+ "cmd.references-view.showCallHierarchy": "Aufrufhierarchie anzeigen",
+ "cmd.references-view.showIncomingCalls": "Eingehende Aufrufe anzeigen",
+ "cmd.references-view.showOutgoingCalls": "Ausgehende Aufrufe anzeigen",
+ "cmd.references-view.showSubtypes": "Untertypen anzeigen",
+ "cmd.references-view.showSupertypes": "Obertypen anzeigen",
+ "cmd.references-view.showTypeHierarchy": "Typhierarchie anzeigen",
+ "config.references.preferredLocation": "Steuert, ob „Verweise einsehen“ oder „Verweise suchen“ aufgerufen wird, wenn CodeLens-Verweise ausgewählt werden.",
+ "config.references.preferredLocation.peek": "Verweise im Peek-Editor anzeigen.",
+ "config.references.preferredLocation.view": "Verweise in separater Ansicht anzeigen.",
+ "container.title": "Verweise",
+ "description": "Suchergebnisse für Verweise als separate, stabile Ansicht in der Randleiste",
+ "displayName": "Ansicht der Verweissuche",
+ "view.title": "Referenzsuchergebnisse"
+ }
+ }
+}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-de/translations/extensions/restructuredtext.i18n.json b/i18n/vscode-language-pack-de/translations/extensions/vscode.restructuredtext.i18n.json
similarity index 100%
rename from i18n/vscode-language-pack-de/translations/extensions/restructuredtext.i18n.json
rename to i18n/vscode-language-pack-de/translations/extensions/vscode.restructuredtext.i18n.json
diff --git a/i18n/vscode-language-pack-de/translations/extensions/vscode.ruby.i18n.json b/i18n/vscode-language-pack-de/translations/extensions/vscode.ruby.i18n.json
index 79750d48a5..b8a9a3b89d 100644
--- a/i18n/vscode-language-pack-de/translations/extensions/vscode.ruby.i18n.json
+++ b/i18n/vscode-language-pack-de/translations/extensions/vscode.ruby.i18n.json
@@ -9,8 +9,8 @@
"version": "1.0.0",
"contents": {
"package": {
- "displayName": "Ruby-Sprachgrundlagen",
- "description": "Bietet Syntaxhervorhebung und Klammernabgleich in Ruby-Dateien."
+ "description": "Bietet Syntaxhervorhebung und Klammernabgleich in Ruby-Dateien.",
+ "displayName": "Ruby-Sprachgrundlagen"
}
}
}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-de/translations/extensions/vscode.rust.i18n.json b/i18n/vscode-language-pack-de/translations/extensions/vscode.rust.i18n.json
index 857f89f4ce..276a3e2c16 100644
--- a/i18n/vscode-language-pack-de/translations/extensions/vscode.rust.i18n.json
+++ b/i18n/vscode-language-pack-de/translations/extensions/vscode.rust.i18n.json
@@ -9,8 +9,8 @@
"version": "1.0.0",
"contents": {
"package": {
- "displayName": "Rust-Sprachgrundlagen",
- "description": "Bietet Syntaxhervorhebung und Klammernabgleich in Rust-Dateien."
+ "description": "Bietet Syntaxhervorhebung und Klammernabgleich in Rust-Dateien.",
+ "displayName": "Rust-Sprachgrundlagen"
}
}
}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-de/translations/extensions/vscode.scss.i18n.json b/i18n/vscode-language-pack-de/translations/extensions/vscode.scss.i18n.json
index 1a5907bd9b..f8c8a35221 100644
--- a/i18n/vscode-language-pack-de/translations/extensions/vscode.scss.i18n.json
+++ b/i18n/vscode-language-pack-de/translations/extensions/vscode.scss.i18n.json
@@ -9,8 +9,8 @@
"version": "1.0.0",
"contents": {
"package": {
- "displayName": "SCSS-Sprachgrundlagen",
- "description": "Bietet Syntaxhervorhebung, Klammernabgleich und Falten in SCSS-Dateien."
+ "description": "Bietet Syntaxhervorhebung, Klammernabgleich und Falten in SCSS-Dateien.",
+ "displayName": "SCSS-Sprachgrundlagen"
}
}
}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-de/translations/extensions/search-result.i18n.json b/i18n/vscode-language-pack-de/translations/extensions/vscode.search-result.i18n.json
similarity index 100%
rename from i18n/vscode-language-pack-de/translations/extensions/search-result.i18n.json
rename to i18n/vscode-language-pack-de/translations/extensions/vscode.search-result.i18n.json
diff --git a/i18n/vscode-language-pack-de/translations/extensions/vscode.shaderlab.i18n.json b/i18n/vscode-language-pack-de/translations/extensions/vscode.shaderlab.i18n.json
index a9e7cecd83..fc37e65770 100644
--- a/i18n/vscode-language-pack-de/translations/extensions/vscode.shaderlab.i18n.json
+++ b/i18n/vscode-language-pack-de/translations/extensions/vscode.shaderlab.i18n.json
@@ -9,8 +9,8 @@
"version": "1.0.0",
"contents": {
"package": {
- "displayName": "Shaderlab-Sprachgrundlagen",
- "description": "Bietet Syntaxhervorhebung und Klammernabgleich in Shaderlab-Dateien."
+ "description": "Bietet Syntaxhervorhebung und Klammernabgleich in Shaderlab-Dateien.",
+ "displayName": "Shaderlab-Sprachgrundlagen"
}
}
}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-de/translations/extensions/vscode.shellscript.i18n.json b/i18n/vscode-language-pack-de/translations/extensions/vscode.shellscript.i18n.json
index 953df50d24..80944585c6 100644
--- a/i18n/vscode-language-pack-de/translations/extensions/vscode.shellscript.i18n.json
+++ b/i18n/vscode-language-pack-de/translations/extensions/vscode.shellscript.i18n.json
@@ -9,8 +9,8 @@
"version": "1.0.0",
"contents": {
"package": {
- "displayName": "Sprachgrundlagen für Shellskript",
- "description": "Bietet Syntaxhervorhebung und Klammernabgleich in Shellskript-Dateien."
+ "description": "Bietet Syntaxhervorhebung und Klammernabgleich in Shellskript-Dateien.",
+ "displayName": "Sprachgrundlagen für Shellskript"
}
}
}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-de/translations/extensions/vscode.simple-browser.i18n.json b/i18n/vscode-language-pack-de/translations/extensions/vscode.simple-browser.i18n.json
new file mode 100644
index 0000000000..f7994e90e5
--- /dev/null
+++ b/i18n/vscode-language-pack-de/translations/extensions/vscode.simple-browser.i18n.json
@@ -0,0 +1,28 @@
+{
+ "": [
+ "--------------------------------------------------------------------------------------------",
+ "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."
+ ],
+ "version": "1.0.0",
+ "contents": {
+ "bundle": {
+ "Back": "Zurück",
+ "Enter url to visit": "Zu besuchende URL eingeben",
+ "Focus Lock": "Fokussperre",
+ "Forward": "Weiter",
+ "Open in browser": "Im Browser öffnen",
+ "Open in simple browser": "Im einfachen Browser öffnen",
+ "Reload": "Neu laden",
+ "Simple Browser": "Einfacher Browser",
+ "https://example.com": "https://example.com"
+ },
+ "package": {
+ "configuration.focusLockIndicator.enabled.description": "Hiermit wird der unverankerte Indikator aktiviert/deaktiviert, der beim Fokussieren im einfachen Browser angezeigt wird.",
+ "description": "Eine sehr einfache, integrierte Webansicht zum Anzeigen von Webinhalten.",
+ "displayName": "Einfacher Browser"
+ }
+ }
+}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-de/translations/extensions/vscode.sql.i18n.json b/i18n/vscode-language-pack-de/translations/extensions/vscode.sql.i18n.json
index bb6e8853db..ab73c60fd2 100644
--- a/i18n/vscode-language-pack-de/translations/extensions/vscode.sql.i18n.json
+++ b/i18n/vscode-language-pack-de/translations/extensions/vscode.sql.i18n.json
@@ -9,8 +9,8 @@
"version": "1.0.0",
"contents": {
"package": {
- "displayName": "SQL-Sprachgrundlagen",
- "description": "Bietet Syntaxhervorhebung und Klammernabgleich in SQL-Dateien."
+ "description": "Bietet Syntaxhervorhebung und Klammernabgleich in SQL-Dateien.",
+ "displayName": "SQL-Sprachgrundlagen"
}
}
}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-de/translations/extensions/vscode.swift.i18n.json b/i18n/vscode-language-pack-de/translations/extensions/vscode.swift.i18n.json
index c17b137aa5..0ed70aa584 100644
--- a/i18n/vscode-language-pack-de/translations/extensions/vscode.swift.i18n.json
+++ b/i18n/vscode-language-pack-de/translations/extensions/vscode.swift.i18n.json
@@ -9,8 +9,8 @@
"version": "1.0.0",
"contents": {
"package": {
- "displayName": "Swift-Sprachgrundlagen",
- "description": "Bietet Ausschnitte, Syntaxhervorhebung und Klammernabgleich in Swift-Dateien."
+ "description": "Bietet Schnipsel, Syntaxhervorhebung und Klammernabgleich in Swift-Dateien.",
+ "displayName": "Swift-Sprachgrundlagen"
}
}
}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-de/translations/extensions/vscode.terminal-suggest.i18n.json b/i18n/vscode-language-pack-de/translations/extensions/vscode.terminal-suggest.i18n.json
new file mode 100644
index 0000000000..7d06ecd884
--- /dev/null
+++ b/i18n/vscode-language-pack-de/translations/extensions/vscode.terminal-suggest.i18n.json
@@ -0,0 +1,18 @@
+{
+ "": [
+ "--------------------------------------------------------------------------------------------",
+ "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."
+ ],
+ "version": "1.0.0",
+ "contents": {
+ "package": {
+ "description": "Erweiterung zum Hinzufügen von Terminalabschlüssen für ZSH-, Bash- und Fish-Terminals.",
+ "displayName": "Terminalvorschlag für VS Code",
+ "terminal.integrated.suggest.clearCachedGlobals": "Vorgeschlagene zwischengespeicherte globale Elemente löschen",
+ "view.name": "Terminalvorschlag"
+ }
+ }
+}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-de/translations/extensions/vscode.theme-abyss.i18n.json b/i18n/vscode-language-pack-de/translations/extensions/vscode.theme-abyss.i18n.json
index 489f374404..bb90c41c00 100644
--- a/i18n/vscode-language-pack-de/translations/extensions/vscode.theme-abyss.i18n.json
+++ b/i18n/vscode-language-pack-de/translations/extensions/vscode.theme-abyss.i18n.json
@@ -9,8 +9,8 @@
"version": "1.0.0",
"contents": {
"package": {
- "displayName": "Abyss-Design",
"description": "Abyss-Design für Visual Studio Code",
+ "displayName": "Abyss-Design",
"themeLabel": "Abyss"
}
}
diff --git a/i18n/vscode-language-pack-de/translations/extensions/vscode.theme-defaults.i18n.json b/i18n/vscode-language-pack-de/translations/extensions/vscode.theme-defaults.i18n.json
index 32a2e7e060..5231b68f56 100644
--- a/i18n/vscode-language-pack-de/translations/extensions/vscode.theme-defaults.i18n.json
+++ b/i18n/vscode-language-pack-de/translations/extensions/vscode.theme-defaults.i18n.json
@@ -9,13 +9,16 @@
"version": "1.0.0",
"contents": {
"package": {
- "displayName": "Standarddesigns",
- "description": "Die hellen und dunklen Visual Studio-Standarddesigns",
- "darkPlusColorThemeLabel": "Dunkel+ (dunkles Standarddesign)",
- "lightPlusColorThemeLabel": "Hell+ (helles Standarddesign)",
"darkColorThemeLabel": "Dunkel (Visual Studio)",
+ "darkModernThemeLabel": "Dunkel modern",
+ "darkPlusColorThemeLabel": "Dunkel+",
+ "description": "Die hellen und dunklen Visual Studio-Standarddesigns",
+ "displayName": "Standarddesigns",
+ "hcColorThemeLabel": "Dunkle hoher Kontrast",
"lightColorThemeLabel": "Hell (Visual Studio)",
- "hcColorThemeLabel": "Hoher Kontrast",
+ "lightHcColorThemeLabel": "Hell hoher Kontrast",
+ "lightModernThemeLabel": "Hell modern",
+ "lightPlusColorThemeLabel": "Hell+",
"minimalIconThemeLabel": "Minimal (Visual Studio Code)"
}
}
diff --git a/i18n/vscode-language-pack-de/translations/extensions/vscode.theme-kimbie-dark.i18n.json b/i18n/vscode-language-pack-de/translations/extensions/vscode.theme-kimbie-dark.i18n.json
index c291f04e53..1cb9f4b5db 100644
--- a/i18n/vscode-language-pack-de/translations/extensions/vscode.theme-kimbie-dark.i18n.json
+++ b/i18n/vscode-language-pack-de/translations/extensions/vscode.theme-kimbie-dark.i18n.json
@@ -9,8 +9,8 @@
"version": "1.0.0",
"contents": {
"package": {
- "displayName": "Dunkles Kimbie-Design",
"description": "Dunkles Kimbie-Design für Visual Studio Code",
+ "displayName": "Dunkles Kimbie-Design",
"themeLabel": "Kimbie dunkel"
}
}
diff --git a/i18n/vscode-language-pack-de/translations/extensions/vscode.theme-monokai-dimmed.i18n.json b/i18n/vscode-language-pack-de/translations/extensions/vscode.theme-monokai-dimmed.i18n.json
index c237b7af0e..41c676db70 100644
--- a/i18n/vscode-language-pack-de/translations/extensions/vscode.theme-monokai-dimmed.i18n.json
+++ b/i18n/vscode-language-pack-de/translations/extensions/vscode.theme-monokai-dimmed.i18n.json
@@ -9,8 +9,8 @@
"version": "1.0.0",
"contents": {
"package": {
- "displayName": "Abgedunkeltes Monokai-Design",
"description": "Abgedunkeltes Monokai-Design für Visual Studio Code",
+ "displayName": "Abgedunkeltes Monokai-Design",
"themeLabel": "Monokai abgedunkelt"
}
}
diff --git a/i18n/vscode-language-pack-de/translations/extensions/vscode.theme-monokai.i18n.json b/i18n/vscode-language-pack-de/translations/extensions/vscode.theme-monokai.i18n.json
index 6c36e2bb79..5f89306026 100644
--- a/i18n/vscode-language-pack-de/translations/extensions/vscode.theme-monokai.i18n.json
+++ b/i18n/vscode-language-pack-de/translations/extensions/vscode.theme-monokai.i18n.json
@@ -9,8 +9,8 @@
"version": "1.0.0",
"contents": {
"package": {
- "displayName": "Monokai-Design",
"description": "Monokai-Design für Visual Studio Code",
+ "displayName": "Monokai-Design",
"themeLabel": "Monokai"
}
}
diff --git a/i18n/vscode-language-pack-de/translations/extensions/vscode.theme-quietlight.i18n.json b/i18n/vscode-language-pack-de/translations/extensions/vscode.theme-quietlight.i18n.json
index 0a243bb801..41aba56d40 100644
--- a/i18n/vscode-language-pack-de/translations/extensions/vscode.theme-quietlight.i18n.json
+++ b/i18n/vscode-language-pack-de/translations/extensions/vscode.theme-quietlight.i18n.json
@@ -9,8 +9,8 @@
"version": "1.0.0",
"contents": {
"package": {
- "displayName": "Dezentes, helles Design",
"description": "Dezentes, helles Design für Visual Studio Code",
+ "displayName": "Dezentes, helles Design",
"themeLabel": "Dezent hell"
}
}
diff --git a/i18n/vscode-language-pack-de/translations/extensions/vscode.theme-red.i18n.json b/i18n/vscode-language-pack-de/translations/extensions/vscode.theme-red.i18n.json
index b6b41c9181..f83921257b 100644
--- a/i18n/vscode-language-pack-de/translations/extensions/vscode.theme-red.i18n.json
+++ b/i18n/vscode-language-pack-de/translations/extensions/vscode.theme-red.i18n.json
@@ -9,8 +9,8 @@
"version": "1.0.0",
"contents": {
"package": {
- "displayName": "Rotes Design",
"description": "Rotes Design für Visual Studio Code",
+ "displayName": "Rotes Design",
"themeLabel": "Rot"
}
}
diff --git a/i18n/vscode-language-pack-de/translations/extensions/vscode.theme-solarized-dark.i18n.json b/i18n/vscode-language-pack-de/translations/extensions/vscode.theme-solarized-dark.i18n.json
index fdbcd0af98..8f130d860b 100644
--- a/i18n/vscode-language-pack-de/translations/extensions/vscode.theme-solarized-dark.i18n.json
+++ b/i18n/vscode-language-pack-de/translations/extensions/vscode.theme-solarized-dark.i18n.json
@@ -9,8 +9,8 @@
"version": "1.0.0",
"contents": {
"package": {
- "displayName": "Dunkles Solarisationsdesign",
"description": "Dunkles Solarisationsdesign für Visual Studio Code",
+ "displayName": "Dunkles Solarisationsdesign",
"themeLabel": "Solarisation dunkel"
}
}
diff --git a/i18n/vscode-language-pack-de/translations/extensions/vscode.theme-solarized-light.i18n.json b/i18n/vscode-language-pack-de/translations/extensions/vscode.theme-solarized-light.i18n.json
index 8199d6b737..bcaaeaa6b4 100644
--- a/i18n/vscode-language-pack-de/translations/extensions/vscode.theme-solarized-light.i18n.json
+++ b/i18n/vscode-language-pack-de/translations/extensions/vscode.theme-solarized-light.i18n.json
@@ -9,8 +9,8 @@
"version": "1.0.0",
"contents": {
"package": {
- "displayName": "Helles Solarisationsdesign",
"description": "Helles Solarisationsdesign für Visual Studio Code",
+ "displayName": "Helles Solarisationsdesign",
"themeLabel": "Solarisation hell"
}
}
diff --git a/i18n/vscode-language-pack-de/translations/extensions/vscode.theme-tomorrow-night-blue.i18n.json b/i18n/vscode-language-pack-de/translations/extensions/vscode.theme-tomorrow-night-blue.i18n.json
index b920efb4e9..5a74397df5 100644
--- a/i18n/vscode-language-pack-de/translations/extensions/vscode.theme-tomorrow-night-blue.i18n.json
+++ b/i18n/vscode-language-pack-de/translations/extensions/vscode.theme-tomorrow-night-blue.i18n.json
@@ -9,8 +9,8 @@
"version": "1.0.0",
"contents": {
"package": {
- "displayName": "Nachtblaues Tomorrow-Design",
"description": "Nachtblaues Tomorrow-Design für Visual Studio Code",
+ "displayName": "Nachtblaues Tomorrow-Design",
"themeLabel": "Tomorrow nachtblau"
}
}
diff --git a/i18n/vscode-language-pack-de/translations/extensions/vscode.tunnel-forwarding.i18n.json b/i18n/vscode-language-pack-de/translations/extensions/vscode.tunnel-forwarding.i18n.json
new file mode 100644
index 0000000000..be11096b65
--- /dev/null
+++ b/i18n/vscode-language-pack-de/translations/extensions/vscode.tunnel-forwarding.i18n.json
@@ -0,0 +1,27 @@
+{
+ "": [
+ "--------------------------------------------------------------------------------------------",
+ "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."
+ ],
+ "version": "1.0.0",
+ "contents": {
+ "bundle": {
+ "Continue": "Weiter",
+ "Don't show again": "Nicht mehr anzeigen",
+ "Port Forwarding": "Portweiterleitung",
+ "Private": "Privat",
+ "Public": "Öffentlich",
+ "You're about to create a publicly forwarded port. Anyone on the internet will be able to connect to the service listening on port {0}. You should only proceed if this service is secure and non-sensitive.": "Sie sind dabei, einen öffentlich weitergeleiteten Port zu erstellen. Jede Person im Internet kann eine Verbindung mit dem Dienst herstellen, der an Port {0} lauscht. Sie sollten den Vorgang nur fortsetzen, wenn dieser Dienst sicher und nicht vertraulich ist."
+ },
+ "package": {
+ "category": "Portweiterleitung",
+ "command.restart": "Weiterleitungssystem neu starten",
+ "command.showLog": "Protokoll anzeigen",
+ "description": "Ermöglicht den Zugriff auf die Weiterleitung lokaler Ports über das Internet.",
+ "displayName": "Lokale Tunnelportweiterleitung"
+ }
+ }
+}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-de/translations/extensions/vscode.typescript-language-features.i18n.json b/i18n/vscode-language-pack-de/translations/extensions/vscode.typescript-language-features.i18n.json
new file mode 100644
index 0000000000..2a87ed5fb8
--- /dev/null
+++ b/i18n/vscode-language-pack-de/translations/extensions/vscode.typescript-language-features.i18n.json
@@ -0,0 +1,367 @@
+{
+ "": [
+ "--------------------------------------------------------------------------------------------",
+ "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."
+ ],
+ "version": "1.0.0",
+ "contents": {
+ "bundle": {
+ "(loading...)/Prefix displayed for hover entries while the server is still loading": "(wird geladen...)",
+ "...1 additional file not shown": "...1 weitere Datei wird nicht angezeigt",
+ "...{0} additional files not shown": "...{0} weitere Dateien werden nicht angezeigt",
+ "1 implementation": "1 Implementierung",
+ "1 reference": "1 Verweis",
+ "Acquiring typings definitions for IntelliSense./Typings refers to the *.d.ts typings files that power our IntelliSense. It should not be localized": "Eingabedefinitionen für IntelliSense werden abgerufen.",
+ "Acquiring typings.../Typings refers to the *.d.ts typings files that power our IntelliSense. It should not be localized": "Eingaben werden abgerufen...",
+ "Add all missing imports": "Alle fehlenden Importe hinzufügen",
+ "Add meaningful parameter name with AI": "Aussagekräftigen Parameternamen mit KI hinzufügen",
+ "Add types to this code. Add separate interfaces when possible. Do not change the code except for adding types.": "Fügen Sie diesem Code Typen hinzu. Fügen Sie nach Möglichkeit separate Schnittstellen hinzu. Ändern Sie den Code nur, um Typen hinzuzufügen.",
+ "Allow": "Zulassen",
+ "Always": "Immer",
+ "An error occurred while renaming file": "Beim Umbenennen der Datei ist ein Fehler aufgetreten.",
+ "Analyzing '{0}' and its dependencies": "\"{0}\" und Abhängigkeiten werden analysiert.",
+ "Checking for update of JS/TS imports": "Überprüfung der Aktualisierung der JS/TS-Importe",
+ "Configure Excludes": "Auszuschließende Elemente konfigurieren",
+ "Configure JSConfig": "JSConfig konfigurieren",
+ "Configure TSConfig": "TSCONFIG konfigurieren",
+ "Configure jsconfig.json": "jsconfig.json konfigurieren",
+ "Configure tsconfig.json": "tsconfig.json konfigurieren",
+ "Could not apply refactoring": "Umgestaltung nicht möglich",
+ "Could not detect a Node installation to run TS Server.": "Es wurde keine Node-Installation zur Ausführung von TS Server erkannt.",
+ "Could not determine TypeScript or JavaScript project": "TypeScript- oder JavaScript-Projekt konnte nicht ermittelt werden.",
+ "Could not determine TypeScript or JavaScript project. Unsupported file type": "TypeScript- oder JavaScript-Projekt konnte nicht ermittelt werden. Nicht unterstützter Dateityp.",
+ "Could not determine references": "Verweise konnten nicht bestimmt werden",
+ "Could not install typings files for JavaScript language features. Please ensure that NPM is installed, or configure 'typescript.npm' in your user settings. Alternatively, check the [documentation]({0}) to learn more.": "Eingabedateien für JavaScript-Sprachfeatures konnten nicht installiert werden. Stellen Sie sicher, dass npm installiert ist, oder konfigurieren Sie \"typescript.npm\" in Ihren Benutzereinstellungen. Alternativ können Sie in der [Dokumentation]({0}) weitere Informationen erhalten.",
+ "Could not load the TypeScript version at this path": "Die TypeScript-Version konnte unter diesem Pfad nicht geladen werden.",
+ "Could not open TS Server log file": "Die TS-Server-Protokolldatei konnte nicht geöffnet werden.",
+ "Disable logging": "Protokollierung deaktivieren",
+ "Disables semantic checking in a JavaScript file. Must be at the top of a file.": "Deaktiviert die Semantiküberprüfung in einer JavaScript-Datei. Muss sich oben in einer Datei befinden.",
+ "Dismiss": "Schließen",
+ "Don't Show Again": "Nicht mehr anzeigen",
+ "Don't show again": "Nicht mehr anzeigen",
+ "Enable logging and restart TS server": "Aktiviert die Protokollierung und startet den TS-Server neu.",
+ "Enables semantic checking in a JavaScript file. Must be at the top of a file.": "Aktiviert die Semantiküberprüfung in einer JavaScript-Datei. Muss sich oben in einer Datei befinden.",
+ "Enter file path": "Dateipfad eingeben",
+ "Enter new file path...": "Neuen Dateipfad eingeben...",
+ "Extract to constant": "In Konstante extrahieren",
+ "Extract to function": "In Funktion extrahieren",
+ "Failed to resolve {0} as module": "Fehler beim Auflösen von {0} als Modul",
+ "Fetching data for better TypeScript IntelliSense": "Daten werden zum Optimieren von TypeScript IntelliSense abgerufen",
+ "File is not part of a JavaScript project. View the [jsconfig.json documentation]({0}) to learn more.": "Die Datei ist nicht Teil eines JavaScript-Projekts. Weitere Informationen finden Sie in der [jsconfig.json-Dokumentation]({0}).",
+ "File is not part of a TypeScript project. View the [tsconfig.json documentation]({0}) to learn more.": "Die Datei ist nicht Teil eines TypeScript-Projekts. Weitere Informationen finden Sie in der [tsconfig.json-Dokumentation]({0}).",
+ "File is not part opened folders": "Datei ist kein Teil geöffneter Ordner",
+ "Find file references failed. No resource provided.": "Fehler beim Suchen nach Dateiverweisen. Es wurde keine Ressource angegeben.",
+ "Find file references failed. Requires TypeScript 4.2+.": "Fehler beim Suchen nach Dateiverweisen. Erfordert TypeScript 4.2+.",
+ "Find file references failed. Unknown file type.": "Fehler beim Suchen nach Dateiverweisen. Unbekannter Dateityp.",
+ "Find file references failed. Unsupported file type.": "Fehler beim Suchen nach Dateiverweisen. Nicht unterstützter Dateityp.",
+ "Finding file references": "Dateiverweise werden gesucht",
+ "Finding source definitions": "Quellendefinitionen finden",
+ "Fix all fixable JS/TS issues": "Alle behebbaren JS/TS-Probleme beheben",
+ "Follow link": "Link folgen",
+ "Go to Source Definition failed. No resource provided.": "Gehe zu Quelldefinition fehlgeschlagen. Keine Ressource bereitgestellt.",
+ "Go to Source Definition failed. Requires TypeScript 4.7+.": "Gehe zu Quelldefinition fehlgeschlagen. Erfordert TypeScript 4.7+.",
+ "Go to Source Definition failed. Unknown file type.": "Gehe zu Quelldefinition fehlgeschlagen. Unbekannter Dateityp.",
+ "Go to Source Definition failed. Unsupported file type.": "Gehe zu Quelldefinition fehlgeschlagen. Nicht unterstütztes Dateiformat.",
+ "Implement missing function declaration '{0}' using AI": "Implementieren Sie die fehlende Funktionsdeklaration „{0}“ mithilfe von KI.",
+ "Implement the stubbed-out class members for {0} with a useful implementation.": "Implementieren Sie die vorgegebenen Klassenmitglieder für {0} mit einer sinnvollen Umsetzung.",
+ "Infer types using AI": "Typen mit KI ableiten",
+ "Initializing '{0}'": "Initialisierung von „{0}“ wird ausgeführt",
+ "JS/TS IntelliSense Status": "JS/TS IntelliSense-Status",
+ "JSDoc comment": "JSDoc-Kommentar",
+ "Learn More": "Weitere Informationen",
+ "Learn more about JS/TS refactorings": "Weitere Informationen zu JS/TS-Refactorings",
+ "Learn more about managing TypeScript versions": "Weitere Informationen zum Verwalten von TypeScript-Versionen",
+ "Loading IntelliSense status": "IntelliSense-Status wird geladen",
+ "Move to File": "In Datei verschieben",
+ "Never": "Nie",
+ "Never in this Workspace": "Nie in diesem Arbeitsbereich",
+ "No": "Nein",
+ "No jsconfig": "Keine jsconfig",
+ "No opened folders": "Keine geöffneten Ordner",
+ "No source definitions found.": "Keine Definitionen gefunden.",
+ "No tsconfig": "Keine tsconfig",
+ "Not now": "Nicht jetzt",
+ "Open Config File": "Konfigurationsdatei öffnen",
+ "Open on GitHub": "In GitHub öffnen",
+ "Organize Imports": "Importe organisieren",
+ "Partial mode": "Teilmodus",
+ "Paste with imports": "Mit Importen einfügen",
+ "Please open a folder in VS Code to use a TypeScript or JavaScript project": "Öffnen Sie einen Ordner in VS Code, um ein TypeScript- oder JavaScript-Projekt zu verwenden.",
+ "Please report an issue against Yarn PnP": "Ein Problem mit Yarn PnP melden",
+ "Please update your TypeScript version": "Bitte aktualisieren Sie Ihre TypeScript-Version.",
+ "Project wide IntelliSense not available": "Projektweites IntelliSense nicht verfügbar",
+ "Provide a reasonable implementation of the function {0} given its type and the context it's called in.": "Liefern Sie eine angemessene Implementierung der Funktion {0} basierend auf ihrem Typ und dem Kontext, in dem sie aufgerufen wird.",
+ "Remove Unused Imports": "Nicht verwendete Importe entfernen",
+ "Remove all unused code": "Gesamten nicht verwendeten Code entfernen",
+ "Rename the parameter {0} with a more meaningful name.": "Geben Sie dem Parameter {0} einen aussagekräftigeren Namen.",
+ "Report Issue": "Problem melden",
+ "Report issue against Yarn PnP": "Problem mit Yarn PnP melden",
+ "Select Version": "Version auswählen",
+ "Select code action to apply": "Anzuwendende Codeaktion auswählen",
+ "Select existing file...": "Vorhandene Datei auswählen...",
+ "Select move destination": "\"Ziel verschieben\" auswählen",
+ "Select the TypeScript version used for JavaScript and TypeScript language features": "Wählen Sie die für die JavaScript- und TypeScript-Sprachfunktionen verwendete TypeScript-Version aus.",
+ "Sort Imports": "Importe sortieren",
+ "Suppresses @ts-check errors on the next line of a file, expecting at least one to exist.": "Unterdrückt @ts-check-Fehler in der nächsten Zeile einer Datei und erwartet, dass mindestens einer vorhanden ist.",
+ "Suppresses @ts-check errors on the next line of a file.": "Unterdrückt @ts-check-Fehler in der nächsten Zeile einer Datei.",
+ "TS Server has not started logging.": "TS Server hat noch nicht mit der Protokollierung begonnen.",
+ "TS Server logging is currently enabled which may impact performance.": "Die TS Server-Protokollierung ist derzeit aktiviert. Das kann Auswirkungen auf die Leistung haben.",
+ "TS Server logging is off. Please set 'typescript.tsserver.log' and restart the TS server to enable logging": "Die TS Server-Protokollierung ist deaktiviert. Legen Sie \"typescript.tsserver.log\" fest, und laden Sie VS Code erneut, um die Protokollierung zu aktivieren.",
+ "The JS/TS language service crashed 5 times in the last 5 Minutes.": "Der JS/TS-Sprachdienst ist in den letzten fünf Minuten fünfmal abgestürzt.",
+ "The JS/TS language service crashed 5 times in the last 5 Minutes.\nThis may be caused by a plugin contributed by one of these extensions: {0}\nPlease try disabling these extensions before filing an issue against VS Code.": "Der JS/TS-Sprachdienst ist in den letzten fünf Minuten fünfmal abgestürzt.\nDies kann durch ein Plug-In verursacht werden, das von einer der folgenden Erweiterungen beigetragen wurde: {0}\nVersuchen Sie, diese Erweiterungen zu deaktivieren, bevor Sie ein Problem mit VS Code melden.",
+ "The JS/TS language service crashed.": "Der JS/TS-Sprachdienst ist abgestürzt.",
+ "The JS/TS language service crashed.\nThis may be caused by a plugin contributed by one of these extensions: {0}.\nPlease try disabling these extensions before filing an issue against VS Code.": "Der JS/TS-Sprachdienst ist abgestürzt.\nDies kann durch ein Plug-In verursacht werden, das von einer der folgenden Erweiterungen beigetragen wurde: {0}.\nVersuchen Sie, diese Erweiterungen zu deaktivieren, bevor Sie ein Problem mit VS Code melden.",
+ "The JS/TS language service immediately crashed 5 times. The service will not be restarted.": "Der JS/TS-Sprachdienst ist sofort fünfmal abgestürzt. Der Dienst wird nicht neu gestartet.",
+ "The JS/TS language service immediately crashed 5 times. The service will not be restarted.\nThis may be caused by a plugin contributed by one of these extensions: {0}.\nPlease try disabling these extensions before filing an issue against VS Code.": "Der JS/TS-Sprachdienst ist sofort fünfmal abgestürzt. Der Dienst wird nicht neu gestartet.\nDies kann durch ein Plug-In verursacht werden, das von einer der folgenden Erweiterungen beigetragen wurde: {0}.\nVersuchen Sie, diese Erweiterungen zu deaktivieren, bevor Sie ein Problem mit VS Code melden.",
+ "The TypeScript Go extension is not installed.": "Die TypeScript Go-Erweiterung ist nicht installiert.",
+ "The current selection cannot be extracted": "Die aktuelle Auswahl kann nicht extrahiert werden.",
+ "The path {0} doesn't point to a valid Node installation to run TS Server. Falling back to bundled Node.": "Der Pfad {0} verweist nicht auf eine gültige Knoteninstallation zum Ausführen des Terminaldiensteservers. Fallback auf Node-Bundle.",
+ "The path {0} doesn't point to a valid tsserver install. Falling back to bundled TypeScript version.": "Der Pfad \"{0}\" zeigt nicht auf eine gültige tsserver-Installation. Fallback auf gebündelte TypeScript-Version wird durchgeführt.",
+ "The workspace is using a version of the TypeScript Server that has been patched by Yarn PnP. This patching is a common source of bugs.": "Der Arbeitsbereich verwendet eine Version des TypeScript-Servers, die von Yarn PnP gepatcht wurde. Dieses Patchen ist eine häufige Fehlerquelle.",
+ "The workspace is using an old version of TypeScript ({0}).\n\nBefore reporting an issue, please update the workspace to use TypeScript {1} or newer to make sure the bug has not already been fixed.": "Der Arbeitsbereich verwendet eine alte Version von TypeScript ({0}).\n\nBevor Sie ein Problem melden, aktualisieren Sie den Arbeitsbereich, um TypeScript {1} oder neuer zu verwenden, um sicherzustellen, dass der Fehler noch nicht behoben wurde.",
+ "This workspace contains a TypeScript version. Would you like to use the workspace TypeScript version for TypeScript and JavaScript language features?": "Dieser Arbeitsbereich enthält eine TypeScript-Version. Möchten Sie die TypeScript-Version des Arbeitsbereichs für TypeScript- und JavaScript-Sprachfeatures verwenden?",
+ "This workspace wants to use the Node installation at '{0}' to run TS Server. Would you like to use it?": "Dieser Arbeitsbereich möchte die Node-Installation unter \"{0}\" verwenden, um TS Server auszuführen. Möchten Sie diese Installation verwenden?",
+ "To enable project-wide JavaScript/TypeScript language features, exclude folders with many files, like: {0}": "Um die JavaScript/TypeScript-Sprachfunktionen für das gesamte Projekt zu aktivieren, schließen Sie Ordner mit vielen Dateien aus. Beispiel: {0}",
+ "To enable project-wide JavaScript/TypeScript language features, exclude large folders with source files that you do not work on.": "Um JavaScript/TypeScript-Sprachfunktionen für das gesamte Projekt zu aktivieren, schließen Sie große Ordner mit Quelldateien aus, an denen Sie nicht arbeiten.",
+ "TypeScript Server Log": "TypeScript-Serverprotokoll",
+ "TypeScript Task in tasks.json contains \"\\\\\". TypeScript tasks tsconfig must use \"/\"": "Die TypeScript-Task in tasks.json enthält \"\\\\\". Für TypeScript-Tasks in tsconfig muss \"/\" verwendet werden.",
+ "TypeScript Version": "TypeScript-Version",
+ "TypeScript language server exited with error. Error message is: {0}": "Der TypeScript-Sprachserver wurde durch einen Fehler beendet. Fehlermeldung: {0}",
+ "TypeScript version": "TypeScript-Version",
+ "TypeScript: Configure Excludes": "TypeScript: Ausschlüsse konfigurieren",
+ "Update imports for '{0}'?": "Importe für \"{0}\" aktualisieren?",
+ "Update imports for the following {0} files?": "Importe für die folgenden {0}-Dateien aktualisieren?",
+ "Use VS Code's Version": "Version von VS Code verwenden",
+ "Use Workspace Version": "Arbeitsbereichsversion verwenden",
+ "VS Code's tsserver was deleted by another application such as a misbehaving virus detection tool. Please reinstall VS Code.": "Der tsserver von VS Code wurde von einer anderen Anwendung wie etwa einem fehlerhaften Tool zur Viruserkennung gelöscht. Führen Sie eine Neuinstallation von VS Code durch.",
+ "Yes": "Ja",
+ "build - {0}": "Erstellen – {0}",
+ "destination files": "Zieldateien",
+ "invalid version": "Ungültige Version",
+ "watch - {0}": "Überwachen – {0}",
+ "{0} (Fix all in file)": "{0} (Behebe alle in Datei)",
+ "{0} implementations": "{0} Implementierungen",
+ "{0} references": "{0} Verweise",
+ "{0} with AI": "{0} mit KI"
+ },
+ "package": {
+ "configuration.format": "Formatierung",
+ "configuration.hover.maximumLength": "Die maximale Anzahl von Zeichen beim darauf zeigen Wenn der Text für das Darauf zeigen länger ist, wird er abgeschnitten Erfordert TypeScript 5.9 und höher",
+ "configuration.implicitProjectConfig.checkJs": "Aktiviert/deaktiviert die Semantikprüfung bei JavaScript-Dateien. Diese Einstellung wird von vorhandenen Dateien \"jsconfig.json\" oder \"tsconfig.json\" außer Kraft gesetzt.",
+ "configuration.implicitProjectConfig.experimentalDecorators": "Aktiviert/deaktiviert \"experimentalDecorators\" in JavaScript-Dateien, die keinem Projekt angehören. Diese Einstellung wird von vorhandenen Dateien \"jsconfig.json\" oder \"tsconfig.json\" außer Kraft gesetzt.",
+ "configuration.implicitProjectConfig.module": "Legt das Modulsystem für das Programm fest. Weitere Informationen finden Sie unter https://www.typescriptlang.org/tsconfig#module.",
+ "configuration.implicitProjectConfig.strict": "Aktiviert/deaktiviert [strenger Modus](https://www.typescriptlang.org/tsconfig#strict) in JavaScript- und TypeScript-Dateien, die keinem Projekt angehören. Diese Einstellung wird von vorhandenen Dateien \"jsconfig.json\" oder \"tsconfig.json\" außer Kraft gesetzt.",
+ "configuration.implicitProjectConfig.strictFunctionTypes": "Aktiviert/deaktiviert [strenge Funktionstypen](https://www.typescriptlang.org/tsconfig#strictFunctionTypes) in JavaScript- und TypeScript-Dateien, die keinem Projekt angehören. Diese Einstellung wird von vorhandenen Dateien \"jsconfig.json\" oder \"tsconfig.json\" außer Kraft gesetzt.",
+ "configuration.implicitProjectConfig.strictNullChecks": "Aktiviert/deaktiviert [strenge NULL-Prüfungen](https://www.typescriptlang.org/tsconfig#strictNullChecks) in JavaScript- und TypeScript-Dateien, die keinem Projekt angehören. Diese Einstellung wird von vorhandenen Dateien \"jsconfig.json\" oder \"tsconfig.json\" außer Kraft gesetzt.",
+ "configuration.implicitProjectConfig.target": "Legen Sie die JavaScript-Zielsprachversion für ausgegebenes JavaScript fest, und schließen Sie Bibliotheksdeklarationen ein. Weitere Informationen finden Sie unter https://www.typescriptlang.org/tsconfig#target.",
+ "configuration.inlayHints": "Inlay-Hinweise",
+ "configuration.inlayHints.enumMemberValues.enabled": "Aktiviert/deaktivier Inlay-Hinweise für Memberwerte in Enumerationsdeklarationen:\r\n```typescript\r\n\r\nenum MyValue {\r\n\tA /* = 0 */;\r\n\tB /* = 1 */;\r\n}\r\n \r\n```",
+ "configuration.inlayHints.functionLikeReturnTypes.enabled": "Aktiviert/deaktiviert Inlay-Hinweise für implizite Rückgabetypen für Funktionssignaturen:\r\n```typescript\r\n\r\nfunction foo() /* :number */ {\r\n\treturn Date.now();\r\n} \r\n \r\n```",
+ "configuration.inlayHints.parameterNames.enabled": "Aktiviert/deaktivier Inlay-Hinweise für Parameternamen:\r\n```typescript\r\n\r\nparseInt(/* str: */ '123', /* radix: */ 8)\r\n \r\n```",
+ "configuration.inlayHints.parameterNames.suppressWhenArgumentMatchesName": "Unterdrückt Hinweise für Parameternamen auf Argumenten, deren Text mit dem Parameternamen identisch ist.",
+ "configuration.inlayHints.parameterTypes.enabled": "Aktiviert/deaktiviert Inlay-Hinweise für implizite Parametertypen:\r\n```typescript\r\n\r\nel.addEventListener('click', e /* :MouseEvent */ => ...)\r\n \r\n```",
+ "configuration.inlayHints.propertyDeclarationTypes.enabled": "Aktiviert/deaktiviert Inlay-Hinweise für implizite Typen in Eigenschaftsdeklarationen:\r\n```typescript\r\n\r\nclass Foo {\r\n\tprop /* :number */ = Date.now();\r\n}\r\n \r\n```",
+ "configuration.inlayHints.variableTypes.enabled": "Aktiviert/deaktiviert Inlay-Hinweise für implizite Variablentypen:\r\n```typescript\r\n\r\nconst foo /* :number */ = Date.now();\r\n \r\n```",
+ "configuration.inlayHints.variableTypes.suppressWhenTypeMatchesName": "Unterdrücken Sie Typhinweise für Variablen, deren Name mit dem Typnamen identisch ist.",
+ "configuration.preferGoToSourceDefinition": "Hiermit werden Typdeklarationsdateien bei „Zur Definition wechseln“ nach Möglichkeit vermieden, indem stattdessen „Zur Quelldefinition wechseln“ ausgelöst wird. Auf diese Weise kann „Zur Quelldefinition wechseln“ mit der Mausgeste ausgelöst werden.",
+ "configuration.preferences": "Einstellungen",
+ "configuration.server": "TS Server",
+ "configuration.suggest": "Empfehlungen",
+ "configuration.suggest.autoImports": "Aktiviert/deaktiviert automatische Importvorschläge.",
+ "configuration.suggest.classMemberSnippets.enabled": "Aktivieren/Deaktivieren Sie die Codeausschnitt-Vervollständigungen für Klassenmember.",
+ "configuration.suggest.completeFunctionCalls": "Vervollständigen Sie Funktionen mit deren Parametersignatur.",
+ "configuration.suggest.completeJSDocs": "Vorschläge zum Vervollständigen von JSDoc-Kommentaren aktivieren/deaktivieren.",
+ "configuration.suggest.includeAutomaticOptionalChainCompletions": "Aktiviert/deaktiviert Sie die Vervollständigungen für möglicherweise nicht definierte Werte, die eine optionale Aufrufkette einfügen. Hierfür müssen strikte NULL-Überprüfungen aktiviert sein.",
+ "configuration.suggest.includeCompletionsForImportStatements": "Aktivieren/Deaktivieren Sie die Vervollständigungen im automatischen Importstil für teilweise typisierte Importanweisungen.",
+ "configuration.suggest.jsdoc.generateReturns": "Aktivieren/Deaktivieren Sie das Generieren von „@returns“-Anmerkungen für JSDoc-Vorlagen.",
+ "configuration.suggest.names": "Aktivieren/Deaktivieren, dass eindeutige Namen aus der Datei in JavaScript-Vorschläge eingeschlossen werden. Beachten Sie, dass Namensvorschläge in JavaScript-Code, dessen Semantik mit \"@ts-check\" oder \"checkJs\" überprüft wird, immer deaktiviert sind.",
+ "configuration.suggest.objectLiteralMethodSnippets.enabled": "Aktivieren/Deaktivieren Sie Vervollständigungen von Codeschnipseln für Methoden in Objektliteralen.",
+ "configuration.suggest.paths": "Vorschläge für Pfade in Importanweisungen und require-Aufrufen aktivieren bzw. deaktivieren.",
+ "configuration.tsserver.experimental.enableProjectDiagnostics": "Aktiviert die projektweite Fehlerberichterstattung.",
+ "configuration.tsserver.maxTsServerMemory": "Der maximale Arbeitsspeicher (in MB), der dem TypeScript-Serverprozess zugeordnet werden soll. Wenn Sie ein Arbeitsspeicherlimit von mehr als 4 GB benötigen, verwenden Sie \"#typescript.tsserver.nodePath#\", um TS Server mit einer benutzerdefinierten Node-Installation auszuführen.",
+ "configuration.tsserver.nodePath": "Führen Sie TS Server in einer benutzerdefinierten Node-Installation aus. Dies kann ein Pfad zu einer ausführbaren Node-Datei oder \"node\" sein, wenn Sie möchten, dass VS Code eine Node-Installation erkennt.",
+ "configuration.tsserver.useSeparateSyntaxServer": "Aktivieren/Deaktivieren Sie das Erzeugen eines separaten TypeScript-Servers, der schneller auf syntaxbezogene Vorgänge reagieren kann, beispielsweise das Berechnen von Codefaltung oder von Dokumentsymbolen.",
+ "configuration.tsserver.useSyntaxServer": "Kontrolliert, ob TypeScript einen dedizierten Server startet, um syntaxbezogene Vorgänge schneller zu verarbeiten, z. B. das Berechnen der Codefaltung.",
+ "configuration.tsserver.useSyntaxServer.always": "Verwenden Sie einen Syntaxserver mit leichter Gewichtung, um alle IntelliSense-Vorgänge zu bearbeiten. Dieser Syntaxserver kann IntelliSense nur für geöffnete Dateien bereitstellen.",
+ "configuration.tsserver.useSyntaxServer.auto": "Erzeugen Sie einen vollständigen Server und einen Server mit leichter Gewichtung für Syntaxvorgänge. Der Syntaxserver wird verwendet, um Syntaxvorgänge zu beschleunigen und IntelliSense bereitzustellen, während Projekte geladen werden.",
+ "configuration.tsserver.useSyntaxServer.never": "Verwenden Sie keinen dedizierten Syntaxserver. Verwenden Sie einen Einzelserver, um alle IntelliSense-Vorgänge zu bearbeiten.",
+ "configuration.tsserver.useVsCodeWatcher": "Verwenden Sie die Dateiüberwachungselemente von VS Code anstelle von TypeScript. Erfordert die Verwendung von TypeScript 5.4 und höher im Arbeitsbereich.",
+ "configuration.tsserver.watchOptions": "Konfigurieren Sie, welche Beobachtungsstrategien verwendet werden sollen, um Dateien und Verzeichnisse nachzuverfolgen.",
+ "configuration.tsserver.watchOptions.fallbackPolling": "Bei der Verwendung von Dateisystemereignissen gibt diese Option die Abrufstrategie an, die verwendet wird, wenn das System keine nativen Dateiüberwachungselemente mehr hat und/oder keine nativen Dateiüberwachungselemente unterstützt.",
+ "configuration.tsserver.watchOptions.fallbackPolling.dynamicPriorityPolling ": "Dynamische Warteschlange verwenden, in der weniger häufig geänderte Dateien seltener überprüft werden.",
+ "configuration.tsserver.watchOptions.fallbackPolling.fixedPollingInterval": "Jede Datei mehrmals pro Sekunde in einem festen Intervall auf Änderungen überprüfen.",
+ "configuration.tsserver.watchOptions.fallbackPolling.priorityPollingInterval": "Jede Datei mehrmals pro Sekunde auf Änderungen überprüfen, bestimmte Dateitypen jedoch mithilfe von Heuristiken seltener als andere überprüfen.",
+ "configuration.tsserver.watchOptions.synchronousWatchDirectory": "Verzögertes Beobachten von Verzeichnissen deaktivieren. Das verzögertes Beobachten ist nützlich, wenn viele Dateiänderungen gleichzeitig auftreten können (z. B. eine Änderung in node_modules über eine Ausführung von npm-install). Sie sollten das verzögerte Beobachten jedoch mit diesem Flag für einige weniger häufige Setups deaktivieren.",
+ "configuration.tsserver.watchOptions.vscode": "Verwenden Sie die Dateiüberwachungselemente von VS Code anstelle von TypeScript. Erfordert die Verwendung von TypeScript 5.4 und höher im Arbeitsbereich.",
+ "configuration.tsserver.watchOptions.watchDirectory": "Strategie, wie ganze Verzeichnisbäume unter Systemen ohne rekursive Dateibeobachtungsfunktionalität beobachtet werden.",
+ "configuration.tsserver.watchOptions.watchDirectory.dynamicPriorityPolling": "Dynamische Warteschlange verwenden, in der weniger häufig geänderte Verzeichnisse seltener überprüft werden.",
+ "configuration.tsserver.watchOptions.watchDirectory.fixedChunkSizePolling": "Fragt Verzeichnisse in Blöcken in regelmäßigen Intervallen ab.",
+ "configuration.tsserver.watchOptions.watchDirectory.fixedPollingInterval": "Jedes Verzeichnis mehrmals pro Sekunde in einem festen Intervall auf Änderungen überprüfen.",
+ "configuration.tsserver.watchOptions.watchDirectory.useFsEvents": "Versuchen Sie, die nativen Ereignisse des Betriebssystems/Dateisystems für Verzeichnisänderungen zu verwenden.",
+ "configuration.tsserver.watchOptions.watchFile": "Strategie für die Anzeige einzelner Dateien.",
+ "configuration.tsserver.watchOptions.watchFile.dynamicPriorityPolling": "Dynamische Warteschlange verwenden, in der weniger häufig geänderte Dateien seltener überprüft werden.",
+ "configuration.tsserver.watchOptions.watchFile.fixedChunkSizePolling": "Fragt Dateien in Blöcken in regelmäßigen Intervallen ab.",
+ "configuration.tsserver.watchOptions.watchFile.fixedPollingInterval": "Jede Datei mehrmals pro Sekunde in einem festen Intervall auf Änderungen überprüfen.",
+ "configuration.tsserver.watchOptions.watchFile.priorityPollingInterval": "Jede Datei mehrmals pro Sekunde auf Änderungen überprüfen, bestimmte Dateitypen jedoch mithilfe von Heuristiken seltener als andere überprüfen.",
+ "configuration.tsserver.watchOptions.watchFile.useFsEvents": "Versuchen Sie, die nativen Ereignisse des Betriebssystems/Dateisystems für Dateiänderungen zu verwenden.",
+ "configuration.tsserver.watchOptions.watchFile.useFsEventsOnParentDirectory": "Versuchen Sie, die nativen Ereignisse des Betriebssystems/Dateisystems zu verwenden, um Änderungen an den Verzeichnissen einer Datei zu überwachen. Dies kann weniger Dateiüberwachungselemente erfordern, doch der Vorgang ist möglicherweise weniger genau.",
+ "configuration.tsserver.web.projectWideIntellisense.enabled": "Aktiviert/deaktiviert projektweites IntelliSense im Web. Erfordert, dass VS Code in einem vertrauenswürdigen Kontext ausgeführt wird.",
+ "configuration.tsserver.web.projectWideIntellisense.suppressSemanticErrors": "Unterdrückt semantische Fehler im Web, auch wenn projektweites IntelliSense aktiviert ist. Das ist immer aktiviert, wenn projektweites IntelliSense nicht aktiviert oder verfügbar ist. Siehe \"#typescript.tsserver.web.projectWideIntellisense.enabled#\"",
+ "configuration.tsserver.web.typeAcquisition.enabled": "Aktiviert/deaktiviert die Paketerfassung im Web. Hiermit wird IntelliSense für importierte Pakete aktiviert. Erfordert \"#typescript.tsserver.web.projectWideIntellisense.enabled#\". Wird für Safari aktuell nicht unterstützt.",
+ "configuration.typescript": "TypeScript",
+ "configuration.updateImportsOnPaste": "Importe beim Einfügen von Code automatisch aktualisieren. Erfordert TypeScript 5.6 und höher.",
+ "description": "Bietet umfangreiche Sprachunterstützung für JavaScript und TypeScript.",
+ "displayName": "TypeScript- und JavaScript-Sprachfeatures",
+ "format.indentSwitchCase": "Einrücken von Case-Klauseln in Switch-Anweisungen. Erfordert die Verwendung von TypeScript 5.1 und höher im Arbeitsbereich.",
+ "format.insertSpaceAfterCommaDelimiter": "Definiert die Verarbeitung von Leerzeichen nach einem Kommatrennzeichen.",
+ "format.insertSpaceAfterConstructor": "Definiert die Verarbeitung von Leerzeichen nach dem Konstruktorschlüsselwort.",
+ "format.insertSpaceAfterFunctionKeywordForAnonymousFunctions": "Definiert die Verarbeitung von Leerzeichen nach einem Funktionsschlüsselwort für anonyme Funktionen.",
+ "format.insertSpaceAfterKeywordsInControlFlowStatements": "Definiert die Verarbeitung von Leerzeichen nach Schlüsselwörtern in einer Flusssteuerungsanweisung.",
+ "format.insertSpaceAfterOpeningAndBeforeClosingEmptyBraces": "Definiert die Verarbeitung von Leerzeichen nach geschweifter Klammer links und vor geschweifter Klammer rechts, wenn diese keine Inhalte umschließen.",
+ "format.insertSpaceAfterOpeningAndBeforeClosingJsxExpressionBraces": "Definiert die Verarbeitung von Leerzeichen nach öffnenden und vor schließenden geschweiften Klammern für JSX-Ausdrücke.",
+ "format.insertSpaceAfterOpeningAndBeforeClosingNonemptyBraces": "Definiert die Verarbeitung von Leerzeichen nach öffnenden und vor schließenden nicht leeren geschweiften Klammern.",
+ "format.insertSpaceAfterOpeningAndBeforeClosingNonemptyBrackets": "Definiert die Verarbeitung von Leerzeichen nach öffnenden und vor schließenden nicht leeren eckigen Klammern.",
+ "format.insertSpaceAfterOpeningAndBeforeClosingNonemptyParenthesis": "Definiert die Verarbeitung von Leerzeichen nach öffnenden und vor schließenden nicht leeren runden Klammern.",
+ "format.insertSpaceAfterOpeningAndBeforeClosingTemplateStringBraces": "Definiert die Verarbeitung von Leerzeichen nach öffnenden und vor schließenden geschweiften Klammern für Vorlagenzeichenfolgen.",
+ "format.insertSpaceAfterSemicolonInForStatements": "Definiert die Verarbeitung von Leerzeichen nach einem Semikolon in einer for-Anweisung.",
+ "format.insertSpaceAfterTypeAssertion": "Definiert die Verarbeitung von Leerzeichen nach Typassertionen in TypeScript.",
+ "format.insertSpaceBeforeAndAfterBinaryOperators": "Definiert die Verarbeitung von Leerzeichen nach einem binären Operator.",
+ "format.insertSpaceBeforeFunctionParenthesis": "Definiert die Verarbeitung von Leerzeichen vor Funktionsargumentklammern.",
+ "format.placeOpenBraceOnNewLineForControlBlocks": "Definiert, ob eine öffnende geschweifte Klammer für Kontrollblöcke in eine neue Zeile eingefügt wird.",
+ "format.placeOpenBraceOnNewLineForFunctions": "Definiert, ob eine öffnende geschweifte Klammer für Funktionen in eine neue Zeile eingefügt wird.",
+ "format.semicolons": "Definiert die Behandlung optionaler Semikolons.",
+ "format.semicolons.ignore": "Fügen Sie keine Semikolons ein, und entfernen Sie diese auch nicht.",
+ "format.semicolons.insert": "Fügen Sie am Ende von Anweisungen ein Semikolon ein.",
+ "format.semicolons.remove": "Entfernen Sie unnötige Semikola.",
+ "inlayHints.parameterNames.all": "Aktivieren Sie Hinweise für Parameternamen für literale und nicht literale Argumente.",
+ "inlayHints.parameterNames.literals": "Aktivieren Sie Hinweise für Parameternamen nur für literale Argumente.",
+ "inlayHints.parameterNames.none": "Deaktivieren Sie Hinweise für Parameternamen.",
+ "javascript.format.enable": "Standardmäßigen JavaScript-Formatierer aktivieren/deaktivieren.",
+ "javascript.goToProjectConfig.title": "Zu Projektkonfiguration wechseln (jsconfig/tsconfig)",
+ "javascript.preferences.jsxAttributeCompletionStyle.auto": "Fügen Sie „={}“ oder „=\"\"“ nach Attributnamen ein, die auf dem Eigenschaftentyp basieren. Informationen zum Steuern des Typs von Anführungszeichen, die für Zeichenfolgenattribute verwendet werden, finden Sie unter „#javascript.preferences.quoteStyle#“.",
+ "javascript.preferences.organizeImports": "Erweiterte Einstellungen, die steuern, wie Importe geordnet werden.",
+ "javascript.referencesCodeLens.enabled": "Aktiviert oder deaktiviert CodeLens-Verweise in JavaScript-Dateien.",
+ "javascript.referencesCodeLens.showOnAllFunctions": "Verweise auf CodeLens für alle Funktionen in JavaScript-Dateien aktivieren/deaktivieren",
+ "javascript.suggestionActions.enabled": "Aktiviert oder deaktiviert Vorschlagsdiagnosen für JavaScript-Dateien im Editor.",
+ "javascript.validate.enable": "JavaScript-Überprüfung aktivieren/deaktivieren.",
+ "reloadProjects.title": "Projekt erneut laden",
+ "taskDefinition.tsconfig.description": "Die \"tsconfig\"-Datei, die den TS-Build definiert.",
+ "typescript.autoClosingTags": "Aktiviert/deaktiviert das automatische Schließen von JSX-Tags.",
+ "typescript.check.npmIsInstalled": "Überprüfen Sie, ob npm für [Automatische Typerfassung](https://code.visualstudio.com/docs/nodejs/working-with-javascript#_typings-and-automatic-type-acquisition) installiert ist.",
+ "typescript.disableAutomaticTypeAcquisition": "Deaktiviert [automatische Typerfassung](https://code.visualstudio.com/docs/nodejs/working-with-javascript#_typings-and-automatic-type-acquisition). Die automatische Typerfassung ruft „@types\" Pakete von npm ab, um IntelliSense für externe Bibliotheken zu verbessern.",
+ "typescript.enablePromptUseWorkspaceTsdk": "Aktiviert eine Benutzeraufforderung zur Verwendung der im Arbeitsbereich konfigurierten TypeScript-Version für IntelliSense.",
+ "typescript.findAllFileReferences": "Dateiverweise suchen",
+ "typescript.format.enable": "Standardmäßigen TypeScript-Formatierer aktivieren/deaktivieren.",
+ "typescript.goToProjectConfig.title": "Zur Projektkonfiguration wechseln (tsconfig)",
+ "typescript.goToSourceDefinition": "Gehen Sie zu Quelldefinition",
+ "typescript.implementationsCodeLens.enabled": "Aktiviert oder deaktiviert CodeLens-Implementierungen. Dieses CodeLens-Element zeigt an, wer eine Schnittstelle implementiert hat.",
+ "typescript.implementationsCodeLens.showOnAllClassMethods": "Aktivieren/deaktivieren Sie die Anzeige von CodeLens zu Implementierungen über allen Klassenmethoden, nicht nur bei abstrakten Methoden.",
+ "typescript.implementationsCodeLens.showOnInterfaceMethods": "Aktivieren/Deaktivieren von Implementierungen von CodeLens für Schnittstellenmethoden.",
+ "typescript.locale": "Legt das zum Melden von JavaScript- und TypeScript-Fehlern verwendete Gebietsschema fest. Standardmäßig wird das Gebietsschema von VS Code verwendet.",
+ "typescript.locale.auto": "Konfigurierte Anzeigesprache von VS Code verwenden.",
+ "typescript.npm": "Gibt den Pfad zur ausführbaren npm-Datei an, die für [Automatische Typerfassung](https://code.visualstudio.com/docs/nodejs/working-with-javascript#_typings-and-automatic-type-acquisition) verwendet wird.",
+ "typescript.openTsServerLog.title": "TS Server-Protokolldatei öffnen",
+ "typescript.preferences.autoImportFileExcludePatterns": "Geben Sie Globmuster von Dateien an, die von automatischen Importen ausgeschlossen werden sollen. Relative Pfade werden relativ zum Arbeitsbereichsstamm aufgelöst. Muster werden mit der [exclude](https://www.typescriptlang.org/tsconfig#exclude)-Semantik von \"tsconfig.json\" ausgewertet.",
+ "typescript.preferences.autoImportSpecifierExcludeRegexes": "Geben Sie reguläre Ausdrücke an, um automatische Importe mit übereinstimmenden Importspezifizierern auszuschließen. Beispiele:\r\n\r\n- `^node:`\r\n- `lib/internal` (Schrägstriche müssen mit Escapezeichen verwendet werden)\r\n- `/lib\\/internal/i` (... sofern keine umgebenden Schrägstriche für die Flags \"i\" oder \"u\" eingeschlossen werden)\r\n- `^lodash$` (nur Unterpfadimporte aus Lodash zulassen)",
+ "typescript.preferences.importModuleSpecifier": "Bevorzugter Pfadstil für automatische Importe.",
+ "typescript.preferences.importModuleSpecifier.nonRelative": "Hiermit wird ein nicht relativer Import basierend auf den Werten von \"baseUrl\" oder \"paths\" vorgezogen, die in \"jsconfig.json\"/\"tsconfig.json\" konfiguriert sind.",
+ "typescript.preferences.importModuleSpecifier.projectRelative": "Bevorzugt einen nicht relativen Import nur, wenn der relative Importpfad das Paket- oder Projektverzeichnis verlassen würde.",
+ "typescript.preferences.importModuleSpecifier.relative": "Hiermit wird ein relativer Pfad zum importierten Dateispeicherort vorgezogen.",
+ "typescript.preferences.importModuleSpecifier.shortest": "Hiermit wird ein nicht relativer Import vorgezogen, falls einer verfügbar ist, der weniger Pfadsegmente als ein relativer Import aufweist.",
+ "typescript.preferences.importModuleSpecifierEnding": "Bevorzugte Pfadendung für automatische Importe.",
+ "typescript.preferences.importModuleSpecifierEnding.auto": "Wählen Sie über die Projekteinstellungen einen Standardwert aus.",
+ "typescript.preferences.importModuleSpecifierEnding.index": "Hiermit wird \"./component/index.js\" auf \"./component/index\" gekürzt.",
+ "typescript.preferences.importModuleSpecifierEnding.js": "Kürzen Sie keine Pfadenden; fügen Sie die Erweiterung \".js\" oder \".ts\" ein.",
+ "typescript.preferences.importModuleSpecifierEnding.label.js": ".js / .ts",
+ "typescript.preferences.importModuleSpecifierEnding.minimal": "./component/index.js zu ./component kürzen.",
+ "typescript.preferences.includePackageJsonAutoImports": "Hiermit wird die Suche nach \"package.json\"-Abhängigkeiten für verfügbare automatische Importe aktiviert/deaktiviert.",
+ "typescript.preferences.includePackageJsonAutoImports.auto": "Basierend auf der geschätzten Leistungsbeeinträchtigung nach Abhängigkeiten suchen",
+ "typescript.preferences.includePackageJsonAutoImports.off": "Niemals nach Abhängigkeiten suchen",
+ "typescript.preferences.includePackageJsonAutoImports.on": "Immer nach Abhängigkeiten suchen",
+ "typescript.preferences.jsxAttributeCompletionStyle": "Bevorzugter Stil für JSX-Attribut-Vervollständigungen.",
+ "typescript.preferences.jsxAttributeCompletionStyle.auto": "Fügen Sie „={}“ oder „=\"\"“ nach Attributnamen ein, die auf dem Eigenschaftentyp basieren. Informationen zum Steuern des Typs von Anführungszeichen, die für Zeichenfolgenattribute verwendet werden, finden Sie unter „#typescript.preferences.quoteStyle#“.",
+ "typescript.preferences.jsxAttributeCompletionStyle.braces": "Fügen Sie „={}“ nach Attributnamen ein.",
+ "typescript.preferences.jsxAttributeCompletionStyle.none": "Fügen Sie nur Attributnamen ein.",
+ "typescript.preferences.organizeImports": "Erweiterte Einstellungen, die steuern, wie Importe geordnet werden.",
+ "typescript.preferences.organizeImports.accentCollation": "Erfordert „organizeImports.unicodeCollation: 'unicode'“. Zeichen mit diakritischen Markierungen als ungleich zu Basiszeichen vergleichen.",
+ "typescript.preferences.organizeImports.caseFirst": "Erfordert „organizeImports.unicodeCollation: „unicode“, und „organizeImports.caseSensitivity“ ist nicht „caseInsensitive“. Gibt an, ob Großbuchstaben vor Kleinbuchstaben sortiert werden.",
+ "typescript.preferences.organizeImports.caseFirst.default": "Standardreihenfolge, die von „locale“ angegeben wird.",
+ "typescript.preferences.organizeImports.caseFirst.lower": "Kleinbuchstaben kommen vor Großbuchstaben. Beispiel: a, A, z, Z.",
+ "typescript.preferences.organizeImports.caseFirst.upper": "Großbuchstaben kommen vor Kleinbuchstaben. Beispiel: A, a, B, b.",
+ "typescript.preferences.organizeImports.caseSensitivity": "Gibt an, wie Importe in Bezug auf die Unterscheidung nach Kleinschreibung sortiert werden sollen. Wenn „auto“ oder nicht angegeben ist, wird die Unterscheidung nach Kleinschreibung pro Datei erkannt.",
+ "typescript.preferences.organizeImports.caseSensitivity.auto": "Groß-/Kleinbuchstaben für Importsortierung erkennen.",
+ "typescript.preferences.organizeImports.caseSensitivity.insensitive": "Importe ohne Beachtung der Groß-/Kleinschreibung sortieren.",
+ "typescript.preferences.organizeImports.caseSensitivity.sensitive": "Importe mit Beachtung der Groß-/Kleinschreibung sortieren.",
+ "typescript.preferences.organizeImports.locale": "Erfordert „organizeImports.unicodeCollation: 'unicode'“. Überschreibt das Gebietsschema, das für die Sortierung verwendet wird. Geben Sie \"auto\" an, um das Gebietsschema der Benutzeroberfläche zu verwenden.",
+ "typescript.preferences.organizeImports.numericCollation": "Erfordert „organizeImports.unicodeCollation: 'unicode'“. Numerische Zeichenfolgen nach ganzzahligem Wert sortieren.",
+ "typescript.preferences.organizeImports.typeOrder": "Angeben, wie nur typbezogene benannte Importe sortiert werden sollen.",
+ "typescript.preferences.organizeImports.typeOrder.auto": "Ermitteln, wo nur typbezogene benannte Importe sortiert werden sollen.",
+ "typescript.preferences.organizeImports.typeOrder.first": "Nur benannte Importe vom Typ werden bis zum Ende der Importliste sortiert. Beispiel: „import { type A, type Y, B, Z } from 'module';“",
+ "typescript.preferences.organizeImports.typeOrder.inline": "Benannte Importe werden nur nach Namen sortiert. Beispiel: „import { type A, B, type Y, Z } from 'module';“",
+ "typescript.preferences.organizeImports.typeOrder.last": "Nur benannte Importe vom Typ werden bis zum Ende der Importliste sortiert. Beispiel: „import { B, Z, type A, type Y } from 'module';“",
+ "typescript.preferences.organizeImports.unicodeCollation": "Geben Sie an, ob Importe mit Unicode- oder ordinaler Sortierung sortiert werden sollen.",
+ "typescript.preferences.organizeImports.unicodeCollation.ordinal": "Importe anhand des numerischen Werts jedes Codepunkts sortieren.",
+ "typescript.preferences.organizeImports.unicodeCollation.unicode": "Importe mithilfe der Unicode-Codesortierung sortieren.",
+ "typescript.preferences.preferTypeOnlyAutoImports": "Schließen Sie das type-Schlüsselwort nach Möglichkeit in automatische Importe ein. Erfordert die Verwendung von TypeScript 5.3 und höher im Arbeitsbereich.",
+ "typescript.preferences.quoteStyle": "Bevorzugtes Anführungszeichenformat, das für schnelle Problembehebungen verwendet werden soll.",
+ "typescript.preferences.quoteStyle.auto": "Anführungszeichentyp aus vorhandenem Code ableiten",
+ "typescript.preferences.quoteStyle.double": "Verwenden Sie immer doppelte Anführungszeichen: `\"`",
+ "typescript.preferences.quoteStyle.single": "Verwenden Sie immer einfache Anführungszeichen: `'`",
+ "typescript.preferences.renameMatchingJsxTags": "Wenn Sie ein JSX-Tag verwenden, versuchen Sie, das entsprechende Tag umzubenennen, anstatt das Symbol umzubenennen. Erfordert die Verwendung von TypeScript 5.1 und höher im Arbeitsbereich.",
+ "typescript.preferences.useAliasesForRenames": "Aktivieren/Deaktivieren Sie die Einführung von Aliasen für Objektkompakteigenschaften während des Umbenennens.",
+ "typescript.problemMatchers.tsc.label": "TypeScript-Probleme",
+ "typescript.problemMatchers.tscWatch.label": "TypeScript-Probleme (Überwachungsmodus)",
+ "typescript.problemMatchers.tsgo-watch.label": "TypeScript-Probleme (Überwachungsmodus)",
+ "typescript.referencesCodeLens.enabled": "Aktiviert oder deaktiviert CodeLens-Verweise in TypeScript-Dateien.",
+ "typescript.referencesCodeLens.showOnAllFunctions": "Verweise auf CodeLens für alle Funktionen in TypeScript-Dateien aktivieren/deaktivieren",
+ "typescript.removeUnusedImports": "Nicht verwendete Importe entfernen",
+ "typescript.reportStyleChecksAsWarnings": "Stilüberprüfungen als Warnungen melden.",
+ "typescript.restartTsServer": "TS-Server neu starten",
+ "typescript.selectTypeScriptVersion.title": "TypeScript-Version auswählen ...",
+ "typescript.sortImports": "Importe sortieren",
+ "typescript.suggest.enabled": "Aktivieren oder deaktivieren Sie die AutoVervollständigen-Empfehlungen.",
+ "typescript.suggestionActions.enabled": "Aktiviert oder deaktiviert Vorschlagsdiagnosen für TypeScript-Dateien im Editor.",
+ "typescript.tsc.autoDetect": "Legt fest, ob tsc-Tasks automatisch erkannt werden.",
+ "typescript.tsc.autoDetect.build": "Nur Tasks mit einmaliger Kompilierung erstellen.",
+ "typescript.tsc.autoDetect.off": "Dieses Feature deaktivieren.",
+ "typescript.tsc.autoDetect.on": "Build- und Überwachungstasks erstellen",
+ "typescript.tsc.autoDetect.watch": "Nur Kompilierungs- und Überwachungstasks erstellen.",
+ "typescript.tsdk.desc": "Gibt den Ordnerpfad zu den tsserver- und lib*.d.ts-Dateien unter einer TypeScript-Installation zur Verwendung mit IntelliSense an, zum Beispiel: „./node_modules/typescript/lib“.\r\n\r\n– Sofern als Benutzereinstellung angegeben, ersetzt die TypeScript-Version aus „typescript.tsdk“ automatisch die integrierte TypeScript-Version.\r\n– Sofern als Arbeitsbereichseinstellung angegeben, erlaubt Ihnen „typescript.tsdk“ mit dem Befehl „TypeScript: Select TypeScript version“ zu dieser Arbeitsbereichsversion von TypeScript zu wechseln und sie für IntelliSense zu verwenden.\r\n\r\nWeitere Informationen zum Verwalten von TypeScript-Versionen finden Sie in der [Dokumentation zu TypeScript](https://code.visualstudio.com/docs/typescript/typescript-compiling#_using-newer-typescript-versions).",
+ "typescript.tsserver.enableRegionDiagnostics": "Aktiviert die regionsbasierte Diagnose in TypeScript. Erfordert die Verwendung von TypeScript 5.6 und höher im Arbeitsbereich.",
+ "typescript.tsserver.enableTracing": "Aktiviert die Ablaufverfolgung für die TS-Serverleistung in einem Verzeichnis. Mithilfe dieser Ablaufverfolgungsdateien lassen sich Probleme mit der TS-Serverleistung diagnostizieren. Das Protokoll kann Dateipfade, Quellcode und weitere potenziell vertrauliche Informationen aus Ihrem Projekt enthalten.",
+ "typescript.tsserver.log": "Aktiviert die Protokollierung des TS-Servers in eine Datei. Mithilfe der Protokolldatei lassen sich Probleme beim TS-Server diagnostizieren. Die Protokolldatei kann Dateipfade, Quellcode und weitere potenziell sensible Informationen aus Ihrem Projekt enthalten.",
+ "typescript.tsserver.pluginPaths": "Zusätzliche Pfade zum Ermitteln von TypeScript Language Service-Plug-Ins.",
+ "typescript.tsserver.pluginPaths.item": "Ein absoluter oder relativer Pfad. Ein relativer Pfad wird in Bezug auf die Arbeitsbereichsordner aufgelöst.",
+ "typescript.tsserver.trace": "Aktiviert die Ablaufverfolgung von an den TS-Server gesendeten Nachrichten. Mithilfe der Ablaufverfolgung lassen sich Probleme beim TS-Server diagnostizieren. Die Ablaufverfolgung kann Dateipfade, Quellcode und weitere potenziell sensible Informationen aus Ihrem Projekt enthalten.",
+ "typescript.updateImportsOnFileMove.enabled": "Aktiviert/deaktiviert die automatische Aktualisierung von Importpfaden beim Umbenennen oder Verschieben einer Datei in VS Code.",
+ "typescript.updateImportsOnFileMove.enabled.always": "Pfade immer automatisch aktualisieren lassen.",
+ "typescript.updateImportsOnFileMove.enabled.never": "Pfade nie umbenennen und keine Aufforderung anzeigen.",
+ "typescript.updateImportsOnFileMove.enabled.prompt": "Bei jeder Umbenennung auffordern.",
+ "typescript.useTsgo": "Deaktiviert die Sprachfunktionen von TypeScript und JavaScript, um die Verwendung der experimentellen Erweiterung „TypeScript Go“ zu ermöglichen. Erfordert die Installation und Konfiguration von TypeScript Go. Nach dem Ändern dieser Einstellung müssen die Erweiterungen neu geladen werden.",
+ "typescript.validate.enable": "TypeScript-Überprüfung aktivieren/deaktivieren.",
+ "typescript.workspaceSymbols.excludeLibrarySymbols": "Schließt in den Ergebnissen von „Zu Symbol im Arbeitsbereich wechseln“ Symbole aus, die aus Bibliotheksdateien stammen. Erfordert die Verwendung von TypeScript 5.3 und höher im Arbeitsbereich.",
+ "typescript.workspaceSymbols.scope": "Hiermit wird gesteuert, welche Dateien über [Zu Symbol im Arbeitsbereich wechseln](https://code.visualstudio.com/docs/editor/editingevolved#_open-symbol-by-name) durchsucht werden.",
+ "typescript.workspaceSymbols.scope.allOpenProjects": "Durchsuchen Sie alle geöffneten JavaScript- oder TypeScript-Projekte nach Symbolen.",
+ "typescript.workspaceSymbols.scope.currentProject": "Hiermit wird nur im aktuellen JavaScript- oder TypeScript-Projekt nach Symbolen gesucht.",
+ "virtualWorkspaces": "In virtuellen Arbeitsbereichen wird das Auflösen und Suchen von Verweisen in Dateien nicht unterstützt.",
+ "walkthroughs.nodejsWelcome.debugJsFile.altText": "Debuggen Sie Ihren JavaScript-Code in Node.js, und führen Sie ihn mit Visual Studio Code aus.",
+ "walkthroughs.nodejsWelcome.debugJsFile.description": "Nachdem Sie Node.js installiert haben, können Sie JavaScript-Programme in einem Terminal ausführen, indem Sie \"node your-file-name.js\" eingeben\r\nEine weitere einfache Möglichkeit zum Ausführen von Node.js-Programmen ist die Verwendung des Debuggers von VS Code, mit dem Sie Ihren Code ausführen, an verschiedenen Stellen anhalten und Ihnen helfen, schrittweise zu verstehen, was vor sich geht.\r\n[Debuggen starten](command:javascript-walkthrough.commands.debugJsFile)",
+ "walkthroughs.nodejsWelcome.debugJsFile.title": "JavaScript ausführen und debuggen",
+ "walkthroughs.nodejsWelcome.description": "Nutzen Sie die erstklassige JavaScript-Erfahrung von Visual Studio Code.",
+ "walkthroughs.nodejsWelcome.downloadNode.forLinux.description": "Node.js ist eine einfache Möglichkeit zum Ausführen von JavaScript-Code. Sie können damit schnell Befehlszeilen-Apps und -Server erstellen. Außerdem ist npm enthalten, ein Paket-Manager, der das Wiederverwenden und Freigeben von JavaScript-Code vereinfacht.\r\n[Node.js installieren](https://nodejs.org/en/download/package-manager/)",
+ "walkthroughs.nodejsWelcome.downloadNode.forLinux.title": "Node.js installieren",
+ "walkthroughs.nodejsWelcome.downloadNode.forMacOrWindows.description": "Node.js ist eine einfache Möglichkeit zum Ausführen von JavaScript-Code. Sie können damit schnell Befehlszeilen-Apps und -Server erstellen. Außerdem ist npm enthalten, ein Paket-Manager, der das Wiederverwenden und Freigeben von JavaScript-Code vereinfacht.\r\n[Node.js installieren](https://nodejs.org/en/download/)",
+ "walkthroughs.nodejsWelcome.downloadNode.forMacOrWindows.title": "Node.js installieren",
+ "walkthroughs.nodejsWelcome.learnMoreAboutJs.altText": "Erfahren Sie mehr über JavaScript und Node.js in Visual Studio Code.",
+ "walkthroughs.nodejsWelcome.learnMoreAboutJs.description": "Möchten Sie sich mit JavaScript, Node.js und VS Code vertrauter machen? Sehen Sie sich unbedingt unsere Dokumentation an!\r\nWir haben viele Ressourcen zum Lernen [JavaScript](https://code.visualstudio.com/docs/nodejs/working-with-javascript) und [Node.js](https://code.visualstudio.com/docs/nodejs/nodejs-tutorial).\r\n\r\n[Weitere Informationen](https://code.visualstudio.com/docs/nodejs/nodejs-Tutorial)",
+ "walkthroughs.nodejsWelcome.learnMoreAboutJs.title": "Mehr entdecken",
+ "walkthroughs.nodejsWelcome.makeJsFile.description": "Schreiben wir unsere erste JavaScript-Datei. Wir müssen eine neue Datei erstellen und sie mit der Erweiterung \".js\" am Ende des Dateinamens speichern.\r\n[Erstellen einer JavaScript-Datei](command:javascript-walkthrough.commands.createJsFile)",
+ "walkthroughs.nodejsWelcome.makeJsFile.title": "JavaScript-Datei erstellen",
+ "walkthroughs.nodejsWelcome.title": "Erste Schritte mit JavaScript und Node.js",
+ "workspaceTrust": "Für die Erweiterung ist die Arbeitsbereichsvertrauensstellung erforderlich, wenn die Arbeitsbereichsversion verwendet wird, da sie vom Arbeitsbereich angegebene Code ausführt."
+ }
+ }
+}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-de/translations/extensions/vscode.typescript.i18n.json b/i18n/vscode-language-pack-de/translations/extensions/vscode.typescript.i18n.json
index fb4a0f8917..99730e4059 100644
--- a/i18n/vscode-language-pack-de/translations/extensions/vscode.typescript.i18n.json
+++ b/i18n/vscode-language-pack-de/translations/extensions/vscode.typescript.i18n.json
@@ -9,8 +9,8 @@
"version": "1.0.0",
"contents": {
"package": {
- "displayName": "TypeScript-Sprachgrundlagen",
- "description": "Bietet Ausschnitte, Syntaxhervorhebung, Klammernpaare und Falten in TypeScript-Dateien."
+ "description": "Bietet Schnipsel, Syntaxhervorhebung, Klammernpaare und Falten in TypeScript-Dateien.",
+ "displayName": "TypeScript-Sprachgrundlagen"
}
}
}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-de/translations/extensions/vscode.vb.i18n.json b/i18n/vscode-language-pack-de/translations/extensions/vscode.vb.i18n.json
index 43a30be61e..1366e192ac 100644
--- a/i18n/vscode-language-pack-de/translations/extensions/vscode.vb.i18n.json
+++ b/i18n/vscode-language-pack-de/translations/extensions/vscode.vb.i18n.json
@@ -9,8 +9,8 @@
"version": "1.0.0",
"contents": {
"package": {
- "displayName": "Visual Basic-Sprachgrundlagen",
- "description": "Bietet Ausschnitte, Syntaxhervorhebung, Klammernabgleich und Falten in Visual Basic-Dateien."
+ "description": "Bietet Schnipsel, Syntaxhervorhebung, Klammernabgleich und Falten in Visual Basic-Dateien.",
+ "displayName": "Visual Basic-Sprachgrundlagen"
}
}
}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-de/translations/extensions/vscode.vscode-theme-seti.i18n.json b/i18n/vscode-language-pack-de/translations/extensions/vscode.vscode-theme-seti.i18n.json
index 62985f8d61..9beae7ffd4 100644
--- a/i18n/vscode-language-pack-de/translations/extensions/vscode.vscode-theme-seti.i18n.json
+++ b/i18n/vscode-language-pack-de/translations/extensions/vscode.vscode-theme-seti.i18n.json
@@ -9,8 +9,8 @@
"version": "1.0.0",
"contents": {
"package": {
- "displayName": "Seti-Dateisymboldesign",
"description": "Ein Dateisymboldesign aus den Dateisymbolen der Seti-Benutzeroberfläche",
+ "displayName": "Seti-Dateisymboldesign",
"themeLabel": "Seti (Visual Studio Code)"
}
}
diff --git a/i18n/vscode-language-pack-de/translations/extensions/vscode.xml.i18n.json b/i18n/vscode-language-pack-de/translations/extensions/vscode.xml.i18n.json
index b143ffeaeb..866db0b0be 100644
--- a/i18n/vscode-language-pack-de/translations/extensions/vscode.xml.i18n.json
+++ b/i18n/vscode-language-pack-de/translations/extensions/vscode.xml.i18n.json
@@ -9,8 +9,8 @@
"version": "1.0.0",
"contents": {
"package": {
- "displayName": "XML-Sprachgrundlagen",
- "description": "Bietet Syntaxhervorhebung und Klammernabgleich in XML-Dateien."
+ "description": "Bietet Syntaxhervorhebung und Klammernabgleich in XML-Dateien.",
+ "displayName": "XML-Sprachgrundlagen"
}
}
}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-de/translations/extensions/vscode.yaml.i18n.json b/i18n/vscode-language-pack-de/translations/extensions/vscode.yaml.i18n.json
index 76c6889b0c..e8381003e0 100644
--- a/i18n/vscode-language-pack-de/translations/extensions/vscode.yaml.i18n.json
+++ b/i18n/vscode-language-pack-de/translations/extensions/vscode.yaml.i18n.json
@@ -9,8 +9,8 @@
"version": "1.0.0",
"contents": {
"package": {
- "displayName": "YAML-Sprachgrundlagen",
- "description": "Bietet Syntaxhervorhebung und Klammernabgleich in YAML-Dateien."
+ "description": "Bietet Syntaxhervorhebung und Klammernabgleich in YAML-Dateien.",
+ "displayName": "YAML-Sprachgrundlagen"
}
}
}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-de/translations/extensions/xml.i18n.json b/i18n/vscode-language-pack-de/translations/extensions/xml.i18n.json
deleted file mode 100644
index 866db0b0be..0000000000
--- a/i18n/vscode-language-pack-de/translations/extensions/xml.i18n.json
+++ /dev/null
@@ -1,16 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "package": {
- "description": "Bietet Syntaxhervorhebung und Klammernabgleich in XML-Dateien.",
- "displayName": "XML-Sprachgrundlagen"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-de/translations/extensions/yaml.i18n.json b/i18n/vscode-language-pack-de/translations/extensions/yaml.i18n.json
deleted file mode 100644
index e8381003e0..0000000000
--- a/i18n/vscode-language-pack-de/translations/extensions/yaml.i18n.json
+++ /dev/null
@@ -1,16 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "package": {
- "description": "Bietet Syntaxhervorhebung und Klammernabgleich in YAML-Dateien.",
- "displayName": "YAML-Sprachgrundlagen"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-de/translations/main.i18n.json b/i18n/vscode-language-pack-de/translations/main.i18n.json
index 885fd51b76..af8c80109f 100644
--- a/i18n/vscode-language-pack-de/translations/main.i18n.json
+++ b/i18n/vscode-language-pack-de/translations/main.i18n.json
@@ -22,6 +22,9 @@
"dialogWarningMessage": "Warnung",
"ok": "OK"
},
+ "vs/base/browser/ui/dropdown/dropdownActionViewItem": {
+ "moreActions": "Weitere Aktionen..."
+ },
"vs/base/browser/ui/findinput/findInput": {
"defaultLabel": "Eingabe"
},
@@ -34,14 +37,21 @@
"defaultLabel": "Eingabe",
"label.preserveCaseToggle": "Groß-/Kleinschreibung beibehalten"
},
- "vs/base/browser/ui/iconLabel/iconLabelHover": {
- "iconLabel.loading": "Wird geladen..."
+ "vs/base/browser/ui/hover/hoverWidget": {
+ "acessibleViewHint": "Überprüfen Sie dies in der barrierefreien Ansicht mit \"{0}\".",
+ "acessibleViewHintNoKbOpen": "Überprüfen Sie dies in der barrierefreien Ansicht über den Befehl \"Barrierefreie Ansicht öffnen\", der zurzeit nicht über eine Tastenzuordnung ausgelöst werden kann."
+ },
+ "vs/base/browser/ui/icons/iconSelectBox": {
+ "iconSelect.noResults": "Keine Ergebnisse",
+ "iconSelect.placeholder": "Suchsymbole"
},
"vs/base/browser/ui/inputbox/inputBox": {
"alertErrorMessage": "Fehler: {0}",
"alertInfoMessage": "Info: {0}",
"alertWarningMessage": "Warnung: {0}",
- "history.inputbox.hint": "für Verlauf"
+ "clearedInput": "Gelöschte Eingabe",
+ "history.inputbox.hint.suffix.inparens": " ({0} für Verlauf)",
+ "history.inputbox.hint.suffix.noparens": " oder {0} für Verlauf"
},
"vs/base/browser/ui/keybindingLabel/keybindingLabel": {
"unbound": "Ungebunden"
@@ -62,7 +72,14 @@
"vs/base/browser/ui/tree/abstractTree": {
"close": "Schließen",
"filter": "Filter",
- "not found": "Kein Element gefunden.",
+ "foundResults": "{0} Ergebnisse",
+ "fuzzySearch": "Fuzzyübereinstimmung",
+ "not found": "Keine Ergebnisse gefunden.",
+ "replFindNoResults": "Keine Ergebnisse",
+ "type to filter": "Zum Filtern Text eingeben",
+ "type to search": "Zum Suchen eingeben"
+ },
+ "vs/base/browser/ui/tree/asyncDataTree": {
"type to filter": "Zum Filtern Text eingeben",
"type to search": "Zum Suchen eingeben"
},
@@ -126,7 +143,18 @@
"date.fromNow.years.singular": "{0} Jahr(e)",
"date.fromNow.years.singular.ago": "Vor {0} Jahre(n)",
"date.fromNow.years.singular.ago.fullWord": "Vor {0} Jahr",
- "date.fromNow.years.singular.fullWord": "{0} Jahr"
+ "date.fromNow.years.singular.fullWord": "{0} Jahr",
+ "duration.d": "{0} Tage",
+ "duration.h": "{0} Std.",
+ "duration.h.full": "{0} Stunden",
+ "duration.m": "{0} Min.",
+ "duration.m.full": "{0} Minuten",
+ "duration.ms": "{0} ms",
+ "duration.ms.full": "{0} Millisekunden",
+ "duration.s": "{0}s",
+ "duration.s.full": "{0} Sekunden",
+ "today": "Heute",
+ "yesterday": "Gestern"
},
"vs/base/common/errorMessage": {
"error.defaultMessage": "Ein unbekannter Fehler ist aufgetreten. Weitere Details dazu finden Sie im Protokoll.",
@@ -159,35 +187,28 @@
"windowsKey": "Windows",
"windowsKey.long": "Windows"
},
- "vs/base/common/platform": {
- "ensureLoaderPluginIsLoaded": "_"
- },
- "vs/base/node/processes": {
- "TaskRunner.UNC": "Ein Shell-Befehl kann nicht auf einem UNC-Laufwerk ausgeführt werden."
+ "vs/base/common/policy": {
+ "extensionsConfigurationTitle": "Erweiterungen",
+ "interactiveSessionConfigurationTitle": "Chat",
+ "telemetryConfigurationTitle": "Telemetrie",
+ "terminalIntegratedConfigurationTitle": "Integriertes Terminal",
+ "updateConfigurationTitle": "Aktualisieren"
},
"vs/base/node/zip": {
"incompleteExtract": "Unvollständig. {0} von {1} Einträgen gefunden",
"invalid file": "Fehler beim Extrahieren von \"{0}\". Ungültige Datei.",
"notFound": "{0} wurde im ZIP nicht gefunden."
},
- "vs/base/parts/quickinput/browser/quickInput": {
- "custom": "Benutzerdefiniert",
- "inputModeEntry": "Drücken Sie die EINGABETASTE, um Ihre Eingabe zu bestätigen, oder ESC, um den Vorgang abzubrechen.",
- "inputModeEntryDescription": "{0} (Drücken Sie die EINGABETASTE zur Bestätigung oder ESC, um den Vorgang abzubrechen.)",
- "ok": "OK",
- "quickInput.back": "Zurück",
- "quickInput.backWithKeybinding": "Zurück ({0})",
- "quickInput.checkAll": "Aktivieren Sie alle Kontrollkästchen",
- "quickInput.countSelected": "{0} ausgewählt",
- "quickInput.steps": "{0}/{1}",
- "quickInput.visibleCount": "{0} Ergebnisse",
- "quickInputBox.ariaLabel": "Nehmen Sie eine Eingabe vor, um die Ergebnisse einzugrenzen."
+ "vs/editor/browser/controller/editContext/native/screenReaderSupport": {
+ "editor": "Editor"
},
- "vs/base/parts/quickinput/browser/quickInputList": {
- "quickInput": "Schnelleingabe"
+ "vs/editor/browser/controller/editContext/screenReaderUtils": {
+ "accessibilityModeOff": "Auf den Editor kann zurzeit nicht zugegriffen werden.",
+ "accessibilityOffAriaLabel": "{0} Um den für die Sprachausgabe optimierten Modus zu aktivieren, verwenden Sie {1}",
+ "accessibilityOffAriaLabelNoKb": "{0} Um den für die Sprachausgabe optimierten Modus zu aktivieren, öffnen Sie die Schnellauswahl mit {1}, und führen Sie den Befehl „Barrierefreiheitsmodus der Bildschirmsprachausgabe umschalten“ aus, der derzeit nicht über die Tastatur ausgelöst werden kann.",
+ "accessibilityOffAriaLabelNoKbs": "{0} Weisen Sie eine Tastenzuordnung für den Befehl „Barrierefreiheitsmodus der Sprachausgabe umschalten“ zu, indem Sie mit auf den Editor für Tastenzuordnungen zugreifen {1} und ihn ausführen."
},
- "vs/editor/browser/controller/textAreaHandler": {
- "accessibilityOffAriaLabel": "Auf den Editor kann derzeit nicht zugegriffen werden. Drücken Sie {0}, um die Optionen anzuzeigen.",
+ "vs/editor/browser/controller/editContext/textArea/textAreaEditContext": {
"editor": "Editor"
},
"vs/editor/browser/coreCommands": {
@@ -202,22 +223,40 @@
"selectAll": "Alle auswählen",
"undo": "Rückgängig"
},
- "vs/editor/browser/widget/codeEditorWidget": {
- "cursors.maximum": "Die Anzahl der Cursors wurde auf {0} beschränkt."
+ "vs/editor/browser/gpu/viewGpuContext": {
+ "editor.dom.render": "Verwenden des DOM-basierten Renderings"
},
- "vs/editor/browser/widget/diffEditorWidget": {
- "diff.tooLarge": "Kann die Dateien nicht vergleichen, da eine Datei zu groß ist.",
- "diffInsertIcon": "Zeilenformatierung für Einfügungen im Diff-Editor",
- "diffRemoveIcon": "Zeilenformatierung für Entfernungen im Diff-Editor"
+ "vs/editor/browser/services/inlineCompletionsService": {
+ "action.inlineSuggest.cancelSnooze": "Aktivierung des Standbymodus von Inlinevorschlägen abbrechen",
+ "action.inlineSuggest.snooze": "Standbymodus von Inlinevorschlägen aktivieren",
+ "inlineCompletions.snoozed": "Gibt an, ob der Standbymodus von Inlinevervollständigungen derzeit aktiviert ist",
+ "snooze.placeholder": "Dauer für das Erinnern bei Inlinevorschlägen auswählen"
+ },
+ "vs/editor/browser/widget/codeEditor/codeEditorWidget": {
+ "cursors.maximum": "Die Anzahl der Cursor wurde auf {0} beschränkt. Erwägen Sie die Verwendung von [Suchen und Ersetzen](https://code.visualstudio.com/docs/editor/codebasics#_find-und-ersetzen) für größere Änderungen, oder erhöhen Sie die Multicursorbegrenzungseinstellung des Editors.",
+ "goToSetting": "Erhöhen des Grenzwerts für mehrere Cursor"
},
- "vs/editor/browser/widget/diffReview": {
+ "vs/editor/browser/widget/diffEditor/commands": {
+ "accessibleDiffViewer": "Barrierefreier Diff-Viewer",
+ "collapseAllUnchangedRegions": "Alle unveränderten Regionen reduzieren",
+ "diffEditor": "Diff-Editor",
+ "editor.action.accessibleDiffViewer.next": "Zum nächsten Unterschied wechseln",
+ "editor.action.accessibleDiffViewer.prev": "Zum vorherigen Unterschied wechseln",
+ "exitCompareMove": "Vergleichsmodus beenden",
+ "revert": "Zurücksetzen",
+ "showAllUnchangedRegions": "Alle unveränderten Regionen anzeigen",
+ "switchSide": "Seite wechseln",
+ "toggleCollapseUnchangedRegions": "\"Unveränderte Bereiche reduzieren\" umschalten",
+ "toggleShowMovedCodeBlocks": "\"Verschobene Codeblöcke anzeigen\" umschalten",
+ "toggleUseInlineViewWhenSpaceIsLimited": "\"Bei eingeschränktem Speicherplatz Inlineansicht verwenden\" umschalten"
+ },
+ "vs/editor/browser/widget/diffEditor/components/accessibleDiffViewer": {
+ "accessibleDiffViewerCloseIcon": "Symbol für \"Schließen\" im barrierefreien Diff-Viewer.",
+ "accessibleDiffViewerInsertIcon": "Symbol für \"Einfügen\" im barrierefreien Diff-Viewer.",
+ "accessibleDiffViewerRemoveIcon": "Symbol für \"Entfernen\" im barrierefreien Diff-Viewer.",
+ "ariaLabel": "Barrierefreier Diff-Viewer. Verwenden Sie den Pfeil nach oben und unten, um zu navigieren.",
"blankLine": "leer",
"deleteLine": "– {0} Originalzeile {1}",
- "diffReviewCloseIcon": "Symbol für \"Schließen\" in der Diff-Überprüfung.",
- "diffReviewInsertIcon": "Symbol für \"Einfügen\" in der Diff-Überprüfung.",
- "diffReviewRemoveIcon": "Symbol für \"Entfernen\" in der Diff-Überprüfung.",
- "editor.action.diffReview.next": "Zum nächsten Unterschied wechseln",
- "editor.action.diffReview.prev": "Zum vorherigen Unterschied wechseln",
"equalLine": "{0} ursprüngliche Zeile {1} geänderte Zeile {2}",
"header": "Unterschied {0} von {1}: ursprüngliche Zeile {2}, {3}, geänderte Zeile {4}, {5}",
"insertLine": "+ {0} geänderte Zeile(n) {1}",
@@ -227,7 +266,10 @@
"one_line_changed": "1 Zeile geändert",
"unchangedLine": "{0}: unveränderte Zeile {1}"
},
- "vs/editor/browser/widget/inlineDiffMargin": {
+ "vs/editor/browser/widget/diffEditor/components/diffEditorEditors": {
+ "diff-aria-navigation-tip": " verwenden Sie {0}, um die Hilfe zur Barrierefreiheit zu öffnen."
+ },
+ "vs/editor/browser/widget/diffEditor/components/diffEditorViewZones/inlineDiffDeletedCodeMargin": {
"diff.clipboard.copyChangedLineContent.label": "Geänderte Zeile ({0}) kopieren",
"diff.clipboard.copyChangedLinesContent.label": "Geänderte Zeilen kopieren",
"diff.clipboard.copyChangedLinesContent.single.label": "Geänderte Zeile kopieren",
@@ -236,18 +278,76 @@
"diff.clipboard.copyDeletedLinesContent.single.label": "Gelöschte Zeile kopieren",
"diff.inline.revertChange.label": "Diese Änderung rückgängig machen"
},
+ "vs/editor/browser/widget/diffEditor/diffEditor.contribution": {
+ "Open Accessible Diff Viewer": "Barrierefreien Diff-Viewer öffnen",
+ "revertHunk": "Block wiederherstellen",
+ "revertSelection": "Auswahl wiederherstellen",
+ "showMoves": "Verschobene Codeblöcke anzeigen",
+ "useInlineViewWhenSpaceIsLimited": "Bei eingeschränktem Speicherplatz Inlineansicht verwenden"
+ },
+ "vs/editor/browser/widget/diffEditor/features/hideUnchangedRegionsFeature": {
+ "diff.bottom": "Klicken oder ziehen Sie, um unten mehr anzuzeigen.",
+ "diff.hiddenLines.expandAll": "Zum Auffalten doppelklicken",
+ "diff.hiddenLines.top": "Klicken oder ziehen Sie, um oben mehr anzuzeigen.",
+ "foldUnchanged": "Unveränderten Bereich falten",
+ "hiddenLines": "{0} ausgeblendete Linien",
+ "showUnchangedRegion": "Unveränderte Regionen anzeigen"
+ },
+ "vs/editor/browser/widget/diffEditor/features/movedBlocksLinesFeature": {
+ "codeMovedFrom": "Code aus Zeile {0}-{1} verschoben",
+ "codeMovedFromWithChanges": "Code mit Änderungen aus Zeile {0}-{1} verschoben",
+ "codeMovedTo": "Code in Zeile {0}-{1} verschoben",
+ "codeMovedToWithChanges": "Code mit Änderungen in Zeile {0}-{1} verschoben"
+ },
+ "vs/editor/browser/widget/diffEditor/features/revertButtonsFeature": {
+ "revertChange": "Änderung zurücksetzen",
+ "revertSelectedChanges": "Ausgewählte Änderungen zurücksetzen"
+ },
+ "vs/editor/browser/widget/diffEditor/registrations.contribution": {
+ "diffEditor.move.border": "Die Rahmenfarbe für Text, der im Diff-Editor verschoben wurde.",
+ "diffEditor.moveActive.border": "Die aktive Rahmenfarbe für Text, der im Diff-Editor verschoben wurde.",
+ "diffEditor.unchangedRegionShadow": "Die Farbe des Schattens um unveränderte Regionswidgets.",
+ "diffInsertIcon": "Zeilenformatierung für Einfügungen im Diff-Editor",
+ "diffRemoveIcon": "Zeilenformatierung für Entfernungen im Diff-Editor"
+ },
+ "vs/editor/browser/widget/multiDiffEditor/colors": {
+ "multiDiffEditor.background": "Die Hintergrundfarbe des Diff-Editors für mehrere Dateien",
+ "multiDiffEditor.border": "Die Rahmenfarbe des Diff-Editors für mehrere Dateien",
+ "multiDiffEditor.headerBackground": "Die Hintergrundfarbe des Diff-Editor-Headers"
+ },
+ "vs/editor/browser/widget/multiDiffEditor/multiDiffEditorWidgetImpl": {
+ "loading": "Wird geladen...",
+ "noChangedFiles": "Keine geänderten Dateien"
+ },
"vs/editor/common/config/editorConfigurationSchema": {
"codeLens": "Steuert, ob der Editor CodeLens anzeigt.",
- "detectIndentation": "Steuert, ob \"#editor.tabSize#\" und \"#editor.insertSpaces#\" automatisch erkannt werden, wenn eine Datei basierend auf dem Dateiinhalt geöffnet wird.",
+ "detectIndentation": "Steuert, ob {0} und {1} automatisch erkannt werden, wenn eine Datei basierend auf dem Dateiinhalt geöffnet wird.",
+ "diffAlgorithm.advanced": "Verwendet den erweiterten Vergleichsalgorithmus.",
+ "diffAlgorithm.legacy": "Verwendet den Legacyvergleichsalgorithmus.",
+ "editor.experimental.asyncTokenization": "Steuert, ob die Tokenisierung asynchron auf einem Webworker erfolgen soll.",
+ "editor.experimental.asyncTokenizationLogging": "Steuert, ob die asynchrone Tokenisierung protokolliert werden soll. Nur zum Debuggen.",
+ "editor.experimental.asyncTokenizationVerification": "Steuert, ob die asynchrone Tokenisierung anhand der Legacy-Hintergrundtokenisierung überprüft werden soll. Die Tokenisierung kann verlangsamt werden. Nur zum Debuggen.",
+ "editor.experimental.preferTreeSitter.css": "Steuert, ob die Struktursitteranalyse für „css“ aktiviert werden soll. Dies hat Vorrang vor „#editor.experimental.treeSitterTelemetry#“ für „css“.",
+ "editor.experimental.preferTreeSitter.ini": "Steuert, ob die Struktursitteranalyse für „ini“ aktiviert werden soll. Dies hat Vorrang vor „#editor.experimental.treeSitterTelemetry#“ für „ini“.",
+ "editor.experimental.preferTreeSitter.regex": "Steuert, ob die Struktursitteranalyse für „RegEx“ aktiviert werden soll. Dies hat Vorrang vor „#editor.experimental.treeSitterTelemetry#“ für „RegEx“.",
+ "editor.experimental.preferTreeSitter.typescript": "Steuert, ob die Struktursitteranalyse für TypeScript aktiviert werden soll. Dies hat Vorrang vor „#editor.experimental.treeSitterTelemetry#“ für TypeScript.",
+ "editor.experimental.treeSitterTelemetry": "Steuert, ob die Struktursitteranalyse aktiviert und Telemetriedaten erfasst werden sollen. Das Festlegen von „#editor.experimental.preferTreeSitter#“ für bestimmte Sprachen hat Vorrang.",
"editorConfigurationTitle": "Editor",
+ "hideUnchangedRegions.contextLineCount": "Steuert, wie viele Zeilen beim Vergleich unveränderter Regionen als Kontext verwendet werden.",
+ "hideUnchangedRegions.enabled": "Steuert, ob der Diff-Editor unveränderte Regionen anzeigt.",
+ "hideUnchangedRegions.minimumLineCount": "Steuert, wie viele Zeilen als Mindestwert für unveränderte Regionen verwendet werden.",
+ "hideUnchangedRegions.revealLineCount": "Steuert, wie viele Zeilen für unveränderte Regionen verwendet werden.",
"ignoreTrimWhitespace": "Wenn aktiviert, ignoriert der Diff-Editor Änderungen an voran- oder nachgestellten Leerzeichen.",
- "insertSpaces": "Fügt beim Drücken der TAB-Taste Leerzeichen ein. Diese Einstellung wird basierend auf dem Inhalt der Datei überschrieben, wenn \"#editor.detectIndentation#\" aktiviert ist.",
+ "indentSize": "Die Anzahl von Leerzeichen, die für den Einzug oder „tabSize“ verwendet werden, um den Wert aus „#editor.tabSize#“ zu verwenden. Diese Einstellung wird basierend auf dem Dateiinhalt überschrieben, wenn „#editor.detectIndentation#“ aktiviert ist.",
+ "insertSpaces": "Fügt beim Drücken der TAB-Taste Leerzeichen ein. Diese Einstellung wird basierend auf dem Inhalt der Datei überschrieben, wenn {0} aktiviert ist.",
"largeFileOptimizations": "Spezielle Behandlung für große Dateien zum Deaktivieren bestimmter speicherintensiver Funktionen.",
"maxComputationTime": "Timeout in Millisekunden, nach dem die Diff-Berechnung abgebrochen wird. Bei 0 wird kein Timeout verwendet.",
"maxFileSize": "Maximale Dateigröße in MB, für die Diffs berechnet werden sollen. Verwenden Sie 0, um keinen Grenzwert zu setzen.",
"maxTokenizationLineLength": "Zeilen, die diese Länge überschreiten, werden aus Leistungsgründen nicht tokenisiert",
+ "renderGutterMenu": "Wenn diese Option aktiviert ist, zeigt der Diff-Editor einen speziellen Bundsteg für die Aktionen „Wiederherstellen“ und „Stagen“ an.",
"renderIndicators": "Steuert, ob der Diff-Editor die Indikatoren \"+\" und \"-\" für hinzugefügte/entfernte Änderungen anzeigt.",
"renderMarginRevertIcon": "Wenn diese Option aktiviert ist, zeigt der Diff-Editor Pfeile in seinem Glyphenrand an, um Änderungen rückgängig zu machen.",
+ "renderSideBySideInlineBreakpoint": "Wenn die Breite des Diff-Editors unter diesem Wert liegt, wird die Inlineansicht verwendet.",
"schema.brackets": "Definiert die Klammersymbole, die den Einzug vergrößern oder verkleinern.",
"schema.closeBracket": "Das schließende Klammerzeichen oder die Zeichenfolgensequenz.",
"schema.colorizedBracketPairs": "Definiert die Klammerpaare, die durch ihre Schachtelungsebene farbig formatiert werden, wenn die Farbgebung für das Klammerpaar aktiviert ist.",
@@ -256,64 +356,86 @@
"semanticHighlighting.enabled": "Steuert, ob die semantische Hervorhebung für die Sprachen angezeigt wird, die sie unterstützen.",
"semanticHighlighting.false": "Die semantische Hervorhebung ist für alle Farbdesigns deaktiviert.",
"semanticHighlighting.true": "Die semantische Hervorhebung ist für alle Farbdesigns aktiviert.",
+ "showEmptyDecorations": "Steuert, ob der diff-Editor leere Dekorationen anzeigt, um anzuzeigen, wo Zeichen eingefügt oder gelöscht wurden.",
+ "showMoves": "Steuert, ob der Diff-Editor erkannte Codeverschiebevorgänge anzeigen soll.",
"sideBySide": "Steuert, ob der Diff-Editor die Unterschiede nebeneinander oder im Text anzeigt.",
- "stablePeek": "Peek-Editoren geöffnet lassen, auch wenn auf den Inhalt doppelgeklickt oder die ESC-TASTE gedrückt wird.",
- "tabSize": "Die Anzahl der Leerzeichen, denen ein Tabstopp entspricht. Diese Einstellung wird basierend auf dem Inhalt der Datei überschrieben, wenn \"#editor.detectIndentation#\" aktiviert ist.",
+ "stablePeek": "Lassen Sie Peek-Editoren geöffnet, auch wenn Sie auf ihren Inhalt doppelklicken oder auf die ESCAPETASTE klicken.",
+ "tabSize": "Die Anzahl der Leerzeichen, denen ein Tabstopp entspricht. Diese Einstellung wird basierend auf dem Inhalt der Datei überschrieben, wenn {0} aktiviert ist.",
"trimAutoWhitespace": "Nachfolgende automatisch eingefügte Leerzeichen entfernen",
- "wordBasedSuggestions": "Steuert, ob Vervollständigungen auf Grundlage der Wörter im Dokument berechnet werden sollen.",
- "wordBasedSuggestionsMode": "Steuert, aus welchen Dokumenten wortbasierte Vervollständigungen berechnet werden.",
- "wordBasedSuggestionsMode.allDocuments": "Wörter aus allen geöffneten Dokumenten vorschlagen",
- "wordBasedSuggestionsMode.currentDocument": "Nur Wörter aus dem aktiven Dokument vorschlagen",
- "wordBasedSuggestionsMode.matchingDocuments": "Wörter aus allen geöffneten Dokumenten derselben Sprache vorschlagen",
- "wordWrap.inherit": "Zeilen werden entsprechend der Einstellung \"#editor.wordWrap#\" umbrochen.",
+ "useInlineViewWhenSpaceIsLimited": "Wenn diese Option aktiviert ist und die Breite des Editors nicht ausreicht, wird die Inlineansicht verwendet.",
+ "useTrueInlineView": "Wenn diese Option aktiviert ist und der Editor die Inlineansicht verwendet, werden Wortänderungen inline gerendert.",
+ "wordBasedSuggestions": "Steuert, ob Vervollständigungen auf Grundlage der Wörter im Dokument berechnet werden sollen, und aus welchen Dokumenten sie berechnet werden sollen.",
+ "wordBasedSuggestions.allDocuments": "Wörter aus allen geöffneten Dokumenten vorschlagen",
+ "wordBasedSuggestions.currentDocument": "Nur Wörter aus dem aktiven Dokument vorschlagen",
+ "wordBasedSuggestions.matchingDocuments": "Wörter aus allen geöffneten Dokumenten derselben Sprache vorschlagen",
+ "wordBasedSuggestions.off": "Deaktivieren Sie Word-basierte Vorschläge.",
+ "wordWrap.inherit": "Zeilen werden gemäß der Einstellung „{0}“ umbrochen.",
"wordWrap.off": "Zeilenumbrüche erfolgen nie.",
"wordWrap.on": "Der Zeilenumbruch erfolgt an der Breite des Anzeigebereichs."
},
"vs/editor/common/config/editorOptions": {
- "acceptSuggestionOnCommitCharacter": "Steuert, ob Vorschläge für Commitzeichen akzeptiert werden sollen. In JavaScript zum Beispiel kann das Semikolon (`; `) ein Commitzeichen sein, das einen Vorschlag annimmt und dieses Zeichen eingibt.",
+ "acceptSuggestionOnCommitCharacter": "Steuert, ob Vorschläge über Commitzeichen angenommen werden sollen. In JavaScript kann ein Semikolon (\";\") beispielsweise ein Commitzeichen sein, das einen Vorschlag annimmt und dieses Zeichen eingibt.",
"acceptSuggestionOnEnter": "Steuert, ob Vorschläge mit der EINGABETASTE (zusätzlich zur TAB-Taste) akzeptiert werden sollen. Vermeidet Mehrdeutigkeit zwischen dem Einfügen neuer Zeilen oder dem Annehmen von Vorschlägen.",
"acceptSuggestionOnEnterSmart": "Einen Vorschlag nur mit der EINGABETASTE akzeptieren, wenn dieser eine Änderung am Text vornimmt.",
"accessibilityPageSize": "Steuert die Anzahl von Zeilen im Editor, die von einer Sprachausgabe in einem Arbeitsschritt gelesen werden können. Wenn eine Sprachausgabe erkannt wird, wird der Standardwert automatisch auf 500 festgelegt. Warnung: Ein Wert höher als der Standardwert, kann sich auf die Leistung auswirken.",
- "accessibilitySupport": "Steuert, ob der Editor in einem für die Sprachausgabe optimierten Modus ausgeführt werden soll. Durch Festlegen auf \"Ein\" werden Zeilenumbrüche deaktiviert.",
- "accessibilitySupport.auto": "Der Editor verwendet Plattform-APIs, um zu erkennen, wenn eine Sprachausgabe angefügt wird.",
- "accessibilitySupport.off": "Der Editor wird nie für die Verwendung mit einer Sprachausgabe optimiert.",
- "accessibilitySupport.on": "Der Editor wird dauerhaft für die Verwendung mit einer Sprachausgabe optimiert. Zeilenumbrüche werden deaktiviert.",
+ "accessibilitySupport": "Steuert, ob die Benutzeroberfläche in einem Modus ausgeführt werden soll, in dem sie für Sprachausgaben optimiert ist.",
+ "accessibilitySupport.auto": "Verwenden Sie Plattform-APIs, um zu erkennen, wenn eine Sprachausgabe angefügt ist.",
+ "accessibilitySupport.off": "Hiermit wird angenommen, dass keine Sprachausgabe angefügt ist.",
+ "accessibilitySupport.on": "Optimieren Sie diese Option für die Verwendung mit einer Sprachausgabe.",
+ "allowVariableFonts": "Steuert, ob die Verwendung von variablen Schriftarten im Editor zugelassen werden soll.",
+ "allowVariableFontsInAccessibilityMode": "Steuert, ob die Verwendung von variablen Schriftarten im Editor im Barrierefreiheitsmodus zugelassen werden soll.",
+ "allowVariableLineHeights": "Steuert, ob die Verwendung variabler Zeilenhöhen im Editor zulässig ist.",
"alternativeDeclarationCommand": "Die alternative Befehls-ID, die ausgeführt wird, wenn das Ergebnis von \"Gehe zu Deklaration\" der aktuelle Speicherort ist.",
"alternativeDefinitionCommand": "Die alternative Befehls-ID, die ausgeführt wird, wenn das Ergebnis von \"Gehe zu Definition\" die aktuelle Position ist.",
"alternativeImplementationCommand": "Die alternative Befehls-ID, die ausgeführt wird, wenn das Ergebnis von \"Gehe zu Implementatierung\" der aktuelle Speicherort ist.",
"alternativeReferenceCommand": "Die alternative Befehls-ID, die ausgeführt wird, wenn das Ergebnis von \"Gehe zu Verweis\" die aktuelle Position ist.",
"alternativeTypeDefinitionCommand": "Die alternative Befehls-ID, die ausgeführt wird, wenn das Ergebnis von \"Gehe zu Typdefinition\" die aktuelle Position ist.",
"autoClosingBrackets": "Steuert, ob der Editor automatisch Klammern schließen soll, nachdem der Benutzer eine öffnende Klammer hinzugefügt hat.",
+ "autoClosingComments": "Steuert, ob der Editor Kommentare automatisch schließen soll, nachdem die Benutzer*innen einen ersten Kommentar hinzugefügt haben.",
"autoClosingDelete": "Steuert, ob der Editor angrenzende schließende Anführungszeichen oder Klammern beim Löschen entfernen soll.",
"autoClosingOvertype": "Steuert, ob der Editor schließende Anführungszeichen oder Klammern überschreiben soll.",
"autoClosingQuotes": "Steuert, ob der Editor Anführungszeichen automatisch schließen soll, nachdem der Benutzer ein öffnendes Anführungszeichen hinzugefügt hat.",
"autoIndent": "Legt fest, ob der Editor den Einzug automatisch anpassen soll, wenn Benutzer Zeilen eingeben, einfügen, verschieben oder einrücken",
+ "autoIndentOnPaste": "Steuert, ob der Editor Inhalte automatisch mit Einzug einfügen soll.",
+ "autoIndentOnPasteWithinString": "Steuert, ob der Editor Inhalte automatisch mit Einzug einfügen soll, wenn diese innerhalb einer Zeichenfolge eingefügt werden. Dies wird wirksam, wenn „autoIndentOnPaste“ auf „ true“ festgelegt ist.",
"autoSurround": "Steuert, ob der Editor die Auswahl beim Eingeben von Anführungszeichen oder Klammern automatisch umschließt.",
"bracketPairColorization.enabled": "Steuert, ob die Klammerpaar-Farbgebung aktiviert ist oder nicht. Verwenden Sie {0}, um die Hervorhebungsfarben der Klammer zu überschreiben.",
"bracketPairColorization.independentColorPoolPerBracketType": "Steuert, ob jeder Klammertyp über einen eigenen unabhängigen Farbpool verfügt.",
- "codeActions": "Aktiviert das Glühbirnensymbol für Codeaktionen im Editor.",
"codeLens": "Steuert, ob der Editor CodeLens anzeigt.",
"codeLensFontFamily": "Steuert die Schriftfamilie für CodeLens.",
- "codeLensFontSize": "Steuert den Schriftgrad in Pixeln für CodeLens. Bei Festlegung auf „0“ werden 90 % von „#editor.fontSize#“ verwendet.",
+ "codeLensFontSize": "Steuert den Schriftgrad in Pixeln für CodeLens. Bei Festlegung auf „0, 90 % von „#editor.fontSize#“ verwendet.",
+ "colorDecoratorActivatedOn": "Steuert die Bedingung, damit eine Farbauswahl aus einem Farbdekorator angezeigt wird.",
"colorDecorators": "Steuert, ob der Editor die Inline-Farbdecorators und die Farbauswahl rendern soll.",
+ "colorDecoratorsLimit": "Steuert die maximale Anzahl von Farb-Decorators, die in einem Editor gleichzeitig gerendert werden können.",
"columnSelection": "Zulassen, dass die Auswahl per Maus und Tasten die Spaltenauswahl durchführt.",
"comments.ignoreEmptyLines": "Steuert, ob leere Zeilen bei Umschalt-, Hinzufügungs- oder Entfernungsaktionen für Zeilenkommentare ignoriert werden sollen.",
"comments.insertSpace": "Steuert, ob beim Kommentieren ein Leerzeichen eingefügt wird.",
"copyWithSyntaxHighlighting": "Steuert, ob Syntax-Highlighting in die Zwischenablage kopiert wird.",
"cursorBlinking": "Steuert den Cursoranimationsstil.",
+ "cursorHeight": "Steuert die Höhe des Cursors, wenn „#editor.cursorStyle#“ auf „line“ festgelegt ist. Die maximale Höhe des Cursors hängt von der Zeilenhöhe ab.",
"cursorSmoothCaretAnimation": "Steuert, ob die weiche Cursoranimation aktiviert werden soll.",
- "cursorStyle": "Steuert den Cursor-Stil.",
- "cursorSurroundingLines": "Steuert die Mindestanzahl sichtbarer führender und nachfolgender Zeilen um den Cursor. Dies wird in einigen anderen Editoren als \"scrollOff\" oder \"scrollOffset\" bezeichnet.",
- "cursorSurroundingLinesStyle": "Legt fest, wann cursorSurroundingLines erzwungen werden soll",
+ "cursorSmoothCaretAnimation.explicit": "Die Smooth Caret-Animation ist nur aktiviert, wenn der Benutzer den Cursor mit einer expliziten Geste bewegt.",
+ "cursorSmoothCaretAnimation.off": "Die Smooth Caret-Animation ist deaktiviert.",
+ "cursorSmoothCaretAnimation.on": "Die Smooth Caret-Animation ist immer aktiviert.",
+ "cursorStyle": "Steuert den Cursorstil im Einfügeeingabemodus.",
+ "cursorSurroundingLines": "Steuert die Mindestanzahl sichtbarer führender Zeilen (mindestens 0) und nachfolgender Zeilen (mindestens 1) um den Cursor. Dies wird in einigen anderen Editoren als „scrollOff“ oder „scrollOffset“ bezeichnet.",
+ "cursorSurroundingLinesStyle": "Steuert, wann „#editor.cursorSurroundingLines#“ erzwungen werden soll.",
"cursorSurroundingLinesStyle.all": "\"cursorSurroundingLines\" wird immer erzwungen.",
"cursorSurroundingLinesStyle.default": "\"cursorSurroundingLines\" wird nur erzwungen, wenn die Auslösung über die Tastatur oder API erfolgt.",
"cursorWidth": "Steuert die Breite des Cursors, wenn `#editor.cursorStyle#` auf `line` festgelegt ist.",
+ "defaultColorDecorators": "Steuert, ob Inlinefarbdekorationen mithilfe des Standard-Dokumentfarbanbieters angezeigt werden sollen.",
"definitionLinkOpensInPeek": "Steuert, ob die Mausgeste \"Gehe zu Definition\" immer das Vorschauwidget öffnet.",
"deprecated": "Diese Einstellung ist veraltet. Verwenden Sie stattdessen separate Einstellungen wie \"editor.suggest.showKeywords\" oder \"editor.suggest.showSnippets\".",
"dragAndDrop": "Steuert, ob der Editor das Verschieben einer Auswahl per Drag and Drop zulässt.",
- "dropIntoEditor.enabled": "Controls whether you can drag and drop a file into a text editor by holding down `shift` (instead of opening the file in an editor).",
+ "dropIntoEditor.enabled": "Steuert, ob Sie eine Datei per Drag & Drop in einen Text-Editor ziehen können, indem Sie die UMSCHALTTASTE gedrückt halten (anstatt die Datei in einem Editor zu öffnen).",
+ "dropIntoEditor.showDropSelector": "Steuert, ob beim Ablegen von Dateien im Editor ein Widget angezeigt wird. Mit diesem Widget können Sie steuern, wie die Datei ablegt wird.",
+ "dropIntoEditor.showDropSelector.afterDrop": "Zeigt das Widget für die Dropdownauswahl an, nachdem eine Datei im Editor abgelegt wurde.",
+ "dropIntoEditor.showDropSelector.never": "Das Widget für die Ablageauswahl wird nie angezeigt. Stattdessen wird immer der Standardablageanbieter verwendet.",
+ "editContext": "Legt fest, ob die EditContext-API anstelle des Textbereichs verwendet werden soll, um die Eingabe im Editor zu steuern.",
"editor.autoClosingBrackets.beforeWhitespace": "Schließe Klammern nur automatisch, wenn der Cursor sich links von einem Leerzeichen befindet.",
"editor.autoClosingBrackets.languageDefined": "Verwenden Sie Sprachkonfigurationen, um zu bestimmen, wann Klammern automatisch geschlossen werden sollen.",
+ "editor.autoClosingComments.beforeWhitespace": "Kommentare werden nur dann automatisch geschlossen, wenn sich der Cursor links von einem Leerraum befindet.",
+ "editor.autoClosingComments.languageDefined": "Verwenden Sie Sprachkonfigurationen, um festzulegen, wann Kommentare automatisch geschlossen werden sollen.",
"editor.autoClosingDelete.auto": "Angrenzende schließende Anführungszeichen oder Klammern werden nur überschrieben, wenn sie automatisch eingefügt wurden.",
"editor.autoClosingOvertype.auto": "Schließende Anführungszeichen oder Klammern werden nur überschrieben, wenn sie automatisch eingefügt wurden.",
"editor.autoClosingQuotes.beforeWhitespace": "Schließende Anführungszeichen nur dann automatisch ergänzen, wenn der Cursor sich links von einem Leerzeichen befindet.",
@@ -326,15 +448,24 @@
"editor.autoSurround.brackets": "Mit Klammern, nicht mit Anführungszeichen umschließen.",
"editor.autoSurround.languageDefined": "Sprachkonfigurationen verwenden, um zu bestimmen, wann eine Auswahl automatisch umschlossen werden soll.",
"editor.autoSurround.quotes": "Mit Anführungszeichen, nicht mit Klammern umschließen.",
+ "editor.colorDecoratorActivatedOn.click": "Farbauswahl beim Klicken auf den Farbdekorator anzeigen",
+ "editor.colorDecoratorActivatedOn.clickAndHover": "Farbauswahl sowohl beim Klicken als auch beim Daraufzeigen des Farbdekorators anzeigen",
+ "editor.colorDecoratorActivatedOn.hover": "Farbauswahl beim Draufzeigen auf den Farbdekorator anzeigen",
+ "editor.defaultColorDecorators.always": "Standardfarbdekoratoren immer anzeigen.",
+ "editor.defaultColorDecorators.auto": "Standardfarbdekoratoren nur anzeigen, wenn keine Erweiterung Farbdekoratoren bereitstellt.",
+ "editor.defaultColorDecorators.never": "Standardfarbdekoratoren nie anzeigen.",
"editor.editor.gotoLocation.multipleDeclarations": "Legt das Verhalten des Befehls \"Gehe zu Deklaration\" fest, wenn mehrere Zielpositionen vorhanden sind.",
"editor.editor.gotoLocation.multipleDefinitions": "Legt das Verhalten des Befehls \"Gehe zu Definition\" fest, wenn mehrere Zielpositionen vorhanden sind",
"editor.editor.gotoLocation.multipleImplemenattions": "Legt das Verhalten des Befehls \"Gehe zu Implementierungen\", wenn mehrere Zielspeicherorte vorhanden sind",
"editor.editor.gotoLocation.multipleReferences": "Legt das Verhalten des Befehls \"Gehe zu Verweisen\" fest, wenn mehrere Zielpositionen vorhanden sind",
"editor.editor.gotoLocation.multipleTypeDefinitions": "Legt das Verhalten des Befehls \"Gehe zur Typdefinition\" fest, wenn mehrere Zielpositionen vorhanden sind.",
- "editor.experimental.stickyScroll": "Shows the nested current scopes during the scroll at the top of the editor.",
"editor.find.autoFindInSelection.always": "\"In Auswahl suchen\" immer automatisch aktivieren.",
"editor.find.autoFindInSelection.multiline": "\"In Auswahl suchen\" automatisch aktivieren, wenn mehrere Inhaltszeilen ausgewählt sind.",
"editor.find.autoFindInSelection.never": "\"In Auswahl suchen\" niemals automatisch aktivieren (Standard).",
+ "editor.find.history.never": "Speichern Sie den Suchverlauf nicht aus dem Suchwidget.",
+ "editor.find.history.workspace": "Speichern des Suchverlaufs im aktiven Arbeitsbereich",
+ "editor.find.replaceHistory.never": "Verlauf aus dem Ersatzwidget nicht speichern.",
+ "editor.find.replaceHistory.workspace": "Speichern des Ersatz-Suchverlaufs im aktiven Arbeitsbereich",
"editor.find.seedSearchStringFromSelection.always": "Suchzeichenfolge immer aus der Editorauswahl seeden, einschließlich Wort an Cursorposition.",
"editor.find.seedSearchStringFromSelection.never": "Suchzeichenfolge niemals aus der Editorauswahl seeden.",
"editor.find.seedSearchStringFromSelection.selection": "Suchzeichenfolge nur aus der Editorauswahl seeden.",
@@ -357,9 +488,19 @@
"editor.guides.highlightActiveIndentation.true": "Hebt die aktive Einzugsführung hervor.",
"editor.guides.indentation": "Steuert, ob der Editor Einzugsführungslinien rendern soll.",
"editor.inlayHints.off": "Inlay-Hinweise sind deaktiviert",
- "editor.inlayHints.offUnlessPressed": "Inlayhinweise sind standardmäßig ausgeblendet. Sie werden angezeigt, wenn `STRG+ALT` gedrückt gehalten wird.",
+ "editor.inlayHints.offUnlessPressed": "Inlay-Hinweise sind standardmäßig ausgeblendet. Sie werden angezeigt, wenn {0} gedrückt gehalten wird",
"editor.inlayHints.on": "Inlay-Hinweise sind aktiviert",
- "editor.inlayHints.onUnlessPressed": "Inlay-Hinweise werden standardmäßig angezeigt und ausgeblendet, wenn Sie `Strg+Alt` gedrückt halten",
+ "editor.inlayHints.onUnlessPressed": "Inlay-Hinweise werden standardmäßig angezeigt und ausgeblendet, wenn Sie {0} gedrückt halten",
+ "editor.inlineSuggest.edits.renderSideBySide.auto": "Größere Vorschläge werden nebeneinander angezeigt, wenn genügend Speicherplatz vorhanden ist, andernfalls werden sie unten angezeigt.",
+ "editor.inlineSuggest.edits.renderSideBySide.never": "Größere Vorschläge werden nie nebeneinander angezeigt und werden immer unten angezeigt.",
+ "editor.lightbulb.enabled.off": "Codeaktionsmenü deaktivieren.",
+ "editor.lightbulb.enabled.on": "Zeigt das Codeaktionsmenü an, wenn sich der Cursor in Zeilen mit Code oder in leeren Zeilen befindet.",
+ "editor.lightbulb.enabled.onCode": "Zeigt das Codeaktionsmenü an, wenn sich der Cursor in Zeilen mit Code befindet.",
+ "editor.stickyScroll.defaultModel": "Legt das Modell fest, das zur Bestimmung der zu fixierenden Zeilen verwendet wird. Existiert das Gliederungsmodell nicht, wird auf das Modell des Folding Providers zurückgegriffen, der wiederum auf das Einrückungsmodell zurückgreift. Diese Reihenfolge wird in allen drei Fällen beachtet.",
+ "editor.stickyScroll.enabled": "Zeigt die geschachtelten aktuellen Bereiche während des Bildlaufs am oberen Rand des Editors an.",
+ "editor.stickyScroll.maxLineCount": "Definiert die maximale Anzahl fixierter Zeilen, die angezeigt werden sollen.",
+ "editor.stickyScroll.scrollWithEditor": "Hiermit aktivieren Sie fixiertem Bildlauf in der horizontalen Bildlaufleiste des Editors.",
+ "editor.suggest.matchOnWordStartOnly": "Wenn dies aktiviert ist, erfordert die IntelliSense-Filterung, dass das erste Zeichen mit einem Wortanfang übereinstimmt, z. B. „c“ in „Console“ oder „WebContext“, aber _nicht_ bei „description“. Wenn diese Option deaktiviert ist, zeigt IntelliSense mehr Ergebnisse an, sortiert sie aber weiterhin nach der Übereinstimmungsqualität.",
"editor.suggest.showClasss": "Wenn aktiviert, zeigt IntelliSense \"class\"-Vorschläge an.",
"editor.suggest.showColors": "Wenn aktiviert, zeigt IntelliSense \"color\"-Vorschläge an.",
"editor.suggest.showConstants": "Wenn aktiviert, zeigt IntelliSense \"constant\"-Vorschläge an.",
@@ -391,12 +532,23 @@
"editor.suggest.showVariables": "Wenn aktiviert, zeigt IntelliSense \"variable\"-Vorschläge an.",
"editorViewAccessibleLabel": "Editor-Inhalt",
"emptySelectionClipboard": "Steuert, ob ein Kopiervorgang ohne Auswahl die aktuelle Zeile kopiert.",
+ "enabled": "Aktiviert das Glühlampensymbol für Codeaktionen im Editor.",
+ "experimentalGpuAcceleration": "Steuert, ob die experimentelle GPU-Beschleunigung zum Rendern des Editors verwendet wird.",
+ "experimentalGpuAcceleration.off": "Verwenden Sie reguläres DOM-basiertes Rendering.",
+ "experimentalGpuAcceleration.on": "GPU-Beschleunigung verwenden.",
+ "experimentalWhitespaceRendering": "Steuert, ob Leerzeichen mit einer neuen experimentellen Methode gerendert werden.",
+ "experimentalWhitespaceRendering.font": "Verwenden Sie eine neue Rendering-Methode mit Schriftartzeichen.",
+ "experimentalWhitespaceRendering.off": "Verwenden Sie die stabile Rendering-Methode.",
+ "experimentalWhitespaceRendering.svg": "Verwenden Sie eine neue Rendering-Methode mit SVGs.",
"fastScrollSensitivity": "Multiplikator für Scrollgeschwindigkeit bei Drücken von ALT.",
"find.addExtraSpaceOnTop": "Steuert, ob das Suchwidget zusätzliche Zeilen im oberen Bereich des Editors hinzufügen soll. Wenn die Option auf \"true\" festgelegt ist, können Sie über die erste Zeile hinaus scrollen, wenn das Suchwidget angezeigt wird.",
"find.autoFindInSelection": "Steuert die Bedingung zum automatischen Aktivieren von \"In Auswahl suchen\".",
"find.cursorMoveOnType": "Steuert, ob der Cursor bei der Suche nach Übereinstimmungen während der Eingabe springt.",
+ "find.findOnType": "Steuert, ob das Such-Widget während Ihrer Eingabe suchen soll.",
"find.globalFindClipboard": "Steuert, ob das Widget \"Suche\" die freigegebene Suchzwischenablage unter macOS lesen oder bearbeiten soll.",
+ "find.history": "Steuert, wie der Suchverlauf des Suchwidgets gespeichert werden soll",
"find.loop": "Steuert, ob die Suche automatisch am Anfang (oder am Ende) neu gestartet wird, wenn keine weiteren Übereinstimmungen gefunden werden.",
+ "find.replaceHistory": "Steuert, wie der Suchverlauf des Ersatz-Suchwidgets gespeichert werden soll",
"find.seedSearchStringFromSelection": "Steuert, ob für die Suchzeichenfolge im Widget \"Suche\" ein Seeding aus der Auswahl des Editors ausgeführt wird.",
"folding": "Steuert, ob Codefaltung im Editor aktiviert ist.",
"foldingHighlight": "Steuert, ob der Editor eingefaltete Bereiche hervorheben soll.",
@@ -410,6 +562,9 @@
"fontLigatures": "Hiermit werden Schriftligaturen (Schriftartfeatures \"calt\" und \"liga\") aktiviert/deaktiviert. Ändern Sie diesen Wert in eine Zeichenfolge, um die CSS-Eigenschaft \"font-feature-settings\" detailliert zu steuern.",
"fontLigaturesGeneral": "Hiermit werden Schriftligaturen oder Schriftartfeatures konfiguriert. Hierbei kann es sich entweder um einen booleschen Wert zum Aktivieren oder Deaktivieren von Ligaturen oder um eine Zeichenfolge für den Wert der CSS-Eigenschaft \"font-feature-settings\" handeln.",
"fontSize": "Legt die Schriftgröße in Pixeln fest.",
+ "fontVariationSettings": "Explizite CSS-Eigenschaft „font-variation-settings“. Stattdessen kann ein boolescher Wert eingeben werden, wenn nur „font-weight“ in „font-variation-settings“ übersetzt werden muss.",
+ "fontVariations": "Aktiviert/deaktiviert die Übersetzung von „font-weight“ in „font-variation-settings“. Ändern Sie dies in eine Zeichenfolge für eine differenzierte Steuerung der CSS-Eigenschaft „font-variation-settings“.",
+ "fontVariationsGeneral": "Konfiguriert Variationen der Schriftart. Kann entweder ein boolescher Wert zum Aktivieren/Deaktivieren der Übersetzung von „font-weight“ in „font-variation-settings“ oder eine Zeichenfolge für den Wert der CSS-Eigenschaft „font-variation-settings“ sein.",
"fontWeight": "Steuert die Schriftbreite. Akzeptiert die Schlüsselwörter \"normal\" und \"bold\" sowie Zahlen zwischen 1 und 1000.",
"fontWeightErrorMessage": "Es sind nur die Schlüsselwörter \"normal\" und \"bold\" sowie Zahlen zwischen 1 und 1000 zulässig.",
"formatOnPaste": "Steuert, ob der Editor den eingefügten Inhalt automatisch formatieren soll. Es muss ein Formatierer vorhanden sein, der in der Lage ist, auch Dokumentbereiche zu formatieren.",
@@ -419,13 +574,37 @@
"hover.above": "Zeigen Sie den Mauszeiger lieber über der Linie an, wenn Platz vorhanden ist.",
"hover.delay": "Steuert die Verzögerung in Millisekunden, nach der die Hovermarkierung angezeigt wird.",
"hover.enabled": "Steuert, ob die Hovermarkierung angezeigt wird.",
+ "hover.enabled.off": "Der Mauszeiger ist deaktiviert.",
+ "hover.enabled.on": "Der Mauszeiger ist aktiviert.",
+ "hover.enabled.onKeyboardModifier": "Der Hover wird angezeigt, wenn {0} oder Alt (der entgegengesetzte Modifizierer von #editor.multiCursorModifier#) gedrückt gehalten wird.",
+ "hover.hidingDelay": "Steuert die Verzögerung in Millisekunden, nach der die Hovermarkierung ausgeblendet wird. Erfordert die Aktivierung von „#editor.hover.sticky#“.",
"hover.sticky": "Steuert, ob die Hovermarkierung sichtbar bleiben soll, wenn der Mauszeiger darüber bewegt wird.",
+ "inertialScroll": "Träger Scrollvorgang – besonders nützlich bei einem Touchpad unter Linux.",
"inlayHints.enable": "Aktiviert die Inlay-Hinweise im Editor.",
- "inlayHints.fontFamily": "Steuert die Schriftartfamilie von Einlapphinweisen im Editor. Bei Festlegung auf \"leer\" wird die {0} verwendet.",
- "inlayHints.fontSize": "Steuert den Schriftgrad von Einlapphinweisen im Editor. Standardmäßig wird die {0} verwendet, wenn der konfigurierte Wert kleiner als {1} oder größer als der Schriftgrad des Editors ist.",
+ "inlayHints.fontFamily": "Steuert die Schriftartfamilie von Inlay-Hinweisen im Editor. Bei Festlegung auf \"leer\" wird {0} verwendet.",
+ "inlayHints.fontSize": "Steuert den Schriftgrad von Inlay-Hinweisen im Editor. Standardmäßig wird {0} verwendet, wenn der konfigurierte Wert kleiner als {1} oder größer als der Schriftgrad des Editors ist.",
+ "inlayHints.maximumLength": "Maximale Gesamtlänge von Inlay-Hinweisen für eine einzelne Zeile, bevor sie vom Editor abgeschnitten werden. Auf „0“ festlegen, damit sie nie abgeschnitten werden",
"inlayHints.padding": "Aktiviert den Abstand um die Inlay-Hinweise im Editor.",
"inline": "Schnelle Vorschläge werden als inaktiver Text angezeigt",
+ "inlineCompletionsAccessibilityVerbose": "Steuert, ob für Benutzer*innen, die eine Sprachausgabe nutzen, bei Anzeige einer Inlinevervollständigung ein Hinweis zur Barrierefreiheit angezeigt werden soll.",
+ "inlineSuggest.edits.allowCodeShifting": "Steuert, ob die Anzeige eines Vorschlags den Code verschiebt, um Platz für den Vorschlag zu schaffen.",
+ "inlineSuggest.edits.renderSideBySide": "Steuert, ob größere Vorschläge nebeneinander angezeigt werden können.",
+ "inlineSuggest.edits.showCollapsed": "Steuert, ob der Vorschlag bis zum Springen als reduziert angezeigt wird.",
+ "inlineSuggest.edits.showLongDistanceHint": "Steuert, ob Inlinevorschläge aus der Ferne angezeigt werden.",
+ "inlineSuggest.emptyResponseInformation": "Steuert, ob Anforderungsinformationen vom Inlinevorschlagsanbieter gesendet werden.",
"inlineSuggest.enabled": "Steuert, ob Inline-Vorschläge automatisch im Editor angezeigt werden.",
+ "inlineSuggest.fontFamily": "Steuert die Schriftfamilie der Inlinevorschläge.",
+ "inlineSuggest.minShowDelay": "Steuert die minimale Verzögerung in Millisekunden, nach der Inlinevorschläge nach der Eingabe angezeigt werden.",
+ "inlineSuggest.showOnSuggestConflict": "Steuert, ob Inline-Vorschläge angezeigt werden, wenn ein Vorschlagskonflikt besteht.",
+ "inlineSuggest.showToolbar": "Steuert, wann die Inlinevorschlagssymbolleiste angezeigt werden soll.",
+ "inlineSuggest.showToolbar.always": "Die Symbolleiste „Inline-Vorschlag“ anzeigen, wenn ein Inline-Vorschlag angezeigt wird.",
+ "inlineSuggest.showToolbar.never": "Die Inlinevorschlagssymbolleiste nie anzeigen.",
+ "inlineSuggest.showToolbar.onHover": "Die Symbolleiste „Inline-Vorschlag“ anzeigen, wenn Sie mit dem Mauszeiger auf einen Inline-Vorschlag zeigen.",
+ "inlineSuggest.suppressInSnippetMode": "Steuert, ob Inlinevorschläge im Snippetmodus unterdrückt werden.",
+ "inlineSuggest.suppressInlineSuggestions": "Unterdrückt Inline-Vervollständigungen für angegebene Erweiterungs-IDs – durch Kommas getrennt",
+ "inlineSuggest.suppressSuggestions": "Steuert, wie Inlinevorschläge mit dem Vorschlagswidget interagieren. Wenn diese Option aktiviert ist, wird das Vorschlagswidget nicht automatisch angezeigt, wenn Inlinevorschläge verfügbar sind.",
+ "inlineSuggest.syntaxHighlightingEnabled": "Steuert, ob Syntaxhervorhebungen für Inlinevorschläge im Editor angezeigt werden.",
+ "inlineSuggest.triggerCommandOnProviderChange": "Steuert, ob ein Befehl ausgelöst wird, wenn sich der Anbieter von Inlinevorschlägen ändert.",
"letterSpacing": "Legt den Abstand der Buchstaben in Pixeln fest.",
"lineHeight": "Steuert die Zeilenhöhe. \r\n – Verwenden Sie 0, um die Zeilenhöhe automatisch anhand des Schriftgrads zu berechnen.\r\n – Werte zwischen 0 und 8 werden als Multiplikator mit dem Schriftgrad verwendet.\r\n – Werte größer oder gleich 8 werden als effektive Werte verwendet.",
"lineNumbers": "Steuert die Anzeige von Zeilennummern.",
@@ -437,18 +616,29 @@
"links": "Steuert, ob der Editor Links erkennen und anklickbar machen soll.",
"matchBrackets": "Passende Klammern hervorheben",
"minimap.autohide": "Steuert, ob die Minimap automatisch ausgeblendet wird.",
+ "minimap.autohide.mouseover": "Die Minimap wird ausgeblendet, wenn sich der Cursor nicht über der Minimap befindet, und eingeblendet, wenn der Cursor auf die Minimap zeigt.",
+ "minimap.autohide.none": "Die Minimap wird immer angezeigt.",
+ "minimap.autohide.scroll": "Die Minimap wird nur angezeigt, wenn der Editor gescrollt wird.",
"minimap.enabled": "Steuert, ob die Minimap angezeigt wird.",
+ "minimap.markSectionHeaderRegex": "Definiert den regulären Ausdruck, der zum Suchen von Abschnittsheadern in Kommentaren verwendet wird. Der RegEx muss eine benannte Übereinstimmungsgruppe \"label\" (geschrieben als \"(?.+)\") enthalten, die den Abschnittsheader kapselt, andernfalls funktioniert er nicht. Optional können Sie eine andere Übereinstimmungsgruppe mit dem Namen \"separator\" einschließen. Verwenden Sie \\n im Muster, um mehrzeilige Header zuzuordnen.",
"minimap.maxColumn": "Begrenzen Sie die Breite der Minimap, um nur eine bestimmte Anzahl von Spalten zu rendern.",
"minimap.renderCharacters": "Die tatsächlichen Zeichen in einer Zeile rendern im Gegensatz zu Farbblöcken.",
"minimap.scale": "Maßstab des in der Minimap gezeichneten Inhalts: 1, 2 oder 3.",
+ "minimap.sectionHeaderFontSize": "Steuert den Schriftgrad von Abschnittsüberschriften in der Minimap.",
+ "minimap.sectionHeaderLetterSpacing": "Steuert den Abstand (in Pixeln) zwischen den Zeichen der Abschnittsüberschrift. Dies erleichtert die Lesbarkeit der Kopfzeile bei kleinen Schriftgrößen.",
+ "minimap.showMarkSectionHeaders": "Steuert, ob „MARK: Kommentare“ als Abschnittsheader in der Minimap angezeigt werden.",
+ "minimap.showRegionSectionHeaders": "Steuert, ob benannte Bereiche als Abschnittsheader in der Minimap angezeigt werden.",
"minimap.showSlider": "Steuert, wann der Schieberegler für die Minimap angezeigt wird.",
"minimap.side": "Steuert die Seite, wo die Minimap gerendert wird.",
"minimap.size": "Legt die Größe der Minimap fest.",
"minimap.size.fill": "Die Minimap wird bei Bedarf vergrößert oder verkleinert, um die Höhe des Editors zu füllen (kein Scrollen).",
"minimap.size.fit": "Die Minimap wird bei Bedarf verkleinert, damit sie nicht größer als der Editor ist (kein Scrollen).",
"minimap.size.proportional": "Die Minimap hat die gleiche Größe wie der Editor-Inhalt (und kann scrollen).",
+ "mouseMiddleClickAction": "Steuert, was passiert, wenn im Editor die mittlere Maustaste gedrückt wird.",
"mouseWheelScrollSensitivity": "Ein Multiplikator, der für die Mausrad-Bildlaufereignisse \"deltaX\" und \"deltaY\" verwendet werden soll.",
"mouseWheelZoom": "Schriftart des Editors vergrößern, wenn das Mausrad verwendet und die STRG-TASTE gedrückt wird.",
+ "mouseWheelZoom.mac": "Schriftart des Editors vergrößern, wenn das Mausrad verwendet und „Cmd“ gedrückt wird.",
+ "multiCursorLimit": "Steuert die maximale Anzahl von Cursorn, die sich gleichzeitig in einem aktiven Editor befindet.",
"multiCursorMergeOverlapping": "Mehrere Cursor zusammenführen, wenn sie sich überlappen.",
"multiCursorModifier": "Der Modifizierer, der zum Hinzufügen mehrerer Cursor mit der Maus verwendet werden soll. Die Mausgesten \"Gehe zu Definition\" und \"Link öffnen\" werden so angepasst, dass sie nicht mit dem [Multicursormodifizierer](https://code.visualstudio.com/docs/editor/codebasics#_multicursor-Modifizierer) in Konflikt stehen.",
"multiCursorModifier.alt": "Ist unter Windows und Linux der ALT-Taste und unter macOS der Wahltaste zugeordnet.",
@@ -456,29 +646,40 @@
"multiCursorPaste": "Steuert das Einfügen, wenn die Zeilenanzahl des Einfügetexts der Cursor-Anzahl entspricht.",
"multiCursorPaste.full": "Jeder Cursor fügt den vollständigen Text ein.",
"multiCursorPaste.spread": "Jeder Cursor fügt eine Textzeile ein.",
- "occurrencesHighlight": "Steuert, ob der Editor das Vorkommen semantischer Symbole hervorheben soll.",
+ "occurrencesHighlight": "Steuert, ob Vorkommen in geöffneten Dateien hervorgehoben werden sollen.",
+ "occurrencesHighlight.multiFile": "Experimentell: Hebt Vorkommen in allen gültigen geöffneten Dateien hervor.",
+ "occurrencesHighlight.off": "Hebt keine Vorkommen hervor.",
+ "occurrencesHighlight.singleFile": "Hebt Vorkommen nur in der aktuellen Datei hervor.",
+ "occurrencesHighlightDelay": "Steuert die Verzögerung in Millisekunden, nach der Vorkommen hervorgehoben werden.",
"off": "Schnelle Vorschläge sind deaktiviert",
"on": "Schnelle Vorschläge werden im Vorschlagswidget angezeigt",
+ "overtypeCursorStyle": "Steuert den Cursorstil im Überschreibeingabemodus.",
+ "overtypeOnPaste": "Steuert, ob das Einfügen überschrieben werden soll.",
"overviewRulerBorder": "Steuert, ob um das Übersichtslineal ein Rahmen gezeichnet werden soll.",
"padding.bottom": "Steuert den Abstand zwischen dem unteren Rand des Editors und der letzten Zeile.",
"padding.top": "Steuert den Abstand zwischen dem oberen Rand des Editors und der ersten Zeile.",
"parameterHints.cycle": "Steuert, ob das Menü mit Parameterhinweisen zyklisch ist oder sich am Ende der Liste schließt.",
"parameterHints.enabled": "Aktiviert ein Pop-up, das Dokumentation und Typ eines Parameters anzeigt während Sie tippen.",
+ "pasteAs.enabled": "Steuert, ob Sie Inhalte auf unterschiedliche Weise einfügen können.",
+ "pasteAs.showPasteSelector": "Steuert, ob beim Einfügen von Inhalt im Editor ein Widget angezeigt wird. Mit diesem Widget können Sie steuern, wie die Datei eingefügt wird.",
+ "pasteAs.showPasteSelector.afterPaste": "Das Widget für die Einfügeauswahl anzeigen, nachdem der Inhalt in den Editor eingefügt wurde.",
+ "pasteAs.showPasteSelector.never": "Das Widget für die Einfügeauswahl wird nie angezeigt. Stattdessen wird immer das Standardeinfügeverhalten verwendet.",
"peekWidgetDefaultFocus": "Steuert, ob der Inline-Editor oder die Struktur im Peek-Widget fokussiert werden soll.",
"peekWidgetDefaultFocus.editor": "Editor fokussieren, wenn Sie den Peek-Editor öffnen",
"peekWidgetDefaultFocus.tree": "Struktur beim Öffnen des Peek-Editors fokussieren",
- "quickSuggestions": "Steuert, ob Vorschläge während des Tippens automatisch angezeigt werden sollen. Dies kann bei der Eingabe von Kommentaren, Zeichenketten und anderem Code kontrolliert werden. Schnellvorschläge können so konfiguriert werden, dass sie als Geistertext oder mit dem Vorschlags-Widget angezeigt werden. Beachten Sie auch die '{0}'-Einstellung, die steuert, ob Vorschläge durch Sonderzeichen ausgelöst werden.",
+ "quickSuggestions": "Steuert, ob Vorschläge während des Tippens automatisch angezeigt werden sollen. Dies kann bei der Eingabe von Kommentaren, Zeichenketten und anderem Code kontrolliert werden. Schnellvorschläge können so konfiguriert werden, dass sie als Geistertext oder mit dem Vorschlags-Widget angezeigt werden. Beachten Sie auch die {0}-Einstellung, die steuert, ob Vorschläge durch Sonderzeichen ausgelöst werden.",
"quickSuggestions.comments": "Schnellvorschläge innerhalb von Kommentaren aktivieren.",
"quickSuggestions.other": "Schnellvorschläge außerhalb von Zeichenfolgen und Kommentaren aktivieren.",
"quickSuggestions.strings": "Schnellvorschläge innerhalb von Zeichenfolgen aktivieren.",
"quickSuggestionsDelay": "Steuert die Verzögerung in Millisekunden nach der Schnellvorschläge angezeigt werden.",
"renameOnType": "Steuert, ob der Editor bei Eingabe automatisch eine Umbenennung vornimmt.",
- "renameOnTypeDeprecate": "Veraltet. Verwenden Sie stattdessen \"editor.linkedEditing\".",
+ "renameOnTypeDeprecate": "Veraltet. Verwenden Sie stattdessen „#editor.linkedEditing#“.",
"renderControlCharacters": "Steuert, ob der Editor Steuerzeichen rendern soll.",
"renderFinalNewline": "Letzte Zeilennummer rendern, wenn die Datei mit einem Zeilenumbruch endet.",
"renderLineHighlight": "Steuert, wie der Editor die aktuelle Zeilenhervorhebung rendern soll.",
"renderLineHighlight.all": "Hebt den Bundsteg und die aktuelle Zeile hervor.",
"renderLineHighlightOnlyWhenFocus": "Steuert, ob der Editor die aktuelle Zeilenhervorhebung nur dann rendern soll, wenn der Fokus auf dem Editor liegt.",
+ "renderRichScreenReaderContent": "Gibt an, ob Sprachausgabeinhalte gerendert werden sollen, wenn die Einstellung „#editor.editContext#“ aktiviert ist.",
"renderWhitespace": "Steuert, wie der Editor Leerzeichen rendern soll.",
"renderWhitespace.boundary": "Leerraumzeichen werden gerendert mit Ausnahme der einzelnen Leerzeichen zwischen Wörtern.",
"renderWhitespace.selection": "Hiermit werden Leerraumzeichen nur für ausgewählten Text gerendert.",
@@ -487,14 +688,17 @@
"rulers": "Vertikale Linien nach einer bestimmten Anzahl von Monospacezeichen rendern. Verwenden Sie mehrere Werte für mehrere Linien. Wenn das Array leer ist, werden keine Linien gerendert.",
"rulers.color": "Farbe dieses Editor-Lineals.",
"rulers.size": "Anzahl der Zeichen aus Festbreitenschriftarten, ab der dieses Editor-Lineal gerendert wird.",
+ "screenReaderAnnounceInlineSuggestion": "Steuern Sie, ob Inlinevorschläge von einer Sprachausgabe angekündigt werden.",
"scrollBeyondLastColumn": "Steuert die Anzahl der zusätzlichen Zeichen, nach denen der Editor horizontal scrollt.",
"scrollBeyondLastLine": "Steuert, ob der Editor jenseits der letzten Zeile scrollen wird.",
+ "scrollOnMiddleClick": "Steuert, ob durch Drücken der mittleren Maustaste durch den Editor gescrollt wird.",
"scrollPredominantAxis": "Nur entlang der vorherrschenden Achse scrollen, wenn gleichzeitig vertikal und horizontal gescrollt wird. Dadurch wird ein horizontaler Versatz beim vertikalen Scrollen auf einem Trackpad verhindert.",
"scrollbar.horizontal": "Steuert die Sichtbarkeit der horizontalen Bildlaufleiste.",
"scrollbar.horizontal.auto": "Die horizontale Bildlaufleiste wird nur bei Bedarf angezeigt.",
"scrollbar.horizontal.fit": "Die horizontale Bildlaufleiste wird immer ausgeblendet.",
"scrollbar.horizontal.visible": "Die horizontale Bildlaufleiste ist immer sichtbar.",
"scrollbar.horizontalScrollbarSize": "Die Höhe der horizontalen Bildlaufleiste.",
+ "scrollbar.ignoreHorizontalScrollbarInContentHeight": "Wenn diese Option festgelegt ist, wird die Größe des Editorinhalts nicht durch die horizontale Scrollleiste vergrößert.",
"scrollbar.scrollByPage": "Steuert, ob Klicks nach Seite scrollen oder zur Klickposition springen.",
"scrollbar.vertical": "Steuert die Sichtbarkeit der vertikalen Bildlaufleiste.",
"scrollbar.vertical.auto": "Die vertikale Bildlaufleiste wird nur bei Bedarf angezeigt.",
@@ -502,8 +706,11 @@
"scrollbar.vertical.visible": "Die vertikale Bildlaufleiste ist immer sichtbar.",
"scrollbar.verticalScrollbarSize": "Die Breite der vertikalen Bildlaufleiste.",
"selectLeadingAndTrailingWhitespace": "Gibt an, ob führende und nachstehende Leerzeichen immer ausgewählt werden sollen.",
+ "selectSubwords": "Gibt an, ob Unterwörter (z. B. \"foo\" in \"fooBar\" oder \"foo_bar\") ausgewählt werden sollen.",
"selectionClipboard": "Steuert, ob die primäre Linux-Zwischenablage unterstützt werden soll.",
"selectionHighlight": "Steuert, ob der Editor Übereinstimmungen hervorheben soll, die der Auswahl ähneln.",
+ "selectionHighlightMaxLength": "Steuert, wie viele Zeichen in der Auswahl enthalten sein können, bevor ähnliche Übereinstimmungen nicht hervorgehoben werden. Auf Null festlegen für unbegrenzt.",
+ "selectionHighlightMultiline": "Steuert, ob der Editor Übereinstimmungen in der Auswahl hervorheben soll, die sich über mehrere Zeilen erstrecken.",
"showDeprecated": "Steuert durchgestrichene veraltete Variablen.",
"showFoldingControls": "Steuert, wann die Steuerungselemente für die Codefaltung am Bundsteg angezeigt werden.",
"showFoldingControls.always": "Steuerelemente für die Codefaltung immer anzeigen.",
@@ -519,18 +726,23 @@
"stickyTabStops": "Emuliert das Auswahlverhalten von Tabstoppzeichen, wenn Leerzeichen für den Einzug verwendet werden. Die Auswahl wird an Tabstopps ausgerichtet.",
"suggest.filterGraceful": "Steuert, ob Filter- und Suchvorschläge geringfügige Tippfehler berücksichtigen.",
"suggest.insertMode": "Legt fest, ob Wörter beim Akzeptieren von Vervollständigungen überschrieben werden. Beachten Sie, dass dies von Erweiterungen abhängt, die für dieses Features aktiviert sind.",
+ "suggest.insertMode.always": "Wählen Sie immer einen Vorschlag aus, wenn IntelliSense automatisch ausgelöst wird.",
"suggest.insertMode.insert": "Vorschlag einfügen, ohne den Text auf der rechten Seite des Cursors zu überschreiben",
+ "suggest.insertMode.never": "Wählen Sie niemals einen Vorschlag aus, wenn IntelliSense automatisch ausgelöst wird.",
"suggest.insertMode.replace": "Vorschlag einfügen und Text auf der rechten Seite des Cursors überschreiben",
+ "suggest.insertMode.whenQuickSuggestion": "Wählen Sie einen Vorschlag nur aus, wenn Sie IntelliSense während der Eingabe auslösen.",
+ "suggest.insertMode.whenTriggerCharacter": "Wählen Sie einen Vorschlag nur aus, wenn IntelliSense aus einem Triggerzeichen ausgelöst wird.",
"suggest.localityBonus": "Steuert, ob bei der Sortierung Wörter priorisiert werden, die in der Nähe des Cursors stehen.",
"suggest.maxVisibleSuggestions.dep": "Diese Einstellung ist veraltet. Die Größe des Vorschlagswidgets kann jetzt geändert werden.",
"suggest.preview": "Steuert, ob das Ergebnis des Vorschlags im Editor in der Vorschau angezeigt werden soll.",
+ "suggest.selectionMode": "Steuert, ob ein Vorschlag ausgewählt wird, wenn das Widget angezeigt wird. Beachten Sie, dass dies nur für automatisch ausgelöste Vorschläge ({0} und {1}) gilt und dass ein Vorschlag immer ausgewählt wird, wenn er explizit aufgerufen wird, z. B. über STRG+LEERTASTE.",
"suggest.shareSuggestSelections": "Steuert, ob gespeicherte Vorschlagauswahlen in verschiedenen Arbeitsbereichen und Fenstern gemeinsam verwendet werden (dafür ist \"#editor.suggestSelection#\" erforderlich).",
"suggest.showIcons": "Steuert, ob Symbole in Vorschlägen ein- oder ausgeblendet werden.",
"suggest.showInlineDetails": "Steuert, ob Vorschlagsdetails inline mit der Bezeichnung oder nur im Detailwidget angezeigt werden.",
"suggest.showStatusBar": "Steuert die Sichtbarkeit der Statusleiste unten im Vorschlagswidget.",
"suggest.snippetsPreventQuickSuggestions": "Steuert, ob ein aktiver Schnipsel verhindert, dass der Bereich \"Schnelle Vorschläge\" angezeigt wird.",
"suggestFontSize": "Schriftgrad für das Vorschlagswidget. Bei Festlegung auf {0} wird der Wert von {1} verwendet.",
- "suggestLineHeight": "Linienhöhe für das Vorschlagswidget. Bei Festlegung auf {0} wird der Wert von {1} verwendet. Der Mindestwert ist 8.",
+ "suggestLineHeight": "Zeilenhöhe für das Vorschlagswidget. Bei Festlegung auf {0} wird der Wert von {1} verwendet. Der Mindestwert ist 8.",
"suggestOnTriggerCharacters": "Steuert, ob Vorschläge automatisch angezeigt werden sollen, wenn Triggerzeichen eingegeben werden.",
"suggestSelection": "Steuert, wie Vorschläge bei Anzeige der Vorschlagsliste vorab ausgewählt werden.",
"suggestSelection.first": "Immer den ersten Vorschlag auswählen.",
@@ -540,19 +752,25 @@
"tabCompletion.off": "Tab-Vervollständigungen deaktivieren.",
"tabCompletion.on": "Die Tab-Vervollständigung fügt den passendsten Vorschlag ein, wenn auf Tab gedrückt wird.",
"tabCompletion.onlySnippets": "Codeschnipsel per Tab vervollständigen, wenn die Präfixe übereinstimmen. Funktioniert am besten, wenn \"quickSuggestions\" deaktiviert sind.",
+ "tabFocusMode": "Steuert, ob der Editor Registerkarten empfängt oder zur Navigation zur Workbench zurückgibt.",
+ "trimWhitespaceOnDelete": "Steuert, ob der Editor beim Löschen eines Zeilenumbruchs auch das Einzugsleerzeichen der nächsten Zeile löscht.",
"unfoldOnClickAfterEndOfLine": "Steuert, ob eine Zeile aufgefaltet wird, wenn nach einer gefalteten Zeile auf den leeren Inhalt geklickt wird.",
"unicodeHighlight.allowedCharacters": "Definiert zulässige Zeichen, die nicht hervorgehoben werden.",
"unicodeHighlight.allowedLocales": "Unicodezeichen, die in zulässigen Gebietsschemas üblich sind, werden nicht hervorgehoben.",
"unicodeHighlight.ambiguousCharacters": "Legt fest, ob Zeichen hervorgehoben werden, die mit einfachen ASCII-Zeichen verwechselt werden können, mit Ausnahme derjenigen, die im aktuellen Gebietsschema des Benutzers üblich sind.",
- "unicodeHighlight.includeComments": "Legt fest, ob Zeichen in Kommentaren auch mit Unicode-Hervorhebung versehen werden sollen.",
- "unicodeHighlight.includeStrings": "Legt fest, ob Zeichen in Zeichenfolgen auch mit Unicode-Hervorhebung versehen werden sollen.",
+ "unicodeHighlight.includeComments": "Steuert, ob Zeichen in Kommentaren auch mit Unicode-Hervorhebung versehen werden sollen.",
+ "unicodeHighlight.includeStrings": "Steuert, ob Zeichen in Zeichenfolgen auch mit Unicode-Hervorhebung versehen werden sollen.",
"unicodeHighlight.invisibleCharacters": "Legt fest, ob Zeichen, die nur als Platzhalter dienen oder überhaupt keine Breite haben, hervorgehoben werden.",
"unicodeHighlight.nonBasicASCII": "Legt fest, ob alle nicht einfachen ASCII-Zeichen hervorgehoben werden. Nur Zeichen zwischen U+0020 und U+007E, Tabulator, Zeilenvorschub und Wagenrücklauf gelten als einfache ASCII-Zeichen.",
"unusualLineTerminators": "Entfernen Sie unübliche Zeilenabschlusszeichen, die Probleme verursachen können.",
"unusualLineTerminators.auto": "Ungewöhnliche Zeilenabschlusszeichen werden automatisch entfernt.",
"unusualLineTerminators.off": "Ungewöhnliche Zeilenabschlusszeichen werden ignoriert.",
"unusualLineTerminators.prompt": "Zum Entfernen ungewöhnlicher Zeilenabschlusszeichen wird eine Eingabeaufforderung angezeigt.",
- "useTabStops": "Das Einfügen und Löschen von Leerzeichen erfolgt nach Tabstopps.",
+ "useTabStops": "Leerzeichen und Registerkarten werden in Übereinstimmung mit Tabstopps eingefügt und gelöscht.",
+ "wordBreak": "Steuert die Regeln für Trennstellen, die für Texte in Chinesisch/Japanisch/Koreanisch (CJK) verwendet werden.",
+ "wordBreak.keepAll": "Trennstellen dürfen nicht für Texte in Chinesisch/Japanisch/Koreanisch (CJK) verwendet werden. Das Verhalten von Nicht-CJK-Texten ist mit dem für normales Verhalten identisch.",
+ "wordBreak.normal": "Verwenden Sie die Standardregel für Zeilenumbrüche.",
+ "wordSegmenterLocales": "Gebietsschemas, die für die Wortsegmentierung verwendet werden sollen, wenn wortbezogene Navigationen oder Vorgänge ausgeführt werden. Geben Sie das BCP 47-Sprachtag des Worts an, das Sie erkennen möchten (z. B. ja, zh-CN, zh-Hant-TW usw.).",
"wordSeparators": "Zeichen, die als Worttrennzeichen verwendet werden, wenn wortbezogene Navigationen oder Vorgänge ausgeführt werden.",
"wordWrap": "Steuert, wie der Zeilenumbruch durchgeführt werden soll.",
"wordWrap.bounded": "Der Zeilenumbruch erfolgt beim Mindestanzeigebereich und \"#editor.wordWrapColumn\".",
@@ -560,19 +778,28 @@
"wordWrap.on": "Der Zeilenumbruch erfolgt an der Breite des Anzeigebereichs.",
"wordWrap.wordWrapColumn": "Der Zeilenumbruch erfolgt bei \"#editor.wordWrapColumn#\".",
"wordWrapColumn": "Steuert die umschließende Spalte des Editors, wenn \"#editor.wordWrap#\" den Wert \"wordWrapColumn\" oder \"bounded\" aufweist.",
+ "wrapOnEscapedLineFeeds": "Steuert, ob das Literal „\\n“ einen Zeilenumbruch auslösen soll, wenn „#editor.wordWrap#“ aktiviert ist.\r\n\r\nBeispiel:\r\n```c\r\nchar* str=\"hello\\nworld\"\r\n```\r\nwird wie folgt angezeigt:\r\n```c\r\nchar* str=\"hello\\n\r\n world\"\r\n```",
"wrappingIndent": "Steuert die Einrückung der umbrochenen Zeilen.",
"wrappingIndent.deepIndent": "Umgebrochene Zeilen werden im Vergleich zum übergeordneten Element +2 eingerückt.",
"wrappingIndent.indent": "Umbrochene Zeilen erhalten + 1 Einzug auf das übergeordnete Element.",
"wrappingIndent.none": "Kein Einzug. Umbrochene Zeilen beginnen bei Spalte 1.",
"wrappingIndent.same": "Umbrochene Zeilen erhalten den gleichen Einzug wie das übergeordnete Element.",
- "wrappingStrategy": "Steuert den Algorithmus, der Umbruchpunkte berechnet.",
+ "wrappingStrategy": "Steuert den Algorithmus, der Umbruchpunkte berechnet. Beachten Sie, dass \"advanced\" im Barrierefreiheitsmodus für eine optimale Benutzererfahrung verwendet wird.",
"wrappingStrategy.advanced": "Delegiert die Berechnung von Umbruchpunkten an den Browser. Dies ist ein langsamer Algorithmus, der bei großen Dateien Code Freezes verursachen kann, aber in allen Fällen korrekt funktioniert.",
"wrappingStrategy.simple": "Es wird angenommen, dass alle Zeichen gleich breit sind. Dies ist ein schneller Algorithmus, der für Festbreitenschriftarten und bestimmte Alphabete (wie dem lateinischen), bei denen die Glyphen gleich breit sind, korrekt funktioniert."
},
"vs/editor/common/core/editorColorRegistry": {
"caret": "Farbe des Cursors im Editor.",
+ "deprecatedEditorActiveIndentGuide": "\"editorIndentGuide.activeBackground\" ist veraltet. Verwenden Sie stattdessen \"editorIndentGuide.activeBackground1\".",
"deprecatedEditorActiveLineNumber": "Die ID ist veraltet. Verwenden Sie stattdessen \"editorLineNumber.activeForeground\".",
+ "deprecatedEditorIndentGuides": "\"editorIndentGuide.background\" ist veraltet. Verwenden Sie stattdessen \"editorIndentGuide.background1\".",
"editorActiveIndentGuide": "Farbe der Führungslinien für Einzüge im aktiven Editor.",
+ "editorActiveIndentGuide1": "Farbe der Führungslinien für Einzüge im aktiven Editor (1).",
+ "editorActiveIndentGuide2": "Farbe der Führungslinien für Einzüge im aktiven Editor (2).",
+ "editorActiveIndentGuide3": "Farbe der Führungslinien für Einzüge im aktiven Editor (3).",
+ "editorActiveIndentGuide4": "Farbe der Führungslinien für Einzüge im aktiven Editor (4).",
+ "editorActiveIndentGuide5": "Farbe der Führungslinien für Einzüge im aktiven Editor (5).",
+ "editorActiveIndentGuide6": "Farbe der Führungslinien für Einzüge im aktiven Editor (6).",
"editorActiveLineNumber": "Zeilennummernfarbe der aktiven Editorzeile.",
"editorBracketHighlightForeground1": "Vordergrundfarbe der Klammern (1). Erfordert die Aktivierung der Farbgebung des Klammerpaars.",
"editorBracketHighlightForeground2": "Vordergrundfarbe der Klammern (2). Erfordert die Aktivierung der Farbgebung des Klammerpaars.",
@@ -597,18 +824,30 @@
"editorBracketPairGuide.background6": "Hintergrundfarbe der inaktiven Klammerpaar-Hilfslinien (6). Erfordert das Aktivieren von Klammerpaar-Hilfslinien.",
"editorCodeLensForeground": "Vordergrundfarbe der CodeLens-Links im Editor",
"editorCursorBackground": "Hintergrundfarbe vom Editor-Cursor. Erlaubt die Anpassung der Farbe von einem Zeichen, welches von einem Block-Cursor überdeckt wird.",
+ "editorDimmedLineNumber": "Die Farbe der letzten Editor-Zeile, wenn „editor.renderFinalNewline“ auf „abgeblendet“ festgelegt ist.",
"editorGhostTextBackground": "Hintergrundfarbe des Ghost-Texts im Editor.",
"editorGhostTextBorder": "Rahmenfarbe des Ghost-Texts im Editor.",
"editorGhostTextForeground": "Vordergrundfarbe des Ghost-Texts im Editor.",
"editorGutter": "Hintergrundfarbe der Editorleiste. Die Leiste enthält die Glyphenränder und die Zeilennummern.",
"editorIndentGuides": "Farbe der Führungslinien für Einzüge im Editor.",
+ "editorIndentGuides1": "Farbe der Führungslinien für Einzüge im Editor (1).",
+ "editorIndentGuides2": "Farbe der Führungslinien für Einzüge im Editor (2).",
+ "editorIndentGuides3": "Farbe der Führungslinien für Einzüge im Editor (3).",
+ "editorIndentGuides4": "Farbe der Führungslinien für Einzüge im Editor (4).",
+ "editorIndentGuides5": "Farbe der Führungslinien für Einzüge im Editor (5).",
+ "editorIndentGuides6": "Farbe der Führungslinien für Einzüge im Editor (6).",
"editorLineNumbers": "Zeilennummernfarbe im Editor.",
- "editorOverviewRulerBackground": "Hintergrundfarbe des Übersichtslineals im Editor. Wird nur verwendet, wenn die Minimap aktiviert ist und auf der rechten Seite des Editors platziert wird.",
+ "editorMultiCursorPrimaryBackground": "Die Hintergrundfarbe des primären Editorcursors, wenn mehrere Cursor vorhanden sind. Erlaubt die Anpassung der Farbe von einem Zeichen, welches von einem Block-Cursor überdeckt wird.",
+ "editorMultiCursorPrimaryForeground": "Farbe des primären Editorcursors, wenn mehrere Cursor vorhanden sind.",
+ "editorMultiCursorSecondaryBackground": "Die Hintergrundfarbe sekundärer Editorcursor, wenn mehrere Cursor vorhanden sind. Erlaubt die Anpassung der Farbe von einem Zeichen, welches von einem Block-Cursor überdeckt wird.",
+ "editorMultiCursorSecondaryForeground": "Farbe sekundärer Editorcursor, wenn mehrere Cursor vorhanden sind.",
+ "editorOverviewRulerBackground": "Hintergrundfarbe des Editor-Übersichtslineals.",
"editorOverviewRulerBorder": "Farbe des Rahmens für das Übersicht-Lineal.",
"editorRuler": "Farbe des Editor-Lineals.",
"editorUnicodeHighlight.background": "Hintergrundfarbe, die zum Hervorheben von Unicode-Zeichen verwendet wird.",
"editorUnicodeHighlight.border": "Rahmenfarbe, die zum Hervorheben von Unicode-Zeichen verwendet wird.",
"editorWhitespaces": "Farbe der Leerzeichen im Editor.",
+ "inactiveLineHighlight": "Hintergrundfarbe für die Hervorhebung der Zeile an der Cursorposition, wenn der Editor nicht fokussiert ist.",
"lineHighlight": "Hintergrundfarbe zur Hervorhebung der Zeile an der Cursorposition.",
"lineHighlightBorderBox": "Hintergrundfarbe für den Rahmen um die Zeile an der Cursorposition.",
"overviewRuleError": "Übersichtslineal-Markierungsfarbe für Fehler.",
@@ -623,6 +862,15 @@
"unnecessaryCodeOpacity": "Deckkraft des unnötigen (nicht genutzten) Quellcodes im Editor. \"#000000c0\" rendert z.B. den Code mit einer Deckkraft von 75%. Verwenden Sie für Designs mit hohem Kontrast das Farbdesign \"editorUnnecessaryCode.border\", um unnötigen Code zu unterstreichen statt ihn abzublenden."
},
"vs/editor/common/editorContextKeys": {
+ "accessibleDiffViewerVisible": "Gibt an, ob der barrierefreie Diff-Viewer sichtbar ist.",
+ "comparingMovedCode": "Gibt an, ob ein verschobener Codeblock für den Vergleich ausgewählt wird.",
+ "diffEditorHasChanges": "Gibt an, ob der Diff-Editor Änderungen aufweist.",
+ "diffEditorInlineMode": "Gibt an, ob der Inlinemodus aktiv ist.",
+ "diffEditorModifiedUri": "Der URI des geänderten Dokuments",
+ "diffEditorModifiedWritable": "Gibt an, ob „geändert“ im Diff-Editor beschreibbar ist.",
+ "diffEditorOriginalUri": "Der URI des ursprünglichen Dokuments",
+ "diffEditorOriginalWritable": "Gibt an, ob „geändert“ im Diff-Editor beschreibbar ist.",
+ "diffEditorRenderSideBySideInlineBreakpointReached": "Gibt an, ob für den Diff-Editor der Breakpoint für das Rendern im Modus \"Parallel\" oder \"Inline\" erreicht wurde.",
"editorColumnSelection": "Gibt an, ob \"editor.columnSelection\" aktiviert ist.",
"editorFocus": "Gibt an, ob der Editor oder ein Editor-Widget den Fokus besitzt (z. B. ob der Fokus sich im Suchwidget befindet).",
"editorHasCodeActionsProvider": "Gibt an, ob der Editor über einen Codeaktionsanbieter verfügt.",
@@ -645,15 +893,81 @@
"editorHasSelection": "Gibt an, ob im Editor Text ausgewählt ist.",
"editorHasSignatureHelpProvider": "Gibt an, ob der Editor über einen Signaturhilfeanbieter verfügt.",
"editorHasTypeDefinitionProvider": "Gibt an, ob der Editor über einen Typdefinitionsanbieter verfügt.",
+ "editorHoverFocused": "Gibt an, ob Daraufzeigen im Editor fokussiert ist.",
"editorHoverVisible": "Gibt an, ob Hover im Editor sichtbar ist.",
"editorLangId": "Der Sprachbezeichner des Editors.",
- "editorReadonly": "Gibt an, ob der Editor schreibgeschützt ist.",
+ "editorReadonly": "Gibt an, ob der Editor schreibgeschützt ist",
"editorTabMovesFocus": "Gibt an, ob die TAB-TASTE den Fokus aus dem Editor verschiebt.",
"editorTextFocus": "Gibt an, ob der Editor-Text den Fokus besitzt (Cursor blinkt).",
"inCompositeEditor": "Gibt an, ob der Editor Bestandteil eines größeren Editors ist (z. B. Notebooks).",
"inDiffEditor": "Gibt an, ob der Kontext ein Diff-Editor ist.",
+ "inMultiDiffEditor": "Gibt an, ob der Kontext ein Multi-Diff-Editor ist.",
+ "isEmbeddedDiffEditor": "Gibt an, ob der Kontext ein eingebetteter Diff-Editor ist.",
+ "multiDiffEditorAllCollapsed": "Gibt an, ob alle Dateien im Multi-Diff-Editor reduziert sind",
+ "standaloneColorPickerFocused": "Gibt an, ob der eigenständige Farbwähler fokussiert ist.",
+ "standaloneColorPickerVisible": "Gibt an, ob der eigenständige Farbwähler sichtbar ist.",
+ "stickyScrollFocused": "Gibt an, ob der Fokus auf dem fixierten Bildlauf liegt",
+ "stickyScrollVisible": "Gibt an, ob der fixierte Bildlauf sichtbar ist",
"textInputFocus": "Gibt an, ob ein Editor oder eine Rich-Text-Eingabe den Fokus besitzt (Cursor blinkt)."
},
+ "vs/editor/common/languages": {
+ "Array": "Array",
+ "Boolean": "Boolescher Wert",
+ "Class": "Klasse",
+ "Constant": "Konstante",
+ "Constructor": "Konstruktor",
+ "Enum": "Enumeration",
+ "EnumMember": "Enumerationsmember",
+ "Event": "Ereignis",
+ "Field": "Feld",
+ "File": "Datei",
+ "Function": "Funktion",
+ "Interface": "Schnittstelle",
+ "Key": "Schlüssel",
+ "Method": "Methode",
+ "Module": "Modul",
+ "Namespace": "Namespace",
+ "Null": "NULL",
+ "Number": "Zahl",
+ "Object": "Objekt",
+ "Operator": "Operator",
+ "Package": "Paket",
+ "Property": "Eigenschaft",
+ "String": "Zeichenfolge",
+ "Struct": "Struktur",
+ "TypeParameter": "Typparameter",
+ "Variable": "Variable",
+ "suggestWidget.kind.class": "Klasse",
+ "suggestWidget.kind.color": "Farbe",
+ "suggestWidget.kind.constant": "Konstante",
+ "suggestWidget.kind.constructor": "Konstruktor",
+ "suggestWidget.kind.customcolor": "Benutzerdefinierte Farbe",
+ "suggestWidget.kind.enum": "Enumeration",
+ "suggestWidget.kind.enumMember": "Enumerationsmember",
+ "suggestWidget.kind.event": "Ereignis",
+ "suggestWidget.kind.field": "Feld",
+ "suggestWidget.kind.file": "Datei",
+ "suggestWidget.kind.folder": "Ordner",
+ "suggestWidget.kind.function": "Funktion",
+ "suggestWidget.kind.interface": "Schnittstelle",
+ "suggestWidget.kind.issue": "Problem",
+ "suggestWidget.kind.keyword": "Schlüsselwort",
+ "suggestWidget.kind.method": "Methode",
+ "suggestWidget.kind.module": "Modul",
+ "suggestWidget.kind.operator": "Operator",
+ "suggestWidget.kind.property": "Eigenschaft",
+ "suggestWidget.kind.reference": "Referenz",
+ "suggestWidget.kind.snippet": "Ausschnitt",
+ "suggestWidget.kind.struct": "Struktur",
+ "suggestWidget.kind.text": "Text",
+ "suggestWidget.kind.tool": "Tool",
+ "suggestWidget.kind.typeParameter": "Typparameter",
+ "suggestWidget.kind.unit": "Einheit",
+ "suggestWidget.kind.user": "Benutzer",
+ "suggestWidget.kind.value": "Wert",
+ "suggestWidget.kind.variable": "Variable",
+ "symbolAriaLabel": "{0} ({1})"
+ },
"vs/editor/common/languages/modesRegistry": {
"plainText.alias": "Nur-Text"
},
@@ -661,40 +975,58 @@
"edit": "Eingabe"
},
"vs/editor/common/standaloneStrings": {
- "accessibilityHelpMessage": "Drücken Sie ALT + F1, um die Barrierefreiheitsoptionen aufzurufen.",
- "auto_off": "Der Editor ist so konfiguriert, dass er nie auf die Verwendung mit Sprachausgabe hin optimiert wird. Dies ist zu diesem Zeitpunkt nicht der Fall.",
- "auto_on": "Der Editor ist auf eine optimale Verwendung mit Sprachausgabe konfiguriert.",
+ "acceptSuggestAction": "Vorschlag akzeptieren{0}, um den aktuell ausgewählten Vorschlag zu akzeptieren.",
+ "accessibilityHelpTitle": "Hilfe zur Barrierefreiheit",
+ "auto_off": "Die Anwendung ist so konfiguriert, dass sie niemals für die Verwendung mit einer Sprachausgabe optimiert wird.",
+ "auto_on": "Die Anwendung ist so konfiguriert, dass sie für die Verwendung mit Sprachausgabe optimiert wird.",
"bulkEditServiceSummary": "{0} Bearbeitungen in {1} Dateien durchgeführt",
- "changeConfigToOnMac": "Drücken Sie BEFEHLSTASTE + E, um den Editor für eine optimierte Verwendung mit Sprachausgabe zu konfigurieren.",
- "changeConfigToOnWinLinux": "Drücken Sie STRG + E, um den Editor für eine optimierte Verwendung mit Sprachausgabe zu konfigurieren.",
- "editableDiffEditor": " in einem Bereich eines Diff-Editors.",
- "editableEditor": " in einem Code-Editor",
+ "changeConfigToOnMac": "Konfigurieren Sie die Anwendung so, dass sie für die Verwendung mit einer Sprachausgabe optimiert wird (BEFEHLSTASTE+E).",
+ "changeConfigToOnWinLinux": "Konfigurieren Sie die Anwendung so, dass sie für die Verwendung mit einer Sprachausgabe optimiert wird (STRG+E).",
+ "chatEditing.navigation": "Navigieren Sie zwischen den Bearbeitungen im Editor mit Zurück{0} und Weiter{1} und akzeptieren{2}, verwerfen{3} oder zeigen Sie die Unterschiede{4} der aktuellen Änderung an. Akzeptieren Sie Bearbeitungen in allen Dateien{5}.",
+ "chatEditorModification": "Der Editor enthält ausstehende Änderungen, die vom Chat vorgenommen wurden.",
+ "chatEditorRequestInProgress": "Der Editor wartet zurzeit darauf, dass Änderungen durch den Chat vorgenommen werden.",
+ "codeFolding": "Verwenden Sie die Codefaltung, um Codeblöcke zu reduzieren und sich auf den Code zu konzentrieren, an dem Sie interessiert sind, über den \"Faltungsbefehl umschalten\"{0}.",
+ "debug.startDebugging": "Der Befehl „Debuggen: Debuggen starten“{0} startet eine Debugsitzung.",
+ "debugConsole.addToWatch": "Der Befehl \"Debug: Zur Überwachung hinzufügen\"{0} fügt der Überwachungsansicht den ausgewählten Text hinzu.",
+ "debugConsole.executeSelection": "Der Befehl \"Debug: Auswahl ausführen\"{0} führt den ausgewählten Text in der Debugkonsole aus.",
+ "debugConsole.setBreakpoint": "Der Befehl „Debug: Inline-Haltepunkt“{0} legt einen Haltepunkt an der aktuellen Cursorposition im aktiven Editor fest oder hebt die Festlegung auf.",
+ "defaultWindowTitleExcludingEditorState": "activeEditorState, wie z. B. \"modified\", \"problems\" und weitere, ist derzeit nicht standardmäßig als Teil der window.title-Einstellung enthalten. Aktivieren Sie es mit accessibility.windowTitleOptimized.",
+ "defaultWindowTitleIncludesEditorState": "activeEditorState, wie z. B. \"modified\", \"problems\" und weitere, ist standardmäßig als Teil der window.title-Einstellung enthalten. Deaktivieren Sie es mit accessibility.windowTitleOptimized.",
+ "editableDiffEditor": "Sie befinden sich in einem Bereich eines Diff-Editors.",
+ "editableEditor": "Sie befinden sich in einem Code-Editor.",
"editorViewAccessibleLabel": "Editor-Inhalt",
- "emergencyConfOn": "Die Einstellung \"accessibilitySupport\" wird jetzt in \"on\" geändert.",
+ "goToSymbol": "Wechseln Sie zum Symbol {0}, um schnell zwischen Symbolen in der aktuellen Datei zu navigieren.",
"gotoLineActionLabel": "Gehe zu Zeile/Spalte...",
+ "gotoOffsetActionLabel": "Zu Offset wechseln ...",
"helpQuickAccess": "Alle Anbieter für den Schnellzugriff anzeigen",
"inspectTokens": "Entwickler: Token überprüfen",
- "multiSelection": "{0} Auswahlen",
- "multiSelectionRange": "{0} Auswahlen ({1} Zeichen ausgewählt)",
- "noSelection": "Keine Auswahl",
- "openDocMac": "Drücken Sie BEFEHLSTASTE + H, um ein Browserfenster mit weiteren Informationen zur Barrierefreiheit des Editors zu öffnen.",
- "openDocWinLinux": "Drücken Sie STRG + H, um ein Browserfenster mit weiteren Informationen zur Barrierefreiheit des Editors zu öffnen.",
- "openingDocs": "Die Dokumentationsseite zur Barrierefreiheit des Editors wird geöffnet.",
- "outroMsg": "Sie können diese QuickInfo schließen und durch Drücken von ESC oder UMSCHALT+ESC zum Editor zurückkehren.",
+ "intellisense": "Verwenden Sie IntelliSense, um die Codierungseffizienz zu verbessern und Fehler zu verringern. Vorschläge auslösen{0}.",
+ "listAnnouncementsCommand": "Führen Sie den Befehl „Signalankündigungen auflisten“ aus, um eine Übersicht über Ankündigungen und deren aktuellen Status anzuzeigen.",
+ "listSignalSoundsCommand": "Führen Sie den Befehl „Signaltöne auflisten“ aus, um eine Übersicht über alle Töne und deren aktuellen Status anzuzeigen.",
+ "openingDocs": "Die Dokumentationsseite zur Barrierefreiheit wird geöffnet.",
+ "quickChatCommand": "Schnellchat umschalten{0}, um eine Chatsitzung zu öffnen oder zu schließen.",
"quickCommandActionHelp": "Befehle anzeigen und ausführen",
"quickCommandActionLabel": "Befehlspalette",
"quickOutlineActionLabel": "Gehe zu Symbol...",
"quickOutlineByCategoryActionLabel": "Gehe zu Symbol nach Kategorie...",
- "readonlyDiffEditor": " in einem schreibgeschützten Bereich eines Diff-Editors.",
- "readonlyEditor": " in einem schreibgeschützten Code-Editor",
+ "readonlyDiffEditor": "Sie befinden sich in einem schreibgeschützten Bereich eines Diff-Editors.",
+ "readonlyEditor": "Sie befinden sich in einem schreibgeschützten Code-Editor.",
+ "screenReaderModeDisabled": "Der für die Sprachausgabe optimierte Modus ist deaktiviert.",
+ "screenReaderModeEnabled": "Der für die Sprachausgabe optimierte Modus ist aktiviert.",
"showAccessibilityHelpAction": "Hilfe zur Barrierefreiheit anzeigen",
- "singleSelection": "Zeile {0}, Spalte {1}",
- "singleSelectionRange": "Zeile {0}, Spalte {1} ({2} ausgewählt)",
- "tabFocusModeOffMsg": "Durch Drücken der TAB-TASTE im aktuellen Editor wird das Tabstoppzeichen eingefügt. Schalten Sie dieses Verhalten um, indem Sie {0} drücken.",
- "tabFocusModeOffMsgNoKb": "Durch Drücken der TAB-TASTE im aktuellen Editor wird das Tabstoppzeichen eingefügt. Der {0}-Befehl kann zurzeit nicht durch eine Tastenzuordnung ausgelöst werden.",
- "tabFocusModeOnMsg": "Durch Drücken der TAB-TASTE im aktuellen Editor wird der Fokus in das nächste Element verschoben, das den Fokus erhalten kann. Schalten Sie dieses Verhalten um, indem Sie {0} drücken.",
- "tabFocusModeOnMsgNoKb": "Durch Drücken der TAB-TASTE im aktuellen Editor wird der Fokus in das nächste Element verschoben, das den Fokus erhalten kann. Der {0}-Befehl kann zurzeit nicht durch eine Tastenzuordnung ausgelöst werden.",
- "toggleHighContrast": "Zu Design mit hohem Kontrast umschalten"
+ "showOrFocusHover": "Zeigen oder fokussieren Sie den Mauszeiger{0}, um Informationen zum aktuellen Symbol zu lesen.",
+ "startInlineChatCommand": "Inlinechat starten{0}, um eine Chatsitzung im Editor zu erstellen.",
+ "stickScrollKb": "\"Fokus auf fixierten Bildlauf\"{0}, um den Fokus auf die zurzeit geschachtelten Bereiche festzulegen.",
+ "suggestActionsKb": "Löst das Vorschlagswidget{0} aus, um mögliche Inlinevorschläge anzuzeigen.",
+ "tabFocusModeOffMsg": "Durch Drücken der TAB-TASTE im aktuellen Editor wird das Tabstoppzeichen eingefügt. Schalten Sie dieses Verhalten um{0}.",
+ "tabFocusModeOnMsg": "Durch Drücken der TAB-TASTE im aktuellen Editor wird der Fokus auf das nächste Element festgelegt, das den Fokus erhalten kann. Schalten Sie dieses Verhalten um{0}.",
+ "toggleHighContrast": "Zu Design mit hohem Kontrast umschalten",
+ "toggleSuggestionFocus": "Den Fokus zwischen dem Vorschlagswidget und dem Editor{0} umschalten und den Detailfokus mit{1} umschalten, um weitere Informationen zum Vorschlag zu erhalten.",
+ "toolbar": "Wenn die Bildschirmsprachausgabe ankündigt, dass Sie auf einer Symbolleiste gelandet sind, verwenden Sie die schmalen Tasten, um zwischen den Aktionen der Symbolleiste zu navigieren."
+ },
+ "vs/editor/common/viewLayout/viewLineRenderer": {
+ "overflow.chars": "{0} Zeichen",
+ "showMore": "Mehr anzeigen ({0})"
},
"vs/editor/contrib/anchorSelect/browser/anchorSelect": {
"anchorSet": "Anker festgelegt bei \"{0}:{1}\"",
@@ -708,7 +1040,9 @@
"miGoToBracket": "Gehe zu &&Klammer",
"overviewRulerBracketMatchForeground": "Übersichtslineal-Markierungsfarbe für zusammengehörige Klammern.",
"smartSelect.jumpBracket": "Gehe zu Klammer",
- "smartSelect.selectToBracket": "Auswählen bis Klammer"
+ "smartSelect.removeBrackets": "Klammern entfernen",
+ "smartSelect.selectToBracket": "Auswählen bis Klammer",
+ "smartSelect.selectToBracketDescription": "Text auswählen und Klammern oder geschweifte Klammern einschließen"
},
"vs/editor/contrib/caretOperations/browser/caretOperations": {
"caret.moveLeft": "Ausgewählten Text nach links verschieben",
@@ -728,8 +1062,10 @@
"miPaste": "&&Einfügen",
"share": "Freigeben"
},
+ "vs/editor/contrib/codeAction/browser/codeAction": {
+ "applyCodeActionFailed": "Beim Anwenden der Code-Aktion ist ein unbekannter Fehler aufgetreten"
+ },
"vs/editor/contrib/codeAction/browser/codeActionCommands": {
- "applyCodeActionFailed": "Beim Anwenden der Code-Aktion ist ein unbekannter Fehler aufgetreten",
"args.schema.apply": "Legt fest, wann die zurückgegebenen Aktionen angewendet werden",
"args.schema.apply.first": "Die erste zurückgegebene Codeaktion immer anwenden",
"args.schema.apply.ifSingle": "Die erste zurückgegebene Codeaktion anwenden, wenn nur eine vorhanden ist",
@@ -754,30 +1090,65 @@
"editor.action.source.noneMessage.preferred.kind": "Keine bevorzugten Quellaktionen für \"{0}\" verfügbar",
"fixAll.label": "Alle korrigieren",
"fixAll.noneMessage": "Aktion \"Alle korrigieren\" nicht verfügbar",
+ "organizeImports.description": "Organisieren Sie Importe in der aktuellen Datei. Wird von einigen Tools auch als „Imports optimieren“ bezeichnet.",
"organizeImports.label": "Importe organisieren",
"quickfix.trigger.label": "Schnelle Problembehebung ...",
"refactor.label": "Refactoring durchführen...",
- "refactor.preview.label": "Mit Vorschau umgestalten...",
"source.label": "Quellaktion..."
},
- "vs/editor/contrib/codeAction/browser/codeActionMenu": {
- "CodeActionMenuVisible": "Gibt an, ob das Widget für die Codeaktionsliste sichtbar ist.",
- "label": "{0} to Refactor, {1} to Preview"
+ "vs/editor/contrib/codeAction/browser/codeActionContributions": {
+ "includeNearbyQuickFixes": "Hiermit aktivieren/deaktivieren Sie die Anzeige der nächstgelegenen schnellen Problembehebung innerhalb einer Zeile, wenn derzeit keine Diagnose durchgeführt wird.",
+ "showCodeActionHeaders": "Aktivieren/Deaktivieren Sie die Anzeige von Gruppenheadern im Codeaktionsmenü.",
+ "triggerOnFocusChange": "Aktivieren Sie das Auslösen von {0}, wenn {1} auf {2} festgelegt ist. Codeaktionen müssen auf {3} festgelegt werden, um für Fenster- und Fokusänderungen ausgelöst zu werden."
+ },
+ "vs/editor/contrib/codeAction/browser/codeActionController": {
+ "editingNewSelection": "Kontext: {0} in Zeile {1} und Spalte {2}.",
+ "hideMoreActions": "Deaktivierte Elemente ausblenden",
+ "showMoreActions": "Deaktivierte Elemente anzeigen"
},
- "vs/editor/contrib/codeAction/browser/codeActionWidgetContribution": {
- "codeActionWidget": "Durch Aktivieren dieser Option wird die Darstellung des Codeaktionsmenüs angepasst."
+ "vs/editor/contrib/codeAction/browser/codeActionMenu": {
+ "codeAction.widget.id.convert": "Erneut generieren",
+ "codeAction.widget.id.extract": "Extrahieren",
+ "codeAction.widget.id.inline": "Inline",
+ "codeAction.widget.id.more": "Weitere Aktionen...",
+ "codeAction.widget.id.move": "Verschieben",
+ "codeAction.widget.id.quickfix": "Schnelle Problembehebung",
+ "codeAction.widget.id.source": "Quellaktion",
+ "codeAction.widget.id.surround": "Umgeben mit"
},
"vs/editor/contrib/codeAction/browser/lightBulbWidget": {
"codeAction": "Codeaktionen anzeigen",
+ "codeActionAutoRun": "Ausführen: {0}",
"codeActionWithKb": "Codeaktionen anzeigen ({0})",
+ "gutterLightbulbAIFixAutoFixWidget": "Symbol, das das Menü „Codeaktionen“ aus dem Bundsteg erzeugt, wenn kein Platz im Editor vorhanden ist und ein KI-Fix und eine schnelle Korrektur verfügbar sind.",
+ "gutterLightbulbAIFixWidget": "Symbol, das das Menü „Codeaktionen“ aus dem Bundsteg erzeugt, wenn kein Platz im Editor vorhanden ist und ein KI-Fix verfügbar ist.",
+ "gutterLightbulbAutoFixWidget": "Symbol, das das Menü „Codeaktionen“ aus dem Bundsteg erzeugt, wenn kein Platz im Editor vorhanden ist und eine schnelle Korrektur verfügbar ist.",
+ "gutterLightbulbSparkleFilledWidget": "Symbol, das das Menü „Codeaktionen“ aus dem Bundsteg erzeugt, wenn kein Platz im Editor vorhanden ist und ein KI-Fix und eine schnelle Korrektur verfügbar sind.",
+ "gutterLightbulbWidget": "Symbol, das das Menü „Codeaktionen“ aus dem Bundsteg erzeugt, wenn kein Platz im Editor vorhanden ist.",
"preferredcodeActionWithKb": "Zeigt Codeaktionen an. Bevorzugte Schnellkorrektur verfügbar ({0})"
},
"vs/editor/contrib/codelens/browser/codelensController": {
+ "placeHolder": "Befehl auswählen",
"showLensOnLine": "CodeLens-Befehle für aktuelle Zeile anzeigen"
},
- "vs/editor/contrib/colorPicker/browser/colorPickerWidget": {
+ "vs/editor/contrib/colorPicker/browser/colorPickerParts/colorPickerCloseButton": {
+ "closeIcon": "Symbol zum Schließen des Farbwählers"
+ },
+ "vs/editor/contrib/colorPicker/browser/colorPickerParts/colorPickerHeader": {
"clickToToggleColorOptions": "Zum Umschalten zwischen Farboptionen (rgb/hsl/hex) klicken"
},
+ "vs/editor/contrib/colorPicker/browser/hoverColorPicker/hoverColorPickerParticipant": {
+ "hoverAccessibilityColorParticipant": "Hier ist ein Farbwähler vorhanden."
+ },
+ "vs/editor/contrib/colorPicker/browser/standaloneColorPicker/standaloneColorPickerActions": {
+ "hideColorPicker": "Farbwähler ausblenden",
+ "hideColorPickerDescription": "Eigenständige Farbauswahl ausblenden.",
+ "insertColorWithStandaloneColorPicker": "Farbe mit eigenständigem Farbwähler einfügen",
+ "insertColorWithStandaloneColorPickerDescription": "Fügen Sie hexadezimale/rgb-/hsl-Farben mit der fokussierten eigenständigen Farbauswahl ein.",
+ "mishowOrFocusStandaloneColorPicker": "&&Eigenständige Farbwähler anzeigen oder fokussieren",
+ "showOrFocusStandaloneColorPicker": "Eigenständige Farbwähler anzeigen oder konzentrieren",
+ "showOrFocusStandaloneColorPickerDescription": "Eigenständige Farbauswahl, die den Standardfarbanbieter verwendet, anzeigen oder fokussieren. Zeigt Hexadezimal-/RGB-/HSL-Farben an."
+ },
"vs/editor/contrib/comment/browser/comment": {
"comment.block": "Blockkommentar umschalten",
"comment.line": "Zeilenkommentar umschalten",
@@ -798,24 +1169,54 @@
"context.minimap.slider.always": "Immer",
"context.minimap.slider.mouseover": "Maus über"
},
- "vs/editor/contrib/copyPaste/browser/copyPasteContribution": {
- "pasteActions": "Aktivieren/Deaktivieren der Ausführung von Bearbeitungen von Erweiterungen beim Einfügen."
- },
"vs/editor/contrib/cursorUndo/browser/cursorUndo": {
"cursor.redo": "Wiederholen mit Cursor",
"cursor.undo": "Mit Cursor rückgängig machen"
},
- "vs/editor/contrib/dropIntoEditor/browser/dropIntoEditorContribution": {
- "dropProgressTitle": "Drophandler werden ausgeführt..."
+ "vs/editor/contrib/dropOrPasteInto/browser/copyPasteContribution": {
+ "pasteAs": "Einfügen als...",
+ "pasteAs.kind": "Die Art der Einfügebearbeitung, für die Sie das Einfügen versuchen.\r\nWenn mehrere Bearbeitungen für diese Art vorhanden sind, zeigt der Editor eine Auswahl an. Wenn keine Bearbeitungen dieser Art vorhanden sind, zeigt der Editor eine Fehlermeldung an.",
+ "pasteAs.preferences": "Liste der bevorzugten Einfügebearbeitungsarten, die angewendet werden sollen.\r\nDie erste Bearbeitung, die den Einstellungen entspricht, wird angewendet.",
+ "pasteAsText": "Als Text einfügen"
+ },
+ "vs/editor/contrib/dropOrPasteInto/browser/copyPasteController": {
+ "noPreferences": "Leer",
+ "pasteAsDefault": "Konfigurieren der Standardaktion zum Einfügen",
+ "pasteAsError": "Es wurden keine Einfügebearbeitungen für „{0}“ gefunden.",
+ "pasteAsPickerPlaceholder": "Einfügeaktion auswählen",
+ "pasteAsProgress": "Einfügehandler werden ausgeführt",
+ "pasteIntoEditorProgress": "Einfügehandler werden ausgeführt. Klicken Sie hier, um den Vorgang abzubrechen und ein einfaches Einfügen auszuführen.",
+ "pasteWidgetVisible": "Gibt an, ob das Einfügewidget angezeigt wird.",
+ "postPasteWidgetTitle": "Einfügeoptionen anzeigen...",
+ "resolveProcess": "Die Einfügebearbeitung für '{0}' wird aufgelöst. Klicken Sie hier, um den Vorgang abzubrechen."
+ },
+ "vs/editor/contrib/dropOrPasteInto/browser/defaultProviders": {
+ "defaultDropProvider.uriList.path": "Pfad einfügen",
+ "defaultDropProvider.uriList.paths": "Pfade einfügen",
+ "defaultDropProvider.uriList.relativePath": "Relativen Pfad einfügen",
+ "defaultDropProvider.uriList.relativePaths": "Relative Pfade einfügen",
+ "defaultDropProvider.uriList.uri": "URI einfügen",
+ "defaultDropProvider.uriList.uris": "URI einfügen",
+ "pasteHtmlLabel": "HTML einfügen",
+ "text.label": "Nur-Text einfügen"
+ },
+ "vs/editor/contrib/dropOrPasteInto/browser/dropIntoEditorController": {
+ "dropIntoEditorProgress": "Drophandler werden ausgeführt. Klicken Sie hier, um den Vorgang abzubrechen.",
+ "dropWidgetVisible": "Gibt an, ob das Ablagewidget angezeigt wird.",
+ "postDropWidgetTitle": "Ablageoptionen anzeigen..."
+ },
+ "vs/editor/contrib/dropOrPasteInto/browser/postEditWidget": {
+ "applyError": "Fehler beim Anwenden der Bearbeitung \"{0}\":\r\n{1}",
+ "resolveError": "Fehler beim Auflösen der Bearbeitung \"{0}\":\r\n{1}"
},
"vs/editor/contrib/editorState/browser/keybindingCancellation": {
"cancellableOperation": "Gibt an, ob der Editor einen abbrechbaren Vorgang ausführt, z. B. \"Verweisvorschau\"."
},
"vs/editor/contrib/find/browser/findController": {
- "actions.find.isRegexOverride": "Überschreibt das Flag „Use Regular Expression“.\r\nDas Flag wird für die Zukunft nicht gespeichert.\r\n0: Nichts unternehmen\r\n1: TRUE\r\n2: FALSE",
- "actions.find.matchCaseOverride": "Überschreibt das Flag „Math Case“.\r\nDas Flag wird für die Zukunft nicht gespeichert.\r\n0: Nichts unternehmen\r\n1: TRUE\r\n2: FALSE",
- "actions.find.preserveCaseOverride": "Überschreibt das Flag „Preserve Case“.\r\nDas Flag wird für die Zukunft nicht gespeichert.\r\n0: Nichts unternehmen\r\n1: TRUE\r\n2: FALSE",
- "actions.find.wholeWordOverride": "Überschreibt das Flag „Match Whole Word“.\r\nDas Flag wird für die Zukunft nicht gespeichert.\r\n0: Nichts unternehmen\r\n1: TRUE\r\n2: FALSE",
+ "findMatchAction.goToMatch": "Zu Übereinstimmung wechseln ...",
+ "findMatchAction.inputPlaceHolder": "Geben Sie eine Zahl ein, um zu einer bestimmten Übereinstimmung zu wechseln (zwischen 1 und {0}).",
+ "findMatchAction.inputValidationMessage": "Zahl zwischen 1 und {0} eingeben",
+ "findMatchAction.noResults": "Keine Übereinstimmungen. Versuchen Sie, nach etwas anderem zu suchen.",
"findNextMatchAction": "Weitersuchen",
"findPreviousMatchAction": "Vorheriges Element suchen",
"miFind": "&&Suchen",
@@ -825,14 +1226,14 @@
"startFindAction": "Suchen",
"startFindWithArgsAction": "Mit Argumenten suchen",
"startFindWithSelectionAction": "Mit Auswahl suchen",
- "startReplace": "Ersetzen"
+ "startReplace": "Ersetzen",
+ "too.large.for.replaceall": "Die Datei ist zu groß, um einen Vorgang zum Ersetzen aller Elemente auszuführen."
},
"vs/editor/contrib/find/browser/findWidget": {
"ariaSearchNoResult": "{0} für \"{1}\" gefunden",
"ariaSearchNoResultEmpty": "{0} gefunden",
"ariaSearchNoResultWithLineNum": "{0} für \"{1}\" gefunden, bei {2}",
"ariaSearchNoResultWithLineNumNoCurrentMatch": "{0} für \"{1}\" gefunden",
- "ctrlEnter.keybindingChanged": "STRG+EINGABE fügt jetzt einen Zeilenumbruch ein, statt alles zu ersetzen. Sie können die Tastenzuordnung für \"editor.action.replaceAll\" ändern, um dieses Verhalten außer Kraft zu setzen.",
"findCollapsedIcon": "Symbol für die Anzeige, dass das Editor-Such-Widget zugeklappt wurde.",
"findExpandedIcon": "Symbol für die Anzeige, dass das Editor-Such-Widget aufgeklappt wurde.",
"findNextMatchIcon": "Symbol für \"Nächstes Element suchen\" im Editor-Such-Widget.",
@@ -842,6 +1243,7 @@
"findSelectionIcon": "Symbol für \"In Auswahl suchen\" im Editor-Such-Widget.",
"label.closeButton": "Schließen",
"label.find": "Suchen",
+ "label.findDialog": "Suchen/Ersetzen",
"label.matchesLocation": "{0} von {1}",
"label.nextMatchButton": "Nächste Übereinstimmung",
"label.noResults": "Keine Ergebnisse",
@@ -856,44 +1258,42 @@
"title.matchesCountLimit": "Nur die ersten {0} Ergebnisse wurden hervorgehoben, aber alle Suchoperationen werden auf dem gesamten Text durchgeführt."
},
"vs/editor/contrib/folding/browser/folding": {
- "createManualFoldRange.label": "Create Manual Folding Range from Selection",
- "editorGutter.foldingControlForeground": "Farbe des Faltsteuerelements im Editor-Bundsteg.",
+ "createManualFoldRange.label": "Faltungsbereich aus Auswahl erstellen",
"foldAction.label": "Falten",
"foldAllAction.label": "Alle falten",
"foldAllBlockComments.label": "Alle Blockkommentare falten",
- "foldAllExcept.label": "Alle Regionen mit Ausnahme der ausgewählten zuklappen",
+ "foldAllExcept.label": "Alle bis auf ausgewählte falten",
"foldAllMarkerRegions.label": "Alle Regionen falten",
- "foldBackgroundBackground": "Hintergrundfarbe hinter gefalteten Bereichen. Die Farbe darf nicht deckend sein, sodass zugrunde liegende Dekorationen nicht ausgeblendet werden.",
"foldLevelAction.label": "Faltebene {0}",
"foldRecursivelyAction.label": "Rekursiv falten",
"gotoNextFold.label": "Zum nächsten Faltbereich wechseln",
"gotoParentFold.label": "Zur übergeordneten Reduzierung wechseln",
"gotoPreviousFold.label": "Zum vorherigen Faltbereich wechseln",
- "maximum fold ranges": "Die Anzahl der faltbaren Regionen ist auf maximal {0} beschränkt. Erhöhen Sie die Konfigurationsoption [“Maximale faltbare Regionen“](command:workbench.action.openSettings?[“editor.foldingMaximumRegions“]) um weitere zu ermöglichen.",
- "removeManualFoldingRanges.label": "Remove Manual Folding Ranges",
+ "removeManualFoldingRanges.label": "Manuelle Faltbereiche entfernen",
"toggleFoldAction.label": "Einklappung umschalten",
+ "toggleFoldRecursivelyAction.label": "Rekursiv falten umschalten",
+ "toggleImportFold.label": "Importfaltung umschalten",
"unFoldRecursivelyAction.label": "Faltung rekursiv aufheben",
"unfoldAction.label": "Auffalten",
"unfoldAllAction.label": "Alle auffalten",
- "unfoldAllExcept.label": "Alle Regionen mit Ausnahme der ausgewählten auffalten",
+ "unfoldAllExcept.label": "Alle bis auf ausgewählte auffalten",
"unfoldAllMarkerRegions.label": "Alle Regionen auffalten"
},
"vs/editor/contrib/folding/browser/foldingDecorations": {
+ "collapsedTextColor": "Farbe des reduzierten Texts nach der ersten Zeile eines gefalteten Bereichs.",
+ "editorGutter.foldingControlForeground": "Farbe des Faltsteuerelements im Editor-Bundsteg.",
+ "foldBackgroundBackground": "Hintergrundfarbe hinter gefalteten Bereichen. Die Farbe darf nicht deckend sein, sodass zugrunde liegende Dekorationen nicht ausgeblendet werden.",
"foldingCollapsedIcon": "Symbol für zugeklappte Bereiche im Editor-Glyphenrand.",
"foldingExpandedIcon": "Symbol für aufgeklappte Bereiche im Editor-Glyphenrand.",
- "foldingManualCollapedIcon": "Icon for manually collapsed ranges in the editor glyph margin.",
- "foldingManualExpandedIcon": "Icon for manually expanded ranges in the editor glyph margin."
+ "foldingManualCollapedIcon": "Symbol für manuell reduzierte Bereiche im Glyphenrand des Editors.",
+ "foldingManualExpandedIcon": "Symbol für manuell erweiterte Bereiche im Glyphenrand des Editors.",
+ "linesCollapsed": "Klicken Sie hier, um den Bereich zu erweitern.",
+ "linesExpanded": "Klicken Sie hier, um den Bereich zu reduzieren."
},
"vs/editor/contrib/fontZoom/browser/fontZoom": {
- "EditorFontZoomIn.label": "Editorschriftart vergrößern",
- "EditorFontZoomOut.label": "Editorschriftart verkleinern",
- "EditorFontZoomReset.label": "Editor Schriftart Vergrößerung zurücksetzen"
- },
- "vs/editor/contrib/format/browser/format": {
- "hint11": "1 Formatierung in Zeile {0} vorgenommen",
- "hint1n": "1 Formatierung zwischen Zeilen {0} und {1} vorgenommen",
- "hintn1": "{0} Formatierungen in Zeile {1} vorgenommen",
- "hintnn": "{0} Formatierungen zwischen Zeilen {1} und {2} vorgenommen"
+ "EditorFontZoomIn.label": "Schriftgrad des Editors erhöhen",
+ "EditorFontZoomOut.label": "Schriftgrad des Editors verringern",
+ "EditorFontZoomReset.label": "Editor-Schriftgrad zurücksetzen"
},
"vs/editor/contrib/format/browser/formatActions": {
"formatDocument.label": "Dokument formatieren",
@@ -983,8 +1383,8 @@
"vs/editor/contrib/gotoSymbol/browser/referencesModel": {
"aria.fileReferences.1": "1 Symbol in {0}, vollständiger Pfad {1}",
"aria.fileReferences.N": "{0} Symbole in {1}, vollständiger Pfad {2}",
- "aria.oneReference": "Symbol in {0} in Zeile {1}, Spalte {2}",
- "aria.oneReference.preview": "Symbol in \"{0}\" in Zeile {1}, Spalte {2}, {3}",
+ "aria.oneReference": "in {0} in Zeile {1} in Spalte {2}",
+ "aria.oneReference.preview": "{0} in {1} in Zeile {2} in Spalte {3}",
"aria.result.0": "Es wurden keine Ergebnisse gefunden.",
"aria.result.1": "1 Symbol in {0} gefunden",
"aria.result.n1": "{0} Symbole in {1} gefunden",
@@ -995,12 +1395,64 @@
"location": "Symbol {0} von {1}",
"location.kb": "Symbol {0} von {1}, {2} für nächstes"
},
- "vs/editor/contrib/hover/browser/hover": {
+ "vs/editor/contrib/gpu/browser/gpuActions": {
+ "drawGlyph.label": "Glyphe zeichnen",
+ "gpuDebug.label": "Entwickler: Debug-Editor GPU-Renderer",
+ "logTextureAtlasStats.label": "Statistik zum Protokolltexturatlas",
+ "saveTextureAtlas.label": "Texturatlas speichern"
+ },
+ "vs/editor/contrib/hover/browser/contentHoverRendered": {
+ "hoverAccessibilityStatusBar": "Dies ist eine Hoverstatusleiste.",
+ "hoverAccessibilityStatusBarActionWithKeybinding": "Es verfügt über eine Aktion mit der Bezeichnung „{0}“ und Tastenzuordnung „{1}“.",
+ "hoverAccessibilityStatusBarActionWithoutKeybinding": "Es verfügt über eine Aktion mit der Bezeichnung „{0}“."
+ },
+ "vs/editor/contrib/hover/browser/hoverAccessibleViews": {
+ "decreaseVerbosity": "– Der Ausführlichkeitsgrad des fokussierten Hoverteils kann mit dem Befehl „Ausführlichkeit verringern“ verringert werden.",
+ "increaseVerbosity": "– Der Ausführlichkeitsgrad des fokussierten Hoverteils kann mit dem Befehl „Ausführlichkeit erhöhen“ erhöht werden."
+ },
+ "vs/editor/contrib/hover/browser/hoverActionIds": {
+ "decreaseHoverVerbosityLevel": "Ausführlichkeitsgrad beim Daraufzeigen verringern",
+ "increaseHoverVerbosityLevel": "Ausführlichkeitsgrad beim Daraufzeigen erhöhen"
+ },
+ "vs/editor/contrib/hover/browser/hoverActions": {
+ "goToBottomHover": "Gehe nach unten beim Daraufzeigen",
+ "goToBottomHoverDescription": "Beim Daraufzeigen auf den Editor zum unteren Rand navigieren.",
+ "goToTopHover": "Gehe nach oben beim Daraufzeigen",
+ "goToTopHoverDescription": "Beim Daraufzeigen auf den Editor zum oberen Rand navigieren.",
+ "hideHover": "Beim Daraufzeigen ausblenden",
+ "pageDownHover": "Eine Seite nach unten beim Daraufzeigen",
+ "pageDownHoverDescription": "Eine Seite nach unten beim Daraufzeigen auf den Editor.",
+ "pageUpHover": "Eine Seite nach oben beim Daraufzeigen",
+ "pageUpHoverDescription": "Eine Seite nach oben beim Daraufzeigen auf den Editor.",
+ "scrollDownHover": "Bildlauf nach unten beim Daraufzeigen",
+ "scrollDownHoverDescription": "Beim Daraufzeigen auf den Editor nach unten. scrollen.",
+ "scrollLeftHover": "Bildlauf nach links beim Daraufzeigen",
+ "scrollLeftHoverDescription": "Bildlauf nach links beim Daraufzeigen auf den Editor.",
+ "scrollRightHover": "Bildlauf nach rechts beim Daraufzeigen",
+ "scrollRightHoverDescription": "Bildlauf nach rechts beim Daraufzeigen auf den Editor.",
+ "scrollUpHover": "Bildlauf nach oben beim Daraufzeigen",
+ "scrollUpHoverDescription": "Beim Daraufzeigen auf den Editor nach oben scrollen.",
"showDefinitionPreviewHover": "Definitionsvorschauhover anzeigen",
- "showHover": "Hovern anzeigen"
+ "showDefinitionPreviewHoverDescription": "Definitionsvorschau-Mauszeiger im Editor anzeigen",
+ "showOrFocusHover": "Anzeigen oder Fokus beim Daraufzeigen",
+ "showOrFocusHover.focus.autoFocusImmediately": "Beim Daraufzeigen wird automatisch der Fokus erhalten, wenn er angezeigt wird.",
+ "showOrFocusHover.focus.focusIfVisible": "Beim Daraufzeigen wird nur dann den Fokus erhalten, wenn er bereits sichtbar ist.",
+ "showOrFocusHover.focus.noAutoFocus": "Beim Daraufzeigen wird der Fokus nicht automatisch verwendet.",
+ "showOrFocusHoverDescription": "Editor-Mauszeiger anzeigen oder fokussieren, um Dokumentation, Verweise und anderen Inhalt für ein Symbol an der aktuellen Cursorposition anzuzeigen oder zu fokussieren."
+ },
+ "vs/editor/contrib/hover/browser/hoverCopyButton": {
+ "hover.copied": "In Zwischenablage kopiert",
+ "hover.copy": "Kopieren"
},
"vs/editor/contrib/hover/browser/markdownHoverParticipant": {
+ "decreaseHoverVerbosity": "Symbol zum Verringern der Ausführlichkeit beim Daraufzeigen.",
+ "decreaseVerbosity": "Ausführlichkeit beim Daraufzeigen verringern",
+ "decreaseVerbosityWithKb": "Ausführlichkeit beim Daraufzeigen verringern ({0})",
+ "increaseHoverVerbosity": "Symbol zum Erhöhen der Ausführlichkeit beim Daraufzeigen.",
+ "increaseVerbosity": "Ausführlichkeit beim Daraufzeigen erhöhen",
+ "increaseVerbosityWithKb": "Ausführlichkeit beim Daraufzeigen erhöhen ({0})",
"modesContentHover.loading": "Wird geladen...",
+ "stopped rendering": "Das Rendering langer Zeilen wurde aus Leistungsgründen angehalten. Dies kann über „editor.stopRenderingLineAfter“ konfiguriert werden.",
"too many characters": "Die Tokenisierung wird bei langen Zeilen aus Leistungsgründen übersprungen. Dies kann über „editor.maxTokenizationLineLength“ konfiguriert werden."
},
"vs/editor/contrib/hover/browser/markerHoverParticipant": {
@@ -1009,19 +1461,26 @@
"quick fixes": "Schnelle Problembehebung ...",
"view problem": "Problem anzeigen"
},
- "vs/editor/contrib/inPlaceReplace/browser/inPlaceReplace": {
- "InPlaceReplaceAction.next.label": "Durch nächsten Wert ersetzen",
- "InPlaceReplaceAction.previous.label": "Durch vorherigen Wert ersetzen"
- },
"vs/editor/contrib/indentation/browser/indentation": {
+ "changeTabDisplaySize": "Anzeigegröße der Registerkarte ändern",
+ "changeTabDisplaySizeDescription": "Leerzeichengröße entsprechend der Tabulatorgröße ändern.",
"configuredTabSize": "Konfigurierte Tabulatorgröße",
+ "currentTabSize": "Aktuelle Registerkartengröße",
+ "defaultTabSize": "Standardregisterkartengröße",
"detectIndentation": "Einzug aus Inhalt erkennen",
+ "detectIndentationDescription": "Einzug aus dem Inhalt erkennen.",
"editor.reindentlines": "Neuen Einzug für Zeilen festlegen",
+ "editor.reindentlinesDescription": "Die Zeilen des Editors erneut einrücken.",
"editor.reindentselectedlines": "Gewählte Zeilen zurückziehen",
+ "editor.reindentselectedlinesDescription": "Die ausgewählten Zeilen des Editors erneut einrücken.",
"indentUsingSpaces": "Einzug mithilfe von Leerzeichen",
+ "indentUsingSpacesDescription": "Einzug mit Leerzeichen verwenden.",
"indentUsingTabs": "Einzug mithilfe von Tabstopps",
+ "indentUsingTabsDescription": "Einzug mit Tabulator verwenden.",
"indentationToSpaces": "Einzug in Leerzeichen konvertieren",
+ "indentationToSpacesDescription": "Tabulatoreinzug in Leerzeichen umwandeln.",
"indentationToTabs": "Einzug in Tabstopps konvertieren",
+ "indentationToTabsDescription": "Leerraumeinzug in Tabulator konvertieren.",
"selectTabWidth": "Tabulatorgröße für aktuelle Datei auswählen"
},
"vs/editor/contrib/inlayHints/browser/inlayHintsHover": {
@@ -1034,27 +1493,105 @@
"links.navigate.kb.meta": "STRG + Klicken",
"links.navigate.kb.meta.mac": "BEFEHL + Klicken"
},
- "vs/editor/contrib/inlineCompletions/browser/ghostTextController": {
+ "vs/editor/contrib/inlineCompletions/browser/controller/commands": {
+ "accept": "Akzeptieren",
+ "acceptLine": "Zeile annehmen",
+ "acceptWord": "Wort annehmen",
+ "action.inlineSuggest.accept": "Inline-Vorschlag annehmen",
+ "action.inlineSuggest.acceptNextLine": "Nächste Zeile des Inlinevorschlags akzeptieren",
+ "action.inlineSuggest.acceptNextWord": "Nächstes Wort des Inline-Vorschlags annehmen",
+ "action.inlineSuggest.alwaysShowToolbar": "Symbolleiste immer anzeigen",
+ "action.inlineSuggest.dev.extractRepro": "Entwickler: Inline-Vorschlagsstatus extrahieren",
+ "action.inlineSuggest.hide": "Inlinevorschlag ausblenden",
+ "action.inlineSuggest.jump": "Zur nächsten Inline-Bearbeitung springen",
"action.inlineSuggest.showNext": "Nächsten Inline-Vorschlag anzeigen",
"action.inlineSuggest.showPrevious": "Vorherigen Inline-Vorschlag anzeigen",
+ "action.inlineSuggest.toggleShowCollapsed": "Inlinevorschläge ein-/ausschalten: Reduzierte anzeigen",
"action.inlineSuggest.trigger": "Inline-Vorschlag auslösen",
+ "inlineSuggest.trigger.args": "Optionen zum Auslösen von Inlinevorschlägen.",
+ "inlineSuggest.trigger.description": "Löst einen Inlinevorschlag im Editor aus.",
+ "jump": "Springen",
+ "noInlineSuggestionAvailable": "Es ist kein Inlinevorschlag verfügbar.",
+ "reject": "Reject"
+ },
+ "vs/editor/contrib/inlineCompletions/browser/controller/inlineCompletionContextKeys": {
+ "cursorAtInlineEdit": "Gibt an, ob sich der Cursor an einer Inline-Bearbeitung befindet",
+ "cursorBeforeGhostText": "Gibt an, ob sich der Cursor im inaktiven Text befindet",
+ "cursorInIndentation": "Gibt an, ob sich der Cursor im Einzug befindet",
+ "editor.hasSelection": "Gibt an, ob im Editor eine Auswahl vorhanden ist",
+ "inInlineEditsPreviewEditor": "Gibt an, ob der aktuelle Code-Editor eine Vorschau für Inlinebearbeitungen anzeigt.",
+ "inlineEditVisible": "Gibt an, ob eine Inline-Bearbeitung sichtbar ist.",
"inlineSuggestionHasIndentation": "Gibt an, ob der Inline-Vorschlag mit Leerzeichen beginnt.",
"inlineSuggestionHasIndentationLessThanTabSize": "Ob der Inline-Vorschlag mit Leerzeichen beginnt, das kleiner ist als das, was durch die Tabulatortaste eingefügt werden würde",
- "inlineSuggestionVisible": "Gibt an, ob ein Inline-Vorschlag sichtbar ist."
+ "inlineSuggestionVisible": "Gibt an, ob ein Inline-Vorschlag sichtbar ist.",
+ "suppressSuggestions": "Gibt an, ob Vorschläge für den aktuellen Vorschlag unterdrückt werden sollen",
+ "tabShouldAcceptInlineEdit": "Gibt an, ob die Registerkarte die Inlinebearbeitung akzeptieren soll.",
+ "tabShouldJumpToInlineEdit": "Gibt an, ob die Registerkarte zu einer Inlinebearbeitung springen soll."
+ },
+ "vs/editor/contrib/inlineCompletions/browser/controller/inlineCompletionsController": {
+ "showAccessibleViewHint": "Überprüfen Sie dies in der barrierefreien Ansicht ({0})."
+ },
+ "vs/editor/contrib/inlineCompletions/browser/hintsWidget/hoverParticipant": {
+ "hoverAccessibilityStatusBar": "Hier sind Inlineabschlüsse vorhanden.",
+ "inlineSuggestionFollows": "Vorschlag:"
+ },
+ "vs/editor/contrib/inlineCompletions/browser/hintsWidget/inlineCompletionsHintsWidget": {
+ "content": "{0} ({1})",
+ "next": "Weiter",
+ "parameterHintsNextIcon": "Symbol für die Anzeige des nächsten Parameterhinweises.",
+ "parameterHintsPreviousIcon": "Symbol für die Anzeige des vorherigen Parameterhinweises.",
+ "previous": "Zurück"
+ },
+ "vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/components/gutterIndicatorMenu": {
+ "accept": "Annehmen",
+ "goto": "Gehe zu",
+ "reject": "Ablehnen",
+ "settings": "Einstellungen",
+ "showCollapsed": "Reduzierte anzeigen",
+ "showExpanded": "Erweitert anzeigen",
+ "snooze": "Erneut erinnern"
+ },
+ "vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/components/gutterIndicatorView": {
+ "inlineSuggestion": "Inlinevorschlag"
+ },
+ "vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/theme": {
+ "inlineEdit.gutterIndicator.background": "Hintergrundfarbe für den Inline-Bearbeitungsstegindikator.",
+ "inlineEdit.gutterIndicator.primaryBackground": "Hintergrundfarbe für den primären Inlinebearbeitungsstegindikator.",
+ "inlineEdit.gutterIndicator.primaryBorder": "Rahmenfarbe für den primären Inline-Bearbeitungbundstegssindikator.",
+ "inlineEdit.gutterIndicator.primaryForeground": "Vordergrundfarbe für den primären Inlinebearbeitungsstegindikator.",
+ "inlineEdit.gutterIndicator.secondaryBackground": "Hintergrundfarbe für den indikator für die sekundäre Inlinebearbeitungsstege.",
+ "inlineEdit.gutterIndicator.secondaryBorder": "Rahmenfarbe für den sekundären Inline-Bearbeitungsbundstegsindikator.",
+ "inlineEdit.gutterIndicator.secondaryForeground": "Vordergrundfarbe für den sekundären Inlinebearbeitungsstegindikator.",
+ "inlineEdit.gutterIndicator.successfulBackground": "Hintergrundfarbe für die erfolgreiche Inlinebearbeitung des Gutterindikators.",
+ "inlineEdit.gutterIndicator.successfulBorder": "Rahmenfarbe für den erfolgreichen Inline-Bearbeitungsbundstegsindikator.",
+ "inlineEdit.gutterIndicator.successfulForeground": "Vordergrundfarbe für den erfolgreichen Inlinebearbeitungsstegindikator.",
+ "inlineEdit.modifiedBackground": "Hintergrundfarbe für den geänderten Text in Inlinebearbeitungen.",
+ "inlineEdit.modifiedBorder": "Rahmenfarbe für den geänderten Text in Inlinebearbeitungen.",
+ "inlineEdit.modifiedChangedLineBackground": "Hintergrundfarbe für die geänderten Zeilen im geänderten Text von Inlinebearbeitungen.",
+ "inlineEdit.modifiedChangedTextBackground": "Überlagerungsfarbe für den geänderten Text im geänderten Text von Inlinebearbeitungen.",
+ "inlineEdit.originalBackground": "Hintergrundfarbe für den Originaltext in Inlinebearbeitungen.",
+ "inlineEdit.originalBorder": "Rahmenfarbe für den Originaltext in Inlinebearbeitungen.",
+ "inlineEdit.originalChangedLineBackground": "Hintergrundfarbe für die geänderten Zeilen im Originaltext von Inlinebearbeitungen.",
+ "inlineEdit.originalChangedTextBackground": "Überlagerungsfarbe für den geänderten Text im Originaltext von Inlinebearbeitungen.",
+ "inlineEdit.tabWillAcceptModifiedBorder": "Geänderte Rahmenfarbe für das Inlinebearbeitungswidget, wenn die Registerkarte es akzeptiert.",
+ "inlineEdit.tabWillAcceptOriginalBorder": "Ursprüngliche Rahmenfarbe für das Inlinebearbeitungswidget über dem ursprünglichen Text, wenn die Registerkarte es akzeptiert."
+ },
+ "vs/editor/contrib/inPlaceReplace/browser/inPlaceReplace": {
+ "InPlaceReplaceAction.next.label": "Durch nächsten Wert ersetzen",
+ "InPlaceReplaceAction.previous.label": "Durch vorherigen Wert ersetzen"
},
- "vs/editor/contrib/inlineCompletions/browser/ghostTextHoverParticipant": {
- "acceptInlineSuggestion": "Annehmen",
- "inlineSuggestionFollows": "Vorschlag:",
- "showNextInlineSuggestion": "Weiter",
- "showPreviousInlineSuggestion": "Zurück"
+ "vs/editor/contrib/insertFinalNewLine/browser/insertFinalNewLine": {
+ "insertFinalNewLine": "Abschließende neue Zeile einfügen"
},
"vs/editor/contrib/lineSelection/browser/lineSelection": {
"expandLineSelection": "Zeilenauswahl erweitern"
},
"vs/editor/contrib/linesOperations/browser/linesOperations": {
"duplicateSelection": "Auswahl duplizieren",
- "editor.transformToKebabcase": "Verwandle dich in eine Kebab-Hülle",
+ "editor.transformToCamelcase": "In CamelCase umwandeln",
+ "editor.transformToKebabcase": "In kebab-case umwandeln",
"editor.transformToLowercase": "In Kleinbuchstaben umwandeln",
+ "editor.transformToPascalcase": "In Pascal-Pascal-Schreibweise transformieren",
"editor.transformToSnakecase": "In Snake Case umwandeln",
"editor.transformToTitlecase": "In große Anfangsbuchstaben umwandeln",
"editor.transformToUppercase": "In Großbuchstaben umwandeln",
@@ -1072,6 +1609,7 @@
"lines.moveDown": "Zeile nach unten verschieben",
"lines.moveUp": "Zeile nach oben verschieben",
"lines.outdent": "Zeile ausrücken",
+ "lines.reverseLines": "Zeilen umkehren",
"lines.sortAscending": "Zeilen aufsteigend sortieren",
"lines.sortDescending": "Zeilen absteigend sortieren",
"lines.trimTrailingWhitespace": "Nachgestelltes Leerzeichen kürzen",
@@ -1142,6 +1680,8 @@
"peekViewEditorGutterBackground": "Hintergrundfarbe der Leiste im Peek-Editor.",
"peekViewEditorMatchHighlight": "Farbe für Übereinstimmungsmarkierungen im Peek-Editor.",
"peekViewEditorMatchHighlightBorder": "Rahmen für Übereinstimmungsmarkierungen im Peek-Editor.",
+ "peekViewEditorStickScrollBackground": "Hintergrundfarbe für fixierten Bildlauf im Editor mit Peek-Ansicht.",
+ "peekViewEditorStickyScrollGutterBackground": "Hintergrundfarbe für Bundsteg des fixierten Bildlaufs im Editor mit Peek-Ansicht.",
"peekViewResultsBackground": "Hintergrundfarbe der Ergebnisliste in der Peek-Ansicht.",
"peekViewResultsFileForeground": "Vordergrundfarbe für Dateiknoten in der Ergebnisliste der Peek-Ansicht.",
"peekViewResultsMatchForeground": "Vordergrundfarbe für Zeilenknoten in der Ergebnisliste der Peek-Ansicht.",
@@ -1152,12 +1692,19 @@
"peekViewTitleForeground": "Farbe des Titels in der Peek-Ansicht.",
"peekViewTitleInfoForeground": "Farbe der Titelinformationen in der Peek-Ansicht."
},
+ "vs/editor/contrib/placeholderText/browser/placeholderText.contribution": {
+ "placeholderForeground": "Vordergrundfarbe des Platzhaltertexts im Editor."
+ },
"vs/editor/contrib/quickAccess/browser/gotoLineQuickAccess": {
- "cannotRunGotoLine": "Öffnen Sie zuerst einen Text-Editor, um zu einer Zeile zu wechseln.",
- "gotoLineColumnLabel": "Wechseln Sie zu Zeile {0} und Zeichen {1}.",
- "gotoLineLabel": "Zu Zeile {0} wechseln.",
- "gotoLineLabelEmpty": "Aktuelle Zeile: {0}, Zeichen: {1}. Geben Sie eine Zeilennummer ein, zu der Sie navigieren möchten.",
- "gotoLineLabelEmptyWithLimit": "Aktuelle Zeile: {0}, Zeichen: {1}. Geben Sie eine Zeilennummer zwischen 1 und {2} ein, zu der Sie navigieren möchten."
+ "gotoLine.ariaLabel": "Aktuelle Position: Zeile {0}, Spalte {1}. {2}",
+ "gotoLine.columnPrompt": "Drücken Sie die Eingabetaste, um zur Zeile {0} zu wechseln, oder geben Sie eine Spaltennummer ein (von 1 bis {1}).",
+ "gotoLine.goToPosition": "Drücken Sie die Eingabetaste, um zur Zeile {0} in der Spalte {1} zu wechseln.",
+ "gotoLine.lineColumnPrompt": "Drücken Sie die Eingabetaste, um zu Zeile {0} zu wechseln, oder geben Sie einen Doppelpunkt : ein, um eine Spaltennummer hinzuzufügen.",
+ "gotoLine.linePrompt": "Geben Sie eine Zeilennummer ein, zu der gewechselt werden soll (von 1 bis {0}).",
+ "gotoLine.noEditor": "Öffnen Sie zuerst einen Text-Editor, um zu einer Zeile oder einem Offset zu wechseln.",
+ "gotoLine.offsetPrompt": "Geben Sie eine Zeichenposition ein, zu der gewechselt werden soll (von 1 bis {0}).",
+ "gotoLine.offsetPromptZero": "Geben Sie eine Zeichenposition ein, zu der gewechselt werden soll (von 0 bis {0}).",
+ "gotoLineToggle": "Nullbasierten Offset verwenden"
},
"vs/editor/contrib/quickAccess/browser/gotoSymbolQuickAccess": {
"_constructor": "Konstruktoren ({0})",
@@ -1200,6 +1747,8 @@
"vs/editor/contrib/rename/browser/rename": {
"aria": "\"{0}\" erfolgreich in \"{1}\" umbenannt. Zusammenfassung: {2}",
"enablePreview": "Möglichkeit aktivieren/deaktivieren, Änderungen vor dem Umbenennen als Vorschau anzeigen zu lassen",
+ "focusNextRenameSuggestion": "Nächsten Umbenennungsvorschlag fokussieren",
+ "focusPreviousRenameSuggestion": "Vorherigen Umbenennungsvorschlag fokussieren",
"label": "'{0}' wird in '{1}' umbenannt",
"no result": "Kein Ergebnis.",
"quotableLabel": "{0} wird in {1} umbenannt.",
@@ -1208,10 +1757,14 @@
"rename.label": "Symbol umbenennen",
"resolveRenameLocationFailed": "Ein unbekannter Fehler ist beim Auflösen der Umbenennung eines Ortes aufgetreten."
},
- "vs/editor/contrib/rename/browser/renameInputField": {
+ "vs/editor/contrib/rename/browser/renameWidget": {
+ "cancelRenameSuggestionsButton": "Abbrechen",
+ "generateRenameSuggestionsButton": "Vorschläge für neuen Namen generieren",
"label": "{0} zur Umbenennung, {1} zur Vorschau",
"renameAriaLabel": "Benennen Sie die Eingabe um. Geben Sie einen neuen Namen ein, und drücken Sie die EINGABETASTE, um den Commit auszuführen.",
- "renameInputVisible": "Gibt an, ob das Widget zum Umbenennen der Eingabe sichtbar ist."
+ "renameInputFocused": "Gibt an, ob das Widget zum Umbenennen der Eingabe fokussiert ist.",
+ "renameInputVisible": "Gibt an, ob das Widget zum Umbenennen der Eingabe sichtbar ist.",
+ "renameSuggestionsReceivedAria": "{0} Vorschläge zum Umbenennen erhalten"
},
"vs/editor/contrib/smartSelect/browser/smartSelect": {
"miSmartSelectGrow": "Auswahl &&erweitern",
@@ -1265,6 +1818,19 @@
"Wednesday": "Mittwoch",
"WednesdayShort": "Mi"
},
+ "vs/editor/contrib/stickyScroll/browser/stickyScrollActions": {
+ "focusStickyScroll": "Fixierten Bildlauf im Editor fokussieren",
+ "goToFocusedStickyScrollLine.title": "Zur fokussierten Zeile für fixierten Bildlauf wechseln",
+ "miStickyScroll": "&&Fixierter Bildlauf",
+ "mifocusEditorStickyScroll": "&&Fixierten Bildlauf im Editor fokussieren",
+ "mitoggleStickyScroll": "Fixierten Bildlauf im Editor &&umschalten",
+ "selectEditor.title": "Editor auswählen",
+ "selectNextStickyScrollLine.title": "Nächste Zeile für fixierten Bildlauf im Editor auswählen",
+ "selectPreviousStickyScrollLine.title": "Vorherige Zeile für fixierten Bildlauf auswählen",
+ "stickyScroll": "Fixierter Bildlauf",
+ "toggleEditorStickyScroll": "Fixierten Bildlauf im Editor umschalten",
+ "toggleEditorStickyScroll.description": "Fixierten Bildlauf im Editor umschalten/aktivieren, der die geschachtelten Bereiche am oberen Rand des Viewports anzeigt"
+ },
"vs/editor/contrib/suggest/browser/suggest": {
"acceptSuggestionOnEnter": "Gibt an, ob Vorschläge durch Drücken der EINGABETASTE eingefügt werden.",
"suggestWidgetDetailsVisible": "Gibt an, ob Vorschlagsdetails sichtbar sind.",
@@ -1279,8 +1845,8 @@
"accept.insert": "Einfügen",
"accept.replace": "Ersetzen",
"aria.alert.snippet": "Das Akzeptieren von \"{0}\" ergab {1} zusätzliche Bearbeitungen.",
- "detail.less": "mehr anzeigen",
- "detail.more": "weniger anzeigen",
+ "detail.less": "Mehr anzeigen",
+ "detail.more": "Weniger anzeigen",
"suggest.reset.label": "Größe des Vorschlagswidgets zurücksetzen",
"suggest.trigger.label": "Vorschlag auslösen"
},
@@ -1295,9 +1861,10 @@
"editorSuggestWidgetSelectedForeground": "Die Vordergrundfarbe des ausgewählten Eintrags im Vorschlagswidget.",
"editorSuggestWidgetSelectedIconForeground": "Die Vordergrundfarbe des Symbols des ausgewählten Eintrags im Vorschlagswidget.",
"editorSuggestWidgetStatusForeground": "Vordergrundfarbe des Status des Vorschlagswidgets.",
- "label.desc": "{0}, {1}",
- "label.detail": "{0}{1}",
- "label.full": "{0}{1}, {2}",
+ "label": "{0}, {1}",
+ "label.desc": "{0}, {1}, {2}",
+ "label.detail": "{0} {1}, {2}",
+ "label.full": "{0} {1}, {2}, {3}",
"suggest": "Vorschlagen",
"suggestWidget.loading": "Wird geladen...",
"suggestWidget.noSuggestions": "Keine Vorschläge."
@@ -1310,8 +1877,8 @@
"readMore": "Weitere Informationen",
"suggestMoreInfoIcon": "Symbol für weitere Informationen im Vorschlags-Widget."
},
- "vs/editor/contrib/suggest/browser/suggestWidgetStatus": {
- "ddd": "{0} ({1})"
+ "vs/editor/contrib/suggest/browser/wordContextKey": {
+ "desc": "Ein Kontextschlüssel, der true ist, wenn er am Ende eines Worts steht. Beachten Sie, dass dies nur definiert ist, wenn Tabvervollständigungen aktiviert sind."
},
"vs/editor/contrib/symbolIcons/browser/symbolIcons": {
"symbolIcon.arrayForeground": "Die Vordergrundfarbe für Arraysymbole. Diese Symbole werden in den Widgets für Gliederung, Breadcrumbs und Vorschläge angezeigt.",
@@ -1349,6 +1916,7 @@
"symbolIcon.variableForeground": "Die Vordergrundfarbe für variable Symbole. Diese Symbole werden in den Widgets für Gliederung, Breadcrumbs und Vorschläge angezeigt."
},
"vs/editor/contrib/toggleTabFocusMode/browser/toggleTabFocusMode": {
+ "tabMovesFocusDescriptions": "Bestimmt, ob die Tabulatortaste den Fokus um die Workbench verschiebt oder das Tabulatorzeichen im aktuellen Editor einfügt. Dies wird auch als Tabstopp, Tabulatornavigation oder Tabulatorfokusmodus bezeichnet.",
"toggle.tabMovesFocus": "TAB-Umschalttaste verschiebt Fokus",
"toggle.tabMovesFocus.off": "Beim Drücken von Tab wird jetzt das Tabulator-Zeichen eingefügt",
"toggle.tabMovesFocus.on": "Beim Drücken auf Tab wird der Fokus jetzt auf das nächste fokussierbare Element verschoben"
@@ -1356,6 +1924,9 @@
"vs/editor/contrib/tokenization/browser/tokenization": {
"forceRetokenize": "Entwickler: Force Retokenize"
},
+ "vs/editor/contrib/unicodeHighlighter/browser/bannerController": {
+ "closeBanner": "Banner schließen"
+ },
"vs/editor/contrib/unicodeHighlighter/browser/unicodeHighlighter": {
"action.unicodeHighlight.disableHighlightingInComments": "Deaktivieren der Hervorhebung von Zeichen in Kommentaren",
"action.unicodeHighlight.disableHighlightingInStrings": "Deaktivieren der Hervorhebung von Zeichen in Zeichenfolgen",
@@ -1366,6 +1937,7 @@
"unicodeHighlight.adjustSettings": "Einstellungen anpassen",
"unicodeHighlight.allowCommonCharactersInLanguage": "Unicodezeichen zulassen, die in der Sprache „{0}“ häufiger vorkommen.",
"unicodeHighlight.characterIsAmbiguous": "Das Zeichen {0} kann mit dem Zeichen {1} verwechselt werden, was im Quellcode häufiger vorkommt.",
+ "unicodeHighlight.characterIsAmbiguousASCII": "Das Zeichen {0} kann mit dem Zeichen {1} verwechselt werden, was im Quellcode häufiger vorkommt.",
"unicodeHighlight.characterIsInvisible": "Das Zeichen {0} ist nicht sichtbar.",
"unicodeHighlight.characterIsNonBasicAscii": "Das Zeichen {0} ist kein einfaches ASCII-Zeichen.",
"unicodeHighlight.configureUnicodeHighlightOptions": "Konfigurieren der Optionen für die Unicode-Hervorhebung",
@@ -1383,42 +1955,147 @@
},
"vs/editor/contrib/unusualLineTerminators/browser/unusualLineTerminators": {
"unusualLineTerminators.detail": "Die Datei \"{0}\" enthält mindestens ein ungewöhnliches Zeilenabschlusszeichen, z. B. Zeilentrennzeichen (LS) oder Absatztrennzeichen (PS).\r\n\r\nEs wird empfohlen, sie aus der Datei zu entfernen. Dies kann über \"editor.unusualLineTerminators\" konfiguriert werden.",
- "unusualLineTerminators.fix": "Entfernen ungewöhnlicher Zeilenabschlusszeichen",
+ "unusualLineTerminators.fix": "&&Ungewöhnliche Zeilenabschlusszeichen entfernen",
"unusualLineTerminators.ignore": "Ignorieren",
"unusualLineTerminators.message": "Ungewöhnliche Zeilentrennzeichen erkannt",
"unusualLineTerminators.title": "Ungewöhnliche Zeilentrennzeichen"
},
- "vs/editor/contrib/wordHighlighter/browser/wordHighlighter": {
+ "vs/editor/contrib/wordHighlighter/browser/highlightDecorations": {
"overviewRulerWordHighlightForeground": "Übersichtslinealmarkerfarbd für das Hervorheben von Symbolen. Die Farbe darf nicht deckend sein, weil sie sonst die zugrunde liegenden Dekorationen verdeckt.",
"overviewRulerWordHighlightStrongForeground": "Übersichtslinealmarkerfarbe für Symbolhervorhebungen bei Schreibzugriff. Die Farbe darf nicht deckend sein, weil sie sonst die zugrunde liegenden Dekorationen verdeckt.",
+ "overviewRulerWordHighlightTextForeground": "Die Markierungsfarbe des Übersichtslineals eines Textteils für ein Symbol. Die Farbe darf nicht deckend sein, um zugrunde liegende Dekorationen nicht auszublenden.",
"wordHighlight": "Hintergrundfarbe eines Symbols beim Lesezugriff, z.B. beim Lesen einer Variablen. Die Farbe darf nicht deckend sein, damit sie nicht die zugrunde liegenden Dekorationen verdeckt.",
- "wordHighlight.next.label": "Gehe zur nächsten Symbolhervorhebungen",
- "wordHighlight.previous.label": "Gehe zur vorherigen Symbolhervorhebungen",
- "wordHighlight.trigger.label": "Symbol-Hervorhebung ein-/ausschalten",
"wordHighlightBorder": "Randfarbe eines Symbols beim Lesezugriff, wie etwa beim Lesen einer Variablen.",
"wordHighlightStrong": "Hintergrundfarbe eines Symbols bei Schreibzugriff, z.B. beim Schreiben in eine Variable. Die Farbe darf nicht deckend sein, weil sie sonst die zugrunde liegenden Dekorationen verdeckt.",
- "wordHighlightStrongBorder": "Randfarbe eines Symbols beim Schreibzugriff, wie etwa beim Schreiben einer Variablen."
+ "wordHighlightStrongBorder": "Randfarbe eines Symbols beim Schreibzugriff, wie etwa beim Schreiben einer Variablen.",
+ "wordHighlightText": "Die Hintergrundfarbe eines Textteils für ein Symbol. Die Farbe darf nicht deckend sein, um zugrunde liegende Dekorationen nicht auszublenden.",
+ "wordHighlightTextBorder": "Die Rahmenfarbe eines Textteils für ein Symbol."
+ },
+ "vs/editor/contrib/wordHighlighter/browser/wordHighlighter": {
+ "wordHighlight.next.label": "Gehe zur nächsten Symbolhervorhebungen",
+ "wordHighlight.previous.label": "Gehe zur vorherigen Symbolhervorhebungen",
+ "wordHighlight.trigger.label": "Symbol-Hervorhebung ein-/ausschalten"
},
"vs/editor/contrib/wordOperations/browser/wordOperations": {
"deleteInsideWord": "Wort löschen"
},
+ "vs/platform/accessibilitySignal/browser/accessibilitySignalService": {
+ "accessibility.signals.chatEditModifiedFile": "Aus Chatbearbeitungen geänderte Datei",
+ "accessibility.signals.chatRequestSent": "Chatanfrage gesendet",
+ "accessibility.signals.chatUserActionRequired": "Chatbenutzeraktion erforderlich",
+ "accessibility.signals.clear": "Löschen",
+ "accessibility.signals.codeActionRequestTriggered": "Codeaktionsanforderung ausgelöst",
+ "accessibility.signals.editsKept": "Bearbeitungen beibehalten",
+ "accessibility.signals.editsUndone": "Bearbeitungen rückgängig gemacht",
+ "accessibility.signals.format": "Formatieren",
+ "accessibility.signals.lineHasBreakpoint": "Haltepunkt",
+ "accessibility.signals.lineHasError": "Fehler in Zeile",
+ "accessibility.signals.lineHasFoldedArea": "Gefaltet",
+ "accessibility.signals.lineHasWarning": "Warnung in Zeile",
+ "accessibility.signals.nextEditSuggestion": "Nächster Bearbeitungsvorschlag",
+ "accessibility.signals.noInlayHints": "Keine Inlay-Hinweise",
+ "accessibility.signals.notebookCellCompleted": "Notebookzelle abgeschlossen",
+ "accessibility.signals.notebookCellFailed": "Notebookzelle fehlgeschlagen",
+ "accessibility.signals.onDebugBreak": "Haltepunkt",
+ "accessibility.signals.positionHasError": "Fehler",
+ "accessibility.signals.positionHasWarning": "Warnung",
+ "accessibility.signals.progress": "Status",
+ "accessibility.signals.save": "Speichern",
+ "accessibility.signals.taskCompleted": "Aufgabe abgeschlossen",
+ "accessibility.signals.taskFailed": "Fehler bei Aufgabe",
+ "accessibility.signals.terminalBell": "Terminalglocke",
+ "accessibility.signals.terminalCommandFailed": "Befehl fehlgeschlagen",
+ "accessibility.signals.terminalCommandSucceeded": "Befehl erfolgreich",
+ "accessibility.signals.terminalQuickFix": "Schnelle Problembehebung",
+ "accessibilitySignals.chatEditModifiedFile": "Geänderte Datei im Chat bearbeiten",
+ "accessibilitySignals.chatRequestSent": "Chatanfrage gesendet",
+ "accessibilitySignals.chatResponseReceived": "Chatantwort empfangen",
+ "accessibilitySignals.chatUserActionRequired": "Chatbenutzeraktion erforderlich",
+ "accessibilitySignals.clear": "Löschen",
+ "accessibilitySignals.codeActionApplied": "Angewendete Codeaktion",
+ "accessibilitySignals.codeActionRequestTriggered": "Codeaktionsanforderung ausgelöst",
+ "accessibilitySignals.diffLineDeleted": "Vergleichslinie gelöscht",
+ "accessibilitySignals.diffLineInserted": "Vergleichslinie eingefügt",
+ "accessibilitySignals.diffLineModified": "Vergleichslinie geändert",
+ "accessibilitySignals.editsKept": "Bearbeitungen beibehalten",
+ "accessibilitySignals.editsUndone": "Bearbeitungen rückgängig machen",
+ "accessibilitySignals.format": "Format",
+ "accessibilitySignals.lineHasBreakpoint.name": "Haltepunkt in der Zeile",
+ "accessibilitySignals.lineHasError.name": "Fehler in der Zeile",
+ "accessibilitySignals.lineHasFoldedArea.name": "Gefalteter Bereich in der Zeile",
+ "accessibilitySignals.lineHasInlineSuggestion.name": "Inlinevorschlag in der Zeile",
+ "accessibilitySignals.lineHasWarning.name": "Warnung in der Zeile",
+ "accessibilitySignals.nextEditSuggestion.name": "Nächster Bearbeitungsvorschlag in der Zeile",
+ "accessibilitySignals.noInlayHints": "Keine Inlay-Hinweise in der Zeile",
+ "accessibilitySignals.notebookCellCompleted": "Notebookzelle abgeschlossen",
+ "accessibilitySignals.notebookCellFailed": "Notebookzelle fehlgeschlagen",
+ "accessibilitySignals.onDebugBreak.name": "Debugger auf Haltepunkt beendet",
+ "accessibilitySignals.positionHasError.name": "Fehler an Position",
+ "accessibilitySignals.positionHasWarning.name": "Warnung an Position",
+ "accessibilitySignals.progress": "Status",
+ "accessibilitySignals.save": "Speichern",
+ "accessibilitySignals.taskCompleted": "Aufgabe abgeschlossen",
+ "accessibilitySignals.taskFailed": "Aufgabe fehlgeschlagen",
+ "accessibilitySignals.terminalBell": "Terminalglocke",
+ "accessibilitySignals.terminalCommandFailed": "Terminalbefehl fehlgeschlagen",
+ "accessibilitySignals.terminalCommandSucceeded": "Terminalbefehl erfolgreich",
+ "accessibilitySignals.terminalQuickFix.name": "Terminale schnelle Problembehebung",
+ "accessibilitySignals.voiceRecordingStarted": "Sprachaufzeichnung gestartet",
+ "accessibilitySignals.voiceRecordingStopped": "Sprachaufzeichnung beendet"
+ },
+ "vs/platform/action/common/actionCommonCategories": {
+ "developer": "Entwickler",
+ "file": "Datei",
+ "help": "Hilfe",
+ "preferences": "Einstellungen",
+ "test": "Test",
+ "view": "Ansehen"
+ },
+ "vs/platform/actions/browser/buttonbar": {
+ "labelWithKeybinding": "{0} ({1})",
+ "moreActions": "Weitere Aktionen"
+ },
+ "vs/platform/actions/browser/dropdownActionViewItemWithKeybinding": {
+ "titleAndKb": "{0} ({1})"
+ },
"vs/platform/actions/browser/menuEntryActionViewItem": {
+ "content": "{0} ({1})",
+ "content2": "{1} bis {0}",
"titleAndKb": "{0} ({1})",
"titleAndKbAndAlt": "{0}\r\n[{1}] {2}"
},
+ "vs/platform/actions/browser/toolbar": {
+ "hide": "Ausblenden",
+ "resetThisMenu": "Menü zurücksetzen"
+ },
"vs/platform/actions/common/menuResetAction": {
- "cat": "Ansehen",
- "title": "Ausgeblendete Menüs zurücksetzen"
+ "title": "Alle Menüs zurücksetzen"
},
"vs/platform/actions/common/menuService": {
+ "configure keybinding": "Tastenzuordnung konfigurieren",
"hide.label": "\"{0}\" ausblenden"
},
+ "vs/platform/actionWidget/browser/actionList": {
+ "customQuickFixWidget": "Aktionswidget",
+ "customQuickFixWidget.labels": "{0} deaktiviert, Grund: {1}",
+ "label": "{0} zum Anwenden",
+ "label-preview": "{0} zum Anwenden, {1} für Vorschau"
+ },
+ "vs/platform/actionWidget/browser/actionWidget": {
+ "acceptSelected.title": "Ausgewählte Aktion akzeptieren",
+ "actionBar.toggledBackground": "Hintergrundfarbe für umgeschaltete Aktionselemente in der Aktionsleiste.",
+ "codeActionMenuVisible": "Gibt an, ob die Aktionswidgetliste sichtbar ist.",
+ "hideCodeActionWidget.title": "Codeaktionswidget ausblenden",
+ "previewSelected.title": "Vorschau für ausgewählte Elemente anzeigen",
+ "selectNextCodeAction.title": "Nächste Aktion auswählen",
+ "selectPrevCodeAction.title": "Vorherige Aktion auswählen"
+ },
"vs/platform/configuration/common/configurationRegistry": {
"config.policy.duplicate": "\"{0}\" kann nicht registriert werden. Die zugeordnete Richtlinie {1} ist bereits bei {2} registriert.",
"config.property.duplicate": "{0}\" kann nicht registriert werden. Diese Eigenschaft ist bereits registriert.",
"config.property.empty": "Eine leere Eigenschaft kann nicht registriert werden.",
"config.property.languageDefault": "\"{0}\" kann nicht registriert werden. Stimmt mit dem Eigenschaftsmuster \"\\\\[.*\\\\]$\" zum Beschreiben sprachspezifischer Editor-Einstellungen überein. Verwenden Sie den Beitrag \"configurationDefaults\".",
- "defaultLanguageConfiguration.description": "Konfigurieren Sie Einstellungen, die für die Sprache {0} überschrieben werden sollen.",
+ "defaultLanguageConfiguration.description": "Konfigurieren Sie Einstellungen, die für {0} überschrieben werden sollen.",
"defaultLanguageConfigurationOverrides.title": "Außerkraftsetzungen für die Standardsprachkonfiguration",
"overrideSettings.defaultDescription": "Zu überschreibende Editor-Einstellungen für eine Sprache konfigurieren.",
"overrideSettings.errorMessage": "Diese Einstellung unterstützt keine sprachspezifische Konfiguration."
@@ -1426,38 +2103,77 @@
"vs/platform/contextkey/browser/contextKeyService": {
"getContextKeyInfo": "Ein Befehl, der Informationen zu Kontextschlüsseln zurückgibt"
},
+ "vs/platform/contextkey/common/contextkey": {
+ "contextkey.parser.error.closingParenthesis": "schließende Klammer „)“",
+ "contextkey.parser.error.emptyString": "Leerer Kontextschlüsselausdruck",
+ "contextkey.parser.error.emptyString.hint": "Haben Sie vergessen, einen Ausdruck zu schreiben? Sie können auch „false“ oder „true“ festlegen, um immer auf „false“ oder „true“ auszuwerten.",
+ "contextkey.parser.error.expectedButGot": "Erwartet: {0}\r\nEmpfangen: „{1}“.",
+ "contextkey.parser.error.noInAfterNot": "„in“ nach „not“.",
+ "contextkey.parser.error.unexpectedEOF": "Unerwartetes Ende des Ausdrucks.",
+ "contextkey.parser.error.unexpectedEOF.hint": "Haben Sie vergessen, einen Kontextschlüssel zu setzen?",
+ "contextkey.parser.error.unexpectedToken": "Unerwartetes Token",
+ "contextkey.parser.error.unexpectedToken.hint": "Haben Sie vergessen, && oder || vor dem Token einzufügen?",
+ "contextkey.scanner.errorForLinter": "Unerwartetes Token.",
+ "contextkey.scanner.errorForLinterWithHint": "Unerwartetes Token. Hinweis: {0}"
+ },
"vs/platform/contextkey/common/contextkeys": {
"inputFocus": "Gibt an, ob sich der Tastaturfokus in einem Eingabefeld befindet.",
"isIOS": "Gibt an, ob iOS als Betriebssystem verwendet wird.",
"isLinux": "Gibt an, ob Linux als Betriebssystem verwendet wird.",
"isMac": "Gibt an, ob macOS als Betriebssystem verwendet wird.",
"isMacNative": "Gibt an, ob macOS auf einer Nicht-Browser-Plattform als Betriebssystem verwendet wird.",
+ "isMobile": "Gibt an, ob es sich bei der Plattform um einen mobilen Webbrowser handelt.",
"isWeb": "Gibt an, ob es sich bei der Plattform um einen Webbrowser handelt.",
"isWindows": "Gibt an, ob Windows als Betriebssystem verwendet wird.",
"productQualityType": "Qualitätstyp des VS Codes"
},
+ "vs/platform/contextkey/common/scanner": {
+ "contextkey.scanner.hint.didYouForgetToEscapeSlash": "Haben Sie vergessen, das Zeichen „/“ (Schrägstrich) zu escapen? Setzen Sie zwei Backslashes davor, um es zu escapen, z. B. „\\\\/“.",
+ "contextkey.scanner.hint.didYouForgetToOpenOrCloseQuote": "Haben Sie vergessen, das Anführungszeichen zu öffnen oder zu schließen?",
+ "contextkey.scanner.hint.didYouMean1": "Meinten Sie {0}?",
+ "contextkey.scanner.hint.didYouMean2": "Meinten Sie {0} oder {1}?",
+ "contextkey.scanner.hint.didYouMean3": "Meinten Sie {0}, {1} oder {2}?"
+ },
+ "vs/platform/dialogs/browser/dialog": {
+ "aboutDetail": "Version: {0}\r\nCommit: {1}\r\nDatum: {2}\r\nBrowser: {3}"
+ },
"vs/platform/dialogs/common/dialogs": {
+ "cancelButton": "Abbrechen",
"moreFile": "...1 weitere Datei wird nicht angezeigt",
- "moreFiles": "...{0} weitere Dateien werden nicht angezeigt"
+ "moreFiles": "...{0} weitere Dateien werden nicht angezeigt",
+ "okButton": "&&OK",
+ "yesButton": "&&Ja"
+ },
+ "vs/platform/dialogs/electron-browser/dialog": {
+ "aboutDetail": "Version: {0}\r\nCommit: {1}\r\nDatum: {2}\r\nElectron: {3}\r\nElectronBuildId: {4}\r\nChromium: {5}\r\nNode.js: {6}\r\nV8: {7}\r\nBetriebssystem: {8}"
},
"vs/platform/dialogs/electron-main/dialogMainService": {
"open": "Öffnen",
"openFile": "Datei öffnen",
"openFolder": "Ordner öffnen",
"openWorkspace": "Ö&&ffnen",
- "openWorkspaceTitle": "Arbeitsbereich aus Datei öffnen"
+ "openWorkspaceTitle": "Arbeitsbereich aus Datei öffnen",
+ "selectFolder": "&&Ordner auswählen"
},
"vs/platform/dnd/browser/dnd": {
"fileTooLarge": "Die Datei ist zu groß, um als unbenannter Editor geöffnet zu werden. Laden Sie sie zuerst in den Datei-Explorer hoch, und versuchen Sie es dann noch mal."
},
"vs/platform/environment/node/argv": {
"add": "Fügt einen oder mehrere Ordner zum letzten aktiven Fenster hinzu.",
+ "addFile": "Fügen Sie der Chatsitzung Dateien als Kontext hinzu.",
+ "addMcp": "Fügt dem Benutzerprofil eine Serverdefinition für das Modellkontextprotokoll hinzu. Akzeptiert JSON-Eingaben im Format '{\"name\":\"server-name\",\"command\":...}'.",
"category": "Bei Verwendung von \"--list-extensions\" werden die installierten Erweiterungen nach der angegebenen Kategorie gefiltert.",
+ "chatMaximize": "Maximieren der Chatsitzungsansicht.",
+ "chatMode": "Der für die Chatsitzung zu verwendende Modus. Verfügbare Optionen: „fragen“, „bearbeiten“, „Agent“ oder der Bezeichner eines benutzerdefinierten Modus. Der Standardwert ist „Agent“.",
+ "cliDataDir": "Verzeichnis, in dem CLI-Metadaten gespeichert werden sollen.",
+ "cliPrompt": "Eingabeaufforderung",
"deprecated.useInstead": "Verwenden Sie stattdessen {0}.",
"diff": "Vergleicht zwei Dateien.",
- "disableExtension": "Deaktiviert eine Erweiterung.",
- "disableExtensions": "Deaktiviert alle installierten Erweiterungen.",
+ "disableChromiumSandbox": "Verwenden Sie diese Option nur, wenn die Anwendung als sudo-Benutzer unter Linux oder als Benutzer mit erhöhten Rechten in einer AppLocker-Umgebung unter Windows gestartet werden muss.",
+ "disableExtension": "Deaktivieren Sie die angegebene Erweiterung. Diese Option wird nicht beibehalten und ist nur wirksam, wenn der Befehl ein neues Fenster öffnet.",
+ "disableExtensions": "Deaktivieren Sie alle installierten Erweiterungen. Diese Option wird nicht beibehalten und ist nur wirksam, wenn der Befehl ein neues Fenster öffnet.",
"disableGPU": "Deaktiviert die GPU-Hardwarebeschleunigung.",
+ "disableLCDText": "Deaktivieren Sie das Rendern von LCD-Schriftarten.",
"experimentalApis": "Aktiviert vorgeschlagene API-Funktionen für Erweiterungen. Kann eine oder mehrere Erweiterungs IDs individuell aktivieren.",
"extensionHomePath": "Legen Sie den Stammpfad für Erweiterungen fest.",
"extensionsManagement": "Erweiterungsverwaltung",
@@ -1469,25 +2185,33 @@
"installExtension": "Installiert oder aktualisiert eine Erweiterung. Das Argument ist entweder eine Erweiterungs-ID oder ein Pfad zu einer VSIX. Der Bezeichner einer Erweiterung ist „${publisher}.${name}“. Verwenden Sie das Argument „--force“, um auf die neueste Version zu aktualisieren. Geben Sie „@${version}“ an, um eine bestimmte Version zu installieren. Beispiel: „vscode.csharp@1.2.3“.",
"listExtensions": "Listet die installierten Erweiterungen auf.",
"locale": "Das zu verwendende Gebietsschema (z.B. en-US oder zh-TW).",
- "log": "Log-Level zu verwenden. Standardwert ist \"Info\". Zulässige Werte sind \"kritisch\", \"Fehler\", \"warnen\", \"Info\", \"debug\", \"verfolgen\", \"aus\".",
- "maxMemory": "Maximale Speichergröße für ein Fenster (in Mbyte).",
+ "locateShellIntegrationPath": "Geben Sie den Pfad zu einem Skript für die Terminal-Shell-Integration aus. Zulässige Werte sind \"bash\", \"pwsh\", \"zsh\" oder \"fish\".",
+ "log": "Zu verwendende Protokollebene. Der Standardwert ist \"info\". Zulässige Werte sind \"critical\", \"error\", \"warn\", \"info\", \"debug\", \"trace\", \"off\". Sie können auch die Protokollebene einer Erweiterung konfigurieren, indem Sie die Erweiterungs-ID und die Protokollebene im folgenden Format übergeben: \"${publisher}.${name}:${logLevel}\". Beispiel: \"vscode.csharp:trace\". Kann einen oder mehrere solche Einträge empfangen.",
+ "mcp": "Modellkontextprotokoll",
"merge": "Führen Sie eine dreistufige Zusammenführung durch, indem Sie Pfade für zwei geänderte Versionen einer Datei, den gemeinsamen Ursprung der beiden geänderten Versionen und die Ausgabedatei zum Speichern der Mergeergebnisse angeben.",
"newWindow": "Hiermit wird das Öffnen eines neuen Fensters erzwungen.",
+ "newWindowForChat": "Erzwingen, dass ein leeres Fenster für die Chatsitzung geöffnet wird.",
"options": "Optionen",
"optionsUpperCase": "Optionen",
"paths": "Pfade",
"prof-startup": "CPU-Profiler beim Start ausführen.",
+ "profileName": "Öffnet den bereitgestellten Ordner oder Arbeitsbereich mit dem angegebenen Profil und ordnet das Profil dem Arbeitsbereich zu. Wenn das Profil nicht vorhanden ist, wird ein neues leeres Profil erstellt.",
+ "prompt": "Die als Chat zu verwendende Eingabeaufforderung.",
+ "remove": "Ordner aus dem letzten aktiven Fenster entfernen.",
"reuseWindow": "Erzwingen Sie das Öffnen einer Datei oder eines Ordners in einem bereits geöffneten Fenster.",
+ "reuseWindowForChat": "Erzwingen, dass das letzte aktive Fenster für die Chatsitzung verwendet wird.",
"showVersions": "Bei Verwendung von \"--list-extensions\" werden die Versionen der installierten Erweiterungen angezeigt.",
"status": "Prozessnutzungs- und Diagnose-Informationen ausgeben.",
- "stdinUnix": "Zum Einlesen von stdin hängen Sie \"-\" an (z.B. \"ps aux | grep code | {0} -\")",
- "stdinWindows": "Zum Einlesen von Ausgaben eines anderen Programms hängen Sie \"-\" an (z.B. \"echo Hello World | {0} -\")",
+ "stdinUsage": "Zum Einlesen von stdin hängen Sie „-“ an (z.B. „{0}“)",
+ "subcommands": "Unterbefehle",
"telemetry": "Zeigt alle Telemetrieereignisse, die von VS Code erfasst werden.",
+ "transient": "Führen Sie ihn mit temporären Daten- und Erweiterungsverzeichnissen aus, als würde es zum ersten Mal gestartet.",
"troubleshooting": "Problembehandlung",
"turn sync": "Synchronisierung aktivieren oder deaktivieren.",
"uninstallExtension": "Deinstalliert eine Erweiterung.",
"unknownCommit": "Unbekannter Commit",
"unknownVersion": "Unbekannte Version",
+ "updateExtensions": "Aktualisieren Sie die installierten Erweiterungen.",
"usage": "Syntax",
"userDataDir": "Gibt das Verzeichnis an, in dem Benutzerdaten gespeichert werden. Kann zum Öffnen mehrerer verschiedener Codeinstanzen verwendet werden.",
"verbose": "Ausführliche Ausgabe (impliziert \"-wait\").",
@@ -1499,33 +2223,62 @@
"emptyValue": "Die Option „{0}“ erfordert einen nicht leeren Wert. Die Option wird ignoriert.",
"gotoValidation": "Argumente im Modus \"--goto\" müssen im Format \"DATEI(:ZEILE(:ZEICHEN))\" vorliegen.",
"multipleValues": "Option '{0}' wird mehrfach definiert. Der verwendete Wert ist '{1}.'",
- "unknownOption": "Warnung: \"{0}\" ist zwar nicht in der Liste der bekannten Optionen enthalten, wird aber trotzdem an Electron/Chromium übergeben."
+ "unknownOption": "Warnung: \"{0}\" ist zwar nicht in der Liste der bekannten Optionen enthalten, wird aber trotzdem an Electron/Chromium übergeben.",
+ "unknownSubCommandOption": "Warnung: \"{0}\" ist nicht in der Liste der bekannten Optionen für den Unterbefehl \"{1}\" enthalten."
},
"vs/platform/extensionManagement/common/abstractExtensionManagementService": {
"MarketPlaceDisabled": "Marketplace ist nicht aktiviert.",
- "Not a Marketplace extension": "Nur Marketplace-Erweiterungen können neu installiert werden",
- "incompatible platform": "Die Erweiterung „{0}“ ist in {1} nicht für {2} verfügbar.",
+ "incompatible platform": "Die Erweiterung „{0}“ ist in {1} nicht für die {2} verfügbar.",
+ "incompatibleAPI": "Die Erweiterung \"{0}\" kann nicht installiert werden. {1}",
+ "learn why": "Erfahren Sie, warum",
"malicious extension": "Die Erweiterung „{0}“ kann nicht installiert werden, da sie als problematisch gemeldet wurde.",
"multipleDependentsError": "Die Erweiterung \"{0}\" kann nicht deinstalliert werden. \"{1}\" und \"{2}\" sowie weitere Erweiterungen hängen von dieser Erweiterung ab.",
"multipleIndirectDependentsError": "Die Erweiterung \"{0}\" kann nicht deinstalliert werden. Beim Deinstallieren wird auch die Erweiterung \"{1}\" entfernt, und \"{2}\", \"{3}\" sowie weitere Erweiterungen hängen von dieser Erweiterung ab.",
+ "not allowed to install": "Diese Erweiterung kann aus folgendem Grund nicht installiert werden: {0}",
"notFoundCompatibleDependency": "Die Erweiterung „{0}“ kann nicht installiert werden, weil sie nicht mit der aktuellen Version von {1} (Version {2}) kompatibel ist.",
- "notFoundCompatiblePrereleaseDependency": "Die Vorabversion der Erweiterung „{0}“ kann nicht installiert werden, weil sie nicht mit der aktuellen Version von {1} (Version {2}) kompatibel ist.",
+ "notFoundDeprecatedReplacementExtension": "Die Erweiterung \"{0}\" kann nicht installiert werden, da sie veraltet ist und die Ersatzerweiterung \"{1}\" nicht gefunden wurde.",
"notFoundReleaseExtension": "Die Releaseversion der Erweiterung \"{0}\" kann nicht installiert werden, da sie keine Releaseversion aufweist.",
"singleDependentError": "Die Erweiterung \"{0}\" kann nicht deinstalliert werden. Die Erweiterung \"{1}\" hängt von dieser Erweiterung ab.",
"singleIndirectDependentError": "Die Erweiterung \"{0}\" kann nicht deinstalliert werden. Beim Deinstallieren wird auch die Erweiterung \"{1}\" entfernt, und \"{2}\" hängt von dieser Erweiterung ab.",
"twoDependentsError": "Die Erweiterung \"{0}\" kann nicht deinstalliert werden. Die Erweiterungen \"{1}\" und \"{2}\" hängen von dieser Erweiterung ab.",
"twoIndirectDependentsError": "Die Erweiterung \"{0}\" kann nicht deinstalliert werden. Beim Deinstallieren wird auch die Erweiterung \"{1}\" entfernt, und \"{2}\" und \"{3}\" hängen von dieser Erweiterung ab."
},
+ "vs/platform/extensionManagement/common/allowedExtensionsService": {
+ "extension prerelease not allowed": "Die Vorabversionen dieser Erweiterung sind nicht in der [Liste zulässiger Dateien]({0}) enthalten.",
+ "prerelease versions from this publisher not allowed": "Die Vorabversionen dieses Herausgebers sind nicht in der [Liste zulässiger Versionen]({1}) enthalten.",
+ "publisher not allowed": "die Erweiterungen von diesem Herausgeber sind nicht in der [zulässigen Liste]({1}) enthalten",
+ "specific extension not allowed": "er ist nicht in der [zulässigen Liste]({0}) enthalten.",
+ "specific version of extension not allowed": "Die Version {0} dieser Erweiterung ist nicht in der [Liste zulässiger Dateien]({1}) enthalten"
+ },
"vs/platform/extensionManagement/common/extensionManagement": {
+ "extension.publisher.allow.description": "Alle Erweiterungen vom Herausgeber zulassen oder verweigern.",
"extensions": "Erweiterungen",
+ "extensions.allow.all.description": "Alle Erweiterungen zulassen oder verweigern.",
+ "extensions.allow.all.disable": "Alle Erweiterungen verweigern.",
+ "extensions.allow.all.enable": "Alle Erweiterungen zulassen.",
+ "extensions.allow.description": "Die Erweiterung zulassen oder verweigern.",
+ "extensions.allow.version.description": "Bestimmte Versionen der Erweiterung zulassen oder nicht zulassen. Um eine plattformspezifische Version anzugeben, verwenden Sie das Format „platform@1.2.3“, z. B. „win32-x64@1.2.3“. Unterstützte Plattformen sind „win32-x64“, „win32-arm64“, „linux-x64“, „linux-arm64“, „linux-armhf“, „alpine-x64“, „alpine-arm64“, „darwin-x64“, „darwin-arm64“.",
+ "extensions.allowed": "Geben Sie eine Liste der zulässigen Erweiterungen an. Dies trägt dazu bei, eine sichere und konsistente Entwicklungsumgebung aufrechtzuerhalten, indem die Verwendung nicht autorisierter Erweiterungen eingeschränkt wird. Weitere Informationen zum Konfigurieren dieser Einstellung finden Sie im Abschnitt [Konfigurieren von erlaubten Erweiterungen](https://code.visualstudio.com/docs/setup/enterprise#_configure-allowed-extensions).",
+ "extensions.allowed.all": "Alle Erweiterungen sind zulässig.",
+ "extensions.allowed.disable.desc": "Die Erweiterung ist nicht zulässig.",
+ "extensions.allowed.disable.stable.desc": "Nur stabile Versionen der Erweiterung zulassen.",
+ "extensions.allowed.enable.desc": "Erweiterung ist zulässig.",
+ "extensions.allowed.none": "Es sind keine Erweiterungen zulässig.",
+ "extensions.allowed.policy": "Geben Sie eine Liste der zulässigen Erweiterungen an. Dies trägt dazu bei, eine sichere und konsistente Entwicklungsumgebung aufrechtzuerhalten, indem die Verwendung nicht autorisierter Erweiterungen eingeschränkt wird. Weitere Informationen: https://code.visualstudio.com/docs/setup/enterprise#_configure-allowed-extensions",
+ "extensions.publisher.allowed.disable.desc": "Alle Erweiterungen vom Herausgeber sind nicht zulässig.",
+ "extensions.publisher.allowed.disable.stable.desc": "Nur stabile Versionen der Erweiterungen vom Herausgeber zulassen.",
+ "extensions.publisher.allowed.enable.desc": "Alle Erweiterungen vom Herausgeber sind zulässig.",
+ "extensionsConfigurationTitle": "Erweiterungen",
"preferences": "Einstellungen"
},
- "vs/platform/extensionManagement/common/extensionManagementCLIService": {
+ "vs/platform/extensionManagement/common/extensionManagementCLI": {
"alreadyInstalled": "Die Erweiterung \"{0}\" ist bereits installiert.",
"alreadyInstalled-checkAndUpdate": "Die Erweiterung \"{0}\" v{1} ist bereits installiert. Verwenden Sie die Option \"--force\" für ein Update auf die neueste Version, oder geben Sie \"@\" an, um eine bestimmte Version zu installieren. Beispiel: \"{2}@1.2.3\".",
"builtin": "Die Erweiterung \"{0}\" ist eine integrierte Erweiterung und kann nicht deinstalliert werden.",
- "cancelInstall": "Installation der Erweiterung \"{0}\" abgebrochen.",
"cancelVsixInstall": "Installation der Erweiterung \"{0}\" abgebrochen.",
+ "error while installing extensions": "Fehler beim Installieren von Erweiterungen: {0}",
+ "errorInstallingExtension": "Fehler beim Installieren der Erweiterung {0}: {1}",
+ "errorUpdatingExtension": "Fehler beim Aktualisieren der Erweiterung {0}: {1}",
"forceDowngrade": "Eine neuere Version der Erweiterung \"{0}\", Version {1}, ist bereits installiert. Verwenden Sie die Option \"--force\", um ein Downgrade auf die ältere Version durchzuführen.",
"forceUninstall": "Die Erweiterung \"{0}\" wurde vom Benutzer als integrierte Erweiterung gekennzeichnet. Verwenden Sie die Option \"--force\", um sie zu deinstallieren.",
"installation failed": "Fehler beim Installieren der Erweiterungen: {0}",
@@ -1542,49 +2295,51 @@
"successInstall": "Die Erweiterung \"{0}\", Version {1}, wurde erfolgreich installiert.",
"successUninstall": "Die Erweiterung \"{0}\" wurde erfolgreich deinstalliert.",
"successUninstallFromLocation": "Die Erweiterung \"{0}\" wurde erfolgreich von \"{1}\" deinstalliert.",
+ "successUpdate": "Die Erweiterung „{0}“ v{1} wurde erfolgreich aktualisiert.",
"successVsixInstall": "Die Erweiterung \"{0}\" wurde erfolgreich installiert.",
"uninstalling": "{0} wird deinstalliert...",
+ "updateExtensionsNewVersionsAvailable": "Erweiterungen werden aktualisiert: {0}",
+ "updateExtensionsNoExtensions": "Keine zu aktualisierende Erweiterung",
+ "updateExtensionsQuery": "Neueste Versionen für {0} Erweiterungen werden abgerufen.",
"updateMessage": "Die Erweiterung \"{0}\" wird auf Version {1} aktualisiert.",
"useId": "Stellen Sie sicher, dass Sie die vollständige Erweiterungs-ID verwenden, einschließlich des Herausgebers. Beispiel: {0}"
},
+ "vs/platform/extensionManagement/common/extensionNls": {
+ "missingNLSKey": "Die Nachricht für den Schlüssel {0} wurde nicht gefunden."
+ },
"vs/platform/extensionManagement/common/extensionsScannerService": {
"fileReadFail": "Die Datei “{0}” kann nicht gelesen werden: {1}.",
"jsonInvalidFormat": "Ungültiges Format {0}: JSON-Objekt erwartet",
"jsonParseFail": "Fehler beim Analysieren von {0}: [{1}, {2}] {3}.",
- "jsonParseInvalidType": "Ungültige Manifestdatei “{0}”: kein JSON-Objekt.",
- "jsonsParseReportErrors": "Fehler beim Analysieren von {0}: {1}.",
- "missingNLSKey": "Die Nachricht für den Schlüssel {0} wurde nicht gefunden."
- },
- "vs/platform/extensionManagement/electron-sandbox/extensionTipsService": {
- "exeRecommended": "Sie haben {0} auf Ihrem System installiert. Möchten Sie die empfohlenen Erweiterungen installieren?"
+ "jsonParseInvalidType": "Ungültige Manifestdatei „{0}“: kein JSON-Objekt.",
+ "jsonsParseReportErrors": "Fehler beim Analysieren von {0}: {1}."
},
"vs/platform/extensionManagement/node/extensionManagementService": {
"cannot read": "Die Erweiterung kann nicht aus {0} gelesen werden.",
"errorDeleting": "Der vorhandene Ordner '{0}' konnte während der Installation der Erweiterung '{1}' nicht gelöscht werden. Löschen Sie den Ordner manuell, und versuchen Sie es noch mal.",
- "exitCode": "Fehler bei der Installation der Erweiterung. Beenden und starten Sie VS Code vor der erneuten Installation neu.",
"incompatible": "Die Erweiterung \"{0}\" kann nicht installiert werden, weil sie nicht mit VS Code {1} kompatibel ist.",
- "notInstalled": "Die Erweiterung \"{0}\" ist nicht installiert.",
- "quitCode": "Fehler bei der Installation der Erweiterung. Beenden und starten Sie VS Code vor der erneuten Installation neu.",
- "removeError": "Fehler beim Entfernen der Erweiterung: {0}. Beenden und starten Sie VS Code neu, bevor Sie erneut versuchen, die Erweiterung zu installieren.",
- "renameError": "Unbekannter Fehler beim Umbenennen von {0} in {1}",
- "restartCode": "Starten Sie VS Code neu, bevor Sie {0} neu installieren."
+ "invalidManifest": "Die Erweiterung \"{0}\" kann aufgrund eines Manifestkonflikts mit Marketplace nicht installiert werden.",
+ "notAllowed": "Diese Erweiterung kann aus folgendem Grund nicht installiert werden: {0}",
+ "restartCode": "Starten Sie VS Code neu, bevor Sie {0} neu installieren.",
+ "signature verification failed": "Fehler \"{0}\" bei der Signaturüberprüfung.",
+ "signature verification not executed": "Die Signaturüberprüfung wurde nicht ausgeführt."
},
"vs/platform/extensionManagement/node/extensionManagementUtil": {
"invalidManifest": "VSIX ungültig: \"package.json\" ist keine JSON-Datei."
},
"vs/platform/extensions/common/extensionValidator": {
+ "apiProposalMismatch1": "Diese Erweiterung verwendet den API-Vorschlag „{0}“, der mit der aktuellen Version von VS Code nicht kompatibel ist.",
+ "apiProposalMismatch2": "Diese Erweiterung verwendet den API-Vorschlag „{0}“ und „{1}“, der mit der aktuellen Version von VS Code nicht kompatibel sind.",
"extensionDescription.activationEvents1": "Die Eigenschaft “{0}” kann ausgelassen werden oder muss vom Typ “string[]” sein.",
- "extensionDescription.activationEvents2": "Die Eigenschaften “{0}” und “{1}” müssen beide angegeben oder beide ausgelassen werden.",
+ "extensionDescription.activationEvents2": "Die Eigenschaft \"{0}\" sollte ausgelassen werden, wenn die Erweiterung keine Eigenschaft \"{1}\" oder \"{2}\" aufweist.",
"extensionDescription.browser1": "Die Eigenschaft “{0}” kann ausgelassen werden oder muss vom Typ “string” sein.",
"extensionDescription.browser2": "“browser” ({0}) wurde im Ordner ({1}) der Erweiterung erwartet. So kann die Erweiterung möglicherweise nicht portiert werden.",
- "extensionDescription.browser3": "Die Eigenschaften “{0}” und “{1}” müssen beide angegeben oder beide ausgelassen werden.",
"extensionDescription.engines": "Die Eigenschaft “{0}” ist erforderlich und muss vom Typ “object” sein.",
"extensionDescription.engines.vscode": "Die Eigenschaft “{0}” ist erforderlich und muss vom Typ “string” sein.",
"extensionDescription.extensionDependencies": "Die Eigenschaft “{0}” kann ausgelassen werden oder muss vom Typ “string[]” sein.",
"extensionDescription.extensionKind": "Die Eigenschaft `{0}` kann nur definiert werden, wenn auch die Eigenschaft `main` definiert ist.",
"extensionDescription.main1": "Die Eigenschaft “{0}” kann ausgelassen werden oder muss vom Typ “string” sein.",
"extensionDescription.main2": "Es wurde erwartet, dass “main” ({0}) im Ordner ({1}) der Erweiterung enthalten ist. Dies führt ggf. dazu, dass die Erweiterung nicht portierbar ist.",
- "extensionDescription.main3": "Die Eigenschaften “{0}” und “{1}” müssen beide angegeben oder beide ausgelassen werden.",
"extensionDescription.name": "Die Eigenschaft “{0}” ist erforderlich und muss vom Typ “string” sein.",
"extensionDescription.publisher": "Die Verlegereigenschaft muss den Typ “string” aufweisen.",
"extensionDescription.version": "Die Eigenschaft “{0}” ist erforderlich und muss vom Typ “string” sein.",
@@ -1606,12 +2361,30 @@
"fileSystemNotAllowedError": "Unzureichende Berechtigungen. Wiederholen Sie den Vorgang, und lassen Sie ihn zu.",
"fileSystemRenameError": "Das Umbenennen wird nur für Dateien unterstützt."
},
+ "vs/platform/files/browser/indexedDBFileSystemProvider": {
+ "dirIsNotEmpty": "Das Verzeichnis ist nicht leer.",
+ "fileExceedsStorageQuota": "Die Datei überschreitet das verfügbare Speicherkontingent.",
+ "fileIsDirectory": "Datei ist Verzeichnis",
+ "fileNotDirectory": "Datei ist kein Verzeichnis",
+ "fileNotExists": "Datei ist nicht vorhanden.",
+ "internal": "Interner Fehler beim IndexedDB-Dateisystemanbieter. ({0})"
+ },
+ "vs/platform/files/common/files": {
+ "sizeB": "{0} B",
+ "sizeGB": "{0} GB",
+ "sizeKB": "{0} KB",
+ "sizeMB": "{0} MB",
+ "sizeTB": "{0} TB",
+ "unknownError": "Unbekannter Fehler"
+ },
"vs/platform/files/common/fileService": {
+ "deleteFailedAtomicUnsupported": "Die Datei \"{0}\" kann nicht atomisch gelöscht werden, da sie vom Anbieter nicht unterstützt wird.",
"deleteFailedNonEmptyFolder": "Der nicht leere Ordner \"{0}\" konnte nicht gelöscht werden.",
"deleteFailedNotFound": "Die nicht vorhandene Datei „{0}“ kann nicht gelöscht werden.",
+ "deleteFailedTrashAndAtomicUnsupported": "Die Datei \"{0}\" kann nicht atomisch gelöscht werden, weil die Verwendung des Papierkorbs aktiviert ist.",
"deleteFailedTrashUnsupported": "Die Datei \"{0}\" kann nicht über den Papierkorb gelöscht werden, da der Anbieter dies nicht unterstützt.",
"err.read": "Die Datei \"{0}\" kann nicht gelesen werden ({1}).",
- "err.readonly": "Die schreibgeschützte Datei '{0}' kann nicht geändert werden.",
+ "err.readonly": "Die schreibgeschützte Datei '{0}' kann nicht geändert werden",
"err.write": "Datei \"{0}\" kann nicht gespeichert werden ({1}).",
"fileExists": "Die bereits vorhandene Datei \"{0}\" kann nicht erstellt werden, wenn das Flag zum Überschreiben nicht festgelegt ist.",
"fileIsDirectoryReadError": "Die Datei \"{0}\" kann nicht gelesen werden, da sie eigentlich ein Verzeichnis ist.",
@@ -1622,53 +2395,50 @@
"fileTooLargeError": "Lesen der Datei \"{0}\" nicht möglich, weil sie zu groß ist, um geöffnet zu werden.",
"invalidPath": "Der Dateisystemanbieter mit relativem Dateipfad \"{0}\" konnte nicht aufgelöst werden.",
"mkdirExistsError": "Der Ordner \"{0}\" kann nicht erstellt werden, da er bereits vorhanden, aber kein Verzeichnis ist.",
- "noProviderFound": "Für die Ressource \"{0}\" wurde kein Dateisystemanbieter gefunden.",
+ "noProviderFound": "ENOPRO: Für die Ressource „{0}“ wurde kein Dateisystemanbieter gefunden",
"unableToMoveCopyError1": "Kopieren nicht möglich, wenn die Quelle \"{0}\" mit dem Ziel \"{1}\" sich nur in der Groß-/Kleinschreibung des Pfads unterscheiden, die Groß-/Kleinschreibung im Dateisystem jedoch ignoriert wird",
"unableToMoveCopyError2": "Das Verschieben/Kopieren ist nicht möglich, wenn die Quelle \"{0}\" das übergeordnete Element des Ziels \"{1}\" ist.",
"unableToMoveCopyError3": "\"{0}\" kann nicht verschoben/kopiert werden, da das Ziel \"{1}\" bereits am Ziel existiert.",
"unableToMoveCopyError4": "\"{0}\" kann nicht in \"{1}\" verschoben/kopiert werden, da eine Datei den Ordner ersetzen würde, in dem sie enthalten ist.",
+ "writeFailedAtomicUnlock": "Die Datei \"{0}\" kann nicht entsperrt werden, weil atomischer Schreibvorgang aktiviert ist.",
+ "writeFailedAtomicUnsupported1": "Die Datei \"{0}\" kann nicht atomisch geschrieben werden, da sie vom Anbieter nicht unterstützt wird.",
+ "writeFailedAtomicUnsupported2": "Die Datei \"{0}\" kann nicht atomisch geschrieben werden, da der Anbieter keine ungepufferten Schreibvorgänge unterstützt.",
"writeFailedUnlockUnsupported": "Die Datei \"{0}\" kann nicht entsperrt werden, weil der Anbieter dies nicht unterstützt."
},
- "vs/platform/files/common/files": {
- "sizeB": "{0} B",
- "sizeGB": "{0} GB",
- "sizeKB": "{0} KB",
- "sizeMB": "{0} MB",
- "sizeTB": "{0} TB",
- "unknownError": "Unbekannter Fehler"
- },
"vs/platform/files/common/io": {
- "fileTooLargeError": "Datei zu groß zum Öffnen",
- "fileTooLargeForHeapError": "Wenn Sie eine Datei dieser Größe öffnen möchten, müssen Sie einen Neustart durchführen und zulassen, dass mehr Arbeitsspeicher verwendet wird."
+ "fileTooLargeError": "Datei zu groß zum Öffnen"
},
"vs/platform/files/electron-main/diskFileSystemProviderServer": {
- "binFailed": "Fehler beim Verschieben von \"{0}\" in den Papierkorb.",
- "trashFailed": "Fehler beim Verschieben von \"{0}\" in den Papierkorb."
+ "binFailed": "Fehler beim Verschieben von „{0}“ in den Papierkorb ({1})",
+ "trashFailed": "Fehler beim Verschieben von „{0}“ in den Papierkorb ({1})"
},
"vs/platform/files/node/diskFileSystemProvider": {
"copyError": "Kopieren von '{0}' in '{1}' nicht möglich ({2}).",
- "fileCopyErrorExists": "Die Datei am Ziel ist bereits vorhanden.",
- "fileCopyErrorPathCase": "\"Datei kann nicht in denselben Pfad mit unterschiedlichem Pfadfall kopiert werden.",
+ "fileCopyErrorPathCase": "Die Datei kann nicht in denselben Pfad mit unterschiedlicher Pfadschreibung kopiert werden.",
"fileExists": "Die Datei ist bereits vorhanden.",
+ "fileMoveCopyErrorExists": "Die Datei am Ziel ist bereits vorhanden und wird daher nicht verschoben/kopiert, es sei denn, das Überschreiben wurde angegeben.",
+ "fileMoveCopyErrorNotFound": "Die zu verschiebende/zu kopierende Datei ist nicht vorhanden.",
"fileNotExists": "Datei ist nicht vorhanden.",
"moveError": "Verschieben von '{0}' in '{1}' nicht möglich ({2})."
},
"vs/platform/history/browser/contextScopedHistoryWidget": {
"suggestWidgetVisible": "Gibt an, ob Vorschläge sichtbar sind."
},
- "vs/platform/issue/electron-main/issueMainService": {
- "cancel": "&&Abbrechen",
- "confirmCloseIssueReporter": "Ihre Eingaben werden nicht gespeichert. Möchten Sie dieses Fenster schließen?",
- "issueReporter": "Problembericht",
- "issueReporterWriteToClipboard": "Es sind zu viele Daten vorhanden, um sie direkt an GitHub zu senden. Die Daten werden in die Zwischenablage kopiert. Fügen Sie sie bitte in die geöffnete GitHub-Seite zum Issue ein.",
- "local": "LOCAL",
- "ok": "&&OK",
- "processExplorer": "Prozess-Explorer",
- "yes": "&&Ja"
+ "vs/platform/hover/browser/hoverWidget": {
+ "hoverhint": "Halten Sie die {0}-Taste gedrückt, um mit der Maus darauf zu zeigen."
+ },
+ "vs/platform/hover/browser/updatableHoverWidget": {
+ "iconLabel.loading": "Wird geladen..."
},
"vs/platform/keybinding/common/abstractKeybindingService": {
"first.chord": "({0}) wurde gedrückt. Es wird auf die zweite Taste in der Kombination gewartet...",
- "missing.chord": "Die Tastenkombination ({0}, {1}) ist kein Befehl."
+ "missing.chord": "Die Tastenkombination ({0}, {1}) ist kein Befehl.",
+ "next.chord": "({0}) wurde gedrückt. Es wird auf die zweite Taste in der Kombination gewartet..."
+ },
+ "vs/platform/keyboardLayout/common/keyboardConfig": {
+ "dispatch": "Steuert die Abgangslogik, sodass bei einem Tastendruck entweder \"code\" (empfohlen) oder \"keyCode\" verwendet wird.",
+ "keyboardConfigurationTitle": "Tastatur",
+ "mapAltGrToCtrlAlt": "Steuert, ob der „AltGraph+“-Modifizierer als „STRG+ALT+“ behandelt werden soll."
},
"vs/platform/languagePacks/common/languagePacks": {
"currentDisplayLanguage": " (Aktuell)"
@@ -1681,6 +2451,9 @@
"vs/platform/list/browser/listService": {
"Fast Scroll Sensitivity": "Multiplikator für Scrollgeschwindigkeit bei Drücken von ALT.",
"Mouse Wheel Scroll Sensitivity": "Ein Multiplikator, der für die Mausrad-Bildlaufereignisse \"deltaX\" und \"deltaY\" verwendet werden soll.",
+ "defaultFindMatchTypeSettingKey": "Steuert den Typ der Übereinstimmung, der beim Durchsuchen von Listen und Strukturen in der Workbench verwendet wird.",
+ "defaultFindMatchTypeSettingKey.contiguous": "Verwenden Sie bei der Suche eine zusammenhängende Übereinstimmung.",
+ "defaultFindMatchTypeSettingKey.fuzzy": "Verwenden Sie bei der Suche eine Fuzzyübereinstimmung.",
"defaultFindModeSettingKey": "Steuert den Standardsuchmodus für Listen und Strukturen in der Workbench.",
"defaultFindModeSettingKey.filter": "Filterelemente bei der Suche.",
"defaultFindModeSettingKey.highlight": "Elemente beim Suchen hervorheben. Die Navigation nach oben und unten durchläuft dann nur die markierten Elemente.",
@@ -1690,23 +2463,53 @@
"keyboardNavigationSettingKey.filter": "Durch das Filtern der Tastaturnavigation werden alle Elemente herausgefiltert und ausgeblendet, die nicht mit der Tastatureingabe übereinstimmen.",
"keyboardNavigationSettingKey.highlight": "Hervorheben von Tastaturnavigationshervorgebungselemente, die mit der Tastatureingabe übereinstimmen. Beim nach oben und nach unten Navigieren werden nur die hervorgehobenen Elemente durchlaufen.",
"keyboardNavigationSettingKey.simple": "Bei der einfachen Tastaturnavigation werden Elemente in den Fokus genommen, die mit der Tastatureingabe übereinstimmen. Die Übereinstimmungen gelten nur für Präfixe.",
- "keyboardNavigationSettingKeyDeprecated": "Bitte verwenden Sie stattdessen 'workbench.list.defaultFindMode'.",
+ "keyboardNavigationSettingKeyDeprecated": "Bitte verwenden Sie stattdessen „workbench.list.defaultFindMode“ und „workbench.list.typeNavigationMode“.",
"list smoothScrolling setting": "Steuert, ob Listen und Strukturen einen optimierten Bildlauf verwenden.",
+ "list.scrollByPage": "Steuert, ob Klicks in der Bildlaufleiste Seite für Seite scrollen.",
"multiSelectModifier": "Der Modifizierer zum Hinzufügen eines Elements in Bäumen und Listen zu einer Mehrfachauswahl mit der Maus (zum Beispiel im Explorer, in geöffneten Editoren und in der SCM-Ansicht). Die Mausbewegung \"Seitlich öffnen\" wird – sofern unterstützt – so angepasst, dass kein Konflikt mit dem Modifizierer für Mehrfachauswahl entsteht.",
"multiSelectModifier.alt": "Ist unter Windows und Linux der ALT-Taste und unter macOS der Wahltaste zugeordnet.",
"multiSelectModifier.ctrlCmd": "Ist unter Windows und Linux der STRG-Taste und unter macOS der Befehlstaste zugeordnet.",
"openModeModifier": "Steuert, wie Elemente in Strukturen und Listen mithilfe der Maus geöffnet werden (sofern unterstützt). Bei übergeordneten Elementen, deren untergeordnete Elemente sich in Strukturen befinden, steuert diese Einstellung, ob ein Einfachklick oder ein Doppelklick das übergeordnete Elemente erweitert. Beachten Sie, dass einige Strukturen und Listen diese Einstellung ggf. ignorieren, wenn sie nicht zutrifft.",
"render tree indent guides": "Steuert, ob die Struktur Einzugsführungslinien rendern soll.",
+ "sticky scroll": "Steuert, ob fester Bildlauf in Strukturen aktiviert ist.",
+ "sticky scroll maximum items": "Steuert die Anzahl der festen Elemente, die in der Struktur angezeigt werden, wenn {0} aktiviert ist.",
"tree indent setting": "Steuert den Struktureinzug in Pixeln.",
+ "typeNavigationMode2": "Steuert die Funktionsweise der Typnavigation in Listen und Strukturen in der Workbench. Bei einer Festlegung auf \"trigger\" beginnt die Typnavigation, sobald der Befehl \"list.triggerTypeNavigation\" ausgeführt wird.",
"workbenchConfigurationTitle": "Workbench"
},
+ "vs/platform/log/common/log": {
+ "debug": "Debuggen",
+ "error": "Fehler",
+ "info": "Info",
+ "off": "Aus",
+ "trace": "Ablaufverfolgung",
+ "warn": "Warnung"
+ },
"vs/platform/markers/common/markers": {
"sev.error": "Fehler",
+ "sev.errors": "Fehler",
"sev.info": "Info",
- "sev.warning": "Warnung"
+ "sev.infos": "Infos",
+ "sev.warning": "Warnung",
+ "sev.warnings": "Warnungen"
+ },
+ "vs/platform/markers/common/markerService": {
+ "filtered": "Probleme sind angehalten, Grund: \"{0}\"",
+ "filtered.network": "Probleme sind angehalten, Grund: \"{0}\" und {1} weitere"
+ },
+ "vs/platform/mcp/common/allowedMcpServersService": {
+ "mcp servers are not allowed": "Modellkontextprotokollserver sind im Editor deaktiviert. Überprüfen Sie Ihre [Einstellungen]({0})."
+ },
+ "vs/platform/mcp/common/mcpGalleryService": {
+ "noReadme": "Keine INFODATEI verfügbar",
+ "readme.viewInBrowser": "Informationen zu diesem Server finden Sie [hier]({0})."
+ },
+ "vs/platform/mcp/common/mcpManagementService": {
+ "not allowed to install": "Dieser MCP-Server kann nicht installiert werden, weil {0}"
},
"vs/platform/menubar/electron-main/menubar": {
- "cancel": "&&Abbrechen",
+ "cancel": "Abbrechen",
+ "exit": "&&Beenden",
"mAbout": "Informationen zu {0}",
"mBringToFront": "Alle in den Vordergrund",
"mEdit": "&&Bearbeiten",
@@ -1741,42 +2544,125 @@
"miRestartToUpdate": "Für &&Update neu starten",
"miSwitchWindow": "Fenster &&wechseln...",
"quit": "&&Aufhören",
- "quitMessage": "Sind Sie sicher, dass Sie aufhören wollen?"
+ "quitMessage": "Möchten Sie den Vorgang beenden?",
+ "quitMessageMac": "Sind Sie sicher, dass Sie aufhören wollen?"
},
"vs/platform/native/electron-main/nativeHostMainService": {
- "cancel": "&&Abbrechen",
+ "cancel": "Abbrechen",
"cantCreateBinFolder": "Der Shellbefehl „{0}“ konnte nicht installiert werden.",
"cantUninstall": "Der Shellbefehl \"{0}\" konnte nicht deinstalliert werden.",
+ "copyLink": "&&Link kopieren",
"ok": "&&OK",
+ "openExternalErrorLinkMessage": "Beim Öffnen eines Links in Ihrem Standardbrowser ist ein Fehler aufgetreten.",
+ "openExternalProgramErrorMessage": "Beim Öffnen eines externen Programms ist ein Fehler aufgetreten.",
"sourceMissing": "Das Shellskript kann in „{0}“ nicht gefunden werden",
+ "trace.detail": "Erstellen Sie ein Issue, und fügen Sie die folgende Datei manuell an:\r\n{0}",
+ "trace.message": "Die Ablaufverfolgungsdatei wurde erfolgreich erstellt.",
+ "trace.ok": "&&OK",
"warnEscalation": "{0} fordert nun mit „osascript“ zur Eingabe von Administratorberechtigungen auf, um den Shellbefehl zu installieren.",
"warnEscalationUninstall": "{0} fordert nun mit „osascript“ zur Eingabe Administratorrechten auf, um den Shellbefehl zu deinstallieren."
},
+ "vs/platform/notification/common/notification": {
+ "severityPrefix.error": "Fehler: {0}",
+ "severityPrefix.info": "Info: {0}",
+ "severityPrefix.warning": "Warnung: {0}"
+ },
+ "vs/platform/process/electron-main/processMainService": {
+ "local": "Lokal"
+ },
"vs/platform/quickinput/browser/commandsQuickAccess": {
- "canNotRun": "Der Befehl {0} hat einen Fehler ausgelöst ({1}).",
+ "canNotRun": "Der Befehl \"{0}\" hat zu einem Fehler geführt.",
"commandPickAriaLabelWithKeybinding": "{0}, {1}",
+ "commonlyUsed": "häufig verwendet",
"morecCommands": "andere Befehle",
- "recentlyUsed": "zuletzt verwendet"
+ "recentlyUsed": "zuletzt verwendet",
+ "suggested": "ähnliche Befehle"
},
"vs/platform/quickinput/browser/helpQuickAccess": {
"helpPickAriaLabel": "{0}, {1}"
},
+ "vs/platform/quickinput/browser/quickInput": {
+ "cursorAtEndOfQuickInputBox": "Gibt an, ob sich der Cursor in der Schnelleingabe am Ende des Eingabefelds befindet.",
+ "inQuickInput": "Gibt an, ob sich der Tastaturfokus innerhalb des Steuerelements für die Schnelleingabe befindet.",
+ "inputModeEntry": "Drücken Sie die EINGABETASTE, um Ihre Eingabe zu bestätigen, oder ESC, um den Vorgang abzubrechen.",
+ "inputModeEntryDescription": "{0} (Drücken Sie die EINGABETASTE zur Bestätigung oder ESC, um den Vorgang abzubrechen.)",
+ "ok": "OK",
+ "quickInput.back": "Zurück",
+ "quickInput.steps": "{0}/{1}",
+ "quickInputAlignment": "Die Ausrichtung der Schnelleingabe",
+ "quickInputBox.ariaLabel": "Nehmen Sie eine Eingabe vor, um die Ergebnisse einzugrenzen.",
+ "quickInputType": "Der Typ der aktuell sichtbaren Schnelleingabe"
+ },
+ "vs/platform/quickinput/browser/quickInputActions": {
+ "nonQuickWidget": "Wird im Zusammenhang mit einer schnellen Eingabe verwendet. Wenn Sie eine Tastenzuordnung für diesen Befehl ändern, sollten Sie auch alle anderen Tastenzuordnungen (Modifizierervarianten) dieses Befehls ändern.",
+ "quickInput": "Wird im Kontext einer beliebigen Art von Schnelleingabe verwendet. Wenn Sie eine Tastenzuordnung für diesen Befehl ändern, sollten Sie auch alle anderen Tastenzuordnungen (Modifizierervarianten) dieses Befehls ändern.",
+ "quickInput.nextSeparatorWithQuickAccessFallback": "Wenn wir uns im Schnellzugriffsmodus befinden, wird zum nächsten Element navigiert. Wenn wir uns nicht im Schnellzugriffsmodus befinden, wird zum nächsten Trennzeichen navigiert.",
+ "quickInput.previousSeparatorWithQuickAccessFallback": "Wenn wir uns im Schnellzugriffsmodus befinden, wird zum vorherigen Element navigiert. Wenn wir uns nicht im Schnellzugriffsmodus befinden, wird zum vorherigen Trennzeichen navigiert.",
+ "quickPick": "Wird im Kontext der Schnellauswahl verwendet. Wenn Sie eine Tastenzuordnung für diesen Befehl ändern, sollten Sie auch alle anderen Tastenzuordnungen (Modifizierervarianten) dieses Befehls ändern."
+ },
+ "vs/platform/quickinput/browser/quickInputController": {
+ "custom": "Benutzerdefiniert",
+ "ok": "OK",
+ "quickInput.back": "Zurück",
+ "quickInput.backWithKeybinding": "Zurück ({0})",
+ "quickInput.checkAll": "Aktivieren Sie alle Kontrollkästchen",
+ "quickInput.countSelected": "{0} ausgewählt",
+ "quickInput.visibleCount": "{0} Ergebnisse"
+ },
+ "vs/platform/quickinput/browser/quickInputList": {
+ "quickInput": "Schnelleingabe"
+ },
+ "vs/platform/quickinput/browser/quickInputUtils": {
+ "executeCommand": "Klicken, um den Befehl \"{0}\" auszuführen"
+ },
+ "vs/platform/quickinput/browser/quickPickPin": {
+ "pinCommand": "Befehl anheften",
+ "pinnedCommand": "Angehefteter Befehl",
+ "terminal.commands.pinned": "angeheftet"
+ },
+ "vs/platform/quickinput/browser/tree/quickInputTreeAccessibilityProvider": {
+ "quickTree": "Quick Tree"
+ },
+ "vs/platform/quickinput/browser/tree/quickTree": {
+ "quickInputBox.ariaLabel": "Nehmen Sie eine Eingabe vor, um die Ergebnisse einzugrenzen."
+ },
+ "vs/platform/remoteTunnel/common/remoteTunnel": {
+ "remoteTunnelLog": "Remotetunneldienst"
+ },
+ "vs/platform/remoteTunnel/node/remoteTunnelService": {
+ "remoteTunnelService.authorizing": "Herstellen einer Verbindung als {0} ({1})",
+ "remoteTunnelService.building": "CLI wird aus Quellen erstellt",
+ "remoteTunnelService.openTunnel": "Tunnel wird geöffnet",
+ "remoteTunnelService.openTunnelWithName": "Tunnel {0} wird geöffnet",
+ "remoteTunnelService.serviceInstallFailed": "Fehler beim Installieren des Tunnels als Dienst, wird in der Sitzung gestartet..."
+ },
"vs/platform/request/common/request": {
+ "electronFetch": "Steuert, ob die Verwendung der Fetch-Implementierung von Electron anstelle der von Node.js aktiviert werden soll. Alle lokalen Erweiterungen erhalten die Fetch-Implementierung von Electron für die globale Fetch-API.",
+ "fetchAdditionalSupport": "Steuert, ob die Fetchimplementierungen Node.js mit zusätzlicher Unterstützung erweitert werden sollen. Aktuell werden Proxyunterstützung ({1}) und Systemzertifikate ({2}) hinzugefügt, wenn die entsprechenden Einstellungen aktiviert sind. Wenn während [remote development](https://aka.ms/vscode-remote) die Einstellung {0} deaktiviert ist, kann diese Einstellung in den lokalen und den Remoteeinstellungen separat konfiguriert werden.",
"httpConfigurationTitle": "HTTP",
- "proxy": "Die zu verwendende Proxyeinstellung. Ist diese nicht festgelegt, wird sie von den Umgebungsvariablen \"http_proxy\" und \"https_proxy\" geerbt.",
- "proxyAuthorization": "Der Wert, der für jede Netzwerkanforderung als Proxy-Authorization-Header gesendet werden soll.",
- "proxySupport": "Proxyunterstützung für Erweiterungen verwenden.",
+ "networkInterfaceCheckInterval": "Steuert das Intervall in Sekunden, in dem Änderungen an Netzwerkschnittstellen überprüft werden, um den Proxycache ungültig zu machen. Legen Sie dies zum Deaktivieren auf -1 fest. Wenn während der [Remoteentwicklung](https://aka.ms/vscode-remote) die Einstellung {0} deaktiviert ist, kann diese Einstellung in den lokalen und den Remoteeinstellungen separat konfiguriert werden.",
+ "noProxy": "Gibt Domänennamen an, für die Proxyeinstellungen für HTTP/HTTPS-Anforderungen ignoriert werden sollen. Wenn während [remote development](https://aka.ms/vscode-remote) die Einstellung {0} deaktiviert ist, kann diese Einstellung in den lokalen und den Remoteeinstellungen separat konfiguriert werden.",
+ "proxy": "Die zu verwendende Proxyeinstellung. Wenn diese Option nicht festgelegt ist, wird sie von den Umgebungsvariablen \"http_proxy\" und \"https_proxy\" geerbt. Wenn während [remote development](https://aka.ms/vscode-remote) die Einstellung {0} deaktiviert ist, kann diese Einstellung in den lokalen und den Remoteeinstellungen separat konfiguriert werden.",
+ "proxyAuthorization": "Der Wert, der als Proxyautorisierungsheader für jede Netzwerkanforderung gesendet werden soll. Wenn während [remote development](https://aka.ms/vscode-remote) die Einstellung {0} deaktiviert ist, kann diese Einstellung in den lokalen und den Remoteeinstellungen separat konfiguriert werden.",
+ "proxyKerberosServicePrincipal": "Überschreibt den Prinzipaldienstnamen für die Kerberos-Authentifizierung mit dem HTTP-Proxy. Ein Standard, der auf dem Proxyhostnamen basiert, wird verwendet, wenn dies nicht festgelegt ist. Wenn während [remote development](https://aka.ms/vscode-remote) die Einstellung {0} deaktiviert ist, kann diese Einstellung in den lokalen und den Remoteeinstellungen separat konfiguriert werden.",
+ "proxySupport": "Proxyunterstützung für Erweiterungen verwenden Wenn während [remote development](https://aka.ms/vscode-remote) die Einstellung {0} deaktiviert ist, kann diese Einstellung in den lokalen und den Remoteeinstellungen separat konfiguriert werden.",
"proxySupportFallback": "Aktivieren sie die Proxyunterstützung für Erweiterungen. Greifen Sie auf die Anforderungsoptionen zurück, wenn kein Proxy gefunden wurde.",
"proxySupportOff": "Hiermit wird die Proxyunterstützung für Erweiterungen deaktiviert.",
"proxySupportOn": "Hiermit wird die Proxyunterstützung für Erweiterungen aktiviert.",
"proxySupportOverride": "Hiermit wird die Proxyunterstützung für Erweiterungen aktiviert, und Anforderungsoptionen werden außer Kraft gesetzt.",
- "strictSSL": "Steuert, ob das Proxy-Server-Zertifikat mit der Liste der mitgelieferten CAs überprüft werden soll.",
- "systemCertificates": "Steuert, ob Zertifizierungsstellenzertifikate über das Betriebssystem geladen werden. (Unter Windows und macOS muss nach dem Deaktivieren dieser Option das Fenster neu geladen werden.)"
+ "strictSSL": "Steuert, ob das Proxyserverzertifikat anhand der Liste der angegebenen Zertifizierungsstellen überprüft werden soll. Wenn während [remote development](https://aka.ms/vscode-remote) die Einstellung {0} deaktiviert ist, kann diese Einstellung in den lokalen und den Remoteeinstellungen separat konfiguriert werden.",
+ "systemCertificates": "Steuert, ob Zertifizierungsstellenzertifikate vom Betriebssystem geladen werden sollen. Unter Windows und macOS ist nach dem Deaktivieren dieses Fensters ein erneutes Laden des Fensters erforderlich. Wenn während [remote development](https://aka.ms/vscode-remote) die Einstellung {0} deaktiviert ist, kann diese Einstellung in den lokalen und den Remoteeinstellungen separat konfiguriert werden.",
+ "systemCertificatesNode": "Steuert, ob Systemzertifikate mit der integrierten Unterstützung von Node.js geladen werden sollen. Laden Sie das Fenster nach dem Ändern dieser Einstellung erneut. Wenn während der [Remoteentwicklung](https://aka.ms/vscode-remote) die Einstellung {0} deaktiviert ist, kann diese Einstellung in den lokalen und den Remoteeinstellungen separat konfiguriert werden.",
+ "systemCertificatesV2": "Steuert, ob das experimentelle Laden von Zertifizierungsstellenzertifikaten vom Betriebssystem aktiviert werden soll. Dies verwendet einen allgemeineren Ansatz als die Standardimplementierung. Wenn während [remote development](https://aka.ms/vscode-remote) die Einstellung {0} deaktiviert ist, kann diese Einstellung in den lokalen und den Remoteeinstellungen separat konfiguriert werden.",
+ "useLocalProxy": "Steuert, ob auf dem Remoteerweiterungshost die lokale Proxykonfiguration verwendet werden soll. Diese Einstellung gilt nur als Remoteeinstellung während [remote development](https://aka.ms/vscode-remote)."
},
"vs/platform/shell/node/shellEnv": {
"resolveShellEnvError": "Ihre Shellumgebung {0} kann nicht aufgelöst werden",
"resolveShellEnvExitError": "Unerwarteter Exitcode aus der erzeugten Shell (Code {0}, Signal {1})",
- "resolveShellEnvTimeout": "Ihre Shell-Umgebung kann nicht in einem angemessenen Zeitraum aufgelöst werden. Überprüfen Sie Ihre Shell-Konfiguration."
+ "resolveShellEnvTimeout": "Ihre Shell-Umgebung kann nicht in einem angemessenen Zeitraum aufgelöst werden. Überprüfen Sie Ihre Shell-Konfiguration, und starten Sie sie neu."
+ },
+ "vs/platform/telemetry/common/telemetryLogAppender": {
+ "telemetryLog": "Telemetrie{0}"
},
"vs/platform/telemetry/common/telemetryService": {
"enableTelemetryDeprecated": "Wenn diese Einstellung FALSE ist, werden unabhängig vom Wert der neuen Einstellung keine Telemetriedaten gesendet. Zugunsten der {0}-Einstellung veraltet.",
@@ -1784,51 +2670,41 @@
"telemetry.docsAndPrivacyStatement": "Weitere Informationen zu den [von uns erfassten Daten]({0}) und unseren [Datenschutzbestimmungen]({1}).",
"telemetry.docsStatement": "Weitere Informationen zu [von uns gesammelten Daten]({0}).",
"telemetry.enableTelemetry": "Aktivieren Sie die Erfassung von Diagnosedaten. Dies hilft uns, besser zu verstehen, wie {0} funktioniert und wo Verbesserungen vorgenommen werden müssen.",
- "telemetry.enableTelemetryMd": "Aktivieren Sie die Erfassung von Diagnosedaten. Dies hilft uns, besser zu verstehen, wie {0} funktioniert und wo Verbesserungen vorgenommen werden müssen. [Weitere Informationen] ({1}) zu dem, was wir erfassen, und zu unseren Datenschutzbestimmungen.",
+ "telemetry.enableTelemetryMd": "Aktivieren Sie die Erfassung von Diagnosedaten. Dies hilft uns, besser zu verstehen, wie {0} funktioniert und wo Verbesserungen vorgenommen werden müssen. [Weitere Informationen]({1}) zu dem, was wir erfassen, und zu unseren Datenschutzbestimmungen.",
"telemetry.errors": "Fehlertelemetrie",
+ "telemetry.feedback.enabled": "Aktivieren Sie Feedback-Mechanismen wie den Problem-Reporter, Umfragen und andere Feedback-Optionen.",
"telemetry.restart": "Ein vollständiger Neustart der Anwendung ist erforderlich, damit Änderungen der Absturzberichterstellung wirksam werden.",
"telemetry.telemetryLevel.crash": "Sendet Absturzberichte auf Betriebssystemebene.",
"telemetry.telemetryLevel.default": "Sendet Nutzungsdaten, Fehler und Absturzberichte.",
"telemetry.telemetryLevel.deprecated": "****Hinweis:*** Wenn diese Einstellung deaktiviert ist, werden unabhängig von anderen Telemetrieeinstellungen keine Telemetriedaten gesendet. Wenn diese Einstellung auf etwas anderes als \"Aus\" festgelegt ist und Telemetriedaten mit veralteten Einstellungen deaktiviert sind, werden keine Telemetriedaten gesendet.*",
"telemetry.telemetryLevel.error": "Sendet allgemeine Fehlertelemetrie- und Absturzberichte.",
"telemetry.telemetryLevel.off": "Deaktiviert alle Produkttelemetriedaten.",
+ "telemetry.telemetryLevel.policyDescription": "Steuert den Grad der Telemetrie.",
"telemetry.telemetryLevel.tableDescription": "In der folgenden Tabelle sind die Daten aufgeführt, die mit jeder Einstellung gesendet werden:",
"telemetry.telemetryLevelMd": "Steuert {0}-Telemetriedaten, Telemetriedaten zu Erstanbietererweiterungen und Erweiterungen teilnehmender Drittanbieter. Einige Drittanbietererweiterungen beachten diese Einstellung möglicherweise nicht. Sehen Sie sich die Dokumentation der jeweiligen Erweiterung an, um sich zu vergewissern. Dies hilft uns besser zu verstehen, wie {0} funktioniert, wo Verbesserungen vorgenommen werden müssen und wie Features verwendet werden.",
"telemetry.usage": "Nutzungsdaten",
"telemetryConfigurationTitle": "Telemetrie"
},
+ "vs/platform/telemetry/common/telemetryUtils": {
+ "telemetryLogName": "Telemetrie"
+ },
+ "vs/platform/terminal/common/terminalLogService": {
+ "terminalLoggerName": "Terminal"
+ },
"vs/platform/terminal/common/terminalPlatformConfiguration": {
- "terminal.integrated.automationProfile.linux": "Das Terminalprofil, das unter Linux für automatisierungsbezogene Terminalnutzung wie Tasks und Debuggen verwendet werden soll. Diese Einstellung wird zurzeit ignoriert, wenn {0} festgelegt ist.",
- "terminal.integrated.automationProfile.osx": "Das Terminalprofil, das unter macOS für automatisierungsbezogene Terminalnutzung wie Tasks und Debuggen verwendet werden soll. Diese Einstellung wird zurzeit ignoriert, wenn {0} festgelegt ist.",
- "terminal.integrated.automationProfile.windows": "Das Terminalprofil, das für automatisierungsbezogene Terminalnutzung wie Tasks und Debuggen verwendet werden soll. Diese Einstellung wird zurzeit ignoriert, wenn {0} festgelegt ist.",
- "terminal.integrated.automationShell.linux": "Ein Pfad, der bei Festlegung \"{0}\" überschreibt und {1}-Werte für die automatisierungsbezogene Terminalnutzung ignoriert, z. B. Aufgaben und Debuggen.",
- "terminal.integrated.automationShell.linux.deprecation": "Diese Methode ist veraltet. Wir empfohlen Ihnen stattdessen, ein Terminalautomatisierungsprofil mit {0} zu erstellen, um Ihre Automatisierungsshell zu konfigurieren. Dies hat derzeit Vorrang vor den neuen Automatisierungsprofileinstellungen, aber es wird sich in Zukunft ändern.",
- "terminal.integrated.automationShell.osx": "Ein Pfad, der bei Festlegung \"{0}\" überschreibt und {1}-Werte für die automatisierungsbezogene Terminalnutzung ignoriert, z. B. Aufgaben und Debuggen.",
- "terminal.integrated.automationShell.osx.deprecation": "Diese Methode ist veraltet. Wir empfohlen Ihnen stattdessen, ein Terminalautomatisierungsprofil mit {0} zu erstellen, um Ihre Automatisierungsshell zu konfigurieren. Dies hat derzeit Vorrang vor den neuen Automatisierungsprofileinstellungen, aber es wird sich in Zukunft ändern.",
- "terminal.integrated.automationShell.windows": "Ein Pfad, der bei Festlegung \"{0}\" überschreibt und {1}-Werte für die automatisierungsbezogene Terminalnutzung ignoriert, z. B. Aufgaben und Debuggen.",
- "terminal.integrated.automationShell.windows.deprecation": "Diese Methode ist veraltet. Wir empfohlen Ihnen stattdessen, ein Terminalautomatisierungsprofil mit {0} zu erstellen, um Ihre Automatisierungsshell zu konfigurieren. Dies hat derzeit Vorrang vor den neuen Automatisierungsprofileinstellungen, aber es wird sich in Zukunft ändern.",
+ "terminal.integrated.automationProfile.linux": "Das Terminalprofil, das unter Linux für automatisierungsbezogene Terminalnutzung wie Tasks und Debuggen verwendet werden soll.",
+ "terminal.integrated.automationProfile.osx": "Das Terminalprofil, das unter macOS für automatisierungsbezogene Terminalnutzung wie Tasks und Debuggen verwendet werden soll.",
+ "terminal.integrated.automationProfile.windows": "Das Terminalprofil, das für automatisierungsbezogene Terminalnutzung wie Tasks und Debuggen verwendet werden soll. Diese Einstellung wird zurzeit ignoriert, wenn {0} (nicht veraltet) festgelegt ist.",
"terminal.integrated.confirmIgnoreProcesses": "Ein Satz von Prozessnamen, die ignoriert werden sollen, wenn die Einstellung {0} verwendet wird.",
- "terminal.integrated.defaultProfile.linux": "Das unter Linux verwendet Standardprofil. Diese Einstellung wird derzeit ignoriert, wenn entweder {0} oder {1} festgelegt sind.",
- "terminal.integrated.defaultProfile.osx": "Das unter macOS verwendete Standardprofil. Diese Einstellung wird derzeit ignoriert, wenn entweder {0} oder {1} festgelegt sind.",
- "terminal.integrated.defaultProfile.windows": "Das unter Windows verwendete Standardprofil. Diese Einstellung wird derzeit ignoriert, wenn entweder {0} oder {1} festgelegt sind.",
+ "terminal.integrated.defaultProfile.linux": "Das Standardterminalprofil unter Linux.",
+ "terminal.integrated.defaultProfile.osx": "Das Standardterminalprofil unter macOS.",
+ "terminal.integrated.defaultProfile.windows": "Das Standardterminalprofil unter Windows.",
"terminal.integrated.inheritEnv": "Gibt an, ob neue Shells ihre Umgebung von VS Code erben sollen, die möglicherweise eine Anmeldeshell erstellen, um sicherzustellen, dass $PATH und andere Entwicklungsvariablen initialisiert werden. Dies hat keine Auswirkungen auf Windows.",
"terminal.integrated.persistentSessionScrollback": "Steuert die maximale Anzahl von Zeilen, die beim erneuten Verbinden mit einer beständigen Terminalsitzung wiederhergestellt werden. Wenn Sie diesen Wert erhöhen, werden mehr Zeilen von Scrollback auf Kosten von mehr Arbeitsspeicher wiederhergestellt, und die Zeit für das Herstellen einer Verbindung mit Terminals beim Start wird erhöht. Damit diese Einstellung wirksam wird, ist ein Neustart erforderlich, und es sollte ein Wert festgelegt werden, der kleiner oder gleich „#terminal.integrated.scrollback#“ ist.",
- "terminal.integrated.profile.linux": "Die Linux-Profile, die beim Erstellen eines neuen Terminals über das Terminaldropdown angezeigt werden sollen. Legen Sie die {0}-Eigenschaft manuell mit einem optionalen {1} fest.\r\n\r\nLegen Sie ein vorhandenes Profil auf {2} fest, um das Profil aus der Liste auszublenden, z. B.: {3}.",
- "terminal.integrated.profile.osx": "Die macOS-Profile, die beim Erstellen eines neuen Terminals über das Terminaldropdown angezeigt werden sollen. Legen Sie die {0}-Eigenschaft manuell mit einem optionalen {1} fest.\r\n\r\nLegen Sie ein vorhandenes Profil auf {2} fest, um das Profil aus der Liste auszublenden, z. B.: {3}.",
- "terminal.integrated.profiles.windows": "Die Windows-Profile, die beim Erstellen eines neuen Terminals über das Terminaldropdown angezeigt werden sollen. Verwenden Sie die {0}-Eigenschaft, um den Speicherort der Shell automatisch zu erkennen. Oder legen Sie die {1}-Eigenschaft manuell mit einem optionalen {2} fest.\r\n\r\nLegen Sie ein vorhandenes Profil auf {3} fest, um das Profil aus der Liste auszublenden, z. B.: {4}.",
- "terminal.integrated.shell.linux": "The path of the shell that the terminal uses on Linux. [Read more about configuring the shell](https://code.visualstudio.com/docs/editor/integrated-terminal#_terminal-profiles).",
- "terminal.integrated.shell.linux.deprecation": "Diese Methode ist veraltet. Wir empfehlen Ihnen stattdessen, ein Terminalprofil in {0} zum Konfigurieren Ihrer Standardshell zu erstellen und den Profilnamen als Standard in {1} festzulegen. Dies hat derzeit Vorrang vor den neuen Profileinstellungen, die sich aber in Zukunft ändern werden.",
- "terminal.integrated.shell.osx": "The path of the shell that the terminal uses on macOS. [Read more about configuring the shell](https://code.visualstudio.com/docs/editor/integrated-terminal#_terminal-profiles).",
- "terminal.integrated.shell.osx.deprecation": "Diese Methode ist veraltet. Wir empfehlen Ihnen stattdessen, ein Terminalprofil in {0} zum Konfigurieren Ihrer Standardshell zu erstellen und den Profilnamen als Standard in {1} festzulegen. Dies hat derzeit Vorrang vor den neuen Profileinstellungen, die sich aber in Zukunft ändern werden.",
- "terminal.integrated.shell.windows": "The path of the shell that the terminal uses on Windows. [Read more about configuring the shell](https://code.visualstudio.com/docs/editor/integrated-terminal#_terminal-profiles).",
- "terminal.integrated.shell.windows.deprecation": "Diese Methode ist veraltet. Wir empfehlen Ihnen stattdessen, ein Terminalprofil in {0} zum Konfigurieren Ihrer Standardshell zu erstellen und den Profilnamen als Standard in {1} festzulegen. Dies hat derzeit Vorrang vor den neuen Profileinstellungen, die sich aber in Zukunft ändern werden.",
- "terminal.integrated.shellArgs.linux": "The command line arguments to use when on the Linux terminal. [Read more about configuring the shell](https://code.visualstudio.com/docs/editor/integrated-terminal#_terminal-profiles).",
- "terminal.integrated.shellArgs.osx": "The command line arguments to use when on the macOS terminal. [Read more about configuring the shell](https://code.visualstudio.com/docs/editor/integrated-terminal#_terminal-profiles).",
- "terminal.integrated.shellArgs.windows": "The command line arguments to use when on the Windows terminal. [Read more about configuring the shell](https://code.visualstudio.com/docs/editor/integrated-terminal#_terminal-profiles).",
- "terminal.integrated.shellArgs.windows.string": "The command line arguments in [command-line format](https://msdn.microsoft.com/en-au/08dfcab2-eb6e-49a4-80eb-87d4076c98c6) to use when on the Windows terminal. [Read more about configuring the shell](https://code.visualstudio.com/docs/editor/integrated-terminal#_terminal-profiles).",
+ "terminal.integrated.profile": "Eine Reihe von Terminalprofilanpassungen für {0} , die das Hinzufügen, Entfernen oder Ändern des Startmodus von Terminals ermöglichen. Profile bestehen aus einem obligatorischen Pfad, optionalen Argumenten und anderen Präsentationsoptionen.\r\n\r\nUm ein vorhandenes Profil zu überschreiben, verwenden Sie seinen Profilnamen als Schlüssel, z. B.:\r\n\r\n{1}\r\n\r\n{2}Weitere Informationen zum Konfigurieren von Profilen{3}.",
"terminal.integrated.showLinkHover": "Gibt an, ob der Mauszeiger angezeigt werden soll, wenn er über Links in der Terminalausgabe bewegt wird.",
"terminal.integrated.useWslProfiles": "Steuert, ob WSL-Distributionen in der Dropdownliste für Terminals angezeigt werden.",
- "terminalAutomationProfile.path": "Ein einzelner Pfad zu einer ausführbaren Shell.",
+ "terminalAutomationProfile.path": "Ein Pfad zu einer ausführbaren Shell.",
"terminalIntegratedConfigurationTitle": "Integriertes Terminal",
"terminalProfile.args": "Ein optionaler Satz an Argumenten, mit denen die ausführbare Shelldatei ausgeführt werden soll.",
"terminalProfile.color": "Eine Designfarb-ID, die dem Terminalsymbol zugeordnet werden soll.",
@@ -1840,16 +2716,19 @@
"terminalProfile.osxExtensionId": "Die ID des Erweiterungsterminals",
"terminalProfile.osxExtensionIdentifier": "Die Erweiterung, die dieses Profil beigetragen hat.",
"terminalProfile.osxExtensionTitle": "Der Name des Erweiterungsterminals",
- "terminalProfile.overrideName": "Steuert, ob der Profilname den automatisch erkannten Namen überschreibt.",
+ "terminalProfile.overrideName": "Gibt an, ob der dynamische Terminaltitel ersetzt werden soll, der erkennt, welches Programm mit dem statischen Profilnamen ausgeführt wird.",
"terminalProfile.path": "Ein einzelner Pfad zu einer ausführbaren Shelldatei oder ein Array aus Pfaden, die bei einem Fehler als Fallback verwendet werden.",
"terminalProfile.windowsExtensionId": "Die ID des Erweiterungsterminals",
"terminalProfile.windowsExtensionIdentifier": "Die Erweiterung, die dieses Profil beigetragen hat.",
"terminalProfile.windowsExtensionTitle": "Der Name des Erweiterungsterminals",
- "terminalProfile.windowsSource": "Eine Profilquelle für die automatische Erkennung der Pfade zur Shell."
+ "terminalProfile.windowsSource": "Eine Profilquelle, die die Pfade zur Shell automatisch erkennt. Beachten Sie, dass nicht standardmäßige ausführbare Speicherorte nicht unterstützt werden und manuell in einem neuen Profil erstellt werden müssen."
},
"vs/platform/terminal/common/terminalProfiles": {
"terminalAutomaticProfile": "Standard automatisch erkennen"
},
+ "vs/platform/terminal/node/ptyHostMain": {
+ "ptyHost": "Pty-Host"
+ },
"vs/platform/terminal/node/ptyService": {
"terminal-history-restored": "Verlauf wiederhergestellt"
},
@@ -1859,23 +2738,26 @@
"launchFail.executableDoesNotExist": "Der Pfad zur ausführbaren Shelldatei \"{0}\" ist nicht vorhanden.",
"launchFail.executableIsNotFileOrSymlink": "Der Pfad zur ausführbaren Shelldatei „{0}“ ist weder eine Datei noch ein Symlink"
},
- "vs/platform/theme/common/colorRegistry": {
+ "vs/platform/theme/common/colors/baseColors": {
"activeContrastBorder": "Ein zusätzlicher Rahmen um aktive Elemente, mit dem diese von anderen getrennt werden, um einen größeren Kontrast zu erreichen.",
- "activeLinkForeground": "Farbe der aktiven Links.",
- "badgeBackground": "Hintergrundfarbe für Badge. Badges sind kurze Info-Texte, z.B. für Anzahl Suchergebnisse.",
- "badgeForeground": "Vordergrundfarbe für Badge. Badges sind kurze Info-Texte, z.B. für Anzahl Suchergebnisse.",
- "breadcrumbsBackground": "Hintergrundfarbe der Breadcrumb-Elemente.",
- "breadcrumbsFocusForeground": "Farbe der Breadcrumb-Elemente, die den Fokus haben.",
- "breadcrumbsSelectedBackground": "Hintergrundfarbe des Breadcrumb-Auswahltools.",
- "breadcrumbsSelectedForeground": "Die Farbe der ausgewählten Breadcrumb-Elemente.",
- "buttonBackground": "Hintergrundfarbe der Schaltfläche.",
- "buttonBorder": "Rahmenfarbe der Schaltfläche.",
- "buttonForeground": "Vordergrundfarbe der Schaltfläche.",
- "buttonHoverBackground": "Hintergrundfarbe der Schaltfläche, wenn darauf gezeigt wird.",
- "buttonSecondaryBackground": "Hintergrundfarbe der sekundären Schaltfläche.",
- "buttonSecondaryForeground": "Sekundäre Vordergrundfarbe der Schaltfläche.",
- "buttonSecondaryHoverBackground": "Hintergrundfarbe der sekundären Schaltfläche beim Daraufzeigen.",
- "buttonSeparator": "Farbe des Schaltflächentrennzeichens.",
+ "contrastBorder": "Ein zusätzlicher Rahmen um Elemente, mit dem diese von anderen getrennt werden, um einen größeren Kontrast zu erreichen.",
+ "descriptionForeground": "Vordergrundfarbe für Beschreibungstexte, die weitere Informationen anzeigen, z.B. für eine Beschriftung.",
+ "disabledForeground": "Allgemeine Vordergrundfarbe. Diese Farbe wird nur verwendet, wenn sie nicht durch eine Komponente überschrieben wird.",
+ "errorForeground": "Allgemeine Vordergrundfarbe für Fehlermeldungen. Diese Farbe wird nur verwendet, wenn sie nicht durch eine Komponente überschrieben wird.",
+ "focusBorder": "Allgemeine Rahmenfarbe für fokussierte Elemente. Diese Farbe wird nur verwendet, wenn sie nicht durch eine Komponente überschrieben wird.",
+ "foreground": "Allgemeine Vordergrundfarbe. Diese Farbe wird nur verwendet, wenn sie nicht durch eine Komponente überschrieben wird.",
+ "iconForeground": "Die für Symbole in der Workbench verwendete Standardfarbe.",
+ "selectionBackground": "Hintergrundfarbe der Textauswahl in der Workbench (z.B. für Eingabefelder oder Textbereiche). Diese Farbe gilt nicht für die Auswahl im Editor.",
+ "textBlockQuoteBackground": "Hintergrundfarbe für Blockzitate im Text.",
+ "textBlockQuoteBorder": "Rahmenfarbe für blockquote-Elemente im Text.",
+ "textCodeBlockBackground": "Hintergrundfarbe für Codeblöcke im Text.",
+ "textLinkActiveForeground": "Vordergrundfarbe für angeklickte Links im Text und beim Zeigen darauf mit der Maus.",
+ "textLinkForeground": "Vordergrundfarbe für Links im Text.",
+ "textPreformatBackground": "Hintergrundfarbe für vorformatierte Textsegmente.",
+ "textPreformatForeground": "Vordergrundfarbe für vorformatierte Textsegmente.",
+ "textSeparatorForeground": "Farbe für Text-Trennzeichen."
+ },
+ "vs/platform/theme/common/colors/chartsColors": {
"chartsBlue": "Die in Diagrammvisualisierungen verwendete Farbe Blau.",
"chartsForeground": "Die in Diagrammen verwendete Vordergrundfarbe.",
"chartsGreen": "Die in Diagrammvisualisierungen verwendete Farbe Grün.",
@@ -1883,34 +2765,36 @@
"chartsOrange": "Die in Diagrammvisualisierungen verwendete Farbe Orange.",
"chartsPurple": "Die in Diagrammvisualisierungen verwendete Farbe Violett.",
"chartsRed": "Die in Diagrammvisualisierungen verwendete Farbe Rot.",
- "chartsYellow": "Die in Diagrammvisualisierungen verwendete Farbe Gelb.",
- "checkbox.background": "Hintergrundfarbe von Kontrollkästchenwidget.",
- "checkbox.border": "Rahmenfarbe von Kontrollkästchenwidget.",
- "checkbox.foreground": "Vordergrundfarbe von Kontrollkästchenwidget.",
- "contrastBorder": "Ein zusätzlicher Rahmen um Elemente, mit dem diese von anderen getrennt werden, um einen größeren Kontrast zu erreichen.",
- "descriptionForeground": "Vordergrundfarbe für Beschreibungstexte, die weitere Informationen anzeigen, z.B. für eine Beschriftung.",
+ "chartsYellow": "Die in Diagrammvisualisierungen verwendete Farbe Gelb."
+ },
+ "vs/platform/theme/common/colors/editorColors": {
+ "activeLinkForeground": "Farbe der aktiven Links.",
+ "breadcrumbsBackground": "Hintergrundfarbe der Breadcrumb-Elemente.",
+ "breadcrumbsFocusForeground": "Farbe der Breadcrumb-Elemente, die den Fokus haben.",
+ "breadcrumbsSelectedBackground": "Hintergrundfarbe des Breadcrumb-Auswahltools.",
+ "breadcrumbsSelectedForeground": "Die Farbe der ausgewählten Breadcrumb-Elemente.",
"diffDiagonalFill": "Farbe der diagonalen Füllung des Vergleichs-Editors. Die diagonale Füllung wird in Ansichten mit parallelem Vergleich verwendet.",
+ "diffEditor.unchangedCodeBackground": "Die Hintergrundfarbe des unveränderten Codes im Diff-Editor.",
+ "diffEditor.unchangedRegionBackground": "Die Hintergrundfarbe von unveränderten Blöcken im Diff-Editor.",
+ "diffEditor.unchangedRegionForeground": "Die Vordergrundfarbe von unveränderten Blöcken im Diff-Editor.",
"diffEditorBorder": "Die Rahmenfarbe zwischen zwei Text-Editoren.",
"diffEditorInserted": "Hintergrundfarbe für eingefügten Text. Die Farbe darf nicht deckend sein, weil sie sonst die zugrunde liegenden Dekorationen verdeckt.",
"diffEditorInsertedLineGutter": "Hintergrundfarbe für den Rand, an dem Zeilen eingefügt wurden.",
- "diffEditorInsertedLines": "Hintergrundfarbe für eingefügte Linien. Die Farbe darf nicht deckend sein, um zugrunde liegende Dekorationen nicht auszublenden.",
+ "diffEditorInsertedLines": "Hintergrundfarbe für eingefügte Zeilen. Die Farbe darf nicht deckend sein, um zugrunde liegende Dekorationen nicht auszublenden.",
"diffEditorInsertedOutline": "Konturfarbe für eingefügten Text.",
"diffEditorOverviewInserted": "Vordergrund des Diff-Übersichtslineals für eingefügten Inhalt.",
"diffEditorOverviewRemoved": "Vordergrund des Diff-Übersichtslineals für entfernten Inhalt.",
"diffEditorRemoved": "Hintergrundfarbe für Text, der entfernt wurde. Die Farbe darf nicht deckend sein, weil sie sonst die zugrunde liegenden Dekorationen verdeckt.",
- "diffEditorRemovedLineGutter": "Hintergrundfarbe für den Rand, an dem die Linien entfernt wurden.",
- "diffEditorRemovedLines": "Hintergrundfarbe für Linien, die entfernt wurden. Die Farbe darf nicht deckend sein, um zugrunde liegende Dekorationen nicht auszublenden.",
+ "diffEditorRemovedLineGutter": "Hintergrundfarbe für den Rand, an dem die Zeilen entfernt wurden.",
+ "diffEditorRemovedLines": "Hintergrundfarbe für Zeilen, die entfernt wurden. Die Farbe darf nicht deckend sein, um zugrunde liegende Dekorationen nicht auszublenden.",
"diffEditorRemovedOutline": "Konturfarbe für entfernten Text.",
- "disabledForeground": "Allgemeine Vordergrundfarbe. Diese Farbe wird nur verwendet, wenn sie nicht durch eine Komponente überschrieben wird.",
- "dropdownBackground": "Hintergrund für Dropdown.",
- "dropdownBorder": "Rahmen für Dropdown.",
- "dropdownForeground": "Vordergrund für Dropdown.",
- "dropdownListBackground": "Hintergrund für Dropdownliste.",
"editorBackground": "Hintergrundfarbe des Editors.",
+ "editorCompositionBorder": "Die Rahmenfarbe für eine IME-Komposition.",
"editorError.background": "Hintergrundfarbe für Fehlertext im Editor. Die Farbe darf nicht deckend sein, weil sie sonst die zugrunde liegenden Dekorationen verdeckt.",
"editorError.foreground": "Vordergrundfarbe von Fehlerunterstreichungen im Editor.",
"editorFindMatch": "Farbe des aktuellen Suchergebnisses.",
"editorFindMatchBorder": "Randfarbe des aktuellen Suchergebnisses.",
+ "editorFindMatchForeground": "Textfarbe der aktuellen Suchübereinstimmung.",
"editorForeground": "Standardvordergrundfarbe des Editors.",
"editorHint.foreground": "Vordergrundfarbe der Hinweisunterstreichungen im Editor.",
"editorInactiveSelection": "Die Farbe der Auswahl befindet sich in einem inaktiven Editor. Die Farbe darf nicht deckend sein, weil sie sonst die zugrunde liegende Dekorationen verdeckt.",
@@ -1922,36 +2806,83 @@
"editorInlayHintForeground": "Vordergrundfarbe für Inlinehinweise",
"editorInlayHintForegroundParameter": "Vordergrundfarbe von Inlinehinweisen für Parameter",
"editorInlayHintForegroundTypes": "Vordergrundfarbe von Inlinehinweisen für Typen",
+ "editorLightBulbAiForeground": "Die Farbe, die für das KI-Symbol der Glühbirne verwendet wird.",
"editorLightBulbAutoFixForeground": "Die für das Aktionssymbol \"Automatische Glühbirnenkorrektur\" verwendete Farbe.",
"editorLightBulbForeground": "Die für das Aktionssymbol \"Glühbirne\" verwendete Farbe.",
"editorSelectionBackground": "Farbe der Editor-Auswahl.",
"editorSelectionForeground": "Farbe des gewählten Text für einen hohen Kontrast",
"editorSelectionHighlight": "Farbe für Bereiche mit dem gleichen Inhalt wie die Auswahl. Die Farbe darf nicht deckend sein, weil sie sonst die zugrunde liegenden Dekorationen verdeckt.",
"editorSelectionHighlightBorder": "Randfarbe für Bereiche, deren Inhalt der Auswahl entspricht.",
- "editorStickyScrollBackground": "Sticky scroll background color for the editor",
- "editorStickyScrollHoverBackground": "Sticky scroll on hover background color for the editor",
+ "editorStickyScrollBackground": "Hintergrundfarbe des fixierten Bildlaufs im Editor",
+ "editorStickyScrollBorder": "Rahmenfarbe des fixierten Bildlaufs im Editor",
+ "editorStickyScrollGutterBackground": "Hintergrundfarbe für den Bundsteg des fixierten Bildlaufs im Editor",
+ "editorStickyScrollHoverBackground": "Hintergrundfarbe des fixierten Bildlaufs beim Daraufzeigen im Editor",
+ "editorStickyScrollShadow": " Schattenfarbe des fixierten Bildlaufs im Editor",
"editorWarning.background": "Hintergrundfarbe für Warnungstext im Editor. Die Farbe darf nicht deckend sein, weil sie sonst die zugrunde liegenden Dekorationen verdeckt.",
"editorWarning.foreground": "Vordergrundfarbe von Warnungsunterstreichungen im Editor.",
"editorWidgetBackground": "Hintergrundfarbe von Editor-Widgets wie zum Beispiel Suchen/Ersetzen.",
"editorWidgetBorder": "Rahmenfarbe von Editorwigdets. Die Farbe wird nur verwendet, wenn für das Widget ein Rahmen verwendet wird und die Farbe nicht von einem Widget überschrieben wird.",
"editorWidgetForeground": "Vordergrundfarbe für Editorwidgets wie Suchen/Ersetzen.",
"editorWidgetResizeBorder": "Rahmenfarbe der Größenanpassungsleiste von Editorwigdets. Die Farbe wird nur verwendet, wenn für das Widget ein Größenanpassungsrahmen verwendet wird und die Farbe nicht von einem Widget außer Kraft gesetzt wird.",
- "errorBorder": "Randfarbe von Fehlerfeldern im Editor.",
- "errorForeground": "Allgemeine Vordergrundfarbe für Fehlermeldungen. Diese Farbe wird nur verwendet, wenn sie nicht durch eine Komponente überschrieben wird.",
+ "errorBorder": "Wenn festgelegt, wird die Farbe doppelter Unterstreichungen für Fehler im Editor angezeigt.",
"findMatchHighlight": "Farbe der anderen Suchergebnisse. Die Farbe darf nicht deckend sein, weil sie sonst die zugrunde liegenden Dekorationen verdeckt.",
"findMatchHighlightBorder": "Randfarbe der anderen Suchtreffer.",
+ "findMatchHighlightForeground": "Vordergrundfarbe der anderen Suchübereinstimmungen.",
"findRangeHighlight": "Farbe des Bereichs, der die Suche eingrenzt. Die Farbe darf nicht deckend sein, damit sie nicht die zugrunde liegenden Dekorationen verdeckt.",
"findRangeHighlightBorder": "Rahmenfarbe des Bereichs, der die Suche eingrenzt. Die Farbe darf nicht deckend sein, weil sie sonst die zugrunde liegenden Dekorationen verdeckt.",
- "focusBorder": "Allgemeine Rahmenfarbe für fokussierte Elemente. Diese Farbe wird nur verwendet, wenn sie nicht durch eine Komponente überschrieben wird.",
- "foreground": "Allgemeine Vordergrundfarbe. Diese Farbe wird nur verwendet, wenn sie nicht durch eine Komponente überschrieben wird.",
- "highlight": "Vordergrundfarbe der Liste/Struktur zur Trefferhervorhebung beim Suchen innerhalb der Liste/Struktur.",
- "hintBorder": "Randfarbe der Hinweisfelder im Editor.",
+ "hintBorder": "Wenn festgelegt, wird die Farbe doppelter Unterstreichungen für Hinweise im Editor angezeigt.",
"hoverBackground": "Hintergrundfarbe des Editor-Mauszeigers.",
"hoverBorder": "Rahmenfarbe des Editor-Mauszeigers.",
"hoverForeground": "Vordergrundfarbe des Editor-Mauszeigers",
"hoverHighlight": "Hervorhebung unterhalb des Worts, für das ein Hoverelement angezeigt wird. Die Farbe darf nicht deckend sein, weil sie sonst die zugrunde liegenden Dekorationen verdeckt.",
- "iconForeground": "Die für Symbole in der Workbench verwendete Standardfarbe.",
- "infoBorder": "Randfarbe der Infofelder im Editor.",
+ "infoBorder": "Wenn festgelegt, wird die Farbe doppelter Unterstreichungen für Infos im Editor angezeigt.",
+ "mergeBorder": "Rahmenfarbe für Kopfzeilen und die Aufteilung in Inline-Mergingkonflikten.",
+ "mergeCommonContentBackground": "Hintergrund des Inhalts gemeinsamer Vorgängerelemente in Inlinezusammenführungskonflikt. Die Farbe darf nicht deckend sein, weil sie sonst die zugrunde liegenden Dekorationen verdeckt.",
+ "mergeCommonHeaderBackground": "Headerhintergrund für gemeinsame Vorgängerelemente in Inlinezusammenführungskonflikten. Die Farbe darf nicht deckend sein, weil sie sonst die zugrunde liegenden Dekorationen verdeckt.",
+ "mergeCurrentContentBackground": "Hintergrund für den aktuellen Inhalt in Inlinezusammenführungskonflikten. Die Farbe darf nicht deckend sein, weil sie sonst die zugrunde liegenden Dekorationen verdeckt.",
+ "mergeCurrentHeaderBackground": "Hintergrund des aktuellen Headers in Inlinezusammenführungskonflikten. Die Farbe darf nicht deckend sein, weil sie sonst die zugrunde liegenden Dekorationen verdeckt.",
+ "mergeIncomingContentBackground": "Hintergrund für eingehenden Inhalt in Inlinezusammenführungskonflikten. Die Farbe darf nicht deckend sein, weil sie sonst die zugrunde liegenden Dekorationen verdeckt.",
+ "mergeIncomingHeaderBackground": "Hintergrund für eingehende Header in Inlinezusammenführungskonflikten. Die Farbe darf nicht deckend sein, weil sie sonst die zugrunde liegenden Dekorationen verdeckt.",
+ "overviewRulerCommonContentForeground": "Hintergrund des Übersichtslineals des gemeinsamen übergeordneten Elements bei Inlinezusammenführungskonflikten.",
+ "overviewRulerCurrentContentForeground": "Aktueller Übersichtslineal-Vordergrund für Inline-Mergingkonflikte.",
+ "overviewRulerFindMatchForeground": "Übersichtslinealmarkerfarbe für das Suchen von Übereinstimmungen. Die Farbe darf nicht deckend sein, weil sie sonst die zugrunde liegenden Dekorationen verdeckt.",
+ "overviewRulerIncomingContentForeground": "Eingehender Übersichtslineal-Vordergrund für Inline-Mergingkonflikte.",
+ "overviewRulerSelectionHighlightForeground": "Übersichtslinealmarkerfarbe für das Hervorheben der Auswahl. Die Farbe darf nicht deckend sein, weil sie sonst die zugrunde liegenden Dekorationen verdeckt.",
+ "problemsErrorIconForeground": "Die Farbe, die für das Problemfehlersymbol verwendet wird.",
+ "problemsInfoIconForeground": "Die Farbe, die für das Probleminfosymbol verwendet wird.",
+ "problemsWarningIconForeground": "Die Farbe, die für das Problemwarnsymbol verwendet wird.",
+ "snippetFinalTabstopHighlightBackground": "Hervorhebungs-Hintergrundfarbe des letzten Tabstopps eines Codeschnipsels.",
+ "snippetFinalTabstopHighlightBorder": "Rahmenfarbe zur Hervorhebung des letzten Tabstopps eines Codeschnipsels.",
+ "snippetTabstopHighlightBackground": "Hervorhebungs-Hintergrundfarbe eines Codeschnipsel-Tabstopps.",
+ "snippetTabstopHighlightBorder": "Hervorhebungs-Rahmenfarbe eines Codeschnipsel-Tabstopps.",
+ "statusBarBackground": "Hintergrundfarbe der Hoverstatusleiste des Editors.",
+ "toolbarActiveBackground": "Symbolleistenhintergrund beim Halten der Maus über Aktionen",
+ "toolbarHoverBackground": "Symbolleistenhintergrund beim Bewegen der Maus über Aktionen",
+ "toolbarHoverOutline": "Symbolleistengliederung beim Bewegen der Maus über Aktionen",
+ "warningBorder": "Wenn festgelegt, wird die Farbe doppelter Unterstreichungen für Warnungen im Editor angezeigt.",
+ "widgetBorder": "Die Rahmenfarbe von Widgets, z. B. Suchen/Ersetzen im Editor.",
+ "widgetShadow": "Schattenfarbe von Widgets wie zum Beispiel Suchen/Ersetzen innerhalb des Editors."
+ },
+ "vs/platform/theme/common/colors/inputColors": {
+ "buttonBackground": "Hintergrundfarbe der Schaltfläche.",
+ "buttonBorder": "Rahmenfarbe der Schaltfläche.",
+ "buttonForeground": "Vordergrundfarbe der Schaltfläche.",
+ "buttonHoverBackground": "Hintergrundfarbe der Schaltfläche, wenn darauf gezeigt wird.",
+ "buttonSecondaryBackground": "Hintergrundfarbe der sekundären Schaltfläche.",
+ "buttonSecondaryForeground": "Sekundäre Vordergrundfarbe der Schaltfläche.",
+ "buttonSecondaryHoverBackground": "Hintergrundfarbe der sekundären Schaltfläche beim Daraufzeigen.",
+ "buttonSeparator": "Farbe des Schaltflächentrennzeichens.",
+ "checkbox.background": "Hintergrundfarbe von Kontrollkästchenwidget.",
+ "checkbox.border": "Rahmenfarbe von Kontrollkästchenwidget.",
+ "checkbox.disabled.background": "Hintergrund eines deaktivierten Kontrollkästchens.",
+ "checkbox.disabled.foreground": "Vordergrund eines deaktivierten Kontrollkästchens.",
+ "checkbox.foreground": "Vordergrundfarbe von Kontrollkästchenwidget.",
+ "checkbox.select.background": "Hintergrundfarbe des Kontrollkästchenwidgets, wenn das Element ausgewählt ist, in dem es sich befindet.",
+ "checkbox.select.border": "Rahmenfarbe des Kontrollkästchenwidgets, wenn das Element ausgewählt ist, in dem es sich befindet.",
+ "dropdownBackground": "Hintergrund für Dropdown.",
+ "dropdownBorder": "Rahmen für Dropdown.",
+ "dropdownForeground": "Vordergrund für Dropdown.",
+ "dropdownListBackground": "Hintergrund für Dropdownliste.",
"inputBoxActiveOptionBorder": "Rahmenfarbe für aktivierte Optionen in Eingabefeldern.",
"inputBoxBackground": "Hintergrund für Eingabefeld.",
"inputBoxBorder": "Rahmen für Eingabefeld.",
@@ -1969,16 +2900,31 @@
"inputValidationWarningBackground": "Hintergrundfarbe bei der Eingabevalidierung für den Schweregrad der Warnung.",
"inputValidationWarningBorder": "Rahmenfarbe bei der Eingabevalidierung für den Schweregrad der Warnung.",
"inputValidationWarningForeground": "Vordergrundfarbe bei der Eingabevalidierung für den Schweregrad der Warnung.",
- "invalidItemForeground": "Vordergrundfarbe einer Liste/Struktur für ungültige Elemente, z.B. ein nicht ausgelöster Stamm im Explorer.",
"keybindingLabelBackground": "Die Hintergrundfarbe der Tastenbindungsbeschriftung. Die Tastenbindungsbeschriftung wird verwendet, um eine Tastenkombination darzustellen.",
"keybindingLabelBorder": "Die Rahmenfarbe der Tastenbindungsbeschriftung. Die Tastenbindungsbeschriftung wird verwendet, um eine Tastenkombination darzustellen.",
"keybindingLabelBottomBorder": "Die Rahmenfarbe der Schaltfläche der Tastenbindungsbeschriftung. Die Tastenbindungsbeschriftung wird verwendet, um eine Tastenkombination darzustellen.",
"keybindingLabelForeground": "Die Vordergrundfarbe der Tastenbindungsbeschriftung. Die Tastenbindungsbeschriftung wird verwendet, um eine Tastenkombination darzustellen.",
+ "radioActiveBorder": "Rahmenfarbe der aktiven Radiooption",
+ "radioActiveForeground": "Vordergrundfarbe für \"aktive Radiooption\"",
+ "radioBackground": "Hintergrundfarbe für \"aktive Radiooption\"",
+ "radioHoverBackground": "Hintergrundfarbe der inaktiven aktiven Radiooption, wenn darauf gezeigt wird.",
+ "radioInactiveBackground": "Hintergrundfarbe für „inaktive Radiooption“",
+ "radioInactiveBorder": "Rahmenfarbe der inaktiven Radiooption",
+ "radioInactiveForeground": "Vordergrundfarbe für „inaktive Radiooption“"
+ },
+ "vs/platform/theme/common/colors/listColors": {
+ "editorActionListBackground": "Hintergrundfarbe der Aktionenliste.",
+ "editorActionListFocusBackground": "Die Hintergrundfarbe der Aktionenliste für das fokussierte Element.",
+ "editorActionListFocusForeground": "Die Hintergrundfarbe der Aktionenliste für das fokussierte Element.",
+ "editorActionListForeground": "Vordergrundfarbe der Aktionenliste.",
+ "highlight": "Vordergrundfarbe der Liste/Struktur zur Trefferhervorhebung beim Suchen innerhalb der Liste/Struktur.",
+ "invalidItemForeground": "Vordergrundfarbe einer Liste/Struktur für ungültige Elemente, z.B. ein nicht ausgelöster Stamm im Explorer.",
"listActiveSelectionBackground": "Hintergrundfarbe der Liste/Struktur für das ausgewählte Element, wenn die Liste/Struktur aktiv ist. Eine aktive Liste/Struktur hat Tastaturfokus, eine inaktive hingegen nicht.",
"listActiveSelectionForeground": "Vordergrundfarbe der Liste/Struktur für das ausgewählte Element, wenn die Liste/Struktur aktiv ist. Eine aktive Liste/Struktur hat Tastaturfokus, eine inaktive hingegen nicht.",
"listActiveSelectionIconForeground": "Vordergrundfarbe des Symbols der Liste/Struktur für das ausgewählte Element, wenn die Liste/Struktur aktiv ist. Eine aktive Liste/Struktur hat Tastaturfokus, eine inaktive hingegen nicht.",
"listDeemphasizedForeground": "Hintergrundfarbe für nicht hervorgehobene Listen-/Strukturelemente.",
- "listDropBackground": "Drag & Drop-Hintergrund der Liste/Struktur, wenn Elemente mithilfe der Maus verschoben werden.",
+ "listDropBackground": "Hintergrund für Drag & Drop auflisten/strukturieren, wenn Elemente bei Verwendung der Maus über Elemente verschoben werden.",
+ "listDropBetweenBackground": "Rahmenfarbe für Drag & Drop auflisten/strukturieren, wenn Elemente bei Verwendung der Maus zwischen Elementen verschoben werden.",
"listErrorForeground": "Vordergrundfarbe für Listenelemente, die Fehler enthalten.",
"listFilterMatchHighlight": "Hintergrundfarbe der gefilterten Übereinstimmung",
"listFilterMatchHighlightBorder": "Rahmenfarbe der gefilterten Übereinstimmung",
@@ -1999,82 +2945,77 @@
"listInactiveSelectionForeground": "Vordergrundfarbe der Liste/Struktur für das ausgewählte Element, wenn die Liste/Baumstruktur inaktiv ist. Eine aktive Liste/Baumstruktur hat Tastaturfokus, eine inaktive hingegen nicht.",
"listInactiveSelectionIconForeground": "Vordergrundfarbe des Symbols der Liste/Struktur für das ausgewählte Element, wenn die Liste/Struktur inaktiv ist. Eine aktive Liste/Struktur hat Tastaturfokus, eine inaktive hingegen nicht.",
"listWarningForeground": "Vordergrundfarbe für Listenelemente, die Warnungen enthalten.",
+ "tableColumnsBorder": "Tabellenrahmenfarbe zwischen Spalten.",
+ "tableOddRowsBackgroundColor": "Hintergrundfarbe für ungerade Tabellenzeilen.",
+ "treeInactiveIndentGuidesStroke": "Strukturstrichfarbe für die Einzugslinien, die nicht aktiv sind.",
+ "treeIndentGuidesStroke": "Strukturstrichfarbe für die Einzugsführungslinien."
+ },
+ "vs/platform/theme/common/colors/menuColors": {
"menuBackground": "Hintergrundfarbe von Menüelementen.",
"menuBorder": "Rahmenfarbe von Menüs.",
"menuForeground": "Vordergrundfarbe von Menüelementen.",
"menuSelectionBackground": "Hintergrundfarbe des ausgewählten Menüelements im Menü.",
"menuSelectionBorder": "Rahmenfarbe des ausgewählten Menüelements im Menü.",
"menuSelectionForeground": "Vordergrundfarbe des ausgewählten Menüelements im Menü.",
- "menuSeparatorBackground": "Farbe eines Trenner-Menüelements in Menüs.",
- "mergeBorder": "Rahmenfarbe für Kopfzeilen und die Aufteilung in Inline-Mergingkonflikten.",
- "mergeCommonContentBackground": "Hintergrund des Inhalts gemeinsamer Vorgängerelemente in Inlinezusammenführungskonflikt. Die Farbe darf nicht deckend sein, weil sie sonst die zugrunde liegenden Dekorationen verdeckt.",
- "mergeCommonHeaderBackground": "Headerhintergrund für gemeinsame Vorgängerelemente in Inlinezusammenführungskonflikten. Die Farbe darf nicht deckend sein, weil sie sonst die zugrunde liegenden Dekorationen verdeckt.",
- "mergeCurrentContentBackground": "Hintergrund für den aktuellen Inhalt in Inlinezusammenführungskonflikten. Die Farbe darf nicht deckend sein, weil sie sonst die zugrunde liegenden Dekorationen verdeckt.",
- "mergeCurrentHeaderBackground": "Hintergrund des aktuellen Headers in Inlinezusammenführungskonflikten. Die Farbe darf nicht deckend sein, weil sie sonst die zugrunde liegenden Dekorationen verdeckt.",
- "mergeIncomingContentBackground": "Hintergrund für eingehenden Inhalt in Inlinezusammenführungskonflikten. Die Farbe darf nicht deckend sein, weil sie sonst die zugrunde liegenden Dekorationen verdeckt.",
- "mergeIncomingHeaderBackground": "Hintergrund für eingehende Header in Inlinezusammenführungskonflikten. Die Farbe darf nicht deckend sein, weil sie sonst die zugrunde liegenden Dekorationen verdeckt.",
+ "menuSeparatorBackground": "Farbe eines Trenner-Menüelements in Menüs."
+ },
+ "vs/platform/theme/common/colors/minimapColors": {
"minimapBackground": "Hintergrundfarbe der Minimap.",
"minimapError": "Minimapmarkerfarbe für Fehler",
"minimapFindMatchHighlight": "Minimap-Markerfarbe für gefundene Übereinstimmungen.",
"minimapForegroundOpacity": "Deckkraft von Vordergrundelementen, die in der Minimap gerendert werden. Beispiel: „#000000c0“ wird die Elemente mit einer Deckkraft von 75 % rendern.",
+ "minimapInfo": "Minimapmarkerfarbe für Informationen.",
"minimapSelectionHighlight": "Minimap-Markerfarbe für die Editorauswahl.",
"minimapSelectionOccurrenceHighlight": "Minimap-Markerfarbe für wiederholte Editorauswahlen.",
"minimapSliderActiveBackground": "Hintergrundfarbe des Minimap-Schiebereglers, wenn darauf geklickt wird.",
"minimapSliderBackground": "Hintergrundfarbe des Minimap-Schiebereglers.",
"minimapSliderHoverBackground": "Hintergrundfarbe des Minimap-Schiebereglers beim Daraufzeigen.",
- "overviewRuleWarning": "Minimapmarkerfarbe für Warnungen",
- "overviewRulerCommonContentForeground": "Hintergrund des Übersichtslineals des gemeinsamen übergeordneten Elements bei Inlinezusammenführungskonflikten.",
- "overviewRulerCurrentContentForeground": "Aktueller Übersichtslineal-Vordergrund für Inline-Mergingkonflikte.",
- "overviewRulerFindMatchForeground": "Übersichtslinealmarkerfarbe für das Suchen von Übereinstimmungen. Die Farbe darf nicht deckend sein, weil sie sonst die zugrunde liegenden Dekorationen verdeckt.",
- "overviewRulerIncomingContentForeground": "Eingehender Übersichtslineal-Vordergrund für Inline-Mergingkonflikte.",
- "overviewRulerSelectionHighlightForeground": "Übersichtslinealmarkerfarbe für das Hervorheben der Auswahl. Die Farbe darf nicht deckend sein, weil sie sonst die zugrunde liegenden Dekorationen verdeckt.",
+ "overviewRuleWarning": "Minimapmarkerfarbe für Warnungen"
+ },
+ "vs/platform/theme/common/colors/miscColors": {
+ "activityErrorBadge.background": "Hintergrundfarbe des Badges „Fehleraktivität“",
+ "activityErrorBadge.foreground": "Vordergrundfarbe des Badges “Fehleraktivität“",
+ "activityWarningBadge.background": "Hintergrundfarbe des Badges „Warnungsaktivität“",
+ "activityWarningBadge.foreground": "Vordergrundfarbe des Badges „Warnungsaktivität“",
+ "badgeBackground": "Hintergrundfarbe für Badge. Badges sind kurze Info-Texte, z.B. für Anzahl Suchergebnisse.",
+ "badgeForeground": "Vordergrundfarbe für Badge. Badges sind kurze Info-Texte, z.B. für Anzahl Suchergebnisse.",
+ "chartAxis": "Achsenfarbe für das Diagramm.",
+ "chartGuide": "Führungslinie für das Diagramm.",
+ "chartLine": "Linienfarbe für das Diagramm.",
+ "progressBarBackground": "Hintergrundfarbe des Fortschrittbalkens, der für zeitintensive Vorgänge angezeigt werden kann.",
+ "sashActiveBorder": "Rahmenfarbe aktiver Trennleisten.",
+ "scrollbarBackground": "Hintergrundfarbe der Scrollleiste.",
+ "scrollbarShadow": "Schatten der Scrollleiste, um anzuzeigen, dass die Ansicht gescrollt wird.",
+ "scrollbarSliderActiveBackground": "Hintergrundfarbe des Schiebereglers, wenn darauf geklickt wird.",
+ "scrollbarSliderBackground": "Hintergrundfarbe vom Scrollbar-Schieber",
+ "scrollbarSliderHoverBackground": "Hintergrundfarbe des Schiebereglers, wenn darauf gezeigt wird."
+ },
+ "vs/platform/theme/common/colors/quickpickColors": {
"pickerBackground": "Schnellauswahl der Hintergrundfarbe. Im Widget für die Schnellauswahl sind Auswahlelemente wie die Befehlspalette enthalten.",
"pickerForeground": "Vordergrundfarbe der Schnellauswahl. Im Widget für die Schnellauswahl sind Auswahlelemente wie die Befehlspalette enthalten.",
"pickerGroupBorder": "Schnellauswahlfarbe für das Gruppieren von Rahmen.",
"pickerGroupForeground": "Schnellauswahlfarbe für das Gruppieren von Bezeichnungen.",
"pickerTitleBackground": "Hintergrundfarbe für den Titel der Schnellauswahl. Im Widget für die Schnellauswahl sind Auswahlelemente wie die Befehlspalette enthalten.",
- "problemsErrorIconForeground": "Die Farbe, die für das Problemfehlersymbol verwendet wird.",
- "problemsInfoIconForeground": "Die Farbe, die für das Probleminfosymbol verwendet wird.",
- "problemsWarningIconForeground": "Die Farbe, die für das Problemwarnsymbol verwendet wird.",
- "progressBarBackground": "Hintergrundfarbe des Fortschrittbalkens, der für zeitintensive Vorgänge angezeigt werden kann.",
"quickInput.list.focusBackground deprecation": "Verwenden Sie stattdessen \"quickInputList.focusBackground\".",
"quickInput.listFocusBackground": "Die Hintergrundfarbe der Schnellauswahl für das fokussierte Element.",
"quickInput.listFocusForeground": "Die Hintergrundfarbe der Schnellauswahl für das fokussierte Element.",
- "quickInput.listFocusIconForeground": "Die Vordergrundfarbe des Symbols der Schnellauswahl für das fokussierte Element.",
- "sashActiveBorder": "Rahmenfarbe aktiver Trennleisten.",
- "scrollbarShadow": "Schatten der Scrollleiste, um anzuzeigen, dass die Ansicht gescrollt wird.",
- "scrollbarSliderActiveBackground": "Hintergrundfarbe des Schiebereglers, wenn darauf geklickt wird.",
- "scrollbarSliderBackground": "Hintergrundfarbe vom Scrollbar-Schieber",
- "scrollbarSliderHoverBackground": "Hintergrundfarbe des Schiebereglers, wenn darauf gezeigt wird.",
+ "quickInput.listFocusIconForeground": "Die Vordergrundfarbe des Symbols der Schnellauswahl für das fokussierte Element."
+ },
+ "vs/platform/theme/common/colors/searchColors": {
+ "search.resultsInfoForeground": "Farbe des Texts in der Abschlussmeldung des Such-Viewlets.",
"searchEditor.editorFindMatchBorder": "Rahmenfarbe der Abfrageübereinstimmungen des Such-Editors",
- "searchEditor.queryMatch": "Farbe der Abfrageübereinstimmungen des Such-Editors",
- "selectionBackground": "Hintergrundfarbe der Textauswahl in der Workbench (z.B. für Eingabefelder oder Textbereiche). Diese Farbe gilt nicht für die Auswahl im Editor.",
- "snippetFinalTabstopHighlightBackground": "Hervorhebungs-Hintergrundfarbe des letzten Tabstopps eines Codeschnipsels.",
- "snippetFinalTabstopHighlightBorder": "Rahmenfarbe zur Hervorhebung des letzten Tabstopps eines Codeschnipsels.",
- "snippetTabstopHighlightBackground": "Hervorhebungs-Hintergrundfarbe eines Codeschnipsel-Tabstopps.",
- "snippetTabstopHighlightBorder": "Hervorhebungs-Rahmenfarbe eines Codeschnipsel-Tabstopps.",
- "statusBarBackground": "Hintergrundfarbe der Hoverstatusleiste des Editors.",
- "tableColumnsBorder": "Tabellenrahmenfarbe zwischen Spalten.",
- "tableOddRowsBackgroundColor": "Hintergrundfarbe für ungerade Tabellenzeilen.",
- "textBlockQuoteBackground": "Hintergrundfarbe für Blockzitate im Text.",
- "textBlockQuoteBorder": "Rahmenfarbe für blockquote-Elemente im Text.",
- "textCodeBlockBackground": "Hintergrundfarbe für Codeblöcke im Text.",
- "textLinkActiveForeground": "Vordergrundfarbe für angeklickte Links im Text und beim Zeigen darauf mit der Maus.",
- "textLinkForeground": "Vordergrundfarbe für Links im Text.",
- "textPreformatForeground": "Vordergrundfarbe für vorformatierte Textsegmente.",
- "textSeparatorForeground": "Farbe für Text-Trennzeichen.",
- "toolbarActiveBackground": "Symbolleistenhintergrund beim Halten der Maus über Aktionen",
- "toolbarHoverBackground": "Symbolleistenhintergrund beim Bewegen der Maus über Aktionen",
- "toolbarHoverOutline": "Symbolleistengliederung beim Bewegen der Maus über Aktionen",
- "treeIndentGuidesStroke": "Strukturstrichfarbe für die Einzugsführungslinien.",
- "warningBorder": "Randfarbe der Warnfelder im Editor.",
- "widgetShadow": "Schattenfarbe von Widgets wie zum Beispiel Suchen/Ersetzen innerhalb des Editors."
+ "searchEditor.queryMatch": "Farbe der Abfrageübereinstimmungen des Such-Editors"
+ },
+ "vs/platform/theme/common/colorUtils": {
+ "transparecyRequired": "Diese Farbe muss transparent sein, oder der Inhalt wird verdeckt.",
+ "useDefault": "Standardfarbe verwenden."
},
"vs/platform/theme/common/iconRegistry": {
"iconDefinition.fontCharacter": "Das der Symboldefinition zugeordnete Schriftzeichen.",
"iconDefinition.fontId": "Die ID der zu verwendenden Schriftart. Sofern nicht festgelegt, wird die zuerst definierte Schriftart verwendet.",
"nextChangeIcon": "Symbol für den Wechsel zur nächsten Editor-Position.",
"previousChangeIcon": "Symbol für den Wechsel zur vorherigen Editor-Position.",
+ "schema.fontId.formatError": "Die Schriftart-ID darf nur Buchstaben, Ziffern, Unterstriche und Bindestriche enthalten.",
"widgetClose": "Symbol für Aktion zum Schließen in Widgets"
},
"vs/platform/theme/common/tokenClassificationRegistry": {
@@ -2102,7 +3043,7 @@
"operator": "Stil für Operatoren",
"parameter": "Stil für Parameter.",
"property": "Eigenschaftenstil",
- "readonly": "Stil für schreibgeschützte Symbole.",
+ "readonly": "Der Stil, der für schreibgeschützte Symbole verwendet werden soll.",
"regexp": "Stil für Ausdrücke",
"schema.fontStyle.error": "Der Schriftschnitt muss „kursiv“, „fett“, „unterstrichen“ oder „durchgestrichen“ oder eine Kombination daraus sein. Eine leere Zeichenfolge löscht alle Schriftschnitte.",
"schema.token.background.warning": "Tokenhintergrundfarben werden derzeit nicht unterstützt.",
@@ -2122,7 +3063,6 @@
"variable": "Stil für Variablen"
},
"vs/platform/undoRedo/common/undoRedoService": {
- "cancel": "Abbrechen",
"cannotResourceRedoDueToInProgressUndoRedo": "\"{0}\" konnte nicht wiederholt werden, weil bereits ein Vorgang zum Rückgängigmachen oder Wiederholen durchgeführt wird.",
"cannotResourceUndoDueToInProgressUndoRedo": "\"{0}\" konnte nicht rückgängig gemacht werden, weil bereits ein Vorgang zum Rückgängigmachen oder Wiederholen durchgeführt wird.",
"cannotWorkspaceRedo": "\"{0}\" konnte nicht in allen Dateien wiederholt werden. {1}",
@@ -2135,12 +3075,12 @@
"cannotWorkspaceUndoDueToInProgressUndoRedo": "\"{0}\" konnte nicht für alle Dateien rückgängig gemacht werden, weil bereits ein Vorgang zum Rückgängigmachen oder Wiederholen für \"{1}\" durchgeführt wird.",
"confirmDifferentSource": "Möchten Sie \"{0}\" rückgängig machen?",
"confirmDifferentSource.no": "Nein",
- "confirmDifferentSource.yes": "Ja",
+ "confirmDifferentSource.yes": "&&Ja",
"confirmWorkspace": "Möchten Sie \"{0}\" für alle Dateien rückgängig machen?",
"externalRemoval": "Die folgenden Dateien wurden geschlossen und auf dem Datenträger geändert: {0}.",
"noParallelUniverses": "Die folgenden Dateien wurden auf inkompatible Weise geändert: {0}.",
- "nok": "Datei rückgängig machen",
- "ok": "In {0} Dateien rückgängig machen"
+ "nok": "&&Datei rückgängig machen",
+ "ok": "&&In {0} Dateien rückgängig machen"
},
"vs/platform/update/common/update.config.contribution": {
"default": "Automatische Prüfung auf Aktualisierungen aktivieren. Der Code prüft automatisch und regelmäßig auf Aktualisierungen.",
@@ -2181,22 +3121,36 @@
"settingsSync.ignoredSettings": "Konfigurieren Sie die Einstellungen, die während der Synchronisierung ignoriert werden sollen.",
"settingsSync.keybindingsPerPlatform": "Synchronisieren Sie die Tastenzuordnungen für jede Plattform."
},
+ "vs/platform/userDataSync/common/userDataSyncLog": {
+ "userDataSyncLog": "Einstellungssynchronisierung"
+ },
"vs/platform/userDataSync/common/userDataSyncMachines": {
"error incompatible": "Die Computerdaten können nicht gelesen werden, weil die aktuelle Version nicht kompatibel ist. Aktualisieren Sie \"{0}\", und versuchen Sie es noch mal."
},
- "vs/platform/windows/electron-main/window": {
- "appCrashed": "Das Fenster ist abgestürzt.",
- "appCrashedDetail": "Entschuldigen Sie die Unannehmlichkeiten. Sie können das Fenster erneut öffnen und dort weitermachen, wo Sie aufgehört haben.",
- "appCrashedDetails": "Das Fenster ist abgestürzt (Ursache: „{0}“, Code: „{1}“)",
+ "vs/platform/userDataSync/common/userDataSyncResourceProvider": {
+ "incompatible sync data": "Die Synchronisierungsdaten können nicht analysiert werden, weil sie nicht mit der aktuellen Version kompatibel sind."
+ },
+ "vs/platform/windows/electron-main/windowImpl": {
+ "appGone": "Das Fenster wurde unerwartet beendet.",
+ "appGoneDetailEmptyWindow": "Wir entschuldigen uns für die Unannehmlichkeiten. Sie können ein neues leeres Fenster öffnen, um erneut zu starten.",
+ "appGoneDetailWorkspace": "Entschuldigen Sie die Unannehmlichkeiten. Sie können das Fenster erneut öffnen und dort weitermachen, wo Sie aufgehört haben.",
+ "appGoneDetails": "Das Fenster wurde unerwartet beendet (Ursache: \"{0}\", Code: \"{1}\")",
"appStalled": "Das Fenster reagiert nicht",
"appStalledDetail": "Sie können das Fenster erneut öffnen oder schließen oder weiterhin warten.",
"close": "&&Schließen",
"doNotRestoreEditors": "Editoren nicht wiederherstellen",
"hiddenMenuBar": "Sie können über die Alt-Taste weiterhin auf die Menüleiste zugreifen.",
+ "newWindow": "&&Neues Fenster",
"reopen": "&&Erneut öffnen",
"wait": "&&Weiterhin warten"
},
"vs/platform/windows/electron-main/windowsMainService": {
+ "allow": "&&Zulassen",
+ "cancel": "&&Abbrechen",
+ "confirmOpenDetail": "Der Pfad \"{0}\" verwendet einen nicht zulässigen Host. Wenn Sie dem Host nicht vertrauen, sollten Sie \"Abbrechen\" drücken.",
+ "confirmOpenMessage": "Der Host \"{0}\" wurde in der Liste der zulässigen Hosts nicht gefunden. Dennoch zulassen?",
+ "doNotAskAgain": "Host \"{0}\" dauerhaft zulassen",
+ "learnMore": "&&Weitere Informationen",
"ok": "&&OK",
"pathNotExistDetail": "Der Pfad \"{0}\" ist auf diesem Computer nicht vorhanden.",
"pathNotExistTitle": "Der Pfad ist nicht vorhanden.",
@@ -2206,11 +3160,11 @@
"vs/platform/workspace/common/workspace": {
"codeWorkspace": "Codearbeitsbereich"
},
- "vs/platform/workspace/common/workspaceTrust": {
- "trusted": "Vertrauenswürdig",
- "untrusted": "Eingeschränkter Modus"
- },
"vs/platform/workspaces/electron-main/workspacesHistoryMainService": {
+ "cancel": "&&Abbrechen",
+ "clearButtonLabel": "&&Löschen",
+ "confirmClearDetail": "Diese Aktion kann nicht rückgängig gemacht werden.",
+ "confirmClearRecentsMessage": "Möchten Sie alle zuletzt geöffneten Dateien und Arbeitsbereiche löschen?",
"newWindow": "Neues Fenster",
"newWindowDesc": "Öffnet ein neues Fenster.",
"recentFolders": "Zuletzt verwendete Ordner",
@@ -2223,6 +3177,28 @@
"workspaceOpenedDetail": "Der Arbeitsbereich ist bereits in einem anderen Fenster geöffnet. Schließen Sie zuerst das andere Fenster, und versuchen Sie anschließend noch mal.",
"workspaceOpenedMessage": "Der Arbeitsbereich \"{0}\" kann nicht gespeichert werden."
},
+ "vs/server/node/remoteExtensionHostAgentCli": {
+ "remotecli": "Remote-CLI"
+ },
+ "vs/server/node/serverEnvironmentService": {
+ "acceptLicenseTerms": "Falls festgelegt, akzeptiert der Benutzer die Serverlizenzbedingungen, und der Server wird ohne Benutzeraufforderung gestartet.",
+ "connection-token": "Ein Geheimnis, das in allen Anforderungen enthalten sein muss.",
+ "connection-token-file": "Pfad zu einer Datei, die das Verbindungstoken enthält.",
+ "default-folder": "Der Arbeitsbereichsordner, der geöffnet werden soll, wenn in der Browser-URL keine Eingabe angegeben wird. Ein relativer oder absoluter Pfad, der für das aktuelle Arbeitsverzeichnis aufgelöst wurde.",
+ "default-workspace": "Der Arbeitsbereich, der geöffnet werden soll, wenn in der Browser-URL keine Eingabe angegeben wird. Ein relativer oder absoluter Pfad, der für das aktuelle Arbeitsverzeichnis aufgelöst wurde.",
+ "host": "Der Hostname oder die IP-Adresse, auf die der Server lauschen soll. Wenn nicht festgelegt, wird standardmäßig „localhost“ verwendet.",
+ "port": "Der Port, auf den der Server lauschen soll. Wenn „0“ übergeben wird, wird ein zufälliger freier Port ausgewählt. Wenn ein Bereich im Format „num-num“ übergeben wird, wird ein freier Port aus dem Bereich (einschließlich Ende) ausgewählt.",
+ "reconnection-grace-time": "Überschreiben Sie das Karenzzeitfenster für die Wiederherstellung der Verbindung in Sekunden. Der Standardwert ist 10800 (3 Stunden).",
+ "server-base-path": "Der Pfad, unter dem die Webbenutzeroberfläche und der Codeserver bereitgestellt werden. Wird standardmäßig auf „/“ festgelegt.",
+ "serverDataDir": "Gibt das Verzeichnis an, in dem die Serverdaten gespeichert werden.",
+ "socket-path": "Der Pfad zu einer Socketdatei, auf die der Server lauschen soll.",
+ "start-server": "Starten Sie den Server beim Installieren oder Deinstallieren von Erweiterungen. Wird in Kombination mit „install-extension“, „install-builtin-extension“ und „uninstall-extension“ verwendet.",
+ "telemetry-level": "Legt die anfängliche Telemetrieebene fest. Gültige Ebenen sind: „off“, „crash“, „error“ und „all“. Wenn keine Angabe erfolgt, sendet der Server Telemetriedaten, bis ein Client eine Verbindung herstellt. Anschließend wird die Telemetrieeinstellung für Clients verwendet. Das Festlegen auf „off“ entspricht „--disable-telemetry“.",
+ "without-connection-token": "Wird ohne Verbindungstoken ausgeführt. Verwenden Sie dies nur, wenn die Verbindung auf andere Weise gesichert ist."
+ },
+ "vs/server/node/serverServices": {
+ "remoteExtensionLog": "Server"
+ },
"win32/i18n/messages": {
"AddContextMenuFiles": "Aktion \"Mit %1 öffnen\" dem Dateikontextmenü von Windows-Explorer hinzufügen",
"AddContextMenuFolders": "Aktion \"Mit %1 öffnen\" dem Verzeichniskontextmenü von Windows-Explorer hinzufügen",
@@ -2236,369 +3212,67 @@
"OpenWithCodeContextMenu": "M&it %1 öffnen",
"Other": "Andere:",
"RunAfter": "%1 nach der Installation ausführen",
- "SourceFile": "%1-Quelldatei"
- },
- "readme.md": {
- "LanguagePackTitle": "Sprachpaket bietet lokalisierte Benutzeroberfläche für VS Code.",
- "Usage": "Syntax",
- "displayLanguage": "Sie können die Standardsprache der Benutzeroberfläche außer Kraft setzen, indem Sie die VS Code-Anzeigesprache explizit über den Befehl \"Anzeigesprache konfigurieren\" festlegen.",
- "Command Palette": "Drücken Sie \"STRG+UMSCHALT+P\", um die Befehlspalette aufzurufen, und beginnen Sie mit der Eingabe von \"Anzeige\", um den Befehl \"Anzeigesprache konfigurieren\" zu filtern und anzuzeigen.",
- "ShowLocale": "Drücken Sie die EINGABETASTE, und eine Liste installierter Sprachen nach Gebietsschema wird angezeigt. Das aktuelle Gebietsschema ist hervorgehoben.",
- "SwtichUI": "Wählen Sie ein anderes Gebietsschema aus, um die Sprache der Benutzeroberfläche zu wechseln.",
- "DocLink": "Weitere Informationen finden Sie in der Dokumentation.",
- "Contributing": "Mitwirkende",
- "Feedback": "Um Feedback zur Verbesserung der Übersetzung zu übermitteln, erstellen Sie ein Issue im Repository \"vscode-loc\".",
- "LocPlatform": "Die Übersetzungszeichenfolgen werden in Microsoft Localization Platform verwaltet. Die Änderung kann nur in Microsoft Localization Platform durchgeführt und dann in das Repository \"vscode-loc\" exportiert werden. Der Pull Request wird daher im Repository \"vscode-loc\" nicht akzeptiert.",
- "LicenseTitle": "Lizenz",
- "LicenseMessage": "Der Quellcode und die Zeichenfolgen sind unter der MIT-Lizenz lizenziert.",
- "Credits": "Info",
- "Contributed": "Dieses Sprachpaket wurde durch Beiträge von der Community für die Community lokalisiert. Herzlichen Dank an die Mitwirkenden aus der Community, die dieses Paket verfügbar gemacht haben.",
- "TopContributors": "Wichtigste Mitwirkende:",
- "Contributors": "Mitwirkende:",
- "EnjoyLanguagePack": "Viel Spaß!"
- },
- "win32/i18n/Default": {
- "SetupAppTitle": "Setup",
- "SetupWindowTitle": "Setup – %1",
- "UninstallAppTitle": "Deinstallieren",
- "UninstallAppFullTitle": "%1 deinstallieren",
- "InformationTitle": "Informationen",
- "ConfirmTitle": "Bestätigen",
- "ErrorTitle": "Fehler",
- "SetupLdrStartupMessage": "Hiermit wird %1 installiert. Möchten Sie den Vorgang fortsetzen?",
- "LdrCannotCreateTemp": "Eine temporäre Datei konnte nicht erstellt werden. Die Installation wurde abgebrochen.",
- "LdrCannotExecTemp": "Eine Datei im temporären Verzeichnis kann nicht ausgeführt werden. Die Installation wurde abgebrochen.",
- "LastErrorMessage": "%1.%n%nFehler %2: %3",
- "SetupFileMissing": "Die Datei %1 fehlt im Installationsverzeichnis. Beheben Sie das Problem, oder beziehen Sie eine neue Kopie des Programms.",
- "SetupFileCorrupt": "Die Setupdateien sind beschädigt. Beziehen Sie eine neue Kopie des Programms.",
- "SetupFileCorruptOrWrongVer": "Die Setupdateien sind beschädigt oder nicht kompatibel mit dieser Version von Setup. Beheben Sie das Problem, oder beziehen Sie eine neue Kopie des Programms.",
- "InvalidParameter": "Ein ungültiger Parameter wurde in der Befehlszeile übergeben:%n%n%1",
- "SetupAlreadyRunning": "Setup wird bereits ausgeführt.",
- "WindowsVersionNotSupported": "Dieses Programm unterstützt nicht die Version von Windows, die auf Ihrem Computer ausgeführt wird.",
- "WindowsServicePackRequired": "Dieses Programm erfordert %1 Service Pack %2 oder höher.",
- "NotOnThisPlatform": "Dieses Programm kann unter %1 nicht ausgeführt werden.",
- "OnlyOnThisPlatform": "Dieses Programm muss unter %1 ausgeführt werden.",
- "OnlyOnTheseArchitectures": "Dieses Programm kann nur unter Versionen von Windows installiert werden, die für die folgenden Prozessorarchitekturen konzipiert wurden:%n%n%1",
- "MissingWOW64APIs": "Die Version von Windows, die Sie ausführen, enthält nicht die Funktionen, die von Setup zum Ausführen einer 64-Bit-Installation benötigt werden. Installieren Sie Service Pack %1, um dieses Problem zu beheben.",
- "WinVersionTooLowError": "Dieses Programm erfordert %1 Version %2 oder höher.",
- "WinVersionTooHighError": "Das Programm kann nicht unter %1 Version %2 oder höher installiert werde.",
- "AdminPrivilegesRequired": "Sie müssen als Administrator angemeldet sein, wenn Sie dieses Programm installieren.",
- "PowerUserPrivilegesRequired": "Sie müssen als Administrator oder als Mitglied der Gruppe \"Poweruser\" angemeldet sein, wenn Sie dieses Programm installieren.",
- "SetupAppRunningError": "Setup hat festgestellt, dass %1 zurzeit ausgeführt wird.%n%nSchließen Sie jetzt alle Instanzen, und klicken Sie dann auf \"OK\", um fortzufahren, oder auf \"Abbrechen\", um die Installation zu beenden.",
- "UninstallAppRunningError": "Die Deinstallation hat festgestellt, dass %1 zurzeit ausgeführt wird.%n%nSchließen Sie jetzt alle Instanzen, und klicken Sie dann auf \"OK\", um fortzufahren, oder auf \"Abbrechen\", um die Installation zu beenden.",
- "ErrorCreatingDir": "Setup konnte das Verzeichnis \"%1\" nicht erstellen.",
- "ErrorTooManyFilesInDir": "Eine Datei kann im Verzeichnis \"%1\" nicht erstellt werden, weil es zu viele Dateien enthält.",
- "ExitSetupTitle": "Setup beenden",
- "ExitSetupMessage": "Setup wurde nicht abgeschlossen. Wenn Sie die Installation jetzt beenden, wird das Programm nicht installiert.%n%nSie können Setup zu einem späteren Zeitpunkt erneut ausführen, um die Installation abzuschließen.%n%nSetup beenden?",
- "AboutSetupMenuItem": "&Info zum Setup...",
- "AboutSetupTitle": "Info zum Setup",
- "AboutSetupMessage": "%1 Version %2%n%3%n%n%1 Startseite:%n%4",
- "ButtonBack": "< &Zurück",
- "ButtonNext": "&Weiter >",
- "ButtonInstall": "&Installieren",
- "ButtonOK": "OK",
- "ButtonCancel": "Abbrechen",
- "ButtonYes": "&Ja",
- "ButtonYesToAll": "Ja für &alle",
- "ButtonNo": "&Nein",
- "ButtonNoToAll": "N&ein für alle",
- "ButtonFinish": "&Fertig stellen",
- "ButtonBrowse": "&Durchsuchen...",
- "ButtonWizardBrowse": "D&urchsuchen...",
- "ButtonNewFolder": "&Neuen Ordner erstellen",
- "SelectLanguageTitle": "Setupsprache auswählen",
- "SelectLanguageLabel": "Sprache auswählen, die während der Installation verwendet wird:",
- "ClickNext": "Klicken Sie auf \"Weiter\", um den Vorgang fortzusetzen, oder auf \"Abbrechen\", um Setup zu beenden.",
- "BrowseDialogTitle": "Ordner suchen",
- "BrowseDialogLabel": "Wählen Sie einen Ordner in der Liste unten aus, und klicken Sie dann auf \"OK\".",
- "NewFolderName": "Neuer Ordner",
- "WelcomeLabel1": "Willkommen beim Setup-Assistenten von [name]",
- "WelcomeLabel2": "Hiermit wird [name/ver] auf Ihrem Computer installiert.%n%nEs wird empfohlen, alle anderen Anwendungen zu schließen, bevor Sie fortfahren.",
- "WizardPassword": "Kennwort",
- "PasswordLabel1": "Die Installation ist durch ein Kennwort geschützt.",
- "PasswordLabel3": "Geben Sie das Kennwort an, und klicken Sie dann auf \"Weiter\", um fortzufahren. Für Kennwörter wird zwischen Groß-und Kleinschreibung unterschieden.",
- "PasswordEditLabel": "&Kennwort:",
- "IncorrectPassword": "Das eingegebene Kennwort ist falsch. Versuchen Sie es noch mal.",
- "WizardLicense": "Lizenzvereinbarung",
- "LicenseLabel": "Lesen Sie die folgenden wichtigen Informationen, bevor Sie fortfahren.",
- "LicenseLabel3": "Lesen Sie die folgenden Lizenzbedingungen. Sie müssen den Bedingungen dieser Vereinbarung zustimmen, bevor Sie die Installation fortsetzen können.",
- "LicenseAccepted": "Ich stimme der Vereinb&arung zu",
- "LicenseNotAccepted": "Ich &stimme der Vereinbarung nicht zu",
- "WizardInfoBefore": "Informationen",
- "InfoBeforeLabel": "Lesen Sie die folgenden wichtigen Informationen, bevor Sie fortfahren.",
- "InfoBeforeClickLabel": "Klicken Sie auf \"Weiter\", um mit der Installation fortzufahren.",
- "WizardInfoAfter": "Informationen",
- "InfoAfterLabel": "Lesen Sie die folgenden wichtigen Informationen, bevor Sie fortfahren.",
- "InfoAfterClickLabel": "Klicken Sie auf \"Weiter\", um mit der Installation fortzufahren.",
- "WizardUserInfo": "Benutzerinformationen",
- "UserInfoDesc": "Geben Sie Ihre Informationen ein.",
- "UserInfoName": "&Benutzername:",
- "UserInfoOrg": "&Organisation:",
- "UserInfoSerial": "&Seriennummer:",
- "UserInfoNameRequired": "Sie müssen einen Namen eingeben.",
- "WizardSelectDir": "Zielspeicherort auswählen",
- "SelectDirDesc": "Wo soll [name] installiert werden?",
- "SelectDirLabel3": "Setup installiert [name] im folgenden Ordner.",
- "SelectDirBrowseLabel": "Klicken Sie auf \"Weiter\", um fortzufahren. Wenn Sie einen anderen Ordner auswählen möchten, klicken Sie auf \"Durchsuchen\".",
- "DiskSpaceMBLabel": "Mindestens [mb] MB freier Speicherplatz ist auf dem Datenträger erforderlich.",
- "CannotInstallToNetworkDrive": "Setup kann die Installation nicht auf einem Netzlaufwerk ausführen.",
- "CannotInstallToUNCPath": "Setup kann die Installation nicht in einem UNC-Pfad ausführen.",
- "InvalidPath": "Sie müssen einen vollständigen Pfad mit Laufwerkbuchstaben eingeben; z.B. %n%nC:\\APP%n%n oder einen UNC-Pfad im Format %n%n\\\\server\\share",
- "InvalidDrive": "Das ausgewählte Laufwerk oder die UNC-Freigabe ist nicht vorhanden oder es kann kein Zugriff darauf erfolgen. Wählen Sie ein anderes Laufwerk oder eine andere UNC-Freigabe aus.",
- "DiskSpaceWarningTitle": "Nicht genügend Speicherplatz auf dem Datenträger.",
- "DiskSpaceWarning": "Setup benötigt mindestens %1 KB freien Speicherplatz für die Installation. Auf dem ausgewählten Laufwerk sind aber nur %2 KB verfügbar.%n%nMöchten Sie trotzdem fortfahren?",
- "DirNameTooLong": "Der Ordnername oder -pfad ist zu lang.",
- "InvalidDirName": "Der Ordnername ist ungültig.",
- "BadDirName32": "Ordnernamen dürfen keines der folgenden Zeichen enthalten: %n%n%1",
- "DirExistsTitle": "Der Ordner ist vorhanden.",
- "DirExists": "Der Ordner%n%n%1%n%nist bereits vorhanden. Möchten Sie trotzdem in diesem Ordner installieren?",
- "DirDoesntExistTitle": "Der Ordner ist nicht vorhanden.",
- "DirDoesntExist": "Der Ordner%n%n%1%n%nist nicht vorhanden. Soll der Ordner erstellt werden?",
- "WizardSelectComponents": "Komponenten auswählen",
- "SelectComponentsDesc": "Welche Komponenten sollen installiert werden?",
- "SelectComponentsLabel2": "Wählen Sie die zu installierenden Komponenten aus. Deaktivieren Sie die Komponenten, die Sie nicht installieren möchten. Klicken Sie auf \"Weiter\", wenn Sie zum Fortfahren bereit sind.",
- "FullInstallation": "Vollständige Installation",
- "CompactInstallation": "Kompakte Installation",
- "CustomInstallation": "Benutzerdefinierte Installation",
- "NoUninstallWarningTitle": "Komponenten sind vorhanden.",
- "NoUninstallWarning": "Setup hat festgestellt, dass die folgenden Komponenten bereits auf Ihrem Computer installiert sind:%n%n%1%n%nDurch das Deaktivieren dieser Komponenten werden diese nicht deinstalliert.%n%nMöchten Sie trotzdem fortfahren?",
- "ComponentSize1": "%1 KB",
- "ComponentSize2": "%1 MB",
- "ComponentsDiskSpaceMBLabel": "Für die aktuelle Auswahl sind mindestens [mb] MB Speicherplatz auf dem Datenträger erforderlich.",
- "WizardSelectTasks": "Weitere Aufgaben auswählen",
- "SelectTasksDesc": "Welche weiteren Aufgaben sollen ausgeführt werden?",
- "SelectTasksLabel2": "Wählen Sie die zusätzlichen Aufgaben aus, die Setup während der Installation von [name] ausführen soll, und klicken Sie dann auf \"Weiter\".",
- "WizardSelectProgramGroup": "Startmenüordner auswählen",
- "SelectStartMenuFolderDesc": "Wo soll Setup die Verknüpfungen des Programms platzieren?",
- "SelectStartMenuFolderLabel3": "Setup erstellt die Verknüpfungen des Programms im folgenden Startmenüordner.",
- "SelectStartMenuFolderBrowseLabel": "Klicken Sie auf \"Weiter\", um fortzufahren. Wenn Sie einen anderen Ordner auswählen möchten, klicken Sie auf \"Durchsuchen\".",
- "MustEnterGroupName": "Sie müssen einen Ordnernamen eingeben.",
- "GroupNameTooLong": "Der Ordnername oder -pfad ist zu lang.",
- "InvalidGroupName": "Der Ordnername ist ungültig.",
- "BadGroupName": "Der Ordnername darf keines der folgenden Zeichen enthalten: %n%n%1",
- "NoProgramGroupCheck2": "&Keinen Startmenüordner erstellen",
- "WizardReady": "Bereit für die Installation",
- "ReadyLabel1": "Setup ist nun bereitet, mit der Installation von [name] auf Ihrem Computer zu beginnen.",
- "ReadyLabel2a": "Klicken Sie auf \"Installieren\", um die Installation fortzusetzen, oder klicken Sie auf \"Zurück\", wenn Sie Einstellungen überprüfen oder ändern möchten.",
- "ReadyLabel2b": "Klicken Sie auf \"Installieren\", um die Installation fortzusetzen.",
- "ReadyMemoUserInfo": "Benutzerinformationen:",
- "ReadyMemoDir": "Zielspeicherort:",
- "ReadyMemoType": "Installationsart:",
- "ReadyMemoComponents": "Ausgewählte Komponenten:",
- "ReadyMemoGroup": "Startmenüordner:",
- "ReadyMemoTasks": "Weitere Aufgaben:",
- "WizardPreparing": "Die Installation wird vorbereitet.",
- "PreparingDesc": "Setup bereitet die Installation von [name] auf Ihrem Computer vor.",
- "PreviousInstallNotCompleted": "Die Installation/Entfernung eines vorherigen Programms wurde nicht abgeschlossen. Sie müssen den Computer zum Abschließen dieser Installation neu starten.%n%nNach dem Neustart des Computers führen Sie Setup erneut aus, um die Installation von [name] abzuschließen.",
- "CannotContinue": "Setup kann nicht fortgesetzt werden. Klicken Sie auf \"Abbrechen\", um Setup zu beenden.",
- "ApplicationsFound": "Die folgenden Anwendungen verwenden Dateien, die von Setup aktualisiert werden müssen. Es wird empfohlen, Setup das automatische Schließen dieser Anwendungen zu erlauben.",
- "ApplicationsFound2": "Die folgenden Anwendungen verwenden Dateien, die von Setup aktualisiert werden müssen. Es wird empfohlen, Setup das automatische Schließen dieser Anwendungen zu erlauben. Nach Abschluss der Installation versucht Setup, die Anwendungen neu zu starten.",
- "CloseApplications": "&Anwendungen automatisch schließen",
- "DontCloseApplications": "A&nwendungen nicht schließen",
- "ErrorCloseApplications": "Setup konnte nicht alle Programme automatisch schließen. Es wird empfohlen, alle Anwendungen zu schließen, die Dateien verwenden, die von Setup aktualisiert werden, bevor Sie den Vorgang fortsetzen.",
- "WizardInstalling": "Wird installiert.",
- "InstallingLabel": "Warten Sie, während Setup [name] auf Ihrem Computer installiert.",
- "FinishedHeadingLabel": "Der Setup-Assistent für [name] wird abgeschlossen.",
- "FinishedLabelNoIcons": "Setup hat die Installation von [name] auf Ihrem Computer abgeschlossen.",
- "FinishedLabel": "Das Setup hat die Installation von [Name] auf Ihrem Computer abgeschlossen. Sie können die Anwendung über das installierte Symbol starten.",
- "ClickFinish": "Klicken Sie auf \"Fertig stellen\", um Setup zu beenden.",
- "FinishedRestartLabel": "Setup muss den Computer neu starten, damit die Installation von [name] abgeschlossen werden kann. Soll der Computer jetzt neu gestartet werden?",
- "FinishedRestartMessage": "Setup muss den Computer neu starten, damit die Installation von [name] abgeschlossen werden kann.%n%nSoll der Computer jetzt neu gestartet werden?",
- "ShowReadmeCheck": "Ja, ich möchte die Infodatei anzeigen",
- "YesRadio": "&Ja, den Computer jetzt neu starten",
- "NoRadio": "&Nein, ich starte den Computer später neu",
- "RunEntryExec": "%1 ausführen",
- "RunEntryShellExec": "%1 anzeigen",
- "ChangeDiskTitle": "Setup benötigt den nächsten Datenträger.",
- "SelectDiskLabel2": "Legen Sie den Datenträger %1 ein, und klicken Sie auf \"OK\".%n%nWenn sich die Dateien auf diesem Datenträger in einem anderen als dem unten angezeigten Ordner befinden, geben Sie den richtigen Pfad ein, oder klicken Sie auf \"Durchsuchen\".",
- "PathLabel": "&Pfad:",
- "FileNotInDir2": "Die Datei \"%1\" wurde in \"%2\" nicht gefunden. Legen Sie den richtigen Datenträger ein, oder wählen Sie einen anderen Ordner aus.",
- "SelectDirectoryLabel": "Geben Sie den Speicherort des nächsten Datenträgers an.",
- "SetupAborted": "Setup wurde nicht abgeschlossen.%n%nBeheben Sie das Problem, und führen Sie Setup erneut aus.",
- "EntryAbortRetryIgnore": "Klicken Sie auf \"Wiederholen\", um es erneut zu versuchen, auf \"Ignorieren\", um den Vorgang trotzdem fortzusetzen, oder auf \"Abbrechen\", um die Installation abzubrechen.",
- "StatusClosingApplications": "Anwendungen werden geschlossen...",
- "StatusCreateDirs": "Verzeichnisse werden erstellt...",
- "StatusExtractFiles": "Dateien werden extrahiert...",
- "StatusCreateIcons": "Verknüpfungen werden erstellt...",
- "StatusCreateIniEntries": "INI-Einträge werden erstellt...",
- "StatusCreateRegistryEntries": "Registrierungseinträge werden erstellt...",
- "StatusRegisterFiles": "Dateien werden registriert...",
- "StatusSavingUninstall": "Die Deinstallationsinformationen werden gespeichert...",
- "StatusRunProgram": "Die Installation wird abgeschlossen...",
- "StatusRestartingApplications": "Anwendung werden erneut gestartet...",
- "StatusRollback": "Rollback der Änderungen...",
- "ErrorInternal2": "Interner Fehler: %1",
- "ErrorFunctionFailedNoCode": "Fehler von %1.",
- "ErrorFunctionFailed": "Fehler von %1. Code %2",
- "ErrorFunctionFailedWithMessage": "Fehler von %1. Code %2.%n%3",
- "ErrorExecutingProgram": "Die Datei kann nicht ausgeführt werden:%n%1",
- "ErrorRegOpenKey": "Fehler beim Öffnen des Registrierungsschlüssels:%n%1\\%2",
- "ErrorRegCreateKey": "Fehler beim Erstellen des Registrierungsschlüssels:%n%1\\%2",
- "ErrorRegWriteKey": "Fehler beim Schreiben in den Registrierungsschlüssel:%n%1\\%2",
- "ErrorIniEntry": "Fehler beim Erstellen des INI-Eintrags in der Datei \"%1\".",
- "FileAbortRetryIgnore": "Klicken Sie auf \"Wiederholen\", um es erneut zu versuchen, auf \"Ignorieren\", um diese Datei zu überspringen (nicht empfohlen), oder auf \"Abbrechen\", um die Installation abzubrechen.",
- "FileAbortRetryIgnore2": "Klicken Sie auf \"Wiederholen\", um es erneut zu versuchen, auf \"Ignorieren\", um den Vorgang trotzdem fortzusetzen (nicht empfohlen), oder auf \"Abbrechen\", um die Installation abzubrechen.",
- "SourceIsCorrupted": "Die Quelldatei ist fehlerhaft.",
- "SourceDoesntExist": "Die Quelldatei \"%1\" ist nicht vorhanden.",
- "ExistingFileReadOnly": "Die vorhandene Datei ist als schreibgeschützt markiert.%n%nKlicken Sie auf \"Wiederholen\", um das Schreibschutzattribut zu entfernen und es erneut zu versuchen, auf \"Ignorieren\", um diese Datei zu überspringen, oder auf \"Abbrechen\", um die Installation abzubrechen.",
- "ErrorReadingExistingDest": "Fehler beim Versuch, die vorhandene Datei zu lesen:",
- "FileExists": "Die Datei ist bereits vorhanden.%n%nSoll Sie von Setup überschrieben werden?",
- "ExistingFileNewer": "Die vorhandene Datei ist neuer als die Datei, die Setup installieren möchte. Es wird empfohlen, die vorhandene Datei beizubehalten.%n%nMöchten Sie die vorhandene Datei beibehalten?",
- "ErrorChangingAttr": "Fehler beim Versuch, die Attribute der vorhandenen Datei zu ändern:",
- "ErrorCreatingTemp": "Fehler beim Versuch, eine Datei im Zielverzeichnis zu erstellen:",
- "ErrorReadingSource": "Fehler beim Versuch, die Quelldatei zu lesen:",
- "ErrorCopying": "Fehler beim Versuch, eine Datei zu kopieren:",
- "ErrorReplacingExistingFile": "Fehler beim Versuch, die vorhandene Datei zu ersetzen:",
- "ErrorRestartReplace": "Fehler von \"RestartReplace\":",
- "ErrorRenamingTemp": "Fehler beim Versuch, eine Datei im Zielverzeichnis umzubenennen:",
- "ErrorRegisterServer": "Die DLL-/OCX-Datei kann nicht registriert werden: %1",
- "ErrorRegSvr32Failed": "Fehler von RegSvr32 mit dem Exitcode %1.",
- "ErrorRegisterTypeLib": "Die Typbibliothek kann nicht registriert werden: %1",
- "ErrorOpeningReadme": "Fehler beim Versuch, die Infodatei zu öffnen.",
- "ErrorRestartingComputer": "Setup konnte den Computer nicht neu starten. Führen Sie den Neustart manuell aus.",
- "UninstallNotFound": "Die Datei \"%1\" ist nicht vorhanden. Die Deinstallation kann nicht ausgeführt werden.",
- "UninstallOpenError": "Die Datei \"%1\" konnte nicht geöffnet werden. Die Deinstallation kann nicht ausgeführt werden.",
- "UninstallUnsupportedVer": "Die Deinstallationsprotokolldatei \"%1\" liegt in einem Format vor, das von dieser Version des Deinstallationsprogramms nicht erkannt wird. Die Deinstallation kann nicht ausgeführt werden.",
- "UninstallUnknownEntry": "Unbekannter Eintrag (%1) im Deinstallationsprotokoll.",
- "ConfirmUninstall": "Sind Sie sicher, dass Sie %1 vollständig löschen möchten? Erweiterungen und Einstellungen werden nicht gelöscht.",
- "UninstallOnlyOnWin64": "Diese Installation kann nur unter 64-Bit-Windows deinstalliert werden.",
- "OnlyAdminCanUninstall": "Diese Installation kann nur von einem Benutzer mit Administratorberechtigungen deinstalliert werden.",
- "UninstallStatusLabel": "Warten Sie, während %1 von Ihrem Computer entfernt wird.",
- "UninstalledAll": "%1 wurde erfolgreich von Ihrem Computer entfernt.",
- "UninstalledMost": "Die Deinstallation von %1 wurde abgeschlossen.%n%nEinige Elemente konnten nicht entfernt werden. Diese können manuell entfernt werden.",
- "UninstalledAndNeedsRestart": "Ihr Computer muss neu gestartet werden, damit die Deinstallation von %1 abgeschlossen werden kann.%n%nSoll der Computer jetzt neu gestartet werden?",
- "UninstallDataCorrupted": "Die Datei \"%1\" ist beschädigt. Kann nicht deinstalliert werden",
- "ConfirmDeleteSharedFileTitle": "Freigegebene Datei entfernen?",
- "ConfirmDeleteSharedFile2": "Das System zeigt an, dass die folgende freigegebene Datei nicht mehr von Programmen verwendet wird. Soll die Deinstallation diese freigegebene Datei entfernen?%n%nWenn Programme diese Datei noch verwenden und die Datei entfernt wird, funktionieren diese Programme ggf. nicht mehr ordnungsgemäß. Wenn Sie nicht sicher sind, wählen Sie \"Nein\" aus. Sie können die Datei problemlos im System belassen.",
- "SharedFileNameLabel": "Dateiname:",
- "SharedFileLocationLabel": "Speicherort:",
- "WizardUninstalling": "Deinstallationsstatus",
- "StatusUninstalling": "%1 wird deinstalliert...",
- "ShutdownBlockReasonInstallingApp": "%1 wird installiert.",
- "ShutdownBlockReasonUninstallingApp": "%1 wird deinstalliert.",
- "NameAndVersion": "%1 Version %2",
- "AdditionalIcons": "Zusätzliche Symbole:",
- "CreateDesktopIcon": "Desktopsymbol &erstellen",
- "CreateQuickLaunchIcon": "Schnellstartsymbol &erstellen",
- "ProgramOnTheWeb": "%1 im Web",
- "UninstallProgram": "%1 deinstallieren",
- "LaunchProgram": "%1 starten",
- "AssocFileExtension": "%1 der &Dateierweiterung \"%2\" zuordnen",
- "AssocingFileExtension": "%1 wird der Dateierweiterung \"%2\" zugeordnet...",
- "AutoStartProgramGroupDescription": "Start:",
- "AutoStartProgram": "%1 automatisch starten",
- "AddonHostProgramNotFound": "%1 wurde im von Ihnen ausgewählten Ordner nicht gefunden.%n%nMöchten Sie trotzdem fortfahren?"
- },
- "vscode/vscode/": {
- "FinishedLabel": "Das Setup hat die Installation von [Name] auf Ihrem Computer abgeschlossen. Sie können die Anwendung über die installierten Verknüpfungen starten.",
- "ConfirmUninstall": "Möchten Sie \"%1\" und alle zugehörigen Komponenten vollständig entfernen?",
- "AdditionalIcons": "Zusätzliche Symbole:",
- "CreateDesktopIcon": "Desktopsymbol &erstellen",
- "CreateQuickLaunchIcon": "Schnellstartsymbol &erstellen",
- "AddContextMenuFiles": "Aktion \"Mit %1 öffnen\" dem Dateikontextmenü von Windows-Explorer hinzufügen",
- "AddContextMenuFolders": "Aktion \"Mit %1 öffnen\" dem Verzeichniskontextmenü von Windows-Explorer hinzufügen",
- "AssociateWithFiles": "%1 als Editor für unterstützte Dateitypen registrieren",
- "AddToPath": "Zu PATH hinzufügen (Neustart der Shell erforderlich)",
- "RunAfter": "%1 nach der Installation ausführen",
- "Other": "Andere:",
"SourceFile": "%1-Quelldatei",
- "OpenWithCodeContextMenu": "M&it %1 öffnen"
+ "UpdatingVisualStudioCode": "Visual Studio-Code wird aktualisiert..."
},
"vs/code/electron-main/app": {
"cancel": "&&Nein",
"confirmOpenDetail": "Wenn Sie diese Anforderung nicht initiiert haben, handelt es sich möglicherweise um einen Angriffsversuch auf Ihr System. Wenn Sie keine explizite Aktion zum Initiieren dieser Anforderung durchgeführt haben, drücken Sie \"Nein\".",
- "confirmOpenMessage": "Eine externe Anwendung möchte \"{0}\" in {1} öffnen. Möchten Sie diese Datei oder diesen Ordner öffnen?",
- "open": "&&Ja",
- "trace.detail": "Erstellen Sie ein Issue, und fügen Sie die folgende Datei manuell an:\r\n{0}",
- "trace.message": "Die Ablaufverfolgung wurde erfolgreich erstellt.",
- "trace.ok": "&&OK"
+ "confirmOpenMessageFileOrFolder": "Eine externe Anwendung möchte \"{0}\" in {1} öffnen. Möchten Sie diese Datei oder diesen Ordner öffnen?",
+ "confirmOpenMessageFolder": "Eine externe Anwendung möchte \"{0}\" in {1}öffnen. Möchten Sie diesen Ordner öffnen?",
+ "confirmOpenMessageWorkspace": "Eine externe Anwendung möchte \"{0}\" in {1}öffnen. Möchten Sie diese Arbeitsbereichsdatei öffnen?",
+ "doNotAskAgainLocal": "Öffnen lokaler Pfade ohne Nachfrage zulassen",
+ "doNotAskAgainRemote": "Öffnen von Remotepfaden ohne Nachfrage zulassen",
+ "open": "&&Ja"
},
"vs/code/electron-main/main": {
"close": "&&Schließen",
- "secondInstanceAdmin": "Eine zweite Instanz von {0} wird bereits als Administrator ausgeführt.",
+ "mainLog": "Haupt",
+ "secondInstanceAdmin": "Eine andere Instanz von {0} wird bereits als Administrator ausgeführt.",
"secondInstanceAdminDetail": "Schließen Sie die andere Instanz, und versuchen Sie es erneut.",
"secondInstanceNoResponse": "Eine andere Instanz von {0} läuft, reagiert aber nicht",
"secondInstanceNoResponseDetail": "Schließen Sie alle anderen Instanzen, und versuchen Sie es erneut.",
"startupDataDirError": "Programmbenutzerdaten können nicht geschrieben werden.",
- "startupUserDataAndExtensionsDirErrorDetail": "{0}\r\n\r\nStellen Sie sicher, dass in die folgenden Verzeichnisse geschrieben werden kann:\r\n\r\n{1}"
- },
- "vs/code/electron-sandbox/issue/issueReporterMain": {
- "bugDescription": "Geben Sie an, welche Schritte ausgeführt werden müssen, um das Problem zuverlässig zu reproduzieren. Was sollte geschehen, und was ist stattdessen geschehen? Wir unterstützen GitHub Flavored Markdown. Sie können während der Vorschau in GitHub Ihr Problem bearbeiten und Screenshots hinzufügen.",
- "bugReporter": "Fehlerbericht",
- "closed": "Geschlossen",
- "createOnGitHub": "In GitHub erstellen",
- "description": "Beschreibung",
- "disabledExtensions": "Erweiterungen sind deaktiviert.",
- "extension": "Eine Erweiterung",
- "featureRequest": "Featureanforderung",
- "featureRequestDescription": "Beschreiben Sie die Funktion, die Sie sehen möchten. Wir unterstützen GitHub-Markdown. Sie können in der GitHub-Preview ihr Problem bearbeiten und Screenshots hinzufügen.",
- "hide": "Ausblenden",
- "loadingData": "Daten werden geladen...",
- "marketplace": "Marketplace für Erweiterungen",
- "noCurrentExperiments": "Keine aktuellen Experimente.",
- "noSimilarIssues": "Keine ähnlichen Probleme gefunden",
- "open": "Öffnen",
- "pasteData": "Wir haben die erforderlichen Daten in die Zwischenablage geschrieben, da sie zu groß zum Senden waren. Fügen Sie sie ein.",
- "performanceIssue": "Leistungsproblem",
- "performanceIssueDesciption": "Wann ist dieses Leistungsproblem aufgetreten? Tritt es beispielsweise beim Start oder nach einer bestimmten Reihe von Aktionen auf? Wir unterstützen GitHub Flavored Markdown. Sie können während der Vorschau in GitHub Ihr Problem bearbeiten und Screenshots hinzufügen.",
- "previewOnGitHub": "Vorschau in GitHub",
- "rateLimited": "GitHub-Abfragebeschränkung überschritten. Bitte warten.",
- "selectSource": "Quelle auswählen",
- "show": "Anzeigen",
- "similarIssues": "Ähnliche Probleme",
- "stepsToReproduce": "Schritte für Reproduktion",
- "unknown": "Nicht bekannt",
- "vscode": "Visual Studio Code"
+ "startupUserDataAndExtensionsDirErrorDetail": "{0}\r\n\r\nStellen Sie sicher, dass in die folgenden Verzeichnisse geschrieben werden kann:\r\n\r\n{1}",
+ "statusWarning": "Warnung: Das --status-Argument kann nur verwendet werden, wenn {0} bereits ausgeführt wird. Führen Sie es erneut aus, nachdem {0} gestartet wurde."
},
- "vs/code/electron-sandbox/issue/issueReporterPage": {
- "chooseExtension": "Erweiterung",
- "completeInEnglish": "Füllen Sie das Formular auf Englisch aus.",
- "descriptionEmptyValidation": "Eine Beschreibung ist erforderlich.",
- "details": "Geben Sie Details ein.",
- "disableExtensions": "erneutem Laden des Fensters mit deaktivierten Erweiterungen",
- "disableExtensionsLabelText": "Versuchen Sie, das Problem nach {0} zu reproduzieren. Wenn das Problem nur bei aktiven Erweiterungen reproduziert werden kann, besteht wahrscheinlich ein Problem bei einer Erweiterung.",
- "extensionWithNoBugsUrl": "Der Issue-Reporter kann keine Issues für diese Erweiterung erstellen, da keine URL für die Meldung von Problemen angegeben ist. Bitte sehen Sie auf der Marketplace-Seite dieser Erweiterung nach, ob andere Informationen verfügbar sind.",
- "extensionWithNonstandardBugsUrl": "Der Problemreporter kann keine Issues für diese Erweiterung erstellen. Bitte besuchen Sie {0}, um ein Problem zu melden.",
- "issueSourceEmptyValidation": "Eine Problemquelle ist erforderlich.",
- "issueSourceLabel": "Einreichen für",
- "issueTitleLabel": "Titel",
- "issueTitleRequired": "Geben Sie einen Titel ein.",
- "issueTypeLabel": "Typ:",
- "sendExperiments": "A/B-Experimentinformationen einschließen",
- "sendExtensions": "Meine aktivierten Erweiterungen einschließen",
- "sendProcessInfo": "Meine derzeit ausgeführten Prozesse einschließen",
- "sendSystemInfo": "Meine Systeminformationen einschließen",
- "sendWorkspaceInfo": "Metadaten zu meinem Arbeitsbereich einschließen",
- "show": "Anzeigen",
- "titleEmptyValidation": "Ein Titel ist erforderlich.",
- "titleLengthValidation": "Der Titel ist zu lang."
+ "vs/code/electron-utility/sharedProcess/sharedProcessMain": {
+ "networkk": "Netzwerk",
+ "sharedLog": "Freigegeben"
},
- "vs/code/electron-sandbox/processExplorer/processExplorerMain": {
- "copy": "Kopieren",
- "copyAll": "Alles kopieren",
- "cpu": "CPU (%)",
- "debug": "Debuggen",
- "forceKillProcess": "Prozessbeendigung erzwingen",
- "killProcess": "Prozess beenden",
- "memory": "Arbeitsspeicher (MB)",
- "name": "Prozessname",
- "pid": "PID"
+ "vs/code/node/cliProcessMain": {
+ "cli": "CLI"
},
"vs/workbench/api/browser/mainThreadAuthentication": {
- "accountLastUsedDate": "Letzte Verwendung dieses Kontos: {0}",
- "allow": "Zulassen",
+ "addClientRegistrationDetails": "Hinzufügen von Clientregistrierungsdetails",
+ "allow": "&&Zulassen",
"cancel": "Abbrechen",
+ "clientIdPlaceholder": "OAuth-Client-ID (azye39d...)",
+ "clientIdPrompt": "Geben Sie eine vorhandene Client-ID ein, die mit den folgenden Umleitungs-URLs registriert wurde: http://127.0.0.1:33418, https://vscode.dev/redirect",
+ "clientIdRequired": "Client-ID ist erforderlich.",
+ "clientSecretPlaceholder": "Geheimer OAuth-Clientschlüssel (wer32o50f...) oder leer lassen",
+ "clientSecretPrompt": "(optional) Geben Sie einen vorhandenen geheimen Clientschlüssel ein, der der Client-ID „{0}“ zugeordnet ist, oder lassen Sie dieses Feld leer",
"confirmLogin": "Die Erweiterung \"{0}\" möchte sich mit {1} anmelden.",
"confirmRelogin": "Die Erweiterung \"{0}\" möchte, dass Sie sich mit {1} neuanmelden.",
- "manageExtensions": "Wählen Sie die Erweiterungen aus, die auf dieses Konto zugreifen können.",
- "manageTrustedExtensions": "Vertrauenswürdige Erweiterungen verwalten",
- "manageTrustedExtensions.cancel": "Abbrechen",
- "noTrustedExtensions": "Dieses Konto wurde noch von keiner Erweiterung verwendet.",
- "notUsed": "Hat dieses Konto nicht verwendet",
- "signOut": "Abmelden",
- "signOutMessage": "Das Konto '{0}' wurde verwendet von: \r\n\r\n{1}\r\n\r\n Von diesen Erweiterungen abmelden?",
- "signOutMessageSimple": "Von \"{0}\" abmelden?",
- "signedOut": "Die Abmeldung war erfolgreich."
+ "copyAndContinue": "Kopieren und Fortfahren",
+ "dcrCopyUrlsAndProceed": "URIs kopieren und fortfahren",
+ "dcrFailedToCopy": "Fehler beim Kopieren der Umleitungs-URIs in die Zwischenablage.",
+ "dcrNotSupported": "Dynamische Clientregistrierung wird nicht unterstützt",
+ "dcrNotSupportedDetail": "Der Autorisierungsserver „{0}“ unterstützt keine automatische Clientregistrierung. Möchten Sie fortfahren, indem Sie manuell eine Clientregistrierung (Client-ID) bereitstellen?\r\n\r\nHinweis: Stellen Sie beim Registrieren Ihrer OAuth-Anwendung sicher, dass Sie diese Umleitungs-URLs einschließen:\r\n{1}",
+ "deviceCodeDetail": "Ihr Code: {0}\r\n\r\nUm die Authentifizierung abzuschließen, navigieren Sie zu {1} und geben Sie den obigen Code ein.",
+ "deviceCodeTitle": "Authentifizierung des Gerätecodes",
+ "failedToOpenUri": "Fehler beim Öffnen von {0}",
+ "incorrectAccount": "Falsches Konto erkannt",
+ "incorrectAccountDetail": "Das ausgewählte Konto „{0}“ stimmt nicht mit dem angeforderten Konto „{1}“ überein.",
+ "keep": "{0} beibehalten",
+ "learnMore": "Weitere Informationen",
+ "loginWith": "Mit {0} anmelden",
+ "no": "Nein",
+ "yes": "Ja"
+ },
+ "vs/workbench/api/browser/mainThreadChatSessions": {
+ "chatEditorContributionName": "{0}",
+ "interruptActiveResponse": "Möchten Sie die aktive Sitzung wirklich unterbrechen?"
},
"vs/workbench/api/browser/mainThreadCLICommands": {
"cannot be installed": "Die Erweiterung \"{0}\" kann nicht installiert werden, weil sie gemäß der Deklaration in diesem Setup nicht ausgeführt werden soll."
@@ -2607,7 +3281,11 @@
"commentsViewIcon": "Ansichtssymbol der Kommentaransicht."
},
"vs/workbench/api/browser/mainThreadCustomEditors": {
- "defaultEditLabel": "Bearbeiten"
+ "defaultEditLabel": "Bearbeiten",
+ "vetoExtHostRestart": "Ein für '{0}' bereitgestellter Editor für die Erweiterung ist noch geöffnet, der andernfalls geschlossen würde."
+ },
+ "vs/workbench/api/browser/mainThreadEditSessionIdentityParticipant": {
+ "timeout.onWillCreateEditSessionIdentity": "OnWillCreateEditSessionIdentity-Ereignis nach 10000 ms abgebrochen"
},
"vs/workbench/api/browser/mainThreadExtensionService": {
"disabledDep": "Erweiterung \"{0}\" kann nicht aktiviert werden, da sie von der deaktivierten Erweiterung \"{1}\" abhängig ist. Möchten Sie die Erweiterung aktivieren und das Fenster neu laden?",
@@ -2618,12 +3296,12 @@
"notSupportedInWorkspace": "Die Erweiterung \"{0}\" kann nicht aktiviert werden, da sie von der Erweiterung \"{1}\" abhängig ist, die im aktuellen Arbeitsbereich nicht unterstützt wird.",
"reload": "Fenster erneut laden",
"reload window": "Erweiterung '{0}' kann nicht aktiviert werden, da sie von der nicht geladenen Erweiterung '{1}' abhängig ist. Zum Laden der Erweiterung das Fenster erneut laden?",
- "restrictedMode": "Die Erweiterung \"{0}\" kann nicht aktiviert werden, da sie von der Erweiterung \"{1}\" abhängig ist, die im eingeschränkten Modus nicht unterstützt wird.",
- "uninstalledDep": "Erweiterung '{0}' kann nicht aktiviert werden, da sie von der nicht installierten Erweiterung '{1}' abhängig ist. Erweiterung installieren und das Fenster neu laden?",
+ "restrictedMode": "Erweiterung '{0}' kann nicht aktiviert werden, da sie von der Erweiterung '{1}'abhängig ist, die im eingeschränkten Modus nicht unterstützt wird",
+ "uninstalledDep": "Die Erweiterung \"{0}\" kann nicht aktiviert werden, da sie von der nicht installierten {1}-Erweiterung von \"{2}\" abhängig ist. Möchten Sie die Erweiterung installieren und das Fenster neu laden?",
"unknownDep": "Die Erweiterung \"{0}\" kann nicht aktiviert werden, weil sie von einer unbekannten Erweiterung \"{1}\" abhängig ist."
},
"vs/workbench/api/browser/mainThreadFileSystemEventService": {
- "again": "Nicht erneut nachfragen",
+ "again": "Nicht erneut fragen",
"ask.1.copy": "Die Erweiterung \"{0}\" möchte bei diesem Dateikopiervorgang Refactoringänderungen vornehmen.",
"ask.1.create": "Die Erweiterung \"{0}\" möchte bei diesem Dateierstellungsvorgang Refactoringänderungen vornehmen.",
"ask.1.delete": "Die Erweiterung \"{0}\" möchte bei diesem Dateilöschvorgang Refactoringänderungen vornehmen.",
@@ -2639,15 +3317,36 @@
"msg-delete": "Teilnehmer für Dateilöschung werden ausgeführt...",
"msg-rename": "Teilnehmer für die Dateiumbenennung werden ausgeführt...",
"msg-write": "Teilnehmer für „Dateischreibvorgang“ werden ausgeführt...",
- "ok": "OK",
- "preview": "Vorschau anzeigen"
+ "ok": "&&OK",
+ "preview": "&&Vorschau anzeigen"
+ },
+ "vs/workbench/api/browser/mainThreadLanguageModels": {
+ "confirmLanguageModelAccess": "Die Erweiterung \"{0}\" möchte auf die von {1} bereitgestellten Sprachmodelle zugreifen.",
+ "languageModelsAccountId": "Sprachmodelle"
+ },
+ "vs/workbench/api/browser/mainThreadMcp": {
+ "allow": "&&Zulassen",
+ "confirmLogin": "Die MCP-Serverdefinition '{0}' möchte sich bei {1} authentifizieren.",
+ "confirmRelogin": "Die MCP-Serverdefinition '{0}' möchte, dass Sie sich bei {1} authentifizieren.",
+ "incorrectAccount": "Falsches Konto erkannt",
+ "incorrectAccountDetail": "Das ausgewählte Konto „{0}“ stimmt nicht mit dem angeforderten Konto „{1}“ überein.",
+ "keep": "{0} beibehalten",
+ "loginWith": "Mit {0} anmelden",
+ "mcpAuthSessionRemoved": "Authentifizierungssitzung für „{0}“ entfernt, Server wird gestoppt"
},
"vs/workbench/api/browser/mainThreadMessageService": {
"cancel": "Abbrechen",
"defaultSource": "Erweiterung",
- "extensionSource": "{0} (Erweiterung)",
"manageExtension": "Erweiterung verwalten",
- "ok": "OK"
+ "ok": "&&OK"
+ },
+ "vs/workbench/api/browser/mainThreadNotebookSaveParticipant": {
+ "timeout.onWillSave": "WillSaveNotebookDocument-Ereignis nach 1750 ms abgebrochen"
+ },
+ "vs/workbench/api/browser/mainThreadOutputService": {
+ "status.showOutput": "Ausgabe anzeigen",
+ "status.showOutputAria": "Ausgabekanal {0} anzeigen",
+ "status.showOutputTooltip": "Ausgabekanal {0} anzeigen"
},
"vs/workbench/api/browser/mainThreadProgress": {
"manageExtension": "Erweiterung verwalten"
@@ -2676,7 +3375,22 @@
"folderStatusMessageRemoveMultipleFolders": "Die Erweiterung \"{0}\" hat {1} Ordner aus dem Arbeitsbereich entfernt",
"folderStatusMessageRemoveSingleFolder": "Die Erweiterung \"{0}\" hat 1 Ordner aus dem Arbeitsbereich entfernt"
},
+ "vs/workbench/api/browser/statusBarExtensionPoint": {
+ "accessibilityInformation": "Definiert die Rolle und die Aria-Bezeichnung, die verwendet werden sollen, wenn der Eintrag der Statusleiste im Fokus ist.",
+ "accessibilityInformation.label": "Die Aria-Bezeichnung des Eintrags der Statusleiste. Standardmäßig wird der Text des Eintrags verwendet.",
+ "accessibilityInformation.role": "Die Rolle des Eintrags der Statusleiste, die definiert, wie eine Sprachausgabe damit interagiert. Weitere Informationen zu Aria-Rollen finden Sie hier https://w3c.github.io/aria/#widget_roles",
+ "alignment": "Die Ausrichtung des Statusleisteneintrags.",
+ "command": "Der auszuführende Befehl wenn auf den Statusleisteneintrag geklickt wird.",
+ "id": "Der Bezeichner des Statusleisteneintrags. Muss innerhalb der Erweiterung eindeutig sein. Der gleiche Wert muss beim Aufrufen von \"vscode.window.createStatusBarItem(id, ...)\"-API verwendet werden.",
+ "invalid": "Ungültiger Statusleistenelementbeitrag.",
+ "name": "Der Name des Eintrags, z. B. \"Python-Sprachindikator\", \"Git-Status\" usw. Versuchen Sie, die Länge des Namens kurz zu halten, aber beschreibend genug, damit Benutzer verstehen können, worum es sich bei dem Statusleistenelement handelt.",
+ "priority": "Die Priorität des Statusleisteneintrags. Ein höherer Wert bedeutet, dass das Element links angezeigt werden sollte.",
+ "text": "Der Text, der für den Eintrag angezeigt werden soll. Sie können Symbole in den Text einbetten, indem Sie die Syntax \"$()\" wie \"Hello $(globe)!\" verwenden.",
+ "tooltip": "Der QuickInfo-Text für diesen Eintrag.",
+ "vscode.extension.contributes.statusBarItems": "Fügt der Statusleiste Elemente hinzu."
+ },
"vs/workbench/api/browser/viewsExtensionPoint": {
+ "RequiresChatSessionsProposedAPI": "Ansichtscontainer „{0}“ erfordert „enabledApiProposals: [\"chatSessionsProvider\"]“.",
"ViewContainerDoesnotExist": "Der Ansichtencontainer \"{0}\" ist nicht vorhanden, und alle für ihn registrierten Ansichten werden zu \"Explorer\" hinzugefügt.",
"ViewContainerRequiresProposedAPI": "Zum Anzeigen des Containers „{0}“ muss „enabledApiProposals: [\"contribViewsRemote\"]“ zu „Remote“ hinzugefügt werden.",
"duplicateView1": "Es ist nicht möglich, mehrere Ansichten mit derselben ID \"{0}\" zu registrieren.",
@@ -2688,15 +3402,25 @@
"requirenonemptystring": "Die Eigenschaft „{0}“ ist erforderlich und muss vom Typ „string“ mit einem nicht leeren Wert sein.",
"requirestring": "Die Eigenschaft \"{0}\" ist erforderlich und muss den Typ \"string\" aufweisen.",
"unknownViewType": "Unbekannter Ansichtstyp \"{0}\".",
+ "view container id": "ID",
+ "view container location": "Wo",
+ "view container title": "Titel",
+ "view id": "ID",
+ "view name title": "Name",
"viewcontainer requirearray": "Ansichtencontainer müssen ein Array sein",
+ "views": "Ansichten",
+ "views.agentSessions": "Trägt Ansichten zum Agent-Sitzungscontainer in der Aktivitätsleiste bei. Um zu diesem Container beizutragen, muss der API-Vorschlag „chatSessionsProvider“ aktiviert sein.",
"views.container.activitybar": "Trägt Ansichtencontainer zur Aktivitätsleiste bei",
"views.container.panel": "Ansichtscontainer zu Panel hinzufügen",
+ "views.container.secondarySidebar": "Ansichtencontainer zur sekundären Seitenleiste beitragen",
"views.contributed": "Stellt Sichten für den Container mit bereitgestellten Sichten zur Verfügung.",
"views.debug": "Trägt Ansichten zum Debugging-Container in der Aktivitätsleiste bei",
"views.explorer": "Trägt Ansichten zum Explorer-Container in der Aktivitätsleiste bei",
- "views.remote": "Trägt Ansichten zum Remotecontainer in der Aktivitätsleiste bei. Für Beiträge zu diesem Container muss \"enableProposedApi\" aktiviert sein.",
+ "views.remote": "Trägt Ansichten zum Remotecontainer in der Aktivitätsleiste bei. Um zu diesem Container beizutragen, muss der API-Vorschlag „contribViewsRemote“ aktiviert sein.",
"views.scm": "Trägt Ansichten zum SCM-Container in der Aktivitätsleiste bei",
"views.test": "Trägt Ansichten zum Testcontainer in der Aktivitätsleiste bei",
+ "viewsContainers": "Container anzeigen",
+ "vscode.extension.contributes.view.accessibilityHelpContent": "Wenn das Dialogfeld für die Barrierefreiheitshilfe in dieser Ansicht aufgerufen wird, wird dieser Inhalt dem Benutzer als Markdownzeichenfolge angezeigt. Schlüsselbindungen werden aufgelöst, wenn sie im Format bereitgestellt werden. Wenn keine Tastenzuordnung vorhanden ist, wird dies angezeigt, und dieser Befehl wird zur einfachen Konfiguration in eine Schnellauswahl aufgenommen.",
"vscode.extension.contributes.view.contextualTitle": "Kontext in lesbarem Format, falls die Ansicht aus ihrem ursprünglichen Speicherort verschoben wird. Standardmäßig wird der Containername der Ansicht verwendet.",
"vscode.extension.contributes.view.group": "Geschachtelte Gruppe in Viewlet",
"vscode.extension.contributes.view.icon": "Pfad zum Ansichtssymbol. Ansichtssymbole werden angezeigt, wenn der Name der Ansicht nicht angezeigt werden kann. Es werden Symbole im SVG-Format empfohlen, obwohl jeder Bilddateityp akzeptiert wird.",
@@ -2716,20 +3440,29 @@
"vscode.extension.contributes.views.containers.id": "Eindeutige ID, die zum Bestimmen des Containers verwendet wird, in dem Ansichten mithilfe des Beitragspunkts \"views\" beigetragen werden können.",
"vscode.extension.contributes.views.containers.title": "Visuell lesbare Zeichenfolge zum Rendern des Containers",
"vscode.extension.contributes.viewsContainers": "Trägt Ansichtencontainer zum Editor bei",
- "vscode.extension.contributs.view.size": "Die Größe der Ansicht. Die Verwendung einer Zahl verhält sich wie die CSS-Eigenschaft \"flex\", und die Größe legt die Anfangsgröße fest, wenn die Ansicht zum ersten Mal angezeigt wird. In der Seitenleiste ist dies die Höhe der Ansicht."
+ "vscode.extension.contributs.view.size": "Die Ausgangsgröße der Ansicht. Die Größe verhält sich wie die CSS-Eigenschaft \"flex\" und legt bei der ersten Anzeige der Ansicht die Ausgangsgröße fest. In der Seitenleiste ist dies die Höhe der Ansicht. Dieser Wert wird nur berücksichtigt, wenn sowohl die Ansicht als auch der Ansichtscontainer derselben Erweiterung angehören."
},
"vs/workbench/api/common/configurationExtensionPoint": {
+ "accessibility": "Barrierefreiheitseinstellungen",
+ "advanced": "Erweiterte Einstellungen sind im Einstellungs-Editor standardmäßig ausgeblendet, es sei denn, der Benutzer zeigt erweiterte Einstellungen an.",
"config.property.defaultConfiguration.warning": "Die Konfigurationsstandardwerte für \"{0}\" können nicht registriert werden. Es werden nur Standardwerte für Einstellungen unterstützt, die computerüberschreibbar, fenster-, ressourcen- und sprachüberschreibbar sind.",
"config.property.duplicate": "{0}\" kann nicht registriert werden. Diese Eigenschaft ist bereits registriert.",
+ "config.property.preventDefaultConfiguration.warning": "Die Konfigurationsstandardwerte für \"{0}\" können nicht registriert werden. Diese Einstellung lässt keine mitwirkenden Konfigurationsstandardwerte zu.",
+ "default": "Standard",
+ "description": "Beschreibung",
+ "experimental": "Experimentelle Einstellungen können sich ändern und in zukünftigen Versionen entfernt werden.",
"invalid.allOf": "\"configuration.allOf\" ist veraltet und sollte nicht mehr verwendet werden. Übergeben Sie stattdessen mehrere Konfigurationsabschnitte als Array an den Beitragspunkt \"configuration\".",
"invalid.properties": "\"configuration.properties\" muss ein Objekt sein.",
"invalid.property": "Die \"configuration.properties\"-Eigenschaft \"{0}\" muss ein Objekt sein",
"invalid.title": "configuration.title muss eine Zeichenfolge sein.",
+ "preview": "Vorschaueinstellungen ermöglichen es, neue Features auszuprobieren, bevor sie finalisiert werden.",
"scope.application.description": "Eine Konfiguration, die nur in den Benutzereinstellungen konfiguriert werden kann.",
"scope.deprecationMessage": "Wenn dies festgelegt ist, wird die Eigenschaft als veraltet markiert, und die angegebene Meldung wird als Erklärung angezeigt.",
"scope.description": "Bereich, in dem die Konfiguration anwendbar ist. Verfügbare Bereiche sind \"application\" (Anwendung), \"machine\" (Computer), \"window\" (Fenster), \"resource\" (Ressource) und \"machine-overridable\" (Vom Computer überschreibbar).",
"scope.editPresentation": "Bei Angabe wird das Präsentationsformat der Zeichenfolgeneinstellung gesteuert.",
"scope.enumDescriptions": "Beschreibungen für Enumerationswerte",
+ "scope.enumItemLabels": "Bezeichnungen für Enumerationswerte, die im Einstellungs-Editor angezeigt werden sollen. Bei Angabe dieser Option werden die {0}-Werte nach den Bezeichnungen noch angezeigt, aber weniger hervorgehoben.",
+ "scope.ignoreSync": "Wenn die Einstellungssynchronisierung aktiviert ist, wird der Benutzerwert dieser Konfiguration standardmäßig nicht synchronisiert.",
"scope.language-overridable.description": "Ressourcenkonfiguration, die in den sprachspezifischen Einstellungen konfiguriert werden kann.",
"scope.machine-overridable.description": "Computerkonfiguration, die auch in den Arbeitsbereichs- oder Ordnereinstellungen konfiguriert werden kann.",
"scope.machine.description": "Konfiguration, die nur in den Benutzereinstellungen oder Remoteeinstellungen bearbeitet werden kann.",
@@ -2740,8 +3473,13 @@
"scope.order": "Gibt bei Angabe dieser Option die Reihenfolge dieser Einstellung relativ zu anderen Einstellungen innerhalb derselben Kategorie an. Einstellungen mit einer Auftragseigenschaft werden vor Einstellungen platziert, ohne dass diese Eigenschaft festgelegt ist.",
"scope.resource.description": "Konfiguration, die in den Benutzer-, Remote-, Arbeitsbereichs- oder Ordnereinstellungen konfiguriert werden kann.",
"scope.singlelineText.description": "Der Wert wird in einer Eingabebox angezeigt.",
+ "scope.tags": "Eine Liste von Tags, unter denen die Einstellung platziert werden soll. Das Tag kann dann im Einstellungs-Editor gesucht werden. Beispielsweise ermöglicht das Tag „experimental“, die Einstellung durch die Suche nach „@tag:experimental“ zu finden.",
"scope.window.description": "Konfiguration, die in den Benutzer-, Remote- oder Arbeitsbereichseinstellungen konfiguriert werden kann.",
+ "setting name": "ID",
+ "settings": "Einstellungen",
+ "telemetry": "Telemetrieeinstellungen",
"unknownWorkspaceProperty": "Unbekannte Arbeitsbereichs-Konfigurationseigenschaft",
+ "usesOnlineServices": "Einstellungen, die Onlinedienste verwenden",
"vscode.extension.contributes.configuration": "Trägt Konfigurationseigenschaften bei.",
"vscode.extension.contributes.configuration.order": "Gibt bei Angabe dieser Einstellungskategorie die Reihenfolge der Einstellungen relativ zu anderen Kategorien an.",
"vscode.extension.contributes.configuration.properties": "Die Beschreibung der Konfigurationseigenschaften.",
@@ -2751,6 +3489,7 @@
"workspaceConfig.extensions.description": "Arbeitsbereichserweiterungen",
"workspaceConfig.folders.description": "Liste von Ordnern, die in den Arbeitsbereich geladen werden.",
"workspaceConfig.launch.description": "Arbeitsbereichs-Startkonfigurationen",
+ "workspaceConfig.mcp.description": "Serverkonfigurationen des Modellkontextprotokolls",
"workspaceConfig.name.description": "Ein optionaler Name für den Ordner. ",
"workspaceConfig.path.description": "Ein Dateipfad, z. B. \"/root/folderA\" oder \"./folderA\" bei einem relativen Pfad, der in Bezug auf den Speicherort der Arbeitsbereichsdatei aufgelöst wird.",
"workspaceConfig.remoteAuthority": "Der Remoteserver, auf dem sich der Arbeitsbereich befindet.",
@@ -2759,6 +3498,13 @@
"workspaceConfig.transient": "Ein vorübergehender Arbeitsbereich wird beim Neustart oder erneuten Laden ausgeblendet.",
"workspaceConfig.uri.description": "URI des Ordners"
},
+ "vs/workbench/api/common/extHostAuthentication": {
+ "authenticatingTo": "Authentifizierung bei '{0}' wird durchgeführt",
+ "completeAuth": "Schließen Sie die Authentifizierung im geöffneten Browserfenster ab.",
+ "continueWith": "Sie haben sich noch nicht bei '{0}' authentifiziert. Möchten Sie eine andere Methode ausprobieren? ({1})",
+ "url handler": "URL-Handler",
+ "userCanceledContinue": "Haben Sie Probleme mit der Authentifizierung bei '{0}'? Möchten Sie eine andere Methode ausprobieren? ({1})"
+ },
"vs/workbench/api/common/extHostDiagnostics": {
"limitHit": "{0} weitere Fehler und Warnungen werden nicht angezeigt."
},
@@ -2766,19 +3512,38 @@
"extensionTestError": "Der Pfad \"{0}\" verweist nicht auf einen gültigen Test Runner für eine Erweiterung.",
"extensionTestError1": "Test Runner kann nicht geladen werden."
},
- "vs/workbench/api/common/extHostProgress": {
- "extensionSource": "{0} (Erweiterung)"
+ "vs/workbench/api/common/extHostLanguageFeatures": {
+ "defaultDropLabel": "Mithilfe der Erweiterung \"{0}\" löschen",
+ "defaultPasteLabel": "Einfügen mit der Erweiterung \"{0}\""
+ },
+ "vs/workbench/api/common/extHostLanguageModels": {
+ "chatAccessWithJustification": "Begründung: {1}"
+ },
+ "vs/workbench/api/common/extHostLogService": {
+ "local": "Erweiterungshost",
+ "remote": "Erweiterungshost (Remote)",
+ "worker": "Erweiterungshost (Worker)"
+ },
+ "vs/workbench/api/common/extHostNotebook": {
+ "err.readonly": "Die schreibgeschützte Datei '{0}' kann nicht geändert werden",
+ "fileModifiedError": "Datei geändert seit"
},
"vs/workbench/api/common/extHostStatusBar": {
"extensionLabel": "{0} (Erweiterung)",
"status.extensionMessage": "Erweiterungsstatus"
},
+ "vs/workbench/api/common/extHostTelemetry": {
+ "extensionTelemetryLog": "Erweiterungstelemetrie{0}"
+ },
"vs/workbench/api/common/extHostTerminalService": {
"launchFail.idMissingOnExtHost": "Das Terminal mit der ID {0} wurde auf dem Erweiterungshost nicht gefunden."
},
"vs/workbench/api/common/extHostTreeViews": {
- "treeView.duplicateElement": "Das Element mit der ID {0} ist bereits registriert",
- "treeView.notRegistered": "Es wurde keine Strukturansicht mit der ID \"{0}\" registriert."
+ "treeView.duplicateElement": "Das Element mit der ID {0} ist bereits registriert"
+ },
+ "vs/workbench/api/common/extHostTunnelService": {
+ "tunnelPrivacy.private": "Privat",
+ "tunnelPrivacy.public": "Öffentlich"
},
"vs/workbench/api/common/extHostWorkspace": {
"updateerror": "Die Erweiterung \"{0}\" konnte die Arbeitsbereichsordner nicht aktualisieren: {1}"
@@ -2787,79 +3552,118 @@
"contributes.jsonValidation": "Trägt zur JSON-Schemakonfiguration bei.",
"contributes.jsonValidation.fileMatch": "Das abzugleichende Dateimuster (oder ein Array von Mustern), z. B. \"package.json\" oder \"*.launch\". Ausschlussmuster beginnen mit \"!\".",
"contributes.jsonValidation.url": "Eine Schema-URL (\"http:\", \"Https:\") oder der relative Pfad zum Erweiterungsordner (\". /\").",
+ "fileMatch": "Dateiübereinstimmung",
"invalid.fileMatch": "configuration.jsonValidation.fileMatch muss als Zeichenfolge oder Zeichenfolgenarray definiert werden.",
"invalid.jsonValidation": "configuration.jsonValidation muss ein Array sein.",
"invalid.path.1": "Es wurde erwartet, dass \"contributes.{0}.url\" ({1}) im Ordner ({2}) der Erweiterung enthalten ist. Dies führt möglicherweise dazu, dass die Erweiterung nicht portierbar ist.",
"invalid.url": "configuration.jsonValidation.url muss eine URL oder ein relativer Pfad sein.",
"invalid.url.fileschema": "configuration.jsonValidation.url ist eine ungültige relative URL: {0}",
- "invalid.url.schema": "\"configuration.jsonValidation.url\" muss eine absolute URL sein oder mit \"./\" beginnen, um auf Schemas in der Erweiterung zu verweisen."
+ "invalid.url.schema": "\"configuration.jsonValidation.url\" muss eine absolute URL sein oder mit \"./\" beginnen, um auf Schemas in der Erweiterung zu verweisen.",
+ "jsonValidation": "JSON-Validierung",
+ "schema": "Schema"
+ },
+ "vs/workbench/api/node/extHostAuthentication": {
+ "completeAuth": "Schließen Sie die Authentifizierung im geöffneten Browserfenster ab.",
+ "device code": "Gerätecode",
+ "loopback": "Loopbackserver",
+ "waitingForAuth": "Öffnen Sie [{0}]({0}) auf einer neuen Registerkarte, und fügen Sie Ihren einmaligen Code ein: {1}"
},
"vs/workbench/api/node/extHostDebugService": {
"debug.terminal.title": "Prozess debuggen"
},
- "vs/workbench/api/node/extHostTunnelService": {
- "tunnelPrivacy.private": "Privat",
- "tunnelPrivacy.public": "Öffentlich"
+ "vs/workbench/api/test/browser/mainThreadTreeViews.test": {
+ "Test View 1": "Testansicht 1",
+ "test": "Test"
},
"vs/workbench/browser/actions/developerActions": {
+ "global": "Global",
"inspect context keys": "Kontextschlüssel prüfen",
- "keyboardShortcutsFormat.command": "Befehlstitel.",
- "keyboardShortcutsFormat.commandAndKeys": "Befehlstitel und -schlüssel.",
- "keyboardShortcutsFormat.commandWithGroup": "Befehlstitel, dem die zugehörige Gruppe vorangestellt ist.",
- "keyboardShortcutsFormat.commandWithGroupAndKeys": "Befehlstitel und -schlüssel, wobei der Befehl der Gruppe vorangestellt ist.",
- "keyboardShortcutsFormat.keys": "Schlüssel.",
+ "largeStorageItemDetail": "Bereich: {0}, Ziel: {1}",
"logStorage": "Inhalt der Speicherdatenbank protokollieren",
"logWorkingCopies": "Arbeitskopien protokollieren",
+ "machine": "Computer",
+ "policyDiagnostics": "Richtliniendiagnose",
+ "profile": "Profil",
+ "removeLargeStorageDatabaseEntries": "Große Speicherdatenbankeinträge entfernen...",
+ "removeLargeStorageEntriesButtonLabel": "&&Entfernen",
+ "removeLargeStorageEntriesConfirmRemove": "Möchten Sie die ausgewählten Speichereinträge aus der Datenbank entfernen?",
+ "removeLargeStorageEntriesConfirmRemoveDetail": "{0}\r\n\r\nDiese Aktion ist unumkehrbar und kann zu einem Datenverlust führen!",
+ "removeLargeStorageEntriesPickerButton": "Entfernen",
+ "removeLargeStorageEntriesPickerDescriptionNoEntries": "Es sind keine großen Speichereinträge zum Entfernen vorhanden.",
+ "removeLargeStorageEntriesPickerPlaceholder": "Wählen Sie große Einträge aus, die aus dem Speicher entfernt werden sollen.",
"screencastMode.fontSize": "Steuert die Schriftgröße (in Pixeln) der Tastatur im Screencastmodus.",
+ "screencastMode.keyboardOptions.description": "Optionen zum Anpassen der Tastaturüberlagerung im Screencastmodus.",
+ "screencastMode.keyboardOptions.showCommandGroups": "Befehlsgruppennamen anzeigen, wenn auch Befehle angezeigt werden.",
+ "screencastMode.keyboardOptions.showCommands": "Befehlsnamen anzeigen.",
+ "screencastMode.keyboardOptions.showKeybindings": "Tastenkombinationen anzeigen",
+ "screencastMode.keyboardOptions.showKeys": "Unformatierte Schlüssel anzeigen.",
+ "screencastMode.keyboardOptions.showSingleEditorCursorMoves": "Befehle zum Verschieben des Cursors in einem einzelnen Editor anzeigen.",
"screencastMode.keyboardOverlayTimeout": "Steuert den Zeitraum (in Millisekunden), für den die Tastaturüberlagerung im Screencastmodus angezeigt wird.",
- "screencastMode.keyboardShortcutsFormat": "Steuert, was in der Tastaturüberlagerung zu sehen ist, wenn Tastenkombinationen angezeigt werden.",
"screencastMode.location.verticalPosition": "Steuert den vertikalen Offset der Überlagerung des Screencast-Modus von unten als Prozentsatz der Workbenchhöhe.",
"screencastMode.mouseIndicatorColor": "Steuert im Screencastmodus die Farbe des Mauszeigers im Hexadezimalformat (#RGB, #RGBA, #RRGGBB oder #RRGGBBAA).",
"screencastMode.mouseIndicatorSize": "Steuert die Größe der Mausanzeige im Screencastmodus (in Pixel).",
- "screencastMode.onlyKeyboardShortcuts": "Hiermit werden Tastenkombinationen nur im Screencastmodus angezeigt.",
"screencastModeConfigurationTitle": "Screencastmodus",
- "toggle screencast mode": "Screencastmodus umschalten"
+ "snapshotTrackedDisposables": "Momentaufnahme nachverfolgter verwerfbarer Objekte",
+ "startTrackDisposables": "Nachverfolgung verwerfbarer Objekte starten",
+ "stopTrackDisposables": "Nachverfolgung verwerfbarer Objekte beenden",
+ "storageLogDialogDetails": "Öffnen Sie die Entwicklertools im Menü, und wählen Sie die Registerkarte „Konsole“ aus.",
+ "storageLogDialogMessage": "Der Inhalt der Speicherdatenbank wurde in den Entwicklertools protokolliert.",
+ "toggle screencast mode": "Screencastmodus umschalten",
+ "user": "Benutzer",
+ "workspace": "Arbeitsbereich"
},
"vs/workbench/browser/actions/helpActions": {
+ "askVScode": "@vscode fragen",
+ "getStartedWithAccessibilityFeatures": "Erste Schritte mit Barrierefreiheitsfeatures",
"keybindingsReference": "Referenz für Tastenkombinationen",
"miDocumentation": "&&Dokumentation",
"miKeyboardShortcuts": "&&Referenz für Tastenkombinationen",
"miLicense": "&&Lizenz anzeigen",
"miPrivacyStatement": "Daten&&schutzbestimmungen",
"miTipsAndTricks": "Tipps und Tri&&cks",
- "miTwitter": "&&Folgen Sie uns auf Twitter",
"miUserVoice": "&&Featureanforderungen suchen",
"miVideoTutorials": "&&Videotutorials",
+ "miYouTube": "&&Folgen Sie uns auf YouTube",
"newsletterSignup": "Abonnieren Sie den VS Code-Newsletter.",
"openDocumentationUrl": "Dokumentation",
"openLicenseUrl": "Lizenz anzeigen",
"openPrivacyStatement": "Datenschutzbestimmungen",
"openTipsAndTricksUrl": "Tipps und Tricks",
- "openTwitterUrl": "Folgen Sie uns auf Twitter",
"openUserVoiceUrl": "Featureanforderungen suchen",
- "openVideoTutorialsUrl": "Videotutorials"
+ "openVideoTutorialsUrl": "Videotutorials",
+ "openYouTubeUrl": "Folgen Sie uns auf YouTube"
},
"vs/workbench/browser/actions/layoutActions": {
"active": "Aktiv",
"activityBar": "Aktivitätsleiste",
"activityBarLeft": "Stellt die Aktivitätsleiste in der linken Position dar",
"activityBarRight": "Stellt die Aktivitätsleiste in der rechten Position dar",
+ "alignQuickInputCenter": "Schnelleingabecenter ausrichten",
+ "alignQuickInputTop": "Schnelleingabe oben ausrichten",
+ "center": "Zentriert",
"centerLayoutIcon": "Repräsentiert den zentrierten Layoutmodus",
"centerPanel": "Zentriert",
"centeredLayout": "Zentriertes Layout",
"close": "Schließen",
- "closeSidebar": "Primäre Seitenleiste schließen",
"cofigureLayoutIcon": "Das Symbol stellt die Workbench-Layoutkonfiguration dar.",
"compositePart.hideSideBarLabel": "Primäre Seitenleiste ausblenden",
+ "configureEditors": "Editoren konfigurieren",
"configureLayout": "Layout konfigurieren",
+ "configureTabs": "Registerkarten konfigurieren",
"customizeLayout": "Layout anpassen...",
"customizeLayoutQuickPickTitle": "Layout anpassen",
"decreaseEditorHeight": "Editor verkleinern (Höhe)",
"decreaseEditorWidth": "Editor verkleinern (Breite)",
"decreaseViewSize": "Aktuelle Ansicht verkleinern",
+ "editorActionsPosition": "Position der Editoraktionen",
"fullScreenIcon": "Repräsentiert den Vollbildmodus",
"fullscreen": "Vollbild",
- "hidden": "Ausgeblendet",
+ "hideEditorActons": "Editoraktionen ausblenden",
+ "hideEditorActonsDescription": "Editoraktionen auf Registerkarten- und Titelleiste ausblenden",
+ "hideEditorTabs": "Editorregisterkarten ausblenden",
+ "hideEditorTabsDescription": "Registerkartenleiste ausblenden",
+ "hideEditorTabsZenMode": "Editor-Registerkarten im Zen-Modus ausblenden",
+ "hideEditorTabsZenModeDescription": "Registerkartenleiste im Zen-Modus ausblenden",
"increaseEditorHeight": "Editor vergrößern (Höhe)",
"increaseEditorWidth": "Editor vergrößern (Breite)",
"increaseViewSize": "Aktuelle Ansicht vergrößern",
@@ -2869,23 +3673,23 @@
"leftSideBar": "Links",
"menuBar": "Menüleiste",
"menuBarIcon": "Stellt die Menüleiste dar",
- "miActivityBar": "&&Activity Bar",
"miAppearance": "&&Darstellung",
- "miMenuBar": "Menu &&Bar",
- "miMenuBarNoMnemonic": "Menu Bar",
+ "miMenuBar": "&&Menüleiste",
+ "miMenuBarNoMnemonic": "Menüleiste",
"miMoveSidebarLeft": "&&Primäre Seitenleiste nach links verschieben",
"miMoveSidebarRight": "&&Primäre Seitenleiste nach rechts verschieben",
"miShowEditorArea": "&&Editor-Bereich anzeigen",
- "miShowSidebar": "&&Primary Side Bar",
- "miSidebarNoMnnemonic": "Primary Side Bar",
- "miStatusbar": "S&&tatus Bar",
+ "miStatusbar": "&&Statusleiste",
"miToggleCenteredLayout": "&&Zentriertes Layout",
"miToggleZenMode": "Zen-Modus",
"move second sidebar left": "Sekundäre Seitenleiste nach links verschieben",
"move second sidebar right": "Sekundäre Seitenleiste nach rechts verschieben",
"move side bar right": "Primäre Seitenleiste nach rechts verschieben",
"move sidebar left": "Primäre Seitenleiste nach links verschieben",
- "move sidebar right": "Primäre Seitenleiste nach rechts verschieben",
+ "moveEditorActionsToTabBar": "Editoraktionen in Registerkartenleiste verschieben",
+ "moveEditorActionsToTabBarDescription": "Editoraktionen von der Titelleiste auf die Registerkartenleiste verschieben",
+ "moveEditorActionsToTitleBar": "Editoraktionen in Titelleiste verschieben",
+ "moveEditorActionsToTitleBarDescription": "Editoraktionen von der Registerkartenleiste in die Titelleiste verschieben",
"moveFocusedView": "Fokussierte Ansicht verschieben",
"moveFocusedView.error.noFocusedView": "Derzeit ist keine Ansicht fokussiert.",
"moveFocusedView.error.nonMovableView": "Die derzeit fokussierte Ansicht ist nicht verschiebbar.",
@@ -2898,6 +3702,7 @@
"moveSidebarLeft": "Primäre Seitenleiste nach links verschieben",
"moveSidebarRight": "Primäre Seitenleiste nach rechts verschieben",
"moveView": "Ansicht verschieben",
+ "openAndCloseSidebar": "Randleiste öffnen/anzeigen und schließen/ausblenden",
"panel": "Panel",
"panelAlignment": "Bereichsausrichtung",
"panelBottom": "Stellt den unteren Bereich dar",
@@ -2910,34 +3715,60 @@
"panelLeftOff": "Stellt eine deaktivierte Seitenleiste an der linken Position dar.",
"panelRight": "Stellt die Seitenleiste an der rechten Position dar.",
"panelRightOff": "Stellt die deaktivierte Seitenleiste an der rechten Position dar",
+ "primary sidebar": "Primäre Seitenleiste",
+ "primary sidebar mnemonic": "&&Primäre Seitenleiste",
+ "quickInputAlignmentCenter": "Stellt die Ausrichtung der Schnelleingabe dar, die auf die Mitte festgelegt ist.",
+ "quickInputAlignmentTop": "Stellt die Ausrichtung der Schnelleingaben dar, die oben festgelegt ist.",
+ "quickOpen": "Schnelleingabeposition",
"resetFocusedView.error.noFocusedView": "Derzeit ist keine Ansicht fokussiert.",
"resetFocusedViewLocation": "Fokussierte Ansichtsposition zurücksetzen",
"resetViewLocations": "Ansichtspositionen zurücksetzen",
+ "restore defaults": "Standardwerte wiederherstellen",
"rightPanel": "Rechts",
"rightSideBar": "Rechts",
"secondarySideBar": "Sekundäre Seitenleiste",
"secondarySideBarContainer": "Sekundäre Seitenleiste / {0}",
+ "selectToHide": "Zum Ausblenden auswählen",
+ "selectToShow": "Zum Anzeigen auswählen",
+ "showEditorActons": "Editoraktionen anzeigen",
+ "showEditorActonsDescription": "Editoraktionen sichtbar machen.",
+ "showMultipleEditorTabs": "Mehrere Editorregisterkarten anzeigen",
+ "showMultipleEditorTabsDescription": "Registerkartenleiste mit mehreren Registerkarten anzeigen",
+ "showMultipleEditorTabsZenMode": "Mehrere Editorregisterkarten im Zen-Modus anzeigen",
+ "showMultipleEditorTabsZenModeDescription": "Registerkartenleiste im Zen-Modus anzeigen",
+ "showSingleEditorTab": "Einzelne Editorregisterkarte anzeigen",
+ "showSingleEditorTabDescription": "Registerkartenleiste mit einer Registerkarte anzeigen",
+ "showSingleEditorTabZenMode": "Registerkarte „Einzelner Editor“ im Zen-Modus anzeigen",
+ "showSingleEditorTabZenModeDescription": "Registerkartenleiste im Zen-Modus mit einer Registerkarte anzeigen",
"sideBar": "Primäre Seitenleiste",
"sideBarPosition": "Position der primäre Seitenleiste",
"sidebar": "Seitenleiste",
"sidebarContainer": "Seitenleiste/{0}",
+ "sidebarHidden": "Primäre Seitenleiste ausgeblendet",
+ "sidebarVisible": "Primäre Seitenleiste angezeigt",
"statusBar": "Statusleiste",
"statusBarIcon": "Stellt die Statusleiste dar",
- "toggleActivityBar": "Sichtbarkeit der Aktivitätsleiste umschalten",
+ "tabBar": "Registerkartenleiste",
"toggleCenteredLayout": "Zentriertes Layout umschalten",
"toggleEditor": "Sichtbarkeit des Editor-Bereichs umschalten",
"toggleMenuBar": "Menüleiste umschalten",
+ "toggleSeparatePinnedEditorTabs": "Separate angeheftete Editor-Registerkarten",
+ "toggleSeparatePinnedEditorTabsDescription": "Umschalten, ob angeheftete Editor-Registerkarten in einer separaten Zeile oberhalb der gelösten Registerkarten angezeigt werden.",
"toggleSideBar": "Primäre Seitenleiste umschalten",
"toggleSidebar": "Sichtbarkeit der primären Seitenleiste umschalten",
"toggleSidebarPosition": "Primäre Seitenleistenposition umschalten",
"toggleStatusbar": "Sichtbarkeit der Statusleiste umschalten",
- "toggleTabs": "Registerkartensichtbarkeit umschalten",
"toggleVisibility": "Sichtbarkeit",
"toggleZenMode": "Zen-Modus umschalten",
- "visible": "Sichtbar",
+ "top": "Oben",
"zenMode": "Zen-Modus",
"zenModeIcon": "Repräsentiert den Zen-Modus"
},
+ "vs/workbench/browser/actions/listCommands": {
+ "mitoggleTreeStickyScroll": "Fixierten Bildlauf der Struktur &&umschalten",
+ "toggleTreeStickyScroll": "Fixierten Bildlauf der Struktur umschalten",
+ "toggleTreeStickyScrollDescription": "Schaltet das Widget „Fixierter Bildlauf“ oben in Baumstrukturen um, z. B. im Datei-Explorer und in der Debugvariablenansicht."
+ },
"vs/workbench/browser/actions/navigationActions": {
"focusNextPart": "Fokus auf nächsten Teil",
"focusPreviousPart": "Fokus auf vorherigen Teil",
@@ -2950,6 +3781,7 @@
"quickNavigateNext": "Zum nächsten Element in Quick Open navigieren",
"quickNavigatePrevious": "Zum vorherigen Element in Quick Open navigieren",
"quickOpen": "Gehe zu Datei...",
+ "quickOpenWithModes": "Quick Open",
"quickSelectNext": "Nächstes Element in Quick Open auswählen",
"quickSelectPrevious": "Vorheriges Element in Quick Open auswählen"
},
@@ -2963,6 +3795,8 @@
},
"vs/workbench/browser/actions/windowActions": {
"about": "Info",
+ "activeOpenedRecentlyOpenedFolder": "Ordner im aktiven Fenster geöffnet",
+ "activeOpenedRecentlyOpenedWorkspace": "Arbeitsbereich im aktiven Fenster geöffnet",
"blur": "Tastaturfokus von fokussiertem Element entfernen",
"dirtyFolder": "Ordner mit nicht gespeicherten Dateien",
"dirtyFolderConfirm": "Möchten Sie den Ordner öffnen, um die nicht gespeicherten Dateien zu überprüfen?",
@@ -2972,7 +3806,6 @@
"dirtyWorkspace": "Arbeitsbereich mit nicht gespeicherten Dateien",
"dirtyWorkspaceConfirm": "Möchten Sie den Arbeitsbereich öffnen, um die nicht gespeicherten Dateien zu überprüfen?",
"dirtyWorkspaceConfirmDetail": "Arbeitsbereiche mit nicht gespeicherten Dateien können erst entfernt werden, wenn alle nicht gespeicherten Dateien gespeichert oder die Änderungen rückgängig gemacht wurden.",
- "file": "Datei",
"files": "Dateien",
"folders": "Ordner",
"miAbout": "&&Info",
@@ -2985,6 +3818,8 @@
"openRecent": "Zuletzt verwendet...",
"openRecentPlaceholder": "Zum Öffnen auswählen (STRG-Taste gedrückt halten, um ein neues Fenster zu erzwingen, oder ALT-Taste, um dasselbe Fenster zu verwenden)",
"openRecentPlaceholderMac": "Zum Öffnen auswählen (Cmd-Taste gedrückt halten, um ein neues Fenster zu erzwingen, oder Optionstaste für dasselbe Fenster)",
+ "openedRecentlyOpenedFolder": "Ordner in einem Fenster geöffnet",
+ "openedRecentlyOpenedWorkspace": "Arbeitsbereich in einem Fenster geöffnet",
"quickOpenRecent": "Quick Open für zuletzt verwendete Elemente...",
"recentDirtyFolderAriaLabel": "{0}, Ordner mit nicht gespeicherten Änderungen",
"recentDirtyWorkspaceAriaLabel": "{0}, Arbeitsbereich mit nicht gespeicherten Änderungen",
@@ -2997,7 +3832,6 @@
"closeWorkspace": "Arbeitsbereich schließen",
"duplicateWorkspace": "Arbeitsbereich duplizieren",
"duplicateWorkspaceInNewWindow": "Als Arbeitsbereich in neuem Fenster duplizieren",
- "filesCategory": "Datei",
"globalRemoveFolderFromWorkspace": "Ordner aus dem Arbeitsbereich entfernen...",
"miAddFolderToWorkspace": "O&&rdner zu Arbeitsbereich hinzufügen...",
"miCloseFolder": "&&Ordner schließen",
@@ -3021,53 +3855,70 @@
"addFolderToWorkspaceTitle": "Ordner zum Arbeitsbereich hinzufügen",
"workspaceFolderPickerPlaceholder": "Arbeitsbereichsordner auswählen"
},
- "vs/workbench/browser/codeeditor": {
- "openWorkspace": "Arbeitsbereich öffnen"
- },
"vs/workbench/browser/editor": {
"pinned": "{0}, angeheftet",
"preview": "{0}, Vorschau"
},
- "vs/workbench/browser/parts/activitybar/activitybarActions": {
- "authProviderUnavailable": "\"{0}\" ist momentan nicht verfügbar",
- "focusActivityBar": "Fokus auf Aktivitätsleiste",
- "hideAccounts": "Konten ausblenden",
- "manageTrustedExtensions": "Vertrauenswürdige Erweiterungen verwalten",
- "nextSideBarView": "Nächste Ansicht der primären Seitenleiste",
- "noAccounts": "Sie sind bei keinem Konto angemeldet.",
- "previousSideBarView": "Vorherige Ansicht der primären Seitenleiste",
- "signOut": "Abmelden"
+ "vs/workbench/browser/labels": {
+ "notebookCellLabel": "{0} • Zelle {1}",
+ "notebookCellOutputLabel": "{0} • Zelle {1} • Ausgabe {2}",
+ "notebookCellOutputLabelSimple": "{0} • Zelle {1} • Ausgabe"
},
"vs/workbench/browser/parts/activitybar/activitybarPart": {
- "accounts": "Konten",
- "accounts visibility key": "Anpassung der Sichtbarkeit von Konteneinträgen in der Aktivitätsleiste.",
- "accountsViewBarIcon": "Kontosymbol in der Ansichtsleiste.",
- "hideActivitBar": "Aktivitätsleiste ausblenden",
+ "activity bar position": "Position der Aktivitätsleiste",
+ "bottom": "Unten",
+ "default": "Standard",
+ "focusActivityBar": "Fokus auf Aktivitätsleiste",
+ "hide": "Ausgeblendet",
+ "hideActivityBar": "Aktivitätsleiste ausblenden",
"hideMenu": "Menü ausblenden",
- "manage": "Verwalten",
"menu": "Menü",
- "pinned view containers": "Sichtbarkeitsanpassungen für Aktivitätsleisteneinträge",
- "resetLocation": "Speicherort zurücksetzen",
- "settingsViewBarIcon": "Einstellungssymbol in der Ansichtsleiste."
+ "miBottomActivityBar": "&&Unten",
+ "miDefaultActivityBar": "&&Standard",
+ "miHideActivityBar": "&&Ausgeblendet",
+ "miTopActivityBar": "&&Oben",
+ "nextSideBarView": "Nächste Ansicht der primären Seitenleiste",
+ "positionActivituBar": "Position der Aktivitätsleiste",
+ "positionActivityBarBottom": "Aktivitätsleiste zum unteren Rand verschieben",
+ "positionActivityBarDefault": "Aktivitätsleiste zur Seite verschieben",
+ "positionActivityBarTop": "Aktivitätsleiste zum oberen Rand verschieben",
+ "previousSideBarView": "Vorherige Ansicht der primären Seitenleiste",
+ "top": "Oben"
},
"vs/workbench/browser/parts/auxiliarybar/auxiliaryBarActions": {
+ "auxiliaryBarHidden": "Sekundäre Seitenleiste ausgeblendet",
+ "auxiliaryBarVisible": "Sekundäre Seitenleiste angezeigt",
+ "closeIcon": "Symbol zum Schließen der sekundären Seitenleiste.",
+ "closeSecondarySideBar": "Sekundäre Seitenleiste ausblenden",
"focusAuxiliaryBar": "Fokus auf sekundäre Seitenleiste",
"hideAuxiliaryBar": "Sekundäre Seitenleiste ausblenden",
- "miAuxiliaryBar": "Secondary Si&&de Bar",
- "miAuxiliaryBarNoMnemonic": "Secondary Side Bar",
+ "maximizeAuxiliaryBar": "Sekundäre Seitenleiste maximieren",
+ "maximizeAuxiliaryBarTooltip": "Sekundäre Seitenleistengröße maximieren",
+ "maximizeIcon": "Symbol zum Maximieren der sekundären Seitenleiste.",
+ "miCloseSecondarySideBar": "&&Sekundäre Seitenleiste",
+ "nextAuxiliaryBarView": "Nächste sekundäre Seitenleistenansicht",
+ "openAndCloseAuxiliaryBar": "Sekundäre Seitenleiste öffnen/anzeigen und schließen/ausblenden",
+ "previousAuxiliaryBarView": "Vorherige sekundäre Seitenleistenansicht",
+ "restoreAuxiliaryBar": "Sekundäre Seitenleiste wiederherstellen",
+ "restoreAuxiliaryBarTooltip": "Sekundäre Seitenleistengröße wiederherstellen",
"toggleAuxiliaryBar": "Sichtbarkeit der sekundären Seitenleiste umschalten",
- "toggleAuxiliaryIconLeft": "Symbol zum Umschalten der Hilfsleiste an der linken Position.",
- "toggleAuxiliaryIconLeftOn": "Das Symbol zum Aktivieren der Hilfsleiste an der linken Position.",
- "toggleAuxiliaryIconRight": "Das Symbol zum Deaktivieren der Hilfsleiste an der rechten Position.",
- "toggleAuxiliaryIconRightOn": "Das Symbol zum Aktivieren der Hilfsleiste an der rechten Position.",
+ "toggleAuxiliaryIconLeft": "Das Symbol zum Deaktivieren der sekundären Seitenleiste an der linken Position.",
+ "toggleAuxiliaryIconLeftOn": "Das Symbol zum Deaktivieren der sekundären Seitenleiste an der linken Position.",
+ "toggleAuxiliaryIconRight": "Das Symbol zum Deaktivieren der sekundären Seitenleiste an der rechten Position.",
+ "toggleAuxiliaryIconRightOn": "Das Symbol zum Deaktivieren der sekundären Seitenleiste an der rechten Position.",
+ "toggleMaximizedAuxiliaryBar": "Sekundäre Seitenleiste maximiert umschalten",
"toggleSecondarySideBar": "Sekundäre Seitenleiste umschalten"
},
"vs/workbench/browser/parts/auxiliarybar/auxiliaryBarPart": {
- "hideAuxiliaryBar": "Sekundäre Seitenleiste ausblenden",
+ "activity bar position": "Position der Aktivitätsleiste",
+ "hide second side bar": "Sekundäre Seitenleiste ausblenden",
"move second side bar left": "Sekundäre Seitenleiste nach links verschieben",
- "move second side bar right": "Sekundäre Seitenleiste nach rechts verschieben"
+ "move second side bar right": "Sekundäre Seitenleiste nach rechts verschieben",
+ "showIcons": "Symbole anzeigen",
+ "showLabels": "Beschriftungen anzeigen"
},
"vs/workbench/browser/parts/banner/bannerPart": {
+ "closeBanner": "Banner schließen",
"focusBanner": "Fokus Banner"
},
"vs/workbench/browser/parts/compositeBar": {
@@ -3075,13 +3926,14 @@
},
"vs/workbench/browser/parts/compositeBarActions": {
"additionalViews": "Zusätzliche Ansichten",
- "badgeTitle": "{0}-{1}",
"hide": "\"{0}\" ausblenden",
+ "hideBadge": "Badge ausblenden",
"keep": "\"{0}\" beibehalten",
- "manageExtension": "Erweiterung verwalten",
"numberBadge": "{0} ({1})",
+ "showBadge": "Badge anzeigen",
"titleKeybinding": "{0} ({1})",
- "toggle": "Ansichtsfixierung umschalten"
+ "toggle": "Ansichtsfixierung umschalten",
+ "toggleBadge": "\"Badge anzeigen\" umschalten"
},
"vs/workbench/browser/parts/compositePart": {
"ariaCompositeToolbarLabel": "{0} Aktionen",
@@ -3089,18 +3941,20 @@
"viewsAndMoreActions": "Ansichten und weitere Aktionen..."
},
"vs/workbench/browser/parts/dialogs/dialogHandler": {
- "aboutDetail": "Version: {0}\r\nCommit: {1}\r\nDatum: {2}\r\nBrowser: {3}",
- "cancelButton": "Abbrechen",
- "copy": "Kopieren",
- "ok": "OK",
- "yesButton": "&&Ja"
+ "copy": "&&Kopieren",
+ "ok": "OK"
+ },
+ "vs/workbench/browser/parts/editor/auxiliaryEditorPart": {
+ "disableCompactAuxiliaryWindow": "Kompaktmodus deaktivieren",
+ "enableCompactAuxiliaryWindow": "Kompaktmodus aktivieren",
+ "toggleCompactAuxiliaryWindow": "Kompaktmodus für Fenster umschalten"
},
"vs/workbench/browser/parts/editor/binaryDiffEditor": {
"metadataDiff": "{0} ↔ {1}"
},
"vs/workbench/browser/parts/editor/binaryEditor": {
"binaryEditor": "Binärdateien-Viewer",
- "binaryError": "Die Datei wird im Editor nicht angezeigt, weil sie entweder binär ist oder eine nicht unterstützte Textcodierung verwendet.",
+ "binaryError": "Die Datei wird im Text-Editor nicht angezeigt, da sie binär ist oder eine nicht unterstützte Textcodierung verwendet.",
"openAnyway": "Trotzdem öffnen"
},
"vs/workbench/browser/parts/editor/breadcrumbs": {
@@ -3151,14 +4005,24 @@
"breadcrumbsPossible": "Gibt an, ob der Editor Breadcrumbs anzeigen kann.",
"breadcrumbsVisible": "Gibt an, ob Breadcrumbs zurzeit sichtbar sind.",
"cmd.focus": "Fokus auf Breadcrumbs",
+ "cmd.focusAndSelect": "Fokus und Breadcrumbs auswählen",
"cmd.toggle": "Breadcrumbs umschalten",
+ "cmd.toggle2": "Breadcrumbs umschalten",
"empty": "Keine Elemente",
- "miBreadcrumbs": "&&Breadcrumbs",
+ "miBreadcrumbs2": "&&Breadcrumbs",
"separatorIcon": "Symbol für das Trennzeichen in den Breadcrumbs."
},
"vs/workbench/browser/parts/editor/breadcrumbsPicker": {
"breadcrumbs": "Breadcrumbs"
},
+ "vs/workbench/browser/parts/editor/diffEditorCommands": {
+ "compare": "Vergleichen",
+ "compare.nextChange": "Zur nächsten Änderung wechseln",
+ "compare.openSide": "Aktive Diff-Seite öffnen",
+ "compare.previousChange": "Zur vorherigen Änderung wechseln",
+ "swapDiffSides": "Linke und rechte Editorseite tauschen",
+ "toggleInlineView": "Inlineansicht umschalten"
+ },
"vs/workbench/browser/parts/editor/editor.contribution": {
"activeGroupEditorsByMostRecentlyUsedQuickAccess": "Editoren in der aktiven Gruppe anzeigen, nach letzter Verwendung sortiert",
"allEditorsByAppearanceQuickAccess": "Alle geöffneten Editoren nach Darstellung anzeigen",
@@ -3177,15 +4041,26 @@
"closeRight": "Rechts schließen",
"closeRightEditors": "Editoren rechts in Gruppe schließen",
"closeSavedEditors": "Gespeicherte Editoren in Gruppe schließen",
+ "configureEditors": "Editoren konfigurieren",
+ "configureTabs": "Registerkarten konfigurieren",
+ "copyEditorGroupToNewWindow": "In neues Fenster kopieren",
+ "copyEditorToNewWindow": "Editor in neues Fenster kopieren",
+ "copyToNewWindow": "In neues Fenster kopieren",
+ "editorActionsPosition": "Position der Editoraktionen",
"editorQuickAccessPlaceholder": "Geben Sie den Namen eines Editors ein, um ihn zu öffnen.",
- "file": "Datei",
- "ignoreTrimWhitespace.label": "Unterschiede bei vorangestellten/nachfolgenden Leerzeichen ignorieren",
+ "hidden": "Ausgeblendet",
+ "hideTabs": "Ausgeblendet",
+ "ignoreTrimWhitespace.label": "Unterschiede zwischen vorangestellten/nachfolgenden Leerzeichen anzeigen",
"inlineView": "Inlineansicht",
"joinInGroup": "In Gruppe verknüpfen",
"keepEditor": "Editor beibehalten",
"keepOpen": "Geöffnet lassen",
+ "lockEditorGroup": "Gruppe sperren",
"lockGroup": "Gruppe sperren",
- "miClearRecentOpen": "&&Zuletzt geöffnete löschen",
+ "lockGroupAction": "Gruppe sperren",
+ "maximizeGroup": "Gruppe maximieren",
+ "miClearRecentOpen": "&&Zuletzt geöffnete löschen...",
+ "miCopyEditorToNewWindow": "&&Editor in neues Fenster kopieren",
"miEditorLayout": "Editor&&layout",
"miFirstSideEditor": "&&Erste Seite im Editor",
"miFocusAboveGroup": "Gruppe &&oben",
@@ -3200,6 +4075,7 @@
"miJoinEditorInGroup": "In &&Gruppe verknüpfen",
"miJoinEditorInGroupWithoutMnemonic": "In Gruppe verknüpfen",
"miLastEditLocation": "&&Position der letzten Bearbeitung",
+ "miMoveEditorToNewWindow": "&&Editor in neues Fenster verschieben",
"miNextEditor": "&&Nächster Editor",
"miNextEditorInGroup": "&&Nächster Editor in der Gruppe",
"miNextGroup": "&&Nächste Gruppe",
@@ -3241,16 +4117,27 @@
"miTwoRowsEditorLayoutWithoutMnemonic": "Zwei Zeilen",
"miTwoRowsRightEditorLayout": "Zwei Z&&eilen rechts",
"miTwoRowsRightEditorLayoutWithoutMnemonic": "Zwei Zeilen rechts",
+ "moveAbove": "Nach oben verschieben",
+ "moveBelow": "Nach unten verschieben",
+ "moveEditorGroupToNewWindow": "In neues Fenster verschieben",
+ "moveEditorToNewWindow": "Editor in neues Fenster verschieben",
+ "moveLeft": "Nach links verschieben",
+ "moveRight": "Nach rechts verschieben",
+ "moveToNewWindow": "In neues Fenster verschieben",
+ "multipleTabs": "Mehrere Registerkarten",
"navigate.next.label": "Nächste Änderung",
"navigate.prev.label": "Vorherige Änderung",
+ "newWindow": "Neues Fenster",
"nextChangeIcon": "Symbol für Aktion \"Nächste Änderung\" im Diff-Editor",
"pin": "Anheften",
"pinEditor": "Editor anheften",
"previousChangeIcon": "Symbol für Aktion \"Vorherige Änderung\" im Diff-Editor",
"reopenWith": "Editor erneut öffnen mit...",
+ "share": "Teilen",
"showOpenedEditors": "Geöffnete Editoren anzeigen",
- "showTrimWhitespace.label": "Unterschiede zwischen vorangestellten/nachfolgenden Leerzeichen anzeigen",
"sideBySideEditor": "Editor mit Ansicht \"Nebeneinander\"",
+ "singleTab": "Einzelne Registerkarte",
+ "splitAndMoveEditor": "Teilen und verschieben",
"splitDown": "Unten teilen",
"splitEditorDown": "Editor unten teilen",
"splitEditorRight": "Editor rechts teilen",
@@ -3258,20 +4145,25 @@
"splitLeft": "Links teilen",
"splitRight": "Rechts teilen",
"splitUp": "Oben teilen",
+ "swapDiffSides": "Linke und rechte Seite tauschen",
+ "tabBar": "Registerkartenleiste",
"textDiffEditor": "Text-Diff-Editor",
"textEditor": "Text-Editor",
+ "titleBar": "Titelleiste",
"toggleLockGroup": "Gruppe sperren",
"togglePreviewMode": "Vorschau-Editoren aktivieren",
"toggleSplitEditorInGroupLayout": "Layout umschalten",
"toggleWhitespace": "Symbol für Aktion \"Leerzeichen umschalten\" im Diff-Editor",
"unlockEditorGroup": "Gruppe entsperren",
"unlockGroupAction": "Gruppe entsperren",
+ "unmaximizeGroup": "Maximierung der Gruppe aufheben",
"unpin": "Lösen",
"unpinEditor": "Editor lösen"
},
"vs/workbench/browser/parts/editor/editorActions": {
"clearButtonLabel": "&&Löschen",
"clearEditorHistory": "Editor-Verlauf löschen",
+ "clearEditorHistoryWithoutConfirm": "Editorverlauf ohne Bestätigung löschen",
"clearRecentFiles": "Zuletzt geöffnete löschen",
"closeAllEditors": "Alle Editoren schließen",
"closeAllGroups": "Alle Editor-Gruppen schließen",
@@ -3283,6 +4175,8 @@
"confirmClearDetail": "Diese Aktion kann nicht rückgängig gemacht werden.",
"confirmClearEditorHistoryMessage": "Möchten Sie den Verlauf der zuletzt geöffneten Editoren löschen?",
"confirmClearRecentsMessage": "Möchten Sie alle zuletzt geöffneten Dateien und Arbeitsbereiche löschen?",
+ "copyEditorGroupToNewWindow": "Editor-Gruppe in neues Fenster kopieren",
+ "copyEditorToNewWindow": "Editor in neues Fenster kopieren",
"duplicateActiveGroupDown": "Editor-Gruppe unten duplizieren",
"duplicateActiveGroupLeft": "Editor-Gruppe links duplizieren",
"duplicateActiveGroupRight": "Editor-Gruppe rechts duplizieren",
@@ -3309,14 +4203,22 @@
"joinAllGroups": "Alle Editor-Gruppen verknüpfen",
"joinTwoGroups": "Editor-Gruppe mit nächster Gruppe verknüpfen",
"lastEditorInGroup": "Letzten Editor in der Gruppe öffnen",
- "maximizeEditor": "Editor-Gruppe maximieren und Seitenleiste ausblenden",
+ "maximizeEditorHideSidebar": "Editor-Gruppe maximieren und Seitenleiste ausblenden",
"miBack": "&&Zurück",
+ "miCopyEditorGroupToNewWindow": "&&Editor-Gruppe in neues Fenster kopieren",
+ "miCopyEditorToNewWindow": "&&Editor in neues Fenster kopieren",
"miForward": "&&Weiterleiten",
- "minimizeOtherEditorGroups": "Editor-Gruppe maximieren",
+ "miMoveEditorGroupToNewWindow": "&&Editor-Gruppe in neues Fenster verschieben",
+ "miMoveEditorToNewWindow": "&&Editor in neues Fenster verschieben",
+ "miNewEmptyEditorWindow": "&&Neues leeres Editorfenster",
+ "miRestoreEditorsToMainWindow": "&&Editoren im Hauptfenster wiederherstellen",
+ "minimizeOtherEditorGroups": "Editorgruppe erweitern",
+ "minimizeOtherEditorGroupsHideSidebar": "Editor-Gruppe erweitern und Seitenleiste ausblenden",
"moveActiveGroupDown": "Editor-Gruppe nach unten verschieben",
"moveActiveGroupLeft": "Editor-Gruppe nach links verschieben",
"moveActiveGroupRight": "Editor-Gruppe nach rechts verschieben",
"moveActiveGroupUp": "Editor-Gruppe nach oben verschieben",
+ "moveEditorGroupToNewWindow": "Editor-Gruppe in neues Fenster verschieben",
"moveEditorLeft": "Editor nach links verschieben",
"moveEditorRight": "Editor nach rechts verschieben",
"moveEditorToAboveGroup": "Editor in Gruppe oben verschieben",
@@ -3324,6 +4226,7 @@
"moveEditorToFirstGroup": "Editor in die erste Gruppe verschieben",
"moveEditorToLastGroup": "Editor in letzte Gruppe verschieben",
"moveEditorToLeftGroup": "Editor in linke Gruppe verschieben",
+ "moveEditorToNewWindow": "Editor in neues Fenster verschieben",
"moveEditorToNextGroup": "Editor in nächste Gruppe verschieben",
"moveEditorToPreviousGroup": "Editor in vorherige Gruppe verschieben",
"moveEditorToRightGroup": "Editor in rechte Gruppe verschieben",
@@ -3340,10 +4243,11 @@
"navigatePreviousInNavigationLocations": "Zurück in „Navigationspositionen“",
"navigateToLastEditLocation": "Gehe zum letzten Bearbeitungsort",
"navigateToLastNavigationLocation": "Zu „Letzte Navigationsposition“ wechseln",
- "newEditorAbove": "Neue Editor-Gruppe oben",
- "newEditorBelow": "Neue Editor-Gruppe unten",
- "newEditorLeft": "Neue Editor-Gruppe links",
- "newEditorRight": "Neue Editor-Gruppe rechts",
+ "newEmptyEditorWindow": "Neues leeres Editorfenster",
+ "newGroupAbove": "Neue Editor-Gruppe oben",
+ "newGroupBelow": "Neue Editor-Gruppe unten",
+ "newGroupLeft": "Neue Editor-Gruppe links",
+ "newGroupRight": "Neue Editor-Gruppe rechts",
"nextEditorInGroup": "Nächsten Editor in der Gruppe öffnen",
"openNextEditor": "Nächsten Editor öffnen",
"openNextRecentlyUsedEditor": "Nächsten zuletzt verwendeten Editor öffnen",
@@ -3357,7 +4261,10 @@
"quickOpenPreviousRecentlyUsedEditor": "Quick Open des vorherigen, kürzlich vom Benutzer verwendeten Editors",
"quickOpenPreviousRecentlyUsedEditorInGroup": "Schnelles Öffnen des zuletzt verwendeten Editors in Gruppe",
"reopenClosedEditor": "Geschlossenen Editor erneut öffnen",
+ "reopenTextEditor": "Editor mit Text-Editor erneut öffnen",
+ "restoreEditorsToMainWindow": "Editoren im Hauptfenster wiederherstellen",
"revertAndCloseActiveEditor": "Wiederherstellen und Editor schließen",
+ "reverting": "Editoren werden zurückgesetzt...",
"showAllEditors": "Alle Editoren nach Darstellung anzeigen",
"showAllEditorsByMostRecentlyUsed": "Alle Editoren nach letzter Verwendung anzeigen",
"showEditorsInActiveGroup": "Editoren in der aktiven Gruppe nach der letzten Verwendung sortiert anzeigen",
@@ -3375,19 +4282,21 @@
"splitEditorToNextGroup": "Editor in nächster Gruppe teilen",
"splitEditorToPreviousGroup": "Editor in vorheriger Gruppe teilen",
"splitEditorToRightGroup": "Editor in rechter Gruppe teilen",
+ "toggleEditorType": "Editortyp umschalten",
"toggleEditorWidths": "Editor-Gruppengrößen umschalten",
- "unpinEditor": "Editor lösen",
- "workbench.action.reopenTextEditor": "Editor mit Text-Editor erneut öffnen",
- "workbench.action.toggleEditorType": "Editortyp umschalten"
+ "toggleMaximizeEditorGroup": "Maximieren der Editorgruppe umschalten",
+ "unmaximizeGroup": "Maximierung der Gruppe aufheben",
+ "unpinEditor": "Editor lösen"
},
"vs/workbench/browser/parts/editor/editorCommands": {
- "compare": "Vergleichen",
"editorCommand.activeEditorCopy.arg.description": "Argumenteigenschaften:\r\n\t* „to“: Zeichenfolgenwert, der angibt, wohin kopiert werden soll.\r\n\t*„value“: Zahlenwert, der angibt, wie viele Positionen oder welche absolute Position kopiert werden soll.",
"editorCommand.activeEditorCopy.arg.name": "Aktives Editor-Kopierargument",
"editorCommand.activeEditorCopy.description": "Kopieren des aktiven Editors nach Gruppen",
"editorCommand.activeEditorMove.arg.description": "Argumenteigenschaften:\r\n\t* \"to\": Ein Zeichenfolgenwert, der das Ziel des Verschiebungsvorgangs angibt.\r\n\t* \"by\": Ein Zeichenfolgenwert, der die Einheit für die Verschiebung angibt (nach Registerkarte oder nach Gruppe).\r\n\t* \"value\": Ein Zahlenwert, der angibt, um wie viele Positionen verschoben wird. Es kann auch die absolute Position für die Verschiebung angegeben werden.",
"editorCommand.activeEditorMove.arg.name": "Argument zum Verschieben des aktiven Editors",
"editorCommand.activeEditorMove.description": "Aktiven Editor nach Tabstopps oder Gruppen verschieben",
+ "editorGroupLayout.horizontal": "Horizontal",
+ "editorGroupLayout.vertical": "Vertikal",
"focusLeftSideEditor": "Fokus auf erster Seite im aktiven Editor",
"focusOtherSideEditor": "Fokus auf anderer Seite im aktiven Editor",
"focusRightSideEditor": "Fokus auf der zweiten Seite im aktiven Editor",
@@ -3395,15 +4304,18 @@
"lockEditorGroup": "Editor-Gruppe sperren",
"splitEditorInGroup": "Editor in der Gruppe teilen",
"toggleEditorGroupLock": "Editor-Gruppensperre umschalten",
- "toggleInlineView": "Inlineansicht umschalten",
"toggleJoinEditorInGroup": "Teilung des Editors in Gruppe umschalten",
"toggleSplitEditorInGroupLayout": "Layout des Teilen-Editors in Gruppe umschalten",
"unlockEditorGroup": "Editor-Gruppe entsperren"
},
"vs/workbench/browser/parts/editor/editorConfiguration": {
- "editor.editorAssociations": "Konfigurieren Sie Globmuster für Editoren (z. B. `\"*.hex\": \"hexEditor.hexEdit\"`). Diese haben Vorrang vor dem Standardverhalten.",
+ "editor.editorAssociations": "Konfigurieren Sie [Globmuster](https://aka.ms/vscode-glob-patterns) für Editoren (z. B. `\"*.hex\": \"hexEditor.hexedit\"`). Diese haben Vorrang vor dem Standardverhalten.",
+ "editorLargeFileSizeConfirmation": "Steuert die Mindestgröße einer Datei in MB, bevor beim Öffnen im Editor eine Bestätigungsaufforderung angezeigt wird. Beachten Sie, dass diese Einstellung möglicherweise nicht auf alle Editortypen und Umgebungen angewendet wird.",
+ "interactiveWindow": "Interaktives Fenster",
+ "livePreview": "Livevorschau",
"markdownPreview": "Markdownvorschau",
- "workbench.editor.autoLockGroups": "Wenn ein Editor, der einem der aufgeführten Typen entspricht, als erster einer Editorgruppe geöffnet wird und mehr als eine Gruppe geöffnet ist, wird die Gruppe automatisch gesperrt. Gesperrte Gruppen werden nur zum Öffnen von Editoren verwendet, wenn sie über eine Benutzergeste explizit ausgewählt werden (z. B. Drag und Drop), dies ist aber nicht der Standard. Daher ist es weniger wahrscheinlich, dass der aktive Editor in einer gesperrten Gruppe versehentlich durch einen anderen Editor ersetzt wird.",
+ "simpleBrowser": "Einfacher Browser",
+ "workbench.editor.autoLockGroups": "Wenn ein Editor, der einem der aufgeführten Typen entspricht, als erster einer Editorgruppe geöffnet wird und mehr als eine Gruppe geöffnet ist, wird die Gruppe automatisch gesperrt. Gesperrte Gruppen werden nur zum Öffnen von Editoren verwendet, wenn sie über eine Benutzergeste explizit ausgewählt werden (z. B. Drag und Drop), dies ist aber nicht der Standard. Daher ist es weniger wahrscheinlich, dass der aktive Editor in einer gesperrten Gruppe versehentlich durch einen anderen Editor ersetzt wird.",
"workbench.editor.defaultBinaryEditor": "Der Standard-Editor für Dateien, die als binär erkannt werden. Wenn nicht definiert, wird dem Benutzer eine Auswahl angezeigt."
},
"vs/workbench/browser/parts/editor/editorDropTarget": {
@@ -3413,22 +4325,43 @@
"ariaLabelGroupActions": "Leere Editor-Gruppenaktionen",
"emptyEditorGroup": "{0} (leer)",
"groupAriaLabel": "Editor-Gruppe {0}",
- "groupLabel": "Gruppe {0}"
+ "groupAriaLabelLong": "{0}Editorgruppe \"{1}\"",
+ "groupLabel": "Gruppe {0}",
+ "groupLabelLong": "{0}: Gruppe \"{1}\"",
+ "moveErrorDetails": "Versuchen Sie zuerst, den Editor zu speichern oder wiederherzustellen, und versuchen Sie es dann erneut."
},
- "vs/workbench/browser/parts/editor/editorPanes": {
- "cancel": "Abbrechen",
- "editorOpenErrorDialog": "'{0}' kann nicht geöffnet werden",
- "ok": "OK"
- },
- "vs/workbench/browser/parts/editor/editorPlaceholder": {
- "errorEditor": "Anker-Editor",
- "manageTrust": "Arbeitsbereichsvertrauensstellung verwalten",
+ "vs/workbench/browser/parts/editor/editorGroupWatermark": {
+ "editorLineHighlight": "Vordergrundfarbe für die Bezeichnungen im Editor-Wasserzeichen.",
+ "watermark.findInFiles": "In Dateien suchen",
+ "watermark.newUntitledFile": "Neue unbenannte Textdatei",
+ "watermark.openChat": "Chat öffnen",
+ "watermark.openFile": "Datei öffnen",
+ "watermark.openFileFolder": "Datei oder Ordner öffnen",
+ "watermark.openFolder": "Ordner öffnen",
+ "watermark.openRecent": "Zuletzt verwendete öffnen",
+ "watermark.openSettings": "Einstellungen öffnen",
+ "watermark.quickAccess": "Zu Datei wechseln",
+ "watermark.showCommands": "Alle Befehle anzeigen",
+ "watermark.startDebugging": "Debuggen starten",
+ "watermark.toggleTerminal": "Terminal umschalten"
+ },
+ "vs/workbench/browser/parts/editor/editorPanes": {
+ "editorOpenErrorDialog": "'{0}' kann nicht geöffnet werden",
+ "ok": "&&OK"
+ },
+ "vs/workbench/browser/parts/editor/editorParts": {
+ "groupLabel": "Fenster {0}"
+ },
+ "vs/workbench/browser/parts/editor/editorPlaceholder": {
+ "errorEditor": "Anker-Editor",
+ "manageTrust": "Arbeitsbereichsvertrauensstellung verwalten",
"requiresFolderTrustText": "Die Datei wird nicht im Editor angezeigt, da dem Ordner keine Vertrauenswürdigkeit gewährt wurde.",
"requiresWorkspaceTrustText": "Die Datei wird nicht im Editor angezeigt, da dem Arbeitsbereich keine Vertrauenswürdigkeit gewährt wurde.",
"retry": "Erneut versuchen",
+ "showLogs": "Protokolle anzeigen",
"trustRequiredEditor": "Arbeitsbereichsvertrauensstellung erforderlich",
"unavailableResourceErrorEditorText": "Der Editor konnte nicht geöffnet werden, da die Datei nicht gefunden wurde.",
- "unknownErrorEditorTextWithError": "Der Editor konnte aufgrund eines unerwarteten Fehlers nicht geöffnet werden: {0}",
+ "unknownErrorEditorTextWithError": "Der Editor konnte aufgrund eines unerwarteten Fehlers nicht geöffnet werden. Weitere Informationen finden Sie im Protokoll.",
"unknownErrorEditorTextWithoutError": "Der Editor konnte aufgrund eines unerwarteten Fehlers nicht geöffnet werden."
},
"vs/workbench/browser/parts/editor/editorQuickAccess": {
@@ -3442,6 +4375,8 @@
"autoDetect": "Automatische Erkennung",
"changeEncoding": "Dateicodierung ändern",
"changeEndOfLine": "Zeilenendesequenz ändern",
+ "changeLanguageMode.arg.name": "Der Name des Sprachmodus, in den geändert werden soll.",
+ "changeLanguageMode.description": "Ändern Sie den Sprachmodus des aktiven Text-Editors.",
"changeMode": "Sprachmodus ändern",
"columnSelectionModeEnabled": "Spaltenauswahl",
"configureAssociationsExt": "Dateizuordnung für \"{0}\" konfigurieren...",
@@ -3457,6 +4392,7 @@
"guessedEncoding": "Vom Inhalt abgeleitet",
"indentConvert": "Datei konvertieren",
"indentView": "Ansicht wechseln",
+ "inputModeOvertype": "ÜB",
"languageDescription": "({0}): konfigurierte Sprache",
"languageDescriptionConfigured": "({0})",
"languagesPicks": "Sprachen (Bezeichner)",
@@ -3471,12 +4407,11 @@
"pickEndOfLine": "Zeilenendesequenz auswählen",
"pickLanguage": "Sprachmodus auswählen",
"pickLanguageToConfigure": "Sprachmodus auswählen, der \"{0}\" zugeordnet werden soll",
+ "reopen": "Änderungen verwerfen und erneut öffnen",
"reopenWithEncoding": "Mit Codierung erneut öffnen",
+ "reopenWithEncodingDetail": "Dadurch werden alle nicht gespeicherten Änderungen verworfen.",
+ "reopenWithEncodingWarning": "Möchten Sie den aktiven Text-Editor wiederherstellen und mit einer anderen Codierung erneut öffnen?",
"saveWithEncoding": "Mit Codierung speichern",
- "screenReaderDetected": "Für Sprachausgabe optimiert",
- "screenReaderDetectedExplanation.answerNo": "Nein",
- "screenReaderDetectedExplanation.answerYes": "Ja",
- "screenReaderDetectedExplanation.question": "Verwenden Sie eine Sprachausgabe zum Bedienen von VS Code? (Zeilenumbrüche sind bei Verwendung einer Sprachausgabe deaktiviert.)",
"selectEOL": "Zeilenendesequenz auswählen",
"selectEncoding": "Codierung auswählen",
"selectIndentation": "Einzug auswählen",
@@ -3484,37 +4419,57 @@
"showLanguageExtensions": "Marketplace-Erweiterungen für \"{0}\" durchsuchen...",
"singleSelection": "Zeile {0}, Spalte {1}",
"singleSelectionRange": "Zeile {0}, Spalte {1} ({2} ausgewählt)",
+ "spacesAndTabsSize": "Leerzeichen: {0} (Registerkartengröße: {1})",
"spacesSize": "Leerzeichen: {0}",
"status.editor.columnSelectionMode": "Spaltenauswahlmodus",
+ "status.editor.enableInsertMode": "Einfügemodus aktivieren",
"status.editor.encoding": "Editorcodierung",
"status.editor.eol": "Zeilenende im Editor",
"status.editor.indentation": "Editoreinzug",
"status.editor.info": "Dateiinformationen",
"status.editor.mode": "Editorsprache",
- "status.editor.screenReaderMode": "Sprachausgabemodus",
"status.editor.selection": "Editorauswahl",
"status.editor.tabFocusMode": "Barrierefreiheitsmodus",
"tabFocusModeEnabled": "TAB-TASTE verschiebt Fokus",
"tabSize": "Tabulatorgröße: {0}"
},
- "vs/workbench/browser/parts/editor/sideBySideEditor": {
- "sideBySideEditor": "Editor mit Ansicht \"Nebeneinander\""
+ "vs/workbench/browser/parts/editor/editorTabsControl": {
+ "ariaLabelEditorActions": "Editoraktionen",
+ "draggedEditorGroup": "{0} (+{1})"
},
- "vs/workbench/browser/parts/editor/tabsTitleControl": {
+ "vs/workbench/browser/parts/editor/multiEditorTabsControl": {
"ariaLabelTabActions": "Registerkartenaktionen"
},
+ "vs/workbench/browser/parts/editor/sideBySideEditor": {
+ "sideBySideEditor": "Editor mit Ansicht \"Nebeneinander\""
+ },
"vs/workbench/browser/parts/editor/textCodeEditor": {
"textEditor": "Text-Editor"
},
"vs/workbench/browser/parts/editor/textDiffEditor": {
+ "fileTooLargeForHeapErrorWithSize": "Mindestens eine Datei wird im Textvergleichs-Editor nicht angezeigt, da sie sehr groß ist ({0}).",
+ "fileTooLargeForHeapErrorWithoutSize": "Mindestens eine Datei wird im Textvergleichs-Editor nicht angezeigt, da sie sehr groß ist.",
"textDiffEditor": "Text-Diff-Editor"
},
"vs/workbench/browser/parts/editor/textEditor": {
"editor": "Editor"
},
- "vs/workbench/browser/parts/editor/titleControl": {
- "ariaLabelEditorActions": "Editoraktionen",
- "draggedEditorGroup": "{0} (+{1})"
+ "vs/workbench/browser/parts/globalCompositeBar": {
+ "accounts": "Konten",
+ "accountsViewBarIcon": "Kontosymbol in der Ansichtsleiste.",
+ "authProviderUnavailable": "\"{0}\" ist momentan nicht verfügbar",
+ "hideAccounts": "Konten ausblenden",
+ "loading": "Wird geladen…",
+ "manage": "Verwalten",
+ "manage profile": "{0} (Profil) verwalten",
+ "manageDynamicAuthProviders": "Anbieter für die dynamische Authentifizierung verwalten...",
+ "manageTrustedExtensions": "Vertrauenswürdige Erweiterungen verwalten",
+ "manageTrustedMCPServers": "Vertrauenswürdige MCP-Server verwalten",
+ "signOut": "Abmelden"
+ },
+ "vs/workbench/browser/parts/notifications/notificationAccessibleView": {
+ "clearNotification": "Benachrichtigung löschen",
+ "notification.accessibleViewSrc": "{0} Quelle: {1}"
},
"vs/workbench/browser/parts/notifications/notificationsActions": {
"clearAllIcon": "Symbol für die Aktion \"Alles löschen\" in Benachrichtigungen.",
@@ -3523,15 +4478,17 @@
"clearNotifications": "Alle Benachrichtigungen löschen",
"collapseIcon": "Symbol für die Aktion \"Einklappen\" in Benachrichtigungen.",
"collapseNotification": "Benachrichtigung schließen",
+ "configureDoNotDisturbMode": "“Nicht stören“ konfigurieren...",
"configureIcon": "Symbol für die Aktion \"Konfigurieren\" in Benachrichtigungen.",
- "configureNotification": "Benachrichtigung konfigurieren",
+ "configureNotification": "Weitere Aktionen…",
"copyNotification": "Text kopieren",
"doNotDisturbIcon": "Symbol für die Aktion Alle stummschalten in Benachrichtigungen.",
"expandIcon": "Symbol für die Aktion \"Aufklappen\" in Benachrichtigungen.",
"expandNotification": "Benachrichtigung erweitern",
"hideIcon": "Symbol für die Aktion \"Ausblenden\" in Benachrichtigungen.",
"hideNotificationsCenter": "Benachrichtigungen verbergen",
- "toggleDoNotDisturbMode": "Schalten Sie den Nicht Stören Modus um"
+ "toggleDoNotDisturbMode": "Schalten Sie den Nicht Stören Modus um",
+ "toggleDoNotDisturbModeBySource": "Modus „Nicht stören“ nach Quelle umschalten..."
},
"vs/workbench/browser/parts/notifications/notificationsAlerts": {
"alertErrorMessage": "Fehler: {0}",
@@ -3539,22 +4496,32 @@
"alertWarningMessage": "Warnung: {0}"
},
"vs/workbench/browser/parts/notifications/notificationsCenter": {
+ "moreSources": "Mehr…",
"notifications": "Benachrichtigungen",
"notificationsCenterWidgetAriaLabel": "Benachrichtigungscenter",
"notificationsEmpty": "Keine neuen Benachrichtigungen",
- "notificationsToolbar": "Aktionen der Benachrichtigungszentrale"
+ "notificationsToolbar": "Aktionen der Benachrichtigungszentrale",
+ "turnOffNotifications": "Modus \"Nicht stören\" deaktivieren",
+ "turnOnNotifications": "Modus \"Nicht stören\" aktivieren"
},
"vs/workbench/browser/parts/notifications/notificationsCommands": {
+ "acceptNotificationPrimaryAction": "Primäre Benachrichtigungsaktion akzeptieren",
"clearAllNotifications": "Alle Benachrichtigungen löschen",
"focusNotificationToasts": "Benachrichtigungspopup fokussieren",
"hideNotifications": "Benachrichtigungen ausblenden",
"notifications": "Benachrichtigungen",
+ "selectSources": "Quellen auswählen, von denen alle Benachrichtigungen aktiviert werden sollen",
"showNotifications": "Benachrichtigungen anzeigen",
- "toggleDoNotDisturbMode": "Schalten Sie den Nicht Stören Modus um"
+ "toggleDoNotDisturbMode": "Schalten Sie den Nicht Stören Modus um",
+ "toggleDoNotDisturbModeBySource": "Modus „Nicht stören“ nach Quelle umschalten..."
},
"vs/workbench/browser/parts/notifications/notificationsList": {
+ "notificationAccessibleViewHint": "Überprüfen Sie die Antwort in der barrierefreien Ansicht mit {0}.",
+ "notificationAccessibleViewHintNoKb": "Überprüfen Sie die Antwort in der barrierefreien Ansicht über den Befehl \"Barrierefreie Ansicht öffnen\", der zurzeit nicht per Tastenzuordnung ausgelöst werden kann.",
"notificationAriaLabel": "{0}, Benachrichtigung",
+ "notificationAriaLabelHint": "{0}, Benachrichtigung, {1}",
"notificationWithSourceAriaLabel": "{0}, Quelle: {1}, Benachrichtigung",
+ "notificationWithSourceAriaLabelHint": "{0}, Quelle: {1}, Benachrichtigung, {2}",
"notificationsList": "Benachrichtigungsliste"
},
"vs/workbench/browser/parts/notifications/notificationsStatus": {
@@ -3578,7 +4545,21 @@
"vs/workbench/browser/parts/notifications/notificationsViewer": {
"executeCommand": "Klicken, um den Befehl \"{0}\" auszuführen",
"notificationActions": "Benachrichtigungsaktionen",
- "notificationSource": "Quelle: {0}"
+ "notificationSource": "Quelle: {0}",
+ "turnOffNotifications": "Info- und Warnungsbenachrichtigungen von \"{0}\" deaktivieren",
+ "turnOnNotifications": "Alle Benachrichtigungen von \"{0}\" aktivieren"
+ },
+ "vs/workbench/browser/parts/paneCompositeBar": {
+ "auxiliarybar": "Sekundäre Seitenleiste",
+ "moveToMenu": "Verschieben nach",
+ "panel": "Bereich",
+ "resetLocation": "Speicherort zurücksetzen",
+ "sidebar": "Primäre Seitenleiste"
+ },
+ "vs/workbench/browser/parts/paneCompositePart": {
+ "moreActions": "Weitere Aktionen...",
+ "pane.emptyMessage": "Ziehen Sie eine Ansicht hierher, um sie anzuzeigen.",
+ "views": "Ansichten"
},
"vs/workbench/browser/parts/panel/panelActions": {
"alignPanel": "Bereich ausrichten",
@@ -3591,18 +4572,16 @@
"alignPanelRight": "Bereichsausrichtung auf „rechts“ festlegen",
"alignPanelRightShort": "Rechts",
"closeIcon": "Symbol für das Schließen eines Panels.",
- "closePanel": "Panel schließen",
- "closeSecondarySideBar": "Sekundäre Seitenleiste schließen",
+ "closePanel": "Bereich ausblenden",
"focusPanel": "Fokus im Panel",
- "hidePanel": "Panel ausblenden",
"maximizeIcon": "Symbol für das Maximieren eines Panels.",
"maximizePanel": "Panelgröße maximieren",
- "miPanel": "&&Panel",
- "miPanelNoMnemonic": "Panel",
+ "miTogglePanelMnemonic": "&&Bereich",
"minimizePanel": "Panelgröße wiederherstellen",
"movePanelToSecondarySideBar": "Bereichsansichten in die sekundäre Seitenleiste verschieben",
"moveSidePanelToPanel": "Sekundäre Seitenleistenansichten in den Bereich verschieben",
"nextPanelView": "Nächste Panelansicht",
+ "openAndClosePanel": "Bereich öffnen/anzeigen und schließen/ausblenden",
"panelMaxNotSupported": "Das Maximieren des Bereichs wird nur unterstützt, wenn es zentriert ausgerichtet ist.",
"positionPanel": "Panelposition:",
"positionPanelBottom": "Panel nach unten verschieben",
@@ -3611,8 +4590,9 @@
"positionPanelLeftShort": "Links",
"positionPanelRight": "Panel nach rechts verschieben",
"positionPanelRightShort": "Rechts",
+ "positionPanelTop": "Bereich nach oben verschieben",
+ "positionPanelTopShort": "Oben",
"previousPanelView": "Vorherige Panelansicht",
- "restoreIcon": "Symbol für das Wiederherstellen eines Panels.",
"toggleMaximizedPanel": "Maximiertes Panel umschalten",
"togglePanel": "Panel umschalten",
"togglePanelOffIcon": "Symbol zum Deaktivieren des Bereichs, wenn er aktiviert ist.",
@@ -3620,37 +4600,34 @@
"togglePanelVisibility": "Bereichssichtbarkeit umschalten"
},
"vs/workbench/browser/parts/panel/panelPart": {
+ "align panel": "Bereich ausrichten",
"hidePanel": "Panel ausblenden",
- "moreActions": "Weitere Aktionen...",
- "panel.emptyMessage": "Ziehen Sie eine Ansicht hierher, um sie anzuzeigen.",
- "pinned view containers": "Sichtbarkeitsanpassungen für Bereichseinträge",
- "resetLocation": "Speicherort zurücksetzen"
+ "panel position": "Bereichsposition",
+ "showIcons": "Symbole anzeigen",
+ "showLabels": "Beschriftungen anzeigen"
},
"vs/workbench/browser/parts/sidebar/sidebarActions": {
+ "closeSidebar": "Primäre Seitenleiste schließen",
"focusSideBar": "Fokus auf primäre Seitenleiste"
},
+ "vs/workbench/browser/parts/sidebar/sidebarPart": {
+ "toggleActivityBar": "Sichtbarkeit der Aktivitätsleiste umschalten"
+ },
"vs/workbench/browser/parts/statusbar/statusbarActions": {
"focusStatusBar": "Fokus Statusleiste",
- "hide": "\"{0}\" ausblenden"
- },
- "vs/workbench/browser/parts/statusbar/statusbarModel": {
- "statusbar.hidden": "Sichtbarkeitsanpassungen für Statusleisteneinträge"
+ "hide": "\"{0}\" ausblenden",
+ "manageExtension": "Erweiterung verwalten"
},
"vs/workbench/browser/parts/statusbar/statusbarPart": {
"hideStatusBar": "Statusleiste ausblenden"
},
"vs/workbench/browser/parts/titlebar/commandCenterControl": {
- "all": "Suchmodi anzeigen...",
- "commandCenter-activeBackground": "Aktive Hintergrundfarbe der Befehlsmitte",
- "commandCenter-activeForeground": "Aktive Vordergrundfarbe der Befehlsmitte",
- "commandCenter-background": "Hintergrundfarbe der Befehlsmitte",
- "commandCenter-border": "Rahmenfarbe der Befehlsmitte",
- "commandCenter-foreground": "Vordergrundfarbe der Befehlsmitte",
"label.dfl": "Suchen",
"label1": "{0} {1}",
"label2": "{0} {1}",
"title": "{0} suchen ({1}) – {2}",
- "title2": "{0} suchen – {1}"
+ "title2": "{0} suchen – {1}",
+ "title3": "Befehlscenter"
},
"vs/workbench/browser/parts/titlebar/menubarControl": {
"DownloadingUpdate": "Das Update wird heruntergeladen...",
@@ -3668,30 +4645,54 @@
"mPreferences": "Einstellungen",
"mSelection": "Au&&swahl",
"mTerminal": "&&Terminal",
- "mView": "&&Anzeigen",
- "menubar.customTitlebarAccessibilityNotification": "Sie haben die Unterstützung für Barrierefreiheit aktiviert. Für eine optimale Bedienung wird empfohlen, eine benutzerdefinierte Titelleiste zu verwenden.",
+ "mView": "An&&zeigen",
+ "menubar.customTitlebarAccessibilityNotification": "Sie haben die Unterstützung für Barrierefreiheit aktiviert. Für eine optimale Erfahrung wird empfohlen, ein benutzerdefiniertes Menü zu verwenden.",
"restartToUpdate": "Für &&Update neu starten"
},
+ "vs/workbench/browser/parts/titlebar/titlebarActions": {
+ "accounts": "Konten",
+ "hideCustomTitleBar": "Benutzerdefinierte Titelleiste ausblenden",
+ "hideCustomTitleBarInFullScreen": "Benutzerdefinierte Titelleiste im Vollbildmodus ausblenden",
+ "manage": "Verwalten",
+ "showCustomTitleBar": "Benutzerdefinierte Titelleiste anzeigen",
+ "toggle.commandCenter": "Befehlscenter",
+ "toggle.commandCenterDescription": "Sichtbarkeit des Befehlscenters in der Titelleiste umschalten",
+ "toggle.customTitleBar": "Benutzerdefinierte Titelleiste",
+ "toggle.editorActions": "Editoraktionen",
+ "toggle.hideCustomTitleBar": "Benutzerdefinierte Titelleiste ausblenden",
+ "toggle.hideCustomTitleBarInFullScreen": "Benutzerdefinierte Titelleiste im Vollbildmodus ausblenden",
+ "toggle.layout": "Layout-Steuerelemente",
+ "toggle.layoutDescription": "Sichtbarkeit der Layoutsteuerelemente in der Titelleiste umschalten",
+ "toggle.navigation": "Navigationssteuerelemente",
+ "toggle.navigationDescription": "Sichtbarkeit der Navigationssteuerelemente in der Titelleiste umschalten"
+ },
"vs/workbench/browser/parts/titlebar/titlebarPart": {
- "focusTitleBar": "Titelleiste des Fokus",
- "toggle.commandCenter": "Command Center",
- "toggle.layout": "Layout Controls"
+ "ariaLabelTitleActions": "Titelaktionen",
+ "focusTitleBar": "Titelleiste des Fokus"
},
"vs/workbench/browser/parts/titlebar/windowTitle": {
"devExtensionWindowTitlePrefix": "[Erweiterungsentwicklungshost]",
"userIsAdmin": "[Administrator]",
"userIsSudo": "[Superuser]"
},
+ "vs/workbench/browser/parts/views/checkbox": {
+ "checked": "Aktiviert",
+ "unchecked": "Nicht aktiviert"
+ },
"vs/workbench/browser/parts/views/treeView": {
"collapseAll": "Alle zuklappen",
"command-error": "Fehler beim Ausführen des Befehls {1}: {0}. Dies wird vermutlich durch die Erweiterung verursacht, die {1} beiträgt.",
"no-dataprovider": "Es ist kein Datenanbieter registriert, der Sichtdaten bereitstellen kann.",
"refresh": "Aktualisieren",
- "treeView.enableCollapseAll": "Gibt an, ob in der Strukturansicht mit der ID {0} alle Elemente reduziert werden können.",
+ "treeView.enableCollapseAll": "Gibt an, ob die Strukturansicht mit der ID {0} das Reduzieren aller Elemente ermöglicht.",
"treeView.enableRefresh": "Gibt an, ob in der Strukturansicht mit der ID {0} eine Aktualisierung möglich ist.",
"treeView.toggleCollapseAll": "Gibt an, ob für die Strukturansicht mit der ID {0} das Reduzieren aller Elemente umgeschaltet werden kann."
},
+ "vs/workbench/browser/parts/views/viewFilter": {
+ "more filters": "Weitere Filter..."
+ },
"vs/workbench/browser/parts/views/viewPane": {
+ "viewAccessibilityHelp": "ALT+F1 für Barrierefreiheitshilfe „{0}“ verwenden",
"viewPaneContainerCollapsedIcon": "Symbol für einen zugeklappten Ansichtsbereichscontainer.",
"viewPaneContainerExpandedIcon": "Symbol für einen aufgeklappten Ansichtsbereichscontainer.",
"viewToolbarAriaLabel": "{0} Aktionen"
@@ -3704,55 +4705,84 @@
"views": "Ansichten",
"viewsMove": "Ansichten verschieben"
},
- "vs/workbench/browser/parts/views/viewsService": {
- "focus view": "Fokus auf Ansicht \"{0}\"",
- "resetViewLocation": "Speicherort zurücksetzen",
- "show view": "{0} anzeigen",
- "toggle view": "\"{0}\" umschalten"
- },
"vs/workbench/browser/quickaccess": {
"inQuickOpen": "Gibt an, ob sich der Tastaturfokus innerhalb des Quick Open-Steuerelements befindet."
},
- "vs/workbench/browser/workbench": {
- "loaderErrorNative": "Fehler beim Laden einer erforderlichen Datei. Starten Sie die Anwendung neu, und versuchen Sie es dann erneut. Details: {0}"
+ "vs/workbench/browser/web.main": {
+ "reset": "Benutzerdaten zurücksetzen",
+ "reset user data message": "Möchten Sie Ihre Daten (Einstellungen, Tastenzuordnungen, Erweiterungen, Codeausschnitte und UI-Status) zurücksetzen und neu laden?"
+ },
+ "vs/workbench/browser/window": {
+ "closeWindowButtonLabel": "&&Fenster schließen",
+ "closeWindowMessage": "Möchten Sie den Assistenten wirklich schließen?",
+ "doNotAskAgain": "Nicht erneut fragen",
+ "exitButtonLabel": "&&Beenden",
+ "openExternalDialogButtonInstall.v3": "&&Installieren",
+ "openExternalDialogButtonRetry.v2": "&&Erneut versuchen",
+ "openExternalDialogDetail.v2": "Wir haben {0} auf Ihrem Computer gestartet.\r\n\r\nWenn {1} nicht gestartet wurde, versuchen Sie es erneut, oder installieren Sie es unten.",
+ "openExternalDialogDetailNoInstall": "Wir haben {0} auf Ihrem Computer gestartet.\r\n\r\nWenn {1} nicht gestartet wurde, versuchen Sie es unten noch mal.",
+ "openExternalDialogTitle": "Fertig. Sie können diese Registerkarte jetzt schließen.",
+ "quitButtonLabel": "&&Aufhören",
+ "quitMessage": "Möchten Sie den Vorgang beenden?",
+ "quitMessageMac": "Sind Sie sicher, dass Sie aufhören wollen?",
+ "reload": "&&Neu laden",
+ "retry": "&&Erneut versuchen",
+ "shutdownError": "Unerwarteter Fehler, der ein erneutes Laden dieser Seite erfordert.",
+ "shutdownErrorDetail": "Die Workbench wurde während der Ausführung unerwartet verworfen.",
+ "unableToOpenExternal": "Der Browser hat das Öffnen einer neuen Registerkarte oder eines neuen Fensters blockiert. Wählen Sie \"Erneut versuchen\" aus, um es noch einmal zu versuchen.",
+ "unableToOpenWindowDetail": "Erlauben Sie Pop-ups für diese Website in Ihren [Browsereinstellungen]({0})."
},
"vs/workbench/browser/workbench.contribution": {
"activeEditorLong": "\"${activeEditorLong}\": der vollständige Pfad der Datei (z. B. /Users/Development/myFolder/myFileFolder/myFile.txt).",
"activeEditorMedium": "`${activeEditorMedium}`: der Pfad der Datei, in Relation zum Arbeitsbereichsordner (z. B. myFolder/myFileFolder/myFile.txt).",
"activeEditorShort": "`${activeEditorShort}`: der Dateiname (z. B. myFile.txt).",
+ "activeEditorState": "„${activeEditorState}“: Stellt Informationen zum Status des aktiven Editors bereit (z. B. geändert). Wird standardmäßig im Sprachausgabemodus angefügt, wenn {0} aktiviert ist.",
"activeFolderLong": "`${activeFolderLong}`: der vollständige Pfad des Ordners, der die Datei enthält (z. B. /Users/Development/myFolder/myFileFolder).",
"activeFolderMedium": "\"${activeFolderMedium}\": der Pfad des Ordners, der die Datei enthält, relativ zum Arbeitsbereich (z.B. myFolder/myFileFolder).",
"activeFolderShort": "`${activeFolderShort}`: der Name des Ordners, der die Datei enthält (z. B. myFileFolder).",
- "activityBarIconClickBehavior": "Steuert das Verhalten beim Klicken auf ein Aktivitätsleistensymbol in der Workbench.",
- "activityBarVisibility": "Steuert die Sichtbarkeit der Aktivitätsleiste in der Workbench.",
+ "activeRepositoryBranchName": "\"${activeRepositoryBranchName}\": der Name des aktiven Branches im aktiven Repository (z. B. main).",
+ "activeRepositoryName": "\"${activeRepositoryName}\": der Name des aktiven Repositorys (z. B. vscode).",
+ "activityBarIconClickBehavior": "Steuert das Verhalten des Klickens auf ein Aktivitätsleistensymbol in der Workbench. Dieser Wert wird ignoriert, wenn „{0}“ nicht auf „{1}“ festgelegt ist.",
+ "activityBarLocation": "Steuert die Position der Aktivitätsleiste relativ zu den primären und sekundären Seitenleisten.",
+ "alwaysShowEditorActions": "Steuert, ob die Editoraktionen immer angezeigt werden sollen, auch wenn die Editorgruppe nicht aktiv ist.",
"appName": "`${appName}`: z. B. VS Code.",
+ "askChatLocation": "Steuert, wo die Befehlspalette Chatfragen stellen soll.",
+ "askChatLocation.chatView": "Stellen Sie Chatfragen in der Chatansicht.",
+ "askChatLocation.quickChat": "Stellen Sie Chatfragen im Schnellchat.",
+ "browser": "Konfigurieren Sie den Browser für das externe Öffnen von HTTP- oder HTTPS-Links. Dies kann entweder der Name des Browsers (\"edge\", \"chrome\", \"firefox\") oder ein absoluter Pfad zur ausführbaren Datei des Browsers sein. Verwendet die Standardeinstellung des Systems, wenn sie nicht festgelegt ist.",
"centeredLayoutAutoResize": "Steuert, ob das zentrierte Layout automatisch auf die maximale Breite skaliert werden soll, wenn mehr als eine Gruppe geöffnet ist. Sobald nur noch eine Gruppe geöffnet ist, wird auf die ursprüngliche zentrierte Breite zurück skaliert.",
+ "centeredLayoutDynamicWidth": "Steuert, ob das zentrierte Layout versucht, die konstante Breite beizubehalten, wenn die Größe des Fensters geändert wird.",
"closeEmptyGroups": "Steuert das Verhalten leerer Editor-Gruppen, wenn die letzte Registerkarte in der Gruppe geschlossen wird. Ist diese Option aktiviert, werden leere Gruppen automatisch geschlossen. Ist sie deaktiviert, bleiben leere Gruppen Teil des Rasters.",
"closeOnFileDelete": "Steuert, ob Editoren, die eine Datei anzeigen, die während der Sitzung geöffnet war, automatisch geschlossen werden sollen, wenn diese von einem anderen Prozess umbenannt oder gelöscht wird. Wenn Sie diese Option deaktivieren, bleibt der Editor bei einem solchen Ereignis geöffnet. Beachten Sie, dass bei Löschvorgängen innerhalb der Anwendung der Editor immer geschlossen wird, und dass Editoren mit nicht gespeicherten Änderungen nie geschlossen werden, damit Ihre Daten nicht verloren gehen.",
"closeOnFocusLost": "Steuert, ob Quick Open automatisch geschlossen werden soll, sobald das Feature den Fokus verliert.",
"commandHistory": "Steuert, ob die Anzahl zuletzt verwendeter Befehle im Verlauf für die Befehlspalette gespeichert wird. Legen Sie diese Option auf 0 fest, um den Befehlsverlauf zu deaktivieren.",
- "confirmBeforeClose": "Steuert, ob ein Bestätigungsdialogfeld angezeigt werden soll, bevor das Fenster geschlossen oder die Anwendung beendet wird.",
+ "confirmBeforeClose": "Steuert, ob ein Bestätigungsdialogfeld angezeigt werden soll, bevor ein Fenster geschlossen oder die Anwendung beendet wird.",
"confirmBeforeCloseWeb": "Steuert, ob vor dem Schließen des Browserfensters oder einer Registerkarte ein Bestätigungsdialogfeld angezeigt wird. Hinweis: Selbst wenn diese Option aktiviert ist, wird das Browserfenster oder eine Registerkarte darin möglicherweise ohne Bestätigung geschlossen. Diese Einstellung ist nur ein Hinweis, der nicht in allen Fällen angewendet wird.",
+ "customEditorLabelDescriptionExample": "Beispiel: „“**/static/**/*.html“: „${filename} – ${dirname} (${extname})“ rendert eine Datei \"WORKSPACE_FOLDER/static/folder/file.html\" als \"Datei – Ordner (html)\".",
"customMenuBarAltFocus": "Steuert, ob der Fokus durch Drücken der ALT-TASTE auf die Menüleiste verschoben wird. Diese Einstellung hat keinen Einfluss auf das Umschalten der Menüleiste mit der ALT-TASTE.",
"decorations.badges": "Steuert, ob Editor-Dateidekorationen Badges verwenden sollen.",
"decorations.colors": "Steuert, ob Editor-Dateidekorationen Farben verwenden sollen.",
"dirty": "„${dirty}“: Ein Indikator für den Fall, dass der aktive Editor nicht gespeicherte Änderungen aufweist.",
- "editorOpenPositioning": "Steuert, wo Editoren geöffnet werden. Wählen Sie \"Links\" oder \"Rechts\" aus, um Editoren links oder rechts vom aktuellen aktiven Editor zu öffnen. Wählen Sie \"Erster\" oder \"Letzter\" aus, um Editoren unabhängig vom aktuell aktiven Editor zu öffnen.",
- "editorTabCloseButton": "Steuert die Position der Schaltflächen zum Schließen der Editor-Registerkarten oder deaktiviert sie, wenn die Einstellung auf \"off\" festgelegt ist. Dieser Wert wird ignoriert, wenn \"#workbench.editor.showTabs#\" deaktiviert ist.",
+ "doubleClickTabToToggleEditorGroupSizes": "Steuert, wie die Größe der Editorgruppe beim Doppelklick auf eine Registerkarte geändert wird. Dieser Wert wird ignoriert, wenn {0} nicht auf {1} festgelegt ist.",
+ "dragToOpenWindow": "Steuert, ob Editoren aus dem Fenster gezogen werden können, um sie in einem neuen Fenster zu öffnen. Halten Sie beim Ziehen die ALT-Taste gedrückt, um dies dynamisch umzuschalten.",
+ "editorActionsLocation": "Steuert, wo die Editoraktionen angezeigt werden.",
+ "editorOpenPositioning": "Steuert, wo Editoren geöffnet werden. Wählen Sie {0} oder {1} aus, um Editoren links oder rechts neben dem aktuell aktiven Editor zu öffnen. Wählen Sie {2} oder {3} aus, um Editoren unabhängig vom derzeit aktiven Editor zu öffnen.",
+ "enableDefaultVisibilityInOldWorkspace": "Aktiviert die standardmäßige Sichtbarkeit der sekundären Randleiste in älteren Arbeitsbereichen, bevor die Unterstützung für die standardmäßige Sichtbarkeit verfügbar war.",
"enableMenuBarMnemonics": "Steuert, ob die Hauptmenüs über ALT-Tastenkombinationen geöffnet werden können. Durch das Deaktivieren von Kürzeln können diese ALT-Tastenkombinationen stattdessen an Editorbefehle gebunden werden.",
- "enablePreview": "Steuert, ob geöffnete Editoren als Vorschau-Editoren angezeigt werden. Vorschau-Editoren bleiben nicht geöffnet, und werden wiederverwendet, bis explizit festgelegt wird, dass sie geöffnet bleiben (z. B. durch Doppelklicken oder Bearbeiten), und zeigen Dateinamen kursiv an.",
- "enablePreviewFromCodeNavigation": "Steuert, ob Editoren in der Vorschau bleiben, wenn eine Codenavigation von ihnen aus gestartet wird. Vorschau-Editoren bleiben nicht geöffnet und werden wiederverwendet, bis sie explizit so festgelegt sind, dass sie geöffnet bleiben (z. B. durch Doppelklicken oder Bearbeiten). Dieser Wert wird ignoriert, wenn \"#workbench.editor.enablePreview#\" deaktiviert ist.",
- "enablePreviewFromQuickOpen": "Steuert, ob Von Quick Open geöffnete Editoren als Vorschau-Editoren angezeigt werden. Vorschau-Editoren bleiben nicht geöffnet und werden wiederverwendet, bis sie explizit so festgelegt sind, dass sie geöffnet bleiben (z. B. durch Doppelklicken oder Bearbeiten). Dieser Wert wird ignoriert, wenn \"#workbench.editor.enablePreview#\" deaktiviert ist.",
- "exclude": "Konfigurieren Sie [glob patterns](https://code.visualstudio.com/docs/editor/codebasics#_advanced-search-options) zum Ausschließen von Dateien aus dem lokalen Dateiverlauf. Das Ändern dieser Einstellung hat keine Auswirkungen auf vorhandene Einträge im lokalen Dateiversionsverlauf.",
- "focusRecentEditorAfterClose": "Steuert, ob Tabs in der zuletzt verwendeten Reihenfolge oder von links nach rechts geschlossen werden.",
+ "enableNaturalLanguageSearch": "Steuert, ob die Befehlspalette ähnliche Befehle enthalten soll. Sie müssen eine Erweiterung installiert haben, die Unterstützung für natürliche Sprache bietet.",
+ "enablePreview": "Steuert, ob der Vorschaumodus beim Öffnen von Editoren verwendet wird. Es ist maximal ein Vorschaumodus-Editor pro Editorgruppe vorhanden. Dieser Editor zeigt seinen Dateinamen kursiv auf der Registerkarte oder Titelbezeichnung und in der Ansicht \"Editoren öffnen\" an. Der Inhalt wird durch den nächsten Editor ersetzt, der im Vorschaumodus geöffnet wird. Wenn Sie eine Änderung in einem Editor für den Vorschaumodus vornehmen, wird diese beibehalten, und sie wird durch Doppelklicken auf die Bezeichnung oder die Option \"Geöffnet lassen\" im Kontextmenü der Bezeichnung beibehalten. Beim Öffnen einer Datei aus dem Explorer mit einem Doppelklick wird Ihr Editor sofort beibehalten.",
+ "enablePreviewFromCodeNavigation": "Steuert, ob Editoren in der Vorschau bleiben, wenn eine Code-Navigation von ihnen aus gestartet wird. Vorschau-Editoren bleiben nicht geöffnet und werden wiederverwendet, bis explizit festgelegt wird, dass sie geöffnet bleiben (durch Doppelklicken oder Bearbeiten). Dieser Wert wird ignoriert, wenn {0} nicht auf {1} festgelegt ist.",
+ "enablePreviewFromQuickOpen": "Steuert, ob über Quick Open geöffnete Editoren als Vorschau-Editoren angezeigt werden. Vorschau-Editoren bleiben nicht geöffnet und werden wiederverwendet, bis explizit festgelegt wird, dass sie geöffnet bleiben (durch Doppelklicken oder Bearbeiten). Wenn diese Option aktiviert ist, halten Sie STRG vor der Auswahl gedrückt, um einen Editor als Nicht-Vorschau zu öffnen. Dieser Wert wird ignoriert, wenn {0} nicht auf {1} festgelegt ist.",
+ "exclude": "Konfigurieren Sie Pfade oder [Globmuster](https://aka.ms/vscode-glob-patterns), um Dateien aus dem lokalen Dateiverlauf auszuschließen. Globmuster werden immer relativ zum Pfad des Arbeitsbereichsordners ausgewertet, es sei denn, es handelt sich um absolute Pfade. Das Ändern dieser Einstellung hat keine Auswirkungen auf vorhandene lokale Dateiversionsverlaufseinträge.",
+ "focusRecentEditorAfterClose": "Steuert, ob Editoren in der zuletzt verwendeten Reihenfolge oder von links nach rechts geschlossen werden.",
+ "focusedView": "${focusedView}: Der Name der Ansicht, die zurzeit den Fokus hat.",
"folderName": "\"${folderName}\": der Name des Arbeitsbereichsordners, der die Datei enthält (z.B. myFolder).",
"folderPath": "\"${folderPath}\": der Name des Arbeitsbereichsordners, der die Datei enthält (z.B. /Users/Development/myFolder).",
"fontAliasing": "Steuert die Schriftartaliasingmethode in der Workbench.",
- "highlightModifiedTabs": "Steuert, ob ein oberer Rahmen auf Registerkarten für Editoren mit nicht gespeicherten Änderungen gezeichnet wird. Dieser Wert wird ignoriert, wenn „#workbench.editor.showTabs#“ deaktiviert ist.",
- "layoutControlEnabled": "Steuert, ob die Layoutsteuerelemente in der benutzerdefinierten Titelleiste über {0} aktiviert sind.",
- "layoutControlEnabledDeprecation": "Diese Einstellung wurde durch {0} ersetzt.",
+ "highlightModifiedTabs": "Steuert, ob Registerkarten für Editoren mit nicht gespeicherten Änderungen mit einem oberen Rand versehen werden. Dieser Wert wird ignoriert, wenn {0} nicht auf {1} festgelegt ist.",
+ "layoutControlEnabled": "Steuert, ob das Layoutsteuerelement in der benutzerdefinierten Titelleiste angezeigt wird. Diese Einstellung hat nur dann Auswirkungen, wenn {0} nicht auf {1} festgelegt ist.",
+ "layoutControlEnabledWeb": "Steuert, ob das Layoutsteuerelement in der Titelleiste angezeigt wird.",
"layoutControlType": "Steuert, ob das Layoutsteuerelement in der benutzerdefinierten Titelleiste als einzelne Menüschaltfläche oder mit mehreren Umschaltflächen der Benutzeroberfläche angezeigt wird.",
- "layoutControlTypeDeprecation": "Diese Einstellung wurde durch {0} ersetzt.",
"layoutcontrol.type.both": "Zeigt sowohl die Dropdown- als auch die Umschaltfläche an.",
"layoutcontrol.type.menu": "Zeigt eine einzelne Schaltfläche mit einer Dropdownliste mit Layoutoptionen an.",
"layoutcontrol.type.toggles": "Zeigt mehrere Schaltflächen zum Umschalten der Sichtbarkeit der Bereiche und der Seitenleiste an.",
@@ -3766,44 +4796,60 @@
"menuBarVisibility.mac": "Steuert die Sichtbarkeit der Menüleiste. In der Einstellung „Umschalten“ ist die Menüleiste ausgeblendet und kann durch Ausführen von „Fokus auf Anwendungsmenü“ angezeigt werden. Durch die Einstellung „Kompakt“ wird das Menü in die Seitenleiste verschoben.",
"mergeWindow": "Konfigurieren Sie ein Intervall in Sekunden, in dem der letzte Eintrag im lokalen Dateiverlauf durch den Eintrag ersetzt wird, der hinzugefügt wird. Dadurch wird die Gesamtanzahl von Einträgen reduziert, die hinzugefügt werden, z. B. wenn das automatische Speichern aktiviert ist. Diese Einstellung wird nur auf Einträge angewendet, die dieselbe ursprüngliche Quelle haben. Das Ändern dieser Einstellung hat keine Auswirkungen auf vorhandene Einträge im lokalen Dateiversionsverlauf.",
"mouseBackForwardToNavigate": "Aktiviert die Verwendung der Maustasten vier und fünf für die Befehle „Zurück“ und „Weiter“.",
+ "navigationControlEnabled": "Steuert, ob das Navigationssteuerelement in der benutzerdefinierten Titelleiste angezeigt wird. Diese Einstellung hat nur dann Auswirkungen, wenn {0} nicht auf {1} festgelegt ist.",
+ "navigationControlEnabledWeb": "Steuert, ob das Navigationssteuerelement in der Titelleiste angezeigt wird.",
"navigationScope": "Steuert den Bereich „Verlaufsnavigation“ in Editoren für Befehle wie „Zurück“ und „Weiter“.",
"openDefaultKeybindings": "Steuert, ob beim Öffnen der Einstellungen für Tastenzuordnungen auch ein Editor geöffnet wird, der alle Standardtastenzuordnungen anzeigt.",
"openDefaultSettings": "Steuert, ob beim Öffnen der Einstellungen auch ein Editor geöffnet wird, der alle Standardeinstellungen anzeigt.",
"openFilesInNewWindow": "Steuert, ob Dateien in einem neuen Fenster geöffnet werden sollen, wenn eine Befehlszeile oder ein Dateidialogfeld verwendet wird.\r\nBeachten Sie, dass es weiterhin Fälle geben kann, in denen diese Einstellung ignoriert wird (z. B. bei Verwendung der Befehlszeilenoption `--new-window` oder `--reuse-window`).",
"openFilesInNewWindowMac": "Steuert, ob Dateien in einem neuen Fenster geöffnet werden sollen, wenn eine Befehlszeile oder ein Dateidialogfeld verwendet wird.\r\nBeachten Sie, dass es weiterhin Fälle geben kann, in denen diese Einstellung ignoriert wird (z. B. bei Verwendung der Befehlszeilenoption `--new-window` oder `--reuse-window`).",
"openFoldersInNewWindow": "Steuert, ob Ordner in einem neuen Fenster geöffnet werden oder das letzte aktive Fenster ersetzen sollen.\r\nBeachten Sie, dass diese Einstellung in manchen Fällen möglicherweise ignoriert wird (z.B. wenn die Befehlszeilenoption `--new-window` oder `--reuse-window` verwendet wird). ",
- "panelDefaultLocation": "Steuert die Standardposition des Panels (Terminal, Debugging-Konsole, Ausgabe, Probleme) in einem neuen Arbeitsbereich. Es kann entweder rechts, links oder unter dem Editorbereich angezeigt werden.",
+ "panelDefaultLocation": "Steuert die Standardposition des Fensters (Terminal, Debugging-Konsole, Ausgabe, Probleme) in einem neuen Arbeitsbereich. Es kann entweder unten, oben, rechts oder links im Editorbereich angezeigt werden.",
"panelOpensMaximized": "Steuert, ob das Panel maximiert geöffnet wird. Das Panel kann entweder immer maximiert, nie maximiert oder im letzten Zustand vor dem Schließen geöffnet werden.",
+ "panelShowLabels": "Steuert, ob Aktivitätselemente im Bereichstitel als Bezeichnung oder Symbol angezeigt werden.",
"perEditorGroup": "Steuert, ob die zulässige Höchstzahl geöffneter Editoren pro Editorgruppe oder für alle gleichzeitig gilt.",
- "pinnedTabSizing": "Steuert die Größe von angehefteten Editor-Registerkarten. Angeheftete Registerkarten werden an den Anfang aller geöffneten Registerkarten sortiert und normalerweise erst geschlossen, wenn sie wieder gelöst werden. Dieser Wert wird ignoriert, wenn \"#workbench.editor.showTabs#\" deaktiviert ist.",
+ "pinnedTabSizing": "Steuert die Größe von angehefteten Editorregisterkarten. Angeheftete Registerkarten werden an den Anfang aller geöffneten Registerkarten sortiert und normalerweise erst geschlossen, wenn sie wieder gelöst werden. Dieser Wert wird ignoriert, wenn {0} nicht auf {1} festgelegt ist.",
"preserveInput": "Steuert, ob die letzte Eingabe in die Befehlspalette beim nächsten Öffnen wiederhergestellt wird.",
+ "problems.visibility": "Steuert, ob die Probleme im Editor und in der Workbench sichtbar sind.",
+ "profileName": "„${profileName}“: Name des Profils, in dem der Arbeitsbereich geöffnet wird (z. B. Data Science [Profil]). Wird ignoriert, wenn das Standardprofil verwendet wird.",
"remoteName": "`${remoteName}`: z.B. SSH",
- "restoreViewState": "Stellt den letzten Editor-Ansichtszustand (z.B. Bildlaufposition) wieder her, wenn Editoren nach dem Schließen erneut geöffnet werden. Der Zustand der Editoransicht wird pro Editorgruppe gespeichert und verworfen, wenn eine Gruppe geschlossen wird. Verwenden Sie diese {0} Einstellung, um den letzten bekannten Ansichtszustand für alle Editorgruppen zu verwenden, falls kein vorheriger Ansichtszustand für eine Editorgruppe gefunden wurde.",
- "revealIfOpen": "Steuert, ob ein geöffneter Editor in einer der sichtbaren Gruppen angezeigt wird. Ist diese Option deaktiviert, wird ein Editor vorzugsweise in der aktuell aktiven Editorgruppe geöffnet. Ist diese Option aktiviert, wird ein bereits geöffneter Editor angezeigt und nicht in der aktuell aktiven Editorgruppe noch mal geöffnet. In einigen Fällen wird diese Einstellung ignoriert, z.B. wenn das Öffnen eines Editors in einer bestimmten Gruppe oder neben der aktuell aktiven Gruppe erzwungen wird.",
- "rootName": "${rootName}: Name des Arbeitsbereichs (z. B. \"MeinOrdner\" oder \"MeinArbeitsbereich\").",
+ "restoreViewState": "Stellt den letzten Editor-Ansichtszustand (z. B. Bildlaufposition) wieder her, wenn Editoren nach dem Schließen erneut geöffnet werden. Der Zustand der Editoransicht wird pro Editorgruppe gespeichert und verworfen, wenn eine Gruppe geschlossen wird. Verwenden Sie die {0}-Einstellung, um den letzten bekannten Ansichtszustand für alle Editorgruppen zu verwenden, falls kein vorheriger Ansichtszustand für eine Editorgruppe gefunden wurde.",
+ "revealIfOpen": "Steuert, ob ein geöffneter Editor in einer der sichtbaren Gruppen angezeigt wird. Ist diese Option deaktiviert, wird ein Editor vorzugsweise in der aktuell aktiven Editorgruppe geöffnet. Ist diese Option aktiviert, wird ein bereits geöffneter Editor angezeigt und nicht in der aktuell aktiven Editorgruppe noch mal geöffnet. In einigen Fällen wird diese Einstellung ignoriert, z. B. wenn das Öffnen eines Editors in einer bestimmten Gruppe oder neben der aktuell aktiven Gruppe erzwungen wird.",
+ "rootName": "„${rootName}“: Name des Arbeitsbereichs mit optionalem Remote-Namen und Arbeitsbereichs-Indikator, falls vorhanden, (z. B. „myFolder“, „myRemoteFolder“ [SSH] oder „myWorkspace“ [Workspace]).",
+ "rootNameShort": "„${rootNameShort}“: Gekürzter Name des Arbeitsbereichs ohne Suffixe (z. B. „myFolder“, „myRemoteFolder“ oder „myWorkspace“)",
"rootPath": "${rootPath}: Dateipfad des geöffneten Arbeitsbereichs oder Ordners (z. B. /Benutzer/Entwicklung/MeinArbeitsbereich).",
- "scrollToSwitchTabs": "Steuert, ob Registerkarten durch Scrollen geöffnet werden oder nicht. Standardmäßig werden Registerkarten beim Scrollen nur angezeigt, aber nicht geöffnet. Sie können beim Scrollen die UMSCHALTTASTE gedrückt halten, um dieses Verhalten für die Dauer des Vorgangs zu ändern. Dieser Wert wird ignoriert, wenn \"#workbench.editor.showTabs#\" deaktiviert ist.",
+ "scrollToSwitchTabs": "Steuert, ob Registerkarten durch Scrollen geöffnet werden oder nicht. Standardmäßig werden Registerkarten beim Scrollen nur angezeigt, aber nicht geöffnet. Sie können beim Scrollen die UMSCHALTTASTE gedrückt halten, um dieses Verhalten für die Dauer des Vorgangs zu ändern. Dieser Wert wird ignoriert, wenn {0} nicht auf {1} festgelegt ist.",
+ "secondarySideBarDefaultVisibility": "Steuert die Standardsichtbarkeit der sekundären Seitenleiste in Arbeitsbereichen oder leeren Fenstern, die zum ersten Mal geöffnet werden.",
+ "secondarySideBarShowLabels": "Steuert, ob Aktivitätselemente im sekundären Seitenleistentitel als Bezeichnung oder Symbol angezeigt werden. Diese Einstellung hat nur dann Auswirkungen, wenn {0} nicht auf {1} festgelegt ist.",
"separator": "`${separator}`: ein bedingtes Trennzeichen(\" - \"), das nur in der Umgebung von Variablen mit Werten oder statischem Text angezeigt wird.",
"settings.editor.desc": "Legt fest, welcher Einstellungs-Editor standardmäßig verwendet wird.",
"settings.editor.json": "JSON-Datei-Editor verwenden",
"settings.editor.ui": "Einstellungs-Editor für die Benutzeroberfläche verwenden.",
+ "settings.showAISearchToggle": "Legt fest, ob die Umschaltfläche für die KI-Suchergebnisse in der Suchleiste des Einstellungseditors angezeigt wird, nachdem eine Suche durchgeführt wurde und KI-Suchergebnisse verfügbar sind.",
"sharedViewState": "Behält den aktuellsten Editor-Ansichtszustand (z. B. Bildlaufposition) für alle Editor-Gruppen bei und stellt sie wieder her, wenn kein bestimmter Editor-Ansichtszustand für die Editor-Gruppe gefunden wurde.",
- "showEditorTabs": "Steuert, ob geöffnete Editoren in Registerkarten angezeigt werden sollen.",
+ "showAskInChat": "Steuert, ob die Befehlspalette unten die Option „Im Chat fragen“ anzeigt.",
+ "showEditorTabs": "Steuert, ob geöffnete Editoren als einzelne Registerkarten oder als eine einzige große Registerkarte angezeigt werden oder ob der Titelbereich ausgeblendet werden soll.",
"showIcons": "Steuert, ob geöffnete Editoren mit einem Symbol angezeigt werden sollen. Dafür muss zusätzlich ein Dateisymboldesign aktiviert sein.",
+ "showTabIndex": "Wenn diese Option aktiviert ist, wird der Registerkartenindex angezeigt. Dieser Wert wird ignoriert, wenn „{0}“ nicht auf „{1}“ festgelegt ist.",
"sideBarLocation": "Steuert die Position der primären Seitenleiste und Aktivitätsleiste. Sie können entweder auf der linken oder rechten Seite der Workbench angezeigt werden. Die sekundäre Seitenleiste wird auf der gegenüberliegenden Seite der Workbench angezeigt.",
- "sideBySideDirection": "Steuert die Standardrichtung von Editoren, die nebeneinander geöffnet werden (beispielsweise über den Explorer). Standardmäßig werden Editoren rechts neben dem derzeit aktiven Editor geöffnet. Wenn Sie diese Option in \"Unten\" ändern, werden Editoren unterhalb des derzeit aktiven Editors geöffnet.",
+ "sideBySideDirection": "Steuert die Standardrichtung von Editoren, die nebeneinander geöffnet werden (beispielsweise über den Explorer). Standardmäßig werden Editoren rechts neben dem derzeit aktiven Editor geöffnet. Wenn Sie diese Option in „Unten“ ändern, werden Editoren unterhalb des derzeit aktiven Editors geöffnet. Dies wirkt sich auch auf die Aktion „Geteilter Editor“ in der Editor-Symbolleiste aus.",
"splitInGroupLayout": "Steuert das Layout, wenn ein Editor in einer Editorgruppe entweder vertikal oder horizontal geteilt wird.",
"splitOnDragAndDrop": "Steuert, ob Editor-Gruppen durch Drag & Drop-Vorgänge geteilt werden können, indem ein Editor oder eine Datei auf den Rändern des Editor-Bereichs abgelegt wird.",
- "splitSizing": "Legt die Größe von Editor-Gruppen beim Aufteilen fest",
+ "splitSizing": "Legt die Größe von Editor-Gruppen beim Aufteilen fest.",
"statusBarVisibility": "Steuert die Sichtbarkeit der Statusleiste im unteren Bereich der Workbench.",
+ "suggestCommands": "Steuert, ob die Befehlspalette über eine Liste häufig verwendeter Befehle verfügen soll.",
+ "swipeToNavigate": "Navigieren Sie horizontal zwischen geöffneten Dateien, indem Sie mit drei Fingern wischen. Beachten Sie, dass unter „Systemeinstellungen“ > „Trackpad“ > „Weitere Gesten“ die Option „Mit zwei oder drei Fingern wischen“ aktiviert sein muss.",
+ "tabActionLocation": "Steuert die Position der interaktiven Schaltflächen für Registerkarten des Editors (schließen, lösen). Dieser Wert wird ignoriert, wenn {0} nicht auf {1} festgelegt ist.",
"tabDescription": "Steuert das Format der Bezeichnung für einen Editor.",
"tabScrollbarHeight": "Legt die Höhe der Scrollleisten fest, die für Registerkarten und Breadcrumbs im Editor-Titelbereich verwendet werden.",
- "tabSizing": "Steuert die Größe von Editor-Registerkarten. Dieser Wert wird ignoriert, wenn \"#workbench.editor.showTabs#\" deaktiviert ist.",
- "untitledHint": "Steuert, ob der unbenannte Texthinweis im Editor angezeigt werden soll.",
+ "tabSizing": "Steuert die Größe von Editorregisterkarten. Dieser Wert wird ignoriert, wenn {0} nicht auf {1} festgelegt ist.",
+ "tips.enabled": "Wenn diese Option aktiviert ist, werden Tipps zu Grenzwerten angezeigt, wenn kein Editor geöffnet ist.",
+ "titleScrollbarVisibility": "Steuert die Sichtbarkeit der Scrollleisten, die für Registerkarten und Breadcrumbs im Titelbereich des Editors verwendet werden.",
"untitledLabelFormat": "Steuert das Format der Bezeichnung für einen unbenannten Editor.",
"useSplitJSON": "Steuert, ob der geteilte JSON-Editor verwendet wird, wenn Einstellungen als JSON bearbeitet werden.",
"viewVisibility": "Steuert die Sichtbarkeit von Headeraktionen. Headeraktionen können immer sichtbar sein oder nur sichtbar sein, wenn diese Ansicht den Fokus hat oder mit der Maus darauf gezeigt wird.",
- "window.commandCenter": "Befehlsstarter zusammen mit dem Fenstertitel anzeigen. Diese Einstellung hat nur dann eine Wirkung, wenn {0} auf {1} festgelegt ist.",
+ "window.commandCenter": "Befehlsstarter zusammen mit dem Fenstertitel anzeigen. Diese Einstellung hat nur dann Auswirkungen, wenn {0} nicht auf {1} festgelegt ist.",
+ "window.commandCenterWeb": "Befehlsstarter zusammen mit dem Fenstertitel anzeigen.",
"window.confirmBeforeClose.always": "Immer Bestätigung anfordern",
"window.confirmBeforeClose.always.web": "Hiermit wird nach Möglichkeit immer eine Bestätigung angefordert. Beachten Sie, dass das Browserfenster oder eine Registerkarte möglicherweise dennoch ohne Bestätigung geschlossen wird.",
"window.confirmBeforeClose.keyboardOnly": "Bestätigung nur anfordern, wenn eine Tastenzuordnung verwendet wurde.",
@@ -3811,7 +4857,8 @@
"window.confirmBeforeClose.never": "Fordern Sie niemals explizit eine Bestätigung an.",
"window.confirmBeforeClose.never.web": "Nur bei drohendem Datenverlust explizit eine Bestätigung anfordern",
"window.menuBarVisibility.classic": "Das Menü wird oben im Fenster angezeigt und nur im Vollbildmodus ausgeblendet.",
- "window.menuBarVisibility.compact": "Das Menü wird als kompakte Schaltfläche in der Seitenleiste angezeigt. Dieser Wert wird ignoriert, wenn {0} {1} ist.",
+ "window.menuBarVisibility.compact": "Das Menü wird als kompakte Schaltfläche in der Seitenleiste angezeigt. Dieser Wert wird ignoriert, wenn {0} {1} ist und {2} entweder {3} oder {4} ist.",
+ "window.menuBarVisibility.compact.web": "Das Menü wird als kompakte Schaltfläche in der Seitenleiste angezeigt.",
"window.menuBarVisibility.hidden": "Das Menü ist immer ausgeblendet.",
"window.menuBarVisibility.toggle": "Das Menü ist ausgeblendet, kann aber über die ALT-Taste im oberen Fensterbereich angezeigt werden.",
"window.menuBarVisibility.toggle.mac": "Das Menü ist ausgeblendet, kann aber durch Ausführen des Befehls \"Fokus auf Anwendungsmenü\" im oberen Fensterbereich angezeigt werden.",
@@ -3824,11 +4871,29 @@
"window.openFoldersInNewWindow.off": "Ordner ersetzen das letzte aktive Fenster.",
"window.openFoldersInNewWindow.on": "Ordner werden in einem neuen Fenster geöffnet.",
"window.titleSeparator": "Trennzeichen verwendet von {0}.",
- "windowConfigurationTitle": "Fenster",
- "windowTitle": "Steuert den Fenstertitel abhängig vom aktiven Editor. Variablen werden abhängig vom Kontext ersetzt:",
- "workbench.activityBar.iconClickBehavior.focus": "Setzt den Fokus auf die Randleiste, wenn das Element, auf das geklickt wird, bereits sichtbar ist.",
- "workbench.activityBar.iconClickBehavior.toggle": "Blendet die Randleiste aus, wenn das Element, auf das geklickt wird, bereits sichtbar ist.",
+ "windowTitle": "Steuert den Fenstertitel basierend auf dem aktuellen Kontext, beispielsweise dem geöffneten Arbeitsbereich oder dem aktiven Editor. Variablen werden je nach Kontext ersetzt:",
+ "workbench.activityBar.iconClickBehavior.focus": "Primäre Seitenleiste fokussieren, wenn das angeklickte Element bereits sichtbar ist.",
+ "workbench.activityBar.iconClickBehavior.toggle": "Blendet die primäre Seitenleiste aus, wenn das angeklickte Element bereits sichtbar ist.",
+ "workbench.activityBar.location.bottom": "Zeigt die Aktivitätsleiste am unteren Rand der primären und sekundären Seitenleiste an.",
+ "workbench.activityBar.location.default": "Zeigt die Aktivitätsleiste auf der Seite der primären Seitenleiste und oben auf der sekundären Seitenleiste an.",
+ "workbench.activityBar.location.hide": "Blendet die Aktivitätsleiste in den primären und sekundären Seitenleisten aus.",
+ "workbench.activityBar.location.top": "Zeigt die Aktivitätsleiste über den primären und sekundären Seitenleisten an.",
+ "workbench.editor.doubleClickTabToToggleEditorGroupSizes.expand": "Die Editorgruppe nimmt so viel Platz wie möglich ein, indem alle anderen Editorgruppen so klein wie möglich dargestellt werden.",
+ "workbench.editor.doubleClickTabToToggleEditorGroupSizes.maximize": "Alle anderen Editorgruppen werden ausgeblendet, und die aktuelle Editorgruppe wird maximiert und nimmt den gesamten Editorbereich ein.",
+ "workbench.editor.doubleClickTabToToggleEditorGroupSizes.off": "Beim Doppelklick auf eine Registerkarte wird die Größe der Editorgruppen nicht geändert.",
+ "workbench.editor.editorActionsLocation.default": "Editoraktionen in der Titelleiste des Fensters anzeigen, wenn {0} auf {1} festgelegt ist. Andernfalls werden Editoraktionen in der Registerkartenleiste des Editors angezeigt.",
+ "workbench.editor.editorActionsLocation.hidden": "Editoraktionen werden nicht angezeigt.",
+ "workbench.editor.editorActionsLocation.titleBar": "Editoraktionen in der Titelleiste des Fensters anzeigen. Wenn {0} auf {1} festgelegt ist, werden Editoraktionen ausgeblendet.",
+ "workbench.editor.empty.hint": "Steuert, ob der leere Texthinweis im Editor angezeigt werden soll.",
"workbench.editor.historyBasedLanguageDetection": "Ermöglicht die Verwendung des Editorverlaufs in der Spracherkennung. Dies führt dazu, dass die automatische Spracherkennung Sprachen bevorzugt, die kürzlich geöffnet wurden, und ermöglicht die automatische Spracherkennung für kleinere Eingaben.",
+ "workbench.editor.label.dirname": "\"${dirname}\": Name des Ordners, in dem sich die Datei befindet (z. B. \"WORKSPACE_FOLDER/folder/file.txt -> Ordner\").",
+ "workbench.editor.label.enabled": "Steuert, ob die benutzerdefinierten Beschriftungen des Workbench-Editors angewendet werden sollen.",
+ "workbench.editor.label.extname": "\"${extname}\": Die Dateierweiterung (z. B. \"WORKSPACE_FOLDER/folder/file.txt -> txt\").",
+ "workbench.editor.label.filename": "\"${filename}\": Name der Datei ohne Dateierweiterung (z. B. \"WORKSPACE_FOLDER/folder/file.txt -> Datei\").",
+ "workbench.editor.label.nthdirname": "\"${dirname(N)}\": Name des n. übergeordneten Ordners, in dem sich die Datei befindet (z. B. \"N=2: WORKSPACE_FOLDER/static/folder/file.txt -> WORKSPACE_FOLDER\"). Ordner können am Anfang des Pfads mit negativen Zahlen ausgewählt werden (z. B. \"N=-1: WORKSPACE_FOLDER/folder/file.txt -> WORKSPACE_FOLDER\"). Wenn __Item__ ein absoluter Musterpfad ist, verweist der erste Ordner (\"N=-1\") auf den ersten Ordner im absoluten Pfad, andernfalls entspricht er dem Arbeitsbereichsordner.",
+ "workbench.editor.label.nthextname": "\"${extname(N)}\": die n. Erweiterung der Datei, getrennt durch \".\" (z. B. \"N=2: WORKSPACE_FOLDER/folder/file.ext1.ext2.ext3 -> ext1\"). Die Erweiterung kann am Anfang der Erweiterung mit negativen Zahlen ausgewählt werden (z. B. \"N=-1: WORKSPACE_FOLDER/folder/file.ext1.ext2.ext3 -> ext2\").",
+ "workbench.editor.label.patterns": "Steuert das Rendering der Editorbezeichnung. Jedes __Item__ ist ein Muster, das einem Dateipfad entspricht. Sowohl relative als auch absolute Dateipfade werden unterstützt. Der relative Pfad muss den WORKSPACE_FOLDER enthalten (z. B. \"WORKSPACE_FOLDER/src/**.tsx\" oder \"*/src/**.tsx\"). Absolute Muster müssen mit einem \"/\" beginnen. Wenn mehrere Muster übereinstimmen, wird der längste übereinstimmende Pfad ausgewählt. Jedes __Value__ ist die Vorlage für den gerenderten Editor, wenn das __Item__ übereinstimmt. Variablen werden je nach Kontext ersetzt:",
+ "workbench.editor.label.template": "Die Vorlage, die gerendert werden soll, wenn das Muster übereinstimmt. Kann die Variablen ${dirname}, ${filename} und ${extname} enthalten.",
"workbench.editor.labelFormat.default": "Den Namen der Datei anzeigen. Wenn Registerkarten aktiviert sind und zwei Dateien in einer Gruppe den gleichen Namen haben, werden die unterscheidenden Elemente des Pfads jeder Datei hinzugefügt. Wenn Registerkarten deaktiviert sind, wird der relative Pfad zum Ordner des Arbeitsbereichs angezeigt, wenn der Editor aktiv ist.",
"workbench.editor.labelFormat.long": "Den Namen der Datei gefolgt vom absoluten Pfad anzeigen.",
"workbench.editor.labelFormat.medium": "Den Namen der Datei gefolgt vom relativen Pfad zum Ordner des Arbeitsbereichs anzeigen.",
@@ -3840,18 +4905,37 @@
"workbench.editor.pinnedTabSizing.compact": "Eine angeheftete Registerkarte wird in kompakter Form nur als Symbol oder mit dem ersten Buchstaben des Editornamens angezeigt.",
"workbench.editor.pinnedTabSizing.normal": "Eine angeheftete Registerkarte erbt die Darstellung nicht angehefteter Registerkarten.",
"workbench.editor.pinnedTabSizing.shrink": "Eine angeheftete Registerkarte wird auf eine kompakte festgelegte Größe verkleinert, die Teile des Editornamens anzeigt.",
+ "workbench.editor.pinnedTabsOnSeparateRow": "Wenn diese Option aktiviert ist, werden angeheftete Registerkarten in einer separaten Zeile über allen anderen Registerkarten angezeigt. Dieser Wert wird ignoriert, wenn {0} nicht auf {1} festgelegt ist.",
"workbench.editor.preferBasedLanguageDetection": "Wenn diese Option aktiviert ist, erhält ein Spracherkennungsmodell, das den Editorverlauf berücksichtigt, eine höhere Priorität.",
- "workbench.editor.showLanguageDetectionHints": "Wenn diese Option aktiviert ist, wird eine Schnellkorrektur für die Statusleiste angezeigt, wenn die Sprache des Editors nicht mit der erkannten Inhaltssprache übereinstimmt.",
+ "workbench.editor.preventPinnedEditorClose": "Steuert, ob angeheftete Editoren geschlossen werden sollen, wenn die Tastatur oder die mittlere Maustaste zum Schließen verwendet wird.",
+ "workbench.editor.preventPinnedEditorClose.always": "Hiermit wird das Schließen des angehefteten Editors bei einem Klick mit der mittleren Maustaste oder über die Tastatur immer verhindert.",
+ "workbench.editor.preventPinnedEditorClose.never": "Hiermit wird das Schließen eines angehefteten Editors nie verhindert.",
+ "workbench.editor.preventPinnedEditorClose.onlyKeyboard": "Hiermit wird verhindert, dass der angeheftete Editor bei Verwendung der Tastatur geschlossen wird.",
+ "workbench.editor.preventPinnedEditorClose.onlyMouse": "Hiermit wird das Schließen des angehefteten Editors bei einem Klick mit der mittleren Maustaste verhindert.",
+ "workbench.editor.showLanguageDetectionHints": "Wenn aktiviert, wird eine schnelle Problembehebung für die Statusleiste angezeigt, wenn die Sprache des Editors nicht mit der erkannten Inhaltssprache übereinstimmt.",
"workbench.editor.showLanguageDetectionHints.editors": "In nicht betitelten Text-Editoren anzeigen",
"workbench.editor.showLanguageDetectionHints.notebook": "In Notebook-Editoren anzeigen",
+ "workbench.editor.showTabs.multiple": "Jeder Editor wird als Registerkarte im Editortitelbereich angezeigt.",
+ "workbench.editor.showTabs.none": "Der Editortitelbereich wird nicht angezeigt.",
+ "workbench.editor.showTabs.single": "Der aktive Editor wird als einzelne große Registerkarte im Editortitelbereich angezeigt.",
"workbench.editor.splitInGroupLayoutHorizontal": "Editoren werden von links nach rechts positioniert.",
"workbench.editor.splitInGroupLayoutVertical": "Editoren werden von oben nach unten positioniert.",
+ "workbench.editor.splitSizingAuto": "Teilt die aktive Editor-Gruppe auf gleiche Teile auf, es sei denn, alle Editorgruppen sind bereits in gleichen Teilen. In diesem Fall werden alle Editorgruppen in gleiche Teile aufgeteilt.",
"workbench.editor.splitSizingDistribute": "Teilt alle Editor-Gruppen gleichmäßig auf",
"workbench.editor.splitSizingSplit": "Teilt die aktive Editor-Gruppe gleichmäßig auf",
+ "workbench.editor.tabActionCloseVisibility": "Steuert die Sichtbarkeit der interaktiven Schaltfläche \"Registerkarte schließen\".",
+ "workbench.editor.tabActionUnpinVisibility": "Steuert die Sichtbarkeit der interaktiven Schaltfläche \"Registerkarte lösen\".",
+ "workbench.editor.tabHeight": "Steuert die Höhe von Editorregisterkarten. Gilt auch für die Titelsteuerleiste, wenn {0} nicht auf {1} festgelegt ist.",
"workbench.editor.tabSizing.fit": "Registerkarten immer so groß darstellen, dass die vollständige Editor-Bezeichnung angezeigt wird.",
+ "workbench.editor.tabSizing.fixed": "Legen Sie alle Registerkarten auf die gleiche Größe fest, während sie kleiner werden, wenn der verfügbare Platz nicht ausreicht, um alle Registerkarten gleichzeitig anzuzeigen.",
"workbench.editor.tabSizing.shrink": "Registerkarten verkleinern, wenn der verfügbare Platz nicht ausreicht, um alle Registerkarten gleichzeitig anzuzeigen.",
+ "workbench.editor.tabSizingFixedMaxWidth": "Steuert die maximale Breite von Registerkarten, wenn {0}-Größe auf {1} festgelegt ist.",
+ "workbench.editor.tabSizingFixedMinWidth": "Steuert die minimale Breite von Registerkarten, wenn {0}-Größe auf {1} festgelegt ist.",
"workbench.editor.titleScrollbarSizing.default": "Die Standardgröße.",
"workbench.editor.titleScrollbarSizing.large": "Vergrößert das Objekt, sodass es leichter mit der Maus erfasst werden kann.",
+ "workbench.editor.titleScrollbarVisibility.auto": "Die horizontale Bildlaufleiste wird nur bei Bedarf angezeigt.",
+ "workbench.editor.titleScrollbarVisibility.hidden": "Die horizontale Bildlaufleiste wird immer ausgeblendet.",
+ "workbench.editor.titleScrollbarVisibility.visible": "Die horizontale Bildlaufleiste ist immer sichtbar.",
"workbench.editor.untitled.labelFormat.content": "Der Name der unbenannten Datei wird vom Inhalt der ersten Zeile abgeleitet, es sei denn, sie verfügt über einen zugeordneten Dateipfad. Es wird auf den Namen zurückgegriffen, falls die Zeile leer ist oder keine Wortzeichen enthält.",
"workbench.editor.untitled.labelFormat.name": "Der Name der unbenannten Datei wird nicht vom Inhalt der Datei abgeleitet.",
"workbench.fontAliasing.antialiased": "Glättet die Schriftart auf der Pixelebene (im Gegensatz zur Subpixelebene). Bei dieser Einstellung kann die Schriftart insgesamt heller wirken.",
@@ -3860,39 +4944,54 @@
"workbench.fontAliasing.none": "Deaktiviert die Schriftartglättung. Text wird mit gezackten scharfen Kanten dargestellt.",
"workbench.hover.delay": "Steuert die Verzögerung in Millisekunden, nach der der Hover für Workbench-Elemente angezeigt wird (z. B. einige von der Erweiterung bereitgestellte Strukturansichtselemente). Bereits angezeigte Elemente müssen möglicherweise aktualisiert werden, damit diese Einstellungsänderung übernommen wird.",
"workbench.panel.opensMaximized.always": "Hiermit wird das Panel beim Öffnen immer maximiert.",
- "workbench.panel.opensMaximized.never": "Hiermit wird das Panel beim Öffnen niemals maximiert. Das Panel wird im nicht maximierten Zustand geöffnet.",
+ "workbench.panel.opensMaximized.never": "Hiermit wird das Panel beim Öffnen nie maximiert.",
"workbench.panel.opensMaximized.preserve": "Hiermit wird das Panel in dem Zustand geöffnet, in dem es sich vor dem Schließen befand.",
+ "workbench.panel.output": "Ausgabeansicht",
"workbench.quickOpen.preserveInput": "Steuert, ob die letzte Eingabe in Quick Open beim nächsten Öffnen wiederhergestellt werden soll.",
"workbench.reduceMotion": "Steuert, ob die Workbench mit weniger Animationen gerendert werden soll.",
"workbench.reduceMotion.auto": "Rendern mit reduzierter Bewegung basierend auf der Betriebssystemkonfiguration.",
"workbench.reduceMotion.off": "Nicht mit reduzierter Bewegung rendern",
"workbench.reduceMotion.on": "Rendern Sie immer mit reduzierter Bewegung.",
- "wrapTabs": "Steuert, ob Registerkarten über mehrere Zeilen umbrochen werden sollen oder ob eine Scrollleiste angezeigt werden soll, wenn nicht genügend Platz zur vollständigen Anzeige vorhanden ist. Dieser Wert wird ignoriert, wenn \"#workbench.editor.showTabs#\" deaktiviert ist.",
+ "workbench.secondarySideBar.defaultVisibility.hidden": "Die sekundäre Seitenleiste ist standardmäßig ausgeblendet.",
+ "workbench.secondarySideBar.defaultVisibility.maximized": "Die sekundäre Seitenleiste ist standardmäßig sichtbar und maximiert.",
+ "workbench.secondarySideBar.defaultVisibility.maximizedInWorkspace": "Die sekundäre Seitenleiste ist standardmäßig sichtbar und maximiert, wenn ein Arbeitsbereich geöffnet ist.",
+ "workbench.secondarySideBar.defaultVisibility.visible": "Die sekundäre Seitenleiste ist standardmäßig sichtbar.",
+ "workbench.secondarySideBar.defaultVisibility.visibleInWorkspace": "Die sekundäre Seitenleiste ist standardmäßig sichtbar, wenn ein Arbeitsbereich geöffnet ist.",
+ "workbench.view.showQuietly": "Wenn eine Erweiterung die Anzeige einer ausgeblendeten Ansicht anfordert, zeigen Sie stattdessen eine anklickbare Statusleistenanzeige an.",
+ "wrapTabs": "Steuert, ob Registerkarten über mehrere Zeilen umbrochen werden oder ob eine Scrollleiste angezeigt werden soll, wenn nicht genügend Platz zur vollständigen Anzeige vorhanden ist. Dieser Wert wird ignoriert, wenn {0} nicht auf „{1}“ festgelegt ist.",
"zenMode.centerLayout": "Steuert, ob das Layout durch Aktivieren des Zen-Modus ebenfalls zentriert wird.",
"zenMode.fullScreen": "Steuert, ob die Workbench durch das Aktivieren des Zen-Modus in den Vollbildmodus wechselt.",
"zenMode.hideActivityBar": "Hiermit wird gesteuert, ob die Aktivitätsleiste im linken oder rechten Bereich der Workbench durch Aktivieren des Zen-Modus ebenfalls ausgeblendet wird.",
"zenMode.hideLineNumbers": "Steuert, ob durch Aktivieren des Zen-Modus auch die Zeilennummern im Editor ausgeblendet werden.",
"zenMode.hideStatusBar": "Steuert, ob die Statusleiste im unteren Bereich der Workbench durch Aktivieren des Zen-Modus ebenfalls ausgeblendet wird.",
- "zenMode.hideTabs": "Steuert, ob die Workbench-Registerkarten durch Aktivieren des Zen-Modus ebenfalls ausgeblendet werden.",
"zenMode.restore": "Steuert, ob ein Fenster im Zen-Modus wiederhergestellt werden soll, wenn es im Zen-Modus beendet wurde.",
- "zenMode.silentNotifications": "Steuert, ob der Modus Nicht stören für Benachrichtigungen im Zen-Modus aktiviert werden soll. Wenn wahr, werden nur Fehlermeldungen angezeigt.",
+ "zenMode.showTabs": "Steuert, ob beim Aktivieren des Zen-Modus mehrere Editor-Registerkarten, eine einzelne Editor-Registerkarte oder der Titelbereich des Editors vollständig angezeigt werden sollen.",
+ "zenMode.showTabs.multiple": "Jeder Editor wird als Registerkarte im Editortitelbereich angezeigt.",
+ "zenMode.showTabs.none": "Der Editortitelbereich wird nicht angezeigt.",
+ "zenMode.showTabs.single": "Der aktive Editor wird als einzelne große Registerkarte im Editortitelbereich angezeigt.",
+ "zenMode.silentNotifications": "Steuert, ob der Modus „Nicht stören“ für Benachrichtigungen im Zen-Modus aktiviert werden soll. Wenn wahr, werden nur Fehlermeldungen angezeigt.",
"zenModeConfigurationTitle": "Zen-Modus"
},
- "vs/workbench/common/actions": {
- "developer": "Entwickler",
- "help": "Hilfe",
- "preferences": "Einstellungen",
- "test": "Test",
- "view": "Anzeigen"
- },
"vs/workbench/common/configuration": {
+ "active window": "Aktives Fenster",
+ "applicationConfigurationTitle": "Anwendung",
+ "newWindowProfile": "Gibt das Profil an, das beim Öffnen eines neuen Fensters verwendet werden soll. Wenn ein Profilname angegeben wird, verwendet das neue Fenster dieses Profil. Wenn kein Profilname angegeben wird, verwendet das neue Fenster das Profil des aktiven Fensters oder das Standardprofil, wenn kein aktives Fenster vorhanden ist.",
+ "problemsConfigurationTitle": "Probleme",
+ "security.allowedUNCHosts": "Eine Gruppe von UNC-Hostnamen (ohne führenden oder nachgestellten umgekehrten Schrägstrich, z. B. \"192.168.0.1\" oder \"my-server\"), die ohne Benutzerbestätigung zulässig sind. Wenn auf einen UNC-Host zugegriffen wird, der über diese Einstellung nicht zulässig ist oder über die Benutzerbestätigung nicht bestätigt wurde, tritt ein Fehler auf, und der Vorgang wurde beendet. Beim Ändern dieser Einstellung ist ein Neustart erforderlich. Weitere Informationen zu dieser Einstellung finden Sie unter https://aka.ms/vscode-windows-unc.",
+ "security.allowedUNCHosts.patternErrorMessage": "UNC-Hostnamen dürfen keine umgekehrten Schrägstriche enthalten.",
+ "security.restrictUNCAccess": "Wenn diese Option aktiviert ist, wird nur der Zugriff auf UNC-Hostnamen zugelassen, die durch die Einstellung \"#security.allowedUNCHosts#\" oder nach der Benutzerbestätigung zulässig sind. Weitere Informationen zu dieser Einstellung finden Sie unter https://aka.ms/vscode-windows-unc.",
+ "securityConfigurationTitle": "Sicherheit",
+ "windowConfigurationTitle": "Fenster",
"workbenchConfigurationTitle": "Workbench"
},
"vs/workbench/common/contextkeys": {
+ "SelectedEditorsInGroupFileOrUntitledResourceContextKey": "Gibt an, ob allen ausgewählten Editoren in einer Gruppe eine Datei oder eine unbenannte Ressource zugeordnet ist.",
"activeAuxiliary": "Der Bezeichner des aktiven Hilfsbereichs",
+ "activeCompareEditorCanSwap": "Gibt an, ob der aktive Vergleichs-Editor Seiten austauschen kann.",
"activeEditor": "Der Bezeichner des aktiven Editors",
"activeEditorAvailableEditorIds": "Die verfügbaren Editor-IDs, die für den aktiven Editor verwendet werden können.",
"activeEditorCanRevert": "Gibt an, ob der aktive Editor zurückgesetzt werden kann.",
+ "activeEditorCanToggleReadonly": "Gibt an, ob der aktive Editor zwischen schreibgeschützt oder beschreibbar wechseln kann",
"activeEditorGroupEmpty": "Gibt an, ob die aktive Editor-Gruppe leer ist.",
"activeEditorGroupIndex": "Der Index der aktiven Editor-Gruppe",
"activeEditorGroupLast": "Gibt an, ob die aktive Editor-Gruppe die letzte Gruppe ist.",
@@ -3902,23 +5001,33 @@
"activeEditorIsLastInGroup": "Gibt an, ob der aktive Editor der Letzte in der Gruppe ist.",
"activeEditorIsNotPreview": "Gibt an, ob sich der aktive Editor nicht im Vorschaumodus befindet.",
"activeEditorIsPinned": "Gibt an, ob der aktive Editor angeheftet ist.",
- "activeEditorIsReadonly": "Gibt an, ob der aktive Editor schreibgeschützt ist.",
+ "activeEditorIsReadonly": "Gibt an, ob der aktive Editor schreibgeschützt ist",
"activePanel": "Der Bezeichner des aktiven Panels.",
"activeViewlet": "Der Bezeichner des aktiven Viewlets",
"auxiliaryBarFocus": "Gibt an, ob die Hilfsleiste den Tastaturfokus besitzt.",
+ "auxiliaryBarMaximized": "Gibt an, ob der Hilfsleiste maximiert ist.",
"auxiliaryBarVisible": "Gibt an, ob der Hilfsleiste sichtbar ist.",
"bannerFocused": "Gibt an, ob das Banner über den Tastaturfokus verfügt.",
"dirtyWorkingCopies": "Gibt an, ob Arbeitskopien mit nicht gespeicherten Änderungen vorhanden sind.",
- "editorAreaVisible": "Gibt an, ob der Editor-Bereich sichtbar ist.",
"editorIsOpen": "Gibt an, ob ein Editor geöffnet ist.",
+ "editorPartEditorGroupMaximized": "Bearbeitungs-Webpart verfügt über eine maximierte Gruppe",
+ "editorPartMultipleEditorGroups": "Gibt an, ob mehrere Editor-Gruppen in einem Bearbeitungs-Webpart geöffnet sind.",
"editorTabsVisible": "Ob Editor-Registerkarten sichtbar sind",
+ "embedderIdentifier": "Der Bezeichner des Embedders gemäß dem Produktdienst, sofern definiert.",
"focusedView": "Der Bezeichner der Ansicht mit dem Tastaturfokus",
"groupEditorsCount": "Die Anzahl geöffneter Editor-Gruppen",
+ "inAutomation": "Gibt an, ob VS Code im Rahmen von Automatisierungs- oder Rauchtests ausgeführt wird.",
"inZenMode": "Gibt an, ob der Zen-Modus aktiviert ist.",
- "isCenteredLayout": "Gibt an, ob das zentrierte Layout aktiviert ist.",
+ "isAuxiliaryWindow": "Das Fenster ist ein Hilfsfenster.",
+ "isAuxiliaryWindowFocusedContext": "Gibt an, ob ein Erweiterungsfenster den Fokus hat.",
+ "isCompactTitleBar": "Die Titelleiste befindet sich im Kompaktmodus",
"isFileSystemResource": "Gibt an, ob die Ressource von einem Dateisystemanbieter unterstützt wird.",
- "isFullscreen": "Gibt an, ob das Fenster im Vollbildmodus angezeigt wird.",
+ "isFullscreen": "Gibt an, ob sich das Hauptfenster im Vollbildmodus befindet.",
+ "isMainEditorCenteredLayout": "Gibt an, ob das zentrierte Layout für den Standard-Editor aktiviert ist.",
+ "isWindowAlwaysOnTop": "Ob das Fenster immer im Vordergrund angezeigt wird",
+ "mainEditorAreaVisible": "Gibt an, ob der Editorbereich im Hauptfenster sichtbar ist",
"multipleEditorGroups": "Gibt an, ob mehrere Editor-Gruppen geöffnet sind.",
+ "multipleEditorsSelectedInGroup": "Gibt an, ob mehrere Editoren in einer Editorgruppe ausgewählt wurden",
"notificationCenterVisible": "Gibt an, ob die Mitteilungszentrale sichtbar ist.",
"notificationFocus": "Gibt an, ob eine Benachrichtigung über den Tastaturfokus verfügt.",
"notificationToastsVisible": "Gibt an, ob ein Benachrichtigungspopup sichtbar ist.",
@@ -3941,14 +5050,20 @@
"sideBySideEditorActive": "Gibt an, ob ein paralleler Editor aktiv ist.",
"splitEditorsVertically": "Gibt an, ob Editoren vertikal geteilt werden.",
"statusBarFocused": "Gibt an, ob die Statusleiste über den Tastaturfokus verfügt.",
+ "temporaryWorkspace": "Das Schema des aktuellen Arbeitsbereichs stammt aus einem temporären Dateisystem.",
"textCompareEditorActive": "Gibt an, ob ein Textvergleichs-Editor aktiv ist.",
"textCompareEditorVisible": "Gibt an, ob ein Textvergleichs-Editor sichtbar ist.",
- "virtualWorkspace": "Das Schema des aktuellen Arbeitsbereichs, wenn es von einem virtuellen Dateisystem oder einer leeren Zeichenfolge ist.",
+ "titleBarStyle": "Stil der Fenstertitelleiste",
+ "titleBarVisible": "Gibt an, ob die Titelleiste sichtbar ist.",
+ "twoEditorsSelectedInGroup": "Gibt an, ob genau zwei Editoren in einer Editorgruppe ausgewählt wurden",
+ "virtualWorkspace": "Das Schema des aktuellen Arbeitsbereichs ist von einem virtuellen Dateisystem oder einer leeren Zeichenfolge.",
"workbenchState": "Die Art des im Fenster geöffneten Arbeitsbereichs: \"leer\" (kein Arbeitsbereich), \"Ordner\" (einzelner Ordner) oder \"Arbeitsbereich\" (Arbeitsbereich mit mehreren Stammordnern)",
"workspaceFolderCount": "Die Anzahl von Stammordnern im Arbeitsbereich"
},
"vs/workbench/common/editor": {
"builtinProviderDisplayName": "Integriert",
+ "configureEditorLargeFileConfirmation": "Grenzwert konfigurieren",
+ "openLargeFile": "Trotzdem öffnen",
"promptOpenWith.defaultEditor.displayName": "Text-Editor"
},
"vs/workbench/common/editor/diffEditorInput": {
@@ -3971,9 +5086,23 @@
"activityBarDragAndDropBorder": "Drag & Drop-Feedbackfarbe für Elemente der Aktivitätsleiste. Die Aktivitätsleiste wird ganz links oder ganz rechts angezeigt und ermöglicht den Wechsel zwischen Ansichten der Seitenleiste.",
"activityBarForeground": "Vordergrundfarbe für aktive Elemente der Aktivitätsleiste. Die Aktivitätsleiste wird ganz links oder rechts angezeigt und ermöglicht den Wechsel zwischen den Ansichten der Seitenleiste.",
"activityBarInActiveForeground": "Vordergrundfarbe für inaktive Elemente der Aktivitätsleiste. Die Aktivitätsleiste wird ganz links oder rechts angezeigt und ermöglicht den Wechsel zwischen den Ansichten der Seitenleiste.",
+ "activityBarTop": "Aktive Vordergrundfarbe des Elements in der Aktivitätsleiste, wenn es sich oben/unten befindet. Die Aktivität ermöglicht das Wechseln zwischen Ansichten der Seitenleiste.",
+ "activityBarTopActiveBackground": "Hintergrundfarbe für das aktive Element in der Aktivitätsleiste, wenn es sich oben/unten befindet. Die Aktivität ermöglicht das Wechseln zwischen Ansichten der Seitenleiste.",
+ "activityBarTopActiveFocusBorder": "Rahmenfarbe für das aktive Element in der Aktivitätsleiste fokussieren, wenn sie sich oben/unten befindet. Die Aktivität ermöglicht das Wechseln zwischen Ansichten der Seitenleiste.",
+ "activityBarTopBackground": "Hintergrundfarbe der Aktivitätsleiste bei Festlegung auf „Oben/Unten“.",
+ "activityBarTopDragAndDropBorder": "Feedbackfarbe für die Elemente in der Aktivitätsleiste per Drag & Drop ziehen, wenn sie sich oben/unten befindet. Die Aktivität ermöglicht das Wechseln zwischen Ansichten der Seitenleiste.",
+ "activityBarTopInActiveForeground": "Inaktive Vordergrundfarbe des Elements in der Aktivitätsleiste, wenn es sich oben/unten befindet. Die Aktivität ermöglicht das Wechseln zwischen Ansichten der Seitenleiste.",
"banner.background": "Hintergrundfarbe des Banners. Das Banner wird unter der Titelleiste des Fensters angezeigt.",
"banner.foreground": "Vordergrundfarbe des Banners. Das Banner wird unter der Titelleiste des Fensters angezeigt.",
"banner.iconForeground": "Farbe des Banner Symbols. Das Banner wird unter der Titelleiste des Fensters angezeigt.",
+ "commandCenter-activeBackground": "Aktive Hintergrundfarbe der Befehlsmitte",
+ "commandCenter-activeBorder": "Aktive Rahmenfarbe des Befehlscenters",
+ "commandCenter-activeForeground": "Aktive Vordergrundfarbe der Befehlsmitte",
+ "commandCenter-background": "Hintergrundfarbe der Befehlsmitte",
+ "commandCenter-border": "Rahmenfarbe der Befehlsmitte",
+ "commandCenter-foreground": "Vordergrundfarbe der Befehlsmitte",
+ "commandCenter-inactiveBorder": "Rahmenfarbe der Befehlsmitte, wenn das Fenster inaktiv ist",
+ "commandCenter-inactiveForeground": "Vordergrundfarbe des Befehlscenters, wenn das Fenster inaktiv ist",
"editorDragAndDropBackground": "Hintergrundfarbe beim Ziehen von Editoren. Die Farbe muss transparent sein, damit die Editor-Inhalte noch sichtbar sind.",
"editorDropIntoPromptBackground": "Hintergrundfarbe des Textes, der beim Ziehen von Dateien über Editoren angezeigt wird. Dieser Text informiert den Benutzer, dass er die Umschalttaste gedrückt halten kann, um in den Editor zu wechseln.",
"editorDropIntoPromptBorder": "Randfarbe des Textes, der beim Ziehen von Dateien über Editoren angezeigt wird. Dieser Text informiert den Benutzer, dass er die Umschalttaste gedrückt halten kann, um in den Editor zu wechseln.",
@@ -3981,7 +5110,7 @@
"editorGroupBorder": "Farbe zum Trennen mehrerer Editor-Gruppen. Editor-Gruppen sind die Container der Editoren.",
"editorGroupEmptyBackground": "Hintergrundfarbe einer leeren Editor-Gruppe. Editor-Gruppen sind die Container von Editoren.",
"editorGroupFocusedEmptyBorder": "Rahmenfarbe einer leeren Editor-Gruppe, die im Fokus liegt. Editor-Gruppen sind die Container von Editoren.",
- "editorGroupHeaderBackground": "Hintergrundfarbe der Editorgruppen-Titelüberschrift, wenn Registerkarten deaktiviert sind (`\"workbench.editor.showTabs\": false`). Editor-Gruppen sind die Container für Editoren.",
+ "editorGroupHeaderBackground": "Hintergrundfarbe der Editorgruppen-Titelüberschrift, wenn (`\"workbench.editor.showTabs\": \"single\"`). Editorgruppen sind die Container für Editoren.",
"editorPaneBackground": "Die Hintergrundfarbe des Editorbereichs, die links und rechts neben dem zentrierten Editorlayout sichtbar ist.",
"editorTitleContainerBorder": "Die Rahmenfarbe der Titelüberschrift der Editor-Gruppe. Editor-Gruppen sind Container für Editoren.",
"extensionBadge.remoteBackground": "Hintergrundfarbe für den Remote-Badge in der Erweiterungsansicht.",
@@ -4001,6 +5130,8 @@
"notificationsInfoIconForeground": "Die Farbe, die für das Symbol von Infobenachrichtigungen verwendet wird. Benachrichtigungen werden von der unteren rechten Seite des Fensters eingeblendet.",
"notificationsLink": "Vordergrundfarbe für Benachrichtigungslinks. Benachrichtigungen werden unten rechts eingeblendet.",
"notificationsWarningIconForeground": "Die Farbe, die für das Symbol für Warnbenachrichtigungen verwendet wird. Benachrichtigungen werden von der unteren rechten Seite des Fensters eingeblendet.",
+ "outputViewBackground": "Hintergrundfarbe der Ausgabeansicht.",
+ "outputViewStickyScrollBackground": "Hintergrundfarbe des fixierter Bildlaufs der Ausgabeansicht.",
"panelActiveTitleBorder": "Rahmenfarbe für den Titel des aktiven Panels. Panels werden unter dem Editorpanel angezeigt und enthalten Ansichten wie Ausgabe und integriertes Terminal.",
"panelActiveTitleForeground": "Titelfarbe für das aktive Panel. Panels werden unter dem Editorpanel angezeigt und enthalten Ansichten wie Ausgabe und integriertes Terminal.",
"panelBackground": "Hintergrundfarbe des Panels. Panels werden unter dem Editorbereich angezeigt und enthalten Ansichten wie die Ausgabe und das integrierte Terminal.",
@@ -4013,6 +5144,15 @@
"panelSectionHeaderBackground": "Hintergrundfarbe für Überschriften von Panelabschnitten. Panels werden unterhalb des Editorbereichs angezeigt und enthalten Ansichten wie \"Ausgabe\" und \"Integriertes Terminal\". Panelabschnitte sind Ansichten, die innerhalb der Panels geschachtelt sind.",
"panelSectionHeaderBorder": "Rahmenfarbe der Panelabschnittsüberschrift, die verwendet wird, wenn mehrere Ansichten vertikal im Panel gestapelt werden. Panels werden unterhalb des Editorbereichs angezeigt und enthalten Ansichten wie \"Ausgabe\" und \"Integriertes Terminal\". Panelabschnitte sind Ansichten, die innerhalb der Panels geschachtelt sind.",
"panelSectionHeaderForeground": "Vordergrundfarbe für Überschriften von Panelabschnitten. Panels werden unterhalb des Editorbereichs angezeigt und enthalten Ansichten wie \"Ausgabe\" und \"Integriertes Terminal\". Panelabschnitte sind Ansichten, die innerhalb der Panels geschachtelt sind.",
+ "panelStickyScrollBackground": "Hintergrundfarbe des fixierten Bildlaufs im Bereich.",
+ "panelStickyScrollBorder": "Rahmenfarbe des fixierten Bildlaufs im Bereich.",
+ "panelStickyScrollShadow": "Schattenfarbe des fixierten Bildlaufs im Bereich.",
+ "panelTitleBadgeBackground": "Hintergrundfarbe des Bereichstitelbadges. Bereiche werden unterhalb des Editorbereichs angezeigt und enthalten Ansichten wie Ausgabe und integriertes Terminal.",
+ "panelTitleBadgeForeground": "Vordergrundfarbe des Bereichstitelbadges. Bereiche werden unterhalb des Editorbereichs angezeigt und enthalten Ansichten wie Ausgabe und integriertes Terminal.",
+ "panelTitleBorder": "Rahmenfarbe des Bereichstitels am unteren Rand, die den Titel von den Ansichten trennt. Bereiche werden unterhalb des Editorbereichs angezeigt und enthalten Ansichten wie Ausgabe und integriertes Terminal.",
+ "profileBadgeBackground": "Hintergrundfarbe des Profilbadges. Der Profilbadge wird über dem Zahnradsymbol der Einstellungen in der Aktivitätsleiste angezeigt.",
+ "profileBadgeForeground": "Vordergrundfarbe des Profilbadges. Der Profilbadge wird über dem Zahnradsymbol der Einstellungen in der Aktivitätsleiste angezeigt.",
+ "sideBarActivityBarTopBorder": "Rahmenfarbe zwischen der Aktivitätsleiste oben/unten und den Ansichten.",
"sideBarBackground": "Hintergrundfarbe der Seitenleiste. Die Seitenleiste ist der Container für Ansichten wie den Explorer und die Suche.",
"sideBarBorder": "Rahmenfarbe der Seitenleiste zum Abtrennen an der Seite zum Editor. Die Seitenleiste ist der Container für Ansichten wie den Explorer und die Suche.",
"sideBarDragAndDropBackground": "Drag & Drop-Feedbackfarbe für die Abschnitte der Randleiste. Die Farbe sollte transparent sein, damit die Abschnitte der Randleiste weiterhin sichtbar sind. Die Randleiste ist der Container für Ansichten wie den Explorer und die Suche. Randleistenabschnitte sind Ansichten, die innerhalb der Randleiste geschachtelt sind.",
@@ -4020,6 +5160,11 @@
"sideBarSectionHeaderBackground": "Hintergrundfarbe für Überschriften von Randleistenabschnitten. Die Randleiste ist der Container für Ansichten wie den Explorer und die Suche. Randleistenabschnitte sind Ansichten, die innerhalb der Randleiste geschachtelt sind.",
"sideBarSectionHeaderBorder": "Rahmenfarbe für Überschriften von Randleistenabschnitten. Die Randleiste ist der Container für Ansichten wie den Explorer und die Suche. Randleistenabschnitte sind Ansichten, die innerhalb der Randleiste geschachtelt sind.",
"sideBarSectionHeaderForeground": "Vordergrundfarbe für Überschriften von Randleistenabschnitten. Die Randleiste ist der Container für Ansichten wie den Explorer und die Suche. Randleistenabschnitte sind Ansichten, die innerhalb der Randleiste geschachtelt sind.",
+ "sideBarStickyScrollBackground": "Hintergrundfarbe des fixierten Bildlaufs in der Seitenleiste.",
+ "sideBarStickyScrollBorder": "Rahmenfarbe des fixierten Bildlaufs in der Seitenleiste.",
+ "sideBarStickyScrollShadow": "Schattenfarbe des fixierten Bildlaufs in der Seitenleiste.",
+ "sideBarTitleBackground": "Hintergrundfarbe des Seitenleistentitels. Die Seitenleiste ist der Container für Ansichten wie den Explorer und die Suche.",
+ "sideBarTitleBorder": "Rahmenfarbe des Seitenleistentitels am unteren Rand, die den Titel von den Ansichten trennt. Die Seitenleiste ist der Container für Ansichten wie den Explorer und die Suche.",
"sideBarTitleForeground": "Vordergrundfarbe des Seitenleistentitels. Die Seitenleiste ist der Container für Ansichten wie den Explorer und die Suche.",
"sideBySideEditor.horizontalBorder": "Farbe, um zwei Editoren voneinander zu trennen, wenn sie in einer Editorgruppe von oben nach unten nebeneinander angezeigt werden.",
"sideBySideEditor.verticalBorder": "Farbe, um zwei Editoren voneinander zu trennen, wenn sie in einer Editorgruppe von links nach rechts nebeneinander angezeigt werden.",
@@ -4027,22 +5172,34 @@
"statusBarBorder": "Rahmenfarbe der Statusleiste für die Abtrennung von der Seitenleiste und dem Editor. Die Statusleiste wird unten im Fenster angezeigt.",
"statusBarErrorItemBackground": "Hintergrundfarbe für Fehlerelemente der Statusleiste. Fehlerelemente sind im Vergleich zu anderen Statusleisteneinträgen hervorgehoben, um auf Fehlerbedingungen hinzuweisen. Die Statusleiste wird unten im Fenster angezeigt.",
"statusBarErrorItemForeground": "Vordergrundfarbe für Fehlerelemente der Statusleiste. Fehlerelemente sind im Vergleich zu anderen Statusleisteneinträgen hervorgehoben, um auf Fehlerbedingungen hinzuweisen. Die Statusleiste wird unten im Fenster angezeigt.",
+ "statusBarErrorItemHoverBackground": "Hintergrundfarbe für Fehlerelemente auf der Statusleiste, wenn darauf gezeigt wird. Fehlerelemente sind im Vergleich zu anderen Statusleisteneinträgen hervorgehoben, um auf Fehlerbedingungen hinzuweisen. Die Statusleiste wird unten im Fenster angezeigt.",
+ "statusBarErrorItemHoverForeground": "Vordergrundfarbe für Fehlerelemente auf der Statusleiste, wenn darauf gezeigt wird. Fehlerelemente sind im Vergleich zu anderen Statusleisteneinträgen hervorgehoben, um auf Fehlerbedingungen hinzuweisen. Die Statusleiste wird unten im Fenster angezeigt.",
"statusBarFocusBorder": "Rahmenfarbe der Statusleiste, wenn der Fokus auf der Tastaturnavigation liegt. Die Statusleiste wird unten im Fenster angezeigt.",
"statusBarForeground": "Vordergrundfarbe der Statusleiste beim Öffnen eines Arbeitsbereichs oder Ordners. Die Statusleiste wird unten im Fenster angezeigt.",
"statusBarItemActiveBackground": "Hintergrundfarbe für Statusleistenelemente beim Klicken. Die Statusleiste wird am unteren Rand des Fensters angezeigt.",
"statusBarItemCompactHoverBackground": "Hintergrundfarbe der Statusleistenelemente beim Daraufzeigen auf ein Element, das zwei Hovers enthält. Die Statusleiste wird am unteren Seitenrand angezeigt.",
"statusBarItemFocusBorder": "Rahmenfarbe des Statusleistenelements, wenn der Fokus auf der Tastaturnavigation liegt. Die Statusleiste wird unten im Fenster angezeigt.",
- "statusBarItemHostBackground": "Hintergrundfarbe für die Remoteanzeige auf der Statusleiste",
- "statusBarItemHostForeground": "Vordergrundfarbe für die Remoteanzeige auf der Statusleiste",
"statusBarItemHoverBackground": "Hintergrundfarbe der Statusleistenelemente beim Daraufzeigen. Die Statusleiste wird am unteren Seitenrand angezeigt.",
+ "statusBarItemHoverForeground": "Vordergrundfarbe für Elemente auf der Statusleiste, wenn darauf gezeigt wird. Die Statusleiste wird unten im Fenster angezeigt.",
+ "statusBarItemOfflineBackground": "Hintergrundfarbe von Elementen auf der Statusleiste, wenn die Workbench offline ist.",
+ "statusBarItemOfflineForeground": "Vordergrundfarbe von Elementen auf der Statusleiste, wenn die Workbench offline ist.",
+ "statusBarItemRemoteBackground": "Hintergrundfarbe für die Remoteanzeige auf der Statusleiste",
+ "statusBarItemRemoteForeground": "Vordergrundfarbe für die Remoteanzeige auf der Statusleiste",
"statusBarNoFolderBackground": "Hintergrundfarbe der Statusleiste, wenn kein Ordner geöffnet ist. Die Statusleiste wird unten im Fenster angezeigt.",
"statusBarNoFolderBorder": "Rahmenfarbe der Statusleiste zur Abtrennung von der Randleiste und dem Editor, wenn kein Ordner geöffnet ist. Die Statusleiste wird unten im Fenster angezeigt.",
"statusBarNoFolderForeground": "Vordergrundfarbe der Statusleiste, wenn kein Ordner geöffnet ist. Die Statusleiste wird unten im Fenster angezeigt.",
- "statusBarProminentItemBackground": "Hintergrundfarbe für markante Elemente der Statusleiste. Markante Elemente sind im Vergleich zu anderen Statusleisteneinträgen hervorgehoben, um auf ihre Bedeutung hinzuweisen. Ändern Sie den Modus mithilfe von \"TAB-Umschalttaste verschiebt Fokus\" auf der Befehlspalette, um ein Beispiel anzuzeigen. Die Statusleiste wird unten im Fenster angezeigt.",
- "statusBarProminentItemForeground": "Vordergrundfarbe der hervorgehobenen Elemente auf der Statusleiste. Diese Elemente werden von anderen Elementen auf der Statusleiste hervorgehoben, um deren Wichtigkeit zu signalisieren. Ändern Sie den Modus \"TAB-Umschalttaste verschiebt Fokus\" über die Befehlspalette für eine Veranschaulichung. Die Statusleiste wird am unteren Fensterrand angezeigt.",
- "statusBarProminentItemHoverBackground": "Hintergrundfarbe für markante Elemente der Statusleiste, wenn auf diese gezeigt wird. Markante Elemente sind im Vergleich zu anderen Statusleisteneinträgen hervorgehoben, um auf ihre Bedeutung hinzuweisen. Ändern Sie den Modus mithilfe von \"TAB-Umschalttaste verschiebt Fokus\" auf der Befehlspalette, um ein Beispiel anzuzeigen. Die Statusleiste wird unten im Fenster angezeigt.",
+ "statusBarOfflineItemHoverBackground": "Hintergrundfarbe von Statusleistenelementen beim Daraufzeigen, wenn die Workbench offline ist.",
+ "statusBarOfflineItemHoverForeground": "Vordergrundfarbe von Statusleistenelementen beim Daraufzeigen, wenn die Workbench offline ist.",
+ "statusBarProminentItemBackground": "Hintergrundfarbe für markante Elemente auf der Statusleiste. Markante Elemente sind im Vergleich zu anderen Statusleisteneinträgen hervorgehoben, um auf ihre Bedeutung hinzuweisen. Die Statusleiste wird unten im Fenster angezeigt.",
+ "statusBarProminentItemForeground": "Vordergrundfarbe für markante Elemente auf der Statusleiste. Markante Elemente sind im Vergleich zu anderen Statusleisteneinträgen hervorgehoben, um auf ihre Bedeutung hinzuweisen. Die Statusleiste wird unten im Fenster angezeigt.",
+ "statusBarProminentItemHoverBackground": "Hintergrundfarbe für markante Elemente auf der Statusleiste, wenn darauf gezeigt wird. Markante Elemente sind im Vergleich zu anderen Statusleisteneinträgen hervorgehoben, um auf ihre Bedeutung hinzuweisen. Die Statusleiste wird unten im Fenster angezeigt.",
+ "statusBarProminentItemHoverForeground": "Vordergrundfarbe für markante Elemente auf der Statusleiste, wenn darauf gezeigt wird. Markante Elemente sind im Vergleich zu anderen Statusleisteneinträgen hervorgehoben, um auf ihre Bedeutung hinzuweisen. Die Statusleiste wird unten im Fenster angezeigt.",
+ "statusBarRemoteItemHoverBackground": "Hintergrundfarbe für die Remoteanzeige auf der Statusleiste, wenn darauf gezeigt wird.",
+ "statusBarRemoteItemHoverForeground": "Vordergrundfarbe für die Remoteanzeige auf der Statusleiste, wenn darauf gezeigt wird.",
"statusBarWarningItemBackground": "Hintergrundfarbe der Warnungselemente für die Statusleiste. Warnungselemente sind im Vergleich zu anderen Statusleisteneinträgen hervorgehoben, um auf Warnungsbedingungen hinzuweisen. Die Statusleiste wird unten im Fenster angezeigt.",
"statusBarWarningItemForeground": "Vordergrundfarbe der Warnungselemente für die Statusleiste. Warnungselemente sind im Vergleich zu anderen Statusleisteneinträgen hervorgehoben, um auf Warnungsbedingungen hinzuweisen. Die Statusleiste wird unten im Fenster angezeigt.",
+ "statusBarWarningItemHoverBackground": "Hintergrundfarbe von Warnungselementen auf der Statusleiste, wenn darauf gezeigt wird. Warnungselemente sind im Vergleich zu anderen Statusleisteneinträgen hervorgehoben, um auf Warnungsbedingungen hinzuweisen. Die Statusleiste wird unten im Fenster angezeigt.",
+ "statusBarWarningItemHoverForeground": "Vordergrundfarbe von Warnungselementen auf der Statusleiste, wenn darauf gezeigt wird. Warnungselemente sind im Vergleich zu anderen Statusleisteneinträgen hervorgehoben, um auf Warnungsbedingungen hinzuweisen. Die Statusleiste wird unten im Fenster angezeigt.",
"tabActiveBackground": "Hintergrundfarbe der aktiven Registerkarte. Registerkarten sind die Container für Editors im Editorbereich. In einer Editorgruppe können mehrere Registerkarten geöffnet werden. Mehrere Editorgruppen können vorhanden sein.",
"tabActiveBorder": "Rahmen am unteren Rand einer aktiven Registerkarte. Registerkarten sind die Container für Editoren im Editor-Bereich. In einer Editor-Gruppe können mehrere Registerkarten geöffnet werden. Mehrere Editor-Gruppen sind möglich.",
"tabActiveBorderTop": "Rahmen am oberen Rand einer aktiven Registerkarte. Registerkarten sind die Container für Editoren im Editor-Bereich. In einer Editor-Gruppe können mehrere Registerkarten geöffnet werden. Mehrere Editor-Gruppen sind möglich.",
@@ -4051,12 +5208,16 @@
"tabActiveUnfocusedBorder": "Rahmen am unteren Rand einer aktiven Registerkarte in einer Gruppe ohne Fokus. Registerkarten sind die Container für Editoren im Editor-Bereich. In einer Editor-Gruppe können mehrere Registerkarten geöffnet werden. Mehrere Editor-Gruppen sind möglich.",
"tabActiveUnfocusedBorderTop": "Rahmen am oberen Rand einer aktiven Registerkarte in einer Gruppe ohne Fokus. Registerkarten sind die Container für Editoren im Editor-Bereich. In einer Editor-Gruppe können mehrere Registerkarten geöffnet werden. Mehrere Editor-Gruppen sind möglich.",
"tabBorder": "Rahmen zum Trennen von Registerkarten. Registerkarten sind die Container für Editoren im Editor-Bereich. In einer Editor-Gruppe können mehrere Registerkarten geöffnet werden. Mehrere Editor-Gruppen sind möglich.",
+ "tabDragAndDropBorder": "Rahmen zwischen Registerkarten, der angibt, dass eine Registerkarte zwischen zwei Registerkarten eingefügt werden kann. Registerkarten sind die Container für Editoren im Editorbereich. Mehrere Registerkarten können in einer Editorgruppe geöffnet werden. Es können mehrere Editorgruppen vorhanden sein.",
"tabHoverBackground": "Hintergrundfarbe der Registerkarte beim Daraufzeigen. Registerkarten sind die Container für Editoren im Editorbereich. In einer Editorgruppe können mehrere Registerkarten geöffnet werden. Mehrere Editorgruppen können vorhanden sein.",
"tabHoverBorder": "Rahmen zum Hervorheben von Registerkarten beim Daraufzeigen. Registerkarten sind die Container für Editoren im Editor-Bereich. In einer Editor-Gruppe können mehrere Registerkarten geöffnet werden. Mehrere Editor-Gruppen sind möglich.",
"tabHoverForeground": "Die Vordergrundfarbe der Registerkarte, wenn mit der Maus darauf gezeigt wird. Registerkarten sind die Container für Editoren im Editor-Bereich. In einer Editor-Gruppe können mehrere Registerkarten geöffnet werden. Es können mehrere Editor-Gruppen vorhanden sein.",
"tabInactiveBackground": "Hintergrundfarbe der inaktiven Registerkarte. Registerkarten sind die Container für Editors im Editorbereich. In einer Editorgruppe können mehrere Registerkarten geöffnet werden. Mehrere Editorgruppen können vorhanden sein.",
"tabInactiveForeground": "Vordergrundfarbe der inaktiven Registerkarte in einer aktiven Gruppe. Registerkarten sind die Container für Editors im Editorbereich. In einer Editorgruppe können mehrere Registerkarten geöffnet werden. Mehrere Editorgruppen können vorhanden sein.",
"tabInactiveModifiedBorder": "Rahmen am oberen Rand einer geänderten inaktiven Registerkarte in einer aktiven Gruppe. Registerkarten enthalten die Editoren im Editor-Bereich. In einer Editor-Gruppe können mehrere Registerkarten geöffnet werden. Mehrere Editor-Gruppen sind möglich.",
+ "tabSelectedBackground": "Hintergrund einer ausgewählten Registerkarte. Registerkarten sind die Container für Editoren im Editorbereich. Mehrere Registerkarten können in einer Editorgruppe geöffnet werden. Es können mehrere Editorgruppen vorhanden sein.",
+ "tabSelectedBorderTop": "Rahmen am oberen Rand einer ausgewählten Registerkarte. Registerkarten sind die Container für Editoren im Editorbereich. Mehrere Registerkarten können in einer Editorgruppe geöffnet werden. Es können mehrere Editorgruppen vorhanden sein.",
+ "tabSelectedForeground": "Vordergrund einer ausgewählten Registerkarte. Registerkarten sind die Container für Editoren im Editorbereich. Mehrere Registerkarten können in einer Editorgruppe geöffnet werden. Es können mehrere Editorgruppen vorhanden sein.",
"tabUnfocusedActiveBackground": "Hintergrundfarbe für aktive Registerkarte in einer Gruppe ohne Fokus. Registerkarten sind die Container für Editoren im Editorbereich. In einer Editorgruppe können mehrere Registerkarten geöffnet werden. Es können mehrere Editorgruppen vorliegen.",
"tabUnfocusedActiveForeground": "Vordergrundfarbe für aktive Registerkarten in einer Gruppe ohne Fokus. Registerkarten sind die Container für Editoren im Editor-Bereich. In einer Editor-Gruppe können mehrere Registerkarten geöffnet werden. Mehrere Editor-Gruppen sind möglich.",
"tabUnfocusedHoverBackground": "Hintergrundfarbe für Registerkarten in einer Gruppe ohne Fokus beim Daraufzeigen. Registerkarten sind die Container für Editoren im Editor-Bereich. In einer Editor-Gruppe können mehrere Registerkarten geöffnet werden. Mehrere Editor-Gruppen sind möglich.",
@@ -4073,120 +5234,160 @@
"titleBarInactiveForeground": "Vordergrund der Titelleiste bei inaktivem Fenster.",
"unfocusedActiveModifiedBorder": "Rahmen am oberen Rand einer geänderten aktiven Registerkarte in einer Gruppe ohne Fokus. Registerkarten enthalten die Editoren im Editor-Bereich. In einer Editor-Gruppe können mehrere Registerkarten geöffnet werden. Mehrere Editor-Gruppen sind möglich.",
"unfocusedINactiveModifiedBorder": "Rahmen am oberen Rand einer geänderten inaktiven Registerkarte in einer Gruppe ohne Fokus. Registerkarten enthalten die Editoren im Editor-Bereich. In einer Editor-Gruppe können mehrere Registerkarten geöffnet werden. Mehrere Editor-Gruppen sind möglich.",
- "windowActiveBorder": "Die Farbe, die für den Rahmen des Fensters verwendet wird, wenn es aktiv ist. Diese Option wird nur im Desktopclient unterstützt, wenn die benutzerdefinierte Titelleiste verwendet wird.",
- "windowInactiveBorder": "Die Farbe, die für den Rahmen des Fensters verwendet wird, wenn es inaktiv ist. Diese Option wird nur im Desktopclient unterstützt, wenn die benutzerdefinierte Titelleiste verwendet wird."
+ "windowActiveBorder": "Die Farbe, die für den Rahmen des Fensters verwendet wird, wenn es unter macOS oder Linux aktiv ist. Erfordert einen benutzerdefinierten Titelleistenstil und benutzerdefinierte oder ausgeblendete Fenstersteuerelemente unter Linux.",
+ "windowInactiveBorder": "Die Farbe, die für den Rahmen des Fensters verwendet wird, wenn es unter macOS oder Linux inaktiv ist. Erfordert einen benutzerdefinierten Titelleistenstil und benutzerdefinierte oder ausgeblendete Fenstersteuerelemente unter Linux."
},
"vs/workbench/common/views": {
"defaultViewIcon": "Standardansichtssymbol.",
- "duplicateId": "Eine Ansicht mit der ID {0} ist bereits registriert."
+ "duplicateId": "Eine Ansicht mit der ID {0} ist bereits registriert.",
+ "treeView.notRegistered": "Es wurde keine Strukturansicht mit der ID \"{0}\" registriert.",
+ "views log": "Ansichten"
},
- "vs/workbench/electron-sandbox/actions/developerActions": {
- "configureRuntimeArguments": "Runtimeargumente konfigurieren",
+ "vs/workbench/electron-browser/actions/developerActions": {
+ "configureRuntimeArguments": "Laufzeitargumente konfigurieren",
"reloadWindowWithExtensionsDisabled": "Mit deaktivierten Erweiterungen neu laden",
- "toggleDevTools": "Entwicklertools umschalten",
- "toggleSharedProcess": "Freigegebenen Prozess umschalten"
- },
- "vs/workbench/electron-sandbox/actions/installActions": {
+ "revealUserDataFolder": "Benutzerdatenordner einblenden",
+ "showGPUInfo": "GPU-Informationen anzeigen",
+ "stopTracing": "Ablaufverfolgung beenden",
+ "stopTracing.button": "&&Ablaufverfolgung neu starten und aktivieren",
+ "stopTracing.detail": "Dies kann bis zu einer Minute dauern.",
+ "stopTracing.message": "Die Ablaufverfolgung muss mit einem Argument \"--trace\" gestartet werden.",
+ "stopTracing.title": "Ablaufverfolgungsdatei wird erstellt …",
+ "toggleDevTools": "Entwicklungstools umschalten"
+ },
+ "vs/workbench/electron-browser/actions/installActions": {
"install": "Befehl \"{0}\" in \"PATH\" installieren",
"shellCommand": "Shellbefehl",
"successFrom": "Der Shellbefehl \"{0}\" wurde erfolgreich aus \"PATH\" deinstalliert.",
"successIn": "Der Shellbefehl \"{0}\" wurde erfolgreich in \"PATH\" installiert.",
"uninstall": "Befehl \"{0}\" aus \"PATH\" deinstallieren"
},
- "vs/workbench/electron-sandbox/actions/windowActions": {
+ "vs/workbench/electron-browser/actions/windowActions": {
"close": "Fenster schließen",
+ "closeActive": "Aktives Fenster schließen",
"closeWindow": "Fenster schließen",
"current": "Aktuelles Fenster",
+ "disableWindowAlwaysOnTop": "„Immer im Vordergrund“ deaktivieren",
+ "enableWindowAlwaysOnTop": "„Immer im Vordergrund“ aktivieren",
"miCloseWindow": "&&Fenster schließen",
"miZoomIn": "&&Vergrößern",
"miZoomOut": "&&Verkleinern",
"miZoomReset": "&&Zoom zurücksetzen",
- "quickSwitchWindow": "Fenster schnell wechseln...",
- "switchWindow": "Fenster wechseln...",
- "switchWindowPlaceHolder": "Fenster auswählen, zu dem Sie wechseln möchten",
+ "quickSwitchWindow": "Schneller Fensterwechsel ...",
+ "switchWindow": "Fenster wechseln ...",
+ "switchWindowPlaceHolder": "Wählen Sie ein Fenster aus, zu dem gewechselt werden soll.",
+ "toggleWindowAlwaysOnTop": "„Fenster immer im Vordergrund“ umschalten",
"windowDirtyAriaLabel": "{0}, Fenster mit nicht gespeicherten Änderungen",
+ "windowGroup": "Fenstergruppe",
"zoomIn": "Vergrößern",
"zoomOut": "Verkleinern",
"zoomReset": "Zoom zurücksetzen"
},
- "vs/workbench/electron-sandbox/desktop.contribution": {
+ "vs/workbench/electron-browser/desktop.contribution": {
+ "application.shellEnvironmentResolutionTimeout": "Steuert das Timeout in Sekunden, bevor der Auflösungsvorgang der Shell-Umgebung nicht wiederholt wird, wenn die Anwendung noch nicht über einen Terminal gestartet wurde. Weitere Informationen finden Sie in unserer [Dokumentation](https://go.microsoft.com/fwlink/?linkid=2149667).",
"argv.crashReporterId": "Eindeutige ID zum Korrelieren von Absturzberichten, die von dieser App-Instanz gesendet werden.",
- "argv.disableHardwareAcceleration": "Deaktiviert die Hardwarebeschleunigung. Ändern Sie diese Option NUR, wenn Grafikprobleme auftreten.",
+ "argv.disableChromiumSandbox": "Deaktiviert die Chromium-Sandbox. Dies ist nützlich, wenn VS Code unter Linux mit erhöhten Rechten und unter AppLocker auf Windows ausgeführt werden.",
+ "argv.disableHardwareAcceleration": "Deaktiviert die Hardwarebeschleunigung. Ändern Sie diese Option NUR bei Grafikproblemen.",
+ "argv.disableLcdText": "Deaktiviert das Antialiasing von LCD-Schriftarten.",
"argv.enableCrashReporter": "Ermöglicht das Deaktivieren der Absturzberichterstellung. Bei Änderung des Werts muss die App neu gestartet werden.",
+ "argv.enableRDPDisplayTracking": "Stellt sicher, dass maximierte Fenster bei einer RDP-Neuverbindung wieder richtig dargestellt werden",
"argv.enebleProposedApi": "Aktivieren Sie vorgeschlagene APIs für eine Liste mit Erweiterungs-IDs (z. B. \"vscode.git\"). Vorgeschlagene APIs sind instabil und können jederzeit ohne Warnung unterbrochen werden. Diese Option sollte nur zum Entwickeln und Testen von Erweiterungen festgelegt werden.",
- "argv.force-renderer-accessibility": "Erzwingt, dass der Renderer zugänglich ist. Ändern Sie diese Einstellung nur, wenn Sie eine Sprachausgabe unter Linux verwenden. Auf anderen Plattformen ist der Renderer automatisch zugänglich. Dieses Flag wird automatisch festgelegt, wenn editor.accessibilitySupport: aktiviert ist.",
- "argv.forceColorProfile": "Ermöglicht das Überschreiben des zu verwendenden Farbprofils. Legen Sie die Option auf \"srgb\" fest, wenn Farben schlecht angezeigt werden, und führen Sie einen Neustart durch.",
- "argv.locale": "Die zu verwendende Anzeigesprache. Für die Auswahl einer anderen Sprache muss das zugehörige Sprachpaket installiert werden.",
- "argv.logLevel": "Log-Level zu verwenden. Standardwert ist \"Info\". Zulässige Werte sind \"kritisch\", \"Fehler\", \"warnen\", \"Info\", \"debug\", \"verfolgen\", \"aus\".",
- "closeWhenEmpty": "Steuert, ob das Fenster beim Schließen des letzten Editors geschlossen wird. Diese Einstellung gilt nur für Fenster, in denen keine Ordner angezeigt werden.",
- "dialogStyle": "Passen Sie die Darstellung von Dialogfenstern an.",
+ "argv.force-renderer-accessibility": "Erzwingt, dass der Renderer zugänglich ist. Ändern Sie diese Einstellung NUR, wenn Sie eine Sprachausgabe unter Linux verwenden. Auf anderen Plattformen ist der Renderer automatisch zugänglich. Dieses Flag wird automatisch verwendet, wenn Sie „editor.accessibilitySupport: on“ festgelegt haben.",
+ "argv.forceColorProfile": "Ermöglicht das Überschreiben des zu verwendenden Farbprofils. Wenn Farben nicht richtig angezeigt werden, legen Sie diese Einstellung auf „srgb“ fest, und führen Sie einen Neustart durch.",
+ "argv.locale": "Die zu verwendende Anzeigesprache. Um eine andere Sprache auszuwählen, muss das zugehörige Sprachpaket installiert sein.",
+ "argv.logLevel": "Protokolliergrad zu verwenden. Standardwert ist \"Info\". Zulässige Werte sind \"Fehler\", \"warnen\", \"Info\", \"debug\", \"verfolgen\", \"aus\".",
+ "argv.passwordStore": "Konfiguriert das Back-End, das zum Speichern von Geheimnissen unter Linux verwendet wird. Dieses Argument wird unter Windows und macOS ignoriert.",
+ "argv.proxyBypassList": "Umgeht jeden angegebenen Proxy für die angegebene, durch Semikolon getrennte Liste von Hosts. Der Beispielwert „;*.microsoft.com;*foo.com;1.2.3.4:5678“ verwendet den Proxyserver für alle Hosts mit Ausnahme von lokalen Adressen (localhost, 127.0.0.1 usw.), microsoft.com-Subdomains, Hosts, die das Suffix foo.com enthalten, und alles unter 1.2.3.4:5678",
+ "argv.remoteDebuggingPort": "Gibt den Port an, der für das Remotedebuggen verwendet werden soll.",
+ "argv.useInMemorySecretStorage": "Stellt sicher, dass als Geheimnisspeicher anstelle des Anmeldeinformationsspeichers des Betriebssystems ein In-Memory-Speicher verwendet wird. Dieser wird häufig beim Ausführen von VS Code-Erweiterungstests oder bei Schwierigkeiten mit dem Anmeldeinformationsspeicher eingesetzt.",
+ "closeWhenEmpty": "Steuert, ob beim Schließen des letzten Editors auch das Fenster geschlossen werden soll. Diese Einstellung wird nur auf Fenster angewendet, die keine Ordner anzeigen.",
+ "confirmSaveUntitledWorkspace": "Steuert, ob in einem Bestätigungsdialogfeld die Aufforderung angezeigt wird, einen geöffneten unbenannten Arbeitsbereich im Fenster zu speichern oder zu verwerfen, wenn Sie zu einem anderen Arbeitsbereich wechseln. Durch Deaktivieren des Bestätigungsdialogfelds, wird der unbenannte Arbeitsbereich immer verworfen.",
+ "controlsStyle": "Passen Sie die Darstellung der Fenstersteuerelemente so an, dass sie vom Betriebssystem nativ, benutzerdefiniert gezeichnet oder ausgeblendet werden. Änderungen werden erst nach einem Neustart angewendet.",
+ "dialogStyle": "Passen Sie das Erscheinungsbild von Dialogen so an – sie können wählen, ob sie das vom Betriebssystem vorgegebene oder ein benutzerdefiniertes Aussehen haben sollen.",
"enableCrashReporterDeprecated": "Wenn diese Einstellung FALSE ist, werden unabhängig vom Wert der neuen Einstellung keine Telemetriedaten gesendet. Veraltet, weil sie in der {0}-Einstellung kombiniert wird.",
- "experimentalUseSandbox": "Experimentell: Wenn diese Option aktiviert ist, wird für das Fenster der Sandboxmodus über die Electron-API aktiviert.",
"keyboardConfigurationTitle": "Tastatur",
"mergeAllWindowTabs": "Alle Fenster zusammenführen",
"miExit": "&&Beenden",
"moveWindowTabToNewWindow": "Fensterregisterkarte in neues Fenster verschieben",
- "newTab": "Registerkarte \"Neues Fenster\"",
- "newWindowDimensions": "Steuert die Abmessung beim Öffnen eines neuen Fensters, wenn mindestens ein Fenster bereits geöffnet ist. Beachten Sie, dass diese Einstellung sich nicht auf das erste geöffnete Fenster auswirkt. Für das erste Fenster werden immer die Größe und Position wiederhergestellt, die vor dem Schließen eingestellt waren.",
+ "newTab": "Neue Fensterregisterkarte",
+ "newWindowDimensions": "Steuert die Abmessungen beim Öffnen eines neuen Fensters, wenn bereits mindestens ein Fenster geöffnet ist. Beachten Sie, dass sich diese Einstellung nicht auf das zuerst geöffnete Fenster auswirkt. Das erste Fenster wird immer mit der Größe und Position wiederhergestellt, mit der es geschlossen wurde.",
"openWithoutArgumentsInNewWindow": "Steuert, ob ein neues leeres Fenster geöffnet werden soll, wenn eine zweite Instanz ohne Argumente gestartet wird, oder ob die letzte ausgeführte Instanz den Fokus erhalten soll.\r\nBeachten Sie, dass diese Einstellung in manchen Fällen möglicherweise ignoriert wird (z.B. wenn die Befehlszeilenoption `--new-window` oder `--reuse-window` verwendet wird). ",
"restoreFullscreen": "Steuert, ob ein Fenster im Vollbildmodus wiederhergestellt wird, wenn es im Vollbildmodus beendet wurde.",
- "restoreWindows": "Steuert, wie Fenster nach dem ersten Start erneut geöffnet werden. Diese Einstellung hat keine Auswirkungen, wenn die Anwendung bereits ausgeführt wird.",
+ "restoreWindows": "Steuert, wie Fenster und Editoren darin beim Öffnen wiederhergestellt werden.",
+ "security.promptForLocalFileProtocolHandling": "Wenn diese Option aktiviert ist, fordert ein Dialogfeld immer eine Bestätigung an, wenn eine lokale Datei oder ein lokaler Arbeitsbereich über einen Protokollhandler geöffnet wird.",
+ "security.promptForRemoteFileProtocolHandling": "Wenn diese Option aktiviert ist, fordert ein Dialogfeld immer eine Bestätigung an, wenn eine Remotedatei oder ein Remotearbeitsbereich über einen Protokollhandler geöffnet wird.",
"showNextWindowTab": "Nächste Fensterregisterkarte anzeigen",
"showPreviousTab": "Vorherige Fensterregisterkarte anzeigen",
"telemetry.enableCrashReporting": "Aktivieren Sie die Erfassung von Absturzberichten. Dies hilft uns, die Stabilität zu verbessern. \r\nDiese Option erfordert einen Neustart, um wirksam zu werden.",
"telemetryConfigurationTitle": "Telemetrie",
- "titleBarStyle": "Passen Sie die Darstellung der Fenstertitelleiste an. Unter Linux und Windows wirkt sich diese Einstellung auch auf die Darstellung des Anwendungs- und Kontextmenüs aus. Änderungen werden erst nach einem Neustart angewendet.",
- "toggleWindowTabsBar": "Fensterregisterkarten-Leiste umschalten",
+ "titleBarStyle": "Passen Sie die Darstellung der Titelleiste des Fensters so an, dass sie entweder dem Betriebssystem entspricht oder benutzerdefiniert ist. Änderungen werden erst nach einem Neustart angewendet.",
+ "toggleWindowTabsBar": "Leiste mit Fensterregisterkarten umschalten",
"touchbar.enabled": "Aktiviert die macOS-Touchbar-Schaltflächen der Tastatur, sofern verfügbar.",
"touchbar.ignored": "Eine Menge von Bezeichnern für Einträge in der Touchleiste, die nicht angezeigt werden sollen (Beispiel: workbench.action.navigateBack).",
- "window.clickThroughInactive": "Ist dies aktiviert, wird beim Klicken auf ein inaktives Fenster das Fenster aktiviert, und das Element unter der Maus wird ausgelöst, wenn es angeklickt werden kann. Wenn es deaktiviert ist, wird durch Klicken auf eine beliebige Stelle in einem inaktiven Fenster nur das Fenster aktiviert, und Sie müssen das Element zusätzlich anklicken.",
- "window.doubleClickIconToClose": "Wenn Sie diese Option aktivieren, wird das Fenster beim Doppelklick auf das Anwendungssymbol geschlossen, und das Fenster kann nicht vom Symbol gezogen werden. Diese Einstellung hat nur Auswirkungen, wenn \"#window.titleBarStyle#\" auf \"custom\" festgelegt ist.",
- "window.nativeFullScreen": "Steuert, ob der native Vollbildmodus unter macOS verwendet werden soll. Deaktivieren Sie diese Option, damit macOS keinen neuen Bereich erstellt, wenn der Vollbildmodus aktiviert wird.",
- "window.nativeTabs": "Aktiviert macOS Sierra-Fensterregisterkarten. Beachten Sie, dass zum Übernehmen von Änderungen ein vollständiger Neustart erforderlich ist und durch ggf. konfigurierte native Registerkarten ein benutzerdefinierter Titelleistenstil deaktiviert wird.",
- "window.newWindowDimensions.default": "Öffnet neue Fenster in der Mitte des Bildschirms.",
- "window.newWindowDimensions.fullscreen": "Öffnet neue Fenster im Vollbildmodus.",
- "window.newWindowDimensions.inherit": "Öffnet neue Fenster mit den gleichen Abmessungen wie das letzte aktive Fenster.",
- "window.newWindowDimensions.maximized": "Öffnet neue Fenster maximiert.",
- "window.newWindowDimensions.offset": "Öffnen Sie neue Fenster mit derselben Dimension wie das letzte aktive Fenster mit einer Offset-Position.",
- "window.openWithoutArgumentsInNewWindow.off": "Fokus auf die zuletzt aktive ausgeführte Instanz legen.",
- "window.openWithoutArgumentsInNewWindow.on": "Neues leeres Fenster öffnen.",
- "window.reopenFolders.all": "Alle Fenster werden erneut geöffnet, sofern keine Ordner, Arbeitsbereiche oder Dateien geöffnet sind (z. B. über die Befehlszeile).",
- "window.reopenFolders.folders": "Alle Fenster mit geöffneten Ordnern oder Arbeitsbereichen werden erneut geöffnet, sofern keine Ordner, Arbeitsbereiche oder Dateien geöffnet werden (z. B. über die Befehlszeile).",
+ "window.border.color": "{0}: spezifische Farbe im Hex-, RGB-, RGBA-, HSL-, HSLA-Format",
+ "window.border.default": "{0}: Farbdesigneinstellungen beachten, Fallback auf Windows-Einstellungen",
+ "window.border.off": "{0}: Rahmenfarben deaktivieren",
+ "window.border.prefix": "Steuert die Rahmenfarbe des Fensters:",
+ "window.border.suffix": "Verwenden Sie {0}, um verschiedene Farben für aktive und inaktive Fenster festzulegen. Diese Einstellung wird ignoriert, wenn {1} auf {2} festgelegt ist.",
+ "window.border.system": "{0}: Nur Windows-Einstellungen beachten",
+ "window.clickThroughInactive": "Sofern aktiviert, wird bei einem Klick auf ein inaktives Fenster sowohl das Fenster aktiviert als auch das Element unter der Maus ausgelöst, wenn es angeklickt werden kann. Ist diese Option deaktiviert, wird sie nur durch Klicken auf eine beliebige Stelle in einem inaktiven Fenster aktiviert, und es ist ein zweiter Klick auf das Element erforderlich.",
+ "window.customTitleBarVisibility": "Anpassen, wann die benutzerdefinierte Titelleiste angezeigt werden soll. Die benutzerdefinierte Titelleiste kann ausgeblendet werden, wenn sie sich im Vollbildmodus mit „windowed“ befindet. Die benutzerdefinierte Titelleiste kann nur im Nicht-Vollbildmodus mit „never“ ausgeblendet werden, wenn {0} auf „nativ“ eingestellt ist.",
+ "window.customTitleBarVisibility.auto": "Ändert automatisch die Sichtbarkeit der benutzerdefinierten Titelleiste.",
+ "window.customTitleBarVisibility.never": "Benutzerdefinierte Titelleiste ausblenden, wenn „{0}“ auf „nativ“ festgelegt ist.",
+ "window.customTitleBarVisibility.windowed": "Benutzerdefinierte Titelleiste im Vollbildmodus ausblenden. Wenn nicht im Vollbildmodus, die Sichtbarkeit der benutzerdefinierten Titelleiste automatisch ändern.",
+ "window.doubleClickIconToClose": "Wenn diese Einstellung aktiviert ist, wird das Fenster geschlossen, wenn auf das Anwendungssymbol in der Titelleiste doppelt geklickt wird. Das Fenster kann nicht vom Symbol gezogen werden. Diese Einstellung ist nur wirksam, wenn {0} auf \"benutzerdefiniert\" festgelegt ist.",
+ "window.menuStyle": "Passen Sie den Stil des Kontextmenüs so an, dass er entweder dem Betriebssystem entspricht, benutzerdefiniert ist oder der in {0} definierte Stil der Titelleiste übernommen wird. Dies wirkt sich auch auf das Erscheinungsbild des Kontextmenüs aus. Änderungen werden erst nach einem Neustart angewendet.",
+ "window.menuStyle.custom": "Verwenden Sie das benutzerdefinierte Menü.",
+ "window.menuStyle.custom.mac": "Verwenden Sie das benutzerdefinierte Kontextmenü.",
+ "window.menuStyle.inherit": "Passt den Menüstil an den in {0} definierten Stil der Titelleiste an.",
+ "window.menuStyle.inherit.mac": "Passt den Stil des Kontextmenüs an den in {0} definierten Stil der Titelleiste an.",
+ "window.menuStyle.mac": "Passen Sie das Erscheinungsbild des Kontextmenüs so an, dass es entweder dem Betriebssystem entspricht, benutzerdefiniert ist oder der in {0} definierte Stil der Titelleiste übernommen wird.",
+ "window.menuStyle.native": "Verwenden Sie das native Menü. Dies wird ignoriert, wenn {0} auf {1} festgelegt ist.",
+ "window.menuStyle.native.mac": "Verwenden Sie das native Kontextmenü.",
+ "window.nativeFullScreen": "Steuert, ob unter macOS der native Vollbildmodus verwendet werden soll. Deaktivieren Sie diese Option, um zu verhindern, dass macOS beim Übergang in den Vollbildmodus einen neuen Bereich erstellt.",
+ "window.nativeTabs": "Aktiviert macOS-native Fensterregisterkarten. Beachten Sie, dass zur Übernahme der Änderungen ein vollständiger Neustart erforderlich ist, und dass native Registerkarten einen benutzerdefinierten Titelleistenstil deaktivieren (sofern konfiguriert).",
+ "window.newWindowDimensions.default": "Hiermit werden neue Fenster in der Mitte des Bildschirms geöffnet.",
+ "window.newWindowDimensions.fullscreen": "Hiermit werden neue Fenster im Vollbildmodus geöffnet.",
+ "window.newWindowDimensions.inherit": "Hiermit werden neue Fenster mit denselben Abmessungen wie das zuletzt aktive Fenster geöffnet.",
+ "window.newWindowDimensions.maximized": "Hiermit werden Fenster maximiert geöffnet.",
+ "window.newWindowDimensions.offset": "Hiermit werden neue Fenster mit denselben Abmessungen wie das zuletzt aktive Fenster an versetzter Stelle geöffnet.",
+ "window.openWithoutArgumentsInNewWindow.off": "Hiermit erhält die letzte aktive (ausgeführte) Instanz den Fokus.",
+ "window.openWithoutArgumentsInNewWindow.on": "Hiermit wird ein neues leeres Fenster geöffnet.",
+ "window.reopenFolders.all": "Alle Fenster werden erneut geöffnet, sofern keine Ordner, Arbeitsbereiche oder Dateien geöffnet sind (z. B. über die Befehlszeile). Wenn eine Datei geöffnet wird, ersetzt sie alle Editoren, die zuvor in einem Fenster geöffnet wurden.",
+ "window.reopenFolders.folders": "Alle Fenster mit geöffneten Ordnern oder Arbeitsbereichen werden erneut geöffnet, sofern keine Ordner, Arbeitsbereiche oder Dateien geöffnet werden (z. B. über die Befehlszeile). Wenn eine Datei geöffnet wird, ersetzt sie alle Editoren, die zuvor in einem Fenster geöffnet wurden.",
"window.reopenFolders.none": "Fenster nie erneut öffnen: Sofern kein Ordner oder Arbeitsbereich geöffnet wird (z. B. über die Befehlszeile), wird ein leeres Fenster angezeigt.",
- "window.reopenFolders.one": "Das zuletzt aktive Fenster wird erneut geöffnet, sofern keine Ordner, Arbeitsbereiche oder Dateien geöffnet werden (z. B. über die Befehlszeile).",
- "window.reopenFolders.preserve": "Hiermit werden alle Fenster immer erneut geöffnet. Wenn ein Ordner oder Arbeitsbereich (z. B. über die Befehlszeile) geöffnet wird, erfolgt die Öffnung in einem neuen Fenster, sofern der Ordner oder Arbeitsbereich nicht bereits offen ist. Dateien werden in einem der wiederhergestellten Fenster geöffnet.",
+ "window.reopenFolders.one": "Das zuletzt aktive Fenster wird erneut geöffnet, sofern keine Ordner, Arbeitsbereiche oder Dateien geöffnet werden (z. B. über die Befehlszeile). Wenn eine Datei geöffnet wird, ersetzt sie alle Editoren, die zuvor in einem Fenster geöffnet wurden.",
+ "window.reopenFolders.preserve": "Hiermit werden alle Fenster immer erneut geöffnet. Wenn ein Ordner oder Arbeitsbereich (z. B. über die Befehlszeile) geöffnet wird, erfolgt die Öffnung in einem neuen Fenster, sofern der Ordner oder Arbeitsbereich nicht bereits offen ist. Wenn Dateien geöffnet werden, werden sie in einem der wiederhergestellten Fenster zusammen mit Editoren geöffnet, die zuvor geöffnet wurden.",
"windowConfigurationTitle": "Fenster",
- "windowControlsOverlay": "Verwenden Sie von der Plattform bereitgestellte Fenstersteuerelemente anstelle unserer HTML-basierten Fenstersteuerelemente. Änderungen erfordern einen vollständigen Neustart, um übernommen zu werden.",
- "zoomLevel": "Passen Sie den Zoomfaktor des Fensters an. Die ursprüngliche Größe ist 0. Jede Inkrementierung nach oben (z. B. 1) oder unten (z. B. -1) stellt eine Vergrößerung bzw. Verkleinerung um 20 % dar. Sie können auch Dezimalwerte eingeben, um den Zoomfaktor genauer anzupassen."
+ "zoomLevel": "Passen Sie den Standardzoomfaktor für alle Fenster an. Jedes Inkrement über „0“ (z. B. „1“) oder darunter (z. B. „-1“) steht für das Vergrößern oder Verkleinern von „20 %“. Sie können auch Dezimalstellen eingeben, um den Zoomfaktor mit einer feineren Granularität anzupassen. Informationen zum Konfigurieren, ob die Befehle „Vergrößern“ und „Verkleinern“ den Zoomfaktor auf alle Fenster oder nur auf das aktive Fenster anwenden, finden Sie unter {0}.",
+ "zoomPerWindow": "Steuert, ob die Befehle „Vergrößern“ und „Verkleinern“ den Zoomfaktor auf alle Fenster oder nur auf das aktive Fenster anwenden. Informationen zum Konfigurieren eines Standardzoomfaktors für alle Fenster finden Sie {0} unter."
},
- "vs/workbench/electron-sandbox/desktop.main": {
- "join.closeStorage": "Speichern des UI-Status"
+ "vs/workbench/electron-browser/desktop.main": {
+ "join.closeStorage": "Benutzeroberflächenstatus wird gespeichert"
},
- "vs/workbench/electron-sandbox/parts/dialogs/dialogHandler": {
- "aboutDetail": "Version: {0}\r\nCommit: {1}\r\nDatum: {2}\r\nElectron: {3}\r\nChromium: {4}\r\nNode.js: {5}\r\nV8: {6}\r\nBetriebssystem: {7}",
- "cancelButton": "Abbrechen",
+ "vs/workbench/electron-browser/parts/dialogs/dialogHandler": {
"copy": "&&Kopieren",
- "okButton": "OK",
- "yesButton": "&&Ja"
+ "okButton": "OK"
},
- "vs/workbench/electron-sandbox/window": {
- "cancelButton": "&&Abbrechen",
- "closeWindowButtonLabel": "&&Fenster schließen",
- "closeWindowMessage": "Möchten Sie den Assistenten wirklich schließen?",
- "doNotAskAgain": "Nicht erneut fragen",
- "exitButtonLabel": "&&Beenden",
+ "vs/workbench/electron-browser/window": {
+ "appRootWarning.banner": "Dateien, die Sie im Installationsordner (\"{0}\") speichern, werden möglicherweise ohne Warnung zur Updatezeit ÜBERSCHRIEBEN oder IRREVERSIBEL GELÖSCHT.",
+ "configure": "Konfigurieren",
+ "downloadArmBuild": "Herunterladen",
"keychainWriteError": "Fehler beim Schreiben von Anmeldeinformationen in die Keychain. Fehler: „{0}“.",
"learnMore": "Weitere Informationen",
- "loaderCycle": "In den AMD-Modulen gibt es einen Abhängigkeitszyklus, der aufgelöst werden muss.",
"loginButton": "&&Anmelden",
+ "macoseolmessage": "{0} auf {1} erhält bald keine Updates mehr. Erwägen Sie ein Upgrade Ihrer macOS-Version.",
"password": "Kennwort",
"proxyAuthRequired": "Proxyauthentifizierung erforderlich",
"proxyDetail": "Für den Proxy \"{0}\" sind ein Benutzername und ein Kennwort erforderlich.",
- "quitButtonLabel": "&&Aufhören",
- "quitMessage": "Möchten Sie den Vorgang beenden?",
- "quitMessageMac": "Sind Sie sicher, dass Sie aufhören wollen?",
"rememberCredentials": "Anmeldeinformationen speichern",
+ "resolveShellEnvironment": "Shellumgebung wird aufgelöst ...",
+ "restart": "Neu starten",
"runningAsRoot": "Es wird nicht empfohlen, {0} als Root-Benutzer auszuführen.",
+ "runningTranslated": "Sie führen eine emulierte Version von \"{0}\" aus. Laden Sie die native arm64-Version von {0}-Build für Ihren Computer herunter, um eine bessere Leistung zu erzielen.",
+ "sharedProcessCrash": "Ein freigegebener Hintergrundprozess wurde unerwartet beendet. Starten Sie die Anwendung neu, um sie wiederherzustellen.",
+ "showArgvParseWarning": "Die Runtimeargumentdatei \"argv.json\" enthält Fehler. Korrigieren Sie sie, und führen Sie einen Neustart durch.",
+ "showArgvParseWarningAction": "Datei öffnen",
"shutdownErrorClose": "Ein unerwarteter Fehler hat das Schließen des Fensters verhindert.",
"shutdownErrorDetail": "Fehler: {0}",
"shutdownErrorLoad": "Unerwarteter Fehler beim Ändern des Arbeitsbereichs.",
@@ -4195,61 +5396,394 @@
"shutdownForceClose": "Trotzdem schließen",
"shutdownForceLoad": "Trotzdem ändern",
"shutdownForceQuit": "Trotzdem beenden",
- "shutdownForceReload": "Trotzdem neu laden",
+ "shutdownForceReload": "Trotzdem erneut laden",
"shutdownTitleClose": "Das Schließen des Fensters dauert etwas länger...",
"shutdownTitleLoad": "Das Ändern des Arbeitsbereichs dauert etwas länger...",
"shutdownTitleQuit": "Das Beenden der Anwendung dauert etwas länger...",
"shutdownTitleReload": "Das erneute Laden des Fensters dauert etwas länger...",
+ "status.windowZoom": "Fensterzoom",
"troubleshooting": "Leitfaden zur Problembehandlung",
"username": "Benutzername",
- "willShutdownDetail": "Die folgenden Vorgänge werden noch ausgeführt: \r\n{0}"
- },
- "vs/workbench/contrib/audioCues/browser/audioCueService": {
- "audioCues.lineHasBreakpoint.name": "Haltepunkt in der Zeile",
- "audioCues.lineHasError.name": "Fehler in der Zeile",
- "audioCues.lineHasFoldedArea.name": "Gefalteter Bereich in der Zeile",
- "audioCues.lineHasInlineSuggestion.name": "Inlinevorschlag in der Zeile",
- "audioCues.lineHasWarning.name": "Warnung in der Zeile",
- "audioCues.noInlayHints": "Keine Inlay-Hinweise in der Zeile",
- "audioCues.onDebugBreak.name": "Debugger auf Haltepunkt beendet"
+ "willShutdownDetail": "Die folgenden Vorgänge werden noch ausgeführt: \r\n{0}",
+ "zoomIn": "Vergrößern",
+ "zoomNumber": "Zoomfaktor: {0} ({1}%)",
+ "zoomOut": "Verkleinern",
+ "zoomReset": "Zurücksetzen",
+ "zoomResetLabel": "{0} ({1})",
+ "zoomSettings": "Einstellungen"
+ },
+ "vs/workbench/contrib/accessibility/browser/accessibilityConfiguration": {
+ "accessibility.debugWatchVariableAnnouncements": "Steuert, ob Variablenänderungen in der Debugüberwachungsansicht angekündigt werden sollen.",
+ "accessibility.hideAccessibleView": "Steuert, ob die barrierefreie Ansicht ausgeblendet ist.",
+ "accessibility.openChatEditedFiles": "Steuert, ob Dateien geöffnet werden sollen, wenn der Chat-Agent Bearbeitungen darauf angewendet hat.",
+ "accessibility.replEditor.readLastExecutedOutput": "Steuert, ob die Ausgabe einer Ausführung in der nativen REPL angekündigt wird.",
+ "accessibility.signalOptions.debouncePositionChanges": "Gibt an, ob Positionsänderungen entprellt werden sollen.",
+ "accessibility.signalOptions.delays.errorAtPosition.announcement": "Die Verzögerung in Millisekunden, bevor eine Ankündigung erfolgt, wenn ein Fehler an der Position vorliegt.",
+ "accessibility.signalOptions.delays.errorAtPosition.sound": "Die Verzögerung in Millisekunden, bevor ein Ton wiedergegeben wird, wenn ein Fehler an der Position vorliegt.",
+ "accessibility.signalOptions.delays.general.announcement": "Die Verzögerung in Millisekunden, bevor eine Ankündigung erfolgt.",
+ "accessibility.signalOptions.delays.general.sound": "Die Verzögerung in Millisekunden, bevor ein Ton wiedergegeben wird.",
+ "accessibility.signalOptions.delays.warningAtPosition.announcement": "Die Verzögerung in Millisekunden, bevor eine Ankündigung erfolgt, wenn eine Warnung an der Position vorliegt.",
+ "accessibility.signalOptions.delays.warningAtPosition.sound": "Die Verzögerung in Millisekunden, bevor ein Ton wiedergegeben wird, wenn eine Warnung an der Position vorliegt.",
+ "accessibility.signalOptions.volume": "Die Lautstärke der Sounds in Prozent (0-100).",
+ "accessibility.signals.chatEditModifiedFile": "Gibt beim Anzeigen einer Datei mit Änderungen aus Chatbearbeitungen einen Sound-/Audiohinweis wieder.",
+ "accessibility.signals.chatEditModifiedFile.sound": "Gibt einen Sound wieder, wenn eine Datei mit Änderungen aus Chatbearbeitungen angezeigt wird.",
+ "accessibility.signals.chatRequestSent": "Gibt ein Signal – Ton (Audiohinweis) und/oder Ankündigung (Warnung) – wieder, wenn eine Chatanfrage gestellt wird.",
+ "accessibility.signals.chatRequestSent.announcement": "Wird angesagt, wenn eine Chatanfrage gestellt wird.",
+ "accessibility.signals.chatRequestSent.sound": "Spielt einen Sound ab, wenn eine Chatanfrage gestellt wird.",
+ "accessibility.signals.chatResponseReceived": "Gibt einen Ton/Audiohinweis wieder, wenn die Antwort empfangen wurde.",
+ "accessibility.signals.chatResponseReceived.sound": "Gibt einen Ton wieder, wenn die Antwort empfangen wurde.",
+ "accessibility.signals.chatUserActionRequired": "Gibt ein Signal – Ton (Audiohinweis) und/oder Ankündigung (Benachrichtigung) – aus, wenn eine Benutzeraktion im Chat erforderlich ist.",
+ "accessibility.signals.chatUserActionRequired.announcement": "Kündigt an, wenn eine Benutzeraktion im Chat erforderlich ist – einschließlich Informationen zur Aktion und wie sie durchgeführt werden kann.",
+ "accessibility.signals.chatUserActionRequired.sound": "Spielt einen Ton ab, wenn eine Benutzeraktion im Chat erforderlich ist.",
+ "accessibility.signals.clear": "Gibt ein Signal – Ton (Audiohinweis) und/oder Ankündigung (Warnung) – wieder, wenn ein Feature gelöscht wird (z. B. Terminal, Debugging-Konsole oder Ausgabekanal).",
+ "accessibility.signals.clear.announcement": "Wird angesagt, wenn eine Funktion gelöscht wird.",
+ "accessibility.signals.clear.sound": "Gibt einen Sound wieder, wenn eine Funktion gelöscht wird.",
+ "accessibility.signals.codeActionApplied": "Gibt einen Sound-/Audiohinweis wieder, wenn die Codeaktion angewendet wurde.",
+ "accessibility.signals.codeActionApplied.sound": "Gibt einen Sound wieder, wenn die Codeaktion angewendet wurde.",
+ "accessibility.signals.codeActionTriggered": "Gibt einen Sound-/Audiohinweis wieder, wenn eine Codeaktion ausgelöst wurde.",
+ "accessibility.signals.codeActionTriggered.sound": "Gibt einen Sound wieder, wenn eine Codeaktion ausgelöst wurde.",
+ "accessibility.signals.diffLineDeleted": "Gibt einen Ton/Audiohinweis wieder, wenn der Fokus im Modus des barrierefreien des Diff-Viewers auf eine gelöschte Zeile oder auf die nächste/vorherige Änderung verschoben wird.",
+ "accessibility.signals.diffLineDeleted.sound": "Gibt einen Sound wieder, wenn der Fokus im Modus des barrierefreien des Diff-Viewers auf eine gelöschte Zeile oder auf die nächste/vorherige Änderung verschoben wird.",
+ "accessibility.signals.diffLineInserted": "Gibt einen Ton/Audiohinweis wieder, wenn der Fokus im Modus des barrierefreien des Diff-Viewers auf eine eingefügte Zeile oder auf die nächste/vorherige Änderung verschoben wird.",
+ "accessibility.signals.diffLineModified": "Gibt einen Ton/Audiohinweis wieder, wenn der Fokus im Modus des barrierefreien des Diff-Viewers auf eine geänderte Zeile oder auf die nächste/vorherige Änderung verschoben wird.",
+ "accessibility.signals.diffLineModified.sound": "Gibt einen Sound wieder, wenn der Fokus im barrierefreien Modus des Diff-Viewers auf eine geänderte Zeile oder auf die nächste/vorherige Änderung verschoben wird.",
+ "accessibility.signals.editsKept": "Gibt ein Signal – einen Ton (Audio-Hinweis) und/oder eine Ansage (Warnung) – aus, wenn Änderungen beibehalten werden.",
+ "accessibility.signals.editsKept.announcement": "Gibt an, wann Änderungen beibehalten werden.",
+ "accessibility.signals.editsKept.sound": "Gibt einen Ton aus, wenn Änderungen beibehalten werden.",
+ "accessibility.signals.editsUndone": "Gibt ein Signal – einen Ton (Audio-Hinweis) und/oder eine Ansage (Warnung) – aus, wenn Bearbeitungen rückgängig gemacht wurden.",
+ "accessibility.signals.editsUndone.announcement": "Gibt an, wann Änderungen rückgängig gemacht wurden.",
+ "accessibility.signals.editsUndone.sound": "Gibt einen Ton aus, wenn Bearbeitungen rückgängig gemacht wurden.",
+ "accessibility.signals.format": "Gibt ein Signal – Ton (Audiohinweis) und/oder Ankündigung (Warnung) – wieder, wenn eine Datei oder ein Notizbuch formatiert ist.",
+ "accessibility.signals.format.always": "Gibt den Ton immer wieder, wenn eine Datei formatiert wird. Dies gilt auch dann, wenn die Formatierung beim Speichern, Eingeben, Einfügen oder Ausführen einer Zelle festgelegt wird.",
+ "accessibility.signals.format.announcement": "Wird angesagt, wenn eine Datei oder ein Notebook formatiert wird.",
+ "accessibility.signals.format.announcement.always": "Gibt an, wenn eine Datei formatiert wird. Dies gilt auch dann, wenn die Formatierung beim Speichern, Eingeben, Einfügen oder Ausführen einer Zelle festgelegt wird.",
+ "accessibility.signals.format.announcement.never": "Wird nie angesagt.",
+ "accessibility.signals.format.announcement.userGesture": "Wird angesagt, wenn ein Benutzer eine Datei explizit formatiert.",
+ "accessibility.signals.format.never": "Gibt den Ton nie wieder.",
+ "accessibility.signals.format.sound": "Gibt einen Sound wieder, wenn eine Datei oder ein Notebook formatiert wird.",
+ "accessibility.signals.format.userGesture": "Gibt den Ton wieder, wenn ein Benutzer eine Datei explizit formatiert.",
+ "accessibility.signals.lineHasBreakpoint": "Gibt ein Signal – Ton (Audiohinweis) und/oder Ankündigung (Warnung) – wieder, wenn die aktive Leitung einen Haltepunkt aufweist.",
+ "accessibility.signals.lineHasBreakpoint.announcement": "Wird angesagt, wenn die aktive Zeile einen Haltepunkt aufweist.",
+ "accessibility.signals.lineHasBreakpoint.sound": "Gibt einen Sound wieder, wenn die aktive Zeile einen Haltepunkt aufweist.",
+ "accessibility.signals.lineHasError": "Gibt ein Signal – Ton (Audiohinweis) und/oder Ankündigung (Warnung) – wieder, wenn die aktive Leitung einen Fehler aufweist.",
+ "accessibility.signals.lineHasError.announcement": "Wird angesagt, wenn die aktive Zeile einen Fehler enthält.",
+ "accessibility.signals.lineHasError.sound": "Gibt einen Sound wieder, wenn die aktive Zeile einen Fehler aufweist.",
+ "accessibility.signals.lineHasFoldedArea": "Gibt ein Signal – Ton (Audiohinweis) und/oder Ankündigung (Warnung) – wieder, wenn die aktive Leitung über einen gefalteten Bereich verfügt, der aufgefaltet werden kann.",
+ "accessibility.signals.lineHasFoldedArea.announcement": "Wird angesagt, wenn die aktive Zeile einen gefalteten Bereich aufweist, der aufgeklappt werden kann.",
+ "accessibility.signals.lineHasFoldedArea.sound": "Gibt einen Sound wieder, wenn die aktive Linie einen gefalteten Bereich aufweist, der aufgeklappt werden kann.",
+ "accessibility.signals.lineHasInlineSuggestion": "Gibt einen Ton/Audiohinweis wieder, wenn die aktive Zeile einen Inline-Vorschlag aufweist.",
+ "accessibility.signals.lineHasInlineSuggestion.sound": "Gibt einen Sound wieder, wenn die aktive Zeile über einen Inlinevorschlag verfügt.",
+ "accessibility.signals.lineHasWarning": "Gibt ein Signal – Ton (Audiohinweis) und/oder Ankündigung (Warnung) – wieder, wenn die aktive Leitung eine Warnung aufweist.",
+ "accessibility.signals.lineHasWarning.announcement": "Wird angesagt, dass die aktive Zeile eine Warnung enthält.",
+ "accessibility.signals.lineHasWarning.sound": "Gibt einen Sound wieder, wenn die aktive Zeile eine Warnung aufweist.",
+ "accessibility.signals.nextEditSuggestion": "Gibt ein Signal wieder – Sound-/Audiohinweis und/oder Ankündigung (Warnung), wenn ein nächster Bearbeitungsvorschlag vorhanden ist.",
+ "accessibility.signals.nextEditSuggestion.announcement": "Kündigt an, wenn ein nächster Bearbeitungsvorschlag vorhanden ist.",
+ "accessibility.signals.nextEditSuggestion.sound": "Gibt einen Sound wieder, wenn ein nächster Bearbeitungsvorschlag vorhanden ist.",
+ "accessibility.signals.noInlayHints": "Gibt ein Signal – Ton (Audiosignal) und/oder Ankündigung (Warnung) – aus, wenn versucht wird, eine Zeile mit Inlay-Hinweisen zu lesen, die keine Inlay-Hinweise enthält.",
+ "accessibility.signals.noInlayHints.announcement": "Kündigt an, wenn versucht wird, eine Zeile mit Inlay-Hinweisen zu lesen, die keine Inlay-Hinweise enthält.",
+ "accessibility.signals.noInlayHints.sound": "Gibt einen Ton aus, wenn versucht wird, eine Zeile mit Inlay-Hinweisen zu lesen, die keine Inlay-Hinweise enthält.",
+ "accessibility.signals.notebookCellCompleted": "Gibt ein Signal – Ton (Audiohinweis) und/oder Ankündigung (Warnung) – wieder, wenn die Ausführung einer Notebookzelle erfolgreich abgeschlossen wurde.",
+ "accessibility.signals.notebookCellCompleted.announcement": "Wird angesagt, wenn die Ausführung einer Notebookzelle erfolgreich abgeschlossen wurde.",
+ "accessibility.signals.notebookCellCompleted.sound": "Gibt einen Sound wieder, wenn die Ausführung einer Notebookzelle erfolgreich abgeschlossen wurde.",
+ "accessibility.signals.notebookCellFailed": "Gibt ein Signal – Ton (Audiohinweis) und/oder Ankündigung (Warnung) – wieder, wenn die Ausführung einer Notebookzelle fehlschlägt.",
+ "accessibility.signals.notebookCellFailed.announcement": "Wird angesagt, wenn bei der Ausführung einer Notebookzelle ein Fehler auftritt.",
+ "accessibility.signals.notebookCellFailed.sound": "Gibt einen Sound wieder, wenn bei der Ausführung einer Notebookzelle ein Fehler auftritt.",
+ "accessibility.signals.onDebugBreak": "Gibt ein Signal – Ton (Audiohinweis) und/oder Ankündigung (Warnung) – wieder, wenn der Debugger bei einem Haltepunkt beendet wurde.",
+ "accessibility.signals.onDebugBreak.announcement": "Wird angesagt, wenn der Debugger an einem Haltepunkt angehalten wurde.",
+ "accessibility.signals.onDebugBreak.sound": "Gibt einen Sound wieder, wenn der Debugger an einem Haltepunkt angehalten wurde.",
+ "accessibility.signals.positionHasError": "Gibt ein Signal – Ton (Audiohinweis) und/oder Ankündigung (Warnung) – wieder, wenn die aktive Leitung eine Warnung aufweist.",
+ "accessibility.signals.positionHasError.announcement": "Wird angesagt, dass die aktive Zeile eine Warnung enthält.",
+ "accessibility.signals.positionHasError.sound": "Gibt einen Sound wieder, wenn die aktive Zeile eine Warnung aufweist.",
+ "accessibility.signals.positionHasWarning": "Gibt ein Signal – Ton (Audiohinweis) und/oder Ankündigung (Warnung) – wieder, wenn die aktive Leitung eine Warnung aufweist.",
+ "accessibility.signals.positionHasWarning.announcement": "Wird angesagt, dass die aktive Zeile eine Warnung enthält.",
+ "accessibility.signals.positionHasWarning.sound": "Gibt einen Sound wieder, wenn die aktive Zeile eine Warnung aufweist.",
+ "accessibility.signals.progress": "Gibt ein Signal – Ton ( Audiohinweis) und/oder Ankündigung (Warnung) – auf einer Schleife wieder, während Fortschritt stattfindet.",
+ "accessibility.signals.progress.announcement": "Warnungen bei Schleife, während der Status ausgeführt wird.",
+ "accessibility.signals.progress.sound": "Gibt einen Sound in der Schleife wieder, während der Status ausgeführt wird.",
+ "accessibility.signals.save": "Gibt ein Signal – Ton (Audiohinweis) und/oder Ankündigung (Warnung) – wieder, wenn eine Datei gespeichert wird.",
+ "accessibility.signals.save.announcement": "Wird angesagt, wenn eine Datei gespeichert wird.",
+ "accessibility.signals.save.announcement.always": "Wird angesagt, wenn eine Datei gespeichert wird, auch bei automatischer Speicherung.",
+ "accessibility.signals.save.announcement.never": "Gibt die Ankündigung nie wieder.",
+ "accessibility.signals.save.announcement.userGesture": "Wird angesagt, wenn ein Benutzer eine Datei explizit speichert.",
+ "accessibility.signals.save.sound": "Gibt beim Speichern einer Datei einen Sound wieder.",
+ "accessibility.signals.save.sound.always": "Gibt den Ton wieder, wenn eine Datei gespeichert wird. Dies gilt auch für automatisches Speichern.",
+ "accessibility.signals.save.sound.never": "Gibt den Ton nie wieder.",
+ "accessibility.signals.save.sound.userGesture": "Gibt den Ton wieder, wenn ein Benutzer eine Datei explizit speichert.",
+ "accessibility.signals.sound": "Gibt einen Sound wieder, wenn der Fokus im barrierefreien Modus des Diff-Viewers auf eine eingefügte Zeile oder auf die nächste/vorherige Änderung verschoben wird.",
+ "accessibility.signals.taskCompleted": "Gibt ein Signal – Ton (Audiohinweis) und/oder Ankündigung (Warnung) – wieder, wenn eine Aufgabe abgeschlossen ist.",
+ "accessibility.signals.taskCompleted.announcement": "Wird angesagt, wenn eine Aufgabe abgeschlossen ist.",
+ "accessibility.signals.taskCompleted.sound": "Gibt einen Sound wieder, wenn eine Aufgabe abgeschlossen ist.",
+ "accessibility.signals.taskFailed": "Gibt ein Signal – Ton (Audiohinweis) und/oder Ankündigung (Warnung) – wieder, wenn eine Aufgabe fehlschlägt (Exitcode ungleich 0).",
+ "accessibility.signals.taskFailed.announcement": "Wird angesagt, wenn ein Task fehlschlägt (Exitcode ungleich 0).",
+ "accessibility.signals.taskFailed.sound": "Gibt einen Sound wieder, wenn eine Aufgabe fehlschlägt (Exitcode ungleich Null).",
+ "accessibility.signals.terminalBell": "Gibt ein Signal – Ton (Audiohinweis) und/oder Ankündigung (Warnung) – wieder, wenn die Terminalglocke klingelt.",
+ "accessibility.signals.terminalBell.announcement": "Wird angesagt, wenn die Terminalglocke klingelt.",
+ "accessibility.signals.terminalBell.sound": "Gibt einen Sound wieder, wenn die Terminalglocke klingelt.",
+ "accessibility.signals.terminalCommandFailed": "Gibt ein Signal – Ton (Audiohinweis) und/oder Ankündigung (Warnung) – wieder, wenn ein Terminalbefehl fehlschlägt (Exitcode ungleich 0) oder wenn ein Befehl mit einem solchen Exitcode in der barrierefreien Ansicht navigiert wird.",
+ "accessibility.signals.terminalCommandFailed.announcement": "Wird angesagt, wenn ein Terminalbefehl fehlschlägt (Exitcode ungleich 0) oder wenn ein Befehl mit einem solchen Exitcode in der barrierefreien Ansicht navigiert wird.",
+ "accessibility.signals.terminalCommandFailed.sound": "Gibt einen Sound wieder, wenn ein Terminalbefehl fehlschlägt (Exitcode ungleich 0) oder wenn ein Befehl mit einem solchen Exitcode in der barrierefreien Ansicht navigiert wird.",
+ "accessibility.signals.terminalCommandSucceeded": "Gibt ein Signal – Ton (Audiohinweis) und/oder Ankündigung (Warnung) – wieder, wenn ein Terminalbefehl erfolgreich ist (Exitcode ungleich 0) oder wenn ein Befehl mit einem solchen Exitcode in der barrierefreien Ansicht navigiert wird.",
+ "accessibility.signals.terminalCommandSucceeded.announcement": "Wird angesagt, wenn ein Terminalbefehl erfolgreich ist (Exitcode ungleich 0) oder wenn ein Befehl mit einem solchen Exitcode in der barrierefreien Ansicht navigiert wird.",
+ "accessibility.signals.terminalCommandSucceeded.sound": "Gibt einen Sound wieder, wenn ein Terminalbefehl erfolgreich ist (Exitcode ungleich 0) oder wenn ein Befehl mit einem solchen Exitcode in der barrierefreien Ansicht navigiert wird.",
+ "accessibility.signals.terminalQuickFix": "Gibt ein Signal – Ton (Audiohinweis) und/oder Ankündigung (Warnung) – wieder, wenn Terminal-Problembehandlungen verfügbar sind.",
+ "accessibility.signals.terminalQuickFix.announcement": "Wird angesagt, wenn schnelle Terminal-Problembehebungen verfügbar sind.",
+ "accessibility.signals.terminalQuickFix.sound": "Gibt einen Sound wieder, wenn schnelle Terminal-Problembehebungen verfügbar sind.",
+ "accessibility.signals.voiceRecordingStarted": "Gibt einen Ton/Audiohinweis wieder, wenn die Sprachaufzeichnung gestartet wurde.",
+ "accessibility.signals.voiceRecordingStarted.sound": "Gibt einen Sound wieder, wenn die Sprachaufzeichnung gestartet wurde.",
+ "accessibility.signals.voiceRecordingStopped": "Gibt einen Ton/Audiohinweis wieder, wenn die Sprachaufzeichnung beendet wurde.",
+ "accessibility.signals.voiceRecordingStopped.sound": "Gibt einen Sound wieder, wenn die Sprachaufzeichnung beendet wurde.",
+ "accessibility.underlineLinks": "Steuert, ob Links in der Workbench unterstrichen werden sollen.",
+ "accessibility.verboseChatProgressUpdates": "Steuert, ob ausführliche Statusmeldungen während einer Chatanfrage angezeigt werden, einschließlich Informationen wie der durchsuchte Text für mit X Ergebnissen, erstellte Datei oder gelesene Datei .",
+ "accessibility.voice.autoSynthesize.off": "Deaktivieren Sie das Feature.",
+ "accessibility.voice.autoSynthesize.on": "Aktivieren Sie das Feature. Wenn eine Sprachausgabe aktiviert ist, beachten Sie, dass dadurch Aria-Updates deaktiviert werden.",
+ "accessibility.windowTitleOptimized": "Steuert die {0}-Optimierung für Sprachausgaben im Sprachausgabemodus. Wenn diese Option aktiviert ist, wird {1} am Ende des Fenstertitels angefügt.",
+ "accessibilityConfigurationTitle": "Barrierefreiheit",
+ "announcement.enabled.auto": "Ansagen aktivieren, wird nur im für die Sprachausgabe optimierten Modus wiedergegeben.",
+ "announcement.enabled.off": "Ansagen deaktivieren.",
+ "autoSynthesize": "Gibt an, ob eine Textantwort automatisch laut vorgelesen werden soll, wenn Sprache als Eingabe verwendet wurde. Beispielsweise wird in einer Chatsitzung automatisch eine Antwort synthetisiert, wenn Sprache als Chatanfrage verwendet wurde.",
+ "dimUnfocusedEnabled": "Gibt an, ob Editoren und Terminals ohne Fokus abgeblendet werden sollen, um zu verdeutlichen, wohin Eingaben geleitet werden. Dies funktioniert bei den meisten Editoren, ausgenommen bei solchen, die iFrames verwenden (z. B. Notebooks und Webansichten-Editoren mit Erweiterungen).",
+ "dimUnfocusedOpacity": "Der anteilige Wert für die Deckkraft (0,2 bis 1,0), der für Editoren und Terminals ohne Fokus verwendet wird. Dieser wird nur angewendet, wenn \"{0}\" aktiviert ist.",
+ "replEditor.autoFocusAppendedCell": "Steuern Sie, ob der Fokus automatisch an die REPL gesendet werden soll, wenn Code ausgeführt wird.",
+ "sound.enabled.auto": "Sound aktivieren, wenn eine Sprachausgabe angefügt ist.",
+ "sound.enabled.autoWindow": "Sound aktivieren, wenn eine Sprachausgabe angefügt ist.",
+ "sound.enabled.off": "Sound deaktivieren",
+ "sound.enabled.on": "Sound aktivieren",
+ "speechLanguage.auto": "Automatisch (Anzeigesprache verwenden)",
+ "terminal.integrated.accessibleView.closeOnKeyPress": "Schließen Sie bei gedrückter Taste die barrierefreie Ansicht, und fokussieren Sie das Element, aus dem es aufgerufen wurde.",
+ "verbosity.chat.description": "Gibt Informationen über den Zugriff auf das Hilfemenü für den Chat an, wenn die Chateingabe den Fokus aufweist.",
+ "verbosity.comments": "Stellt Informationen zu Aktionen bereit, die im Kommentarwidget oder in einer Datei ausgeführt werden können, die Kommentare enthält.",
+ "verbosity.debug": "Geben Sie Informationen dazu an, wie Sie auf das Hilfedialogfeld für die Barrierefreiheit der Debugkonsole zugreifen, wenn die Debugkonsole oder das Ausführungs- und Debug-Viewlet auf das Problem konzentriert sind. Beachten Sie, dass ein erneutes Laden des Fensters erforderlich ist, damit dies wirksam wird.",
+ "verbosity.diffEditor.description": "Gibt Informationen über die Navigation in Änderungen im Diff-Editor an, wenn dieser den Fokus aufweist.",
+ "verbosity.diffEditorActive": "Geben Sie an, wann ein Diff-Editor zum aktiven Editor wird.",
+ "verbosity.emptyEditorHint": "Stellt Informationen zu relevanten Aktionen in einem leeren Text-Editor bereit.",
+ "verbosity.hover": "Geben Sie Informationen dazu an, wie Sie das Hoverelement in einer barrierefreien Ansicht öffnen.",
+ "verbosity.inlineCompletions.description": "Geben Sie Informationen dazu an, wie Sie auf das Inline-Vervollständigungs-Hoverelement und die barrierefreie Ansicht zugreifen.",
+ "verbosity.interactiveEditor.description": "Gibt Informationen über den Zugriff auf das Hilfemenü für Barrierefreiheit beim Inline-Editor-Chat sowie Benachrichtigungen mit Hinweisen zur Verwendung des Features an, wenn der Fokus auf der Eingabe liegt.",
+ "verbosity.keybindingsEditor.description": "Gibt Informationen über das Ändern einer Tastenzuordnung im Editor für Tastenzuordnungen an, wenn der Fokus auf einer Zeile liegt.",
+ "verbosity.notebook": "Geben Sie Informationen dazu an, wie Der Fokus auf den Zellencontainer oder den inneren Editor gelegt wird, wenn eine Notebookzelle fokussiert ist.",
+ "verbosity.notification": "Geben Sie Informationen zum Öffnen der Benachrichtigung in einer barrierefreien Ansicht an.",
+ "verbosity.replEditor.description": "Geben Sie Informationen zum Zugreifen auf das Hilfemenü des REPL-Editors für Barrierefreiheit an, wenn der REPL-Editor fokussiert ist.",
+ "verbosity.scm": "Geben Sie Informationen dazu an, wie Sie auf das Hilfemenü für die Barrierefreiheit der Quellcodeverwaltung zugreifen, wenn die Eingabe fokussiert ist.",
+ "verbosity.terminal.description": "Gibt Informationen über den Zugriff auf das Hilfemenü für Barrierefreiheit im Terminal an, wenn das Terminal den Fokus aufweist.",
+ "verbosity.terminalChatOutput.description": "Geben Sie Informationen dazu an, wie Sie die Chat-Terminalausgabe in der barrierefreien Ansicht öffnen.",
+ "verbosity.walkthrough": "Geben Sie Informationen dazu an, wie Sie die exemplarische Vorgehensweise in einer barrierefreien Ansicht öffnen.",
+ "voice.ignoreCodeBlocks": "Gibt an, ob Codeausschnitte bei der Text-zu-Sprache-Nachbildung ignoriert werden sollen.",
+ "voice.speechLanguage": "Die Sprache, die von der Spracherkennung und Sprachsynthese verwendet werden soll. Wählen Sie „Auto“ aus, um nach Möglichkeit die konfigurierte Anzeigesprache zu verwenden. Beachten Sie, dass möglicherweise nicht alle Anzeigesprachen von der Spracherkennung und den Synthetisierern unterstützt werden.",
+ "voice.speechTimeout": "Die Dauer in Millisekunden, die die Spracherkennung aktiv bleibt, nachdem Sie das Sprechen beendet haben. In einer Chatsitzung wird der transkribierte Text beispielsweise automatisch übermittelt, nachdem das Timeout erreicht wurde. Legen Sie diese Einstellung auf „0“ fest, um dieses Feature zu deaktivieren."
+ },
+ "vs/workbench/contrib/accessibility/browser/accessibilityStatus": {
+ "screenReaderDetected": "Für Sprachausgabe optimiert",
+ "screenReaderDetectedExplanation.answerLearnMore": "Weitere Informationen",
+ "screenReaderDetectedExplanation.answerNo": "Nein",
+ "screenReaderDetectedExplanation.answerYes": "Ja",
+ "screenReaderDetectedExplanation.question": "Es wurde eine Sprachausgabenutzung erkannt. Möchten Sie {0} aktivieren, um den Editor für die Sprachausgabenutzung zu optimieren?",
+ "status.editor.screenReaderMode": "Sprachausgabemodus"
+ },
+ "vs/workbench/contrib/accessibility/browser/accessibleView": {
+ "accessibility-help": "Hilfe zur Barrierefreiheit",
+ "accessibility-help-hint": "Hilfe zur Barrierefreiheit, {0}",
+ "accessible-view": "Barrierefreie Ansicht",
+ "accessible-view-hint": "Barrierefreie Ansicht, {0}",
+ "accessibleHelpToolbar": "Hilfe zur Barrierefreiheit",
+ "accessibleViewNextPreviousHint": "Zeigt das nächste Element{0} oder vorherige Element an{1}.",
+ "accessibleViewSymbolQuickPickPlaceholder": "Text für Symbolsuche eingeben",
+ "accessibleViewSymbolQuickPickTitle": "Zu Symbol in barrierefreier Ansicht wechseln",
+ "accessibleViewToolbar": "Barrierefreie Ansicht",
+ "acessibleViewDisableHint": "\r\nDeaktivieren Sie die Ausführlichkeit der Barrierefreiheit für dieses Feature{0}.",
+ "acessibleViewHint": "Überprüfen Sie dies in der barrierefreien Ansicht mit {0}.",
+ "acessibleViewHintNoKbEither": "Überprüfen Sie dies in der barrierefreien Ansicht über den Befehl \"Barrierefreie Ansicht öffnen\", der zurzeit nicht über eine Tastenzuordnung ausgelöst werden kann.",
+ "ariaAccessibleViewActions": "Erkunden Sie Aktionen wie das Deaktivieren dieses Hinweises (UMSCHALT+TAB).",
+ "ariaAccessibleViewActionsBottom": "Erkunden Sie Aktionen wie das Deaktivieren dieses Hinweises (UMSCHALT+TAB), verwenden Sie ESC, um dieses Dialogfeld zu verlassen.",
+ "configureKb": "\r\nKonfigurieren Sie Tastenzuordnungen für Befehle, die keine haben{0}.",
+ "configureKbAssigned": "\r\nKonfigurieren Sie Tastenzuordnungen für Befehle, die bereits über Zuweisungen ({0}) verfügen.",
+ "disableAccessibilityHelp": "{0} Ausführlichkeit der Barrierefreiheit ist jetzt deaktiviert.",
+ "exit": "\r\nDieses Dialogfeld beenden (ESC).",
+ "goToSymbolHint": "Zu einem Symbol wechseln{0}.",
+ "insertAtCursor": " – Fügen Sie den Codeblock am Cursor ein{0}.",
+ "insertIntoNewFile": " – Fügen Sie den Codeblock in eine neue Datei ein{0}.",
+ "intro": "In der barrierefreien Ansicht haben Sie folgende Möglichkeiten:\r\n",
+ "keybindings": "Tastenzuordnungen konfigurieren",
+ "openDoc": "\r\nÖffnet ein Browserfenster mit weiteren Informationen zur Barrierefreiheit{0}.",
+ "runInTerminal": " – Führen Sie den Codeblock im Terminal aus{0}.\r\n",
+ "selectKeybinding": "Wählen Sie eine Befehls-ID aus, um eine Tastenzuordnung dafür zu konfigurieren.",
+ "symbolLabel": "({0}) {1}",
+ "symbolLabelAria": "({0}) {1}",
+ "toolbar": "Zur Symbolleiste navigieren (UMSCHALT+TAB)."
+ },
+ "vs/workbench/contrib/accessibility/browser/accessibleViewActions": {
+ "editor.action.accessibilityHelp": "Hilfe zur Barrierefreiheit öffnen",
+ "editor.action.accessibilityHelpConfigureAssignedKeybindings": "Hilfe zur Barrierefreiheit beim Konfigurieren zugewiesener Tastenzuordnungen",
+ "editor.action.accessibilityHelpConfigureUnassignedKeybindings": "Hilfe zur Barrierefreiheit beim Konfigurieren nicht zugewiesener Tastenzuordnungen",
+ "editor.action.accessibilityHelpOpenHelpLink": "Hilfe zum Öffnen des Hilfelinks für Barrierefreiheit",
+ "editor.action.accessibleView": "Barrierefreie Ansicht öffnen",
+ "editor.action.accessibleViewAcceptInlineCompletionAction": "Inlinevervollständigung akzeptieren",
+ "editor.action.accessibleViewDisableHint": "Hinweis zur barrierefreien Ansicht",
+ "editor.action.accessibleViewGoToSymbol": "Zu Symbol in barrierefreier Ansicht wechseln",
+ "editor.action.accessibleViewNext": "Nächstes Element in barrierefreier Ansicht anzeigen",
+ "editor.action.accessibleViewNextCodeBlock": "Barrierefreie Ansicht: Nächster Codeblock",
+ "editor.action.accessibleViewPrevious": "Vorheriges Element in barrierefreier Ansicht anzeigen",
+ "editor.action.accessibleViewPreviousCodeBlock": "Barrierefreie Ansicht: Vorheriger Codeblock"
+ },
+ "vs/workbench/contrib/accessibilitySignals/browser/commands": {
+ "accessibility.announcement.help": "Hilfe: Auflisten von Signalankündigungen",
+ "accessibility.announcement.help.description": "Alle Barrierefreiheitsankündigungen, Warnungen und Braille-Nachrichten auflisten und deren Einstellungen konfigurieren",
+ "accessibility.sound.help.description": "Alle Barrierefreiheitssounds, Geräusche oder Audiohinweise auflisten und deren Einstellungen konfigurieren",
+ "announcement.help.placeholder": "Zu konfigurierende Ankündigung auswählen",
+ "announcement.help.placeholder.disabled": "Die Sprachausgabe ist nicht aktiv, Ankündigungen sind standardmäßig deaktiviert.",
+ "announcement.help.settings": "Ankündigung konfigurieren",
+ "signals.sound.help": "Hilfe: Auflisten von Signaltönen",
+ "sounds.help.placeholder": "Wählen Sie einen Sound aus, der wiedergegeben und konfiguriert werden soll.",
+ "sounds.help.settings": "Sound konfigurieren"
+ },
+ "vs/workbench/contrib/accessibilitySignals/browser/openDiffEditorAnnouncement": {
+ "openDiffEditorAnnouncement": "Diff-Editor"
+ },
+ "vs/workbench/contrib/accountEntitlements/browser/accountsEntitlements.contribution": {
+ "workbench.accounts.showEntitlements": "When enabled, available entitlements for the account will be shown in the accounts menu."
},
"vs/workbench/contrib/audioCues/browser/audioCues.contribution": {
+ "audioCues.chatRequestSent": "Spielt einen Sound ab, wenn eine Chatanfrage gestellt wird.",
+ "audioCues.chatResponsePending": "Spielt in einer Schleife einen Sound ab, solange die Antwort aussteht.",
+ "audioCues.chatResponseReceived": "Spielt in einer Schleife einen Sound ab, solange die Antwort empfangen wird.",
+ "audioCues.clear": "Gibt einen Ton wieder, wenn ein Feature gelöscht wird (z. B. Terminal, Debugging-Konsole oder Ausgabekanal). Wenn dies deaktiviert ist, meldet eine ARIA-Warnung „Gelöscht“.",
+ "audioCues.debouncePositionChanges": "Gibt an, ob Positionsänderungen entprellt werden sollen.",
+ "audioCues.diffLineDeleted": "Gibt einen Sound wieder, wenn der Fokus im barrierefreien Modus des Diff-Viewers auf eine gelöschte Zeile oder auf die nächste/vorherige Änderung verschoben wird.",
+ "audioCues.diffLineInserted": "Gibt einen Sound wieder, wenn der Fokus im barrierefreien Modus des Diff-Viewers auf eine eingefügte Zeile oder auf die nächste/vorherige Änderung verschoben wird.",
+ "audioCues.diffLineModified": "Gibt einen Sound wieder, wenn der Fokus im barrierefreien Modus des Diff-Viewers auf eine geänderte Zeile oder auf die nächste/vorherige Änderung verschoben wird.",
"audioCues.enabled.auto": "Aktivieren Sie Audiohinweise, wenn eine Sprachausgabe angefügt ist.",
"audioCues.enabled.off": "Deaktivieren Sie Audiohinweise.",
"audioCues.enabled.on": "Aktivieren Sie Audiohinweise.",
+ "audioCues.format": "Gibt einen Sound wieder, wenn eine Datei oder ein Notebook formatiert wird. Informationen finden Sie auch unter {0}.",
+ "audioCues.format.always": "Gibt den Audiohinweis immer wieder, wenn eine Datei formatiert wird. Dies gilt auch dann, wenn die Formatierung beim Speichern, Eingeben, Einfügen oder Ausführen einer Zelle festgelegt wird.",
+ "audioCues.format.never": "Gibt den Audiohinweis niemals wieder.",
+ "audioCues.format.userGesture": "Gibt den Audiohinweis wieder, wenn ein*e Benutzer*in eine Datei explizit formatiert.",
"audioCues.lineHasBreakpoint": "Gibt einen Sound wieder, wenn die aktive Zeile einen Haltepunkt aufweist.",
"audioCues.lineHasError": "Gibt einen Sound wieder, wenn die aktive Zeile einen Fehler aufweist.",
"audioCues.lineHasFoldedArea": "Gibt einen Sound wieder, wenn die aktive Linie einen gefalteten Bereich aufweist, der aufgeklappt werden kann.",
"audioCues.lineHasInlineSuggestion": "Gibt einen Sound wieder, wenn die aktive Zeile über einen Inlinevorschlag verfügt.",
"audioCues.lineHasWarning": "Gibt einen Sound wieder, wenn die aktive Zeile eine Warnung aufweist.",
"audioCues.noInlayHints": "Gibt einen Ton aus, wenn versucht wird, eine Zeile mit Einspielhinweisen zu lesen, die keine Einspielhinweise enthalten.",
+ "audioCues.notebookCellCompleted": "Gibt einen Sound wieder, wenn die Ausführung einer Notebookzelle erfolgreich abgeschlossen wurde.",
+ "audioCues.notebookCellFailed": "Gibt einen Sound wieder, wenn bei der Ausführung einer Notebookzelle ein Fehler auftritt.",
"audioCues.onDebugBreak": "Gibt einen Sound wieder, wenn der Debugger an einem Haltepunkt angehalten wurde.",
+ "audioCues.save": "Gibt beim Speichern einer Datei einen Sound wieder. Informationen finden Sie auch unter {0}.",
+ "audioCues.save.always": "Gibt den Audiohinweis wieder, wenn eine Datei gespeichert wird. Dies gilt auch für automatisches Speichern.",
+ "audioCues.save.never": "Gibt den Audiohinweis niemals wieder.",
+ "audioCues.save.userGesture": "Gibt den Audiohinweis wieder, wenn ein*e Benutzer*in eine Datei explizit speichert.",
+ "audioCues.taskCompleted": "Gibt einen Sound wieder, wenn eine Aufgabe abgeschlossen ist.",
+ "audioCues.taskFailed": "Gibt einen Sound wieder, wenn eine Aufgabe fehlschlägt (Exitcode ungleich Null).",
+ "audioCues.terminalCommandFailed": "Gibt einen Sound wieder, wenn ein Terminalbefehl fehlschlägt (Exitcode ungleich Null).",
+ "audioCues.terminalQuickFix": "Gibt einen Sound wieder, wenn schnelle Terminal-Problembehebungen verfügbar sind.",
"audioCues.volume": "Die Lautstärke der Audiohinweise in Prozent (0-100)."
},
"vs/workbench/contrib/audioCues/browser/commands": {
+ "accessibility.alert.help": "Hilfe: Warnungen auflisten",
+ "alerts.help.placeholder": "Status einer Warnung überprüfen und konfigurieren",
+ "alerts.help.settings": "Audiohinweis aktivieren/deaktivieren",
"audioCues.help": "Hilfe: Auflisten von Audiohinweisen",
"audioCues.help.placeholder": "Audiohinweis für Wiedergabe auswählen",
"audioCues.help.settings": "Audiohinweis aktivieren/deaktivieren",
"disabled": "Deaktiviert"
},
- "vs/workbench/contrib/backup/electron-sandbox/backupTracker": {
- "backupTrackerBackupFailed": "Die folgenden Editoren mit geänderten Inhalten konnten nicht am Sicherungsspeicherort gespeichert werden.",
- "backupTrackerConfirmFailed": "Die folgenden Editoren mit geänderten Inhalten konnten nicht gespeichert oder wiederhergestellt werden.",
- "backupErrorDetails": "Versuchen Sie zuerst, die ungespeicherten Editor-Fenster zu speichern oder zurückzusetzen, und versuchen Sie es dann erneut.",
- "ok": "OK",
- "backupBeforeShutdown": "Es wird darauf gewartet, dass geänderte Editoren gesichert werden...",
- "saveBeforeShutdown": "Es wird darauf gewartet, dass geänderte Editoren gespeichert werden...",
- "revertBeforeShutdown": "Es wird darauf gewartet, dass geänderte Editoren wiederhergestellt werden..."
+ "vs/workbench/contrib/authentication/browser/actions/manageAccountPreferencesForExtensionAction": {
+ "accounts": "Konten",
+ "currentAccount": "Aktuelles Konto",
+ "manageAccountPreferenceForExtension": "Einstellungen für Erweiterungskonto verwalten ...",
+ "noAccountUsage": "Diese Erweiterung hat noch keine Konten verwendet.",
+ "noAccounts": "Von dieser Erweiterung werden derzeit keine Konten verwendet.",
+ "pickAProviderTitle": "Einstellungen für Erweiterungskonto verwalten",
+ "placeholder v2": "Kontoeinstellungen für {0} für {1} verwalten ...",
+ "selectExtension": "Wählen Sie eine Erweiterung aus, für die Kontoeinstellungen verwaltet werden sollen.",
+ "selectProvider": "Auswählen eines Authentifizierungsanbieters zum Verwalten von Kontoeinstellungen für",
+ "title": "„{0}“ Kontoeinstellungen für diesen Arbeitsbereich",
+ "use new account": "Neues Konto verwenden..."
+ },
+ "vs/workbench/contrib/authentication/browser/actions/manageAccountPreferencesForMcpServerAction": {
+ "accounts": "Konten",
+ "currentAccount": "Aktuelles Konto",
+ "manageAccountPreferenceForMcpServer": "MCP-Serverkontoeinstellungen verwalten",
+ "noAccountUsage": "Dieser MCP-Server hat noch keine Konten verwendet.",
+ "noAccounts": "Von diesem MCP-Server werden zurzeit keine Konten verwendet.",
+ "pickAProviderTitle": "MCP-Serverkontoeinstellungen verwalten",
+ "placeholder v2": "Kontoeinstellungen für {0} für {1} verwalten ...",
+ "selectProvider": "Auswählen eines Authentifizierungsanbieters zum Verwalten von Kontoeinstellungen für",
+ "title": "„{0}“ Kontoeinstellungen für diesen Arbeitsbereich",
+ "use new account": "Neues Konto verwenden..."
+ },
+ "vs/workbench/contrib/authentication/browser/actions/manageAccountsAction": {
+ "accounts": "Konten",
+ "manageAccount": "Verwalten von „{0}“",
+ "manageAccounts": "Konten verwalten",
+ "manageTrustedExtensions": "Vertrauenswürdige Erweiterungen verwalten",
+ "manageTrustedMCPServers": "Vertrauenswürdige MCP-Server verwalten",
+ "noActiveAccounts": "Es gibt keine aktiven Aufgaben.",
+ "pickAccount": "Konto für die Zusammenführung verwalten",
+ "selectAction": "Auswählen einer Aktion",
+ "signOut": "Abmelden"
+ },
+ "vs/workbench/contrib/authentication/browser/actions/manageDynamicAuthenticationProvidersAction": {
+ "authenticationCategory": "Authentifizierung",
+ "clientId": "Client-ID: {0}",
+ "confirmDeleteDetail": "Damit werden alle gespeicherten Authentifizierungsdaten für die ausgewählten Anbieter entfernt. Sie müssen sich erneut authentifizieren, wenn Sie diese Anbieter wieder verwenden.",
+ "confirmDeleteMultipleProviders": "Möchten Sie wirklich {0} Anbieter für die dynamische Authentifizierung entfernen: {1}?",
+ "confirmDeleteSingleProvider": "Möchten Sie den Anbieter „{0}“ für die dynamische Authentifizierung wirklich entfernen?",
+ "noDynamicProviders": "Keine Anbieter für die dynamische Authentifizierung",
+ "noDynamicProvidersDetail": "Es wurden noch keine Anbieter für die dynamische Authentifizierung verwendet.",
+ "remove": "Entfernen",
+ "removeDynamicAuthProviders": "Anbieter für die dynamische Authentifizierung entfernen",
+ "selectProviderToRemove": "Zu entfernenden Anbieter für die dynamische Authentifizierung auswählen"
+ },
+ "vs/workbench/contrib/authentication/browser/actions/manageTrustedExtensionsForAccountAction": {
+ "accountLastUsedDate": "Letzte Verwendung dieses Kontos: {0}",
+ "accountPreferences": "Verwalten von Kontoeinstellungen für diese Erweiterung",
+ "accounts": "Konten",
+ "manageExtensions": "Wählen Sie die Erweiterungen aus, die auf dieses Konto zugreifen können.",
+ "manageTrustedExtensions": "Vertrauenswürdige Erweiterungen verwalten",
+ "manageTrustedExtensions.cancel": "Abbrechen",
+ "manageTrustedExtensionsForAccount": "Vertrauenswürdige Erweiterungen für Konto verwalten",
+ "noTrustedExtensions": "Dieses Konto wurde noch von keiner Erweiterung verwendet.",
+ "notUsed": "Hat dieses Konto nicht verwendet",
+ "pickAccount": "Wählen Sie ein Konto aus, für das vertrauenswürdige Erweiterungen verwaltet werden sollen.",
+ "trustedExtensionTooltip": "Diese Erweiterung wird von Microsoft als vertrauenswürdig eingestuft und\r\nhat immer Zugriff auf dieses Konto",
+ "trustedExtensions": "Von Microsoft als vertrauenswürdig eingestuft",
+ "viewExtensionDetails": "Erweiterungsdetails anzeigen"
+ },
+ "vs/workbench/contrib/authentication/browser/actions/manageTrustedMcpServersForAccountAction": {
+ "accountLastUsedDate": "Letzte Verwendung dieses Kontos: {0}",
+ "accountPreferences": "Verwalten von Kontoeinstellungen für diesen MCP-Server",
+ "accounts": "Konten",
+ "manageMcpServers": "Wählen Sie aus, welche MCP-Server auf dieses Konto zugreifen können.",
+ "manageTrustedMcpServers": "Vertrauenswürdige MCP-Server verwalten",
+ "manageTrustedMcpServers.cancel": "Abbrechen",
+ "manageTrustedMcpServersForAccount": "Vertrauenswürdige MCP-Server für das Konto verwalten",
+ "noTrustedMcpServers": "Dieses Konto wurde noch von keinem MCP-Server verwendet.",
+ "notUsed": "Hat dieses Konto nicht verwendet",
+ "pickAccount": "Wählen Sie ein Konto aus, um vertrauenswürdige MCP-Server zu verwalten.",
+ "trustedMcpServerTooltip": "Dieser MCP-Server wird von Microsoft als vertrauenswürdig eingestuft und\r\nhat immer Zugriff auf dieses Konto",
+ "trustedMcpServers": "Von Microsoft als vertrauenswürdig eingestuft"
+ },
+ "vs/workbench/contrib/authentication/browser/actions/signOutOfAccountAction": {
+ "signOut": "&&Abmelden",
+ "signOutMessage": "Das Konto '{0}' wurde verwendet von: \r\n\r\n{1}\r\n\r\n Von diesen Erweiterungen abmelden?",
+ "signOutMessageSimple": "Von \"{0}\" abmelden?",
+ "signOutOfAccount": "Vom Konto abmelden"
+ },
+ "vs/workbench/contrib/authentication/browser/authentication.contribution": {
+ "authentication": "Authentifizierung",
+ "authenticationMcpAuthorizationServers": "MCP-Autorisierungsserver",
+ "authenticationid": "ID",
+ "authenticationlabel": "Bezeichnung"
},
"vs/workbench/contrib/bulkEdit/browser/bulkEditService": {
- "areYouSureQuiteBulkEdit": "Möchten Sie {0}? „{1}“ wird zurzeit ausgeführt.",
- "changeWorkspace": "Arbeitsbereich ändern",
- "closeTheWindow": "Fenster schließen",
+ "areYouSureQuiteBulkEdit.detail": "\"{0}\" wird ausgeführt.",
+ "changeWorkspace.message": "Möchten Sie den Arbeitsbereich wirklich ändern?",
+ "closeTheWindow.message": "Möchten Sie den Assistenten wirklich schließen?",
"fileOperation": "Dateivorgang",
"nothing": "Keine Änderungen vorgenommen",
- "quit": "Beenden",
+ "quitMessage": "Möchten Sie den Vorgang beenden?",
+ "quitMessageMac": "Sind Sie sicher, dass Sie aufhören wollen?",
"refactoring.autoSave": "Steuert, ob Dateien, die Teil eines Refactorings waren, automatisch gespeichert werden",
- "reloadTheWindow": "Fenster neu laden",
+ "reloadTheWindow.message": "Möchten Sie das Fenster wirklich neu laden?",
"summary.0": "Keine Änderungen vorgenommen",
"summary.n0": "{0} Änderungen am Text in einer Datei vorgenommen",
"summary.nm": "{0} Änderungen am Text in {1} Dateien vorgenommen",
@@ -4259,9 +5793,8 @@
"vs/workbench/contrib/bulkEdit/browser/preview/bulkEdit.contribution": {
"Discard": "Refactoring verwerfen",
"apply": "Refactoring anwenden",
- "cancel": "Abbrechen",
"cat": "Refactoringvorschau",
- "continue": "Weiter",
+ "continue": "&&Fortfahren",
"detail": "Drücken Sie auf \"Weiter\", um das vorherige Refactoring zu verwerfen und das aktuelle Refactoring fortzusetzen.",
"groupByFile": "Änderungen nach Datei gruppieren",
"groupByType": "Änderungen nach Typ gruppieren",
@@ -4274,13 +5807,8 @@
"cancel": "Verwerfen",
"conflict.1": "Das Refactoring kann nicht angewendet werden, weil sich \"{0}\" in der Zwischenzeit geändert hat.",
"conflict.N": "Das Refactoring kann nicht übernommen werden, da {0} andere Dateien in der Zwischenzeit geändert wurden.",
- "create": "Erstellen",
- "edt.title.1": "{0} (Refactoringvorschau)",
- "edt.title.2": "{0} ({1}, Refactoringvorschau)",
- "edt.title.del": "{0} (löschen, Refactoringvorschau)",
"empty.msg": "Rufen Sie eine Codeaktion wie das Umbenennen auf, damit eine Vorschau der Änderungen hier angezeigt wird.",
- "ok": "Anwenden",
- "rename": "umbenennen"
+ "ok": "Anwenden"
},
"vs/workbench/contrib/bulkEdit/browser/preview/bulkEditPreview": {
"default": "Sonstiges"
@@ -4329,67 +5857,1937 @@
"to": "Aufrufer von \"{0}\"",
"tree.aria": "Aufrufhierarchie"
},
- "vs/workbench/contrib/cli/node/cli.contribution": {
- "shellCommand": "Shellbefehl",
- "install": "Befehl \"{0}\" in \"PATH\" installieren",
- "not available": "Dieser Befehl ist nicht verfügbar.",
- "ok": "OK",
- "cancel2": "Abbrechen",
- "warnEscalation": "Der Code fordert nun mit \"osascript\" zur Eingabe von Administratorberechtigungen auf, um den Shellbefehl zu installieren.",
- "cantCreateBinFolder": "/usr/local/bin kann nicht erstellt werden.",
- "aborted": "Abgebrochen",
- "successIn": "Der Shellbefehl \"{0}\" wurde erfolgreich in \"PATH\" installiert.",
- "uninstall": "Befehl \"{0}\" aus \"PATH\" deinstallieren",
- "warnEscalationUninstall": "Der Code fordert nun mit \"osascript\" zur Eingabe von Administratorberechtigungen auf, um den Shellbefehl zu deinstallieren.",
- "cantUninstall": "Der Shellbefehl \"{0}\" konnte nicht deinstalliert werden.",
- "successFrom": "Der Shellbefehl \"{0}\" wurde erfolgreich aus \"PATH\" deinstalliert."
+ "vs/workbench/contrib/chat/browser/actions/chatAccessibilityActions": {
+ "chat.category": "Chat",
+ "chatNotReady": "Die Chatschnittstelle ist nicht bereit.",
+ "focusChatConfirmation": "Chatbestätigung fokussieren",
+ "noChatSession": "Es wurde keine aktive Chatsitzung gefunden.",
+ "noConfirmationRequired": "Keine Chatbestätigung erforderlich"
+ },
+ "vs/workbench/contrib/chat/browser/actions/chatAccessibilityHelp": {
+ "chat.announcement": "Chatantworten werden angekündigt, sobald sie eingehen. Eine Antwort gibt ggf. die Anzahl der Codeblöcke und dann den Rest der Antwort an.",
+ "chat.attachments.removal": "Um angefügte Kontexte zu entfernen, fokussieren Sie eine Anlage und drücken Sie Löschen oder Rücktaste.",
+ "chat.differencePanel": "Die Panelchatansicht ist eine beständige Benutzeroberfläche, die auch das Navigieren in vorgeschlagenen Folgefragen unterstützt, während die Schnellchatansicht eine vorübergehende Oberfläche zum Senden und Anzeigen von Anforderungen ist.",
+ "chat.differenceQuick": "Die Schnellchatansicht ist eine vorübergehende Schnittstelle zum Senden und Anzeigen von Anforderungen, während die Panelchatansicht eine beständige Oberfläche ist, die auch das Navigieren durch vorgeschlagene Folgefragen unterstützt.",
+ "chat.focusMostRecentTerminal": "Um den Fokus auf das letzte Chatterminal zu legen, in dem ein Tool ausgeführt wurde, rufen Sie den Befehl Fokus letztes Chatterminal {0}auf.",
+ "chat.focusMostRecentTerminalOutput": "Um den Fokus auf die Ausgabe des letzten Chatterminaltools zu setzen, rufen Sie den Befehl Fokus letzte Chatterminalausgabe {0} auf.",
+ "chat.inspectResponse": "Überprüfen Sie im Eingabefeld die letzte Antwort in der barrierefreien Ansicht{0}.",
+ "chat.overview": "Die Schnellchatansicht besteht aus einem Eingabefeld und einer Anforderungs-/Antwortliste. Das Eingabefeld wird verwendet, um Anforderungen zu stellen, und die Liste wird verwendet, um Antworten anzuzeigen.",
+ "chat.progressVerbosity": "Während die Chatanfrage verarbeitet wird, erhalten Sie ausführliche Statusmeldungen, wenn die Verarbeitung länger als 4 Sekunden dauert. Dies umfasst Informationen wie der durchsuchte Text für mit X Ergebnissen, erstellte Datei oder gelesene Datei . Dies kann mit accessibility.verboseChatProgressUpdates deaktiviert werden.",
+ "chat.requestHistory": "Verwenden Sie im Eingabefeld die Pfeiltasten nach oben und unten, um in Ihrem Anforderungsverlauf zu navigieren. Bearbeiten Sie die Eingabe, und verwenden Sie die EINGABETASTE oder die Schaltfläche „Übermitteln“, um eine neue Anforderung auszuführen.",
+ "chat.showHiddenTerminals": "Wenn ausgeblendete Chatterminals vorhanden sind, können Sie diese anzeigen, indem Sie den Befehl Ausgeblendete Chatterminals anzeigen{0} aufrufen.",
+ "chat.signals": "Signale für die Barrierefreiheit können über Einstellungen mit dem Präfix „signals.chat“ geändert werden. Wenn eine Anforderung mehr als 4 Sekunden dauert, hören Sie standardmäßig einen Tom, der angibt, dass der Vorgang noch durchgeführt wird.",
+ "chatAgent.acceptTool": "Um eine Toolaktion zu akzeptieren, verwenden Sie den Befehl{0} „Toolbestätigung akzeptieren“.",
+ "chatAgent.autoApprove": "Um Toolaktionen ohne manuelle Bestätigung automatisch zu genehmigen, legen Sie {0} in Ihren Einstellungen auf {1} fest.",
+ "chatAgent.openEditedFilesSetting": "Wenn Änderungen an Dateien vorgenommen werden, werden sie standardmäßig geöffnet. Um dieses Verhalten zu ändern, legen Sie accessibility.openChatEditedFiles in Ihren Einstellungen auf FALSE fest.",
+ "chatAgent.overview": "Die Chat-Agent-Ansicht wird verwendet, um Bearbeitungen dateiübergreifend in Ihrem Arbeitsbereich anzuwenden, die Ausführung von Befehlen im Terminal zu aktivieren und vieles mehr.",
+ "chatAgent.runCommand": "Verwenden Sie zum Ausführen der Aktion den Befehl „Tool annehmen“{0}.",
+ "chatAgent.userActionRequired": "Eine Warnung gibt an, wann eine Benutzeraktion erforderlich ist. Wenn der Agent beispielsweise etwas im Terminal ausführen möchte, hören Sie „Aktion erforderlich: Skript im Terminal ausführen“.",
+ "chatEditing.acceptAllFiles": "- Alle Bearbeitungen beibehalten{0}.",
+ "chatEditing.acceptFile": "- Beibehalten{0} und Datei rückgängig machen{1}.",
+ "chatEditing.acceptHunk": "Im Editor Behalten{0}, Rückgängig machen{1} oder den Vergleich für die aktuelle Änderung umschalten{2}.",
+ "chatEditing.discardAllFiles": "- Alle Bearbeitungen rückgängig machen{0}.",
+ "chatEditing.expectation": "Wenn eine Anforderung gestellt wird, wird ein Statusindikator wiedergegeben, während die Bearbeitungen angewendet werden.",
+ "chatEditing.format": "Es besteht aus einem Eingabefeld und einem Dateiarbeitssatz (UMSCH+TAB).",
+ "chatEditing.helpfulCommands": "Im Folgenden finden Sie einige nützliche Befehle:",
+ "chatEditing.openFileInDiff": "- Öffnen Sie die Datei in diff-{0}.",
+ "chatEditing.overview": "Die Chatbearbeitungsansicht wird verwendet, um Bearbeitungen dateiübergreifend anzuwenden.",
+ "chatEditing.removeFileFromWorkingSet": "- Entfernen Sie die Datei aus dem Arbeitssatz{0}.",
+ "chatEditing.review": "Sobald die Bearbeitungen angewendet wurden, wird ein Sound wiedergegeben, der anzeigt, dass das Dokument geöffnet wurde und zur Überprüfung bereit ist. Der Sound kann mit accessibility.signals.chatEditModifiedFile deaktiviert werden.",
+ "chatEditing.saveAllFiles": "- Speichern Sie alle Dateien{0}.",
+ "chatEditing.sections": "Navigieren Sie zwischen Bearbeitungen im Editor, und navigieren Sie zum vorherigen{0} und zum nächsten{1}.",
+ "chatEditing.undoKeepSounds": "Es werden Töne abgespielt, wenn eine Änderung akzeptiert oder rückgängig gemacht wird. Die Töne können mit accessibility.signals.editsKept und accessibility.signals.editsUndone deaktiviert werden.",
+ "inlineChat.access": "Es kann über Codeaktionen oder direkt mit dem Befehl „Inlinechat: Inlinechat starten“{0} aktiviert werden.",
+ "inlineChat.contextActions": "Kontextmenüaktionen können eine Anforderung mit dem Präfix \"/. Type /\" ausführen, um solche vorgefertigten Befehle zu erhalten.",
+ "inlineChat.diff": "Wechseln Sie im Diff-Editor mit{0} in den Überprüfungsmodus. Verwenden Sie die Pfeiltasten nach oben und unten, um in den Zeilen mit den vorgeschlagenen Änderungen zu navigieren.",
+ "inlineChat.fix": "Bei Aufruf einer Korrekturaktion wird das Problem in der Antwort mit dem aktuellen Code angezeigt. Es wird ein Diff-Editor gerendert, der über Tabstopps erreichbar ist.",
+ "inlineChat.inspectResponse": "Überprüfen Sie im Eingabefeld die Antwort in der barrierefreien Ansicht{0}.",
+ "inlineChat.overview": "Inlinechats erfolgen innerhalb eines Code-Editors und berücksichtigen die aktuelle Auswahl. Dies ist nützlich, um Änderungen am aktuellen Editor vorzunehmen, zum Beispiel Diagnosekorrektur, Codedokumentation oder Codeumgestaltung. Beachten Sie, dass der von KI generierte Code möglicherweise falsch ist.",
+ "inlineChat.requestHistory": "Verwenden Sie im Eingabefeld \"Vorherige anzeige\"{0} und \"Nächste anzeigen\"{1}, um in Ihrem Anforderungsverlauf zu navigieren. Bearbeiten Sie die Eingabe, und verwenden Sie die EINGABETASTE oder die Schaltfläche „Übermitteln“, um eine neue Anforderung auszuführen.",
+ "inlineChat.toolbar": "Verwenden Sie die Registerkarte, um bedingte Teile wie Befehle, Status, Nachrichtenantworten und mehr zu erreichen.",
+ "workbench.action.chat.announceConfirmation": "Um ausstehende Chatbestätigungsdialoge zu fokussieren, rufen Sie den Befehl „Chatbestätigungsstatus fokussieren“{0} auf.",
+ "workbench.action.chat.editing.attachFiles": "- Dateien{0} anfügen.",
+ "workbench.action.chat.focus": "Um die Liste der Chat-Anfragen und -Antworten zu fokussieren, rufen Sie den Befehl Chat fokussieren{0} auf. Dadurch wird der Fokus auf die aktuellste Antwort gesetzt, die Sie dann mit den Pfeiltasten nach oben und unten navigieren können.",
+ "workbench.action.chat.focusInput": "Um das Eingabefeld für Chatanfragen zu fokussieren, rufen Sie den Befehl „Chateingabe fokussieren“{0} auf.",
+ "workbench.action.chat.focusLastFocusedItem": "Um zur letzten Chatantwort zurückzukehren, auf die Sie den Fokus gesetzt haben, rufen Sie den Befehl Letzte Chatantwort mit Fokus{0} auf.",
+ "workbench.action.chat.newChat": "Um eine neue Chatsitzung zu erstellen, rufen Sie den Befehl \"Neuer Chat\"{0} auf.",
+ "workbench.action.chat.nextCodeBlock": "Um den nächsten Codeblock innerhalb einer Antwort zu fokussieren, rufen Sie den Befehl „Chat: Nächster Codeblock“{0} auf.",
+ "workbench.action.chat.nextUserPrompt": "Um zur nächsten Benutzeraufforderung in der Unterhaltung zu navigieren, rufen Sie den Befehl Prompt des nächsten Benutzers{0} auf.",
+ "workbench.action.chat.previousUserPrompt": "Um zur vorherigen Benutzeraufforderung in der Unterhaltung zu navigieren, rufen Sie den Befehl Eingabeaufforderung des vorherigen Benutzers{0} auf.",
+ "workbench.action.chat.undoEdits": "- Rückgängig: Bearbeitungen{0}."
+ },
+ "vs/workbench/contrib/chat/browser/actions/chatActions": {
+ "actions.interactiveSession.focus": "Chatliste fokussieren",
+ "actions.interactiveSession.focusLastFocused": "Letztes Chatlistenelement fokussieren",
+ "agent.newSession": "Neue Sitzung starten?",
+ "agent.newSession.confirm": "Ja",
+ "agent.newSessionMessage": "Wenn Sie den Agentenmodus ändern, wird Ihre aktuelle Bearbeitungssitzung beendet. Möchten Sie den Agent ändern?",
+ "chat.category": "Chat",
+ "chat.clear.label": "Alle Arbeitsbereichschats löschen",
+ "chat.editToolApproval.description": "Bearbeiten und verwalten Sie die Genehmigungs- und Bestätigungseinstellungen für KI-Chat-Agents.",
+ "chat.editToolApproval.label": "Toolgenehmigung verwalten",
+ "chat.history.label": "Chats anzeigen...",
+ "chat.history.recent": "Letzte Chats",
+ "chat.history.rename": "Umbenennen",
+ "chat.history.showMore": "Mehr anzeigen...",
+ "chat.history.showMoreAgents": "Mehr anzeigen...",
+ "chat.openNewChatToTheSide.label": "Neuen Chat-Editor an der Seite öffnen",
+ "chat.toggleChatHistoryVisibility.label": "Chatverlauf",
+ "chat.toggleDefaultVisibility.label": "Ansicht standardmäßig anzeigen",
+ "chatAndCompletionsQuotaExceeded": "Sie haben Ihr monatliches Kontingent für Chatnachrichten und Inlinevorschläge erreicht.",
+ "chatQuotaExceeded": "Sie haben Ihr monatliches Kontingent an Chatnachrichten erreicht. Sie haben jedoch noch kostenlose Inline-Vorschläge zur Verfügung.",
+ "chatQuotaExceededButton": "Das Kontingent für Chatnachrichten im GitHub Copilot Free-Plan wurde erreicht. Klicken Sie hier, um Einzelheiten anzuzeigen.",
+ "chatSessions.newChatInSideBar": "Neuen Chat in Seitenleiste öffnen",
+ "chatSessions.openNewChatInNewWindow": "Neuen Chat in neuem Fenster öffnen",
+ "completionsQuotaExceeded": "Sie haben Ihr monatliches Kontingent für Inline-Vorschläge erreicht. Sie haben jedoch noch kostenlose Chatnachrichten zur Verfügung.",
+ "config.label": "Chat konfigurieren",
+ "configureCompletions": "Inlinevorschläge konfigurieren ...",
+ "copilotQuotaReached": "GitHub Copilot-Kontingent erreicht",
+ "currentChatLabel": "aktuell",
+ "dismiss": "Verwerfen",
+ "generateCode": "Code generieren",
+ "generateInstructions": "Arbeitsbereichsanweisungsdatei generieren",
+ "generateInstructions.short": "Chatanweisungen generieren",
+ "interactiveSession.clearHistory.label": "Eingabeverlauf löschen",
+ "interactiveSession.focusInput.label": "Chateingabe fokussieren",
+ "interactiveSession.history.clear": "Alle Arbeitsbereichschats löschen",
+ "interactiveSession.history.delete": "Löschen",
+ "interactiveSession.history.editor": "In Editor öffnen",
+ "interactiveSession.history.pick": "Zum Chat wechseln",
+ "interactiveSession.history.title": "Chatverlauf des Arbeitsbereichs",
+ "interactiveSession.history.titleAll": "Gesamter Chatverlauf des Arbeitsbereichs",
+ "interactiveSession.newChatWindow": "Neues Chatfenster",
+ "interactiveSession.open": "Neuer Chat-Editor",
+ "manageChat": "Chat verwalten",
+ "more": "Mehr...",
+ "newChatTitle": "Neuer Chattitel",
+ "openChat": "Chat öffnen",
+ "openChatFeatureSettings": "Chat-Einstellungen",
+ "openChatFeatureSettings.short": "Chat-Einstellungen",
+ "openChatMode": "Chat öffnen ({0})",
+ "quotaResetDate": "Das Kontingent wird am {0} zurückgesetzt.",
+ "resetTrustedTools": "Bestätigungen zum Zurücksetzen des Tools",
+ "resetTrustedToolsSuccess": "Die Einstellungen für die Bestätigung von Tools wurden zurückgesetzt.",
+ "showCopilotUsageExtensions": "Erweiterungen mit Copilot anzeigen",
+ "signInToChatSetup": "Melden Sie sich an, um KI-Funktionen zu verwenden …",
+ "switchChat.confirmPhrase": "Durch das Wechseln von Chats wird Ihre aktuelle Bearbeitungssitzung beendet.",
+ "switchMode.confirmPhrase": "Durch das Wechseln von Agenten wird Ihre aktuelle Bearbeitungssitzung beendet.",
+ "title4": "Chat",
+ "toggle.chatControl": "Chatsteuerelemente",
+ "toggle.chatControlsDescription": "Sichtbarkeit der Chatsteuerelemente in der Titelleiste umschalten",
+ "toggleChat": "Chat umschalten",
+ "upgradeChat": "GitHub Copilot-Plan upgraden",
+ "upgradePlan": "GitHub Copilot-Plan upgraden",
+ "upgradePro": "Auf GitHub Copilot Pro upgraden",
+ "upgradeToPro": "Upgraden Sie auf GitHub Copilot Pro (die ersten 30 Tage sind kostenlos) mit folgenden Vorteilen:\r\n- Unbegrenzte Inlinevorschläge\r\n- Unbegrenzte Chatnachrichten\r\n- Zugriff auf Premiummodelle"
+ },
+ "vs/workbench/contrib/chat/browser/actions/chatCodeblockActions": {
+ "interactive.applyInEditor.label": "Im Editor anwenden",
+ "interactive.applyInEditorWithURL.label": "Auf {0} anwenden",
+ "interactive.compare.apply": "Änderungen anwenden",
+ "interactive.compare.discard": "Änderungen verwerfen",
+ "interactive.copyCodeBlock.label": "Kopieren",
+ "interactive.insertCodeBlock.label": "Am Cursor einfügen",
+ "interactive.insertIntoNewFile.label": "In neue Datei einfügen",
+ "interactive.nextCodeBlock.label": "Nächster Codeblock",
+ "interactive.previousCodeBlock.label": "Vorheriger Codeblock",
+ "interactive.runInTerminal.label": "In Terminal einfügen"
+ },
+ "vs/workbench/contrib/chat/browser/actions/chatContext": {
+ "chatContext.attachScreenshot.labelElectron.Window": "Screenshotfenster",
+ "chatContext.attachScreenshot.labelWeb": "Screenshot",
+ "chatContext.editors": "Geöffnete Editoren",
+ "chatContext.relatedFiles": "Zugehörige Dateien",
+ "chatContext.tools": "Tools …",
+ "chatContext.tools.placeholder": "Tool auswählen",
+ "imageFromClipboard": "Bild aus Zwischenablage",
+ "pastedImage": "Eingefügtes Bild",
+ "relatedFiles": "Hinzufügen verwandter Dateien zu Ihrem Arbeitssatz",
+ "terminal": "Terminal"
+ },
+ "vs/workbench/contrib/chat/browser/actions/chatContextActions": {
+ "chat.insertSearchResults": "Suchergebnisse zum Chat hinzufügen",
+ "chatContext.attach.placeholder": "Anlagen suchen",
+ "goBack": "Zurück ↩",
+ "workbench.action.chat.attachContext.label.2": "Kontext hinzufügen …",
+ "workbench.action.chat.attachFile.label": "Datei zum Chat hinzufügen",
+ "workbench.action.chat.attachFolder.label": "Ordner zum Chat hinzufügen",
+ "workbench.action.chat.attachSelection.label": "Auswahl zum Chat hinzufügen"
+ },
+ "vs/workbench/contrib/chat/browser/actions/chatContinueInAction": {
+ "chat.learnMore": "Learn More",
+ "continueChatInSession": "Chat fortsetzen in ...",
+ "continueSessionIn": "In {0} fortfahren"
+ },
+ "vs/workbench/contrib/chat/browser/actions/chatCopyActions": {
+ "chat.copyKatexMathSource.label": "Mathematische Quelle kopieren",
+ "interactive.copyAll.label": "Alles kopieren",
+ "interactive.copyItem.label": "Kopieren"
+ },
+ "vs/workbench/contrib/chat/browser/actions/chatDeveloperActions": {
+ "workbench.action.chat.logChatIndex.label": "Chatindex protokollieren",
+ "workbench.action.chat.logInputHistory.label": "Protokollchat-Eingabeverlauf"
+ },
+ "vs/workbench/contrib/chat/browser/actions/chatElicitationActions": {
+ "chat.acceptElicitation": "Anforderung annehmen"
+ },
+ "vs/workbench/contrib/chat/browser/actions/chatExecuteActions": {
+ "actions.chat.submitWithCodebase": "Mit {0} senden",
+ "chat.newChat.label": "An neuen Chat senden",
+ "chat.remove.confirmation.checkbox": "Nicht erneut nachfragen",
+ "chat.remove.confirmation.message2": "Hierdurch werden alle nachfolgenden Anforderungen entfernt und Bearbeitungen rückgängig gemacht, die an {0} vorgenommen wurden. Möchten Sie den Vorgang fortsetzen?",
+ "chat.remove.confirmation.multipleEdits.message": "Hierdurch werden alle nachfolgenden Anforderungen entfernt und Bearbeitungen, die an {0} Dateien in Ihrem Arbeitssatz vorgenommen wurden, rückgängig gemacht. Möchten Sie den Vorgang fortsetzen?",
+ "chat.remove.confirmation.primaryButton": "Ja",
+ "chat.remove.confirmation.title": "Möchten Sie {0} Bearbeitungen rückgängig machen?",
+ "chat.removeLast.confirmation.message2": "Hierdurch wird Ihre letzte Anforderung entfernt, und die an der {0}vorgenommenen Änderungen werden rückgängig gemacht. Möchten Sie den Vorgang fortsetzen?",
+ "chat.removeLast.confirmation.multipleEdits.message": "Hierdurch wird Ihre letzte Anforderung entfernt, und Bearbeitungen, die an {0} Dateien in Ihrem Arbeitssatz vorgenommen wurden, werden rückgängig gemacht. Möchten Sie den Vorgang fortsetzen?",
+ "chat.removeLast.confirmation.title": "Möchten Sie die letzte Bearbeitung rückgängig machen?",
+ "edits.submit.label": "Senden",
+ "interactive.cancel.label": "Abbrechen",
+ "interactive.cancelEdit.label": "Bearbeiten abbrechen",
+ "interactive.changeModel.label": "Modell ändern",
+ "interactive.openChatSessionPrimaryPicker.label": "Auswahl öffnen",
+ "interactive.openModePicker.label": "Agentauswahl öffnen",
+ "interactive.openModelPicker.label": "Modellauswahl öffnen",
+ "interactive.submit.label": "Senden",
+ "interactive.submit.panel.label": "An Bearbeitungssitzung senden",
+ "interactive.submitWithoutDispatch.label": "Senden",
+ "interactive.switchToNextModel.label": "Zum nächsten Modell wechseln",
+ "interactive.toggleAgent.label": "Zum nächsten Agent wechseln",
+ "sendToAgent": "An Agenten senden",
+ "setChatMode": "Agenten festlegen"
+ },
+ "vs/workbench/contrib/chat/browser/actions/chatFileTreeActions": {
+ "interactive.nextFileTree.label": "Nächste Dateistruktur",
+ "interactive.previousFileTree.label": "Vorherige Dateistruktur"
+ },
+ "vs/workbench/contrib/chat/browser/actions/chatImportExport": {
+ "chat.export.label": "Chat exportieren...",
+ "chat.file.label": "Chatsitzung",
+ "chat.import.label": "Chat importieren..."
+ },
+ "vs/workbench/contrib/chat/browser/actions/chatLanguageModelActions": {
+ "extensionOwner": "{0}",
+ "languageModelAuthPlaceholder": "Wählen Sie aus, welche Erweiterungen auf Sprachmodelle zugreifen können.",
+ "languageModelAuthTitle": "Sprachmodellzugriff verwalten",
+ "manageLanguageModelAuthentication": "Sprachmodellzugriff verwalten …",
+ "noAccessDescription": "Zurzeit dürfen keine Erweiterungen Modelle aus {0} verwenden.",
+ "noAllowedExtensions": "Keine Erweiterungen haben Zugriff.",
+ "noLanguageModels": "Es wurden keine Sprachmodelle gefunden, die eine Authentifizierung erfordern.",
+ "noLanguageModelsDetail": "Zurzeit sind keine Sprachmodelle vorhanden, die eine Authentifizierung erfordern.",
+ "openExtension": "Erweiterung öffnen",
+ "trustedExtension": "Von Microsoft als vertrauenswürdig eingestuft"
+ },
+ "vs/workbench/contrib/chat/browser/actions/chatMoveActions": {
+ "chat.openInEditor.label": "Chat in den Editorbereich verschieben",
+ "chat.openInNewWindow.label": "Chat in neues Fenster verschieben",
+ "interactiveSession.openInPanel.label": "Chat in das Panel verschieben",
+ "interactiveSession.openInPrimarySidebar.label": "Chat in die primäre Seitenleiste verschieben",
+ "interactiveSession.openInSecondarySidebar.label": "Chat in die sekundäre Seitenleiste verschieben",
+ "interactiveSession.openInSidebar.label": "Chat in Seitenleiste verschieben"
+ },
+ "vs/workbench/contrib/chat/browser/actions/chatNewActions": {
+ "chat.newChat.label": "Neuer Chat",
+ "chat.newEdits.label": "Neuer Chat",
+ "chat.redoEdit.label": "Letzte Anforderung wiederholen",
+ "chat.redoEdit.label2": "Wiederholen",
+ "chat.redoEdit.tooltip": "Erneutes Anwenden verworfener Arbeitsbereichsänderungen und Chat",
+ "chat.undoEdit.label": "Letzte Anforderung rückgängig machen"
+ },
+ "vs/workbench/contrib/chat/browser/actions/chatPromptNavigationActions": {
+ "interactive.nextUserPrompt.label": "Nächster Nutzerprompt",
+ "interactive.previousUserPrompt.label": "Vorherige Benutzeraufforderung"
+ },
+ "vs/workbench/contrib/chat/browser/actions/chatQuickInputActions": {
+ "chat.closeQuickChat.label": "Schnellchat schließen",
+ "chat.openInChatView.label": "In Chatansicht öffnen",
+ "interactiveSession.open": "Schnellchat öffnen",
+ "quickChat": "Schnellchat öffnen",
+ "toggle.desc": "Schnellchat umschalten",
+ "toggle.isPartialQuery": "Gibt an, ob es sich um eine Teilabfrage handelt. Es wird auf weitere Benutzereingaben gewartet.",
+ "toggle.query": "Die Abfrage, mit der der Schnellchat geöffnet werden soll"
+ },
+ "vs/workbench/contrib/chat/browser/actions/chatSessionActions": {
+ "chat.openSessionInNewEditorGroup.label": "Chat an die Seite verschieben",
+ "chat.openSessionInNewWindow.label": "Chat in neues Fenster verschieben",
+ "chat.openSessionInSidebar.label": "Chat in Seitenleiste verschieben",
+ "chat.sessions.gettingStarted.action": "Erste Schritte mit Chatsitzungen",
+ "chatSessions.extensionAlreadyInstalled": "„{0}“ ist bereits installiert.",
+ "chatSessions.installExtension": "Installiert „{0}“",
+ "chatSessions.pickPlaceholder": "Erweiterungen auswählen, um Ihre Chaterfahrung zu verbessern",
+ "chatSessions.selectExtension": "Chaterweiterungen installieren",
+ "chatSessions.toggleDescriptionDisplay.label": "Umfassende Beschreibungen anzeigen",
+ "chatSessions.toggleViewLocation.label": "Combined Sessions View",
+ "deleteSession": "Löschen",
+ "deleteSession.confirm": "Sind Sie sicher, dass Sie diese Chatsitzung löschen wollen?",
+ "deleteSession.delete": "Löschen",
+ "deleteSession.detail": "Diese Aktion kann nicht rückgängig gemacht werden.",
+ "interactiveSession.open": "Neuer Chat-Editor",
+ "openSessionInNewWindow": "In neuem Fenster öffnen",
+ "openSessionInSidebar": "In Randleiste öffnen",
+ "openToSide": "An der Seite öffnen",
+ "renameSession": "Umbenennen",
+ "renameSession.emptyName": "Der Name darf nicht leer sein.",
+ "renameSession.error": "Fehler beim Umbenennen der Chatsitzung: {0}",
+ "renameSession.nameTooLong": "Der Name ist zu lang (maximal 100 Zeichen)",
+ "renameSession.placeholder": "Neuen Namen für die Chatsitzung eingeben."
+ },
+ "vs/workbench/contrib/chat/browser/actions/chatTitleActions": {
+ "chat.retry.confirmation.checkbox": "Nicht erneut nachfragen",
+ "chat.retry.confirmation.message2": "Hierdurch werden Änderungen rückgängig gemacht, die seit dieser Anforderung an {0} vorgenommen wurden.",
+ "chat.retry.confirmation.primaryButton": "Ja",
+ "chat.retry.label": "Wiederholen",
+ "chat.retryLast.confirmation.message2": "Hierdurch werden Änderungen rückgängig gemacht, die seit dieser Anforderung an {0} Dateien in Ihrem Arbeitssatz vorgenommen wurden. Möchten Sie den Vorgang fortsetzen?",
+ "chat.retryLast.confirmation.title2": "Möchten Sie Ihre letzte Anforderung wiederholen?",
+ "interactive.helpful.label": "Hilfreich",
+ "interactive.insertIntoNotebook.label": "In Notebook einfügen",
+ "interactive.reportIssueForBug.label": "Problem melden",
+ "interactive.unhelpful.label": "Nicht hilfreich"
+ },
+ "vs/workbench/contrib/chat/browser/actions/chatToolActions": {
+ "chat.accept": "Annehmen",
+ "chat.skip": "Überspringen",
+ "chat.tools.description.agent": "Die ausgewählten Tools werden vom benutzerdefinierten Agent „{0}“ konfiguriert. Änderungen an den Tools werden auch auf die benutzerdefinierte Agent-Datei angewendet.",
+ "chat.tools.description.global": "Die ausgewählten Tools werden global für alle Chatsitzungen angewendet, die den Standard-Agent verwenden.",
+ "chat.tools.description.readOnlyAgent": "Die ausgewählten Tools werden vom benutzerdefinierten Agent „{0}“ konfiguriert. Änderungen an den Tools gelten nur für diese Sitzung und ändern nicht den benutzerdefinierten Agent „{0}“.",
+ "chat.tools.description.session": "Die ausgewählten Tools wurden nur für diese Chatsitzung konfiguriert.",
+ "chat.tools.placeholder.agent": "Tools für diesen benutzerdefinierten Agenten auswählen",
+ "chat.tools.placeholder.global": "Wählen Sie Tools aus, die zum Chatten verfügbar sind.",
+ "chat.tools.placeholder.readOnlyAgent": "Tools für diesen benutzerdefinierten Agenten auswählen",
+ "chat.tools.placeholder.session": "Tools für diese Chatsitzung auswählen",
+ "chatTools.tooManyEnabled": "Mehr als {0} Tools sind aktiviert, es kann zu beeinträchtigten Toolaufrufen kommen.",
+ "label": "Tools konfigurieren ..."
+ },
+ "vs/workbench/contrib/chat/browser/actions/chatToolPicker": {
+ "addExtensionButton": "Erweiterung installieren …",
+ "addMcpServer": "MCP-Server hinzufügen …",
+ "configMcpCol": "{0} konfigurieren",
+ "configToolSets": "Toolsets konfigurieren …",
+ "configureTools": "Tools konfigurieren",
+ "defaultBucketLabel": "Integriert",
+ "editUserBucket": "Toolgruppe bearbeiten",
+ "mcpShowOutput": "Ausgabe anzeigen",
+ "mcpUpdate": "Updatetools",
+ "noTools": "Tools zum Chat hinzufügen",
+ "toolLimitExceeded": "{0}-Tools sind aktiviert. Möglicherweise treten herabgestufte Toolaufrufe über {1} Tools auf.",
+ "userBucket": "Benutzerdefinierte Toolgruppen"
+ },
+ "vs/workbench/contrib/chat/browser/actions/codeBlockOperations": {
+ "activeEditor": "Aktiver Editor '{0}'",
+ "applyCodeBlock.error": "Fehler beim Anwenden des Codeblocks: {0}",
+ "applyCodeBlock.errorOpeningFile": "Fehler beim Öffnen {0} in einem Code-Editor.",
+ "applyCodeBlock.fileWriteError": "Fehler beim Erstellen der Datei: {0}",
+ "applyCodeBlock.noActiveEditor": "Um diesen Codeblock anzuwenden, öffnen Sie einen Code- oder Notebook-Editor.",
+ "applyCodeBlock.noCodeMapper": "Es ist keine Codezuordnung verfügbar.",
+ "applyCodeBlock.progress": "Codeblock wird mit {0} angewendet...",
+ "applyCodeBlock.readonly": "Der Codeblock kann nicht auf eine schreibgeschützte Datei angewendet werden.",
+ "applyCodeBlock.readonlyNotebook": "Der Codeblock kann nicht auf den schreibgeschützten Notebook-Editor angewendet werden.",
+ "createFile": "Neue Datei „{0}“",
+ "insertCodeBlock.noActiveEditor": "Um den Codeblock einzufügen, öffnen Sie einen Code-Editor oder Notebook-Editor, und legen Sie den Cursor an der Stelle fest, an der der Codeblock eingefügt werden soll.",
+ "insertCodeBlock.readonly": "Der Codeblock kann nicht in den schreibgeschützten Code-Editor eingefügt werden.",
+ "insertCodeBlock.readonlyNotebook": "Der Codeblock kann nicht in den schreibgeschützten Notebook-Editor eingefügt werden.",
+ "newUntitledFile": "Neuer unbenutzter Editor",
+ "selectOption": "Wählen Sie aus, wo der Codeblock angewendet werden soll."
+ },
+ "vs/workbench/contrib/chat/browser/actions/manageModelsActions": {
+ "manageLanguageModels": "Sprachmodelle verwalten..."
+ },
+ "vs/workbench/contrib/chat/browser/agentSessions/agentSessions": {
+ "chat.session.providerLabel.background": "Hintergrund",
+ "chat.session.providerLabel.cloud": "Cloud",
+ "chat.session.providerLabel.local": "Lokal"
+ },
+ "vs/workbench/contrib/chat/browser/agentSessions/agentSessionsActions": {
+ "agentSessions.filter.reset": "Reset",
+ "diffFile": "1 Datei",
+ "diffFiles": "{0} Dateien",
+ "filterAgentSessions": "Agentsitzungen filtern",
+ "find": "Agentsitzung suchen",
+ "refresh": "Agentensitzungen aktualisieren",
+ "showDiff": "Offene Änderungen"
+ },
+ "vs/workbench/contrib/chat/browser/agentSessions/agentSessionsView": {
+ "agentSessions.newSession": "Neue Sitzung",
+ "agentSessions.newSessionAriaLabel": "Neue Sitzung",
+ "agentSessions.refreshing": "Agentsitzungen werden aktualisiert ...",
+ "agentSessions.view.label": "Agent-Sitzungen",
+ "chatSessions.installExtensions": "Chaterweiterungen installieren...",
+ "newBackgroundSession": "Neue Hintergrundsitzung",
+ "newChatSessionDefault": "Neue lokale Sitzung",
+ "newChatSessionFromProvider": "Neu: {0}",
+ "newCloudSession": "Neue Cloudsitzung"
+ },
+ "vs/workbench/contrib/chat/browser/agentSessions/agentSessionsViewer": {
+ "agentSessions": "Agent-Sitzungen",
+ "agentSessions.dragLabel": "{0} Agentsitzungen",
+ "chat.session.status.completed": "Beendet",
+ "chat.session.status.completedAfter": "Beendet in {0}.",
+ "chat.session.status.failed": "Fehler",
+ "chat.session.status.failedAfter": "Fehler nach {0}.",
+ "chat.session.status.inProgress": "Wird ausgeführt …",
+ "chat.session.status.inProgressWithDuration": "Wird ausgeführt … ({0})"
+ },
+ "vs/workbench/contrib/chat/browser/agentSessions/agentSessionsViewFilter": {
+ "agentSessions.filter.archived": "Archiviert",
+ "chatSessionStatus.completed": "Abgeschlossen",
+ "chatSessionStatus.failed": "Fehler",
+ "chatSessionStatus.inProgress": "In Bearbeitung"
+ },
+ "vs/workbench/contrib/chat/browser/attachments/implicitContextAttachment": {
+ "cell.lowercase": "Zelle",
+ "chat.fileAttachment": "Angefügt: {0}, {1}",
+ "chat.fileAttachmentWithRange": "Angefügt: {0}, {1}, Zeile {2} bis Zeile {3}",
+ "disable": "Aktuellen {0}-Kontext deaktivieren",
+ "enable": "Aktuellen {0}-Kontext aktivieren",
+ "enableHint": "Aktuellen {0}-Kontext aktivieren",
+ "file.lowercase": "Datei",
+ "openEditor": "Aktueller {0}-Kontext",
+ "openFile": "Aktueller Dateikontext"
+ },
+ "vs/workbench/contrib/chat/browser/chat.contribution": {
+ "autoApprove2.description": "Die globale automatische Genehmigung, auch bekannt als „YOLO-Modus“, deaktiviert die manuelle Genehmigung vollständig für alle Tools in allen Arbeitsbereichen, sodass der Agent völlig autonom handeln kann. Dies ist äußerst gefährlich und wird *niemals* empfohlen, selbst in containerisierten Umgebungen wie Codespaces und Dev Containers werden Benutzerschlüssel in den Container weitergeleitet, die kompromittiert werden könnten.\r\n\r\nDiese Funktion deaktiviert wichtige Sicherheitsvorkehrungen und erleichtert es Angreifern erheblich, den Computer zu kompromittieren.",
+ "chat": "Chat",
+ "chat.agent.enabled.description": "Aktivieren Sie den Agent-Modus für den Chat. Wenn diese Option aktiviert ist, kann der Agent-Modus über das Dropdown-Menü in der Ansicht aktiviert werden.",
+ "chat.agent.maxRequests": "Die maximale Anzahl von Anforderungen, die pro Durchlauf zulässig sind, wenn ein Agent verwendet wird. Wenn das Limit erreicht ist, wird die benutzende Person aufgefordert, zu bestätigen, dass der Vorgang fortgesetzt werden soll.",
+ "chat.agent.thinking.collapsedTools": "Wenn aktiviert, werden Toolaufrufe dem reduzierbaren Denken-Abschnitt entsprechend dem ausgewählten Modus hinzugefügt.",
+ "chat.agent.thinking.collapsedTools.all": "Alle Toolaufrufe werden dem reduzierbaren Denkensabschnitt hinzugefügt.",
+ "chat.agent.thinking.collapsedTools.none": "Dem reduzierbaren Denkensabschnitt werden keine Toolaufrufe hinzugefügt.",
+ "chat.agent.thinking.collapsedTools.readOnly": "Nur schreibgeschützte Toolaufrufe werden dem reduzierbaren Denken-Abschnitt hinzugefügt.",
+ "chat.agent.thinkingMode.collapsed": "Denkende Teile werden standardmäßig reduziert.",
+ "chat.agent.thinkingMode.collapsedPreview": "Die denkenden Teile werden zuerst erweitert und dann abgebaut, sobald wir einen Teil erreichen, der nicht denkend ist.",
+ "chat.agent.thinkingMode.fixedScrolling": "Zeigen Sie das Denken in einem Streamingbereich mit fester Höhe an, in dem automatisch gescrollt wird; klicken Sie auf die Kopfzeile, um auf die volle Höhe zu erweitern.",
+ "chat.agent.thinkingStyle": "Steuert, wie das Denken gerendert wird.",
+ "chat.allowAnonymousAccess": "Steuert, ob anonymer Zugriff im Chat zulässig ist.",
+ "chat.checkpoints.enabled": "Aktiviert Prüfpunkte im Chat. Mithilfe von Prüfpunkten können Sie den Chat in einem früheren Zustand wiederherstellen.",
+ "chat.checkpoints.showFileChanges": "Steuert, ob Änderungen an der Chatprüfpunktdatei angezeigt werden.",
+ "chat.codeBlock.showProgressAnimation.description": "Beim Anwenden von Bearbeitungen wird eine Statusanimation in der Codeblockanzeige gezeigt. Wenn deaktiviert, wird stattdessen der Fortschrittsprozentsatz angezeigt.",
+ "chat.commandCenter.enabled": "Steuert, ob im Befehlscenter ein Menü für Aktionen zur Steuerung des Chats anzeigt (erfordert {0})",
+ "chat.detectParticipant.enabled": "Aktiviert die automatische Erkennung von Chatteilnehmern für Panelchat.",
+ "chat.disableAIFeatures": "Deaktivieren und blenden Sie integrierte KI-Features aus, die von GitHub Copilot bereitgestellt werden, einschließlich Chat- und Inlinevorschlägen.",
+ "chat.editRequests": "Ermöglicht die Bearbeitung von Anforderungen im Chat. Auf diese Weise können Sie den Anforderungsinhalt ändern und erneut an das Modell übermitteln.",
+ "chat.editing.autoAcceptDelay": "Verzögerung, nach der vom Chat vorgenommene Änderungen automatisch akzeptiert werden. Werte sind in Sekunden, \"0\" bedeutet\", \"Deaktiviert\" und \"100 Sekunden\" ist der Höchstwert.",
+ "chat.editing.confirmEditRequestRemoval": "Gibt an, ob vor dem Entfernen einer Anforderung und der zugehörigen Bearbeitungen eine Bestätigung angezeigt werden soll.",
+ "chat.editing.confirmEditRequestRetry": "Gibt an, ob vor dem Wiederholen einer Anforderung und der zugehörigen Bearbeitungen eine Bestätigung angezeigt werden soll.",
+ "chat.edits2Enabled": "Aktivieren Sie den neuen Bearbeitungsmodus, der auf dem Aufrufen von Tools basiert. Wenn diese Option aktiviert ist, stehen Modelle, die keine Tool-Aufrufe unterstützen, nicht für den Bearbeitungsmodus zur Verfügung.",
+ "chat.emptyState.history.enabled": "Aktuellen Chatverlauf im leeren Chatzustand anzeigen",
+ "chat.experimental.detectParticipant.enabled": "Aktiviert die automatische Erkennung von Chatteilnehmern für Panelchat.",
+ "chat.experimental.detectParticipant.enabled.deprecated": "Diese Einstellung ist veraltet. Verwenden Sie stattdessen „chat.detectParticipant.enabled“.",
+ "chat.extensionToolsEnabled": "Aktivieren Sie die Verwendung von Tools, die von Drittanbietererweiterungen bereitgestellt wurden.",
+ "chat.extensionUnification.enabled": "Ermöglicht die Nutzung der GitHub Copilot-Erweiterungen. Wenn diese Option aktiviert ist, werden alle GitHub Copilot-Funktionen über die GitHub Copilot Chat-Erweiterung bereitgestellt. Wenn deaktiviert, funktionieren die GitHub Copilot- und GitHub Copilot Chat-Erweiterungen unabhängig voneinander.",
+ "chat.fontFamily": "Steuert die Schriftfamilie in Chatnachrichten.",
+ "chat.fontSize": "Steuert den Schriftgrad in Pixeln in Chatnachrichten.",
+ "chat.hideNewButtonInAgentSessionsView": "Steuert, ob die Schaltfläche für eine neue Sitzung in der Ansicht der Agentsitzungen ausgeblendet wird.",
+ "chat.implicitContext.enabled.1": "Aktiviert automatisch die Verwendung des aktiven Editors als Chatkontext für die angegebenen Chatstandorte.",
+ "chat.implicitContext.suggestedContext": "Steuert, ob der neue implizite Kontextfluss angezeigt wird. Im Ask- und Edit-Modus wird der Kontext automatisch eingeschlossen. Wenn Sie einen Agent verwenden, wird der Kontext als Anlage vorgeschlagen. Auswahlen werden immer als Kontext eingeschlossen.",
+ "chat.implicitContext.value": "Der Wert für den impliziten Kontext.",
+ "chat.implicitContext.value.always": "Der implizite Kontext wird immer aktiviert.",
+ "chat.implicitContext.value.first": "Der implizite Kontext wird für die erste Interaktion aktiviert.",
+ "chat.implicitContext.value.never": "Der implizite Kontext wird nie aktiviert.",
+ "chat.instructions.config.locations.description": "Geben Sie den/die Speicherort(e) der Anweisungsdateien („*{0}“) an, die in Chatsitzungen angefügt werden können. [Weitere Informationen]({1}).\r\n\r\nRelative Pfade werden aus den Stammordnern Ihres Arbeitsbereichs aufgelöst.",
+ "chat.instructions.config.locations.title": "Speicherorte der Anweisungsdateien",
+ "chat.mathEnabled.description": "Aktivieren Sie mathematisches Rendering in Chatantworten mit KaTeX.",
+ "chat.mcp.access": "Steuert den Zugriff auf installierte Server des Modellkontextprotokolls.",
+ "chat.mcp.access.any": "Lassen Sie den Zugriff auf alle installierten MCP-Server zu.",
+ "chat.mcp.access.none": "Kein Zugriff auf MCP-Server.",
+ "chat.mcp.access.registry": "Ermöglicht den Zugriff auf MCP-Server, die über die Registrierung installiert wurden und mit VS Code verbunden sind.",
+ "chat.mcp.assisted.nuget.enabled.description": "Aktiviert NuGet-Pakete für die KI-gestützte Installation von MCP-Servern. Wird verwendet, um MCP-Server nach Namen aus der zentralen Registrierung für .NET-Pakete (NuGet.org) zu installieren.",
+ "chat.mcp.autostart": "Steuert, ob MCP-Server automatisch gestartet werden sollen, wenn die Chatnachrichten übermittelt werden.",
+ "chat.mcp.autostart.never": "Starten Sie MCP-Server niemals automatisch.",
+ "chat.mcp.autostart.newAndOutdated": "Starten Sie automatisch neue und veraltete MCP-Server, die noch nicht ausgeführt werden.",
+ "chat.mcp.autostart.onlyNew": "Starten Sie nur neue MCP-Server automatisch, die noch nie ausgeführt wurden.",
+ "chat.mcp.gallery.enabled": "Aktiviert den Standard-Marketplace für Model Context Protocol (MCP)-Server.",
+ "chat.mcp.serverSampling": "Konfiguriert, welche Modelle für MCP-Server für Sampling zur Verfügung stehen (erstellt im Hintergrund Modellanforderungen). Diese Einstellung kann grafisch unter dem Befehl „{0}“ bearbeitet werden.",
+ "chat.mcp.serverSampling.allowedDuringChat": "Gibt an, ob dieser Server während seiner Toolaufrufe in einer Chatsitzung Samplinganforderungen stellt.",
+ "chat.mcp.serverSampling.allowedOutsideChat": "Gibt an, ob dieser Server Samplinganforderungen außerhalb einer Chatsitzung ausführen darf.",
+ "chat.mcp.serverSampling.model": "Ein Modell, auf das der MCP-Server zugreifen kann.",
+ "chat.mode.config.locations.deprecated": "Diese Einstellung ist veraltet und wird in einem zukünftigen Release entfernt. Chatmodi heißen jetzt benutzerdefinierte Agents und befinden sich in „.github/agents“.",
+ "chat.mode.config.locations.description": "Speicherort(e) für benutzerdefinierte Chatmodusdateien angeben (*{0}). [Weitere Informationen]({1}).\r\n\r\nRelative Pfade werden aus den Stammordnern Ihres Arbeitsbereichs aufgelöst.",
+ "chat.mode.config.locations.title": "Speicherorte von Modusdateien",
+ "chat.notifyWindowOnConfirmation": "Steuert, ob dem Benutzer in einer Chatsitzung eine Betriebssystembenachrichtigung angezeigt werden soll, wenn eine Bestätigung erforderlich ist, während sich das Fenster nicht im Fokus befindet. Dazu gehören ein Fensterbadge und ein Popup für Benachrichtigungen.",
+ "chat.notifyWindowOnResponseReceived": "Steuert, ob eine Chatsitzung dem Benutzer eine Betriebssystembenachrichtigung anzeigen soll, wenn eine Bestätigung erforderlich ist, während das Fenster nicht im Fokus ist. Dazu gehören ein Fensterbadge und ein Popup für Benachrichtigungen.",
+ "chat.promptFilesRecommendations.description": "Konfigurieren Sie, welche Prompt-Dateien in der Willkommensansicht des Chats empfohlen werden sollen. Jeder Schlüssel ist ein Prompt-Dateiname, und der Wert kann `true` sein, um immer zu empfehlen, `false`, um niemals zu empfehlen, oder ein [when-Klausel](https://aka.ms/vscode-when-clause)-Ausdruck wie `resourceExtname == .js` oder `resourceLangId == markdown`.",
+ "chat.promptFilesRecommendations.title": "Empfehlungen für Prompt-Dateien",
+ "chat.renderRelatedFiles": "Steuert, ob zugehörige Dateien in der Chateingabe gerendert werden sollen.",
+ "chat.reusablePrompts.config.locations.description": "Geben Sie den/die Speicherort(e) wiederverwendbarer Promptdateien („*{0}“) an, die in Chatsitzungen ausgeführt werden können. [Weitere Informationen]({1}).\r\n\r\nRelative Pfade werden aus den Stammordnern Ihres Arbeitsbereichs aufgelöst.",
+ "chat.reusablePrompts.config.locations.title": "Dateispeicherorte für Eingabeaufforderungsdateien",
+ "chat.sendElementsToChat.attachCSS": "Legt fest, ob das CSS des ausgewählten Elements zum Chat hinzugefügt wird. {0} muss aktiviert sein.",
+ "chat.sendElementsToChat.attachImages": "Steuert, ob ein Screenshot des ausgewählten Elements dem Chat hinzugefügt wird. {0} muss aktiviert sein.",
+ "chat.sendElementsToChat.enabled": "Steuert, ob Elemente über den einfachen Browser an den Chat gesendet werden können.",
+ "chat.sessionsViewLocation.description": "Steuert, wo das Menü „Agentsitzungen“ angezeigt werden soll.",
+ "chat.showAgentSessionsViewDescription": "Steuert, ob Sitzungsbeschreibungen in einer zweiten Zeile in der Ansicht „Chatsitzungen“ angezeigt werden.",
+ "chat.signInWithAlternateScopes": "Steuert, ob die Anmeldung mit alternativen Bereichen verwendet wird.",
+ "chat.subagentTool.customAgents": "Gibt an, ob das runSubagent-Tool benutzerdefinierte Agents verwenden kann. Wenn aktiviert, kann das Tool den Namen eines benutzerdefinierten Agents annehmen, muss jedoch den genauen Namen des Agents erhalten.",
+ "chat.todoListTool.descriptionField": "Wenn aktiviert, enthalten Aufgaben ausführliche Beschreibungen für den Implementierungskontext. Dies bietet mehr Informationen, verwendet jedoch zusätzliche Token und kann die Antwortgeschwindigkeit verlangsamen.",
+ "chat.todoListTool.writeOnly": "Wenn diese Option aktiviert ist, wird das Todo-Tool im schreibgeschützten Modus ausgeführt, sodass sich der Agent die Todos im Kontext merken muss.",
+ "chat.toolReferenceName.description": "{0} − {1}",
+ "chat.tools.autoApprove.edits": "Steuert, ob vom Chat vorgenommene Änderungen automatisch genehmigt werden. Standardmäßig werden alle Bearbeitungen mit Ausnahme derjenigen genehmigt, die an bestimmten Dateien vorgenommen wurden, die möglicherweise zu unmittelbaren unbeabsichtigten Nebeneffekten führen können, z. B. „**/.vscode/*.json“.\r\n\r\nLegen Sie diesen Wert auf TRUE fest, um Bearbeitungen an übereinstimmenden Dateien automatisch zu genehmigen, und auf FALSE, damit immer eine explizite Genehmigung erforderlich ist. Das zuletzt auf eine Datei zutreffende Muster bestimmt, ob die Bearbeitung automatisch genehmigt wird.",
+ "chat.tools.eligibleForAutoApproval": "Steuert, welche Tools für die automatische Genehmigung infrage kommen. Tools, die auf „false“ gesetzt sind, zeigen immer eine Bestätigung an und bieten niemals die Option zur automatischen Genehmigung an. Das Standardverhalten (oder das Setzen eines Tools auf „true“) kann dazu führen, dass das Tool Optionen zur automatischen Genehmigung anbietet.",
+ "chat.tools.fetchPage.approvedUrls": "Steuert, welche URLs automatisch genehmigt werden, wenn sie von Chattools angefordert werden. Die Schlüssel sind URL-Muster, und die Werte können „true“ sein, um sowohl Anfragen als auch Antworten zu genehmigen, „false“, um sie abzulehnen, oder ein Objekt mit den Eigenschaften „approveRequest“ und „approveResponse“ für eine detaillierte Steuerung.\r\n\r\nBeispiele:\r\n- `\"https://example.com\": true` – Genehmigt alle Anfragen an example.com\r\n- `\"https://*.example.com\": true` – Genehmigen Sie alle Anforderungen an eine beliebige Unterdomäne von example.com\r\n- `\"https://example.com/api/*\": { \"approveRequest\": true, \"approveResponse\": false }` – Genehmigt Anfragen, aber nicht die Antworten für example.com/api-Pfade",
+ "chat.tools.todos.showWidget": "Steuert, ob das Widget für die Aufgabenliste oberhalb der Chateingabe angezeigt wird. Wenn aktiviert, zeigt das Widget vom Agent erstellte Aufgaben an und aktualisiert sie mit dem Fortschritt.",
+ "chat.undoRequests.restoreInput": "Steuert, ob die Eingabe des Chats wiederhergestellt werden soll, wenn eine Anforderung zum Widerrufen gestellt wird. Die Eingabe wird mit dem Text der wiederhergestellten Anforderung ausgefüllt.",
+ "chat.useAgentMd.description": "Steuert, ob Anweisungen aus der Datei „AGENTS.MD“, die in den Wurzeln eines Arbeitsbereichs gefunden werden, allen Chatanfragen angefügt werden.",
+ "chat.useAgentMd.title": "Datei „AGENTS.MD“ verwenden",
+ "chat.useClaudeSkills.description": "Steuert, ob Claude-Skills, die im Arbeitsbereich und im Benutzerverzeichnis unter „.claude/skills“ gefunden werden, in allen Chatanfragen aufgelistet werden. Das Sprachmodell kann diese Qualifikationen bei Bedarf laden, wenn das Lesetool verfügbar ist.",
+ "chat.useClaudeSkills.title": "Claude-Skills verwenden",
+ "chat.useNestedAgentMd.description": "Steuert, ob Anweisungen aus geschachtelten AGENTS.MD-Dateien im Arbeitsbereich in allen Chatanfragen aufgelistet werden. Das Sprachmodell kann diese Qualifikationen bei Bedarf laden, wenn das Lesetool verfügbar ist.",
+ "chat.useNestedAgentMd.title": "Geschachtelte AGENTS.MD-Dateien verwenden",
+ "clear": "Neuen Chat starten",
+ "interactiveSession.editor.fontFamily": "Steuert die Schriftfamilie der Chatcodeblocks.",
+ "interactiveSession.editor.fontSize": "Legt die Schriftgröße der Chatcodeblocks in Pixeln fest.",
+ "interactiveSession.editor.fontWeight": "Steuert die Schriftbreite der Chatcodeblocks.",
+ "interactiveSession.editor.lineHeight": "Legt die Zeilenhöhe der Chatcodeblocks in Pixeln fest. Geben Sie „0“ ein, wenn die Zeilenhöhe aus dem Schriftgrad berechnet werden soll.",
+ "interactiveSession.editor.wordWrap": "Steuert, ob Zeilen in Chatcodeblocks einen Zeilenumbruch haben sollen.",
+ "interactiveSessionConfigurationTitle": "Chat",
+ "mcp.discovery.enabled": "Konfiguriert die Ermittlung von Modellkontextprotokollservern anhand der Konfiguration aus verschiedenen anderen Anwendungen.",
+ "mcp.gallery.serviceUrl": "Konfigurieren der URL des MCP-Katalogdiensts zum Herstellen einer Verbindung mit",
+ "mcp.list": "Server auflisten"
+ },
+ "vs/workbench/contrib/chat/browser/chatAccessibilityProvider": {
+ "chat": "Chat",
+ "multiCodeBlock": "{0}{1}{2} Codeblöcke: {3} {4}",
+ "multiCodeBlockHint": "{0}{1}{2}{3} Codeblöcke: {4}{5} {6}",
+ "multiFileTreeHint": "{0} Dateistrukturen ",
+ "multiTableHint": "{0} Tabellen ",
+ "noCodeBlocks": "{0}{1}{2} {3}",
+ "noCodeBlocksHint": "{0}{1}{2}{3}{4} {5}",
+ "singleCodeBlock": "{0}{1}1 Codeblock: {2} {3}",
+ "singleCodeBlockHint": "{0}{1}{2}1 Codeblock: {3} {4}{5}",
+ "singleFileTreeHint": "1 Dateistruktur ",
+ "singleTableHint": "1 Tabelle ",
+ "toolInvocationsHint": "Chatbestätigung erforderlich: {0}",
+ "toolInvocationsHintDetails": "Details: {0}",
+ "toolInvocationsHintKb": "Chatbestätigung erforderlich: {0}. Drücken Sie {1}, um zu akzeptieren, oder {2}, um abzubrechen.",
+ "toolPostApprovalTitle": "Ergebnisse des Tools genehmigen"
+ },
+ "vs/workbench/contrib/chat/browser/chatAccessibilityService": {
+ "chat.untitledChat": "Unbenannter Chat",
+ "chatTitle": "Chat: {0}",
+ "notificationDetail": "Neue Chatantwort."
+ },
+ "vs/workbench/contrib/chat/browser/chatAgentHover": {
+ "reservedName": "Diese Chaterweiterung verwendet einen reservierten Namen.",
+ "viewExtensionLabel": "Erweiterung anzeigen"
+ },
+ "vs/workbench/contrib/chat/browser/chatAttachmentResolveService": {
+ "imageTooLarge": "Bild ist zu groß",
+ "imageTooLargeMessage": "Das Bild {0} ist zu groß; Sie können es nicht anfügen."
+ },
+ "vs/workbench/contrib/chat/browser/chatAttachmentWidgets": {
+ "chat.NotebookImageAttachment": "Angefügte Notizbuchausgabe, {0}",
+ "chat.attachment": "Angefügter Kontext, {0}",
+ "chat.attachment.clearButton": "Aus Kontext entfernen",
+ "chat.clickToViewContents": "Klicken Sie hier, um den Inhalt der folgenden Elemente anzuzeigen: {0}",
+ "chat.elementAttachment": "Angefügtes Element, {0}",
+ "chat.fileAttachment": "Angefügte Datei, {0}",
+ "chat.fileAttachmentHover": "{0} unterstützt diesen Dateityp nicht.",
+ "chat.fileAttachmentWithRange": "Angefügte Datei, {0}, Zeile {1} an Zeile {2}",
+ "chat.imageAttachment": "Angefügtes Bild, {0}",
+ "chat.imageAttachmentHover": "{0} unterstützt keine Bilder.",
+ "chat.imageAttachmentWarning": "Dieses GIF wurde teilweise ausgelassen - der aktuelle Frame wird gesendet.",
+ "chat.instructionsAttachment": "Anlage mit Anweisungen, {0}",
+ "chat.omittedFileAttachment": "Diese Datei wurde ausgelassen: {0}",
+ "chat.omittedImageAttachment": "Dieses Bild wurde ausgelassen: {0}",
+ "chat.omittedNotebookImageAttachment": "Diese Notizbuchausgabe wurde ausgelassen: {0}",
+ "chat.partiallyOmittedImageAttachment": "Dieses Bild wurde teilweise ausgelassen {0}",
+ "chat.partiallyOmittedNotebookImageAttachment": "Diese Notizbuchausgabe wurde teilweise ausgelassen: {0}",
+ "chat.promptAttachment": "Promptdatei, {0}",
+ "chat.terminalCommand": "Terminalbefehl, {0}",
+ "chat.terminalCommandHoverCommandTitle": "Befehl",
+ "chat.terminalCommandHoverCommandTitleExit": "Befehl: {0}, Exitcode: {1}",
+ "chat.terminalCommandHoverHint": "Klicken, um diesen Befehl im Terminal zu fokussieren.",
+ "chat.terminalCommandHoverOutputTitle": "Ausgabe:",
+ "instructions": "Anweisungen",
+ "instructions.label": "Zusätzliche Anweisungen",
+ "prompt": "Prompt",
+ "resource": "Der vollständige Wert der Chatanlageressource, einschließlich Schema und Pfad",
+ "tool": "{0} − {1}",
+ "toolset": "{0} − {1}"
+ },
+ "vs/workbench/contrib/chat/browser/chatContentParts/chatAgentCommandContentPart": {
+ "rerun": "Erneut ausführen ohne {0}{1}"
+ },
+ "vs/workbench/contrib/chat/browser/chatContentParts/chatAnonymousRateLimitedPart": {
+ "anonymousRateLimited": "Setzen Sie die Unterhaltung fort, indem Sie sich anmelden. Ihr kostenloses Konto erhält 50 Premium-Anfragen pro Monat sowie Zugriff auf weitere Modelle und KI-Funktionen.",
+ "enableMoreAIFeatures": "Weitere KI-Funktionen aktivieren"
+ },
+ "vs/workbench/contrib/chat/browser/chatContentParts/chatChangesSummaryPart": {
+ "chat.viewFileChangesSummary": "Alle Dateiänderungen anzeigen"
+ },
+ "vs/workbench/contrib/chat/browser/chatContentParts/chatCodeCitationContentPart": {
+ "viewMatches": "Übereinstimmungen anzeigen"
+ },
+ "vs/workbench/contrib/chat/browser/chatContentParts/chatCollapsibleContentPart": {
+ "usedReferencesCollapsed": "{0}, zugeklappt",
+ "usedReferencesExpanded": "{0}, aufgeklappt"
+ },
+ "vs/workbench/contrib/chat/browser/chatContentParts/chatCommandContentPart": {
+ "commandButtonDisabled": "Schaltfläche im wiederhergestellten Chat nicht verfügbar"
+ },
+ "vs/workbench/contrib/chat/browser/chatContentParts/chatConfirmationContentPart": {
+ "accept": "Akzeptieren",
+ "dismiss": "Schließen"
+ },
+ "vs/workbench/contrib/chat/browser/chatContentParts/chatConfirmationWidget": {
+ "chat.confirmationWidget.ariaLabel": "Chatbestätigungsdialogfeld {0} {1}",
+ "chat.untitledChat": "Unbenannter Chat",
+ "chatTitle": "Chat: {0}",
+ "notificationDetail": "Zum Fortfahren ist eine Genehmigung erforderlich."
+ },
+ "vs/workbench/contrib/chat/browser/chatContentParts/chatExtensionsContentPart": {
+ "chat.extensions.loading": "Erweiterungen werden geladen ..."
+ },
+ "vs/workbench/contrib/chat/browser/chatContentParts/chatMarkdownContentPart": {
+ "chat.codeblock.applyingEdits": "Bearbeitungen werden angewendet",
+ "chat.codeblock.applyingPercentage": "({0} %) ...",
+ "chat.codeblock.deletions": "{0} Löschvorgänge",
+ "chat.codeblock.deletions.one": "1 Löschung",
+ "chat.codeblock.edited": "Bearbeitet",
+ "chat.codeblock.generating": "Bearbeitungen werden generiert...",
+ "chat.codeblock.insertions": "{0} Einfügungen",
+ "chat.codeblock.insertions.one": "1 Einfügung",
+ "summary": "{0}, {1}, {2} bearbeitet"
+ },
+ "vs/workbench/contrib/chat/browser/chatContentParts/chatMcpServersInteractionContentPart": {
+ "mcp.skip.link": "Überspringen?",
+ "mcp.start.multiple": "Die MCP-Server „{0}“ verfügen möglicherweise über neue Tools und erfordern zum Starten eine Interaktion. [Jetzt starten?]({1})",
+ "mcp.start.single": "Der MCP-Server „{0}“ verfügt möglicherweise über neue Tools und erfordert zum Starten eine Interaktion. [Jetzt starten?]({1})",
+ "mcp.starting": "{0} wird gestartet...",
+ "mcp.starting.servers": "MCP-Server werden gestartet: {0} ...",
+ "mcp.working.mcp": "MCP-Erweiterungen werden aktiviert ..."
+ },
+ "vs/workbench/contrib/chat/browser/chatContentParts/chatMultiDiffContentPart": {
+ "chatEditingSession.fileCounts": "{0} Zeilen hinzugefügt, {1} Zeilen entfernt",
+ "chatMultiDiff.manyFiles": "{0} geänderte Dateien",
+ "chatMultiDiff.oneFile": "1 Datei geändert",
+ "chatMultiDiff.openAllChanges": "Offene Änderungen",
+ "chatMultiDiffList": "Dateiänderungen"
+ },
+ "vs/workbench/contrib/chat/browser/chatContentParts/chatProgressContentPart": {
+ "chat.autoapprove.lmServicePerTool.profile": "Automatisch für dieses Profil genehmigt",
+ "chat.autoapprove.lmServicePerTool.session": "Automatisch für diese Sitzung genehmigt",
+ "chat.autoapprove.lmServicePerTool.workspace": "Automatisch für diesen Arbeitsbereich genehmigt",
+ "chat.autoapprove.setting": "Automatisch von {0} genehmigt",
+ "edit": "Bearbeiten",
+ "toolCallUnresponsive": "Warten auf Antwort des Tools „{0}“ ...",
+ "workingMessage": "Wird ausgeführt..."
+ },
+ "vs/workbench/contrib/chat/browser/chatContentParts/chatPullRequestContentPart": {
+ "chatPullRequest.seeMore": "Mehr anzeigen"
+ },
+ "vs/workbench/contrib/chat/browser/chatContentParts/chatQuotaExceededPart": {
+ "clickToContinue": "Klicken, um es erneut zu versuchen",
+ "enableAdditionalUsage": "Kostenpflichtige Premiumanforderungen verwalten",
+ "upgradeToCopilotPro": "Auf GitHub Copilot Pro upgraden",
+ "waitWarning": "Es kann einige Minuten dauern, bis Änderungen wirksam werden."
+ },
+ "vs/workbench/contrib/chat/browser/chatContentParts/chatReferencesContentPart": {
+ "addToChat": "Datei zum Chat hinzufügen",
+ "chatCollapsibleList": "Reduzierbare Chatreferenzliste",
+ "chatEditingSession.fileCounts": "{0} Zeilen hinzugefügt, {1} Zeilen entfernt",
+ "copyLink": "Link kopieren",
+ "setting.hover": "Einstellung \"{0}\" öffnen",
+ "usedReferencesPlural": "{0} Verweise verwendet",
+ "usedReferencesSingular": "{0} Verweis verwendet"
+ },
+ "vs/workbench/contrib/chat/browser/chatContentParts/chatSuggestNextWidget": {
+ "chat.currentMode": "Aktueller Modus",
+ "chat.proceedFrom": "Mit {0} fortfahren",
+ "chat.suggestNext.item": "{0}"
+ },
+ "vs/workbench/contrib/chat/browser/chatContentParts/chatTextEditContentPart": {
+ "edits0": "Das Vornehmen von Änderungen wurde abgebrochen.",
+ "editsSummary": "Änderungen vorgenommen."
+ },
+ "vs/workbench/contrib/chat/browser/chatContentParts/chatThinkingContentPart": {
+ "chat.thinking.fixed.done.generic": "Ein paar Sekunden lang nachgedacht",
+ "chat.thinking.fixed.done.withHeader": "{0}{1}",
+ "chat.thinking.fixed.progress.withHeader": "Denken: {0}",
+ "chat.thinking.header": "Denkt nach …"
+ },
+ "vs/workbench/contrib/chat/browser/chatContentParts/chatTodoListWidget": {
+ "chat.todoList.clearButton": "Alle Aufgaben löschen",
+ "chat.todoList.clearButton.disabled": "Die Aufgaben können nicht gelöscht werden, während eine Aufgabe ausgeführt wird.",
+ "chat.todoList.collapseButton": "Aufgaben reduzieren",
+ "chat.todoList.currentTask": "{0} ({1}/{2})",
+ "chat.todoList.expandButton": "Aufgaben erweitern",
+ "chat.todoList.item": "{0}, {1}",
+ "chat.todoList.itemWithDescription": "{0}, {1}, {2}",
+ "chat.todoList.status.completed": "abgeschlossen",
+ "chat.todoList.status.inProgress": "in Bearbeitung",
+ "chat.todoList.status.notStarted": "nicht gestartet",
+ "chat.todoList.title": "Aufgaben",
+ "chat.todoList.titleWithCount": "Aufgaben ({0}/{1})",
+ "chatTodoList": "Chat-Aufgabenliste"
+ },
+ "vs/workbench/contrib/chat/browser/chatContentParts/chatToolInputOutputContentPart": {
+ "chat.input": "Eingabe",
+ "chat.output": "Ausgabe"
+ },
+ "vs/workbench/contrib/chat/browser/chatContentParts/chatToolOutputContentSubPart": {
+ "chat.saveResources": "Speichern unter...",
+ "chat.saveResources.error": "Fehler beim Speichern von \"{0}\": {1}",
+ "chat.saveResources.progress": "Ressourcen werden gespeichert ...",
+ "chat.saveResources.reveal": "Ressourcen wurden in {0} gespeichert",
+ "chat.saveResources.title": "Ordner zum Speichern von Ressourcen auswählen"
+ },
+ "vs/workbench/contrib/chat/browser/chatContentParts/chatTreeContentPart": {
+ "treeAriaLabel": "Dateistruktur"
+ },
+ "vs/workbench/contrib/chat/browser/chatContentParts/toolInvocationParts/abstractToolConfirmationSubPart": {
+ "skip": "Überspringen"
+ },
+ "vs/workbench/contrib/chat/browser/chatContentParts/toolInvocationParts/chatExtensionsInstallToolSubPart": {
+ "allow": "Zulassen",
+ "cancel": "Abbrechen",
+ "installExtensions": "Erweiterungen installieren",
+ "installExtensionsConfirmation": "Klicken Sie auf die Schaltfläche „Installieren“ in der Erweiterung und drücken Sie dann auf „Erlauben“, wenn Sie fertig sind."
+ },
+ "vs/workbench/contrib/chat/browser/chatContentParts/toolInvocationParts/chatInputOutputMarkdownProgressPart": {
+ "chat.autoapprove.lmServicePerTool.profile": "Automatisch für dieses Profil genehmigt",
+ "chat.autoapprove.lmServicePerTool.session": "Automatisch für diese Sitzung genehmigt",
+ "chat.autoapprove.lmServicePerTool.workspace": "Automatisch für diesen Arbeitsbereich genehmigt",
+ "chat.autoapprove.setting": "Automatisch von {0} genehmigt",
+ "edit": "Bearbeiten"
+ },
+ "vs/workbench/contrib/chat/browser/chatContentParts/toolInvocationParts/chatTerminalToolConfirmationSubPart": {
+ "autoApprove.button.enable": "Aktivieren",
+ "autoApprove.enable": "Automatische Genehmigung aktivieren...",
+ "autoApprove.markdown": "Dadurch kann eine konfigurierbare Teilmenge von Befehlen autonom im Terminal ausgeführt werden. Es bietet *Bestmöglichen Schutz* und geht davon aus, dass der Agent nicht bösartig handelt.",
+ "autoApprove.markdown2": "Erfahren Sie mehr über die potenziellen Risiken und wie Sie diese vermeiden können.",
+ "autoApprove.title": "Automatische Terminalgenehmigung aktivieren?",
+ "newRule": "Regel für die automatische Genehmigung „{0}“ hinzugefügt",
+ "newRule.plural": "Regeln für die automatische Genehmigung „{0}“ hinzugefügt",
+ "ruleTooltip": "Regel in den Einstellungen anzeigen",
+ "sessionApproval": "Alle Befehle werden für diese Sitzung automatisch genehmigt",
+ "sessionApproval.disable": "Deaktivieren",
+ "skip.detail": "Fortfahren, ohne diesen Befehl auszuführen.",
+ "tool.allow": "Zulassen",
+ "tool.skip": "Überspringen"
+ },
+ "vs/workbench/contrib/chat/browser/chatContentParts/toolInvocationParts/chatTerminalToolProgressPart": {
+ "chat.focusMostRecentTerminal": "Chat: Fokus auf letztes Terminal",
+ "chat.focusMostRecentTerminalOutput": "Chat: Fokus auf letzte Terminalausgabe",
+ "chat.terminalOutputEmpty": "Der Befehl hat keine Ausgabe erzeugt.",
+ "chat.terminalOutputTruncated": "Die Ausgabe wurde auf die ersten {0} Zeilen gekürzt.",
+ "chatTerminalOutputAccessibleViewHeader": "Befehl: {0}",
+ "chatTerminalOutputAriaLabel": "Terminalausgabe für {0}",
+ "focusTerminal": "Terminal fokussieren",
+ "hideTerminalOutput": "Ausgabe ausblenden",
+ "showTerminal": "Terminal anzeigen und fokussieren",
+ "showTerminalOutput": "Ausgabe anzeigen",
+ "terminalToolCommand": "{0}"
+ },
+ "vs/workbench/contrib/chat/browser/chatContentParts/toolInvocationParts/chatToolConfirmationSubPart": {
+ "allow": "Zulassen",
+ "allowReview": "Zulassen und überprüfen",
+ "allowSkip": "Überprüfung des Ergebnisses zulassen und überspringen",
+ "chat.input": "Eingabe",
+ "seeMore": "Mehr anzeigen",
+ "showMore": "Mehr anzeigen",
+ "skip.detail": "Fortfahren, ohne dieses Tool auszuführen"
+ },
+ "vs/workbench/contrib/chat/browser/chatContentParts/toolInvocationParts/chatToolOutputPart": {
+ "chat.toolOutputError": "Fehler beim Rendern der Toolausgabe.",
+ "loading": "Ausgabe des Tools wird gerendert..."
+ },
+ "vs/workbench/contrib/chat/browser/chatContentParts/toolInvocationParts/chatToolPostExecuteConfirmationPart": {
+ "allow": "Zulassen",
+ "approveToolResult": "Toolergebnis genehmigen",
+ "noDisplayableResults": "Keine anzeigbaren Ergebnisse",
+ "noResults": "Keine Ergebnisse zur Anzeige vorhanden.",
+ "skip.post": "Ergebnisse überspringen"
+ },
+ "vs/workbench/contrib/chat/browser/chatContext.contribution": {
+ "chatContextExtPoint": "Fügt Chatkontextintegrationen zum Chat-Widget hinzu.",
+ "chatContextExtPoint.icon": "Das Symbol, das diesem Chatkontextelement zugeordnet ist.",
+ "chatContextExtPoint.id": "Ein eindeutiger Bezeichner für dieses Element.",
+ "chatContextExtPoint.title": "Ein benutzerfreundlicher Name für dieses Element, der für die Anzeige in Menüs verwendet wird."
+ },
+ "vs/workbench/contrib/chat/browser/chatDragAndDrop": {
+ "attacAsContext": "{0} als Kontext anfügen",
+ "dragAndDroppedImageName": "Bild aus URL",
+ "file": "Datei",
+ "folder": "Ordner",
+ "image": "Bild",
+ "notebookOutput": "Ausgabe",
+ "problem": "Problem",
+ "scmHistoryItem": "Ändern",
+ "symbol": "Symbol",
+ "url": "URL"
+ },
+ "vs/workbench/contrib/chat/browser/chatEditing/chatEditingActions": {
+ "accept": "Beibehalten",
+ "accept.file": "Beibehalten",
+ "acceptAllEdits": "Alle Bearbeitungen beibehalten",
+ "addFilesFromReferences": "Hinzufügen von Dateien aus Verweisen",
+ "chat.editRequests.label": "Anforderung bearbeiten",
+ "chat.editing.discardAll.confirmation.manyFiles": "Dadurch werden Änderungen rückgängig gemacht, die in {0} Dateien vorgenommen wurden. Möchten Sie den Vorgang fortsetzen?",
+ "chat.editing.discardAll.confirmation.oneFile": "Dadurch werden Änderungen rückgängig gemacht, die in {0} vorgenommen wurden. Möchten Sie den Vorgang fortsetzen?",
+ "chat.editing.discardAll.confirmation.primaryButton": "Ja",
+ "chat.editing.discardAll.confirmation.title": "Alle Bearbeitungen rückgängigmachen?",
+ "chat.openFileUpdatedBySnapshot.label": "Datei öffnen",
+ "chat.openSnapshot.label": "Dateimomentaufnahme öffnen",
+ "chat.remove.confirmation.checkbox": "Nicht erneut nachfragen",
+ "chat.remove.confirmation.message2": "Hierdurch werden alle nachfolgenden Anforderungen entfernt und Bearbeitungen rückgängig gemacht, die an {0} vorgenommen wurden. Möchten Sie den Vorgang fortsetzen?",
+ "chat.remove.confirmation.multipleEdits.message": "Hierdurch werden alle nachfolgenden Anforderungen entfernt und Bearbeitungen, die an {0} Dateien in Ihrem Arbeitssatz vorgenommen wurden, rückgängig gemacht. Möchten Sie den Vorgang fortsetzen?",
+ "chat.remove.confirmation.primaryButton": "Ja",
+ "chat.remove.confirmation.title": "Möchten Sie {0} Bearbeitungen rückgängig machen?",
+ "chat.removeLast.confirmation.message2": "Hierdurch wird Ihre letzte Anforderung entfernt, und die an der {0}vorgenommenen Änderungen werden rückgängig gemacht. Möchten Sie den Vorgang fortsetzen?",
+ "chat.removeLast.confirmation.multipleEdits.message": "Hierdurch wird Ihre letzte Anforderung entfernt, und Bearbeitungen, die an {0} Dateien in Ihrem Arbeitssatz vorgenommen wurden, werden rückgängig gemacht. Möchten Sie den Vorgang fortsetzen?",
+ "chat.removeLast.confirmation.title": "Möchten Sie die letzte Bearbeitung rückgängig machen?",
+ "chat.restoreCheckpoint.label": "Prüfpunkt wiederherstellen",
+ "chat.restoreCheckpoint.tooltip": "Stellt Arbeitsbereich und Chat auf diesen Punkt wieder her",
+ "chat.restoreLastCheckpoint.label": "Wiederherstellung zum letzten Prüfpunkt",
+ "chat.undoEdits.label": "Anforderungen rückgängig machen",
+ "chatEditing.snapshot": "{0} (Momentaufnahme)",
+ "chatEditing.viewChanges": "Alle Bearbeitungen anzeigen",
+ "chatEditing.viewPreviousEdits": "Vorherige Bearbeitungen anzeigen",
+ "discard": "Rückgängig machen",
+ "discard.file": "Rückgängig machen",
+ "discardAllEdits": "Alle Bearbeitungen rückgängig",
+ "open.fileInDiff": "Änderungen in Diff-Editor öffnen"
+ },
+ "vs/workbench/contrib/chat/browser/chatEditing/chatEditingCodeEditorIntegration": {
+ "diff.generic": "{0} (Änderungen aus dem Chat)"
+ },
+ "vs/workbench/contrib/chat/browser/chatEditing/chatEditingEditorActions": {
+ "accept": "Chatbearbeitungen beibehalten",
+ "accept2": "Beibehalten",
+ "accept3": "Chatbearbeitungen in dieser Datei beibehalten",
+ "accept4": "Alle Bearbeitungen beibehalten",
+ "acceptAllEdits": "Alle Chatbearbeitungen beibehalten",
+ "acceptAllEditsTooltip": "Alle Chatbearbeitungen in dieser Sitzung beibehalten.",
+ "acceptHunk": "Diese Änderung beibehalten",
+ "acceptHunkShort": "Beibehalten",
+ "accessibleDiff": "Barrierefreie Diff-Ansicht für Chatbearbeitungen anzeigen",
+ "diff": "Diff-Editor für Chatbearbeitungen umschalten",
+ "discard": "Rückgängig: Chatbearbeitungen",
+ "discard2": "Rückgängig machen",
+ "discard3": "Rückgängig: Chatbearbeitungen in dieser Datei",
+ "discard4": "Alle Bearbeitungen rückgängig",
+ "label": "Navigationsstatus",
+ "next": "Zur nächsten Chatbearbeitung wechseln",
+ "prev": "Zur vorherigen Chatbearbeitung wechseln",
+ "review": "Überprüfung",
+ "undo": "Diese Änderung rückgängig machen",
+ "undoShort": "Rückgängig machen"
+ },
+ "vs/workbench/contrib/chat/browser/chatEditing/chatEditingEditorContextKeys": {
+ "chat.ctxCursorInChangeRange": "Der Cursor befindet sich innerhalb eines Änderungsbereichs, der durch die Chatbearbeitung vorgenommen wurde.",
+ "chat.ctxEditSessionIsGlobal": "Der aktuelle Editor ist Teil der globalen Bearbeitungssitzung.",
+ "chat.ctxHasRequestInProgress": "Der aktuelle Editor zeigt eine Datei aus einer Bearbeitungssitzung an, die noch in Bearbeitung ist.",
+ "chat.ctxReviewModeEnabled": "Der Überprüfungsmodus für Chatänderungen ist aktiviert.",
+ "chat.hasEditorModifications": "Der aktuelle Editor enthält Chatänderungen.",
+ "chat.isCurrentlyBeingModified": "Der aktuelle Editor wird gerade bearbeitet.",
+ "chatEdits.requestCount": "Die Anzahl der Abschaltungen der Bearbeitungssitzung in diesem Editor"
+ },
+ "vs/workbench/contrib/chat/browser/chatEditing/chatEditingEditorOverlay": {
+ "0Of0": "—",
+ "nOfM": "{0} von {1}",
+ "tooltip": "{0} ({1})",
+ "tooltip_11": "1 Änderung in 1 Datei",
+ "tooltip_1n": "1 Änderung in {0} Dateien",
+ "tooltip_busy": "{0} – Wird ausgeführt...",
+ "tooltip_n1": "{0} Änderungen in 1 Datei",
+ "tooltip_nm": "{0} Änderungen in {1} Dateien",
+ "working": "Wird ausgeführt..."
+ },
+ "vs/workbench/contrib/chat/browser/chatEditing/chatEditingModifiedDocumentEntry": {
+ "chatEditing1": "Chatbearbeitung: „{0}“",
+ "chatEditing2": "Chatbearbeitung",
+ "default": "Chatbearbeitungen"
+ },
+ "vs/workbench/contrib/chat/browser/chatEditing/chatEditingModifiedFileEntry": {
+ "editorSelectionBackground": "Farbe ausstehender Bearbeitungsregionen in der Minimap"
+ },
+ "vs/workbench/contrib/chat/browser/chatEditing/chatEditingModifiedNotebookEntry": {
+ "chatNotebookEdit1": "Chatbearbeitung: „{0}“",
+ "chatNotebookEdit2": "Chatbearbeitung"
+ },
+ "vs/workbench/contrib/chat/browser/chatEditing/chatEditingServiceImpl": {
+ "chat": "Chatbearbeitung",
+ "chatEditing.modified2": "Ausstehende Änderungen aus dem Chat",
+ "join.chatEditingSession": "Chatbearbeitungsverlauf wird gespeichert"
+ },
+ "vs/workbench/contrib/chat/browser/chatEditing/chatEditingSession": {
+ "multiDiffEditorInput.name": "Vorgeschlagene Bearbeitungen"
+ },
+ "vs/workbench/contrib/chat/browser/chatEditing/notebook/chatEditingNotebookEditorIntegration": {
+ "diff.generic": "{0} (Änderungen aus Chat)"
+ },
+ "vs/workbench/contrib/chat/browser/chatEditing/simpleBrowserEditorOverlay": {
+ "cancelSelection": "Klicken Sie hier, um die Auswahl abzubrechen.",
+ "cancelSelectionLabel": "Abbrechen",
+ "chat.configureElements": "Gesendete Anlagen konfigurieren",
+ "chat.expandOverlay": "Überlagerung erweitern",
+ "chat.hideOverlay": "Überlagerung reduzieren",
+ "chat.nextSelection": "Erneut auswählen",
+ "connectingWebviewElement": "Verbindung mit Webansicht wird hergestellt …",
+ "continuousSelectionDropdown": "Fortlaufende Auswahl",
+ "elementCancelMessage": "Auswahl abgebrochen",
+ "elementSelectionComplete": "Element zum Chat hinzugefügt",
+ "elementSelectionInProgress": "Element wird ausgewählt …",
+ "elementSelectionMessage": "Element zum Chat hinzufügen",
+ "finishSelectionLabel": "Fertig",
+ "reopenErrorWebviewElement": "Öffnen Sie die Vorschau erneut.",
+ "selectAnElement": "Klicken Sie hier, um ein Element auszuwählen.",
+ "selectElementDropdown": "Wählen Sie ein Element aus",
+ "startSelection": "Starten"
+ },
+ "vs/workbench/contrib/chat/browser/chatEditor": {
+ "chatEditor.loadingSession": "Wird geladen …"
+ },
+ "vs/workbench/contrib/chat/browser/chatEditorInput": {
+ "chat.startEditing.confirmation.acceptEdits": "Beibehalten und fortfahren",
+ "chat.startEditing.confirmation.discardEdits": "Rückgängig machen und fortfahren",
+ "chat.startEditing.confirmation.pending.message.2": "Möchten Sie ausstehende Bearbeitungen an {0} Dateien beibehalten?",
+ "chat.startEditing.confirmation.pending.message.default": "Das Schließen des Chat-Editors beendet Ihre aktuelle Bearbeitungssitzung.",
+ "chat.startEditing.confirmation.pending.message.default1": "Wenn Sie einen neuen Chat beginnen, wird Ihre aktuelle Bearbeitungssitzung beendet.",
+ "chat.startEditing.confirmation.title": "Neuen Chat starten?",
+ "chatEditorConfirmTitle": "Chat-Editor schließen",
+ "chatEditorLabelIcon": "Symbol der Beschriftung des Chat-Editors.",
+ "chatEditorName": "Chat"
+ },
+ "vs/workbench/contrib/chat/browser/chatFollowups": {
+ "followUpAriaLabel": "Anschlussfrage: {0}"
+ },
+ "vs/workbench/contrib/chat/browser/chatInlineAnchorWidget": {
+ "actions.attach.label": "Datei zum Chat hinzufügen",
+ "actions.copy.label": "Kopieren",
+ "actions.goToDecl.label": "Zur Definition wechseln",
+ "actions.openToSide.label": "An der Seite öffnen",
+ "goToImplementations.label": "Gehe zu Implementierungen",
+ "goToReferences.label": "Gehe zu Verweisen",
+ "goToTypeDefinitions.label": "Gehe zu Typdefinitionen",
+ "miGotoDefinition": "Gehe &&zu Definition",
+ "miGotoImplementations": "Gehe zu &&Implementierungen",
+ "miGotoReference": "Gehe zu &&Verweisen",
+ "miGotoTypeDefinition": "Gehe zu &&Typdefinitionen"
+ },
+ "vs/workbench/contrib/chat/browser/chatInputPart": {
+ "actions.chat.accessibiltyHelp": "Chateingabe {0}{1} Drücken Sie die Eingabetaste, um die Anforderung zu senden. Verwenden Sie {2}, wenn Sie Hilfe bei der Barrierefreiheit des Chats benötigen.",
+ "chatAttachFiles": "Suchen Sie nach Dateien und Kontext, die Ihrer Anforderung hinzugefügt werden sollen.",
+ "chatEditingSession.addSuggested": "Vorschlag hinzufügen",
+ "chatEditingSession.addSuggestion": "Vorschlag hinzufügen {0}",
+ "chatEditingSession.ariaLabelWithCounts": "{0}, {1} Zeilen hinzugefügt, {2} Zeilen entfernt",
+ "chatEditingSession.manyFiles.1": "{0} Dateien geändert",
+ "chatEditingSession.oneFile.1": "1 Datei geändert",
+ "chatEditingSession.toggleWorkingSet": "Geänderte Dateien umschalten.",
+ "chatInput.accessibilityHelp": "Chateingabe {0}{1}.",
+ "chatInput.accessibilityHelpNoKb": "Chateingabe {0}{1} Drücken Sie die Eingabetaste, um die Anforderung zu senden. Verwenden Sie den Befehl „Hilfe zur Barrierefreiheit des Chats“, um weitere Informationen zu erhalten.",
+ "chatInput.mode.agent": "(Agent), bearbeiten Sie Dateien in Ihrem Arbeitsbereich.",
+ "chatInput.mode.ask": "(Fragen), stellen Sie Fragen oder geben Sie für Themen / eingeben.",
+ "chatInput.mode.custom": "({0}), {1}",
+ "chatInput.mode.edit": "(Bearbeiten), bearbeiten Sie Dateien in Ihrem Arbeitsbereich.",
+ "chatInput.model": ", {0}. ",
+ "suggeste.title": "{0} – {1}"
+ },
+ "vs/workbench/contrib/chat/browser/chatListRenderer": {
+ "chatConfirmationAction": "Ausgewählt „{0}“",
+ "checkpointRestore": "Prüfpunkt wiederhergestellt",
+ "didNotFollowInstructions": "Die Anweisungen wurden nicht befolgt",
+ "incompleteCode": "Unvollständiger Code",
+ "incorrectCode": "Falscher Code vorgeschlagen",
+ "missingContext": "Fehlender Kontext",
+ "offensiveOrUnsafe": "Anstößig oder unsicher",
+ "other": "Andere",
+ "poorlyWrittenOrFormatted": "Schlecht geschrieben oder formatiert",
+ "refusedAValidRequest": "Eine gültige Anforderung wurde abgelehnt",
+ "renderFailMsg": "Fehler beim Rendern des Inhalts",
+ "reportIssue": "Ein Problem melden",
+ "requestMarkdownPartTitle": "Zum Bearbeiten klicken",
+ "usedAgent": "[[(erneut ausführen ohne)]]",
+ "usedAgentSlashCommand": "{0} verwendet [[(erneut ausführen ohne)]]",
+ "working": "In Bearbeitung"
+ },
+ "vs/workbench/contrib/chat/browser/chatManagement/chatManagement.contribution": {
+ "chatManagementEditor": "Chat-Management-Editor",
+ "models.clearResults": "Suchergebnisse für Modelle löschen",
+ "modelsManagementEditor": "Models-Management-Editor",
+ "openAiManagement": "Sprachmodelle verwalten"
+ },
+ "vs/workbench/contrib/chat/browser/chatManagement/chatManagementEditor": {
+ "chatManagementSashBorder": "Die Farbe des Rahmens der Splitview-Sash des Chatverwaltungs-Editors.",
+ "enableAIFeatures": "KI-Features verwenden",
+ "enableCopilotButton": "KI-Features aktivieren",
+ "enableMoreAIFeatures": "Weitere KI-Funktionen aktivieren",
+ "plan.businessName": "Copilot Business",
+ "plan.copilot": "Copilot",
+ "plan.enterpriseName": "Copilot Enterprise",
+ "plan.free": "Kostenlos",
+ "plan.freeName": "Copilot Free",
+ "plan.models": "Modelle",
+ "plan.proName": "Copilot Pro",
+ "plan.proPlusName": "Copilot Pro+",
+ "plan.upgradeToPro": "Auf Copilot Pro upgraden",
+ "plan.upgradeToProPlus": "Auf Copilot Pro + upgraden",
+ "plan.usage": "Verwendung",
+ "sectionsListAriaLabel": "Abschnitte",
+ "signInToUseAIFeatures": "Melden Sie sich an, um KI-Funktionen zu verwenden.",
+ "upgradeToCopilotPro": "Auf Copilot Pro upgraden"
+ },
+ "vs/workbench/contrib/chat/browser/chatManagement/chatManagementEditorInput": {
+ "aiManagementEditorInputName": "Copilot verwalten",
+ "aiManagementEditorLabelIcon": "Symbol der Bezeichnung des KI-Management-Editors.",
+ "modelsManagementEditorInputName": "Sprachmodelle",
+ "modelsManagementEditorLabelIcon": "Symbol der Beschriftung des Editors für Modellverwaltung."
+ },
+ "vs/workbench/contrib/chat/browser/chatManagement/chatModelsWidget": {
+ "Search.FullTextSearchPlaceholder": "Zum Suchen eingeben ...",
+ "capabilities": "Funktionen",
+ "capability.agent": "Agentmodus",
+ "capability.tools": "Tools",
+ "capability.vision": "Vision",
+ "clearSearch": "Suche löschen",
+ "collapse": "Reduzieren",
+ "cost": "Multiplikator",
+ "expand": "Erweitern",
+ "filter": "Filter",
+ "filter.hidden": "Ausgeblendet",
+ "filter.visible": "Sichtbar",
+ "filterByCapability": "Filtern nach {0}",
+ "filterByProvider": "Filtern nach {0}",
+ "filterByVisible": "Filtern nach {0}",
+ "model.ariaLabel": "{0} aus {1}",
+ "modelName": "Name",
+ "models.agentMode": "Agentmodus",
+ "models.capabilities": "Funktionen",
+ "models.contextSize": "Kontextgröße",
+ "models.cost": "Multiplikator",
+ "models.enableModelProvider": "Modelle hinzufügen ...",
+ "models.hidden": "In der Chatmodellauswahl anzeigen",
+ "models.hide": "Ausblenden",
+ "models.input": "Eingabe",
+ "models.manageProvider": "Verwalten von {0} ...",
+ "models.output": "Ausgabe",
+ "models.show": "Anzeigen",
+ "models.toolCalling": "Tools",
+ "models.tools": "Tools",
+ "models.userSelectable": "Dieses Modell ist im Chatmodellauswahlmenü ausgeblendet",
+ "models.visible": "In der Chatmodellauswahl ausblenden",
+ "models.vision": "Vision",
+ "modelsTable.ariaLabel": "Sprachmodelle",
+ "tokenLimits": "Kontextgröße",
+ "vendor.ariaLabel": "{0} Anbieter"
+ },
+ "vs/workbench/contrib/chat/browser/chatManagement/chatUsageWidget": {
+ "chatsLabel": "Chatnachrichten",
+ "completionsLabel": "Inlinevorschläge",
+ "plan.additionalPaidEnabled": "Zusätzliche kostenpflichtige Premiumanforderungen aktiviert",
+ "plan.allowanceResets": "Das Guthaben wird am {0} zurückgesetzt.",
+ "plan.chatMessages": "Chatnachrichten",
+ "plan.included": "Eingeschlossen",
+ "plan.inlineSuggestions": "Inlinevorschläge",
+ "plan.premiumRequests": "Premiumanforderungen",
+ "quotaLimited": "Eingeschränkt"
+ },
+ "vs/workbench/contrib/chat/browser/chatOutputItemRenderer": {
+ "chatOutputRenderer.mimeTypes": "MIME-Typen, die dieser Renderer verarbeiten kann",
+ "chatOutputRenderer.viewType": "Eindeutiger Bezeichner für den Renderer.",
+ "vscode.extension.contributes.chatOutputRenderer": "Stellt einen Renderer für bestimmte MIME-Typen in Chatausgaben bereit"
+ },
+ "vs/workbench/contrib/chat/browser/chatParticipant.contribution": {
+ "chat.viewContainer.label": "Chat",
+ "chatCommand": "Ein Kurzname, mit dem auf diesen Befehl in der Benutzeroberfläche verwiesen wird, z. B. `reparieren` oder * `erklären` für Befehle, die ein Problem beheben oder Code erklären. Der Name sollte unter den von diesem Teilnehmer bereitgestellten Befehlen eindeutig sein.",
+ "chatCommandDescription": "Eine Beschreibung dieses Befehls.",
+ "chatCommandDisambiguation": "Metadaten, die beim automatischen Weiterleiten von Benutzerfragen an diesen Chatbefehl helfen.",
+ "chatCommandDisambiguationCategory": "Ein detaillierter Name für diese Kategorie, z. B. \"workspace_questions\" oder \"web_questions\".",
+ "chatCommandDisambiguationDescription": "Eine detaillierte Beschreibung der Arten von Fragen, die für diesen Chatbefehl geeignet sind.",
+ "chatCommandDisambiguationExamples": "Eine Liste repräsentativer Beispielfragen, die für diesen Chatbefehl geeignet sind.",
+ "chatCommandSampleRequest": "Wenn der Benutzer in \"/help\" auf diesen Befehl klickt, wird dieser Text an den Teilnehmer übermittelt.",
+ "chatCommandSticky": "Gibt an, ob durch Aufrufen des Befehls der Chat in einen beständigen Modus versetzt wird, in dem der Befehl automatisch zur Chateingabe für die nächste Nachricht hinzugefügt wird.",
+ "chatCommandWhen": "Eine Bedingung, die erfüllt sein muss, um diesen Befehl zu aktivieren.",
+ "chatCommandsDescription": "Für diesen Chatteilnehmer verfügbare Befehle, die der Benutzer mit einem `/` aufrufen kann.",
+ "chatFailErrorMessage": "Fehler beim Laden des Chats, weil die installierte Version der Copilot-Chaterweiterung nicht mit dieser Version von {0} kompatibel ist. Stellen Sie sicher, dass die Copilot-Chaterweiterung auf dem neuesten Stand ist.",
+ "chatParticipantDescription": "Eine Beschreibung dieses Chatteilnehmers, die in der Benutzeroberfläche angezeigt wird.",
+ "chatParticipantDisambiguation": "Metadaten, die beim automatischen Weiterleiten von Benutzerfragen an diesen Chatteilnehmer helfen.",
+ "chatParticipantDisambiguationCategory": "Ein detaillierter Name für diese Kategorie, z. B. \"workspace_questions\" oder \"web_questions\".",
+ "chatParticipantDisambiguationDescription": "Eine detaillierte Beschreibung der Arten von Fragen, die für diesen Chatteilnehmer geeignet sind.",
+ "chatParticipantDisambiguationExamples": "Eine Liste repräsentativer Beispielfragen, die für diesen Chatteilnehmer geeignet sind.",
+ "chatParticipantFullName": "Der vollständige Name dieses Chatteilnehmers, der als Bezeichnung für Antworten angezeigt wird, die von diesem Teilnehmer stammen. Sofern nicht angegeben, wird {0} verwendet.",
+ "chatParticipantId": "Eine eindeutige ID für diesen Chatteilnehmer.",
+ "chatParticipantName": "Benutzerseitiger Name für diesen Chatteilnehmer. Der Benutzer verwendet \"@\" mit diesem Namen, um den Teilnehmer aufzurufen. Der Name darf keine Leerzeichen enthalten.",
+ "chatParticipantWhen": "Eine Bedingung, die erfüllt sein muss, um diesen Teilnehmer zu aktivieren.",
+ "chatParticipants": "Chatteilnehmer",
+ "chatSampleRequest": "Wenn der Benutzer in \"/help\" auf diesen Teilnehmer klickt, wird dieser Text an den Teilnehmer übermittelt.",
+ "miToggleChat": "&&Chat",
+ "participantCommands": "Befehle",
+ "participantDescription": "Beschreibung",
+ "participantFullName": "Vollständiger Name",
+ "participantName": "Name",
+ "showExtension": "Erweiterung anzeigen",
+ "vscode.extension.contributes.chatParticipant": "Fügt einen Chatteilnehmer hinzu"
+ },
+ "vs/workbench/contrib/chat/browser/chatPasteProviders": {
+ "pastedAttachment.multiple": "{0} und {1} weitere",
+ "pastedAttachment.multipleLines": "{0} Zeilen",
+ "pastedAttachment.oneLine": "1 Zeile",
+ "pastedChatAttachments": "Prompt und Anlagen einfügen",
+ "pastedCodeAttachment": "Eingefügte Codeanlage",
+ "pastedImageAttachment": "Eingefügte Bildanlage",
+ "pastedImageName": "Eingefügtes Bild"
+ },
+ "vs/workbench/contrib/chat/browser/chatQuick": {
+ "termsDisclaimer": "Wenn Sie mit {0} Copilot fortfahren, stimmen Sie den [Nutzungsbedingungen]({2}) und [Datenschutzbestimmungen]({3}) von {1} zu."
+ },
+ "vs/workbench/contrib/chat/browser/chatResponseAccessibleView": {
+ "toolPostApprovalA11yView": "Ergebnisse von {0} genehmigen? Ergebnis: "
+ },
+ "vs/workbench/contrib/chat/browser/chatSessions.contribution": {
+ "chatCommand": "Ein Kurzname, mit dem auf diesen Befehl in der Benutzeroberfläche verwiesen wird, z. B. `reparieren` oder * `erklären` für Befehle, die ein Problem beheben oder Code erklären. Der Name sollte unter den von diesem Teilnehmer bereitgestellten Befehlen eindeutig sein.",
+ "chatCommandDescription": "Eine Beschreibung dieses Befehls.",
+ "chatCommandWhen": "Eine Bedingung, die erfüllt sein muss, um diesen Befehl zu aktivieren.",
+ "chatCommandsDescription": "Für diese Chatsitzung verfügbare Befehle, die der Benutzer mit einem „/“ aufrufen kann.",
+ "chatEditorContributionName": "{0}",
+ "chatSessionsExtPoint": "Fügt Chatsitzungsintegrationen zum Chat-Widget hinzu.",
+ "chatSessionsExtPoint.alternativeIds": "Alternative Bezeichner zur Abwärtskompatibilität.",
+ "chatSessionsExtPoint.canDelegate": "Gibt an, ob Delegierung unterstützt wird. Der Standardwert lautet „true“.",
+ "chatSessionsExtPoint.capabilities": "Optionale Funktionen für diese Chatsitzung.",
+ "chatSessionsExtPoint.chatSessionType": "Eindeutiger Bezeichner für den Typ der Chatsitzung.",
+ "chatSessionsExtPoint.description": "Beschreibung der Chatsitzung für die Verwendung in Menüs und Tooltips.",
+ "chatSessionsExtPoint.displayName": "Ein längerer Name für dieses Element, der für die Anzeige in Menüs verwendet wird.",
+ "chatSessionsExtPoint.icon": "Symbolbezeichner (Codicon-ID) für die Registerkarte des Chat-Sitzungseditors. Zum Beispiel „$(github)“ oder „$(cloud)“.",
+ "chatSessionsExtPoint.inputPlaceholder": "Platzhaltertext, der im Chateingabefeld für diesen Sitzungstyp angezeigt wird.",
+ "chatSessionsExtPoint.name": "Name des dynamisch registrierten Chatteilnehmers (z. B. @agent). Darf keine Leerzeichen enthalten.",
+ "chatSessionsExtPoint.order": "Reihenfolge, in der dieses Element angezeigt werden soll.",
+ "chatSessionsExtPoint.supportsFileAttachments": "Gibt an, ob diese Chatsitzung das Anfügen von Dateien oder Dateiverweisen unterstützt.",
+ "chatSessionsExtPoint.supportsImageAttachments": "Gibt an, ob diese Chatsitzung das Anfügen von Images unterstützt.",
+ "chatSessionsExtPoint.supportsInstructionAttachments": "Gibt an, ob diese Chatsitzung das Anfügen von Anweisungen unterstützt.",
+ "chatSessionsExtPoint.supportsMCPAttachments": "Gibt an, ob diese Chatsitzung das Anfügen von MCP-Ressourcen unterstützt.",
+ "chatSessionsExtPoint.supportsProblemAttachments": "Gibt an, ob diese Chatsitzung das Anfügen von Problemen unterstützt.",
+ "chatSessionsExtPoint.supportsSearchResultAttachments": "Gibt an, ob diese Chatsitzung das Anfügen von Suchergebnissen unterstützt.",
+ "chatSessionsExtPoint.supportsSourceControlAttachments": "Gibt an, ob diese Chatsitzung das Anfügen von Quellcodeverwaltungsänderungen unterstützt.",
+ "chatSessionsExtPoint.supportsSymbolAttachments": "Gibt an, ob diese Chatsitzung das Anfügen von Symbolen unterstützt.",
+ "chatSessionsExtPoint.supportsToolAttachments": "Gibt an, ob diese Chatsitzung das Anfügen von Tools oder Toolverweisen unterstützt.",
+ "chatSessionsExtPoint.welcomeMessage": "Nachrichtentext (unterstützt Markdown), der in der Chat-Willkommensansicht für diesen Sitzungstyp angezeigt werden soll.",
+ "chatSessionsExtPoint.welcomeTips": "Tipptext (unterstützt Markdown und Designsymbole), der in der Willkommensansicht des Chats für diesen Sitzungstyp angezeigt wird.",
+ "chatSessionsExtPoint.welcomeTitle": "Titeltext, der in der Willkommensansicht des Chats für diesen Sitzungstyp angezeigt wird.",
+ "chatSessionsExtPoint.when": "Eine Bedingung, die TRUE lauten muss, damit dieses Element angezeigt wird.",
+ "icon.dark": "Symbolpfad, wenn ein dunkles Design verwendet wird",
+ "icon.light": "Symbolpfad, wenn ein helles Design verwendet wird",
+ "interactiveSession.chatSessionSubMenuTitle": "Chat-Sitzung erstellen",
+ "interactiveSession.openNewSessionEditor": "Neu: {0}"
+ },
+ "vs/workbench/contrib/chat/browser/chatSessions/chatSessionPickerActionItem": {
+ "chat.sessionPicker.label": "Option auswählen"
+ },
+ "vs/workbench/contrib/chat/browser/chatSessions/localChatSessionsProvider": {
+ "chat.sessions.description.finished": "Finished",
+ "chat.sessions.description.waitingForConfirmation": "Waiting for confirmation:",
+ "chat.sessions.description.working": "Working..."
+ },
+ "vs/workbench/contrib/chat/browser/chatSessions/view/chatSessionsView": {
+ "chat.agent.sessions": "Agent-Sitzungen",
+ "chat.agent.sessions.title": "Agent-Sitzungen",
+ "chat.sessions.gettingStarted": "Erste Schritte",
+ "chatSessions.noResults": "Keine lokalen Chat-Agent-Sitzungen\r\n[Agentsitzung starten](Befehl:{0})"
+ },
+ "vs/workbench/contrib/chat/browser/chatSessions/view/sessionsTreeRenderer": {
+ "chat.sessions.archivedSessions": "Verlauf",
+ "chat.sessions.groupNode.multiple": "{0} Sitzungen",
+ "chat.sessions.groupNode.single": "1 Sitzung",
+ "chat.sessions.lastActivity": "Letzte Aktivität: {0}",
+ "chatSessionInputAriaLabel": "Sitzungsname eingeben. Drücken Sie zur Bestätigung die EINGABETASTE oder ESC, um den Vorgang abzubrechen."
+ },
+ "vs/workbench/contrib/chat/browser/chatSessions/view/sessionsViewPane": {
+ "chatSession.selectOption": "Mehr ...",
+ "chatSessions": "Chatsitzungen",
+ "chatSessions.dragLabel": "{0} Agentsitzungen",
+ "chatSessions.installExtensions": "Chaterweiterungen installieren",
+ "chatSessions.learnMoreGHCodingAgent": "Weitere Informationen zum GitHub Copilot-Codierungsagent",
+ "chatSessions.loading": "Chatsitzungen werden geladen…",
+ "chatSessions.refreshing": "Chatsitzungen werden aktualisiert…"
+ },
+ "vs/workbench/contrib/chat/browser/chatSetup": {
+ "chat.category": "Chat",
+ "chatSetupError": "Beim Einrichten des Chats ist ein Fehler aufgetreten.",
+ "chatTookLongWarning": "Die Vorbereitung von Chat hat zu lange gedauert. Stellen Sie sicher, dass Sie bei {0} angemeldet sind und dass die Erweiterung `{1}` installiert und aktiviert ist.",
+ "chatTookLongWarningAnonymous": "Die Vorbereitung von Chat hat zu lange gedauert. Stellen Sie sicher, dass die Erweiterung „{0}“ installiert und aktiviert ist.",
+ "chatWorkspaceTrust": "KI-Features werden derzeit nur in vertrauenswürdigen Arbeitsbereichen unterstützt.",
+ "continueWith": "Weiter mit {0}",
+ "copilotUnavailableWarning": "Es konnte keine Antwort erzeugt werden. Versuchen Sie es erneut.",
+ "enableMore": "Weitere KI-Funktionen aktivieren",
+ "enterpriseInstance": "Was ist Ihr {0} instance?",
+ "enterpriseInstancePlaceholder": "z. B. \"oktocat\" oder \"https://octocat.ghe.com\"...",
+ "explain": "Erklären",
+ "fix": "Beheben",
+ "forceSignIn": "Melden Sie sich an, um KI-Funktionen zu verwenden.",
+ "generate": "Generieren",
+ "generateDocs": "Dokumente generieren",
+ "generateTests": "Tests generieren",
+ "hideChatSetup": "Weitere Informationen zum Ausblenden von KI-Funktionen",
+ "installingChat": "Chat wird vorbereitet …",
+ "invalidEnterpriseInstance": "Sie müssen eine gültige {0}-Instanz eingeben (z. B. \"octocat\" oder \"https://octocat.ghe.com\").",
+ "manageOverages": "GitHub Copilot-Überschreitungen verwalten",
+ "managePlan": "Auf GitHub Copilot Pro upgraden",
+ "modify": "Ändern",
+ "restartExtensionHost.reason.disable": "Deaktivierung von KI-Features",
+ "restartExtensionHost.reason.enable": "Aktivierung von KI-Features",
+ "retry": "Wiederholen",
+ "review": "Code Review",
+ "settingUpCopilotNeeded": "Sie müssen GitHub Copilot einrichten und angemeldet sein, um die Chatfunktion verwenden zu können.",
+ "settings": "Indem Sie fortfahren, stimmen Sie den [Nutzungsbedingungen]({1}) und [Datenschutzbestimmungen]({2}) von {0} zu. {3} Copilot kann [öffentlichen Code]({4}) Vorschläge anzeigen und Ihre Daten zur Verbesserung des Produkts verwenden. Sie können diese [Einstellungen]({5}) jederzeit ändern.",
+ "settingsAnonymous": "Indem Sie fortfahren, stimmen Sie den [Nutzungsbedingungen]({1}) und [Datenschutzbestimmungen]({2}) von {0} zu.",
+ "setupAIButton": "KI-Features verwenden",
+ "setupChatProgress": "Chat wird vorbereitet …",
+ "setupChatSignIn2": "Anmelden bei {0}...",
+ "setupErrorDialog": "Beim Einrichten des Chats ist ein Fehler aufgetreten. Möchten Sie es erneut versuchen?",
+ "setupToolDisplayName": "Neuer Arbeitsbereich",
+ "setupToolsDescription": "Einen neuen Arbeitsbereich in VS Code einrichten.",
+ "signIn": "Melden Sie sich an, um KI-Funktionen zu verwenden.",
+ "skipForNow": "Vorerst überspringen",
+ "startUsing": "KI-Funktionen verwenden",
+ "terminalAgentDescription": "Fragen Sie, wie Sie etwas im Terminal tun können.",
+ "triggerChatSetup": "KI-Features mit Copilot kostenlos verwenden …",
+ "triggerChatSetupFromAccounts": "Melden Sie sich an, um KI-Funktionen zu verwenden …",
+ "trustNeeded": "Sie müssen diesem Arbeitsbereich vertrauen, um den Chat verwenden zu können.",
+ "unknownSetupError": "Beim Einrichten des Chats ist ein Fehler aufgetreten. Möchten Sie es erneut versuchen?",
+ "unknownSignInError": "Fehler bei der Anmeldung bei {0}. Möchten Sie es noch mal versuchen?",
+ "unknownSignInErrorDetail": "Sie müssen angemeldet sein, um KI-Funktionen nutzen zu können.",
+ "vscodeAgentDescription": "Fragen VS Code stellen",
+ "waitingChat": "Chat wird vorbereitet …",
+ "waitingChat2": "Chat ist fast fertig …",
+ "willResolveTo": "Wird aufgelöst in {0}",
+ "workspaceAgentDescription": "Nach Ihrem Arbeitsbereich fragen"
+ },
+ "vs/workbench/contrib/chat/browser/chatStatus": {
+ "activateDescription": "Richten Sie Copilot ein, um KI-Features zu nutzen.",
+ "activeDescriptionAnonymous": "Wenn Sie mit {0} Copilot fortfahren, stimmen Sie den [Nutzungsbedingungen]({2}) und [Datenschutzbestimmungen]({3}) von {1} zu.",
+ "additionalUsageDisabled": "Zusätzliche kostenpflichtige Premiumanforderungen deaktiviert",
+ "additionalUsageEnabled": "Zusätzliche kostenpflichtige Premiumanforderungen aktiviert",
+ "anonymousTitle": "Copilot-Nutzung",
+ "cancelSnooze": "Erneutes Erinnern deaktivieren",
+ "chatAgentSessionsTitle": "Agent-Sitzungen",
+ "chatAndCompletionsQuotaExceededStatus": "Kontingent erreicht",
+ "chatQuotaExceededStatus": "Chatkontingent erreicht",
+ "chatSessionInProgressStatus": "1 Agentsitzung wird ausgeführt",
+ "chatSessionsInProgressStatus": "{0} Agentsitzungen werden ausgeführt",
+ "chatStatus": "Copilot-Status",
+ "chatStatusAria": "Copilot-Status",
+ "chatsLabel": "Chatnachrichten",
+ "completions.plus5min": "+5 Min.",
+ "completions.remainingTime": "verbleibend",
+ "completions.snooze5minutes": "Inlinevorschläge für 5 Minuten ausblenden",
+ "completions.snooze5minutesTitle": "Vorschläge für 5 Min. ausblenden",
+ "completions.snoozeAdditional5minutes": "Nach weiteren 5 Minuten erneut erinnern",
+ "completions.snoozeTimeDescription": "Inlinevorschläge werden für die verbleibende Dauer ausgeblendet.",
+ "completionsDisabledStatus": "Inlinevorschläge deaktiviert",
+ "completionsLabel": "Inlinevorschläge",
+ "completionsQuotaExceededStatus": "Kontingent für Inlinevorschläge erreicht",
+ "completionsSnoozedStatus": "Inlinevorschläge pausiert",
+ "copilotDisabledStatus": "Copilot deaktiviert",
+ "enableAIFeatures": "KI-Features verwenden",
+ "enableAdditionalUsage": "Kostenpflichtige Premiumanforderungen verwalten",
+ "enableCopilotButton": "KI-Features aktivieren",
+ "enableDescription": "Ermöglichen Sie Copilot die Verwendung von KI-Features.",
+ "enableMoreAIFeatures": "Weitere KI-Funktionen aktivieren",
+ "enableMoreDescription": "Melden Sie sich an, um weitere Copilot-KI-Funktionen zu aktivieren.",
+ "finishSetup": "Setup beenden",
+ "gaugeBackground": "Hintergrundfarbe des Messgeräts.",
+ "gaugeBorder": "Rahmenfarbe des Messgeräts.",
+ "gaugeErrorBackground": "Hintergrundfarbe für Messgerätfehler.",
+ "gaugeErrorForeground": "Vordergrundfarbe für Messgerätfehler.",
+ "gaugeForeground": "Vordergrundfarbe für Messgerät.",
+ "gaugeWarningBackground": "Hintergrundfarbe für Messgerätwarnung.",
+ "gaugeWarningForeground": "Vordergrundfarbe der Messgerätwarnung.",
+ "inProgressChatSession": "$(loading~spin) {0} wird ausgeführt",
+ "inlineSuggestions": "Inlinevorschläge",
+ "learnMore": "Weitere Informationen",
+ "limitQuota": "Das Guthaben wird am {0} zurückgesetzt.",
+ "notSignedIn": "Abgemeldet",
+ "premiumChatsLabel": "Premiumanforderungen",
+ "quotaDisplay": "{0}%",
+ "quotaDisplayWithOverage": "+{0} Anforderungen",
+ "quotaLabel": "Chat verwalten",
+ "quotaLimited": "Eingeschränkt",
+ "quotaTooltip": "Chat verwalten",
+ "quotaUnlimited": "Eingeschlossen",
+ "settings.codeCompletions.allFiles": "Alle Dateien",
+ "settings.codeCompletions.language": "{0}",
+ "settings.nextEditSuggestions": "Empfehlungen für die nächste Bearbeitung",
+ "settings.snooze": "Erneut erinnern",
+ "settingsLabel": "Einstellungen",
+ "settingsTooltip": "Einstellungen öffnen",
+ "signInDescription": "Melden Sie sich an, um die KI-Features von Copilot zu nutzen.",
+ "signInToUseAIFeatures": "Melden Sie sich an, um KI-Funktionen zu verwenden.",
+ "upgradeToCopilotPro": "Auf GitHub Copilot Pro upgraden",
+ "usageTitle": "Copilot-Nutzung",
+ "viewChatSessionsLabel": "Anzeigen von Agentsitzungen",
+ "viewChatSessionsTooltip": "Anzeigen von Agentsitzungen"
+ },
+ "vs/workbench/contrib/chat/browser/chatWidget": {
+ "agentTitle": "Erstellen mit Agent",
+ "chat.history.list": "Chatverlauf",
+ "chat.history.showMore": "Chatverlauf ...",
+ "chat.history.showMoreAriaLabel": "Chatverlauf öffnen",
+ "chat.history.showMoreHover": "Chatverlauf anzeigen ...",
+ "chat.input.placeholder.lockedToAgent": "Mit {0} chatten",
+ "chatDescription": "Fragen zu Ihrem Code stellen",
+ "chatDisclaimer": "KI-Antworten sind möglicherweise ungenau.",
+ "chatWidget.instructions": "[Agentanweisungen generieren]({0}), um KI in Ihre Codebasis zu integrieren",
+ "chatWidget.promptFile.commandLabel": "{0}",
+ "chatWidget.suggestedPrompts.buildWorkspace": "Arbeitsbereich erstellen",
+ "chatWidget.suggestedPrompts.buildWorkspacePrompt": "So bauen Sie diesen Arbeitsbereich auf.",
+ "chatWidget.suggestedPrompts.findConfig": "Konfiguration anzeigen",
+ "chatWidget.suggestedPrompts.findConfigPrompt": "Wo ist die Konfiguration für dieses Projekt definiert?",
+ "chatWidget.suggestedPrompts.gettingStarted": "@vscode fragen",
+ "chatWidget.suggestedPrompts.gettingStartedPrompt": "@vscode So ändern Sie Design in den hellen Modus.",
+ "chatWidget.suggestedPrompts.newProject": "Projekt erstellen",
+ "chatWidget.suggestedPrompts.newProjectPrompt": "Erstellen eines #new Hallo Welt-Projekts in TypeScript",
+ "codingAgentTitle": "An {0} delegieren",
+ "copilotCodingAgentMessage": "Diese Chatsitzung wird an den {0}-[Codierungsagent]({1}) weitergeleitet, wo die Arbeit im Hintergrund abgeschlossen wird. ",
+ "editsTitle": "Im Kontext bearbeiten",
+ "genericCodingAgentMessage": "Diese Chatsitzung wird an den {0}-Codierungsagent weitergeleitet, wo die Arbeit im Hintergrund abgeschlossen wird. ",
+ "scrollDownButtonLabel": "Nach unten scrollen",
+ "settings": "Wenn Sie mit {0} Copilot fortfahren, stimmen Sie den [Nutzungsbedingungen]({2}) und [Datenschutzbestimmungen]({3}) von {1} zu."
+ },
+ "vs/workbench/contrib/chat/browser/codeBlockPart": {
+ "chat.codeBlock.toolbar": "Codeblocksymbolleiste",
+ "chat.codeBlockHelp": "Codeblock",
+ "chat.codeBlockLabel": "Codeblock {0}",
+ "chat.codeBlockToolbarLabel": "Codeblock {0}",
+ "chat.compareCodeBlockLabel": "Codebearbeitungen",
+ "chat.edits.1": "1 Änderung in [[``{0}``]] angewendet",
+ "chat.edits.N": "{0} Änderungen in [[``{1}``]] angewendet",
+ "chat.edits.rejected": "Änderungen in [[''{0}'']] wurden abgelehnt",
+ "interactive.compare.apply.confirm": "Die Originaldatei wurde geändert.",
+ "interactive.compare.apply.confirm.detail": "Möchten Sie die Änderungen trotzdem anwenden?",
+ "modified": "Geändert",
+ "original": "Original",
+ "vulnerabilitiesPlural": "{0} Sicherheitsrisiken",
+ "vulnerabilitiesSingular": "{0} Sicherheitsrisiko"
+ },
+ "vs/workbench/contrib/chat/browser/contrib/chatInputCompletions": {
+ "activeFile": "Aktive Datei",
+ "fileEntryDescription": "{0} ({1})",
+ "installLabel": "Chaterweiterungen installieren...",
+ "mcp.prompt.error": "Fehler beim Auflösen der Eingabeaufforderung: {0}",
+ "mcp.prompt.image": "Bild der Eingabeaufforderung",
+ "mcp.prompt.resource": "Eingabeaufforderungsressource",
+ "tool_source_completion": "{0}: {1}"
+ },
+ "vs/workbench/contrib/chat/browser/contrib/chatInputEditorHover": {
+ "hoverAccessibilityChatAgent": "Hier befindet sich ein Chat-Agent-Hoverteil."
+ },
+ "vs/workbench/contrib/chat/browser/contrib/chatInputRelatedFilesContrib": {
+ "relatedFile": "{0} (empfohlen)"
+ },
+ "vs/workbench/contrib/chat/browser/contrib/screenshot": {
+ "screenshot": "Bildschirmfoto"
+ },
+ "vs/workbench/contrib/chat/browser/languageModelToolsConfirmationService": {
+ "allowGlobally": "Immer zulassen",
+ "allowGloballyPost": "Immer ohne Überprüfung zulassen",
+ "allowGloballyPostTooltip": "Lassen Sie immer zu, dass Ergebnisse dieses Tools ohne Bestätigung gesendet werden.",
+ "allowGloballyTooltip": "Führen Sie dieses Tool immer ohne Bestätigung aus.",
+ "allowServerGlobally": "Tools aus {0} immer zulassen",
+ "allowServerGloballyPost": "Tools aus {0} immer ohne Überprüfung zulassen",
+ "allowServerGloballyPostTooltip": "Lassen Sie immer zu, dass Ergebnisse aller Tools von diesem Server ohne Bestätigung gesendet werden.",
+ "allowServerGloballyTooltip": "Lassen Sie immer zu, dass alle Tools von diesem Server ohne Bestätigung ausgeführt werden.",
+ "allowServerSession": "Tools aus {0} in dieser Sitzung zulassen",
+ "allowServerSessionPost": "Tools aus {0} ohne Überprüfung in dieser Sitzung zulassen",
+ "allowServerSessionPostTooltip": "Lassen Sie zu, dass Ergebnisse aller Tools von diesem Server ohne Bestätigung in dieser Sitzung gesendet werden.",
+ "allowServerSessionTooltip": "Lassen Sie zu, dass alle Tools von diesem Server ohne Bestätigung in dieser Sitzung ausgeführt werden.",
+ "allowServerWorkspace": "Tools aus {0} in diesem Arbeitsbereich zulassen",
+ "allowServerWorkspacePost": "Tools aus {0} ohne Überprüfung in dieses Arbeitsbereichs zulassen",
+ "allowServerWorkspacePostTooltip": "Lassen Sie zu, dass Ergebnisse aller Tools von diesem Server ohne Bestätigung in diesem Arbeitsbereich gesendet werden.",
+ "allowServerWorkspaceTooltip": "Erlaubt die Ausführung aller Tools von diesem Server in diesem Arbeitsbereich ohne Bestätigung.",
+ "allowSession": "In dieser Sitzung zulassen",
+ "allowSessionPost": "Ohne Überprüfung in dieser Sitzung zulassen",
+ "allowSessionPostTooltip": "Lassen Sie zu, dass Ergebnisse dieses Tools ohne Bestätigung in dieser Sitzung gesendet werden.",
+ "allowSessionTooltip": "Lassen Sie dieses Tool in dieser Sitzung ohne Bestätigung ausführen.",
+ "allowWorkspace": "In diesem Arbeitsbereich zulassen",
+ "allowWorkspacePost": "Ohne Überprüfung in diesem Arbeitsbereich zulassen",
+ "allowWorkspacePostTooltip": "Erlaubt das Senden von Ergebnissen aus diesem Tool ohne Bestätigung in diesem Arbeitsbereich.",
+ "allowWorkspaceTooltip": "Lassen Sie dieses Tool ohne Bestätigung in diesem Arbeitsbereich ausführen.",
+ "configureGlobalToolApprovals": "Globale Toolgenehmigungen konfigurieren",
+ "configureSessionToolApprovals": "Sitzungstoolgenehmigungen konfigurieren",
+ "configureWorkspaceToolApprovals": "Genehmigungen für Arbeitsbereichstools konfigurieren",
+ "continueWithoutReviewing": "Fortfahren, ohne Toolergebnisse zu überprüfen",
+ "continueWithoutReviewingResults": "ohne Überprüfung des Ergebnisses",
+ "runToolsWithoutApproval": "Ausführen beliebiger Tools ohne Genehmigung",
+ "runWithoutApproval": "ohne Genehmigung",
+ "workspaceScope": "Nur für diesen Arbeitsbereich konfigurieren"
+ },
+ "vs/workbench/contrib/chat/browser/languageModelToolsService": {
+ "autoApprove2.button.disable": "Deaktivieren",
+ "autoApprove2.button.enable": "Aktivieren",
+ "autoApprove2.markdown": "Die globale automatische Genehmigung, auch bekannt als „YOLO-Modus“, deaktiviert die manuelle Genehmigung vollständig für _alle Tools in allen Arbeitsbereichen_, sodass der Agent völlig autonom handeln kann. Dies ist äußerst gefährlich und wird *nie* empfohlen, selbst containerisierte Umgebungen wie [Codespaces](https://github.com/features/codespaces) und [Dev Containers](https://marketplace.visualstudio.com/items?itemName=ms-vscode-remote.remote-containers) leiten Benutzerschlüssel in den Container weiter, die kompromittiert werden könnten.\r\n\r\n**Dieses Feature deaktiviert [kritische Sicherheitsvorkehrungen](https://code.visualstudio.com/docs/copilot/security) und erleichtert es Angreifern, den Computer zu kompromittieren.**",
+ "autoApprove2.title": "Globale automatische Genehmigung aktivieren?",
+ "copilot.toolSet.launch.description": "Launch and run code, binaries or tests in the workspace",
+ "copilot.toolSet.vscode.description": "Use VS Code features",
+ "defaultToolConfirmation.disclaimer": "Die automatische Genehmigung für „{0}“ wird durch „{1}“ eingeschränkt.",
+ "defaultToolConfirmation.message": "Das Tool „{0}“ ausführen?",
+ "defaultToolConfirmation.title": "Ausführung des Tools zulassen?"
+ },
+ "vs/workbench/contrib/chat/browser/modelPicker/modelPickerActionItem": {
+ "chat.manageModels": "Modelle verwalten...",
+ "chat.manageModels.tooltip": "Sprachmodelle verwalten",
+ "chat.modelPicker.label": "Modell auswählen",
+ "chat.moreModels": "Sprachmodelle hinzufügen",
+ "chat.moreModels.tooltip": "Sprachmodelle hinzufügen",
+ "chat.morePremiumModels": "Premiummodelle hinzufügen",
+ "chat.morePremiumModels.tooltip": "Premiummodelle hinzufügen"
+ },
+ "vs/workbench/contrib/chat/browser/modelPicker/modePickerActionItem": {
+ "built-in": "Integriert",
+ "custom": "Benutzerdefiniert"
+ },
+ "vs/workbench/contrib/chat/browser/promptSyntax/attachInstructionsAction": {
+ "attach-instructions.capitalized.ellipses": "Anweisungen anfügen ...",
+ "chatContext.attach.instructions.label": "Anweisungen …",
+ "commands.instructions.select-dialog.placeholder": "Anweisungsdateien zum Anfügen auswählen",
+ "commands.prompt.manage-dialog.placeholder": "Wählen Sie die Anweisungsdatei aus, die geöffnet werden soll.",
+ "configure-instructions": "Anweisungen konfigurieren ...",
+ "configure-instructions.short": "Chatanweisungen",
+ "configureInstructions": "Anweisungen konfigurieren ...",
+ "placeholder": "Anweisungsdateien zum Anfügen auswählen"
+ },
+ "vs/workbench/contrib/chat/browser/promptSyntax/chatModeActions": {
+ "configure-agents": "Benutzerdefinierte Agenten konfigurieren …",
+ "configure-agents.short": "Benutzerdefinierte Agenten",
+ "configure.agent.prompts.placeholder": "Wählen Sie die benutzerdefinierten Agents aus, die im Agentenauswahlfenster geöffnet und deren Sichtbarkeit konfiguriert werden sollen.",
+ "select-agent": "Benutzerdefinierte Agenten konfigurieren …"
+ },
+ "vs/workbench/contrib/chat/browser/promptSyntax/newPromptFileActions": {
+ "commands.new.agent.local.title": "Neuer benutzerdefinierter Agent ...",
+ "commands.new.instructions.local.title": "Neue Anweisungsdatei …",
+ "commands.new.prompt.local.title": "Neuer Promptdatei …",
+ "commands.new.untitled.prompt.title": "Neue unbenannte Promptdatei",
+ "enable.capitalized": "Aktivieren",
+ "learnMore.capitalized": "Weitere Informationen",
+ "workbench.command.prompts.create.user.enable-sync-notification": "Möchten Sie Ihre Benutzeraufforderungs-, Anweisungs- und benutzerdefinierten Agent-Dateien mit der Einstellungssynchronisierung sichern und synchronisieren?"
+ },
+ "vs/workbench/contrib/chat/browser/promptSyntax/pickers/askForPromptName": {
+ "askForAgentFileName.placeholder": "Neuen Namen für die Agentdatei eingeben",
+ "askForInstructionsFileName.placeholder": "Geben Sie den Namen der Anweisungsdatei ein",
+ "askForPromptFileName.error.empty": "Geben Sie einen Namen ein.",
+ "askForPromptFileName.error.exists": "Für den angegebenen Namen existiert bereits eine Datei.",
+ "askForPromptFileName.error.invalid": "Der Name enthält ungültige Zeichen.",
+ "askForPromptFileName.placeholder": "Geben Sie den Namen der Promptdatei ein.",
+ "askForRenamedAgentFileName.placeholder": "Neuen Namen für die Agentdatei eingeben",
+ "askForRenamedInstructionsFileName.placeholder": "Neuen Namen für die Anweisungsdatei eingeben",
+ "askForRenamedPromptFileName.placeholder": "Neuen Namen für die Promptdatei eingeben"
+ },
+ "vs/workbench/contrib/chat/browser/promptSyntax/pickers/askForPromptSourceFolder": {
+ "agent.copy.location.placeholder": "Speicherort auswählen, an den die Agentdatei kopiert werden soll ...",
+ "agent.move.location.placeholder": "Speicherort auswählen, an den die Agentdatei verschoben werden soll ...",
+ "commands.agent.create.ask-folder.empty.docs-label": "Erfahren Sie, wie Sie benutzerdefinierte Agents konfigurieren.",
+ "commands.agent.create.ask-folder.empty.placeholder": "Keine Agentquellordner gefunden.",
+ "commands.instructions.create.ask-folder.empty.docs-label": "Weitere Informationen zum Konfigurieren wiederverwendbare Anweisungen",
+ "commands.instructions.create.ask-folder.empty.placeholder": "Keine Quellordner für Anweisungen gefunden.",
+ "commands.prompts.create.ask-folder.empty.docs-label": "Erfahren Sie, wie Sie wiederverwendbare Prompts konfigurieren.",
+ "commands.prompts.create.ask-folder.empty.placeholder": "Keine Quellordner für Prompts gefunden.",
+ "commands.prompts.create.source-folder.current-workspace": "Aktueller Arbeitsbereich",
+ "current.folder": "Aktueller Speicherort",
+ "instructions.copy.location.placeholder": "Speicherort auswählen, an den die Anweisungsdatei kopiert werden soll ...",
+ "instructions.move.location.placeholder": "Speicherort auswählen, an den die Anweisungsdatei verschoben werden soll ...",
+ "prompt.copy.location.placeholder": "Speicherort auswählen, an den die Promptdatei kopiert werden soll ...",
+ "prompt.move.location.placeholder": "Speicherort auswählen, an den die Promptdatei verschoben werden soll ...",
+ "workbench.command.agent.create.location.placeholder": "Wählen Sie einen Speicherort aus, an dem die Agentdatei erstellt werden soll ...",
+ "workbench.command.instructions.create.location.placeholder": "Wählen Sie einen Speicherort aus, an dem die Anleitungsdatei erstellt werden soll...",
+ "workbench.command.prompt.create.location.placeholder": "Wählen Sie einen Speicherort aus, an dem die Prompt-Datei erstellt werden soll..."
+ },
+ "vs/workbench/contrib/chat/browser/promptSyntax/pickers/promptFilePickers": {
+ "commands.new-agentfile.select-dialog.label": "Neuen benutzerdefinierten Agent erstellen ...",
+ "commands.new-instructionsfile.select-dialog.label": "Neue Anweisungsdatei...",
+ "commands.new-promptfile.select-dialog.label": "Neue Promptdatei …",
+ "commands.prompts.use.select-dialog.delete-prompt.confirm.message": "Möchten Sie \"{0}\" löschen?",
+ "commands.update-instructions.select-dialog.label": "Agentenanweisungen generieren ...",
+ "copy": "Kopieren",
+ "delete": "Löschen",
+ "help.agent": "Hilfe zu benutzerdefinierten Agent-Dateien anzeigen",
+ "help.instructions": "Hilfe zu Anweisungsdateien anzeigen",
+ "help.prompt": "Hilfe zu Promptdateien anzeigen",
+ "hiddenInAgentPicker": "Aus Chatansichts-Agentauswahl ausgeblendet",
+ "hiddenLabelInfo": "{0} (ausgeblendet)",
+ "makeInvisible": "Aus Agentauswahl ausblenden",
+ "makeVisible": "Ausgeblendet in der Chatansichts-Agentauswahl. Zum Anzeigen klicken.",
+ "open": "Im Editor öffnen",
+ "rename": "Verschieben und/oder umbenennen",
+ "searching": "Dateisystem wird durchsucht ...",
+ "separator.extensions": "Erweiterungen",
+ "separator.user": "Benutzerdaten",
+ "separator.workspace": "Arbeitsbereich",
+ "separator.workspace-agent-instructions": "Agentenanweisungen"
+ },
+ "vs/workbench/contrib/chat/browser/promptSyntax/promptCodingAgentActionOverlay": {
+ "runPromptWithCodingAgent": "Prompt-Datei in einem Remote-Coding-Agent ausführen",
+ "runWithCodingAgent.label": "{0} Delegieren an Copilot-Codierungs-Agent"
+ },
+ "vs/workbench/contrib/chat/browser/promptSyntax/promptToolsCodeLensProvider": {
+ "configure-tools.capitalized.ellipsis": "Tools konfigurieren ...",
+ "placeholder": "Tools auswählen"
+ },
+ "vs/workbench/contrib/chat/browser/promptSyntax/promptUrlHandler": {
+ "confirmInstallAgent": "Eine externe Anwendung möchte einen benutzerdefinierten Agent mit Inhalt aus einer URL erstellen. Möchten Sie den Vorgang fortsetzen, indem Sie einen Zielordner und Namen auswählen?",
+ "confirmInstallInstructions": "Eine externe Anwendung möchte eine Anleitungsdatei mit Inhalt aus einer URL erstellen. Möchten Sie den Vorgang fortsetzen, indem Sie einen Zielordner und Namen auswählen?",
+ "confirmInstallPrompt": "Eine externe Anwendung möchte eine Promptdatei mit Inhalt aus einer URL erstellen. Möchten Sie den Vorgang fortsetzen, indem Sie einen Zielordner und Namen auswählen?",
+ "confirmOpenDetail2": "Dadurch wird auf {0} zugegriffen.\r\n\r\n",
+ "confirmOpenDetail3": "Wenn Sie diese Anforderung nicht initiiert haben, handelt es sich möglicherweise um einen Angriffsversuch auf Ihr System. Wenn Sie keine explizite Aktion zum Initiieren dieser Anforderung durchgeführt haben, drücken Sie \"Nein\".",
+ "failed": "Fehler beim Abrufen der URL: {0}",
+ "noButton": "Nein",
+ "yesButton": "&&Ja"
+ },
+ "vs/workbench/contrib/chat/browser/promptSyntax/runPromptAction": {
+ "commands.prompt.manage-dialog.placeholder": "Promptdatei auswählen, die geöffnet werden soll",
+ "commands.prompt.select-dialog.placeholder": "Wählen Sie die Prompt-Datei aus, die ausgeführt werden soll (halten Sie die {0}-Taste gedrückt, um sie in einem neuen Chat zu verwenden).",
+ "configure-prompts": "Promptdateien konfigurieren ...",
+ "configure-prompts.short": "Promptdateien",
+ "run-prompt-in-new-chat.capitalized": "Prompt in neuem Chat ausführen",
+ "run-prompt.capitalized": "Prompt im aktuellen Chat ausführen",
+ "run-prompt.capitalized.ellipses": "Prompt ausführen ..."
+ },
+ "vs/workbench/contrib/chat/browser/promptSyntax/saveAsPromptFileActions": {
+ "promptfile.saveAgentFile": "Als Agentdatei speichern",
+ "promptfile.saveAgentFile.description": "Als Agentdatei speichern",
+ "promptfile.saveInstructionsFile": "Als Anweisungsdatei speichern",
+ "promptfile.saveInstructionsFile.description": "Als Anweisungsdatei speichern",
+ "promptfile.savePromptFile": "Datei mit Aufforderung speichern",
+ "promptfile.savePromptFile.description": "Als Eingabeaufforderungsdatei speichern"
+ },
+ "vs/workbench/contrib/chat/browser/tools/toolSetsContribution": {
+ "bad_name1": "Ungültiger Dateiname",
+ "bad_name2": "\"{0}\" ist kein gültiger Dateiname.",
+ "chat.configureToolSets": "Toolgruppen konfigurieren …",
+ "chat.configureToolSets.add": "Neue Toolgruppendatei erstellen ...",
+ "chat.configureToolSets.placeholder": "Toolgruppe auswählen, die konfiguriert werden soll",
+ "chat.configureToolSets.short": "Toolsätze",
+ "input.placeholder": "Dateinamen für Toolgruppen eingeben",
+ "schema.default": "Leere Toolgruppe",
+ "schema.description": "Eine kurze Beschreibung dieser Toolgruppe.",
+ "schema.icon": "Symbol, das für diese Toolgruppe in der Benutzeroberfläche verwendet werden soll. Verwendet die „\\$(name)“-Syntax, z. B. „\\$(zap)“.",
+ "schema.tools": "Eine Liste der Tools oder Toolgruppen, die in diese Toolgruppe aufgenommen werden sollen. Darf nicht leer sein und muss Tools genauso referenzieren wie in Prompts.",
+ "tool.description": "{1} ({0})\r\n\r\n{2}",
+ "toolsetSchema.json": "Konfiguration von Benutzertoolgruppen"
+ },
+ "vs/workbench/contrib/chat/browser/viewsWelcome/chatViewsWelcomeHandler": {
+ "chatViewsWelcome.content": "Der Inhalt der Begrüßungsnachricht. Der erste Befehlslink wird als Schaltfläche gerendert.",
+ "chatViewsWelcome.icon": "Das Symbol für die Begrüßungsnachricht.",
+ "chatViewsWelcome.title": "Der Titel der Begrüßungsnachricht.",
+ "chatViewsWelcome.when": "Bedingung, wenn die Begrüßungsnachricht angezeigt wird.",
+ "vscode.extension.contributes.chatViewsWelcome": "Trägt eine Begrüßungsnachricht zu einer Chatansicht bei"
+ },
+ "vs/workbench/contrib/chat/browser/viewsWelcome/chatViewWelcomeController": {
+ "chatWidget.suggestedActions": "Vorgeschlagene Aktionen",
+ "editPromptFile": "Eingabeaufforderungsdatei bearbeiten",
+ "runPromptTitle": "Vorgeschlagener Prompt: {0}",
+ "suggestedPromptAriaLabel": "Vorgeschlagener Prompt: {0}",
+ "suggestedPromptAriaLabelWithDescription": "Vorgeschlagener Prompt: {0}, {1}"
+ },
+ "vs/workbench/contrib/chat/common/chatColors": {
+ "chat.avatarBackground": "Die Hintergrundfarbe eines Chatavatars.",
+ "chat.avatarForeground": "Die Vordergrundfarbe eines Chatavatars.",
+ "chat.editedFileForeground": "Die Vordergrundfarbe einer im Chat bearbeiteten Datei in der Liste bearbeiteter Dateien.",
+ "chat.linesAddedForeground": "Vordergrundfarbe der Linien, die in der Codeblockpille im Chat hinzugefügt wurden.",
+ "chat.linesRemovedForeground": "Vordergrundfarbe der Linien, die aus der Codeblockpille im Chat entfernt wurden.",
+ "chat.requestBackground": "Die Hintergrundfarbe einer Chatanfrage.",
+ "chat.requestBorder": "Die Rahmenfarbe einer Chatanfrage.",
+ "chat.requestBubbleBackground": "Hintergrundfarbe der Sprechblase für die Chatanfrage.",
+ "chat.requestBubbleHoverBackground": "Hintergrundfarbe der Sprechblase für die Chatanfrage beim Daraufzeigen.",
+ "chat.requestCodeBorder": "Rahmenfarbe von Codeblöcken innerhalb der Sprechblase für die Chatanfrage.",
+ "chat.slashCommandBackground": "Die Hintergrundfarbe eines Schrägstrich-Befehls für den Chat.",
+ "chat.slashCommandForeground": "Die Vordergrundfarbe eines Schrägstrich-Befehls für den Chat.",
+ "chatCheckpointSeparator": "Farbe des Trennzeichens für Chatprüfpunkte."
+ },
+ "vs/workbench/contrib/chat/common/chatContextKeys": {
+ "agentKind": "Die „Art“ des aktuellen Agenten.",
+ "agentSupportsAttachments": "True, wenn der Chatagent Anlagen unterstützt.",
+ "chatEditApplied": "TRUE, wenn die Chattextbearbeitungen angewendet wurden.",
+ "chatEditingCanRedo": "WAHR, wenn es möglich ist, eine Interaktion im Bearbeitungsbereich zu wiederholen.",
+ "chatEditingCanUndo": "WAHR, wenn es möglich ist, eine Interaktion im Bearbeitungsbereich rückgängig zu machen.",
+ "chatEditingHasElicitationRequest": "Wahr, wenn eine Chatanforderung aussteht.",
+ "chatEditingHasToolConfirmation": "Wahr, wenn eine Toolbestätigung vorhanden ist.",
+ "chatExtensionInvalid": "Wahr, wenn die installierte Chaterweiterung ungültig ist und aktualisiert werden muss.",
+ "chatHasAgents": "Wahr, wenn für den Chat benutzerdefinierte Chatmodi verfügbar sind.",
+ "chatHasFileAttachments": "TRUE, wenn der Chat Dateianlagen enthält.",
+ "chatInEmptyStateWithHistoryEnabled": "Wahr, wenn der Verlauf des leeren Chats aktiviert ist UND der Chat sich im leeren Zustand befindet.",
+ "chatIsActiveSession": "Wahr, wenn die Chatsitzung derzeit aktiv ist (nicht löschbar).",
+ "chatIsArchivedItem": "True, wenn das Chatsitzungselement archiviert wird.",
+ "chatIsEnabled": "Wahr, wenn der Chat aktiviert ist, weil ein Standard-Chat-Teilnehmer mit einer Implementierung aktiviert ist.",
+ "chatIsKatexMathElement": "Wahr, wenn ein KaTeX-Mathelement fokussiert wird.",
+ "chatItemId": "Die ID des Chatelements.",
+ "chatLastItemId": "Die ID des letzten Chatelements.",
+ "chatModelsAreUserSelectable": "True, wenn das Chatmodell manuell von der benutzenden Person ausgewählt werden kann.",
+ "chatPanelExtensionParticipantRegistered": "Wahr, wenn ein Standard-Chatteilnehmer für das Panel von einer Erweiterung registriert ist.",
+ "chatPanelLocation": "Position des Chatbereichs.",
+ "chatParticipantRegistered": "Wahr, wenn ein Standard-Chatteilnehmer für das Panel registriert ist.",
+ "chatRemoteJobCreating": "Wahr, wenn ein Agentauftrag für Remotecodierung erstellt wird.",
+ "chatRequest": "Das Chatelement ist eine Anforderung.",
+ "chatResponse": "Das Chatelement ist eine Antwort.",
+ "chatResponseErrored": "TRUE, wenn die Chatantwort zu einem Fehler geführt hat.",
+ "chatResponseFiltered": "\"True\", wenn die Chatantwort vom Server herausgefiltert wurde.",
+ "chatResponseSupportsIssueReporting": "TRUE, wenn die aktuelle Chatantwort die Problemberichterstellung unterstützt.",
+ "chatSessionHasModels": "„True“, wenn sich der Chat in einer beigetragenen Chatsitzung befindet, in der „Modelle“ angezeigt werden können.",
+ "chatSessionResponseDetectedAgentOrCommand": "Wann der Agent oder Befehl automatisch erkannt wurde",
+ "chatSessionType": "Der Typ des aktuellen Chatsitzungselements.",
+ "chatSkipRequestInProgressMessage": "Wahr, wenn die Meldung „Chat-Anforderung wird bearbeitet“ übersprungen werden soll.",
+ "chatToolCount": "Die Anzahl der im aktuellen Agent verfügbaren Tools.",
+ "chatToolGroupingThreshold": "Die Anzahl der Tools, mit denen wir mit der virtuellen Gruppierung beginnen.",
+ "enableRemoteCodingAgentPromptFileOverlay": "Gibt an, ob die Überlagerungsfunktion der Promptdatei des Remotecodierungs-Agents aktiviert ist.",
+ "filePartOfEditSession": "Wahr, wenn sich das Chat-Widget in einer Datei mit einer Bearbeitungssitzung befindet.",
+ "hasRemoteCodingAgent": "Ob ein Agent für Remotecodierung verfügbar ist",
+ "inChat": "TRUE, wenn der Fokus auf dem Chatwidget liegt, andernfalls FALSE.",
+ "inChatEditor": "Gibt an, ob der Fokus in einem Chat-Editor liegt.",
+ "inChatTerminalToolOutput": "True, wenn sich der Fokus im Ausgabebereich des Chatterminals befindet.",
+ "inInteractiveInput": "Wahr, wenn der Fokus auf der Chateingabe liegt, andernfalls falsch.",
+ "inQuickChat": "TRUE, wenn die Schnellchatoberfläche den Fokus hat, andernfalls FALSE.",
+ "interactiveInputHasFocus": "Wahr, wenn die Chateingabe fokussiert ist.",
+ "interactiveInputHasText": "TRUE, wenn die Chateingabe Text enthält.",
+ "interactiveSessionCurrentlyEditing": "Wahr, wenn die aktuelle Anforderung bearbeitet wird.",
+ "interactiveSessionCurrentlyEditingInput": "Wahr, wenn die aktuelle Anforderungseingabe unten bearbeitet wird.",
+ "interactiveSessionRequestInProgress": "Wahr, wenn die aktuelle Anforderung noch ausgeführt wird.",
+ "interactiveSessionResponseVote": "Wenn der Antwort zugestimmt wurde, ist sie auf „up“ festgelegt. Wenn Sie abgelehnt wurden, ist „down“ festgelegt. Andernfalls eine leere Zeichenfolge.",
+ "lockedToCodingAgent": "Wahr, wenn das Chatwidget an die Sitzung des Codierungsagenten gesperrt ist.",
+ "toolsCount": "Die Anzahl der im Chat verfügbaren Tools.",
+ "withinEditSessionDiff": "Wahr, wenn das Chat-Widget an den Chat der Bearbeitungssitzung weitergeleitet wird."
+ },
+ "vs/workbench/contrib/chat/common/chatEditingService": {
+ "chatEditingAgentSupportsReadonlyReferences": "Gibt an, ob der Chatbearbeitungs-Agent schreibgeschützte Verweise unterstützt (temporär).",
+ "chatEditingWidgetFileState": "Der aktuelle Status der Datei im Widget zur Chatbearbeitung"
+ },
+ "vs/workbench/contrib/chat/common/chatModel": {
+ "codeCitation": "Ähnlicher Code mit 1 Lizenztyp gefunden",
+ "codeCitations": "Ähnlicher Code mit {0} Lizenztypen gefunden",
+ "copyrightContentRetry": "Die Antwort wurde aufgrund einer möglichen Übereinstimmung mit dem öffentlichen Code gelöscht. Es erfolgt ein erneuter Versuch mit geändertem Prompt.",
+ "editsSummary": "Änderungen vorgenommen.",
+ "filteredContentRetry": "Die Antwort wurde aufgrund von Inhaltsfiltern gelöscht. Es erfolgt ein erneuter Versuch mit geändertem Prompt."
+ },
+ "vs/workbench/contrib/chat/common/chatModes": {
+ "agentDescription": "Beschreiben, was als Nächstes erstellt werden soll",
+ "chatDescription": "Code erkunden und verstehen",
+ "editsDescription": "Ausgewählten Code bearbeiten oder umgestalten"
+ },
+ "vs/workbench/contrib/chat/common/chatProgressTypes/chatToolInvocation": {
+ "toolInvocationMessage": "Mithilfe von {0}"
+ },
+ "vs/workbench/contrib/chat/common/chatServiceImpl": {
+ "emptyResponse": "Der Anbieter hat eine Antwort vom Typ NULL zurückgegeben.",
+ "newChat": "Neuer Chat"
+ },
+ "vs/workbench/contrib/chat/common/chatSessionStore": {
+ "join.chatSessionStore": "Chatverlauf wird gespeichert",
+ "newChat": "Neuer Chat"
+ },
+ "vs/workbench/contrib/chat/common/chatUrlFetchingConfirmation": {
+ "allowRequestsCheckbox": "Anforderungen ohne Bestätigung stellen",
+ "allowResponsesCheckbox": "Antworten ohne Bestätigung zulassen",
+ "approveAll": "Alle genehmigen",
+ "approveRequestTo": "Anforderungen zulassen für {0}",
+ "approveResponseFrom": "Antworten von {0} zulassen",
+ "approves": "Genehmigt {0}",
+ "delete": "Löschen",
+ "denyAll": "Alle verweigern",
+ "moreOptions": "Anforderungen zulassen für ...",
+ "moreOptionsManage": "Weitere Optionen ...",
+ "moreOptionsMultiple": "URL-Genehmigungen konfigurieren ...",
+ "noApprovals": "Keine Genehmigungen",
+ "openSettings": "Einstellungen öffnen",
+ "requests": "Anforderungen",
+ "responses": "Antworten",
+ "selectApproval": "Zu genehmigende URL-Muster auswählen"
+ },
+ "vs/workbench/contrib/chat/common/chatVariableEntries": {
+ "chat.attachment.problems.all": "Alle Probleme",
+ "chat.attachment.problems.inFile": "Probleme in {0}"
+ },
+ "vs/workbench/contrib/chat/common/languageModels": {
+ "vscode.extension.contributes.languageModelChatProviders": "Beitragen von Sprachmodell-Chatanbietern eines bestimmten Anbieters.",
+ "vscode.extension.contributes.languageModels.displayName": "Der Anzeigename des Sprachmodell-Chatanbieters.",
+ "vscode.extension.contributes.languageModels.emptyVendor": "Das Anbieterfeld darf nicht leer sein.",
+ "vscode.extension.contributes.languageModels.managementCommand": "Ein Befehl zum Verwalten des Sprachmodell-Chatanbieters, z. B. „Copilot-Modelle verwalten“. Dies wird in der Chatmodellauswahl verwendet. Wenn keine Angabe erfolgt, wird während der Anbieterauswahl kein Zahnradsymbol gerendert.",
+ "vscode.extension.contributes.languageModels.vendor": "Ein weltweit einzigartiger Anbieter des Sprachmodell-Chatanbieters.",
+ "vscode.extension.contributes.languageModels.vendorAlreadyRegistered": "Der Anbieter \"{0}\" ist bereits registriert und kann nicht zweimal registriert werden.",
+ "vscode.extension.contributes.languageModels.when": "Bedingung, die true sein muss, um diesen Sprachmodell-Chatanbieter in der Liste Modelle verwalten anzuzeigen.",
+ "vscode.extension.contributes.languageModels.whitespaceVendor": "Das Anbieterfeld darf nicht mit einem Leerzeichen beginnen oder enden."
+ },
+ "vs/workbench/contrib/chat/common/languageModelStats": {
+ "Language Models": "Copilot",
+ "chat": "Chat",
+ "languageModels": "Statistik zur Verwendung von Sprachmodellen für diese Erweiterung."
+ },
+ "vs/workbench/contrib/chat/common/languageModelToolsService": {
+ "builtin": "Integriert",
+ "toolResultDataPartA11y": "{0} von {1} Binärdaten",
+ "user": "Benutzerdefiniert"
+ },
+ "vs/workbench/contrib/chat/common/modelPicker/modelPickerWidget": {
+ "chat.modelPicker.other": "Andere Modelle"
+ },
+ "vs/workbench/contrib/chat/common/promptSyntax/chatPromptFilesContribution": {
+ "chatContribution.property.description": "(Optional) Beschreibung der Datei.",
+ "chatContribution.property.name": "Bezeichner für diese Datei. Muss innerhalb dieser Erweiterung für diesen Beitragspunkt eindeutig sein.",
+ "chatContribution.property.path": "Pfad zur Datei relativ zum Erweiterungsstamm.",
+ "chatContribution.schema.description": "Trägt {0} für Chatprompts bei.",
+ "extension.invalid.name": "Die Erweiterung „{0}“ kann keinen {1} Eintrag mit dem ungültigen Namen „{2}“ registrieren.",
+ "extension.invalid.path": "Die Erweiterung „{0}“, der {1}-Eintrag, Pfad „{2}“ werden außerhalb der Erweiterung aufgelöst.",
+ "extension.missing.description": "Die Erweiterung „{0}“ kann {1} Eintrag „{2}“ nicht ohne Beschreibung registrieren.",
+ "extension.missing.path": "Die Erweiterung „{0}“ kann {1} Eintrag „{2}“ nicht ohne Pfad registrieren.",
+ "extension.registration.failed": "Fehler beim Registrieren des {0}-Eintrags „{1}“: {2}"
+ },
+ "vs/workbench/contrib/chat/common/promptSyntax/computeAutomaticInstructions": {
+ "instruction.file.description.agentsmd.folder": "Anweisungen für Ordner „{0}“",
+ "instruction.file.description.agentsmd.root": "Anweisungen für den Arbeitsbereich",
+ "instruction.file.reason.agentsmd": "Automatisch angefügt, da die Einstellung „{0}“ aktiviert ist.",
+ "instruction.file.reason.allFiles": "Automatisch angefügt als Muster: **",
+ "instruction.file.reason.copilot": "Automatisch angefügt, da die Einstellung „{0}“ aktiviert ist.",
+ "instruction.file.reason.referenced": "Verweis durch {0}",
+ "instruction.file.reason.specificFile": "Automatisch angefügt als Muster {0} entspricht {1}"
+ },
+ "vs/workbench/contrib/chat/common/promptSyntax/languageProviders/promptCodeActions": {
+ "expandToolNames": "Expand to {0} tools",
+ "migrateToAgent": "Zu benutzerdefinierter Agentdatei migrieren",
+ "renameToAgent": "In „Agent“ umbenennen",
+ "updateAllToolNames": "Alle Toolnamen aktualisieren",
+ "updateToolName": "Auf {0} aktualisieren"
+ },
+ "vs/workbench/contrib/chat/common/promptSyntax/languageProviders/promptHeaderAutocompletion": {
+ "promptHeaderAutocompletion.handoffsExample": "Übergabebeispiel"
+ },
+ "vs/workbench/contrib/chat/common/promptSyntax/languageProviders/promptHovers": {
+ "modelFamily": "- Familie: {0}",
+ "modelName": "- Name: {0}",
+ "modelVendor": "- Anbieter: {0}",
+ "promptHeader.agent.argumentHint": "Der Argumenthinweis beschreibt, welche Eingaben der benutzerdefinierte Agent erwartet oder unterstützt.",
+ "promptHeader.agent.description": "Die Beschreibung des benutzerdefinierten Agents, was er bewirkt und wann er verwendet werden soll.",
+ "promptHeader.agent.handoffs": "Mögliche Übergabeaktionen, wenn der Agent seine Aufgabe abgeschlossen hat.",
+ "promptHeader.agent.handoffs.githubCopilot": "Hinweis: Dieses Attribut wird nicht verwendet, wenn das Ziel github-copilot ist.",
+ "promptHeader.agent.model": "Geben Sie das Modell an, das diesen benutzerdefinierten Agenten ausführt.",
+ "promptHeader.agent.model.githubCopilot": "Hinweis: Dieses Attribut wird nicht verwendet, wenn das Ziel github-copilot ist.",
+ "promptHeader.agent.name": "Der Name des Agenten wie auf der Benutzeroberfläche dargestellt.",
+ "promptHeader.agent.target": "Das Ziel, auf das die Headerattribute wie Tools angewendet werden. Mögliche Werte sind „github-copilot“ und „vscode“.",
+ "promptHeader.agent.tools": "Die Menge der Tools, auf die der benutzerdefinierte Agent Zugriff hat.",
+ "promptHeader.instructions.applyToRange": "Ein oder mehrere Glob-Muster (durch Kommas getrennt), die beschreiben, für welche Dateien die Anweisungen gelten Basierend auf diesen Mustern wird die Datei automatisch in den Prompt aufgenommen, wenn der Kontext eine Datei enthält, die einem oder mehreren dieser Muster entspricht. Verwenden Sie „**“, wenn diese Datei immer hinzugefügt werden soll.\r\nZum Beispiel: `**/*.ts`, `**/*.js`, `client/**`",
+ "promptHeader.instructions.description": "Die Beschreibung der Anweisungsdatei Sie kann verwendet werden, um zusätzlichen Kontext oder Informationen zu den Anweisungen bereitzustellen und wird als Teil des Prompt an das Sprachmodell übergeben.",
+ "promptHeader.instructions.name": "Der Name der Anweisungsdatei, wie er in der Benutzeroberfläche angezeigt wird. Falls nicht festgelegt, wird der Name vom Dateinamen abgeleitet.",
+ "promptHeader.prompt.agent.builtInDesc": "Integrierter Agent",
+ "promptHeader.prompt.agent.builtin": "**Integrierte Agents:**",
+ "promptHeader.prompt.agent.custom": "**Benutzerdefinierte Agenten:**",
+ "promptHeader.prompt.agent.customDesc": "Benutzerdefinierter Agent",
+ "promptHeader.prompt.agent.description": "Der Agent, der beim Ausführen dieses Prompts verwendet werden soll.",
+ "promptHeader.prompt.argumentHint": "Der Argumenthinweis beschreibt, welche Eingaben der Prompt erwartet oder unterstützt.",
+ "promptHeader.prompt.description": "Die Beschreibung der wiederverwendbaren Eingabeaufforderung, was sie bewirkt und wann sie verwendet werden soll.",
+ "promptHeader.prompt.model": "Das in diesem Prompt zu verwendende Modell",
+ "promptHeader.prompt.name": "Der Name der Eingabeaufforderung. Dies ist auch der Name des Schrägstrichbefehls, der diese Eingabeaufforderung ausführt.",
+ "promptHeader.prompt.tools": "Die in diesem Prompt zu verwendenden Tools",
+ "toolSetName": "ToolSet: {0}\r\n\r\n"
+ },
+ "vs/workbench/contrib/chat/common/promptSyntax/languageProviders/promptValidator": {
+ "githubCopilotTools.customAgent": "Aufrufen benutzerdefinierter Agenten",
+ "githubCopilotTools.edit": "Dateien bearbeiten",
+ "githubCopilotTools.search": "In Dateien suchen",
+ "githubCopilotTools.shell": "Ausführen von Shellbefehlen",
+ "promptValidator.agentNotFound": "Unbekannter Agent „{0}“. Verfügbare Agenten: {1}.",
+ "promptValidator.applyToMustBeString": "Das Attribut „applyTo“ muss eine Zeichenfolge sein.",
+ "promptValidator.applyToMustBeValidGlob": "Das Attribut „applyTo“ muss ein gültiges Globmuster sein.",
+ "promptValidator.argumentHintMustBeString": "Das Attribut „argument-hint“ muss eine Zeichenfolge sein.",
+ "promptValidator.argumentHintShouldNotBeEmpty": "Das Attribut „argument-hint“ darf nicht leer sein.",
+ "promptValidator.attributeMustBeNonEmpty": "Das Attribut „{0}“ darf keine leere Zeichenfolge sein.",
+ "promptValidator.attributeMustBeString": "Das Attribut „{0}“ muss eine Zeichenfolge sein.",
+ "promptValidator.chatModesRenamedToAgents": "Chatmodi wurden in Agents umbenannt. Bitte verschieben Sie diese Datei nach {0}",
+ "promptValidator.chatModesRenamedToAgentsNoMove": "Chatmodi wurden in Agents umbenannt. Bitte verschieben Sie die Datei nach {0}",
+ "promptValidator.deprecatedVariableReference": "Tool oder Toolset „{0}“ wurde umbenannt. Verwenden Sie stattdessen „{1}“.",
+ "promptValidator.deprecatedVariableReferenceMultipleNames": "Tool or toolset '{0}' has been renamed, use the following tools instead: {1}",
+ "promptValidator.descriptionMustBeString": "Das Attribut „description“ muss eine Zeichenfolge sein.",
+ "promptValidator.descriptionShouldNotBeEmpty": "Das Attribut „description“ darf nicht leer sein.",
+ "promptValidator.disabledTool": "Das Tool oder Toolset „{0}“ muss auch im Header aktiviert werden.",
+ "promptValidator.eachHandoffMustBeObject": "Jede Übergabe im Attribut „handoffs“ muss ein Objekt mit den Eigenschaften „label“, „agent“, „prompt“ und optional „send“ sein.",
+ "promptValidator.eachToolMustBeString": "Jeder Toolname im Attribut „tools“ muss eine Zeichenfolge sein.",
+ "promptValidator.excludeAgentMustBeArray": "Das Attribut „excludeAgent“ muss ein Array sein.",
+ "promptValidator.fileNotFound": "Datei „{0}“ nicht unter „{1}“ gefunden.",
+ "promptValidator.handoffAgentMustBeNonEmptyString": "Die „agent“-Eigenschaft in einer Übergabe muss eine nicht leere Zeichenfolge sein.",
+ "promptValidator.handoffLabelMustBeNonEmptyString": "Die „label“-Eigenschaft in einer Übergabe muss eine nicht leere Zeichenfolge sein.",
+ "promptValidator.handoffPromptMustBeString": "Die Eigenschaft „prompt“ in einer Übergabe muss eine Zeichenfolge sein.",
+ "promptValidator.handoffSendMustBeBoolean": "Die Eigenschaft „send“ in einer Übergabe muss ein boolescher Wert sein.",
+ "promptValidator.handoffsMustBeArray": "Das Attribut „tools“ muss ein Array sein.",
+ "promptValidator.ignoredAttribute.vscode-agent": "Attribut „{0}“ wird ignoriert, wenn es lokal in VS Code ausgeführt wird.",
+ "promptValidator.invalidFileReference": "Ungültiger Dateiverweis „{0}“.",
+ "promptValidator.missingHandoffProperties": "Erforderliche Eigenschaften {0} im Übergabeobjekt fehlen.",
+ "promptValidator.modeDeprecated": "Das Attribut „mode“ ist veraltet. Stattdessen wird das Attribut „Agent“ verwendet.",
+ "promptValidator.modeDeprecated.useAgent": "Das Attribut „mode“ ist veraltet. Benennen Sie es in „agent“ um.",
+ "promptValidator.modelMustBeNonEmpty": "Das Attribut „model“ darf keine leere Zeichenfolge sein.",
+ "promptValidator.modelMustBeString": "Das Attribut „model“ muss eine Zeichenfolge sein.",
+ "promptValidator.modelNotFound": "Unbekanntes Modell „{0}“.",
+ "promptValidator.modelNotSuited": "Das Modell „{0}“ ist für den Modus „Agent“ nicht geeignet.",
+ "promptValidator.nameMustBeString": "Das Attribut „name“ muss eine Zeichenfolge sein.",
+ "promptValidator.nameShouldNotBeEmpty": "Das Attribut „name“ darf nicht leer sein.",
+ "promptValidator.targetInvalidValue": "Das Attribut „target“ muss eines der folgenden sein: {0}.",
+ "promptValidator.targetMustBeNonEmpty": "Das Attribut „target“ darf keine leere Zeichenfolge sein.",
+ "promptValidator.targetMustBeString": "Das Attribut „target“ muss eine Zeichenfolge sein.",
+ "promptValidator.toolDeprecated": "Tool oder Toolset „{0}“ wurde umbenannt. Verwenden Sie stattdessen „{1}“.",
+ "promptValidator.toolDeprecatedMultipleNames": "Tool or toolset '{0}' has been renamed, use the following tools instead: {1}",
+ "promptValidator.toolNotFound": "Unbekanntes Tool „{0}“.",
+ "promptValidator.toolsMustBeArrayOrMap": "Das Attribut „tools“ muss ein Array sein.",
+ "promptValidator.toolsOnlyInAgent": "Das Attribut „Tools“ wird nur im Agentmodus unterstützt. Das Attribut wird ignoriert.",
+ "promptValidator.unknownAttribute.github-agent": "Attribut „{0}“ wird in benutzerdefinierten GitHub Copilot-Agent-Dateien nicht unterstützt. Unterstützt: {1}.",
+ "promptValidator.unknownAttribute.instructions": "Das Attribut „{0}“ wird in Anweisungsdateien nicht unterstützt. Unterstützt: {1}.",
+ "promptValidator.unknownAttribute.prompt": "Das Attribut „{0}“ wird in Eingabeaufforderungsdateien nicht unterstützt. Unterstützt: {1}.",
+ "promptValidator.unknownAttribute.vscode-agent": "Das Attribut „{0}“ wird in VS Code-Agentendateien nicht unterstützt. Unterstützt: {1}.",
+ "promptValidator.unknownHandoffProperty": "Unbekannte Eigenschaft „{0}“ im Übergabeobjekt. Unterstützte Eigenschaften sind „label“, „agent“, „prompt“ und optional „send“.",
+ "promptValidator.unknownVariableReference": "Unbekanntes Tool oder Toolset „{0}“."
+ },
+ "vs/workbench/contrib/chat/common/promptSyntax/service/promptsServiceImpl": {
+ "extension.with.id": "Erweiterung: {0}",
+ "user-data-dir.capitalized": "Benutzerdaten"
+ },
+ "vs/workbench/contrib/chat/common/tools/languageModelToolsContribution": {
+ "canBeReferencedInPrompt": "Wenn TRUE, wird dieses Tool als Anlage angezeigt, die der Benutzer manuell zu seiner Anforderung hinzufügen kann. Chatteilnehmer erhalten das Tool in {0}.",
+ "condition": "Bedingung, die wahr sein muss, damit dieses Tool aktiviert werden kann. Beachten Sie, dass ein Tool auch dann von einer anderen Erweiterung aufgerufen werden kann, wenn die when-Bedingung \"false\" ist.",
+ "descriptions": "Beschreibung",
+ "icon": "Ein Symbol, das dieses Tool darstellt Entweder ein Dateipfad, ein Objekt mit Dateipfaden für dunkle und helle Designs oder ein Designsymbolverweis wie „\\$(zap)“",
+ "icon.dark": "Symbolpfad, wenn ein dunkles Design verwendet wird",
+ "icon.light": "Symbolpfad, wenn ein helles Design verwendet wird",
+ "langModelToolSets": "Toolgruppen für Sprachmodelle",
+ "langModelTools": "Sprachmodelltools",
+ "legacyToolReferenceFullNames": "An array of deprecated names for backwards compatibility that can also be used to reference this tool in a query. Each name must not contain whitespace. Full names are generally in the format `toolsetName/toolReferenceName` (e.g., `search/readFile`) or just `toolReferenceName` when there is no toolset (e.g., `readFile`).",
+ "name": "Name",
+ "parametersSchema": "Ein JSON-Schema für die Eingaben, die von diesem Tool akzeptiert werden. Die Eingabe ein Objekt auf oberster Ebene sein. Ein bestimmtes Sprachmodell unterstützt möglicherweise nicht alle JSON-Schemafeatures. Weitere Informationen finden Sie in der Dokumentation zur verwendeten Sprachmodellfamilie.",
+ "reference": "Referenzname",
+ "toolDisplayName": "Ein visuell lesbarer Name für dieses Tool, der zur Beschreibung in der Benutzeroberfläche dient.",
+ "toolModelDescription": "Eine Beschreibung dieses Tools, die von einem Sprachmodell zur Auswahl verwendet werden kann.",
+ "toolName": "Ein eindeutiger Name für dieses Tool. Dieser Name muss ein global eindeutiger Bezeichner sein und wird auch als Name verwendet, wenn dieses Tool einem Sprachmodell präsentiert wird.",
+ "toolName2": "Wenn {0} für dieses Tool aktiviert ist, kann der Benutzer \"#\" mit diesem Namen verwenden, um das Tool in einer Abfrage aufzurufen. Andernfalls ist der Name nicht erforderlich. Der Name darf keine Leerzeichen enthalten.",
+ "toolSetDescription": "Eine kurze Beschreibung dieser Toolgruppe.",
+ "toolSetIcon": "Ein Symbol, das diese Toolgruppe darstellt, z. B. „$(zap)“.",
+ "toolSetLegacyFullNames": "An array of deprecated names for backwards compatibility that can also be used to reference this tool set. Each name must not contain whitespace. Full names are generally in the format `parentToolSetName/toolSetName` (e.g., `github/repo`) or just `toolSetName` when there is no parent toolset (e.g., `repo`).",
+ "toolSetName": "Ein Name für diese Toolgruppe. Wird als Referenz verwendet und darf keine Leerzeichen enthalten.",
+ "toolSetTools": "Eine Liste der Tools oder Toolgruppen, die in diese Toolgruppe aufgenommen werden sollen. Darf nicht leer sein und muss Tools mit ihrem „toolReferenceName“ referenzieren.",
+ "toolTableDescription": "Beschreibung",
+ "toolTableDisplayName": "Anzeigename",
+ "toolTableName": "Name",
+ "toolTags": "Eine Gruppe von Tags, die grob die Funktionen des Tools beschreiben. Ein Toolbenutzer kann diese Tools verwenden, um die Tools so zu filtern, dass sie nur für die jeweilige Aufgabe relevant sind, oder er ein Tag auswählen, das verwendet werden kann, um nur die von dieser Erweiterung beigetragenen Tools zu identifizieren.",
+ "toolUserDescription": "Eine Beschreibung dieses Tools, die dem Benutzer angezeigt werden kann.",
+ "tools": "Tools",
+ "vscode.extension.contributes.toolSets": "Trägt eine Reihe von Sprachmodelltools bei, die zusammen verwendet werden können.",
+ "vscode.extension.contributes.tools": "Trägt ein Tool bei, das von einem Sprachmodell in einer Chatsitzung oder über einen eigenständigen Befehl aufgerufen werden kann. Registrierte Tools können von allen Erweiterungen verwendet werden."
+ },
+ "vs/workbench/contrib/chat/common/tools/manageTodoListTool": {
+ "todo.added.multiple": "{0} Aufgaben hinzugefügt",
+ "todo.added.single": "1 Aufgabe hinzugefügt",
+ "todo.completed": "Abgeschlossen: *{0}* ({1}/{2})",
+ "todo.created.multiple": "{0} Aufgaben erstellt",
+ "todo.created.single": "1 Aufgabe erstellt",
+ "todo.readOperation": "Aufgabenliste lesen",
+ "todo.starting": "Start: *{0}* ({1}/{2})",
+ "todo.updated": "Aufgabenliste aktualisiert",
+ "todo.updatedList": "Aufgabenliste aktualisiert",
+ "tool.manageTodoList.displayName": "Aufgabenelemente für die Aufgabenplanung verwalten und nachverfolgen",
+ "tool.manageTodoList.userDescription": "Manage and track todo items for task planning"
+ },
+ "vs/workbench/contrib/chat/common/tools/runSubagentTool": {
+ "tool.runSubagent.displayName": "Unteragenten ausführen",
+ "tool.runSubagent.userDescription": "Run a task within an isolated subagent context to enable efficient organization of tasks and context window management."
+ },
+ "vs/workbench/contrib/chat/common/tools/tools": {
+ "toolset.custom-agent": "Delegate tasks to other agents"
+ },
+ "vs/workbench/contrib/chat/common/voiceChatService": {
+ "voiceChatInProgress": "Eine Spracherkennungssitzung wird für Chat ausgeführt."
+ },
+ "vs/workbench/contrib/chat/electron-browser/actions/chatDeveloperActions": {
+ "workbench.action.chat.openStorageFolder.label": "Ordner für Chat-Speicher öffnen"
+ },
+ "vs/workbench/contrib/chat/electron-browser/actions/voiceChatActions": {
+ "keywordActivation.status.active": "“Hey Code“ wird überwacht...",
+ "keywordActivation.status.inactive": "Es wird auf das Ende des Sprachchats gewartet...",
+ "keywordActivation.status.name": "Voice-Schlüsselwortaktivierung",
+ "listening": "Ich höre zu",
+ "scopedChatSynthesisInProgress": "Definiert als Ort, an dem die Sprachaufzeichnung vom Mikrofon für den Sprachchat ausgeführt wird. Dieser Schlüssel ist nur für den Bereich pro Chatkontext definiert.",
+ "scopedVoiceChatGettingReady": "\"True\", wenn Sie sich darauf vorbereiten, für den Sprachchat Spracheingaben über das Mikrofon zu empfangen. Dieser Schlüssel ist nur für den Bereich pro Chatkontext definiert.",
+ "scopedVoiceChatInProgress": "Definiert als Ort, an dem die Sprachaufzeichnung vom Mikrofon für den Sprachchat ausgeführt wird. Dieser Schlüssel ist nur für den Bereich pro Chatkontext definiert.",
+ "voice.keywordActivation": "Gibt an, ob der Schlüsselwortausdruck „Hey Code“ erkannt wird, um eine Sprachchatsitzung zu starten. Wenn Sie dies aktivieren, wird die Aufzeichnung über das Mikrofon gestartet, aber die Audiodaten werden lokal verarbeitet und nie an einen Server gesendet.",
+ "voice.keywordActivation.chatInContext": "Die Schlüsselwortaktivierung ist aktiviert und lauscht je nach Tastaturfokus auf „Hey Code“, um eine Sprachchatsitzung im aktiven Editor oder in der aktiven Ansicht zu starten.",
+ "voice.keywordActivation.chatInView": "Die Schlüsselwortaktivierung ist aktiviert und lauscht auf „Hey Code“, um eine Sprachchatsitzung in der Chatansicht zu starten.",
+ "voice.keywordActivation.inlineChat": "Die Schlüsselwortaktivierung ist aktiviert und hört auf \"Hey Code\", um nach Möglichkeit eine Sprachchatsitzung im aktiven Editor zu starten.",
+ "voice.keywordActivation.off": "Die Schlüsselwortaktivierung ist deaktiviert.",
+ "voice.keywordActivation.quickChat": "Die Schlüsselwortaktivierung ist aktiviert und lauscht auf „Hey Code“, um eine Sprachchatsitzung im Schnellchat zu starten.",
+ "workbench.action.chat.holdToVoiceChatInChatView.label": "Für Sprachchat in Chatansicht halten",
+ "workbench.action.chat.inlineVoiceChat": "Inline-Sprach-Chat",
+ "workbench.action.chat.quickVoiceChat.label": "Schneller Sprach-Chat",
+ "workbench.action.chat.readChatResponseAloud": "Laut vorlesen",
+ "workbench.action.chat.startVoiceChat.label": "Sprach-Chat starten",
+ "workbench.action.chat.stopListening.label": "Zuhören beenden",
+ "workbench.action.chat.stopListeningAndSubmit.label": "Zuhören beenden und absenden",
+ "workbench.action.chat.stopReadChatItemAloud": "Laut vorlesen beenden",
+ "workbench.action.chat.voiceChatInView.label": "Sprachchat in Chatansicht",
+ "workbench.action.speech.stopReadAloud": "Lautes Vorlesen beenden"
+ },
+ "vs/workbench/contrib/chat/electron-browser/chat.contribution": {
+ "changeWorkspace.detail": "Die Chatanfrage wird beendet, wenn Sie den Arbeitsbereich ändern.",
+ "changeWorkspace.message": "Eine Chatanfrage wird ausgeführt. Möchten Sie den Arbeitsbereich wirklich ändern?",
+ "chatRequestInProgress": "Eine Chatanfrage wird ausgeführt.",
+ "closeTheWindow.detail": "Die Chatanfrage wird beendet, wenn Sie das Fenster schließen.",
+ "closeTheWindow.message": "Eine Chatanfrage wird ausgeführt. Möchten Sie den Assistenten wirklich schließen?",
+ "copilotWorkspaceTrust": "KI-Features werden derzeit nur in vertrauenswürdigen Arbeitsbereichen unterstützt.",
+ "exit.detail": "Die Chatanfrage wird beendet, wenn Sie den Chat verlassen.",
+ "exit.message": "Eine Chatanfrage wird ausgeführt. Möchten Sie den Vorgang wirklich beenden?",
+ "quit.detail": "Die Chatanfrage wird beendet, wenn Sie den Chat verlassen.",
+ "quit.message": "Eine Chatanfrage wird ausgeführt. Sind Sie sicher, dass Sie aufhören wollen?",
+ "reloadTheWindow.detail": "Die Chatanfrage wird beendet, wenn Sie das Fenster erneut laden.",
+ "reloadTheWindow.message": "Eine Chatanfrage wird ausgeführt. Möchten Sie das Fenster wirklich neu laden?"
+ },
+ "vs/workbench/contrib/chat/electron-browser/tools/fetchPageTool": {
+ "fetchWebPage.binaryNotSupported": "Binärdateien werden derzeit nicht unterstützt.",
+ "fetchWebPage.confirmationMessage.plural": "Webinhalte können schädlichen Code enthalten oder versuchen, Promptinjektionsangriffe durchzuführen.",
+ "fetchWebPage.confirmationTitle.plural": "Webseiten abrufen?",
+ "fetchWebPage.confirmationTitle.singular": "Webseite abrufen?",
+ "fetchWebPage.invalidUrl": "Ungültige URL",
+ "fetchWebPage.invocationMessage.plural": "{0} Ressourcen abrufen",
+ "fetchWebPage.invocationMessage.singular": "{0} wird abgerufen",
+ "fetchWebPage.invocationMessage.singularAsLink": "[Ressource]({0}) wird abgerufen",
+ "fetchWebPage.noValidUrls": "Es wurden keine gültigen URLs angegeben.",
+ "fetchWebPage.pastTenseMessage.plural": "{0} Ressourcen wurden abgerufen, aber die folgenden URLs waren ungültig:\r\n\r\n{1}\r\n\r\n",
+ "fetchWebPage.pastTenseMessage.singular": "Die Ressource wurde abgerufen, aber die folgende URL war ungültig:\r\n\r\n{0}\r\n\r\n",
+ "fetchWebPage.pastTenseMessageResult.plural": "{0} Ressourcen abgerufen",
+ "fetchWebPage.pastTenseMessageResult.singular": "{0} abgerufen",
+ "fetchWebPage.pastTenseMessageResult.singularAsLink": "[Ressource]({0}) abgerufen",
+ "fetchWebPage.urlsDescription": "Ein Array von URLs, aus denen Inhalt abgerufen werden soll."
},
"vs/workbench/contrib/codeActions/browser/codeActionsContribution": {
- "codeActionsOnSave": "Arten von Codeaktionen, die beim Speichern ausgeführt werden sollen.",
- "codeActionsOnSave.fixAll": "Legt fest, ob beim Speichern einer Datei automatische Korrekturen vorgenommen werden sollen.",
- "codeActionsOnSave.generic": "Legt fest, ob {0}-Aktionen beim Speichern von Dateien ausgeführt werden sollen"
- },
- "vs/workbench/contrib/codeActions/common/codeActionsExtensionPoint": {
- "contributes.codeActions": "Konfigurieren Sie, welcher Editor für eine Ressource verwendet werden soll.",
- "contributes.codeActions.description": "Beschreibung der Codeaktion",
- "contributes.codeActions.kind": "CodeActionKind der beigesteuerten Codeaktion",
- "contributes.codeActions.languages": "Sprachmodi, für die die Codeaktionen aktiviert sind",
- "contributes.codeActions.title": "Bezeichnung für die auf der Benutzeroberfläche verwendete Codeaktion"
- },
- "vs/workbench/contrib/codeActions/common/documentationExtensionPoint": {
- "contributes.documentation": "Beigesteuerte Dokumentation.",
- "contributes.documentation.refactoring": "Beigesteuerte Dokumentation für das Refactoring.",
- "contributes.documentation.refactoring.command": "Befehl ausgeführt.",
- "contributes.documentation.refactoring.title": "Bezeichnung für die Dokumentation, die in der Benutzeroberfläche verwendet wird.",
- "contributes.documentation.refactoring.when": "when-Klausel.",
- "contributes.documentation.refactorings": "Beigesteuerte Dokumentation für Refactorings."
+ "alwaysSave": "Löst Codeaktionen bei expliziten Speichern und automatischen Speichern aus, die durch Fenster- oder Fokusänderungen ausgelöst werden.",
+ "codeActionsOnSave.generic": "Legt fest, ob {0}-Aktionen beim Speichern von Dateien ausgeführt werden sollen",
+ "editor.codeActionsOnSave": "Hiermit werden beim Speichern Codeaktionen für den Editor ausgeführt. Codeaktionen müssen angegeben werden, und der Editor darf nicht gerade heruntergefahren werden. Wenn {0} auf „afterDelay“ festgelegt ist, werden Codeaktionen nur ausgeführt, wenn die Datei explizit gespeichert wird. Beispiel: „source.organizeImports“: „explicit“",
+ "explicit": "Löst Codeaktionen nur aus, wenn sie explizit gespeichert werden.",
+ "explicitBoolean": "Löst Codeaktionen nur aus, wenn sie explizit gespeichert werden. Dieser Wert wird zugunsten von \"explicit\" als veraltet markiert.",
+ "explicitSave": "Codeaktionen nur auslösen, wenn sie explizit gespeichert werden",
+ "explicitSaveBoolean": "Löst Codeaktionen nur aus, wenn sie explizit gespeichert werden. Dieser Wert wird zugunsten von \"explicit\" als veraltet markiert.",
+ "never": "Löst beim Speichern niemals Codeaktionen aus.",
+ "neverBoolean": "Löst Codeaktionen nur aus, wenn sie explizit gespeichert werden. Dieser Wert wird zugunsten von \"never\" als veraltet markiert.",
+ "neverSave": "Beim Speichern niemals Codeaktionen ausführen",
+ "neverSaveBoolean": "Löst beim Speichern niemals Codeaktionen aus. Dieser Wert wird zugunsten von \"never\" als veraltet markiert.",
+ "notebook.codeActionsOnSave": "Führen Sie beim Speichern eine Reihe von Codeaktionen für ein Notebook aus. Codeaktionen müssen angegeben werden, und der Editor darf nicht gerade heruntergefahren werden. Wenn {0} auf „afterDelay“ festgelegt ist, werden Codeaktionen nur ausgeführt, wenn die Datei explizit gespeichert wird. Beispiel: „notebook.source.organizeImports“: „explicit“`"
},
"vs/workbench/contrib/codeEditor/browser/accessibility/accessibility": {
- "ShowAccessibilityHelpAction": "Hilfe zur Barrierefreiheit anzeigen",
- "auto_off": "Der Editor ist so konfiguriert, dass er automatisch erkennt, wenn eine Sprachausgabe angefügt wird, was momentan nicht der Fall ist.",
- "auto_on": "Der Editor hat automatisch erkannt, dass eine Sprachausgabe angefügt wurde.",
- "auto_unknown": "Der Editor ist für die Verwendung von Plattform-APIs konfiguriert, um zu erkennen, wenn eine Sprachausgabe angefügt wird, die aktuelle Laufzeit unterstützt dies jedoch nicht.",
- "changeConfigToOnMac": "Betätigen Sie jetzt die Befehlstaste+E, um den Editor zu konfigurieren, sodass er permanent für die Verwendung mit einer Sprachausgabe optimiert wird.",
- "changeConfigToOnWinLinux": "Drücken Sie jetzt STRG+E, um den Editor zu konfigurieren, sodass er permanent für die Verwendung mit einer Sprachausgabe optimiert wird.",
- "configuredOff": "Der Editor ist so konfiguriert, dass er für die Verwendung mit einer Sprachausgabe nie optimiert wird.",
- "configuredOn": "Der Editor ist so konfiguriert, dass er für die Verwendung mit einer Sprachausgabe durchgehend optimiert wird – Sie können dies ändern, indem Sie die Einstellung \"editor.accessibilitySupport\" bearbeiten.",
- "emergencyConfOn": "Die Einstellung \"editor.accessibilitySupport\" wird in \"Ein\" geändert.",
- "introMsg": "Vielen Dank, dass Sie die Optionen für Barrierefreiheit von VS Code testen.",
- "openDocMac": "Drücken Sie die Befehlstaste+H, um ein Browserfenster mit zusätzlichen VS Code-Informationen zur Barrierefreiheit zu öffnen.",
- "openDocWinLinux": "Drücken Sie STRG+H, um ein Browserfenster mit zusätzlichen VS Code-Informationen zur Barrierefreiheit zu öffnen.",
- "openingDocs": "Die Dokumentationsseite zur Barrierefreiheit von VS Code wird jetzt geöffnet.",
- "outroMsg": "Sie können diese QuickInfo schließen und durch Drücken von ESC oder UMSCHALT+ESC zum Editor zurückkehren.",
- "status": "Status:",
- "tabFocusModeOffMsg": "Durch Drücken der TAB-TASTE im aktuellen Editor wird das Tabstoppzeichen eingefügt. Schalten Sie dieses Verhalten um, indem Sie {0} drücken.",
- "tabFocusModeOffMsgNoKb": "Durch Drücken der TAB-TASTE im aktuellen Editor wird das Tabstoppzeichen eingefügt. Der {0}-Befehl kann zurzeit nicht durch eine Tastenzuordnung ausgelöst werden.",
- "tabFocusModeOnMsg": "Durch Drücken der TAB-TASTE im aktuellen Editor wird der Fokus in das nächste Element verschoben, das den Fokus erhalten kann. Schalten Sie dieses Verhalten um, indem Sie {0} drücken.",
- "tabFocusModeOnMsgNoKb": "Durch Drücken der TAB-TASTE im aktuellen Editor wird der Fokus in das nächste Element verschoben, das den Fokus erhalten kann. Der {0}-Befehl kann zurzeit nicht durch eine Tastenzuordnung ausgelöst werden."
+ "toggleScreenReaderMode": "Barrierefreiheitsmodus der Sprachausgabe umschalten",
+ "toggleScreenReaderModeDescription": "Schaltet einen optimierten Modus für die Verwendung mit Sprachausgaben, Braille-Geräten und anderen Hilfstechnologien um."
+ },
+ "vs/workbench/contrib/codeEditor/browser/dictation/editorDictation": {
+ "startDictation": "Diktat im Editor starten",
+ "stopDictation": "Diktat im Editor beenden",
+ "stopDictationShort1": "Diktat beenden ({0})",
+ "stopDictationShort2": "Diktat beenden",
+ "voiceCategory": "Voice"
+ },
+ "vs/workbench/contrib/codeEditor/browser/diffEditorAccessibilityHelp": {
+ "msg1": "Sie befinden sich in einem Diff-Editor.",
+ "msg2": "Zeigen Sie den nächsten{0} oder vorherigen{1} Diff im Diff-Überprüfungsmodus an, der für Bildschirmsprachausgaben optimiert ist.",
+ "msg3": "Führen Sie den Befehl Diff-Editor: Seite wechseln{0} aus, um zwischen dem ursprünglichen und dem geänderten Editor umzuschalten.",
+ "msg4": "Um zu steuern, welche Bedienungshilfensignale wiedergegeben werden sollen, können die folgenden Einstellungen konfiguriert werden: {0}.",
+ "msg5": "Die Einstellung „accessibility.verbosity.diffEditorActive“ steuert, ob eine Diff-Editor-Ankündigung erfolgt, wenn er zum aktiven Editor wird."
},
"vs/workbench/contrib/codeEditor/browser/diffEditorHelper": {
"hintTimeout": "Der Diff-Algorithmus wurde frühzeitig beendet (nach {0} ms).",
"hintWhitespace": "Unterschiede bei Leerzeichen anzeigen",
"removeTimeout": "Grenzwert entfernen"
},
+ "vs/workbench/contrib/codeEditor/browser/emptyTextEditorHint/emptyTextEditorHint": {
+ "defaultHintAriaLabelWithInlineChat": "{0} ausführen, um eine Frage zu stellen, {1} ausführen, um eine Sprache auszuwählen und zu beginnen. Beginnen Sie mit der Eingabe, um die Meldung zu schließen.",
+ "defaultHintAriaLabelWithoutInlineChat": "Führen Sie {0} aus, um eine Sprache auszuwählen und loszulegen. Beginnen Sie mit der Eingabe, um die Meldung zu schließen.",
+ "disableEditorEmptyHint": "Leeren Editorhinweis deaktivieren",
+ "disableHint": " Schalten Sie \"{0}\" in den Einstellungen um, um diesen Hinweis zu deaktivieren.",
+ "emptyTextEditorHintWithInlineChat": "[[Code generieren]] ({0}) oder [[Sprache auswählen]] ({1}). Beginnen Sie mit der Eingabe, um die Meldung zu schließen, oder dies [[nicht mehr anzeigen]].",
+ "emptyTextEditorHintWithoutInlineChat": "[[Sprache auswählen]] ({0}) um loszulegen. Beginnen Sie mit der Eingabe, um die Meldung zu schließen, oder dies [[nicht mehr anzeigen]]."
+ },
"vs/workbench/contrib/codeEditor/browser/find/simpleFindWidget": {
"ariaSearchNoInput": "Sucheingabe eingeben",
"ariaSearchNoResult": "{0} für \\\"{1}\\\" gefunden",
@@ -4399,7 +7797,8 @@
"label.find": "Suchen",
"label.nextMatchButton": "Nächste Übereinstimmung",
"label.previousMatchButton": "Vorherige Übereinstimmung",
- "placeholder.find": "Suchen (⇅ für Verlauf)"
+ "placeholder.find": "Suchen",
+ "simpleFindWidget.sashBorder": "Rahmenfarbe des Schieberahmens."
},
"vs/workbench/contrib/codeEditor/browser/inspectEditorTokens/inspectEditorTokens": {
"inspectEditorTokens": "Entwickler: Editor-Token und -Bereiche überprüfen",
@@ -4409,7 +7808,76 @@
"workbench.action.inspectKeyMap": "Schlüsselzuordnungen überprüfen",
"workbench.action.inspectKeyMapJSON": "Schlüsselzuordnungen überprüfen (JSON)"
},
- "vs/workbench/contrib/codeEditor/browser/languageConfigurationExtensionPoint": {
+ "vs/workbench/contrib/codeEditor/browser/largeFileOptimizations": {
+ "largeFile": "{0}: Tokenisierung, Umbrechen, Falten, CodeLens, Worthervorhebung und fixierter Bildlauf wurden für diese große Datei deaktiviert, um die Arbeitsspeichernutzung zu verringern und ein Einfrieren oder Abstürzen zu vermeiden.",
+ "removeOptimizations": "Aktivieren von Funktionen erzwingen",
+ "reopenFilePrompt": "Öffnen Sie die Datei erneut, damit diese Einstellung wirksam wird."
+ },
+ "vs/workbench/contrib/codeEditor/browser/outline/documentSymbolsOutline": {
+ "document": "Dokumentsymbole"
+ },
+ "vs/workbench/contrib/codeEditor/browser/outline/documentSymbolsTree": {
+ "1.problem": "1 Problem in diesem Element.",
+ "N.problem": "{0} Probleme in diesem Element.",
+ "deep.problem": "Enthält Elemente mit Problemen.",
+ "title.template": "{0} ({1})"
+ },
+ "vs/workbench/contrib/codeEditor/browser/quickaccess/gotoLineQuickAccess": {
+ "gotoLine": "Gehe zu Zeile/Spalte...",
+ "gotoLineQuickAccess": "Gehe zu Zeile/Spalte",
+ "gotoLineQuickAccessPlaceholder": "Geben Sie die Zeilennummer und optional die Spalte ein, zu der Sie springen möchten (z. B. :42:5 für Zeile 42, Spalte 5). Geben Sie :: ein, um zu einem Zeichenoffset zu springen (z. B. ::1024 für das Zeichen 1024 ab Beginn der Datei). Verwenden Sie negative Werte, um rückwärts zu navigieren.",
+ "gotoOffset": "Zu Offset wechseln...",
+ "gotoOffsetQuickAccess": "Zu Offset wechseln"
+ },
+ "vs/workbench/contrib/codeEditor/browser/quickaccess/gotoSymbolQuickAccess": {
+ "empty": "Keine übereinstimmenden Einträge.",
+ "gotoSymbol": "Gehe zu Symbol im Editor...",
+ "gotoSymbolByCategoryQuickAccess": "Gehe zu Symbol im Editor nach Kategorie",
+ "gotoSymbolQuickAccess": "Gehe zu Symbol im Editor",
+ "gotoSymbolQuickAccessPlaceholder": "Geben Sie den Namen eines Symbols ein, zu dem Sie wechseln möchten.",
+ "miGotoSymbolInEditor": "Zu &&Symbol im Editor wechseln..."
+ },
+ "vs/workbench/contrib/codeEditor/browser/saveParticipants": {
+ "codeAction.apply": "Codeaktion \"{0}\" wird angewendet.",
+ "codeaction": "Schnelle Fixes",
+ "codeaction.get2": "Codeaktionen werden aus {0} ([configure]({1})) abgerufen.",
+ "formatting2": "Der Formatierer \"{0}\" wird ausgeführt. ([Konfigurieren]({1}))"
+ },
+ "vs/workbench/contrib/codeEditor/browser/toggleColumnSelection": {
+ "miColumnSelection": "Modus für &&Spaltenauswahl",
+ "toggleColumnSelection": "Spaltenauswahlmodus umschalten"
+ },
+ "vs/workbench/contrib/codeEditor/browser/toggleMinimap": {
+ "miMinimap": "&&Minimap",
+ "toggleMinimap": "Minimap ein-/ausschalten"
+ },
+ "vs/workbench/contrib/codeEditor/browser/toggleMultiCursorModifier": {
+ "miMultiCursorAlt": "Für Multi-Cursor zu ALT+Mausklick wechseln",
+ "miMultiCursorCmd": "Für Multi-Cursor zu Befehlstaste+Mausklick wechseln",
+ "miMultiCursorCtrl": "Für Multi-Cursor zu STRG+Mausklick wechseln",
+ "toggleLocation": "Multi-Cursor-Modifizierer umschalten"
+ },
+ "vs/workbench/contrib/codeEditor/browser/toggleOvertype": {
+ "mitoggleOvertypeInsertMode": "Überschreib-/Einfügemodus &&umschalten",
+ "toggleOvertypeInsertMode": "Überschreib-/Einfügemodus umschalten",
+ "toggleOvertypeMode.description": "Zwischen Überschreib- und Einfügemodus umschalten"
+ },
+ "vs/workbench/contrib/codeEditor/browser/toggleRenderControlCharacter": {
+ "miToggleRenderControlCharacters": "&&Steuerzeichen rendern",
+ "toggleRenderControlCharacters": "Steuerzeichen umschalten"
+ },
+ "vs/workbench/contrib/codeEditor/browser/toggleRenderWhitespace": {
+ "miToggleRenderWhitespace": "&&Leerraumzeichen rendern",
+ "toggleRenderWhitespace": "Rendern von Leerzeichen umschalten"
+ },
+ "vs/workbench/contrib/codeEditor/browser/toggleWordWrap": {
+ "editorWordWrap": "Gibt an, ob der Editor zurzeit Zeilenumbrüche verwendet.",
+ "miToggleWordWrap": "&&Zeilenumbruch",
+ "toggle.wordwrap": "Ansicht: Zeilenumbruch umschalten",
+ "unwrapMinified": "Umbruch für diese Datei deaktivieren",
+ "wrapMinified": "Umbruch für diese Datei aktivieren"
+ },
+ "vs/workbench/contrib/codeEditor/common/languageConfigurationExtensionPoint": {
"formatError": "{0}: Ungültiges Format, JSON-Objekt erwartet",
"parseErrors": "Fehler beim Analysieren von {0}: {1}",
"schema.autoCloseBefore": "Legt fest, welche Zeichen nach dem Cursor stehen müssen, damit das automatische Umschließen mit Klammern oder Anführungszeichen angewendet wird, wenn die Einstellung \"languageDefined\" für das automatische Schließen verwendet wird. Dabei handelt es sich üblicherweise um Zeichen, die nicht am Anfang eines Ausdrucks stehen können.",
@@ -4418,9 +7886,9 @@
"schema.blockComment.begin": "Die Zeichenfolge, mit der ein Blockkommentar beginnt.",
"schema.blockComment.end": "Die Zeichenfolge, die einen Blockkommentar beendet.",
"schema.blockComments": "Definiert, wie Blockkommentare markiert werden.",
- "schema.brackets": "Definiert die Klammersymbole, die den Einzug vergrößern oder verkleinern.",
+ "schema.brackets": "Definiert die Klammernsymbole, die den Einzug vergrößern oder verkleinern. Wenn die Farbgebung für Klammernpaare aktiviert ist und {0} nicht definiert ist, werden auch die Klammerpaare definiert, die durch ihre Schachtelungsebene eingefärbt werden.",
"schema.closeBracket": "Das schließende Klammerzeichen oder die Zeichenfolgensequenz.",
- "schema.colorizedBracketPairs": "Definiert die Klammerpaare, die durch ihre Schachtelungsebene farbig formatiert werden, wenn die Farbgebung für das Klammerpaar aktiviert ist.",
+ "schema.colorizedBracketPairs": "Definiert die Klammerpaare, die durch ihre Schachtelungsebene eingefärbt sind, wenn die Farbkombination für das Klammerpaar aktiviert ist. Alle hier enthaltenen Klammern, die nicht in {0} enthalten sind, werden automatisch in {0} eingeschlossen.",
"schema.comments": "Definiert die Kommentarsymbole.",
"schema.folding": "Die Faltungseinstellungen der Sprache.",
"schema.folding.markers": "Sprachspezifische Faltungsmarkierungen wie \"#region\" und \"#endregion\". Die regulären Anfangs- und Endausdrücke werden im Hinblick auf den Inhalt aller Zeilen getestet und müssen effizient erstellt werden.",
@@ -4444,7 +7912,9 @@
"schema.indentationRules.unIndentedLinePattern.errorMessage": "Muss mit dem Muster `/^([gimuy]+)$/` übereinstimmen.",
"schema.indentationRules.unIndentedLinePattern.flags": "Die RegExp-Flags für unIndentedLinePattern.",
"schema.indentationRules.unIndentedLinePattern.pattern": "Das RegExp-Muster für unIndentedLinePattern.",
- "schema.lineComment": "Die Zeichenfolge, mit der ein Zeilenkommentar beginnt.",
+ "schema.lineComment.comment": "Die Zeichenfolge, mit der ein Zeilenkommentar beginnt.",
+ "schema.lineComment.noIndent": "Gibt an, ob das Kommentartoken ohne Einzug und in der ersten Spalte platziert werden soll. Der Standardwert ist „false“.",
+ "schema.lineComment.object": "Konfiguration für Zeilenkommentare.",
"schema.onEnterRules": "Die Regeln der Sprache, die beim Drücken der EINGABETASTE ausgewertet werden sollen.",
"schema.onEnterRules.action": "Die auszuführende Aktion.",
"schema.onEnterRules.action.appendText": "Beschreibt den Text, der nach der neuen Zeile und nach dem Einzug angefügt werden soll.",
@@ -4473,113 +7943,36 @@
"schema.wordPattern.flags.errorMessage": "Muss mit dem Muster `/^([gimuy]+)$/` übereinstimmen.",
"schema.wordPattern.pattern": "RegExp Muster für Wortübereinstimmungen."
},
- "vs/workbench/contrib/codeEditor/browser/largeFileOptimizations": {
- "largeFile": "{0}: Tokenisierung, Umbruch und Faltung wurden für diese große Datei deaktiviert, um die Speicherauslastung zu verringern und ein Einfrieren oder einen Absturz zu vermeiden.",
- "removeOptimizations": "Aktivieren von Funktionen erzwingen",
- "reopenFilePrompt": "Öffnen Sie die Datei erneut, damit diese Einstellung wirksam wird."
+ "vs/workbench/contrib/codeEditor/electron-browser/selectionClipboard": {
+ "actions.pasteSelectionClipboard": "Auswahl aus Zwischenablage einfügen"
},
- "vs/workbench/contrib/codeEditor/browser/outline/documentSymbolsOutline": {
- "document": "Dokumentsymbole"
+ "vs/workbench/contrib/codeEditor/electron-browser/startDebugTextMate": {
+ "startDebugTextMate": "TextMate-Syntaxgrammatikprotokollierung starten"
},
- "vs/workbench/contrib/codeEditor/browser/outline/documentSymbolsTree": {
- "1.problem": "1 Problem in diesem Element.",
- "Array": "Array",
- "Boolean": "Boolescher Wert",
- "Class": "Klasse",
- "Constant": "Konstante",
- "Constructor": "Konstruktor",
- "Enum": "Enumeration",
- "EnumMember": "Enumerationsmember",
- "Event": "Ereignis",
- "Field": "Feld",
- "File": "Datei",
- "Function": "Funktion",
- "Interface": "Schnittstelle",
- "Key": "Schlüssel",
- "Method": "Methode",
- "Module": "Modul",
- "N.problem": "{0} Probleme in diesem Element.",
- "Namespace": "Namespace",
- "Null": "NULL",
- "Number": "Zahl",
- "Object": "Objekt",
- "Operator": "Operator",
- "Package": "Paket",
- "Property": "Eigenschaft",
- "String": "Zeichenfolge",
- "Struct": "Struktur",
- "TypeParameter": "Typparameter",
- "Variable": "Variable",
- "deep.problem": "Enthält Elemente mit Problemen.",
- "title.template": "{0} ({1})"
- },
- "vs/workbench/contrib/codeEditor/browser/quickaccess/gotoLineQuickAccess": {
- "gotoLine": "Gehe zu Zeile/Spalte...",
- "gotoLineQuickAccess": "Gehe zu Zeile/Spalte",
- "gotoLineQuickAccessPlaceholder": "Geben Sie die Zeilennummer und optional die Spalte ein, zu der Sie wechseln möchten (z. B. 42:5 für Zeile 42 und Spalte 5)."
- },
- "vs/workbench/contrib/codeEditor/browser/quickaccess/gotoSymbolQuickAccess": {
- "empty": "Keine übereinstimmenden Einträge.",
- "gotoSymbol": "Gehe zu Symbol im Editor...",
- "gotoSymbolByCategoryQuickAccess": "Gehe zu Symbol im Editor nach Kategorie",
- "gotoSymbolQuickAccess": "Gehe zu Symbol im Editor",
- "gotoSymbolQuickAccessPlaceholder": "Geben Sie den Namen eines Symbols ein, zu dem Sie wechseln möchten.",
- "miGotoSymbolInEditor": "Zu &&Symbol im Editor wechseln..."
- },
- "vs/workbench/contrib/codeEditor/browser/saveParticipants": {
- "codeAction.apply": "Codeaktion \"{0}\" wird angewendet.",
- "codeaction": "Schnelle Fixes",
- "codeaction.get2": "Codeaktionen werden aus \"{0}\" abgerufen. ([Konfigurieren]({1}))",
- "formatting2": "Der Formatierer \"{0}\" wird ausgeführt. ([Konfigurieren]({1}))"
- },
- "vs/workbench/contrib/codeEditor/browser/toggleColumnSelection": {
- "miColumnSelection": "Modus für &&Spaltenauswahl",
- "toggleColumnSelection": "Spaltenauswahlmodus umschalten"
- },
- "vs/workbench/contrib/codeEditor/browser/toggleMinimap": {
- "miMinimap": "&&Minimap",
- "toggleMinimap": "Minimap ein-/ausschalten"
- },
- "vs/workbench/contrib/codeEditor/browser/toggleMultiCursorModifier": {
- "miMultiCursorAlt": "Für Multi-Cursor zu ALT+Mausklick wechseln",
- "miMultiCursorCmd": "Für Multi-Cursor zu Befehlstaste+Mausklick wechseln",
- "miMultiCursorCtrl": "Für Multi-Cursor zu STRG+Mausklick wechseln",
- "toggleLocation": "Multi-Cursor-Modifizierer umschalten"
- },
- "vs/workbench/contrib/codeEditor/browser/toggleRenderControlCharacter": {
- "miToggleRenderControlCharacters": "&&Steuerzeichen rendern",
- "toggleRenderControlCharacters": "Steuerzeichen umschalten"
- },
- "vs/workbench/contrib/codeEditor/browser/toggleRenderWhitespace": {
- "miToggleRenderWhitespace": "&&Leerraumzeichen rendern",
- "toggleRenderWhitespace": "Rendern von Leerzeichen umschalten"
- },
- "vs/workbench/contrib/codeEditor/browser/toggleWordWrap": {
- "editorWordWrap": "Gibt an, ob der Editor zurzeit Zeilenumbrüche verwendet.",
- "miToggleWordWrap": "&&Zeilenumbruch",
- "toggle.wordwrap": "Ansicht: Zeilenumbruch umschalten",
- "unwrapMinified": "Umbruch für diese Datei deaktivieren",
- "wrapMinified": "Umbruch für diese Datei aktivieren"
- },
- "vs/workbench/contrib/codeEditor/browser/untitledTextEditorHint": {
- "message": "[[Sprache auswählen]], oder [[öffnen Sie einen anderen Editor]], um zu beginnen.\r\nBeginnen Sie mit der Eingabe, um sie zu schließen, oder [[nicht mehr anzeigen]]."
- },
- "vs/workbench/contrib/codeEditor/electron-sandbox/selectionClipboard": {
- "actions.pasteSelectionClipboard": "Auswahl Zwischenablage einfügen"
- },
- "vs/workbench/contrib/codeEditor/electron-sandbox/startDebugTextMate": {
- "startDebugTextMate": "Protokollierung der TextMate-Syntax/-Grammatik starten"
+ "vs/workbench/contrib/commands/common/commands.contribution": {
+ "runCommands": "Ausführungsbefehle",
+ "runCommands.commands": "Auszuführende Befehle",
+ "runCommands.description": "Mehrere Befehle ausführen",
+ "runCommands.invalidArgs": "„runCommands“ hat ein Argument mit falschem Typ empfangen. Überprüfen Sie das an den Befehl übergebene Argument.",
+ "runCommands.noCommandsToRun": "„runCommands“ hat keine auszuführenden Befehle empfangen. Haben Sie vergessen, die Befehle im RunCommands-Argument zu übergeben?"
},
"vs/workbench/contrib/comments/browser/commentColors": {
+ "commentReplyInputBackground": "Hintergrundfarbe für das Eingabefeld für die Kommentarantwort.",
"commentThreadActiveRangeBackground": "Hintergrundfarbe für den Kommentarbereich, der aktuell ausgewählt ist oder auf den gezeigt wird.",
- "commentThreadActiveRangeBorder": "Rahmenfarbe für den Kommentarbereich, der aktuell ausgewählt ist oder auf den gezeigt wird.",
"commentThreadRangeBackground": "Hintergrundfarbe für Kommentarbereiche.",
- "commentThreadRangeBorder": "Farbe des Rahmens für Kommentarbereiche.",
"resolvedCommentBorder": "Farbe von Rahmen und Pfeil für aufgelöste Kommentare.",
- "unresolvedCommentBorder": "Farbe von Rahmen und Pfeil für nicht aufgelöste Kommentare."
+ "resolvedCommentIcon": "Symbolfarbe für aufgelöste Kommentare.",
+ "unresolvedCommentBorder": "Farbe von Rahmen und Pfeil für nicht aufgelöste Kommentare.",
+ "unresolvedCommentIcon": "Symbolfarbe für nicht aufgelöste Kommentare."
},
"vs/workbench/contrib/comments/browser/commentGlyphWidget": {
- "editorGutterCommentRangeForeground": "Bundsteg-Schmuckfarbe für Kommentarbereiche im Editor."
+ "editorGutterCommentDraftGlyphForeground": "Editor-Bundsteg-Dekorationsfarbe zum Kommentieren von Glyphen für Kommentarthreads mit Entwurfskommentaren.",
+ "editorGutterCommentGlyphForeground": "Bundsteg-Schmuckfarbe zum Kommentieren von Glyphen im Editor.",
+ "editorGutterCommentRangeForeground": "Editor-Gutterdekorationsfarbe für Kommentarbereiche. Diese Farbe sollte undurchsichtig sein.",
+ "editorGutterCommentUnresolvedGlyphForeground": "Editor-Bundsteg-Dekorationsfarbe zum Kommentieren von Glyphen für nicht aufgelöste Kommentarthreads.",
+ "editorOverviewRuler.commentDraftForeground": "Dekorationsfarbe des Editor-Übersichtslineals für Kommentarthreads mit Entwurfskommentaren. Diese Farbe sollte undurchsichtig sein.",
+ "editorOverviewRuler.commentForeground": "Dekorationsfarbe des Editor-Übersichtslineals für aufgelöste Kommentare. Diese Farbe sollte opak sein.",
+ "editorOverviewRuler.commentUnresolvedForeground": "Dekorationsfarbe des Editor-Übersichtslineals für nicht aufgelöste Kommentare. Diese Farbe sollte opak sein."
},
"vs/workbench/contrib/comments/browser/commentNode": {
"commentAddReactionDefaultError": "Fehler beim Löschen der Kommentarreaktion",
@@ -4594,54 +7987,157 @@
"newComment": "Neuen Kommentar eingeben",
"reply": "Antworten..."
},
- "vs/workbench/contrib/comments/browser/commentThreadBody": {
- "commentThreadAria": "Kommentarthread mit {0} Kommentaren. {1}.",
- "commentThreadAria.withRange": "Kommentarthread mit {0} Kommentaren in Zeilen {1} bis {2}. {3}."
- },
- "vs/workbench/contrib/comments/browser/commentThreadHeader": {
- "collapseIcon": "Symbol für das Zuklappen eines Überprüfungskommentars.",
- "label.collapse": "Reduzieren",
- "startThread": "Diskussion starten"
- },
"vs/workbench/contrib/comments/browser/comments.contribution": {
+ "collapseAll": "Alle zuklappen",
+ "collapseOnResolve": "Steuert, ob der Kommentarthread reduziert werden soll, wenn der Thread aufgelöst wird.",
+ "comments.maxHeight": "Steuert, ob das Kommentarwidget scrollt oder erweitert wird.",
"comments.openPanel.deprecated": "Diese Einstellung ist veraltet und wird durch `comments.openView` ersetzt. ",
"comments.openView": "Steuert, wann das Kommentarpanel geöffnet werden soll.",
"comments.openView.file": "Die Kommentaransicht wird geöffnet, wenn eine Datei mit Kommentaren aktiv ist.",
"comments.openView.firstFile": "Wenn die Kommentaransicht während dieser Sitzung noch nicht geöffnet wurde, wird sie zum ersten Mal während einer Sitzung geöffnet, in der eine Datei mit Kommentaren aktiv ist.",
+ "comments.openView.firstFileUnresolved": "Wenn die Kommentaransicht während dieser Sitzung noch nicht geöffnet und der Kommentar nicht aufgelöst wurde, wird die Ansicht zum ersten Mal während einer Sitzung geöffnet, in der eine Datei mit Kommentaren aktiv ist.",
"comments.openView.never": "Die Kommentaransicht wird nie geöffnet.",
+ "comments.visible": "Steuert die Sichtbarkeit der Kommentarleiste und Kommentarthreads in Editoren, die Kommentarbereiche und Kommentare aufweisen. Auf Kommentare kann weiterhin über die Kommentaransicht zugegriffen werden, und Kommentare werden durch Ausführen des Befehls \"Kommentare: Editorkommentare umschalten\" auf die gleiche Weise eingeschaltet.",
"commentsConfigurationTitle": "Kommentare",
+ "confirmOnCollapse": "Steuert, ob beim Reduzieren eines Kommentarthreads ein Bestätigungsdialogfeld angezeigt wird.",
+ "confirmOnCollapse.never": "Beim Reduzieren eines Kommentarthreads nie ein Bestätigungsdialogfeld anzeigen.",
+ "confirmOnCollapse.whenHasUnsubmittedComments": "Hiermit wird beim Reduzieren eines Kommentarthreads mit nicht übermittelten Kommentaren ein Bestätigungsdialogfeld angezeigt.",
+ "expandAll": "Alle aufklappen",
"openComments": "Steuert, wann das Kommentarpanel geöffnet werden soll.",
+ "reply": "Antwort",
+ "totalUnresolvedComments": "{0} nicht aufgelöste Kommentare",
"useRelativeTime": "Bestimmt, ob die relative Zeit in Kommentarzeitstempeln verwendet wird (z. B. „vor 1 Tag“)."
},
+ "vs/workbench/contrib/comments/browser/commentsAccessibility": {
+ "addCommentNoKb": "– Kommentar zur aktuellen Auswahl{0} hinzufügen.",
+ "commentCommands": "Im Folgenden finden Sie einige nützliche Kommentarbefehle:",
+ "escape": "– Kommentar schließen (Esc)",
+ "intro": "Der Editor enthält Bereiche, die kommentiert werden können. Im Folgenden finden Sie einige nützliche Befehle:",
+ "introWidget": "Dieses Widget enthält einen Textbereich für die Komposition von neuen Kommentaren und Aktionen, zu dem getabbt werden kann, sobald der Fokusmodus für Tabstoppverschiebung mit dem Befehl „Umschalten der TAB-Taste verschiebt den Fokus“{0} aktiviert wurde.",
+ "next": "– Zum nächsten Kommentarbereich{0} wechseln.",
+ "nextCommentThreadKb": "– Zum nächsten Kommentarthread{0} wechseln.",
+ "nextCommentedRangeKb": "– Wechseln Sie zum nächsten kommentierten Bereich{0}.",
+ "previous": "– Zum vorherigen Kommentarbereich{0} wechseln.",
+ "previousCommentThreadKb": "– Zum vorherigen Kommentarthread{0} wechseln.",
+ "previousCommentedRangeKb": "– Wechseln Sie zum vorherigen kommentierten Bereich{0}.",
+ "submitComment": "– Kommentar übermitteln{0}."
+ },
+ "vs/workbench/contrib/comments/browser/commentsController": {
+ "commentRange": "Zeile {0}",
+ "commentRangeStart": "Zeilen {0} bis {1}",
+ "comments.addCommand.error": "Der Cursor muss sich innerhalb eines Kommentarbereichs befinden, um einen Kommentar hinzuzufügen.",
+ "comments.addFileCommentCommand.error": "Dateikommentare sind für diese Datei nicht zulässig.",
+ "hasCommentRanges": "Der Editor verfügt über Kommentarbereiche.",
+ "hasCommentRangesKb": "Der Editor verfügt über Kommentarbereiche. Führen Sie den Befehl \"Hilfe zur Barrierefreiheit öffnen\" ({0}) aus, um weitere Informationen zu erhalten.",
+ "hasCommentRangesNoKb": "Der Editor verfügt über Kommentarbereiche. Führen Sie den Befehl \"Hilfe zur Barrierefreiheit öffnen\" aus, um weitere Informationen zu erhalten. Dieser Befehl kann derzeit nicht über eine Tastenzuordnung ausgelöst werden.",
+ "pickCommentService": "Kommentaranbieter auswählen"
+ },
"vs/workbench/contrib/comments/browser/commentsEditorContribution": {
+ "comments.NextCommentedRange": "Zum nächsten kommentierten Bereich wechseln",
"comments.addCommand": "Kommentar zur aktuellen Zeile hinzufügen",
+ "comments.collapseAll": "Alle Kommentare zuklappen",
+ "comments.expandAll": "Alle Kommentare erweitern",
+ "comments.expandUnresolved": "Nicht aufgelöste Kommentare erweitern",
+ "comments.focusCommand.error": "Der Cursor muss sich in einer Zeile mit einem Kommentar befinden, um den Kommentar zu fokussieren",
+ "comments.focusCommentOnCurrentLine": "Fokus auf den Kommentar auf der aktuellen Zeile",
+ "comments.nextCommentingRange": "Zum nächsten Kommentarbereich wechseln",
+ "comments.previousCommentedRange": "Zum vorherigen kommentierten Bereich wechseln",
+ "comments.previousCommentingRange": "Zum vorherigen Kommentarbereich wechseln",
"comments.toggleCommenting": "Editorkommentare umschalten",
- "hasCommentingProvider": "Gibt an, ob der geöffnete Arbeitsbereich Kommentare oder Kommentarbereiche aufweist.",
- "hasCommentingRange": "Gibt an, ob die Position am aktiven Cursor einen Kommentarbereich aufweist",
- "nextCommentThreadAction": "Zum nächsten Kommentarthread wechseln",
- "pickCommentService": "Kommentaranbieter auswählen",
- "previousCommentThreadAction": "Zum vorherigen Kommentarthread wechseln"
+ "commentsCategory": "Kommentare"
+ },
+ "vs/workbench/contrib/comments/browser/commentsModel": {
+ "noComments": "Dieser Arbeitsbereich enthält noch keine Kommentare."
},
"vs/workbench/contrib/comments/browser/commentsTreeViewer": {
"commentCount": "1 Kommentar",
"commentLine": "[Zeile {0}]",
"commentRange": "[Zeilen {0}–{1}]",
- "commentsCount": "{0} Kommentare",
+ "comments.view.title": "Kommentare",
+ "commentsCountReplies": "{0} Antworten",
+ "commentsCountReply": "1 Antwort",
"image": "Bild",
"imageWithLabel": "Bild: {0}",
- "lastReplyFrom": "Letzte Antwort von {0}"
+ "lastReplyFrom": "Letzte Antwort von {0}",
+ "outdated": "Veraltet"
},
"vs/workbench/contrib/comments/browser/commentsView": {
- "collapseAll": "Alle zuklappen",
- "resourceWithCommentLabel": "Kommentar aus ${0} in Zeile {1}, Spalte {2} in {3}, Quelle: {4}",
+ "accessibleViewHint": "\r\nIn der barrierefreien Ansicht überprüfen ({0}).",
+ "acessibleViewHintNoKbOpen": "\r\nÜberprüfen Sie dies in der barrierefreien Ansicht über den Befehl „Barrierefreie Ansicht öffnen“, der zurzeit nicht über eine Tastenzuordnung ausgelöst werden kann.",
+ "comments.filter.ariaLabel": "Kommentare filtern",
+ "comments.filter.placeholder": "Filtern (z. B. Text, Autor)",
+ "fileCommentLabel": "in {0}",
+ "multiLineCommentLabel": "von Zeile {0} zu Zeile {1} in {2}",
+ "oneLineCommentLabel": "in Zeile {0} Spalte {1} in {2}",
+ "replyCount": " {0} Antworten,",
+ "resourceWithCommentLabel": "{0}: {1}\r\n{2}\r\n{3}\r\n{4}",
+ "resourceWithCommentLabelOutdated": "Veraltet von {0}: {1}\r\n{2}\r\n{3}\r\n{4}",
"resourceWithCommentThreadsLabel": "Kommentare in {0}, vollständiger Pfad: {1}",
- "rootCommentsLabel": "Kommentare für aktuellen Arbeitsbereich"
+ "resourceWithRepliesLabel": "{0} {1}",
+ "rootCommentsLabel": "Kommentare für aktuellen Arbeitsbereich",
+ "showing filtered results": "{0} von {1} angezeigt"
+ },
+ "vs/workbench/contrib/comments/browser/commentsViewActions": {
+ "comment sorts": "Sortieren nach",
+ "comments": "Kommentare",
+ "commentsClearFilterText": "Filtertext löschen",
+ "focusCommentsFilter": "Kommentarfilter fokussieren",
+ "focusCommentsList": "Kommentaransicht fokussieren",
+ "resolved": "Aufgelöst anzeigen",
+ "sorting by position in file": "Position in Datei",
+ "sorting by updated at": "Aktualisierungszeitpunkt",
+ "toggle resolved": "Aufgelöst anzeigen",
+ "toggle sorting by resource": "Position in Datei",
+ "toggle sorting by updated at": "Aktualisierungszeitpunkt",
+ "toggle unresolved": "Nicht aufgelöst anzeigen",
+ "unresolved": "Nicht aufgelöst anzeigen"
+ },
+ "vs/workbench/contrib/comments/browser/commentThreadBody": {
+ "commentThreadAria": "Kommentarthread mit {0} Kommentaren. {1}.",
+ "commentThreadAria.document": "Kommentarthread mit {0}-Kommentaren für das gesamte Dokument. {1}.",
+ "commentThreadAria.withRange": "Kommentarthread mit {0} Kommentaren in Zeilen {1} bis {2}. {3}."
+ },
+ "vs/workbench/contrib/comments/browser/commentThreadHeader": {
+ "collapseIcon": "Symbol für das Zuklappen eines Überprüfungskommentars.",
+ "label.collapse": "Reduzieren",
+ "startThread": "Diskussion starten"
+ },
+ "vs/workbench/contrib/comments/browser/commentThreadWidget": {
+ "commentLabel": "Kommentar",
+ "commentLabelWithKeybinding": "{0}, verwenden Sie ({1}) für Hilfe zur Barrierefreiheit",
+ "commentLabelWithKeybindingNoKeybinding": "{0}, führen Sie den Befehl \"Hilfe zur Barrierefreiheit öffnen\" aus, der derzeit nicht über eine Tastenzuordnung ausgelöst werden kann."
+ },
+ "vs/workbench/contrib/comments/browser/commentThreadZoneWidget": {
+ "confirmCollapse": "Durch das Einklappen dieses Kommentarthreads werden nicht übermittelte Kommentare verworfen. Möchten Sie diese Kommentare wirklich verwerfen?",
+ "discard": "Verwerfen",
+ "neverAskAgain": "Nie mehr fragen"
},
"vs/workbench/contrib/comments/browser/reactionsAction": {
+ "comment.reactionLabelMany": "{0}{1} Reaktionen mit {2}",
+ "comment.reactionLabelNone": "{0}{1} Reaktion",
+ "comment.reactionLabelOne": "{0}1 Reaktion mit {1}",
+ "comment.reactionLessThanTen": "{0}{1} hat mit {2} reagiert",
+ "comment.reactionMoreThanTen": "{0}{1} und {2} weitere reagierten mit {3}",
+ "comment.toggleableReaction": "Reaktion umschalten, ",
"pickReactions": "Reaktionen auswählen..."
},
- "vs/workbench/contrib/comments/common/commentModel": {
- "noComments": "Dieser Arbeitsbereich enthält noch keine Kommentare."
+ "vs/workbench/contrib/comments/common/commentContextKeys": {
+ "comment": "Der Kontextwert des Kommentars",
+ "commentController": "Die einem Kommentarthread zugeordnete Kommentarcontroller-ID",
+ "commentFocused": "Wird festgelegt, wenn der Kommentar den Fokus erhält.",
+ "commentIsEmpty": "Festlegen, wenn der Kommentar keine Eingabe enthält",
+ "commentThread": "Der Kontextwert des Kommentarthreads.",
+ "commentThreadIsEmpty": "Festlegen, wenn der Kommentarthread keine Kommentare enthält",
+ "commentingEnabled": "Gibt an, ob die Kommentarfunktion aktiviert ist.",
+ "editorHasCommentingRange": "Gibt an, ob der aktive Editor über einen Kommentarbereich verfügt.",
+ "hasComment": "Gibt an, ob die Position am aktiven Cursor einen Kommentar aufweist",
+ "hasCommentingProvider": "Gibt an, ob der geöffnete Arbeitsbereich Kommentare oder Kommentarbereiche aufweist.",
+ "hasCommentingRange": "Gibt an, ob die Position am aktiven Cursor einen Kommentarbereich aufweist"
+ },
+ "vs/workbench/contrib/customEditor/browser/customEditorInput": {
+ "editorCannotMove": "\"{0}\" kann nicht verschoben werden: Der Editor enthält Änderungen, die nur im aktuellen Fenster gespeichert werden können.",
+ "editorUnsupportedInWindow": "Der Editor kann in diesem Fenster nicht geöffnet werden. Er enthält Änderungen, die nur im ursprünglichen Fenster gespeichert werden können.",
+ "reopenInOriginalWindow": "Im Originalfenster öffnen"
},
"vs/workbench/contrib/customEditor/common/contributedCustomEditors": {
"builtinProviderDisplayName": "Integriert"
@@ -4649,6 +8145,9 @@
"vs/workbench/contrib/customEditor/common/customEditor": {
"context.customEditor": "Der viewType des zurzeit aktiven benutzerdefinierten Editors."
},
+ "vs/workbench/contrib/customEditor/common/customTextEditorModel": {
+ "vetoExtHostRestart": "Ein durch die Erweiterung bereitgestellter Text-Editor für '{0}' ist noch geöffnet, der andernfalls geschlossen würde."
+ },
"vs/workbench/contrib/customEditor/common/extensionPoint": {
"contributes.customEditors": "Beigetragene benutzerdefinierte Editoren.",
"contributes.displayName": "Der lesbare Name des benutzerdefinierten Editors. Dieser wird den Benutzern angezeigt, wenn sie den zu verwendenden Editor auswählen.",
@@ -4657,7 +8156,11 @@
"contributes.priority.option": "Der Editor wird nicht automatisch verwendet, wenn der Benutzer eine Ressource öffnet. Ein Benutzer kann jedoch mit dem Befehl \"Erneut öffnen mit\" zum Editor wechseln.",
"contributes.selector": "Gruppe von Globs, für die der benutzerdefinierte Editor aktiviert ist.",
"contributes.selector.filenamePattern": "Globzeichenfolge, für die der benutzerdefinierte Editor aktiviert ist.",
- "contributes.viewType": "Bezeichner für den benutzerdefinierten Editor. Dieser muss für alle benutzerdefinierten Editoren eindeutig sein. Daher empfiehlt es sich, die Erweiterungs-ID als Teil von \"viewType\" einzufügen. \"viewType\" wird beim Registrieren benutzerdefinierter Editoren mit \"vscode.registerCustomEditorProvider\" und im [Aktivierungsereignis](https://code.visualstudio.com/api/references/activation-events) \"onCustomEditor:${id}\" verwendet."
+ "contributes.viewType": "Bezeichner für den benutzerdefinierten Editor. Dieser muss für alle benutzerdefinierten Editoren eindeutig sein. Daher empfiehlt es sich, die Erweiterungs-ID als Teil von \"viewType\" einzufügen. \"viewType\" wird beim Registrieren benutzerdefinierter Editoren mit \"vscode.registerCustomEditorProvider\" und im [Aktivierungsereignis](https://code.visualstudio.com/api/references/activation-events) \"onCustomEditor:${id}\" verwendet.",
+ "customEditors": "Benutzerdefinierte Editoren",
+ "customEditors filenamePattern": "Dateinamensmuster",
+ "customEditors priority": "Priorität",
+ "customEditors view type": "Ansichtstyp"
},
"vs/workbench/contrib/debug/browser/baseDebugView": {
"debug.lazyButton.tooltip": "Zum Erweitern klicken"
@@ -4666,17 +8169,18 @@
"addBreakpoint": "Haltepunkt hinzufügen",
"addConditionalBreakpoint": "Bedingten Haltepunkt hinzufügen...",
"addLogPoint": "Protokollpunkt hinzufügen ...",
+ "addTriggeredBreakpoint": "Ausgelösten Haltepunkt hinzufügen...",
"breakpoint": "Haltepunkt",
"breakpointHasConditionDisabled": "Diese {0} enthält eine {1}, die beim Entfernen verloren geht. Aktivieren Sie stattdessen ggf. {0}. ",
"breakpointHasConditionEnabled": "Dieser {0} hat eine {1}, die beim Entfernen verloren geht. Deaktivieren Sie stattdessen ggf. den {0}.",
- "cancel": "Abbrechen",
+ "breakpointHelper": "Klicken, um einen Haltepunkt hinzuzufügen.",
"condition": "Bedingung",
"debugIcon.breakpointCurrentStackframeForeground": "Symbolfarbe für den Rahmen des aktuellen Breaktpointstapels",
"debugIcon.breakpointDisabledForeground": "Symbolfarbe für deaktivierte Breakpoints",
"debugIcon.breakpointForeground": "Symbolfarbe für Breakpoints",
"debugIcon.breakpointStackframeForeground": "Symbolfarbe für die Rahmen aller Breakpointstapel",
"debugIcon.breakpointUnverifiedForeground": "Symbolfarbe für nicht überprüfte Breakpoints",
- "disable": "Deaktivieren",
+ "disable": "&&Deaktivieren",
"disableBreakpoint": "{0} deaktivieren",
"disableBreakpointOnLine": "Zeilenhaltepunkt deaktivieren",
"disableInlineColumnBreakpoint": "Inlinehaltepunkt in Spalte {0} deaktivieren",
@@ -4685,7 +8189,7 @@
"editBreakpoints": "Haltepunkte bearbeiten",
"editInlineBreakpointOnColumn": "Inlinehaltepunkt in Spalte {0} bearbeiten",
"editLineBreakpoint": "Zeilenhaltepunkt bearbeiten",
- "enable": "Aktivieren",
+ "enable": "&&Aktivieren",
"enableBreakpoint": "{0} aktivieren",
"enableBreakpointOnLine": "Zeilenhaltepunkt aktivieren",
"enableBreakpoints": "Inlinehaltepunkt in Spalte {0} aktivieren",
@@ -4696,39 +8200,44 @@
"removeBreakpoints": "Haltepunkte entfernen",
"removeInlineBreakpointOnColumn": "Inlinehaltepunkt in Spalte {0} entfernen",
"removeLineBreakpoint": "Zeilenhaltepunkt entfernen",
- "removeLogPoint": "\"{0}\" entfernen",
+ "removeLogPoint": "&&{0} entfernen",
"runToLine": "Bis Zeile ausführen"
},
- "vs/workbench/contrib/debug/browser/breakpointWidget": {
- "breakpointType": "Art des Breakpoints",
- "breakpointWidgetExpressionPlaceholder": "Unterbrechen, wenn der Ausdruck als TRUE ausgewertet wird. EINGABETASTE zum Akzeptieren, ESC-TASTE zum Abbrechen.",
- "breakpointWidgetHitCountPlaceholder": "Unterbrechen, wenn die Bedingung für die Trefferanzahl erfüllt ist. EINGABETASTE zum Akzeptieren, ESC-TASTE zum Abbrechen.",
- "breakpointWidgetLogMessagePlaceholder": "Zu protokollierende Nachricht, wenn der Haltepunkt erreicht wird. Ausdrücke innerhalb von {} werden interpoliert. Betätigen Sie die EINGABETASTE, um dies zu akzeptieren, oder ECS, um den Vorgang abzubrechen.",
- "expression": "Ausdruck",
- "hitCount": "Trefferanzahl",
- "logMessage": "Protokollnachricht"
- },
"vs/workbench/contrib/debug/browser/breakpointsView": {
"access": "Zugriff",
"activateBreakpoints": "Aktivieren von Haltepunkten umschalten",
+ "addDataBreakpointOnAddress": "Datenhaltepunkt an Adresse hinzufügen",
"addFunctionBreakpoint": "Funktionshaltepunkt hinzufügen",
"breakpoint": "Haltepunkt",
"breakpointUnsupported": "Haltepunkte dieses Typs werden vom Debugger nicht unterstützt",
"breakpoints": "Haltepunkte",
+ "dataBreakPointExpresionAriaLabel": "Geben Sie den Ausdruck ein. Der Datenhaltepunkt wird unterbrochen, wenn der Ausdruck als \"wahr\" ausgewertet wird",
+ "dataBreakPointHitCountAriaLabel": "Geben Sie die Trefferanzahl ein. Der Datenhaltepunkt wird unterbrochen, wenn die Trefferanzahl erreicht wird.",
"dataBreakpoint": "Datenhaltepunkt",
+ "dataBreakpointAccessType": "Wählen Sie den zu überwachenden Zugriffstyp aus.",
+ "dataBreakpointAddrFormat": "Die Adresse muss ein Zahlenbereich im Format „[Start] – [Ende]“ oder „[Start] + [Bytes]“ sein.",
+ "dataBreakpointAddrStartEnd": "Die Zahl muss eine dezimale ganze Zahl oder ein Hexadezimalwert sein, der mit „0x“ beginnt und „{0}“ hat.",
+ "dataBreakpointError": "Fehler beim Festlegen des Datenhaltepunkts unter {0}: {1}",
+ "dataBreakpointExpressionPlaceholder": "Anhalten, wenn der Ausdruck als TRUE ausgewertet wird",
+ "dataBreakpointHitCountPlaceholder": "Bei Erreichen der Trefferanzahl unterbrechen",
+ "dataBreakpointMemoryRangePlaceholder": "Absoluter Bereich (0x1234 – 0x1300) oder Bytebereich nach einer Adresse (0x1234 + 0xff)",
+ "dataBreakpointMemoryRangePrompt": "Geben Sie einen Speicherbereich ein, in dem unterbrochen werden soll.",
"dataBreakpointUnsupported": "Datenhaltepunkte werden von diesem Debugtyp nicht unterstützt.",
"dataBreakpointsNotSupported": "Datenhaltepunkte werden von diesem Debugtyp nicht unterstützt.",
+ "debug.decimal.address": "Dezimaladresse: {0}",
"disableAllBreakpoints": "Alle Haltepunkte deaktivieren",
"disabledBreakpoint": "Deaktivierter Haltepunkt",
"disabledLogpoint": "Deaktivierter Protokollpunkt",
- "editBreakpoint": "Funktionshaltepunkt bearbeiten...",
+ "editBreakpoint": "Funktionsbedingung bearbeiten...",
"editCondition": "Bedingung bearbeiten...",
+ "editDataBreakpointOnAddress": "Adresse bearbeiten...",
"editHitCount": "Trefferanzahl bearbeiten...",
+ "editMode": "Bearbeitungsmodus...",
"enableAllBreakpoints": "Alle Haltepunkte aktivieren",
"exceptionBreakpointAriaLabel": "Bedingung für Typausnahme-Haltepunkt",
"exceptionBreakpointPlaceholder": "Anhalten, wenn der Ausdruck als TRUE ausgewertet wird",
- "expression": "Ausdrucksbedingung: {0}",
- "expressionAndHitCount": "Ausdruck: {0} | Trefferanzahl: {1}",
+ "expression": "Bedingung: {0}",
+ "expressionAndHitCount": "Bedingung: {0} | Trefferanzahl: {1}",
"expressionCondition": "Ausdrucksbedingung: {0}",
"functionBreakPointExpresionAriaLabel": "Geben Sie den Ausdruck ein. Der Vorgang wird am Funktionshaltepunkt unterbrochen, wenn der Ausdruck als TRUE ausgewertet wird.",
"functionBreakPointHitCountAriaLabel": "Geben Sie die Trefferanzahl ein. Der Vorgang wird am Funktionshaltepunkt unterbrochen, wenn die Trefferanzahl erreicht wird.",
@@ -4744,6 +8253,7 @@
"instructionBreakpointAtAddress": "Anweisungsbruchstelle an Adresse {0}",
"instructionBreakpointUnsupported": "Anweisungsbruchstellen werden von diesem Debugtyp nicht unterstützt",
"logMessage": "Protokollnachricht: {0}",
+ "miDataBreakpoint": "&&Datenhaltepunkt...",
"miDisableAllBreakpoints": "A&&lle Haltepunkte deaktivieren",
"miEnableAllBreakpoints": "&&Alle Haltepunkte aktivieren",
"miFunctionBreakpoint": "&&Funktionshaltepunkt...",
@@ -4752,11 +8262,29 @@
"reapplyAllBreakpoints": "Alle Haltepunkte erneut anwenden",
"removeAllBreakpoints": "Alle Haltepunkte entfernen",
"removeBreakpoint": "Haltepunkt entfernen",
+ "selectBreakpointMode": "Haltepunktmodus auswählen",
+ "triggeredBy": "Nach Haltepunkt auslösen: {0}",
"unverifiedBreakpoint": "Nicht überprüfter Haltepunkt",
"unverifiedExceptionBreakpoint": "Nicht überprüfter Ausnahmehaltepunkt",
"unverifiedLogpoint": "Nicht überprüfter Protokollpunkt",
"write": "Schreiben"
},
+ "vs/workbench/contrib/debug/browser/breakpointWidget": {
+ "bpMode": "Modus",
+ "breakpointType": "Art des Breakpoints",
+ "breakpointWidgetExpressionPlaceholder": "Unterbrechen, wenn der Ausdruck als TRUE ausgewertet wird. {0} zum Akzeptieren, {1} zum Abbrechen.",
+ "breakpointWidgetHitCountPlaceholder": "Unterbrechen, wenn die Bedingung für die Trefferanzahl erfüllt ist. {0} zum Akzeptieren, {1} zum Abbrechen.",
+ "breakpointWidgetLogMessagePlaceholder": "Zu protokollierende Nachricht, wenn der Haltepunkt erreicht wird. Ausdrücke innerhalb von {} werden interpoliert. {0} zum akzeptieren, {1} zum Abbrechen.",
+ "expression": "Ausdruck",
+ "hitCount": "Trefferanzahl",
+ "logMessage": "Protokollnachricht",
+ "noBpSource": "Die Quelle konnte nicht geladen werden.",
+ "noTriggerByBreakpoint": "Keine",
+ "ok": "OK",
+ "selectBreakpoint": "Haltepunkt auswählen",
+ "triggerByLoading": "Wird geladen...",
+ "triggeredBy": "Auf Haltepunkt warten"
+ },
"vs/workbench/contrib/debug/browser/callStackEditorContribution": {
"focusedStackFrameLineHighlight": "Hintergrundfarbe zur Hervorhebung der Zeile an der Position des fokussierten Stapelrahmens.",
"topStackFrameLineHighlight": "Hintergrundfarbe zur Hervorhebung der Zeile an der Position des obersten Stapelrahmens."
@@ -4764,7 +8292,7 @@
"vs/workbench/contrib/debug/browser/callStackView": {
"callStackAriaLabel": "Aufrufliste debuggen",
"collapse": "Alle zuklappen",
- "loadAllStackFrames": "Alle Stapelrahmen laden",
+ "loadAllStackFrames": "Weitere Stapelrahmen laden",
"paused": "Angehalten",
"pausedOn": "Angehalten bei {0}",
"restartFrame": "Frame neu starten",
@@ -4777,21 +8305,30 @@
"stackFrameAriaLabel": "Stapelrahmen \"{0}\", Zeile {1}, {2}",
"threadAriaLabel": "Thread \"{0}\": {1}"
},
+ "vs/workbench/contrib/debug/browser/callStackWidget": {
+ "failedToLoadFrames": "Fehler beim Laden von Stapelrahmen: {0}",
+ "goToFile": "Datei öffnen",
+ "stackFrameLocation": "Zeile: {0} Spalte: {1}",
+ "stackTrace": "Stapelüberwachung",
+ "stackTraceLabel": "{0}, Zeile {1} in {2}"
+ },
"vs/workbench/contrib/debug/browser/debug.contribution": {
"SetNextStatement": "Nächste Anweisung festlegen",
- "addToWatchExpressions": "Zur Überwachung hinzufügen",
"allowBreakpointsEverywhere": "Das Festlegen von Haltepunkten für alle Dateien ermöglichen.",
- "always": "Debuggen immer in Statusleiste anzeigen",
+ "always": "Debugelement immer in der Statusleiste anzeigen",
"breakWhenValueChanges": "Unterbrechung beim Ändern von Werten",
"breakWhenValueIsAccessed": "Unterbrechung beim Zugriff auf Werte",
"breakWhenValueIsRead": "Unterbrechung beim Lesen von Werten",
"breakpoints": "Haltepunkte",
"callStack": "Aufrufliste",
"cancel": "Brechen Sie das Debuggen ab.",
- "copyAsExpression": "Als Ausdruck kopieren",
+ "closeReadonlyTabsOnEnd": "Am Ende einer Debugsitzung werden alle schreibgeschützten Registerkarten geschlossen, die dieser Sitzung zugeordnet sind.",
"copyStackTrace": "Aufrufliste kopieren",
"copyValue": "Wert kopieren",
- "debug.autoExpandLazyVariables": "Automatisches Anzeigen von Werten für Variablen, die vom Debugger verzögert aufgelöst werden, z. B. Getter.",
+ "debug.autoExpandLazyVariables": "Steuert, ob verzögert aufgelöste Variablen, z. B. Getter, automatisch vom Debugger aufgelöst und erweitert werden.",
+ "debug.autoExpandLazyVariables.auto": "Im für die Sprachausgabe optimierten Modus, verzögerte Variablen immer automatisch erweitern.",
+ "debug.autoExpandLazyVariables.off": "Verzögerte Variablen nie automatisch erweitern.",
+ "debug.autoExpandLazyVariables.on": "Verzögerte Variablen immer automatisch erweitern.",
"debug.confirmOnExit": "Steuert, ob beim Schließen eines Fensters eine Bestätigung erfolgen soll, wenn aktive Debugsitzungen vorhanden sind.",
"debug.confirmOnExit.always": "Überprüfen Sie immer, ob Debugsitzungen vorhanden sind.",
"debug.confirmOnExit.never": "Nie bestätigen.",
@@ -4801,11 +8338,19 @@
"debug.console.fontFamily": "Legt die Schriftfamilie der Debugging-Konsole fest.",
"debug.console.fontSize": "Legt die Schriftgröße der Debugging-Konsole in Pixeln fest.",
"debug.console.historySuggestions": "Steuert, ob die Debugging-Konsole zuvor eingegebene Eingaben vorschlagen soll.",
- "debug.console.lineHeight": "Legt die Zeilenhöhe der Debugging-Konsole in Pixeln fest. Geben Sie \"0\" ein, wenn die Zeilenhöhe aus dem Schriftgrad berechnet werden soll.",
- "debug.console.wordWrap": "Steuert, ob die Zeilen in der Debugkonsole umbrochen werden sollen.",
+ "debug.console.lineHeight": "Legt die Zeilenhöhe der Debugging-Konsole in Pixeln fest. Geben Sie „0“ ein, wenn die Zeilenhöhe aus dem Schriftgrad berechnet werden soll.",
+ "debug.console.maximumLines": "Steuert die maximale Anzahl von Zeilen im Debugging-Konsole.",
+ "debug.console.wordWrap": "Steuert, ob die Zeilen in der Debugging-Konsole umbrochen werden sollen.",
"debug.disassemblyView.showSourceCode": "Quellcode in Disassemblierungsansicht anzeigen.",
+ "debug.enableStatusBarColor": "Farbe der Statusleiste bei aktivem Debugger.",
"debug.focusEditorOnBreak": "Steuert, ob das Workbench-Fenster den Fokus erhalten soll, wenn der Debugger unterbrochen wird.",
"debug.focusWindowOnBreak": "Steuert, ob das Workbench-Fenster den Fokus erhalten soll, wenn der Debugger unterbrochen wird.",
+ "debug.gutterMiddleClickAction.conditionalBreakpoint": "Bedingten Haltepunkt hinzufügen",
+ "debug.gutterMiddleClickAction.logpoint": "Protokollpunkt hinzufügen",
+ "debug.gutterMiddleClickAction.none": "Führen Sie keine Aktion aus.",
+ "debug.gutterMiddleClickAction.triggeredBreakpoint": "Ausgelösten Haltepunkt hinzufügen",
+ "debug.hideLauncherWhileDebugging": "Hiermit blenden Sie das Steuerelement „Debuggen starten“ in der Titelleiste der Ansicht „Ausführen und debuggen“ aus, während das Debuggen aktiv ist. Nur relevant, wenn „{0}“ nicht angedockt ist.",
+ "debug.hideSlowPreLaunchWarning": "Warnung ausblenden, die angezeigt wird, wenn „preLaunchTask“ für eine gewisse Zeit ausgeführt wird.",
"debug.onTaskErrors": "Steuert die erforderlichen Schritte, wenn nach Ausführung von preLaunchTask Fehler festgestellt werden.",
"debug.saveBeforeStart": "Steuert, welche Editoren vor dem Starten einer Debugsitzung gespeichert werden.",
"debug.saveBeforeStart.allEditorsInActiveGroup": "Vor dem Start einer Debugsitzung alle Editoren in der aktiven Gruppe speichern",
@@ -4815,10 +8360,14 @@
"debugAnyway": "Hiermit werden Aufgabenfehler ignoriert und das Debuggen gestartet.",
"debugCategory": "Debuggen",
"debugConfigurationTitle": "Debuggen",
- "debugFocusConsole": "Fokus auf der Debugging-Konsolenansicht",
"debugPanel": "Debugging-Konsole",
+ "debugToolBar.commandCenter": "(Experimentell): Anzeige der Debugsymbolleiste im Befehlscenter.",
+ "debugToolBar.docked": "Debugsymbolleiste nur in Debugansichten anzeigen.",
+ "debugToolBar.floating": "Debugsymbolleiste in allen Ansichten anzeigen.",
+ "debugToolBar.hidden": "Debugsymbolleiste nicht anzeigen.",
"disassembly": "Disassemblierung",
"editWatchExpression": "Ausdruck bearbeiten",
+ "gutterMiddleClickAction": "Steuert die Aktion, die beim Klicken auf den Editor-Bundsteg mit der mittleren Maustaste ausgeführt werden soll.",
"inlineBreakpoint": "Inlinehaltepunkt",
"inlineValues": "Variablenwerte beim Debuggen in den Editor eingebunden anzeigen",
"inlineValues.focusNoScroll": "Zeigt Variablenwerte während des Debuggens inline im Editor an, wenn die Sprache Inlinepositionen für Werte unterstützt.",
@@ -4840,10 +8389,11 @@
"miStepOut": "Rückspr&&ung",
"miStepOver": "Prozedur&&schritt",
"miStopDebugging": "&&Debugging beenden",
+ "miToggleBreakpoint": "Haltepunkt umschalten",
"miToggleDebugConsole": "De&&bugging-Konsole",
"miViewRun": "&&Ausführen",
- "never": "Debuggen nie in Statusleiste anzeigen",
- "onFirstSessionStart": "Debuggen nur in Statusleiste anzeigen, nachdem das Debuggen erstmals gestartet wurde",
+ "never": "Debugelement nie in der Statusleiste anzeigen",
+ "onFirstSessionStart": "Debugelement nur in Statusleiste anzeigen, nachdem das Debuggen erstmals gestartet wurde",
"openDebug": "Steuert, wann die Debugansicht geöffnet werden soll.",
"openExplorerOnEnd": "Die Explorer-Ansicht wird automatisch am Ende einer Debugsitzung geöffnet.",
"prompt": "Benutzer auffordern",
@@ -4851,18 +8401,20 @@
"restartFrame": "Frame neu starten",
"run": "Ausführen oder Debuggen...",
"run and debug": "Ausführen und debuggen",
+ "runMenu": "Ausführen",
"setValue": "Wert festlegen",
"showBreakpointsInOverviewRuler": "Legt fest, ob Breakpoints im Übersichtslineal angezeigt werden sollen.",
"showErrors": "Hiermit wird die Problemansicht angezeigt und das Debuggen nicht gestartet.",
- "showInStatusBar": "Steuert, wann die Debugstatusleiste angezeigt werden soll.",
+ "showInStatusBar": "Steuert, wann das Debug-Statusleistenelement angezeigt werden soll.",
"showInlineBreakpointCandidates": "Legt fest, ob Dekorationen für Inlinebreakpointkandidaten während des Debuggens im Editor angezeigt werden sollen",
"showSubSessionsInToolBar": "Legt fest, ob die untergeordneten Sitzungen der Debugsitzung auf der Debugsymbolleiste angezeigt werden. Wenn diese Einstellung deaktiviert ist, wird mit dem Beenden einer untergeordneten Sitzung auch die übergeordnete Sitzung beendet.",
+ "showVariableTypes": "Variablentyp im Variablenbereich während der Debugsitzung anzeigen",
"startDebugPlaceholder": "Geben Sie den Namen einer Startkonfiguration, um die Ausführung zu starten.",
"startDebuggingHelp": "Debuggen starten",
"tasksQuickAccessHelp": "Alle Debug-Konsolen anzeigen",
"tasksQuickAccessPlaceholder": "Geben Sie den Namen einer zu öffnenden Debug-Konsole ein.",
"terminateThread": "Thread beenden",
- "toolBarLocation": "Steuert die Position der Symbolleiste \"Debuggen\". Entweder \"floating\" (unverankert) in allen Ansichten, \"docked\" (angedockt) in der Debugansicht oder \"hidden\" (ausgeblendet).",
+ "toolBarLocation": "Steuert die Position der Symbolleiste „Debuggen\". Entweder „floating“ in allen Ansichten, „docked“ in der Debugansicht, „commandCenter“ (erfordert {0}) oder „hidden\".",
"variables": "Variablen",
"viewMemory": "Binärdaten anzeigen",
"watch": "Überwachen"
@@ -4870,23 +8422,26 @@
"vs/workbench/contrib/debug/browser/debugActionViewItems": {
"addConfigTo": "Konfiguration hinzufügen ({0})...",
"addConfiguration": "Konfiguration hinzufügen...",
+ "commentLabelWithKeybinding": "{0}, verwenden Sie ({1}) für Hilfe zur Barrierefreiheit",
+ "commentLabelWithKeybindingNoKeybinding": "{0}, führen Sie den Befehl \"Hilfe zur Barrierefreiheit öffnen\" aus, der derzeit nicht über eine Tastenzuordnung ausgelöst werden kann.",
"debugLaunchConfigurations": "Debugstartkonfigurationen",
"debugSession": "Debugsitzung",
"noConfigurations": "Keine Konfigurationen"
},
"vs/workbench/contrib/debug/browser/debugAdapterManager": {
"CouldNotFindLanguage": "Es gibt keine Erweiterung zum Debuggen von {0}. Soll eine {0} Erweiterung im Marketplace gesucht werden?",
- "cancel": "Abbrechen",
"debugName": "Name der Konfiguration; wird im Dropdownmenü der Startkonfiguration angezeigt.",
"debugNoType": "Der Debugger \"type\" darf nicht ausgelassen werden und muss den Typ \"string\" aufweisen.",
"debugPostDebugTask": "Ein Task, der ausgeführt werden soll, nachdem die Debugsitzung endet.",
"debugPrelaunchTask": "Ein Task, der ausgeführt werden soll, bevor die Debugsitzung beginnt.",
"debugServer": "Nur für die Entwicklung von Debugerweiterungen: Wenn ein Port angegeben ist, versucht der VS-Code, eine Verbindung mit einem Debugadapter herzustellen, der im Servermodus ausgeführt wird.",
- "findExtension": "Extensions {0} suchen",
+ "findExtension": "&&{0}-Erweiterung suchen",
"installExt": "Erweiterung installieren...",
"installLanguage": "Erweiterung für {0} installieren...",
+ "moreOptionsForDebugType": "Weitere {0} Optionen...",
"selectDebug": "Debugger auswählen",
- "suggestedDebuggers": "Vorgeschlagen"
+ "suggestedDebuggers": "Vorgeschlagen",
+ "suppressMultipleSessionWarning": "Deaktivieren Sie die Warnung, wenn Sie versuchen, dieselbe Debugkonfiguration mehrmals zu starten."
},
"vs/workbench/contrib/debug/browser/debugColors": {
"debugIcon.continueForeground": "Symbol zum Fortfahren auf der Debuggersymbolleiste",
@@ -4903,13 +8458,19 @@
"debugToolBarBorder": "Rahmenfarbe der Debug-Symbolleiste."
},
"vs/workbench/contrib/debug/browser/debugCommands": {
+ "addConfiguration": "Konfiguration hinzufügen...",
"addInlineBreakpoint": "Inlinehaltepunkt hinzufügen",
+ "addToWatchExpressions": "Zur Überwachung hinzufügen",
+ "attachToCurrentCodeRenderer": "An aktuellen Code-Renderer anfügen",
"callStackBottom": "Zum Ende der Aufrufliste navigieren",
"callStackDown": "Aufrufliste nach unten navigieren",
"callStackTop": "Zum Anfang der Aufrufliste navigieren",
"callStackUp": "Aufrufliste nach oben navigieren",
"chooseLocation": "Spezifischen Speicherort auswählen",
"continueDebug": "Weiter",
+ "copyAddress": "Adresse kopieren",
+ "copyAsExpression": "Als Ausdruck kopieren",
+ "copyValue": "Wert kopieren",
"debug": "Debuggen",
"disconnect": "Trennen",
"disconnectSuspend": "Trennen und anhalten",
@@ -4926,13 +8487,15 @@
"selectAndStartDebugging": "Debugging auswählen und starten",
"selectDebugConsole": "Debugging-Konsole auswählen",
"selectDebugSession": "Debugsitzung auswählen",
+ "selectExceptionBreakpointsPlaceholder": "Aktivierte Ausnahmehaltepunkte auswählen",
"startDebug": "Debuggen starten",
"startWithoutDebugging": "Ohne Debuggen starten",
"stepIntoDebug": "Einzelschritt",
"stepIntoTargetDebug": "Einzelschrittziel",
"stepOutDebug": "Ausführen bis Rücksprung",
"stepOverDebug": "Prozedurschritt",
- "stop": "Stopp"
+ "stop": "Stopp",
+ "toggleExceptionBreakpoints": "Ausnahmehaltepunkte umschalten"
},
"vs/workbench/contrib/debug/browser/debugConfigurationManager": {
"DebugConfig.failed": "Die Datei \"launch.json\" kann nicht im Ordner \".vscode\" erstellt werden ({0}).",
@@ -4945,6 +8508,7 @@
"workbench.action.debug.startDebug": "Starten Sie eine neue Debug-Sitzung"
},
"vs/workbench/contrib/debug/browser/debugEditorActions": {
+ "EditBreakpointEditorAction": "Debuggen: Haltepunkt bearbeiten",
"addToWatch": "Zur Überwachung hinzufügen",
"closeExceptionWidget": "Ausnahmewidget schließen",
"conditionalBreakpointEditorAction": "Debuggen: Bedingten Haltepunkt hinzufügen...",
@@ -4955,18 +8519,21 @@
"logPointEditorAction": "Debuggen: Protokollpunkt hinzufügen ...",
"miConditionalBreakpoint": "&&Bedingter Haltepunkt...",
"miDisassemblyView": "&&disassemblyAnsicht",
+ "miEditBreakpoint": "Haltepunkt &&bearbeiten",
"miLogPoint": "&&Protokollpunkt...",
"miToggleBreakpoint": "Haltepunkt &&umschalten",
+ "miTriggerByBreakpoint": "&&Breakpoint ausgelöst...",
"mitogglesource": "&&ToggleSource",
"openDisassemblyView": "Disassemblyansicht öffnen",
"runToCursor": "Ausführen bis Cursor",
"showDebugHover": "Debuggen: Hover anzeigen",
"stepIntoTargets": "Einzelschrittziel",
"toggleBreakpointAction": "Debuggen: Haltepunkt umschalten",
- "toggleDisassemblyViewSourceCode": "Quellcode in Disassemblierungsansicht umschalten"
+ "toggleDisassemblyViewSourceCode": "Quellcode in Disassemblierungsansicht umschalten",
+ "toggleDisassemblyViewSourceCodeDescription": "Zeigt Quellcode in der Disassemblierung an oder blendet ihn aus.",
+ "triggerByBreakpointEditorAction": "Debuggen: Ausgelösten Haltepunkt hinzufügen..."
},
"vs/workbench/contrib/debug/browser/debugEditorContribution": {
- "addConfiguration": "Konfiguration hinzufügen...",
"editor.inlineValuesBackground": "Hintergrundfarbe des Debuginlinewerts.",
"editor.inlineValuesForeground": "Farbe des Debuginlinewerttexts."
},
@@ -4996,6 +8563,7 @@
"debugBreakpointLog": "Symbol für Protokollhaltepunkte",
"debugBreakpointLogDisabled": "Symbol für deaktivierte Protokollhaltepunkte",
"debugBreakpointLogUnverified": "Symbol für nicht überprüfte Protokollhaltepunkte",
+ "debugBreakpointPendingOnTrigger": "Symbol für Haltepunkte, die auf einen anderen Haltepunkt warten.",
"debugBreakpointUnsupported": "Symbol für nicht unterstützte Haltepunkte",
"debugBreakpointUnverified": "Symbol für nicht überprüfte Haltepunkte",
"debugCollapseAll": "Symbol für die Aktion zum Zuklappen aller Elemente in den Debugansichten",
@@ -5028,6 +8596,7 @@
"variablesViewIcon": "Ansichtssymbol der Variablenansicht.",
"watchExpressionRemove": "Symbol für die Aktion Entfernen in der Überwachungsansicht.",
"watchExpressionsAdd": "Symbol für die Aktion zum Hinzufügen in der Überwachungsansicht.",
+ "watchExpressionsAddDataBreakpoint": "Symbol für die Aktion „Datenhaltepunkt hinzufügen“ in der Haltepunktansicht",
"watchExpressionsAddFuncBreakpoint": "Symbol für die Aktion zum Hinzufügen eines Funktionshaltepunkts in der Überwachungsansicht",
"watchExpressionsRemoveAll": "Symbol für die Aktion \"Alle entfernen\" in der Überwachungsansicht.",
"watchViewIcon": "Ansichtssymbol der Überwachungsansicht."
@@ -5038,15 +8607,16 @@
"configure": "Konfigurieren",
"contributed": "Beigetragen",
"customizeLaunchConfig": "Startkonfiguration festlegen",
+ "mostRecent": "Zuletzt verwendet",
"noDebugResults": "Keine übereinstimmenden Startkonfigurationen.",
"providerAriaLabel": "{0} beigetragene Konfigurationen",
"removeLaunchConfig": "Startkonfiguration entfernen"
},
"vs/workbench/contrib/debug/browser/debugService": {
"1activeSession": "1 aktive Sitzung",
+ "active debug session": "Es wird noch eine Debugsitzung ausgeführt, die beendet werden würde.",
"breakpointAdded": "Haltepunkt hinzugefügt, Zeile {0}, Datei {1}",
"breakpointRemoved": "Haltepunkt entfernt, Zeile {0}, Datei {1}",
- "cancel": "Abbrechen",
"compoundMustHaveConfigurations": "Für den Verbund muss das Attribut \"configurations\" festgelegt werden, damit mehrere Konfigurationen gestartet werden können.",
"configMissing": "Konfiguration \"{0}\" fehlt in \"launch.json\".",
"debugAdapterCrash": "Der Debugadapterprozess wurde unerwartet beendet ({0}).",
@@ -5068,26 +8638,29 @@
},
"vs/workbench/contrib/debug/browser/debugSession": {
"debuggingStarted": "Das Debuggen wurde gestartet.",
+ "debuggingStartedNoDebug": "Die Ausführung wurde ohne Debuggen gestartet.",
"debuggingStopped": "Das Debuggen wurde beendet.",
"noDebugAdapter": "Es ist kein Debugger verfügbar. \"{0}\" kann nicht gesendet werden.",
+ "sessionDoesNotSupporBytesBreakpoints": "Die Sitzung unterstützt keine Haltepunkte mit Bytes.",
"sessionNotReadyForBreakpoints": "Die Sitzung ist für Haltepunkte nicht bereit."
},
"vs/workbench/contrib/debug/browser/debugSessionPicker": {
- "moveFocusedView.selectView": "Search debug sessions by name",
+ "moveFocusedView.selectView": "Debugsitzungen nach Namen suchen",
"workbench.action.debug.spawnFrom": "Sitzung {0} aus {1} erzeugt",
"workbench.action.debug.startDebug": "Starten Sie eine neue Debug-Sitzung"
},
"vs/workbench/contrib/debug/browser/debugStatus": {
"debugTarget": "Debuggen: {0}",
- "selectAndStartDebug": "Debug Konfiguration auswählen und starten",
+ "selectAndStartDebug": "Debug-Konfiguration auswählen und starten",
"status.debug": "Debuggen"
},
"vs/workbench/contrib/debug/browser/debugTaskRunner": {
"DebugTaskNotFound": "Die angegebene Aufgabe wurde nicht gefunden.",
"DebugTaskNotFoundWithTaskId": "Der Task \"{0}\" konnte nicht gefunden werden.",
"abort": "Abbrechen",
- "cancel": "Abbrechen",
- "debugAnyway": "Dennoch debuggen",
+ "configureTask": "Aufgabe konfigurieren",
+ "debugAnyway": "&&Dennoch debuggen",
+ "debugAnywayNoMemo": "Dennoch debuggen",
"invalidTaskReference": "Auf den Task \"{0}\" kann nicht von einer Startkonfiguration aus verwiesen werden, die sich in einem anderen Arbeitsbereichordner befindet.",
"preLaunchTaskError": "Fehler nach der Ausführung von preLaunchTask \"{0}\".",
"preLaunchTaskErrors": "Fehler nach der Ausführung von preLaunchTask \"{0}\".",
@@ -5095,9 +8668,9 @@
"preLaunchTaskTerminated": "preLaunchTask \"{0}\" wurde beendet.",
"remember": "Auswahl in den Benutzereinstellungen merken",
"rememberTask": "Meine Auswahl für diese Aufgabe speichern",
- "showErrors": "Fehler anzeigen",
- "taskNotTracked": "Die Aufgabe \"{0}\" kann nicht nachverfolgt werden. Stellen Sie sicher, dass ein Problemabgleich definiert ist.",
- "taskNotTrackedWithTaskId": "Die Aufgabe \"{0}\" kann nicht nachverfolgt werden. Stellen Sie sicher, dass ein Problemabgleich definiert ist."
+ "runningTask": "Warten auf preLaunchTask \"{0}\"...",
+ "showErrors": "&&Fehler anzeigen",
+ "taskNotTracked": "Der Task \"{0}\" wurde nicht beendet, und es wurde kein problemMatcher definiert. Stellen Sie sicher, dass Sie einen Problemübereinstimmungsersteller für Überwachungstasks definieren."
},
"vs/workbench/contrib/debug/browser/debugToolBar": {
"notebook.moreRunActionsLabel": "Weitere...",
@@ -5107,6 +8680,7 @@
"vs/workbench/contrib/debug/browser/debugViewlet": {
"debugPanel": "Debugging-Konsole",
"miOpenConfigurations": "&&Konfigurationen öffnen",
+ "openLaunchConfigDescription": "Öffnet die Datei, die zum Konfigurieren des Debuggens Ihres Programms verwendet wird.",
"selectWorkspaceFolder": "Wählen Sie einen Arbeitsbereichsordner aus, in dem eine Datei \"launch.json\" erstellt werden soll, oder fügen Sie ihn der Datei mit der Arbeitsbereichskonfiguration hinzu.",
"startAdditionalSession": "Zusätzliche Sitzung starten"
},
@@ -5129,10 +8703,13 @@
"vs/workbench/contrib/debug/browser/linkDetector": {
"fileLink": "STRG + Klick auf \"{0}\"",
"fileLinkMac": "BEFEHLSTASTE + Klick auf {0}",
+ "fileLinkWithPath": "STRG + Klicken, um {0}{1}",
+ "fileLinkWithPathMac": "BEFEHLSTASTE + Klicken, um {0}{1}",
"followForwardedLink": "Dem Link über den weitergeleiteten Port folgen",
"followLink": "Link folgen"
},
"vs/workbench/contrib/debug/browser/loadedScriptsView": {
+ "collapse": "Alle reduzieren",
"loadedScriptsAriaLabel": "Geladen Skripts debuggen",
"loadedScriptsFolderAriaLabel": "Ordner {0}, geladenes Skript, Debuggen",
"loadedScriptsRootFolderAriaLabel": "Arbeitsbereichordner {0}, geladenes Skript, Debuggen",
@@ -5142,30 +8719,40 @@
},
"vs/workbench/contrib/debug/browser/rawDebugSession": {
"canNotStart": "Der Debugger muss eine neue Registerkarte oder ein neues Fenster für die zu debuggende Komponente öffnen, aber der Browser hat dies verhindert. Sie müssen die Berechtigung zum Fortfahren erteilen.",
- "cancel": "Abbrechen",
- "continue": "Weiter",
+ "continue": "&&Fortfahren",
"moreInfo": "Weitere Informationen",
"noDebugAdapter": "Es wurde kein verfügbarer Debugger gefunden. \"{0}\" kann nicht gesendet werden.",
"noDebugAdapterStart": "Die Debugsitzung kann ohne Debugadapter nicht gestartet werden."
},
"vs/workbench/contrib/debug/browser/repl": {
- "actions.repl.acceptInput": "REPL-Eingaben akzeptieren",
+ "actions.repl.acceptInput": "Debugging-Konsole: Eingabe akzeptieren",
"actions.repl.copyAll": "Debuggen: Konsole – alle kopieren",
"clearRepl": "Konsole löschen",
+ "clearRepl.descriotion": "Löscht die gesamte Programmausgabe von Ihrer Debug-REPL.",
"collapse": "Alle zuklappen",
+ "commentLabelWithKeybinding": "{0}, verwenden Sie ({1}) für Hilfe zur Barrierefreiheit",
+ "commentLabelWithKeybindingNoKeybinding": "{0}, führen Sie den Befehl \"Hilfe zur Barrierefreiheit öffnen\" aus, der derzeit nicht über eine Tastenzuordnung ausgelöst werden kann.",
"copy": "Kopieren",
"copyAll": "Alles kopieren",
"debugConsole": "Debugging-Konsole",
- "debugConsoleCleared": "Die Debugging-Konsole wurde bereinigt.",
- "filter": "Filter",
+ "debugFocusConsole": "Fokus auf der Debugging-Konsolenansicht",
"paste": "Einfügen",
- "repl.action.filter": "REPL Fokus auf zu filternden Inhalt",
+ "repl.action.filter": "Debugging-Konsole: Fokusfilter",
+ "repl.action.find": "Debugging-Konsole: Fokussuche",
"selectRepl": "Debugging-Konsole auswählen",
+ "showing filtered repl lines": "{0} von {1} angezeigt",
"startDebugFirst": "Starten Sie eine Debugsitzung, um Ausdrücke auszuwerten.",
- "workbench.debug.filter.placeholder": "Filtern (Beispiel: text, !exclude)"
- },
- "vs/workbench/contrib/debug/browser/replFilter": {
- "showing filtered repl lines": "{0} von {1} angezeigt"
+ "workbench.debug.filter.placeholder": "Filter (z. B. Text, !exclude, \\escape)"
+ },
+ "vs/workbench/contrib/debug/browser/replAccessibilityHelp": {
+ "repl.accessibleView": "Der Befehl „Barrierefreie Ansicht öffnen“{0} lässt die zeichenweise Navigation der Konsolenausgabe zu.",
+ "repl.clear": "Der Befehl \"Debug: Konsole löschen\"{0} löscht die Konsolenausgabe.",
+ "repl.help": "Die Debugging-Konsole ist eine Read-Eval-Print-Loop, mit der Sie Ausdrücke auswerten und Befehle ausführen können und mit {0} konzentriert arbeiten können.",
+ "repl.history": "Der Ausgabeverlauf der Debugkonsole kann mit der NACH-OBEN- und NACH-UNTEN-TASTE navigiert werden.",
+ "repl.input": "Die Eingabe der Debugkonsole kann über die Ausgabe mit dem Befehl „Nächstes Widget konzentrieren“{0} navigiert werden.",
+ "repl.lazyVariables": "Die Einstellung „debug.expandLazyVariables“ steuert, ob Variablen automatisch ausgewertet werden. Dies ist standardmäßig aktiviert, wenn eine Sprachausgabe verwendet wird.",
+ "repl.output": "Die Ausgabe der Debugkonsole kann über das Eingabefeld mit dem Befehl „Vorheriges Widget konzentrieren“{0} navigiert werden.",
+ "repl.showRunAndDebug": "Mit dem Befehl \"Ausführungs- und Debugansicht anzeigen\"{0} wird die Ansicht \"Ausführen und debuggen\" geöffnet, und es werden weitere Informationen zum Debuggen bereitgestellt."
},
"vs/workbench/contrib/debug/browser/replViewer": {
"debugConsole": "Debugging-Konsole",
@@ -5174,25 +8761,44 @@
"replRawObjectAriaLabel": "Konsolenvariable \"{0}\" debuggen, Wert {1}",
"replVariableAriaLabel": "Variable \"{0}\", Wert \"{1}\""
},
+ "vs/workbench/contrib/debug/browser/runAndDebugAccessibilityHelp": {
+ "debug.continue": "– Der Befehl „Debuggen: Weiter“{0} setzt die Ausführung bis zum nächsten Haltepunkt fort.",
+ "debug.focusBreakpoints": "– Debuggen: Der Befehl „Haltepunktansicht fokussieren“{0} fokussiert die Haltepunktansicht.",
+ "debug.focusCallStack": "- Debuggen: Der Befehl „Aufruflistenansicht fokussieren“{0} fokussiert die Aufruflistenansicht.",
+ "debug.focusVariables": "- Debuggen: Der Befehl „Variablenansicht fokussieren“{0} fokussiert die Variablenansicht.",
+ "debug.focusWatch": "– Der Befehl „Debuggen: Überwachungsansicht fokussieren“{0} fokussieren die Überwachungsansicht.",
+ "debug.help": "Greifen Sie auf die Debugausgabe zu, und werten Sie Ausdrücke in der Debugkonsole aus, die mit {0} fokussiert werden kann.",
+ "debug.restartDebugging": "– Debuggen: Der Befehl \"Debuggen neu starten\"{0} startet die aktuelle Debugsitzung neu.",
+ "debug.showRunAndDebug": "Der Befehl „Ausführungs- und Debugansicht anzeigen“{0} öffnet die aktuelle Ansicht.",
+ "debug.startDebugging": "Der Befehl „Debuggen: Debuggen starten“{0} startet eine Debugsitzung.",
+ "debug.stepInto": "– Der Befehl „Debuggen: Eintreten“{0} tritt in den nächsten Funktionsaufruf ein.",
+ "debug.stepOut": "– Debuggen Der Befehl „Austreten“{0} tritt aus dem aktuellen Funktionsaufruf aus.",
+ "debug.stepOver": "– Der Befehl „Debuggen: Überspringen“{0} überspringt den aktuellen Funktionsaufruf.",
+ "debug.stopDebugging": "– Debuggen: Der Befehl \"Debuggen beenden\"{0} beendet die aktuelle Debugsitzung.",
+ "debug.views": "Das Debug-Viewlet besteht aus mehreren Ansichten, die mit den folgenden Befehlen fokussiert werden können oder wohin mit der TAB-Taste und dann mit den Pfeiltasten navigiert werden kann:",
+ "debug.watchSetting": "Die Einstellung {0} steuert, ob Änderungen an Überwachungsvariablen angekündigt werden.",
+ "onceDebugging": "Nach dem Debuggen sind die folgenden Befehle verfügbar:"
+ },
"vs/workbench/contrib/debug/browser/statusbarColorProvider": {
+ "commandCenter-activeBackground": "Hintergrundfarbe des Befehlscenters beim Debuggen eines Programms",
"statusBarDebuggingBackground": "Hintergrundfarbe der Statusleiste beim Debuggen eines Programms. Die Statusleiste wird unten im Fenster angezeigt.",
"statusBarDebuggingBorder": "Rahmenfarbe der Statusleiste zur Abtrennung von der Randleiste und dem Editor, wenn ein Programm debuggt wird. Die Statusleiste wird unten im Fenster angezeigt.",
"statusBarDebuggingForeground": "Vordergrundfarbe der Statusleiste beim Debuggen eines Programms. Die Statusleiste wird unten im Fenster angezeigt."
},
"vs/workbench/contrib/debug/browser/variablesView": {
- "cancel": "Abbrechen",
"collapse": "Alle zuklappen",
- "install": "Installieren",
+ "removeVisualizer": "Schnellansicht entfernen",
+ "useVisualizer": "Variable visualisieren...",
"variableAriaLabel": "{0}, Wert \"{1}\"",
"variableScopeAriaLabel": "Bereich \"{0}\"",
"variableValueAriaLabel": "Geben Sie einen neuen Variablenwert ein.",
"variablesAriaTreeLabel": "Variablen debuggen",
- "viewMemory.install.progress": "Hex-Editor wird installiert...",
- "viewMemory.prompt": "Zum Überprüfen von Binärdaten ist die Hex-Editor-Erweiterung erforderlich. Möchten Sie sie jetzt installieren?"
+ "viewMemory.prompt": "Diese Erweiterung ist zum Überprüfen von Binärdaten erforderlich."
},
"vs/workbench/contrib/debug/browser/watchExpressionsView": {
"addWatchExpression": "Ausdruck hinzufügen",
"collapse": "Alle zuklappen",
+ "copyWatchExpression": "Ausdruck kopieren",
"removeAllWatchExpressions": "Alle Ausdrücke entfernen",
"typeNewValue": "Neuen Wert eingeben",
"watchAriaTreeLabel": "Überwachungsausdrücke debuggen",
@@ -5203,12 +8809,11 @@
},
"vs/workbench/contrib/debug/browser/welcomeView": {
"allDebuggersDisabled": "Alle Debugerweiterungen sind deaktiviert. Aktivieren Sie eine Debugerweiterung, oder installieren Sie eine neue aus Marketplace.",
- "customizeRunAndDebug": "Zum Anpassen von \"Ausführen und Debuggen\" [erstellen Sie eine launch.json-Datei](command:{0}).",
- "customizeRunAndDebugOpenFolder": "Öffnen Sie zum Anpassen von \"Ausführen und debuggen\" [einen Ordner](command:{0}), und erstellen Sie eine launch.json-Datei.",
- "detectThenRunAndDebug": "[Alle Konfigurationen für das automatische Debuggen anzeigen](command:{0}).",
+ "customizeRunAndDebug2": "Zum Anpassen von „Ausführen und debuggen“ [erstellen Sie eine launch.json-Datei]({0}).",
+ "customizeRunAndDebugOpenFolder2": "Öffnen Sie zum Anpassen von „Ausführen und debuggen“ [einen Ordner]({0}), und erstellen Sie eine launch.json-Datei.",
"openAFileWhichCanBeDebugged": "[Öffnen Sie eine Datei](command:{0}), die gedebuggt oder ausgeführt werden kann.",
"run": "Ausführen",
- "runAndDebugAction": "[Ausführen und Debuggen{0}](command:{1})"
+ "runAndDebugAction": "Ausführen und debuggen"
},
"vs/workbench/contrib/debug/common/abstractDebugAdapter": {
"timeout": "Timeout nach {0} ms für \"{1}\""
@@ -5217,13 +8822,15 @@
"breakWhenValueChangesSupported": "TRUE, wenn die Sitzung mit dem Fokus die Unterbrechung bei Wertänderungen unterstützt.",
"breakWhenValueIsAccessedSupported": "TRUE, wenn der Breakpoint mit dem Fokus die Unterbrechung beim Zugriff auf Werte unterstützt.",
"breakWhenValueIsReadSupported": "TRUE, wenn der Breakpoint mit dem Fokus die Unterbrechung bei Lesen von Werten unterstützt.",
- "breakpointAccessType": "Stellt den Zugriffstyp des Datenbreakpoints mit dem Fokus in der Ansicht BREAKPOINTS dar. Beispiel: \"read\", \"readWrite\", \"write\"",
+ "breakpointHasModes": "Gibt an, ob der Haltepunkt mehrere Modi aufweist, zu denen er wechseln kann.",
"breakpointInputFocused": "TRUE, wenn das Eingabefeld in der Ansicht BREAKPOINTS den Fokus besitzt.",
+ "breakpointItemIsDataBytes": "Gibt an, ob das Haltepunktelement ein Datenhaltepunkt in einem Bytebereich ist.",
"breakpointItemType": "Stellt den Elementtyp des Elements, auf dem der Fokus liegt, in der Ansicht BREAKPOINTS dar. Beispiel: \"breakpoint\", \"exceptionBreakppint\", \"functionBreakpoint\", \"dataBreakpoint\"",
"breakpointSupportsCondition": "TRUE, wenn der Haltepunkt, auf dem der Fokus liegt, Bedingungen unterstützt.",
"breakpointWidgetVisibile": "TRUE, wenn das Widget für die Zone des Haltepunkt-Editors sichtbar ist, andernfalls FALSE.",
"breakpointsExist": "TRUE, wenn mindestens ein Haltepunkt vorhanden ist.",
"breakpointsFocused": "TRUE, wenn der Fokus auf der Ansicht BREAKPOINTS liegt, andernfalls FALSE.",
+ "callStackFocused": "True, wenn die CALLSTACK-Ansicht fokussiert ist, andernfalls false.",
"callStackItemStopped": "TRUE, wenn das Element mit dem Fokus in CALL STACK beendet wird. Wird intern für Inlinemenüs in der CALL STACK-Ansicht verwendet.",
"callStackItemType": "Repräsentiert den Elementtyp des Elements mit dem Fokus in der CALL STACK-Ansicht. Beispiele: \"session\", \"thread\", \"stackFrame\"",
"callStackSessionHasOneThread": "TRUE, wenn die Sitzung mit dem Fokus in der CALL STACK-Ansicht genau einen Thread aufweist. Wird intern für Inlinemenüs in der CALL STACK-Ansicht verwendet.",
@@ -5232,6 +8839,7 @@
"debugConfigurationType": "Der Debugtyp der ausgewählten Startkonfiguration. Beispiel: python.",
"debugExtensionsAvailable": "„TRUE“, wenn mindestens eine Debugerweiterung installiert und aktiviert ist.",
"debugProtocolVariableMenuContext": "Stellt den Kontext dar, der vom Debugadapter für die Variable festgelegt wird, die in der Ansicht VARIABLES den Fokus besitzt.",
+ "debugSetDataBreakpointAddressSupported": "Ist WAHR, wenn die fokussierte Sitzung die GetBreakpointInfo-Anforderung für eine Adresse unterstützt.",
"debugSetExpressionSupported": "TRUE, wenn die relevante Sitzung die Anforderung „setVariable“ unterstützt.",
"debugSetVariableSupported": "TRUE, wenn die Sitzung mit dem Fokus die Anforderung \"setVariable\" unterstützt.",
"debugState": "Zustand, in dem sich die Debugsitzung mit dem Fokus befindet. Mögliche Werte: \"inactive\", \"initializing\", \"stopped\" und \"running\".",
@@ -5244,7 +8852,9 @@
"exceptionWidgetVisible": "TRUE, wenn das Ausnahmewidget sichtbar ist.",
"expressionSelected": "TRUE, wenn ein Ausdruckseingabefeld entweder in der Ansicht WATCH oder in der Ansicht VARIABLES geöffnet ist, andernfalls FALSE.",
"focusedSessionIsAttach": "TRUE, wenn die Sitzung mit dem Fokus den Typ \"attach\" aufweist.",
+ "focusedSessionIsNoDebug": "TRUE, wenn die fokussierte Sitzung ohne Debuggen ausgeführt wird.",
"focusedStackFrameHasInstructionReference": "\"True\", wenn der fokussierte Stapelrahmen einen Anweisungszeigerverweis enthält.",
+ "hasDebugged": "TRUE, wenn eine Debug-Sitzung mindestens einmal gestartet wurde, andernfalls FALSE.",
"inBreakpointWidget": "TRUE, wenn der Fokus auf dem Widget für die Zone des Haltepunkt-Editors liegt, andernfalls FALSE.",
"inDebugMode": "TRUE beim Debuggen, andernfalls FALSE.",
"inDebugRepl": "TRUE, wenn der Fokus auf der Debugging-Konsole liegt, andernfalls FALSE.",
@@ -5261,8 +8871,15 @@
"stepIntoTargetsSupported": "TRUE, wenn die Sitzung mit dem Fokus die Anforderung \"stepIntoTargets\" unterstützt.",
"suspendDebuggeeSupported": "True, wenn die fokussierte Sitzung die Suspend-Debuggee-Funktion unterstützt.",
"terminateDebuggeeSupported": "„True“, wenn die fokussierte Sitzung die Funktion zum Beenden der zu debuggende Komponente unterstützt.",
+ "terminateThreadsSupported": "„True“, wenn die fokussierte Sitzung die Funktion zum Beenden von Threads unterstützt.",
"variableEvaluateNamePresent": "TRUE, wenn für die Variable mit dem Fokus ein Feld „evaluateName“ festgelegt wurde.",
- "variableIsReadonly": "TRUE, wenn die fokussierte Variable schreibgeschützt ist.",
+ "variableExtensionId": "Erweiterungs-ID der Variablenquelle, die für Debugvisualisierungsklauseln vorhanden ist.",
+ "variableInterfaces": "Alle Schnittstellen oder Verträge, die die Variable erfüllt, sind für Debugvisualisierungsklauseln vorhanden.",
+ "variableIsReadonly": "Wahr, wenn die fokussierte Variable schreibgeschützt ist.",
+ "variableLanguage": "Sprache der Variablenquelle, die für Debugvisualisierungsklauseln vorhanden ist.",
+ "variableName": "Name der Variablen, die für Debugvisualisierungsklauseln vorhanden ist.",
+ "variableType": "Typ der Variablen, die für Debugvisualisierungsklauseln vorhanden ist.",
+ "variableValue": "Wert der Variablen, die für Debugvisualisierungsklauseln vorhanden ist.",
"variablesFocused": "TRUE, wenn der Fokus auf den Ansichten VARIABLES liegt, andernfalls FALSE.",
"watchExpressionsExist": "TRUE, wenn mindestens ein Überwachungsausdruck vorhanden ist, andernfalls FALSE.",
"watchExpressionsFocused": "TRUE, wenn der Fokus auf der Ansicht WATCH liegt, andernfalls FALSE.",
@@ -5273,10 +8890,23 @@
"canNotResolveSourceWithError": "Die Quelle \"{0}\" konnte nicht geladen werden: {1}.",
"unable": "Die Ressource konnte ohne eine Debugsitzung nicht aufgelöst werden."
},
+ "vs/workbench/contrib/debug/common/debugger": {
+ "cannot.find.da": "Debug-Adapter für Typ \"{0}\" wurde nicht gefunden.",
+ "debugLinuxConfiguration": "Linux-spezifische Startkonfigurationsattribute.",
+ "debugOSXConfiguration": "OS X-spezifische Startkonfigurationsattribute.",
+ "debugRequest": "Der Anforderungstyp der Konfiguration. Der Wert kann \"launch\" oder \"attach\" sein.",
+ "debugType": "Der Typ der Konfiguration.",
+ "debugTypeNotRecognised": "Dieser Debugging-Typ wurde nicht erkannt. Installieren und aktivieren Sie die dazugehörige Debugging-Erweiterung.",
+ "debugWindowsConfiguration": "Windows-spezifische Startkonfigurationsattribute.",
+ "launch.config.comment1": "Verwendet IntelliSense zum Ermitteln möglicher Attribute.",
+ "launch.config.comment2": "Zeigen Sie auf vorhandene Attribute, um die zugehörigen Beschreibungen anzuzeigen.",
+ "launch.config.comment3": "Weitere Informationen finden Sie unter {0}",
+ "node2NotSupported": "\"node2\" wird nicht mehr unterstützt, verwenden Sie stattdessen \"node\", und legen Sie das Attribut \"protocol\" auf \"inspector\" fest."
+ },
"vs/workbench/contrib/debug/common/debugLifecycle": {
"debug.debugSessionCloseConfirmationPlural": "Es sind aktive Debugsitzungen vorhanden. Möchten Sie sie wirklich beenden?",
"debug.debugSessionCloseConfirmationSingular": "Es ist eine aktive Debugsitzung vorhanden. Möchten Sie sie wirklich beenden?",
- "debug.stop": "Debuggen beenden"
+ "debug.stop": "&&Debuggen beenden"
},
"vs/workbench/contrib/debug/common/debugModel": {
"breakpointDirtydHover": "Nicht überprüfter Haltepunkt. Die Datei wurde geändert. Starten Sie die Debugsitzung neu.",
@@ -5297,6 +8927,9 @@
"app.launch.json.title": "Starten",
"app.launch.json.version": "Die Version dieses Dateiformats.",
"compoundPrelaunchTask": "Task, der ausgeführt werden soll, bevor eine der zusammengesetzten Konfigurationen gestartet wird.",
+ "debugger name": "Name",
+ "debugger type": "Typ",
+ "debuggers": "Debugger",
"presentation": "Präsentationsoptionen zum Anzeigen dieser Konfiguration in der Dropdownliste der Debugkonfiguration und in der Befehlspalette.",
"presentation.group": "Gruppe, zu der diese Konfiguration gehört. Wird zum Gruppieren und Sortieren in der Konfiguration-Dropdownliste und Befehlspalette verwendet.",
"presentation.hidden": "Steuert, ob diese Konfiguration in der Konfiguration-Dropdownliste und der Befehlspalette angezeigt werden soll.",
@@ -5310,6 +8943,7 @@
"vscode.extension.contributes.debuggers.configurationAttributes": "JSON-Schemakonfigurationen zum Überprüfen von \"launch.json\".",
"vscode.extension.contributes.debuggers.configurationSnippets": "Schnipsel zum Hinzufügen neuer Konfigurationen in \"launch.json\".",
"vscode.extension.contributes.debuggers.deprecated": "Optionale Meldung, um diesen Debugtyp als veraltet zu kennzeichnen.",
+ "vscode.extension.contributes.debuggers.hiddenWhen": "Wenn diese Bedingung erfüllt ist, wird dieser Debuggertyp aus der Debuggerliste ausgeblendet, ist aber weiterhin aktiviert.",
"vscode.extension.contributes.debuggers.initialConfigurations": "Konfigurationen zum Generieren der anfänglichen Datei \"launch.json\".",
"vscode.extension.contributes.debuggers.label": "Der Anzeigename für diese Debugadapter.",
"vscode.extension.contributes.debuggers.languages": "Liste der Sprachen, für die die Debugerweiterung als \"Standarddebugger\" angesehen werden kann",
@@ -5320,6 +8954,8 @@
"vscode.extension.contributes.debuggers.program": "Der Pfad zum Debugadapterprogramm. Der Pfad ist absolut oder relativ zum Erweiterungsordner.",
"vscode.extension.contributes.debuggers.runtime": "Optionale Laufzeit für den Fall, dass das Programmattribut keine ausführbare Datei ist und eine Laufzeit erfordert.",
"vscode.extension.contributes.debuggers.runtimeArgs": "Optionale Laufzeitargumente.",
+ "vscode.extension.contributes.debuggers.strings": "Benutzeroberflächenzeichenfolgen, beigetragen von diesem Debugadapter.",
+ "vscode.extension.contributes.debuggers.strings.unverifiedBreakpoints": "Wenn in einer von diesem Debugadapter unterstützten Sprache nicht überprüfte Haltepunkte vorhanden sind, wird diese Meldung auf dem Haltepunkt mit der Mauszeigerbewegung und in der Haltepunktansicht angezeigt. Markdown- und Befehlslinks werden unterstützt.",
"vscode.extension.contributes.debuggers.type": "Der eindeutige Bezeichner für diese Debugadapter.",
"vscode.extension.contributes.debuggers.variables": "Zuordnung aus interaktiven Variablen (Beispiel: ${action.pickProcess}) in \"launch.json\" zu einem Befehl.",
"vscode.extension.contributes.debuggers.when": "Bedingung, die wahr sein muss, um diese Art von Debugger zu aktivieren. Erwägen Sie die Verwendung von „shellExecutionSupported“, „virtualWorkspace“, „resourceScheme“ oder eines von der Erweiterung definierten Kontextschlüssels, je nach Bedarf.",
@@ -5329,24 +8965,12 @@
"vs/workbench/contrib/debug/common/debugSource": {
"unknownSource": "Unbekannte Quelle"
},
- "vs/workbench/contrib/debug/common/debugger": {
- "cannot.find.da": "Debug-Adapter für Typ \"{0}\" wurde nicht gefunden.",
- "debugLinuxConfiguration": "Linux-spezifische Startkonfigurationsattribute.",
- "debugOSXConfiguration": "OS X-spezifische Startkonfigurationsattribute.",
- "debugRequest": "Der Anforderungstyp der Konfiguration. Der Wert kann \"launch\" oder \"attach\" sein.",
- "debugType": "Der Typ der Konfiguration.",
- "debugTypeNotRecognised": "Dieser Debugging-Typ wurde nicht erkannt. Installieren und aktivieren Sie die dazugehörige Debugging-Erweiterung.",
- "debugWindowsConfiguration": "Windows-spezifische Startkonfigurationsattribute.",
- "launch.config.comment1": "Verwendet IntelliSense zum Ermitteln möglicher Attribute.",
- "launch.config.comment2": "Zeigen Sie auf vorhandene Attribute, um die zugehörigen Beschreibungen anzuzeigen.",
- "launch.config.comment3": "Weitere Informationen finden Sie unter {0}",
- "node2NotSupported": "\"node2\" wird nicht mehr unterstützt, verwenden Sie stattdessen \"node\", und legen Sie das Attribut \"protocol\" auf \"inspector\" fest."
- },
"vs/workbench/contrib/debug/common/disassemblyViewInput": {
+ "disassemblyEditorLabelIcon": "Symbol der Bezeichnung des Disassemblierungs-Editors.",
"disassemblyInputName": "Disassemblierung"
},
"vs/workbench/contrib/debug/common/loadedScriptsPicker": {
- "moveFocusedView.selectView": "Geladene Skripte nach Namen suchen"
+ "moveFocusedView.selectView": "Search loaded scripts by name"
},
"vs/workbench/contrib/debug/common/replModel": {
"consoleCleared": "Die Konsole wurde gelöscht."
@@ -5363,68 +8987,120 @@
"bracketPairColorizer.notification.action.showMoreInfo": "Weitere Informationen",
"bracketPairColorizer.notification.action.uninstall": "Erweiterung deinstallieren"
},
- "vs/workbench/contrib/dialogs/browser/dialogHandler": {
- "yesButton": "&&Ja",
- "cancelButton": "Abbrechen",
- "aboutDetail": "Version: {0}\r\nCommit: {1}\r\nDatum: {2}\r\nBrowser: {3}",
- "copy": "Kopieren",
- "ok": "OK"
+ "vs/workbench/contrib/dropOrPasteInto/browser/commands": {
+ "configureDefaultDrop.label": "Bevorzugte Ablageaktion konfigurieren...",
+ "configureDefaultPaste.label": "Bevorzugte Einfügeaktion konfigurieren..."
},
- "vs/workbench/contrib/dialogs/electron-sandbox/dialogHandler": {
- "yesButton": "&&Ja",
- "cancelButton": "Abbrechen",
- "aboutDetail": "Version: {0}\r\nCommit: {1}\r\nDatum: {2}\r\nElectron: {3}\r\nChrome: {4}\r\nNode.js: {5}\r\nV8: {6}\r\nBetriebssystem: {7}",
- "okButton": "OK",
- "copy": "&&Kopieren"
+ "vs/workbench/contrib/dropOrPasteInto/browser/configurationSchema": {
+ "dropKind": "Der Artbezeichner der Ablagebearbeitung.",
+ "dropPreferredDescription": "Konfiguriert den bevorzugten Bearbeitungstyp, der beim Löschen von Inhalten verwendet werden soll.\r\n\r\nDies ist eine sortierte Liste von Bearbeitungsarten. Die erste verfügbare Bearbeitung einer bevorzugten Art wird verwendet.",
+ "pasteKind": "Der Artbezeichner der Einfügebearbeitung.",
+ "pastePreferredDescription": "Konfiguriert den bevorzugten Bearbeitungstyp, der beim Einfügen von Inhalten verwendet werden soll.\r\n\r\nDies ist eine sortierte Liste von Bearbeitungsarten. Die erste verfügbare Bearbeitung einer bevorzugten Art wird verwendet."
},
"vs/workbench/contrib/editSessions/browser/editSessions.contribution": {
- "client too old": "Führen Sie bitte ein Upgrade auf eine neuere Version von {0} durch, um diese Bearbeitungssitzung fortzusetzen.",
- "continue edit session": "Bearbeitungssitzung fortsetzen...",
+ "autoResumeWorkingChanges": "Steuert, ob die verfügbaren Arbeitsänderungen, die in der Cloud für den aktuellen Arbeitsbereich gespeichert sind, automatisch fortgesetzt werden.",
+ "autoResumeWorkingChanges.off": "Versuchen Sie nie, die Arbeitsänderungen aus der Cloud fortzusetzen.",
+ "autoResumeWorkingChanges.onReload": "Setzen Sie die verfügbaren Arbeitsänderungen aus der Cloud beim erneuten Laden des Fensters automatisch fort.",
+ "autoStoreWorkingChanges": "Aktuelle Arbeitsänderungen werden gespeichert...",
+ "autoStoreWorkingChanges.off": "Versuchen Sie nie, die Arbeitsänderungen automatisch in der Cloud zu speichern.",
+ "autoStoreWorkingChanges.onShutdown": "Speichern Sie die aktuellen Arbeitsänderungen automatisch in der Cloud beim Schließen des Fensters.",
+ "autoStoreWorkingChangesDescription": "Steuert, ob verfügbare Arbeitsänderungen für den aktuellen Arbeitsbereich automatisch in der Cloud gespeichert werden. Diese Einstellung hat keine Auswirkungen im Web.",
+ "check for pending cloud changes": "Nach ausstehenden Cloudänderungen suchen",
+ "checkingForWorkingChanges": "Es wird nach ausstehenden Cloud-Änderungen gesucht ...",
+ "client too old": "Führen Sie ein Upgrade auf eine neuere Version von {0} durch, um Ihre Arbeitsänderungen aus der Cloud fortzusetzen.",
+ "cloudChangesPartialMatchesEnabled": "Steuert, ob die Cloudänderungen angezeigt werden, die teilweise mit der aktuellen Sitzung übereinstimmen.",
"continue edit session in local folder": "Im lokalen Ordner öffnen",
- "continueEditSession.openLocalFolder.title": "Wählen Sie einen lokalen Ordner aus, in dem Sie ihre Bearbeitungssitzung fortsetzen möchten.",
+ "continue with cloud changes": "Wählen Sie aus, ob Sie Ihre funktionierenden Änderungen mitbringen möchten.",
+ "continue working on": "Weiterarbeiten an...",
+ "continueEditSession.openLocalFolder.title.v2": "Wählen Sie einen lokalen Ordner aus, in dem Sie ihre Arbeit fortsetzen möchten.",
"continueEditSessionExtPoint": "Bietet Optionen zum Fortsetzen der aktuellen Bearbeitungssitzung in einer anderen Umgebung.",
"continueEditSessionExtPoint.command": "Bezeichner des auszuführenden Befehls. Der Befehl muss im Abschnitt „commands“ deklariert werden und einen URI zurückgeben, der eine andere Umgebung darstellt, in der die aktuelle Bearbeitungssitzung fortgesetzt werden kann.",
+ "continueEditSessionExtPoint.description": "Die URL zur Dokumentationsseite der Option, oder ein Befehl, der die URL zurückgibt.",
"continueEditSessionExtPoint.group": "Die Gruppe, zu der dieses Element gehört.",
+ "continueEditSessionExtPoint.qualifiedName": "Ein vollqualifizierter Name für dieses Element, der für die Anzeige in Menüs verwendet wird.",
+ "continueEditSessionExtPoint.remoteGroup": "Gruppe, zu der dieses Element im Remoteindikator gehört.",
"continueEditSessionExtPoint.when": "Eine Bedingung, die TRUE lauten muss, damit dieses Element angezeigt wird.",
- "continueEditSessionItem.openInLocalFolder": "Im lokalen Ordner öffnen",
- "continueEditSessionPick.placeholder": "Wählen Sie aus, wie Sie weiterarbeiten möchten.",
- "continueEditSessionPick.title": "Bearbeitungssitzung fortsetzen...",
- "editSessionsEnabled": "Steuert, ob Cloud-fähige Aktionen zum Speichern und Fortsetzen nicht festgeschriebener Änderungen angezeigt werden, wenn zwischen Web, Desktop oder Geräten gewechselt wird.",
- "no edit session": "Es sind keine Bearbeitungssitzungen zum Fortsetzen vorhanden.",
- "no edit session content for ref": "Die Bearbeitung des Sitzungsinhalts für die ID {0} konnte nicht fortgesetzt werden.",
- "no edits to store": "Das Speichern der Bearbeitungssitzung wurde übersprungen, da keine Änderungen zum Speichern vorhanden sind.",
- "payload failed": "Ihre Bearbeitungssitzung kann nicht gespeichert werden.",
- "payload too large": "Ihre Bearbeitungssitzung überschreitet die Größenbeschränkung und kann nicht gespeichert werden.",
- "resume edit session warning": "Wenn Sie Ihre Bearbeitungssitzung fortsetzen, werden möglicherweise Ihre bestehenden, nicht bestätigten Änderungen überschrieben. Möchten Sie fortfahren?",
- "resume failed": "Fehler beim Fortsetzen Ihrer Bearbeitungssitzung.",
- "resume latest.v2": "Letzte Bearbeitungssitzung fortsetzen",
- "resuming edit session": "Bearbeitungssitzung wird fortgesetzt...",
- "show edit session": "Show Edit Sessions",
- "store current.v2": "Aktuelle Bearbeitungssitzung speichern",
- "storing edit session": "Bearbeitungssitzung wird gespeichert..."
- },
- "vs/workbench/contrib/editSessions/browser/editSessionsViews": {
- "confirm delete": "Are you sure you want to permanently delete the edit session with ref {0}? You cannot undo this action.",
- "edit sessions data": "All Sessions",
- "open file": "Open File",
- "workbench.editSessions.actions.delete": "Delete Edit Session",
- "workbench.editSessions.actions.resume": "Resume Edit Session"
- },
- "vs/workbench/contrib/editSessions/browser/editSessionsWorkbenchService": {
- "account preference": "Anmelden, um Bearbeitungssitzungen zu verwenden",
- "choose account placeholder": "Konto für die Anmeldung auswählen",
- "clear data confirm": "Ja",
- "delete all edit sessions": "Löschen Sie alle gespeicherten Bearbeitungssitzungen aus der Cloud.",
+ "continueEditSessionItem.builtin": "Integriert",
+ "continueEditSessionItem.openInLocalFolder.v2": "Im lokalen Ordner öffnen",
+ "continueEditSessionPick.title.v2": "Wählen Sie eine Entwicklungsumgebung aus, um weiterhin an {0} in zu arbeiten.",
+ "continueOn.installAdditional": "Installieren zusätzlicher Optionen für die Entwicklungsumgebung",
+ "continueOnCloudChanges": "Steuert, ob der Benutzer aufgefordert werden soll, Arbeitsänderungen in der Cloud zu speichern, wenn „Arbeit fortsetzen an“ verwendet wird.",
+ "continueOnCloudChanges.off": "Speichern Sie keine Arbeitsänderungen in der Cloud mit „Arbeit fortsetzen an“, es sei denn, der Benutzer hat Cloudänderungen bereits aktiviert.",
+ "continueOnCloudChanges.promptForAuth": "Fordern Sie den Benutzer auf, sich anzumelden, um Arbeitsänderungen in der Cloud mit „Arbeit fortsetzen an“ zu speichern.",
+ "continueWorkingOn.existingLocalFolder": "Weiterarbeiten im vorhandenen lokalen Ordner",
+ "editSessionPartialMatch": "Sie haben ausstehende Arbeitsänderungen in der Cloud für diesen Arbeitsbereich. Möchten Sie sie fortsetzen?",
+ "learnMoreTooltip": "Weitere Informationen",
+ "no cloud changes": "Es sind keine Änderungen vorhanden, die aus der Cloud fortgesetzt werden können.",
+ "no cloud changes for ref": "Die Änderungen aus der Cloud für die ID {0} konnten nicht fortgesetzt werden.",
+ "no working changes to store": "Das Speichern von Arbeitsänderungen in der Cloud wurde übersprungen, da keine Änderungen zum Speichern vorhanden sind.",
+ "payload failed": "Ihre Arbeitsänderungen können nicht gespeichert werden.",
+ "payload too large": "Ihre Arbeitsänderungen überschreiten die Größenbeschränkung und können nicht gespeichert werden.",
+ "resume": "Fortsetzen",
+ "resume cloud changes": "Änderungen aus serialisierten Daten fortsetzen",
+ "resume edit session warning 1": "Wenn Sie Ihre Arbeitsänderungen aus der Cloud fortsetzen, wird {0} überschrieben. Möchten Sie fortfahren?",
+ "resume edit session warning many": "Wenn Sie Ihre Arbeitsänderungen aus der Cloud fortsetzen, werden die folgenden {0} Dateien überschrieben. Möchten Sie fortfahren?",
+ "resume failed": "Fehler beim Fortsetzen Ihrer Arbeitsänderungen aus der Cloud.",
+ "resume latest cloud changes": "Neueste Änderungen aus der Cloud fortsetzen",
+ "resuming working changes window": "Arbeitsänderungen werden fortgesetzt...",
+ "show cloud changes": "Cloudänderungen anzeigen",
+ "show log": "Protokoll anzeigen",
+ "store working changes": "Arbeitsänderungen werden gespeichert...",
+ "store working changes in cloud": "Arbeitsänderungen in der Cloud speichern",
+ "store your working changes": "Ihre Arbeitsänderungen werden gespeichert...",
+ "storing working changes": "Arbeitsänderungen werden gespeichert...",
+ "with cloud changes": "Ja, mit meinen Arbeitsänderungen fortfahren",
+ "without cloud changes": "Nein, ohne meine Arbeitsänderungen fortfahren"
+ },
+ "vs/workbench/contrib/editSessions/browser/editSessionsStorageService": {
+ "choose account placeholder": "Wählen Sie ein Konto aus, um Ihre Arbeitsänderungen in der Cloud zu speichern.",
+ "choose account read placeholder": "Wählen Sie ein Konto aus, um Ihre Arbeitsänderungen aus der Cloud wiederherzustellen.",
+ "delete all cloud changes": "Löschen Sie alle gespeicherten Daten aus der Cloud.",
"others": "Sonstige",
- "reset auth.v2": "Sign Out of Edit Sessions",
+ "reset auth.v3": "Cloudänderungen deaktivieren...",
+ "sign in": "Cloudänderungen aktivieren...",
+ "sign in badge": "Cloudänderungen aktivieren... (1)",
"sign in using account": "Anmelden mit \"{0}\"",
- "sign out of edit sessions clear data prompt": "Möchten Sie sich von den Bearbeitungssitzungen abmelden?",
+ "sign out of cloud changes clear data prompt": "Möchten Sie das Speichern von Arbeitsänderungen in der Cloud deaktivieren?",
"signed in": "Angemeldet"
},
+ "vs/workbench/contrib/editSessions/browser/editSessionsViews": {
+ "cloud changes": "Cloudänderungen",
+ "compare changes": "Änderungen vergleichen",
+ "confirm delete all": "Möchten Sie alle gespeicherten Änderungen endgültig aus der Cloud löschen?",
+ "confirm delete all detail": "Sie können diese Aktion nicht rückgängig machen.",
+ "confirm delete detail.v2": "Sie können diese Aktion nicht rückgängig machen.",
+ "confirm delete.v2": "Möchten Sie Ihre Arbeitsänderungen mit Verweis auf \"{0}\" wirklich endgültig löschen?",
+ "local copy": "Lokale Kopie",
+ "noStoredChanges": "Sie haben keine gespeicherten Änderungen in der Cloud, die angezeigt werden können.\r\n{0}",
+ "open file": "Datei öffnen",
+ "storeWorkingChangesTitle": "Arbeitsänderungen speichern",
+ "workbench.editSessions.actions.delete.v2": "Arbeitsänderungen löschen",
+ "workbench.editSessions.actions.deleteAll": "Alle Arbeitsänderungen aus der Cloud löschen",
+ "workbench.editSessions.actions.resume.v2": "Arbeitsänderungen fortsetzen",
+ "workbench.editSessions.actions.store.v2": "Arbeitsänderungen speichern"
+ },
"vs/workbench/contrib/editSessions/common/editSessions": {
- "edit sessions": "Edit Sessions",
- "editSessionViewIcon": "View icon of the edit sessions view.",
- "session sync": "Sitzungen bearbeiten"
+ "cloud changes": "Cloudänderungen",
+ "editSessionViewIcon": "Zeigen Sie das Symbol der Ansicht „Cloudänderungen“ an."
+ },
+ "vs/workbench/contrib/editSessions/common/editSessionsLogService": {
+ "cloudChangesLog": "Cloudänderungen"
+ },
+ "vs/workbench/contrib/editTelemetry/browser/editStats/aiStatsStatusBar": {
+ "aiStats.statusBar.configure": "Konfigurieren",
+ "aiStatsStatusBarHeader": "KI-Nutzungsstatistiken",
+ "inlineSuggestions": "Inlinevorschläge",
+ "inlineSuggestionsStatusBar": "Statusleiste für Inlinevorschläge",
+ "text1": "KI im Vergleich zur Eingabe – Durchschnitt: {0}",
+ "text2": "Heute akzeptierte Inlinevorschläge: {0}"
+ },
+ "vs/workbench/contrib/editTelemetry/browser/editTelemetry.contribution": {
+ "editTelemetry": "Telemetrie bearbeiten",
+ "editor.aiStats.enabled": "Steuert, ob KI-Statistiken im Editor aktiviert werden sollen. Das Messgerät stellt die durchschnittliche Codemenge dar, die von der KI eingefügt wurde, im Vergleich zur manuellen Eingabe über einen Zeitraum von 24 Stunden.",
+ "telemetry.editStats.detailed.enabled": "Steuert, ob Telemetriedaten zum detaillierten Bearbeiten von Statistiken aktiviert werden sollen (sendet Statistiken nur, wenn allgemeine Telemetrie aktiviert ist).",
+ "telemetry.editStats.enabled": "Steuert, ob Telemetriedaten zum Bearbeiten von Statistiken aktiviert werden sollen (sendet Statistiken nur, wenn allgemeine Telemetrie aktiviert ist).",
+ "telemetry.editStats.showDecorations": "Steuert, ob Dekorationen zum Bearbeiten von Telemetriedaten angezeigt werden sollen.",
+ "telemetry.editStats.showStatusBar": "Steuert, ob die Statusleiste zum Bearbeiten von Telemetriedaten angezeigt werden soll."
},
"vs/workbench/contrib/emmet/browser/actions/expandAbbreviation": {
"expandAbbreviationAction": "Emmet: Abkürzung erweitern",
@@ -5438,8 +9114,12 @@
"disable": "Deaktivieren",
"disable workspace": "Deaktivieren (Arbeitsbereich)",
"errors": "{0} nicht abgefangene Fehler",
+ "extensionActivating": "Die Erweiterung wird aktiviert...",
"languageActivation": "Durch {1} aktiviert, weil Sie eine {0}-Datei geöffnet haben.",
+ "requests count": "{0} Syntax: {1} Anforderungen",
+ "requests count title": "Letzte Anforderung war {0}.",
"runtimeExtensions": "Runtimeerweiterungen",
+ "session requests count": ", {0} Anforderungen (Sitzung)",
"showRuntimeExtensions": "Ausgeführte Erweiterungen anzeigen",
"starActivation": "Beim Start durch {0} aktiviert.",
"startupFinishedActivation": "Nach Abschluss des Starts durch \"{0}\" aktiviert",
@@ -5452,164 +9132,139 @@
"vs/workbench/contrib/extensions/browser/configBasedRecommendations": {
"exeBasedRecommendation": "Diese Erweiterung wird aufgrund der aktuellen Arbeitsbereichskonfiguration empfohlen."
},
- "vs/workbench/contrib/extensions/browser/dynamicWorkspaceRecommendations": {
- "dynamicWorkspaceRecommendation": "Diese Erweiterung ist möglicherweise interessant für Sie, weil sie bei Benutzern des Repositorys \"{0}\" beliebt ist."
- },
"vs/workbench/contrib/extensions/browser/exeBasedRecommendations": {
"exeBasedRecommendation": "Diese Erweiterung wird empfohlen, weil {0} installiert ist."
},
"vs/workbench/contrib/extensions/browser/extensionEditor": {
- "JSON Validation": "JSON-Validierung ({0})",
+ "Changelog title": "Änderungsprotokoll",
+ "Install Info": "Installation",
"Marketplace": "Marketplace",
- "Marketplace Info": "Weitere Informationen",
- "Notebook id": "ID",
- "Notebook mimetypes": "Mimetypes",
- "Notebook name": "Name",
- "Notebook renderer name": "Name",
- "NotebookRenderers": "Notebookrenderer ({0})",
- "Notebooks": "Notebooks ({0})",
- "activation": "Aktivierungszeit",
- "activation events": "Aktivierungsereignisse ({0})",
- "authentication": "Authentifizierung ({0})",
- "authentication.id": "ID",
- "authentication.label": "Bezeichnung",
+ "Marketplace Info": "Marketplace",
+ "Readme title": "Infodatei",
+ "Version": "Version",
"builtin": "Integriert",
+ "cache size": "Cache",
"categories": "Kategorien",
"changelog": "Änderungsprotokoll",
"changelogtooltip": "Updateverlauf der Erweiterung, der aus der Datei \"CHANGELOG.md\" der Erweiterung gerendert wurde",
- "codeActions": "Codeaktionen ({0})",
- "codeActions.description": "Beschreibung",
- "codeActions.kind": "Art",
- "codeActions.languages": "Sprachen",
- "codeActions.title": "Titel",
- "colorId": "ID",
- "colorThemes": "Farbdesigns ({0})",
- "colors": "Farben ({0})",
- "command name": "Name",
- "commands": "Befehle ({0})",
- "contributions": "Featurebeiträge",
- "contributionstooltip": "Listet Beiträge zu VS Code durch diese Erweiterung auf",
- "customEditors": "Benutzerdefinierte Editoren ({0})",
- "customEditors filenamePattern": "Dateinamensmuster",
- "customEditors priority": "Priorität",
- "customEditors view type": "Ansichtstyp",
- "debugger name": "Name",
- "debugger type": "Typ",
- "debuggers": "Debugger ({0})",
- "default": "Standard",
- "defaultDark": "Standard, dunkel",
- "defaultHC": "Standard, hoher Kontrast",
- "defaultLight": "Standard, hell",
"dependencies": "Abhängigkeiten",
"dependenciestooltip": "Listet Erweiterungen auf, von denen diese Erweiterung abhängig ist",
- "description": "Beschreibung",
"details": "Details",
"detailstooltip": "Details zur Erweiterung, die aus der Datei \"README.md\" der Erweiterung gerendert wurden",
+ "disk space used": "Cachegröße",
"extension pack": "Erweiterungspaket ({0})",
"extension version": "Erweiterungsversion",
"extensionpack": "Erweiterungspaket",
"extensionpacktooltip": "Listet Erweiterungen auf, die gemeinsam mit dieser Erweiterung installiert werden.",
- "file extensions": "Dateierweiterungen",
- "fileMatch": "Dateiübereinstimmung",
+ "features": "Features",
+ "featurestooltip": "Listet Features auf, die von dieser Erweiterung beigetragen werden",
"find": "Suchen",
"find next": "Weitersuchen",
"find previous": "Vorheriges Element suchen",
- "grammar": "Grammatik",
- "iconThemes": "Symboldesigns ({0})",
"id": "Bezeichner",
- "install count": "Installationsanzahl",
- "keyboard shortcuts": "Tastenkombinationen",
- "language id": "ID",
- "language name": "Name",
- "languages": "Sprachen ({0})",
- "last updated": "Letzte Aktualisierung",
+ "issues": "Probleme",
+ "last released": "Zuletzt veröffentlicht",
+ "last updated": "Zuletzt aktualisiert",
"license": "Lizenz",
- "localizations": "Lokalisierungen ({0})",
- "localizations language id": "Sprach-ID",
- "localizations language name": "Name der Sprache",
- "localizations localized language name": "Name der Sprache (lokalisiert)",
- "menuContexts": "Menükontexte",
- "messages": "Meldungen ({0})",
"name": "Erweiterungsname",
"noChangelog": "Es ist kein Änderungsprotokoll verfügbar.",
- "noContributions": "Keine Beiträge",
"noDependencies": "Keine Abhängigkeiten",
"noReadme": "Keine INFODATEI verfügbar.",
- "noStatus": "Kein Status verfügbar.",
- "not yet activated": "Noch nicht aktiviert.",
- "preRelease": "Vorveröffentlichung",
+ "other": "Lokal",
"preview": "Vorschau",
- "productThemes": "Produktsymboldesigns ({0})",
- "publisher": "Herausgeber",
- "publisher verified tooltip": "Dieser Herausgeber hat den Besitz von {0} überprüft.",
- "rating": "Bewertung",
- "release date": "Veröffentlicht am",
+ "published": "Veröffentlicht",
"repository": "Repository",
- "resources": "Erweiterungsressourcen",
- "runtimeStatus": "Laufzeitstatus",
- "runtimeStatus description": "Laufzeitstatus der Erweiterung",
- "schema": "Schema",
- "setting name": "Name",
- "settings": "Einstellungen ({0})",
- "snippets": "Codeschnipsel",
- "startup": "Start",
- "uncaught errors": "Nicht abgefangene Fehler ({0})",
- "view container id": "ID",
- "view container location": "Wo",
- "view container title": "Titel",
- "view id": "ID",
- "view location": "Wo",
- "view name": "Name",
- "viewContainers": "Container anzeigen ({0})",
- "views": "Ansichten ({0})"
+ "resources": "Ressourcen",
+ "size": "Größe",
+ "size when installed": "Größe bei Installation",
+ "source": "Quelle",
+ "vsix": "VSIX"
+ },
+ "vs/workbench/contrib/extensions/browser/extensionEnablementWorkspaceTrustTransitionParticipant": {
+ "restartExtensionHost.reason": "Arbeitsbereichsvertrauensstellung wird geändert"
+ },
+ "vs/workbench/contrib/extensions/browser/extensionFeaturesTab": {
+ "accessExtensionFeature": "Feature \"{0}\" aktivieren",
+ "activation": "Aktivierung",
+ "cancel": "Abbrechen",
+ "chartDescription": "In den letzten 30 Tagen gab es {0} {1} Anforderungen von dieser Erweiterung.",
+ "disableAccessExtensionFeatureMessage": "Möchten Sie die Erweiterung \"{0}\" widerrufen, um auf das Feature \"{1}\" zuzugreifen?",
+ "enable": "Zugriff erlauben",
+ "enableAccessExtensionFeatureMessage": "Möchten Sie die Erweiterung \"{0}\" zulassen, um auf das Feature \"{1}\" zuzugreifen?",
+ "extension features list": "Erweiterungsfeatures",
+ "grant": "Zugriff erlauben",
+ "label": "Nutzung von {0}",
+ "messaages": "Meldungen ({0})",
+ "noFeatures": "Es wurden keine Features beigetragen.",
+ "revoke": "Zugriff widerrufen",
+ "revoked": "Kein Zugriff",
+ "runtime": "Laufzeitstatus",
+ "uncaught errors": "Nicht abgefangene Fehler ({0})"
},
"vs/workbench/contrib/extensions/browser/extensionRecommendationNotificationService": {
+ "donotShowAgain": "Für dieses Repository nicht mehr anzeigen",
+ "donotShowAgainExtension": "Für diese Erweiterungen nicht mehr anzeigen",
+ "donotShowAgainExtensionSingle": "Für diese Erweiterung nicht mehr anzeigen",
+ "exeRecommended": "Sie haben {0} auf Ihrem System installiert. Möchten Sie die empfohlene {1} installieren?",
+ "extensionFromPublisher": "Erweiterung \"{0}\" von {1}",
+ "extensionsFromMultiplePublishers": "Erweiterungen von {0}, {1} und anderen",
+ "extensionsFromPublisher": "Erweiterungen von {0}",
+ "extensionsFromPublishers": "Erweiterungen von {0} und {1}",
"ignoreAll": "Ja, alle ignorieren",
"ignoreExtensionRecommendations": "Möchten Sie alle Erweiterungsempfehlungen ignorieren?",
"install": "Installieren",
"install and do no sync": "Installieren (nicht synchronisieren)",
- "neverShowAgain": "Nicht mehr anzeigen",
"no": "Nein",
+ "recommended": "Möchten Sie die empfohlene {0} für {1} installieren?",
"show recommendations": "Empfehlungen anzeigen",
- "singleExtensionRecommended": "Die Erweiterung „{0}“ wird für dieses Repository empfohlen. Möchten Sie diese installieren?",
- "workspaceRecommended": "Möchten Sie die empfohlenen Erweiterungen für dieses Repository installieren?"
+ "this repository": "dieses Repository"
},
"vs/workbench/contrib/extensions/browser/extensions.contribution": {
"InstallFromVSIX": "Aus VSIX installieren...",
"InstallVSIXAction.reloadNow": "Jetzt erneut laden",
- "InstallVSIXAction.success": "Die Installation der Erweiterung \"{0}\" über VSIX wurde abgeschlossen.",
- "InstallVSIXAction.successReload": "Die Installation der Erweiterung \"{0}\" über VSIX wurde abgeschlossen. Laden Sie Visual Studio Code neu, um sie zu aktivieren.",
+ "InstallVSIXAction.restartExtensions": "Erweiterungen neu starten",
+ "InstallVSIXAction.successNoReload": "Die Installation der Erweiterung wurde abgeschlossen.",
+ "InstallVSIXAction.successReload": "Die Installation der Erweiterung wurde abgeschlossen. Laden Sie Visual Studio Code neu, um sie zu aktivieren.",
+ "InstallVSIXAction.successRestart": "Die Installation der Erweiterung wurde abgeschlossen. Starten Sie die Erweiterungen neu, um sie zu aktivieren.",
+ "InstallVSIXs.successNoReload": "Die Installation von Erweiterungen wurde abgeschlossen.",
+ "InstallVSIXs.successReload": "Die Installation von Erweiterungen wurde abgeschlossen. Laden Sie Visual Studio Code neu, um sie zu aktivieren.",
+ "InstallVSIXs.successRestart": "Die Installation von Erweiterungen wurde abgeschlossen. Starten Sie die Erweiterungen neu, um sie zu aktivieren.",
"all": "Alle Erweiterungen",
- "builtin": "Die Erweiterung \"{0}\" ist eine integrierte Erweiterung und kann nicht installiert werden.",
+ "autoRestart": "Wenn diese Option aktiviert ist, werden Erweiterungen nach einem Update automatisch neu gestartet, wenn sich das Fenster nicht im Fokus befindet. Wenn Sie Notebooks oder benutzerdefinierte Editoren geöffnet haben, kann ein Datenverlust auftreten.",
+ "builtin": "Die Erweiterung \"{0}\" ist eine integrierte Erweiterung und kann nicht deinstalliert werden.",
"builtin filter": "Integriert",
"checkForUpdates": "Nach Updates für Erweiterungen suchen",
"clearExtensionsSearchResults": "Suchergebnisse für Erweiterungen löschen",
- "configure auto updating extensions": "Erweiterungen automatisch aktualisieren",
- "configureExtensionsAutoUpdate.all": "Alle Erweiterungen",
- "configureExtensionsAutoUpdate.enabled": "Nur aktivierte Erweiterungen",
- "configureExtensionsAutoUpdate.none": "Keine",
- "disableAll": "Alle installierten Erweiterungen löschen",
+ "disableAll": "Alle installierten Erweiterungen deaktivieren",
"disableAllWorkspace": "Alle installierten Erweiterungen für diesen Arbeitsbereich deaktivieren",
- "disableAutoUpdate": "„Automatisches Update“ für alle Erweiterungen deaktivieren",
+ "disableAutoUpdate": "\"Automatisches Update\" für alle Erweiterungen deaktivieren",
+ "disablePreRleaseLabel": "Zur Releaseversion wechseln",
"disabled filter": "Deaktiviert",
+ "download VSIX": "VSIX herunterladen",
+ "download pre-release": "Vorabversion von VSIX herunterladen",
+ "download specific version": "Bestimmte VSIX-Version herunterladen...",
"enableAll": "Alle Erweiterungen aktivieren",
"enableAllWorkspace": "Alle Erweiterungen für diesen Arbeitsbereich aktivieren",
- "enableAutoUpdate": "„Automatisches Update“ für alle Erweiterungen aktivieren",
+ "enableAutoUpdate": "\"Automatisches Update\" für alle Erweiterungen aktivieren",
+ "enablePreRleaseLabel": "Zur Vorabversion wechseln",
"enabled": "Nur aktivierte Erweiterungen",
"enabled filter": "Aktiviert",
"extension": "Erweiterung",
+ "extension updates filter": "Aktualisierungen",
"extensionInfoDescription": "Beschreibung: {0}",
"extensionInfoId": "ID: {0}",
"extensionInfoName": "Name: {0}",
"extensionInfoPublisher": "Herausgeber: {0}",
"extensionInfoVSMarketplaceLink": "Link zum Visual Studio Marketplace: {0}",
"extensionInfoVersion": "Version: {0}",
+ "extensionUpdates": "Erweiterungsupdates anzeigen",
"extensions": "Erweiterungen",
"extensions.affinity": "Konfigurieren Sie eine Erweiterung für die Ausführung in einem anderen Erweiterungshostprozess.",
"extensions.autoUpdate": "Steuert das Verhalten zur automatischen Aktualisierung von Erweiterungen. Die Aktualisierungen werden von einem Microsoft-Onlinedienst abgerufen.",
- "extensions.autoUpdate.enabled": "Hiermit werden Aktualisierungen nur für aktivierte Erweiterungen automatisch heruntergeladen und installiert. Deaktivierte Erweiterungen werden nicht automatisch aktualisiert.",
+ "extensions.autoUpdate.enabled": "Updates werden nur für aktivierte Erweiterungen automatisch heruntergeladen und installiert.",
"extensions.autoUpdate.false": "Hiermit werden Erweiterungen nicht automatisch aktualisiert.",
"extensions.autoUpdate.true": "Hiermit werden Aktualisierungen für alle Erweiterungen automatisch heruntergeladen und installiert.",
+ "extensions.gallery.serviceUrl": "Konfigurieren Sie die URL des Marketplace-Dienstes, um eine Verbindung herzustellen mit",
"extensions.supportUntrustedWorkspaces": "Überschreiben Sie die Unterstützung nicht vertrauenswürdiger Arbeitsbereiche einer Erweiterung. Erweiterungen mit „true“ sind immer aktiviert. Erweiterungen mit „limited“ sind immer aktiviert und die Erweiterung blendet Funktionen aus, für die eine Vertrauensstellung erforderlich ist. Erweiterungen mit „false“ sind nur aktiviert, wenn der Arbeitsbereich vertrauenswürdig ist.",
"extensions.supportUntrustedWorkspaces.false": "Die Erweiterung ist nur aktiviert, wenn der Arbeitsbereich vertrauenswürdig ist.",
"extensions.supportUntrustedWorkspaces.limited": "Die Erweiterung ist immer aktiviert und blendet Funktionen aus, für die eine Vertrauensstellung erforderlich ist.",
@@ -5617,12 +9272,16 @@
"extensions.supportUntrustedWorkspaces.true": "Die Erweiterung ist immer aktiviert.",
"extensions.supportUntrustedWorkspaces.version": "Definiert die Version der Erweiterung, auf die die Überschreibung angewendet werden soll. Wenn nicht anders angegeben, wird die Überschreibung unabhängig von der Erweiterungsversion angewendet.",
"extensions.supportVirtualWorkspaces": "Überschreiben Sie die Unterstützung virtueller Arbeitsbereiche einer Erweiterung.",
+ "extensions.verifySignature": "Wenn diese Option aktiviert ist, wird vor der Installation die Signatur der Erweiterungen überprüft.",
"extensionsCheckUpdates": "Wenn diese Option aktiviert ist, wird automatisch geprüft, ob Updates für Erweiterungen verfügbar sind. Liegt für eine Erweiterung ein Update vor, wird sie in der Ansicht für Erweiterungen als veraltet markiert. Die Updates werden von einem Microsoft-Onlinedienst heruntergeladen.",
"extensionsCloseExtensionDetailsOnViewChange": "Wenn diese Option aktiviert ist, werden Editoren mit Erweiterungsdetails beim Verlassen der Erweiterungsansicht automatisch geschlossen.",
"extensionsConfigurationTitle": "Erweiterungen",
+ "extensionsDeferredStartupFinishedActivation": "Wenn diese Option aktiviert ist, werden Erweiterungen, die das Aktivierungsereignis \"onStartupFinished\" deklarieren, nach einem Timeout aktiviert.",
"extensionsIgnoreRecommendations": "Wenn diese Option aktiviert ist, werden keine Empfehlungen für Erweiterungen angezeigt.",
+ "extensionsInQuickAccess": "Wenn diese Option aktiviert ist, können Sie über den Schnellzugriff nach Erweiterungen suchen und Probleme melden.",
+ "extensionsRequestTimeout": "Steuert das Timeout in Millisekunden für HTTP-Anfragen, die beim Abrufen von Erweiterungen aus dem Marketplace ausgeführt werden.",
"extensionsShowRecommendationsOnlyOnDemand_Deprecated": "Diese Einstellung ist veraltet. Verwenden Sie die Einstellung \"extensions.ignoreRecommendations\", um Empfehlungsbenachrichtigungen zu steuern. Verwenden Sie die Sichtbarkeitsaktionen der Erweiterungsansicht, um die Ansicht mit Empfehlungen standardmäßig auszublenden.",
- "extensionsUseUtilityProcess": "Wenn diese Option aktiviert ist, wird der Erweiterungshost mithilfe der neuen UtilityProcess Electron-API gestartet.",
+ "extensionsSupportNodeGlobalNavigator": "Wenn diese Option aktiviert ist, wird das Node.js-Navigatorobjekt im globalen Bereich verfügbar gemacht.",
"extensionsWebWorker": "Webworker-Erweiterungshost aktivieren.",
"extensionsWebWorker.auto": "Der Web Worker-Erweiterungshost wird gestartet, wenn er von einer Weberweiterung benötigt wird.",
"extensionsWebWorker.false": "Der Web Worker-Erweiterungshost wird nie gestartet.",
@@ -5630,33 +9289,36 @@
"featured filter": "Highlights",
"filter by category": "Kategorie",
"filterExtensions": "Erweiterungen filtern...",
+ "focusExtensions": "Fokus auf Erweiterungsansicht",
"handleUriConfirmedExtensions": "Ist hier eine Erweiterung aufgeführt, wird keine Bestätigungsaufforderung angezeigt, wenn diese Erweiterung einen URI verarbeitet.",
"id required": "Erweiterungs-ID erforderlich.",
"importKeyboardShortcutsFroms": "Tastenkombinationen migrieren von...",
+ "install": "Installieren",
"install button": "Installieren",
+ "install installAndDonotSync": "Installieren (nicht synchronisieren)",
"installButton": "&&Installieren",
+ "installExtensionFromLocation": "Erweiterung vom Speicherort installieren...",
"installExtensionQuickAccessHelp": "Erweiterungen installieren oder suchen",
"installExtensionQuickAccessPlaceholder": "Geben Sie den Namen einer Erweiterung ein, die installiert oder nach der gesucht werden soll.",
"installExtensions": "Erweiterungen installieren",
- "installFromLocation": "Weberweiterung aus Speicherort installieren",
+ "installFromLocation": "Erweiterung vom Speicherort installieren",
"installFromLocationPlaceHolder": "Speicherort der Weberweiterung",
"installFromVSIX": "Aus VSIX installieren",
+ "installPrereleaseAndDonotSync": "Vorabversion installieren (nicht synchronisieren)",
"installVSIX": "VSIX für Erweiterungen installieren",
- "installWebExtensionFromLocation": "Weberweiterung installieren...",
"installWorkspaceRecommendedExtensions": "Installieren Sie die empfohlenen Erweiterungen für Ihren Arbeitsbereich",
"installed filter": "Installiert",
+ "installedExtensions": "Installierte Erweiterungen anzeigen",
"manageExtensionsHelp": "Erweiterungen verwalten",
"manageExtensionsQuickAccessPlaceholder": "Drücken Sie die EINGABETASTE, um Erweiterungen zu verwalten.",
"miPreferencesExtensions": "&&Erweiterungen",
"miViewExtensions": "&&Erweiterungen",
- "miimportKeyboardShortcutsFrom": "&&Migrieren der Tastenkombinationen von...",
"most popular filter": "Beliebteste",
"most popular recommended": "Empfohlen",
"noUpdatesAvailable": "Alle Erweiterungen sind auf dem aktuellen Stand.",
"none": "Keine",
"notFound": "Die Erweiterung '{0}' wurde nicht gefunden.",
"notInstalled": "Die Erweiterung \"{0}\" ist nicht installiert. Stellen Sie sicher, dass Sie die vollständige Erweiterungs-ID verwenden, einschließlich des Herausgebers. Beispiel: ms-vscode.csharp.",
- "outdated filter": "Veraltet",
"recently published filter": "Kürzlich veröffentlicht",
"recentlyPublishedExtensions": "Kürzlich veröffentlichte Erweiterungen anzeigen",
"refreshExtension": "Aktualisieren",
@@ -5667,43 +9329,55 @@
"showEnabledExtensions": "Aktivierte Erweiterungen anzeigen",
"showExtensions": "Erweiterungen",
"showFeaturedExtensions": "Empfohlene Erweiterungen anzeigen",
- "showInstalledExtensions": "Installierte Erweiterungen anzeigen",
"showLanguageExtensionsShort": "Spracherweiterungen",
- "showOutdatedExtensions": "Veraltete Erweiterungen anzeigen",
"showPopularExtensions": "Beliebte Erweiterungen anzeigen",
"showRecommendedExtensions": "Empfohlene Erweiterungen anzeigen",
"showRecommendedKeymapExtensionsShort": "Tastenzuordnungen",
"showWorkspaceUnsupportedExtensions": "Anzeigen von Erweiterungen, die nicht vom Arbeitsbereich unterstützt werden",
- "sort by date": "Veröffentlichungsdatum",
+ "signInToMarketplace": "Melden Sie sich an, um auf den Extensions Marketplace zuzugreifen.",
"sort by installs": "Installationsanzahl",
"sort by name": "Name",
+ "sort by published date": "Veröffentlichungsdatum",
"sort by rating": "Bewertung",
+ "sort by update date": "Datum der Aktualisierung",
"sorty by": "Sortieren nach",
+ "trustedPublishers": "Herausgeber vertrauenswürdiger Erweiterungen verwalten",
+ "trustedPublishersPlaceholder": "Wählen Sie aus, welche Herausgeber vertrauenswürdig sind.",
"updateAll": "Alle Erweiterungen aktualisieren",
"workbench.extensions.action.addExtensionToWorkspaceRecommendations": "Den Arbeitsbereichsempfehlungen hinzufügen",
"workbench.extensions.action.addToWorkspaceFolderIgnoredRecommendations": "Erweiterung den ignorierten Empfehlungen für den Arbeitsbereichsordner hinzufügen",
"workbench.extensions.action.addToWorkspaceFolderRecommendations": "Erweiterung den Empfehlungen für den Arbeitsbereichsordner hinzufügen",
"workbench.extensions.action.addToWorkspaceIgnoredRecommendations": "Erweiterung den ignorierten Arbeitsbereichsempfehlungen hinzufügen",
"workbench.extensions.action.addToWorkspaceRecommendations": "Erweiterung den Arbeitsbereichsempfehlungen hinzufügen",
- "workbench.extensions.action.configure": "Erweiterungseinstellungen",
+ "workbench.extensions.action.changeAccountPreference": "Kontoeinstellungen",
+ "workbench.extensions.action.configure": "Einstellungen",
+ "workbench.extensions.action.configureKeybindings": "Tastenkombinationen",
"workbench.extensions.action.copyExtension": "Kopieren",
"workbench.extensions.action.copyExtensionId": "Erweiterungs-ID kopieren",
+ "workbench.extensions.action.copyLink": "Link kopieren",
"workbench.extensions.action.ignoreRecommendation": "Empfehlung ignorieren",
+ "workbench.extensions.action.manageTrustedPublishers": "Herausgeber vertrauenswürdiger Erweiterungen verwalten",
"workbench.extensions.action.removeExtensionFromWorkspaceRecommendations": "Aus Arbeitsbereichsempfehlungen entfernen",
+ "workbench.extensions.action.toggleApplyToAllProfiles": "Erweiterung auf alle Profile anwenden",
"workbench.extensions.action.toggleIgnoreExtension": "Diese Erweiterung synchronisieren",
"workbench.extensions.action.undoIgnoredRecommendation": "Ignorierte Empfehlung rückgängig machen",
"workbench.extensions.installExtension.arg.decription": "Erweiterungs-ID oder URI der VSIX-Ressource",
"workbench.extensions.installExtension.description": "Hiermit wird die angegebene Erweiterung installiert.",
"workbench.extensions.installExtension.option.context": "Kontext für die Installation. Hierbei handelt es sich um ein JSON-Objekt, das zur Übergabe von Informationen an die Installationshandler verwendet werden kann, z. B. \"{skipWalkthrough: true}\" überspringt das Öffnen der Vorgehensweise bei der Installation.",
"workbench.extensions.installExtension.option.donotSync": "Wenn diese Option aktiviert ist, synchronisiert VS Code diese Erweiterung nicht, wenn die Einstellungssynchronisierung aktiviert ist.",
+ "workbench.extensions.installExtension.option.enable": "Wenn diese Option aktiviert ist, wird die Erweiterung aktiviert, wenn sie installiert, aber deaktiviert ist. Wenn die Erweiterung bereits aktiviert ist, hat dies keine Auswirkungen.",
"workbench.extensions.installExtension.option.installOnlyNewlyAddedFromExtensionPackVSIX": "Wenn diese Option aktiviert ist, installiert VS Code nur neu hinzugefügte Erweiterungen aus dem Erweiterungspaket VSIX. Diese Option wird nur bei der Installation einer VSIX-Anwendung berücksichtigt.",
"workbench.extensions.installExtension.option.installPreReleaseVersion": "Wenn diese Option aktiviert ist, installiert VS Code die Vorabversion der Erweiterung, sofern verfügbar.",
+ "workbench.extensions.installExtension.option.justification": "Begründung für die Installation der Erweiterung. Dies ist eine Zeichenfolge oder ein Objekt, das verwendet werden kann, um alle Informationen an die Installationshandler zu übergeben. d. h. `{reason: 'This extension wants to open a URI', action: 'Open URI'}` zeigt ein Meldungsfeld mit dem Grund und der Aktion bei der Installation an.",
"workbench.extensions.search.arg.name": "Abfrage, die bei der Suche verwendet werden soll",
"workbench.extensions.search.description": "Nach einer bestimmten Erweiterung suchen",
"workbench.extensions.uninstallExtension.arg.name": "Id der zu deinstallierenden Erweiterung",
"workbench.extensions.uninstallExtension.description": "Angegebene Erweiterung deinstallieren",
"workspace unsupported filter": "Nicht unterstützter Arbeitsbereich"
},
+ "vs/workbench/contrib/extensions/browser/extensions.web.contribution": {
+ "runtimeExtension": "Ausgeführte Erweiterungen"
+ },
"vs/workbench/contrib/extensions/browser/extensionsActions": {
"Cannot be enabled": "Diese Erweiterung ist deaktiviert, da sie in {0} für das Web nicht unterstützt wird.",
"Defined to run in desktop": "Diese Erweiterung ist deaktiviert, da sie so definiert ist, dass sie nur in {0} für den Desktop ausgeführt wird.",
@@ -5711,42 +9385,39 @@
"Install in remote server to enable": "Diese Erweiterung ist in diesem Arbeitsbereich deaktiviert, da sie für die Ausführung auf dem Remoteerweiterungshost definiert ist. Installieren Sie die Erweiterung in \"{0}\", um sie zu aktivieren.",
"Install language pack also in remote server": "Installieren Sie die Sprachpaketerweiterung auf \"{0}\", um sie dort ebenfalls zu aktivieren.",
"Install language pack also locally": "Installieren Sie die Sprachpaketerweiterung lokal, um sie dort ebenfalls zu aktivieren.",
- "InstallVSIXAction.reloadNow": "Jetzt erneut laden",
- "ManageExtensionAction.uninstallingTooltip": "Wird deinstalliert",
"OpenExtensionsFile.failed": "Die Datei \"extensions.json\" kann nicht im Ordner \".vscode\" erstellt werden ({0}).",
- "ReinstallAction.success": "Die erneute Installation der Erweiterung {0} ist abgeschlossen.",
- "ReinstallAction.successReload": "Laden Sie Visual Studio Code neu, um die Neuinstallation der Erweiterung {0} abzuschließen.",
- "Show alternate extension": "{0} öffnen",
+ "Show alternate extension": "&&{0} öffnen",
"Uninstalling": "Wird deinstalliert",
"VS Code for Web": "{0} für das Web",
+ "auto update message": "[review the extension]({0}) und manuell aktualisieren.",
"cancel": "Abbrechen",
"cannot be installed": "Die Erweiterung \"{0}\" ist in {1} nicht verfügbar. Klicken Sie auf \"Weitere Informationen\", um weitere Informationen zu erhalten.",
"check logs": "Überprüfen Sie das [Protokoll]({0}), um weitere Informationen zu erhalten.",
"close": "Schließen",
- "configure in settings": "Einstellungen konfigurieren",
+ "configure in settings": "&&Einstellungen konfigurieren",
"configureWorkspaceFolderRecommendedExtensions": "Empfohlene Erweiterungen konfigurieren (Arbeitsbereichsordner)",
"configureWorkspaceRecommendedExtensions": "Empfohlene Erweiterungen konfigurieren (Arbeitsbereich)",
"current": "Aktuell",
+ "dependencies": "Abhängigkeiten anzeigen",
"deprecated message": "Diese Erweiterung ist veraltet, da sie nicht mehr gepflegt wird.",
"deprecated tooltip": "Diese Erweiterung ist veraltet, da sie nicht mehr gepflegt wird.",
"deprecated with alternate extension message": "Diese Erweiterung ist veraltet. Verwenden Sie stattdessen die {0}-Erweiterung.",
"deprecated with alternate extension tooltip": "Diese Erweiterung ist veraltet. Verwenden Sie stattdessen die {0}-Erweiterung.",
"deprecated with alternate settings message": "Diese Erweiterung ist veraltet, weil diese Funktionalität jetzt in VS Code integriert ist.",
"deprecated with alternate settings tooltip": "Diese Erweiterung ist veraltet, weil diese Funktionalität jetzt in VS Code integriert ist. Konfigurieren Sie diese {0}, um diese Funktion zu verwenden.",
- "disableAction": "Deaktivieren",
+ "disableAutoUpdate": "Automatische Updates deaktiviert für",
"disableForWorkspaceAction": "Deaktivieren (Arbeitsbereich)",
"disableForWorkspaceActionToolTip": "Die Erweiterung wird nur in diesem Arbeitsbereich deaktiviert.",
"disableGloballyAction": "Deaktivieren",
"disableGloballyActionToolTip": "Diese Erweiterung deaktivieren",
"disabled": "Deaktiviert",
+ "disabled - not allowed": "Diese Erweiterung ist aus folgendem Grund deaktiviert: {0}",
"disabled because of virtual workspace": "Diese Erweiterung wurde deaktiviert, weil sie keine virtuellen Arbeitsbereiche unterstützt.",
"disabled by environment": "Diese Erweiterung wurde durch die Umgebung deaktiviert.",
- "do no sync": "Nicht synchronisieren",
"do not sync": "Diese Erweiterung nicht synchronisieren",
"download": "Manuell herunterladen...",
- "enable locally": "Laden Sie Visual Studio Code neu, um diese Erweiterung lokal zu aktivieren.",
- "enable remote": "Laden Sie Visual Studio Code neu, um diese Erweiterung in \"{0}\" lokal zu aktivieren.",
- "enableAction": "Aktivieren",
+ "enableAutoUpdate": "Automatische Updates aktiviert für",
+ "enableAutoUpdateLabel": "Automatisches Update",
"enableForWorkspaceAction": "Aktivieren (Arbeitsbereich)",
"enableForWorkspaceActionToolTip": "Diese Erweiterung wird nur in diesem Arbeitsbereich aktiviert.",
"enableGloballyAction": "Aktivieren",
@@ -5756,44 +9427,43 @@
"enabled in web worker": "Diese Erweiterung ist im lokalen Erweiterungshost des Workers aktiviert, da sie bevorzugt dort ausgeführt wird.",
"enabled locally": "Diese Erweiterung ist im lokalen Erweiterungshost aktiviert, da sie bevorzugt dort ausgeführt wird.",
"enabled remotely": "Diese Erweiterung ist im Remoteerweiterungshost aktiviert, da sie es vorzieht, dort ausgeführt zu werden.",
- "extension disabled because of dependency": "Diese Erweiterung wurde deaktiviert, da sie von einer deaktivierten Erweiterung abhängig ist.",
+ "extension disabled because of dependency": "Diese Erweiterung ist von einer deaktivierten Erweiterung abhängig.",
"extension disabled because of trust requirement": "Diese Erweiterung wurde deaktiviert, weil der aktuelle Arbeitsbereich nicht vertrauenswürdig ist.",
+ "extension disabled because of unification": "Alle Funktionen von GitHub Copilot werden jetzt über die Erweiterung GitHub Copilot Chat bereitgestellt. Um diese Erweiterungszusammenführung vorübergehend zu umgehen, schalten Sie die {0}-Einstellung um.",
"extension enabled on remote": "Erweiterung ist für \"{0}\" aktiviert.",
"extension limited because of trust requirement": "Diese Erweiterung verfügt über eingeschränkte Features, weil der aktuelle Arbeitsbereich nicht vertrauenswürdig ist.",
"extension limited because of virtual workspace": "Diese Erweiterung verfügt über eingeschränkte Features, weil der aktuelle Arbeitsbereich virtuell ist.",
- "extensionButtonProminentBackground": "Hintergrundfarbe für markante Aktionenerweiterungen (z.B. die Schaltfläche zum Installieren).",
- "extensionButtonProminentForeground": "Vordergrundfarbe für markante Aktionenerweiterungen (z.B. die Schaltfläche zum Installieren).",
- "extensionButtonProminentHoverBackground": "Hoverhintergrundfarbe für markante Aktionenerweiterungen (z.B. die Schaltfläche zum Installieren).",
+ "extensionButtonBackground": "Schaltflächenhintergrundfarbe für Erweiterungsaktionen.",
+ "extensionButtonForeground": "Schaltflächenvordergrundfarbe für Erweiterungsaktionen.",
+ "extensionButtonHoverBackground": "Schaltflächenhintergrund-Hoverfarbe für Erweiterungsaktionen.",
+ "extensionButtonProminentBackground": "Schaltflächenhintergrundfarbe für Erweiterungsaktionen, die hervorstechen (z. B. Schaltfläche \"Installieren\").",
+ "extensionButtonProminentForeground": "Schaltflächenvordergrundfarbe für Erweiterungsaktionen, die hervorstechen (z. B. Schaltfläche \"Installieren\").",
+ "extensionButtonProminentHoverBackground": "Schaltflächenhintergrund-Hoverfarbe für Erweiterungsaktionen, die hervorstechen (z. B. Schaltfläche \"Installieren\").",
+ "extensionButtonSeparator": "Schaltflächentrennzeichenfarbe für Erweiterungsaktionen",
"finished installing": "Erweiterungen wurden erfolgreich installiert.",
"globally disabled": "Diese Erweiterung wurde durch den Benutzer global deaktiviert.",
- "globally enabled": "Diese Erweiterung wurde global aktiviert.",
"ignoreExtensionRecommendation": "Diese Erweiterung nicht mehr empfehlen",
+ "ignoreExtensionUpdatePublisher": "Von {0} veröffentlichte Updates werden ignoriert.",
"ignored": "Diese Erweiterung wird während der Synchronisierung ignoriert.",
- "incompatible": "Die Erweiterung \"{0}\" kann nicht installiert werden, da sie nicht kompatibel ist.",
- "incompatible platform": "Die Erweiterung „{0}“ ist in {1} nicht für {2} verfügbar.",
"install": "Installieren",
- "install another version": "Andere Version installieren...",
+ "install another version": "Bestimmte Version installieren...",
"install anyway": "Trotzdem installieren",
"install browser": "Im Browser installieren",
"install confirmation": "Möchten Sie „{0}“ installieren?",
- "install everywhere tooltip": "Installieren Sie diese Erweiterung in allen synchronisierten {0}-Instanzen.",
- "install extension in remote": "{0} in {1}",
- "install extension in remote and do not sync": "{0} in {1} ({2})",
- "install extension locally": "{0} Lokal",
- "install extension locally and do not sync": "{0} Lokal ({1})",
+ "install donot verify": "Trotzdem installieren (Signatur nicht überprüfen)",
"install in remote": "Auf \"{0}\" installieren",
"install local extensions title": "Lokale Erweiterungen in \"{0}\" installieren",
"install locally": "Lokal installieren",
"install operation": "Fehler beim Installieren der Erweiterung \"{0}\".",
"install pre-release": "Vorveröffentlichung installieren",
"install pre-release version": "Vorabversion installieren",
+ "install prerelease": "Vorveröffentlichung installieren",
"install previous version": "Spezielle Version der Erweiterung installieren...",
"install release version": "Releaseversion installieren",
- "install release version message": "Möchten Sie die Releaseversion installieren?",
"install remote extensions": "Remoteerweiterungen lokal installieren",
"install vsix": "Installieren Sie nach dem Herunterladen das heruntergeladene VSIX von \"{0}\" manuell.",
+ "install workspace version": "Arbeitsbereichserweiterung installieren",
"installExtensionComplete": "Die Installation der Erweiterung \"{0}\" wurde abgeschlossen.",
- "installExtensionCompletedAndReloadRequired": "Die Installation der Erweiterung \"{0}\" wurde abgeschlossen. Laden Sie Visual Studio Code neu, um sie zu aktivieren.",
"installExtensionStart": "Die Installation der Erweiterung {0} wurde gestartet. Ein Editor mit weiteren Details zu dieser Erweiterung wurde geöffnet.",
"installRecommendedExtension": "Empfohlene Erweiterung installieren",
"installVSIX": "Aus VSIX installieren...",
@@ -5801,25 +9471,27 @@
"installing": "Wird installiert.",
"installing extensions": "Erweiterungen werden installiert...",
"learn more": "Weitere Informationen",
- "learn why": "Erfahren Sie, warum.",
"malicious tooltip": "Die Erweiterung wurde als problematisch gemeldet.",
"manage": "Verwalten",
+ "manage access": "Zugriff verwalten",
"migrate": "Migrieren",
"migrate to": "Zu {0} migrieren",
"migrateExtension": "Migrieren",
- "more information": "Weitere Informationen",
+ "missing from gallery tooltip": "Diese Erweiterung ist im Marketplace für Erweiterungen nicht mehr verfügbar.",
+ "more information": "&&Weitere Informationen",
"no local extensions": "Es sind keine Erweiterungen zur Installation vorhanden.",
"no versions": "Diese Erweiterung hat keine anderen Versionen.",
- "not web tooltip": "Die Erweiterung „{0}“ ist unter {1} nicht verfügbar.",
- "postDisableTooltip": "Laden Sie Visual Studio Code neu, um diese Erweiterung zu deaktivieren.",
- "postEnableTooltip": "Laden Sie Visual Studio Code neu, um diese Erweiterung zu aktivieren.",
- "postUninstallTooltip": "Laden Sie Visual Studio Code erneut, um die Deinstallation dieser Erweiterung abzuschließen.",
- "postUpdateTooltip": "Laden Sie Visual Studio Code erneut, um die Aktualisierung dieser Erweiterung abzuschließen.",
+ "not signed": "\"{0}\" ist eine Erweiterung aus einer unbekannten Quelle. Möchten Sie die Installation durchführen?",
+ "not signed detail": "Die Erweiterung ist nicht signiert.",
+ "not signed tooltip": "Diese Erweiterung ist nicht vom Extension Marketplace signiert.",
"pre-release": "Vorabversion",
- "reinstall": "Erweiterung erneut installieren...",
- "reloadAction": "Neu laden",
- "reloadRequired": "Erneutes Laden erforderlich",
- "search recommendations": "Nach Erweiterungen suchen",
+ "reload window": "Fenster erneut laden",
+ "report issue": "Problem melden",
+ "report issue body": "Fügen Sie das folgende Protokoll „F1 > Ansicht öffnen... > Freigegeben“ unten ein.\r\n\r\n",
+ "report issue title": "Fehler beim Verifizieren der Erweiterungssignatur: {0}",
+ "restart extensions": "Erweiterungen neu starten",
+ "restart product": "Für Update neu starten",
+ "review": "Überprüfung",
"select and install local extensions": "Lokale Erweiterungen in \"{0}\" installieren...",
"select and install remote extensions": "Remoteerweiterungen lokal installieren...",
"select color theme": "Farbdesign auswählen",
@@ -5827,28 +9499,33 @@
"select file icon theme": "Dateisymboldesign auswählen",
"select product icon theme": "Produktsymboldesign auswählen",
"selectExtension": "Erweiterung auswählen",
- "selectExtensionToReinstall": "Erweiterung für die erneute Installation auswählen",
"selectVersion": "Zu installierende Version auswählen",
"settings": "Einstellungen",
"showRecommendedExtension": "Empfohlene Erweiterung anzeigen",
- "switch to pre-release version": "Zur Vorabversion wechseln",
- "switch to pre-release version tooltip": "Zur Vorabversion dieser Erweiterung wechseln",
- "switch to release version": "Zur Releaseversion wechseln",
- "switch to release version tooltip": "Zur endgültigen Version dieser Erweiterung wechseln",
+ "switchToPreReleaseLabel": "Zur Vorabversion wechseln",
+ "switchToPreReleaseTooltip": "Dadurch wird zur Vorabversion gewechselt, und Updates auf die neueste Version werden immer aktiviert.",
"sync": "Diese Erweiterung synchronisieren",
"synced": "Diese Erweiterung wird synchronisiert.",
+ "toggleAutoUpdatesForPublisherLabel": "Alle automatisch aktualisieren (Aus Publisher)",
+ "togglePreRleaseDisableLabel": "Zur Releaseversion wechseln",
+ "togglePreRleaseDisableTooltip": "Dadurch werden Updates für Releaseversionen gewechselt und aktiviert.",
+ "togglePreRleaseLabel": "Vorveröffentlichung",
"undo": "Rückgängig",
"uninstallAction": "Deinstallieren",
+ "uninstallAll": "Deinstallieren (alle Profile)",
"uninstallExtensionComplete": "Laden Sie Visual Studio Code neu, um die Deinstallation der Erweiterung {0} abzuschließen.",
"uninstallExtensionStart": "Die Deinstallation der Erweiterung {0} wurde gestartet.",
"uninstalled": "Deinstalliert",
+ "update": "Aktualisieren",
"update operation": "Fehler beim Aktualisieren der Erweiterung \"{0}\".",
- "updateAction": "Aktualisieren",
+ "update product": "{0} aktualisieren",
+ "update to": "Auf v{0} aktualisieren",
"updateExtensionComplete": "Das Update der Erweiterung {0} auf Version {1} ist abgeschlossen.",
+ "updateExtensionConsent": "{0}\r\n\r\nMöchten Sie die Erweiterung aktualisieren?",
+ "updateExtensionConsentTitle": "{0}-Erweiterung aktualisieren",
"updateExtensionStart": "Das Update der Erweiterung {0} auf Version {1} wurde gestartet.",
- "updateToLatestVersion": "Auf “{0}” aktualisieren",
- "updateToTargetPlatformVersion": "Auf {0} Version aktualisieren",
"updated": "Aktualisiert",
+ "verification failed": "Die Erweiterung \"{0}\" kann nicht installiert werden, da {1} die Erweiterungssignatur nicht überprüfen kann.",
"workbench.extensions.action.clearLanguage": "Anzeigesprache löschen",
"workbench.extensions.action.setColorTheme": "Farbdesign festlegen",
"workbench.extensions.action.setDisplayLanguage": "Anzeigesprache festlegen",
@@ -5881,6 +9558,7 @@
"installCountIcon": "Symbol, das zusammen mit der Installationsanzahl in der Erweiterungsansicht und im Erweiterungs-Editor angezeigt wird.",
"installLocalInRemoteIcon": "Symbol für die Aktion \"Lokale Erweiterung remote installieren\" in der Erweiterungsansicht.",
"installWorkspaceRecommendedIcon": "Symbol für die Aktion \"Empfohlene Arbeitsbereichserweiterungen installieren\" in der Erweiterungsansicht.",
+ "lockIcon": "Symbol, das für private Erweiterungen in der Erweiterungen-Ansicht und im Editor angezeigt wird.",
"manageExtensionIcon": "Symbol für Aktion \"Verwalten\" in der Erweiterungsansicht.",
"preReleaseIcon": "Symbol, das für Erweiterungen mit Vorabversionen in der Erweiterungsansicht und im Editor angezeigt wird.",
"ratingIcon": "Symbol, das zusammen mit der Bewertung in der Erweiterungs-Ansicht und im Erweiterungs-Editor angezeigt wird.",
@@ -5893,7 +9571,6 @@
"syncEnabledIcon": "Symbol, das angibt, dass eine Erweiterung synchronisiert ist.",
"syncIgnoredIcon": "Symbol, das angibt, dass eine Erweiterung bei der Synchronisierung ignoriert wird.",
"trustIcon": "Symbol, das in einer Meldung zur Vertrauenswürdigkeit des Arbeitsbereichs im Erweiterungs-Editor angezeigt wird.",
- "verifiedPublisher": "Symbol, das für den verifizierten Erweiterungsherausgeber in der Erweiterungsansicht und im Editor verwendet wird.",
"warningIcon": "Symbol, das mit einer Warnmeldung im Erweiterungs-Editor angezeigt wird."
},
"vs/workbench/contrib/extensions/browser/extensionsQuickAccess": {
@@ -5905,37 +9582,54 @@
"vs/workbench/contrib/extensions/browser/extensionsViewer": {
"Unknown Extension": "Unbekannte Erweiterung:",
"error": "Fehler",
- "extension.arialabel": "{0}, {1}, {2}, {3}",
+ "extension.arialabel.deprecated": "Veraltet",
+ "extension.arialabel.publisher": "Herausgeber {0}",
+ "extension.arialabel.rating": "Von {1} Benutzern mit {0} von 5 Sternen bewertet",
+ "extension.arialabel.verifiedPublisher": "Verifizierter Herausgeber {0}",
"extensions": "Erweiterungen"
},
"vs/workbench/contrib/extensions/browser/extensionsViewlet": {
+ "access denied": "Ihr Konto hat keinen Zugriff auf den Extensions Marketplace. Wenden Sie sich an die für die Administration zuständige Person.",
+ "accessDenied": "Zugriff auf Marketplace verweigert",
+ "availableUpdates": "Verfügbare Updates",
"builtInThemesExtensions": "Designs",
"builtin": "Integriert",
"builtinFeatureExtensions": "Features",
"builtinProgrammingLanguageExtensions": "Programmiersprachen",
+ "click show": "Zum Anzeigen klicken",
"deprecated": "Veraltet",
"disabled": "Deaktiviert",
"disabledExtensions": "Deaktiviert",
+ "dismiss": "Verwerfen",
"enabled": "Aktiviert",
"enabledExtensions": "Aktiviert",
"extensionFound": "1 Erweiterung gefunden.",
"extensionFoundInSection": "Im Abschnitt {0} wurde 1 Erweiterung gefunden.",
+ "extensionToReload": "{0} erfordert einen Neustart",
+ "extensionToUpdate": "{0} muss aktualisiert werden.",
"extensionsFound": "{0} Erweiterungen gefunden.",
"extensionsFoundInSection": "Im Abschnitt {1} wurden {0} Erweiterungen gefunden.",
+ "extensionsToReload": "{0} erfordern einen Neustart",
+ "extensionsToUpdate": "{0} müssen aktualisiert werden.",
"install remote in local": "Remoteerweiterungen lokal installieren...",
"installed": "Installiert",
- "malicious warning": "\"{0}\" wurde als problematisch gemeldet und wurde daher deinstalliert.",
+ "learnMore": "Weitere Informationen",
+ "malicious warning": "Die Erweiterung „{0}“ wurde als problematisch eingestuft und deinstalliert.",
"marketPlace": "Marketplace",
"open user settings": "Benutzereinstellungen öffnen",
"otherRecommendedExtensions": "Weitere Empfehlungen",
- "outdated": "Veraltet",
- "outdatedExtensions": "{0} veraltete Erweiterungen",
"popularExtensions": "Beliebt",
+ "recently updated": "Kürzlich aktualisiert",
"recommendedExtensions": "Empfohlen",
"reloadNow": "Jetzt erneut laden",
"remote": "Remote",
+ "restartNow": "Erweiterungen neu starten",
"searchExtensions": "Nach Erweiterungen in Marketplace suchen",
"select and install local extensions": "Lokale Erweiterungen in \"{0}\" installieren...",
+ "show": "Anzeigen",
+ "sign in": "[Anmelden, um auf Extensions Marketplace zuzugreifen]({0})",
+ "sign in enterprise marketplace": "Anmelden, um auf Marketplace zuzugreifen",
+ "signInRequired": "Für den Zugriff auf den Marketplace ist eine Anmeldung erforderlich.",
"suggestProxyError": "Marketplace hat \"ECONNREFUSED\" zurückgegeben. Überprüfen Sie die http.proxy-Einstellung.",
"untrustedPartiallySupportedExtensions": "Eingeschränkt im eingeschränkten Modus",
"untrustedUnsupportedExtensions": "Deaktiviert im eingeschränkten Modus",
@@ -5946,27 +9640,28 @@
},
"vs/workbench/contrib/extensions/browser/extensionsViews": {
"error": "Fehler beim Abrufen von Erweiterungen. {0}",
- "extension.arialabel.deprecated": "Veraltet",
- "extension.arialabel.publihser": "Herausgeber {0}",
- "extensions": "Erweiterungen",
"no extensions found": "Es wurden keine Erweiterungen gefunden.",
"no local extensions": "Es sind keine Erweiterungen zur Installation vorhanden.",
"offline error": "Marketplace kann im Offlinemodus nicht durchsucht werden. Überprüfen Sie Ihre Netzwerkverbindung.",
- "open user settings": "Benutzereinstellungen öffnen",
- "suggestProxyError": "Marketplace hat \"ECONNREFUSED\" zurückgegeben. Überprüfen Sie die http.proxy-Einstellung."
+ "showing local extensions only": "{0} Lokale Erweiterungen werden angezeigt.",
+ "showingExtensionsForFeature": "Erweiterungen, die in den letzten 30 Tagen {0} verwenden"
},
"vs/workbench/contrib/extensions/browser/extensionsWidgets": {
"Show prerelease version": "Vorabversion",
"activation": "Aktivierungszeit",
- "dependencies": "Abhängigkeiten anzeigen",
+ "extensionIcon.private": "Die Symbolfarbe für private Erweiterungen.",
"extensionIcon.sponsorForeground": "Die Symbolfarbe für den Erweiterungs-Projektsponsor",
"extensionIconStarForeground": "Die Symbolfarbe für Erweiterungsbewertungen.",
- "extensionIconVerifiedForeground": "Die Symbolfarbe für den verifizierten Erweiterungsherausgeber.",
"extensionPreReleaseForeground": "Die Symbolfarbe für die Vorabversion der Erweiterung.",
+ "feature access label": "{0} Anforderungen",
+ "feature usage label": "{0} Verbrauch",
"has prerelease": "{0} ist für diese Erweiterung verfügbar",
+ "install count": "Installationsanzahl",
+ "local extension": "Lokale Erweiterung",
"message": "1 Meldung",
"messages": "{0} Meldungen",
- "pre-release-label": "Vorveröffentlichung",
+ "privateExtension": "Private Erweiterung",
+ "publisher": "Herausgeber ({0})",
"publisher verified tooltip": "Dieser Herausgeber hat den Besitz von {0} überprüft.",
"ratedLabel": "Durchschnittliche Bewertung: {0} von 5",
"recommendationHasBeenIgnored": "Sie möchten keine Empfehlungen für diese Erweiterung erhalten.",
@@ -5974,27 +9669,92 @@
"sponsor": "Sponsor",
"startup": "Start",
"syncingore.label": "Diese Erweiterung wird während der Synchronisierung ignoriert.",
+ "total": "{0} {1} Anforderungen in den letzten 30 Tagen",
"uncaught error": "1 nicht abgefangener Fehler",
- "uncaught errors": "{0} nicht abgefangene Fehler"
+ "uncaught errors": "{0} nicht abgefangene Fehler",
+ "updateRequired": "Aktuelle Version:",
+ "verified publisher": "Dieser Herausgeber hat den Besitz von {0} überprüft.",
+ "workspace extension": "Arbeitsbereichserweiterung"
},
"vs/workbench/contrib/extensions/browser/extensionsWorkbenchService": {
"Manifest is not found": "Das Manifest wurde nicht gefunden.",
+ "allplatforms": "Alle Plattformen",
+ "cannot be installed": "Die Erweiterung \"{0}\" kann nicht installiert werden, weil sie in diesem Setup nicht verfügbar ist.",
+ "confirmDisableAutoUpdate": "Möchten Sie die automatische Aktualisierung für alle Erweiterungen deaktivieren?",
+ "confirmEnableAutoUpdate": "Möchten Sie die automatische Aktualisierung für alle Erweiterungen aktivieren?",
+ "confirmEnableDisableAutoUpdate": "Erweiterungen automatisch aktualisieren",
+ "confirmEnableDisableAutoUpdateDetail": "Dadurch werden alle Einstellungen für automatische Updates zurückgesetzt, die Sie für einzelne Erweiterungen festgelegt haben.",
+ "consentRequiredToUpdate": "Das Update für die {0}-Erweiterung führt ausführbaren Code ein, der in der aktuell installierten Version nicht vorhanden ist.",
+ "consentRequiredToUpdateRepublishedExtension": "Die Marketplace-Metadaten dieser Erweiterung haben sich geändert, wahrscheinlich aufgrund einer Neuveröffentlichung.",
+ "deprecated extensions": "Veraltete Erweiterungen erkannt. Überprüfen Sie sie, und migrieren Sie zu Alternativen.",
"disable all": "Alle deaktivieren",
- "installing extension": "Die Erweiterung wird installiert...",
- "installing named extension": "Die Erweiterung \"{0}\" wird installiert...",
+ "disableDependents": "Erweiterung mit abhängigen Elementen deaktivieren",
+ "disallowed": "Die Installation dieser Erweiterung ist unzulässig.",
+ "disallowed extensions": "Some extensions are disabled because they are configured not to be allowed.",
+ "disallowed extensions by policy": "Some extensions are disabled because they are not allowed by your system administrator.",
+ "download": "Herunterladen",
+ "download title": "Ordner zum Herunterladen der VSIX auswählen",
+ "download.completed": "VSIX erfolgreich heruntergeladen",
+ "download.failed": "Fehler beim Herunterladen von VSIX: {0}",
+ "downloading...": "VSIX wird heruntergeladen...",
+ "enable locally": "Aktivieren Sie „{0}“, um die Erweiterung lokal zu aktivieren.",
+ "enable remote": "Aktivieren Sie „{0}“, um diese Erweiterung in „{1}“ zu aktivieren.",
+ "enableButtonLabel": "&&Erweiterung aktivieren",
+ "enableButtonLabelWithAction": "&&Erweiterung aktivieren und {0}",
+ "enableExtensionMessage": "Möchten Sie die Erweiterung „{0}“ aktivieren?",
+ "enableExtensionTitle": "Erweiterung aktivieren",
+ "extension not found": "Die Erweiterung '{0}' wurde nicht gefunden.",
+ "extensionsAutoRestart": "Erweiterungen wurden automatisch neu gestartet, um Updates zu aktivieren.",
+ "incompatible": "Die Erweiterung \"{0}\" kann nicht installiert werden, da sie nicht kompatibel ist.",
+ "incompatibleExtensions": "Einige Erweiterungen sind aufgrund einer Versionsinkompatibilität deaktiviert. Überprüfen und Aktualisieren Sie sie.",
+ "installButtonLabel": "&&Erweiterung installieren",
+ "installButtonLabelWithAction": "&&Erweiterung installieren und {0}",
+ "installExtensionMessage": "Möchten Sie die Erweiterung „{0}“ von „{1}“ installieren?",
+ "installExtensionTitle": "Erweiterung installieren",
+ "installVSIXMessage": "Möchten Sie die Erweiterung installieren?",
+ "installing extension": "Erweiterung wird installiert…",
+ "installing named extension": "Die Erweiterung „{0}“ wird installiert…",
+ "invalidExtensions": "Ungültige Erweiterungen erkannt. Überprüfen Sie sie.",
"malicious": "Diese Erweiterung wird als problematisch gemeldet.",
"multipleDependentsError": "Die Erweiterung \"{0}\" kann nicht separat deaktiviert werden. \"{1}\", \"{2}\" und andere Erweiterungen sind davon abhängig. Möchten Sie all diese Erweiterungen deaktivieren?",
- "not found": "Die Erweiterung „{0}“ kann nicht installiert werden, da die angeforderte Version „{1}“ nicht gefunden wurde.",
+ "multipleDependentsUninstallError": "Die Erweiterung „{0}“ kann nicht allein deinstalliert werden. „{1}“, „{2}“ und andere Erweiterungen sind davon abhängig. Möchten Sie alle diese Erweiterungen deinstallieren?",
+ "no versions": "Diese Erweiterung hat keine anderen Versionen.",
+ "not an extension": "Das angegebene Objekt ist keine Erweiterung.",
+ "not found": "Die Erweiterung „{0}“ kann nicht installiert werden, weil sie nicht gefunden wurde.",
+ "not found version": "Die Erweiterung „{0}“ kann nicht installiert werden, weil die angeforderte Version „{1}“ nicht gefunden wurde.",
+ "not signed": "Diese Erweiterung ist nicht signiert.",
+ "open": "Erweiterung öffnen",
+ "platform placeholder": "Wählen Sie die Plattform aus, für die Sie VSIX herunterladen möchten.",
+ "postDisableTooltip": "Aktivieren Sie „{0}“, um diese Erweiterung zu deaktivieren.",
+ "postEnableTooltip": "Aktivieren Sie „{0}“, um diese Erweiterung zu aktivieren.",
+ "postUninstallTooltip": "Aktivieren Sie „{0}“, um die Deinstallation dieser Erweiterung abzuschließen.",
+ "postUpdateDownloadTooltip": "Aktualisieren Sie „{0}“, um die aktualisierte Erweiterung zu aktivieren.",
+ "postUpdateRestartTooltip": "Starten Sie „{0}“ neu, um die aktualisierte Erweiterung zu aktivieren.",
+ "postUpdateTooltip": "Aktivieren Sie „{0}“, um die aktualisierte Erweiterung zu aktivieren.",
+ "postUpdateUpdateTooltip": "Aktualisieren Sie „{0}“, um die aktualisierte Erweiterung zu aktivieren.",
+ "pre-release": "Vorabversion",
+ "reload": "Fenster erneut laden",
+ "report issue": "Wenn dieses Problem weiterhin besteht, melden Sie es unter {0}",
+ "restart": "Änderung der Erweiterungsaktivierung",
+ "restart extensions": "Erweiterungen neustarten",
+ "selectVersion": "Herunterzuladende Version auswählen",
"singleDependentError": "Die Erweiterung \"{0}\" kann nicht separat deaktiviert werden. Die Erweiterung \"{1}\" ist davon abhängig. Möchten Sie all diese Erweiterungen deaktivieren?",
+ "singleDependentUninstallError": "Die Erweiterung „{0}“ kann nicht allein deinstalliert werden. Die Erweiterung „{1}“ hängt davon ab. Möchten Sie alle diese Erweiterungen deinstallieren?",
+ "sync extension": "Diese Erweiterung synchronisieren",
"twoDependentsError": "Die Erweiterung \"{0}\" kann nicht separat deaktiviert werden. Die Erweiterungen \"{1}\" und \"{2}\" sind davon abhängig. Möchten Sie all diese Erweiterungen deaktivieren?",
- "uninstallingExtension": "Die Erweiterung wird deinstalliert ..."
+ "twoDependentsUninstallError": "Die Erweiterung „{0}“ kann nicht allein deinstalliert werden. Die Erweiterungen „{1}“ und „{2}“ hängen davon ab. Möchten Sie alle diese Erweiterungen deinstallieren?",
+ "uninstallAll": "Alle deinstallieren",
+ "uninstallAllProfiles": "Deinstallieren (alle Profile)",
+ "uninstallApplicationScoped": "Erweiterung deinstallieren",
+ "uninstallApplicationScopedMessage": "Möchten Sie {0} aus allen Profilen deinstallieren?",
+ "uninstallDependents": "Erweiterung mit abhängigen Elementen deinstallieren",
+ "uninstallingExtension": "Erweiterung wird deinstalliert...",
+ "unknown": "Erweiterung kann nicht installiert werden",
+ "updatingExtensions": "Der Status der automatischen Aktualisierung von Erweiterungen wird aktualisiert."
},
"vs/workbench/contrib/extensions/browser/fileBasedRecommendations": {
- "dontShowAgainExtension": "Für Dateien mit der Dateiendung \".{0}\" nicht mehr anzeigen",
"fileBasedRecommendation": "Diese Erweiterung wird basierend auf den zuletzt von Ihnen geöffneten Dateien empfohlen.",
- "reallyRecommended": "Möchten Sie die empfohlenen Erweiterungen für \"{0}\" installieren?",
- "searchMarketplace": "Marketplace durchsuchen",
- "showLanguageExtensions": "Der Marketplace enthält Erweiterungen für {0}-Dateien."
+ "languageName": "die {0}-Sprache"
},
"vs/workbench/contrib/extensions/browser/webRecommendations": {
"reason": "Diese Erweiterung wird für {0} für das Web empfohlen."
@@ -6002,6 +9762,9 @@
"vs/workbench/contrib/extensions/browser/workspaceRecommendations": {
"workspaceRecommendation": "Diese Erweiterung wird von Benutzern des aktuellen Arbeitsbereichs empfohlen."
},
+ "vs/workbench/contrib/extensions/common/extensions": {
+ "extensions": "Erweiterungen"
+ },
"vs/workbench/contrib/extensions/common/extensionsFileTemplate": {
"app.extension.identifier.errorMessage": "Erwartetes Format: \"${publisher}.${name}\". Beispiel: \"vscode.csharp\".",
"app.extensions.json.recommendations": "Liste von Erweiterungen, die für Benutzer dieses Arbeitsbereichs zu empfehlen sind. Der Bezeichner einer Erweiterung lautet immer \"${herausgeber}.${name}\". Beispiel: \"vscode.csharp\".",
@@ -6009,6 +9772,7 @@
"app.extensions.json.unwantedRecommendations": "Liste von Erweiterungen, die für Benutzer dieses Arbeitsbereichs nicht empfohlen werden sollen. Der Bezeichner einer Erweiterung lautet immer \"${herausgeber}.${name}\". Beispiel: \"vscode.csharp\"."
},
"vs/workbench/contrib/extensions/common/extensionsInput": {
+ "extensionsEditorLabelIcon": "Symbol der Beschriftung des Erweiterungseditors.",
"extensionsInputName": "Erweiterung: {0}"
},
"vs/workbench/contrib/extensions/common/extensionsUtils": {
@@ -6016,38 +9780,57 @@
"no": "Nein",
"yes": "Ja"
},
+ "vs/workbench/contrib/extensions/common/installExtensionsTool": {
+ "installExtensionsTool.confirmationMessage": "Überprüfen Sie die vorgeschlagenen Erweiterungen, und klicken Sie für jede Erweiterung, die Sie hinzufügen möchten, auf die Schaltfläche **Installieren**. Nachdem Sie die Installation der ausgewählten Erweiterungen abgeschlossen haben, klicken Sie auf **Weiter**, um fortzufahren.",
+ "installExtensionsTool.confirmationTitle": "Erweiterungen installieren",
+ "installExtensionsTool.displayName": "Erweiterungen installieren",
+ "installExtensionsTool.noResultMessage": "Es wurden keine Erweiterungen installiert.",
+ "installExtensionsTool.resultMessage": "Die folgenden Erweiterungen sind installiert: {0}",
+ "installExtensionsTool.userDescription": "Tool zum Installieren von Erweiterungen"
+ },
+ "vs/workbench/contrib/extensions/common/reportExtensionIssueAction": {
+ "reportExtensionIssue": "Problem melden"
+ },
"vs/workbench/contrib/extensions/common/runtimeExtensionsInput": {
- "extensionsInputName": "Zurzeit ausgeführte Erweiterungen"
+ "extensionsInputName": "Zurzeit ausgeführte Erweiterungen",
+ "runtimeExtensionEditorLabelIcon": "Symbol der Beschriftung des Laufzeiterweiterungseditors."
},
- "vs/workbench/contrib/extensions/electron-sandbox/debugExtensionHostAction": {
- "cancel": "&&Abbrechen",
- "debugExtensionHost": "Debuggen des Erweiterungshosts starten",
+ "vs/workbench/contrib/extensions/common/searchExtensionsTool": {
+ "searchExtensionsTool.displayName": "Nach Erweiterungen suchen",
+ "searchExtensionsTool.noInput": "Geben Sie eine Kategorie, Stichwörter oder IDs für die Suche an.",
+ "searchExtensionsTool.userDescription": "Nach VS Code-Erweiterungen suchen"
+ },
+ "vs/workbench/contrib/extensions/electron-browser/debugExtensionHostAction": {
+ "debugExtensionHost": "Debuggen des Erweiterungshosts im neuen Fenster",
"debugExtensionHost.launch.name": "Erweiterungshost anfügen",
- "restart1": "Erweiterungen profilen",
- "restart2": "Zum Profilen von Erweiterungen ist ein Neustart erforderlich. Möchten Sie \"{0}\" jetzt neu starten?",
- "restart3": "&&Neu starten"
+ "debugExtensionHost.progress": "Debugger wird an Erweiterungshost angefügt",
+ "openDevToolsForExtensionHost": "Debuggen des Erweiterungshosts in Entwicklungstools",
+ "restart1": "Debugerweiterungen",
+ "restart2": "Zum Debuggen von Erweiterungen ist ein Neustart erforderlich. Möchten Sie \"{0}\" jetzt neu starten?",
+ "restart3": "&&Neu starten",
+ "selectExtensionHost": "Erweiterungshost auswählen"
},
- "vs/workbench/contrib/extensions/electron-sandbox/extensionProfileService": {
- "cancel": "&&Abbrechen",
+ "vs/workbench/contrib/extensions/electron-browser/extensionProfileService": {
"profilingExtensionHost": "Erweiterungshost für die Profilerstellung",
"profilingExtensionHostTime": "Erweiterungshost für Profilerstellung ({0} Sek.)",
- "restart1": "Erweiterungen profilen",
+ "restart1": "Profilerweiterungen",
"restart2": "Zum Profilen von Erweiterungen ist ein Neustart erforderlich. Möchten Sie \"{0}\" jetzt neu starten?",
"restart3": "&&Neu starten",
"selectAndStartDebug": "Klicken Sie, um die Profilerstellung zu beenden.",
"status.profiler": "Erweiterungsprofiler"
},
- "vs/workbench/contrib/extensions/electron-sandbox/extensions.contribution": {
- "runtimeExtension": "Ausgeführte Erweiterungen"
+ "vs/workbench/contrib/extensions/electron-browser/extensions.contribution": {
+ "runtimeExtension": "Zurzeit ausgeführte Erweiterungen"
},
- "vs/workbench/contrib/extensions/electron-sandbox/extensionsActions": {
+ "vs/workbench/contrib/extensions/electron-browser/extensionsActions": {
+ "cleanUpExtensionsFolder": "Ordner mit Erweiterungen bereinigen",
"openExtensionsFolder": "Ordner mit Erweiterungen öffnen"
},
- "vs/workbench/contrib/extensions/electron-sandbox/extensionsAutoProfiler": {
+ "vs/workbench/contrib/extensions/electron-browser/extensionsAutoProfiler": {
"show": "Erweiterungen anzeigen",
"unresponsive-exthost": "Die Erweiterung \"{0}\" hat zum Abschließen des letzten Vorgangs viel Zeit beansprucht und damit die Ausführung anderer Erweiterungen verhindert."
},
- "vs/workbench/contrib/extensions/electron-sandbox/extensionsSlowActions": {
+ "vs/workbench/contrib/extensions/electron-browser/extensionsSlowActions": {
"attach.msg": "Denken Sie daran, \"{0}\" an das gerade erstellte Problem anzufügen.",
"attach.msg2": "Denken Sie daran, \"{0}\" an ein bestehendes Leistungsproblem anzufügen.",
"attach.title": "Haben Sie das CPU-Profil angehängt?",
@@ -6055,30 +9838,28 @@
"cmd.reportOrShow": "Leistungsproblem",
"cmd.show": "Probleme anzeigen"
},
- "vs/workbench/contrib/extensions/electron-sandbox/reportExtensionIssueAction": {
- "reportExtensionIssue": "Problem melden"
- },
- "vs/workbench/contrib/extensions/electron-sandbox/runtimeExtensionsEditor": {
+ "vs/workbench/contrib/extensions/electron-browser/runtimeExtensionsEditor": {
"extensionHostProfileStart": "Erweiterungshostprofil starten",
+ "openExtensionHostProfile": "Erweiterungshostprofil öffnen",
"saveExtensionHostProfile": "Erweiterungshostprofil speichern",
"saveprofile.dialogTitle": "Erweiterungshostprofil speichern",
- "saveprofile.saveButton": "Speichern",
"stopExtensionHostProfileStart": "Erweiterungshostprofil beenden"
},
"vs/workbench/contrib/externalTerminal/browser/externalTerminal.contribution": {
- "scopedConsoleAction": "In Terminal öffnen",
+ "scopedConsoleAction.Integrated": "In integriertem Terminal öffnen",
"scopedConsoleAction.external": "In externem Terminal öffnen",
- "scopedConsoleAction.integrated": "In integriertem Terminal öffnen",
"scopedConsoleAction.wt": "In Windows-Terminal öffnen"
},
- "vs/workbench/contrib/externalTerminal/electron-sandbox/externalTerminal.contribution": {
+ "vs/workbench/contrib/externalTerminal/electron-browser/externalTerminal.contribution": {
"explorer.openInTerminalKind": "Bestimmt beim Öffnen einer Datei aus dem Explorer in einem Terminal, welche Art von Terminal gestartet wird.",
"globalConsoleAction": "Neues externes Terminal öffnen",
- "terminal.explorerKind.external": "Das konfigurierte externe Terminal verwenden",
- "terminal.explorerKind.integrated": "Das integrierte Terminal von Visual Studio Code verwenden",
+ "sourceControlRepositories.openInTerminalKind": "Bestimmt beim Öffnen eines Repositorys über die Ansicht \"Repositorys der Quellcodeverwaltung\" in einem Terminal, welche Art von Terminal gestartet wird.",
"terminal.external.linuxExec": "Passt an, welches Terminal unter Linux ausgeführt werden soll.",
"terminal.external.osxExec": "Passt an, welche Terminalanwendung unter macOS ausgeführt werden soll.",
"terminal.external.windowsExec": "Passt an, welches Terminal für Windows ausgeführt werden soll.",
+ "terminal.kind.both": "Sowohl die integrierte als auch externe Terminalaktionen anzeigen.",
+ "terminal.kind.external": "Die externe Terminalaktion anzeigen.",
+ "terminal.kind.integrated": "Die integrierte Terminalaktion anzeigen.",
"terminalConfigurationTitle": "Externes Terminal"
},
"vs/workbench/contrib/externalUriOpener/common/configuration": {
@@ -6120,16 +9901,17 @@
},
"vs/workbench/contrib/files/browser/editors/textFileEditor": {
"createFile": "Datei erstellen",
- "fileIsDirectoryError": "Die Datei ist ein Verzeichnis",
- "fileNotFoundError": "Die Datei wurde nicht gefunden.",
- "ok": "OK",
- "reveal": "In Explorer-Ansicht anzeigen",
- "textFileEditor": "Textdatei-Editor"
+ "fileIsDirectory": "Die Datei wird im Text-Editor nicht angezeigt, da es sich um ein Verzeichnis handelt.",
+ "fileTooLargeForHeapErrorWithSize": "Die Datei wird im Text-Editor nicht angezeigt, da sie sehr groß ist ({0}).",
+ "fileTooLargeForHeapErrorWithoutSize": "Die Datei wird im Text-Editor nicht angezeigt, da sie sehr groß ist.",
+ "openFolder": "Ordner öffnen",
+ "reveal": "Ordner einblenden",
+ "textFileEditor": "Textdatei-Editor",
+ "unavailableResourceErrorEditorText": "Der Editor konnte nicht geöffnet werden, da die Datei nicht gefunden wurde."
},
"vs/workbench/contrib/files/browser/editors/textFileSaveErrorHandler": {
"compareChanges": "Vergleichen",
"configure": "Konfigurieren",
- "discard": "Verwerfen",
"dontShowAgain": "Nicht mehr anzeigen",
"genericSaveError": "Fehler beim Speichern von \"{0}\": {1}",
"learnMore": "Weitere Informationen",
@@ -6142,6 +9924,7 @@
"readonlySaveErrorAdmin": "Fehler beim Speichern von \"{0}\": Die Datei ist schreibgeschützt. Wählen Sie \"Als Administrator überschreiben\" aus, um den Vorgang als Administrator zu wiederholen.",
"readonlySaveErrorSudo": "Fehler beim Speichern von \"{0}\": Die Datei ist schreibgeschützt. Wählen Sie \"Als sudo überschreiben\" aus, um den Vorgang als Superuser zu wiederholen.",
"retry": "Erneut versuchen",
+ "revert": "Zurücksetzen",
"saveConflictDiffLabel": "{0} (in Datei) ↔ {1} (in {2}) – Konflikt beim Speichern lösen",
"saveElevated": "Als Admin wiederholen...",
"saveElevatedSudo": "Als sudo wiederholen...",
@@ -6167,7 +9950,11 @@
"binFailed": "Fehler beim Löschen über den Papierkorb. Möchten Sie den Löschvorgang stattdessen dauerhaft ausführen?",
"clipboardComparisonLabel": "Zwischenablage ↔ {0}",
"closeGroup": "Gruppe schließen",
+ "compareFileWithMeta": "Öffnet eine Auswahl, um eine Datei auszuwählen, die sich mit dem aktiven Editor vergleichen soll.",
+ "compareNewUntitledTextFiles": "Neue unbenannte Textdateien vergleichen",
+ "compareNewUntitledTextFilesMeta": "Öffnet einen neuen Diff-Editor mit zwei unbenannten Dateien.",
"compareWithClipboard": "Aktive Datei mit Zwischenablage vergleichen",
+ "compareWithClipboardMeta": "Öffnet einen neuen Diff-Editor, um die aktive Datei mit dem Inhalt der Zwischenablage zu vergleichen.",
"confirmDeleteMessageFile": "Möchten Sie \"{0}\" wirklich endgültig löschen?",
"confirmDeleteMessageFilesAndDirectories": "Möchten Sie die folgenden {0} Dateien/Verzeichnisse und ihren Inhalt dauerhaft löschen?",
"confirmDeleteMessageFolder": "Möchten Sie \"{0}\" samt Inhalt wirklich endgültig löschen?",
@@ -6178,6 +9965,11 @@
"confirmMoveTrashMessageFolder": "Möchten Sie \"{0}\" samt Inhalt wirklich löschen?",
"confirmMoveTrashMessageMultiple": "Möchten Sie die folgenden {0} Dateien löschen?",
"confirmMoveTrashMessageMultipleDirectories": "Möchten Sie die folgenden {0} Verzeichnisse und ihren Inhalt löschen?",
+ "confirmMultiPasteNative": "Möchten Sie die folgenden {0}-Elemente wirklich einfügen?",
+ "confirmOverwrite": "Eine Datei oder ein Ordner mit dem Namen \"{0}\" ist bereits im Zielordner vorhanden. Möchten Sie diese bzw. diesen ersetzen?",
+ "confirmPasteNative": "Möchten Sie \"{0}\" wirklich einfügen?",
+ "continueButtonLabel": "Weiter",
+ "continueDetail": "Der schreibgeschützte Schutz wird außer Kraft gesetzt, wenn Sie den Vorgang fortsetzen.",
"copyBulkEdit": "{0} Dateien einfügen",
"copyFile": "Kopieren",
"copyFileBulkEdit": "Einfügen {0}",
@@ -6208,6 +10000,7 @@
"fileNameStartsWithSlashError": "Ein Datei- oder Ordnername darf nicht mit einem Schrägstrich beginnen.",
"fileNameWhitespaceWarning": "Datei oder Ordnername beginnt mit oder endet auf Leerzeichen.",
"focusFilesExplorer": "Fokus auf Datei-Explorer",
+ "focusFilesExplorerMetadata": "Verschiebt den Fokus auf den Datei-Explorer-Ansichtscontainer.",
"globalCompareFile": "Aktive Datei vergleichen mit...",
"invalidFileNameError": "Der Name **{0}** ist als Datei- oder Ordnername ungültig. Wählen Sie einen anderen Namen aus.",
"irreversible": "Diese Aktion kann nicht rückgängig gemacht werden.",
@@ -6215,21 +10008,33 @@
"moveFileBulkEdit": "\"{0}\" verschieben",
"movingBulkEdit": "{0} Dateien werden verschoben.",
"movingFileBulkEdit": "\"{0}\" wird verschoben.",
- "newFile": "Neue Datei",
- "newFolder": "Neuer Ordner",
- "openFileInNewWindow": "Aktive Datei in neuem Fenster öffnen",
+ "newFile": "Neue Datei…",
+ "newFolder": "Neuer Ordner...",
+ "openFileInEmptyWorkspace": "Aktiven Editor in einem neuen, leeren Arbeitsbereich öffnen",
+ "openFileInEmptyWorkspaceMetadata": "Öffnet den aktiven Editor in einem neuen Fenster ohne geöffnete Ordner.",
"openFileToShowInNewWindow.unsupportedschema": "Die aktive Editor muss eine öffenbare Ressource enthalten.",
+ "pasteButtonLabel": "&&Einfügen",
"pasteFile": "Einfügen",
- "rename": "Umbenennen",
+ "readonlyMessageFilesDelete": "Sie löschen Dateien, die als schreibgeschützt konfiguriert sind. Möchten Sie den Vorgang fortsetzen?",
+ "readonlyMessageFolderDelete": "Sie löschen eine Datei {0}, die als schreibgeschützt konfiguriert ist. Möchten Sie den Vorgang fortsetzen?",
+ "readonlyMessageFolderOneDelete": "Sie löschen einen Ordner {0}, der als schreibgeschützt konfiguriert ist. Möchten Sie den Vorgang fortsetzen?",
+ "rename": "Umbenennen...",
"renameBulkEdit": "\"{0}\" in \"{1}\" umbenennen",
"renamingBulkEdit": "{0} wird in {1} umbenannt.",
+ "replaceButtonLabel": "&&Ersetzen",
+ "resetActiveEditorReadonlyInSession": "Den aktiven Editor im schreibgeschützten Status in Sitzung zurücksetzen",
"restore": "Sie können diese Datei mit dem Befehl \"Rückgängig\" wiederherstellen.",
"restorePlural": "Sie können diese Dateien mit dem Befehl \"Rückgängig\" wiederherstellen.",
"retry": "Erneut versuchen",
"retryButtonLabel": "&&Wiederholen",
"saveAllInGroup": "Alle in Gruppe speichern",
+ "setActiveEditorReadonlyInSession": "Aktiven Editor in Sitzung auf schreibgeschützt festlegen",
+ "setActiveEditorWriteableInSession": "Aktiven Editor in Sitzung auf beschreibbar setzen",
"showInExplorer": "Aktive Datei in Explorer-Ansicht anzeigen",
+ "showInExplorerMetadata": "Zeigt die aktive Datei in der Explorer-Ansicht an und wählt sie aus.",
+ "toggleActiveEditorReadonlyInSession": "Den aktiven Editor im schreibgeschützten Status in Sitzung umschalten",
"toggleAutoSave": "Automatisches Speichern ein-/ausschalten",
+ "toggleAutoSaveDescription": "Hiermit wird die Möglichkeit zum automatischen Speichern von Dateien nach der Eingabe umgeschaltet.",
"trashFailed": "Fehler beim Löschen über den Papierkorb. Möchten Sie den Löschvorgang stattdessen dauerhaft ausführen?",
"undoBin": "Sie können diese Datei aus dem Papierkorb wiederherstellen.",
"undoBinFiles": "Sie können diese Dateien aus dem Papierkorb wiederherstellen.",
@@ -6244,6 +10049,7 @@
"closeOthers": "Andere schließen",
"closeSaved": "Gespeicherte schließen",
"compareActiveWithSaved": "Aktive Datei mit gespeicherter Datei vergleichen",
+ "compareActiveWithSavedMeta": "Öffnet einen neuen Diff-Editor, um die aktive Datei mit der Version auf dem Datenträger zu vergleichen.",
"compareSelected": "Auswahl vergleichen",
"compareSource": "Für Vergleich auswählen",
"compareWithSaved": "Mit gespeicherter Datei vergleichen",
@@ -6255,7 +10061,6 @@
"cut": "Ausschneiden",
"deleteFile": "Endgültig löschen",
"explorerOpenWith": "Öffnen mit...",
- "filesCategory": "Datei",
"miAutoSave": "A&&utomatisch speichern",
"miCloseEditor": "Editor s&&chließen",
"miGotoFile": "Gehe zu &&Datei...",
@@ -6265,8 +10070,10 @@
"miSaveAll": "A&&lles speichern",
"miSaveAs": "Speichern &&unter...",
"newFile": "Neue Textdatei",
+ "newFolderDescription": "Neuen Ordner oder neues Verzeichnis erstellen",
"openFile": "Datei öffnen...",
"openToSide": "An der Seite öffnen",
+ "reopenWith": "Editor erneut öffnen mit...",
"revealInSideBar": "In Explorer-Ansicht anzeigen",
"revert": "Datei wiederherstellen",
"revertLocalChanges": "Änderungen verwerfen und zu Dateiinhalten zurückkehren",
@@ -6275,15 +10082,16 @@
"saveFiles": "Alle Dateien speichern"
},
"vs/workbench/contrib/files/browser/fileCommands": {
- "discard": "Verwerfen",
"genericRevertError": "Fehler beim Zurücksetzen von '{0}': {1}",
"genericSaveError": "Fehler beim Speichern von \"{0}\": {1}",
"modifiedLabel": "{0} (in Datei) ↔ {1}",
"newFileCommand.saveLabel": "Datei erstellen",
- "retry": "Wiederholen"
+ "retry": "Wiederholen",
+ "revert": "Zurücksetzen",
+ "revertAll": "Alle zurücksetzen"
},
"vs/workbench/contrib/files/browser/fileConstants": {
- "newUntitledFile": "Neue unbenannte Datei",
+ "newUntitledFile": "Neue unbenannte Textdatei",
"removeFolderFromWorkspace": "Ordner aus dem Arbeitsbereich entfernen",
"save": "Speichern",
"saveAll": "Alle speichern",
@@ -6293,7 +10101,6 @@
"vs/workbench/contrib/files/browser/fileImportExport": {
"addFolder": "&&Ordner zum Arbeitsbereich hinzufügen",
"addFolders": "&&Ordner zum Arbeitsbereich hinzufügen",
- "cancel": "Abbrechen",
"chooseWhereToDownload": "Speicherort für Download auswählen",
"confirmManyOverwrites": "Die folgenden {0} Dateien und/oder Ordner sind im Zielordner bereits vorhanden. Möchten Sie sie ersetzen?",
"confirmOverwrite": "Eine Datei oder ein Ordner mit dem Namen \"{0}\" ist bereits im Zielordner vorhanden. Möchten Sie diese bzw. diesen ersetzen?",
@@ -6326,24 +10133,36 @@
},
"vs/workbench/contrib/files/browser/files.contribution": {
"askUser": "Weigert sich, zu speichern, und fordert zur manuellen Lösung des Speicherkonflikts auf.",
- "associations": "Konfigurieren Sie Dateizuordnungen zu Sprachen (beispielsweise `\"*.extension\": \"html\"`). Diese besitzen Vorrang vor den Standardzuordnungen der installierten Sprachen.",
+ "associations": "Konfigurieren Sie [Globmuster](https://aka.ms/vscode-glob-patterns) von Dateizuordnungen zu Sprachen (zum Beispiel \"*.extension\": \"html\"). Muster werden mit dem absoluten Pfad einer Datei abgeglichen, wenn sie einen Pfadseparator enthalten, andernfalls erfolgt ein Abgleich mit dem Namen der Datei. Diese haben Vorrang vor den Standardzuordnungen der installierten Sprachen.",
"autoGuessEncoding": "Wenn diese Option aktiviert ist, versucht der Editor beim Öffnen von Dateien, die Zeichensatzkodierung zu erraten. Diese Einstellung kann auch pro Sprache konfiguriert werden. Beachten Sie, dass diese Einstellung von der Textsuche nicht beachtet wird. Nur {0} wird beachtet.",
+ "autoOpenDroppedFile": "Steuert, ob der Explorer eine Datei automatisch öffnen soll, wenn sie im Explorer abgelegt wird.",
"autoReveal": "Steuert, ob der Explorer Dateien beim Öffnen automatisch anzeigen und auswählen soll.",
"autoReveal.focusNoScroll": "Die Dateien werden nicht in den sichtbaren Bereich verschoben, erhalten aber dennoch den Fokus.",
"autoReveal.off": "Die Dateien werden nicht angezeigt und ausgewählt.",
"autoReveal.on": "Die Dateien werden angezeigt und ausgewählt.",
+ "autoRevealExclude": "Konfigurieren Sie Pfade oder [Globmuster](https://aka.ms/vscode-glob-patterns), damit Dateien und Ordner beim Öffnen im Explorer nicht angezeigt und ausgewählt werden. Globmuster werden immer relativ zum Pfad des Arbeitsbereichsordners ausgewertet, es sei denn, es handelt sich um absolute Pfade.",
"autoSave": "Steuert [auto save](https://code.visualstudio.com/docs/editor/codebasics#_save-auto-save) von Editoren, die nicht gespeicherte Änderungen aufweisen.",
"autoSaveDelay": "Steuert den Zeitraum in Millisekunden, nach dem ein Editor mit nicht gespeicherten Änderungen automatisch gespeichert wird. Gilt nur, wenn „#files.autoSave“ auf „{0}“ festgelegt ist.",
+ "autoSaveWhenNoErrors": "Wenn diese Option aktiviert ist, wird das [automatische Speichern](https://code.visualstudio.com/docs/editor/codebasics#_save-auto-save) von Editoren auf Dateien beschränkt, in denen beim Auslösen des automatischen Speicherns keine Fehler gemeldet wurden. Gilt nur, wenn {0} aktiviert ist.",
+ "autoSaveWorkspaceFilesOnly": "Wenn diese Option aktiviert ist, wird das [automatische Speichern](https://code.visualstudio.com/docs/editor/codebasics#_save-auto-save) von Editoren auf Dateien beschränkt, die sich innerhalb des geöffneten Arbeitsbereichs befinden. Gilt nur, wenn {0} aktiviert ist.",
"binaryFileEditor": "Binärdatei-Editor",
- "compressSingleChildFolders": "Legt fest, ob der Explorer Ordner in einem kompakten Format rendern soll. In einem solchen Format werden einzelne untergeordnete Ordner in einem kombinierten Strukturelement komprimiert. Das ist beispielsweise für Java-Paketstrukturen nützlich.",
+ "candidateGuessEncodings": "Liste der Zeichensatzcodierungen, die der Editor in der Reihenfolge erraten soll, in der sie aufgelistet sind. Falls sie nicht bestimmt werden kann, wird {0} berücksichtigt.",
+ "compressSingleChildFolders": "Steuert, ob der Explorer Ordner in einem kompakten Format rendern soll. In einem solchen Format werden einzelne untergeordnete Ordner in einem kombinierten Strukturelement komprimiert. Das ist beispielsweise für Java-Paketstrukturen nützlich.",
"confirmDelete": "Steuert, ob der Explorer eine Bestätigung einfordern soll, wenn Sie eine Datei über den Papierkorb löschen.",
"confirmDragAndDrop": "Steuert, ob der Explorer eine Bestätigung einfordert, um Dateien und Ordner mithilfe von Drag & Drop zu verschieben.",
+ "confirmPasteNative": "Steuert, ob der Explorer beim Einfügen nativer Dateien und Ordner eine Bestätigung anfordern soll.",
"confirmUndo": "Steuert, ob der Explorer beim Rückgängigmachen eine Bestätigung anfordern soll.",
+ "copyPathSeparator": "Das Pfadtrennzeichen, das beim Kopieren von Dateipfaden verwendet wird.",
+ "copyPathSeparator.auto": "Verwendet ein spezifisches Betriebssystem-Pfadtrennzeichen.",
+ "copyPathSeparator.backslash": "Verwenden Sie den umgekehrten Schrägstrich als Pfadtrennzeichen.",
+ "copyPathSeparator.slash": "Verwenden Sie den Schrägstrich als Pfadtrennzeichen.",
"copyRelativePathSeparator": "Das Pfadtrennzeichen, dass beim Kopieren von relativen Dateipfaden verwendet wird.",
"copyRelativePathSeparator.auto": "Verwendet ein spezifisches Betriebssystem-Pfadtrennzeichen.",
"copyRelativePathSeparator.backslash": "Verwenden Sie den umgekehrten Schrägstrich als Pfadtrennzeichen.",
"copyRelativePathSeparator.slash": "Verwenden Sie den Schrägstrich als Pfadtrennzeichen.",
"defaultLanguage": "Der Standardsprachbezeichner, der neuen Dateien zugewiesen ist. Wenn \"${activeEditorLanguage}\" konfiguriert ist, wird ggf. der Sprachbezeichner des aktuell aktiven Text-Editors verwendet.",
+ "defaultPathErrorMessage": "Der Standardpfad für Dateidialogfelder muss ein absoluter Pfad sein (z. B. C:\\\\myFolder oder /myFolder).",
+ "disabled": "Deaktiviert die inkrementelle Benennung. Wenn zwei Dateien mit demselben Namen vorhanden sind, erhalten Sie eine Eingabeaufforderung zum Überschreiben der vorhandenen Datei.",
"enableDragAndDrop": "Steuert, ob der Explorer das Verschieben von Dateien und Ordnern per Drag & Drop zulässt. Diese Einstellung wirkt sich nur auf Drag & Drop-Vorgänge innerhalb des Explorers aus.",
"enableUndo": "Steuert, ob der Explorer das Rückgängigmachen von Datei- und Ordnervorgängen unterstützen soll.",
"enableUndo.default": "Der Explorer sendet vor destruktiven Vorgängen zum Rückgängigmachen eine Eingabeaufforderung.",
@@ -6355,18 +10174,21 @@
"eol.LF": "LF",
"eol.auto": "Verwendet betriebssystemspezifische Zeilenendzeichen.",
"everything": "Hiermit wird das gesamte Dokument formatiert.",
- "exclude": "Konfigurieren Sie [Globmuster](https://code.visualstudio.com/docs/editor/codebasics#_advanced-search-options) zum Ausschließen von Dateien und Ordnern. Beispielsweise entscheidet der Datei-Explorer basierend auf dieser Einstellung, welche Dateien und Ordner angezeigt oder ausgeblendet werden sollen. Informationen zum Definieren von suchspezifischen Ausschlüssen finden Sie in der Einstellung \"#search.exclude#\".",
+ "exclude": "Konfigurieren Sie [Globmuster](https://aka.ms/vscode-glob-patterns) zum Ausschließen von Dateien und Ordnern. Beispielsweise entscheidet der Datei-Explorer basierend auf dieser Einstellung, welche Dateien und Ordner angezeigt oder ausgeblendet werden sollen. Informationen zum Definieren von suchspezifischen Ausschlüssen finden Sie in der Einstellung `#search.exclude#`. Informationen zum Ignorieren von Dateien basierend auf Ihrem `.gitignore` finden Sie in der Einstellung `#explorer.excludeGitIgnore#`.",
"excludeGitignore": "Steuert, ob Einträge in .gitignore geparst und vom Explorer ausgeschlossen werden sollen. Ähnlich wie {0}.",
- "expandSingleFolderWorkspaces": "Steuert, ob der Explorer bei der Initialisierung Mehrstamm-Arbeitsbereiche mit nur einem Ordner erweitern soll",
+ "expandSingleFolderWorkspaces": "Steuert, ob der Explorer bei der Initialisierung Mehrstamm-Arbeitsbereiche mit nur einem Ordner erweitern soll.",
+ "explorer.autoRevealExclude.boolean": "Das Globmuster, mit dem Dateipfade verglichen werden sollen. Legen Sie diesen Wert auf \"true\" oder \"false\" fest, um das Muster zu aktivieren bzw. zu deaktivieren.",
+ "explorer.autoRevealExclude.when": "Zusätzliche Überprüfung der gleichgeordneten Elemente einer entsprechenden Datei. Verwenden Sie \"$(basename)\" als Variable für den entsprechenden Dateinamen.",
"explorer.decorations.badges": "Steuert, ob Dateidekorationen Badges verwenden.",
"explorer.decorations.colors": "Steuert, ob Dateidekorationen Farben verwenden.",
- "explorer.incrementalNaming": "Steuert, welche Benennungsstrategie verwendet werden soll, wenn beim Einfügen eines doppelten Elements im Explorer ein neuer Name vergeben wird.",
+ "explorer.incrementalNaming": "Steuert, welche Benennungsstrategie verwendet werden soll, wenn einem duplizierten Explorer-Element beim Einfügen ein neuer Name gegeben wird.",
"explorerConfigurationTitle": "Datei-Explorer",
"falseDescription": "Deaktiviert das Muster.",
+ "fileDialogDefaultPath": "Standardpfad für Dateidialogfelder, der den Basispfad des Benutzers überschreibt. Wird nur verwendet, wenn kein kontextspezifischer Pfad vorhanden ist, z. B. die zuletzt geöffnete Datei oder der zuletzt geöffnete Ordner.",
"fileNesting.description": "Jedes Schlüsselmuster kann ein einzelnes `*`-Zeichen enthalten, das mit einer beliebigen Zeichenfolge übereinstimmt.",
"fileNestingEnabled": "Steuert, ob die Dateischachtelung im Explorer aktiviert ist. Die Dateischachtelung ermöglicht die visuelle Gruppierung verwandter Dateien in einem Verzeichnis unter einer einzelnen übergeordneten Datei.",
"fileNestingExpand": "Steuert, ob Dateischachteln automatisch erweitert werden. {0} muss gesetzt sein, damit dies wirksam wird.",
- "fileNestingPatterns": "Steuert die Schachtelung von Dateien im Explorer. Jeder „__Item__“-Wert stellt ein übergeordnetes Muster dar und kann ein einzelnes „*“-Zeichen enthalten, das mit einer beliebigen Zeichenfolge übereinstimmt. Jeder „__Value__“-Wert stellt eine durch Trennzeichen getrennte Liste der untergeordneten Muster dar, die unter einem bestimmten übergeordneten Element geschachtelt angezeigt werden sollen. Untergeordnete Muster können mehrere spezielle Token enthalten:\r\n– „${capture}“: Entspricht dem aufgelösten Wert von „*“ aus dem übergeordneten Muster\r\n– „${basename}“: Entspricht dem Basisnamen der übergeordneten Datei, „file“ in „file.ts“\r\n– „${extname}“: Entspricht der Erweiterung der übergeordneten Datei, „ts“ in „file.ts“\r\n– „${dirname}“: Entspricht dem Verzeichnisnamen der übergeordneten Datei, „src“ in „src/file.ts“\r\n– „*“: Entspricht einer beliebigen Zeichenfolge und darf nur einmal pro untergeordnetem Muster verwendet werden",
+ "fileNestingPatterns": "Steuert die Schachtelung von Dateien im Explorer. {0} muss festgelegt werden, damit dies wirksam wird. Jeder „__Item__“-Wert stellt ein übergeordnetes Muster dar und kann ein einzelnes „*“-Zeichen enthalten, das mit einer beliebigen Zeichenfolge übereinstimmt. Jeder „__Value__“-Wert stellt eine durch Trennzeichen getrennte Liste der untergeordneten Muster dar, die unter einem bestimmten übergeordneten Element geschachtelt angezeigt werden sollen. Untergeordnete Muster können mehrere spezielle Token enthalten:\r\n– „${capture}“: Entspricht dem aufgelösten Wert von „*“ aus dem übergeordneten Muster\r\n– „${basename}“: Entspricht dem Basisnamen der übergeordneten Datei, „file“ in „file.ts“ \r\n– „${extname}“: Entspricht der Erweiterung der übergeordneten Datei, „ts“ in „file.ts“ \r\n– „${dirname}“: Entspricht dem Verzeichnisnamen der übergeordneten Datei, „src“ in „src/file.ts“ \r\n– „*“: Entspricht einer beliebigen Zeichenfolge und darf nur einmal pro untergeordnetem Muster verwendet werden",
"files.autoSave.afterDelay": "Ein Editor mit nicht gespeicherten Änderungen wird automatisch nach Ablauf des in der Einstellung „#files.autoSaveDelay#“ festgelegten Zeitraums gespeichert.",
"files.autoSave.off": "Ein Editor mit Änderungen wird nie automatisch gespeichert.",
"files.autoSave.onFocusChange": "Ein Editor mit Änderungen wird automatisch gespeichert, wenn der Editor nicht mehr im Fokus ist.",
@@ -6376,24 +10198,26 @@
"files.participants.timeout": "Timeout in Millisekunden, nachdem Dateiteilnehmer zum Erstellen, Umbenennen und Löschen abgebrochen werden. Verwenden Sie `0`, um Teilnehmer zu deaktivieren.",
"files.restoreUndoStack": "Hiermit wird der Rollbackstapel wiederhergestellt, wenn eine Datei erneut geöffnet wird.",
"files.saveConflictResolution": "Ein Speicherkonflikt kann auftreten, wenn eine Datei auf einem Datenträger gespeichert wird und während des Speicherns von einem anderen Programm geändert wurde. Um Datenverlust zu vermeiden, wird der Benutzer aufgefordert, die Änderungen im Editor mit der Version auf dem Datenträger zu vergleichen. Diese Einstellung sollte nur geändert werden, wenn häufig Probleme mit Speicherkonflikten auftreten. Beim Ändern der Einstellungen sollten Sie sehr vorsichtig vorgehen, da es sonst zu Datenverlusten kommen kann.",
- "files.simpleDialog.enable": "Aktiviert das einfache Dateidialogfeld. Ist diese Option aktiviert, wird das Systemdateidialogfeld durch das einfache Dateidialogfeld ersetzt.",
+ "files.simpleDialog.enable": "Aktiviert das einfache Dateidialogfeld zum Öffnen und Speichern von Dateien und Ordnern. Das Dialogfeld \"Einfache Datei\" ersetzt das Dialogfeld \"Systemdatei\", wenn es aktiviert ist.",
"filesConfigurationTitle": "Dateien",
- "formatOnSave": "Hiermit wird eine Datei beim Speichern formatiert. Dafür muss ein Formatierungsprogramm verfügbar sein, die Datei darf nicht nach Verzögerung gespeichert werden, und der Editor darf nicht heruntergefahren werden.",
+ "filesReadonlyExclude": "Konfigurieren Sie Pfade oder [Globmuster](https://aka.ms/vscode-glob-patterns), um sie davon auszuschließen, als schreibgeschützt markiert zu werden, wenn sie als Ergebnis der Einstellung `#files.readonlyInclude#` übereinstimmen. Globmuster werden immer relativ zum Pfad des Arbeitsbereichsordners ausgewertet, es sei denn, es handelt sich um absolute Pfade. Dateien von schreibgeschützten Dateisystemanbietern sind unabhängig von dieser Einstellung immer schreibgeschützt.",
+ "filesReadonlyFromPermissions": "Markiert Dateien als schreibgeschützt, wenn ihre Dateiberechtigungen dies angeben. Dies kann über die Einstellungen `#files.readonlyInclude#` und `#files.readonlyExclude#` überschrieben werden.",
+ "filesReadonlyInclude": "Konfigurieren Sie Pfade oder [Globmuster](https://aka.ms/vscode-glob-patterns), um sie als schreibgeschützt zu markieren. Globmuster werden immer relativ zum Pfad des Arbeitsbereichsordners ausgewertet, es sei denn, es handelt sich um absolute Pfade. Sie können übereinstimmende Pfade über die Einstellung `#files.readonlyExclude#` ausschließen. Dateien von schreibgeschützten Dateisystemanbietern sind unabhängig von dieser Einstellung immer schreibgeschützt.",
+ "formatOnSave": "Formatieren Sie eine Datei beim Speichern. Ein Formatierer muss verfügbar sein, und der Editor darf nicht heruntergefahren werden. Wenn {0} auf „afterDelay“ festgelegt ist, wird die Datei nur formatiert, wenn sie explizit gespeichert wird.",
"formatOnSaveMode": "Steuert, ob mit der Option \"Format wird gespeichert\" die gesamte Datei oder nur Änderungen formatiert werden. Gilt nur, wenn \"#editor.formatOnSave#\" aktiviert ist.",
- "hotExit": "Steuert, ob nicht gespeicherten Dateien zwischen den Sitzungen beibehalten werden, die Aufforderung zum Speichern wird beim Beenden des Editors übersprungen.",
+ "hotExit": "[Hot Exit](https://aka.ms/vscode-hot-exit) steuert, ob nicht gespeicherten Dateien zwischen den Sitzungen beibehalten werden, die Aufforderung zum Speichern wird beim Beenden des Editors übersprungen.",
"hotExit.off": "Hot Exit deaktivieren. Beim Versuch, ein Fenster mit Editoren mit nicht gespeicherten Änderungen zu schließen, wird eine Eingabeaufforderung angezeigt.",
"hotExit.onExit": "Hot Exit wird ausgelöst, wenn das letzte Fenster unter Windows/Linux geschlossen oder der Befehl \"workbench.action.quit\" ausgelöst wird (per Befehlspalette, Tastenzuordnung oder Menü). Alle Fenster ohne geöffnete Ordner werden beim nächsten Start wiederhergestellt. Über \"Datei > Zuletzt geöffnet > Mehr...\" können Sie eine Liste der zuvor geöffneten Fenstern mit nicht gespeicherten Dateien aufrufen.",
"hotExit.onExitAndWindowClose": "Hot Exit wird ausgelöst, wenn das letzte Fenster unter Windows/Linux geschlossen oder der Befehl \"workbench.action.quit\" ausgelöst wird (per Befehlspalette, Tastenzuordnung oder Menü). Die Auslösung erfolgt auch dann, wenn ein Fenster mit einem geöffneten Ordner geschlossen wird (unabhängig davon, ob es sich um das letzte Fenster handelt). Alle Fenster ohne geöffnete Ordner werden beim nächsten Start wiederhergestellt. Über \"Datei > Zuletzt geöffnet > Mehr...\" können Sie eine Liste der zuvor geöffneten Fenstern mit nicht gespeicherten Dateien aufrufen.",
"hotExit.onExitAndWindowCloseBrowser": "Ein Hot Exit wird ausgelöst, wenn der Browser beendet oder das Fenster bzw. die Registerkarte geschlossen wird.",
"insertFinalNewline": "Bei Aktivierung wird beim Speichern einer Datei eine abschließende neue Zeile am Dateiende eingefügt.",
- "maxMemoryForLargeFilesMB": "Steuert den für Visual Studio Code verfügbaren Arbeitsspeicher nach einem Neustart bei dem Versuch, große Dateien zu öffnen. Dies hat die gleiche Auswirkung wie das Festlegen von `--max-memory=NEWSIZE` über die Befehlszeile.",
"modification": "Hiermit werden Änderungen formatiert (Quellcodeverwaltung erforderlich).",
"modificationIfAvailable": "Es wird versucht, nur Änderungen zu formatieren (erfordert die Quellcodeverwaltung). Wenn die Quellcodeverwaltung nicht verwendet werden kann, wird die gesamte Datei formatiert.",
"openEditorsSortOrder": "Steuert die Sortierreihenfolge der Editoren im Bereich \"Geöffnete Editoren\".",
- "openEditorsVisible": "Die maximale Anzahl von Editoren, die im Bereich \"Editoren öffnen\" angezeigt werden. Wenn Sie dies auf 0 setzen, wird der Bereich \"Editoren öffnen\" ausgeblendet.",
- "openEditorsVisibleMin": "Die minimale Anzahl von Editorslots, die im Bereich \"Editoren öffnen\" angezeigt werden. Wenn der Wert auf 0 gesetzt ist, wird die Größe des Bereichs \"Editoren öffnen\" basierend auf der Anzahl der Editoren dynamisch angepasst.",
+ "openEditorsVisible": "Die anfängliche maximale Anzahl von Editoren, die im Bereich \"Editoren öffnen\" angezeigt wird. Wenn Sie diesen Grenzwert überschreiten, wird eine Bildlaufleiste angezeigt, und die Größe des Bereichs kann so geändert werden, dass weitere Elemente angezeigt werden.",
+ "openEditorsVisibleMin": "Die Mindestanzahl von Editor-Slots, die im Bereich \"Editoren öffnen\" vorab zugewiesen wurden. Wenn der Wert auf 0 festgelegt ist, wird die Größe des Bereichs \"Editoren öffnen\" basierend auf der Anzahl der Editoren dynamisch geändert.",
"overwriteFileOnDisk": "Löst den Speicherkonflikt, indem die Datei auf dem Datenträger mit den Änderungen im Editor überschrieben wird.",
- "simple": "Hängt das Wort \"Kopie\" am Ende des doppelten Namens an, eventuell gefolgt von einer Nummer.",
+ "simple": "Hängt das Wort „Kopie“ am Ende des doppelten Namens an, eventuell gefolgt von einer Nummer.",
"smart": "Fügt am Ende des doppelt vorhandenen Namens eine Nummer hinzu. Wenn bereits eine Nummer im Namen enthalten ist, wird versucht, diese Nummer zu erhöhen.",
"sortOrder": "Steuert die eigenschaftsbasierte Sortierung von Dateien und Ordnern im Explorer. Wenn „#explorer.fileNesting.enabled#“ aktiviert ist, wird auch die Sortierung von verschachtelten Dateien gesteuert.",
"sortOrder.alphabetical": "Editoren werden in jeder Editorgruppe alphabetisch nach Registerkartennamen sortiert.",
@@ -6403,35 +10227,40 @@
"sortOrder.foldersNestsFiles": "Dateien und Ordner werden nach ihren Namen sortiert. Ordner werden vor Dateien angezeigt. Dateien mit geschachtelten untergeordneten Elementen werden vor anderen Dateien angezeigt.",
"sortOrder.fullPath": "Editoren werden alphabetisch nach vollständigem Pfad innerhalb jeder Editorgruppe sortiert.",
"sortOrder.mixed": "Dateien und Ordner werden nach ihren Namen sortiert. Dateien und Ordner werden vermischt angezeigt.",
- "sortOrder.modified": "Dateien und Ordner werden nach dem Datum der letzten Änderung in absteigender Reihenfolge sortiert. Ordner werden vor Dateien angezeigt.",
+ "sortOrder.modified": "Dateien und Ordner werden nach dem letzten Änderungsdatum in absteigender Reihenfolge sortiert. Ordner werden vor Dateien angezeigt.",
"sortOrder.type": "Dateien und Ordner werden nach Erweiterungstyp gruppiert und nach deren Namen sortiert. Ordner werden vor Dateien angezeigt.",
"sortOrderLexicographicOptions": "Steuert die lexikografische Sortierung von Datei- und Ordnernamen im Explorer.",
"sortOrderLexicographicOptions.default": "Namen mit Groß- und Kleinbuchstaben werden zusammen gemischt.",
"sortOrderLexicographicOptions.lower": "Namen mit Kleinbuchstaben werden vor Großbuchstaben gruppiert.",
"sortOrderLexicographicOptions.unicode": "Namen werden in Unicode-Reihenfolge sortiert.",
"sortOrderLexicographicOptions.upper": "Namen mit Großbuchstaben werden vor Kleinbuchstaben gruppiert.",
+ "sortOrderReverse": "Steuert, ob die Sortierreihenfolge für Dateien und Ordner umgekehrt werden soll.",
+ "textFileEditor": "Textdatei-Editor",
"trimFinalNewlines": "Wenn diese Option aktiviert ist, werden beim Speichern alle neuen Zeilen nach der abschließenden neuen Zeile am Dateiende gekürzt.",
"trimTrailingWhitespace": "Bei Aktivierung werden nachgestellte Leerzeichen beim Speichern einer Datei gekürzt.",
+ "trimTrailingWhitespaceInRegexAndStrings": "Wenn diese Option aktiviert ist, werden nachfolgende Leerzeichen aus mehrzeiligen Zeichenfolgen entfernt, und reguläre Ausdrücke werden beim Speichern oder beim Ausführen von „editor.action.trimTrailingWhitespace“ entfernt. Dies kann dazu führen, dass Leerzeichen nicht aus Zeilen gekürzt werden, wenn keine aktuellen Tokeninformationen vorhanden sind.",
"trueDescription": "Aktiviert das Muster.",
"useTrash": "Verschiebt Dateien/Ordner beim Löschen in den Papierkorb des Betriebssystems. Wenn diese Option deaktiviert wird, werden Dateien/Ordner endgültig gelöscht.",
- "watcherExclude": "Konfigurieren Sie Pfade oder Globmuster, die von der Dateiprüfung ausgeschlossen werden sollen. Relative Pfade (z. B. `build/output` oder `*.js`) werden mithilfe des aktuell geöffneten Arbeitsbereichs in einen absoluten Pfad aufgelöst. Komplexe Globmuster müssen in absoluten Pfaden übereinstimmen (z. B. Präfix mit `**/` oder vollständiger Pfad und Suffix mit `/**`, um Dateien innerhalb eines Pfads abzugleichen), um ordnungsgemäß übereinstimmen zu können (z. B. `**/build/output/**` oder `/Users/name/workspaces/project/build/output/**`). Wenn der Dateiüberwachungsprozess viel CPU beansprucht, stellen Sie sicher, dass Sie große Ordner ausschließen, die nicht so wichtig sind (wie z. B. Buildausgabeordner).",
+ "watcherExclude": "Konfigurieren Sie Pfade oder [Globmuster](https://aka.ms/vscode-glob-patterns), die von der Dateiprüfung ausgeschlossen werden sollen. Pfade können entweder relativ zum überwachten Ordner oder absolut sein. Globmuster werden relativ zum überwachten Ordner abgeglichen. Wenn der Dateiüberwachungsprozess viel CPU beansprucht, stellen Sie sicher, dass Sie große Ordner ausschließen, die weniger interessant sind (z. B. Buildausgabeordner).",
"watcherInclude": "Konfigurieren Sie zusätzliche Pfade, um Änderungen im Arbeitsbereich zu überwachen. Standardmäßig werden alle Arbeitsbereichsordner rekursiv überwacht, mit Ausnahme von Ordnern, die symbolische Verknüpfungen sind. Sie können explizit absolute oder relative Pfade hinzufügen, um das Überwachen von Ordnern zu unterstützen, die symbolische Verknüpfungen sind. Relative Pfade werden mithilfe des aktuell geöffneten Arbeitsbereichs in einen absoluten Pfad aufgelöst."
},
"vs/workbench/contrib/files/browser/views/emptyView": {
"noWorkspace": "Es ist kein Ordner geöffnet."
},
"vs/workbench/contrib/files/browser/views/explorerDecorationsProvider": {
- "canNotResolve": "Arbeitsbereichsordner kann nicht aufgelöst werden",
+ "canNotResolve": "Der Arbeitsbereichsordner ({0}) kann nicht aufgelöst werden.",
"label": "Explorer",
"symbolicLlink": "Symbolischer Link",
"unknown": "Unbekannter Dateityp"
},
"vs/workbench/contrib/files/browser/views/explorerView": {
"collapseExplorerFolders": "Ordner im Explorer zuklappen",
- "createNewFile": "Neue Datei",
- "createNewFolder": "Neuer Ordner",
+ "collapseExplorerFoldersMetadata": "Faltet alle Ordner im Explorer.",
+ "createNewFile": "Neue Datei…",
+ "createNewFolder": "Neuer Ordner...",
"explorerSection": "Explorer-Abschnitt: {0}",
- "refreshExplorer": "Explorer aktualisieren"
+ "refreshExplorer": "Explorer aktualisieren",
+ "refreshExplorerMetadata": "Erzwingt eine Aktualisierung des Explorers."
},
"vs/workbench/contrib/files/browser/views/explorerViewer": {
"confirmMove": "Sind Sie sicher, dass Sie \"{0}\" in \"{1}\" verschieben möchten?",
@@ -6441,12 +10270,14 @@
"copy": "\"{0}\" kopieren",
"copying": "\"{0}\" wird kopiert",
"doNotAskAgain": "Nicht erneut fragen",
+ "explorerHighlightFolderBadgeTitle": "Verzeichnis enthält {0} Übereinstimmungen",
"fileInputAriaLabel": "Geben Sie den Dateinamen ein. Drücken Sie zur Bestätigung die EINGABETASTE oder ESC, um den Vorgang abzubrechen.",
"move": "\"{0}\" verschieben",
"moveButtonLabel": "&&Verschieben",
"moving": "\"{0}\" wird verschoben",
"numberOfFiles": "{0}-Dateien",
"numberOfFolders": "{0} Ordner",
+ "searchMaxResultsWarning": "Das Resultset enthält nur eine Teilmenge aller Übereinstimmungen. Verfeinern Sie Ihre Suche, um die Ergebnisse einzugrenzen.",
"treeAriaLabel": "Datei-Explorer"
},
"vs/workbench/contrib/files/browser/views/openEditorsView": {
@@ -6454,11 +10285,11 @@
"flipLayout": "Zwischen horizontalem und vertikalem Editor-Layout umschalten",
"miToggleEditorLayout": "Layout &&spiegeln",
"miToggleEditorLayoutWithoutMnemonic": "Layout kippen",
- "newUntitledFile": "Neue unbenannte Datei",
+ "newUntitledFile": "Neue unbenannte Textdatei",
"openEditors": "Geöffnete Editoren"
},
"vs/workbench/contrib/files/browser/workspaceWatcher": {
- "enospcError": "Dateiänderungen können in einem Arbeitsbereichsordner dieser Größe nicht überwacht werden. Befolgen Sie die Anweisungen auf der verlinkten Seite, um das Problem zu beheben.",
+ "enospcError": "Dateiänderungen können nicht überwacht werden. Befolgen Sie die Anweisungen auf der verlinkten Seite, um das Problem zu beheben.",
"eshutdownError": "Das Überwachungselement für Dateiänderungen wurde unerwartet beendet. Ein erneutes Laden des Fensters kann das Überwachungselement möglicherweise erneut aktivieren, es sei denn, der Arbeitsbereich kann nicht auf Dateiänderungen überwacht werden.",
"learnMore": "Anweisungen",
"reload": "Neu laden"
@@ -6468,58 +10299,59 @@
"dirtyFiles": "{0} ungespeicherte Dateien"
},
"vs/workbench/contrib/files/common/files": {
+ "explorerFindProviderActive": "True, wenn die Explorer-Struktur den Explorer-Suchanbieter verwendet.",
"explorerResourceCut": "TRUE, wenn ein Element im EXPLORER zum Ausschneiden und Einfügen ausgeschnitten wurde.",
"explorerResourceIsFolder": "TRUE, wenn das Element, das im EXPLORER den Fokus aufweist, ein Ordner ist.",
"explorerResourceIsRoot": "TRUE, wenn das Element, das im EXPLORER den Fokus aufweist, ein Stammordner ist.",
"explorerResourceMoveableToTrash": "TRUE, wenn das Element, das im EXPLORER den Fokus aufweist, in den Papierkorb verschoben werden kann.",
- "explorerResourceReadonly": "TRUE, wenn das Element, das im EXPLORER den Fokus aufweist, schreibgeschützt ist.",
+ "explorerResourceParentReadonly": "Wahr, wenn das fokussierte Element im übergeordneten EXPLORER-Element schreibgeschützt ist.",
+ "explorerResourceReadonly": "Wahr, wenn das fokussierte Element im EXPLORER schreibgeschützt ist.",
"explorerViewletCompressedFirstFocus": "TRUE, wenn der Fokus innerhalb des ersten Teils eines komprimierten Elements in der Ansicht EXPLORER liegt.",
"explorerViewletCompressedFocus": "TRUE, wenn das Element, das in der Ansicht EXPLORER den Fokus aufweist, ein komprimiertes Element ist.",
"explorerViewletCompressedLastFocus": "TRUE, wenn der Fokus innerhalb des letzten Teils eines komprimierten Elements in der Ansicht EXPLORER liegt.",
"explorerViewletFocus": "TRUE, wenn der Fokus innerhalb des EXPLORER-Viewlets liegt.",
"explorerViewletVisible": "TRUE, wenn das EXPLORER-Viewlet sichtbar ist.",
"filesExplorerFocus": "TRUE, wenn der Fokus innerhalb der Ansicht EXPLORER liegt.",
+ "foldersViewVisible": "Wahr, wenn die Ordneransicht (die Dateistruktur im Explorer-Ansichtscontainer) sichtbar ist.",
"openEditorsFocus": "TRUE, wenn der Fokus innerhalb der Ansicht OPEN EDITORS liegt.",
- "openEditorsVisible": "TRUE, wenn die Ansicht OPEN EDITORS sichtbar ist.",
"viewHasSomeCollapsibleItem": "True, wenn ein Arbeitsbereich in der EXPLORER-Ansicht über ein reduzierbares untergeordnetes Stammelement verfügt."
},
- "vs/workbench/contrib/files/electron-sandbox/fileActions.contribution": {
+ "vs/workbench/contrib/files/electron-browser/fileActions.contribution": {
"filesCategory": "Datei",
- "openContainer": "Enthaltenden Ordner öffnen",
+ "miShare": "Freigeben",
+ "openContainer": "Übergeordneten Ordner öffnen",
"revealInMac": "Im Finder anzeigen",
"revealInWindows": "Im Datei-Explorer anzeigen"
},
- "vs/workbench/contrib/files/electron-sandbox/files.contribution": {
- "textFileEditor": "Textdatei-Editor"
- },
- "vs/workbench/contrib/files/electron-sandbox/textFileEditor": {
- "configureMemoryLimit": "Arbeitsspeicherbeschränkung konfigurieren",
- "fileTooLargeForHeapError": "Wenn Sie eine Datei dieser Größe öffnen möchten, müssen Sie einen Neustart durchführen und zulassen, dass {0} mehr Arbeitsspeicher verwendet.",
- "relaunchWithIncreasedMemoryLimit": "Mit {0} MB neu starten"
+ "vs/workbench/contrib/folding/browser/folding.contribution": {
+ "formatter.default": "Definiert einen standardmäßigen Faltungsbereichsanbieter, der Vorrang vor allen anderen Faltungsbereichsanbietern hat. Muss der Bezeichner einer Erweiterung sein, die einen Faltungsbereichsanbieter beiträgt.",
+ "null": "Alle",
+ "nullFormatterDescription": "Alle aktiven Faltungsbereichsanbieter"
},
"vs/workbench/contrib/format/browser/formatActionsMultiple": {
- "cancel": "Abbrechen",
"config": "Standardformatierer konfigurieren ...",
"config.bad": "Die Erweiterung \"{0}\" ist als Formatierer konfiguriert, aber nicht verfügbar. Wählen Sie einen anderen Standardformatierer aus.",
"config.needed": "Es gibt mehrere Formatierer für {0}-Dateien. Einer davon sollte als Standardformatierer konfiguriert werden.",
"def": "(Standard)",
- "do.config": "Konfigurieren ...",
+ "do.config": "&&Konfigurieren...",
+ "do.config.command": "Konfigurieren...",
+ "do.config.notification": "Konfigurieren...",
"format.placeHolder": "Formatierer auswählen",
"formatDocument.label.multiple": "Dokument formatieren mit...",
"formatSelection.label.multiple": "Auswahl formatieren mit ...",
"formatter": "Formatierung",
"formatter.default": "Definiert einen Standardformatierer, der Vorrang gegenüber allen anderen Formatierereinstellungen hat. Muss der Bezeichner einer Erweiterung sein, die zu einem Formatierer gehört.",
- "miss": "Die Erweiterung „{0}“ ist als Formatierer konfiguriert, kann aber „{1}“-Dateien nicht formatieren.",
- "miss.1": "Standardformatierer konfigurieren",
+ "miss": "Standardformatierer konfigurieren",
+ "miss.1": "Die Erweiterung „{0}“ ist als Formatierer konfiguriert, kann aber „{1}“-Dateien nicht formatieren.",
+ "miss.2": "Die Erweiterung „{0}“ ist als Formatierer konfiguriert, kann „{1}“-Dateien aber nur als Ganzes formatieren, keine Auswahl oder Teile davon.",
"null": "Keine",
"nullFormatterDescription": "NONE",
"select": "Standardformatierer für {0}-Dateien auswählen",
"summary": "Formatiererkonflikte"
},
"vs/workbench/contrib/format/browser/formatActionsNone": {
- "cancel": "Abbrechen",
"formatDocument.label.multiple": "Dokument formatieren",
- "install.formatter": "Formatierer installieren...",
+ "install.formatter": "&&Formatierer installieren...",
"no.provider": "Es ist kein Formatierer für {0}-Dateien installiert.",
"too.large": "Diese Datei ist zu groß und kann daher nicht formatiert werden."
},
@@ -6528,36 +10360,432 @@
},
"vs/workbench/contrib/inlayHints/browser/inlayHintsAccessibilty": {
"description": "Code mit Informationen zu Inlay-Hinweisen",
- "isReadingLineWithInlayHints": "Gibt an, ob die aktuelle Zeile und ihre Inlay-Hinweise aktuell fokussiert sind",
- "read.title": "Zeile mit Inline-Hinweisen lesen",
+ "isReadingLineWithInlayHints": "Gibt an, ob die aktuelle Zeile und ihre Inlay-Hinweise aktuell im Fokus sind",
+ "read.title": "Zeile mit Inlay-Hinweisen lesen",
"stop.title": "Lesen von Inlay-Hinweisen beenden"
},
- "vs/workbench/contrib/interactive/browser/interactive.contribution": {
- "interactive.activeCodeBorder": "Die Rahmenfarbe für die aktuelle interaktive Codezelle, wenn der Editor im Fokus steht.",
+ "vs/workbench/contrib/inlineChat/browser/inlineChat.contribution": {
+ "cancel": "Anforderung abbrechen",
+ "cancelShort": "Abbrechen",
+ "send.edit": "Code bearbeiten",
+ "send.generate": "Generieren"
+ },
+ "vs/workbench/contrib/inlineChat/browser/inlineChatActions": {
+ "Keep": "Beibehalten",
+ "apply1": "Änderungen akzeptieren",
+ "apply2": "Annehmen",
+ "arrowDown": "Cursor nach unten",
+ "arrowUp": "Cursor nach oben",
+ "cat": "Inlinechat",
+ "chat.rerun.label": "Anforderung erneut ausführen",
+ "close": "Schließen",
+ "close2": "Schließen",
+ "configure": "Inlinechat konfigurieren",
+ "discard": "Verwerfen",
+ "focus": "Fokuseingabe",
+ "moveToNextHunk": "Zur nächsten Änderung",
+ "moveToPreviousHunk": "Zur vorherigen Änderung",
+ "rerun": "Erneut ausführen",
+ "run": "Inlinechat öffnen",
+ "showChanges": "Änderungen umschalten",
+ "startInlineChat": "Symbol, das den Inlinechat über die Editor-Symbolleiste erzeugt.",
+ "unstash": "Zuletzt geschlossenen Inlinechat fortsetzen",
+ "viewInChat": "Im Chat anzeigen"
+ },
+ "vs/workbench/contrib/inlineChat/browser/inlineChatController": {
+ "askOrEditInContext": "Im Kontext fragen oder bearbeiten",
+ "create.fail": "Fehler beim Starten des Editor-Chats.",
+ "empty": "Keine Ergebnisse, verfeinern Sie Ihre Eingabe und versuchen Sie es erneut.",
+ "err.apply": "Fehler beim Anwenden von Änderungen.",
+ "err.discard": "Fehler beim Verwerfen von Änderungen.",
+ "fix1": "Angefügtes Problem beheben",
+ "fixN": "Angefügte Probleme beheben",
+ "loading": "Wird ausgeführt...",
+ "placeholder": "Code bearbeiten, umgestalten und generieren",
+ "responseWasEmpty": "Die Antwort war leer.",
+ "welcome.2": "Wird vorbereitet..."
+ },
+ "vs/workbench/contrib/inlineChat/browser/inlineChatSessionServiceImpl": {
+ "chat.remove.confirmation.checkbox": "Nicht erneut nachfragen",
+ "confirm": "Möchten Sie in der Chatansicht fortfahren?",
+ "confirm.cancel": "Abbrechen",
+ "confirm.detail": "Der Inlinechat ist für die Codeänderungen an einzelnen Dateien gedacht. Fahren Sie mit Ihrer Anfrage in der Chatansicht fort oder formulieren Sie sie für den Inlinechat um.",
+ "confirm.title": "Möchten Sie in der Chatansicht fortfahren?",
+ "confirm.yes": "Weiter in der Chatansicht",
+ "name": "Inlinechat in Panelchat verschieben",
+ "resetChoice.label": "Auswahl für „Inlinechat in Panelchat verschieben“ zurücksetzen"
+ },
+ "vs/workbench/contrib/inlineChat/browser/inlineChatWidget": {
+ "aria-label": "Inlinechateingabe",
+ "feedbackThanks": "Vielen Dank für Ihr Feedback!",
+ "inlineChat.accessibilityHelp": "Inlinechateingabe. Verwenden Sie {0} für die Inlinechat-Barrierefreiheitshilfe.",
+ "inlineChat.accessibilityHelpNoKb": "Inlinechateingabe: Führen Sie den Befehl \"Inlinechat-Barrierefreiheitshilfe\" aus, um weitere Informationen zu erhalten.",
+ "termsDisclaimer": "Wenn Sie mit {0} Copilot fortfahren, stimmen Sie den [Nutzungsbedingungen]({2}) und [Datenschutzbestimmungen]({3}) von {1} zu."
+ },
+ "vs/workbench/contrib/inlineChat/browser/inlineChatZoneWidget": {
+ "inlineChatClosed": "Inlinechat-Widget geschlossen"
+ },
+ "vs/workbench/contrib/inlineChat/common/inlineChat": {
+ "accessibleDiffView": "Gibt an, ob der Inlinechat auch einen zugänglichen Diff-Viewer für seine Änderungen rendert.",
+ "accessibleDiffView.auto": "Der zugreifbare Diff-Viewer basiert darauf, dass der Sprachausgabemodus aktiviert ist.",
+ "accessibleDiffView.off": "Der zugängliche Diff-Viewer ist nie aktiviert.",
+ "accessibleDiffView.on": "Der zugängliche Diff-Viewer ist immer aktiviert.",
+ "editorMinimap.inlineChatInserted": "Minimapmarkerfarbe für inline eingefügten Chatinhalt.",
+ "editorOverviewRuler.inlineChatInserted": "Übersichtslinealmarkerfarbe für Inhalte, die dem Inlinechat hinzugefügt wurden.",
+ "editorOverviewRuler.inlineChatRemoved": "Übersichtslinealmarkerfarbe für Inhalte, die aus dem Inlinechat entfernt wurden.",
+ "enableV2": "Ob die nächste Version des Inline-Chats verwendet werden soll.",
+ "finishOnType": "Gibt an, ob eine Inlinechatsitzung beendet werden soll, wenn die Texteingabe außerhalb von geänderten Regionen erfolgt.",
+ "holdToSpeech": "Gibt an, ob das Gedrückthalten der Inlinechat-Tastenbindung, die Spracherkennung automatisch aktiviert.",
+ "inlineChat.background": "Hintergrundfarbe des interaktiven Editor-Widgets",
+ "inlineChat.border": "Rahmenfarbe des interaktiven Editor-Widgets",
+ "inlineChat.foreground": "Vordergrundfarbe des interaktiven Editor-Widgets",
+ "inlineChat.shadow": "Schattenfarbe des interaktiven Editor-Widgets",
+ "inlineChatChangeHasDiff": "Gibt an, ob die aktuelle Änderung das Anzeigen einer Differenz unterstützt",
+ "inlineChatChangeShowsDiff": "Gibt an, ob die aktuelle Änderung eine Differenz anzeigt",
+ "inlineChatDiff.inserted": "Hintergrundfarbe des eingefügten Texts in der interaktiven Editoreingabe",
+ "inlineChatDiff.removed": "Hintergrundfarbe des entfernten Texts in der interaktiven Editoreingabe",
+ "inlineChatEditing": "Gibt an, ob der Benutzer zurzeit Code im Inlinechat bearbeitet oder generiert.",
+ "inlineChatEmpty": "Gibt an, ob die Eingabe des interaktiven Editors leer ist",
+ "inlineChatFocused": "Gibt an, ob die Eingabe im interaktiven Editor fokussiert ist",
+ "inlineChatHasEditsAgent": "Gibt an, ob ein Agent für Inline in interaktiven Editoren vorhanden ist",
+ "inlineChatHasNotebookAgent": "Gibt an, ob ein Agent für Notebookzellen vorhanden ist",
+ "inlineChatHasNotebookInline": "Gibt an, ob ein Agent für Notebookzellen vorhanden ist",
+ "inlineChatHasPossible": "Gibt an, ob ein Anbieter für Inlinechat vorhanden ist und ob ein Editor für Inlinechat geöffnet ist.",
+ "inlineChatHasProvider": "Gibt an, ob ein Anbieter für interaktive Editoren existiert",
+ "inlineChatHasStashedSession": "Gibt an, ob der interaktive Editor eine Sitzung für die schnelle Wiederherstellung beibehalten hat.",
+ "inlineChatInnerCursorFirst": "Gibt an, ob der Cursor des interaktiven Editors auf der ersten Zeile steht",
+ "inlineChatInnerCursorLast": "Gibt an, ob der Cursor der interaktiven Editor-Eingabe auf der letzten Zeile steht",
+ "inlineChatInput.background": "Hintergrundfarbe der interaktiven Editor-Eingabe",
+ "inlineChatInput.border": "Rahmenfarbe der interaktiven Editor-Eingabe",
+ "inlineChatInput.focusBorder": "Rahmenfarbe der interaktiven Editor-Eingabe, wenn sie fokussiert ist",
+ "inlineChatInput.placeholderForeground": "Vordergrundfarbe des interaktiven Editor-Eingabeplatzhalters",
+ "inlineChatOuterCursorPosition": "Gibt an, ob sich der Cursor des äußeren Editors oberhalb oder unterhalb der interaktiven Editoreingabe befindet.",
+ "inlineChatRequestInProgress": "Gibt an, ob zurzeit eine Inlinechatanfrage ausgeführt wird.",
+ "inlineChatResponseFocused": "Gibt an, ob der Fokus auf der Antwort des interaktiven Widgets liegt.",
+ "inlineChatResponseTypes": "Von welchem Typ waren die Antworten: noch nichts, nur Nachrichten oder Nachrichten und lokale Bearbeitungen?",
+ "inlineChatVisible": "Gibt an, ob die interaktive Editor-Eingabe sichtbar ist",
+ "notebookAgent": "Aktivieren Sie agentenähnliches Verhalten über das Inline-Chat-Widget in Notebooks."
+ },
+ "vs/workbench/contrib/inlineChat/electron-browser/inlineChatActions": {
+ "holdForSpeech": "Für Sprachdienste halten"
+ },
+ "vs/workbench/contrib/inlineCompletions/browser/inlineCompletionLanguageStatusBarContribution": {
+ "inlineCompletionAvailable": "Inlinevervollständigung verfügbar",
+ "inlineEditAvailable": "Inlinebearbeitung verfügbar",
+ "inlineSuggestionLoading": "Wird geladen…",
+ "inlineSuggestions": "Inlinevorschläge",
+ "inlineSuggestionsSmall": "Inlinevorschläge",
+ "noInlineSuggestionAvailable": "Kein Inlinevorschlag verfügbar"
+ },
+ "vs/workbench/contrib/interactive/browser/interactive.contribution": {
+ "interactive.activeCodeBorder": "Die Rahmenfarbe für die aktuelle interaktive Codezelle, wenn der Editor im Fokus steht.",
"interactive.execute": "Code ausführen",
- "interactive.history.focus": "Fokusverlauf im interaktiven Fenster",
+ "interactive.history.focus": "Fokusverlauf",
"interactive.history.next": "Nächster Wert im Verlauf",
"interactive.history.previous": "Vorheriger Wert im Verlauf",
"interactive.inactiveCodeBorder": "Die Rahmenfarbe für die aktuelle interaktive Codezelle, wenn der Editor nicht im Fokus steht.",
"interactive.input.clear": "Inhalte des Eingabe-Editors im interaktiven Fenster löschen",
- "interactive.input.focus": "Fokuseingabe-Editor im interaktiven Fenster",
+ "interactive.input.focus": "Fokuseingabe-Editor",
"interactive.open": "Interactive-Fenster öffnen",
"interactiveScrollToBottom": "Bildlauf nach unten",
"interactiveScrollToTop": "Bildlauf nach oben",
+ "interactiveWindow": "Interaktives Fenster",
"interactiveWindow.alwaysScrollOnNewCell": "Scrollen Sie automatisch im interaktiven Fenster, um die Ausgabe der letzten ausgeführten Anweisung anzuzeigen. Wenn dieser Wert FALSE ist, führt das Fenster nur dann einen Bildlauf durch, wenn die letzte Zelle bereits die Zelle war, zu der ein Bildlauf durchgeführt wurde.",
- "interactiveWindow.restore": "Controls whether the Interactive Window sessions/history should be restored across window reloads. Whether the state of controllers used in Interactive Windows is persisted across window reloads are controlled by extensions contributing controllers."
+ "interactiveWindow.executeWithShiftEnter": "Führen Sie das Eingabefeld für das interaktive Fenster (REPL) mit UMSCH+EINGABETASTE aus, damit mit der EINGABETASTE ein Zeilenumbruch erstellt werden kann.",
+ "interactiveWindow.promptToSaveOnClose": "Aufforderung zum Speichern des interaktiven Fensters, wenn es geschlossen ist. Diese Einstellungsänderung wirkt sich nur auf neue interaktive Fenster aus.",
+ "interactiveWindow.showExecutionHint": "Zeigen Sie im Eingabefeld \"Interaktives Fenster (REPL)\" einen Hinweis an, um anzugeben, wie Code ausgeführt wird."
+ },
+ "vs/workbench/contrib/interactive/browser/replInputHintContentWidget": {
+ "ReplInputAriaLabelHelp": "Verwenden Sie {0} für Hilfe zur Barrierefreiheit. ",
+ "ReplInputAriaLabelHelpNoKb": "Führen Sie den Befehl \"Hilfe zur Barrierefreiheit öffnen\" aus, um weitere Informationen zu erhalten. ",
+ "disableHint": " Schalten Sie \"{0}\" in den Einstellungen um, um diesen Hinweis zu deaktivieren.",
+ "emptyHintText": "Drücken Sie zum Ausführen {0}. "
+ },
+ "vs/workbench/contrib/interactiveEditor/browser/interactiveEditorActions": {
+ "accept": "Anfrage stellen",
+ "actions.interactiveSession.accessibiltyHelpEditor": "Hilfe zur Barrierefreiheit des Interaktiven Sitzungs-Editors",
+ "apply1": "Änderungen akzeptieren",
+ "apply2": "Annehmen",
+ "arrowDown": "Cursor nach unten",
+ "arrowUp": "Cursor nach oben",
+ "cancel": "Abbrechen",
+ "cat": "Interactive Editor",
+ "contractMessage": "Vertragsnachricht",
+ "copyRecordings": "(Entwickler) Exchange in die Zwischenablage schreiben",
+ "discard": "Verwerfen",
+ "discardMenu": "Verwerfen...",
+ "expandMessage": "Nachricht erweitern",
+ "feedback.helpful": "Hilfreich",
+ "feedback.unhelpful": "Nicht hilfreich",
+ "focus": "Fokuseingabe",
+ "label": "\"{0}\" und {1} Nachverfolgungen ({2})",
+ "nextFromHistory": "Weiter aus Verlauf",
+ "previousFromHistory": "Vorheriges aus dem Verlauf",
+ "run": "Codechat starten",
+ "stop": "Stopp-Anforderung",
+ "toggleDiff": "Unterschied umschalten",
+ "toggleDiff2": "Inlinevergleich anzeigen",
+ "undo.clipboard": "In Zwischenablage verwerfen",
+ "undo.newfile": "In neue Datei verwerfen",
+ "unstash": "Zuletzt geschlossenen Codechat fortsetzen",
+ "viewInChat": "Im Chat anzeigen"
+ },
+ "vs/workbench/contrib/interactiveEditor/browser/interactiveEditorController": {
+ "create.fail": "Fehler beim Starten des Editor-Chats.",
+ "create.fail.detail": "Überprüfen Sie das Fehlerprotokoll, und versuchen Sie es später noch mal.",
+ "default.placeholder": "Eine Frage stellen",
+ "default.placeholder.history": "{0} ({1}, {2} für Verlauf)",
+ "empty": "Keine Ergebnisse, verfeinern Sie Ihre Eingabe und versuchen Sie es erneut.",
+ "err.apply": "Fehler beim Anwenden von Änderungen.",
+ "err.discard": "Fehler beim Verwerfen von Änderungen.",
+ "thinking": "Denken…",
+ "welcome.1": "KI-generierter Code ist möglicherweise falsch."
+ },
+ "vs/workbench/contrib/interactiveEditor/browser/interactiveEditorStrategies": {
+ "lines.0": "Nichts geändert",
+ "lines.1": "1 Zeile geändert",
+ "lines.N": "Geänderte {0} Zeilen"
+ },
+ "vs/workbench/contrib/interactiveEditor/browser/interactiveEditorWidget": {
+ "aria-label": "Interaktive Editoreingabe",
+ "interactiveEditor.accessibilityHelp": "Interaktive Editoreingabe. Verwenden Sie {0} für die Hilfe zur Barrierefreiheit des interaktiven Editors.",
+ "interactiveSessionInput.accessibilityHelpNoKb": "Interaktive Editoreingabe. Führen Sie den Befehl \"Hilfe zur Barrierefreiheit des interaktiven Editors\" aus, um weitere Informationen zu erhalten.",
+ "modified": "Geändert",
+ "original": "Original"
+ },
+ "vs/workbench/contrib/interactiveEditor/common/interactiveEditor": {
+ "editMode": "Konfigurieren, ob Änderungen, die im interaktiven Editor erstellt wurden, direkt auf das Dokument angewendet werden oder zuerst in der Vorschau angezeigt werden.",
+ "editMode.live": "Änderungen werden direkt auf das Dokument angewendet, können aber über Inlineunterschiede hervorgehoben werden. Durch das Beenden einer Sitzung bleiben die Änderungen erhalten.",
+ "editMode.livePreview": "Änderungen werden direkt auf das Dokument angewendet und über Inline- oder parallele Unterschiede visuell hervorgehoben. Durch das Beenden einer Sitzung bleiben die Änderungen erhalten.",
+ "editMode.preview": "Änderungen werden nur in der Vorschau angezeigt und müssen über die Schaltfläche \"Anwenden\" akzeptiert werden. Wenn Sie eine Sitzung beenden, werden die Änderungen verworfen.",
+ "interactiveEditor.border": "Rahmenfarbe des interaktiven Editor-Widgets",
+ "interactiveEditor.regionHighlight": "Hintergrundhervorhebung des aktuellen interaktiven Bereichs. Muss transparent sein.",
+ "interactiveEditor.shadow": "Schattenfarbe des interaktiven Editor-Widgets",
+ "interactiveEditorDidEdit": "Gibt an, ob der interaktive Editor Code geändert hat.",
+ "interactiveEditorDiff": "Gibt an, ob der interaktive Editor Unterschiede für Änderungen zeigt.",
+ "interactiveEditorDiff.inserted": "Hintergrundfarbe des eingefügten Texts in der interaktiven Editoreingabe",
+ "interactiveEditorDiff.removed": "Hintergrundfarbe des entfernten Texts in der interaktiven Editoreingabe",
+ "interactiveEditorDocumentChanged": "Gibt an, ob das Dokument gleichzeitig geändert wurde.",
+ "interactiveEditorEmpty": "Gibt an, ob die Eingabe des interaktiven Editors leer ist",
+ "interactiveEditorFocused": "Gibt an, ob die Eingabe im interaktiven Editor fokussiert ist",
+ "interactiveEditorHasActiveRequest": "Ob der interaktive Editor eine aktive Anfrage hat",
+ "interactiveEditorHasProvider": "Gibt an, ob ein Anbieter für interaktive Editoren existiert",
+ "interactiveEditorHasStashedSession": "Gibt an, ob der interaktive Editor eine Sitzung für die schnelle Wiederherstellung beibehalten hat.",
+ "interactiveEditorInnerCursorFirst": "Gibt an, ob der Cursor des interaktiven Editors auf der ersten Zeile steht",
+ "interactiveEditorInnerCursorLast": "Gibt an, ob der Cursor der interaktiven Editor-Eingabe auf der letzten Zeile steht",
+ "interactiveEditorInput.background": "Hintergrundfarbe der interaktiven Editor-Eingabe",
+ "interactiveEditorInput.border": "Rahmenfarbe der interaktiven Editor-Eingabe",
+ "interactiveEditorInput.focusBorder": "Rahmenfarbe der interaktiven Editor-Eingabe, wenn sie fokussiert ist",
+ "interactiveEditorInput.placeholderForeground": "Vordergrundfarbe des interaktiven Editor-Eingabeplatzhalters",
+ "interactiveEditorLastFeedbackKind": "Die letzte Art von Feedback, das bereitgestellt wurde",
+ "interactiveEditorMarkdownMessageCropState": "Gibt an, ob die interaktive Editor-Nachricht zugeschnitten, nicht zugeschnitten oder erweitert wird.",
+ "interactiveEditorOuterCursorPosition": "Gibt an, ob sich der Cursor des äußeren Editors oberhalb oder unterhalb der interaktiven Editoreingabe befindet.",
+ "interactiveEditorResponseType": "Welcher Typ war die letzte Antwort der aktuellen interaktiven Editorsitzung?",
+ "interactiveEditorVisible": "Gibt an, ob die interaktive Editor-Eingabe sichtbar ist"
+ },
+ "vs/workbench/contrib/interactiveSession/browser/actions/interactiveSessionActions": {
+ "actions.ineractiveSession.acceptInput": "Interaktive Sitzung: Eingabe annehmen",
+ "actions.interactiveSession.focus": "Interaktive Sitzung fokussieren",
+ "interactiveSession.category": "Interaktive Sitzung",
+ "interactiveSession.clear.label": "Löschen",
+ "interactiveSession.clearHistory.label": "Eingabeverlauf löschen",
+ "interactiveSession.focusInput.label": "Fokuseingabe",
+ "interactiveSession.history.label": "Verlauf anzeigen",
+ "interactiveSession.history.pick": "Wählen Sie eine wiederherzustellende Chatsitzung aus",
+ "interactiveSession.open": "Editor öffnen ({0})"
+ },
+ "vs/workbench/contrib/interactiveSession/browser/actions/interactiveSessionCodeblockActions": {
+ "interactive.copyCodeBlock.label": "Kopieren",
+ "interactive.insertCodeBlock.label": "Am Cursor einfügen",
+ "interactive.insertIntoNewFile.label": "In neue Datei einfügen",
+ "interactive.runInTerminal.label": "In Terminal ausführen"
+ },
+ "vs/workbench/contrib/interactiveSession/browser/actions/interactiveSessionCopyActions": {
+ "interactive.copyAll.label": "Alles kopieren",
+ "interactive.copyItem.label": "Kopieren"
+ },
+ "vs/workbench/contrib/interactiveSession/browser/actions/interactiveSessionExecuteActions": {
+ "interactive.cancel.label": "Abbrechen",
+ "interactive.submit.label": "Senden"
+ },
+ "vs/workbench/contrib/interactiveSession/browser/actions/interactiveSessionTitleActions": {
+ "interactive.voteDown.label": "Nicht zustimmen",
+ "interactive.voteUp.label": "Zustimmen"
+ },
+ "vs/workbench/contrib/interactiveSession/browser/contrib/interactiveSessionInputEditorContrib": {
+ "interactive.input.placeholderNoCommands": "Eine Frage stellen",
+ "interactive.input.placeholderWithCommands": "Stellen Sie eine Frage, oder geben Sie „/“ für Themen ein."
+ },
+ "vs/workbench/contrib/interactiveSession/browser/interactiveSession.contribution": {
+ "interactiveSession": "Interaktive Sitzung",
+ "interactiveSession.editor.fontFamily": "Steuert die Schriftfamilie in interaktiven Sitzungen.",
+ "interactiveSession.editor.fontSize": "Legt die Schriftgröße für interaktive Sitzungen in Pixeln fest.",
+ "interactiveSession.editor.fontWeight": "Steuert die Schriftbreite in interaktiven Sitzungen.",
+ "interactiveSession.editor.lineHeight": "Legt die Zeilenhöhe für interaktive Sitzungen in Pixeln fest. Geben Sie „0“ ein, wenn die Zeilenhöhe aus dem Schriftgrad berechnet werden soll.",
+ "interactiveSession.editor.wordWrap": "Steuert, ob Zeilen in interaktiven Sitzungen einen Zeilenumbruch haben sollen.",
+ "interactiveSessionConfigurationTitle": "Interaktive Sitzung"
+ },
+ "vs/workbench/contrib/interactiveSession/browser/interactiveSessionContributionServiceImpl": {
+ "vscode.extension.contributes.interactiveSession": "Trägt einen Anbieter für interaktive Sitzungen bei",
+ "vscode.extension.contributes.interactiveSession.icon": "Ein Symbol für diesen Anbieter für interaktive Sitzungen.",
+ "vscode.extension.contributes.interactiveSession.id": "Eindeutiger Bezeichner für diesen Anbieter für interaktive Sitzungen.",
+ "vscode.extension.contributes.interactiveSession.label": "Anzeigename für diesen Anbieter für interaktive Sitzungen.",
+ "vscode.extension.contributes.interactiveSession.when": "Eine Bedingung, die wahr sein muss, um diesen Anbieter für interaktive Sitzungen zu aktivieren."
+ },
+ "vs/workbench/contrib/interactiveSession/browser/interactiveSessionEditorInput": {
+ "interactiveSessionEditorName": "Interaktive Sitzung"
+ },
+ "vs/workbench/contrib/interactiveSession/browser/interactiveSessionInputPart": {
+ "interactiveSessionInput": "Eingabe der interaktiven Sitzung"
+ },
+ "vs/workbench/contrib/interactiveSession/browser/interactiveSessionListRenderer": {
+ "interactiveSession": "Interaktive Sitzung"
+ },
+ "vs/workbench/contrib/interactiveSession/browser/interactiveSessionWidget": {
+ "clear": "Sitzung löschen"
+ },
+ "vs/workbench/contrib/interactiveSession/common/interactiveSessionColors": {
+ "interactive.requestBackground": "Die Hintergrundfarbe einer interaktiven Anforderung.",
+ "interactive.requestBorder": "Die Rahmenfarbe einer interaktiven Anforderung."
+ },
+ "vs/workbench/contrib/interactiveSession/common/interactiveSessionContextKeys": {
+ "hasInteractiveSessionProvider": "True, wenn ein interaktiver Sitzungsanbieter registriert wurde.",
+ "inInteractiveInput": "Wahr, wenn der Fokus auf der interaktiven Eingabe liegt, andernfalls falsch.",
+ "inInteractiveSession": "Wahr, wenn der Fokus auf dem Widget zur interaktiven Eingabe liegt, andernfalls falsch.",
+ "interactiveInputHasText": "True, wenn die interaktive Eingabe Text enthält.",
+ "interactiveSessionRequestInProgress": "Wahr, wenn die aktuelle Anforderung noch ausgeführt wird.",
+ "interactiveSessionResponseHasProviderId": "Wahr, wenn der Anbieter dieser Antwort eine ID zugewiesen hat.",
+ "interactiveSessionResponseVote": "Wenn der Antwort zugestimmt wurde, ist sie auf „up“ festgelegt. Wenn Sie abgelehnt wurden, ist „down“ festgelegt. Andernfalls eine leere Zeichenfolge."
+ },
+ "vs/workbench/contrib/interactiveSession/common/interactiveSessionServiceImpl": {
+ "emptyResponse": "Der Anbieter hat eine Antwort vom Typ NULL zurückgegeben."
+ },
+ "vs/workbench/contrib/interactiveSession/common/interactiveSessionViewModel": {
+ "thinking": "Denken"
+ },
+ "vs/workbench/contrib/issue/browser/baseIssueReporterService": {
+ "acknowledge": "Versionsanerkennung bestätigen",
+ "bugDescription": "Geben Sie an, welche Schritte ausgeführt werden müssen, um das Problem zuverlässig zu reproduzieren. Was sollte geschehen, und was ist stattdessen geschehen? Wir unterstützen GitHub Flavored Markdown. Sie können während der Vorschau in GitHub Ihr Problem bearbeiten und Screenshots hinzufügen.",
+ "bugReporter": "Fehlerbericht",
+ "closed": "Geschlossen",
+ "create": "In GitHub erstellen",
+ "createInternally": "Intern erstellen",
+ "createOnGitHub": "In GitHub erstellen",
+ "description": "Beschreibung",
+ "disabledExtensions": "Erweiterungen sind deaktiviert",
+ "elsewhereDescription": "Die Erweiterung \"{0}\" bevorzugt die Verwendung eines externen Problemberichts. Klicken Sie unten auf die Schaltfläche, um zu dieser Problemberichterstattungsoberfläche zu gelangen.",
+ "extension": "Eine VS Code-Erweiterung",
+ "extensionPlaceholder": "Beispiel: Fehlender Alternativtext in Erweiterungslesebild",
+ "featureRequest": "Featureanforderung",
+ "featureRequestDescription": "Beschreiben Sie die Funktion, die Sie sehen möchten. Wir unterstützen GitHub-Markdown. Sie können in der GitHub-Preview ihr Problem bearbeiten und Screenshots hinzufügen.",
+ "handlesIssuesElsewhere": "Diese Erweiterung behandelt Probleme außerhalb von VS Code",
+ "hide": "ausblenden",
+ "internalPreviewMessage": "Wenn Ihre Copilot-Debugprotokolle private Informationen enthalten:",
+ "marketplace": "Erweiterungen im Marketplace",
+ "marketplacePlaceholder": "Beispiel: Die installierte Erweiterung kann nicht deaktiviert werden",
+ "open": "Öffnen",
+ "openIssueReporter": "Externen Problembericht öffnen",
+ "pasteData": "Wir haben die erforderlichen Daten in die Zwischenablage geschrieben, da sie zu groß zum Senden waren. Fügen Sie sie ein.",
+ "performanceIssue": "Leistungsproblem (Einfrieren, langsam, Absturz)",
+ "performanceIssueDesciption": "Wann ist dieses Leistungsproblem aufgetreten? Tritt es beispielsweise beim Start oder nach einer bestimmten Reihe von Aktionen auf? Wir unterstützen GitHub Flavored Markdown. Sie können während der Vorschau in GitHub Ihr Problem bearbeiten und Screenshots hinzufügen.",
+ "preview": "Vorschau in GitHub",
+ "previewOnGitHub": "Vorschau in GitHub",
+ "privateCreate": "Intern erstellen",
+ "saveExtensionData": "Erweiterungsdaten speichern",
+ "selectExtension": "Erweiterung auswählen",
+ "selectSource": "Quelle auswählen",
+ "show": "anzeigen",
+ "similarIssues": "Ähnliche Probleme",
+ "stepsToReproduce": "Schritte für Reproduktion",
+ "undefinedPlaceholder": "Geben Sie einen Titel ein",
+ "unknown": "Nicht bekannt",
+ "vscode": "Visual Studio Code",
+ "vscodePlaceholder": "Beispiel: In Workbench fehlt der Bereich \"Probleme\""
},
- "vs/workbench/contrib/interactive/browser/interactiveEditor": {
- "interactiveInputPlaceHolder": "Geben Sie hier den Code „{0}“ ein, und drücken Sie auf „{1}“, um den Code auszuführen."
+ "vs/workbench/contrib/issue/browser/issue.contribution": {
+ "statusUnsupported": "Das Argument „--status“ wird in Browsern noch nicht unterstützt."
},
- "vs/workbench/contrib/issue/electron-sandbox/issue.contribution": {
- "miOpenProcessExplorerer": "Prozess-Explorer &&öffnen",
+ "vs/workbench/contrib/issue/browser/issueFormService": {
+ "cancel": "Abbrechen",
+ "confirmCloseIssueReporter": "Ihre Eingaben werden nicht gespeichert. Möchten Sie dieses Fenster schließen?",
+ "issueReporterWriteToClipboard": "Es sind zu viele Daten vorhanden, um sie direkt an GitHub zu senden. Die Daten werden in die Zwischenablage kopiert. Fügen Sie sie bitte in die geöffnete GitHub-Seite zum Issue ein.",
+ "ok": "&&OK",
+ "yes": "&&Ja"
+ },
+ "vs/workbench/contrib/issue/browser/issueQuickAccess": {
+ "contributedIssuePage": "Erweiterungsseite öffnen",
+ "extensions": "Erweiterungen",
+ "reportExtensionMarketplace": "Marketplace für Erweiterungen"
+ },
+ "vs/workbench/contrib/issue/browser/issueReporterPage": {
+ "acknowledgements": "Ich bestätige, dass meine VS Code-Version nicht aktualisiert ist und dieses Ticket möglicherweise geschlossen wird.",
+ "chooseExtension": "Erweiterung",
+ "completeInEnglish": "Füllen Sie das Formular auf Englisch aus.",
+ "descriptionEmptyValidation": "Eine Beschreibung ist erforderlich.",
+ "descriptionTooShortValidation": "Geben Sie eine längere Beschreibung an.",
+ "details": "Geben Sie Details ein.",
+ "disableExtensions": "erneutem Laden des Fensters mit deaktivierten Erweiterungen",
+ "disableExtensionsLabelText": "Versuchen Sie, das Problem nach {0} zu reproduzieren. Wenn das Problem nur bei aktiven Erweiterungen reproduziert werden kann, besteht wahrscheinlich ein Problem bei einer Erweiterung.",
+ "downloadExtensionData": "Erweiterungsdaten herunterladen",
+ "extensionData": "Die Erweiterung enthält keine zusätzlichen Daten, die eingeschlossen werden können.",
+ "extensionWithNoBugsUrl": "Der Issue-Reporter kann keine Issues für diese Erweiterung erstellen, da keine URL für die Meldung von Problemen angegeben ist. Bitte sehen Sie auf der Marketplace-Seite dieser Erweiterung nach, ob andere Informationen verfügbar sind.",
+ "extensionWithNonstandardBugsUrl": "Der Problemreporter kann keine Issues für diese Erweiterung erstellen. Bitte besuchen Sie {0}, um ein Problem zu melden.",
+ "issueSourceEmptyValidation": "Eine Problemquelle ist erforderlich.",
+ "issueSourceLabel": "Für",
+ "issueTitleLabel": "Titel",
+ "issueTitleRequired": "Geben Sie einen Titel ein.",
+ "issueTypeLabel": "Typ:",
+ "reviewGuidanceLabel": "Bevor Sie hier ein Problem melden, lesen Sie die bereitgestellte Anleitung . Füllen Sie das Formular auf Englisch aus.",
+ "sendExperiments": "A/B-Experimentinformationen einschließen",
+ "sendExtensionData": "Zusätzliche Erweiterungsinformationen einschließen",
+ "sendExtensions": "Meine aktivierten Erweiterungen einschließen",
+ "sendProcessInfo": "Meine derzeit ausgeführten Prozesse einschließen",
+ "sendSystemInfo": "Meine Systeminformationen einschließen",
+ "sendWorkspaceInfo": "Metadaten zu meinem Arbeitsbereich einschließen",
+ "show": "Anzeigen",
+ "titleEmptyValidation": "Ein Titel ist erforderlich.",
+ "titleLengthValidation": "Der Titel ist zu lang."
+ },
+ "vs/workbench/contrib/issue/browser/issueReporterService": {
+ "undefinedPlaceholder": "Geben Sie einen Titel ein"
+ },
+ "vs/workbench/contrib/issue/browser/issueTroubleshoot": {
+ "I cannot reproduce": "Ich kann nicht reproduzieren",
+ "Stop": "Beenden",
+ "This is Bad": "Ich kann reproduzieren",
+ "ask to download insiders": "Versuchen Sie, das Problem in {0} Insiders herunterzuladen und zu reproduzieren.",
+ "ask to reproduce issue": "Versuchen Sie, das Problem in {0} Insiders zu reproduzieren, und bestätigen Sie, ob das Problem dort vorhanden ist.",
+ "bad": "Ich kann reproduzieren",
+ "detail.start": "Problembehandlung ist ein Prozess, mit dem Sie die Ursache eines Problems identifizieren können. Die Ursache für ein Problem kann eine falsch konfigurierte Konfiguration sein, die auf eine Erweiterung zurückzuführen ist, oder selbst {0} sein kann.\r\n\r\nWährend des Vorgangs wird das Fenster wiederholt neu geladen. Sie müssen jedes Mal bestätigen, ob das Problem weiterhin auftritt.",
+ "download insiders": "{0} Insiders herunterladen",
+ "empty.profile": "Die Problembehandlung ist aktiv und hat Ihre Konfigurationen vorübergehend auf die Standardwerte zurückgesetzt. Überprüfen Sie, ob Sie das Problem weiterhin reproduzieren können, und fahren Sie fort, indem Sie eine der folgenden Optionen auswählen.",
+ "good": "Ich kann nicht reproduzieren",
+ "issue is in core": "Bei der Problembehandlung wurde festgestellt, dass ein Problem mit {0} vorliegt.",
+ "issue is with configuration": "Bei der Problembehandlung wurde festgestellt, dass das Problem durch Ihre Konfigurationen verursacht wird. Melden Sie das Problem, indem Sie Ihre Konfigurationen mit dem Befehl \"Profil exportieren\" exportieren, und geben Sie die Datei im Problembericht frei.",
+ "msg": "&&Problembehandlung",
+ "profile.extensions.disabled": "Die Problembehandlung ist aktiv und hat vorübergehend alle installierten Erweiterungen deaktiviert. Überprüfen Sie, ob Sie das Problem weiterhin reproduzieren können, und fahren Sie fort, indem Sie eine der folgenden Optionen auswählen.",
+ "report anyway": "Problem trotzdem melden",
+ "stop": "Beenden",
+ "title.stop": "Problembehandlung stoppen",
+ "troubleshoot issue": "Problembehandlung",
+ "troubleshootIssue": "Problembehandlung...",
+ "use insiders": "Das bedeutet wahrscheinlich, dass das Problem bereits behoben wurde und die Lösung in einem bevorstehenden Release verfügbar sein wird. Sie können {0} Insiders sicher verwenden, bis die neue Stable-Version verfügbar ist."
+ },
+ "vs/workbench/contrib/issue/common/issue.contribution": {
"miReportIssue": "Problem &&melden",
"reportIssueInEnglish": "Problem melden..."
},
- "vs/workbench/contrib/issue/electron-sandbox/issueActions": {
- "openProcessExplorer": "Prozess-Explorer öffnen",
- "reportPerformanceIssue": "Leistungsproblem melden..."
+ "vs/workbench/contrib/issue/electron-browser/issue.contribution": {
+ "openIssueReporter": "Problem-Reporter öffnen",
+ "reportPerformanceIssue": "Leistungsproblem melden …",
+ "tasksQuickAccessPlaceholder": "Geben Sie den Namen einer Erweiterung ein, über die berichtet werden soll."
+ },
+ "vs/workbench/contrib/issue/electron-browser/issueReporterService": {
+ "noCurrentExperiments": "Keine aktuellen Experimente.",
+ "pasteData": "Wir haben die erforderlichen Daten in die Zwischenablage geschrieben, da sie zu groß zum Senden waren. Fügen Sie sie ein.",
+ "saveExtensionData": "Erweiterungsdaten speichern",
+ "undefinedPlaceholder": "Geben Sie einen Titel ein",
+ "updateAvailable": "Eine neue Version von {0} ist verfügbar."
},
"vs/workbench/contrib/keybindings/browser/keybindings.contribution": {
"toggleKeybindingsLog": "Problembehandlung für das Umschalten von Tastenkombinationen"
@@ -6569,10 +10797,9 @@
"noDetection": "Sprache des Editors kann nicht erkannt werden",
"status.autoDetectLanguage": "Erkannte Sprache akzeptieren: {0}"
},
- "vs/workbench/contrib/languageStatus/browser/languageStatus.contribution": {
+ "vs/workbench/contrib/languageStatus/browser/languageStatus": {
"aria.1": "{0}, {1}",
"aria.2": "{0}",
- "cat": "Anzeigen",
"langStatus.aria": "Editor-Sprachstatus: {0}",
"langStatus.name": "Editor-Sprachstatus",
"name.pattern": "{0} (Sprachstatus)",
@@ -6580,6 +10807,27 @@
"reset": "Sprachstatus-Interaktionszähler zurücksetzen",
"unpin": "Aus Statusleiste entfernen"
},
+ "vs/workbench/contrib/limitIndicator/browser/limitIndicator.contribution": {
+ "colorDecoratorsStatusItem.name": "Farb-Decorator-Status",
+ "colorDecoratorsStatusItem.source": "Farb-Decorator",
+ "foldingRangesStatusItem.name": "Faltstatus",
+ "foldingRangesStatusItem.source": "Faltung",
+ "status.button.configure": "Konfigurieren",
+ "status.limited.details": "Aus Leistungsgründen werden nur {0} angezeigt.",
+ "status.limitedColorDecorators.short": "Farb-Decorator",
+ "status.limitedFoldingRanges.short": "Faltbereiche"
+ },
+ "vs/workbench/contrib/list/browser/listResizeColumnAction": {
+ "list": "Liste",
+ "list.resizeColumn": "Spaltengröße ändern"
+ },
+ "vs/workbench/contrib/list/browser/tableColumnResizeQuickPick": {
+ "table.column.resizeValue.invalidRange": "Geben Sie eine Zahl größer 0 und kleiner oder gleich 100 ein.",
+ "table.column.resizeValue.invalidType": "Geben Sie eine ganze Zahl ein.",
+ "table.column.resizeValue.placeHolder": "d. h. 20, 60, 100...",
+ "table.column.resizeValue.prompt": "Geben Sie eine Breite in Prozent für die Spalte \"{0}\" ein.",
+ "table.column.selection": "Wählen Sie die Spalte aus, deren Größe geändert werden soll, und geben Sie sie zum Filtern ein."
+ },
"vs/workbench/contrib/localHistory/browser/localHistory": {
"localHistoryIcon": "Symbol für einen lokalen Verlaufseintrag in der Zeitachsenansicht.",
"localHistoryRestore": "Symbol zum Wiederherstellen des Inhalts eines lokalen Verlaufseintrags."
@@ -6606,6 +10854,7 @@
"localHistory.rename": "Umbenennen",
"localHistory.restore": "Inhalt wiederherstellen",
"localHistory.restoreViaPicker": "Zu wiederherstellenden Eintrag suchen",
+ "localHistory.restoreViaPickerMenu": "Lokaler Verlauf: Zu wiederherstellenden Eintrag suchen...",
"localHistory.selectForCompare": "Für Vergleich auswählen",
"localHistoryCompareToFileEditorLabel": "{0} ({1} • {2}) ↔ {3}",
"localHistoryCompareToPreviousEditorLabel": "{0} ({1} • {2}) ↔ {3} ({4} • {5})",
@@ -6621,34 +10870,16 @@
"vs/workbench/contrib/localHistory/browser/localHistoryTimeline": {
"localHistory": "Lokaler Verlauf"
},
- "vs/workbench/contrib/localHistory/electron-sandbox/localHistoryCommands": {
+ "vs/workbench/contrib/localHistory/electron-browser/localHistoryCommands": {
"openContainer": "Übergeordneten Ordner öffnen",
"revealInMac": "Im Finder anzeigen",
"revealInWindows": "Im Datei-Explorer anzeigen"
},
- "vs/workbench/contrib/localization/browser/localizationsActions": {
- "available": "Verfügbar",
- "chooseLocale": "Anzeige-Sprache auswählen",
- "clearDisplayLanguage": "Einstellung \"Anzeigesprache\" löschen",
- "configureLocale": "Anzeigesprache konfigurieren",
- "installed": "Installiert"
- },
- "vs/workbench/contrib/localization/electron-sandbox/localeService": {
- "argvInvalid": "Die Anzeigesprache kann nicht geschrieben werden. Öffnen Sie die Laufzeiteinstellungen, korrigieren Sie die darin enthaltenen Fehler/Warnungen, und versuchen Sie es noch mal.",
- "installing": "Die Sprachunterstützung für {0} wird installiert...",
- "openArgv": "Laufzeiteinstellungen öffnen",
- "restart": "&&Neu starten",
- "restartDisplayLanguageDetail": "Drücken Sie die Neustarttaste, um {0} neu zu starten und legen Sie die Sprache der Anzeige auf {1} fest.",
- "restartDisplayLanguageMessage": "Um die Anzeige-Sprache zu ändern, muss {0} neu gestartet werden"
- },
- "vs/workbench/contrib/localization/electron-sandbox/localization.contribution": {
- "activateLanguagePack": "Zur Verwendung von VS Code in {0} muss VS Code neu gestartet werden.",
- "changeAndRestart": "Sprache ändern und neu starten",
- "doNotChangeAndRestart": "Sprache nicht ändern",
- "doNotRestart": "Nicht neu starten",
- "neverAgain": "Nicht mehr anzeigen",
- "restart": "Neu starten",
- "updateLocale": "Möchten Sie die Sprache der Benutzeroberfläche von VS Code in {0} ändern und einen Neustart durchführen?",
+ "vs/workbench/contrib/localization/common/localization.contribution": {
+ "language id": "Sprach-ID",
+ "localizations": "Sprachpakete",
+ "localizations language name": "Name der Sprache",
+ "localizations localized language name": "Name der Sprache (lokalisiert)",
"vscode.extension.contributes.localizations": "Trägt Lokalisierungen zum Editor bei",
"vscode.extension.contributes.localizations.languageId": "ID der Sprache, in die Anzeigezeichenfolgen übersetzt werden.",
"vscode.extension.contributes.localizations.languageName": "Englischer Name der Sprache.",
@@ -6658,81 +10889,77 @@
"vscode.extension.contributes.localizations.translations.id.pattern": "Die ID muss \"vscode\" sein oder im Format \"publisherId.extensionName\" vorliegen, um VS Code bzw. eine Erweiterung zu übersetzen.",
"vscode.extension.contributes.localizations.translations.path": "Ein relativer Pfad zu einer Datei mit Übersetzungen für die Sprache."
},
- "vs/workbench/contrib/localization/electron-sandbox/minimalTranslations": {
- "installAndRestart": "Installieren und neu starten",
- "installAndRestartMessage": "Installieren Sie das Sprachpaket, um die Anzeigesprache in {0} zu ändern.",
- "searchMarketplace": "Marketplace durchsuchen",
- "showLanguagePackExtensions": "Suchen Sie im Marketplace nach Sprachpaketen, um die Anzeigesprache in {0} zu ändern."
+ "vs/workbench/contrib/localization/common/localizationsActions": {
+ "available": "Verfügbar",
+ "chooseLocale": "Anzeige-Sprache auswählen",
+ "clearDisplayLanguage": "Einstellung \"Anzeigesprache\" löschen",
+ "configureLocale": "Anzeigesprache konfigurieren",
+ "configureLocaleDescription": "Ändert das Gebietsschema von VS Code basierend auf installierten Language Packs. Zu den gängigen Sprachen gehören beispielsweise Französisch, Chinesisch, Spanisch, Japanisch, Deutsch oder Koreanisch.",
+ "installed": "Installiert",
+ "moreInfo": "Weitere Info"
},
- "vs/workbench/contrib/localizations/browser/localizations.contribution": {
- "activateLanguagePack": "Zur Verwendung von VS Code in {0} muss VS Code neu gestartet werden.",
+ "vs/workbench/contrib/localization/electron-browser/localization.contribution": {
"changeAndRestart": "Sprache ändern und neu starten",
- "doNotChangeAndRestart": "Sprache nicht ändern",
- "doNotRestart": "Nicht neu starten",
"neverAgain": "Nicht mehr anzeigen",
- "restart": "Neu starten",
- "updateLocale": "Möchten Sie die Sprache der Benutzeroberfläche von VS Code in {0} ändern und einen Neustart durchführen?",
- "vscode.extension.contributes.localizations": "Trägt Lokalisierungen zum Editor bei",
- "vscode.extension.contributes.localizations.languageId": "ID der Sprache, in die Anzeigezeichenfolgen übersetzt werden.",
- "vscode.extension.contributes.localizations.languageName": "Englischer Name der Sprache.",
- "vscode.extension.contributes.localizations.languageNameLocalized": "Name der Sprache in beigetragener Sprache.",
- "vscode.extension.contributes.localizations.translations": "Liste der Übersetzungen, die der Sprache zugeordnet sind.",
- "vscode.extension.contributes.localizations.translations.id": "ID von VS Code oder der Erweiterung, für die diese Übersetzung beigetragen wird. Die ID von VS Code ist immer \"vscode\", und die ID einer Erweiterung muss im Format \"publisherId.extensionName\" vorliegen.",
- "vscode.extension.contributes.localizations.translations.id.pattern": "Die ID muss \"vscode\" sein oder im Format \"publisherId.extensionName\" vorliegen, um VS Code bzw. eine Erweiterung zu übersetzen.",
- "vscode.extension.contributes.localizations.translations.path": "Ein relativer Pfad zu einer Datei mit Übersetzungen für die Sprache."
- },
- "vs/workbench/contrib/localizations/browser/localizationsActions": {
- "chooseDisplayLanguage": "Anzeige-Sprache auswählen",
- "configureLocale": "Anzeigesprache konfigurieren",
- "installAdditionalLanguages": "Zusätzliche Sprachen installieren...",
- "relaunchDisplayLanguageDetail": "Drücken Sie die Schaltfläche für den Neustart, um {0} neu zu starten und die Anzeigesprache zu ändern.",
- "relaunchDisplayLanguageMessage": "Ein Neustart ist erforderlich, damit die Änderung der Anzeigesprache übernommen wird.",
- "restart": "&&Neu starten"
+ "updateLocale": "Möchten Sie die Anzeigesprache von {0} in {1} ändern und neu starten?"
},
- "vs/workbench/contrib/localizations/browser/minimalTranslations": {
+ "vs/workbench/contrib/localization/electron-browser/minimalTranslations": {
"installAndRestart": "Installieren und neu starten",
"installAndRestartMessage": "Installieren Sie das Sprachpaket, um die Anzeigesprache in {0} zu ändern.",
"searchMarketplace": "Marketplace durchsuchen",
"showLanguagePackExtensions": "Suchen Sie im Marketplace nach Sprachpaketen, um die Anzeigesprache in {0} zu ändern."
},
"vs/workbench/contrib/logs/common/logs.contribution": {
- "editSessionsLog": "Sitzungen bearbeiten",
- "rendererLog": "Fenster",
- "show window log": "Fensterprotokoll anzeigen",
- "telemetryLog": "Telemetrie",
- "userDataSyncLog": "Einstellungssynchronisierung"
+ "remote name": "{0} (Remote)",
+ "setDefaultLogLevel": "Standardprotokollebene festlegen",
+ "show window log": "Fensterprotokoll anzeigen"
},
"vs/workbench/contrib/logs/common/logsActions": {
- "critical": "Kritisch",
+ "all": "Alle",
"current": "Aktuell",
- "debug": "Debuggen",
"default": "Standard",
- "default and current": "Standard und aktuell",
- "err": "Fehler",
- "info": "Info",
+ "extensionLogs": "Erweiterungsprotokolle",
"log placeholder": "Protokolldatei auswählen",
- "off": "Aus",
+ "loggers": "Protokolle",
"openSessionLogFile": "Fensterprotokolldatei öffnen (Sitzung)...",
+ "resetLogLevel": "Als Standardprotokollebene festlegen",
"selectLogLevel": "Protokollstufe auswählen",
+ "selectLogLevelFor": " {0}: Protokollebene auswählen",
+ "selectlog": "Protokollebene festlegen",
"sessions placeholder": "Sitzung auswählen",
- "setLogLevel": "Protokollstufe festlegen...",
- "trace": "Ablaufverfolgung",
- "warn": "Warnung"
+ "setLogLevel": "Protokollstufe festlegen..."
},
- "vs/workbench/contrib/logs/electron-sandbox/logs.contribution": {
- "mainLog": "Haupt",
- "sharedLog": "Gemeinsame Sperre"
- },
- "vs/workbench/contrib/logs/electron-sandbox/logsActions": {
+ "vs/workbench/contrib/logs/electron-browser/logsActions": {
"openExtensionLogsFolder": "Ordner mit den Erweiterungsprotokollen öffnen",
"openLogsFolder": "Protokollordner öffnen"
},
+ "vs/workbench/contrib/markdown/browser/markdownSettingRenderer": {
+ "alreadysetBoolFalse": "„{0}: {1}“ ist bereits deaktiviert.",
+ "alreadysetBoolTrue": "„{0}: {1}“ ist bereits aktiviert.",
+ "alreadysetNum": "„{0}: {1}“ ist bereits „{2}“ festgelegt.",
+ "alreadysetString": "„{0}: {1}“ ist bereits auf „{2}“ festgelegt.",
+ "changeSettingTitle": "Einstellung anzeigen oder ändern",
+ "copySettingId": "Einstellungs-ID kopieren",
+ "falseMessage": "\"{0}: {1}\" deaktivieren",
+ "numberValue": "\"{0}: {1}\" auf {2} festlegen",
+ "restorePreviousValue": "Wiederherstellungswert von \"{0}: {1}\"",
+ "stringValue": "\"{0}: {1}\" auf \"{2}\" festlegen",
+ "trueMessage": "\"{0}: {1}\" aktivieren",
+ "viewInSettings": "In Einstellungen anzeigen",
+ "viewInSettingsDetailed": "\"{0}: {1}\" in Einstellungen anzeigen"
+ },
+ "vs/workbench/contrib/markdown/common/markdownColors": {
+ "markdownAlertCautionForeground": "Vordergrundfarbe für Warnhinweise in Markdown.",
+ "markdownAlertImportantForeground": "Vordergrundfarbe für wichtige Warnungen in Markdown.",
+ "markdownAlertNoteForeground": "Vordergrundfarbe für Notizwarnungen in Markdown.",
+ "markdownAlertTipForeground": "Vordergrundfarbe für Tippwarnungen in Markdown.",
+ "markdownAlertWarningForeground": "Vordergrundfarbe für Warnungswarnungen in Markdown."
+ },
"vs/workbench/contrib/markers/browser/markers.contribution": {
"clearFiltersText": "Filtertext löschen",
"collapseAll": "Alle zuklappen",
"copyMarker": "Kopieren",
"copyMessage": "Nachricht kopieren",
- "filter": "Filter",
"focusProblemsFilter": "Problemfilter fokussieren",
"focusProblemsList": "Ansicht \"Probleme\" fokussieren",
"manyProblems": "Über 10.000",
@@ -6740,19 +10967,39 @@
"miMarker": "&&Probleme",
"noProblems": "Keine Probleme",
"problems": "Probleme",
+ "show active file": "Nur die aktive Datei anzeigen",
+ "show errors": "Fehler anzeigen",
+ "show excluded files": "Ausgeschlossene Dateien anzeigen",
+ "show infos": "Informationen anzeigen",
"show multiline": "Nachricht in mehreren Zeilen anzeigen",
"show singleline": "Meldung in einer Zeile anzeigen",
+ "show warnings": "Warnungen anzeigen",
"status.problems": "Probleme",
+ "status.problemsVisibility": "Sichtbarkeit von Problemen",
+ "status.problemsVisibilityOff": "Probleme sind deaktiviert. Klicken Sie, um die Einstellungen zu öffnen.",
+ "toggleActiveFileDescription": "Probleme (Fehler, Warnungen, Informationen) nur von der aktiven Datei in der Problemansicht anzeigen oder ausblenden.",
+ "toggleErrorsDescription": "Fehler in der Problemansicht ein- oder ausblenden.",
+ "toggleExcludedFilesDescription": "Ausgeschlossene Dateien in der Problemansicht ein- oder ausblenden.",
+ "toggleInfosDescription": "Infos in der Problemansicht ein- oder ausblenden.",
+ "toggleWarningsDescription": "Warnungen in der Problemansicht ein- oder ausblenden.",
"totalErrors": "Fehler: {0}",
"totalInfos": "Informationen: {0}",
"totalProblems": "Insgesamt {0} Probleme",
"totalWarnings": "Warnungen: {0}",
"viewAsTable": "Als Tabelle anzeigen",
- "viewAsTree": "Als Struktur anzeigen"
+ "viewAsTableDescription": "Die Problemansicht als Tabelle anzeigen.",
+ "viewAsTree": "Als Struktur anzeigen",
+ "viewAsTreeDescription": "Die Problemansicht als Struktur anzeigen."
+ },
+ "vs/workbench/contrib/markers/browser/markersChatContext": {
+ "chatContext.diagnstic": "Probleme…",
+ "chatContext.diagnstic.placeholder": "Problem zum Anfügen auswählen",
+ "markers.panel.allErrors": "Alle Probleme",
+ "markers.panel.at.ln.col.number": "[Zeile {0}, Spalte {1}]"
},
"vs/workbench/contrib/markers/browser/markersFileDecorations": {
"label": "Probleme",
- "markers.showOnFile": "Fehler und Warnungen in Dateien und Ordnern anzeigen.",
+ "markers.showOnFile": "Fehler und Warnungen für Dateien und Ordner anzeigen. Wird von „{0}“ überschrieben, wenn es deaktiviert ist.",
"tooltip.1": "1 Problem in dieser Datei",
"tooltip.N": "{0} Probleme in dieser Datei"
},
@@ -6772,10 +11019,7 @@
"vs/workbench/contrib/markers/browser/markersView": {
"No problems filtered": "{0} Probleme werden angezeigt.",
"clearFilter": "Filter löschen",
- "problems filtered": "{0} von {1} Problemen werden angezeigt."
- },
- "vs/workbench/contrib/markers/browser/markersViewActions": {
- "filterIcon": "Symbol für die Filterkonfiguration in der Markeransicht.",
+ "problems filtered": "{0} von {1} Problemen werden angezeigt.",
"showing filtered problems": "{0} von {1} angezeigt"
},
"vs/workbench/contrib/markers/browser/messages": {
@@ -6813,91 +11057,628 @@
"problems.panel.configuration.showCurrentInStatus": "Wenn aktiviert, wird das aktuelle Problem in der Statusleiste angezeigt",
"problems.panel.configuration.title": "Ansicht \"Probleme\"",
"problems.panel.configuration.viewMode": "Steuert den Standardansichtsmodus der Problemansicht",
- "problems.tree.aria.label.error.marker": "Von {0} generierter Fehler: {1} in Zeile {2} bei Zeichen {3}.{4}",
+ "problems.tree.aria.label.error.marker": "Fehler: {0} in Zeile {1} und Zeichen {2}.{3} generiert von {4}",
"problems.tree.aria.label.error.marker.nosource": "Fehler: {0} in Zeile {1} bei Zeichen {2}.{3}",
- "problems.tree.aria.label.info.marker": "Von {0} generierte Informationen: {1} in Zeile {2} bei Zeichen {3}.{4}",
+ "problems.tree.aria.label.info.marker": "Info: {0} in Zeile {1} und Zeichen {2}.{3} generiert von {4}",
"problems.tree.aria.label.info.marker.nosource": "Informationen: {0} in Zeile {1} bei Zeichen {2}.{3}",
- "problems.tree.aria.label.marker": "Von {0} generiertes Problem: {1} in Zeile {2} bei Zeichen {3}.{4}",
+ "problems.tree.aria.label.marker": "Problem: {0} in Zeile {1} und Zeichen {2}.{3} generiert von {4}",
"problems.tree.aria.label.marker.nosource": "Problem: {0} in Zeile {1} bei Zeichen {2}.{3}",
"problems.tree.aria.label.marker.relatedInformation": "Dieses Problem verweist auf {0} Speicherorte.",
"problems.tree.aria.label.relatedinfo.message": "{0} in Zeile {1} bei Zeichen {2} in {3}",
"problems.tree.aria.label.resource": "{0} Probleme in der Datei {1} im Ordner {2}",
- "problems.tree.aria.label.warning.marker": "Von {0} generierte Warnung: {1} in Zeile {2} bei Zeichen {3}.{4}",
+ "problems.tree.aria.label.warning.marker": "Warnung: {0} in Zeile {1} und Zeichen {2}.{3} generiert von {4}",
"problems.tree.aria.label.warning.marker.nosource": "Warnung: {0} in Zeile {1} bei Zeichen {2}.{3}",
"problems.view.focus.label": "Probleme fokussieren (Fehler, Warnungen, Informationen)",
"problems.view.toggle.label": "Probleme umschalten (Fehler, Warnungen, Informationen)"
},
+ "vs/workbench/contrib/mcp/browser/mcp.contribution": {
+ "mcp.quickaccess.add": "MCP-Serverressourcen",
+ "mcp.quickaccess.placeholder": "Für eine MCP-Ressource filtern",
+ "mcpServer": "MCP-Server"
+ },
+ "vs/workbench/contrib/mcp/browser/mcpAddContextContribution": {
+ "mcp.addContext": "MCP-Ressourcen...",
+ "mcp.addContext.placeholder": "MCP-Ressource auswählen..."
+ },
+ "vs/workbench/contrib/mcp/browser/mcpCommands": {
+ "mcp.actions.resources": "Ressourcen",
+ "mcp.actions.sampling": "Stichprobenentnahme",
+ "mcp.actions.status": "Status",
+ "mcp.addConfiguration": "Server hinzufügen …",
+ "mcp.addConfiguration.description": "Installiert ein neues Modellkontextprotokoll in den mcp.json-Einstellungen.",
+ "mcp.addServer": "Server hinzufügen",
+ "mcp.addServer.description": "Neue Serverkonfiguration hinzufügen",
+ "mcp.autoStart": "MCP-Server beim Senden einer Chatnachricht automatisch starten",
+ "mcp.browseResources": "Ressourcen durchsuchen...",
+ "mcp.command.browse": "MCP-Server",
+ "mcp.command.browse.mcp": "MCP-Server durchsuchen",
+ "mcp.command.browse.tooltip": "MCP-Server durchsuchen",
+ "mcp.command.openRemoteUserMcp": "Remotebenutzerkonfiguration öffnen",
+ "mcp.command.openUserMcp": "Benutzerkonfiguration öffnen",
+ "mcp.command.openWorkspaceFolderMcp": "MCP-Konfiguration des Arbeitsbereichsordners öffnen",
+ "mcp.command.openWorkspaceMcp": "McP-Konfiguration des Arbeitsbereichs öffnen",
+ "mcp.command.restartServer": "Server neu starten",
+ "mcp.command.show.installed": "Installierte Server anzeigen",
+ "mcp.command.showConfiguration": "Konfiguration anzeigen",
+ "mcp.command.showOutput": "Ausgabe anzeigen",
+ "mcp.command.startServer": "Server starten",
+ "mcp.command.stopServer": "Server beenden",
+ "mcp.config": "Konfiguration anzeigen",
+ "mcp.configAccess": "Modellzugriff konfigurieren",
+ "mcp.configureSamplingModels": "Modell für die Stichprobenentnahme (SamplingModel) konfigurieren",
+ "mcp.configureSamplingModels.ph": "Wählen Sie die Modelle aus, auf die {0} über die MCP-Stichprobenentnahme zugreifen kann.",
+ "mcp.disconnect": "Konto trennen",
+ "mcp.editStoredInput": "Gespeicherte Eingabe bearbeiten",
+ "mcp.err.md.multi": "Mehrere MCP-Server konnten nicht erfolgreich gestartet werden:\r\n\r\n{0}",
+ "mcp.err.md.single": "Der MCP-Server {0} konnte nicht erfolgreich gestartet werden.",
+ "mcp.list": "Server auflisten",
+ "mcp.newTools": "Neue Tools verfügbar ({0})",
+ "mcp.newTools.md.multi": "MCP-Server wurden aktualisiert und verfügen möglicherweise über neue Tools:\r\n\r\n{0}",
+ "mcp.newTools.md.single": "Der MCP-Server {0} wurde aktualisiert und möglicherweise sind neue Tools verfügbar.",
+ "mcp.options": "Serveroptionen",
+ "mcp.resetCachedTools": "Zwischengespeicherte Tools zurücksetzen",
+ "mcp.resetTrust": "Vertrauensstellung zurücksetzen",
+ "mcp.resources": "Ressourcen durchsuchen",
+ "mcp.restart": "Server neu starten",
+ "mcp.samplingLog": "Anforderungen für die Stichprobenentnahme anzeigen",
+ "mcp.samplingLog.description": "Die Anforderungen zur Stichprobenentnahme für diesen Server anzeigen",
+ "mcp.samplingLog.title": "MCP-Stichprobenentnahme: {0}",
+ "mcp.selectAction": "Aktion für „{0}“ auswählen",
+ "mcp.selectServer": "MCP-Server auswählen",
+ "mcp.servers": "MCP-Server",
+ "mcp.showOutput": "Ausgabe anzeigen",
+ "mcp.showOutput.description": "Die Modelle festlegen, die der Server über die MCP-Stichprobenentnahme verwenden kann",
+ "mcp.signOut": "Abmelden",
+ "mcp.skipCurrentAutostart": "Aktuellen Autostart überspringen",
+ "mcp.start": "Server starten",
+ "mcp.startPromptingServer": "Promptserver starten",
+ "mcp.stop": "Server beenden",
+ "mcp.toolError": "Fehler beim Laden von {0} Tool(s)",
+ "mcp.toolRefresh": "Tools werden ermittelt …"
+ },
+ "vs/workbench/contrib/mcp/browser/mcpCommandsAddConfiguration": {
+ "allow": "Zulassen",
+ "cancel": "Abbrechen",
+ "install.error": "Fehler beim Installieren des MCP-Servers {0}: {1}",
+ "install.newName": "Neuen Namen eingeben",
+ "install.rename": "„{0}“ umbenennen",
+ "install.show": "Konfiguration anzeigen",
+ "install.start": "Server installieren",
+ "install.title": "MCP-Server {0} installieren",
+ "mcp.command.placeholder": "Auszuführender Befehl (mit optionalen Argumenten)",
+ "mcp.command.title": "Befehl eingeben",
+ "mcp.confirmPublish": "{0}{1} von {2} installieren?",
+ "mcp.docker.placeholder": "Bildname (z. B. mcp/imagename)",
+ "mcp.docker.title": "Geben Sie den Docker-Imagenamen ein.",
+ "mcp.error.openHelpUri": "Hilfe-URL öffnen",
+ "mcp.error.retry": "Mit einem anderen Paket versuchen",
+ "mcp.loading.title": "Paketdetails werden geladen...",
+ "mcp.npm.placeholder": "Paketname (z. B. @org/package)",
+ "mcp.npm.title": "NPM-Paketname eingeben",
+ "mcp.nuget.placeholder": "Paketname (z. B. Paket.Name)",
+ "mcp.nuget.title": "Name des NuGet-Pakets eingeben",
+ "mcp.pip.placeholder": "Paketname (z. B. package-name)",
+ "mcp.pip.title": "Pip-Paketname eingeben",
+ "mcp.serverId.placeholder": "Eindeutiger Bezeichner für diesen Server",
+ "mcp.serverId.title": "Server-ID eingeben",
+ "mcp.serverType.command": "Befehl (stdio)",
+ "mcp.serverType.command.description": "Führen Sie einen lokalen Befehl aus, der das MCP-Protokoll implementiert.",
+ "mcp.serverType.copilot": "Modellunterstützt",
+ "mcp.serverType.docker": "Docker-Image",
+ "mcp.serverType.docker.description": "Von einem Docker-Image installieren",
+ "mcp.serverType.http": "HTTP (HTTP oder Server-Sent Events)",
+ "mcp.serverType.http.description": "Stellen Sie eine Verbindung zu einem Remote-HTTP-Server her, der das MCP-Protokoll implementiert.",
+ "mcp.serverType.manual": "Manuelle Installation",
+ "mcp.serverType.npm": "NPM-Paket",
+ "mcp.serverType.npm.description": "Von einem NPM-Paketnamen installieren",
+ "mcp.serverType.nuget": "NuGet-Paket",
+ "mcp.serverType.nuget.description": "Installieren aus einem NuGet-Paketnamen",
+ "mcp.serverType.pip": "PIP-Paket",
+ "mcp.serverType.pip.description": "Aus einem PIP-Paketnamen installieren",
+ "mcp.serverType.placeholder": "Wählen Sie den Typ des hinzuzufügenden MCP-Servers aus.",
+ "mcp.servers.browse": "MCP-Server durchsuchen …",
+ "mcp.servers.discovery": "Aus einer anderen Anwendung hinzufügen...",
+ "mcp.target..remote.description": "Auf diesem Remotecomputer verfügbar, wird auf {0} ausgeführt",
+ "mcp.target.placeholder": "Konfigurationsziel auswählen",
+ "mcp.target.remote": "Remote",
+ "mcp.target.title": "MCP-Server hinzufügen...",
+ "mcp.target.user": "Global",
+ "mcp.target.user.description": "In allen Arbeitsbereichen verfügbar, wird lokal ausgeführt",
+ "mcp.target.workspace": "Arbeitsbereich",
+ "mcp.target.workspace.description": "In diesem Arbeitsbereich verfügbar, wird lokal ausgeführt",
+ "mcp.target.workspace.description.remote": "In diesem Arbeitsbereich verfügbar, wird auf {0} ausgeführt",
+ "mcp.url.placeholder": "URL des MCP-Servers (z. B. http://localhost:3000)",
+ "mcp.url.title": "Server-URL eingeben"
+ },
+ "vs/workbench/contrib/mcp/browser/mcpElicitationService": {
+ "mcp.elicit.accept": "Antworten",
+ "mcp.elicit.cancel": "Abbrechen",
+ "mcp.elicit.enum.none": "Kein",
+ "mcp.elicit.enum.none.description": "Keine Auswahl",
+ "mcp.elicit.give": "Antworten",
+ "mcp.elicit.reject": "Abbrechen",
+ "mcp.elicit.source": "MCP-Server ({0})",
+ "mcp.elicit.title": "Eingabeanforderung",
+ "mcp.elicit.url.instruction": "Diese URL öffnen?",
+ "mcp.elicit.url.instruction2": "Dadurch wird „{0}“ geöffnet.",
+ "mcp.elicit.url.open": "{0} öffnen",
+ "mcp.elicit.url.open2": "URL öffnen",
+ "mcp.elicit.url.title": "Autorisierung erforderlich.",
+ "mcp.elicit.useDefault": "Standardwert",
+ "mcp.elicit.validation.date": "Geben Sie ein gültiges Datum ein (JJJJ-MM-TT).",
+ "mcp.elicit.validation.dateTime": "Geben Sie ein gültiges Datum und eine gültige Uhrzeit ein.",
+ "mcp.elicit.validation.email": "Geben Sie eine gültige E-Mail-Adresse ein.",
+ "mcp.elicit.validation.integer": "Geben Sie eine gültige ganze Zahl ein.",
+ "mcp.elicit.validation.maxLength": "Maximale Länge beträgt {0}",
+ "mcp.elicit.validation.maximum": "Der Höchstwert ist {0}",
+ "mcp.elicit.validation.minLength": "Die Mindestlänge beträgt {0}",
+ "mcp.elicit.validation.minimum": "Der Mindestwert ist {0}",
+ "mcp.elicit.validation.number": "Geben Sie eine gültige Zahl ein.",
+ "mcp.elicit.validation.uri": "Geben Sie einen gültigen URI ein.",
+ "msg.subtitle": "{0} (MCP-Server)",
+ "optional": "Optional"
+ },
+ "vs/workbench/contrib/mcp/browser/mcpLanguageFeatures": {
+ "cancel": "Abbrechen",
+ "clear": "Löschen",
+ "clearAll": "Alle löschen",
+ "edit": "Bearbeiten",
+ "mcp.debug": "Debuggen",
+ "mcp.restart": "Neu starten",
+ "mcp.server.more": "Mehr...",
+ "mcp.start": "Starten",
+ "mcp.stop": "Beenden",
+ "mcp.variableNotFound": "Variable `{0}` nicht gefunden. Meinten Sie ${{1}}?",
+ "server.error": "Fehler",
+ "server.promptcount": "{0} Prompts",
+ "server.running": "Wird ausgeführt",
+ "server.starting": "Wird gestartet",
+ "server.toolCount": "{0} Tools"
+ },
+ "vs/workbench/contrib/mcp/browser/mcpMigration": {
+ "mcp.migration.openRemoteConfig": "McP-Konfiguration für Remotebenutzer öffnen",
+ "mcp.migration.openUserConfig": "Benutzer-MCP-Konfiguration öffnen",
+ "mcp.migration.remoteConfigFound": "MCP-Server sollten nicht mehr in den Remotebenutzereinstellungen konfiguriert werden. Verwenden Sie stattdessen die dedizierte MCP-Konfiguration.",
+ "mcp.migration.update": "Jetzt aktualisieren",
+ "mcp.migration.userConfigFound": "MCP-Server sollten nicht mehr in den Benutzereinstellungen konfiguriert werden. Verwenden Sie stattdessen die dedizierte MCP-Konfiguration."
+ },
+ "vs/workbench/contrib/mcp/browser/mcpPromptArgumentPick": {
+ "loading": "Wird geladen …",
+ "mcp.arg.activeFile": "Aktive Datei",
+ "mcp.arg.activeFiles": "Aktive Datei",
+ "mcp.arg.asCommand": "Als Befehl ausführen",
+ "mcp.arg.asCommand.description": "Fügt die Befehlsausgabe als Promptargument ein",
+ "mcp.arg.asText": "Als Text einfügen",
+ "mcp.arg.files": "Dateien",
+ "mcp.arg.required": "Dieses Argument ist erforderlich.",
+ "mcp.arg.selectedText": "Ausgewählter Text",
+ "mcp.arg.selectedText.multiLine": "{0} Zeilen",
+ "mcp.arg.selectedText.singleLine": "Zeile {0}",
+ "mcp.arg.suggestions": "Empfehlungen",
+ "mcp.prompt.pick.title": "Wert für: {0}",
+ "mcp.terminal.name": "MCP-Terminal",
+ "optional": "Optional"
+ },
+ "vs/workbench/contrib/mcp/browser/mcpResourceQuickAccess": {
+ "goBack": "Zurück ↩",
+ "mcp.quickaccess.attach": "An Chat anfügen",
+ "mcp.quickaccess.placeholder": "Nach Ressourcen suchen",
+ "mcp.resource.template": "Ressourcenvorlage: {0}",
+ "mcp.resource.template.empty": "",
+ "mcp.resource.template.notFound": "Die Ressource {0} wurde nicht gefunden.",
+ "mcp.resource.template.optional": "Optional",
+ "mcp.resource.template.placeholder": "Wert für ${0} in {1}"
+ },
+ "vs/workbench/contrib/mcp/browser/mcpServerActions": {
+ "config": "Konfiguration anzeigen",
+ "configJson": "Konfiguration anzeigen (JSON)",
+ "install": "Installieren",
+ "install in workspace folder": "Arbeitsbereichsordner",
+ "installInRemote": "Installieren (Remote)",
+ "installInRemoteLabel": "Auf „{0}“ installieren",
+ "installInWorkspace": "Im Arbeitsbereich installieren",
+ "installing": "Wird installiert",
+ "manage": "Verwalten",
+ "mcp.configAccess": "Modellzugriff konfigurieren",
+ "mcp.disconnect": "Konto trennen",
+ "mcp.resources": "Ressourcen durchsuchen",
+ "mcp.samplingLog": "Anforderungen für die Stichprobenentnahme anzeigen",
+ "mcp.samplingLog.title": "MCP-Stichprobenentnahme: {0}",
+ "mcp.signOut": "Abmelden",
+ "mcp.target.title": "Installationsort für den MCP-Server auswählen",
+ "mcp.target.workspace": "Arbeitsbereich",
+ "mcpServerInstallation": "Die Installation des MCP-Servers „{0}“ wurde gestartet. Ein Editor mit weiteren Details zu diesem MCP-Server ist jetzt geöffnet.",
+ "output": "Ausgabe anzeigen",
+ "restart": "Server neu starten",
+ "start": "Server starten",
+ "stop": "Server beenden",
+ "uninstall": "Deinstallieren"
+ },
+ "vs/workbench/contrib/mcp/browser/mcpServerEditor": {
+ "Install Info": "Installation",
+ "Marketplace Info": "Marketplace",
+ "Readme title": "Readme",
+ "Version": "Version",
+ "arguments": "Argumente:",
+ "command": "Befehl:",
+ "configuration": "Konfiguration",
+ "configurationtooltip": "Details zur Serverkonfiguration",
+ "details": "Details",
+ "detailstooltip": "Details zur Erweiterung, die aus der Datei \"README.md\" der Erweiterung gerendert wurden",
+ "environmentVariables": "Umgebungsvariablen:",
+ "headers": "Header:",
+ "id": "Bezeichner",
+ "last updated": "Zuletzt veröffentlicht",
+ "manifest": "Manifest",
+ "manifesttooltip": "Details zum Servermanifest",
+ "name": "Name der Erweiterung",
+ "noConfig": "Für diesen MCP-Server sind keine Konfigurationsdetails verfügbar.",
+ "noManifest": "Für diesen MCP-Server ist kein Manifest verfügbar.",
+ "noReadme": "Keine README-Datei verfügbar",
+ "packageName": "Paket:",
+ "packagearguments": "Paketargumente:",
+ "packages": "Pakete",
+ "published": "Veröffentlicht",
+ "remotes": "Remote",
+ "repository": "Repository",
+ "resources": "Ressourcen",
+ "runtimeargs": "Laufzeitargumente:",
+ "serverName": "Name:",
+ "serverType": "Typ:",
+ "support": "Support kontaktieren",
+ "tags": "Kategorien",
+ "transport": "Transport:",
+ "url": "URL:"
+ },
+ "vs/workbench/contrib/mcp/browser/mcpServerEditorInput": {
+ "extensionsInputName": "MCP-Server: {0}",
+ "mcpServerEditorLabelIcon": "Symbol des MCP-Server-Editors."
+ },
+ "vs/workbench/contrib/mcp/browser/mcpServerIcons": {
+ "licenseIcon": "Symbol, das zusammen mit dem Lizenzstatus angezeigt wird.",
+ "mcpServer": "Symbol für den MCP-Server",
+ "mcpServerRemoteIcon": "Symbol, das angibt, dass ein MCP-Server für den Remotebenutzerbereich geeignet ist.",
+ "mcpServerWorkspaceIcon": "Symbol, das angibt, dass ein MCP-Server für den Arbeitsbereichsbereich gilt.",
+ "starredIcon": "Symbol, das zusammen mit dem Status „mit Stern“ angezeigt wird."
+ },
+ "vs/workbench/contrib/mcp/browser/mcpServersView": {
+ "mcp": "MCP-Server",
+ "mcp servers": "MCP-Server",
+ "mcp-installed": "MCP-Server – Installiert",
+ "mcp.gallery.enableDialog.cancel": "Abbrechen",
+ "mcp.gallery.enableDialog.enable": "Aktivieren",
+ "mcp.gallery.enableDialog.setting": "Dieses Feature befindet sich zurzeit in der Vorschau. Es kann jederzeit über die Einstellung „{0}“ deaktiviert werden.",
+ "mcp.gallery.enableDialog.title": "MCP-Server-Marketplace aktivieren?",
+ "mcp.welcome.descriptionWithLink": "Durchsuchen und installieren Sie [MCP-Server (Model Context Protocol)](https://code.visualstudio.com/docs/copilot/customization/mcp-servers) direkt in VS Code, um den Agentmodus mit zusätzlichen Tools für die Verbindung zu Datenbanken, das Aufrufen von APIs und das Ausführen spezialisierter Aufgaben zu erweitern.",
+ "mcp.welcome.enableGalleryButton": "MCP-Server-Marketplace aktivieren",
+ "mcp.welcome.settings.tooltip": "Einstellungen öffnen",
+ "mcp.welcome.title": "MCP-Server",
+ "no extensions found": "Es wurden keine MCP-Server gefunden."
+ },
+ "vs/workbench/contrib/mcp/browser/mcpServerWidgets": {
+ "mcpIconStarForeground": "Die Symbolfarbe für MCP mit Stern.",
+ "publisher": "Herausgeber ({0})",
+ "remote user extension": "Remote-MCP-Server",
+ "verified publisher": "Dieser Herausgeber hat den Besitz von {0} überprüft.",
+ "workspace extension": "MCP-Arbeitsbereichsserver"
+ },
+ "vs/workbench/contrib/mcp/browser/mcpWorkbenchService": {
+ "cannot be installed": "Der MCP-Server „{0}“ kann nicht installiert werden, da er in diesem Setup nicht verfügbar ist.",
+ "disabled - all not allowed": "Dieser MCP-Server ist deaktiviert, da MCP-Server im Editor so konfiguriert sind, dass sie deaktiviert werden. Überprüfen Sie Ihre [Einstellungen]({0}).",
+ "disabled - some not allowed": "Dieser MCP-Server ist deaktiviert, da er im Editor so konfiguriert ist, dass er deaktiviert wird. Überprüfen Sie Ihre [Einstellungen]({0}).",
+ "mcp.configuration.userLocalValue": "Global in {0}",
+ "not an extension": "Das angegebene Objekt ist kein MCP-Server.",
+ "overwriting": "Der McP-Server „{0}“ wird aus {1} mit {2} überschrieben."
+ },
+ "vs/workbench/contrib/mcp/common/discovery/extensionMcpDiscovery": {
+ "invalidData": "Es wurde ein Array von MCP-Sammlungen erwartet",
+ "invalidId": "Es wurde erwartet, dass „id“ eine nicht leere Zeichenfolge ist.",
+ "invalidLabel": "Es wurde erwartet, dass „label“ eine nicht leere Zeichenfolge ist.",
+ "invalidWhen": "Es wurde erwartet, dass „when“ eine nicht leere Zeichenfolge ist."
+ },
+ "vs/workbench/contrib/mcp/common/discovery/nativeMcpDiscoveryAbstract": {
+ "onRemoteLabel": " am {0}"
+ },
+ "vs/workbench/contrib/mcp/common/mcpConfiguration": {
+ "app.mcp.args.command": "An das Skript übergebenen Argumente",
+ "app.mcp.dev": "Der Entwicklungsmodus für den Server ist aktiviert. Wenn diese Option vorhanden ist, wird der Server sofort gestartet und die Ausgabe wird in die Konsolenausgabe aufgenommen. Eigenschaften innerhalb des `dev`-Objekts können zusätzliches Verhalten konfigurieren.",
+ "app.mcp.dev.debug": "Wenn diese Option festgelegt ist, wird der MCP-Server mit der angegebenen Laufzeit im Debugging-Modus gestartet.",
+ "app.mcp.dev.debug.debugpyPath": "Pfad zur ausführbaren debugpy-Datei",
+ "app.mcp.dev.debug.type.node": "Debuggen Sie den MCP-Server mithilfe von Node.js.",
+ "app.mcp.dev.debug.type.python": "Debuggen Sie den MCP-Server mit Python und debugpy.",
+ "app.mcp.dev.watch": "Ein Globmuster oder eine Liste von Globmustern, die relativ zum Arbeitsbereichsordner überwacht werden sollen Der MCP-Server wird neu gestartet, wenn sich diese Dateien ändern.",
+ "app.mcp.env.command": "Umgebungsvariablen, die an den Server übergeben werden",
+ "app.mcp.envFile.command": "Pfad zu einer Datei mit Umgebungsvariablen für den Server.",
+ "app.mcp.json.command": "Der Befehl zum Ausführen des Servers.",
+ "app.mcp.json.cwd": "Das Arbeitsverzeichnis für den Serverbefehl Der Standardwert ist der Arbeitsbereichsordner, wenn er in einem Arbeitsbereich ausgeführt wird",
+ "app.mcp.json.headers": "Zusätzliche Header, die an den Server gesendet werden.",
+ "app.mcp.json.title": "Modellkontextprotokollserver",
+ "app.mcp.json.type": "Der Typ des Servers.",
+ "app.mcp.json.url": "Die URL des Streamable-HTTP- oder SSE-Endpunkts.",
+ "app.mcp.json.url.pattern": "Die URL muss mit „http://“ oder „https://“ beginnen.",
+ "id": "ID",
+ "mcp.discovery.source.claude-desktop": "Claude Desktop",
+ "mcp.discovery.source.claude-desktop.config": "Claude Desktop-Konfiguration (`claude_desktop_config.json`)",
+ "mcp.discovery.source.cursor-global": "Cursor (global)",
+ "mcp.discovery.source.cursor-global.config": "Globale Cursorkonfiguration (`~/.cursor/mcp.json`)",
+ "mcp.discovery.source.cursor-workspace": "Cursor (Arbeitsbereich)",
+ "mcp.discovery.source.cursor-workspace.config": "Cursor-Arbeitsbereichskonfiguration (`.cursor/mcp.json`)",
+ "mcp.discovery.source.windsurf": "Windsurf",
+ "mcp.discovery.source.windsurf.config": "Windsurf-Konfigurationen (`~/.codeium/windsurf/mcp_config.json`)",
+ "mcpServerDefinitionProviders": "MCP-Server",
+ "name": "Name",
+ "vscode.extension.contributes.mcp": "Trägt Modellkontextprotokollserver bei Benutzer sollten auch \"vscode.lm.registerMcpServerDefinitionProvider\" verwenden.",
+ "vscode.extension.contributes.mcp.id": "Eindeutige ID für die Sammlung",
+ "vscode.extension.contributes.mcp.label": "Der Anzeigename für die Sammlung",
+ "vscode.extension.contributes.mcp.when": "Eine Bedingung, die WAHR sein muss, um diese Sammlung zu aktivieren."
+ },
+ "vs/workbench/contrib/mcp/common/mcpContextKeys": {
+ "mcp.hasServersWithErrors.description": "Gibt an, ob MCP-Server mit Fehlern vorhanden sind.",
+ "mcp.hasUnknownTools.description": "Gibt an, ob MCP-Server mit unbekannten Tools vorhanden sind.",
+ "mcp.serverCount.description": "Kontextschlüssel mit der Anzahl der registrierten MCP-Server",
+ "mcp.toolsCount.description": "Kontextschlüssel mit der Anzahl der registrierten MCP-Tools"
+ },
+ "vs/workbench/contrib/mcp/common/mcpDevMode": {
+ "mcp.debug.nodeBinReq": "Der MCP-Server muss mit der ausführbaren Datei „node“ gestartet werden, um das Debuggen zu aktivieren, wurde jedoch mit „{0}“ gestartet.",
+ "mcp.debug.pythonBinReq": "Der MCP-Server muss mit der ausführbaren Datei „python“ gestartet werden, um das Debuggen zu aktivieren, wurde jedoch mit „{0}“ gestartet."
+ },
+ "vs/workbench/contrib/mcp/common/mcpLanguageModelToolContribution": {
+ "mcp.tool.warning": "Beachten Sie, dass MCP-Server oder bösartige Unterhaltungsinhalte versuchen könnten, „{0}“ mithilfe von Tools zu missbrauchen.",
+ "mcp.toolset": "{0}: Alle Tools",
+ "msg.ran": "{0} wurde ausgeführt ",
+ "msg.run": "{0} wird ausgeführt",
+ "msg.subtitle": "{0} (MCP-Server)",
+ "msg.title": "{0} ausführen"
+ },
+ "vs/workbench/contrib/mcp/common/mcpRegistry": {
+ "mcp.launchError": "Fehler beim Starten {0}: {1}",
+ "mcp.launchError.openConfig": "Konfiguration öffnen",
+ "mcp.trust.details": "Der MCP-Server {0} wurde aktualisiert. MCP-Server können Ihrer Chatsitzung Kontext hinzufügen und zu unerwartetem Verhalten führen. Möchten Sie diesem Server vertrauen und ihn ausführen?",
+ "mcp.trust.detailsMulti": "Es wurden mehrere aktualisierte MCP-Server entdeckt:\r\n\r\n{0}\r\n\r\n MCP-Server können Ihrer Chatsitzung Kontext hinzufügen und zu unerwartetem Verhalten führen. Möchten Sie diesen Servern vertrauen und sie ausführen?",
+ "mcp.trust.no": "Nicht vertrauen",
+ "mcp.trust.pick": "Vertrauenswürdig auswählen",
+ "mcp.trust.yes": "Vertrauensstellung",
+ "trustFromExt": "von {0}",
+ "trustTitleWithOrigin": "MCP-Server {0} vertrauen und ausführen?",
+ "trustTitleWithOriginMulti": "{0} MCP-Servern vertrauen und ausführen?"
+ },
+ "vs/workbench/contrib/mcp/common/mcpSamplingLog": {
+ "mcp.sampling.rpd": "{0} Anforderungen insgesamt in den letzten 7 Tagen."
+ },
+ "vs/workbench/contrib/mcp/common/mcpSamplingService": {
+ "cancel": "Abbrechen",
+ "configure": "Konfigurieren",
+ "mcp.sampling.allow.always": "Immer",
+ "mcp.sampling.allow.inSession": "In dieser Sitzung zulassen",
+ "mcp.sampling.allow.never": "Nie",
+ "mcp.sampling.allow.notNow": "Nicht jetzt",
+ "mcp.sampling.allowDuringChat.desc": "Der MCP-Server „{0}“ hat eine Anforderung für einen Sprachmodellaufruf gestellt. Möchten Sie ihm erlauben, während des Chats Anforderungen zu stellen?",
+ "mcp.sampling.allowDuringChat.title": "MCP-Tools von „{0}“ erlauben, LLM-Anforderungen zu stellen?",
+ "mcp.sampling.allowOutsideChat.desc": "Der MCP-Server „{0}“ hat eine Anforderung für einen Sprachmodellaufruf gestellt. Möchten Sie ihm erlauben, während des Chats außerhalb von Toolaufrufen Anforderungen zu stellen?",
+ "mcp.sampling.allowOutsideChat.title": "Dem MCP-Server „{0}“ LLM-Anforderungen erlauben?",
+ "mcp.sampling.needsModels": "Der MCP-Server „{0}“ hat eine Sprachmodellanforderung ausgelöst, verfügt jedoch nicht über Modelle auf der Zulassungsliste."
+ },
+ "vs/workbench/contrib/mcp/common/mcpServer": {
+ "mcp.command.showOutput": "Ausgabe anzeigen",
+ "mcpBadSchema": "Der MCP-Server \"{0}\" verfügt über Tools mit ungültigen Parametern, die ausgelassen werden.",
+ "mcpBadSchema.show": "Anzeigen",
+ "mcpBadSchema.tool": "Das Tool \"{0}\" hat ungültige JSON-Parameter:",
+ "mcpDebugPyHelp": "Der Befehl „{0}“ wurde nicht gefunden. Sie können den Pfad zu debugpy in der Option `dev.debug.debugpyPath` angeben.",
+ "mcpServerError": "Der MCP-Server {0} konnte nicht gestartet werden: {1}",
+ "mcpServerInstall": "{0} installieren",
+ "mcpServerNotFound": "Der Befehl \"{0}\" zum Ausführen von {1} wurde nicht gefunden.",
+ "mcpViewDocs": "Dokumentation anzeigen"
+ },
+ "vs/workbench/contrib/mcp/common/mcpServerConnection": {
+ "mcpServer.starting": "Server {0} wird gestartet.",
+ "mcpServer.state": "Verbindungsstatus: {0}",
+ "mcpServer.stopping": "Server {0} wird beendet"
+ },
+ "vs/workbench/contrib/mcp/common/mcpTypes": {
+ "mcpstate.error": "Fehler {0}",
+ "mcpstate.running": "Wird ausgeführt",
+ "mcpstate.starting": "Wird gestartet",
+ "mcpstate.stopped": "Beendet"
+ },
"vs/workbench/contrib/mergeEditor/browser/commands/commands": {
"layout.column": "Spaltenlayout",
"layout.mixed": "Gemischtes Layout",
- "merge.acceptAllInput1": "Accept All Changes from Left",
- "merge.acceptAllInput2": "Accept All Changes from Right",
- "merge.goToNextConflict": "Zum nächsten Konflikt wechseln",
- "merge.goToPreviousConflict": "Zum vorherigen Konflikt wechseln",
+ "layout.showBase": "Basis anzeigen",
+ "layout.showBaseCenter": "Basiscenter anzeigen",
+ "layout.showBaseTop": "Basis oben anzeigen",
+ "merge.acceptAllInput1": "Alle eingehenden Änderungen von links akzeptieren",
+ "merge.acceptAllInput2": "Alle aktuellen Änderungen von rechts akzeptieren",
+ "merge.goToNextUnhandledConflict": "Zum nächsten unbehandelten Konflikt gehen",
+ "merge.goToPreviousUnhandledConflict": "Zu vorherigem nicht behandeltem Konflikt gehen",
"merge.openBaseEditor": "Basisdatei öffnen",
"merge.toggleCurrentConflictFromLeft": "Aktuellen Konflikt von links umschalten",
"merge.toggleCurrentConflictFromRight": "Aktuellen Konflikt von rechts umschalten",
"mergeEditor": "Merge-Editor",
+ "mergeEditor.acceptAllCombination": "Alle Kombinationen annehmen",
+ "mergeEditor.acceptMerge": "Zusammenführen abschließen",
+ "mergeEditor.acceptMerge.unhandledConflicts.accept": "&&Mit Konflikten abschließen",
+ "mergeEditor.acceptMerge.unhandledConflicts.detail": "Die Datei enthält nicht behandelte Konflikte.",
+ "mergeEditor.acceptMerge.unhandledConflicts.message": "Möchten Sie die Zusammenführung von {0} abschließen?",
"mergeEditor.compareInput1WithBase": "Eingabe 1 mit Basis vergleichen",
"mergeEditor.compareInput2WithBase": "Eingabe 2 mit Basis vergleichen",
"mergeEditor.compareWithBase": "Mit Basis vergleichen",
+ "mergeEditor.resetChoice": "Auswahl für \"Mit Konflikten schließen\" zurücksetzen",
+ "mergeEditor.resetResultToBaseAndAutoMerge": "Ergebnis zurücksetzen",
+ "mergeEditor.resetResultToBaseAndAutoMerge.short": "Zurücksetzen",
+ "mergeEditor.toggleBetweenInputs": "Zwischen den Eingaben des Merge-Editors umschalten",
"openfile": "Datei öffnen",
+ "showNonConflictingChanges": "Nicht in Konflikt stehende Änderungen anzeigen",
"title": "Merge-Editor öffnen"
},
"vs/workbench/contrib/mergeEditor/browser/commands/devCommands": {
"merge.dev.copyState": "Merge-Editor-Status als JSON kopieren",
- "merge.dev.openState": "Merge-Editor-Status aus JSON öffnen",
- "mergeEditor.enterJSON": "JSON eingeben",
+ "merge.dev.loadContentsFromFolder": "Merge-Editorstatus aus Ordner laden",
+ "merge.dev.saveContentsToFolder": "Merge-Editorstatus in Ordner speichern",
+ "mergeEditor": "Merge-Editor (Entwicklung)",
"mergeEditor.name": "Merge-Editor",
"mergeEditor.noActiveMergeEditor": "Kein aktiver Merge-Editor",
- "mergeEditor.successfullyCopiedMergeEditorContents": "Der Zustand des Merge-Editors wurde erfolgreich kopiert"
+ "mergeEditor.selectFolderToSaveTo": "Ordner zum Speichern auswählen",
+ "mergeEditor.successfullyCopiedMergeEditorContents": "Der Zustand des Merge-Editors wurde erfolgreich kopiert",
+ "mergeEditor.successfullySavedMergeEditorContentsToFolder": "Der Status des Merge-Editors wurde erfolgreich im Ordner gespeichert."
},
"vs/workbench/contrib/mergeEditor/browser/mergeEditor.contribution": {
+ "diffAlgorithm.advanced": "Verwendet den erweiterten Vergleichsalgorithmus.",
+ "diffAlgorithm.legacy": "Verwendet den Legacyvergleichsalgorithmus.",
"name": "Merge-Editor"
},
+ "vs/workbench/contrib/mergeEditor/browser/mergeEditorAccessibilityHelp": {
+ "msg1": "Sie befinden sich in einem Merge-Editor.",
+ "msg2": "Navigieren Sie zwischen Mergingkonflikten mithilfe der Befehle „Zum nächsten unbehandelten Konflikt gehen“{0} und „Zum vorherigen unbehandelten Konflikt gehen“{1}.",
+ "msg3": "Führen Sie den Befehl „Merge-Editor: Alle eingehenden Änderungen von links akzeptieren{0}“ und „Merge-Editor: Alle aktuellen Änderungen von rechts akzeptieren“ aus{1}",
+ "msg4": "Schließen Sie den Merge ab{0}.",
+ "msg5": "Zwischen den Eingaben des Merge-Editors, eingehenden und aktuellen Änderungen {0} umschalten."
+ },
"vs/workbench/contrib/mergeEditor/browser/mergeEditorInput": {
- "name": "Mergen: {0}",
- "unhandledConflicts.cancel": "Abbrechen",
- "unhandledConflicts.detail1": "Mergekonflikte in diesem Editor bleiben unbehandelt.",
- "unhandledConflicts.detailN": "Mergekonflikte in {0} -Editoren bleiben unbehandelt.",
- "unhandledConflicts.discard": "Zusammenführenänderungen verwerfen",
- "unhandledConflicts.ignore": "Mit Konflikten fortfahren",
- "unhandledConflicts.msg": "Möchten Sie mit unbehandelten Konflikten fortfahren?",
- "unhandledConflicts.saveAndIgnore": "Speichern und mit Konflikten fortfahren"
+ "mergeEditor.input1": "Eingehend, linke Eingabe",
+ "mergeEditor.input2": "Aktuell, rechte Eingabe",
+ "mergeEditor.result": "Merge-Ergebnis",
+ "name": "Mergen: {0}"
+ },
+ "vs/workbench/contrib/mergeEditor/browser/mergeEditorInputModel": {
+ "acceptMerge": "&&Merge akzeptieren",
+ "detail1": "Das Zusammenführungsergebnis geht verloren, wenn Sie es nicht speichern.",
+ "detail1Conflicts": "Die Datei enthält nicht behandelte Konflikte. Das Zusammenführungsergebnis geht verloren, wenn Sie es nicht speichern.",
+ "detailN": "Die Zusammenführungsergebnisse gehen verloren, wenn Sie sie nicht speichern.",
+ "detailNConflicts": "Die Dateien enthalten nicht behandelte Konflikte. Die Zusammenführungsergebnisse gehen verloren, wenn Sie sie nicht speichern.",
+ "discard": "&&Nicht speichern",
+ "merge-editor.source": "Vor dem Auflösen von Konflikten im Merge-Editor",
+ "message1": "Möchten Sie das Zusammenführungsergebnis von {0}beibehalten?",
+ "messageN": "Möchten Sie das Zusammenführungsergebnis von {0} Dateien beibehalten?",
+ "noMoreWarn": "Nicht erneut fragen",
+ "save": "&&Speichern",
+ "saveTempFile.detail": "Dadurch wird das Mergeergebnis in die ursprüngliche Datei geschrieben und der Merge-Editor geschlossen.",
+ "saveTempFile.message": "Möchten Sie das Mergeergebnis akzeptieren?",
+ "saveWithConflict": "&&Mit Konflikten speichern",
+ "workspace.close": "&&Schließen",
+ "workspace.closeWithConflicts": "&&Mit Konflikten schließen",
+ "workspace.detail1.handled": "Ihre Änderungen gehen verloren, wenn Sie sie nicht speichern.",
+ "workspace.detail1.unhandled": "Die Datei enthält nicht behandelte Konflikte. Ihre Änderungen gehen verloren, wenn Sie sie nicht speichern.",
+ "workspace.detail1.unhandled.nonDirty": "Die Datei enthält nicht behandelte Konflikte.",
+ "workspace.detailN.handled": "Ihre Änderungen gehen verloren, wenn Sie sie nicht speichern.",
+ "workspace.detailN.unhandled": "Die Dateien enthalten nicht behandelte Konflikte. Ihre Änderungen gehen verloren, wenn Sie sie nicht speichern.",
+ "workspace.detailN.unhandled.nonDirty": "Die Dateien enthalten nicht behandelte Konflikte.",
+ "workspace.doNotSave": "&&Nicht speichern",
+ "workspace.message1": "Möchten Sie die Änderungen speichern, die Sie an \"{0}\" vorgenommen haben?",
+ "workspace.message1.nonDirty": "Möchten Sie den Zusammenführungseditor für {0} schließen?",
+ "workspace.messageN": "Möchten Sie die Änderungen speichern, die Sie an {0} Dateien vorgenommen haben?",
+ "workspace.messageN.nonDirty": "Möchten Sie {0} Merge-Editoren schließen?",
+ "workspace.save": "&&Speichern",
+ "workspace.saveWithConflict": "&&Mit Konflikten speichern"
+ },
+ "vs/workbench/contrib/mergeEditor/browser/mergeMarkers/mergeMarkersController": {
+ "conflictingLine": "1 in Konflikt stehende Zeile",
+ "conflictingLines": "{0} in Konflikt stehende Zeilen"
+ },
+ "vs/workbench/contrib/mergeEditor/browser/model/mergeEditorModel": {
+ "setInputHandled": "Behandelte Eingabe festlegen",
+ "undoMarkAsHandled": "Als behandelt markieren rückgängig machen"
},
"vs/workbench/contrib/mergeEditor/browser/view/colors": {
"mergeEditor.change.background": "Die Hintergrundfarbe für Änderungen.",
"mergeEditor.change.word.background": "Die Hintergrundfarbe für Wörter ändert sich.",
+ "mergeEditor.changeBase.background": "Die Hintergrundfarbe für Änderungen in der Basis.",
+ "mergeEditor.changeBase.word.background": "Die Hintergrundfarbe für Wortänderungen in der Basis.",
"mergeEditor.conflict.handled.minimapOverViewRuler": "Die Vordergrundfarbe für Änderungen in Eingabe 1",
"mergeEditor.conflict.handledFocused.border": "Die Rahmenfarbe behandelter fokussierter Konflikte.",
"mergeEditor.conflict.handledUnfocused.border": "Die Rahmenfarbe behandelter nicht fokussierten Konflikte.",
+ "mergeEditor.conflict.input1.background": "Die Hintergrundfarbe von Dekorationen in Eingabe 1.",
+ "mergeEditor.conflict.input2.background": "Die Hintergrundfarbe von Dekorationen in Eingabe 2.",
"mergeEditor.conflict.unhandled.minimapOverViewRuler": "Die Vordergrundfarbe für Änderungen in Eingabe 1",
"mergeEditor.conflict.unhandledFocused.border": "Die Rahmenfarbe nicht behandelter fokussierter Konflikte.",
- "mergeEditor.conflict.unhandledUnfocused.border": "Die Rahmenfarbe nicht behandelter nicht fokussierter Konflikte."
+ "mergeEditor.conflict.unhandledUnfocused.border": "Die Rahmenfarbe nicht behandelter nicht fokussierter Konflikte.",
+ "mergeEditor.conflictingLines.background": "Der Hintergrund des Texts \"Widersprüchliche Zeilen\"."
+ },
+ "vs/workbench/contrib/mergeEditor/browser/view/conflictActions": {
+ "accept": "Annehmen {0}",
+ "acceptBoth": "Kombination akzeptieren",
+ "acceptBoth0First": "Kombination akzeptieren ({0} zuerst)",
+ "acceptBothTooltip": "Akzeptieren Sie eine automatische Kombination beider Seiten im Ergebnisdokument.",
+ "acceptTooltip": "Akzeptieren Sie {0} im Ergebnisdokument.",
+ "append": "{0} anfügen",
+ "appendTooltip": "Fügen Sie {0} an das Ergebnisdokument an.",
+ "combine": "Kombination akzeptieren",
+ "ignore": "Ignorieren",
+ "manualResolution": "Manuelle Auflösung",
+ "manualResolutionTooltip": "Dieser Konflikt wurde manuell aufgelöst.",
+ "markAsHandledTooltip": "Diese Seite des Konflikts nicht übernehmen.",
+ "noChangesAccepted": "Keine Änderungen akzeptiert",
+ "noChangesAcceptedTooltip": "Die aktuelle Auflösung dieses Konflikts entspricht dem gemeinsamen Vorgängerelement der rechten und linken Änderungen.",
+ "remove": "\"{0}\" entfernen",
+ "removeTooltip": "Entfernen Sie {0} aus dem Ergebnisdokument.",
+ "resetToBase": "Auf Basis zurücksetzen",
+ "resetToBaseTooltip": "Setzen Sie diesen Konflikt auf den gemeinsamen Vorgänger der rechten und linken Änderungen zurück."
+ },
+ "vs/workbench/contrib/mergeEditor/browser/view/editors/baseCodeEditorView": {
+ "base": "Basis",
+ "compareWith": "Vergleich mit {0}",
+ "compareWithTooltip": "Unterschiede werden mit einer Hintergrundfarbe hervorgehoben."
},
"vs/workbench/contrib/mergeEditor/browser/view/editors/inputCodeEditorView": {
- "accept": "Annehmen",
+ "accept.conflicting": "Annehmen (Ergebnis ist fehlerhaft)",
+ "accept.excluded": "Annehmen",
+ "accept.first": "Annahme rückgängig machen",
+ "accept.second": "Annahme rückgängig machen (zurzeit zweite)",
+ "input1": "Eingang 1",
+ "input2": "Eingang 2",
"mergeEditor.accept": "Annehmen {0}",
"mergeEditor.acceptBoth": "Beides akzeptieren",
"mergeEditor.markAsHandled": "Als behandelt markieren",
"mergeEditor.swap": "Austausch"
},
"vs/workbench/contrib/mergeEditor/browser/view/editors/resultCodeEditorView": {
+ "allConflictHandled": "Alle Konflikte wurden behandelt. Die Zusammenführung kann jetzt abgeschlossen werden.",
+ "goToNextConflict": "Zum nächsten Konflikt wechseln",
"mergeEditor.remainingConflict": "{0} verbleibende Konflikte ",
- "mergeEditor.remainingConflicts": "{0} verbleibender Konflikt"
+ "mergeEditor.remainingConflicts": "{0} verbleibender Konflikt",
+ "result": "Ergebnis"
},
"vs/workbench/contrib/mergeEditor/browser/view/mergeEditor": {
- "editor.mergeEditor.label": "Merge-Editor",
- "input1": "Eingang 1",
- "input2": "Eingang 2",
- "mergeEditor": "Textzusammenführungs-Editor",
- "result": "Ergebnis"
+ "mergeEditor": "Textzusammenführungs-Editor"
+ },
+ "vs/workbench/contrib/mergeEditor/browser/view/viewModel": {
+ "noConflictMessage": "Zurzeit ist kein relevanter Konflikt vorhanden, der umgeschaltet werden kann."
},
"vs/workbench/contrib/mergeEditor/common/mergeEditor": {
"baseUri": "Der URI des Basers eines Merge-Editors.",
"editorLayout": "Der Layoutmodus eines Merge-Editors.",
"is": "Der Editor ist ein Merge-Editor.",
- "resultUri": "Der URI des Ergebnisses eines Merge-Editors."
+ "isr": "Der Editor ist der Ergebnis-Editor eines Merge-Editors.",
+ "resultUri": "Der URI des Ergebnisses eines Merge-Editors.",
+ "showBase": "Wenn der Merge-Editor die Basisversion anzeigt",
+ "showBaseAtTop": "Falls die Basis oben angezeigt werden soll",
+ "showNonConflictingChanges": "Wenn der Merge-Editor nicht in Konflikt stehende Änderungen anzeigt"
+ },
+ "vs/workbench/contrib/mergeEditor/electron-browser/devCommands": {
+ "merge.dev.openSelectionInTemporaryMergeEditor": "Auswahl im temporären Merge-Editor öffnen",
+ "merge.dev.openState": "Merge-Editor-Status aus JSON öffnen",
+ "mergeEditor": "Merge-Editor (Entwicklung)",
+ "mergeEditor.enterJSON": "JSON eingeben"
+ },
+ "vs/workbench/contrib/multiDiffEditor/browser/actions": {
+ "ExpandAllDiffs": "Alle Diffs erweitern",
+ "collapseAllDiffs": "Alle Diffs reduzieren",
+ "goToFile": "Datei öffnen",
+ "goToNextChange": "Zur nächsten Änderung wechseln",
+ "goToPreviousChange": "Zur vorherigen Änderung wechseln"
+ },
+ "vs/workbench/contrib/multiDiffEditor/browser/icons.contribution": {
+ "multiDiffEditorLabelIcon": "Symbol der Bezeichnung des Multi-Diff-Editors."
+ },
+ "vs/workbench/contrib/multiDiffEditor/browser/multiDiffEditor.contribution": {
+ "name": "Multi-Diff-Editor"
+ },
+ "vs/workbench/contrib/multiDiffEditor/browser/multiDiffEditorInput": {
+ "name": "Multi-Diff-Editor",
+ "nameWithFiles": "{0} ({1} Dateien)",
+ "nameWithOneFile": "{0} (1 Datei)"
+ },
+ "vs/workbench/contrib/multiDiffEditor/browser/scmMultiDiffSourceResolver": {
+ "openChanges": "Offene Änderungen"
},
"vs/workbench/contrib/notebook/browser/contrib/cellCommands/cellCommands": {
"notebookActions.changeCellToCode": "Zelle in Code ändern",
@@ -6914,22 +11695,41 @@
"notebookActions.expandCellOutput": "Zellenausgabe aufklappen",
"notebookActions.joinCellAbove": "Mit vorheriger Zelle verknüpfen",
"notebookActions.joinCellBelow": "Mit nächster Zelle verknüpfen",
+ "notebookActions.joinSelectedCells": "Ausgewählte Zellen verbinden",
"notebookActions.moveCellDown": "Zelle nach unten verschieben",
"notebookActions.moveCellUp": "Zelle nach oben verschieben",
"notebookActions.splitCell": "Zelle teilen",
- "notebookActions.toggleOutputs": "Ausgaben umschalten"
+ "notebookActions.toggleOutputs": "Ausgaben umschalten",
+ "notebookActions.toggleScrolling": "Bildlaufzellenausgabe umschalten"
+ },
+ "vs/workbench/contrib/notebook/browser/contrib/cellDiagnostics/cellDiagnosticsActions": {
+ "cellCommands.quickFix.noneMessage": "Keine Codeaktionen verfügbar",
+ "notebookActions.cellFailureActions": "Zellenfehleraktionen anzeigen",
+ "notebookActions.chatExplainCellError": "Zellenfehler erklären",
+ "notebookActions.chatFixCellError": "Zellenfehler beheben"
+ },
+ "vs/workbench/contrib/notebook/browser/contrib/cellDiagnostics/diagnosticCellStatusBarContrib": {
+ "notebook.cell.status.diagnostic": "Schnellaktionen-{0}"
},
"vs/workbench/contrib/notebook/browser/contrib/cellStatusBar/executionStatusBarItemController": {
"notebook.cell.status.executing": "Wird ausgeführt",
"notebook.cell.status.failed": "Fehler",
"notebook.cell.status.pending": "Ausstehend",
- "notebook.cell.status.success": "Erfolgreich"
+ "notebook.cell.status.success": "Erfolgreich",
+ "notebook.cell.statusBar.timerTooltip": "**Letzte Ausführung** {0}\r\n\r\n**Ausführungszeit** {1}\r\n\r\n**Mehraufwand** {2}\r\n\r\n**Renderzeiten**\r\n\r\n{3}",
+ "notebook.cell.statusBar.timerTooltip.reportIssueFootnote": "Verwenden Sie die obigen Links, um ein Problem mithilfe des Problemberichts zu melden.",
+ "notebook.cell.statusBar.timerVerbose": "Letzte Ausführung: {0}, Dauer: {1}"
},
"vs/workbench/contrib/notebook/browser/contrib/cellStatusBar/statusBarProviders": {
"notebook.cell.status.autoDetectLanguage": "Erkannte Sprache akzeptieren: {0}",
- "notebook.cell.status.language": "Zellensprachmodus auswählen"
+ "notebook.cell.status.language": "Zellensprachmodus auswählen",
+ "notebook.cell.status.searchLanguageExtensions": "Unbekannte Zellensprache. Klicken Sie, um nach {0}-Erweiterungen zu suchen."
+ },
+ "vs/workbench/contrib/notebook/browser/contrib/chat/notebookChatUtils": {
+ "notebookOutputCellLabel": "{0} • Zelle {1} • Ausgabe {2}"
},
"vs/workbench/contrib/notebook/browser/contrib/clipboard/notebookClipboard": {
+ "notebook.cell.output.selectAll": "Alle auswählen",
"notebookActions.copy": "Zelle kopieren",
"notebookActions.cut": "Zelle ausschneiden",
"notebookActions.paste": "Zelle einfügen",
@@ -6937,25 +11737,19 @@
"toggleNotebookClipboardLog": "Problembehandlung der Notizbuchzwischenablage umschalten"
},
"vs/workbench/contrib/notebook/browser/contrib/editorStatusBar/editorStatusBar": {
- "current1": "Derzeit ausgewählt",
- "current2": "{0} – Derzeit ausgewählt",
- "installSuggestedKernel": "Vorgeschlagene Erweiterungen installieren",
"kernel.select.label": "Kernel auswählen",
"notebook.activeCellStatusName": "Notebook-Editor – Auswahl",
+ "notebook.indentation": "Notebookeinzug",
"notebook.info": "Notebook-Kernelinformationen",
"notebook.multiActiveCellIndicator": "Zelle {0} ({1} ausgewählt)",
"notebook.select": "Notebook-Kernel – Auswahl",
"notebook.singleActiveCellIndicator": "Zelle {0} von {1}",
- "notebookActions.selectKernel": "Kernel für Notebook auswählen",
- "notebookActions.selectKernel.args": "Notebook-Kernelargumente",
- "otherKernelKinds": "Sonstiges",
- "prompt.placeholder.change": "Kernel für \"{0}\" ändern",
- "prompt.placeholder.select": "Kernel für \"{0}\" auswählen",
- "searchForKernels": "Durchsuchen Sie den Marktplatz nach Kernel-Erweiterungen",
- "suggestedKernels": "Vorgeschlagen",
+ "selectNotebookIndentation": "Einzug auswählen",
"tooltop": "{0} (Vorschlag)"
},
"vs/workbench/contrib/notebook/browser/contrib/find/notebookFind": {
+ "notebook.findNext.fromWidget": "Nächstes suchen",
+ "notebook.findPrevious.fromWidget": "Vorheriges suchen",
"notebookActions.findInNotebook": "In Notebook suchen",
"notebookActions.hideFind": "Suche in Notebook ausblenden"
},
@@ -6969,9 +11763,10 @@
"label.replaceAllButton": "Alle ersetzen",
"label.replaceButton": "Ersetzen",
"label.toggleReplaceButton": "Ersetzen umschalten",
+ "label.toggleSelectionFind": "In Auswahl suchen",
"notebook.find.filter.filterAction": "Filter suchen",
"notebook.find.filter.findInCodeInput": "Codezellenquelle",
- "notebook.find.filter.findInCodeOutput": "Zellenausgabe",
+ "notebook.find.filter.findInCodeOutput": "Codezellenausgabe",
"notebook.find.filter.findInMarkupInput": "Markdownquelle",
"notebook.find.filter.findInMarkupPreview": "Gerendertes Markdown",
"placeholder.find": "Suchen",
@@ -6985,6 +11780,7 @@
"vs/workbench/contrib/notebook/browser/contrib/format/formatting": {
"format.title": "Notebook formatieren",
"formatCell.label": "Zelle formatieren",
+ "formatCells.label": "Zellen formatieren",
"label": "Notebook formatieren"
},
"vs/workbench/contrib/notebook/browser/contrib/gettingStarted/notebookGettingStarted": {
@@ -6993,6 +11789,13 @@
"vs/workbench/contrib/notebook/browser/contrib/layout/layoutActions": {
"notebook.toggleCellToolbarPosition": "Position der Zellensymbolleiste umschalten"
},
+ "vs/workbench/contrib/notebook/browser/contrib/multicursor/notebookMulticursor": {
+ "addFindMatchToSelection": "Auswahl zur nächsten Übereinstimmungssuche hinzufügen",
+ "deleteLeftMultiSelection": "Links löschen",
+ "deleteRightMultiSelection": "Rechts löschen",
+ "exitMultiSelection": "Multicursormodus beenden",
+ "selectAllFindMatches": "Alle Vorkommen auswählen und Übereinstimmung suchen"
+ },
"vs/workbench/contrib/notebook/browser/contrib/navigation/arrow": {
"cursorMoveDown": "Fokus auf nächsten Zellen-Editor",
"cursorMoveUp": "Fokus auf vorherigen Zellen-Editor",
@@ -7004,21 +11807,90 @@
"focusLastCell": "Fokus auf letzte Zelle",
"focusOutput": "Fokus in Ausgabe der aktiven Zelle",
"focusOutputOut": "Fokus aus Ausgabe der aktiven Zelle",
+ "notebook.cell.webviewHandledEvents": "Schlüsselzuordnungen, die vom fokussierten Element in der Zellenausgabe behandelt werden sollen.",
"notebook.navigation.allowNavigateToSurroundingCells": "Wenn der aktivierte Cursor zur nächsten/vorherigen Zelle navigieren kann, wenn sich der aktuelle Cursor im Zellen-Editor an der ersten/letzten Zeile befindet.",
"notebookActions.centerActiveCell": "Aktive Zelle zentrieren"
},
+ "vs/workbench/contrib/notebook/browser/contrib/notebookVariables/notebookInlineVariables": {
+ "clearAllInlineValues": "Alle Inlinewerte löschen"
+ },
+ "vs/workbench/contrib/notebook/browser/contrib/notebookVariables/notebookVariableCommands": {
+ "copyWorkspaceVariableValue": "Wert kopieren",
+ "executeNotebookVariableProvider": "Anbieter von Notebookvariablen ausführen"
+ },
+ "vs/workbench/contrib/notebook/browser/contrib/notebookVariables/notebookVariables": {
+ "notebookVariables": "Notebookvariablen"
+ },
+ "vs/workbench/contrib/notebook/browser/contrib/notebookVariables/notebookVariablesDataSource": {
+ "notebook.indexedChildrenLimitReached": "Anzeigelimit erreicht"
+ },
+ "vs/workbench/contrib/notebook/browser/contrib/notebookVariables/notebookVariablesTree": {
+ "notebook.ReplVariables": "REPL-Variablen",
+ "notebook.notebookVariables": "Notebookvariablen",
+ "notebookVariableAriaLabel": "Variable \"{0}\", Wert \"{1}\""
+ },
"vs/workbench/contrib/notebook/browser/contrib/outline/notebookOutline": {
- "breadcrumbs.showCodeCells": "Bei Aktivierung sind Codezellen in Notebook-Breadcrumbs enthalten.",
- "empty": "Leere Zelle",
- "outline.showCodeCells": "Wenn diese Option aktiviert ist, zeigt die Notebookgliederung Codezellen an."
+ "breadcrumbs.showCodeCells": "Wenn diese Option aktiviert ist, sind Codezellen in Notebook-Breadcrumbs enthalten.",
+ "filter": "Filtereinträge",
+ "notebook.gotoSymbols.showAllSymbols": "Wenn diese Option aktiviert ist, zeigt die Schnellauswahl zum Wechseln zu Symbolen vollständige Codesymbole aus dem Notebook sowie Markdownheader an.",
+ "outline.showCodeCellSymbols": "Wenn diese Option aktiviert ist, zeigt die Notebookgliederung Codezellensymbole an. Erfordert, dass „#notebook.outline.showCodeCells#“ aktiviert ist.",
+ "outline.showCodeCells": "Wenn diese Option aktiviert ist, zeigt die Notebookgliederung Codezellen an.",
+ "outline.showMarkdownHeadersOnly": "Wenn diese Option aktiviert ist, zeigt die Notebookgliederung nur Markdownzellen an, die eine Kopfzeile enthalten.",
+ "toggleCodeCellSymbols": "Codezellensymbole",
+ "toggleCodeCells": "Codezellen",
+ "toggleShowMarkdownHeadersOnly": "Nur Markdownheader"
},
"vs/workbench/contrib/notebook/browser/contrib/profile/notebookProfile": {
"setProfileTitle": "Profil festlegen"
},
+ "vs/workbench/contrib/notebook/browser/contrib/saveParticipants/saveParticipants": {
+ "codeAction.apply": "Codeaktion \"{0}\" wird angewendet.",
+ "codeaction.get2": "Codeaktionen werden aus \"{0}\" abgerufen. ([Konfigurieren]({1}))",
+ "formatNotebook": "Notebook formatieren",
+ "insertFinalNewLine": "Abschließende neue Zeile einfügen",
+ "notebookFormatSave.formatting": "Formatierung",
+ "notebookSaveParticipants.cellCodeActions": "Cell-Codeaktionen werden ausgeführt",
+ "notebookSaveParticipants.formatCodeActions": "Ausführen von Aktionen zum Formatieren von Code",
+ "notebookSaveParticipants.notebookCodeActions": "Codeaktionen für \"Notebook\" werden ausgeführt",
+ "trimNotebookNewlines": "Letzte neue Zeilen kürzen",
+ "trimNotebookWhitespace": "Notebook: Nachgestelltes Leerzeichen kürzen"
+ },
"vs/workbench/contrib/notebook/browser/contrib/troubleshoot/layout": {
"workbench.notebook.clearNotebookEdtitorTypeCache": "Notebook-Editor-Typ-Cache löschen",
"workbench.notebook.inspectLayout": "Notebook-Layout überprüfen",
- "workbench.notebook.toggleLayoutTroubleshoot": "Problembehandlung beim Umschalten des Layouts"
+ "workbench.notebook.toggleLayoutTroubleshoot": "Problembehandlung beim Umschalten des Notizbuchlayouts"
+ },
+ "vs/workbench/contrib/notebook/browser/controller/cellOperations": {
+ "notebookActions.joinSelectedCells": "Zellen unterschiedlicher Art können nicht verbunden werden.",
+ "notebookActions.joinSelectedCells.label": "Notebook-Zellen verbinden"
+ },
+ "vs/workbench/contrib/notebook/browser/controller/cellOutputActions": {
+ "imageFiles": "Bilddateien",
+ "notebookActions.copyOutput": "Zellenausgabe kopieren",
+ "notebookActions.openOutputInEditor": "Zellenausgabe im Text-Editor öffnen",
+ "notebookActions.openOutputInNotebookOutputEditor": "In Ausgabevorschau öffnen",
+ "notebookActions.saveOutputImage": "Bild speichern",
+ "notebookActions.showAllOutput": "Leere Ausgaben anzeigen"
+ },
+ "vs/workbench/contrib/notebook/browser/controller/chat/cellChatActions": {
+ "notebook.apply1": "Akzeptieren und ausführen",
+ "notebook.apply2": "Akzeptieren und ausführen",
+ "notebook.apply3": "Änderungen annehmen und Zelle ausführen",
+ "notebookActions.menu.insertCode.ontoolbar": "Generieren",
+ "notebookActions.menu.insertCode.tooltip": "Chat starten, um Code zu generieren",
+ "notebookActions.menu.insertCodeCellWithChat": "Generieren",
+ "notebookActions.menu.insertCodeCellWithChat.tooltip": "Chat starten, um Code zu generieren"
+ },
+ "vs/workbench/contrib/notebook/browser/controller/chat/notebook.chat.contribution": {
+ "chatContext.notebook.kernelVariable": "Kernelvariable …",
+ "chatContext.notebook.kernelVariable.placeholder": "Auswählen einer Kernelvariablen",
+ "noKernelVariables": "Keine Kernelvariablen gefunden",
+ "notebookActions.addOutputToChat": "Zellenausgabe zum Chat hinzufügen",
+ "pickKernelVariableLabel": "Eine Variable aus dem Kernel auswählen",
+ "selectKernelVariablePlaceholder": "Auswählen einer Kernelvariablen"
+ },
+ "vs/workbench/contrib/notebook/browser/controller/chat/notebookChatContext": {
+ "notebookChatAgentRegistered": "Gibt an, ob ein Chatagent für das Notizbuch registriert ist."
},
"vs/workbench/contrib/notebook/browser/controller/coreActions": {
"miShare": "Freigeben",
@@ -7029,17 +11901,28 @@
"vs/workbench/contrib/notebook/browser/controller/editActions": {
"autoDetect": "Automatische Erkennung",
"changeLanguage": "Zellsprache ändern",
- "clearAllCellsOutputs": "Ausgaben aller Zellen löschen",
+ "clearAllCellsOutputs": "Alle Ausgaben löschen",
"clearCellOutputs": "Zellenausgaben löschen",
+ "commentSelectedCells": "Ausgewählte Zellen kommentieren",
+ "confirmDeleteButton": "Löschen",
+ "confirmDeleteButtonMessage": "Diese Zelle wird ausgeführt. Möchten Sie sie wirklich löschen?",
"detectLanguage": "Erkannte Sprache für Zelle akzeptieren",
+ "doNotAskAgain": "Nicht erneut fragen",
+ "indentConvert": "Datei konvertieren",
+ "indentView": "Ansicht ändern",
"languageDescription": "({0}) – aktuelle Sprache",
"languageDescriptionConfigured": "({0})",
"languagesPicks": "Sprachen (Bezeichner)",
"noDetection": "Zellsprache kann nicht erkannt werden",
+ "noNotebookEditor": "Momentan ist kein Notebook-Editor aktiv",
+ "noWritableCodeEditor": "Der aktive Notebook-Editor ist schreibgeschützt.",
"notebookActions.deleteCell": "Zelle löschen",
"notebookActions.editCell": "Zelle bearbeiten",
"notebookActions.quitEdit": "Bearbeitung der Zelle beenden",
- "pickLanguageToConfigure": "Sprachmodus auswählen"
+ "notebookActions.quitEditAllCells": "Bearbeitung aller Zellen beenden",
+ "pickAction": "Aktion auswählen",
+ "pickLanguageToConfigure": "Sprachmodus auswählen",
+ "selectNotebookIndentation": "Einzug auswählen"
},
"vs/workbench/contrib/notebook/browser/controller/executeActions": {
"notebookActions.cancel": "Zellenausführung beenden",
@@ -7051,10 +11934,11 @@
"notebookActions.executeAndSelectBelow": "Notebook-Zelle ausführen und unten auswählen",
"notebookActions.executeBelow": "\"Zelle ausführen\" und \"Unterhalb\"",
"notebookActions.executeNotebook": "Alle ausführen",
+ "notebookActions.interruptNotebook": "Unterbrechen",
"notebookActions.renderMarkdown": "Alle Markdownzellen rendern",
"revealLastFailedCell": "Zur Zelle \"Zuletzt fehlgeschlagen\" wechseln",
- "revealLastFailedCellShort": "Gehe zu",
- "revealRunningCell": "Go to Running Cell",
+ "revealLastFailedCellShort": "Zur Zelle \"Zuletzt fehlgeschlagen\" wechseln",
+ "revealRunningCell": "Zur aktiven Zelle wechseln",
"revealRunningCellShort": "Gehe zu"
},
"vs/workbench/contrib/notebook/browser/controller/foldingController": {
@@ -7081,16 +11965,48 @@
},
"vs/workbench/contrib/notebook/browser/controller/layoutActions": {
"customizeNotebook": "Notebooks anpassen...",
+ "mitoggleNotebookStickyScroll": "&&Fixierter Bildlauf für Notebook umschalten",
"notebook.placeholder": "Zu speichernde Einstellungsdatei",
"notebook.saveMimeTypeOrder": "Mimetype-Anzeigereihenfolge speichern",
"notebook.showLineNumbers": "Notebook-Zeilennummern anzeigen",
"notebook.toggleBreadcrumb": "Breadcrumbs umschalten",
"notebook.toggleCellToolbarPosition": "Position der Zellensymbolleiste umschalten",
"notebook.toggleLineNumbers": "Notebook-Zeilennummern umschalten",
+ "notebookStickyScroll": "Fixierter Bildlauf für Notebook umschalten",
"saveTarget.machine": "Benutzereinstellungen",
"saveTarget.workspace": "Arbeitsbereichseinstellungen",
+ "toggleStickyScroll": "Fixierter Bildlauf für Notebook umschalten",
"workbench.notebook.layout.configure.label": "Notebook-Layout anpassen",
- "workbench.notebook.layout.select.label": "Zwischen Notebook-Layouts auswählen"
+ "workbench.notebook.layout.select.label": "Zwischen Notebook-Layouts auswählen",
+ "workbench.notebook.layout.webview.reset.label": "Notebook-Webansicht zurücksetzen"
+ },
+ "vs/workbench/contrib/notebook/browser/controller/notebookIndentationActions": {
+ "changeTabDisplaySize": "Anzeigegröße der Registerkarte ändern",
+ "convertIndentation": "Einzug konvertieren",
+ "convertIndentationToSpaces": "Einzug in Leerzeichen konvertieren",
+ "convertIndentationToTabs": "Einzug in Tabstopps konvertieren",
+ "indentUsingSpaces": "Einzug mithilfe von Leerzeichen",
+ "indentUsingTabs": "Einzug mithilfe von Registerkarten",
+ "selectTabWidth": "Tabulatorgröße für aktuelle Datei auswählen"
+ },
+ "vs/workbench/contrib/notebook/browser/controller/sectionActions": {
+ "expandSection": "Abschnitt aufklappen",
+ "foldSection": "Abschnitt aufklappen",
+ "miexpandSection": "&&Abschnitt aufklappen",
+ "mifoldSection": "&&Abschnitt aufklappen",
+ "mirunCell": "&&Zelle ausführen",
+ "mirunCellsInSection": "&&Zellen im Abschnitt ausführen",
+ "runCell": "Zelle ausführen",
+ "runCellsInSection": "Zellen im Abschnitt ausführen"
+ },
+ "vs/workbench/contrib/notebook/browser/controller/variablesActions": {
+ "notebookActions.openVariablesView": "Variablen"
+ },
+ "vs/workbench/contrib/notebook/browser/diff/diffComponents": {
+ "hiddenCell": "{0} ausgeblendete Zelle",
+ "hiddenCells": "{0} ausgeblendete Zellen",
+ "hideUnchangedCells": "Unveränderte Zellen ausblenden",
+ "showUnchangedCells": "Unveränderte Zellen anzeigen"
},
"vs/workbench/contrib/notebook/browser/diff/diffElementOutputs": {
"builtinRenderInfo": "Integriert",
@@ -7102,81 +12018,142 @@
"promptChooseMimeTypeInSecure.placeHolder": "Wählen Sie den MIME-Typ aus, der für die aktuelle Ausgabe gerendert werden soll. RTF-MIME-Typen sind nur verfügbar, wenn das Notebook vertrauenswürdig ist."
},
"vs/workbench/contrib/notebook/browser/diff/notebookDiffActions": {
+ "goToCell": "Zur Zelle wechseln",
+ "hideUnchangedCells": "Unveränderte Zellen ausblenden",
+ "ignoreTrimWhitespace.label": "Unterschiede zwischen vorangestellten/nachfolgenden Leerzeichen anzeigen",
+ "notebook.diff.action.next.title": "Nächste Änderung anzeigen",
+ "notebook.diff.action.previous.title": "Vorherige Änderung anzeigen",
"notebook.diff.cell.revertInput": "Eingabe wiederherstellen",
"notebook.diff.cell.revertMetadata": "Metadaten wiederherstellen",
"notebook.diff.cell.revertOutputs": "Ausgaben wiederherstellen",
"notebook.diff.cell.switchOutputRenderingStyleToText": "Ausgaberendering umschalten",
+ "notebook.diff.cell.toggleCollapseUnchangedRegions": "\"Unveränderte Bereiche reduzieren\" umschalten",
"notebook.diff.ignoreMetadata": "Metadatenunterschiede ausblenden",
"notebook.diff.ignoreOutputs": "Ausgabeunterschiede ausblenden",
+ "notebook.diff.inline.toggle.title": "Inlineansicht umschalten",
+ "notebook.diff.openFile": "Datei öffnen",
+ "notebook.diff.revertMetadata": "Notebook-Metadaten zurücksetzen",
"notebook.diff.showMetadata": "Metadatenunterschiede anzeigen",
"notebook.diff.showOutputs": "Ausgabeunterschiede anzeigen",
- "notebook.diff.switchToText": "Text-Diff-Editor öffnen"
+ "notebook.diff.switchToText": "Text-Diff-Editor öffnen",
+ "notebook.diff.toggleInline": "Aktivieren Sie den Befehl, um das experimentelle Notebook inline diff Editor umzuschalten.",
+ "showUnchangedCells": "Unveränderte Zellen anzeigen"
},
- "vs/workbench/contrib/notebook/browser/diff/notebookTextDiffEditor": {
+ "vs/workbench/contrib/notebook/browser/diff/notebookDiffEditor": {
"notebookTreeAriaLabel": "Notebook-Textdiff"
},
- "vs/workbench/contrib/notebook/browser/extensionPoint": {
- "contributes.notebook.provider": "Fügt Notebook-Dokumentanbieter hinzu.",
- "contributes.notebook.provider.displayName": "Menschlich lesbarer Name des Notebooks.",
- "contributes.notebook.provider.selector": "Globs, für die das Notebook vorgesehen ist.",
- "contributes.notebook.provider.selector.filenamePattern": "Glob, für den das Notizbuch aktiviert ist.",
- "contributes.notebook.provider.viewType": "Der Typ des Notizbuchs.",
- "contributes.notebook.renderer": "Fügt Anbieter für das Rendern der Notebook-Ausgabe hinzu.",
- "contributes.notebook.renderer.displayName": "Menschlich lesbarer Name des Notebook-Ausgaberenderers.",
- "contributes.notebook.renderer.entrypoint": "Datei, die in der Webansicht geladen werden soll, um die Erweiterung zu rendern.",
- "contributes.notebook.renderer.entrypoint.extends": "Vorhandener Renderer, der durch diesen erweitert wird",
- "contributes.notebook.renderer.hardDependencies": "Liste der Kernel-Abhängigkeiten, die der Renderer erfordert. Wenn eine der Abhängigkeiten in \"NotebookKernel.preloads\" vorhanden ist, kann der Renderer verwendet werden.",
- "contributes.notebook.renderer.optionalDependencies": "Liste der Soft-Kernel-Abhängigkeiten, von denen der Renderer Gebrauch machen kann. Wenn eine der Abhängigkeiten in \"NotebookKernel.preloads\" vorhanden ist, wird der Renderer vor Renderern bevorzugt, die nicht mit dem Kernel interagieren.",
- "contributes.notebook.renderer.requiresMessaging": "Definiert, wie und ob der Renderer über „createRendererMessaging“ mit einem Erweiterungshost kommunizieren muss. Renderer mit höheren Messaginganforderungen funktionieren möglicherweise nicht in allen Umgebungen.",
- "contributes.notebook.renderer.requiresMessaging.always": "Messaging ist erforderlich. Der Renderer wird nur verwendet, wenn er Teil einer Erweiterung ist, die auf einem Erweiterungshost ausgeführt werden kann.",
- "contributes.notebook.renderer.requiresMessaging.never": "Der Renderer erfordert kein Messaging.",
- "contributes.notebook.renderer.requiresMessaging.optional": "Der Renderer ist besser mit dem Messaging verfügbar, aber er ist nicht erforderlich.",
- "contributes.notebook.renderer.viewType": "Eindeutiger Bezeichner des Notebook-Ausgaberenderers.",
- "contributes.notebook.selector": "Globs, für die das Notebook vorgesehen ist.",
- "contributes.notebook.selector.provider.excludeFileNamePattern": "Globmuster, für das das Notizbuch deaktiviert ist.",
- "contributes.priority": "Steuert, ob der benutzerdefinierte Editor automatisch aktiviert wird, wenn der Benutzer eine Datei öffnet. Diese Einstellung kann von Benutzern über die Einstellung \"workbench.editorAssociations\" außer Kraft gesetzt werden.",
- "contributes.priority.default": "Der Editor wird automatisch verwendet, wenn der Benutzer eine Ressource öffnet, sofern keine anderen benutzerdefinierten Standard-Editoren für diese Ressource registriert sind.",
- "contributes.priority.option": "Der Editor wird nicht automatisch verwendet, wenn der Benutzer eine Ressource öffnet. Ein Benutzer kann jedoch mit dem Befehl \"Erneut öffnen mit\" zum Editor wechseln."
+ "vs/workbench/contrib/notebook/browser/diff/notebookDiffEditorBrowser": {
+ "notebook.diffEditor.allCollapsed": "Gibt an, ob alle Zellen im Notebook-Diff-Editor reduziert sind.",
+ "notebook.diffEditor.hasUnchangedCells": "Gibt an, ob im Notebook-Diff-Editor unveränderte Zellen vorhanden sind.",
+ "notebook.diffEditor.item.kind": "Die Art des Elements im Notebook-Diff-Editor, Zelle, Metadaten oder Ausgabe.",
+ "notebook.diffEditor.item.state": "Der Vergleichsstatus des Elements im Notebook-Diff-Editor, Löschen, Einfügen, geändert oder unverändert.",
+ "notebook.diffEditor.unchangedCellsAreHidden": "Gibt an, ob im Notebook-Diff-Editor unveränderte Zellen ausgeblendet sind."
+ },
+ "vs/workbench/contrib/notebook/browser/diff/notebookDiffList": {
+ "notebook.diff.hiddenCells.expandAll": "Doppelklicken zum Anzeigen"
+ },
+ "vs/workbench/contrib/notebook/browser/diff/notebookMultiDiffEditor": {
+ "notebookCellLabel": "Zelle {0}",
+ "notebookCellMetadataLabel": "Metadaten",
+ "notebookCellOutputLabel": "Ausgabe"
},
"vs/workbench/contrib/notebook/browser/notebook.contribution": {
"insertToolbarLocation.betweenCells": "Eine Symbolleiste, die beim Daraufzeigen zwischen Zellen angezeigt wird.",
"insertToolbarLocation.both": "Beide Symbolleisten.",
"insertToolbarLocation.hidden": "Die \"Einfügen\"-Aktionen werden nirgendwo angezeigt.",
"insertToolbarLocation.notebookToolbar": "Die Symbolleiste oben im Notizbuch-Editor.",
+ "notebook.VariablesView.description": "Experimentelle Notebookvariablenansicht im Debugbereich aktivieren.",
+ "notebook.backup.sizeLimit": "Das Limit der Notebook-Ausgabegröße in Kilobytes (KB), bei dem Notebook-Dateien nicht mehr für Hot Reload gesichert werden. Verwenden Sie 0 für unbegrenzte Anzahl.",
+ "notebook.cellExecutionTimeVerbosity.default.description": "Die Ausführungsdauer der Zelle ist sichtbar. Weitere Informationen finden Sie in der QuickInfo zum Daraufzeigen.",
+ "notebook.cellExecutionTimeVerbosity.description": "Steuert die Ausführlichkeit der Zellenausführungszeit in der Zellenstatusleiste.",
+ "notebook.cellExecutionTimeVerbosity.verbose.description": "Zeitstempel und Dauer der letzten Ausführung der Zelle sind sichtbar. Weitere Informationen finden Sie in der QuickInfo zum Daraufzeigen.",
+ "notebook.cellFailureDiagnostics": "Verfügbare Diagnose für Zellfehler anzeigen.",
+ "notebook.cellGenerate": "Experimentelle Generierungsaktion zum Erstellen einer Codezelle mit aktiviertem Inlinechat aktivieren.",
"notebook.cellToolbarLocation.description": "Hiermit wird angegeben, wo die Zellensymbolleiste angezeigt bzw. ob sie ausgeblendet werden soll.",
"notebook.cellToolbarLocation.viewType": "Die Position der Zellensymbolleiste für bestimmte Dateitypen konfigurieren",
"notebook.cellToolbarVisibility.description": "Gibt an, ob die Zellensymbolleiste beim Daraufzeigen oder Klicken angezeigt werden soll.",
"notebook.compactView.description": "Steuert, ob der Notebook-Editor in kompakter Darstellung gerendert werden soll. Beim Einschalten wird z. B. die Breite des linken Rands verringert.",
+ "notebook.confirmDeleteRunningCell": "Hiermit wird gesteuert, ob eine Bestätigungsaufforderung zum Löschen einer ausgeführten Zelle erforderlich ist.",
"notebook.consolidatedOutputButton.description": "Steuert, ob Ausgabeaktionen in der Symbolleiste für die Ausgabe gerendert werden sollen.",
"notebook.consolidatedRunButton.description": "Steuert, ob neben der Schaltfläche \"Ausführen\" zusätzliche Aktionen in einer Dropdownliste angezeigt werden.",
+ "notebook.diff.enableOverviewRuler.description": "Gibt an, ob das Übersichtslineal im Diff-Editor für Notebook gerendert werden soll.",
"notebook.diff.enablePreview.description": "Gibt an, ob der erweiterte Text-Diff-Editor für Notebook verwendet werden soll.",
+ "notebook.disableOutputFilePathLinks": "Gibt an, ob Dateipfadlinks in der Ausgabe von Notebookzellen deaktiviert werden sollen.",
"notebook.displayOrder.description": "Prioritätsliste für MIME-Ausgabetypen",
"notebook.dragAndDrop.description": "Steuert, ob der Notebook-Editor das Verschieben von Zellen durch Drag & Drop zulässt.",
"notebook.editorOptions.experimentalCustomization": "Einstellungen für Code-Editoren, die in Notebooks verwendet werden. Dies kann verwendet werden, um die meisten Editor. *-Einstellungen anzupassen.",
- "notebook.focusIndicator.description": "Steuert, wo der Fokusindikator gerendert wird, entweder entlang der Zellrahmen oder auf dem linken Bundsteg",
+ "notebook.findFilters": "Passen Sie das Verhalten des Such-Widgets für die Suche innerhalb von Notizbuchzellen an. Wenn sowohl die Markierungsquelle als auch die Markierungsvorschau aktiviert sind, durchsucht das Widget Suchen entweder den Quellcode oder die Vorschau, je nach dem aktuellen Status der Zelle.",
+ "notebook.focusIndicator.description": "Steuert, wo der Fokusindikator gerendert wird, entweder entlang der Zellrahmen oder auf dem linken Bundsteg.",
+ "notebook.formatOnCellExecution": "Formatieren Sie eine Notebook-Zelle bei der Ausführung. Ein Formatierungsprogramm muss verfügbar sein.",
+ "notebook.formatOnSave": "Formatieren sie ein Notebook beim Speichern. Ein Formatierer muss verfügbar sein, und der Editor darf nicht heruntergefahren werden. Wenn {0} auf „afterDelay“ festgelegt ist, wird die Datei nur formatiert, wenn sie explizit gespeichert wird.",
"notebook.globalToolbar.description": "Steuert, ob eine globale Symbolleiste im Notebook-Editor gerendert wird.",
"notebook.globalToolbarShowLabel": "Steuern Sie, ob die Aktionen auf der Notizbuchsymbolleiste die Bezeichnung rendern sollen.",
+ "notebook.inlineValues.auto": "Inlinewerte nur anzeigen, wenn ein Inlinewertanbieter registriert ist.",
+ "notebook.inlineValues.description": "Hiermit wird gesteuert, ob in Notebookcodezellen nach der Zellenausführung Inlinewerte angezeigt werden sollen. Werte bleiben erhalten, bis die Zelle bearbeitet, erneut ausgeführt oder explizit über die Symbolleistenschaltfläche \"Alle Ausgaben löschen\" oder den Befehl \"Notebook: Inlinewerte löschen\" gelöscht wurde.",
+ "notebook.inlineValues.off": "Inlinewerte nie anzeigen.",
+ "notebook.inlineValues.on": "Inlinewerte immer mit regex-Fallback anzeigen, wenn kein Inlinewertanbieter registriert ist. Hinweis: Bei Verwendung des Fallbacks kann die Leistung in größeren Zellen beeinträchtigt werden.",
+ "notebook.insertFinalNewline": "Wenn diese Option aktiviert ist, wird beim Speichern eines Notizbuchs eine abschließende neue Zeile in das Ende von Codezellen eingefügt.",
"notebook.insertToolbarPosition.description": "Steuern Sie, wo die Aktionen zum Einfügen von Zellen angezeigt werden.",
"notebook.interactiveWindow.collapseCodeCells": "Steuert, ob Codezellen im interaktiven Fenster standardmäßig reduziert werden.",
+ "notebook.markdown.lineHeight": "Steuert die Zeilenhöhe in Pixel in Markdown-Zellen in Notebooks. Bei Festlegung auf {0} wird {1} verwendet.",
+ "notebook.markup.fontFamily": "Steuert die Schriftfamilie des gerenderten Markups in Notebooks. Wenn diese Option leer gelassen wird, wird auf die Standardmäßige Schriftfamilie der Workbench zurückgesetzt.",
"notebook.markup.fontSize": "Steuert die Schriftgröße der gerenderten Markierungen in Notebooks in Pixel. Bei Einstellung auf {0} wird 120% von {1} verwendet.",
+ "notebook.minimalErrorRendering": "Hiermit wird gesteuert, ob die Fehlerausgabe in minimaler Formatvorlage gerendert werden soll.",
+ "notebook.multiCursor.enabled": "Experimentell. Aktiviert eine begrenzte Anzahl von Multicursorsteuerelementen für mehrere Zellen im Notebook-Editor. Zurzeit werden Kern-Editor-Aktionen (Eingabe/Ausschneiden/Kopieren/Einfügen/Zusammensetzung) und eine begrenzte Teilmenge von Editorbefehlen unterstützt.",
"notebook.outputFontFamily": "Die Schriftfamilie für den Ausgabetext für Notebookzellen. Bei Festlegung auf \"leer\" wird die {0} verwendet.",
- "notebook.outputFontSize": "Schriftgrad für den Ausgabetext von Notizbuchzellen. Wenn auf {0} gesetzt, {1} wird verwendet.",
- "notebook.outputLineHeight": "Zeilenhöhe des Ausgabetextes für Notebook-Zellen.\r\n - Werte zwischen 0 und 8 werden als Multiplikator mit der Schriftgröße verwendet.\r\n - Werte größer oder gleich 8 werden als Effektivwerte verwendet.",
+ "notebook.outputFontSize": "Schriftgrad für den Ausgabetext in den Zellen der Notizbücher. Wenn auf 0 gesetzt, wird {0} verwendet.",
+ "notebook.outputLineHeight": "Zeilenhöhe des Ausgabetexts innerhalb Notebookzellen.\r\n – Wenn auf 0 festgelegt, wird die Zeilenhöhe des Editors verwendet.\r\n – Werte zwischen 0 und 8 werden als Multiplikator mit dem Schriftgrad verwendet.\r\n – Werte größer oder gleich 8 werden als effektive Werte verwendet.",
+ "notebook.outputScrolling": "Hiermit werden Notebook-Ausgaben zunächst in einem scrollbaren Bereich gerendert, wenn sie länger als der Grenzwert sind.",
+ "notebook.outputWordWrap": "Steuert, ob die Zeilen in der Ausgabe umschlossen werden sollen.",
+ "notebook.remoteSaving": "Ermöglicht das inkrementelle Speichern von Notebooks zwischen Prozessen und über Remoteverbindungen hinweg. Wenn diese Option aktiviert ist, werden nur die Änderungen am Notebook an den Erweiterungshost gesendet, um die Leistung für umfangreiche Notebooks und langsame Netzwerkverbindungen zu verbessern.",
+ "notebook.scrolling.revealNextCellOnExecute.description": "Gibt an, wie weit gescrollt werden soll, wenn die nächste Zelle bei Ausführung von {0} angezeigt wird.",
+ "notebook.scrolling.revealNextCellOnExecute.firstLine.description": "Hiermit wird gescrollt, bis die erste Zeile der nächsten Zelle angezeigt wird.",
+ "notebook.scrolling.revealNextCellOnExecute.fullCell.description": "Hiermit wird gescrollt, bis die nächste Zelle vollständig angezeigt wird.",
+ "notebook.scrolling.revealNextCellOnExecute.none.description": "Hiermit wird nicht gescrollt.",
"notebook.showCellStatusbar.description": "Gibt an, ob die Zellenstatusleiste angezeigt werden soll.",
"notebook.showCellStatusbar.hidden.description": "Die Statusleiste der Zelle ist immer ausgeblendet.",
"notebook.showCellStatusbar.visible.description": "Die Statusleiste der Zelle ist immer sichtbar.",
- "notebook.showCellStatusbar.visibleAfterExecute.description": "Die Statusleiste der Zelle wird ausgeblendet bis die Zelle ausgeführt wurde. Anschließend wird der Ausführungsstatus angezeigt.",
+ "notebook.showCellStatusbar.visibleAfterExecute.description": "Die Statusleiste der Zelle ist ausgeblendet, bis die Zelle ausgeführt wurde. Dann wird sie sichtbar, um den Ausführungsstatus anzuzeigen.",
"notebook.showFoldingControls.description": "Steuert, wann der Markdown-Kopfzeilen-Faltpfeil angezeigt wird.",
- "notebook.textOutputLineLimit": "Steuert, wie viele Textzeilen in einer Textausgabe gerendert werden.",
+ "notebook.stickyScrollEnabled.description": "Experimentell. Hiermit wird gesteuert, ob die Notizbuch-Kopfzeilen beim fixierten Bildlauf im Notebook-Editor gerendert werden.",
+ "notebook.stickyScrollMode.description": "Gibt an, ob geschachtelte fixierte Linien flach oder eingerückt gestapelt angezeigt werden.",
+ "notebook.stickyScrollMode.flat": "Geschachtelte fixierte Linien werden flach angezeigt.",
+ "notebook.stickyScrollMode.indented": "Geschachtelte fixierte Linien werden eingerückt angezeigt.",
+ "notebook.textOutputLineLimit": "Steuert, wie viele Textzeilen in einer Textausgabe angezeigt werden. Wenn {0} aktiviert ist, wird diese Einstellung verwendet, um die Scrollhöhe der Ausgabe zu bestimmen.",
"notebook.undoRedoPerCell.description": "Gibt an, ob für jede Zelle ein separater Widerrufen/Wiederholen-Stapel verwendet werden soll.",
"notebookConfigurationTitle": "Notebook",
+ "notebookFormatter.default": "Definiert einen standardmäßigen Notebookformatierer, der Vorrang gegenüber allen anderen Formatierereinstellungen hat. Muss der Bezeichner einer Erweiterung sein, die zu einem Formatierer gehört.",
"showFoldingControls.always": "Die Faltsteuerelemente sind immer sichtbar.",
"showFoldingControls.mouseover": "Die Faltsteuerelemente sind nur beim Mouseover sichtbar.",
"showFoldingControls.never": "Zeigen Sie niemals die Faltungssteuerelemente an, und verringern Sie die Größe des Bundstegs."
},
+ "vs/workbench/contrib/notebook/browser/notebookAccessibilityHelp": {
+ "notebook.cell.edit": "Der Befehl \"Zelle bearbeiten\"{0} legt den Fokus auf die Zelleneingabe.",
+ "notebook.cell.executeAndFocusContainer": "Mit dem Befehl \"Zelle ausführen\"{0} wird die Zelle ausgeführt, die zurzeit den Fokus hat.",
+ "notebook.cell.focusInOutput": "Der Befehl \"Ausgabe fokussieren\"{0} legt den Fokus in der Ausgabe der Zelle fest.",
+ "notebook.cell.insertCodeCellBelowAndFocusContainer": "Mit den Befehlen \"Zelle oberhalb{0}/unterhalb einfügen{1}\" werden neue leere Codezellen erstellt.",
+ "notebook.cell.quitEdit": "Der Befehl \"Bearbeiten beenden\"{0} legt den Fokus auf den Zellencontainer fest. Die Standardtaste (ESC) muss möglicherweise zweimal gedrückt werden. Beenden Sie ggf. den virtuellen Cursor, falls aktiv.",
+ "notebook.cellNavigation": "Durch die Pfeile nach oben und nach unten wird auch der Fokus zwischen den Zellen verschoben, während der Fokus auf dem äußeren Zellencontainer liegt.",
+ "notebook.changeCellType": "Die Befehle \"Zelle in Code\"/\"Markdown ändern\" werden verwendet, um zwischen Zelltypen zu wechseln.",
+ "notebook.focusNextEditor": "Der Befehl \"Fokus auf nächsten Zellen-Editor\"{0} legt den Fokus auf den Editor der nächsten Zelle fest.",
+ "notebook.focusPreviousEditor": "Mit dem Befehl \"Fokus auf vorherigen Zellen-Editor\"{0} wird der Fokus auf den Editor der vorherigen Zelle festgelegt.",
+ "notebook.overview": "Die Notizbuchansicht ist eine Sammlung von Code- und Markdownzellen. Codezellen können ausgeführt werden und erzeugen eine Ausgabe direkt unterhalb der Zelle."
+ },
+ "vs/workbench/contrib/notebook/browser/notebookAccessibilityProvider": {
+ "notebookTreeAriaLabel": "Notebook",
+ "notebookTreeAriaLabelHelp": "{0}\r\n{1} für Hilfe zur Barrierefreiheit verwenden",
+ "notebookTreeAriaLabelHelpNoKb": "{0}\r\nAusführen des Befehls \"Hilfe zur Barrierefreiheit öffnen\" für weitere Informationen",
+ "replHistoryTreeAriaLabel": "REPL-Editor-Verlauf"
+ },
"vs/workbench/contrib/notebook/browser/notebookEditor": {
"fail.noEditor": "Die Ressource mit dem Notebook-Editortyp '{0}' kann nicht geöffnet werden. Überprüfen Sie, ob die richtige Erweiterung installiert und aktiviert ist.",
- "notebookOpenInTextEditor": "Im Text-Editor öffnen"
+ "fail.noEditor.extensionMissing": "Die Ressource mit dem Notebook-Editortyp '{0}' kann nicht geöffnet werden. Überprüfen Sie, ob die richtige Erweiterung installiert und aktiviert ist.",
+ "notebookOpenAsText": "Als Text öffnen",
+ "notebookOpenEnableMissingViewType": "Erweiterung für \"{0}\" aktivieren",
+ "notebookOpenInTextEditor": "Im Text-Editor öffnen",
+ "notebookOpenInstallMissingViewType": "Erweiterung für \"{0}\" installieren",
+ "notebookTooLargeForHeapErrorWithSize": "Das Notebook wird im Notebook-Editor nicht angezeigt, da es sehr groß ist ({0}).",
+ "notebookTooLargeForHeapErrorWithoutSize": "Das Notebook wird im Notebook-Editor nicht angezeigt, da es sehr groß ist."
},
"vs/workbench/contrib/notebook/browser/notebookEditorWidget": {
"focusedCellBackground": "Die Hintergrundfarbe einer Zelle, wenn der Fokus auf der Zelle liegt.",
@@ -7195,22 +12172,52 @@
"notebook.outputContainerBorderColor": "Die Rahmenfarbe des Notebook-Ausgabecontainers.",
"notebook.selectedCellBorder": "Die Farbe des oberen und unteren Rahmens der Zelle, wenn die Zelle zwar ausgewählt ist, aber nicht im Fokus liegt.",
"notebook.symbolHighlightBackground": "Hintergrundfarbe der markierten Zelle",
+ "notebookEditorOverviewRuler.runningCellForeground": "Die Farbe der laufenden Zellendekoration im Übersichtslineal des Notebook-Editors.",
"notebookScrollbarSliderActiveBackground": "Hintergrundfarbe des Schiebereglers für die Notebook-Scrollleiste, wenn darauf geklickt wird.",
"notebookScrollbarSliderBackground": "Hintergrundfarbe des Schiebereglers für die Notebook-Scrollleiste.",
"notebookScrollbarSliderHoverBackground": "Hintergrundfarbe des Schiebereglers für die Notebook-Scrollleiste beim Daraufzeigen.",
"notebookStatusErrorIcon.foreground": "Die Farbe des Fehlersymbols von Notebook-Zellen in der Zellenstatusleiste.",
"notebookStatusRunningIcon.foreground": "Die Farbe des Symbols ausgeführter Notebook-Zellen in der Zellenstatusleiste.",
"notebookStatusSuccessIcon.foreground": "Die Farbe des Fehlersymbols von Notebook-Zellen in der Zellenstatusleiste.",
- "notebookTreeAriaLabel": "Notebook",
"selectedCellBackground": "Die Hintergrundfarbe einer Zelle, wenn die Zelle ausgewählt wird."
},
- "vs/workbench/contrib/notebook/browser/notebookExecutionServiceImpl": {
- "notebookRunTrust": "Durch das Ausführen einer Notebook-Zelle wird Code aus diesem Arbeitsbereich ausgeführt."
+ "vs/workbench/contrib/notebook/browser/notebookExtensionPoint": {
+ "Notebook id": "ID",
+ "Notebook mimetypes": "Mimetypes",
+ "Notebook name": "Name",
+ "Notebook renderer name": "Name",
+ "contributes.notebook.provider": "Fügt Notebook-Dokumentanbieter hinzu.",
+ "contributes.notebook.provider.displayName": "Menschlich lesbarer Name des Notebooks.",
+ "contributes.notebook.provider.selector": "Globs, für die das Notebook vorgesehen ist.",
+ "contributes.notebook.provider.selector.filenamePattern": "Glob, für den das Notizbuch aktiviert ist.",
+ "contributes.notebook.provider.viewType": "Der Typ des Notizbuchs.",
+ "contributes.notebook.renderer": "Fügt Anbieter für das Rendern der Notebook-Ausgabe hinzu.",
+ "contributes.notebook.renderer.displayName": "Menschlich lesbarer Name des Notebook-Ausgaberenderers.",
+ "contributes.notebook.renderer.entrypoint": "Datei, die in der Webansicht geladen werden soll, um die Erweiterung zu rendern.",
+ "contributes.notebook.renderer.entrypoint.extends": "Vorhandener Renderer, der durch diesen erweitert wird",
+ "contributes.notebook.renderer.hardDependencies": "Liste der Kernel-Abhängigkeiten, die der Renderer erfordert. Wenn eine der Abhängigkeiten in \"NotebookKernel.preloads\" vorhanden ist, kann der Renderer verwendet werden.",
+ "contributes.notebook.renderer.optionalDependencies": "Liste der Soft-Kernel-Abhängigkeiten, von denen der Renderer Gebrauch machen kann. Wenn eine der Abhängigkeiten in \"NotebookKernel.preloads\" vorhanden ist, wird der Renderer vor Renderern bevorzugt, die nicht mit dem Kernel interagieren.",
+ "contributes.notebook.renderer.requiresMessaging": "Definiert, wie und ob der Renderer über „createRendererMessaging“ mit einem Erweiterungshost kommunizieren muss. Renderer mit höheren Messaginganforderungen funktionieren möglicherweise nicht in allen Umgebungen.",
+ "contributes.notebook.renderer.requiresMessaging.always": "Messaging ist erforderlich. Der Renderer wird nur verwendet, wenn er Teil einer Erweiterung ist, die auf einem Erweiterungshost ausgeführt werden kann.",
+ "contributes.notebook.renderer.requiresMessaging.never": "Der Renderer erfordert kein Messaging.",
+ "contributes.notebook.renderer.requiresMessaging.optional": "Der Renderer ist besser mit dem Messaging verfügbar, aber er ist nicht erforderlich.",
+ "contributes.notebook.renderer.viewType": "Eindeutiger Bezeichner des Notebook-Ausgaberenderers.",
+ "contributes.notebook.selector": "Globs, für die das Notebook vorgesehen ist.",
+ "contributes.notebook.selector.provider.excludeFileNamePattern": "Globmuster, für das das Notizbuch deaktiviert ist.",
+ "contributes.preload.entrypoint": "Pfad zur in der Webansicht geladenen Datei.",
+ "contributes.preload.localResourceRoots": "Pfade zu zusätzlichen Ressourcen, die in der Webansicht zulässig sein sollten.",
+ "contributes.preload.provider": "Trägt Vorabladevorgänge für Notebooks bei.",
+ "contributes.preload.provider.viewType": "Der Typ des Notizbuchs.",
+ "contributes.priority": "Steuert, ob der benutzerdefinierte Editor automatisch aktiviert wird, wenn der Benutzer eine Datei öffnet. Diese Einstellung kann von Benutzern über die Einstellung \"workbench.editorAssociations\" außer Kraft gesetzt werden.",
+ "contributes.priority.default": "Der Editor wird automatisch verwendet, wenn der Benutzer eine Ressource öffnet, sofern keine anderen benutzerdefinierten Standard-Editoren für diese Ressource registriert sind.",
+ "contributes.priority.option": "Der Editor wird nicht automatisch verwendet, wenn der Benutzer eine Ressource öffnet. Ein Benutzer kann jedoch mit dem Befehl \"Erneut öffnen mit\" zum Editor wechseln.",
+ "notebookRenderer": "Notebookrenderer",
+ "notebooks": "Notebooks"
},
"vs/workbench/contrib/notebook/browser/notebookIcons": {
"clearIcon": "Symbol zum Löschen von Zellausgaben in Notebook-Editoren.",
"collapsedIcon": "Symbol zum Kommentieren eines zugeklappten Abschnitts in Notebook-Editoren.",
- "configureKernel": "Hiermit wird das Symbol im Kernelkonfigurations-Widget in Notebook-Editoren konfiguriert.",
+ "copyIcon": "Symbol zum Kopieren von Inhalt in die Zwischenablage",
"deleteCellIcon": "Symbol zum Löschen einer Zelle in Notebook-Editoren.",
"editIcon": "Symbol zum Bearbeiten einer Zelle in Notebook-Editoren.",
"errorStateIcon": "Symbol zum Hinweis auf einen Fehlerstatus in Notebook-Editoren.",
@@ -7223,22 +12230,46 @@
"mimetypeIcon": "Symbol für einen MIME-Typ in Notebook-Editoren.",
"moveDownIcon": "Symbol zum Verschieben einer Zelle nach unten in Notebook-Editoren.",
"moveUpIcon": "Symbol zum Verschieben einer Zelle nach oben in Notebook-Editoren.",
+ "nextChangeIcon": "Symbol für Aktion \"Nächste Änderung\" im Diff-Editor",
"openAsTextIcon": "Symbol zum Öffnen des Notebooks in einem Text-Editor.",
"pendingStateIcon": "Symbol zum Verweis auf einen ausstehenden Status in Notebook-Editoren.",
+ "previousChangeIcon": "Symbol für Aktion \"Vorherige Änderung\" im Diff-Editor",
"renderOutputIcon": "Symbol zum Rendern der Ausgabe im Diff-Editor.",
"revertIcon": "Symbol zum Zurücksetzen in Notebook-Editoren.",
+ "saveIcon": "Symbol zum Speichern von Inhalten auf dem Datenträger",
"selectKernelIcon": "Hiermit wird das Symbol zum Auswählen eines Kernels in Notebook-Editoren konfiguriert.",
"splitCellIcon": "Symbol zum Teilen einer Zelle in Notebook-Editoren.",
"stopEditIcon": "Symbol zum Beenden der Bearbeitung einer Zelle in Notebook-Editoren.",
"stopIcon": "Symbol zum Beenden einer Ausführung in Notebook-Editoren.",
"successStateIcon": "Symbol zum Verweis auf einen Erfolgsstatus in Notebook-Editoren.",
- "unfoldIcon": "Symbol zum Aufklappen einer Zelle in Notebook-Editoren."
+ "toggleWhitespace": "Symbol für Aktion \"Leerzeichen umschalten\" im Diff-Editor",
+ "variablesViewIcon": "Ansichtssymbol der Variablenansicht."
+ },
+ "vs/workbench/contrib/notebook/browser/outputEditor/notebookOutputEditor": {
+ "empty": "Die Zelle hat keine Ausgabe",
+ "noRenderer.2": "Für die Ausgabe wurde kein Renderer gefunden. Sie weist die folgenden MIME-Datentypen auf: {0}",
+ "notebookOutputEditor": "Notebook-Ausgabe-Editor"
+ },
+ "vs/workbench/contrib/notebook/browser/outputEditor/notebookOutputEditorInput": {
+ "notebookOutputEditorInput": "Notebook-Ausgabevorschau"
+ },
+ "vs/workbench/contrib/notebook/browser/services/notebookExecutionServiceImpl": {
+ "notebookRunTrust": "Durch das Ausführen einer Notebook-Zelle wird Code aus diesem Arbeitsbereich ausgeführt."
+ },
+ "vs/workbench/contrib/notebook/browser/services/notebookKernelHistoryServiceImpl": {
+ "workbench.notebook.clearNotebookKernelsMRUCache": "Löschen des MRU-Caches für Notebookkernel"
},
"vs/workbench/contrib/notebook/browser/services/notebookKeymapServiceImpl": {
"disableOtherKeymapsConfirmation": "Andere Tastenzuordnungen ({0}) deaktivieren, um Konflikte zu vermeiden?",
"no": "Nein",
"yes": "Ja"
},
+ "vs/workbench/contrib/notebook/browser/services/notebookLoggingServiceImpl": {
+ "renderChannelName": "Notebook"
+ },
+ "vs/workbench/contrib/notebook/browser/services/notebookServiceImpl": {
+ "notebookOpenInstallMissingViewType": "Erweiterung für \"{0}\" installieren"
+ },
"vs/workbench/contrib/notebook/browser/view/cellParts/cellEditorOptions": {
"notebook.cell.toggleLineNumbers.title": "Zellennummern anzeigen",
"notebook.lineNumbers": "Steuert die Anzeige von Zeilennummern im Zellen-Editor.",
@@ -7257,11 +12288,11 @@
},
"vs/workbench/contrib/notebook/browser/view/cellParts/codeCell": {
"cellExpandInputButtonLabel": "Zelleneingabe erweitern ({0})",
- "cellExpandInputButtonLabelWithDoubleClick": "Doppelklicken Sie, um die Zelleneingabe zu erweitern ({0})"
+ "cellExpandInputButtonLabelWithDoubleClick": "Um die Zelleneingabe ({0}) zu erweitern, doppelklicken Sie"
},
"vs/workbench/contrib/notebook/browser/view/cellParts/codeCellExecutionIcon": {
"notebook.cell.status.executing": "Wird ausgeführt",
- "notebook.cell.status.failed": "Fehlgeschlagen",
+ "notebook.cell.status.failure": "Fehler",
"notebook.cell.status.pending": "Ausstehend",
"notebook.cell.status.success": "Erfolgreich"
},
@@ -7270,129 +12301,180 @@
},
"vs/workbench/contrib/notebook/browser/view/cellParts/collapsedCellOutput": {
"cellExpandOutputButtonLabel": "Zellenausgabe erweitern (${0})",
- "cellExpandOutputButtonLabelWithDoubleClick": "Doppelklicken Sie, um die Zellenausgabe zu erweitern ({0})",
+ "cellExpandOutputButtonLabelWithDoubleClick": "Um die Zellenausgabe ({0}) zu erweitern, doppelklicken Sie",
"cellOutputsCollapsedMsg": "Ausgaben werden reduziert"
},
"vs/workbench/contrib/notebook/browser/view/cellParts/foldedCellHint": {
"hiddenCellsLabel": "1 Zelle ausgeblendet",
"hiddenCellsLabelPlural": "{0} Zellen ausgeblendet"
},
- "vs/workbench/contrib/notebook/browser/view/cellParts/markdownCell": {
+ "vs/workbench/contrib/notebook/browser/view/cellParts/markupCell": {
"cellExpandInputButtonLabel": "Zelleneingabe erweitern ({0})",
- "cellExpandInputButtonLabelWithDoubleClick": "Doppelklicken Sie, um die Zelleneingabe zu erweitern ({0})"
+ "cellExpandInputButtonLabelWithDoubleClick": "Um die Zelleneingabe ({0}) zu erweitern, doppelklicken Sie"
},
"vs/workbench/contrib/notebook/browser/view/renderers/backLayerWebView": {
- "notebook.emptyMarkdownPlaceholder": "Leere Markdownzelle. Um diese zu bearbeiten, doppelklicken Sie, oder drücken Sie die EINGABETASTE.",
- "notebook.error.rendererNotFound": "Für „$0“ a wurde kein Renderer gefunden"
+ "notebook.emptyMarkdownPlaceholder": "Leere Markdown-Zelle. Um diese zu bearbeiten, doppelklicken Sie, oder drücken Sie die EINGABETASTE.",
+ "notebook.error.rendererFallbacksExhausted": "Der Inhalt für \"$0\" konnte nicht gerendert werden.",
+ "notebook.error.rendererNotFound": "Für \"$0\" wurde kein Renderer gefunden.",
+ "webview title": "Notebook-Webansichtsinhalt"
},
"vs/workbench/contrib/notebook/browser/view/renderers/cellRenderer": {
"cellExecutionOrderCountLabel": "Reihenfolge der Ausführung"
},
- "vs/workbench/contrib/notebook/browser/viewParts/notebookKernelActionViewItem": {
- "select": "Kernel auswählen"
+ "vs/workbench/contrib/notebook/browser/viewModel/notebookOutlineEntryFactory": {
+ "empty": "Leere Zelle"
},
- "vs/workbench/contrib/notebook/common/notebookEditorModel": {
- "notebook.staleSaveError": "Der Inhalt der Datei wurde auf dem Datenträger geändert. Möchten Sie die aktualisierte Version öffnen oder die Datei mit Ihren Änderungen überschreiben?",
- "notebook.staleSaveError.overwrite.": "Überschreiben",
- "notebook.staleSaveError.revert": "Zurücksetzen"
+ "vs/workbench/contrib/notebook/browser/viewParts/notebookKernelQuickPickStrategy": {
+ "current1": "Derzeit ausgewählt",
+ "current2": "{0} – Derzeit ausgewählt",
+ "installSuggestedKernel": "Vorgeschlagene Erweiterungen installieren/aktivieren",
+ "kernels.detecting": "Kernel werden ermittelt",
+ "kernels.selectedKernelAndKernelDetectionRunning": "Ausgewählter Kernel: {0} (Aufgaben zur Kernelerkennung werden ausgeführt)",
+ "learnMoreTooltip": "Weitere Informationen",
+ "prompt.placeholder.change": "Kernel für \"{0}\" ändern",
+ "prompt.placeholder.select": "Kernel für \"{0}\" auswählen",
+ "searchForKernels": "Durchsuchen Sie den Marktplatz nach Kernel-Erweiterungen",
+ "select": "Kernel auswählen",
+ "selectAnotherKernel": "Anderen Kernel auswählen",
+ "selectAnotherKernel.more": "Anderen Kernel auswählen...",
+ "selectKernel.placeholder": "Geben Sie ein, um eine Kernelquelle auszuwählen",
+ "selectKernelFromExtension": "Kernel aus \"{0}\" auswählen"
+ },
+ "vs/workbench/contrib/notebook/browser/viewParts/notebookKernelView": {
+ "notebookActions.selectKernel": "Kernel für Notebook auswählen",
+ "notebookActions.selectKernel.args": "Notebook-Kernelargumente"
+ },
+ "vs/workbench/contrib/notebook/browser/viewParts/notebookViewZones": {
+ "workbench.notebook.developer.addViewZones": "Notebookansichtszonen umschalten"
+ },
+ "vs/workbench/contrib/notebook/common/notebookEditorInput": {
+ "vetoAutoExtHostRestart": "Ein von der Erweiterung bereitgestelltes Notizbuch für '{0}' ist noch geöffnet, das andernfalls geschlossen würde.",
+ "vetoExtHostRestart": "Ein von der Erweiterung bereitgestelltes Notizbuch für '{0}' konnte nicht gespeichert werden."
+ },
+ "vs/workbench/contrib/offline/browser/offline.contribution": {
+ "offline": "Das Netzwerk scheint offline zu sein. Bestimmte Features sind möglicherweise nicht verfügbar.",
+ "statusBarOfflineBackground": "Hintergrundfarbe der Statusleiste, wenn die Workbench offline ist. Die Statusleiste wird unten im Fenster angezeigt.",
+ "statusBarOfflineBorder": "Rahmenfarbe der Statusleiste zur Abtrennung von der Randleiste und dem Editor, wenn die Workbench offline ist. Die Statusleiste wird unten im Fenster angezeigt.",
+ "statusBarOfflineForeground": "Vordergrundfarbe der Statusleiste, wenn die Workbench offline ist. Die Statusleiste wird unten im Fenster angezeigt."
},
"vs/workbench/contrib/outline/browser/outline.contribution": {
- "filteredTypes.array": "Wenn aktiviert, zeigt die Gliederung \"array\"-Symbole an.",
- "filteredTypes.boolean": "Wenn aktiviert, zeigt die Gliederung \"boolean\"-Symbole an.",
- "filteredTypes.class": "Wenn aktiviert, zeigt die Gliederung \"class\"-Symbole an",
- "filteredTypes.constant": "Wenn aktiviert, zeigt die Gliederung \"constant\"-Symbole an.",
- "filteredTypes.constructor": "Wenn aktiviert, zeigt die Gliederung \"constructor\"-Symbole an.",
- "filteredTypes.enum": "Wenn aktiviert, zeigt die Gliederung \"enum\"-Symbole an.",
- "filteredTypes.enumMember": "Wenn aktiviert, zeigt die Gliederung \"enumMember\"-Symbole an.",
- "filteredTypes.event": "Wenn aktiviert, zeigt die Gliederung \"event\"-Symbole an.",
- "filteredTypes.field": "Wenn aktiviert, zeigt die Gliederung \"field\"-Symbole an.",
- "filteredTypes.file": "Wenn aktiviert, zeigt die Gliederung \"file\"-Symbole an.",
- "filteredTypes.function": "Wenn aktiviert, zeigt die Gliederung \"function\"-Symbole an.",
- "filteredTypes.interface": "Wenn aktiviert, zeigt die Gliederung \"interface\"-Symbole an.",
- "filteredTypes.key": "Wenn aktiviert, zeigt die Gliederung \"key\"-Symbole an.",
- "filteredTypes.method": "Wenn aktiviert, zeigt die Gliederung \"method\"-Symbole an.",
- "filteredTypes.module": "Wenn aktiviert, zeigt die Gliederung \"module\"-Symbole an.",
- "filteredTypes.namespace": "Wenn aktiviert, zeigt die Gliederung \"namespace\"-Symbole an.",
- "filteredTypes.null": "Wenn aktiviert, zeigt die Gliederung \"null\"-Symbole an.",
- "filteredTypes.number": "Wenn aktiviert, zeigt die Gliederung \"number\"-Symbole an.",
- "filteredTypes.object": "Wenn aktiviert, zeigt die Gliederung \"object\"-Symbole an.",
- "filteredTypes.operator": "Wenn aktiviert, zeigt die Gliederung \"operator\"-Symbole an.",
- "filteredTypes.package": "Wenn aktiviert, zeigt die Gliederung \"package\"-Symbole an.",
- "filteredTypes.property": "Wenn aktiviert, zeigt die Gliederung \"property\"-Symbole an.",
- "filteredTypes.string": "Wenn aktiviert, zeigt die Gliederung \"string\"-Symbole an.",
- "filteredTypes.struct": "Wenn aktiviert, zeigt die Gliederung \"struct\"-Symbole an",
- "filteredTypes.typeParameter": "Wenn aktiviert, zeigt die Gliederung \"typeParameter\"-Symbole an.",
- "filteredTypes.variable": "Wenn aktiviert, zeigt die Gliederung \"variable\"-Symbole an.",
+ "filteredTypes.array": "Wenn aktiviert, zeigt die Gliederung „array“-Symbole an.",
+ "filteredTypes.boolean": "Wenn aktiviert, zeigt die Gliederung „boolean“-Symbole an.",
+ "filteredTypes.class": "Wenn aktiviert, zeigt die Gliederung „class“-Symbole an.",
+ "filteredTypes.constant": "Wenn aktiviert, zeigt die Gliederung „constant“-Symbole an.",
+ "filteredTypes.constructor": "Wenn aktiviert, zeigt die Gliederung „constructor“-Symbole an.",
+ "filteredTypes.enum": "Wenn aktiviert, zeigt die Gliederung „enum“-Symbole an.",
+ "filteredTypes.enumMember": "Wenn aktiviert, zeigt die Gliederung „enumMember“-Symbole an.",
+ "filteredTypes.event": "Wenn aktiviert, zeigt die Gliederung „event“-Symbole an.",
+ "filteredTypes.field": "Wenn aktiviert, zeigt die Gliederung „field“-Symbole an.",
+ "filteredTypes.file": "Wenn aktiviert, zeigt die Gliederung „file“-Symbole an.",
+ "filteredTypes.function": "Wenn aktiviert, zeigt die Gliederung „function“-Symbole an.",
+ "filteredTypes.interface": "Wenn aktiviert, zeigt die Gliederung „interface“-Symbole an.",
+ "filteredTypes.key": "Wenn aktiviert, zeigt die Gliederung „key“-Symbole an.",
+ "filteredTypes.method": "Wenn aktiviert, zeigt die Gliederung „method“-Symbole an.",
+ "filteredTypes.module": "Wenn aktiviert, zeigt die Gliederung „module“-Symbole an.",
+ "filteredTypes.namespace": "Wenn aktiviert, zeigt die Gliederung „namespace“-Symbole an.",
+ "filteredTypes.null": "Wenn aktiviert, zeigt die Gliederung „null“-Symbole an.",
+ "filteredTypes.number": "Wenn aktiviert, zeigt die Gliederung „number“-Symbole an.",
+ "filteredTypes.object": "Wenn aktiviert, zeigt die Gliederung „object“-Symbole an.",
+ "filteredTypes.operator": "Wenn aktiviert, zeigt die Gliederung „operator“-Symbole an.",
+ "filteredTypes.package": "Wenn aktiviert, zeigt die Gliederung „package“-Symbole an.",
+ "filteredTypes.property": "Wenn aktiviert, zeigt die Gliederung „property“-Symbole an.",
+ "filteredTypes.string": "Wenn aktiviert, zeigt die Gliederung „string“-Symbole an.",
+ "filteredTypes.struct": "Wenn aktiviert, zeigt die Gliederung „struct“-Symbole an.",
+ "filteredTypes.typeParameter": "Wenn aktiviert, zeigt die Gliederung „typeParameter“-Symbole an.",
+ "filteredTypes.variable": "Wenn aktiviert, zeigt die Gliederung „variable“-Symbole an.",
"name": "Gliederung",
- "outline.problem.colors": "Hiermit werden Farben für Fehler und Warnungen verwendet.",
- "outline.problems.badges": "Hiermit werden Badges für Fehler und Warnungen verwendet.",
- "outline.showIcons": "Hiermit werden Gliederungselemente mit Symbolen gerendert.",
- "outline.showProblem": "Hiermit werden Fehler und Warnungen für Gliederungselemente angezeigt.",
+ "outline.initialState": "Steuert, ob Gliederungselemente reduziert oder erweitert werden.",
+ "outline.initialState.collapsed": "Alle Elemente zuklappen.",
+ "outline.initialState.expanded": "Alle Elemente aufklappen.",
+ "outline.problem.colors": "Verwenden Sie Farben für Fehler und Warnungen für Gliederungselemente. Wird von „{0}“ überschrieben, wenn es deaktiviert ist.",
+ "outline.problems.badges": "Verwenden Sie Badges für Fehler und Warnungen für Gliederungselemente. Wird von „{0}“ überschrieben, wenn es deaktiviert ist.",
+ "outline.showIcons": "Rendern Sie Gliederungselemente mit Symbolen.",
+ "outline.showProblem": "Fehler und Warnungen für Gliederungselemente anzeigen. Wird von „{0}“ überschrieben, wenn es deaktiviert ist.",
"outlineConfigurationTitle": "Gliederung",
"outlineViewIcon": "Ansichtssymbol der Gliederungsansicht."
},
- "vs/workbench/contrib/outline/browser/outlinePane": {
+ "vs/workbench/contrib/outline/browser/outlineActions": {
"collapse": "Alle zuklappen",
+ "expand": "Alle aufklappen",
"filterOnType": "Typfilter",
"followCur": "Cursor folgen",
- "loading": "Dokumentsymbole für \"{0}\" werden geladen...",
- "no-editor": "Der aktive Editor kann keine Gliederungsinformationen angeben.",
- "no-symbols": "Keine Symbole im Dokument \"{0}\" gefunden.",
"sortByKind": "Sortieren nach: Kategorie",
"sortByName": "Sortieren nach: Name",
"sortByPosition": "Sortieren nach: Position"
},
- "vs/workbench/contrib/output/browser/logViewer": {
- "logViewerAriaLabel": "Protokollanzeige"
+ "vs/workbench/contrib/outline/browser/outlinePane": {
+ "loading": "Dokumentsymbole für \"{0}\" werden geladen...",
+ "no-editor": "Der aktive Editor kann keine Gliederungsinformationen angeben.",
+ "no-symbols": "Keine Symbole im Dokument \"{0}\" gefunden."
},
"vs/workbench/contrib/output/browser/output.contribution": {
+ "addCompoundLog": "Verbundprotokoll hinzufügen...",
+ "clearFiltersText": "Filtertext löschen",
"clearOutput.label": "Ausgabe löschen",
- "logViewer": "Protokollanzeige",
+ "exportLogs": "Protokolle exportieren...",
+ "extensionLogs": "Erweiterungsprotokolle",
+ "importLog": "Protokoll importieren...",
+ "importLogFile": "Protokolldatei importieren",
+ "logFile": "Die ID der zu öffnenden Protokolldatei, z. B. `\"window\"`. Zurzeit können Sie die ID am besten abrufen, indem Sie die Befehle `workbench.action.output.show.` überprüfen",
+ "logFiles": "Protokolldateien",
+ "logLevel.label": "Protokollstufe festlegen...",
+ "logLevelDefault.label": "Als Standard festlegen",
"miToggleOutput": "&&Ausgabe",
- "openActiveLogOutputFile": "Protokollausgabedatei öffnen",
- "openLogFile": "Protokolldatei öffnen ...",
+ "nocustumoutput": "Es sind keine benutzerdefinierten Ausgaben zum Entfernen vorhanden.",
+ "openActiveOutputFile": "Ausgabe im Editor öffnen",
+ "openActiveOutputFileInNewWindow": "Ausgabe in neuem Fenster öffnen",
+ "openLogFile": "Protokoll öffnen...",
"output": "Ausgabe",
"output.smartScroll.enabled": "Intelligentes Scrollen in der Ausgabeansicht aktivieren oder deaktivieren. Durch das intelligente Scrollen kann der Scrollvorgang automatisch gesperrt werden, wenn Sie in die Ausgabeansicht klicken, oder entsperrt werden, wenn Sie auf die letzte Zeile klicken.",
- "outputCleared": "Die Ausgabe wurde gelöscht.",
"outputScrollOff": "Automatisches Scrollen deaktivieren",
"outputScrollOn": "Automatisches Scrollen aktivieren",
"outputViewIcon": "Ansichtssymbol der Ausgabeansicht.",
+ "removeLog": "Ausgabe entfernen...",
+ "saveActiveOutputAs": "Ausgabe speichern unter...",
+ "selectOutput": "Ausgabekanal auswählen",
"selectlog": "Protokoll auswählen",
"selectlogFile": "Protokolldatei auswählen",
"showLogs": "Protokolle anzeigen...",
- "switchToOutput.label": "Zur Ausgabe wechseln",
- "toggleAutoScroll": "Automatisches Scrollen umschalten"
+ "showOutputChannels": "Ausgabekanäle anzeigen...",
+ "switchBetweenOutputs.label": "Ausgabe wechseln",
+ "switchToOutput.label": "Ausgabe wechseln",
+ "toggleAutoScroll": "Automatisches Scrollen umschalten",
+ "toggleTraceDescription": "{0} Meldungen in der Ausgabe ein- oder ausblenden",
+ "userLogs": "Benutzerprotokolle"
+ },
+ "vs/workbench/contrib/output/browser/outputServices": {
+ "saveLog.dialogTitle": "Ausgabe speichern unter"
},
"vs/workbench/contrib/output/browser/outputView": {
"channel": "Ausgabekanal für '{0}'",
- "logChannel": "Protokoll ({0})",
"output": "Ausgabe",
"output model title": "{0} - Ausgabe",
- "outputChannels": "Ausgabekanäle",
- "outputViewAriaLabel": "Ausgabepanel",
- "outputViewWithInputAriaLabel": "{0}, Ausgabepanel"
+ "outputView.filter.placeholder": "Filtern",
+ "outputViewAriaLabel": "Ausgabepanel"
},
"vs/workbench/contrib/performance/browser/performance.contribution": {
+ "cycles": "Druckdienstzyklen",
+ "emitter": "Ausgabeprofile drucken",
+ "insta.trace": "Dienstablaufverfolgungen drucken",
"show.label": "Startleistung"
},
"vs/workbench/contrib/performance/browser/perfviewEditor": {
"name": "Startleistung"
},
- "vs/workbench/contrib/performance/electron-sandbox/startupProfiler": {
+ "vs/workbench/contrib/performance/electron-browser/performance.contribution": {
+ "experimental.rendererProfiling": "Wenn diese Option aktiviert ist, wird automatisch ein Profil für langsame Renderer erstellt."
+ },
+ "vs/workbench/contrib/performance/electron-browser/startupProfiler": {
"prof.detail": "Erstellen Sie ein Issue, und fügen Sie die folgenden Dateien manuell an:\r\n{0}",
"prof.detail.restart": "Ein abschließender Neustart ist erforderlich, um \"{0}\" verwenden zu können. Vielen Dank für Ihre Mithilfe!",
"prof.message": "Profile wurden erfolgreich erstellt.",
- "prof.restart": "&&Neu starten",
+ "prof.restart": "Neu starten",
"prof.restart.button": "&&Neu starten",
"prof.restartAndFileIssue": "&&Issue erstellen und neu starten",
"prof.thanks": "Vielen Dank für Ihre Mithilfe!"
},
- "vs/workbench/contrib/preferences/browser/keybindingWidgets": {
- "defineKeybinding.chordsTo": "Tastenkombination zu",
- "defineKeybinding.existing": "Diese Tastenzuordnung ist {0} vorhandenen Befehlen zugewiesen",
- "defineKeybinding.initial": "Drücken Sie die gewünschte Tastenkombination, und betätigen Sie anschließend die EINGABETASTE.",
- "defineKeybinding.oneExists": "Diese Tastenzuordnung ist 1 vorhandenen Befehl zugewiesen"
- },
"vs/workbench/contrib/preferences/browser/keybindingsEditor": {
"SearchKeybindings.FullTextSearchPlaceholder": "Nehmen Sie eine Eingabe vor, um die Tastenzuordnungen zu durchsuchen.",
"SearchKeybindings.KeybindingsSearchPlaceholder": "Tasten werden aufgezeichnet. Drücken Sie die ESC-TASTE, um den Vorgang zu beenden.",
@@ -7409,8 +12491,11 @@
"editKeybindingLabelWithKey": "Tastenbindung ändern {0}",
"editWhen": "when-Ausdruck ändern",
"error": "Fehler \"{0}\" beim Bearbeiten der Tastenzuordnung. Überprüfen Sie die Datei \"keybindings.json\" auf Fehler.",
+ "extension label": "Erweiterung ({0})",
+ "foundResults": "{0} Ergebnisse",
"keybinding": "Tastenzuordnung",
"keybindingsLabel": "Tastenzuordnungen",
+ "keyboard shortcuts aria label": "verwenden Sie die LEERTASTE oder EINGABETASTE, um die Tastenzuordnung zu ändern.",
"noKeybinding": "Keine Tastenzuordnung zugewiesen.",
"noWhen": "Kein when-Kontext.",
"recordKeysLabel": "Tasten aufzeichnen",
@@ -7423,25 +12508,44 @@
"sortByPrecedeneLabel": "Nach Rangfolge sortieren (Höchste zuerst)",
"source": "Quelle",
"title": "{0} ({1})",
- "when": "Zeitpunkt",
- "whenContextInputAriaLabel": "when-Kontext eingeben. Drücken Sie die EINGABETASTE, um die Eingabe zu bestätigen, oder die ESC-Taste, um den Vorgang abzubrechen."
+ "when": "Zeitpunkt"
},
"vs/workbench/contrib/preferences/browser/keybindingsEditorContribution": {
"defineKeybinding.kbLayoutErrorMessage": "Sie können diese Tastenkombination mit Ihrem aktuellen Tastaturlayout nicht generieren.",
"defineKeybinding.kbLayoutLocalAndUSMessage": "**{0}** für Ihr aktuelles Tastaturlayout (**{1}** für USA, Standard).",
- "defineKeybinding.kbLayoutLocalMessage": "**{0}** für Ihr aktuelles Tastaturlayout.",
- "defineKeybinding.start": "Tastenzuordnung definieren"
+ "defineKeybinding.kbLayoutLocalMessage": "**{0}** für Ihr aktuelles Tastaturlayout."
},
- "vs/workbench/contrib/preferences/browser/preferences.contribution": {
- "Keyboard Shortcuts": "Tastenkombinationen",
- "clear": "Suchergebnisse löschen",
- "clearHistory": "Suchverlauf für Tastenkombinationen löschen",
- "filterUntrusted": "Einstellungen für nicht vertrauenswürdige Arbeitsbereiche anzeigen",
- "keybindingsEditor": "Editor für Tastenzuordnungen",
- "miOpenOnlineSettings": "&&Einstellungen für Onlinedienste",
- "miOpenSettings": "&&Einstellungen",
+ "vs/workbench/contrib/preferences/browser/keybindingWidgets": {
+ "defineKeybinding.chordsTo": "Tastenkombination zu",
+ "defineKeybinding.existing": "Diese Tastenzuordnung ist {0} vorhandenen Befehlen zugewiesen",
+ "defineKeybinding.initial": "Drücken Sie die gewünschte Tastenkombination, und betätigen Sie anschließend die EINGABETASTE.",
+ "defineKeybinding.oneExists": "Diese Tastenzuordnung ist 1 vorhandenen Befehl zugewiesen"
+ },
+ "vs/workbench/contrib/preferences/browser/keyboardLayoutPicker": {
+ "autoDetect": "Automatische Erkennung",
+ "configureKeyboardLayout": "Tastaturlayout konfigurieren",
+ "displayLanguage": "Definiert das Tastaturlayout, das in VS Code in der Browserumgebung verwendet wird.",
+ "doc": "Öffnen Sie VS Code, und führen Sie „Developer: Überprüfen von Schlüsselzuordnungen (JSON)“ aus der Befehlspalette aus.",
+ "fail.createSettings": "{0} ({1}) kann nicht erstellt werden.",
+ "keyboard.chooseLayout": "Tastaturlayout ändern",
+ "keyboardLayout": "Layout: {0}",
+ "layoutPicks": "Tastaturlayouts ({0})",
+ "pickKeyboardLayout": "Tastaturlayout auswählen",
+ "status.workbench.keyboardLayout": "Tastaturlayout"
+ },
+ "vs/workbench/contrib/preferences/browser/preferences.contribution": {
+ "clear": "Suchergebnisse löschen",
+ "clearHistory": "Suchverlauf für Tastenkombinationen löschen",
+ "defineKeybinding.start": "Tastenzuordnung definieren",
+ "filterUntrusted": "Einstellungen für nicht vertrauenswürdige Arbeitsbereiche anzeigen",
+ "keybindingsEditor": "Editor für Tastenzuordnungen",
+ "keyboardShortcuts": "Tastenkombinationen",
+ "miOpenOnlineSettings": "&&Einstellungen für Onlinedienste",
+ "miOpenSettings": "&&Einstellungen",
+ "miOpenTelemetrySettings": "&&Telemetrieeinstellungen",
"miPreferences": "&&Einstellungen",
- "openCurrentProfileSettingsJson": "Aktuelle Profileinstellungen öffnen (JSON)",
+ "openAccessibilitySettings": "Barrierefreiheitseinstellungen öffnen",
+ "openApplicationSettingsJson": "Anwendungseinstellungen öffnen (JSON)",
"openDefaultKeybindingsFile": "Standardtastenkombinationen öffnen (JSON)",
"openFolderSettings": "Ordnereinstellungen öffnen",
"openFolderSettingsFile": "Einstellungen für \"Ordner öffnen\" (JSON)",
@@ -7457,6 +12561,7 @@
"openWorkspaceSettings": "Arbeitsbereichseinstellungen öffnen",
"openWorkspaceSettingsFile": "Arbeitsbereichseinstellungen öffnen (JSON)",
"preferences": "Einstellungen",
+ "preferencesEditor": "Einstellungen-Editor",
"settings": "Einstellungen",
"settings.clearResults": "Ergebnisse der Einstellungssuche löschen",
"settings.focusFile": "Einstellungsdatei fokussieren",
@@ -7466,42 +12571,51 @@
"settings.focusSettingsList": "Einstellungsliste fokussieren",
"settings.focusSettingsTOC": "Fokus auf Inhaltsverzeichnis der Einstellungen",
"settings.showContextMenu": "Kontextmenü für Einstellung anzeigen",
+ "settings.toggleAiSearch": "KI-Einstellungssuche umschalten",
"settingsEditor2": "Einstellungs-Editor 2",
- "showDefaultKeybindings": "Standard-Tastaturbelegungen anzeigen",
+ "showDefaultKeybindings": "Tastenzuordnungen des Systems anzeigen",
"showExtensionKeybindings": "Tastenzuordnungen für Erweiterung anzeigen",
- "showTelemtrySettings": "Telemetrieeinstellungen",
- "showUserKeybindings": "Benutzer-Tastaturbelegungen anzeigen"
+ "showUserKeybindings": "Benutzer-Tastaturbelegungen anzeigen",
+ "workbench.action.openSettingsJson.description": "Öffnet die JSON-Datei mit den aktuellen Benutzerprofileinstellungen"
},
"vs/workbench/contrib/preferences/browser/preferencesActions": {
"configureLanguageBasedSettings": "Sprachspezifische Einstellungen konfigurieren...",
"languageDescriptionConfigured": "({0})",
"pickLanguage": "Sprache auswählen"
},
+ "vs/workbench/contrib/preferences/browser/preferencesEditor": {
+ "FullTextSearchPlaceholder": "{0} durchsuchen",
+ "preferencesTabSwitcherBarAriaLabel": "Registerkartenumschalter „Einstellungen“"
+ },
"vs/workbench/contrib/preferences/browser/preferencesIcons": {
"keybindingsAddIcon": "Symbol für die Aktion \"Hinzufügen\" auf der Benutzeroberfläche für Tastenzuordnungen.",
"keybindingsEditIcon": "Symbol für die Aktion \"Bearbeiten\" auf der Benutzeroberfläche für Tastenzuordnungen.",
"keybindingsRecordKeysIcon": "Symbol für die Aktion \"Tasten aufzeichnen\" auf der Benutzeroberfläche für Tastenzuordnungen.",
"keybindingsSortIcon": "Symbol für den Umschalter \"Nach Rangfolge sortieren\" auf der Benutzeroberfläche für Tastenzuordnungen.",
+ "preferencesAiResults": "Symbol zum Anzeigen von KI-Ergebnissen in der Einstellungsbenutzeroberfläche.",
"preferencesClearInput": "Symbol für das Löschen von Eingaben auf der Benutzeroberfläche für Einstellungen und Tastenzuordnungen.",
"preferencesDiscardIcon": "Symbol für die Aktion \"Verwerfen\" auf der Benutzeroberfläche für Einstellungen.",
"preferencesOpenSettings": "Symbol für Befehle zum Öffnen von Einstellungen.",
- "settingsAddIcon": "Symbol für die Aktion \"Hinzufügen\" auf der Benutzeroberfläche für Einstellungen.",
"settingsEditIcon": "Symbol für die Aktion \"Bearbeiten\" auf der Benutzeroberfläche für Einstellungen.",
"settingsFilter": "Symbol für die Schaltfläche, die Filter für die Benutzeroberfläche der Einstellungen vorschlägt.",
- "settingsGroupCollapsedIcon": "Symbol für einen zugeklappten Abschnitt im JSON-Einstellungs-Editor mit geteilter Ansicht.",
- "settingsGroupExpandedIcon": "Symbol für einen aufgeklappten Abschnitt im JSON-Einstellungs-Editor mit geteilter Ansicht.",
"settingsMoreActionIcon": "Symbol für die Aktion \"Weitere Aktionen\" auf der Benutzeroberfläche für Einstellungen.",
"settingsRemoveIcon": "Symbol für die Aktion \"Entfernen\" auf der Benutzeroberfläche für Einstellungen.",
"settingsScopeDropDownIcon": "Symbol für die Dropdownschaltfläche \"Ordner\" im JSON-Einstellungs-Editor mit geteilter Ansicht."
},
"vs/workbench/contrib/preferences/browser/preferencesRenderers": {
+ "allProfileSettingWhileInNonDefaultProfileSetting": "Diese Einstellung kann nicht angewendet werden, weil sie so konfiguriert ist, dass sie mithilfe der Einstellung {0} in allen Profilen angewendet wird. Stattdessen wird der Wert aus dem Standardprofil verwendet.",
"copyDefaultValue": "In Einstellungen kopieren",
"defaultProfileSettingWhileNonDefaultActive": "Diese Einstellung kann nicht angewendet werden, wenn ein nicht standardmäßiges Profil aktiv ist. Sie wird angewendet, wenn das Standardprofil aktiv ist.",
"editTtile": "Bearbeiten",
"manage workspace trust": "Vertrauensstellung des Arbeitsbereichs verwalten",
+ "mcp.renderer.openRemoteConfig": "McP-Konfiguration für Remotebenutzer öffnen",
+ "mcp.renderer.openUserConfig": "Benutzer-MCP-Konfiguration öffnen",
+ "mcp.renderer.remoteConfigFound": "MCP-Server sollten nicht in den Remotebenutzereinstellungen konfiguriert werden. Verwenden Sie stattdessen die dedizierte MCP-Konfiguration.",
+ "mcp.renderer.userConfigFound": "MCP-Server sollten nicht in den Benutzereinstellungen konfiguriert werden. Verwenden Sie stattdessen die dedizierte MCP-Konfiguration.",
"replaceDefaultValue": "In Einstellungen ersetzen",
"unknown configuration setting": "Unbekannte Konfigurationseinstellung",
- "unsupportedApplicationSetting": "Diese Einstellung hat einen Anwendungsbereich und kann nur in der Datei mit den Benutzereinstellungen festgelegt werden.",
+ "unsupportLanguageOverrideSetting": "Diese Einstellung kann nicht angewendet werden, da sie nicht als Einstellung für die Außerkraftsetzung der Sprache registriert ist.",
+ "unsupportedApplicationSetting": "Diese Einstellung hat einen Anwendungsbereich und kann nur in der Einstellungsdatei des Standardprofils festgelegt werden.",
"unsupportedMachineSetting": "Diese Einstellung kann nur in den Benutzereinstellungen im lokalen Fenster oder in den Remoteeinstellungen im Remotefenster angewendet werden.",
"unsupportedPolicySetting": "Diese Einstellung kann nicht angewendet werden, da sie in der Systemrichtlinie konfiguriert ist.",
"unsupportedProperty": "Nicht unterstützte Eigenschaft",
@@ -7523,13 +12637,20 @@
"filterInput": "Filtereinstellungen",
"lastSyncedLabel": "Letzte Synchronisierung: {0}",
"moreThanOneResult": "{0} Einstellungen gefunden",
+ "moreThanOneResultWithAiAvailable": "{0} Einstellungen gefunden. KI-Ergebnisse verfügbar",
+ "noAiResults": "Zurzeit sind keine KI-Ergebnisse verfügbar.",
"noResults": "Es wurden keine Einstellungen gefunden.",
+ "noResultsWithAiAvailable": "Es wurden keine Einstellungen gefunden. KI-Ergebnisse verfügbar",
"oneResult": "1 Einstellung gefunden",
+ "oneResultWithAiAvailable": "1 Einstellung gefunden. KI-Ergebnisse verfügbar",
"settings": "Einstellungen",
"settings require trust": "Vertrauensstellung des Arbeitsbereichs",
- "turnOnSyncButton": "Einstellungssynchronisierung aktivieren"
+ "showAiResultsDisabled": "Zurzeit sind keine KI-Ergebnisse verfügbar...",
+ "showAiResultsEnabled": "KI-empfohlene Ergebnisse anzeigen",
+ "turnOnSyncButton": "Einstellungen für Sicherung und Synchronisierung"
},
"vs/workbench/contrib/preferences/browser/settingsEditorSettingIndicators": {
+ "advancedLabel": "Erweitert",
"alsoConfiguredElsewhere": "Auch an anderer Stelle modifiziert",
"alsoConfiguredIn": "Auch geändert in",
"alsoModifiedInScopes": "Die Einstellung wurde auch in folgenden Bereichen geändert:",
@@ -7538,32 +12659,47 @@
"applicationSettingDescriptionAccessible": "Einstellungswert beim Wechseln von Profilen beibehalten",
"configuredElsewhere": "An anderer Stelle geändert",
"configuredIn": "Geändert in",
- "defaultOverriddenDetails": "Standardeinstellungswert, der von {0} überschrieben wird",
+ "defaultOverriddenDetails": "Standardeinstellungswert, der von \"{0}\" überschrieben wird",
"defaultOverriddenDetailsAriaLabel": "{0} überschreibt den Standardwert",
"defaultOverriddenLabel": "Standardwert geändert",
"defaultOverriddenLanguagesList": "Sprachabhängige Standardwerte existieren für {0}",
+ "experimentalLabel": "Experimentell",
"extensionSyncIgnoredLabel": "Nicht synchronisiert",
"hasDefaultOverridesForLanguages": "Die folgenden Sprachen verfügen über Standardüberschreibungen:",
+ "manageWorkspaceTrust": "Vertrauensstellung des Arbeitsbereichs verwalten",
"modifiedInScopeForLanguage": "Der Bereich {0} für {1}",
"modifiedInScopeForLanguageMidSentence": "der Bereich {0} für {1}",
"modifiedInScopes": "Die Einstellung wurde in folgenden Bereichen geändert:",
+ "multipleDefaultOverriddenDetailsAriaLabel": "{0} setzt den Standardwert außer Kraft",
+ "multipledefaultOverriddenDetails": "Von {0} wurden Standardwerte festgelegt.",
+ "policyDescription": "Diese Einstellung wird von Ihrer Organisation verwaltet, und ihr eigentlicher Wert kann nicht geändert werden.",
+ "policyDescriptionAccessible": "Verwaltet von Organisationsrichtlinie; Einstellungswert nicht angewendet",
+ "policyFilterLink": "Anzeigen von Richtlinieneinstellungen",
+ "policyLabelText": "Verwaltet von organization",
+ "previewLabel": "Vorschau",
"remote": "Remote",
"syncIgnoredAriaLabel": "Einstellung wird während der Synchronisierung ignoriert",
"syncIgnoredTitle": "Diese Einstellung wird während der Synchronisierung ignoriert",
+ "trustLabel": "Der Einstellungswert kann nur in einem vertrauenswürdigen Arbeitsbereich angewendet werden.",
"user": "Benutzer",
- "workspace": "Arbeitsbereich"
+ "workspace": "Arbeitsbereich",
+ "workspaceUntrustedAriaLabel": "Arbeitsbereich nicht vertrauenswürdig; Der Einstellungswert wird nicht angewendet.",
+ "workspaceUntrustedLabel": "Arbeitsbereichsvertrauensstellung erforderlich"
},
"vs/workbench/contrib/preferences/browser/settingsLayout": {
+ "accessibility": "Barrierefreiheit",
+ "accessibility.signals": "Barrierefreiheitssignale",
"appearance": "Darstellung",
"application": "Anwendung",
- "audioCues": "Audiohinweise",
"breadcrumbs": "Breadcrumbs",
+ "chat": "Chat",
"comments": "Kommentare",
"commonlyUsed": "Am häufigsten verwendet",
"cursor": "Cursor",
"debug": "Debuggen",
"diffEditor": "Diff-Editor",
"editorManagement": "Editorverwaltung",
+ "experimental": "Experimentell",
"extensions": "Erweiterungen",
"features": "Features",
"fileExplorer": "Explorer",
@@ -7571,10 +12707,14 @@
"find": "Suchen",
"font": "Schriftart",
"formatting": "Formatierung",
+ "issueReporter": "Problembericht",
"keyboard": "Tastatur",
+ "mergeEditor": "Merge-Editor",
"minimap": "Minimap",
+ "multiDiffEditor": "Multidatei-Diff-Editor",
"newWindow": "Neues Fenster",
"notebook": "Notebook",
+ "other": "Andere",
"output": "Ausgabe",
"problems": "Probleme",
"proxy": "Proxy",
@@ -7599,51 +12739,67 @@
"zenMode": "Zen-Modus"
},
"vs/workbench/contrib/preferences/browser/settingsSearchMenu": {
+ "advancedSettingsSearch": "Erweitert",
+ "advancedSettingsSearchTooltip": "Erweiterte Einstellungen anzeigen",
+ "experimental": "Experimentell",
+ "experimentalSettingsSearchTooltip": "Experimentelle Einstellungen anzeigen",
"extSettingsSearch": "Extension_id...",
"extSettingsSearchTooltip": "Erweiterungs-ID-Filter hinzufügen",
"featureSettingsSearch": "Merkmal...",
"featureSettingsSearchTooltip": "Featurefilter verwenden",
+ "idSettingsSearch": "Einstellungs-ID...",
+ "idSettingsSearchTooltip": "Einstellungs-ID-Filter hinzufügen",
"langSettingsSearch": "Sprache...",
"langSettingsSearchTooltip": "Sprach-ID-Filter hinzufügen",
"modifiedSettingsSearch": "Geändert",
"modifiedSettingsSearchTooltip": "Filter für geänderte Einstellungen hinzufügen oder entfernen",
"onlineSettingsSearch": "Online Dienste",
"onlineSettingsSearchTooltip": "Einstellungen für Onlinedienste anzeigen",
- "policySettingsSearch": "Richtliniendienste",
- "policySettingsSearchTooltip": "Einstellungen für Richtliniendienste anzeigen",
+ "policySettingsSearch": "Organisationsrichtlinien",
+ "policySettingsSearchTooltip": "Einstellungen von Organisationsrichtlinien anzeigen",
+ "previewSettings": "Vorschau",
+ "previewSettingsSearchTooltip": "Vorschaueinstellungen anzeigen",
+ "stableSettings": "Stabil",
+ "stableSettingsSearchTooltip": "Stabile Einstellungen anzeigen",
"tagSettingsSearch": "Tag...",
"tagSettingsSearchTooltip": "Tagfilter hinzufügen"
},
"vs/workbench/contrib/preferences/browser/settingsTree": {
+ "applyToAllProfiles": "Einstellung auf alle Profile anwenden",
"copySettingAsJSONLabel": "Einstellung als JSON kopieren",
+ "copySettingAsURLLabel": "Einstellung als URL kopieren",
"copySettingIdLabel": "Einstellungs-ID kopieren",
+ "dismiss": "Schließen",
"editInSettingsJson": "In \"settings.json\" bearbeiten",
"editLanguageSettingLabel": "Einstellungen für {0} bearbeiten",
"extensions": "Erweiterungen",
- "manageWorkspaceTrust": "Vertrauensstellung des Arbeitsbereichs verwalten",
"modified": "Die Einstellung wurde im aktuellen Bereich konfiguriert.",
"newExtensionsButtonLabel": "Übereinstimmende Erweiterungen anzeigen",
- "policyLabel": "Diese Einstellung wird von Ihrer Organisation verwaltet.",
"resetSettingLabel": "Einstellung zurücksetzen",
"settings": "Einstellungen",
"settings.Default": "Standard",
"settings.Modified": "Geändert",
"settingsContextMenuTitle": "Weitere Aktionen...",
+ "showExtension": "Erweiterung anzeigen",
"stopSyncingSetting": "Diese Einstellung synchronisieren",
- "trustLabel": "Diese Einstellung kann nur in einem vertrauenswürdigen Arbeitsbereich angewendet werden",
- "validationError": "Validierungsfehler.",
- "viewPolicySettings": "Anzeigen von Richtlinieneinstellungen"
+ "validationError": "Validierungsfehler."
},
"vs/workbench/contrib/preferences/browser/settingsWidgets": {
"addItem": "Element hinzufügen",
"addPattern": "Muster hinzufügen",
"cancelButton": "Abbrechen",
"editExcludeItem": "Ausschlusselement bearbeiten",
+ "editIncludeItem": "Includeelement bearbeiten",
"editItem": "Element bearbeiten",
+ "excludeIncludeSource": ". Der von \"{0}\" angegebene Standardwert",
"excludePatternHintLabel": "Dateien ausschließen, die mit `{0}` übereinstimmen",
"excludePatternInputPlaceholder": "Muster ausschließen...",
"excludeSiblingHintLabel": "Mit `{0}` übereinstimmende Dateien nur ausschließen, wenn eine Datei vorhanden ist, die mit `{1}` übereinstimmt",
"excludeSiblingInputPlaceholder": "Wenn ein Muster vorhanden ist...",
+ "includePatternHintLabel": "Dateien einschließen, die mit \"{0}\" übereinstimmen",
+ "includePatternInputPlaceholder": "Muster einschließen...",
+ "includeSiblingHintLabel": "Mit \"{0}\" übereinstimmende Dateien nur einschließen, wenn eine Datei vorhanden ist, die mit \"{1}\" übereinstimmt",
+ "includeSiblingInputPlaceholder": "Wenn ein Muster vorhanden ist...",
"itemInputPlaceholder": "Element...",
"listSiblingHintLabel": "Listenelement \"{0}\" mit gleichgeordnetem Element \"${1}\"",
"listSiblingInputPlaceholder": "Gleichgeordnetes Element...",
@@ -7651,10 +12807,12 @@
"objectKeyHeader": "Element",
"objectKeyInputPlaceholder": "Schlüssel",
"objectPairHintLabel": "Die Eigenschaft \"{0}\" ist auf \"{1}\" festgelegt.",
+ "objectPairHintLabelWithSource": "Die Eigenschaft \"{0}\" wird von \"{2}\" auf \"{1}\" festgelegt.",
"objectValueHeader": "Wert",
"objectValueInputPlaceholder": "Wert",
"okButton": "OK",
"removeExcludeItem": "Ausschlusselement entfernen",
+ "removeIncludeItem": "Includeelement entfernen",
"removeItem": "Element entfernen",
"resetItem": "Element zurücksetzen"
},
@@ -7662,10 +12820,15 @@
"groupRowAriaLabel": "{0}, Gruppe",
"settingsTOC": "Inhaltsverzeichnis der Einstellungen"
},
+ "vs/workbench/contrib/preferences/common/preferences": {
+ "advancedIndicatorDescription": "Erweiterte Einstellung: Diese Einstellung ist für komplexe Szenarien und Konfigurationen vorgesehen. Ändern Sie sie nur, wenn Sie wissen, was sie bewirkt.",
+ "experimentalIndicatorDescription": "Experimentelle Einstellung: Diese Einstellung steuert eine neue Funktion, die aktiv entwickelt wird und möglicherweise instabil ist. Sie kann geändert oder entfernt werden.",
+ "previewIndicatorDescription": "Vorschaueinstellung: Diese Einstellung steuert eine neue Funktion, die noch optimiert wird, aber einsatzbereit ist. Feedback ist willkommen."
+ },
"vs/workbench/contrib/preferences/common/preferencesContribution": {
"enableNaturalLanguageSettingsSearch": "Steuert, ob der Suchmodus für natürliche Sprache für die Einstellungen aktiviert ist. Die Suche mit natürlicher Sprache wird von einem Microsoft-Onlinedienst bereitgestellt.",
- "settingsSearchTocBehavior": "Steuert das Verhalten des Inhaltsverzeichnisses im Einstellungs-Editor während der Suche.",
- "settingsSearchTocBehavior.filter": "Inhaltsverzeichnis nur nach Kategorien filtern, die passende Einstellungen enthalten. Klicken Sie auf eine Kategorie, um die Ergebnisse entsprechend zu filtern.",
+ "settingsSearchTocBehavior": "Steuert das Verhalten des Inhaltsverzeichnisses im Einstellungs-Editor während der Suche. Wenn diese Einstellung im Einstellungs-Editor geändert wird, tritt die Einstellung in Kraft, nachdem die Suchabfrage geändert wurde.",
+ "settingsSearchTocBehavior.filter": "Filtern Sie das Inhaltsverzeichnis nach Kategorien, die übereinstimmende Einstellungen aufweisen. Klicken Sie auf eine Kategorie, um die Ergebnisse entsprechend zu filtern.",
"settingsSearchTocBehavior.hide": "Inhaltsverzeichnis bei der Suche ausblenden.",
"splitSettingsEditorLabel": "Editor für Teilen-Einstellungen"
},
@@ -7686,28 +12849,45 @@
"settingsDropdownForeground": "Vordergrund des Dropdownmenüs im Einstellungs-Editor",
"settingsDropdownListBorder": "Rahmen für Dropdownliste des Einstellungs-Editors, der die Optionen umgibt und von der Beschreibung abtrennt",
"settingsHeaderBorder": "Die Farbe des Rahmens des Headercontainers.",
+ "settingsHeaderHoverForeground": "Die Vordergrundfarbe für eine Abschnittsüberschrift oder einen Titel, auf den gezeigt wird.",
"settingsSashBorder": "Die Farbe des Rahmens der Splitview-Sash des Einstellungs-Editors.",
"textInputBoxBackground": "Hintergrund des Texteingabefelds für den Einstellungs-Editor",
"textInputBoxBorder": "Rahmen des Texteingabefelds für den Einstellungs-Editor",
"textInputBoxForeground": "Vordergrund des Texteingabefelds für den Einstellungs-Editor"
},
- "vs/workbench/contrib/profiles/common/profilesActions": {
- "confiirmation message": "Hierdurch werden die vorhandenen Einstellungen ersetzt. Möchten Sie den Vorgang fortsetzen?",
- "export profile": "Einstellungen als Profil exportieren...",
- "export profile dialog": "Profil speichern",
- "export success": "{0}: Erfolgreich exportiert.",
- "import profile": "Einstellungen aus einem Profil importieren...",
- "import profile dialog": "Profil importieren",
- "import profile placeholder": "Profil-URL angeben oder zu importierende Profildatei auswählen",
- "import profile quick pick title": "Einstellungen aus einem Profil importieren",
- "import profile title": "Einstellungen aus einem Profil importieren",
- "select from file": "Aus Profildatei importieren",
- "select from url": "Aus URL importieren"
+ "vs/workbench/contrib/processExplorer/browser/processExplorer.contribution": {
+ "miOpenProcessExplorerer": "Prozess-Explorer &&öffnen",
+ "openProcessExplorer": "Prozess-Explorer öffnen",
+ "promptOpenWith.processExplorer.displayName": "Prozess-Explorer"
+ },
+ "vs/workbench/contrib/processExplorer/browser/processExplorer.web.contribution": {
+ "processExplorer": "Prozess-Explorer"
+ },
+ "vs/workbench/contrib/processExplorer/browser/processExplorerControl": {
+ "copy": "Kopieren",
+ "copyAll": "Alles kopieren",
+ "debug": "Debuggen",
+ "forceKillProcess": "Prozessbeendigung erzwingen",
+ "killProcess": "Prozess beenden",
+ "processCpu": "CPU (%)",
+ "processExplorer": "Prozess-Explorer",
+ "processMemory": "Arbeitsspeicher (MB)",
+ "processName": "Prozessname",
+ "processPid": "PID"
+ },
+ "vs/workbench/contrib/processExplorer/browser/processExplorerEditorInput": {
+ "processExplorerEditorLabelIcon": "Symbol der Beschriftung des Prozess-Explorer-Editors.",
+ "processExplorerInputName": "Prozess-Explorer"
+ },
+ "vs/workbench/contrib/processExplorer/electron-browser/processExplorer.contribution": {
+ "processExplorer": "Prozess-Explorer"
},
"vs/workbench/contrib/quickaccess/browser/commandsQuickAccess": {
"clearButtonLabel": "&&Löschen",
"clearCommandHistory": "Befehlsverlauf löschen",
"commandWithCategory": "{0}: {1}",
+ "commandsQuickAccess.askInChat": "Im Chat fragen: {0}",
+ "commandsQuickAccess.configureAskInChatSetting": "Sichtbarkeit konfigurieren",
"configure keybinding": "Tastenzuordnung konfigurieren",
"confirmClearDetail": "Diese Aktion kann nicht rückgängig gemacht werden.",
"confirmClearMessage": "Möchten Sie den Verlauf der zuletzt verwendeten Befehle löschen?",
@@ -7724,13 +12904,13 @@
"miGotoLine": "Gehe zu &&Zeile/Spalte...",
"miOpenView": "&&Ansicht öffnen...",
"miShowAllCommands": "Alle Befehle anzeigen",
+ "more": "Mehr",
"viewQuickAccess": "Ansicht öffnen",
"viewQuickAccessPlaceholder": "Geben Sie den Namen einer Ansicht, eines Ausgabekanals oder eines Terminals ein, die/der/das geöffnet werden soll."
},
"vs/workbench/contrib/quickaccess/browser/viewQuickAccess": {
"channels": "Ausgabe",
"debugConsoles": "Debugging-Konsole",
- "logChannel": "Protokoll ({0})",
"noViewResults": "Keine übereinstimmenden Ansichten.",
"openView": "Ansicht öffnen",
"panels": "Panel",
@@ -7746,19 +12926,13 @@
"relaunchSettingMessage": "Eine Einstellung wurde geändert, welche einen Neustart benötigt.",
"relaunchSettingMessageWeb": "Es wurde eine Einstellung geändert, für die ein Vorgang zum erneuten Laden erforderlich ist.",
"restart": "&&Neu starten",
+ "restartExtensionHost.reason": "Arbeitsbereichsordner werden geändert",
"restartWeb": "&&Neu laden"
},
"vs/workbench/contrib/remote/browser/explorerViewItems": {
- "remote.explorer.switch": "Remotesitzung wechseln",
- "remotes": "Remotesitzung wechseln"
+ "switchRemote.label": "Remotesitzung wechseln"
},
"vs/workbench/contrib/remote/browser/remote": {
- "RemoteHelpInformationExtPoint": "Trägt Hilfeinformationen für Remoteelement bei.",
- "RemoteHelpInformationExtPoint.documentation": "Die URL zur Dokumentationsseite Ihres Projekts bzw. ein Befehl, der diese URL zurückgibt.",
- "RemoteHelpInformationExtPoint.feedback": "Die URL zum Feedback-Reporter Ihres Projekts bzw. ein Befehl, der diese URL zurückgibt.",
- "RemoteHelpInformationExtPoint.getStarted": "Die URL zur Seite \"Erste Schritte\" Ihres Projekts bzw. ein Befehl, der diese URL zurückgibt.",
- "RemoteHelpInformationExtPoint.issues": "Die URL zur Issueliste Ihres Projekts bzw. ein Befehl, der diese URL zurückgibt.",
- "cancel": "Abbrechen",
"connectionLost": "Verbindung verloren",
"pickRemoteExtension": "Zu öffnende URL auswählen",
"reconnectNow": "Jetzt erneut verbinden",
@@ -7767,25 +12941,39 @@
"reconnectionWaitMany": "In {0} Sekunden wird versucht, erneut eine Verbindung herzustellen...",
"reconnectionWaitOne": "In {0} Sekunde wird erneut versucht, eine Verbindung herzustellen...",
"reloadWindow": "Fenster erneut laden",
+ "reloadWindow.dialog": "&&Fenster erneut laden",
"remote.explorer": "Remote-Explorer",
"remote.help": "Hilfe und Feedback",
"remote.help.documentation": "Dokumentation lesen",
- "remote.help.feedback": "Feedback geben",
"remote.help.getStarted": "Erste Schritte",
"remote.help.issues": "Issues prüfen",
"remote.help.report": "Problem melden",
"remotehelp": "Remotehilfe"
},
+ "vs/workbench/contrib/remote/browser/remoteConnectionHealth": {
+ "allow": "&&Zulassen",
+ "learnMore": "&&Weitere Informationen",
+ "remember": "Nicht mehr anzeigen",
+ "unsupportedGlibcBannerLearnMore": "Weitere Informationen",
+ "unsupportedGlibcWarning": "Sie sind im Begriff, eine Verbindung mit einer Betriebssystemversion herzustellen, die von {0} nicht unterstützt wird.",
+ "unsupportedGlibcWarning.banner": "Sie sind mit einer Betriebssystemversion verbunden, die von {0} nicht unterstützt wird."
+ },
"vs/workbench/contrib/remote/browser/remoteExplorer": {
"1forwardedPort": "1 weitergeleiteter Port",
"nForwardedPorts": "{0} weitergeleitete Ports",
+ "noRemoteNoPorts": "Keine weitergeleitete Ports. Leiten Sie einen Port weiter, um über das Internet auf Ihre lokal ausgeführten Dienste zuzugreifen.\r\n[Weiterleiten eines Ports]({0})",
"ports": "Ports",
+ "remote.autoForwardPortsSource.fallback": "Mehr als 20 Ports wurden automatisch weitergeleitet. Die prozessbasierte automatische Portweiterleitung wurde in den Einstellungen auf \"hybrid\" umgestellt. Einige Ports werden möglicherweise nicht mehr erkannt.",
+ "remote.autoForwardPortsSource.fallback.showPortSourceSetting": "Einstellung anzeigen",
+ "remote.autoForwardPortsSource.fallback.switchBack": "Rückgängig machen",
"remote.forwardedPorts.statusbarTextNone": "Keine Ports weitergeleitet",
"remote.forwardedPorts.statusbarTooltip": "Weitergeleitete Ports: {0}",
- "remote.tunnelsView.automaticForward": "Ihre an Port {0} ausgeführte Anwendung ist verfügbar. ",
+ "remote.tunnelsView.automaticForward": "Ihre Anwendung {0}, die auf Port {1} ausgeführt wird, ist verfügbar. ",
"remote.tunnelsView.elevationButton": "{0} als sudo verwenden...",
"remote.tunnelsView.elevationMessage": "Die Ausführung muss als Superuser erfolgen, um Port {0} lokal zu verwenden. ",
+ "remote.tunnelsView.makePublic": "In \"Öffentlich\" ändern",
"remote.tunnelsView.notificationLink2": "[Alle weitergeleiteten Ports anzeigen]({0})",
+ "remoteNoPorts": "Keine weitergeleitete Ports. Leiten Sie einen Port weiter, um lokal auf Ihre ausgeführten Dienste zuzugreifen.\r\n[Weiterleiten eines Ports]({0})",
"status.forwardedPorts": "Weitergeleitete Ports"
},
"vs/workbench/contrib/remote/browser/remoteIcons": {
@@ -7814,18 +13002,30 @@
"host.open": "Remotesitzung wird geöffnet...",
"host.reconnecting": "Verbindung mit \"{0}\" wird wiederhergestellt...",
"host.tooltip": "Bearbeitung auf \"{0}\"",
- "installRemotes": "Zusätzliche Remoteerweiterungen installieren...",
"miCloseRemote": "&&Remoteverbindung schließen",
+ "networkStatusHighLatencyTooltip": "Das Netzwerk scheint eine hohe Latenz zu haben (letzte {0} ms, Durchschnitt {1} ms), bestimmte Features reagieren möglicherweise langsam.",
+ "networkStatusOfflineTooltip": "Das Netzwerk scheint offline zu sein. Bestimmte Features sind möglicherweise nicht verfügbar.",
"noHost.tooltip": "Remotefenster öffnen",
"reloadWindow": "Fenster erneut laden",
"remote.category": "Remote",
"remote.close": "Remoteverbindung schließen",
"remote.install": "Remoteentwicklungserweiterungen installieren",
+ "remote.showExtensionRecommendations": "Wenn diese Option aktiviert ist, werden Empfehlungen für Remoteerweiterungen im Menü „Remoteindikator“ angezeigt.",
"remote.showMenu": "Remote-Menü anzeigen",
+ "remote.startActions.help": "Weitere Informationen",
+ "remote.startActions.install": "Installieren",
+ "remote.startActions.installingExtension": "Erweiterung wird installiert… ",
+ "remoteActions": "Wählen Sie eine Option zum Öffnen eines Remotefensters aus.",
"remoteHost": "Remotehost",
+ "retry": "Wiederholen",
+ "unknownSetupError": "Fehler beim Einrichten von {0}. Möchten Sie es erneut versuchen?",
"workspace.tooltip": "Bearbeitung auf \"{0}\"",
"workspace.tooltip2": "Einige [Features sind nicht verfügbar]({0}) für Ressourcen in einem virtuellen Dateisystem."
},
+ "vs/workbench/contrib/remote/browser/remoteStartEntry": {
+ "remote.category": "Remote",
+ "remote.showWebStartEntryActions": "Remotestarteintrag für Web anzeigen"
+ },
"vs/workbench/contrib/remote/browser/tunnelFactory": {
"tunnelPrivacy.private": "Privat",
"tunnelPrivacy.public": "Öffentlich"
@@ -7847,6 +13047,7 @@
"remote.tunnel.copyAddressPlaceholdter": "Weitergeleiteten Port auswählen",
"remote.tunnel.forward": "Port weiterleiten",
"remote.tunnel.forwardError": "{0}:{1} konnte nicht weitergeleitet werden. Der Host ist möglicherweise nicht verfügbar, oder der Remoteport wurde möglicherweise bereits weitergeleitet.",
+ "remote.tunnel.forwardErrorProvided": "Weiterleitung nicht möglich: {0}:{1}. {2}",
"remote.tunnel.forwardItem": "Port weiterleiten",
"remote.tunnel.forwardPrompt": "Portnummer oder Adresse (z. B. 3000 oder 10.10.10.10:2000).",
"remote.tunnel.label": "Portbezeichnung festlegen",
@@ -7869,10 +13070,10 @@
"remote.tunnelsView.labelPlaceholder": "Portbezeichnung",
"remote.tunnelsView.portNumberToHigh": "Die Portnummer muss ≥ 0 und < {0} sein.",
"remote.tunnelsView.portNumberValid": "Der weitergeleitete Port muss eine Zahl oder ein host:port sein.",
- "tunnel.addressColumn.label": "Lokale Adresse",
- "tunnel.addressColumn.tooltip": "Die Adresse, unter der der weitergeleitete Port lokal verfügbar ist.",
+ "remote.tunnelsView.portShouldBeNumber": "Der lokale Port muss eine Zahl sein.",
+ "tunnel.addressColumn.label": "Weitergeleitete Adresse",
+ "tunnel.addressColumn.tooltip": "Die Adresse, unter der der weitergeleitete Port verfügbar ist.",
"tunnel.focusContext": "Gibt an, ob die Portansicht den Fokus hat.",
- "tunnel.forwardedPortsViewEnabled": "Gibt an, ob die Portansicht aktiviert ist.",
"tunnel.iconColumn.notRunning": "Kein aktiver Prozess.",
"tunnel.iconColumn.running": "Der Port weist einen aktiven Prozess auf.",
"tunnel.originColumn.label": "Ursprung",
@@ -7891,17 +13092,21 @@
"tunnelView.runningProcess.inacessable": "Prozessinformationen nicht verfügbar"
},
"vs/workbench/contrib/remote/common/remote.contribution": {
- "invalidWorkspaceCancel": "&&Abbrechen",
- "invalidWorkspaceDetail": "Der Arbeitsbereich ist nicht vorhanden. Wählen Sie einen anderen Arbeitsbereich zum Öffnen aus.",
+ "invalidWorkspaceDetail": "Wählen Sie einen anderen Arbeitsbereich aus, der geöffnet werden soll.",
"invalidWorkspaceMessage": "Der Arbeitsbereich ist nicht vorhanden",
"invalidWorkspacePrimary": "&&Arbeitsbereich öffnen...",
"pauseSocketWriting": "Verbindung: Socketschreibvorgang anhalten",
"remote": "Remote",
- "remote.autoForwardPorts": "Wenn diese Option aktiviert ist, werden neue ausgeführte Prozesse erkannt, und Ports, an denen sie lauschen, werden automatisch weitergeleitet. Wenn Sie diese Einstellung deaktivieren, wird nicht verhindert, dass alle Ports weitergeleitet werden. Auch wenn diese Option deaktiviert ist, können Erweiterungen weiterhin dazu führen, dass Ports weitergeleitet werden, und das Öffnen einiger URLs führt weiterhin dazu, dass Ports weitergeleitet werden.",
- "remote.autoForwardPortsSource": "Legt die Quelle fest, von der Ports automatisch weitergeleitet werden, wenn {0} \"true\" ist. Auf Windows- und Mac-Fernbedienungen hat die Option `process` keine Wirkung und `output` wird verwendet. Erfordert ein Neuladen, um wirksam zu werden.",
+ "remote.autoForwardPortFallback": "Die Anzahl der automatisch weitergeleiteten Ports, die den Wechsel von „process“ zu „hybrid“ auslösen, wenn ports automatisch weitergeleitet werden und „remote.autoForwardPortsSource“ standardmäßig auf „process“ festgelegt ist. Auf „0“ festlegen, um das Fallback zu deaktivieren. Wenn „remote.autoForwardPortsFallback“ nicht konfiguriert wurde, „remote.autoForwardPortsSource“ aber „remote.autoForwardPortsSource“, wird „remote.autoForwardPortsFallback“ so behandelt, als wäre es auf „0“ festgelegt.",
+ "remote.autoForwardPorts": "Wenn diese Option aktiviert ist, werden neue ausgeführte Prozesse erkannt, und Ports, an denen sie lauschen, werden automatisch weitergeleitet. Wenn Sie diese Einstellung deaktivieren, wird nicht verhindert, dass alle Ports weitergeleitet werden. Auch wenn diese Option deaktiviert ist, können Erweiterungen weiterhin dazu führen, dass Ports weitergeleitet werden, und das Öffnen einiger URLs führt weiterhin dazu, dass Ports weitergeleitet werden. Siehe auch {0}.",
+ "remote.autoForwardPortsSource": "Legt die Quelle fest, von der Ports automatisch weitergeleitet werden, wenn „{0}“ TRUE ist. Wenn {0} FALSE ist, werden {1} verwendet, um Informationen zu Ports zu finden, die bereits weitergeleitet wurden. Auf Windows- und macOS-Remotecomputern haben die Optionen „process“ und „hybrid“ keine Auswirkungen, und „output“ wird verwendet.",
+ "remote.autoForwardPortsSource.hybrid": "Ports werden automatisch weitergeleitet, wenn sie durch Lesen der Terminal- und Debugausgabe ermittelt werden. Nicht alle Prozesse, die Ports verwenden, werden im integrierten Terminal oder in der Debugkonsole gedruckt, sodass einige Ports ausgelassen werden. Ports werden \"nicht weitergeleitet\", indem auf Prozesse überwacht wird, die an diesem Port lauschen, der beendet werden soll.",
"remote.autoForwardPortsSource.output": "Ports werden automatisch weitergeleitet, wenn sie durch Auslesen der Terminal- und der Debugausgabe ermittelt werden. Nicht bei allen Prozessen, die Ports verwenden, erfolgt eine Ausgabe an die integrierte Terminal- oder Debugging-Konsole, daher werden einige Ports nicht berücksichtigt. Die Weiterleitung von Ports basierend auf der Ausgabe wird erst eingestellt, wenn der Vorgang neu geladen oder der Port durch den Benutzer in der Ansicht \"Ports\" geschlossen wird.",
"remote.autoForwardPortsSource.process": "Ports werden automatisch weitergeleitet, wenn sie bei der Suche nach Prozessen ermittelt werden, die gestartet wurden und einen Port umfassen.",
+ "remote.defaultExtensionsIfInstalledLocally.invalidFormat": "Der Erweiterungsbezeichner muss im Format „publisher.name“ vorliegen.",
+ "remote.defaultExtensionsIfInstalledLocally.markdownDescription": "Liste der Erweiterungen, die bei der Verbindung mit einem Remotecomputer installiert werden sollen, sofern sie bereits lokal installiert sind.",
"remote.extensionKind": "Setzen Sie die Art einer Erweiterung außer Kraft. ui-Erweiterungen werden auf dem lokalen Computer installiert und ausgeführt, während workspace-Erweiterungen auf dem Remotecomputer ausgeführt werden. Wenn Sie die Standardart einer Erweiterung mit dieser Einstellung außer Kraft setzen, legen Sie fest, ob diese Erweiterung lokal oder remote installiert und aktiviert werden soll.",
+ "remote.forwardOnClick": "Steuert, ob lokale URLs mit einem Port weitergeleitet werden, wenn sie über das Terminal und die Debugkonsole geöffnet werden.",
"remote.localPortHost": "Gibt den lokalen Hostnamen an, der für die Portweiterleitung verwendet wird.",
"remote.portsAttributes": "Legen Sie Eigenschaften fest, die angewendet werden, wenn eine bestimmte Portnummer weitergeleitet wird. Beispiel:\r\n\r\n```\r\n\"3000\": {\r\n \"label\": \"Application\"\r\n},\r\n\"40000-55000\": {\r\n \"onAutoForward\": \"ignore\"\r\n},\r\n\".+\\\\/server.js\": {\r\n \"onAutoForward\": \"openPreview\"\r\n}\r\n```",
"remote.portsAttributes.defaults": "Legen Sie Standardeigenschaften fest, die auf alle Ports angewendet werden, die keine Eigenschaften aus der Einstellung {0} abrufen. Beispiel:\r\n\r\n```\r\n{\r\n \"onAutoForward\": \"ignore\"\r\n}\r\n```",
@@ -7920,41 +13125,125 @@
"remote.portsAttributes.requireLocalPort": "Bei „true“ wird ein modales Dialogfeld angezeigt, wenn der ausgewählte lokale Port nicht für die Weiterleitung verwendet wird.",
"remote.portsAttributes.silent": "Zeigt keine Benachrichtigung an und nimmt keine Aktion vor, wenn dieser Port automatisch weitergeleitet wird.",
"remote.restoreForwardedPorts": "Stellt die Ports wieder her, die Sie in einem Arbeitsbereich weitergeleitet haben.",
- "remoteExtensionLog": "Remoteserver",
- "remotePtyHostLog": "Remote PTY-Host",
"triggerReconnect": "Verbindung: Erneute Verbindung auslösen",
"ui": "Art der Benutzeroberflächenerweiterung. In einem Remotefenster werden solche Erweiterungen nur aktiviert, wenn sie auf dem lokalen Computer verfügbar sind.",
"workspace": "Art der Arbeitsbereichserweiterung. In einem Remotefenster werden solche Erweiterungen nur aktiviert, wenn sie auf dem Remotecomputer verfügbar sind."
},
- "vs/workbench/contrib/remote/electron-sandbox/remote.contribution": {
+ "vs/workbench/contrib/remote/electron-browser/remote.contribution": {
"remote": "Remote",
- "remote.downloadExtensionsLocally": "Wenn aktiviert, werden Erweiterungen lokal heruntergeladen und auf dem Remotecomputer installiert"
+ "remote.actions.closeUnusedPorts": "Nicht verwendete weitergeleitete Ports schließen",
+ "remote.category": "Remote",
+ "remote.downloadExtensionsLocally": "Wenn aktiviert, werden Erweiterungen lokal heruntergeladen und auf dem Remotecomputer installiert",
+ "wslFeatureInstalled": "Gibt an, ob auf der Plattform das WSL-Feature installiert ist."
+ },
+ "vs/workbench/contrib/remoteCodingAgents/browser/remoteCodingAgents.contribution": {
+ "remoteCodingAgentsExtPoint": "Trägt Integrationen von Agents für die Remotecodierung zum Chat-Widget bei.",
+ "remoteCodingAgentsExtPoint.command": "Der Bezeichner des auszuführenden Befehls. Der Befehl muss im Abschnitt „commands“ deklariert werden.",
+ "remoteCodingAgentsExtPoint.description": "Beschreibung des Remoteagents für die Verwendung in Menüs und Tooltips.",
+ "remoteCodingAgentsExtPoint.displayName": "Ein benutzerfreundlicher Name für dieses Element, der für die Anzeige in Menüs verwendet wird.",
+ "remoteCodingAgentsExtPoint.followUpRegex": "Das letzte Vorkommen eines Musters in einer vorhandenen Chatunterhaltung wird an die mitwirkende Erweiterung gesendet, um Folgeantworten zu erleichtern.",
+ "remoteCodingAgentsExtPoint.id": "Ein eindeutiger Bezeichner für dieses Element.",
+ "remoteCodingAgentsExtPoint.when": "Eine Bedingung, die TRUE lauten muss, damit dieses Element angezeigt wird."
+ },
+ "vs/workbench/contrib/remoteTunnel/electron-browser/remoteTunnel.contribution": {
+ "accountPreference.placeholder": "Melden Sie sich bei einem Konto an, um den Remotezugriff zu aktivieren.",
+ "action.copyToClipboard": "Browserverknüpfung in Zwischenablage kopieren",
+ "action.doNotShowAgain": "Nicht mehr anzeigen",
+ "action.showExtension": "Erweiterung anzeigen",
+ "enable": "&&Aktivieren",
+ "initialize.progress.title": "[Remotetunnel wird gesucht](Befehl:{0})",
+ "manage.placeholder": "Wählen Sie einen Befehl aus, der aufgerufen werden soll.",
+ "manage.showLog": "Protokoll anzeigen",
+ "manage.title.attached": "Remotetunnelzugriff für {0} aktiviert (extern gestartet)",
+ "manage.title.off": "Remotetunnelzugriff nicht aktiviert",
+ "manage.title.orunning": "Remotetunnelzugriff für {0} aktiviert",
+ "manage.tunnelName": "Tunnelnamen ändern",
+ "others": "Sonstige",
+ "progress.turnOn.failed": "Der Remotetunnelzugriff kann nicht aktiviert werden. Weitere Informationen finden Sie im Dienstprotokoll des Remotetunnels.",
+ "progress.turnOn.final": "Sie können jetzt überall über den sicheren Tunnel [{0}](command:{4}) auf diesen Computer zugreifen. Verwenden Sie zum Herstellen einer Verbindung über einen anderen Computer den generierten [{1}]({2})-Link, oder verwenden Sie die [{6}]({7})-Erweiterung auf dem Desktop oder im Web. Sie können diesen Zugriff über das Menü \"VS Code-Konten\" [configure](command:{3}) oder [turn off](command:{5}).",
+ "recommend.remoteExtension": "Tunnel „{0}“ steht für den Fernzugriff zur Verfügung. Die {1}-Erweiterung kann verwendet werden, um eine Verbindung zu diesem Tunnel herzustellen. steht für den Fernzugriff zur Verfügung. Die Erweiterung kann verwendet werden, um eine Verbindung zu diesem Tunnel herzustellen.",
+ "remoteTunnel.actions.configure": "Tunnelname konfigurieren...",
+ "remoteTunnel.actions.copyToClipboard": "Browserverknüpfung in Zwischenablage kopieren",
+ "remoteTunnel.actions.learnMore": "Erste Schritte mit Tunneln",
+ "remoteTunnel.actions.manage.connecting": "Remotetunnelzugriff stellt eine Verbindung her",
+ "remoteTunnel.actions.manage.on.v2": "Remote-Tunnelzugriff ist aktiviert",
+ "remoteTunnel.actions.showLog": "Protokoll des Remotetunneldienstes anzeigen",
+ "remoteTunnel.actions.turnOff": "Remotetunnelzugriff deaktivieren...",
+ "remoteTunnel.actions.turnOn": "Remotetunnelzugriff aktivieren...",
+ "remoteTunnel.category": "Remotetunnel",
+ "remoteTunnel.serviceInstallFailed": "Fehler bei der Installation als Dienst, daher wurde wieder der Tunnel für diese Sitzung ausgeführt. Weitere Informationen finden Sie im [Fehlerprotokoll](command:{0}).",
+ "remoteTunnel.turnOff.confirm": "Möchten Sie den Remotetunnelzugriff deaktivieren?",
+ "remoteTunnel.turnOffAttached.confirm": "Möchten Sie den Remotetunnelzugriff deaktivieren? Dadurch wird auch der Dienst beendet, der extern gestartet wurde.",
+ "remoteTunnelAccess.machineName": "Der Name, unter dem der Remotetunnelzugriff registriert ist. Wenn nicht festgelegt, wird der Hostname verwendet.",
+ "remoteTunnelAccess.machineNameRegex": "Der Name darf nur aus Buchstaben, Ziffern, Unterstrichen und Bindestrichen bestehen. Er darf nicht mit einem Bindestrich beginnen.",
+ "remoteTunnelAccess.preventSleep": "Verhindern Sie, dass dieser Computer im Ruhezustand ist, wenn der Remotetunnelzugriff aktiviert ist.",
+ "sign in using account": "Anmelden mit \"{0}\"",
+ "signed in": "Angemeldet",
+ "startTunnel.progress.title": "[Remote-Tunnel wird gestartet](Befehl:{0})",
+ "tunnel.enable.placeholder": "Wählen Sie aus, wie Sie den Zugriff aktivieren möchten.",
+ "tunnel.enable.service": "Als Dienst installieren",
+ "tunnel.enable.service.description": "Immer dann ausführen, wenn Sie angemeldet sind",
+ "tunnel.enable.session": "Für diese Sitzung aktivieren",
+ "tunnel.enable.session.description": "Immer dann ausführen, wenn {0} geöffnet ist",
+ "tunnel.preview": "Remotetunnel befindet sich derzeit in der Vorschau. Bitte melden Sie eventuelle Probleme mit dem Befehl \"Hilfe: Problem melden\"."
+ },
+ "vs/workbench/contrib/replNotebook/browser/repl.contribution": {
+ "repl.execute": "REPL-Eingabe ausführen",
+ "repl.focusLastReplOutput": "Fokus der letzten REPL-Ausführung",
+ "repl.input.focus": "Fokuseingabe-Editor"
+ },
+ "vs/workbench/contrib/replNotebook/browser/replEditor": {
+ "replEditorInput": "REPL-Eingabe"
+ },
+ "vs/workbench/contrib/replNotebook/browser/replEditorAccessibilityHelp": {
+ "replEditor.accessibilityView": "Führen Sie den Befehl{0} „Öffnen der Zugriffsberechtigungsansicht“ aus, während Sie im Verlauf nach einer barrierefreien Ansicht der Ausgabe des Elements navigieren.",
+ "replEditor.autoFocusRepl": "Die Einstellung „accessibility.replEditor.autoFocusReplExecution“ steuert, ob der Fokus nach der Codeausführung automatisch auf die REPL verschoben wird.",
+ "replEditor.cellNavigation": "Mit dem Befehl{0} „Bearbeiten beenden“ wird der Fokus auf den Zellencontainer verschoben, wobei der Fokus mit den Nach-oben- und Nach-unten-Pfeilen auch zwischen Zellen im Verlauf verschoben wird.",
+ "replEditor.configReadExecution": "Die Einstellung „accessibility.replEditor.readLastExecutionOutput“ steuert, ob die Ausgabe nach Abschluss der Ausführung automatisch gelesen wird.",
+ "replEditor.execute": "Der Befehl \"Ausführen\"{0} wertet den Ausdruck im Eingabefeld aus.",
+ "replEditor.focusCellEditor": "Mit dem Befehl{0} „Zelle bearbeiten“ wird der Fokus auf den schreibgeschützten Editor für die Eingabe der Zelle verschoben.",
+ "replEditor.focusInOutput": "Der Befehl \"Fokusausgabe\"{0} legt den Fokus auf die Ausgabe fest, wenn der Fokus auf einem zuvor ausgeführten Element liegt.",
+ "replEditor.focusLastItemAdded": "Mit dem Befehl {0} Zuletzt ausgeführter Fokus wird der Fokus auf das zuletzt ausgeführte Element im REPL-Verlauf verschoben.",
+ "replEditor.focusReplInput": "Mit dem Befehl{0} „Eingabe-Editor für Fokus“ wird der Fokus wieder auf diesen Editor übertragen.",
+ "replEditor.focusReplInputFromHistory": "Mit dem Befehl \"Fokuseingabe-Editor\"{0} wird der Fokus in das REPL-Eingabefeld verschoben.",
+ "replEditor.historyOverview": "Sie befinden sich in einem REPL-Verlauf, bei dem es sich um eine Liste von Zellen handelt, die in der REPL ausgeführt wurden. Jede Zelle verfügt über eine Eingabe, eine Ausgabe und den Zellencontainer.",
+ "replEditor.inputAccessibilityView": "Wenn Sie in diesem Eingabefeld den Befehl{0} Open Access accessibility View ausführen, wird die Ausgabe der letzten Ausführung in der Barrierefreiheitsansicht angezeigt.",
+ "replEditor.inputOverview": "Sie befinden sich in einem Eingabefeld des REPL-Editors, in dem Code akzeptiert wird, der in der REPL ausgeführt werden soll."
+ },
+ "vs/workbench/contrib/replNotebook/browser/replEditorInput": {
+ "replEditorLabelIcon": "Symbol der Beschriftung des REPL-Editors."
},
"vs/workbench/contrib/sash/browser/sash.contribution": {
"sashHoverDelay": "Steuert die Hover-Feedbackverzögerung des Ziehbereichs zwischen Ansichten/Editoren (in Millisekunden).",
"sashSize": "Steuert die Reaktionsbereichsgröße für den Ziehbereich zwischen Ansichten/Editoren (in Pixeln). Legen Sie einen höheren Wert fest, wenn Sie es schwierig finden, die Größe von Ansichten mithilfe der Maus zu ändern."
},
"vs/workbench/contrib/scm/browser/activity": {
+ "scmActiveResourceHasChanges": "Gibt an, ob die aktive Ressource Änderungen aufweist.",
+ "scmActiveResourceRepository": "Das Repository der aktiven Ressource",
"scmPendingChangesBadge": "{0} ausstehende Änderungen",
- "status.scm": "Quellcodeverwaltung"
+ "status.scm": "Quellcodeverwaltung",
+ "status.scm.provider": "Quellcodeanbieter"
},
- "vs/workbench/contrib/scm/browser/dirtydiffDecorator": {
- "change": "{0} von {1} Änderung",
- "changes": "{0} von {1} Änderungen",
- "editorGutterAddedBackground": "Hintergrundfarbe für die Editor-Leiste für Zeilen, die hinzugefügt wurden.",
- "editorGutterDeletedBackground": "Hintergrundfarbe für die Editor-Leiste für Zeilen, die gelöscht wurden.",
- "editorGutterModifiedBackground": "Hintergrundfarbe für die Editor-Leiste für Zeilen, die geändert wurden.",
+ "vs/workbench/contrib/scm/browser/menus": {
+ "miShare": "Freigeben"
+ },
+ "vs/workbench/contrib/scm/browser/quickDiffDecorator": {
+ "diffAdded": "Hinzugefügte Zeilen",
+ "diffDeleted": "Entfernte Zeilen",
+ "diffModified": "Geänderte Zeilen"
+ },
+ "vs/workbench/contrib/scm/browser/quickDiffWidget": {
+ "change": "{0} – {1} von {2} Änderung",
+ "changes": "{0} – {1} von {2} Änderungen",
"label.close": "Schließen",
"miGotoNextChange": "Nächste &&Änderung",
"miGotoPreviousChange": "Vorherige &&Änderung",
- "minimapGutterAddedBackground": "Hintergrundfarbe für hinzugefügte Zeilen im Minimapbundsteg",
- "minimapGutterDeletedBackground": "Hintergrundfarbe für gelöschte Zeilen im Minimapbundsteg",
- "minimapGutterModifiedBackground": "Hintergrundfarbe für geänderte Zeilen im Minimapbundsteg",
"move to next change": "Zur nächsten Änderung wechseln",
"move to previous change": "Zur vorherigen Änderung wechseln",
- "overviewRulerAddedForeground": "Übersichtslineal-Markierungsfarbe für hinzugefügte Inhalte.",
- "overviewRulerDeletedForeground": "Übersichtslineal-Markierungsfarbe für gelöschte Inhalte.",
- "overviewRulerModifiedForeground": "Übersichtslineal-Markierungsfarbe für geänderte Inhalte.",
+ "multiChange": "{0} von {1} Änderung",
+ "multiChanges": "{0} von {1} Änderungen",
+ "quickDiff.base.switch": "Schnellvergleichsbasis wechseln",
+ "remotes": "Schnellvergleichsbasis wechseln",
"show next change": "Nächste Änderung anzeigen",
"show previous change": "Vorherige Änderung anzeigen"
},
@@ -7970,16 +13259,22 @@
"diffGutterWidth": "Steuert die Breite (px) von Diff-Kennzeichnungen im Bundsteg (hinzugefügt und geändert).",
"inputFontFamily": "Steuert die Schriftart für die Eingabenachricht. Verwenden Sie \"default\" für die Schriftfamilie der Workbench-Benutzeroberfläche, \"editor\" für den Wert von \"#editor.fontFamily\" oder eine benutzerdefinierte Schriftfamilie.",
"inputFontSize": "Steuert den Schriftgrad für die Eingabenachricht (in Pixeln).",
+ "inputMaxLines": "Steuert die maximale Anzahl von Zeilen, auf die die Eingabe automatisch vergrößert wird.",
+ "inputMinLines": "Steuert die Mindestanzahl von Zeilen, aus denen die Eingabe automatisch vergrößert wird.",
"manageWorkspaceTrustAction": "Arbeitsbereichsvertrauensstellung verwalten",
- "miViewSCM": "Quellcode &&verwaltung!",
+ "miViewSCM": "Quellcode &&verwaltung",
+ "no history items": "Der ausgewählte Quellcodeverwaltungsanbieter weist keine Elemente für die Quellcodeverwaltung auf.",
"no open repo": "Es sind keine Quellcodeanbieter registriert.",
"no open repo in an untrusted workspace": "Keiner der registrierten Anbieter für Quellcodeverwaltung funktioniert im eingeschränkten Modus.",
- "open in terminal": "In Terminal öffnen",
- "providersVisible": "Steuert, wie viele Repositorys im Abschnitt \"Repositorys der Quellcodeverwaltung\" sichtbar sind. Setzen Sie diese Option auf \"0\", um die Größe der Ansicht manuell anzupassen.",
+ "open in external terminal": "In externem Terminal öffnen",
+ "open in integrated terminal": "In integriertem Terminal öffnen",
+ "providersVisible": "Steuert, wie viele Repositorys im Abschnitt „Repositorys der Quellcodeverwaltung“ sichtbar sind. Setzen Sie diese Option auf „0“, um die Größe der Ansicht manuell anzupassen.",
+ "quickDiffDecoration": "Diff-Dekorationen",
"repositoriesSortOrder": "Steuert die Sortierreihenfolge der Repositorys in der Ansicht \"Repositorys der Quellcodeverwaltung\".",
"scm accept": "Quellcodeverwaltung: Eingabe akzeptieren",
"scm view next commit": "Quellcodeverwaltung: Nächsten Commit anzeigen",
"scm view previous commit": "Quellcodeverwaltung: Vorherigen Commit anzeigen",
+ "scm.compactFolders": "Steuert, ob die Quellcodeverwaltungsansicht in einem kompakten Format rendern soll. In einem solchen Format werden einzelne untergeordnete Ordner in einem kombinierten Strukturelement komprimiert.",
"scm.countBadge": "Steuert den Anzahlbadge auf dem Symbol für die Quellcodeverwaltung in der Aktivitätsleiste.",
"scm.countBadge.all": "Hiermit wird die Summe aller Anzahlbadges für Quellcodeverwaltungsanbieter angezeigt.",
"scm.countBadge.focused": "Hiermit zeigen Sie den Anzahlbadge für den ausgewählten Anbieter der Quellcodeverwaltung an.",
@@ -8005,32 +13300,138 @@
"scm.diffDecorationsIgnoreTrimWhitespace.false": "Ignorieren Sie keine führenden und nachfolgenden Leerzeichen.",
"scm.diffDecorationsIgnoreTrimWhitespace.inherit": "Von „diffEditor.ignoreTrimWhitespace“ erben.",
"scm.diffDecorationsIgnoreTrimWhitespace.true": "Ignorieren Sie führende und nachfolgende Leerzeichen.",
- "scm.providerCountBadge": "Steuert die Anzahlbadges in den Headern für Quellcodeverwaltungsanbieter. Diese Header werden nur angezeigt, wenn mehr als ein Anbieter vorhanden ist.",
+ "scm.graph.badges": "Steuert, welche Badges in der Graph-Ansicht der Quellcodeverwaltung angezeigt werden. Die Badges werden auf der rechten Seite des Diagramms angezeigt, die die Namen von Verlaufselementgruppen angibt.",
+ "scm.graph.badges.all": "Badges aller Verlaufselementgruppen in der Graph-Ansicht der Quellcodeverwaltung anzeigen.",
+ "scm.graph.badges.filter": "Zeigt nur die Badges von Verlaufselementgruppen an, die als Filter in der Graph-Ansicht der Quellcodeverwaltung verwendet werden.",
+ "scm.graph.pageOnScroll": "Steuert, ob die Graph-Ansicht der Quellcodeverwaltung die nächste Seite mit Elementen lädt, wenn Sie an das Ende der Liste scrollen.",
+ "scm.graph.pageSize": "Die Anzahl der Elemente, die standardmäßig in der Graph-Ansicht der Quellcodeverwaltung und beim Laden weiterer Elemente angezeigt werden sollen.",
+ "scm.graph.showIncomingChanges": "Steuert, ob eingehende Änderungen in der Ansicht „Quellcodeverwaltungsdiagramm“ angezeigt werden.",
+ "scm.graph.showOutgoingChanges": "Steuert, ob ausgehende Änderungen in der Ansicht „Quellcodeverwaltungsdiagramm“ angezeigt werden.",
+ "scm.providerCountBadge": "Steuert die Anzahlbadges in Headern von Quellcodeverwaltungsanbietern. Diese Header werden in der Ansicht \"Quellcodeverwaltung\" angezeigt, wenn mehrere Anbieter vorhanden sind oder wenn die Einstellung {0} aktiviert ist, und in der Ansicht \"Repositorys der Quellcodeverwaltung\".",
"scm.providerCountBadge.auto": "Hiermit wird der Anzahlbadge für Quellcodeverwaltungsanbieter nur angezeigt, wenn die Anzahl ungleich Null ist.",
"scm.providerCountBadge.hidden": "Hiermit werden Badges für die Anzahl von Quellcodeverwaltungsanbietern ausgeblendet.",
"scm.providerCountBadge.visible": "Hiermit werden Badges für die Anzahl von Quellcodeverwaltungsanbietern angezeigt.",
+ "scm.repositories.explorer": "Steuert, ob Repository-Artefakte in der Ansicht „Quellcodeverwaltungsrepositories“ angezeigt werden. Diese Funktion ist experimentell und funktioniert nur, wenn {0} auf „{1}“ eingestellt ist.",
+ "scm.repositories.selectionMode": "Steuert den Auswahlmodus der Repositorys in der Ansicht „Quellcodeverwaltungsrepositories“.",
+ "scm.repositories.selectionMode.multiple": "Mehrere Repositorys können gleichzeitig ausgewählt werden.",
+ "scm.repositories.selectionMode.single": "Es kann jeweils nur ein Repository ausgewählt werden.",
"scm.repositoriesSortOrder.discoveryTime": "Repositorys in der Ansicht \"Repositorys der Quellcodeverwaltung\" werden nach der Zeit der Erkennung sortiert. Repositorys in der Ansicht \" 'Quellcodeverwaltung\" ' werden in der Reihenfolge sortiert, in der sie ausgewählt wurden.",
"scm.repositoriesSortOrder.name": "Repositorys in den Ansichten \"Repositorys der Quellcodeverwaltung\" und \"Quellcodeverwaltung\" werden nach Repositoryname sortiert.",
"scm.repositoriesSortOrder.path": "Repositorys in den Ansichten \"Repositorys der Quellcodeverwaltung\" und \"Quellcodeverwaltung\" werden nach Repositorypfad sortiert.",
+ "scm.workingSets.default": "Steuert den Standardarbeitssatz, der beim Wechseln zu einer Elementgruppe für den Quellcodeverwaltungsverlauf verwendet werden soll, die keinen Arbeitssatz auflistet.",
+ "scm.workingSets.default.current": "Verwenden Sie den aktuellen Arbeitssatz, wenn Sie zu einer Elementgruppe für den Quellcodeverwaltungsverlauf wechseln, die keinen Arbeitssatz enthält.",
+ "scm.workingSets.default.empty": "Verwenden Sie einen leeren Arbeitssatz, wenn Sie zu einer Elementgruppe des Quellcodeverwaltungsverlaufs wechseln, die keinen Arbeitssatz enthält.",
+ "scm.workingSets.enabled": "Steuert, ob Editor-Arbeitssätze gespeichert werden sollen, wenn zwischen Quellcodeverwaltungsverlauf-Elementgruppen gewechselt wird.",
+ "scmActiveRepositoryAutoDescription": "Das aktive Repository wird anhand des aktiven Editors aktualisiert.",
+ "scmActiveRepositoryPlaceHolder": "Wählen Sie das aktive Repository aus, oder geben Sie einen Suchbegriff ein, um die Repositorys zu filtern.",
+ "scmChanges": "Änderungen",
"scmConfigurationTitle": "Quellcodeverwaltung",
+ "scmEditorResolveMergeConflict": "Konflikte mit KI lösen",
+ "scmGraph": "Graph",
+ "scmRepositories": "Repositorys",
"showActionButton": "Steuert, ob eine Aktionsschaltfläche in der SCM-Ansicht angezeigt werden kann.",
+ "showInputActionButton": "Steuert, ob eine interaktive Schaltfläche in der Quellensteuerungseingabe angezeigt werden kann.",
"source control": "Quellcodeverwaltung",
+ "source control graph": "Graph für Quellcodeverwaltung",
"source control repositories": "Repositorys der Quellcodeverwaltung",
+ "source control view": "Quellcodeverwaltung",
"sourceControlViewIcon": "Ansichtssymbol der Quellcodeverwaltungsansicht."
},
+ "vs/workbench/contrib/scm/browser/scmAccessibilityHelp": {
+ "disabled": "deaktiviert",
+ "enabled": "aktiviert",
+ "scm-graph-msg1": "Verwenden Sie den Befehl \"Quellcodeverwaltung: Fokus auf Quellcodeverwaltungsdiagrammansicht\", um die Ansicht \"Quellcodeverwaltungsdiagramm\" zu öffnen.",
+ "scm-graph-msg2": "In der Ansicht \"Quellcodeverwaltungsdiagramm\" werden Diagrammverlaufselemente des Repositorys angezeigt. Wenn der Arbeitsbereich mehr als ein Repository enthält, werden die Verlaufselemente des aktiven Repositorys aufgelistet.",
+ "scm-graph-msg3": "Sobald die Ansicht \"Quellcodeverwaltungsdiagramm\" geöffnet wurde, haben Sie folgende Möglichkeiten:",
+ "scm-graph-msg4": " - Verwenden Sie die NACH-OBEN-/NACH-UNTEN-TASTE, um in der Liste der Verlaufselemente zu navigieren.",
+ "scm-graph-msg5": "- Verwenden Sie die LEERTASTE, um die Details zum Verlaufselement im Editor für diff mehrere Dateien zu öffnen.",
+ "scm-msg1": "Verwenden Sie den Befehl \"Quellcodeverwaltung: Fokus auf Quellcodeverwaltungsansicht\", um die Quellcodeverwaltungsansicht zu öffnen.",
+ "scm-msg2": "In der Ansicht \"Quellcodeverwaltung\" werden die Ressourcengruppen und Ressourcen des Repositorys angezeigt. Wenn der Arbeitsbereich mehr als ein Repository enthält, werden die Ressourcengruppen und Ressourcen der Repositorys aufgelistet, die in der Ansicht \"Repositorys der Quellcodeverwaltung\" ausgewählt wurden.",
+ "scm-msg3": "Nach dem Öffnen der Quellcodeverwaltungsansicht haben Sie folgende Möglichkeiten:",
+ "scm-msg4": " - Verwenden Sie die NACH-OBEN-/NACH-UNTEN-TASTE, um in der Liste der Repositorys, Ressourcengruppen und Ressourcen zu navigieren.",
+ "scm-msg5": " - Verwenden Sie die LEERTASTE, um eine Ressourcengruppe zu erweitern oder zu reduzieren.",
+ "scm-repositories-msg1": "Verwenden Sie den Befehl \"Quellcodeverwaltung: Fokus auf die Ansicht der Quellcodeverwaltungsrepositorys\", um die Ansicht \"Repositorys der Quellcodeverwaltung\" zu öffnen.",
+ "scm-repositories-msg2": "In der Ansicht \"Repositorys der Quellcodeverwaltung\" werden alle Repositorys aus dem Arbeitsbereich aufgelistet. Sie wird nur angezeigt, wenn der Arbeitsbereich mehrere Repositorys enthält.",
+ "scm-repositories-msg3": "Sobald die Ansicht \"Repositorys der Quellcodeverwaltung\" geöffnet wurde, haben Sie folgende Möglichkeiten:",
+ "scm-repositories-msg4": " - Verwenden Sie die NACH-OBEN-/NACH-UNTEN-TASTE, um in der Liste der Repositorys zu navigieren.",
+ "scm-repositories-msg5": " - Verwenden Sie die EINGABE- oder LEERTASTE, um ein Repository auszuwählen.",
+ "scm-repositories-msg6": " - Verwenden Sie UMSCH + NACH OBEN/NACH UNTEN Schlüssel, um mehrere Repositorys auszuwählen.",
+ "state-msg1": "Sichtbare Repositorys: {0}",
+ "state-msg2": "Repository: {0}",
+ "state-msg3": "Verweis auf Verlaufselement: {0}",
+ "state-msg4": "Commitnachricht: {0}",
+ "state-msg5": "Interaktive Schaltfläche: {0}, {1}",
+ "state-msg6": "Ressourcengruppen: {0}"
+ },
+ "vs/workbench/contrib/scm/browser/scmHistory": {
+ "incomingChanges": "Eingehende Änderungen",
+ "outgoingChanges": "Ausgehende Änderungen",
+ "scmGraph.HistoryItemHoverAdditionsForeground": "Vordergrundfarbe der Hinzufügevorgänge von Verlaufselementen beim Draufzeigen.",
+ "scmGraph.HistoryItemHoverDeletionsForeground": "Vordergrundfarbe der Löschvorgänge von Verlaufselementen beim Draufzeigen.",
+ "scmGraphForeground1": "Vordergrundfarbe des Quellcodeverwaltungsdiagramms (1).",
+ "scmGraphForeground2": "Vordergrundfarbe des Quellcodeverwaltungsdiagramms (2).",
+ "scmGraphForeground3": "Vordergrundfarbe des Quellcodeverwaltungsdiagramms (3).",
+ "scmGraphForeground4": "Vordergrundfarbe des Quellcodeverwaltungsdiagramms (4).",
+ "scmGraphForeground5": "Vordergrundfarbe des Quellcodeverwaltungsdiagramms (5).",
+ "scmGraphHistoryItemBaseRefColor": "Basisreferenzfarbe des Verlaufselements.",
+ "scmGraphHistoryItemHoverDefaultLabelBackground": "Hintergrundfarbe für das Zeigen auf die Standardbezeichnung des Verlaufselements.",
+ "scmGraphHistoryItemHoverDefaultLabelForeground": "Vordergrundfarbe für das Zeigen auf die Standardbezeichnung des Verlaufselements.",
+ "scmGraphHistoryItemHoverLabelForeground": "Vordergrundfarbe für das Zeigen auf die Bezeichnung des Verlaufselements.",
+ "scmGraphHistoryItemRefColor": "Referenzfarbe des Verlaufselements.",
+ "scmGraphHistoryItemRemoteRefColor": "Remotereferenzfarbe des Verlaufselements."
+ },
+ "vs/workbench/contrib/scm/browser/scmHistoryChatContext": {
+ "chat.action.scmHistoryItemContext": "Zum Chat hinzufügen",
+ "chat.action.scmHistoryItemSummarize": "Erläutern von Änderungen",
+ "chatContext.scmHistoryItems": "Quellcodeverwaltung …",
+ "chatContext.scmHistoryItems.placeholder": "Eine Änderung auswählen",
+ "files": "Datei(en)"
+ },
+ "vs/workbench/contrib/scm/browser/scmHistoryViewPane": {
+ "activeRepository": "Anzeigen des Quellcodeverwaltungsdiagramms für das aktive Repository",
+ "all": "Alle",
+ "allHistoryItemRefs": "Alle Verlaufselementverweise",
+ "auto": "Automatisch",
+ "currentHistoryItemRef": "Aktuelle Verlaufselementreferenz(en)",
+ "goToCurrentHistoryItem": "Zum aktuellen Verlaufselement wechseln",
+ "incomingChanges": "Eingehende Änderungen",
+ "items": "{0} Elemente",
+ "loadMore": "{0} Weitere laden...",
+ "openChanges": "Offene Änderungen",
+ "openFile": "Datei öffnen",
+ "outgoingChanges": "Ausgehende Änderungen",
+ "referencePicker": "Verweisauswahl für Verlaufselemente",
+ "refreshGraph": "Aktualisieren",
+ "repositoryPicker": "Repositoryauswahl",
+ "scm history": "Verlauf für die Quellcodeverwaltung",
+ "scmGraphHistoryItemRef": "Wählen Sie einen oder mehrere Verlaufselementverweise aus, die angezeigt werden sollen. Geben Sie einen Suchbegriff zum Filtern ein.",
+ "scmGraphRepository": "Wählen Sie das anzuzeigende Repository aus, oder geben Sie einen Suchbegriff ein, um die Repositorys zu filtern.",
+ "scmGraphViewOutdated": "Aktualisieren Sie das Diagramm mithilfe der Aktualisierungsaktion ($(refresh)).",
+ "setListViewMode": "Als Liste anzeigen",
+ "setTreeViewMode": "Als Struktur anzeigen"
+ },
"vs/workbench/contrib/scm/browser/scmRepositoriesViewPane": {
"scm": "Repositorys der Quellcodeverwaltung"
},
"vs/workbench/contrib/scm/browser/scmViewPane": {
"collapse all": "Alle Repositorys zuklappen",
"expand all": "Alle Repositorys aufklappen",
- "input": "Quellcodeverwaltungseingabe",
+ "label.close": "Schließen",
"repositories": "Repositorys",
+ "repositoryMultiSelectionMode": "Mehrere Repositorys auswählen",
+ "repositorySingleSelectionMode": "Ein einzelnes Repository auswählen",
"repositorySortByDiscoveryTime": "Nach Ermittlungszeit sortieren",
"repositorySortByName": "Nach Namen sortieren",
"repositorySortByPath": "Nach Pfad sortieren",
"scm": "Quellcodeverwaltung",
- "scm.providerBorder": "Trennlinienrahmen für SCM-Anbieter.",
+ "scmInput": "Quellcodeverwaltungseingabe",
+ "scmInput.accessibilityHelp": "{0}, verwenden Sie {1}, um die Hilfe zur Barrierefreiheit der Quellcodeverwaltung zu öffnen.",
+ "scmInput.accessibilityHelpNoKb": "{0}, Führen Sie den Befehl „Hilfe zur Barrierefreiheit öffnen“ aus, um weitere Informationen zu erhalten.",
+ "scmInputCancelAction": "Abbrechen",
+ "scmInputGenerateCommitMessage": "Commitnachricht generieren",
+ "scmInputMoreActions": "Weitere Aktionen...",
+ "scmInputRow.accessibilityHelp": "Quellcodeverwaltungseingabe. Verwenden Sie {0}, um die Hilfe zur Barrierefreiheit der Quellcodeverwaltung zu öffnen.",
+ "scmInputRow.accessibilityHelpNoKb": "Quellcodeverwaltungseingabe: Ausführen des Befehls „Hilfe zur Barrierefreiheit öffnen“ für weitere Informationen.",
"setListViewMode": "Als Liste anzeigen",
"setTreeViewMode": "Als Struktur anzeigen",
"sortAction": "Anzeigen und sortieren",
@@ -8038,14 +13439,41 @@
"sortChangesByPath": "Änderungen nach Pfad sortieren",
"sortChangesByStatus": "Änderungen nach Status sortieren"
},
- "vs/workbench/contrib/scm/browser/scmViewPaneContainer": {
- "source control": "Quellcodeverwaltung"
+ "vs/workbench/contrib/scm/browser/scmViewService": {
+ "auto": "Automatisch"
+ },
+ "vs/workbench/contrib/scm/common/quickDiff": {
+ "editorGutterAddedBackground": "Hintergrundfarbe für die Editor-Leiste für Zeilen, die hinzugefügt wurden.",
+ "editorGutterAddedSecondaryBackground": "Sekundäre Hintergrundfarbe für die Editorleiste für Zeilen, die hinzugefügt wurden.",
+ "editorGutterDeletedBackground": "Hintergrundfarbe für die Editor-Leiste für Zeilen, die gelöscht wurden.",
+ "editorGutterDeletedSecondaryBackground": "Sekundäre Hintergrundfarbe für die Editorleiste für Zeilen, die gelöscht wurden.",
+ "editorGutterItemBackground": "Farbe der Editor-Bundstegdekoration für Bundstegelementhintergrund. Diese Farbe sollte undurchsichtig sein.",
+ "editorGutterItemGlyphForeground": "Farbe der Editor-Bundstegdekoration für Bundstegelementglyphen.",
+ "editorGutterModifiedBackground": "Hintergrundfarbe für die Editor-Leiste für Zeilen, die geändert wurden.",
+ "editorGutterModifiedSecondaryBackground": "Sekundäre Hintergrundfarbe für die Editorleiste für Zeilen, die geändert wurden.",
+ "minimapGutterAddedBackground": "Hintergrundfarbe für hinzugefügte Zeilen im Minimapbundsteg",
+ "minimapGutterDeletedBackground": "Hintergrundfarbe für gelöschte Zeilen im Minimapbundsteg",
+ "minimapGutterModifiedBackground": "Hintergrundfarbe für geänderte Zeilen im Minimapbundsteg",
+ "overviewRulerAddedForeground": "Übersichtslineal-Markierungsfarbe für hinzugefügte Inhalte.",
+ "overviewRulerDeletedForeground": "Übersichtslineal-Markierungsfarbe für gelöschte Inhalte.",
+ "overviewRulerModifiedForeground": "Übersichtslineal-Markierungsfarbe für geänderte Inhalte."
+ },
+ "vs/workbench/contrib/scrollLocking/browser/scrollLocking": {
+ "holdLockedScrolling": "Gesperrtes Scrollen zwischen Editoren halten",
+ "miHoldLockedScrolling": "Gesperrtes Scrollen",
+ "miToggleLockedScrolling": "Gesperrtes Scrollen",
+ "mouseLockScrollingEnabled": "Gesperrtes Scrollen aktiviert",
+ "mouseScrolllingLocked": "Scrollen gesperrt",
+ "synchronizeScrolling": "Scroll-Editoren synchronisieren",
+ "toggleLockedScrolling": "Gesperrtes Scrollen zwischen Editoren umschalten"
},
"vs/workbench/contrib/search/browser/anythingQuickAccess": {
+ "chat": "Schnellchat öffnen",
"closeEditor": "Aus zuletzt geöffneten entfernen",
"fileAndSymbolResultsSeparator": "Datei- und Symbolergebnisse",
"filePickAriaLabelDirty": "{0} nicht gespeicherte Änderungen",
"fileResultsSeparator": "Dateiergebnisse",
+ "helpPickAriaLabel": "{0}, {1}",
"noAnythingResults": "Keine übereinstimmenden Ergebnisse.",
"openToBottom": "Unten öffnen",
"openToSide": "An der Seite öffnen",
@@ -8056,68 +13484,74 @@
"onlySearchInOpenEditors": "Nur in geöffneten Editoren suchen",
"useExcludesAndIgnoreFilesDescription": "Ausschlusseinstellungen und Ignorieren von Dateien verwenden"
},
+ "vs/workbench/contrib/search/browser/quickTextSearch/textSearchQuickAccess": {
+ "QuickSearchMore": "Mehr",
+ "QuickSearchOpenInFile": "Datei öffnen",
+ "QuickSearchSeeMoreFiles": "Weitere Dateien anzeigen",
+ "enterSearchTerm": "Geben Sie einen Begriff ein, nach dem Sie in Ihren Dateien suchen möchten.",
+ "goToSearch": "In Suchansicht öffnen",
+ "noAnythingResults": "Keine übereinstimmenden Ergebnisse.",
+ "showMore": "In Suchansicht öffnen"
+ },
"vs/workbench/contrib/search/browser/replaceService": {
"fileReplaceChanges": "{0} ↔ {1} (Vorschau ersetzen)",
"searchReplace.source": "Suchen und Ersetzen"
},
"vs/workbench/contrib/search/browser/search.contribution": {
- "CancelSearchAction.label": "Suche abbrechen",
- "ClearSearchResultsAction.label": "Suchergebnisse löschen",
- "CollapseDeepestExpandedLevelAction.label": "Alle zuklappen",
- "ExpandAllAction.label": "Alle aufklappen",
- "RefreshAction.label": "Aktualisieren",
"anythingQuickAccess": "Zu Datei wechseln",
"anythingQuickAccessPlaceholder": "Dateien nach Namen durchsuchen ({0} anfügen, um zur Zeile zu wechseln, {1} anfügen, um zum Symbol zu wechseln)",
- "clearSearchHistoryLabel": "Suchverlauf löschen",
- "copyAllLabel": "Alles kopieren",
- "copyMatchLabel": "Kopieren",
- "copyPathLabel": "Pfad kopieren",
- "exclude": "Konfigurieren Sie [Globmuster](https://code.visualstudio.com/docs/editor/codebasics#_advanced-search-options), um Dateien und Ordner in Volltextsuchen auszuschließen und schnell zu öffnen. Erbt alle Globmuster von der Einstellung \"#files.exclude#\".",
+ "exclude": "Konfigurieren Sie [Globmuster](https://code.visualstudio.com/docs/editor/codebasics#_advanced-search-options) für das Ausschließen von Dateien und Ordnern in Volltextsuchen und die Dateisuche im Schnellöffnen. Um Dateien aus der zuletzt geöffneten Liste im Schnellöffnen auszuschließen, müssen Muster absolut sein (z. B. „**/node_modules/**“). Erbt alle Globmuster von der Einstellung „#files.exclude#“.",
"exclude.boolean": "Das Globmuster, mit dem Dateipfade verglichen werden sollen. Legen Sie diesen Wert auf \"true\" oder \"false\" fest, um das Muster zu aktivieren bzw. zu deaktivieren.",
"exclude.when": "Zusätzliche Überprüfung der gleichgeordneten Elemente einer übereinstimmenden Datei. Verwenden Sie „\\$(basename)“ als Variable für den übereinstimmenden Dateinamen.",
"filterSortOrder": "Legt die Sortierreihenfolge des Editor-Verlaufs beim Filtern in Quick Open fest.",
"filterSortOrder.default": "Verlaufseinträge werden anhand des verwendeten Filterwerts nach Relevanz sortiert. Relevantere Einträge werden zuerst angezeigt.",
"filterSortOrder.recency": "Verlaufseinträge werden absteigend nach Datum sortiert. Zuletzt geöffnete Einträge werden zuerst angezeigt.",
- "findInFiles": "In Dateien suchen",
- "findInFiles.args": "Eine Reihe von Optionen für die Suche",
- "findInFiles.description": "Öffnen einer Arbeitsbereichssuche",
- "findInFolder": "In Ordner suchen...",
- "findInWorkspace": "In Arbeitsbereich suchen...",
- "focusSearchListCommandLabel": "Liste fokussieren",
"maintainFileSearchCacheDeprecated": "Der Suchcache wird auf dem Erweiterungshost beibehalten, der nie heruntergefahren wird, sodass diese Einstellung nicht mehr benötigt wird.",
- "miFindInFiles": "&&In Dateien suchen",
- "miGotoSymbolInWorkspace": "Zu Symbol in &&Arbeitsbereich wechseln...",
- "miReplaceInFiles": "&&In Dateien ersetzen",
"miViewSearch": "&&Suchen",
- "name": "Suchen",
- "revealInSideBar": "In Explorer-Ansicht anzeigen",
+ "scm.defaultViewMode.list": "Zeigt Suchergebnisse als Liste an.",
+ "scm.defaultViewMode.tree": "Zeigt Suchergebnisse als Struktur an.",
"search": "Suchen",
"search.actionsPosition": "Steuert die Positionierung der Aktionsleiste auf Zeilen in der Suchansicht.",
"search.actionsPositionAuto": "Hiermit wird die Aktionsleiste auf der rechten Seite positioniert, wenn die Suchansicht schmal ist, und gleich hinter dem Inhalt, wenn die Suchansicht breit ist.",
"search.actionsPositionRight": "Hiermit wird die Aktionsleiste immer auf der rechten Seite positioniert.",
"search.collapseAllResults": "Steuert, ob die Suchergebnisse zu- oder aufgeklappt werden.",
"search.collapseResults.auto": "Dateien mit weniger als 10 Ergebnissen werden erweitert. Andere bleiben reduziert.",
+ "search.decorations.badges": "Steuert, ob Suchdateidekorationen Badges verwenden sollen.",
+ "search.decorations.colors": "Steuert, ob Suchdateidekorationen Farben verwenden sollen.",
+ "search.defaultViewMode": "Steuert den Standardmodus für die Suchergebnisansicht.",
+ "search.experimental.closedNotebookResults": "Ergebnisse für erweiterte Inhalte des Notebook-Editors für geschlossene Notebooks anzeigen. Aktualisieren Sie Ihre Suchergebnisse, nachdem Sie diese Einstellung geändert haben.",
"search.followSymlinks": "Steuert, ob Symlinks während der Suche gefolgt werden.",
"search.globalFindClipboard": "Steuert, ob die Suchansicht die freigegebene Suchzwischenablage unter macOS lesen oder verändern soll.",
"search.location": "Steuert, ob die Suche als Ansicht in der Seitenleiste oder als Panel angezeigt wird, damit horizontal mehr Platz verfügbar ist.",
"search.location.deprecationMessage": "Diese Einstellung ist veraltet. Sie können stattdessen das Suchsymbol an eine neue Position ziehen.",
"search.maintainFileSearchCache": "Wenn diese Option aktiviert ist, bleibt der SearchService-Prozess aktiv, anstatt nach einer Stunde Inaktivität beendet zu werden. Dadurch wird der Cache für Dateisuchen im Arbeitsspeicher beibehalten.",
"search.maxResults": "Steuert die maximale Anzahl von Suchergebnissen, diese kann auf \"NULL\" (leer) festgelegt werden, um unbegrenzte Ergebnisse zurückzugeben.",
- "search.mode": "Steuert, wo die neuen Vorgänge „Suche: In Dateien suchen“ und „In Ordner suchen“ durchgeführt werden – entweder in der Suchansicht oder in einem Such-Editor.",
+ "search.mode": "Steuert, wo die neuen Vorgänge „Suche: In Dateien suchen“ und „In Ordner suchen“ durchgeführt werden – entweder in der Suchansicht oder in einem Sucheditor.",
"search.mode.newEditor": "In einem neuen Such-Editor suchen",
"search.mode.reuseEditor": "In einem vorhandenen Such-Editor, ansonsten in einem neuen Such-Editor suchen",
- "search.mode.view": "In der Suchansicht suchen, entweder im Bereich oder in der Seitenleiste.",
+ "search.mode.view": "In der Suchansicht suchen, entweder im Bereich oder in den Seitenleisten.",
+ "search.quickAccess.preserveInput": "Steuert, ob die letzte Eingabe für die Schnellsuche wiederhergestellt werden soll, wenn Sie sie das nächste Mal öffnen.",
"search.quickOpen.includeHistory": "Gibt an, ob Ergebnisse aus zuletzt geöffneten Dateien in den Dateiergebnissen für Quick Open aufgeführt werden.",
"search.quickOpen.includeSymbols": "Konfiguriert, ob Ergebnisse aus einer globalen Symbolsuche in die Dateiergebnisse für Quick Open eingeschlossen werden sollen.",
+ "search.ripgrep.maxThreads": "Anzahl der Threads, die für die Suche verwendet werden sollen. Wenn dieser Wert auf 0 festgelegt ist, bestimmt die Engine diesen Wert automatisch.",
"search.searchEditor.defaultNumberOfContextLines": "Die Standardanzahl der umgebenden Kontextzeilen, die beim Erstellen neuer Such-Editoren verwendet werden sollen. Bei Verwendung von \"#search.searchEditor.reusePriorSearchConfiguration#\" kann dies auf \"NULL\" (leer) festgelegt werden, damit die Konfiguration des vorherigen Such-Editors verwendet wird.",
- "search.searchEditor.doubleClickBehaviour": "Konfiguriert den Effekt des Doppelklickens auf ein Ergebnis in einem Such-Editor.",
+ "search.searchEditor.doubleClickBehaviour": "Konfigurieren Sie die Auswirkung des Doppelklickens auf ein Ergebnis in einem Such-Editor.",
"search.searchEditor.doubleClickBehaviour.goToLocation": "Durch Doppelklicken wird das Ergebnis in der aktiven Editor-Gruppe geöffnet.",
- "search.searchEditor.doubleClickBehaviour.openLocationToSide": "Durch Doppelklicken wird das Ergebnis in der Editorgruppe an der Seite geöffnet, wodurch ein Ergebnis erstellt wird, wenn noch keines vorhanden ist.",
+ "search.searchEditor.doubleClickBehaviour.openLocationToSide": "Durch Doppelklicken wird das Ergebnis in der Editor-Gruppe auf der Seite geöffnet; es wird ein Ergebnis erstellt, wenn es noch nicht vorhanden ist.",
"search.searchEditor.doubleClickBehaviour.selectWord": "Durch Doppelklicken wird das Wort unter dem Cursor ausgewählt.",
+ "search.searchEditor.focusResultsOnSearch": "Wenn eine Suche ausgelöst wird, konzentrieren Sie sich auf die Ergebnisse des Such-Editors anstatt auf die Eingabe des Such-Editors.",
"search.searchEditor.reusePriorSearchConfiguration": "Sofern aktiviert, verwenden neue Such-Editoren die Einschlüsse, Ausschlüsse und Flags des zuvor geöffneten Such-Editors.",
+ "search.searchEditor.singleClickBehaviour": "Auswirkung durch einmaliges Klicken auf ein Ergebnis in einem Such-Editor konfigurieren.",
+ "search.searchEditor.singleClickBehaviour.default": "Durch einmaliges Klicken wird nichts bewirkt.",
+ "search.searchEditor.singleClickBehaviour.peekDefinition": "Durch einmaliges Klicken wird ein Fenster „Definition einsehen“ geöffnet.",
"search.searchOnType": "Alle Dateien während der Eingabe durchsuchen",
"search.searchOnTypeDebouncePeriod": "Wenn {0} aktiviert ist, wird das Timeout in Millisekunden zwischen der Eingabe eines Zeichens und dem Starten der Suche gesteuert. Hat keine Auswirkungen, wenn {0} deaktiviert ist.",
- "search.seedOnFocus": "Hiermit wird die Suchabfrage auf den ausgewählten Editor-Text aktualisiert, wenn die Suchansicht den Fokus hat. Dies geschieht entweder per Klick oder durch Auslösen des Befehls \"workbench.views.search.focus\".",
+ "search.searchView.keywordSuggestions": "Aktivieren Sie Schlüsselwortvorschläge in der Suchansicht.",
+ "search.searchView.semanticSearchBehavior": "Steuert das Verhalten der semantischen Suchergebnisse, die in der Suchansicht angezeigt werden.",
+ "search.searchView.semanticSearchBehavior.auto": "Bei jeder Suche werden semantische Ergebnisse automatisch angefordert.",
+ "search.searchView.semanticSearchBehavior.manual": "Fordern Sie semantische Suchergebnisse nur manuell an.",
+ "search.searchView.semanticSearchBehavior.runOnEmpty": "Semantische Ergebnisse werden nur dann automatisch angefordert, wenn die Textsuchergebnisse leer sind.",
+ "search.seedOnFocus": "Hiermit wird die Suchabfrage auf den ausgewählten Editor-Text aktualisiert, wenn die Suchansicht den Fokus hat. Dies geschieht entweder per Klick oder durch Auslösen des Befehls „workbench.views.search.focus“.",
"search.seedWithNearestWord": "Aktivieren Sie das Starten der Suche mit dem Wort, das dem Cursor am nächsten liegt, wenn der aktive Editor keine Auswahl aufweist.",
"search.showLineNumbers": "Steuert, ob Zeilennummern für Suchergebnisse angezeigt werden.",
"search.smartCase": "Sucht ohne Berücksichtigung von Groß-/Kleinschreibung, wenn das Muster kleingeschrieben ist, andernfalls wird mit Berücksichtigung von Groß-/Kleinschreibung gesucht.",
@@ -8131,25 +13565,92 @@
"searchSortOrder.filesOnly": "Die Ergebnisse werden nach Dateinamen in alphabetischer Reihenfolge sortiert. Die Ordnerreihenfolge wird ignoriert.",
"searchSortOrder.modified": "Die Ergebnisse werden nach dem Datum der letzten Dateiänderung in absteigender Reihenfolge sortiert.",
"searchSortOrder.type": "Die Ergebnisse werden nach Dateiendungen in alphabetischer Reihenfolge sortiert.",
- "showTriggerActions": "Zu Symbol im Arbeitsbereich wechseln...",
"symbolsQuickAccess": "Zu Symbol im Arbeitsbereich wechseln",
"symbolsQuickAccessPlaceholder": "Geben Sie den Namen eines zu öffnenden Symbols ein.",
- "useGlobalIgnoreFiles": "Steuert, ob bei der Suche nach Dateien globale „.gitignore“- und „.ignore“-Dateien verwendet werden sollen. Erfordert, dass „#search.useIgnoreFiles#“ aktiviert ist.",
+ "textSearchPickerHelp": "Nach Text suchen",
+ "textSearchPickerPlaceholder": "Suchen Sie in Ihren Arbeitsbereichsdateien nach Text.",
+ "useGlobalIgnoreFiles": "Steuert, ob Ihre globale Gitignore-Datei (z. B. aus „$HOME/.config/git/ignore“) beim Suchen nach Dateien verwendet werden soll. Erfordert, dass „{0}“ aktiviert ist.",
"useIgnoreFiles": "Steuert, ob bei der Dateisuche GITIGNORE- und IGNORE-Dateien verwendet werden.",
"usePCRE2Deprecated": "Veraltet. PCRE2 wird beim Einsatz von Features für reguläre Ausdrücke, die nur von PCRE2 unterstützt werden, automatisch verwendet.",
- "useParentIgnoreFiles": "Steuert, ob \".gitignore\"- und \".ignore\"-Dateien in übergeordneten Verzeichnissen verwendet werden, wenn nach Dateien gesucht wird. Erfordert, dass \"#search.useIgnoreFiles#\" aktiviert ist.",
+ "useParentIgnoreFiles": "Steuert, ob die Dateien „.gitignore“ und „.ignore“ in übergeordneten Verzeichnissen verwendet werden, wenn nach Dateien gesucht wird. Erfordert, dass „{0}“ aktiviert ist.",
"useRipgrep": "Diese Einstellung ist veraltet und greift jetzt auf \"search.usePCRE2\" zurück.",
"useRipgrepDeprecated": "Veraltet. Verwenden Sie \"search.usePCRE2\" für die erweiterte Unterstützung von RegEx-Features."
},
- "vs/workbench/contrib/search/browser/searchActions": {
+ "vs/workbench/contrib/search/browser/searchActionsBase": {
+ "search": "Suchen"
+ },
+ "vs/workbench/contrib/search/browser/searchActionsCopy": {
+ "copyAllLabel": "Alles kopieren",
+ "copyMatchLabel": "Kopieren",
+ "copyPathLabel": "Pfad kopieren",
+ "getSearchResultsLabel": "Suchergebnisse abrufen"
+ },
+ "vs/workbench/contrib/search/browser/searchActionsFind": {
+ "excludeFileTypeFromSearch": "Dateityp aus der Suche ausschließen",
+ "excludeFolderFromSearch": "Ordner von der Suche ausschließen",
+ "findInFiles": "In Dateien suchen",
+ "findInFiles.args": "Eine Reihe von Optionen für die Suche",
+ "findInFiles.description": "Öffnen einer Arbeitsbereichssuche",
+ "findInFolder": "In Ordner suchen...",
+ "findInWorkspace": "In Arbeitsbereich suchen...",
+ "includeFileTypeInSearch": "Dateityp in die Suche einbeziehen",
+ "miFindInFiles": "&&In Dateien suchen",
+ "restrictResultsToFolder": "Suche auf Ordner beschränken",
+ "revealInSideBar": "In Explorer-Ansicht anzeigen",
+ "search.expandRecursively": "Rekursiv erweitern"
+ },
+ "vs/workbench/contrib/search/browser/searchActionsNav": {
+ "AddCursorsAtSearchResults.label": "Cursors zu Suchergebnissen hinzufügen",
+ "CloseReplaceWidget.label": "Widget „Ersetzen“ schließen",
+ "FocusNextInputAction.label": "Auf nächster Eingabe fokussieren",
"FocusNextSearchResult.label": "Fokus auf nächstes Suchergebnis",
+ "FocusPreviousInputAction.label": "Auf vorherige Eingabe fokussieren",
"FocusPreviousSearchResult.label": "Fokus auf vorheriges Suchergebnis",
- "RemoveAction.label": "Schließen",
- "file.replaceAll.label": "Alle ersetzen",
- "match.replace.label": "Ersetzen",
+ "FocusSearchFromResults.label": "Auf „Suche aus Ergebnissen“ fokussieren",
+ "OpenMatch.label": "Übereinstimmung öffnen",
+ "OpenMatchToSide.label": "„Abgleich an Seite“ öffnen",
+ "ToggleCaseSensitiveCommandId.label": "Groß-/Kleinschreibung umschalten",
+ "TogglePreserveCaseId.label": "Beibehalten der Groß-/Kleinschreibung umschalten",
+ "ToggleQueryDetailsAction.label": "Abfragedetails umschalten",
+ "ToggleRegexCommandId.label": "RegEx umschalten",
+ "ToggleWholeWordCommandId.label": "Ganzes Wort umschalten",
+ "focusSearchListCommandLabel": "Liste fokussieren",
"replaceInFiles": "In Dateien ersetzen",
"toggleTabs": "Suche umschalten (nach Typ)"
},
+ "vs/workbench/contrib/search/browser/searchActionsRemoveReplace": {
+ "RemoveAction.label": "Schließen",
+ "file.replaceAll.label": "Alle ersetzen",
+ "match.replace.label": "Ersetzen"
+ },
+ "vs/workbench/contrib/search/browser/searchActionsSymbol": {
+ "miGotoSymbolInWorkspace": "Zu Symbol in &&Arbeitsbereich wechseln...",
+ "showTriggerActions": "Zu Symbol im Arbeitsbereich wechseln..."
+ },
+ "vs/workbench/contrib/search/browser/searchActionsTextQuickAccess": {
+ "quickTextSearch": "Schnellsuche"
+ },
+ "vs/workbench/contrib/search/browser/searchActionsTopBar": {
+ "CancelSearchAction.label": "Suche abbrechen",
+ "ClearSearchResultsAction.label": "Suchergebnisse löschen",
+ "CollapseDeepestExpandedLevelAction.label": "Alle zuklappen",
+ "ExpandAllAction.label": "Alle aufklappen",
+ "RefreshAction.label": "Aktualisieren",
+ "SearchWithAIAction.label": "Suchen mit KI",
+ "ViewAsListAction.label": "Als Liste anzeigen",
+ "ViewAsTreeAction.label": "Als Struktur anzeigen",
+ "clearSearchHistoryLabel": "Suchverlauf löschen"
+ },
+ "vs/workbench/contrib/search/browser/searchChatContext": {
+ "chatContext.attach.files.placeholder": "Datei oder Ordner nach Namen durchsuchen",
+ "chatContext.folder": "Dateien und Ordner …",
+ "chatContext.searchResults": "Suchergebnisse",
+ "select.symb": "Symbol auswählen",
+ "symbols": "Symbole …"
+ },
+ "vs/workbench/contrib/search/browser/searchFindInput": {
+ "searchFindInputNotebookFilter.label": "Notizbuch-Suchfilter"
+ },
"vs/workbench/contrib/search/browser/searchIcons": {
"searchClearIcon": "Symbol für \"Ergebnisse löschen\" in der Suchansicht.",
"searchCollapseAllIcon": "Symbol für \"Ergebnisse zuklappen\" in der Suchansicht.",
@@ -8157,12 +13658,18 @@
"searchExpandAllIcon": "Symbol für \"Ergebnisse aufklappen\" in der Suchansicht.",
"searchHideReplaceIcon": "Symbol für das Zuklappen des Ersetzungsabschnitts in der Suchansicht.",
"searchNewEditorIcon": "Symbol für die Aktion zum Öffnen eines neuen Such-Editors.",
+ "searchOpenInFile": "Symbol für die Aktion, über die Sie zur Datei mit dem aktuellen Suchergebnis wechseln.",
"searchRefreshIcon": "Symbol für die Aktualisierung in der Suchansicht.",
"searchRemoveIcon": "Symbol für das Entfernen eines Suchergebnisses.",
"searchReplaceAllIcon": "Symbol für \"Alle ersetzen\" in der Suchansicht.",
"searchReplaceIcon": "Symbol für \"Ersetzen\" in der Suchansicht.",
+ "searchSeeMoreIcon": "Symbol, um mehr Kontext in der Suchansicht anzuzeigen.",
+ "searchShowAsList": "Symbol zum Anzeigen von Ergebnissen als Liste in der Suchansicht.",
+ "searchShowAsTree": "Symbol zum Anzeigen von Ergebnissen als Struktur in der Suchansicht.",
"searchShowContextIcon": "Symbol für das Umschalten des Kontexts im Such-Editor.",
"searchShowReplaceIcon": "Symbol für das Aufklappen des Abschnitts \"Ersetzen\" in der Suchansicht.",
+ "searchSparkleEmpty": "Symbol zum Ausblenden von KI-Ergebnissen in der Suche.",
+ "searchSparkleFilled": "Symbol zum Anzeigen von KI-Ergebnissen in der Suche.",
"searchStopIcon": "Symbol für \"Beenden\" in der Suchansicht.",
"searchViewIcon": "Ansichtssymbol der Suchansicht."
},
@@ -8176,29 +13683,31 @@
"lineNumStr": "Aus Zeile {0}",
"numLinesStr": "{0} weitere Zeilen",
"otherFilesAriaLabel": "{0} Übereinstimmungen außerhalb des Arbeitsbereichs, Suchergebnis",
- "replacePreviewResultAria": "Ersetze Term {0} mit {1} an Spaltenposition {2} in Zeile mit Text {3}",
+ "replacePreviewResultAria": "\"{0}\" in Spalte {1} – {2} durch {3} ersetzen",
"search": "Suchen",
"searchFileMatch": "{0} Datei gefunden",
"searchFileMatches": "{0} Dateien gefunden",
+ "searchFolderMatch.aiText.label": "KI-gestützte Ergebnisse",
"searchFolderMatch.other.label": "Andere Dateien",
+ "searchFolderMatch.plainText.label": "Textergebnisse",
"searchMatch": "{0} Übereinstimmung gefunden",
"searchMatches": "{0} Übereinstimmungen gefunden",
- "searchResultAria": "Term {0} an Spaltenposition {1} in Zeile mit Text {2} gefunden"
+ "searchResultAria": "\"{0}\" in Spalte {1} – {2} gefunden"
},
"vs/workbench/contrib/search/browser/searchView": {
- "ariaSearchResultsClearStatus": "Die Suchergebnisse wurden gelöscht.",
"ariaSearchResultsStatus": "Die Suche hat {0} Ergebnisse in {1} Dateien zurückgegeben.",
"disableOpenEditors": "Im gesamten Arbeitsbereich suchen",
"emptySearch": "Leere Suche",
"excludes.enable": "Aktivieren",
"forTerm": " – Suche: {0}",
+ "keywordSuggestion.message": "Stattdessen suchen nach: ",
"moreSearch": "Suchdetails umschalten",
"noOpenEditorResultsExcludes": "Keine Ergebnisse in geöffneten Editoren unter Ausschluss von \"{0}\" gefunden: ",
- "noOpenEditorResultsFound": "Keine Ergebnisse in geöffneten Editoren gefunden. Überprüfen Sie Ihre Einstellungen für konfigurierte Ausschlüsse, und überprüfen Sie Ihre gitignore-Dateien: ",
+ "noOpenEditorResultsFound": "Keine Ergebnisse in geöffneten Editoren gefunden. Überprüfen Sie Ihre konfigurierten Ausschlüsse, und überprüfen Sie Ihre gitignore-Dateien: ",
"noOpenEditorResultsIncludes": "Keine Ergebnisse in geöffneten Editoren mit Übereinstimmungen für \"{0}\" gefunden: ",
"noOpenEditorResultsIncludesExcludes": "Keine Ergebnisse in geöffneten Editoren mit Übereinstimmungen für \"{0}\" unter Ausschluss von \"{1}\" gefunden: ",
"noResultsExcludes": "Keine Ergebnisse gefunden, die \"{0}\" ausschließen – ",
- "noResultsFound": "Es wurden keine Ergebnisse gefunden. Überprüfen Sie die Einstellungen für konfigurierte Ausschlüsse, und überprüfen Sie Ihre gitignore-Dateien - ",
+ "noResultsFound": "Keine Ergebnisse gefunden. Überprüfen Sie Ihre konfigurierten Ausschlüsse, und überprüfen Sie Ihre gitignore-Dateien: ",
"noResultsIncludes": "Keine Ergebnisse in \"{0}\" gefunden – ",
"noResultsIncludesExcludes": "Keine Ergebnisse in \"{0}\" unter Ausschluss von \"{1}\" gefunden – ",
"onlyOpenEditors": "nur in geöffneten Dateien suchen",
@@ -8206,7 +13715,6 @@
"openFolder": "Ordner öffnen",
"openInEditor.message": "Im Editor öffnen",
"openInEditor.tooltip": "Aktuelle Suchergebnisse in einen Editor kopieren",
- "openSettings.learnMore": "Weitere Informationen",
"openSettings.message": "Einstellungen öffnen",
"placeholder.excludes": "z. B. *.ts, src/**/exclude",
"placeholder.includes": "z. B. *.ts, src/**/include",
@@ -8239,7 +13747,9 @@
"searchPathNotFoundError": "Der Suchpfad wurde nicht gefunden: {0}.",
"searchScope.excludes": "Auszuschließende Dateien",
"searchScope.includes": "Einzuschließende Dateien",
+ "searchWithAIButtonTooltip": "Mit KI suchen",
"searchWithoutFolder": "Sie haben keinen Ordner geöffnet oder angegeben. Derzeit werden nur geöffnete Dateien durchsucht - ",
+ "triggerAISearch.tooltip": "Suchen mit KI.",
"useExcludesAndIgnoreFilesDescription": "Ausschlusseinstellungen und Ignorieren von Dateien verwenden",
"useIgnoresAndExcludesDisabled": "Ausschlusseinstellungen und das Ignorieren von Dateien sind deaktiviert."
},
@@ -8292,6 +13802,7 @@
"searchEditor.deleteResultBlock": "Dateiergebnisse löschen"
},
"vs/workbench/contrib/searchEditor/browser/searchEditorInput": {
+ "searchEditorLabelIcon": "Symbol der Bezeichnung des Sucheditors.",
"searchTitle": "Suchen",
"searchTitle.withQuery": "Suche: {0}"
},
@@ -8304,30 +13815,20 @@
"oneResult": "1 Ergebnis",
"searchMaxResultsWarning": "Das Resultset enthält nur eine Teilmenge aller Übereinstimmungen. Verfeinern Sie Ihre Suche, um die Ergebnisse einzugrenzen."
},
- "vs/workbench/contrib/sessionSync/browser/sessionSync.contribution": {
- "apply edit session warning": "Wenn Sie Ihre Bearbeitungssitzung anwenden, werden Ihre vorhandenen Änderungen, für die kein Commit ausgeführt wurde, möglicherweise überschrieben. Möchten Sie fortfahren?",
- "apply failed": "Fehler beim Anwenden der Bearbeitungssitzung",
- "applying edit session": "Bearbeitungssitzung wird angewendet...",
- "client too old": "Führen Sie ein Upgrade auf eine neuere Version von {0} durch, um diese Bearbeitungssitzung anzuwenden.",
- "continue edit session": "Bearbeitungssitzung fortsetzen...",
- "continue edit session in local folder": "Im lokalen Ordner öffnen",
- "continueEditSession.openLocalFolder.title": "Wählen Sie einen lokalen Ordner aus, in dem Sie ihre Bearbeitungssitzung fortsetzen möchten.",
- "continueEditSessionExtPoint": "Bietet Optionen zum Fortsetzen der aktuellen Bearbeitungssitzung in einer anderen Umgebung.",
- "continueEditSessionExtPoint.command": "Bezeichner des auszuführenden Befehls. Der Befehl muss im Abschnitt „commands“ deklariert werden und einen URI zurückgeben, der eine andere Umgebung darstellt, in der die aktuelle Bearbeitungssitzung fortgesetzt werden kann.",
- "continueEditSessionExtPoint.group": "Die Gruppe, zu der dieses Element gehört.",
- "continueEditSessionExtPoint.when": "Eine Bedingung, die TRUE lauten muss, damit dieses Element angezeigt wird.",
- "continueEditSessionItem.openInLocalFolder": "Im lokalen Ordner öffnen",
- "continueEditSessionPick.placeholder": "Wählen Sie aus, wie Sie weiterarbeiten möchten.",
- "continueEditSessionPick.title": "Bearbeitungssitzung fortsetzen...",
- "editSessionsEnabled": "Steuert, ob Cloud-fähige Aktionen zum Speichern und Fortsetzen nicht festgeschriebener Änderungen angezeigt werden, wenn zwischen Web, Desktop oder Geräten gewechselt wird.",
- "no edit session": "Es gibt keine anzuwendenden Bearbeitungssitzungen.",
- "no edit session content for ref": "Inhalt der Bearbeitungssitzung konnte nicht auf ID angewendet werden {0}.",
- "no edits to store": "Das Speichern der Bearbeitungssitzung wurde übersprungen, da keine Änderungen zum Speichern vorhanden sind.",
- "payload failed": "Ihre Bearbeitungssitzung kann nicht gespeichert werden.",
- "payload too large": "Ihre Bearbeitungssitzung überschreitet die Größenbeschränkung und kann nicht gespeichert werden.",
- "resume latest": "Letzte Bearbeitungssitzung fortsetzen",
- "store current": "Aktuelle Bearbeitungssitzung speichern",
- "storing edit session": "Bearbeitungssitzung wird gespeichert..."
+ "vs/workbench/contrib/share/browser/share.contribution": {
+ "close": "Schließen",
+ "experimental.share.enabled": "Legt fest, ob die Aktion „Teilen“ neben der Befehlszentrale angezeigt werden soll, wenn {0} gleich {1} ist.",
+ "generating link": "Link wird generiert...",
+ "open link": "Verknüpfung öffnen",
+ "share": "Freigeben...",
+ "shareSuccess": "Der Link wurde in die Zwischenablage kopiert.",
+ "shareTextSuccess": "Text wurde in die Zwischenablage kopiert!"
+ },
+ "vs/workbench/contrib/share/browser/shareService": {
+ "shareProviderCount": "Die Anzahl der verfügbaren Freigabeanbieter",
+ "toggle.share": "Freigeben",
+ "toggle.shareDescription": "Sichtbarkeit der Aktion „Freigeben“ in der Titelleiste umschalten",
+ "type to filter": "Auswählen, wie {0} freigegeben werden soll"
},
"vs/workbench/contrib/snippets/browser/commands/abstractSnippetsActions": {
"snippets": "Codeausschnitte"
@@ -8336,22 +13837,23 @@
"bad_name1": "Ungültiger Dateiname",
"bad_name2": "\"{0}\" ist kein gültiger Dateiname.",
"bad_name3": "\"{0}\" ist bereits vorhanden.",
+ "detail.label": "({0}) {1}",
"global.1": "({0})",
"global.scope": "(global)",
"group.global": "Vorhandene Codeschnipsel",
- "miOpenSnippets": "Benutzer&&schnipsel",
+ "miOpenSnippets": "&&Codeausschnitte",
"name": "Namen für Codeschnipsel eingeben",
"new.folder": "Neue Codeschnipseldatei für \"{0}\"...",
"new.global": "Neue globale Codeschnipseldatei...",
"new.global.sep": "Neue Codeschnipsel",
"new.global_scope": "global",
"new.workspace_scope": "{0}-Arbeitsbereich",
- "openSnippet.label": "Benutzercodeschnipsel konfigurieren",
+ "openSnippet.label": "Konfigurieren von Codeausschnitten",
"openSnippet.pickLanguage": "Codeschnipseldatei auswählen oder Codeschnipsel erstellen",
- "userSnippets": "Benutzercodeschnipsel"
+ "userSnippets": "Codeausschnitte"
},
"vs/workbench/contrib/snippets/browser/commands/fileTemplateSnippets": {
- "label": "Datei aus Codeausschnitt auffüllen",
+ "label": "Datei mit Codeausschnitt ausfüllen",
"placeholder": "Ausschnitt auswählen"
},
"vs/workbench/contrib/snippets/browser/commands/insertSnippet": {
@@ -8361,7 +13863,8 @@
"label": "Mit Ausschnitt umschließen..."
},
"vs/workbench/contrib/snippets/browser/snippetCodeActionProvider": {
- "codeAction": "Umgeben von: {0}",
+ "codeAction": "{0}",
+ "more": "Mehr...",
"overflow.start.title": "Mit Codeausschnitt beginnen",
"title": "Beginnen mit: {0}"
},
@@ -8404,10 +13907,41 @@
"vscode.extension.contributes.snippets-language": "Der Sprachbezeichner, für den dieser Codeschnipsel beigetragen wird.",
"vscode.extension.contributes.snippets-path": "Der Pfad der Codeschnipseldatei. Der Pfad ist relativ zum Erweiterungsordner und beginnt normalerweise mit \". /snippets/\"."
},
- "vs/workbench/contrib/surveys/browser/ces.contribution": {
- "cesSurveyQuestion": "Haben Sie einen Moment Zeit, um das VS Code-Team zu unterstützen? Teilen Sie uns Ihre bisherigen Erfahrungen mit VS Code mit.",
- "giveFeedback": "Feedback abgeben",
- "remindLater": "Später erinnern"
+ "vs/workbench/contrib/speech/browser/speechService": {
+ "speechProviderDescription": "Eine Beschreibung dieses Sprachanbieters, die auf der Benutzeroberfläche angezeigt wird.",
+ "speechProviderName": "Eindeutiger Name für diesen Sprachanbieter.",
+ "vscode.extension.contributes.speechProvider": "Trägt einen Sprachanbieter bei"
+ },
+ "vs/workbench/contrib/speech/common/speechService": {
+ "hasSpeechProvider": "Ein Sprachanbieter ist beim Sprachdienst registriert.",
+ "speechLanguage.da-DK": "Dänisch (Dänemark)",
+ "speechLanguage.de-DE": "Deutsch (Deutschland)",
+ "speechLanguage.en-AU": "Englisch (Australien)",
+ "speechLanguage.en-CA": "Englisch (Kanada)",
+ "speechLanguage.en-GB": "Englisch (Vereinigtes Königreich)",
+ "speechLanguage.en-IE": "Englisch (Irland)",
+ "speechLanguage.en-IN": "Englisch (Indien)",
+ "speechLanguage.en-NZ": "Englisch (Neuseeland)",
+ "speechLanguage.en-US": "Englisch (USA)",
+ "speechLanguage.es-ES": "Spanisch (Spanien)",
+ "speechLanguage.es-MX": "Spanisch (Mexiko)",
+ "speechLanguage.fr-CA": "Französisch (Kanada)",
+ "speechLanguage.fr-FR": "Französisch (Frankreich)",
+ "speechLanguage.hi-IN": "Hindi (Indien)",
+ "speechLanguage.it-IT": "Italienisch (Italien)",
+ "speechLanguage.ja-JP": "Japanisch (Japan)",
+ "speechLanguage.ko-KR": "Koreanisch (Südkorea)",
+ "speechLanguage.nl-NL": "Niederländisch (Niederlande)",
+ "speechLanguage.pt-BR": "Portugiesisch (Brasilien)",
+ "speechLanguage.pt-PT": "Portugiesisch (Portugal)",
+ "speechLanguage.ru-RU": "Russisch (Russland)",
+ "speechLanguage.sv-SE": "Schwedisch (Schweden)",
+ "speechLanguage.tr-TR": "Türkisch (Türkei)",
+ "speechLanguage.zh-CN": "Chinesisch (vereinfacht, China)",
+ "speechLanguage.zh-HK": "Chinesisch (Traditionell) (Hongkong (SAR))",
+ "speechLanguage.zh-TW": "Chinesisch (Traditionell, Taiwan)",
+ "speechToTextInProgress": "Eine Spracherkennungssitzung wird ausgeführt.",
+ "textToSpeechInProgress": "Eine Sprachsynthesesitzung wird ausgeführt."
},
"vs/workbench/contrib/surveys/browser/languageSurveys.contribution": {
"helpUs": "Helfen Sie uns, die Unterstützung für {0} zu verbessern",
@@ -8421,13 +13955,6 @@
"surveyQuestion": "Wir würden uns freuen, wenn Sie an einer schnellen Umfrage teilnehmen.",
"takeSurvey": "An Umfrage teilnehmen"
},
- "vs/workbench/contrib/tags/electron-browser/workspaceTagsService": {
- "workspaceFound": "Dieser Ordner enthält die Arbeitsbereichsdatei \"{0}\". Möchten Sie diese öffnen? [Weitere Informationen]({1}) zu Arbeitsbereichsdateien.",
- "openWorkspace": "Arbeitsbereich öffnen",
- "workspacesFound": "Dieser Ordner enthält mehrere Arbeitsbereichsdateien. Möchten Sie eine dieser Dateien öffnen? [Weitere Informationen]({0}) zu Arbeitsbereichsdateien.",
- "selectWorkspace": "Arbeitsbereich auswählen",
- "selectToOpen": "Zu öffnenden Arbeitsbereich auswählen"
- },
"vs/workbench/contrib/tasks/browser/abstractTaskService": {
"ConfigureTaskRunnerAction.label": "Aufgabe konfigurieren",
"TaskServer.folderIgnored": "Der Ordner {0} wird ignoriert, da er Aufgabenversion 0.1.0 verwendet",
@@ -8443,18 +13970,23 @@
"TaskService.fetchingBuildTasks": "Buildaufgaben werden abgerufen...",
"TaskService.fetchingTestTasks": "Testaufgaben werden abgerufen...",
"TaskService.ignoredFolder": "Die folgenden Arbeitsbereichsordner werden ignoriert, da sie Aufgabenversion 0.1.0 verwenden: {0}",
+ "TaskService.instanceToTerminate": "Wählen Sie eine Instanz aus, die beendet werden soll.",
"TaskService.noBuildTask": "Keine auszuführende Buildaufgabe gefunden. Buildaufgabe konfigurieren...",
"TaskService.noBuildTask1": "Keine Buildaufgabe definiert. Markieren Sie eine Aufgabe mit \"isBuildCommand\" in der tasks.json-Datei.",
"TaskService.noBuildTask2": "Es ist keine Buildaufgabe definiert. Markieren Sie eine Aufgabe in der Datei \"tasks.json\" als \"Buildgruppe\".",
- "TaskService.noConfiguration": "Fehler: Die {0}-Aufgabenerkennung hat für die folgende Konfiguration keine Aufgabe beigetragen:\r\n{1}\r\nDie Aufgabe wird ignoriert.\r\n",
+ "TaskService.noConfiguration": "Fehler: Die {0}-Aufgabenerkennung hat für die folgende Konfiguration keine Aufgabe beigetragen:\r\n{1}\r\nDie Aufgabe wird ignoriert.",
"TaskService.noEntryToRun": "Eine Aufgabe konfigurieren",
+ "TaskService.noInstanceRunning": "Zurzeit wird keine Instanz ausgeführt.",
+ "TaskService.noRunningTasks": "Keine ausgeführten Tasks zum Neustart vorhanden.",
"TaskService.noTaskIsRunning": "Es wird keine Aufgabe ausgeführt.",
"TaskService.noTaskRunning": "Zurzeit wird keine Aufgabe ausgeführt.",
"TaskService.noTaskToRestart": "Es ist keine neu zu startende Aufgabe vorhanden.",
+ "TaskService.noTasks": "Keine persistenten Aufgaben zum Wiederherstellen der Verbindung.",
"TaskService.noTestTask1": "Keine Testaufgabe definiert. Markieren Sie eine Aufgabe mit \"isTestCommand\" in der tasks.json-Datei.",
"TaskService.noTestTask2": "Es ist keine Testaufgabe definiert. Markieren Sie eine Aufgabe in der Datei \"tasks.json\" als \"Testgruppe\".",
"TaskService.noTestTaskTerminal": "Es wurde keine auszuführende Testaufgabe gefunden. Aufgaben konfigurieren...",
"TaskService.notAgain": "Nicht mehr anzeigen",
+ "TaskService.notConnecting": "Beim Festlegen des konfigurierten Werts der verbundenen Aufgaben {0} wurden die Aufgaben bereits wieder verbunden {1}",
"TaskService.openJsonFile": "Datei \"tasks.json\" öffnen",
"TaskService.pickBuildTask": "Auszuführende Buildaufgabe auswählen",
"TaskService.pickBuildTaskForLabel": "Buildtask auswählen (kein Standardbuildtask festgelegt)",
@@ -8464,19 +13996,24 @@
"TaskService.pickShowTask": "Aufgabe zum Anzeigen der Ausgabe auswählen",
"TaskService.pickTask": "Zu konfigurierende Aufgabe auswählen",
"TaskService.pickTestTask": "Auszuführende Testaufgabe auswählen",
- "TaskService.providerUnavailable": "Warnung: {0} Aufgaben sind in der aktuellen Umgebung nicht verfügbar.\r\n",
+ "TaskService.providerUnavailable": "Warnung: {0} Aufgaben sind in der aktuellen Umgebung nicht verfügbar.",
+ "TaskService.reconnected": "Verbindung mit ausgeführten Aufgaben wird wiederhergestellt.",
+ "TaskService.reconnecting": "Verbindung mit ausgeführten Aufgaben wird wiederhergestellt...",
+ "TaskService.reconnectingTasks": "Verbindung mit Aufgaben {0} wird wiederhergestellt...",
"TaskService.requestTrust": "Um Aufgaben aufzulisten und auszuführen, müssen einige der Dateien in diesem Arbeitsbereich als Code ausgeführt werden.",
+ "TaskService.skippingReconnection": "Startart nicht Fenster neu laden, verbundene Aufgaben einstellen und anhaltende Aufgaben entfernen",
"TaskService.taskToRestart": "Neu zu startende Aufgabe auswählen",
"TaskService.taskToTerminate": "Zu beendende Aufgabe auswählen",
"TaskService.template": "Aufgabenvorlage auswählen",
"TaskService.terminateAllRunningTasks": "Alle ausgeführten Tasks",
+ "TaskSystem.InstancePolicy.warn": "Das Instanzlimit für diese Aufgabe wurde erreicht.",
"TaskSystem.active": "Eine aktive Aufgabe wird bereits ausgeführt. Beenden Sie diese, bevor Sie eine andere Aufgabe ausführen.",
- "TaskSystem.activeSame.noBackground": "Die Aufgabe \"{0}\" ist bereits aktiv.",
"TaskSystem.configurationErrors": "Fehler: Die angegebene Aufgabenkonfiguration weist Validierungsfehler auf und kann nicht verwendet werden. Beheben Sie zuerst die Fehler.",
- "TaskSystem.invalidTaskJson": "Fehler: Der Inhalt der Datei \"tasks.json\" weist Syntaxfehler auf. Korrigieren Sie diese, bevor Sie eine Aufgabe ausführen.\r\n",
- "TaskSystem.invalidTaskJsonOther": "Fehler: Der Inhalt der Datei \"tasks.json\" in \"{0}\" weist Syntaxfehler auf. Korrigieren Sie diese, bevor Sie eine Aufgabe ausführen.\r\n",
+ "TaskSystem.invalidTaskJson": "Fehler: Der Inhalt der Datei \"tasks.json\" weist Syntaxfehler auf. Korrigieren Sie diese, bevor Sie eine Aufgabe ausführen.",
+ "TaskSystem.invalidTaskJsonOther": "Fehler: Der Inhalt der Datei \"tasks.json\" in \"{0}\" weist Syntaxfehler auf. Korrigieren Sie diese, bevor Sie eine Aufgabe ausführen.",
"TaskSystem.restartFailed": "Fehler beim Beenden und Neustarten der Aufgabe \"{0}\".",
"TaskSystem.saveBeforeRun.prompt.title": "Alle Editoren speichern?",
+ "TaskSystem.taskNoLongerExists": "Die Aufgabe „{0}“ existiert nicht mehr oder wurde geändert. Ein Neustart ist nicht möglich.",
"TaskSystem.unknownError": "Fehler beim Ausführen eines Tasks. Details finden Sie im Taskprotokoll.",
"TaskSystem.versionSettings": "In den Benutzereinstellungen sind nur Aufgaben der Version 2.0.0 zulässig.",
"TaskSystem.versionWorkspaceFile": "In Konfigurationsdateien für Arbeitsbereiche sind nur Aufgaben der Version 2.0.0 zulässig.",
@@ -8490,44 +14027,55 @@
"customizeParseErrors": "Die aktuelle Aufgabenkonfiguration weist Fehler auf. Beheben Sie die Fehler, bevor Sie eine Aufgabe anpassen.",
"detail": "Möchten Sie alle Editoren speichern, bevor Sie die Aufgabe ausführen?",
"detected": "erkannte Aufgaben",
- "moreThanOneBuildTask": "In \"tasks.json\" sind zahlreiche Buildaufgaben definiert. Die erste Aufgabe wird ausgeführt.\r\n",
+ "moreThanOneBuildTask": "In \"tasks.json\" sind zahlreiche Buildaufgaben definiert. Die erste Aufgabe wird ausgeführt.",
"recentlyUsed": "zuletzt verwendete Aufgaben",
- "restartTask": "Aufgabe neu starten",
"runTask.arg": "Filtert die im Schnellauswahlmenü angezeigten Aufgaben",
"runTask.label": "Die Bezeichnung der Aufgabe oder ein Begriff, nach dem gefiltert werden soll",
- "runTask.task": "The task's label or a term to filter by",
+ "runTask.task": "Die Bezeichnung der Aufgabe oder ein Begriff, nach dem gefiltert werden soll",
"runTask.type": "Der beigetragene Aufgabentyp",
- "saveBeforeRun.dontSave": "Nicht speichern",
- "saveBeforeRun.save": "Speichern",
+ "saveBeforeRun.dontSave": "&&Nicht speichern",
+ "saveBeforeRun.save": "&&Speichern",
+ "savePersistentTask": "Persistente Aufgaben {0} werden gespeichert",
"selectProblemMatcher": "Fehler- und Warnungsarten auswählen, auf die die Aufgabenausgabe überprüft werden soll",
"showOutput": "Ausgabe anzeigen",
+ "task.longRunningTaskCompleted": "Die Aufgabe wurde in {0} abgeschlossen.",
+ "task.longRunningTaskCompletedWithLabel": "Die Aufgabe „{0}“ wurde in {1} abgeschlossen.",
+ "task.longRunningTaskDurationMinutes": "{0} Min.",
+ "task.longRunningTaskDurationMinutesSeconds": "{0} Min. {1} Sek.",
+ "task.longRunningTaskDurationSeconds": "{0} Sek.",
+ "taskEvent": "Art des Aufgabenereignisses: {0}",
"taskQuickPick.userSettings": "Benutzer",
- "taskService.ignoreingFolder": "Die Aufgabenkonfigurationen für den Arbeitsbereichsordner \"{0}\" werden ignoriert. Für die Unterstützung von Aufgaben für Arbeitsbereiche mit mehreren Ordnern muss für alle Ordner Aufgabenversion 2.0.0 verwendet werden.\r\n",
+ "taskService.getSavedTasks": "Aufgaben werden aus Aufgabenspeicher abgerufen.",
+ "taskService.getSavedTasks.error": "Fehler beim Abrufen einer Aufgabe aus dem Taskspeicher: {0}.",
+ "taskService.getSavedTasks.reading": "Aufgaben werden aus Aufgabenspeicher, {0}, {1}, {2} gelesen.",
+ "taskService.getSavedTasks.resolved": "Aufgabe {0} wurde aufgelöst",
+ "taskService.getSavedTasks.unresolved": "Aufgabe {0} kann nicht aufgelöst werden. ",
+ "taskService.gettingCachedTasks": "Zwischengespeicherte Aufgaben werden zurückgegeben {0}",
+ "taskService.ignoringFolder": "Die Aufgabenkonfigurationen für den Arbeitsbereichsordner \"{0}\" werden ignoriert. Für die Unterstützung von Aufgaben für Arbeitsbereiche mit mehreren Ordnern muss für alle Ordner Aufgabenversion 2.0.0 verwendet werden.",
"taskService.openDiff": "Diff öffnen",
"taskService.openDiffs": "Diffs öffnen",
+ "taskService.removePersistentTask": "Persistente Aufgabe {0} wird entfernt",
+ "taskService.setPersistentTask": "Persistente Aufgabe {0} wird festgelegt",
"taskService.upgradeVersion": "Die veraltete Aufgabenversion 0.1.0 wurde entfernt. Für Ihre Aufgaben wurde ein Upgrade auf Version 2.0.0 durchgeführt. Öffnen Sie Diff, um das Upgrade zu überprüfen.",
"taskService.upgradeVersionPlural": "Die veraltete Aufgabenversion 0.1.0 wurde entfernt. Für Ihre Aufgaben wurde ein Upgrade auf Version 2.0.0 durchgeführt. Öffnen Sie Diffs, um das Upgrade zu überprüfen.",
"taskServiceOutputPrompt": "Es sind Taskfehler aufgetreten. In der Ausgabe finden Sie weitere Informationen.",
+ "taskServiceOutputPromptChat": "Es gibt Aufgabenfehler. Verwenden Sie den Chat, um diese zu beheben, oder sehen Sie sich die Details in der Ausgabe an.",
"tasks": "Tasks",
"tasksJsonComment": "\t// Die Dokumentation zum Format von \"tasks.json\" finden Sie unter \r\n\t// https://go.microsoft.com/fwlink/?LinkId=733558.",
- "terminateTask": "Aufgabe beenden",
+ "troubleshootWithChat": "Mit KI beheben",
"unexpectedTaskType": "Der Aufgabenanbieter für {0}-Aufgaben hat unerwartet eine Aufgabe vom Typ \"{1}\" bereitgestellt.\r\n"
},
"vs/workbench/contrib/tasks/browser/runAutomaticTasks": {
- "allow": "Zulassen und ausführen",
- "disallow": "Nicht zulassen",
- "openTask": "Datei öffnen",
- "openTasks": "Dateien öffnen",
- "tasks.run.allowAutomatic": "In diesem Arbeitsbereich sind Aufgaben ({0}) definiert ({1}), die beim Öffnen des Arbeitsbereichs automatisch ausgeführt werden. Möchten Sie zulassen, dass beim Öffnen dieses Arbeitsbereichs automatische Aufgaben ausgeführt werden?",
- "workbench.action.tasks.allowAutomaticTasks": "Automatische Tasks im Ordner zulassen",
- "workbench.action.tasks.disallowAutomaticTasks": "Automatische Tasks im Ordner nicht zulassen",
- "workbench.action.tasks.manageAutomaticRunning": "Automatische Tasks in Ordner verwalten"
+ "workbench.action.tasks.allowAutomaticTasks": "Automatische Aufgaben zulassen",
+ "workbench.action.tasks.disallowAutomaticTasks": "Automatische Aufgaben nicht zulassen",
+ "workbench.action.tasks.manageAutomaticRunning": "Automatische Aufgaben verwalten"
},
"vs/workbench/contrib/tasks/browser/task.contribution": {
"BuildAction.label": "Buildtask ausführen",
"ConfigureDefaultBuildTask.label": "Standardbuildaufgabe konfigurieren ",
"ConfigureDefaultTestTask.label": "Standardtestaufgabe konfigurieren",
"ReRunTaskAction.label": "Letzten Task erneut ausführen",
+ "RerunAllRunningTasksAction.label": "Alle laufenden Aufgaben erneut ausführen",
"RestartTaskAction.label": "Ausgeführte Aufgabe neu starten",
"RunTaskAction.label": "Task ausführen",
"ShowLogAction.label": "Taskprotokoll anzeigen",
@@ -8545,12 +14093,12 @@
"numberOfRunningTasks": "{0} ausgeführte Aufgaben",
"runningTasks": "Aktive Aufgaben anzeigen",
"status.runningTasks": "Zurzeit ausgeführte Aufgaben",
+ "task.NotifyWindowOnTaskCompletion": "Steuert die minimale Laufzeit einer Aufgabe in Millisekunden, bevor eine Betriebssystembenachrichtigung angezeigt wird, wenn die Aufgabe beendet wird und das Fenster nicht im Fokus ist. Legen Sie dies auf -1 fest, um Benachrichtigungen zu deaktivieren. Legen Sie dies auf 0 fest, um Benachrichtigungen immer anzuzeigen. Dazu gehören ein Fensterbadge und ein Popup für Benachrichtigungen.",
"task.SaveBeforeRun.prompt": "Fragt in einer Benutzeraufforderung ab, ob Editoren vor der Ausführung gespeichert werden sollen.",
- "task.allowAutomaticTasks": "Aktivieren Sie automatische Aufgaben in dem Ordner.",
- "task.allowAutomaticTasks.auto": "Abfrage der Berechtigung für jeden Ordner",
+ "task.allowAutomaticTasks": "Automatische Aufgaben aktivieren – Beachten Sie, dass Aufgaben nicht in einem nicht vertrauenswürdigen Arbeitsbereich ausgeführt werden.",
"task.allowAutomaticTasks.off": "Nie",
+ "task.allowAutomaticTasks.on": "Immer",
"task.autoDetect": "Steuert die Aktivierung von 'provideTasks' für die gesamte Aufgabenanbietererweiterung. Wenn der Befehl \"Aufgaben: Aufgabe ausführen\" langsam ist, kann das Deaktivieren der automatischen Erkennung für Aufgabenanbieter hilfreich sein. Einzelne Erweiterungen können auch Einstellungen bereitstellen, mit denen sich die automatische Erkennung deaktivieren lässt.",
- "task.experimental.reconnection": "On window reload, reconnect to running watch/background tasks. Note that this is experimental, so you could encounter issues.",
"task.problemMatchers.neverPrompt": "Konfiguriert, ob die Aufforderung zur Problemübereinstimmung beim Ausführen einer Aufgabe angezeigt werden soll. Legen Sie \"true\" fest, um diese nie anzuzeigen, oder verwenden Sie ein Wörterbuch mit Aufgabentypen, um die Eingabeaufforderung nur für bestimmte Aufgabentypen zu deaktivieren.",
"task.problemMatchers.neverPrompt.array": "Ein Objekt, das dem Tasktyp entsprechende boolesche Paare enthält, damit niemals die Aufforderung angezeigt wird, den Problemabgleich zu aktivieren.",
"task.problemMatchers.neverPrompt.boolean": "Legt das Verhalten des Problemabgleichs für alle Tasks fest.",
@@ -8558,24 +14106,25 @@
"task.quickOpen.history": "Legt die Anzahl der kürzlich nachverfolgten Elemente im Quick Open-Dialogfeld des Tasks fest",
"task.quickOpen.showAll": "Führt dazu, dass der Befehl \"Aufgaben: Aufgabe ausführen\" das langsamere Verhalten \"Alle anzeigen\" anstelle der schnelleren 2-Ebenen-Auswahl verwendet, bei der Aufgaben nach Anbieter gruppiert werden.",
"task.quickOpen.skip": "Legt fest, ob die Schnellauswahl für Tasks übersprungen wird, wenn nur ein Task vorhanden ist",
+ "task.reconnection": "Stellen Sie beim erneuten Laden des Fensters erneut eine Verbindung mit den Tasks her, die Problemübereinstimmungen aufweisen.",
"task.saveBeforeRun": "Hiermit werden alle geänderten Editoren vor dem Ausführen einer Aufgabe gespeichert.",
"task.saveBeforeRun.always": "Hiermit werden alle Editoren vor dem Ausführen gespeichert.",
"task.saveBeforeRun.never": "Hiermit werden Editoren vor dem Ausführen niemals gespeichert.",
- "task.showDecorations": "Zeigt Dekorationen an Points of Interest im Terminalpuffer an, z. B. das erste Problem, das über eine Überwachungsaufgabe gefunden wurde. Beachten Sie, dass dies nur für zukünftige Aufgaben wirksam wird.",
"task.slowProviderWarning": "Konfiguriert, ob eine Warnung angezeigt wird, wenn ein Anbieter langsam ist",
"task.slowProviderWarning.array": "Ein Array von Tasktypen, damit die Warnung \"Langsamer Anbieter\" niemals angezeigt wird.",
"task.slowProviderWarning.boolean": "Legt die langsame Anbieterwarnung für alle Tasks fest",
+ "task.verboseLogging": "Aktivieren Sie die ausführliche Protokollierung für Aufgaben.",
+ "tasks": "Aufgaben",
"tasksConfigurationTitle": "Tasks",
"tasksQuickAccessHelp": "Task ausführen",
"tasksQuickAccessPlaceholder": "Geben Sie den Namen eines auszuführenden Tasks ein.",
- "ttask.allowAutomaticTasks.on": "Immer",
"workbench.action.tasks.openUserTasks": "Benutzeraufgaben öffnen",
- "workbench.action.tasks.openWorkspaceFileTasks": "Arbeitsbereichsaufgaben öffnen"
+ "workbench.action.tasks.openWorkspaceFileTasks": "Arbeitsbereichsaufgaben öffnen",
+ "workbench.action.tasks.rerunForActiveTerminal": "Aufgabe erneut ausführen"
},
"vs/workbench/contrib/tasks/browser/taskQuickPick": {
- "TaskQuickPick.changeSettingDetails": "Die Aufgabenerkennung für {0} Aufgaben bewirkt, dass Dateien in jedem der von Ihnen geöffneten Arbeitsbereiche als Code ausgeführt werden. Das Aktivieren {0} der Aufgabenerkennung ist eine Benutzereinstellung und gilt für jeden geöffneten Arbeitsbereich. Möchten Sie {0} für alle Arbeitsbereiche aktivieren?",
+ "TaskQuickPick.changeSettingDetails": "Die Aufgabenerkennung für {0} Aufgaben bewirkt, dass Dateien in jedem der von Ihnen geöffneten Arbeitsbereiche als Code ausgeführt werden. Das Aktivieren {0} der Aufgabenerkennung ist eine Benutzereinstellung und gilt für jeden geöffneten Arbeitsbereich. \r\n\r\n Möchten Sie {0} für alle Arbeitsbereiche aktivieren?",
"TaskQuickPick.changeSettingNo": "Nein",
- "TaskQuickPick.changeSettingYes": "Ja",
"TaskQuickPick.changeSettingsOptions": "Die Aufgabenerkennung {0} $(gear) ist deaktiviert. Die {1} Aufgabenerkennung aktivieren...",
"TaskQuickPick.goBack": "Zurück ↩",
"TaskQuickPick.noTasksForType": "Es wurden keine {0}-Tasks gefunden. Zurück ↩",
@@ -8591,6 +14140,13 @@
"taskQuickPick.showAll": "Alle Tasks anzeigen...",
"taskType": "Alle {0} Aufgaben"
},
+ "vs/workbench/contrib/tasks/browser/taskService": {
+ "taskService.processTaskSystem": "Das Prozessaufgabensystem wird im Web nicht unterstützt."
+ },
+ "vs/workbench/contrib/tasks/browser/tasksQuickAccess": {
+ "TaskService.pickRunTask": "Wählen Sie die auszuführende Aufgabe aus.",
+ "noTaskResults": "Keine übereinstimmenden Aufgaben."
+ },
"vs/workbench/contrib/tasks/browser/taskTerminalStatus": {
"task.watchFirstError": "Beginn der erkannten Fehler für diesen Lauf",
"taskTerminalStatus.active": "Aufgabe wird ausgeführt",
@@ -8603,10 +14159,6 @@
"taskTerminalStatus.warnings": "Die Aufgabe hat Warnungen",
"taskTerminalStatus.warningsInactive": "Die Aufgabe hat Warnungen und wartet..."
},
- "vs/workbench/contrib/tasks/browser/tasksQuickAccess": {
- "TaskService.pickRunTask": "Wählen Sie die auszuführende Aufgabe aus.",
- "noTaskResults": "Keine übereinstimmenden Aufgaben."
- },
"vs/workbench/contrib/tasks/browser/terminalTaskSystem": {
"TerminalTaskSystem": "Ein Shell-Befehl kann nicht mithilfe von cmd.exe auf einem UNC-Laufwerk ausgeführt werden.",
"TerminalTaskSystem.nonWatchingMatcher": "Task {0} ist ein Hintergrundtask, nutzt aber eine Problemabfrage ohne Hintergrundstruktur",
@@ -8615,46 +14167,14 @@
"closeTerminal": "Betätigen Sie eine beliebige Taste, um das Terminal zu schließen.",
"dependencyCycle": "Es liegt ein Abhängigkeitszyklus vor. Siehe Aufgabe \"{0}\".",
"dependencyFailed": "Die abhängige Aufgabe \"{0}\" im Arbeitsbereichsordner \"{1}\" konnte nicht aufgelöst werden.",
+ "rerunTask": "Aufgabe erneut ausführen",
"reuseTerminal": "Das Terminal wird von Aufgaben wiederverwendet, drücken Sie zum Schließen eine beliebige Taste.",
"task.executing": "Task wird ausgeführt: {0}",
+ "task.executing.shell-integration": "Task wird ausgeführt: {0}",
+ "task.executing.shellIntegration": "Task wird ausgeführt: {0}",
"task.executingInFolder": "Task wird im Ordner {0} ausgeführt: {1}",
"unknownProblemMatcher": "Der Problemabgleicher \"{0}\" kann nicht aufgelöst werden. Der Abgleicher wird ignoriert."
},
- "vs/workbench/contrib/tasks/common/jsonSchemaCommon": {
- "JsonSchema.args": "Weitere Argumente, die an den Befehl übergeben werden.",
- "JsonSchema.background": "Ob die ausgeführte Aufgabe weiterhin besteht und im Hintergrund ausgeführt wird.",
- "JsonSchema.command": "Der auszuführende Befehl. Hierbei kann es sich um ein externes Programm oder einen Shellbefehl handeln.",
- "JsonSchema.echoCommand": "Steuert, ob der ausgeführte Befehl in der Ausgabe angezeigt wird. Der Standardwert ist \"false\".",
- "JsonSchema.matchers": "Die zu verwendenden Problemabgleicher. Es kann sich um eine Zeichenfolge, eine Problemabgleicherdefinition oder ein Array aus Zeichenfolgen und Problemabgleichern handeln.",
- "JsonSchema.options": "Weitere Befehlsoptionen",
- "JsonSchema.options.cwd": "Das aktuelle Arbeitsverzeichnis des ausgeführten Programms oder Skripts. Wenn keine Angabe erfolgt, wird das aktuelle Arbeitsbereich-Stammverzeichnis des Codes verwendet.",
- "JsonSchema.options.env": "Die Umgebung des ausgeführten Programms oder der Shell. Wenn keine Angabe erfolgt, wird Umgebung des übergeordneten Prozesses verwendet.",
- "JsonSchema.promptOnClose": "Gibt an, ob dem Benutzer eine Eingabeaufforderung angezeigt wird, wenn VS Code mit einem aktuell ausgeführten Hintergrundtask geschlossen wird.",
- "JsonSchema.shell.args": "Die Shell-Argumente.",
- "JsonSchema.shell.executable": "Die zu verwendende Shell.",
- "JsonSchema.shellConfiguration": "Konfiguriert die zu verwendende Shell.",
- "JsonSchema.showOutput": "Steuert, ob die Ausgabe des aktuell ausgeführten Tasks angezeigt wird. Wenn keine Angabe erfolgt, wird \"always\" verwendet.",
- "JsonSchema.suppressTaskName": "Steuert, ob der Taskname dem Befehl als Argument hinzugefügt wird. Der Standardwert ist \"false\".",
- "JsonSchema.taskSelector": "Ein Präfix zum Angeben, dass ein Argument ein Task ist.",
- "JsonSchema.tasks": "Die Taskkonfigurationen. Normalerweise sind dies Anreicherungen der bereits in der externen Taskausführung definierten Tasks.",
- "JsonSchema.tasks.args": "Argumente, die bei Aufruf dieser Aufgabe an den Befehl übergeben werden.",
- "JsonSchema.tasks.background": "Gibt an, ob die ausgeführte Aufgabe aktiv bleibt und im Hintergrund ausgeführt wird.",
- "JsonSchema.tasks.build": "Ordnet diesen Task dem Standardbuildbefehl des Codes zu.",
- "JsonSchema.tasks.linux": "Linux-spezifische Befehlskonfiguration",
- "JsonSchema.tasks.mac": "Mac-spezifische Befehlskonfiguration",
- "JsonSchema.tasks.matcherError": "Unbekannter Problemabgleicher. Ist die Erweiterung installiert, die diesen Problemabgleicher bereitstellt?",
- "JsonSchema.tasks.matchers": "Die zu verwendenden Problemabgleicher. Kann entweder eine Zeichenfolge oder eine Problemabgleicherdefinition oder ein Array aus Zeichenfolgen und Problemabgleichern sein.",
- "JsonSchema.tasks.promptOnClose": "Gibt an, ob eine Benutzeraufforderung angezeigt wird, wenn VS Code mit einer aktuell ausgeführten Aufgabe geschlossen wird.",
- "JsonSchema.tasks.showOutput": "Steuert, ob die Ausgabe des aktuell ausgeführten Tasks angezeigt wird. Wenn keine Angabe erfolgt, wird der global definierte Wert verwendet.",
- "JsonSchema.tasks.suppressTaskName": "Steuert, ob der Taskname dem Befehl als Argument hinzugefügt wird. Wenn keine Angabe erfolgt, wird der global definierte Wert verwendet.",
- "JsonSchema.tasks.taskName": "Der Name der Aufgabe",
- "JsonSchema.tasks.test": "Ordnet diesen Task dem Standardtestbefehl des Codes zu.",
- "JsonSchema.tasks.watching": "Gibt an, ob der ausgeführte Task aktiv bleibt, und überwacht das Dateisystem.",
- "JsonSchema.tasks.watching.deprecation": "Veraltet. Verwenden Sie stattdessen \"isBackground\".",
- "JsonSchema.tasks.windows": "Windows-spezifische Befehlskonfiguration",
- "JsonSchema.watching": "Gibt an, ob der ausgeführte Task aktiv bleibt, und überwacht das Dateisystem.",
- "JsonSchema.watching.deprecation": "Veraltet. Verwenden Sie stattdessen \"isBackground\"."
- },
"vs/workbench/contrib/tasks/common/jsonSchema_v1": {
"JsonSchema._runner": "Der Runner ist abgestuft. Verwenden Sie die offizielle Runnereigenschaft.",
"JsonSchema.linux": "Linux-spezifische Befehlskonfiguration",
@@ -8703,6 +14223,12 @@
"JsonSchema.tasks.identifier": "Ein vom Benutzer definierter Bezeichner, mit dem in \"launch.json\" oder in einer dependsOn-Klausel auf die Aufgabe verwiesen wird.",
"JsonSchema.tasks.identifier.deprecated": "Benutzerdefinierte Bezeichner sind veraltet. Verwenden Sie für benutzerdefinierte Tasks den Namen als Referenz und für Tasks, die von Erweiterungen bereitgestellt werden, deren definierten Taskbezeichner.",
"JsonSchema.tasks.instanceLimit": "Die Anzahl der Instanzen der Aufgabe, die gleichzeitig ausgeführt werden dürfen.",
+ "JsonSchema.tasks.instancePolicy": "Richtlinie, die angewendet werden soll, wenn das Instanzlimit erreicht ist",
+ "JsonSchema.tasks.instancePolicy.prompt": "Fragt, welche Instanz beendet werden soll",
+ "JsonSchema.tasks.instancePolicy.silent": "Tut nichts",
+ "JsonSchema.tasks.instancePolicy.terminateNewest": "Beendet die neueste Instanz",
+ "JsonSchema.tasks.instancePolicy.terminateOldest": "Beendet die älteste Instanz.",
+ "JsonSchema.tasks.instancePolicy.warn": "Tut nichts weiter, als darauf hinzuweisen, dass das Instanzlimit erreicht wurde",
"JsonSchema.tasks.isBuildCommand.deprecated": "Die isBuildCommand-Eigenschaft ist veraltet. Verwenden Sie stattdessen die group-Eigenschaft. Weitere Informationen finden Sie auch in den Anmerkungen zur Version 1.14.",
"JsonSchema.tasks.isShellCommand.deprecated": "Die isShellCommand-Eigenschaft ist veraltet. Verwenden Sie stattdessen die type-Eigenschaft der Aufgabe und die Shell-Eigenschaft in den Optionen. Weitere Informationen finden Sie auch in den Anmerkungen zur Version 1.14.",
"JsonSchema.tasks.isTestCommand.deprecated": "Die isTestCommand-Eigenschaft ist veraltet. Verwenden Sie stattdessen die group-Eigenschaft. Weitere Informationen finden Sie auch in den Anmerkungen zur Version 1.14.",
@@ -8715,6 +14241,7 @@
"JsonSchema.tasks.presentation.focus": "Steuert, ob das Panel den Fokus hat. der Standardwert ist \"false\". Bei Einstellung auf \"true\" wird das Panel ebenfalls angezeigt.",
"JsonSchema.tasks.presentation.group": "Steuert, ob der Task in einer bestimmten Terminalgruppe mit Teilbereichen ausgeführt wird.",
"JsonSchema.tasks.presentation.instance": "Steuert, ob das Panel von Aufgaben gemeinsam genutzt wird, ob es dieser Aufgabe zugewiesen wird oder ob bei jeder Ausführung ein neues Panel erstellt wird.",
+ "JsonSchema.tasks.presentation.preserveTerminalName": "Steuert, ob der Aufgabenname nach Abschluss der Aufgabe im Terminal beibehalten wird.",
"JsonSchema.tasks.presentation.reveal": "Legt fest, ob das Terminal angezeigt wird, in dem der Task ausgeführt wird. Kann von der Option \"revealProblems\" überschrieben werden. Der Standardwert ist \"always\".",
"JsonSchema.tasks.presentation.reveal.always": "Zeigt immer das Terminal an, wenn diese Aufgabe ausgeführt wird.",
"JsonSchema.tasks.presentation.reveal.never": "Zeigt das Terminal beim Ausführen dieser Aufgabe nie an.",
@@ -8742,6 +14269,41 @@
"JsonSchema.version": "Die Versionsnummer der Konfiguration.",
"JsonSchema.windows": "Windows-spezifische Befehlskonfiguration"
},
+ "vs/workbench/contrib/tasks/common/jsonSchemaCommon": {
+ "JsonSchema.args": "Weitere Argumente, die an den Befehl übergeben werden.",
+ "JsonSchema.background": "Ob die ausgeführte Aufgabe weiterhin besteht und im Hintergrund ausgeführt wird.",
+ "JsonSchema.command": "Der auszuführende Befehl. Hierbei kann es sich um ein externes Programm oder einen Shellbefehl handeln.",
+ "JsonSchema.echoCommand": "Steuert, ob der ausgeführte Befehl in der Ausgabe angezeigt wird. Der Standardwert ist \"false\".",
+ "JsonSchema.matchers": "Die zu verwendenden Problemabgleicher. Es kann sich um eine Zeichenfolge, eine Problemabgleicherdefinition oder ein Array aus Zeichenfolgen und Problemabgleichern handeln.",
+ "JsonSchema.options": "Weitere Befehlsoptionen",
+ "JsonSchema.options.cwd": "Das aktuelle Arbeitsverzeichnis des ausgeführten Programms oder Skripts. Wenn keine Angabe erfolgt, wird das aktuelle Arbeitsbereich-Stammverzeichnis des Codes verwendet.",
+ "JsonSchema.options.env": "Die Umgebung des ausgeführten Programms oder der Shell. Wenn keine Angabe erfolgt, wird Umgebung des übergeordneten Prozesses verwendet.",
+ "JsonSchema.promptOnClose": "Gibt an, ob dem Benutzer eine Eingabeaufforderung angezeigt wird, wenn VS Code mit einem aktuell ausgeführten Hintergrundtask geschlossen wird.",
+ "JsonSchema.shell.args": "Die Shell-Argumente.",
+ "JsonSchema.shell.executable": "Die zu verwendende Shell.",
+ "JsonSchema.shellConfiguration": "Konfiguriert die zu verwendende Shell.",
+ "JsonSchema.showOutput": "Steuert, ob die Ausgabe des aktuell ausgeführten Tasks angezeigt wird. Wenn keine Angabe erfolgt, wird \"always\" verwendet.",
+ "JsonSchema.suppressTaskName": "Steuert, ob der Taskname dem Befehl als Argument hinzugefügt wird. Der Standardwert ist \"false\".",
+ "JsonSchema.taskSelector": "Ein Präfix zum Angeben, dass ein Argument ein Task ist.",
+ "JsonSchema.tasks": "Die Taskkonfigurationen. Normalerweise sind dies Anreicherungen der bereits in der externen Taskausführung definierten Tasks.",
+ "JsonSchema.tasks.args": "Argumente, die bei Aufruf dieser Aufgabe an den Befehl übergeben werden.",
+ "JsonSchema.tasks.background": "Gibt an, ob die ausgeführte Aufgabe aktiv bleibt und im Hintergrund ausgeführt wird.",
+ "JsonSchema.tasks.build": "Ordnet diesen Task dem Standardbuildbefehl des Codes zu.",
+ "JsonSchema.tasks.linux": "Linux-spezifische Befehlskonfiguration",
+ "JsonSchema.tasks.mac": "Mac-spezifische Befehlskonfiguration",
+ "JsonSchema.tasks.matcherError": "Unbekannter Problemabgleicher. Ist die Erweiterung installiert, die diesen Problemabgleicher bereitstellt?",
+ "JsonSchema.tasks.matchers": "Die zu verwendenden Problemabgleicher. Kann entweder eine Zeichenfolge oder eine Problemabgleicherdefinition oder ein Array aus Zeichenfolgen und Problemabgleichern sein.",
+ "JsonSchema.tasks.promptOnClose": "Gibt an, ob eine Benutzeraufforderung angezeigt wird, wenn VS Code mit einer aktuell ausgeführten Aufgabe geschlossen wird.",
+ "JsonSchema.tasks.showOutput": "Steuert, ob die Ausgabe des aktuell ausgeführten Tasks angezeigt wird. Wenn keine Angabe erfolgt, wird der global definierte Wert verwendet.",
+ "JsonSchema.tasks.suppressTaskName": "Steuert, ob der Taskname dem Befehl als Argument hinzugefügt wird. Wenn keine Angabe erfolgt, wird der global definierte Wert verwendet.",
+ "JsonSchema.tasks.taskName": "Der Name der Aufgabe",
+ "JsonSchema.tasks.test": "Ordnet diesen Task dem Standardtestbefehl des Codes zu.",
+ "JsonSchema.tasks.watching": "Gibt an, ob der ausgeführte Task aktiv bleibt, und überwacht das Dateisystem.",
+ "JsonSchema.tasks.watching.deprecation": "Veraltet. Verwenden Sie stattdessen \"isBackground\".",
+ "JsonSchema.tasks.windows": "Windows-spezifische Befehlskonfiguration",
+ "JsonSchema.watching": "Gibt an, ob der ausgeführte Task aktiv bleibt, und überwacht das Dateisystem.",
+ "JsonSchema.watching.deprecation": "Veraltet. Verwenden Sie stattdessen \"isBackground\"."
+ },
"vs/workbench/contrib/tasks/common/problemMatcher": {
"LegacyProblemMatcherSchema.watchedBegin": "Ein regulärer Ausdruck, der signalisiert, dass die Ausführung eines überwachten Tasks (ausgelöst durch die Dateiüberwachung) beginnt.",
"LegacyProblemMatcherSchema.watchedBegin.deprecated": "Diese Eigenschaft ist veraltet. Verwenden Sie stattdessen die Überwachungseigenschaft.",
@@ -8767,22 +14329,23 @@
"ProblemMatcherParser.unknownSeverity": "Information: Unbekannter Schweregrad \"{0}\". Gültige Werte sind: \"Fehler\", \"Warnung\" und \"Information\".\r\n",
"ProblemMatcherSchema.applyTo": "Steuert, ob ein für ein Textdokument gemeldetes Problem nur auf geöffnete, geschlossene oder alle Dokumente angewendet wird.",
"ProblemMatcherSchema.background": "Muster zum Nachverfolgen des Beginns und Endes eines Abgleichers, der für eine Hintergrundaufgabe aktiv ist.",
- "ProblemMatcherSchema.background.activeOnStart": "Bei Festlegung auf TRUE befindet sich der Hintergrundmonitor beim Start des Tasks im aktiven Modus. Dies entspricht der Ausgabe einer Zeile, die mit dem beginsPattern übereinstimmt.",
+ "ProblemMatcherSchema.background.activeOnStart": "Bei Festlegung auf TRUE wird der Hintergrundmonitor im aktiven Modus gestartet. Dies entspricht dem Ausgeben einer Zeile, die mit „startsPattern“ übereinstimmt, wenn die Aufgabe gestartet wird.",
"ProblemMatcherSchema.background.beginsPattern": "Wenn eine Übereinstimmung mit der Ausgabe vorliegt, wird der Start einer Hintergrundaufgabe signalisiert.",
"ProblemMatcherSchema.background.endsPattern": "Wenn eine Übereinstimmung mit der Ausgabe vorliegt, wird das Ende einer Hintergrundaufgabe signalisiert.",
"ProblemMatcherSchema.base": "Der Name eines zu verwendenden Basisproblemabgleichers.",
- "ProblemMatcherSchema.fileLocation": "Definiert die Interpretation von Dateinamen, die in einem Problemmuster gemeldet werden. Ein relativer Dateispeicherort ist möglicherweise ein Array, wobei das zweite Element des Arrays den Pfad für den relativen Dateispeicherort darstellt.",
+ "ProblemMatcherSchema.fileLocation": "Definiert, wie Dateinamen, die in einem Problemmuster gemeldet werden, interpretiert werden sollen. Ein relativer fileLocation-Wert kann ein Array sein, wobei das zweite Element des Arrays der Pfad des relativen Dateispeicherorts ist. Der FileLocation-Suchmodus führt eine umfassende (und möglicherweise auch umfangreiche) Dateisystemsuche in den Verzeichnissen durch, die durch die Include-/Exclude-Eigenschaften des zweiten Elements (oder, falls nicht angegeben, des aktuellen Arbeitsbereichsverzeichnisses) angegeben werden.",
"ProblemMatcherSchema.owner": "Der Besitzer des Problems im Code. Kann ausgelassen werden, wenn \"base\" angegeben wird. Der Standardwert ist \"external\", wenn keine Angabe erfolgt und \"base\" nicht angegeben wird.",
"ProblemMatcherSchema.severity": "Der Standardschweregrad für Erfassungsprobleme. Dieser wird verwendet, wenn das Muster keine Übereinstimmungsgruppe für den Schweregrad definiert.",
"ProblemMatcherSchema.source": "Eine visuell lesbare Zeichenfolge, die die Quelle dieser Diagnose beschreibt, z. B. \"typescript\" oder \"super lint\".",
"ProblemMatcherSchema.watching": "Muster zum Nachverfolgen des Beginns und Endes eines Problemabgleicher.",
- "ProblemMatcherSchema.watching.activeOnStart": "Wenn dieser Wert auf \"true\" festgelegt wird, befindet sich die Überwachung im aktiven Modus, wenn der Task gestartet wird. Dies entspricht dem Ausgeben einer Zeile, die mit dem \"beginPattern\" übereinstimmt.",
+ "ProblemMatcherSchema.watching.activeOnStart": "Bei Festlegung auf „true“ wird der Watcher im aktiven Modus gestartet. Dies entspricht dem Ausgeben einer Zeile, die mit „startsPattern“ übereinstimmt, wenn die Aufgabe gestartet wird.",
"ProblemMatcherSchema.watching.beginsPattern": "Wenn eine Übereinstimmung mit der Ausgabe vorliegt, wird der Start eines Überwachungstasks signalisiert.",
"ProblemMatcherSchema.watching.deprecated": "Die Überwachungseigenschaft ist veraltet. Verwenden Sie stattdessen den Hintergrund.",
"ProblemMatcherSchema.watching.endsPattern": "Wenn eine Übereinstimmung mit der Ausgabe vorliegt, wird das Ende eines Überwachungstasks signalisiert.",
"ProblemPatternExtPoint": "Trägt Problemmuster bei",
"ProblemPatternParser.invalidRegexp": "Fehler: Die Zeichenfolge \"{0}\" ist kein gültiger regulärer Ausdruck.\r\n",
"ProblemPatternParser.loopProperty.notLast": "Die loop-Eigenschaft wird nur für Matcher für die letzte Zeile unterstützt.",
+ "ProblemPatternParser.problemPattern.emptyPattern": "Das Problemmuster ist ungültig. Es muss mindestens ein Muster enthalten.",
"ProblemPatternParser.problemPattern.kindProperty.notFirst": "Das Problemmuster ist ungültig. Die Eigenschaft darf nur im ersten Element angegeben werden.",
"ProblemPatternParser.problemPattern.missingLocation": "Das Problemmuster ist ungültig. Es muss die Art \"Datei\" oder eine Zeile oder eine Speicherort-Übereinstimmungsgruppe aufweisen.",
"ProblemPatternParser.problemPattern.missingProperty": "Das Problemmuster ist ungültig. Es muss mindestens eine Datei und eine Nachricht aufweisen.",
@@ -8836,11 +14399,20 @@
"TaskDefinitionExtPoint": "Trägt Aufgabenarten bei",
"TaskTypeConfiguration.noType": "In der Konfiguration des Aufgabentyps fehlt die erforderliche taskType-Eigenschaft."
},
+ "vs/workbench/contrib/tasks/common/tasks": {
+ "TaskDefinition.missingRequiredProperty": "Fehler: Im Aufgabenbezeichner {0} fehlt die erforderliche Eigenschaft \"{1}\". Der Aufgabenbezeichner wird ignoriert.",
+ "rerunTaskIcon": "Ansichtssymbol der Neuausführungsaufgabe.",
+ "taskTerminalActive": "Gibt an, ob das aktive Terminal ein Aufgabenterminal ist.",
+ "tasks.taskRunningContext": "Gibt an, ob eine Aufgabe derzeit ausgeführt wird.",
+ "tasksCategory": "Tasks"
+ },
"vs/workbench/contrib/tasks/common/taskService": {
"tasks.customExecutionSupported": "Gibt an, ob CustomExecution-Aufgaben unterstützt werden. Erwägen Sie die Verwendung in der When-Klausel eines taskDefinition-Beitrags.",
"tasks.processExecutionSupported": "Gibt an, ob ProcessExecution-Aufgaben unterstützt werden. Erwägen Sie die Verwendung in der When-Klausel eines taskDefinition-Beitrags.",
+ "tasks.serverlessWebContext": "TRUE, wenn im Web ohne Remoteautorität.",
"tasks.shellExecutionSupported": "Gibt an, ob ShellExecution-Aufgaben unterstützt werden. Erwägen Sie die Verwendung in der When-Klausel eines taskDefinition-Beitrags.",
- "tasks.taskCommandsRegistered": "Gibt an, ob die Aufgabenbefehle noch registriert wurden"
+ "tasks.taskCommandsRegistered": "Gibt an, ob die Aufgabenbefehle noch registriert wurden",
+ "tasks.tasksAvailable": "Gibt an, ob Aufgaben im Arbeitsbereich verfügbar sind."
},
"vs/workbench/contrib/tasks/common/taskTemplates": {
"Maven": "Führt allgemeine Maven-Befehle aus.",
@@ -8848,114 +14420,68 @@
"externalCommand": "Ein Beispiel für das Ausführen eines beliebigen externen Befehls.",
"msbuild": "Führt das Buildziel aus."
},
- "vs/workbench/contrib/tasks/common/tasks": {
- "TaskDefinition.missingRequiredProperty": "Fehler: Im Aufgabenbezeichner {0} fehlt die erforderliche Eigenschaft \"{1}\". Der Aufgabenbezeichner wird ignoriert.",
- "tasks.taskRunningContext": "Gibt an, ob eine Aufgabe derzeit ausgeführt wird.",
- "tasksCategory": "Tasks"
- },
- "vs/workbench/contrib/tasks/electron-sandbox/taskService": {
+ "vs/workbench/contrib/tasks/electron-browser/taskService": {
"TaskSystem.exitAnyways": "&&Trotzdem beenden",
"TaskSystem.noProcess": "Der gestartete Task ist nicht mehr vorhanden. Wenn der Task Hintergrundprozesse erzeugt hat, kann das Beenden von VS Code ggf. zu verwaisten Prozessen führen. Starten Sie den letzten Hintergrundprozess mit einer wait-Kennzeichnung, um dies zu vermeiden.",
"TaskSystem.runningTask": "Es wird ein Task ausgeführt wird. Möchten Sie ihn beenden?",
"TaskSystem.terminateTask": "&&Aufgabe beenden"
},
+ "vs/workbench/contrib/telemetry/browser/telemetry.contribution": {
+ "showTelemetry": "Telemetrie anzeigen"
+ },
"vs/workbench/contrib/terminal/browser/baseTerminalBackend": {
- "nonResponsivePtyHost": "Die Verbindung mit dem PTY-Hostprozess des Terminals reagiert nicht, die Terminals funktionieren möglicherweise nicht mehr.",
- "restartPtyHost": "PTY-Host neu starten"
+ "nonResponsivePtyHost": "Die Verbindung mit dem PTY-Hostprozess des Terminals reagiert nicht, die Terminals funktionieren möglicherweise nicht mehr. Klicken, um den pty-Host manuell neu zu starten.",
+ "ptyHostStatus": "Pty-Hoststatus",
+ "ptyHostStatus.ariaLabel": "Pty-Host reagiert nicht",
+ "ptyHostStatus.short": "Pty-Host"
},
"vs/workbench/contrib/terminal/browser/environmentVariableInfo": {
- "extensionEnvironmentContributionChanges": "Erweiterungen möchten die folgenden Änderungen an der Umgebung des Terminals vornehmen:",
- "extensionEnvironmentContributionInfo": "Erweiterungen haben Änderungen an der Umgebung dieses Terminals vorgenommen.",
- "extensionEnvironmentContributionRemoval": "Erweiterungen möchten diese vorhandenen Änderungen aus der Umgebung des Terminals entfernen:",
- "relaunchTerminalLabel": "Terminal neu starten"
- },
- "vs/workbench/contrib/terminal/browser/links/terminalLink": {
- "focusFolder": "Fokus auf Ordner im Explorer",
- "openFile": "Datei im Editor öffnen",
- "openFolder": "Ordner in neuem Fenster öffnen"
- },
- "vs/workbench/contrib/terminal/browser/links/terminalLinkDetectorAdapter": {
- "focusFolder": "Fokus auf Ordner im Explorer",
- "followLink": "Link folgen",
- "openFile": "Datei im Editor öffnen",
- "openFolder": "Ordner in neuem Fenster öffnen",
- "searchWorkspace": "Arbeitsbereich suchen"
- },
- "vs/workbench/contrib/terminal/browser/links/terminalLinkManager": {
- "followForwardedLink": "Dem Link über den weitergeleiteten Port folgen",
- "followLink": "Link folgen",
- "followLinkUrl": "Link",
- "terminalLinkHandler.followLinkAlt": "ALT + Klick",
- "terminalLinkHandler.followLinkAlt.mac": "WAHLTASTE + Klick",
- "terminalLinkHandler.followLinkCmd": "BEFEHLSTASTE + Klick",
- "terminalLinkHandler.followLinkCtrl": "STRG + Klick"
- },
- "vs/workbench/contrib/terminal/browser/links/terminalLinkQuickpick": {
- "terminal.integrated.localFileLinks": "Lokale Datei",
- "terminal.integrated.openDetectedLink": "Link zum Öffnen auswählen",
- "terminal.integrated.searchLinks": "Arbeitsbereichssuche",
- "terminal.integrated.showMoreLinks": "Weitere Verknüpfungen anzeigen",
- "terminal.integrated.urlLinks": "URL"
+ "ScopedEnvironmentContributionInfo": "Arbeitsbereich",
+ "extensionEnvironmentContributionInfoActive": "Die folgenden Erweiterungen haben zur Umgebung dieses Terminals beigetragen:",
+ "extensionEnvironmentContributionInfoStale": "Die folgenden Erweiterungen möchten das Terminal neu starten, um zur Umgebung beizutragen:",
+ "relaunchTerminalLabel": "Terminal neu starten",
+ "showEnvironmentContributions": "Umgebungsbeiträge anzeigen"
},
"vs/workbench/contrib/terminal/browser/terminal.contribution": {
"miToggleIntegratedTerminal": "&&Terminal",
- "tasksQuickAccessHelp": "Alle geöffneten Terminals anzeigen",
- "tasksQuickAccessPlaceholder": "Geben Sie den Namen eines zu öffnenden Terminals ein.",
"terminal": "Terminal"
},
"vs/workbench/contrib/terminal/browser/terminalActions": {
"emptyTerminalNameInfo": "Wenn kein Name angegeben wird, wird er auf den Standardwert zurückgesetzt.",
+ "newWithProfile.location": "Erstellungsort des Terminals",
+ "newWithProfile.location.editor": "Erstellen Sie das Terminal im Editor.",
+ "newWithProfile.location.view": "Erstellen Sie das Terminal in der Terminalansicht.",
"noUnattachedTerminals": "Für den Anfügevorgang sind keine nicht angefügten Terminals vorhanden.",
- "quickAccessTerminal": "Aktives Terminal wechseln",
"showTerminalTabs": "Registerkarten anzeigen",
"terminalLaunchHelp": "Hilfe öffnen",
"workbench.action.terminal.attachToSession": "An Sitzung anfügen",
"workbench.action.terminal.clear": "Löschen",
- "workbench.action.terminal.clearCommandHistory": "Befehlsverlauf löschen",
"workbench.action.terminal.clearSelection": "Auswahl löschen",
- "workbench.action.terminal.copyLastCommand": "Letzten Befehl kopieren",
- "workbench.action.terminal.copySelection": "Auswahl kopieren",
- "workbench.action.terminal.copySelectionAsHtml": "Auswahl als HTML kopieren",
"workbench.action.terminal.createTerminalEditor": "Neues Terminal im Editorbereich erstellen",
"workbench.action.terminal.createTerminalEditorSide": "Neues Terminal im Editor-Bereich zur Seite erstellen",
"workbench.action.terminal.detachSession": "Sitzung trennen",
- "workbench.action.terminal.findNext": "Weitersuchen",
- "workbench.action.terminal.findPrevious": "Vorheriges Element suchen",
"workbench.action.terminal.focus.tabsView": "Ansicht \"Fokus Terminal-Registerkarten\"",
- "workbench.action.terminal.focusFind": "Fokus auf Suche",
"workbench.action.terminal.focusNext": "Fokus in der nächsten Terminalgruppe",
"workbench.action.terminal.focusNextPane": "Fokus im nächsten Terminal der Terminalgruppe",
"workbench.action.terminal.focusPrevious": "Fokus in der vorherigen Terminalgruppe",
"workbench.action.terminal.focusPreviousPane": "Fokus im vorherigen Terminal der vorherigen Terminalgruppe",
- "workbench.action.terminal.goToRecentDirectory": "Zum aktuellen Verzeichnis wechseln...",
- "workbench.action.terminal.hideFind": "Suche ausblenden",
- "workbench.action.terminal.join": "Terminals verknüpfen",
+ "workbench.action.terminal.join": "Terminals verknüpfen...",
"workbench.action.terminal.join.insufficientTerminals": "Nicht genügend Terminals für die „join“-Aktion",
"workbench.action.terminal.join.onlySplits": "Alle Terminals sind bereits verknüft.",
"workbench.action.terminal.joinInstance": "Terminals verknüpfen",
"workbench.action.terminal.kill": "Aktive Terminalinstanz beenden",
"workbench.action.terminal.killAll": "Alle Terminals beenden",
"workbench.action.terminal.killEditor": "Aktiven Terminal im Editorbereich beenden",
- "workbench.action.terminal.navigationModeExit": "Navigationsmodus beenden",
- "workbench.action.terminal.navigationModeFocusNext": "Fokus auf nächste Zeile (Navigationsmodus)",
- "workbench.action.terminal.navigationModeFocusNextPage": "Nächste Seite fokussieren (Navigationsmodus)",
- "workbench.action.terminal.navigationModeFocusPrevious": "Fokus auf vorherige Zeile (Navigationsmodus)",
- "workbench.action.terminal.navigationModeFocusPreviousPage": "Vorherige Seite fokussieren (Navigationsmodus)",
"workbench.action.terminal.new": "Neues Terminal erstellen",
"workbench.action.terminal.newInActiveWorkspace": "Neues Terminal erstellen (im aktiven Arbeitsbereich)",
- "workbench.action.terminal.newWithCwd": "Erstellen Sie ein neues Terminal, das in einem benutzerdefinierten Arbeitsverzeichnis gestartet wird",
"workbench.action.terminal.newWithCwd.cwd": "Das Verzeichnis zum Starten des Terminals um",
"workbench.action.terminal.newWithProfile": "Neues Terminal erstellen (mit Profil)",
"workbench.action.terminal.newWithProfile.profileName": "Der Name des zu erstellenden Profils",
"workbench.action.terminal.newWorkspacePlaceholder": "Aktuelles Arbeitsverzeichnis für neues Terminal auswählen",
- "workbench.action.terminal.openDetectedLink": "Erkannten Link öffnen...",
- "workbench.action.terminal.openLastLocalFileLink": "Letzten lokalen Dateilink öffnen",
- "workbench.action.terminal.openLastUrlLink": "Letzten URL-Link öffnen",
"workbench.action.terminal.openSettings": "Terminaleinstellungen konfigurieren",
- "workbench.action.terminal.paste": "In aktives Terminal einfügen",
- "workbench.action.terminal.pasteSelection": "Auswahl in aktives Terminal einfügen",
+ "workbench.action.terminal.overriddenCwdDescription": "(AußerKraftsetzung) {0}",
"workbench.action.terminal.relaunch": "Aktives Terminal neu starten",
- "workbench.action.terminal.renameWithArg": "Derzeit aktives Terminal umbenennen",
+ "workbench.action.terminal.rename.prompt": "Terminalnamen eingeben",
"workbench.action.terminal.renameWithArg.name": "Der neue Terminalname",
"workbench.action.terminal.renameWithArg.noName": "Kein Namensargument angegeben",
"workbench.action.terminal.resizePaneDown": "Größe des Terminals unten ändern",
@@ -8964,46 +14490,24 @@
"workbench.action.terminal.resizePaneUp": "Größe des Terminals oben ändern",
"workbench.action.terminal.runActiveFile": "Aktive Datei im aktiven Terminal ausführen",
"workbench.action.terminal.runActiveFile.noFile": "Nur Dateien auf der Festplatte können im Terminal ausgeführt werden.",
- "workbench.action.terminal.runRecentCommand": "Zuletzt verwendeten Befehl ausführen...",
"workbench.action.terminal.runSelectedText": "Ausgewählten Text im aktiven Terminal ausführen",
"workbench.action.terminal.scrollDown": "Nach unten scrollen (Zeile)",
"workbench.action.terminal.scrollDownPage": "Nach unten scrollen (Seite)",
"workbench.action.terminal.scrollToBottom": "Bildlauf nach unten",
- "workbench.action.terminal.scrollToNextCommand": "Zu nächstem Befehl scrollen",
- "workbench.action.terminal.scrollToPreviousCommand": "Zu vorherigem Befehl scrollen",
"workbench.action.terminal.scrollToTop": "Bildlauf nach oben",
"workbench.action.terminal.scrollUp": "Nach oben scrollen (Zeile)",
"workbench.action.terminal.scrollUpPage": "Nach oben scrollen (Seite)",
- "workbench.action.terminal.searchWorkspace": "Arbeitsbereich durchsuchen",
"workbench.action.terminal.selectAll": "Alle auswählen",
"workbench.action.terminal.selectDefaultShell": "Standardprofil auswählen",
"workbench.action.terminal.selectToNextCommand": "Auswählen bis zu nächstem Befehl",
"workbench.action.terminal.selectToNextLine": "Auswählen bis zur nächsten Zeile",
"workbench.action.terminal.selectToPreviousCommand": "Auswählen bis zu vorherigem Befehl",
"workbench.action.terminal.selectToPreviousLine": "Auswählen bis zur vorherigen Zeile",
- "workbench.action.terminal.sendSequence": "Benutzerdefinierte Sequenz an Terminal senden",
"workbench.action.terminal.setFixedDimensions": "Feste Dimensionen festlegen",
- "workbench.action.terminal.showEnvironmentInformation": "Umgebungsinformationen anzeigen",
- "workbench.action.terminal.showTabs": "Registerkarten anzeigen",
- "workbench.action.terminal.sizeToContentWidth": "Größe auf Inhaltsbreite umschalten",
"workbench.action.terminal.splitInActiveWorkspace": "Terminal teilen (in aktivem Arbeitsbereich)",
- "workbench.action.terminal.switchTerminal": "Terminal wechseln",
- "workbench.action.terminal.toggleEscapeSequenceLogging": "Protokollierung der Escapesequenz umschalten",
- "workbench.action.terminal.toggleFindCaseSensitive": "Groß-/Kleinschreibung für Suche aktivieren/deaktivieren",
- "workbench.action.terminal.toggleFindRegex": "RegEx für Suche aktivieren/deaktivieren",
- "workbench.action.terminal.toggleFindWholeWord": "Ganze Wörter für Suche aktivieren/deaktivieren",
- "workbench.action.terminal.writeDataToTerminal": "Daten auf Terminal schreiben",
- "workbench.action.terminal.writeDataToTerminal.prompt": "Geben Sie Daten ein, die direkt in das Terminal geschrieben werden sollen, und umgehen Sie die pty"
- },
- "vs/workbench/contrib/terminal/browser/terminalConfigHelper": {
- "install": "Installieren",
- "useWslExtension.title": "Die Erweiterung \"{0}\" wird zum Öffnen eines Terminals in WSL empfohlen."
- },
- "vs/workbench/contrib/terminal/browser/terminalDecorationsProvider": {
- "label": "Terminal"
+ "workbench.action.terminal.switchTerminal": "Terminal wechseln"
},
"vs/workbench/contrib/terminal/browser/terminalEditorInput": {
- "cancel": "Abbrechen",
"confirmDirtyTerminal.button": "&&Beenden",
"confirmDirtyTerminal.detail": "Durch das Schließen werden die ausgeführten Prozesse in diesem Terminal beendet.",
"confirmDirtyTerminal.message": "Möchten Sie die ausgeführten Prozesse beenden?",
@@ -9014,122 +14518,129 @@
"killTerminalIcon": "Symbol für das Beenden einer Terminalinstanz.",
"newTerminalIcon": "Symbol für das Erstellen einer neuen Terminalinstanz.",
"renameTerminalIcon": "Symbol für das Umbenennen im Schnellmenü des Terminals.",
+ "terminalCommandHistoryFuzzySearch": "Symbol zum Umschalten der Fuzzysuche des Befehlsverlaufs.",
+ "terminalCommandHistoryOpenFile": "Symbol zum Öffnen einer Shellverlaufsdatei.",
+ "terminalCommandHistoryOutput": "Symbol zum Anzeigen der Ausgabe eines Terminalbefehls.",
+ "terminalCommandHistoryRemove": "Symbol zum Entfernen eines Terminalbefehls aus dem Befehlsverlauf.",
+ "terminalDecorationError": "Symbol für eine Terminaldekoration eines Befehls, bei dem ein Fehler aufgetreten ist.",
+ "terminalDecorationIncomplete": "Symbol für eine Terminaldekoration eines Befehls, der unvollständig war.",
+ "terminalDecorationMark": "Symbol für eine Terminaldekorationsmarkierung.",
+ "terminalDecorationSuccess": "Symbol für eine Terminaldekoration eines erfolgreichen Befehls.",
"terminalViewIcon": "Ansichtssymbol der Terminalansicht."
},
"vs/workbench/contrib/terminal/browser/terminalInstance": {
"bellStatus": "Glocke",
+ "changeColor": "Farbe für das Terminal auswählen",
"configureTerminalSettings": "Terminaleinstellungen konfigurieren",
- "confirmMoveTrashMessageFilesAndDirectories": "Möchten Sie {0} Textzeilen wirklich in das Terminal einfügen?",
"disconnectStatus": "Die Verbindung mit dem Prozess wurde unterbrochen.",
- "doNotAskAgain": "Nicht erneut fragen",
"keybindingHandling": "Einige Tastenzuordnungen werden nicht standardmäßig an das Terminal geleitet und werden stattdessen von {0} verarbeitet.",
"launchFailed.errorMessage": "Der Terminalprozess konnte nicht gestartet werden: {0}.",
"launchFailed.exitCodeAndCommandLine": "Der Terminalprozess \"{0}\" konnte nicht gestartet werden (Exitcode: {1}).",
"launchFailed.exitCodeOnly": "Der Terminalprozess konnte nicht gestartet werden (Exitcode: {0}).",
"launchFailed.exitCodeOnlyShellIntegration": "Möglicherweise hilft es, die Shell-Integration in den Benutzereinstellungen zu deaktivieren.",
- "multiLinePasteButton": "&&Einfügen",
- "preview": "Vorschau:",
- "removeCommand": "Aus Befehlsverlauf entfernen",
- "selectRecentCommand": "Wählen Sie einen auszuführenden Befehl aus (halten Sie die ALT-Taste gedrückt, um den Befehl zu bearbeiten)",
- "selectRecentCommandMac": "Wählen Sie einen auszuführenden Befehl aus (halten Sie die Optionstaste gedrückt, um den Befehl zu bearbeiten)",
- "selectRecentDirectory": "Wählen Sie ein Verzeichnis aus, zu dem Sie wechseln möchten (halten Sie die ALT-Taste gedrückt, um den Befehl zu bearbeiten)",
- "selectRecentDirectoryMac": "Wählen Sie ein Verzeichnis aus, zu dem Sie wechseln möchten (halten Sie die Optionstaste gedrückt, um den Befehl zu bearbeiten)",
"setTerminalDimensionsColumn": "Feste Dimensionen festlegen: Spalte",
"setTerminalDimensionsRow": "Feste Dimensionen festlegen: Zeile",
- "shellFileHistoryCategory": "{0}-Verlauf",
"shellIntegration.learnMore": "Mehr über die Shell-Integration erfahren",
"shellIntegration.openSettings": "Benutzereinstellungen öffnen",
- "terminal.contiguousSearch": "Verwenden Sie die zusammenhängende Suche",
- "terminal.fuzzySearch": "Fuzzy-Suche verwenden",
"terminal.integrated.a11yPromptLabel": "Terminaleingabe",
- "terminal.integrated.a11yTooMuchOutput": "Zu viele Ausgaben zum Anzeigen, navigieren Sie manuell zu den Zeilen, um sie zu lesen",
- "terminal.integrated.copySelection.noSelection": "Das Terminal enthält keine Auswahl zum Kopieren.",
+ "terminal.integrated.useAccessibleBuffer": "Verwenden des zugänglichen Puffers {0} zum manuellen Überprüfen der Ausgabe",
+ "terminal.integrated.useAccessibleBufferNoKb": "Verwenden Sie den Befehl Terminal: Zugänglichen Puffer fokussieren\", um die Ausgabe manuell zu überprüfen",
"terminal.requestTrust": "Zum Erstellen eines Terminalprozesses muss Code ausgeführt werden.",
- "terminalNavigationMode": "Verwenden Sie {0} und {1}, um im Terminalpuffer zu navigieren",
+ "terminalHelpAriaLabel": "Verwenden von {0} für Hilfe zur Terminalbarrierefreiheit",
+ "terminalScreenReaderMode": "Führen Sie den Befehl aus: Barrierefreiheitsmodus der Sprachausgabe für eine optimierte Sprachausgabe umschalten",
"terminalStaleTextBoxAriaLabel": "Die Umgebung für Terminal \"{0}\" ist veraltet, führen Sie den Befehl \"Umgebungsinformationen anzeigen\" aus, um weitere Informationen zu erhalten.",
"terminalTextBoxAriaLabel": "Terminal \"{0}\"",
"terminalTextBoxAriaLabelNumberAndTitle": "Terminal \"{0}\", {1}",
- "terminalTypeLocal": "Lokal",
- "terminalTypeTask": "Aufgabe",
"terminated.exitCodeAndCommandLine": "Der Terminalprozess \"{0}\" wurde mit folgendem Exitcode beendet: {1}.",
"terminated.exitCodeOnly": "Der Terminalprozess wurde mit folgendem Exitcode beendet: {0}.",
- "viewCommandOutput": "Befehlsausgabe anzeigen",
- "workbench.action.terminal.rename.prompt": "Terminalnamen eingeben",
"workspaceNotTrustedCreateTerminal": "Ein Terminalprozess in einem nicht vertrauenswürdigen Arbeitsbereich kann nicht gestartet werden.",
"workspaceNotTrustedCreateTerminalCwd": "In einem nicht vertrauenswürdigen Arbeitsbereich mit „cwd“ {0} und „userHome“-{1} kann kein Terminalprozess gestartet werden."
},
- "vs/workbench/contrib/terminal/browser/terminalMainContribution": {
- "ptyHost": "Pty-Host"
- },
"vs/workbench/contrib/terminal/browser/terminalMenus": {
"defaultTerminalProfile": "{0} (Standard)",
+ "launchProfile": "Profil starten...",
+ "miNewInNewWindow": "Neues Terminal&&fenster",
"miNewTerminal": "&&Neues Terminal",
"miRunActiveFile": "&&Aktive Datei ausführen",
"miRunSelectedText": "&&Ausgewählten Text ausführen",
"miSplitTerminal": "&&Geteiltes Terminal",
- "splitTerminal": "Terminal teilen",
- "terminal.new": "Neues Terminal",
+ "split.profile": "Terminal mit Profil teilen",
+ "workbench.action.tasks.configureTaskRunner": "Aufgaben konfigurieren...",
+ "workbench.action.tasks.runTask": "Task ausführen...",
"workbench.action.terminal.changeColor": "Farbe ändern...",
"workbench.action.terminal.changeIcon": "Symbol ändern",
"workbench.action.terminal.clear": "Löschen",
+ "workbench.action.terminal.clearLong": "Terminal löschen",
"workbench.action.terminal.copySelection.short": "Kopieren",
"workbench.action.terminal.copySelectionAsHtml": "Als HTML kopieren",
"workbench.action.terminal.joinInstance": "Terminals verknüpfen",
- "workbench.action.terminal.new.short": "Neues Terminal",
- "workbench.action.terminal.newWithProfile.short": "Neues Terminal mit Profil",
+ "workbench.action.terminal.newWithProfile.short": "Neues Terminal mit Profil...",
"workbench.action.terminal.openSettings": "Terminaleinstellungen konfigurieren",
"workbench.action.terminal.paste.short": "Einfügen",
"workbench.action.terminal.renameInstance": "Umbenennen...",
+ "workbench.action.terminal.runActiveFile": "Aktive Datei ausführen",
+ "workbench.action.terminal.runSelectedText": "Ausgewählten Text ausführen",
"workbench.action.terminal.selectAll": "Alle auswählen",
"workbench.action.terminal.selectDefaultProfile": "Standardprofil auswählen",
- "workbench.action.terminal.showsTabs": "Registerkarten anzeigen",
- "workbench.action.terminal.sizeToContentWidthInstance": "Größe auf Inhaltsbreite umschalten",
+ "workbench.action.terminal.startVoice": "Diktat starten",
+ "workbench.action.terminal.startVoiceEditor": "Diktat starten",
+ "workbench.action.terminal.stopVoice": "Diktat beenden",
+ "workbench.action.terminal.stopVoiceEditor": "Diktat beenden",
"workbench.action.terminal.switchTerminal": "Terminal wechseln"
},
"vs/workbench/contrib/terminal/browser/terminalProcessManager": {
+ "killportfailure": "Der Prozess, der an Port {0} lauscht, konnte nicht beendet werden. Befehl mit Fehler {1} beendet",
"ptyHostRelaunch": "Das Terminal wird neu gestartet, weil die Verbindung mit dem Shellprozess unterbrochen wurde..."
},
"vs/workbench/contrib/terminal/browser/terminalProfileQuickpick": {
"ICreateContributedTerminalProfileOptions": "Beigetragen",
+ "cancel": "Abbrechen",
"createQuickLaunchProfile": "Terminalprofil konfigurieren",
"enterTerminalProfileName": "Namen für Terminalprofil eingeben",
"terminal.integrated.chooseDefaultProfile": "Standardmäßiges Terminalprofil auswählen",
"terminal.integrated.selectProfileToCreate": "Wählen Sie das zu erstellende Terminalprofil aus.",
"terminalProfileAlreadyExists": "Ein Terminalprofil mit diesem Namen ist bereits vorhanden.",
"terminalProfiles": "Profile",
- "terminalProfiles.detected": "Erkannt"
- },
- "vs/workbench/contrib/terminal/browser/terminalProfileResolverService": {
- "migrateToProfile": "Migrieren",
- "terminalProfileMigration": "Das Terminal verwendet veraltete Shell-shellArgs-Einstellungen, möchten Sie es zu einem Profil migrieren?"
- },
- "vs/workbench/contrib/terminal/browser/terminalQuickAccess": {
- "renameTerminal": "Terminal umbenennen",
- "workbench.action.terminal.newWithProfilePlus": "Neues Terminal mit Profil erstellen",
- "workbench.action.terminal.newplus": "Neuen Terminal erstellen"
+ "terminalProfiles.detected": "Erkannt",
+ "unsafePathWarning": "Dieses Terminalprofil verwendet einen potenziell unsicheren Pfad, der von einem anderen Benutzer geändert werden kann: {0}. Möchten Sie es wirklich verwenden?",
+ "yes": "Ja"
},
"vs/workbench/contrib/terminal/browser/terminalService": {
"localTerminalRemote": "Diese Shell wird auf Ihrem {0}lokalen{1} Computer ausgeführt, NICHT auf dem verbundenen Remotecomputer.",
"localTerminalVirtualWorkspace": "Diese Shell ist für einen {0}lokalen{1} Ordner geöffnet, NICHT für den virtuellen Ordner.",
"terminalService.terminalCloseConfirmationPlural": "Möchten Sie die {0} aktiven Terminalsitzungen beenden?",
"terminalService.terminalCloseConfirmationSingular": "Möchten Sie die aktive Terminalsitzung beenden?",
- "terminate": "Beenden"
+ "terminate": "&&Beenden"
},
"vs/workbench/contrib/terminal/browser/terminalTabbedView": {
"hideTabs": "Registerkarten ausblenden",
"moveTabsLeft": "Registerkarten nach links verschieben",
"moveTabsRight": "Registerkarten nach rechts verschieben"
},
+ "vs/workbench/contrib/terminal/browser/terminalTabsChatEntry": {
+ "terminal.tabs.chatEntryAriaLabelPlural": "{0} ausgeblendete Chatterminals anzeigen",
+ "terminal.tabs.chatEntryAriaLabelSingle": "1 ausgeblendetes Chatterminal anzeigen",
+ "terminal.tabs.chatEntryLabelPlural": "{0} Ausgeblendete Terminals",
+ "terminal.tabs.chatEntryLabelSingle": "{0} Ausgeblendetes Terminal",
+ "terminal.tabs.chatEntryTooltip": "Ausgeblendete Chatterminals anzeigen"
+ },
"vs/workbench/contrib/terminal/browser/terminalTabsList": {
+ "label": "Terminal",
"splitTerminalAriaLabel": "Terminal {0} {1}, {2} von {3} teilen",
"terminal.tabs": "Terminal-Registerkarten",
"terminalAriaLabel": "Terminal {0} {1}",
"terminalInputAriaLabel": "Geben Sie den Terminalnamen ein. Drücken Sie zur Bestätigung die EINGABETASTE oder ESC, um den Vorgang abzubrechen."
},
"vs/workbench/contrib/terminal/browser/terminalTooltip": {
- "launchFailed.exitCodeOnlyShellIntegration": "Der Terminalprozess konnte nicht gestartet werden. Das Deaktivieren der Shell-Integration mit terminal.integrated.shellIntegration.enabled könnte hilfreich sein.",
- "shellIntegration.activationFailed": "Fehler beim Aktivieren der Shell-Integration.",
- "shellIntegration.enabled": "Shell-Integration aktiviert"
+ "hideDetails": "Details ausblenden",
+ "shellIntegration": "Shell-Integration",
+ "shellIntegration.basic": "Basic",
+ "shellIntegration.injectionFailed": "Fehler beim Aktivieren der Injektion",
+ "shellIntegration.no": "Nein",
+ "shellIntegration.rich": "Umfangreich",
+ "shellProcessTooltip.commandLine": "Befehlszeile: {0}",
+ "shellProcessTooltip.processId": "Prozess-ID ({0}): {1}",
+ "showDetails": "Details anzeigen"
},
"vs/workbench/contrib/terminal/browser/terminalView": {
"terminal.monospaceOnly": "Das Terminal unterstützt nur Festbreitenschriftarten. Stellen Sie sicher, dass VS Code neu gestartet wird, wenn es sich um eine neu installierte Schriftart handelt.",
@@ -9138,41 +14649,48 @@
"terminals": "Öffnet die Terminals."
},
"vs/workbench/contrib/terminal/browser/xterm/decorationAddon": {
- "changeDefaultIcon": "Standardsymbol ändern",
- "changeErrorIcon": "Fehler-Symbol ändern",
- "changeSuccessIcon": "Erfolgs-Symbol ändern",
"gutter": "Gutter Befehl Dekorationen",
+ "no": "Nein",
"overviewRuler": "Übersicht über Linealbefehlsdekorationen",
- "terminal.configureCommandDecorations": "Befehlsdekorationen konfigurieren",
+ "rerun": "Möchten Sie den folgenden Befehl ausführen: {0}",
+ "terminal.attachToChat": "An Chat anfügen",
"terminal.copyCommand": "Befehl kopieren",
+ "terminal.copyCommandAndOutput": "Befehl und Ausgabe kopieren",
"terminal.copyOutput": "Ausgabe kopieren",
"terminal.copyOutputAsHtml": "Taskausgabe als HTML kopieren",
"terminal.learnShellIntegration": "Informationen zur Shellintegration",
"terminal.rerunCommand": "Befehl erneut ausführen",
+ "toggleVisibility": "Sichtbarkeit umschalten",
+ "workbench.action.terminal.goToRecentDirectory": "Zum zuletzt verwendeten Verzeichnis wechseln",
+ "workbench.action.terminal.runRecentCommand": "Zuletzt verwendeten Befehl ausführen",
+ "workbench.action.terminal.toggleVisibility": "Sichtbarkeit umschalten",
+ "yes": "Ja"
+ },
+ "vs/workbench/contrib/terminal/browser/xterm/decorationStyles": {
+ "terminalCommandDecoration.running": "Wird ausgeführt",
+ "terminalCommandDecoration.unknown": "Unbekannt",
"terminalPromptCommandFailed": "Der Befehl wurde {0} ausgeführt und ist fehlgeschlagen.",
+ "terminalPromptCommandFailed.duration": "Der Befehl hat {0} ausgeführt, dauerte {1}, und ist fehlgeschlagen",
"terminalPromptCommandFailedWithExitCode": "Befehl wurde {0} ausgeführt und ist fehlgeschlagen (Exitcode {1}).",
- "terminalPromptCommandSuccess": "Befehl ausgeführt {0}",
- "terminalPromptContextMenu": "Befehlsaktionen anzeigen",
- "toggleVisibility": "Sichtbarkeit umschalten"
+ "terminalPromptCommandFailedWithExitCode.duration": "Der Befehl hat {0} ausgeführt, dauerte {1}, und ist fehlgeschlagen (Exitcode {2})",
+ "terminalPromptCommandSuccess": "Befehl jetzt ausgeführt {0}",
+ "terminalPromptCommandSuccess.": "Befehl ausgeführt {0} ",
+ "terminalPromptCommandSuccess.duration": "Der Befehl hat {0} ausgeführt und dauerte {1}",
+ "terminalPromptContextMenu": "Befehlsaktionen anzeigen"
},
"vs/workbench/contrib/terminal/browser/xterm/xtermTerminal": {
- "dontShowAgain": "Nicht mehr anzeigen",
- "no": "Nein",
- "terminal.slowRendering": "Die GPU-Beschleunigung des Terminals ist auf Ihrem Computer offenbar langsam. Möchten Sie sie deaktivieren, um die Leistung zu verbessern? [Weitere Informationen zu Terminaleinstellungen](https://code.visualstudio.com/docs/editor/integrated-terminal#_changing-how-the-terminal-is-rendered)",
- "yes": "Ja"
+ "terminal.integrated.copySelection.noSelection": "Das Terminal enthält keine Auswahl zum Kopieren."
},
"vs/workbench/contrib/terminal/common/terminal": {
- "terminalCategory": "Terminal",
"vscode.extension.contributes.terminal": "Trägt Terminalfunktionalität bei.",
+ "vscode.extension.contributes.terminal.completionProviders": "Definiert Terminalabschlussanbieter, die registriert werden, wenn die Erweiterung aktiviert wird.",
+ "vscode.extension.contributes.terminal.completionProviders.description": "Eine Beschreibung der Funktionsweise des Vervollständigungsanbieters. Dies wird auf der Benutzeroberfläche der Einstellungen angezeigt.",
"vscode.extension.contributes.terminal.profiles": "Definiert zusätzliche Terminalprofile, die der Benutzer erstellen kann.",
"vscode.extension.contributes.terminal.profiles.id": "Die ID des Terminalprofil-Anbieters.",
"vscode.extension.contributes.terminal.profiles.title": "Titel für dieses Terminalprofil.",
- "vscode.extension.contributes.terminal.types": "Definiert zusätzliche Terminaltypen, die der Benutzer erstellen kann.",
- "vscode.extension.contributes.terminal.types.command": "Befehl, der ausgeführt werden soll, wenn der Benutzer diesen Terminaltyp erstellt.",
"vscode.extension.contributes.terminal.types.icon": "Ein Codeicon, ein URI oder helle und dunkle URIs, die diesem Terminaltyp zugeordnet werden sollen.",
"vscode.extension.contributes.terminal.types.icon.dark": "Symbolpfad, wenn ein dunkles Design verwendet wird",
- "vscode.extension.contributes.terminal.types.icon.light": "Symbolpfad, wenn ein helles Design verwendet wird",
- "vscode.extension.contributes.terminal.types.title": "Titel für diesen Terminaltyp."
+ "vscode.extension.contributes.terminal.types.icon.light": "Symbolpfad, wenn ein helles Design verwendet wird"
},
"vs/workbench/contrib/terminal/common/terminalColorRegistry": {
"terminal.ansiColor": "\"{0}\" ANSI-Farbe im Terminal",
@@ -9184,6 +14702,8 @@
"terminal.findMatchHighlightBackground": "Die Farbe der anderen Suchübereinstimmungen im Terminal. Die Farbe darf nicht undurchsichtig sein, um den zugrunde liegenden Terminalinhalt nicht auszublenden.",
"terminal.findMatchHighlightBorder": "Die Rahmenfarbe der anderen Suchübereinstimmungen im Terminal.",
"terminal.foreground": "Die Vordergrundfarbe des Terminal.",
+ "terminal.hoverHighlightBackground": "Hervorhebung unterhalb des Worts, für das ein Hoverelement angezeigt wird. Die Farbe darf nicht deckend sein, weil sie sonst die zugrunde liegenden Dekorationen verdeckt.",
+ "terminal.inactiveSelectionBackground": "Die Hintergrundfarbe der Auswahl des Terminals, wenn es keinen Fokus hat.",
"terminal.selectionBackground": "Die Auswahlvordergrundfarbe des Terminals.",
"terminal.selectionForeground": "Die Vordergrundfarbe der Auswahl des Terminals. Wenn dies NULL ist, wird der Auswahlvordergrund beibehalten und das Feature für das minimale Kontrastverhältnis angewendet.",
"terminal.tab.activeBorder": "Rahmen auf der Seite der Registerkarte „Terminal“ im Bereich. Standardmäßig wird „tab.activeBorder“ verwendet.",
@@ -9192,40 +14712,52 @@
"terminalCommandDecoration.successBackground": "Die Hintergrundfarbe der Terminalbefehlsdekoration für erfolgreiche Befehle.",
"terminalCursor.background": "Die Hintergrundfarbe des Terminalcursors. Ermöglicht das Anpassen der Farbe eines Zeichens, das von einem Blockcursor überdeckt wird.",
"terminalCursor.foreground": "Die Vordergrundfarbe des Terminalcursors.",
+ "terminalInitialHintForeground": "Vordergrundfarbe des ersten Hinweises des Terminals.",
+ "terminalOverviewRuler.border": "Die Rahmenfarbe des Übersichtslineals auf der linken Seite.",
"terminalOverviewRuler.cursorForeground": "Die Cursorfarbe des Übersichtslineals.",
"terminalOverviewRuler.findMatchHighlightForeground": "Die Markerfarbe des Übersichtslineals für die Suche nach Übereinstimmungen im Terminal."
},
"vs/workbench/contrib/terminal/common/terminalConfiguration": {
- "cwd": "das aktuelle Arbeitsverzeichnis des Terminals",
+ "cwd": "das aktuelle Arbeitsverzeichnis des Terminals.",
"cwdFolder": "das aktuelle Arbeitsverzeichnis des Terminals, das für Mehrstamm-Arbeitsbereiche oder in einem einzelnen Stammarbeitsbereich angezeigt wird, wenn sich der Wert vom ursprünglichen Arbeitsverzeichnis unterscheidet. Unter Windows wird dies nur angezeigt, wenn die Shellintegration aktiviert ist.",
- "local": "gibt ein lokales Terminal in einem Remotearbeitsbereich an",
+ "enableFileLinks.notRemote": "Nur in einem Remote-Arbeitsbereich aktivieren.",
+ "enableFileLinks.off": "Immer deaktiviert.",
+ "enableFileLinks.on": "Immer aktiviert.",
+ "hideOnStartup.always": "Das Terminal wird immer ausgeblendet, auch wenn dauerhafte Sitzungen wiederhergestellt werden.",
+ "hideOnStartup.never": "Blendet die Terminalansicht beim Start niemals aus.",
+ "hideOnStartup.whenEmpty": "Das Terminal wird nur ausgeblendet, wenn keine dauerhaften Sitzungen wiederhergestellt werden.",
+ "local": "gibt ein lokales Terminal in einem Remotearbeitsbereich an.",
"openDefaultSettingsJson": "JSON-Standardeinstellungen öffnen",
"openDefaultSettingsJson.capitalized": "Standardeinstellungen öffnen (JSON)",
- "process": "der Name des Terminalprozesses",
- "separator": "ein bedingtes Trennzeichen(„ – “), das nur angezeigt wird, wenn es von Variablen mit Werten oder statischem Text umgeben ist.",
- "sequence": "der vom Prozess für das Terminal angegebene Name",
+ "process": "der Name des Terminalprozesses.",
+ "progress": "der Fortschrittsstatus, wie er von der Sequenz „OSC 9;4“ gemeldet wird.",
+ "separator": "ein bedingtes Trennzeichen {0}, das nur angezeigt wird, wenn es von Variablen mit Werten oder statischem Text umgeben ist.",
+ "sequence": "der vom Prozess für das Terminal angegebene Name.",
+ "shellCommand": "der Befehl, der gemäß Shellintegration ausgeführt wird. Dies erfordert außerdem ein hohes Vertrauen in die erkannte Befehlszeile, die in einigen Eingabeaufforderungsframeworks möglicherweise nicht funktioniert.",
+ "shellPromptInput": "die vollständige Eingabeaufforderung der Shell entsprechend der Shellintegration.",
+ "shellType": "der erkannte Shelltyp.",
"task": "gibt an, dass dieses Terminal einer Aufgabe zugeordnet ist.",
"terminal.integrated.allowChords": "Gibt an, ob Akkordtastaturbindungen im Terminal erlaubt sind oder nicht. Beachten Sie, dass, wenn dies true ist und der Tastendruck einen Akkord ergibt, {0} umgangen wird. Die Einstellung false ist besonders nützlich, wenn Sie wollen, dass ctrl+k zu Ihrer Shell geht (nicht zu VS Code).",
- "terminal.integrated.allowMnemonics": "Gibt an, ob mnemonische Codes in der Menüleiste (z. B. ALT+F) zum Öffnen der Menüleiste zugelassen werden. Beachten Sie Folgendes: Dies führt dazu, dass bei Festlegung auf TRUE alle ALT-Tastenkombinationen die Shell überspringen. Diese Einstellung hat unter macOS keinerlei Auswirkungen.",
+ "terminal.integrated.allowMnemonics": "Gibt an, ob mnemonisches Zeichen in der Menüleiste (z. B. ALT+F) zum Öffnen der Menüleiste zugelassen werden. Beachten Sie Folgendes: Dies führt dazu, dass bei Festlegung auf WAHR alle ALT-Tastenkombinationen die Shell überspringen. Diese Einstellung hat unter macOS keinerlei Auswirkungen.",
+ "terminal.integrated.allowedLinkSchemes": "Ein Array von Zeichenfolgen, die die URI-Schemas enthalten, für die das Terminal Links öffnen darf. Standardmäßig ist aus Sicherheitsgründen nur eine kleine Teilmenge der möglichen Schemas zulässig.",
"terminal.integrated.altClickMovesCursor": "Wenn diese Option aktiviert ist, positioniert ALT/WAHL+KLICKEN den Eingabeaufforderungscursor unter der Maus neu, wenn {0} auf {1} festgelegt ist (Standardwert). Dies funktioniert je nach Shell möglicherweise nicht zuverlässig.",
- "terminal.integrated.autoReplies": "Eine Gruppe von Nachrichten, auf die im Terminal automatisch geantwortet wird, wenn sie auftauchen. Sofern die Nachricht spezifisch genug ist, kann dies dazu beitragen, häufige Antworten zu automatisieren.\r\n\r\nHinweise:\r\n\r\n– Verwenden Sie {0}, um automatisch auf die Aufforderung zum Beenden des Batchauftrags unter Windows zu reagieren.\r\n– Die Nachricht enthält Escapesequenzen, sodass die Antwort möglicherweise nicht mit formatiertem Text erfolgt.\r\n– Jede Antwort kann nur einmal pro Sekunde erfolgen.\r\n– Verwenden Sie {1} in der Antwort, um zu zeigen, dass Sie die EINGABETASTE meinen.\r\n– Legen Sie zum Aufheben der Festlegung einer Standardtaste den Wert auf NULL fest.\r\n– Starten Sie VS Code neu, wenn keine neuen Einstellungen gelten.",
- "terminal.integrated.autoReplies.reply": "Die an den Prozess zu sendende Antwort.",
"terminal.integrated.bellDuration": "Die Anzahl der Millisekunden, in denen die Glocke innerhalb einer Terminal-Registerkart angezeigt wird, wenn diese ausgelöst wird.",
"terminal.integrated.commandsToSkipShell": "Eine Gruppe von Befehls-IDs, deren Tastenkombinationen nicht an die Shell gesendet, sondern immer durch VS Code verarbeitet werden. Auf diese Weise funktionieren Tastenkombinationen, die normalerweise von der Shell verarbeitet werden, genauso wie in einem Terminal ohne Fokus, beispielsweise „STRG+P“ zum Starten von Quick Open.\r\n\r\n \r\n\r\nViele Befehle werden standardmäßig übersprungen. Um eine Voreinstellung außer Kraft zu setzen und stattdessen die Tastenkombination dieses Befehls an die Shell zu übergeben, fügen Sie dem Befehl das Zeichen „-“ als Präfix hinzu. Verwenden Sie beispielsweise „-workbench.action.quickOpen“, damit „STRG+P“ an die Shell gesendet wird.\r\n\r\n \r\n\r\nDie folgende Liste der standardmäßig übersprungenen Befehle wird bei der Anzeige im Einstellungseditor abgeschnitten. Um die vollständige Liste zu sehen, {1} und suchen Sie nach dem ersten Befehl aus der Liste unten.\r\n\r\n \r\n\r\nStandardmäßig übersprungene Befehle:\r\n\r\n{0}",
- "terminal.integrated.confirmOnExit": "Steuert, ob beim Schließen eines Fensters eine Bestätigung erfolgen soll, wenn aktive Terminalsitzungen vorhanden sind.",
+ "terminal.integrated.confirmOnExit": "Steuert, ob bestätigt wird, wann das Fenster geschlossen wird, wenn aktive Terminalsitzungen vorhanden sind. Hintergrundterminals, wie sie von einigen Erweiterungen gestartet werden, lösen die Bestätigung nicht aus.",
"terminal.integrated.confirmOnExit.always": "Immer bestätigen, ob Terminals vorhanden sind.",
"terminal.integrated.confirmOnExit.hasChildProcesses": "Bestätigen Sie, ob Terminals mit untergeordneten Prozessen vorhanden sind.",
"terminal.integrated.confirmOnExit.never": "Nie bestätigen.",
- "terminal.integrated.confirmOnKill": "Steuert, ob das Beenden von Terminals bestätigt werden soll, wenn sie untergeordnete Prozesse haben. Wenn diese Option auf „Editor“ gesetzt ist, werden Terminals im Editor-Bereich als geändert markiert, wenn sie untergeordnete Prozesse haben. Beachten Sie, dass die Erkennung von untergeordneten Prozessen möglicherweise nicht gut für Shells wie Git Bash funktioniert, die ihre Prozesse nicht als untergeordnete Prozesse der Shell ausführen.",
+ "terminal.integrated.confirmOnKill": "Steuert, ob das Beenden von Terminals bestätigt werden soll, wenn sie untergeordnete Prozesse haben. Wenn diese Option auf „Editor“ gesetzt ist, werden Terminals im Editor-Bereich als geändert markiert, wenn sie untergeordnete Prozesse haben. Beachten Sie, dass die Erkennung von untergeordneten Prozessen möglicherweise nicht gut für Shells wie Git Bash funktioniert, die ihre Prozesse nicht als untergeordnete Prozesse der Shell ausführen. Hintergrundterminals, die von einigen Erweiterungen gestartet werden, lösen die Bestätigung nicht aus.",
"terminal.integrated.confirmOnKill.always": "Bestätigen Sie, ob sich das Terminal im Editor oder Bereich befindet.",
"terminal.integrated.confirmOnKill.editor": "Bestätigen Sie, ob sich das Terminal im Editor befindet.",
"terminal.integrated.confirmOnKill.never": "Nie bestätigen.",
"terminal.integrated.confirmOnKill.panel": "Bestätigen Sie, ob sich das Terminal im Bereich befindet.",
"terminal.integrated.copyOnSelection": "Steuert, ob im Terminal ausgewählter Text in die Zwischenablage kopiert wird.",
"terminal.integrated.cursorBlinking": "Steuert, ob der Terminalcursor blinkt.",
- "terminal.integrated.cursorStyle": "Steuert den Stil des Terminalcursors.",
+ "terminal.integrated.cursorStyle": "Steuert den Stil des Terminalcursors, wenn das Terminal den Fokus hat.",
+ "terminal.integrated.cursorStyleInactive": "Steuert den Stil des Terminalcursors, wenn das Terminal nicht den Fokus hat.",
"terminal.integrated.cursorWidth": "Steuert die Breite des Cursors, wenn {0} auf {1} festgelegt ist.",
- "terminal.integrated.customGlyphs": "Gibt an, ob benutzerdefinierte Symbole für Blockelement- und Feldzeichnungszeichen anstatt der Schriftart gezeichnet werden sollen, was in der Regel zu einem besseren Rendering mit fortlaufenden Linien führt. Beachten Sie, dass dies nicht mit dem DOM-Renderer funktioniert.",
+ "terminal.integrated.customGlyphs": "Gibt an, ob benutzerdefinierte Glyphen für Blockelement- und Kastenzeichen gezeichnet werden sollen, anstatt die Schriftart zu verwenden, was in der Regel zu einer besseren Darstellung mit durchgehenden Linien führt. Beachten Sie, dass dies nicht funktioniert, wenn {0} deaktiviert ist.",
"terminal.integrated.cwd": "Ein expliziter Startpfad, in dem das Terminal gestartet wird. Dieser wird als aktuelles Arbeitsverzeichnis (cwd) für den Shellprozess verwendet. Dies kann insbesondere in den Arbeitsbereichseinstellungen nützlich sein, wenn das Stammverzeichnis als cwd nicht geeignet ist.",
"terminal.integrated.defaultLocation": "Steuert, wo neu erstellte Terminals angezeigt werden.",
"terminal.integrated.defaultLocation.editor": "Terminals im Editor erstellen",
@@ -9234,70 +14766,81 @@
"terminal.integrated.detectLocale.auto": "Hiermit wird die Umgebungsvariable \"$LANG\" festgelegt, wenn die angegebene Variable nicht vorhanden ist oder nicht auf \".UTF-8\" endet.",
"terminal.integrated.detectLocale.off": "Hiermit wird die Umgebungsvariable \"$LANG\" nicht festgelegt.",
"terminal.integrated.detectLocale.on": "Hiermit wird die Umgebungsvariable \"$LANG\" immer festgelegt.",
+ "terminal.integrated.developer.devMode": "Aktivieren Sie den Entwicklermodus für das Terminal. Dies zeigt zusätzliche Debuginformationen und Visualisierungen für Shellintegrationssequenzen.",
+ "terminal.integrated.developer.ptyHost.latency": "Simulierte Wartezeit in Millisekunden, die auf alle Aufrufe an den Pty-Host angewendet wird. Dies ist nützlich, um das Terminalverhalten unter Bedingungen mit hoher Latenz zu testen.",
+ "terminal.integrated.developer.ptyHost.startupDelay": "Simulierte Startverzögerung in Millisekunden für den pty-Hostprozess. Dies ist nützlich, um die Terminalinitialisierung unter langsamen Startbedingungen zu testen.",
"terminal.integrated.drawBoldTextInBrightColors": "Steuert, ob fett formatierter Text im Terminal immer die ANSI-Farbvariante \"bright\" verwendet.",
- "terminal.integrated.enableBell": "Steuert, ob die Terminalglocke aktiviert ist. Dies wird als visuelle Glocke neben dem Namen des Terminals angezeigt.",
- "terminal.integrated.enableFileLinks": "Gibt an, ob Dateiverknüpfungen im Terminal aktiviert werden sollen. Verknüpfungen können insbesondere bei der Arbeit auf einem Netzlaufwerk langsam sein, weil jede Dateiverknüpfung anhand des Dateisystems überprüft wird. Eine Änderung dieser Einstellung wirkt sich nur auf neue Terminals aus.",
- "terminal.integrated.enableMultiLinePasteWarning": "Zeigt ein Warndialogfeld an, wenn mehrere Zeilen in das Terminal eingefügt werden. Das Dialogfeld wird nicht angezeigt, wenn:\r\n\r\n- Der Einfügemodus in Klammern ist aktiviert (die Shell unterstützt nativ mehrzeiliges Einfügen)\r\n – Das Einfügen wird von der Leselinie der Shell verarbeitet (im Fall von pwsh).",
+ "terminal.integrated.enableBell": "Dies ist jetzt veraltet. Verwenden Sie stattdessen die Einstellungen \"terminal.integrated.enableVisualBell\" und \"accessibility.signals.terminalBell\".",
+ "terminal.integrated.enableFileLinks": "Gibt an, ob Dateiverknüpfungen in Terminals aktiviert werden sollen. Verknüpfungen können insbesondere bei der Arbeit auf einem Netzlaufwerk langsam sein, weil jede Dateiverknüpfung anhand des Dateisystems überprüft wird. Eine Änderung dieser Einstellung wird nur in neuen Terminals wirksam.",
+ "terminal.integrated.enableImages": "Aktiviert die Imageunterstützung im Terminal. Dies funktioniert nur, wenn {0} aktiviert ist. Das Inlineimageprotokoll von sixel und iTerm wird unter Linux und macOS unterstützt. Dies funktioniert nur unter Windows für Versionen von ConPTY >= v2, die mit Windows selbst geliefert werden, siehe auch {1}. Bilder werden zurzeit zwischen neu geladenen Fenstern/erneuten Verbindungen nicht wiederhergestellt.",
+ "terminal.integrated.enableMultiLinePasteWarning": "Steuert, ob beim Einfügen mehrerer Zeilen in das Terminal ein Warndialogfeld angezeigt werden soll.",
+ "terminal.integrated.enableMultiLinePasteWarning.always": "Die Warnung immer anzeigen, wenn der Text eine neue Zeile enthält.",
+ "terminal.integrated.enableMultiLinePasteWarning.auto": "Warnung aktivieren, aber nicht anzeigen, wenn:\r\n\r\n- Der Einfügemodus in Klammern ist aktiviert (die Shell unterstützt nativ mehrzeiliges Einfügen)\r\n– Das Einfügen wird von der Leselinie der Shell verarbeitet (im Fall von pwsh).",
+ "terminal.integrated.enableMultiLinePasteWarning.never": "Die Warnung nie anzeigen.",
"terminal.integrated.enablePersistentSessions": "Speichern Sie Terminalsitzungen/-verlauf für den Arbeitsbereich über neu geladene Fenster hinweg.",
+ "terminal.integrated.enableVisualBell": "Steuert, ob die visuelle Terminalglocke aktiviert ist. Diese wird neben dem Namen des Terminals angezeigt.",
"terminal.integrated.env.linux": "Objekt mit Umgebungsvariablen, die dem VS Code-Prozess zur Verwendung durch das Terminal unter Linux hinzugefügt werden sollen. Legen Sie \"null\" fest, um die Umgebungsvariable zu löschen.",
"terminal.integrated.env.osx": "Objekt mit Umgebungsvariablen, die dem VS Code-Prozess zur Verwendung durch das Terminal unter macOS hinzugefügt werden sollen. Legen Sie \"null\" fest, um die Umgebungsvariable zu löschen.",
"terminal.integrated.env.windows": "Objekt mit Umgebungsvariablen, die dem VS Code-Prozess zur Verwendung durch das Terminal unter Windows hinzugefügt werden sollen. Legen Sie \"null\" fest, um die Umgebungsvariable zu löschen.",
- "terminal.integrated.environmentChangesIndicator": "Gibt an, ob auf jedem Terminal die Anzeige von Umgebungsänderungen aktiviert werden soll. Diese zeigt an, ob Erweiterungen Änderungen an der Terminalumgebung vorgenommen haben oder vornehmen möchten.",
- "terminal.integrated.environmentChangesIndicator.off": "Hiermit wird die Anzeige deaktiviert.",
- "terminal.integrated.environmentChangesIndicator.on": "Hiermit wird die Anzeige aktiviert.",
- "terminal.integrated.environmentChangesIndicator.warnonly": "Hiermit wird nur eine Warnung angezeigt, wenn die Umgebung eines Terminals veraltet ist. Die Information, die auf Umgebungsänderungen durch eine Erweiterung hinweist, wird nicht angezeigt.",
- "terminal.integrated.environmentChangesRelaunch": "Gibt an, ob Terminals automatisch neu gestartet werden, wenn die Erweiterung zur Umgebung beitragen soll und noch keine Interaktion stattgefunden hat.",
+ "terminal.integrated.environmentChangesRelaunch": "Gibt an, ob Terminals automatisch neu gestartet werden sollen, wenn Erweiterungen zu ihrer Umgebung beitragen möchten und noch keine Interaktion stattgefunden hat.",
"terminal.integrated.fastScrollSensitivity": "Multiplikator für die Scrollgeschwindigkeit beim Drücken von ALT.",
- "terminal.integrated.fontFamily": "Steuert die Schriftfamilie des Terminals. Standardmäßig wird der Wert {0}.",
+ "terminal.integrated.focusAfterRun": "Steuert, ob das Terminal, der zugängliche Puffer oder keines von beidem den Fokus erhält, nachdem \"Terminal: Ausgewählten Text im aktiven Terminal ausführen\" ausgeführt wurde.",
+ "terminal.integrated.focusAfterRun.accessible-buffer": "Legt den Fokus immer auf den zugänglichen Puffer fest.",
+ "terminal.integrated.focusAfterRun.none": "Führt keine Aktion durch.",
+ "terminal.integrated.focusAfterRun.terminal": "Legt den Fokus immer auf das Terminal fest.",
+ "terminal.integrated.fontFamily": "Steuert die Schriftfamilie des Terminals. Standardmäßig wird der Wert {0} verwendet.",
+ "terminal.integrated.fontLigatures.enabled": "Steuert, ob Schriftligaturen im Terminal aktiviert sind. Ligaturen funktionieren nur, wenn die konfigurierte {0} Ligatur sie unterstützt.",
+ "terminal.integrated.fontLigatures.fallbackLigatures": "Wenn {0} aktiviert ist und die jeweilige {1} nicht analysiert werden kann, ist dies der Satz von Zeichensequenzen, die immer zusammen gezeichnet werden. Dies ermöglicht die Verwendung eines festen Satz von Ligaturen, auch wenn die Schriftart nicht unterstützt wird.",
+ "terminal.integrated.fontLigatures.featureSettings": "Steuert, welche Schriftartfeatureeinstellungen verwendet werden, wenn Ligaturen im Format der CSS-Eigenschaft „font-feature-settings“ aktiviert werden. Einige Beispiele, die je nach Schriftart gültig sein können:",
"terminal.integrated.fontSize": "Steuert den Schriftgrad in Pixeln für das Terminal.",
"terminal.integrated.fontWeight": "Dies ist die Schriftbreite, die im Terminal für nicht fett formatierten Text verwendet werden soll. Akzeptiert werden die Schlüsselwörter \"normal\" und \"bold\" oder Zahlen zwischen 1 und 1000.",
"terminal.integrated.fontWeightBold": "Dies ist die Schriftbreite, die im Terminal für fett formatierten Text verwendet werden soll. Akzeptiert werden die Schlüsselwörter \"normal\" und \"bold\" oder Zahlen zwischen 1 und 1000.",
"terminal.integrated.fontWeightError": "Es sind nur die Schlüsselwörter \"normal\" und \"bold\" sowie Zahlen zwischen 1 und 1000 zulässig.",
"terminal.integrated.gpuAcceleration": "Steuert, ob das Terminal die GPU für das Rendering nutzt.",
"terminal.integrated.gpuAcceleration.auto": "Lassen Sie von VS Code ermitteln, welcher Renderer die beste Darstellung bietet.",
- "terminal.integrated.gpuAcceleration.canvas": "Verwenden Sie den Fallbackzeichenbereich-Renderer des Terminals, der einen 2D-Kontext anstelle von Webgl verwendet, der auf einigen Systemen möglicherweise besser funktioniert. Beachten Sie, dass einige Features im Canvas-Renderer eingeschränkt sind, z. B. die opake Auswahl.",
"terminal.integrated.gpuAcceleration.off": "Deaktivieren Sie die GPU-Beschleunigung im Terminal. Das Terminal wird viel langsamer gerendert, wenn die GPU-Beschleunigung ausgeschaltet ist, aber es sollte zuverlässig auf allen Systemen funktionieren.",
"terminal.integrated.gpuAcceleration.on": "Hiermit aktivieren Sie die GPU-Beschleunigung im Terminal.",
- "terminal.integrated.letterSpacing": "Steuert den Buchstabenabstand für das Terminal. Es handelt sich um einen ganzzahligen Wert, der die Menge zusätzlicher Pixel repräsentiert, die zwischen Zeichen hinzugefügt werden sollen.",
+ "terminal.integrated.hideOnLastClosed": "Gibt an, ob die Terminalansicht ausgeblendet wird, wenn das letzte Terminal geschlossen wird. Dies geschieht nur, wenn das Terminal die einzige sichtbare Ansicht im Ansichtscontainer ist.",
+ "terminal.integrated.hideOnStartup": "Gibt an, ob die Terminalansicht beim Start ausgeblendet werden soll, um die Erstellung eines Terminals zu vermeiden, wenn keine dauerhaften Sitzungen vorhanden sind.",
+ "terminal.integrated.ignoreBracketedPasteMode": "Steuert, ob das Terminal den Einfügemodus mit Klammern ignoriert, selbst wenn das Terminal in diesen Modus versetzt wurde, sodass die {0}- und {1}-Sequenzen beim Einfügen weggelassen werden. Dies ist nützlich, wenn die Shell den Modus nicht berücksichtigt, was z. B. in untergeordneten Shells vorkommen kann.",
+ "terminal.integrated.letterSpacing": "Steuert den Buchstabenabstand für das Terminal. Es handelt sich um einen ganzzahligen Wert, der die Anzahl zusätzlicher Pixel repräsentiert, die zwischen Zeichen hinzugefügt werden soll.",
"terminal.integrated.lineHeight": "Steuert die Zeilenhöhe für das Terminal. Diese Zahl wird mit dem Schriftgrad für das Terminal multipliziert, um die tatsächliche Zeilenhöhe in Pixeln zu erhalten.",
- "terminal.integrated.localEchoEnabled": "Wenn lokales Echo aktiviert werden soll. Dadurch wird {0} überschrieben.",
- "terminal.integrated.localEchoEnabled.auto": "Aktiviert nur für Remotearbeitsbereiche",
- "terminal.integrated.localEchoEnabled.off": "Immer deaktiviert",
- "terminal.integrated.localEchoEnabled.on": "Immer aktiviert",
- "terminal.integrated.localEchoExcludePrograms": "Lokales Echo wird deaktiviert, wenn mindestens einer dieser Programmnamen im Terminaltitel gefunden wird.",
- "terminal.integrated.localEchoLatencyThreshold": "Länge der Netzwerkverzögerung in Millisekunden, mit der lokale Bearbeitungen auf dem Terminal ausgegeben werden, ohne auf Serverbestätigung zu warten. Bei \"0\" ist die lokale Ausgabe immer aktiviert, bei \"-1\" wird sie deaktiviert.",
- "terminal.integrated.localEchoStyle": "Endstil von lokal ausgegebenem Text, entweder ein Schriftschnitt oder eine RGB-Farbe.",
"terminal.integrated.macOptionClickForcesSelection": "Steuert, ob eine Auswahl erzwungen werden soll, wenn unter macOS die Tastenkombination WAHLTASTE+Klick verwendet wird. Hiermit wird eine reguläre (Zeilen-) Auswahl erzwungen und die Verwendung des Modus zur Spaltenauswahl unterbunden. Dies ermöglicht das Kopieren und Einfügen über die reguläre Terminalauswahl, wenn beispielsweise der Mausmodus in tmux aktiviert ist.",
"terminal.integrated.macOptionIsMeta": "Steuert, ob die WAHLTASTE im Terminal unter macOS als Meta-Taste betrachtet wird.",
+ "terminal.integrated.middleClickBehavior": "Steuert, wie das Terminal auf den mittleren Klick reagiert.",
+ "terminal.integrated.middleClickBehavior.default": "Die Plattformstandardeinstellung, um das Terminal zu fokussieren Unter Linux fügt dies auch die Auswahl ein.",
+ "terminal.integrated.middleClickBehavior.paste": "Fügt beim mittleren Klick ein.",
"terminal.integrated.minimumContrastRatio": "Wenn eingestellt, ändert sich die Vordergrundfarbe jeder Zelle, um zu versuchen, das angegebene Kontrastverhältnis einzuhalten. Beachten Sie, dass dies nicht für „Powerline“-Zeichen gemäß #146406 gilt. Beispielwerte:\r\n\r\n 1: Nichts tun und die Standarddesignfarben verwenden.\r\n- 4.5: [WCAG AA-Konformität (mindestens)](https://www.w3.org/TR/UNDERSTANDING-WCAG20/visual-audio-contrast-contrast.html) (Standard).\r\n- 7: [WCAG AAA-Konformität (erweitert)](https://www.w3.org/TR/UNDERSTANDING-WCAG20/visual-audio-contrast7.html).\r\n- 21: Weiß auf Schwarz oder Schwarz auf Weiß.",
"terminal.integrated.mouseWheelScrollSensitivity": "Ein Multiplikator, der für den Wert \"deltaY\" für Mausrad-Scrollereignisse verwendet werden soll.",
- "terminal.integrated.persistentSessionReviveProcess": "Wenn der Terminalprozess heruntergefahren werden muss (z. B. beim Schließen des Fensters oder der Anwendung), bestimmt dies, wann der vorherige Terminalsitzungsinhalt bzw. -verlauf wiederhergestellt und Prozesse beim nächsten Öffnen des Arbeitsbereichs neu erstellt werden sollen.\r\n\r\nEinschränkungen:\r\n\r\n: Die Wiederherstellung des aktuellen Arbeitsverzeichnisses des Prozesses hängt davon ab, ob es von der Shell unterstützt wird.\r\n: Die Zeit zum Beibehalten der Sitzung während des Herunterfahrens ist begrenzt, sodass sie bei Verwendung von Remoteverbindungen mit hoher Latenz abgebrochen werden kann.",
+ "terminal.integrated.persistentSessionReviveProcess": "Wenn der Terminalprozess heruntergefahren werden muss (z. B. beim Schließen des Fensters oder der Anwendung), bestimmt dies, wann der vorherige Terminalsitzungsinhalt bzw. -verlauf wiederhergestellt und Prozesse beim nächsten Öffnen des Arbeitsbereichs neu erstellt werden sollen.\r\n\r\nEinschränkungen:\r\n\r\n– Die Wiederherstellung des aktuellen Arbeitsverzeichnisses des Prozesses hängt davon ab, ob es von der Shell unterstützt wird.\r\n– Die Zeit zum Beibehalten der Sitzung während des Herunterfahrens ist begrenzt, sodass sie bei Verwendung von Remoteverbindungen mit hoher Latenz abgebrochen werden kann.",
"terminal.integrated.persistentSessionReviveProcess.never": "Niemals die Terminalpuffer wiederherstellen oder den Prozess neu erstellen.",
"terminal.integrated.persistentSessionReviveProcess.onExit": "Die Prozesse werden nach dem Schließen des letzten Fensters unter Windows/Linux oder beim Auslösen des Befehls „workbench.action.quit“ (Befehlspalette, Tastenzuordnung, Menü) neu aufgenommen.",
"terminal.integrated.persistentSessionReviveProcess.onExitAndWindowClose": "Nehmen Sie die Prozesse wieder auf, nachdem das letzte Fenster unter Windows/Linux geschlossen wurde, wenn der Befehl „workbench.action.quit“ ausgelöst wird (Befehlspalette, Tastenzuordnung, Menü) oder wenn das Fenster geschlossen wird.",
+ "terminal.integrated.rescaleOverlappingGlyphs": "Gibt an, ob Glyphen horizontal skaliert werden sollen, die eine einzelne Zelle breit sind, aber Glyphen aufweisen, die sich in folgenden Zellen überlappen würden. Dies geschieht in der Regel bei mehrdeutigen Breitenzeichen (z. B. die römischen Ziffern U+2160+), die nicht in Konstantschriften enthalten sind. Emoji-Glyphen werden nie neu skaliert.",
"terminal.integrated.rightClickBehavior": "Steuert, wie das Terminal auf einen Klick mit der rechten Maustaste reagiert.",
"terminal.integrated.rightClickBehavior.copyPaste": "Bei Auswahl kopieren, andernfalls einfügen.",
"terminal.integrated.rightClickBehavior.default": "Hiermit wird das Kontextmenü angezeigt.",
"terminal.integrated.rightClickBehavior.nothing": "Unternehmen Sie nichts, und übergeben Sie das Ereignis an das Terminal.",
"terminal.integrated.rightClickBehavior.paste": "Einfügen erfolgt über die rechte Maustaste.",
"terminal.integrated.rightClickBehavior.selectWord": "Hiermit wird das Wort unter dem Cursor ausgewählt und das Kontextmenü angezeigt.",
- "terminal.integrated.scrollback": "Steuert die maximale Anzahl von Zeilen, die das Terminal im Puffer beibehält.",
+ "terminal.integrated.scrollback": "Steuert die maximale Anzahl von Zeilen, die das Terminal im Puffer beibehält. Wir ordnen Speicher basierend auf diesem Wert vorab zu, um ein reibungsloses Erlebnis zu gewährleisten. Wenn der Wert also zunimmt, wird auch die Menge des Arbeitsspeichers erhöht.",
"terminal.integrated.sendKeybindingsToShell": "Sendet die meisten Tastenzuordnungen an das Terminal anstelle der Workbench und überschreibt {0}, die alternativ zur Optimierung verwendet werden können.",
- "terminal.integrated.shellIntegration.decorationIcon": "Steuert das Symbol, das für übersprungene/leere Befehle verwendet wird. Legen Sie diese Option auf {0} fest, um das Symbol auszublenden oder Dekorationen mit {1} zu deaktivieren.",
- "terminal.integrated.shellIntegration.decorationIconError": "Steuert das Symbol, das für jeden Befehl in Terminals mit aktivierter Shell-Integration verwendet wird, die einen zugehörigen Exit-Code haben. Setzen Sie auf {0}, um das Symbol auszublenden oder deaktivieren Sie Dekorationen mit {1}.",
- "terminal.integrated.shellIntegration.decorationIconSuccess": "Steuert das Symbol, das für jeden Befehl in Terminals mit aktivierter Shell-Integration verwendet wird, die keinen zugehörigen Exit-Code haben. Setzen Sie auf {0}, um das Symbol auszublenden oder deaktivieren Sie Dekorationen mit {1}.",
"terminal.integrated.shellIntegration.decorationsEnabled": "Wenn die Shellintegration aktiviert ist, wird für jeden Befehl eine Dekoration hinzugefügt.",
"terminal.integrated.shellIntegration.decorationsEnabled.both": "Dekorationen im Zwischenraum (links) und Übersichtslineal (rechts) anzeigen",
"terminal.integrated.shellIntegration.decorationsEnabled.gutter": "Dachstegdekorationen links vom Terminal anzeigen",
"terminal.integrated.shellIntegration.decorationsEnabled.never": "Keine Dekorationen anzeigen",
"terminal.integrated.shellIntegration.decorationsEnabled.overviewRuler": "Übersichtslineal-Dekorationen rechts vom Terminal anzeigen",
- "terminal.integrated.shellIntegration.enabled": "Bestimmt, ob die Shell-Integration automatisch injiziert wird oder nicht, um Funktionen wie die erweiterte Befehlsverfolgung und die Erkennung des aktuellen Arbeitsverzeichnisses zu unterstützen. \r\n\r\nDie Shell-Integration funktioniert, indem die Shell mit einem Startskript injiziert wird. Das Skript gibt VS Code Erkenntnisse über die Vorgänge im Terminal.\r\n\r\nUnterstützte Shells:\r\n\r\n- Linux/macOS: bash, pwsh, zsh\r\n - Windows: pwsh\r\n\r\nDiese Einstellung gilt nur, wenn Terminals erstellt werden, so dass Sie Ihre Terminals neu starten müssen, damit sie wirksam wird.\r\n\r\n Beachten Sie, dass die Skriptinjektion möglicherweise nicht funktioniert, wenn Sie benutzerdefinierte Argumente im Terminalprofil definiert haben, einen [komplexen bash `PROMPT_COMMAND`](https://code.visualstudio.com/docs/editor/integrated-terminal#_complex-bash-promptcommand) oder andere nicht unterstützte Einstellungen. Um Dekorationen zu deaktivieren, finden Sie unter {0}",
- "terminal.integrated.shellIntegration.history": "Steuert, ob die Anzahl zuletzt verwendeter Befehle im Terminalbefehlsverlauf gespeichert wird. Legen Sie diese Option auf 0 fest, um den Terminalbefehlsverlauf zu deaktivieren.",
+ "terminal.integrated.shellIntegration.enabled": "Bestimmt, ob die Shellintegration automatisch eingefügt wird, um Features wie erweiterte Befehlsnachverfolgung und aktuelle Arbeitsverzeichniserkennung zu unterstützen. \r\n\r\nDie Shellintegration funktioniert, indem die Shell mit einem Startskript eingefügt wird. Das Skript bietet VS Code Einblick in die Vorgänge im Terminal.\r\n\r\nUnterstützte Shells:\r\n\r\n– Linux/macOS: Bash, Fisch, Pwsh, ZSH\r\n – Windows: pwsh, git bash\r\n\r\nDiese Einstellung gilt nur, wenn Terminals erstellt werden. Daher müssen Sie Ihre Terminals neu starten, damit sie wirksam werden.\r\n\r\n Beachten Sie, dass die Skripteinschleusung möglicherweise nicht funktioniert, wenn Sie benutzerdefinierte Argumente im Terminalprofil definiert haben, „{1}“ aktiviert haben, ein [komplexer Bash „PROMPT_COMMAND“](https://code.visualstudio.com/docs/editor/integrated-terminal#_complex-bash-promptcommand) oder ein anderes nicht unterstütztes Setup aufweisen. Informationen zum Deaktivieren von Dekorationen finden Sie unter {0}",
+ "terminal.integrated.shellIntegration.environmentReporting": "Steuert, ob die Shellumgebung gemeldet wird, und aktiviert deren Verwendung in Features wie {0}. Dies kann zu einer Verlangsamung beim Drucken der Eingabeaufforderung Ihrer Shell führen.",
+ "terminal.integrated.shellIntegration.quickFixEnabled": "Wenn die Shellintegration aktiviert ist, sind schnelle Korrekturen für Terminalbefehle aktiviert, die links neben der Eingabeaufforderung als Glühbirne oder Funkensymbol angezeigt werden.",
+ "terminal.integrated.shellIntegration.timeout": "Konfiguriert die Dauer in Millisekunden, nach dem Start auf die Shellintegration zu warten, bevor deklariert wird, dass sie nicht vorhanden ist. Der Standardwert ist so festgelegt, {0} dass die Mindestzeit (500 ms) gewartet wird. Der Standardwert {1} bedeutet, dass die Wartezeit abhängig davon, ob die Shellintegrationsinjektion aktiviert ist und ob es sich um ein Remotefenster handelt, variabel ist. Legen Sie diesen Wert auf einen kleinen Wert fest, wenn Sie die Shellintegration absichtlich deaktiviert haben, oder einen großen Wert, wenn die Shell sehr langsam startet.",
"terminal.integrated.showExitAlert": "Steuert, ob die Warnung \"Der Terminalprozess wurde mit einem Exitcode beendet\" angezeigt wird, wenn der Exitcode nicht 0 lautet.",
+ "terminal.integrated.smoothScrolling": "Legt fest, ob das Terminal Bildläufe animiert ausführt.",
"terminal.integrated.splitCwd": "Steuert das Arbeitsverzeichnis, mit dem ein geteiltes Terminal gestartet wird.",
"terminal.integrated.splitCwd.inherited": "Unter macOS und Linux verwendet ein neues geteiltes Terminal das Arbeitsverzeichnis des übergeordneten Terminals. Unter Windows wird dasselbe Arbeitsverzeichnis verwendet wie zu Beginn.",
"terminal.integrated.splitCwd.initial": "Ein neues geteiltes Terminal verwendet das Arbeitsverzeichnis, mit dem das übergeordnete Terminal gestartet wurde.",
"terminal.integrated.splitCwd.workspaceRoot": "Ein neues geteiltes Terminal verwendet den Arbeitsbereichsstamm als Arbeitsverzeichnis. In einem Arbeitsbereich mit mehreren Stämmen können Sie auswählen, welcher Stamm als Arbeitsverzeichnis verwendet werden soll.",
+ "terminal.integrated.tabStopWidth": "Die Anzahl der Zellen in einem Tabstopp.",
"terminal.integrated.tabs.defaultColor": "Eine Designfarb-ID, die standardmäßig mit Terminalsymbolen verknüpft wird.",
"terminal.integrated.tabs.defaultIcon": "Eine Codicon-ID, die Terminalsymbolen standardmäßig zugeordnet werden soll.",
"terminal.integrated.tabs.enableAnimation": "Steuert, ob der Terminalregisterkartenstatus Animationen unterstützen (z. B. Aufgaben in Bearbeitung).",
@@ -9312,40 +14855,46 @@
"terminal.integrated.tabs.location": "Steuert den Speicherort der Terminal-Registerkarten, entweder links oder rechts des(der) tatsächlichen Terminals.",
"terminal.integrated.tabs.location.left": "Zeigt die Ansicht der Terminal-Registerkarten links vom Terminal an.",
"terminal.integrated.tabs.location.right": "Zeigt die Ansicht der Terminal-Registerkarten rechts vom Terminal an.",
- "terminal.integrated.tabs.separator": "Trennzeichen, das von {0} und {0} verwendet wird.",
+ "terminal.integrated.tabs.separator": "Trennzeichen, das von \"{0}\" und \"{1}\" verwendet wird.",
"terminal.integrated.tabs.showActions": "Steuert, ob die Schaltflächen zum Trennen und Beenden neben der neuen Schaltfläche „Terminal“ angezeigt werden.",
"terminal.integrated.tabs.showActions.always": "Aktionen immer anzeigen",
"terminal.integrated.tabs.showActions.never": "Aktionen nie anzeigen",
"terminal.integrated.tabs.showActions.singleTerminal": "Aktionen anzeigen, wenn es sich um das einzige geöffnete Terminal handelt",
"terminal.integrated.tabs.showActions.singleTerminalOrNarrow": "Aktionen anzeigen, wenn es sich um das einzige geöffnete Terminal handelt, oder wenn sich die Registerkartenansicht im schmalen textlosen Zustand befindet.",
- "terminal.integrated.tabs.showActiveTerminal": "Zeigt die aktiven Terminalinformationen in der Ansicht an, dies ist besonders nützlich, wenn der Titel auf den Registerkarten nicht sichtbar ist.",
+ "terminal.integrated.tabs.showActiveTerminal": "Zeigt die aktiven Terminalinformationen in der Ansicht an. Dies ist besonders nützlich, wenn der Titel auf den Registerkarten nicht sichtbar ist.",
"terminal.integrated.tabs.showActiveTerminal.always": "Aktives Terminal immer anzeigen",
"terminal.integrated.tabs.showActiveTerminal.never": "Das aktive Terminal niemals anzeigen",
"terminal.integrated.tabs.showActiveTerminal.singleTerminal": "Das aktive Terminal anzeigen, wenn es sich um das einzige geöffnete Terminal handelt",
"terminal.integrated.tabs.showActiveTerminal.singleTerminalOrNarrow": "Zeigt das aktive Terminal an, wenn es sich um das einzige geöffnete Terminal handelt, oder wenn sich die Registerkartenansicht im schmalen textlosen Zustand befindet.",
"terminal.integrated.unicodeVersion": "Steuert, welche Version von Unicode beim Auswerten der Zeichenbreite im Terminal verwendet werden soll. Wenn Emojis oder andere breite Zeichen nicht die richtige Abstände vor oder nach dem Zeichen beanspruchen (entweder zu viel oder zu wenig), können Sie eine Feineinstellung durchführen.",
- "terminal.integrated.unicodeVersion.eleven": "Version 11 von Unicode. Diese Version bietet bessere Unterstützung für moderne Systeme, die moderne Versionen von Unicode verwenden.",
+ "terminal.integrated.unicodeVersion.eleven": "Version 11 von Unicode. Diese Version bietet besseren Support für moderne Systeme, die moderne Versionen von Unicode verwenden.",
"terminal.integrated.unicodeVersion.six": "Version 6 von Unicode. Dies ist eine ältere Version, die auf älteren Systemen besser funktionieren sollte.",
"terminal.integrated.windowsEnableConpty": "Gibt an, ob ConPTY für die Terminalprozesskommunikation unter Windows verwendet werden soll (erfordert Windows 10, Build 18309 und höher). Sofern FALSE, wird Winpty verwendet.",
- "terminal.integrated.wordSeparators": "Eine Zeichenfolge mit allen Zeichen, die vom Feature \"Doppelklick zur Wortauswahl\" als Worttrennzeichen betrachtet werden sollen.",
+ "terminal.integrated.windowsUseConptyDll": "Gibt an, ob die experimentelle conpty.dll (v1.22.250204002) verwendet werden soll, die mit VS Code und nicht mit Windows geliefert wird.",
+ "terminal.integrated.wordSeparators": "Eine Zeichenfolge mit allen Zeichen, die als Worttrennzeichen betrachtet werden sollen. Dies ist relevant bei Doppelklicks zum Auswählen eines Worts und bei der Fallback-Linkerkennung \"word\". Da diese Option zur Linkerkennung verwendet wird, einschließlich der zur Linkerkennung verwendeten Zeichen wie \":\", wird der Zeilen- und Spaltenteil von Links wie \"file:10:5\" ignoriert.",
"terminalDescription": "Steuert die Terminalbeschreibung, die rechts neben dem Titel angezeigt wird. Variablen werden basierend auf dem Kontext ersetzt:",
"terminalIntegratedConfigurationTitle": "Integriertes Terminal",
"terminalTitle": "Steuert den Terminaltitel. Variablen werden basierend auf dem Kontext ersetzt:",
- "workspaceFolder": "der Arbeitsbereich, in dem das Terminal gestartet wurde"
+ "workspaceFolder": "der Arbeitsbereich, in dem das Terminal gestartet wurde.",
+ "workspaceFolderName": "der „Name“ des Arbeitsbereichs, in dem das Terminal gestartet wurde."
},
"vs/workbench/contrib/terminal/common/terminalContextKey": {
"inTerminalRunCommandPickerContextKey": "Gibt an, ob die Befehlsauswahl für die Terminalausführung derzeit geöffnet ist.",
"isSplitTerminalContextKey": "Gibt an, ob das Terminal der fokussierten Registerkarte ein geteiltes Terminal ist.",
+ "splitPaneActive": "Gibt an, ob das aktive Terminal ein geteiltes Fenster ist.",
"terminalAltBufferActive": "Gibt an, ob der Alternativpuffer des Terminals aktiv ist.",
"terminalCountContextKey": "Die aktuelle Anzahl von Terminals.",
"terminalEditorFocusContextKey": "Gibt an, ob ein Terminal im Editorbereich fokussiert ist.",
"terminalFocusContextKey": "Gibt an, ob der Fokus auf dem Terminal liegt.",
+ "terminalFocusInAnyContextKey": "Gibt an, ob der Fokus auf dem Terminal liegt, einschließlich anderer getrennter Terminals, die in anderen Benutzeroberflächen verwendet werden.",
"terminalProcessSupportedContextKey": "Gibt an, ob Terminalprozesse im aktuellen Arbeitsbereich gestartet werden können.",
"terminalShellIntegrationEnabled": "Gibt an, ob die Shell-Integration im aktiven Terminal aktiviert ist.",
- "terminalShellTypeContextKey": "Der Shelltyp des aktiven Terminals. Dieser ist auf den letzten bekannten Wert festgelegt, wenn keine Terminals vorhanden sind.",
+ "terminalShellTypeContextKey": "Der Shelltyp des aktiven Terminals, der festgelegt wird, wenn der Typ erkannt werden kann.",
+ "terminalSuggestWidgetVisible": "Gibt an, ob das Vorschlagswidget des Terminals sichtbar ist.",
"terminalTabsFocusContextKey": "Gibt an, ob der Fokus auf dem Registerkartenwidget „Terminal“ liegt.",
"terminalTabsSingularSelectedContextKey": "Gibt an, ob ein Terminal in der Registerkartenliste „Terminal“ ausgewählt ist.",
"terminalTextSelectedContextKey": "Gibt an, ob im aktiven Terminal Text ausgewählt ist.",
+ "terminalTextSelectedInFocusedContextKey": "Gibt an, ob Text in einem Terminal im Fokus ausgewählt wird.",
"terminalViewShowing": "Ob die Terminalansicht angezeigt wird"
},
"vs/workbench/contrib/terminal/common/terminalStrings": {
@@ -9353,79 +14902,753 @@
"doNotShowAgain": "Nicht mehr anzeigen",
"killTerminal": "Terminal beenden",
"killTerminal.short": "Beenden",
+ "local": "Lokal",
+ "moveIntoNewWindow": "Terminal in neues Fenster verschieben",
"moveToEditor": "Terminal im Editorbereich verschieben",
+ "newInNewWindow": "Neues Terminalfenster",
"previousSessionCategory": "vorherige Sitzung",
"splitTerminal": "Terminal verdoppeln",
"splitTerminal.short": "Split",
+ "task": "Aufgabe",
"terminal": "Terminal",
+ "terminal.new": "Neues Terminal",
+ "terminalCategory": "Terminal",
"unsplitTerminal": "Terminalteilung aufheben",
"workbench.action.terminal.changeColor": "Farbe ändern...",
"workbench.action.terminal.changeIcon": "Symbol ändern",
"workbench.action.terminal.focus": "Fokus im Terminal",
+ "workbench.action.terminal.focusAndHideAccessibleBuffer": "Fokus auf Terminal, zugänglichen Puffer ausblenden",
+ "workbench.action.terminal.focusHover": "Fokus beim Daraufzeigen",
+ "workbench.action.terminal.focusInstance": "Terminal fokussieren",
"workbench.action.terminal.moveToTerminalPanel": "Terminal in Panel verschieben",
+ "workbench.action.terminal.newWithCwd": "Erstellen Sie ein neues Terminal, das in einem benutzerdefinierten Arbeitsverzeichnis gestartet wird",
"workbench.action.terminal.rename": "Umbenennen...",
+ "workbench.action.terminal.renameWithArg": "Derzeit aktives Terminal umbenennen",
+ "workbench.action.terminal.revealCommand": "Befehl „Reveal“ im Terminal",
+ "workbench.action.terminal.scrollToNextCommand": "Zu nächstem Befehl scrollen",
+ "workbench.action.terminal.scrollToPreviousCommand": "Zu vorherigem Befehl scrollen",
"workbench.action.terminal.sizeToContentWidthInstance": "Größe auf Inhaltsbreite umschalten"
},
- "vs/workbench/contrib/terminal/electron-sandbox/terminalRemote": {
+ "vs/workbench/contrib/terminal/electron-browser/terminalRemote": {
"workbench.action.terminal.newLocal": "Neues integriertes Terminal erstellen (lokal)"
},
+ "vs/workbench/contrib/terminalContrib/accessibility/browser/terminal.accessibility.contribution": {
+ "workbench.action.terminal.accessibleBufferGoToNextCommand": "Zugänglicher Puffer: Befehl \"Weiter\"",
+ "workbench.action.terminal.accessibleBufferGoToPreviousCommand": "Zugänglicher Puffer: Befehl \"Zurück\"",
+ "workbench.action.terminal.focusAccessibleBuffer": "Zugängliche Terminalansicht fokussieren",
+ "workbench.action.terminal.scrollToBottomAccessibleView": "Zur „Barrierefreie Ansicht unten“ scrollen",
+ "workbench.action.terminal.scrollToTopAccessibleView": "Zur „Barrierefreie Ansicht oben“ scrollen"
+ },
+ "vs/workbench/contrib/terminalContrib/accessibility/browser/terminalAccessibilityHelp": {
+ "commandPromptMigration": "Erwägen Sie die Verwendung der Powershell anstelle der Eingabeaufforderung, um eine bessere Erfahrung zu machen",
+ "focusAccessibleTerminalView": "Mit dem Befehl \"Barrierefreie Terminalansicht fokussieren\" können Bildschirmsprachausgaben Terminalinhalte lesen.",
+ "focusAfterRun": "Konfigurieren Sie mithilfe von \"{0}\", welches Element nach Ausführung des ausgewählten Texts im Terminal den Fokus erhält.",
+ "focusViewOnExecution": "Aktivieren Sie \"terminal.integrated.accessibleViewFocusOnCommandExecution\", um automatisch den Fokus auf die barrierefreie Terminalansicht zu setzen, wenn ein Befehl im Terminal ausgeführt wird.",
+ "goToNextCommand": "In der barrierefreien Ansicht zu \"Nächster Befehl\" wechseln",
+ "goToPreviousCommand": "In der barrierefreien Ansicht zu \"Vorheriger Befehl\" wechseln",
+ "goToRecentDirectory": "Zum zuletzt verwendeten Verzeichnis wechseln",
+ "goToSymbol": "Zum Symbol wechseln",
+ "newWithProfile": "Der Befehl \"Erstellen eines neuen Terminals (mit Profil)\" ermöglicht die einfache Erstellung eines Terminals mithilfe eines bestimmten Profils.",
+ "noShellIntegration": "Die Shell-Integration ist nicht aktiviert. Einige Barrierefreiheitsfunktionen sind möglicherweise nicht verfügbar.",
+ "openDetectedLink": "Mit dem Befehl \"Erkannten Link öffnen\" können Bildschirmsprachausgaben Terminalinhalte einfach öffnen.",
+ "preserveCursor": "Passen Sie das Verhalten des Cursors beim Wechseln zwischen dem Terminal und der barrierefreien Ansicht mit \"terminal.integrated.accessibleViewPreserveCursorPosition\" an.",
+ "runRecentCommand": "Zuletzt verwendeten Befehl ausführen",
+ "shellIntegration": "Das Terminal verfügt über ein Feature namens Shellintegration, das eine verbesserte Benutzeroberfläche bietet und nützliche Befehle für Sprachausgaben bereitstellt, z. B.:",
+ "suggest": "Wenn das Terminal-Vorschlagswidget relevant ist:",
+ "suggestCommands": "– Den Vorschlag akzeptieren und die Vorschlagseinstellungen konfigurieren.",
+ "suggestCommandsMore": "– Umschalten zwischen Widget und Terminal und Umschalten des Detailfokus, um mehr über den Vorschlag zu erfahren.",
+ "suggestConfigure": "-Konfigurieren von Vorschlagseinstellungen ",
+ "suggestLearnMore": "– Erfahren Sie mehr über den Vorschlag.",
+ "suggestTrigger": "Der Befehl zum Abschließen von Terminalanforderungen kann manuell aufgerufen werden, wird aber auch während der Eingabe angezeigt."
+ },
+ "vs/workbench/contrib/terminalContrib/accessibility/common/terminalAccessibilityConfiguration": {
+ "terminal.integrated.accessibleViewFocusOnCommandExecution": "Die barrierefreie Terminalansicht fokussieren, wenn ein Befehl ausgeführt wird.",
+ "terminal.integrated.accessibleViewPreserveCursorPosition": "Die Cursorposition wird beim erneuten Öffnen der barrierefreien Terminalansicht beibehalten, anstatt sie auf das Pufferende festzulegen."
+ },
+ "vs/workbench/contrib/terminalContrib/autoReplies/common/terminalAutoRepliesConfiguration": {
+ "terminal.integrated.autoReplies": "Eine Gruppe von Nachrichten, auf die im Terminal automatisch geantwortet wird, wenn sie auftauchen. Sofern die Nachricht spezifisch genug ist, kann dies dazu beitragen, häufige Antworten zu automatisieren.\r\n\r\nHinweise:\r\n\r\n– Verwenden Sie {0}, um automatisch auf die Aufforderung zum Beenden des Batchauftrags unter Windows zu reagieren.\r\n– Die Nachricht enthält Escapesequenzen, sodass die Antwort möglicherweise nicht mit formatiertem Text erfolgt.\r\n– Jede Antwort kann nur einmal pro Sekunde erfolgen.\r\n– Verwenden Sie {1} in der Antwort, um zu zeigen, dass Sie die EINGABETASTE meinen.\r\n– Legen Sie zum Aufheben der Festlegung einer Standardtaste den Wert auf NULL fest.\r\n– Starten Sie VS Code neu, wenn keine neuen Einstellungen gelten.",
+ "terminal.integrated.autoReplies.reply": "Die an den Prozess zu sendende Antwort."
+ },
+ "vs/workbench/contrib/terminalContrib/chat/browser/terminal.initialHint.contribution": {
+ "disableHint": " Schalten Sie \"{0}\" in den Einstellungen um, um diesen Hinweis zu deaktivieren.",
+ "disableInitialHint": "Anfänglichen Hinweis deaktivieren",
+ "emptyHintText": "Chat {0} öffnen. ",
+ "hintTextDismiss": "Beginnen Sie mit der Eingabe, um die Meldung zu schließen.",
+ "inlineChatHint": "[[Chat öffnen]] oder mit der Eingabe beginnen, um sie zu schließen."
+ },
+ "vs/workbench/contrib/terminalContrib/chat/browser/terminalChat": {
+ "chatAgentRegisteredContextKey": "Gibt an, ob ein Chatagent für den Terminalstandort registriert ist.",
+ "chatFocusedContextKey": "Gibt an, ob die Chatansicht fokussiert ist.",
+ "chatInputHasTextContextKey": "Gibt an, ob die Chateingabe Text enthält.",
+ "chatRequestActiveContextKey": "Gibt an, ob eine aktive Chatanfrage vorhanden ist.",
+ "chatResponseContainsCodeBlockContextKey": "Gibt an, ob die Chatantwort einen Codeblock enthält.",
+ "chatResponseContainsMultipleCodeBlocksContextKey": "Gibt an, ob die Chatantwort mehrere Codeblöcke enthält.",
+ "chatVisibleContextKey": "Gibt an, ob die Chatansicht sichtbar ist.",
+ "terminalHasChatTerminals": "Gibt an, ob Chatterminals vorhanden sind.",
+ "terminalHasHiddenChatTerminals": "Gibt an, ob ausgeblendete Chatterminals vorhanden sind."
+ },
+ "vs/workbench/contrib/terminalContrib/chat/browser/terminalChatAccessibilityHelp": {
+ "chat.signals": "Signale für die Barrierefreiheit können über Einstellungen mit dem Präfix „signals.chat“ geändert werden. Wenn eine Anforderung mehr als 4 Sekunden dauert, hören Sie standardmäßig einen Tom, der angibt, dass der Vorgang noch durchgeführt wird.",
+ "inlineChat.access": "Sie kann mithilfe des Befehls „Terminal: Chat starten ({0})“ aktiviert werden, wodurch das Eingabefeld fokussiert wird.",
+ "inlineChat.focusInput": "Erreicht das Eingabefeld über die Antwort ({0}).",
+ "inlineChat.focusInputNoKb": "Sie erreichen die Antwort über das Eingabefeld, indem Sie UMSCHALT+TAB-TASTE drücken oder eine Tastenzuordnung für den Befehl „Fokusterminaleingabe“ zuweisen.",
+ "inlineChat.focusResponse": "Erreicht die Antwort über das Eingabefeld ({0}).",
+ "inlineChat.focusResponseNoKb": "Sie erreichen die Antwort über das Eingabefeld mit Tabstopps oder indem Sie eine Tastenzuordnung für den Befehl „Focus Terminal Response“ zuweisen.",
+ "inlineChat.input": "Im Eingabefeld kann der Benutzer eine Anforderung eingeben und die Anforderung senden ({0}). Das Widget wird geschlossen, und der gesamte Inhalt wird verworfen, wenn die Escape-Taste gedrückt wird und das Terminal wieder den Fokus erhält.",
+ "inlineChat.inputNoKb": "Im Eingabefeld kann der Benutzer eine Anforderung eingeben und die Anforderung durch Tabulatoren zur Schaltfläche „Anforderung erstellen“ ausführen, die derzeit nicht über Tastenzuordnungen ausgelöst werden kann. Das Widget wird geschlossen, und der gesamte Inhalt wird verworfen, wenn die Escape-Taste gedrückt wird und das Terminal wieder den Fokus erhält.",
+ "inlineChat.insertCommand": "Mit Fokus im Eingabefeld-Befehls-Editor die Aktion „Terminal: Chatbefehl einfügen ({0})“.",
+ "inlineChat.insertCommandNoKb": "Fügen Sie einen Befehl ein, indem Sie mit der Tab-Taste auf die Schaltfläche klicken, da die Aktion derzeit nicht durch eine Tastenzuordnung ausgelöst werden kann.",
+ "inlineChat.inspectResponseMessage": "Die Antwort kann in der barrierefreien Ansicht ({0}) überprüft werden.",
+ "inlineChat.inspectResponseNoKb": "Wenn der Fokus auf dem Eingabefeld liegt, überprüfen Sie die Antwort in der barrierefreien Ansicht über den Befehl \"Barrierefreie Ansicht öffnen\", der derzeit nicht durch eine Tastenzuordnung ausgelöst werden kann.",
+ "inlineChat.overview": "Inlinechat findet innerhalb eines Terminals statt. Dies ist nützlich, um Terminalbefehle vorzuschlagen. Beachten Sie, dass der KI-generierte Code möglicherweise falsch ist.",
+ "inlineChat.runCommand": "Mit Fokus im Eingabefeld oder Befehls-Editor die Aktion „Terminal: Chatbefehl ausführen ({0})“.",
+ "inlineChat.runCommandNoKb": "Führen Sie einen Befehl aus, indem Sie mit der Tab-Taste auf die Schaltfläche klicken, da die Aktion derzeit nicht durch eine Tastenzuordnung ausgelöst werden kann.",
+ "inlineChat.toolbar": "Verwenden Sie die Registerkarte, um bedingte Teile wie Befehle, Status, Nachrichtenantworten und mehr zu erreichen."
+ },
+ "vs/workbench/contrib/terminalContrib/chat/browser/terminalChatActions": {
+ "chat.rerun.label": "Anforderung erneut ausführen",
+ "chatTerminal.lastCommand": "Letzte(r/s): {0}",
+ "closeChat": "Schließen",
+ "insert": "Einfügen",
+ "insertCommand": "Befehl „Chat einfügen“",
+ "insertFirst": "Zuerst einfügen",
+ "insertFirstCommand": "Befehl „Ersten Chat einfügen“",
+ "run": "Ausführen",
+ "runCommand": "Chatbefehl ausführen",
+ "runFirst": "Zuerst ausführen",
+ "runFirstCommand": "Befehl „Ersten Chat ausführen“",
+ "selectChatTerminal": "Ein Chatterminal auswählen, das angezeigt und fokussiert werden soll",
+ "showChatTerminals.title": "Chatterminals",
+ "startChat": "Inlinechat öffnen",
+ "terminalCategory": "Terminal",
+ "terminalCategory2": "Terminal",
+ "viewHiddenChatTerminals": "Ausgeblendete Chatterminals anzeigen",
+ "viewInChat": "Im Chat anzeigen"
+ },
+ "vs/workbench/contrib/terminalContrib/chat/browser/terminalChatWidget": {
+ "askAboutCommands": "Nach Befehlen fragen"
+ },
+ "vs/workbench/contrib/terminalContrib/chat/common/terminalInitialHintConfiguration": {
+ "terminal.integrated.initialHint": "Steuert, ob das erste Terminal ohne Eingabe einen Hinweis zu verfügbaren Aktionen zeigt, wenn es sich um einen Fokus handelt."
+ },
+ "vs/workbench/contrib/terminalContrib/chatAgentTools/browser/runInTerminalHelpers": {
+ "allowSession": "Alle Befehle in dieser Sitzung zulassen",
+ "allowSessionTooltip": "Lassen Sie dieses Tool in dieser Sitzung ohne Bestätigung ausführen.",
+ "autoApprove.baseCommand": "Befehle immer zulassen: {0}",
+ "autoApprove.baseCommandSingle": "Befehl immer zulassen: {0}",
+ "autoApprove.configure": "Automatische Genehmigung konfigurieren ...",
+ "autoApprove.exactCommand": "Exakte Befehlszeile immer zulassen"
+ },
+ "vs/workbench/contrib/terminalContrib/chatAgentTools/browser/terminal.chatAgentTools.contribution": {
+ "addTerminalSelection": "Terminalauswahl zum Chat hinzufügen",
+ "terminalSelection": "Terminalauswahl",
+ "toolset.shell": "Run commands in the terminal"
+ },
+ "vs/workbench/contrib/terminalContrib/chatAgentTools/browser/tools/commandLineAnalyzer/commandLineAutoApproveAnalyzer": {
+ "autoApprove.global": "Automatisch durch die Einstellung {0} genehmigt",
+ "autoApprove.rule": "Automatisch von der Regel {0} genehmigt",
+ "autoApprove.rules": "Automatisch von den {0}-Regeln genehmigt",
+ "autoApprove.session": "Automatisch für diese Sitzung genehmigt",
+ "autoApprove.session.disable": "Deaktivieren",
+ "autoApproveDenied.rule": "Automatische Genehmigung durch {0}-Regel verweigert",
+ "autoApproveDenied.rules": "Automatische Genehmigung durch {0}-Regeln verweigert",
+ "ruleTooltip": "Regel in den Einstellungen anzeigen",
+ "ruleTooltip.global": "Einstellungen anzeigen",
+ "runInTerminal.promptInjectionDisclaimer": "Webinhalte können schädlichen Code enthalten oder versuchen, Promptinjektionsangriffe durchzuführen."
+ },
+ "vs/workbench/contrib/terminalContrib/chatAgentTools/browser/tools/commandLineAnalyzer/commandLineFileWriteAnalyzer": {
+ "runInTerminal.fileWriteBlockedDisclaimer": "Dateischreibvorgänge erkannt, die nicht automatisch genehmigt werden können: {0}",
+ "runInTerminal.fileWriteDisclaimer": "Dateischreibvorgänge erkannt: {0}"
+ },
+ "vs/workbench/contrib/terminalContrib/chatAgentTools/browser/tools/getTerminalLastCommandTool": {
+ "getTerminalLastCommand.past": "Letzten Terminalbefehl erhalten",
+ "getTerminalLastCommand.progressive": "Letzter Terminalbefehl wird abgerufen",
+ "terminalLastCommandTool.displayName": "Letzter Terminalbefehl erhalten"
+ },
+ "vs/workbench/contrib/terminalContrib/chatAgentTools/browser/tools/getTerminalOutputTool": {
+ "bg.past": "Überprüfte Terminalausgabe im Hintergrund",
+ "bg.progressive": "Überprüfen der Terminalausgabe im Hintergrund",
+ "getTerminalOutputTool.displayName": "Terminalausgabe abrufen"
+ },
+ "vs/workbench/contrib/terminalContrib/chatAgentTools/browser/tools/getTerminalSelectionTool": {
+ "getTerminalSelection.past": "Terminalauswahl lesen",
+ "getTerminalSelection.progressive": "Terminalauswahl wird gelesen",
+ "terminalSelectionTool.displayName": "Terminalauswahl abrufen"
+ },
+ "vs/workbench/contrib/terminalContrib/chatAgentTools/browser/tools/monitoring/outputMonitor": {
+ "poll.terminal.accept": "Ja",
+ "poll.terminal.acceptRun": "Zulassen",
+ "poll.terminal.confirmRequired": "Das Terminal wartet auf die Eingabe.",
+ "poll.terminal.confirmRunDetail": "{0}\r\n Möchten Sie „{1}“{2} gefolgt von „Eingabe“ an das Terminal senden?",
+ "poll.terminal.enterInput": "Fokus auf Terminal",
+ "poll.terminal.inputRequest": "Das Terminal wartet auf die Eingabe.",
+ "poll.terminal.polling": "Dadurch wird weiterhin eine Ausgabe abgefragt, um zu bestimmen, wann das Terminal bis zu 2 Minuten in den Leerlauf wechselt.",
+ "poll.terminal.reject": "Nein",
+ "poll.terminal.rejectRun": "Terminal fokussieren",
+ "poll.terminal.requireInput": "{0}\r\nGeben Sie die erforderliche Eingabe im Terminal ein.\r\n\r\n",
+ "poll.terminal.waiting": "Weiterhin auf „{0}“ warten?"
+ },
+ "vs/workbench/contrib/terminalContrib/chatAgentTools/browser/tools/runInTerminalConfirmationTool": {
+ "confirmTerminalCommandTool.displayName": "Terminalbefehl bestätigen",
+ "confirmTerminalCommandTool.userDescription": "Tool zum Bestätigen von Terminalbefehlen"
+ },
+ "vs/workbench/contrib/terminalContrib/chatAgentTools/browser/tools/runInTerminalTool": {
+ "runInTerminal": "Befehl „{0}“ ausführen?",
+ "runInTerminal.background": "Befehl „{0}“ ausführen? (Hintergrundterminal)",
+ "runInTerminalTool.displayName": "In Terminal ausführen",
+ "runInTerminalTool.userDescription": "Run commands in the terminal"
+ },
+ "vs/workbench/contrib/terminalContrib/chatAgentTools/browser/tools/task/createAndRunTaskTool": {
+ "allowTaskCreationExecution": "Taskerstellung und -ausführung zulassen?",
+ "alreadyRunning": "Der Task \"{0}\" wird bereits ausgeführt.",
+ "copilotChat.fetchingTask": "Die Aufgabe wird aufgelöst",
+ "copilotChat.noTerminal": "Die Aufgabe wurde gestartet, aber es wurde kein Terminal gefunden für: „{0}“",
+ "copilotChat.runningTask": "Aufgabe „{0}“ wird ausgeführt",
+ "copilotChat.taskNotFound": "Aufgabe nicht gefunden: „{0}“",
+ "createAndRunTask.displayName": "Aufgabe erstellen und ausführen",
+ "createAndRunTask.userDescription": "Aufgabe im Arbeitsbereich erstellen und ausführen.",
+ "createTask": "Eine Aufgabe „{0}“ mit dem Befehl „{1}“{2} wird erstellt.",
+ "createdTask": "Aufgabe „{0}“ wurde erstellt",
+ "createdTaskPast": "Aufgabe „{0}“ wurde erstellt",
+ "taskExists": "Die Aufgabe „{0}“ ist bereits vorhanden.",
+ "taskExistsPast": "Die Aufgabe „{0}“ ist bereits vorhanden."
+ },
+ "vs/workbench/contrib/terminalContrib/chatAgentTools/browser/tools/task/getTaskOutputTool": {
+ "copilotChat.checkedTerminalOutput": "Überprüfte Ausgabe für die Aufgabe „{0}“",
+ "copilotChat.checkingTerminalOutput": "Die Ausgabe für „{0}“ wird überprüft",
+ "copilotChat.taskAlreadyRunning": "Die Aufgabe „{0}“ wird bereits ausgeführt.",
+ "copilotChat.taskNotFound": "Aufgabe nicht gefunden: „{0}“",
+ "copilotChat.terminalNotFound": "Terminal für Aufgabe „{0}“ nicht gefunden",
+ "getTaskOutputTool.displayName": "Abrufen der Taskausgabe"
+ },
+ "vs/workbench/contrib/terminalContrib/chatAgentTools/browser/tools/task/runTaskTool": {
+ "chat.allowTaskRunMsg": "Ausführung der Aufgabe „{0}“ zulassen?",
+ "chat.allowTaskRunTitle": "Aufgabenausführung zulassen?",
+ "chat.noTerminal": "Die Aufgabe wurde gestartet, aber es wurde kein Terminal gefunden für: „{0}“",
+ "chat.ranTask": "„{0}“ wurde ausgeführt",
+ "chat.runningTask": "„{0}“ wird ausgeführt",
+ "chat.startedTask": "„{0}“ gestartet",
+ "chat.taskAlreadyActive": "Der Task wird bereits ausgeführt.",
+ "chat.taskAlreadyRunning": "Die Aufgabe „{0}“ wird bereits ausgeführt.",
+ "chat.taskIsAlreadyRunning": "„{0}“ wird bereits ausgeführt.",
+ "chat.taskNotFound": "Aufgabe nicht gefunden: „{0}“",
+ "chat.taskWasAlreadyRunning": "„{0}“ wurde bereits ausgeführt.",
+ "runInTerminalTool.displayName": "Task ausführen",
+ "runInTerminalTool.userDescription": "Run tasks in the workspace"
+ },
+ "vs/workbench/contrib/terminalContrib/chatAgentTools/browser/tools/task/taskHelpers": {
+ "copilotChat.taskFailedWithExitCode": "Fehler bei Aufgabe „{0}“ mit Exitcode „{1}“."
+ },
+ "vs/workbench/contrib/terminalContrib/chatAgentTools/common/terminalChatAgentToolsConfiguration": {
+ "autoApprove.defaults": "Beachten Sie, dass es einen Standardsatz von Regeln gibt, um Befehle zuzulassen und auch abzulehnen. Sie könnten {0} auf {1} festlegen, um alle Standardregeln zu ignorieren und so sicherzustellen, dass keine Konflikte mit Ihren eigenen Regeln entstehen. Sie tun dies auf eigene Gefahr, denn die standardmäßigen Ablehnungsregeln sollen Sie vor der Ausführung gefährlicher Befehle schützen.",
+ "autoApprove.deprecated": "Stattdessen „{0}“ verwenden",
+ "autoApprove.description.commandLine": "Ein Objekt kann verwendet werden, um mit der vollständigen Befehlszeile übereinzustimmen, anstatt mit Unterbefehlen und Inlinebefehlen, z. B. {0}. Damit _beide_ automatisch genehmigt werden können, dürfen der Unterbefehl und die Befehlszeile nicht explizit abgelehnt werden; _entweder_ müssen alle Unterbefehle oder die Befehlszeile genehmigt werden.",
+ "autoApprove.description.examples.binTest": "Alle Befehle zulassen, die dem Pfad {0} ({1}, {2} usw.) entsprechen",
+ "autoApprove.description.examples.description": "Beschreibung",
+ "autoApprove.description.examples.mkdir": "Alle Befehle zulassen, die mit „{0}“ beginnen",
+ "autoApprove.description.examples.npmRunBuild": "Alle Befehle zulassen, die mit „{0}“ beginnen",
+ "autoApprove.description.examples.ps1": "Explizite Genehmigung für alle _command line_ erforderlich, die unabhängig von der Groß-/Kleinschreibung „{0}“ enthalten",
+ "autoApprove.description.examples.regexAll": "Alle Befehle zulassen (verweigerte Befehle müssen weiterhin genehmigt werden)",
+ "autoApprove.description.examples.regexCase": "lässt {0}-Befehle unabhängig von der Groß-/Kleinschreibung zu",
+ "autoApprove.description.examples.regexGit": "„{0}“ und alle Befehle zulassen, die mit „{1}“ beginnen",
+ "autoApprove.description.examples.rm": "Explizite Genehmigung für alle Befehle erforderlich, die mit „{0}“ beginnen.",
+ "autoApprove.description.examples.rmUnset": "Den Standardwert „{0}“ für „{1}“ entfernen",
+ "autoApprove.description.examples.title": "Beispiele:",
+ "autoApprove.description.examples.value": "Wert",
+ "autoApprove.description.intro": "Eine Liste von Befehlen oder regulären Ausdrücken, die steuern, ob die Befehle des Tools „In Terminal ausführen“ eine ausdrückliche Genehmigung erfordern. Diese werden mit dem Anfang eines Befehls abgeglichen. Ein regulärer Ausdruck kann angegeben werden, indem die Zeichenfolge in „{0}“-Zeichen eingeschlossen wird, gefolgt von optionalen Flags wie „{1}“ für die Groß-/Kleinschreibung.",
+ "autoApprove.description.subCommands": "Beachten Sie, dass diese Befehle und regulären Ausdrücke für jeden _Unterbefehl_ innerhalb einer vollständigen _Befehlszeile_ ausgewertet werden. So müssen beispielsweise bei „{0}“ sowohl „{1}“ als auch „{2}“ mit einem Eintrag „{3}“ übereinstimmen und dürfen nicht mit einem Eintrag „{4}“ übereinstimmen, damit die automatische Genehmigung erfolgt. Inlinebefehle wie „ {5}“ (Prozessersetzung) sollten ebenfalls erkannt werden.",
+ "autoApprove.description.values": "Legen Sie den Wert auf „{0}“, um Befehle automatisch zu genehmigen, auf „{1}“, um immer eine ausdrückliche Genehmigung zu verlangen, oder auf „{2}“, um den Wert zurückzusetzen.",
+ "autoApprove.false": "Erfordert eine ausdrückliche Genehmigung für das Muster.",
+ "autoApprove.key": "Der Anfang eines Befehls, mit dem eine Übereinstimmung gefunden werden soll. Ein regulärer Ausdruck kann angegeben werden, indem die Zeichenfolge in \"/\"-Zeichen eingeschlossen wird.",
+ "autoApprove.matchCommandLine": "Gibt an, ob eine Übereinstimmung mit der vollständigen Befehlszeile durchgeführt werden soll, anstatt durch Unterbefehle und Inlinebefehle zu splitten.",
+ "autoApprove.matchCommandLine.false": "Übereinstimmung mit Unterbefehlen und Inlinebefehlen, z. B. „foo && bar“ benötigt sowohl „foo“ als auch „bar“, um übereinstimmen zu können.",
+ "autoApprove.matchCommandLine.true": "Übereinstimmung mit der vollständigen Befehlszeile, z. B. „foo && bar“.",
+ "autoApprove.null": "Muster ignorieren; dies ist nützlich, um denselben Mustersatz in einem höheren Geltungsbereich zurückzusetzen.",
+ "autoApprove.true": "Muster automatisch genehmigen",
+ "autoApproveMode.description": "Steuert, ob die automatische Genehmigung im Terminaltool zulässig ist.",
+ "autoReplyToPrompts.key": "Gibt an, ob automatisch auf Eingabeaufforderungen im Terminal wie „Confirm? y/n“ (Bestätigen? j/n) geantwortet werden soll. Dies ist eine experimentelles Feature und funktioniert möglicherweise nicht in allen Szenarien.",
+ "blockFileWrites.all": "Blockieren Sie alle erkannten Dateischreibvorgänge.",
+ "blockFileWrites.description": "Steuert, ob erkannte Dateischreibvorgänge im Tool „In Terminal ausführen“ blockiert werden. Wenn dies erkannt wird, ist eine explizite Genehmigung erforderlich, unabhängig davon, ob der Befehl normalerweise automatisch genehmigt wird. Beachten Sie, dass nicht alle möglichen Methoden zum Schreiben von Dateien erkannt werden können. Folgendes wird derzeit erkannt:\r\n\r\n– Dateiumleitung (erkannt über die Bash- oder PowerShell-Tree-Sitter-Grammatik)",
+ "blockFileWrites.never": "Lassen Sie alle erkannten Dateischreibvorgänge zu.",
+ "blockFileWrites.outsideWorkspace": "Blockieren Sie erkannte Dateischreibvorgänge außerhalb des Arbeitsbereichs. Dies setzt voraus, dass die Shell-Integrationsfunktion korrekt funktioniert, um das aktuelle Arbeitsverzeichnis des Terminals zu ermitteln.",
+ "ignoreDefaultAutoApproveRules.description": "Gibt an, ob die integrierten standardmäßigen Regeln für die automatische Genehmigung, die vom Tool „In Terminal ausführen“ gemäß {0} verwendet werden, ignoriert werden sollen. Wenn diese Einstellung aktiviert ist, ignoriert das Terminaltool alle Regeln aus dem Standardsatz, folgt aber weiterhin den Regeln, die in den Benutzer-, Remote- und Arbeitsbereichseinstellungen definiert sind. Verwenden Sie diese Einstellung auf eigene Gefahr. Die standardmäßigen Regeln für die automatische Genehmigung sollen Sie vor der Ausführung gefährlicher Befehle schützen.",
+ "outputLocation.description": "Legt fest, wo die Ausgabe der Sitzung des Tools „In Terminal ausführen“ angezeigt wird.",
+ "outputLocation.none": "Terminal nicht automatisch anzeigen.",
+ "outputLocation.terminal": "Terminal beim Ausführen des Befehls anzeigen.",
+ "shellIntegrationTimeout.deprecated": "Stattdessen „{0}“ verwenden",
+ "shellIntegrationTimeout.description": "Konfiguriert die Dauer in Millisekunden, um zu warten, bis die Shellintegration erkannt wird, wenn die Ausführung im Terminaltool ein neues Terminal startet. Auf „0“ festgelegt, um die Mindestzeit zu warten, bedeutet der Standardwert „-1“, dass die Wartezeit variabel ist, basierend auf dem Wert „{0}“ und ob es sich um ein Remotefenster handelt. Ein hoher Wert kann nützlich sein, wenn Ihre Shell sehr langsam startet, und ein niedriger Wert, wenn Sie absichtlich keine Shellintegration verwenden.",
+ "terminalChatAgentProfile.linux": "Das Terminalprofil, das unter Linux für die Ausführung des Chat-Agents im Terminaltool verwendet wird.",
+ "terminalChatAgentProfile.osx": "Das Terminalprofil, das unter macOS für die Ausführung des Chat-Agents im Terminaltool verwendet wird.",
+ "terminalChatAgentProfile.path": "Ein Pfad zu einer ausführbaren Shell.",
+ "terminalChatAgentProfile.windows": "Das Terminalprofil, das unter Windows für die Ausführung des Chat-Agents im Terminaltool verwendet wird."
+ },
+ "vs/workbench/contrib/terminalContrib/clipboard/browser/terminal.clipboard.contribution": {
+ "workbench.action.terminal.copyAndClearSelection": "Auswahl kopieren und löschen",
+ "workbench.action.terminal.copyLastCommand": "Letzten Befehl kopieren",
+ "workbench.action.terminal.copyLastCommandAndOutput": "Letzten Befehl und letzte Ausgabe kopieren",
+ "workbench.action.terminal.copyLastCommandOutput": "Letzte Befehlsausgabe kopieren",
+ "workbench.action.terminal.copySelection": "Auswahl kopieren",
+ "workbench.action.terminal.copySelectionAsHtml": "Auswahl als HTML kopieren",
+ "workbench.action.terminal.paste": "In aktives Terminal einfügen",
+ "workbench.action.terminal.pasteSelection": "Auswahl in aktives Terminal einfügen"
+ },
+ "vs/workbench/contrib/terminalContrib/clipboard/browser/terminalClipboard": {
+ "confirmMoveTrashMessageFilesAndDirectories": "Möchten Sie {0} Textzeilen wirklich in das Terminal einfügen?",
+ "doNotAskAgain": "Nicht erneut fragen",
+ "multiLinePasteButton": "&&Einfügen",
+ "multiLinePasteButton.oneLine": "Als &&eine Zeile einfügen",
+ "preview": "Vorschau:"
+ },
+ "vs/workbench/contrib/terminalContrib/commandGuide/browser/terminal.commandGuide.contribution": {
+ "terminalCommandGuide.foreground": "Die Vordergrundfarbe der Terminalbefehlsführung, die links neben einem Befehl und deren Ausgabe beim Daraufzeigen angezeigt wird."
+ },
+ "vs/workbench/contrib/terminalContrib/commandGuide/common/terminalCommandGuideConfiguration": {
+ "showCommandGuide": "Gibt an, ob die Befehlsführung angezeigt wird, wenn auf einen Befehl im Terminal gezeigt wird."
+ },
+ "vs/workbench/contrib/terminalContrib/developer/browser/terminal.developer.contribution": {
+ "workbench.action.terminal.recordSession": "Terminalsitzung aufzeichnen",
+ "workbench.action.terminal.recordSession.recording": "Terminalsitzung wird aufgezeichnet...",
+ "workbench.action.terminal.restartPtyHost": "Pty-Host neu starten",
+ "workbench.action.terminal.showTextureAtlas": "Terminal Texture Atlas anzeigen",
+ "workbench.action.terminal.writeDataToTerminal": "Daten auf Terminal schreiben",
+ "workbench.action.terminal.writeDataToTerminal.prompt": "Geben Sie Daten ein, die direkt in das Terminal geschrieben werden sollen, und umgehen Sie die pty"
+ },
+ "vs/workbench/contrib/terminalContrib/environmentChanges/browser/terminal.environmentChanges.contribution": {
+ "ScopedEnvironmentContributionInfo": "Arbeitsbereich",
+ "envChanges": "Terminalumgebungsänderungen",
+ "extension": "Erweiterung: {0}",
+ "workbench.action.terminal.showEnvironmentContributions": "Umgebungsbeiträge anzeigen"
+ },
+ "vs/workbench/contrib/terminalContrib/find/browser/terminal.find.contribution": {
+ "workbench.action.terminal.findNext": "Weitersuchen",
+ "workbench.action.terminal.findPrevious": "Vorheriges Element suchen",
+ "workbench.action.terminal.focusFind": "Fokus auf Suche",
+ "workbench.action.terminal.hideFind": "Suche ausblenden",
+ "workbench.action.terminal.searchWorkspace": "Arbeitsbereich durchsuchen",
+ "workbench.action.terminal.toggleFindCaseSensitive": "Groß-/Kleinschreibung für Suche aktivieren/deaktivieren",
+ "workbench.action.terminal.toggleFindRegex": "RegEx für Suche aktivieren/deaktivieren",
+ "workbench.action.terminal.toggleFindWholeWord": "Ganze Wörter für Suche aktivieren/deaktivieren"
+ },
+ "vs/workbench/contrib/terminalContrib/history/browser/terminal.history.contribution": {
+ "goToRecentDirectory.metadata": "Wechselt zu einem zuletzt verwendeten Ordner.",
+ "workbench.action.terminal.clearPreviousSessionHistory": "Vorherigen Sitzungsverlauf löschen",
+ "workbench.action.terminal.goToRecentDirectory": "Zum aktuellen Verzeichnis wechseln...",
+ "workbench.action.terminal.runRecentCommand": "Zuletzt verwendeten Befehl ausführen..."
+ },
+ "vs/workbench/contrib/terminalContrib/history/browser/terminalRunRecentQuickPick": {
+ "openShellHistoryFile": "Datei öffnen",
+ "removeCommand": "Aus Befehlsverlauf entfernen",
+ "selectRecentCommand": "Wählen Sie einen auszuführenden Befehl aus (halten Sie die ALT-Taste gedrückt, um den Befehl zu bearbeiten)",
+ "selectRecentCommandMac": "Wählen Sie einen auszuführenden Befehl aus (halten Sie die Optionstaste gedrückt, um den Befehl zu bearbeiten)",
+ "selectRecentDirectory": "Wählen Sie ein Verzeichnis aus, zu dem Sie wechseln möchten (halten Sie die ALT-Taste gedrückt, um den Befehl zu bearbeiten)",
+ "selectRecentDirectoryMac": "Wählen Sie ein Verzeichnis aus, zu dem Sie wechseln möchten (halten Sie die Optionstaste gedrückt, um den Befehl zu bearbeiten)",
+ "shellFileHistoryCategory": "{0}-Verlauf",
+ "viewCommandOutput": "Befehlsausgabe anzeigen"
+ },
+ "vs/workbench/contrib/terminalContrib/history/common/terminal.history": {
+ "terminal.integrated.shellIntegration.history": "Steuert, ob die Anzahl zuletzt verwendeter Befehle im Terminalbefehlsverlauf gespeichert wird. Legen Sie diese Option auf 0 fest, um den Terminalbefehlsverlauf zu deaktivieren."
+ },
+ "vs/workbench/contrib/terminalContrib/links/browser/terminal.links.contribution": {
+ "workbench.action.terminal.openDetectedLink": "Erkannten Link öffnen...",
+ "workbench.action.terminal.openLastLocalFileLink": "Letzten lokalen Dateilink öffnen",
+ "workbench.action.terminal.openLastUrlLink": "Letzten URL-Link öffnen",
+ "workbench.action.terminal.openLastUrlLink.description": "Öffnet den letzten erkannten URL/URI-Link im Terminal."
+ },
+ "vs/workbench/contrib/terminalContrib/links/browser/terminalLinkDetectorAdapter": {
+ "focusFolder": "Fokus auf Ordner im Explorer",
+ "followLink": "Link folgen",
+ "openFile": "Datei im Editor öffnen",
+ "openFolder": "Ordner in neuem Fenster öffnen",
+ "searchWorkspace": "Arbeitsbereich suchen"
+ },
+ "vs/workbench/contrib/terminalContrib/links/browser/terminalLinkManager": {
+ "allow": "{0} zulassen",
+ "followForwardedLink": "Dem Link über den weitergeleiteten Port folgen",
+ "followLink": "Link folgen",
+ "followLinkUrl": "Link",
+ "scheme": "Das Öffnen von URIs kann unsicher sein. Möchten Sie das Öffnen von Links mit dem Schema „{0}“ zulassen?",
+ "terminalLinkHandler.followLinkAlt": "ALT + Klick",
+ "terminalLinkHandler.followLinkAlt.mac": "WAHLTASTE + Klick",
+ "terminalLinkHandler.followLinkCmd": "BEFEHLSTASTE + Klick",
+ "terminalLinkHandler.followLinkCtrl": "STRG + Klick"
+ },
+ "vs/workbench/contrib/terminalContrib/links/browser/terminalLinkQuickpick": {
+ "terminal.integrated.localFileLinks": "Datei",
+ "terminal.integrated.localFolderLinks": "Ordner",
+ "terminal.integrated.openDetectedLink": "Wählen Sie den zu öffnenden Link aus, und geben Sie Text ein, um alle Links zu filtern.",
+ "terminal.integrated.searchLinks": "Arbeitsbereichssuche",
+ "terminal.integrated.urlLinks": "URL"
+ },
+ "vs/workbench/contrib/terminalContrib/quickAccess/browser/terminal.quickAccess.contribution": {
+ "quickAccessTerminal": "Aktives Terminal wechseln",
+ "tasksQuickAccessHelp": "Alle geöffneten Terminals anzeigen",
+ "tasksQuickAccessPlaceholder": "Geben Sie den Namen eines zu öffnenden Terminals ein."
+ },
+ "vs/workbench/contrib/terminalContrib/quickAccess/browser/terminalQuickAccess": {
+ "renameTerminal": "Terminal umbenennen",
+ "workbench.action.terminal.newWithProfilePlus": "Neues Terminal mit Profil erstellen...",
+ "workbench.action.terminal.newplus": "Neues Terminal erstellen"
+ },
+ "vs/workbench/contrib/terminalContrib/quickFix/browser/quickFixAddon": {
+ "codeAction.widget.id.quickfix": "Schnelle Problembehebung",
+ "quickFix.command": "Ausführen: {0}",
+ "quickFix.opener": "Öffnen: {0}"
+ },
+ "vs/workbench/contrib/terminalContrib/quickFix/browser/terminal.quickFix.contribution": {
+ "workbench.action.terminal.showQuickFixes": "Schnelle Problembehebung für Terminal anzeigen"
+ },
+ "vs/workbench/contrib/terminalContrib/quickFix/browser/terminalQuickFixBuiltinActions": {
+ "terminal.createPR": "PR {0} erstellen",
+ "terminal.freePort": "Kostenloser Port {0}"
+ },
+ "vs/workbench/contrib/terminalContrib/quickFix/browser/terminalQuickFixService": {
+ "vscode.extension.contributes.terminalQuickFixes": "Trägt Terminal-Schnellkorrekturen bei.",
+ "vscode.extension.contributes.terminalQuickFixes.commandExitResult": "Der abzugleichende Befehl „Ergebnis beenden“",
+ "vscode.extension.contributes.terminalQuickFixes.commandLineMatcher": "Ein regulärer Ausdruck oder eine Zeichenfolge zum Testen der Befehlszeile",
+ "vscode.extension.contributes.terminalQuickFixes.id": "Die ID des Schnellkorrekturanbieters",
+ "vscode.extension.contributes.terminalQuickFixes.kind": "Die Art der resultierenden schnellen Problembehebung. Hierdurch wird die Darstellung der schnellen Problembehebung geändert. Wird standardmäßig auf \"{0}\" festgelegt.",
+ "vscode.extension.contributes.terminalQuickFixes.outputMatcher": "Ein regulärer Ausdruck oder eine reguläre Zeichenkette, mit dem/der eine einzelne Zeile der Ausgabe abgeglichen wird, auf die in terminalCommand und URI verwiesen werden soll.\r\n\r\n Beispiel:\r\n\r\n `lineMatcher: /git push --set-upstream origin (?[^s]+)/;`\r\n\r\n`terminalCommand: 'git push --set-upstream origin ${group:branchName}';`\r\n"
+ },
+ "vs/workbench/contrib/terminalContrib/sendSequence/browser/terminal.sendSequence.contribution": {
+ "sendSequence": "Sequenz senden",
+ "sendSequence.text.desc": "Die Textsequenz, die an das Terminal gesendet werden soll.",
+ "workbench.action.terminal.sendSequence.prompt": "Geben Sie die Sequenz ein, die an das Terminal gesendet werden soll."
+ },
+ "vs/workbench/contrib/terminalContrib/sendSignal/browser/terminal.sendSignal.contribution": {
+ "SIGCONT": "Prozess fortsetzen",
+ "SIGHUP": "Verbindung trennen",
+ "SIGINT": "Prozess unterbrechen (STRG+C)",
+ "SIGKILL": "Prozessbeendigung erzwingen",
+ "SIGQUIT": "Prozess beenden",
+ "SIGSTOP": "Prozess stoppen",
+ "SIGTERM": "Prozess ordnungsgemäß beenden",
+ "SIGUSR1": "Benutzerdefiniertes Signal 1",
+ "SIGUSR2": "Benutzerdefiniertes Signal 2",
+ "enterSignal": "Signalnamen eingeben (z. B. „SIGTERM“, „SIGKILL“)",
+ "manualSignal": "Signal manuell eingeben",
+ "selectSignal": "Signal auswählen, das an den Terminalprozess gesendet werden soll",
+ "sendSignal": "Signal senden",
+ "sendSignal.signal.desc": "Das Signal, das an den Terminalprozess gesendet werden soll (z. B. „SIGTERM“, „SIGINT“, „SIGKILL“)"
+ },
+ "vs/workbench/contrib/terminalContrib/stickyScroll/browser/terminal.stickyScroll.contribution": {
+ "miStickyScroll": "&&Fixierter Bildlauf",
+ "stickyScroll": "Fixierter Bildlauf",
+ "workbench.action.terminal.toggleStickyScroll": "Fixierten Bildlauf umschalten"
+ },
+ "vs/workbench/contrib/terminalContrib/stickyScroll/browser/terminalStickyScrollColorRegistry": {
+ "terminalStickyScroll.background": "Hintergrundfarbe der Überlagerung des fixierten Bildlaufs im Terminal.",
+ "terminalStickyScroll.border": "Rahmen der Überlagerung des fixierten Bildlaufs im Terminal.",
+ "terminalStickyScrollHover.background": "Hintergrundfarbe der Überlagerung des fixierten Bildlaufs im Terminal, wenn mit dem Mauszeiger darauf gezeigt wird."
+ },
+ "vs/workbench/contrib/terminalContrib/stickyScroll/browser/terminalStickyScrollOverlay": {
+ "labelWithKeybinding": "{0} ({1})",
+ "stickyScrollHoverTitle": "Zum Befehl navigieren"
+ },
+ "vs/workbench/contrib/terminalContrib/stickyScroll/common/terminalStickyScrollConfiguration": {
+ "stickyScroll.enabled": "Zeigt den aktuellen Befehl am oberen Rand des Terminals an. Für dieses Feature muss [Shellintegration]({0}) aktiviert werden. Siehe {1}.",
+ "stickyScroll.maxLineCount": "Definiert die maximale Anzahl fixierter Zeilen, die angezeigt werden sollen. Zeilen für fixierten Bildlauf überschreiten unabhängig von dieser Einstellung nie 40 % des Viewports."
+ },
+ "vs/workbench/contrib/terminalContrib/suggest/browser/terminal.suggest.contribution": {
+ "workbench.action.terminal.acceptSelectedSuggestion": "Einfügen",
+ "workbench.action.terminal.acceptSelectedSuggestionEnter": "Ausgewählten Vorschlag annehmen (Eingabe)",
+ "workbench.action.terminal.configureSuggestSettings": "Konfigurieren",
+ "workbench.action.terminal.hideSuggestWidget": "Vorschlagswidget ausblenden",
+ "workbench.action.terminal.hideSuggestWidgetAndNavigateHistory": "Ausblenden des Vorschlagswidgets und Navigieren im Verlauf",
+ "workbench.action.terminal.learnMore": "Weitere Informationen",
+ "workbench.action.terminal.resetSuggestWidgetSize": "Größe des Vorschlagswidgets zurücksetzen",
+ "workbench.action.terminal.selectNextPageSuggestion": "Vorschlag für die nächste Seite auswählen",
+ "workbench.action.terminal.selectNextSuggestion": "Nächsten Vorschlag auswählen",
+ "workbench.action.terminal.selectPrevPageSuggestion": "Vorschlag für die vorherige Seite auswählen",
+ "workbench.action.terminal.selectPrevSuggestion": "Vorherigen Vorschlag auswählen",
+ "workbench.action.terminal.suggestToggleDetails": "Details zum Umschalten vorschlagen",
+ "workbench.action.terminal.suggestToggleDetailsFocus": "Vorschlagsfokus umschalten",
+ "workbench.action.terminal.suggestToggleExplainMode": "Erläuterungsmodi umschalten",
+ "workbench.action.terminal.triggerSuggest": "Vorschlag auslösen"
+ },
+ "vs/workbench/contrib/terminalContrib/suggest/browser/terminalSuggestAddon": {
+ "alias": "Alias",
+ "argument": "Argument",
+ "branch": "Branch",
+ "commit": "Commit",
+ "file": "Datei",
+ "flag": "Kennzeichnung",
+ "folder": "Ordner",
+ "inlineSuggestion": "Inlinevorschlag",
+ "inlineSuggestionAlwaysOnTop": "Inlinevorschlag",
+ "method": "Methode",
+ "option": "Option",
+ "optionValue": "Optionswert",
+ "pullRequest": "Pull Request",
+ "pullRequestDone": "Pull Request (Fertig)",
+ "remote": "Remote",
+ "stash": "Stash",
+ "symbolicLinkFile": "SYLK-Datei",
+ "symbolicLinkFolder": "SYLK-Ordner",
+ "tag": "Tag"
+ },
+ "vs/workbench/contrib/terminalContrib/suggest/browser/terminalSymbolIcons": {
+ "terminalSymbolAliasIcon": "Symbol für Aliase im Widget für Terminalvorschläge.",
+ "terminalSymbolArgumentIcon": "Symbol für Argumente im Widget für Terminalvorschläge.",
+ "terminalSymbolBranchIcon": "Symbol für Branches im Widget für Terminalvorschläge.",
+ "terminalSymbolCommitIcon": "Symbol für Commits im Widget für Terminalvorschläge.",
+ "terminalSymbolFileIcon": "Symbol für Dateien im Widget für Terminalvorschläge.",
+ "terminalSymbolFlagIcon": "Symbol für Flags im Widget für Terminalvorschläge.",
+ "terminalSymbolFolderIcon": "Symbol für Ordner im Widget für Terminalvorschläge.",
+ "terminalSymbolIcon.aliasForeground": "Die Vordergrundfarbe für ein Aliassymbol. Diese Symbole werden im Widget für Terminalvorschläge angezeigt.",
+ "terminalSymbolIcon.argumentForeground": "Die Vordergrundfarbe für ein Argumentsymbol. Diese Symbole werden im Widget für Terminalvorschläge angezeigt.",
+ "terminalSymbolIcon.branchForeground": "Die Vordergrundfarbe für ein Branchsymbol Diese Symbole werden im Widget für Terminalvorschläge angezeigt.",
+ "terminalSymbolIcon.commitForeground": "Die Vordergrundfarbe für ein Commitsymbol Diese Symbole werden im Widget für Terminalvorschläge angezeigt.",
+ "terminalSymbolIcon.enumMemberForeground": "Die Vordergrundfarbe für ein Symbol für Enumerationsmember. Diese Symbole werden im Widget für Terminalvorschläge angezeigt.",
+ "terminalSymbolIcon.fileForeground": "Die Vordergrundfarbe für ein Dateisymbol. Diese Symbole werden im Widget für Terminalvorschläge angezeigt.",
+ "terminalSymbolIcon.flagForeground": "Die Vordergrundfarbe für ein Flagsymbol. Diese Symbole werden im Widget für Terminalvorschläge angezeigt.",
+ "terminalSymbolIcon.folderForeground": "Die Vordergrundfarbe für ein Ordnersymbol. Diese Symbole werden im Widget für Terminalvorschläge angezeigt.",
+ "terminalSymbolIcon.inlineSuggestionForeground": "Die Vordergrundfarbe für ein Symbol für Inlinevorschläge. Diese Symbole werden im Widget für Terminalvorschläge angezeigt.",
+ "terminalSymbolIcon.methodForeground": "Die Vordergrundfarbe für ein Methodensymbol. Diese Symbole werden im Widget für Terminalvorschläge angezeigt.",
+ "terminalSymbolIcon.optionForeground": "Die Vordergrundfarbe für ein Optionssymbol. Diese Symbole werden im Widget für Terminalvorschläge angezeigt.",
+ "terminalSymbolIcon.pullRequestDoneForeground": "Die Vordergrundfarbe für ein Symbol für einen abgeschlossenen Pull Request. Diese Symbole werden im Terminal-Vorschlagswidget angezeigt.",
+ "terminalSymbolIcon.pullRequestForeground": "Die Vordergrundfarbe für ein Pull Request-Symbol. Diese Symbole werden im Terminal-Vorschlagswidget angezeigt.",
+ "terminalSymbolIcon.remoteForeground": "Die Vordergrundfarbe für ein Remotesymbol Diese Symbole werden im Widget für Terminalvorschläge angezeigt.",
+ "terminalSymbolIcon.stashForeground": "Die Vordergrundfarbe für ein Stashsymbol Diese Symbole werden im Widget für Terminalvorschläge angezeigt.",
+ "terminalSymbolIcon.symbolTextForeground": "Die Vordergrundfarbe für einen Klartextvorschlag. Diese Symbole werden im Widget für Terminalvorschläge angezeigt.",
+ "terminalSymbolIcon.symbolicLinkFileForeground": "Die Vordergrundfarbe für ein SYLK-Dateisymbol Diese Symbole werden im Widget für Terminalvorschläge angezeigt.",
+ "terminalSymbolIcon.symbolicLinkFolderForeground": "Die Vordergrundfarbe für ein SYLK-Ordnersymbol Diese Symbole werden im Widget für Terminalvorschläge angezeigt.",
+ "terminalSymbolIcon.tagForeground": "Die Vordergrundfarbe für ein Tagsymbol Diese Symbole werden im Widget für Terminalvorschläge angezeigt.",
+ "terminalSymbolInlineSuggestionIcon": "Symbol für Inlinevorschläge im Widget für Terminalvorschläge.",
+ "terminalSymbolMethodIcon": "Symbol für Methoden im Widget für Terminalvorschläge.",
+ "terminalSymbolOptionIcon": "Symbol für Optionen im Widget für Terminalvorschläge.",
+ "terminalSymbolOptionValue": "Symbol für Enumerationsmember im Widget für Terminalvorschläge.",
+ "terminalSymbolPullRequestDoneIcon": "Symbol für abgeschlossene Pull Requests im Terminal-Vorschlagswidget.",
+ "terminalSymbolPullRequestIcon": "Symbol für Pull-Requests im Terminal-Vorschlagswidget.",
+ "terminalSymbolRemoteIcon": "Symbol für Remotes im Widget für Terminalvorschläge.",
+ "terminalSymbolStashIcon": "Symbol für Stashes im Widget für Terminalvorschläge.",
+ "terminalSymbolSymboTextIcon": "Symbol für Nur-Text-Vorschläge im Widget für Terminalvorschläge.",
+ "terminalSymbolSymbolicLinkFileIcon": "Symbol für SYLK-Dateien im Widget für Terminalvorschläge",
+ "terminalSymbolSymbolicLinkFolderIcon": "Symbol für SYLK-Ordner im Widget für Terminalvorschläge",
+ "terminalSymbolTagIcon": "Symbol für Tags im Terminal-Vorschlagswidget."
+ },
+ "vs/workbench/contrib/terminalContrib/suggest/common/terminalSuggestConfiguration": {
+ "runOnEnter.always": "Immer beim Drücken der EINGABETASTE ausführen.",
+ "runOnEnter.exactMatch": "Wird beim Drücken der EINGABETASTE ausgeführt, wenn der Vorschlag vollständig eingegeben wurde.",
+ "runOnEnter.exactMatchIgnoreExtension": "Wird beim Drücken der EINGABETASTE ausgeführt, wenn der Vorschlag vollständig eingegeben wurde oder wenn eine Datei ohne die zugehörige Erweiterung eingegeben wurde.",
+ "runOnEnter.never": "Nie beim Drücken der EINGABETASTE ausführen.",
+ "suggest.cdPath": "Steuert, ob $CDPATH Unterstützung aktiviert wird, die untergeordnete Elemente der Ordner in der variablen $CDPATH unabhängig vom aktuellen Arbeitsverzeichnis verfügbar macht. es wird erwartet, dass $CDPATH unter Windows durch Semikolons getrennt und auf anderen Plattformen doppelpunktgetrennt ist.",
+ "suggest.cdPath.absolute": "Aktivieren Sie das Feature, und verwenden Sie absolute Pfade. Dies ist nützlich, wenn die Shell \"$CDPATH\" nicht nativ unterstützt.",
+ "suggest.cdPath.off": "Deaktivieren Sie das Feature.",
+ "suggest.cdPath.relative": "Aktivieren Sie das Feature, und verwenden Sie relative Pfade.",
+ "suggest.enabled": "Aktiviert IntelliSense-Terminalvorschläge (Vorschau) für unterstützte Shells ({0}), wenn {1} auf {2} festgelegt ist.",
+ "suggest.inlineSuggestion": "Steuert, ob der Inlinevorschlag der Shell erkannt werden soll und wie er bewertet wird.",
+ "suggest.inlineSuggestion.alwaysOnTop": "Aktivieren Sie das Feature, und platzieren Sie den Inlinevorschlag immer oben.",
+ "suggest.inlineSuggestion.alwaysOnTopExceptExactMatch": "Aktivieren Sie das Feature, und sortieren Sie den Inlinevorschlag, ohne ihn im Vordergrund zu erzwingen. Dies bedeutet, dass genaue Übereinstimmungen über dem Inlinevorschlag liegen.",
+ "suggest.inlineSuggestion.off": "Deaktivieren Sie das Feature.",
+ "suggest.insertTrailingSpace": "Legt fest, ob nach der Annahme eines Vorschlags automatisch ein Leerzeichen eingefügt und Vorschläge erneut ausgelöst werden. Bei Ordnern und Ordnern mit symbolischen Verknüpfungen wird nie ein nachgestelltes Leerzeichen hinzugefügt.",
+ "suggest.provider.lsp.description": "Zeigen Sie Vorschläge von Sprachservern an.",
+ "suggest.provider.title": "Vorschläge von {0} anzeigen.",
+ "suggest.providers": "Anbieter sind standardmäßig aktiviert. Lassen Sie sie aus, indem Sie die ID des Anbieters auf FALSE festlegen.",
+ "suggest.providersEnabledByDefault": "Legt fest, welche Vorschläge während der Eingabe automatisch angezeigt werden. Vorschlagsanbieter sind standardmäßig aktiviert.",
+ "suggest.quickSuggestions": "Steuert, ob Vorschläge während des Tippens automatisch angezeigt werden sollen. Beachten Sie auch die {0}-Einstellung, die steuert, ob Vorschläge durch Sonderzeichen ausgelöst werden.",
+ "suggest.quickSuggestions.arguments": "Schnelle Vorschläge für Argumente aktivieren, alles nach dem ersten Wort in einer Befehlszeileneingabe.",
+ "suggest.quickSuggestions.commands": "Schnelle Vorschläge für Befehle aktivieren, das erste Wort in einer Befehlszeileneingabe.",
+ "suggest.quickSuggestions.unknown": "Aktivieren Sie schnelle Vorschläge, wenn unklar ist, was der beste Vorschlag ist, wenn dies für Dateien und Ordner gilt, die als Fallback vorgeschlagen werden.",
+ "suggest.runOnEnter": "Steuert, ob Vorschläge sofort ausgeführt werden sollen, wenn die EINGABETASTE (nicht TABULATOR) verwendet wird, um das Ergebnis zu akzeptieren.",
+ "suggest.showStatusBar": "Steuert, ob die Terminalvorschläge status Leiste angezeigt werden sollen.",
+ "suggest.suggestOnTriggerCharacters": "Steuert, ob Vorschläge automatisch angezeigt werden sollen, wenn Triggerzeichen eingegeben werden.",
+ "suggest.upArrowNavigatesHistory": "Bestimmt, ob die Pfeiltaste nach oben im Befehlsverlauf navigiert, wenn der Fokus auf dem ersten Vorschlag liegt und die Navigation noch nicht erfolgt ist. Wenn auf falsch gesetzt, verschiebt der Pfeil nach oben den Fokus stattdessen auf den letzten Vorschlag.",
+ "terminal.integrated.selectionMode": "Steuert, wie die Vorschlagsauswahl im integrierten Terminal funktioniert.",
+ "terminal.integrated.selectionMode.always": "Wählen Sie immer einen Vorschlag aus, wenn IntelliSense automatisch ausgelöst wird. „Eingabe“ oder „Tab“ können verwendet werden, um den ersten Vorschlag zu akzeptieren.",
+ "terminal.integrated.selectionMode.never": "Wählen Sie niemals einen Vorschlag aus, wenn IntelliSense automatisch ausgelöst wird. Die Liste muss über „Nach unten“ navigiert werden, bevor „Eingabe“ oder „Tab“ verwendet werden kann, um den aktiven Vorschlag zu akzeptieren.",
+ "terminal.integrated.selectionMode.partial": "Wählen Sie beim automatischen Auslösen von IntelliSense teilweise einen Vorschlag aus. „Tab“ kann verwendet werden, um den ersten Vorschlag anzunehmen. Erst nach dem Navigieren in den Vorschlägen über „Nach unten“ akzeptiert „Eingabe“ auch den aktiven Vorschlag.",
+ "terminalSuggestProvidersConfigurationTitle": "Terminalanbieter vorschlagen",
+ "terminalWindowsExecutableSuggestionSetting": "Eine Reihe ausführbarer Erweiterungen für Windows-Befehle, die als Vorschläge im Terminal enthalten sind.\r\n\r\nViele ausführbare Dateien sind standardmäßig enthalten. Nachfolgend aufgeführt:\r\n\r\n{0}.\r\n\r\nUm eine Erweiterung auszuschließen, legen Sie sie auf \"false\" fest.\r\n\r\n. Um eine Nichtliste einzuschließen, fügen Sie sie hinzu, und legen Sie sie auf \"true\" fest."
+ },
+ "vs/workbench/contrib/terminalContrib/typeAhead/common/terminalTypeAheadConfiguration": {
+ "terminal.integrated.localEchoEnabled": "Wenn lokales Echo aktiviert werden soll. Dadurch wird {0} überschrieben.",
+ "terminal.integrated.localEchoEnabled.auto": "Aktiviert nur für Remotearbeitsbereiche",
+ "terminal.integrated.localEchoEnabled.off": "Immer deaktiviert",
+ "terminal.integrated.localEchoEnabled.on": "Immer aktiviert",
+ "terminal.integrated.localEchoExcludePrograms": "Lokales Echo wird deaktiviert, wenn mindestens einer dieser Programmnamen im Terminaltitel gefunden wird.",
+ "terminal.integrated.localEchoLatencyThreshold": "Länge der Netzwerkverzögerung in Millisekunden, mit der lokale Bearbeitungen auf dem Terminal ausgegeben werden, ohne auf Serverbestätigung zu warten. Bei \"0\" ist die lokale Ausgabe immer aktiviert, bei \"-1\" wird sie deaktiviert.",
+ "terminal.integrated.localEchoStyle": "Endstil von lokal ausgegebenem Text, entweder ein Schriftschnitt oder eine RGB-Farbe."
+ },
+ "vs/workbench/contrib/terminalContrib/voice/browser/terminalVoice": {
+ "terminalVoiceTextInserted": "{0} eingefügt"
+ },
+ "vs/workbench/contrib/terminalContrib/voice/browser/terminalVoiceActions": {
+ "enableExtension": "Erweiterung aktivieren",
+ "installExtension": "Erweiterung installieren",
+ "terminal.voice.detail": "Die Mikrofonunterstützung erfordert diese Erweiterung.",
+ "terminal.voice.enableSpeechExtension": "Möchten Sie die Spracherweiterung aktivieren?",
+ "terminal.voice.installSpeechExtension": "Möchten Sie die Erweiterung „VS Code Speech“ von Microsoft installieren?",
+ "workbench.action.terminal.startDictation": "Diktat im Terminal starten",
+ "workbench.action.terminal.stopDictation": "Diktat im Terminal beenden"
+ },
+ "vs/workbench/contrib/terminalContrib/wslRecommendation/browser/terminal.wslRecommendation.contribution": {
+ "install": "Installieren",
+ "useWslExtension.title": "Die Erweiterung \"{0}\" wird zum Öffnen eines Terminals in WSL empfohlen."
+ },
+ "vs/workbench/contrib/terminalContrib/zoom/browser/terminal.zoom.contribution": {
+ "fontZoomIn": "Schriftgrad vergrößern",
+ "fontZoomOut": "Schriftgrad verkleinern",
+ "fontZoomReset": "Schriftgrad zurücksetzen"
+ },
+ "vs/workbench/contrib/terminalContrib/zoom/common/terminal.zoom": {
+ "terminal.integrated.mouseWheelZoom": "Schriftart des Terminals vergrößern, wenn das Mausrad verwendet und STRG gedrückt wird.",
+ "terminal.integrated.mouseWheelZoom.mac": "Schriftart des Terminals vergrößern, wenn das Mausrad verwendet und \"Cmd\" gedrückt wird."
+ },
+ "vs/workbench/contrib/testing/browser/codeCoverageDecorations": {
+ "coverage.branchCovered": "Branch- {0} in {1} wurde {2} mal ausgeführt.",
+ "coverage.branchCoveredYes": "Branch „{0}“ in „{1}“ ausgeführt wurde.",
+ "coverage.branchNotCovered": "Der Branch {0} in {1} wurde nicht abgedeckt.",
+ "coverage.branches": "{0} von {1} Verzweigungen in {2} wurden abgedeckt.",
+ "coverage.declExecutedCount": "„{0}“ wurde {1} Mal ausgeführt.",
+ "coverage.declExecutedNo": "„{0}“ wurde nicht ausgeführt.",
+ "coverage.declExecutedYes": "„{0}“ wurde ausgeführt.",
+ "coverage.hideInline": "Inlineabdeckung ausblenden",
+ "coverage.toggleInline": "Inlineabdeckung umschalten",
+ "testing.coverageForTestAvailable": "{0} Test(s) hat/haben Code in dieser Datei ausgeführt.",
+ "testing.filterActionLabel": "Abdeckung auf Test filtern",
+ "testing.goToNextMissedLine": "Zur nächsten nicht abgedeckten Zeile wechseln",
+ "testing.goToNextMissedLineDesc": "Zur nächsten Zeile navigieren, die nicht durch Tests abgedeckt ist.",
+ "testing.goToPreviousMissedLine": "Zur vorherigen ungedeckten Linie wechseln",
+ "testing.goToPreviousMissedLineDesc": "Zur vorherigen Zeile navigieren, die nicht durch Tests abgedeckt ist.",
+ "testing.hideCoverageInExplorer": "Abdeckung im Explorer ausblenden",
+ "testing.hideInlineCoverage": "Inlineabdeckung ausblenden",
+ "testing.rerun": "Erneut ausführen",
+ "testing.showInlineCoverage": "Inlineabdeckung anzeigen",
+ "testing.toggleCoverageInExplorerDesc": "Schalten Sie die Anzeige der Testabdeckung in der Datei-Explorer-Ansicht um.",
+ "testing.toggleCoverageInExplorerTitle": "Abdeckung im Explorer umschalten",
+ "testing.toggleInlineCoverage": "Inline umschalten",
+ "testing.toggleToolbarDesc": "Hiermit wird die Einrastfunktionsleiste für die Abdeckung im Editor umgeschaltet.",
+ "testing.toggleToolbarTitle": "Abdeckungssymbolleiste testen"
+ },
+ "vs/workbench/contrib/testing/browser/codeCoverageDisplayUtils": {
+ "changePerTestFilter": "Klicken Sie, um die Abdeckung für einen einzelnen Test anzuzeigen.",
+ "testing.allTests": "Alle Tests",
+ "testing.coverageForTest": "\"{0}\" wird angezeigt",
+ "testing.percentCoverage": "{0} Abdeckung",
+ "testing.pickTest": "Wählen Sie einen Test aus, für den die Abdeckung angezeigt werden soll."
+ },
"vs/workbench/contrib/testing/browser/icons": {
"filterIcon": "Symbol für die Aktion \"Filtern\" in der Testansicht.",
"hiddenIcon": "Das Symbol, das neben ausgeblendeten Tests angezeigt wird, wenn sie eingeblendet wurden.",
"testViewIcon": "Ansichtssymbol der Testansicht.",
"testingCancelIcon": "Symbol zum Abbrechen von Testläufen",
"testingCancelRefreshTests": "Symbol auf der Schaltfläche, um das Aktualisieren von Tests abzubrechen.",
+ "testingCoverage": "Symbol, das die Testabdeckung darstellt",
+ "testingCoverageIcon": "Symbol der Aktion „Test mit Abdeckung ausführen“.",
"testingDebugAllIcon": "Symbol für die Aktion „Alle Tests debuggen“.",
"testingDebugIcon": "Symbol für die Aktion \"Test debuggen\"",
"testingErrorIcon": "Symbol für Tests mit Fehler",
"testingFailedIcon": "Symbol für fehlerhafte Tests",
+ "testingMissingBranch": "Symbol, das einen nicht abgedeckten Block ohne Bereich darstellt",
"testingPassedIcon": "Symbol für erfolgreiche Tests",
"testingQueuedIcon": "Symbol für in die Warteschlange eingereihte Tests",
"testingRefreshTests": "Symbol auf der Schaltfläche zum Aktualisieren von Tests.",
+ "testingRerunIcon": "Symbol der Aktion \"Tests erneut ausführen\".",
+ "testingResultsIcon": "Symbole für Testergebnisse.",
"testingRunAllIcon": "Symbol für die Aktion \"Alle Tests ausführen\"",
+ "testingRunAllWithCoverageIcon": "Symbol der Aktion „Alle Tests mit Abdeckung ausführen“.",
"testingRunIcon": "Symbol für die Aktion \"Test ausführen\"",
"testingShowAsList": "Symbol, wenn der Test-Explorer als Struktur deaktiviert ist.",
"testingShowAsTree": "Symbol, wenn der Test-Explorer als Liste deaktiviert ist",
"testingSkippedIcon": "Symbol für übersprungene Tests",
+ "testingTurnContinuousRunIsOn": "Symbol, wenn Kontinuierliche Ausführung für ein Testelement aktiviert ist.",
+ "testingTurnContinuousRunOff": "Symbol zum Deaktivieren kontinuierlicher Testläufe.",
+ "testingTurnContinuousRunOn": "Symbol zum Aktivieren kontinuierlicher Testläufe.",
"testingUnsetIcon": "Symbol für Tests in einem nicht festgelegten Zustand",
- "testingUpdateProfiles": "Das Symbol, das zum Aktualisieren der Testprofile angezeigt wird."
+ "testingUpdateProfiles": "Das Symbol, das zum Aktualisieren der Testprofile angezeigt wird.",
+ "testingWasCovered": "Symbol, das darstellt, dass ein Element abgedeckt wurde"
+ },
+ "vs/workbench/contrib/testing/browser/testCoverageBars": {
+ "branchCoverage": "{0}/{1} abgedeckte Branches ({2})",
+ "functionCoverage": "{0}/{1} abgedeckte Funktionen ({2})",
+ "statementCoverage": "{0}/{1} abgedeckte Anweisungen ({2})"
+ },
+ "vs/workbench/contrib/testing/browser/testCoverageView": {
+ "filteredToTest": "Abdeckung für \"{0}\" wird angezeigt",
+ "functionsWithoutCoverage": "{0} Deklarationen ohne Abdeckung...",
+ "loadingCoverageDetails": "Abdeckungsdetails werden geladen...",
+ "testCoverageItemLabel": "{0} Abdeckung: {0} %",
+ "testCoverageTreeLabel": "Testabdeckungs-Explorer",
+ "testing.changeCoverageFilter": "Abdeckung nach Test filtern",
+ "testing.changeCoverageSort": "Sortierreihenfolge ändern",
+ "testing.coverageCollapseAll": "Alle Abdeckung reduzieren",
+ "testing.coverageSortByCoverage": "Nach Abdeckung sortieren",
+ "testing.coverageSortByCoverageDescription": "Dateien und Deklarationen werden nach Gesamtabdeckung sortiert.",
+ "testing.coverageSortByLocation": "Nach Speicherort sortieren",
+ "testing.coverageSortByLocationDescription": "Dateien werden alphabetisch, und Deklarationen nach Position sortiert.",
+ "testing.coverageSortByName": "Nach Namen sortieren",
+ "testing.coverageSortByNameDescription": "Dateien und Deklarationen werden alphabetisch sortiert.",
+ "testing.coverageSortPlaceholder": "Ansicht „Testabdeckung sortieren“..."
},
"vs/workbench/contrib/testing/browser/testExplorerActions": {
"configureProfile": "Wählen Sie ein zu aktualisierendes Profil aus",
+ "coverageSelectedTests": "Tests mit Abdeckung ausführen",
"debug test": "Test debuggen",
"debugAllTests": "Alle Tests debuggen",
"debugSelectedTests": "Tests debuggen",
"discoveringTests": "Tests werden ermittelt.",
+ "getExplorerSelection": "Explorer-Auswahl abrufen",
+ "getSelectedProfiles": "Ausgewählte Profile abrufen",
"hideTest": "Test ausblenden",
+ "noCoverageTestProvider": "In diesem Arbeitsbereich wurden keine Tests mit Abdeckungsausführungen gefunden. Möglicherweise müssen Sie eine Erweiterung des Testanbieters installieren.",
"noDebugTestProvider": "In diesem Arbeitsbereich wurden keine debugfähigen Tests gefunden. Möglicherweise müssen Sie eine Erweiterung des Testanbieters installieren.",
+ "noRelatedCode": "Es wurde kein zugehöriger Code gefunden.",
+ "noTestFound": "Es wurden keine zugehörigen Tests gefunden.",
"noTestProvider": "In diesem Arbeitsbereich wurden keine Tests gefunden. Möglicherweise müssen Sie eine Erweiterung des Testanbieters installieren.",
+ "noTests": "In der ausgewählten Datei oder im ausgewählten Ordner wurden keine Tests gefunden.",
+ "noTestsAtCursor": "Hier wurden keine Tests gefunden",
+ "noTestsInFile": "In dieser Datei wurden keine Tests gefunden",
+ "relatedCode": "Zugehöriger Code",
+ "relatedTests": "Zugehörige Tests",
"run test": "Test ausführen",
+ "run with cover test": "Test mit Abdeckung ausführen",
"runAllTests": "Alle Tests ausführen",
+ "runAllWithCoverage": "Alle Tests mit Abdeckung ausführen",
"runSelectedTests": "Tests ausführen",
"testing.cancelRun": "Testlauf abbrechen",
"testing.cancelTestRefresh": "Testaktualisierung abbrechen",
+ "testing.clearCoverage": "Abdeckung löschen",
"testing.clearResults": "Alle Ergebnisse löschen",
"testing.collapseAll": "Alle Tests reduzieren",
"testing.configureProfile": "Testprofile konfigurieren",
+ "testing.coverageAtCursor": "Tests am Cursor mit Abdeckung ausführen",
+ "testing.coverageCurrentFile": "Tests mit Abdeckung in der aktuellen Datei ausführen",
+ "testing.coverageLastRun": "Letzte Ausführung mit Abdeckung erneut ausführen",
"testing.debugAtCursor": "Test bei Cursor debuggen",
"testing.debugCurrentFile": "Tests in aktueller Datei debuggen",
"testing.debugFailTests": "Fehlerhafte Tests debuggen",
+ "testing.debugFailedFromLastRun": "Fehlerhafte Tests der letzten Ausführung debuggen",
"testing.debugLastRun": "Letzte Ausführung debuggen",
"testing.editFocusedTest": "Zu Test wechseln",
+ "testing.goToRelatedCode": "Zum zugehörigen Code wechseln",
+ "testing.goToRelatedTest": "Zum zugehörigen Test wechseln",
+ "testing.noCoverage": "Für den letzten Testlauf sind keine Abdeckungsinformationen verfügbar.",
+ "testing.noProfiles": "Es wurden keine für den kontinuierlichen Testlauf aktivierten Profile gefunden.",
+ "testing.openCoverage": "Abdeckung öffnen",
"testing.openOutputPeek": "Peek-Ausgabe",
+ "testing.peekToRelatedCode": "Zugehörigen Code einsehen",
+ "testing.peekToRelatedTest": "Zugehörigen Test einsehen",
"testing.reRunFailTests": "Fehlerhafte Tests erneut ausführen",
+ "testing.reRunFailedFromLastRun": "Fehlerhafte Tests der letzten Ausführung erneut ausführen",
"testing.reRunLastRun": "Letzte Ausführung erneut ausführen",
"testing.refreshTests": "Tests aktualisieren",
"testing.runAtCursor": "Test bei Cursor ausführen",
"testing.runCurrentFile": "Tests in aktueller Datei ausführen",
"testing.runUsing": "Mit Profil ausführen...",
"testing.searchForTestExtension": "Nach Testerweiterung suchen",
+ "testing.selectContinuousProfiles": "Wählen Sie Profile aus, die beim Ändern der Dateien ausgeführt werden sollen:",
"testing.selectDefaultTestProfiles": "Standardprofil auswählen",
"testing.showMostRecentOutput": "Ausgabe anzeigen",
"testing.sortByDuration": "Nach Dauer sortieren",
"testing.sortByLocation": "Nach Speicherort sortieren",
"testing.sortByStatus": "Nach Status sortieren",
+ "testing.startContinuous": "Kontinuierliche Ausführung starten",
+ "testing.startContinuousRunUsing": "Kontinuierliche Ausführung starten mit...",
+ "testing.stopContinuous": "Kontinuierliche Ausführung beenden",
+ "testing.toggleContinuousRunOff": "Kontinuierliche Ausführung deaktivieren",
+ "testing.toggleContinuousRunOn": "Kontinuierliche Ausführung aktivieren",
"testing.toggleInlineTestOutput": "Inline-Testausgabe umschalten",
+ "testing.toggleResultsViewLayout": "Position des Baums umschalten",
"testing.viewAsList": "Als Liste anzeigen",
"testing.viewAsTree": "Als Struktur anzeigen",
"unhideAllTests": "Alle Tests einblenden",
@@ -9434,9 +15657,11 @@
"vs/workbench/contrib/testing/browser/testing.contribution": {
"miViewTesting": "T&&esten",
"noTestProvidersRegistered": "In diesem Arbeitsbereich wurden noch keine Tests gefunden.",
- "searchForAdditionalTestExtensions": "Zusätzliche Texterweiterungen installieren...",
+ "searchForAdditionalTestExtensions": "Zusätzliche Testerweiterungen installieren...",
"test": "Test",
- "testExplorer": "Test-Explorer"
+ "testCoverage": "Testabdeckung",
+ "testExplorer": "Test-Explorer",
+ "testResultsPanelName": "Testergebnisse"
},
"vs/workbench/contrib/testing/browser/testingConfigurationUi": {
"testConfigurationUi.pick": "Wählen Sie ein zu verwendendes Testprofil aus",
@@ -9444,6 +15669,7 @@
},
"vs/workbench/contrib/testing/browser/testingDecorations": {
"actual.title": "Tatsächlich",
+ "coverage test": "Mit Abdeckung ausführen",
"debug all test": "Alle Tests debuggen",
"debug test": "Test debuggen",
"expected.title": "Erwartet",
@@ -9451,19 +15677,24 @@
"peekTestOutout": "Testausgabe einsehen",
"reveal test": "Im Test-Explorer anzeigen",
"run all test": "Alle Tests ausführen",
+ "run all test with coverage": "Alle Tests mit Abdeckung ausführen",
"run test": "Test ausführen",
+ "selectTestToRun": "Wählen Sie einen Test aus, der ausgeführt werden soll.",
+ "testOverflowItems": "{0} weitere Tests...",
+ "testing.cancelRun": "Testlauf abbrechen",
"testing.gutterMsg.contextMenu": "Für Testoptionen klicken",
+ "testing.gutterMsg.coverage": "Klicken Sie hier, um Tests mit Abdeckung auszuführen. Klicken Sie mit der rechten Maustaste, um weitere Optionen anzuzeigen.",
"testing.gutterMsg.debug": "Klicken, um Tests zu debuggen, Rechtsklick für weitere Optionen",
"testing.gutterMsg.run": "Klicken zum Ausführen von Tests, Rechtsklick für weitere Optionen",
"testing.runUsing": "Mit Profil ausführen..."
},
"vs/workbench/contrib/testing/browser/testingExplorerFilter": {
- "filter": "Filter",
"testExplorerFilter": "Filtern (z. B. Text, !exclude, @tag)",
"testExplorerFilterLabel": "Filtern von Text für Tests im Explorer",
"testing.filters.currentFile": "Nur in aktiver Datei anzeigen",
"testing.filters.fuzzyMatch": "Fuzzyübereinstimmung",
"testing.filters.menu": "Weitere Filter...",
+ "testing.filters.openedFiles": "Nur in geöffneten Dateien anzeigen",
"testing.filters.removeTestExclusions": "Alle Tests einblenden",
"testing.filters.showExcludedTests": "Ausgeblendete Tests anzeigen",
"testing.filters.showOnlyExecuted": "Nur ausgeführte Tests anzeigen",
@@ -9472,86 +15703,139 @@
"vs/workbench/contrib/testing/browser/testingExplorerView": {
"configureTestProfiles": "Testprofile konfigurieren",
"defaultTestProfile": "{0} (Standard)",
+ "noResults": "Es liegen noch keine Testergebnisse vor.",
"selectDefaultConfigs": "Standardprofil auswählen",
"testExplorer": "Test-Explorer",
"testing.treeElementLabelDuration": "{0}, in {1}",
+ "testing.treeElementLabelOutdated": "{0}, veraltetes Ergebnis",
+ "testingContinuousBadge": "Tests werden auf Änderungen überwacht",
+ "testingCountBadgeFailed": "{0} fehlerhafte Tests",
+ "testingCountBadgePassed": "{0} bestandene Tests",
+ "testingCountBadgeSkipped": "{0} übersprungene Tests",
"testingFindExtension": "Arbeitsbereichstests anzeigen",
- "testingNoTest": "In dieser Datei wurden keine Tests gefunden."
+ "testingNoTest": "In dieser Datei wurden keine Tests gefunden.",
+ "testingSelectConfig": "Konfiguration auswählen..."
},
"vs/workbench/contrib/testing/browser/testingOutputPeek": {
"close": "Schließen",
+ "testOutputTitle": "Testausgabe",
+ "testing.collapsePeekStack": "Stapelrahmen zuklappen",
+ "testing.goToNextMessage": "Zum nächsten Testfehler wechseln",
+ "testing.goToNextMessage.description": "Zeigt die nächste Fehlermeldung in Ihrer Datei an.",
+ "testing.goToPreviousMessage": "Zum vorherigen Testfehler wechseln",
+ "testing.goToPreviousMessage.description": "Zeigt die vorherige Fehlermeldung in Ihrer Datei an.",
+ "testing.markdownPeekError": "Markdownvorschau konnte nicht geöffnet werden: {0}.\r\n\r\nStellen Sie sicher, dass die Markdownerweiterung aktiviert ist.",
+ "testing.openMessageInEditor": "In Editor öffnen",
+ "testing.toggleTestingPeekHistory": "Testverlauf in der Einsicht umschalten",
+ "testing.toggleTestingPeekHistory.description": "Zeigt den Verlauf von Testläufen in der Vorschauansicht an oder blendet sie aus."
+ },
+ "vs/workbench/contrib/testing/browser/testingViewPaneContainer": {
+ "testing": "Test"
+ },
+ "vs/workbench/contrib/testing/browser/testResultsView/testResultsOutput": {
+ "caseNoOutput": "Der Testfall hat keine Ausgabe gemeldet.",
+ "runNoOutput": "Der Testlauf hat keine Ausgabe aufgezeichnet.",
+ "runNoOutputForPast": "Die Testausgabe ist nur für neue Testläufe verfügbar.",
+ "testingOutputActual": "Tatsächliches Ergebnis",
+ "testingOutputExpected": "Erwartetes Ergebnis"
+ },
+ "vs/workbench/contrib/testing/browser/testResultsView/testResultsTree": {
+ "closeTestCoverage": "Testabdeckung schließen",
"debug test": "Test debuggen",
"messageMoreLines1": "+ 1 weitere Zeile",
"messageMoreLinesN": "+ {0} weitere Zeilen",
+ "nOlderResults": "{0} ältere Ergebnisse",
+ "oneOlderResult": "1 älteres Ergebnis",
+ "openTestCoverage": "Testabdeckung anzeigen",
"run test": "Test ausführen",
- "testUnnamedTask": "Unbenannte Aufgabe",
- "testing.debugLastRun": "Testlauf debuggen",
- "testing.goToFile": "Zu Datei wechseln",
- "testing.goToNextMessage": "Zum nächsten Testfehler wechseln",
- "testing.goToPreviousMessage": "Zum vorherigen Testfehler wechseln",
- "testing.openMessageInEditor": "In Editor öffnen",
- "testing.reRunLastRun": "Testlauf erneut ausführen",
+ "testing.cancelRun": "Testlauf abbrechen",
+ "testing.debugFailedFromLastRun": "Fehlerhafte Tests debuggen",
+ "testing.debugLastRun": "Letzte Ausführung debuggen",
+ "testing.debugTest": "Debugtest",
+ "testing.goToError": "Zum Fehler wechseln",
+ "testing.goToTest": "Zu Test wechseln",
+ "testing.reRunFailedFromLastRun": "Fehlerhafte Tests erneut ausführen",
+ "testing.reRunLastRun": "Letzte Ausführung erneut ausführen",
+ "testing.reRunTest": "Test erneut ausführen",
"testing.revealInExplorer": "Im Test-Explorer anzeigen",
"testing.showResultOutput": "Ergebnisausgabe anzeigen",
- "testing.toggleTestingPeekHistory": "Testverlauf in der Einsicht umschalten",
- "testingOutputActual": "Tatsächliches Ergebnis",
- "testingOutputExpected": "Erwartetes Ergebnis",
"testingPeekLabel": "Testergebnismeldungen"
},
- "vs/workbench/contrib/testing/browser/testingOutputTerminalService": {
- "runFinished": "Testlauf am {0} beendet",
- "runNoOutout": "Der Testlauf hat keine Ausgabe aufgezeichnet.",
- "testNoRunYet": "\r\nEs wurden noch keine Tests ausgeführt.\r\n",
- "testOutputTerminalTitle": "Testausgabe",
- "testOutputTerminalTitleWithDate": "Testausgabe bei {0}"
- },
- "vs/workbench/contrib/testing/browser/testingProgressUiService": {
- "testProgress.completed": "{0}/{1} Tests bestanden ({2}%)",
- "testProgress.running": "Tests werden ausgeführt, {0}/{1} bestanden ({2} %)",
- "testProgress.runningInitial": "Tests werden ausgeführt...",
- "testProgressWithSkip.completed": "{0}/{1} Tests bestanden ({2} %, {3} übersprungen)",
- "testProgressWithSkip.running": "Tests werden ausgeführt, {0}/{1} Tests bestanden ({2} %, {3} übersprungen)"
- },
- "vs/workbench/contrib/testing/browser/testingViewPaneContainer": {
- "testing": "Test"
+ "vs/workbench/contrib/testing/browser/testResultsView/testResultsViewContent": {
+ "testFollowup.more": "+{0} Mehr...",
+ "testing.callStack.debug": "Test debuggen",
+ "testing.callStack.run": "Test erneut ausführen"
},
"vs/workbench/contrib/testing/browser/theme": {
+ "testing.coverCountBadgeBackground": "Hintergrund für den Badge, der die Ausführungsanzahl angibt",
+ "testing.coverCountBadgeForeground": "Vordergrund für den Badge, der die Ausführungsanzahl angibt",
+ "testing.coveredBackground": "Hintergrundfarbe des abgedeckten Texts.",
+ "testing.coveredBorder": "Rahmenfarbe des abgedeckten Texts.",
+ "testing.coveredGutterBackground": "Gutterfarbe von Regionen, in denen Code abgedeckt wurde.",
"testing.iconErrored": "Farbe für das Symbol \"Fehlerhaft\" im Test-Explorer",
+ "testing.iconErrored.retired": "Eingestellte Farbe für das Symbol „Fehlerhaft“ im Test-Explorer",
"testing.iconFailed": "Farbe für das Symbol \"Fehler\" im Test-Explorer",
+ "testing.iconFailed.retired": "Eingestellte Farbe für das Symbol „Fehler“ im Test-Explorer",
"testing.iconPassed": "Farbe für das Symbol \"Erfolgreich\" im Test-Explorer",
+ "testing.iconPassed.retired": "Eingestellte Farbe für das Symbol „Erfolgreich“ im Test-Explorer",
"testing.iconQueued": "Farbe für das Symbol \"In Warteschlange\" im Test-Explorer",
+ "testing.iconQueued.retired": "Eingestellte Farbe für das Symbol „In Warteschlange“ im Test-Explorer",
"testing.iconSkipped": "Farbe für das Symbol \"Übersprungen\" im Test-Explorer",
+ "testing.iconSkipped.retired": "Eingestellte Farbe für das Symbol „Übersprungen“ im Test-Explorer",
"testing.iconUnset": "Farbe für das Symbol \"Nicht festgelegt\" im Test-Explorer.",
- "testing.message.error.decorationForeground": "Die Textfarbe von Testfehlermeldungen, die inline im Editor angezeigt werden.",
+ "testing.iconUnset.retired": "Eingestellte Farbe für das Symbol „Nicht festgelegt“ im Test-Explorer.",
+ "testing.message.error.badgeBackground": "Die Hintergrundfarbe von Testfehlermeldungen, die inline im Editor angezeigt werden.",
+ "testing.message.error.badgeBorder": "Die Rahmenfarbe von Testfehlermeldungen, die inline im Editor angezeigt werden.",
+ "testing.message.error.badgeForeground": "Die Textfarbe von Testfehlermeldungen, die inline im Editor angezeigt werden.",
"testing.message.error.marginBackground": "Die Randfarbe neben Testfehlermeldungen, die inline im Editor angezeigt werden.",
"testing.message.info.decorationForeground": "Die Textfarbe von Testinfomeldungen, die inline im Editor angezeigt werden.",
"testing.message.info.marginBackground": "Die Randfarbe neben Testinfomeldungen, die inline im Editor angezeigt werden.",
+ "testing.messagePeekBorder": "Farbe der Rahmen und Pfeile der Vorschauansicht beim Einsehen einer protokollierten Nachricht.",
+ "testing.messagePeekHeaderBackground": "Farbe der Rahmen und Pfeile der Vorschauansicht beim Einsehen einer protokollierten Nachricht.",
"testing.peekBorder": "Farbe der Peek-Ansichtsränder und des Pfeils.",
- "testing.runAction": "Farbe für das Symbol \"Ausführen\" im Editor"
+ "testing.runAction": "Farbe für das Symbol \"Ausführen\" im Editor",
+ "testing.uncoveredBackground": "Hintergrundfarbe von Text, der nicht abgedeckt wurde.",
+ "testing.uncoveredBorder": "Rahmenfarbe von Text, der nicht abgedeckt wurde.",
+ "testing.uncoveredBranchBackground": "Hintergrund des Widgets, das für einen nicht abgedeckten Branch angezeigt wird.",
+ "testing.uncoveredGutterBackground": "Gutterfarbe von Regionen, in denen Code nicht abgedeckt wurde."
},
"vs/workbench/contrib/testing/common/configuration": {
"testConfigurationTitle": "Test",
- "testing.alwaysRevealTestOnStateChange": "Zeigen Sie den ausgeführten Test immer an, wenn \"#testing.followRunningTest#\" aktiviert ist. Wenn diese Einstellung deaktiviert ist, werden nur fehlgeschlagene Tests angezeigt.",
- "testing.autoRun.delay": "Die Wartezeit in Millisekunden, nach der ein Test als veraltet markiert und eine neue Ausführung gestartet wird.",
- "testing.autoRun.mode": "Steuert, welche Tests automatisch ausgeführt werden.",
- "testing.autoRun.mode.allInWorkspace": "Führt automatisch alle ermittelten Tests aus, wenn die automatische Ausführung aktiviert ist. Führt einzelne Tests erneut aus, wenn diese geändert werden.",
- "testing.autoRun.mode.onlyPreviouslyRun": "Führt einzelne Tests erneut aus, wenn diese geändert werden. Noch nicht ausgeführte Tests werden nicht ausgeführt.",
+ "testing.ShowCoverageInExplorer": "Gibt an, ob die Testabdeckung in der Datei-Explorer-Ansicht nicht verfügbar sein soll.",
+ "testing.alwaysRevealTestOnStateChange": "Zeigen Sie den ausgeführten Test immer an, wenn {0} aktiviert ist. Wenn diese Einstellung deaktiviert ist, werden nur fehlgeschlagene Tests angezeigt.",
"testing.automaticallyOpenPeekView": "Konfiguriert, wann die Vorschauansicht für Fehler automatisch geöffnet wird.",
"testing.automaticallyOpenPeekView.failureAnywhere": "Unabhängig vom Bereich des Fehlers automatisch öffnen.",
"testing.automaticallyOpenPeekView.failureInVisibleDocument": "Automatisch öffnen, wenn ein Testfehler in einem sichtbaren Dokument auftritt.",
"testing.automaticallyOpenPeekView.never": "Niemals automatisch öffnen.",
- "testing.automaticallyOpenPeekViewDuringAutoRun": "Steuert, ob die Vorschauansicht im Modus \"AutoAusführen\" automatisch geöffnet wird.",
+ "testing.automaticallyOpenPeekViewDuringContinuousRun": "Steuert, ob die Vorschauansicht im kontinuierlichen Ausführungsmodus automatisch geöffnet wird.",
+ "testing.countBadge": "Steuert den Anzahlbadge auf dem Symbol \"Testen\" in der Aktivitätsleiste.",
+ "testing.countBadge.failed": "Anzahl fehlerhafter Tests anzeigen",
+ "testing.countBadge.off": "Badge \"Testanzahl\" deaktivieren",
+ "testing.countBadge.passed": "Anzahl der erfolgreichen Tests anzeigen",
+ "testing.countBadge.skipped": "Anzahl übersprungener Tests anzeigen",
+ "testing.coverageBarThresholds": "Konfiguriert die Farben, die für Prozentsätze in Testabdeckungsleisten verwendet werden.",
+ "testing.coverageToolbarEnabled": "Steuert, ob die Abdeckungssymbolleiste im Editor angezeigt wird.",
"testing.defaultGutterClickAction": "Steuert die Aktion, die beim Linksklick auf eine Testdekoration im Bundsteg ausgeführt wird.",
"testing.defaultGutterClickAction.contextMenu": "Öffnen Sie das Kontextmenü, um weitere Optionen anzuzeigen.",
+ "testing.defaultGutterClickAction.coverage": "Den Test mit Abdeckung ausführen.",
"testing.defaultGutterClickAction.debug": "Debuggen Sie den Test.",
"testing.defaultGutterClickAction.run": "Führen Sie den Test aus.",
- "testing.followRunningTest": "Steuert, ob der ausgeführte Test in der Test-Explorer-Ansicht befolgt werden soll",
+ "testing.displayedCoveragePercent": "Konfiguriert, welcher Prozentsatz für die Testabdeckung standardmäßig angezeigt wird.",
+ "testing.displayedCoveragePercent.minimum": "Das Minimum an Anweisungs-, Funktions- und Branchabdeckung.",
+ "testing.displayedCoveragePercent.statement": "Die Anweisungsabdeckung.",
+ "testing.displayedCoveragePercent.totalCoverage": "Eine Berechnung der kombinierten Anweisung, Funktion und Branchabdeckung.",
+ "testing.followRunningTest": "Steuert, ob der ausgeführte Test in der Test-Explorer-Ansicht befolgt werden soll.",
"testing.gutterEnabled": "Steuert, ob Testdekorationen im Editor-Bundsteg angezeigt werden.",
"testing.openTesting": "Steuert, wann die Testansicht geöffnet werden soll.",
- "testing.openTesting.neverOpen": "Die Testansicht nie automatisch öffnen",
- "testing.openTesting.openOnTestFailure": "Öffnen der Testansicht bei Testfehlern",
- "testing.openTesting.openOnTestStart": "Öffnen der Testansicht beim Starten von Tests",
- "testing.saveBeforeTest": "Steuern Sie, ob alle modifizierten Editoren gespeichert werden, bevor Sie einen Test ausführen."
+ "testing.openTesting.neverOpen": "Testansicht nie automatisch öffnen",
+ "testing.openTesting.openExplorerOnTestStart": "Test-Explorer beim Start von Tests öffnen",
+ "testing.openTesting.openOnTestFailure": "Fenster \"Testergebnisse\" bei einem Testfehler öffnen",
+ "testing.openTesting.openOnTestStart": "Fenster \"Testergebnisse\" beim Start des Tests öffnen",
+ "testing.resultsView.layout": "Steuert das Layout der Ansicht „Testergebnisse“.",
+ "testing.resultsView.layout.treeLeft": "Die Testlaufstruktur links anzeigen und die Details rechts.",
+ "testing.resultsView.layout.treeRight": "Die Testlaufstruktur rechts anzeigen und die Details links.",
+ "testing.saveBeforeTest": "Steuern Sie, ob alle modifizierten Editoren gespeichert werden, bevor Sie einen Test ausführen.",
+ "testing.showAllMessages": "Steuert, ob Nachrichten aus allen Testläufen angezeigt werden."
},
"vs/workbench/contrib/testing/common/constants": {
"testGroup.coverage": "Abdeckung",
@@ -9566,65 +15850,123 @@
"testState.unset": "Noch nicht ausgeführt",
"testing.treeElementLabel": "{0} ({1})"
},
- "vs/workbench/contrib/testing/common/testResult": {
- "runFinished": "Testlauf bei {0}"
- },
- "vs/workbench/contrib/testing/common/testServiceImpl": {
- "testError": "Fehler beim Ausführen von Tests: {0}",
- "testTrust": "Durch Ausführen von Tests kann Code in Ihrem Arbeitsbereich ausgeführt werden."
+ "vs/workbench/contrib/testing/common/testingChatAgentTool": {
+ "runTestTool.confirm.all": "Das Modell möchte alle Tests ausführen.",
+ "runTestTool.confirm.invocation": "Tests werden ausgeführt...",
+ "runTestTool.confirm.message": "Das Modell möchte Tests in {0} ausführen.",
+ "runTestTool.confirm.title": "Testlauf zulassen?",
+ "runTestTool.invoke.cancelled": "Testlauf wurde abgebrochen.",
+ "runTestTool.invoke.filesProgress": "Tests werden ermittelt...",
+ "runTestTool.invoke.filterProgress": "Tests werden gefiltert...",
+ "runTestTool.invoke.progress": "Testlauf wird gestartet...",
+ "runTestTool.noRunStarted": "Es wurde kein Testlauf gestartet. Dies kann ein Problem mit Ihrem Test Runner oder Ihrer Erweiterung sein.",
+ "runTestTool.noTests": "In den Dateien wurden keine Tests gefunden.",
+ "runTestTool.userDescription": "Run unit tests (optionally with coverage)"
+ },
+ "vs/workbench/contrib/testing/common/testingContentProvider": {
+ "runNoOutout": "Der Testlauf hat keine Ausgabe aufgezeichnet."
},
"vs/workbench/contrib/testing/common/testingContextKeys": {
+ "testing.activeEditorHasTests": "Gibt an, ob im aktuellen Editor Tests vorhanden sind",
+ "testing.canGoToRelatedCode": "Gibt an, ob ein Controller eine Funktion zum Suchen von Code im Zusammenhang mit einem Test implementiert.",
+ "testing.canGoToRelatedTest": "Gibt an, ob ein Controller eine Funktion zum Suchen von Tests im Zusammenhang mit Code implementiert.",
"testing.canRefresh": "Gibt an, ob ein Testcontroller über einen angefügten Aktualisierungshandler verfügt.",
"testing.controllerId": "Controller-ID des aktuellen Testelements",
+ "testing.coverageToolbarEnabled": "Gibt an, ob die Abdeckungssymbolleiste aktiviert ist",
+ "testing.cursorInsideTestRange": "Gibt an, ob sich der Cursor zurzeit innerhalb eines Testbereichs befindet.",
"testing.hasConfigurableConfig": "Gibt an, ob eine Testkonfiguration konfiguriert werden kann",
"testing.hasCoverableTests": "Gibt an, ob ein Testcontroller eine Abdeckungskonfiguration registriert hat",
+ "testing.hasCoverageInFile": "Zeigt an, dass die Abdeckung im aktuellen Editor gemeldet wurde.",
"testing.hasDebuggableTests": "Gibt an, ob ein Testcontroller eine Debugkonfiguration registriert hat",
+ "testing.hasInlineCoverageDetails": "Gibt an, ob eine detaillierte Pro-Zeile-Abdeckung für die Inlineanzeige verfügbar ist.",
"testing.hasNonDefaultConfig": "Gibt an, ob ein Testcontroller eine nicht standardmäßige Konfiguration registriert hat",
+ "testing.hasPerTestCoverage": "Gibt an, ob eine Testabdeckung verfügbar ist",
"testing.hasRunnableTests": "Gibt an, ob ein Testcontroller eine Laufzeitkonfiguration registriert hat",
+ "testing.inlineCoverageEnabled": "Gibt an, ob Inlineabdeckung angezeigt wird.",
+ "testing.isContinuousModeOn": "Gibt an, ob der kontinuierliche Testmodus aktiviert ist.",
+ "testing.isCoverageFilteredToTest": "Gibt an, ob die Abdeckung nach einem einzigen Test gefiltert wurde",
+ "testing.isParentRunningContinuously": "Gibt an, ob das übergeordnete Element eines Tests fortlaufend ausgeführt wird. Ist im Menükontext von Testelementen festgelegt.",
"testing.isRefreshing": "Gibt an, ob ein Testcontroller derzeit Tests aktualisiert.",
+ "testing.isTestCoverageOpen": "Gibt an, ob ein Bericht zur Testabdeckung geöffnet ist.",
+ "testing.peekHasStack": "Gibt an, ob die in einer Vorschauansicht angezeigte Nachricht eine Stapelüberwachung aufweist.",
"testing.peekItemType": "Typ des Elements in der Ausgabevorschauansicht. Entweder ein \"Test\", eine \"Nachricht\", eine \"Aufgabe\" oder ein \"Ergebnis\".",
+ "testing.profile.context.group": "Typ des Menüs, in dem das Untermenü zum Konfigurieren des Testprofils vorhanden ist. Entweder “Ausführen“, „Debuggen“ oder „Abdeckung“",
+ "testing.supportsContinuousRun": "Gibt an, ob kontinuierliche Testläufe unterstützt werden.",
"testing.testId": "Die ID des aktuellen Testelements, die beim Erstellen oder Öffnen von Menüs für Testelemente festgelegt wird.",
"testing.testItemHasUri": "Boolescher Wert, der angibt, ob für das Testelement ein URI definiert ist",
- "testing.testItemIsHidden": "Boolescher Wert, der angibt, ob das Testelement ausgeblendet ist"
+ "testing.testItemIsHidden": "Boolescher Wert, der angibt, ob das Testelement ausgeblendet ist",
+ "testing.testMessage": "Wert in \"testMessage.contextValue\" festgelegt, verfügbar in \"editor/content\" und \"testing/message/context\".",
+ "testing.testResultOutdated": "In \"editor/content\" und \"testing/message/context\"verfügbarer Wert, wenn das Ergebnis veraltet ist.",
+ "testing.testResultState": "Verfügbarer Wert für Tests/Element/Ergebnis, der den Zustand des Elements angibt."
+ },
+ "vs/workbench/contrib/testing/common/testingProgressMessages": {
+ "testProgress.completed": "{0}/{1} Tests bestanden ({2}%)",
+ "testProgress.running": "Tests werden ausgeführt, {0}/{1} bestanden ({2} %)",
+ "testProgress.runningInitial": "Tests werden ausgeführt...",
+ "testProgressWithSkip.completed": "{0}/{1} Tests bestanden ({2} %, {3} übersprungen)",
+ "testProgressWithSkip.running": "Tests werden ausgeführt, {0}/{1} Tests bestanden ({2} %, {3} übersprungen)"
+ },
+ "vs/workbench/contrib/testing/common/testResult": {
+ "runFinished": "Testlauf bei {0}",
+ "testUnnamedTask": "Unbenannte Aufgabe"
+ },
+ "vs/workbench/contrib/testing/common/testServiceImpl": {
+ "testError": "Fehler beim Ausführen von Tests: {0}",
+ "testTrust": "Durch Ausführen von Tests kann Code in Ihrem Arbeitsbereich ausgeführt werden."
+ },
+ "vs/workbench/contrib/testing/common/testTypes": {
+ "testing.runProfileBitset.coverage": "Abdeckung",
+ "testing.runProfileBitset.debug": "Debuggen",
+ "testing.runProfileBitset.run": "Ausführen"
},
"vs/workbench/contrib/themes/browser/themes.contribution": {
+ "browseColorThemeInMarketPlace.label": "Farbdesigns im Marketplace durchsuchen",
"browseColorThemes": "Zusätzliche Farbdesigns durchsuchen...",
"browseProductIconThemes": "Zusätzliche Produktsymboldesigns durchsuchen...",
+ "cannotToggle": "Zwischen hellen und dunklen Designs kann nicht umgeschaltet werden, wenn \"{0}\" in den Einstellungen aktiviert ist.",
"defaultProductIconThemeLabel": "Standard",
"fileIconThemeCategory": "Dateisymboldesigns",
"generateColorTheme.label": "Farbdesign aus aktuellen Einstellungen erstellen",
+ "goToSetting": "Einstellungen öffnen",
"installColorThemes": "Zusätzliche Farbschemas installieren...",
+ "installExtension.button.ok": "OK",
+ "installExtension.confirm": "Dadurch wird die Erweiterung \"{0}\" installiert, die von \"{1}\" veröffentlicht wurde. Möchten Sie den Vorgang fortsetzen?",
"installIconThemes": "Zusätzliche Dateisymbolschemas installieren...",
"installProductIconThemes": "Zusätzliche Produktsymboldesigns installieren...",
"installing extensions": "Erweiterung {0} wird installiert...",
"manage extension": "Erweiterung verwalten",
"manageExtensionIcon": "Symbol für die Aktion „Verwalten“ in der Schnellauswahl der Designauswahl.",
- "miSelectColorTheme": "&&Farbschema",
- "miSelectIconTheme": "&&Dateisymboldesign",
- "miSelectProductIconTheme": "&&Produktsymboldesign",
+ "miSelectTheme": "&&Designs",
"noIconThemeDesc": "Dateisymbole deaktivieren",
"noIconThemeLabel": "NONE",
"productIconThemeCategory": "Produktsymboldesigns",
+ "search.error": "Fehler bei der Suche nach Designs: {0}",
"selectIconTheme.label": "Dateisymboldesign",
"selectProductIconTheme.label": "Produktsymboldesign",
"selectTheme.label": "Farbdesign",
+ "themes": "Designs",
"themes.category.dark": "Dunkle Themen",
"themes.category.hc": "Hohe Kontrast Themen",
"themes.category.light": "Helle Designs",
+ "themes.configure.switchingDisabled": "Erkennung des Systemfarbmodus deaktiviert. Klicken Sie, um die Konfiguration zu starten.",
+ "themes.configure.switchingEnabled": "Erkennung des Systemfarbmodus aktiviert. Klicken Sie, um die Konfiguration zu starten.",
"themes.selectIconTheme": "Auswählen des Dateisymboldesigns (Nach oben/Unten-Tasten zur Vorschau)",
"themes.selectIconTheme.label": "Dateisymboldesign",
"themes.selectMarketplaceTheme": "Eingeben für „Mehr suchen“. Auswählen zum Installieren. NACH-OBEN-/NACH-UNTEN-TASTE zur Vorschau",
"themes.selectProductIconTheme": "Produktsymboldesign auswählen (NACH-OBEN/NACH-UNTEN-TASTE zur Vorschau)",
"themes.selectProductIconTheme.label": "Produktsymboldesign",
- "themes.selectTheme": "Farbdesign auswählen (eine Vorschau wird mit den Tasten NACH OBEN/NACH UNTEN angezeigt)",
+ "themes.selectTheme.darkHC": "Farbdesign für den kontrastreichen dunklen Modus auswählen",
+ "themes.selectTheme.darkScheme": "Farbdesign für dunklen Systemmodus auswählen",
+ "themes.selectTheme.default": "Farbdesign auswählen (Systemfarbmodus erkennen deaktiviert)",
+ "themes.selectTheme.lightHC": "Farbdesign für den kontrastreichen hellen Modus auswählen",
+ "themes.selectTheme.lightScheme": "Farbdesign für hellen Systemmodus auswählen",
"toggleLightDarkThemes.label": "Zwischen hellen/dunklen Designs umschalten"
},
"vs/workbench/contrib/timeline/browser/timeline.contribution": {
"files.openTimeline": "Zeitleiste öffnen",
"filterTimeline": "Zeitachse filtern",
- "timeline.excludeSources": "Ein Array von Zeitachsenquellen, die aus der Zeitleistenansicht ausgeschlossen werden sollen.",
- "timeline.pageOnScroll": "Experimentell. Steuert, ob die Zeitachsenansicht die nächste Seite mit Elementen lädt, wenn Sie an das Ende der Liste scrollen.",
- "timeline.pageSize": "Die Anzahl von Elementen, die standardmäßig in der Zeitachsenansicht und beim Laden weiterer Elemente angezeigt werden sollen. Bei einer Festlegung auf NULL (Standardwert) wird basierend auf dem sichtbaren Bereich der Zeitachsenansicht automatisch eine Seitengröße ausgewählt.",
+ "timeline.pageOnScroll": "Steuert, ob die Zeitachsenansicht die nächste Seite mit Elementen lädt, wenn Sie an das Ende der Liste scrollen.",
+ "timeline.pageSize": "Die Anzahl von Elementen, die standardmäßig in der Zeitachsenansicht und beim Laden weiterer Elemente angezeigt werden sollen. Bei einer Festlegung auf `null` wird basierend auf dem sichtbaren Bereich der Zeitachsenansicht automatisch eine Seitengröße ausgewählt.",
"timelineConfigurationTitle": "Zeitachse",
"timelineFilter": "Symbol für die Aktion zum Filtern der Zeitachse.",
"timelineOpenIcon": "Symbol für die Aktion zum Öffnen der Zeitachse",
@@ -9638,7 +15980,11 @@
"timeline.loadMore": "Mehr laden",
"timeline.loading": "Zeitplan für {0} wird geladen...",
"timeline.loadingMore": "Wird geladen...",
+ "timeline.noLocalHistoryYet": "Der lokale Verlauf verfolgt aktuelle Änderungen beim Speichern, es sei denn, die Datei wurde ausgeschlossen oder ist zu groß.",
+ "timeline.noSCM": "Die Quellcodeverwaltung wurde nicht konfiguriert.",
"timeline.noTimelineInfo": "Es wurden keine Zeitachseninformationen bereitgestellt.",
+ "timeline.noTimelineInfoFromEnabledSources": "Es wurden keine gefilterten Zeitachseninformationen bereitgestellt.",
+ "timeline.noTimelineSourcesEnabled": "Alle Zeitachsenquellen wurden herausgefiltert.",
"timeline.toggleFollowActiveEditorCommand.follow": "Aktuelle Zeitachse anheften",
"timeline.toggleFollowActiveEditorCommand.unfollow": "Aktuelle Zeitachse lösen",
"timelinePin": "Symbol für die Aktion zum Anheften der Zeitachse",
@@ -9671,23 +16017,25 @@
},
"vs/workbench/contrib/update/browser/releaseNotesEditor": {
"releaseNotesInputName": "Anmerkungen zu dieser Version: {0}",
+ "showOnUpdate": "Versionshinweise nach einem Update anzeigen",
"unassigned": "Nicht zugewiesen"
},
"vs/workbench/contrib/update/browser/update": {
"DownloadingUpdate": "Das Update wird heruntergeladen...",
- "cancel": "Abbrechen",
"checkForUpdates": "Nach Aktualisierungen suchen...",
- "checkingForUpdates": "Es wird nach Updates gesucht...",
+ "checkingForUpdates": "Es wird nach {0} Updates gesucht...",
+ "checkingForUpdates2": "Es wird nach Updates gesucht …",
"download update": "Update herunterladen",
"download update_1": "Update herunterladen (1)",
- "downloading": "Download wird ausgeführt...",
+ "downloading": "{0} Update wird heruntergeladen...",
"installUpdate": "Update installieren",
"installUpdate...": "Update installieren... (1)",
"installingUpdate": "Update wird installiert...",
"later": "Später",
+ "learn more": "Weitere Informationen",
"noUpdatesAvailable": "Zurzeit sind keine Updates verfügbar.",
"read the release notes": "Willkommen bei {0} v{1}! Möchten Sie die Hinweise zu dieser Version lesen?",
- "relaunchDetailInsiders": "Drücken Sie die Schaltfläche zum erneuten Laden, um zur Insider-Version von VS Code zu wechseln.",
+ "relaunchDetailInsiders": "Drücken Sie die Schaltfläche „Neu laden“, um zur Insiders-Version von VS Code zu wechseln.",
"relaunchDetailStable": "Drücken Sie die Schaltfläche zum erneuten Laden, um zur stabilen Version von VS Code zu wechseln.",
"relaunchMessage": "Damit die Versionsänderung wirksam wird, ist ein erneuter Ladevorgang erforderlich.",
"releaseNotes": "Anmerkungen zu dieser Version",
@@ -9695,27 +16043,35 @@
"restartToUpdate": "Neustart zum Updaten (1)",
"selectSyncService.detail": "Die Insiders-Version von VS Code synchronisiert Ihre Einstellungen, Tastenzuordnungen, Erweiterungen, Schnipsel und den Benutzeroberflächenzustand standardmäßig mithilfe eines separaten Synchronisierungsdiensts für Insiders-Einstellungen.",
"selectSyncService.message": "Wählen Sie den Dienst zur Einstellungssynchronisierung aus, der nach dem Ändern der Version verwendet werden soll.",
- "showReleaseNotes": "Anmerkungen zu dieser Version anzeigen",
- "switchToInsiders": "Zu Insider-Version wechseln...",
+ "showUpdateReleaseNotes": "Versionshinweise zum Update anzeigen",
+ "switchToInsiders": "Zu Insiders-Version wechseln...",
"switchToStable": "Zu stabiler Version wechseln...",
"thereIsUpdateAvailable": "Ein Update ist verfügbar.",
"update service": "Dienst aktualisieren",
+ "update service disabled": "Updates sind deaktiviert, weil Sie die Installation von {0} im Benutzerbereich als Administrator ausführen.",
"update.noReleaseNotesOnline": "Für diese Version von {0} gibt es keine Onlineversionshinweise.",
"updateAvailable": "Ein Update ist verfügbar: {0} {1}",
"updateAvailableAfterRestart": "Starten Sie {0} neu, um das neueste Update zu installieren.",
"updateIsReady": "Neues {0}-Update verfügbar.",
"updateNow": "Jetzt aktualisieren",
- "updating": "Wird aktualisiert...",
- "use insiders": "Insider",
- "use stable": "Stabil (aktuell)"
+ "updating": "{0} wird aktualisiert …",
+ "use insiders": "&&Insiders",
+ "use stable": "&&Stabil (aktuell)"
},
"vs/workbench/contrib/update/browser/update.contribution": {
"applyUpdate": "Update anwenden...",
+ "checkForUpdates": "Nach Aktualisierungen suchen...",
+ "developerCategory": "Entwickler",
"downloadUpdate": "Update herunterladen",
"installUpdate": "Update installieren",
- "miReleaseNotes": "&&Anmerkungen zu dieser Version",
+ "mshowReleaseNotes": "&&Versionshinweise anzeigen",
+ "openDownloadPage": "\"{0}\" herunterladen",
"pickUpdate": "Update anwenden",
+ "releaseNotesFromFileNone": "Die aktuelle Datei kann nicht als Versionshinweise geöffnet werden",
"restartToUpdate": "Für Update neu starten",
+ "showReleaseNotes": "Anmerkungen zu dieser Version anzeigen",
+ "showReleaseNotesCurrentFile": "Aktuelle Datei als Versionshinweise öffnen",
+ "update.noReleaseNotesOnline": "Für diese Version von {0} gibt es keine Onlineversionshinweise.",
"updateButton": "&&Update"
},
"vs/workbench/contrib/url/browser/trustedDomains": {
@@ -9727,10 +16083,9 @@
"trustedDomain.trustSubDomain": "\"{0}\" und alle Unterdomänen als vertrauenswürdig einstufen"
},
"vs/workbench/contrib/url/browser/trustedDomainsValidator": {
- "cancel": "Abbrechen",
- "configureTrustedDomains": "Vertrauenswürdige Domänen konfigurieren",
- "copy": "Kopieren",
- "open": "Öffnen",
+ "configureTrustedDomains": "&&Vertrauenswürdige Domänen konfigurieren",
+ "copy": "&&Kopieren",
+ "open": "&&Öffnen",
"openExternalLinkAt": "Möchten Sie, dass \"{0}\" die externe Website öffnet?"
},
"vs/workbench/contrib/url/browser/url.contribution": {
@@ -9739,108 +16094,186 @@
"workbench.trustedDomains.promptInTrustedWorkspace": "Wenn diese Option aktiviert ist, werden beim Öffnen von Links in vertrauenswürdigen Arbeitsbereichen Eingabeaufforderungen für vertrauenswürdige Domänen angezeigt."
},
"vs/workbench/contrib/userDataProfile/browser/userDataProfile": {
- "currentProfile": "Das aktuelle Einstellungsprofil ist {0}.",
- "manageProfiles": "{0} ({1})",
- "profileTooltip": "{0}: {1}",
- "settingsProfilesIcon": "Symbol für Einstellungsprofile.",
- "statusBarItemSettingsProfileBackground": "Hintergrundfarbe für den Einstellungsprofileintrag in der Statusleiste.",
- "statusBarItemSettingsProfileForeground": "Vordergrundfarbe für den Einstellungsprofileintrag in der Statusleiste.",
- "workbench.experimental.settingsProfiles.enabled": "Steuert, ob die Previewfunktion \"Einstellungsprofile\" aktiviert werden soll."
- },
- "vs/workbench/contrib/userDataProfile/common/userDataProfileActions": {
- "cleanup profile": "Bereinigungseinstellungsprofile",
- "confiirmation message": "Hierdurch werden die vorhandenen Einstellungen ersetzt. Möchten Sie den Vorgang fortsetzen?",
- "create and enter empty profile": "Leeres Profil erstellen...",
- "create empty profile": "Ein leeres Einstellungsprofil erstellen...",
- "create profile": "Erstellen...",
- "create settings profile": "{0}: Erstellen...",
+ "New Profile Window": "Neues Fenster mit Profil",
+ "change profile": "Zu {0}-Profil wechseln",
+ "create profile": "Neues Profil...",
"current": "Aktuell",
- "delete profile": "Löschen...",
- "edit settings profile": "Einstellungsprofil umbenennen...",
- "export profile": "Exportieren...",
- "export profile dialog": "Profil speichern",
- "export success": "{0}: Erfolgreich exportiert.",
- "import profile": "Importieren...",
- "import profile dialog": "Profil importieren",
- "import profile placeholder": "Profil-URL angeben oder zu importierende Profildatei auswählen",
- "import profile quick pick title": "Einstellungen aus einem Profil importieren",
- "import profile title": "Einstellungen aus einem Profil importieren",
- "name": "Profilname",
- "pick profile": "Einstellungsprofil auswählen",
- "pick profile to delete": "Zu löschende Einstellungsprofile auswählen",
- "pick profile to rename": "Einstellungsprofil zum Umbenennen auswählen",
- "rename profile": "Umbenennen...",
- "save profile as": "Profil aus aktuellen Einstellungen erstellen...",
- "select from file": "Aus Profildatei importieren",
- "select from url": "Aus URL importieren",
- "switch profile": "Wechseln..."
+ "delete profile": "Profil löschen...",
+ "delete specific profile": "Profil löschen...",
+ "export profile": "Profil exportieren...",
+ "export profile in share": "Profil exportieren ({0})...",
+ "manage profiles": "Profile",
+ "miOpenProfiles": "&&Profile",
+ "new window with profile": "Neues Fenster mit Profil",
+ "newWindowWithProfile": "Neues Fenster mit Profil...",
+ "open": "{0}-Profil öffnen",
+ "open profile": "Neues Fenster mit {0}-Profil öffnen",
+ "open profiles": "Profile öffnen (Benutzeroberfläche)",
+ "openShort": "{0}",
+ "pick profile": "Profil auswählen",
+ "pick profile to delete": "Zu löschende Profile auswählen",
+ "profiles": "Profil ({0})",
+ "save profile as": "Aktuelles Profil speichern unter...",
+ "selectProfile": "Profil auswählen",
+ "switchProfile": "Profil wechseln...",
+ "userdataprofilesEditor": "Profil-Editor"
+ },
+ "vs/workbench/contrib/userDataProfile/browser/userDataProfileActions": {
+ "cleanup profile": "Bereinigungsprofile",
+ "create temporary profile": "Neues Fenster mit temporärem Profil",
+ "reset workspaces": "Arbeitsbereichsprofilzuordnungen zurücksetzen"
+ },
+ "vs/workbench/contrib/userDataProfile/browser/userDataProfilesEditor": {
+ "activeProfile": "Aktiv",
+ "addButton": "Ordner hinzufügen",
+ "addFolder": "Ordner hinzufügen",
+ "addFolderTitle": "Hinzuzufügende Ordner auswählen",
+ "change profile": "Profil ändern",
+ "changeIcon": "Klicken Sie, um das Symbol zu ändern",
+ "contents": "Inhalte",
+ "contents source description": "Inhaltsquelle für dieses Profil konfigurieren\r\n",
+ "copy description": "Kopieren",
+ "copy from default": "{0} (Kopieren)",
+ "copy from description": "Wählen Sie die Profilquelle aus, aus der Sie Inhalte kopieren möchten.",
+ "copy from profile description": "Kopieren {0} aus dem {1}-Profil",
+ "copy info": "– *{0}:* Inhalt aus dem {1}-Profil kopieren\r\n",
+ "copy profile from": "Profil kopieren aus",
+ "create from": "Kopieren von",
+ "current description": "Verwenden {0} aus dem {1}-Profil",
+ "default": "Standard",
+ "default description": "{0} aus dem Standardprofil verwenden",
+ "default info": "– *Standard:* Inhalt aus dem Standardprofil verwenden\r\n",
+ "default profile contents description": "Inhalte dieses Profils durchsuchen\r\n",
+ "defaultProfileIcon": "Das Symbol kann für das Standardprofil nicht geändert werden.",
+ "defaultProfileName": "Der Name kann für das Standardprofil nicht geändert werden.",
+ "deleteTrustedUri": "Pfad löschen",
+ "editIcon": "Symbol für das Symbol „Ordner bearbeiten“ im Profil-Editor.",
+ "empty profile": "Keine",
+ "enable for current window": "Dieses Profil für das aktuelle Fenster verwenden",
+ "enable for new windows": "Dieses Profil als Standard für neue Fenster verwenden",
+ "extensions": "Erweiterungen",
+ "folders_workspaces": "Ordner und Arbeitsbereiche",
+ "folders_workspaces_description": "Folgende Ordner und Arbeitsbereiche verwenden dieses Profil",
+ "from existing profiles": "Vorhandene Profile",
+ "from template": "Aus Vorlage",
+ "from templates": "Profilvorlagen",
+ "hostColumnLabel": "Host",
+ "icon": "Symbol für Profil",
+ "icon-description": "Profilsymbol, das in der Aktivitätsleiste angezeigt werden soll",
+ "icon-label": "Symbol",
+ "import from file": "Datei auswählen...",
+ "import from url": "Aus URL importieren",
+ "import profile dialog": "Profilvorlagendatei auswählen",
+ "import profile placeholder": "Profilvorlagen-URL angeben",
+ "import profile quick pick title": "Aus Profilvorlage importieren...",
+ "importProfile": "Profil importieren...",
+ "keybindings": "Tastenkombinationen",
+ "localAuthority": "Lokal",
+ "mcp": "MCP-Server",
+ "name": "Name",
+ "name required": "Der Profilname ist erforderlich und muss ein nicht leerer Wert sein.",
+ "new from template": "Neues Profil aus Vorlage",
+ "newProfile": "Neues Profil",
+ "no_folder_description": "Dieses Profil wird von keinen Ordnern oder Arbeitsbereichen verwendet.",
+ "none": "Keine",
+ "none description": "Leeren {0} erstellen",
+ "none info": "– *Keine:* Leeren Inhalt erstellen\r\n",
+ "open": "In neuem Fenster öffnen",
+ "options": "Quelle",
+ "pathColumnLabel": "Pfad",
+ "profileExists": "Das Profil mit dem Namen {0} ist bereits vorhanden.",
+ "profileName": "Profilname",
+ "profiles": "Profile",
+ "profilesSashBorder": "Die Farbe des Rahmens der Splitview-Sash des Profil-Editors.",
+ "removeIcon": "Symbol für das Symbol „Ordner entfernen“ im Profil-Editor.",
+ "settings": "Einstellungen",
+ "snippets": "Codeausschnitte",
+ "tasks": "Aufgaben",
+ "trustedFolderAriaLabel": "{0}, vertrauenswürdig",
+ "trustedFolderWithHostAriaLabel": "{0} auf {1}, vertrauenswürdig",
+ "trustedFoldersAndWorkspaces": "Vertrauenswürdige Ordner und Arbeitsbereiche",
+ "use for curren window": "Für aktuelles Fenster verwenden",
+ "use for new windows": "Für neue Fenster verwenden",
+ "userDataProfiles": "Profile"
+ },
+ "vs/workbench/contrib/userDataProfile/browser/userDataProfilesEditorModel": {
+ "active": "Dieses Profil für das aktuelle Fenster verwenden",
+ "applyToAllProfiles": "Erweiterung auf alle Profile anwenden",
+ "cancel": "Abbrechen",
+ "copy from": "{0} (Kopieren)",
+ "copyFromProfile": "Duplizieren...",
+ "create": "Erstellen",
+ "delete": "Löschen",
+ "deleteProfile": "Möchten Sie das Profil „{0}“ löschen?",
+ "discard": "Verwerfen und erstellen",
+ "export": "Exportieren...",
+ "import in desktop": "In {0} erstellen",
+ "invalid configurations": "Das Profil muss mindestens eine Konfiguration enthalten.",
+ "name required": "Der Profilname ist erforderlich und muss ein nicht leerer Wert sein.",
+ "new profile exists": "Ein neues Profil wird bereits erstellt. Möchten Sie es verwerfen und ein neues erstellen?",
+ "open": "An der Seite öffnen",
+ "open new window": "Neues Fenster mit diesem Profil öffnen",
+ "preview": "Vorschau",
+ "profileExists": "Das Profil mit dem Namen {0} ist bereits vorhanden.",
+ "replace": "Ersetzen",
+ "untitled": "Unbenannt"
},
"vs/workbench/contrib/userDataSync/browser/userDataSync": {
- "Theirs": "Ihre",
- "Yours": "Dein",
"accept failed": "Fehler beim Annehmen von Änderungen. Überprüfen Sie die [Protokolle]({0}), um weitere Informationen zu erhalten.",
- "accept merges title": "Merge akzeptieren",
- "ask to turn on in global": "Einstellungssynchronisierung ist deaktiviert (1)",
"auth failed": "Fehler beim Aktivieren der Einstellungssynchronisierung: Fehler bei der Authentifizierung.",
- "cancel": "Abbrechen",
- "change later": "Sie können dies später jederzeit ändern.",
+ "cancel turning on sync": "Abbrechen",
+ "complete merges title": "Zusammenführen abschließen",
"configure": "Konfigurieren...",
- "configure and turn on sync detail": "Melden Sie sich an, um Ihre Daten geräteübergreifend zu synchronisieren.",
- "configure sync": "{0}: Konfigurieren...",
+ "configure and turn on sync detail": "Melden Sie sich an, um Ihre Daten zu sichern und geräteübergreifend zu synchronisieren.",
+ "configure sync": "Konfigurieren...",
"configure sync placeholder": "Zu Synchronisierendes auswählen",
+ "configure sync title": "{0}: Konfigurieren...",
"conflicts detected": "Fehler bei der Synchronisierung aufgrund von Konflikten in {0}. Bitte beheben Sie die Konflikte, um fortzufahren.",
"default": "Standard",
+ "download sync activity complete": "Die Aktivität \"Einstellungssynchronisierung\" wurde erfolgreich heruntergeladen.",
"error reset required": "Die Einstellungssynchronisierung wurde deaktiviert, weil Ihre Daten in der Cloud älter sind als die Daten auf dem Client. Löschen Sie Ihre Daten in der Cloud, bevor Sie die Synchronisierung aktivieren.",
"error reset required while starting sync": "Die Einstellungssynchronisierung kann nicht aktiviert werden, weil Ihre Daten in der Cloud älter sind als die Daten auf dem Client. Löschen Sie Ihre Daten in der Cloud, bevor Sie die Synchronisierung aktivieren.",
"error upgrade required": "Die Einstellungssynchronisierung ist deaktiviert, weil die aktuelle Version ({0}, {1}) nicht mit dem Synchronisierungsdienst kompatibel ist. Führen Sie ein Update durch, bevor Sie die Synchronisierung aktivieren.",
"error upgrade required while starting sync": "Die Einstellungssynchronisierung kann nicht aktiviert werden, weil die aktuelle Version ({0}, {1}) mit dem Synchronisierungsdienst nicht kompatibel ist. Führen Sie ein Update durch, bevor Sie die Synchronisierung aktivieren.",
"errorInvalidConfiguration": "Synchronisierung von {0} ist nicht möglich, weil der Inhalt in der Datei ungültig ist. Öffnen Sie die Datei, und korrigieren Sie sie.",
- "global activity turn on sync": "Einstellungssynchronisierung aktivieren...",
+ "global activity turn on sync": "Einstellungen für Sicherung und Synchronisierung...",
"has conflicts": "{0}: Konflikte erkannt",
- "insiders": "Insider",
- "learn more": "Weitere Informationen",
- "localResourceName": "{0} (Lokal)",
+ "insiders": "Insiders",
+ "method not found": "Die Einstellungssynchronisierung ist deaktiviert, da der Client ungültige Anforderungen stellt. Melden Sie ein Problem mit den Protokollen.",
"no authentication providers": "Es sind keine Authentifizierungsanbieter verfügbar.",
"open file": "{0}-Datei öffnen",
"operationId": "Vorgangs-ID: {0}",
- "per platform": "für jede Plattform",
- "remoteResourceName": "{0} (Remote)",
"replace local": "Lokal ersetzen",
"replace remote": "Remote ersetzen",
+ "report issue": "Problem melden",
"reset": "Daten in der Cloud löschen...",
- "resolveConflicts_global": "{0}: Einstellungskonflikte anzeigen (1)",
- "resolveKeybindingsConflicts_global": "{0}: Konflikte mit Tastenzuordnungen anzeigen (1)",
- "resolveSnippetsConflicts_global": "{0}: Konflikte mit Benutzercodeschnipseln anzeigen ({1})",
- "resolveTasksConflicts_global": "{0}: Konflikte bei Benutzeraufgaben anzeigen (1)",
+ "resolveConflicts_global": "Konflikte anzeigen ({0})",
"service changed and turned off": "Die Einstellungssynchronisierung wurde deaktiviert, weil \"{0}\" jetzt einen separaten Dienst verwendet. Aktivieren Sie die Synchronisierung erneut.",
- "service switched to insiders": "Die Einstellungssynchronisierung wurde auf den Insiderdienst umgestellt.",
+ "service switched to insiders": "Die Einstellungssynchronisierung wurde auf den Insiders-Dienst umgestellt.",
"service switched to stable": "Die Einstellungssynchronisierung wurde auf den stabilen Dienst umgestellt.",
"session expired": "Die Einstellungssynchronisierung wurde deaktiviert, weil die aktuelle Sitzung abgelaufen ist. Melden Sie sich erneut an, um die Synchronisierung zu aktivieren.",
- "settings sync is off": "Einstellungssynchronisierung ist deaktiviert",
"show conflicts": "Konflikte anzeigen",
"show sync log title": "{0}: Protokoll anzeigen",
"show sync log toolrip": "Protokoll anzeigen",
- "show synced data": "{0}: Synchronisierte Daten anzeigen",
+ "show sync logs": "Protokoll anzeigen",
+ "show synced data": "Synchronisierte Daten anzeigen",
"show synced data action": "Synchronisierte Daten anzeigen",
- "showConflicts": "{0}: Einstellungskonflikte anzeigen",
- "showKeybindingsConflicts": "{0}: Konflikte mit Tastenzuordnungen anzeigen",
- "showSnippetsConflicts": "{0}: Konflikte mit Benutzercodeschnipseln anzeigen",
- "showTasksConflicts": "{0}: Konflikte bei Benutzeraufgaben anzeigen",
"sign in accounts": "Bei Einstellungssynchronisierung anmelden (1)",
- "sign in and turn on": "Anmelden und aktivieren",
+ "sign in and turn on": "Anmelden",
"sign in global": "Bei Einstellungssynchronisierung anmelden",
"sign in to sync": "Bei Einstellungssynchronisierung anmelden",
"stable": "Stabil",
- "stop sync": "{0}: Deaktivieren",
+ "stop sync": "Deaktivieren",
"switchSyncService.description": "Stellen Sie sicher, dass Sie beim Synchronisieren mit mehreren Umgebungen den gleichen Einstellungssynchronisierungsdienst verwenden.",
"switchSyncService.title": "{0}: Dienst auswählen",
"sync is on": "Die Einstellungssynchronisierung ist aktiviert.",
- "sync now": "{0}: Jetzt synchronisieren",
- "sync settings": "{0}: Einstellungen anzeigen",
+ "sync now": "Jetzt synchronisieren",
+ "sync settings": "Einstellungen anzeigen",
"synced with time": "Synchronisiert: {0}",
"syncing": "Synchronisierung wird durchgeführt",
"too large": "Die Synchronisierung von {0} ist deaktiviert, da die zu synchronisierende {1}-Datei größer als {2} ist. Öffnen Sie die Datei, reduzieren Sie die Größe, und aktivieren Sie die Synchronisierung.",
"too large while starting sync": "Die Einstellungssynchronisierung kann nicht aktiviert werden, weil die zu synchronisierende Datei \"{0}\" die Größe von {1} übersteigt. Öffnen Sie die Datei, und verringern Sie die Größe. Aktivieren Sie dann die Synchronisierung.",
+ "too many profiles": "Die Synchronisierung von Profilen wurde deaktiviert, da zu viele Profile für die Synchronisierung vorhanden sind. Die Einstellungssynchronisierung unterstützt die Synchronisierung von maximal 20 Profilen. Verringern Sie die Anzahl der Profile, und aktivieren Sie die Synchronisierung",
"turn off": "&&Deaktivieren",
"turn off failed": "Fehler beim Deaktivieren der Einstellungssynchronisierung. Überprüfen Sie die [Protokolle]({0}), um weitere Informationen zu erhalten.",
"turn off sync confirmation": "Möchten Sie die Synchronisierung deaktivieren?",
@@ -9848,15 +16281,11 @@
"turn off sync everywhere": "Deaktivieren Sie die Synchronisierung auf allen Ihren Geräten, und löschen Sie die Daten aus der Cloud.",
"turn on failed": "Fehler beim Aktivieren der Einstellungssynchronisierung. {0}",
"turn on failed with user data sync error": "Fehler beim Aktivieren der Einstellungssynchronisierung. Überprüfen Sie die [Protokolle]({0}), um weitere Informationen zu erhalten.",
- "turn on settings sync": "Einstellungssynchronisierung aktivieren",
"turn on sync": "Einstellungssynchronisierung aktivieren...",
- "turn on sync with category": "{0}: Aktivieren...",
"turned off": "Die Einstellungssynchronisierung wurde von einem anderen Gerät aus deaktiviert. Aktivieren Sie die Synchronisierung erneut.",
- "turnin on sync": "Einstellungssynchronisierung wird aktiviert...",
+ "turning on sync": "Einstellungssynchronisierung wird aktiviert...",
"turning on syncing": "Einstellungssynchronisierung wird aktiviert...",
- "turnon sync after initialization message": "Ihre Einstellungen, Tastenzuordnungen, Erweiterungen, Codeschnipsel und der Benutzeroberflächenstatus wurden initialisiert, werden aber nicht synchronisiert. Möchten Sie die Einstellungssynchronisierung aktivieren?",
"using separate service": "Die Einstellungssynchronisierung verwendet jetzt einen separaten Dienst. Weitere Informationen finden Sie in der [Dokumentation zur Einstellungssynchronisierung](https://aka.ms/vscode-settings-sync-help#_syncing-stable-versus-insiders).",
- "workbench.action.showSyncRemoteBackup": "Synchronisierte Daten anzeigen",
"workbench.actions.syncData.reset": "Daten in der Cloud löschen..."
},
"vs/workbench/contrib/userDataSync/browser/userDataSync.contribution": {
@@ -9869,38 +16298,24 @@
"settings sync": "Einstellungssynchronisierung. Vorgangs-ID: {0}",
"show sync logs": "Protokoll anzeigen"
},
- "vs/workbench/contrib/userDataSync/browser/userDataSyncMergesView": {
- "accept local": "Lokal akzeptieren",
- "accept merges": "Merges akzeptieren",
- "accept remote": "Remote akzeptieren",
- "accepted": "Akzeptiert",
- "cancel": "Abbrechen",
- "conflict": "Konflikte erkannt",
- "conflicts detected": "Konflikte erkannt",
- "explanation": "Gehen Sie die einzelnen Einträge durch, und mergen Sie sie, um die Synchronisierung zu aktivieren.",
- "label": "UserDataSyncResources",
- "leftResourceName": "{0} (Remote)",
- "merges": "{0} (Merges)",
- "preview": "{0} (Vorschau)",
- "resolve": "Fehler beim Mergen aufgrund von Konflikten. Beheben Sie die Konflikte, um fortzufahren.",
- "rightResourceName": "{0} (Lokal)",
- "sideBySideDescription": "Einstellungssynchronisierung",
- "sideBySideLabels": "{0} ↔ {1}",
- "turn on sync": "Einstellungssynchronisierung aktivieren",
- "turning on": "Wird aktiviert...",
+ "vs/workbench/contrib/userDataSync/browser/userDataSyncConflictsView": {
+ "Theirs": "Ihre",
+ "Yours": "Dein",
+ "explanation": "Durchlaufen Sie jeden Eintrag, und führen Sie einen Merge durch, um Konflikte zu lösen.",
+ "localResourceName": "{0} (Lokal)",
+ "remoteResourceName": "{0} (Remote)",
"workbench.actions.sync.acceptLocal": "Lokal akzeptieren",
"workbench.actions.sync.acceptRemote": "Remote akzeptieren",
- "workbench.actions.sync.discard": "Verwerfen",
- "workbench.actions.sync.merge": "Mergen",
- "workbench.actions.sync.showChanges": "Änderungen öffnen"
+ "workbench.actions.sync.openConflicts": "Konflikte anzeigen"
},
"vs/workbench/contrib/userDataSync/browser/userDataSyncViews": {
"confirm replace": "Möchten Sie die aktuellen Daten \"{0}\" durch die ausgewählten Daten ersetzen?",
+ "conflicts": "Konflikte",
"current": "Aktuell",
+ "downloaded sync activity title": "Synchronisierungsaktivität (Entwickler)",
"last sync states": "Letzte synchronisierte Remoteelemente",
"leftResourceName": "{0} (remote)",
"local sync activity title": "Synchronisierungsaktivität (lokal)",
- "merges": "Merges",
"no machines": "Keine Computer",
"not found": "Der Computer mit der ID \"{0}\" wurde nicht gefunden.",
"placeholder": "Geben Sie den Namen des Computers ein.",
@@ -9908,6 +16323,7 @@
"remoteToLocalDiff": "{0} ↔ {1}",
"reset": "Synchronisierte Daten zurücksetzen",
"rightResourceName": "{0} (lokal)",
+ "select sync activity file": "Datei oder Ordner für Synchronisierungsaktivität auswählen",
"sideBySideLabels": "{0} ↔ {1}",
"sync logs": "Protokolle",
"synced machines": "Synchronisierte Computer",
@@ -9918,24 +16334,21 @@
"valid message": "Der Computername muss eindeutig und darf nicht leer sein.",
"workbench.actions.sync.compareWithLocal": "Vergleichen mit Lokal",
"workbench.actions.sync.editMachineName": "Name bearbeiten",
+ "workbench.actions.sync.loadActivity": "Synchronisierungsaktivität laden",
"workbench.actions.sync.replaceCurrent": "Wiederherstellen",
- "workbench.actions.sync.resolveResourceRef": "JSON-Rohdaten für Synchronisierung anzeigen",
+ "workbench.actions.sync.resolveResourceRef": "Roh-JSON-Synchronisierungsdaten anzeigen",
"workbench.actions.sync.turnOffSyncOnMachine": "Einstellungssynchronisierung deaktivieren"
},
- "vs/workbench/contrib/userDataSync/electron-sandbox/userDataSync.contribution": {
+ "vs/workbench/contrib/userDataSync/electron-browser/userDataSync.contribution": {
"Open Backup folder": "Lokalen Sicherungsordner öffnen",
- "no backups": "Der Ordner für lokale Sicherungen ist nicht vorhanden."
- },
- "vs/workbench/contrib/views/browser/treeView": {
- "no-dataprovider": "Es ist kein Datenanbieter registriert, der Sichtdaten bereitstellen kann.",
- "refresh": "Aktualisieren",
- "collapseAll": "Alle zuklappen",
- "command-error": "Fehler beim Ausführen des Befehls {1}: {0}. Dies wird vermutlich durch die Erweiterung verursacht, die {1} beiträgt."
+ "download sync activity complete": "Die Aktivität \"Einstellungssynchronisierung\" wurde erfolgreich heruntergeladen.",
+ "no backups": "Der Ordner für lokale Sicherungen ist nicht vorhanden.",
+ "open": "Ordner öffnen"
},
"vs/workbench/contrib/watermark/browser/watermark": {
"tips.enabled": "Wenn diese Option aktiviert ist, werden Tipps zu Grenzwerten angezeigt, wenn kein Editor geöffnet ist.",
"watermark.findInFiles": "In Dateien suchen",
- "watermark.newUntitledFile": "Neue unbenannte Datei",
+ "watermark.newUntitledFile": "Neue unbenannte Textdatei",
"watermark.openFile": "Datei öffnen",
"watermark.openFileFolder": "Datei oder Ordner öffnen",
"watermark.openFolder": "Ordner öffnen",
@@ -9955,285 +16368,43 @@
"vs/workbench/contrib/webview/browser/webviewElement": {
"fatalErrorMessage": "Fehler beim Laden der Webansicht: {0}"
},
- "vs/workbench/contrib/webview/electron-sandbox/webviewCommands": {
- "iframeWebviewAlert": "Zum Debuggen der iFrame-basierten Webansicht werden Standard-Dev-Tools verwendet.",
- "openToolsLabel": "Webview-Entwicklertools öffnen"
- },
- "vs/workbench/contrib/webviewPanel/browser/webviewCommands": {
- "editor.action.webvieweditor.findNext": "Weitersuchen",
- "editor.action.webvieweditor.findPrevious": "Vorherige suchen",
- "editor.action.webvieweditor.hideFind": "Suche beenden",
- "editor.action.webvieweditor.showFind": "Suche anzeigen",
- "refreshWebviewLabel": "Webansichten neu laden"
- },
- "vs/workbench/contrib/webviewPanel/browser/webviewPanel.contribution": {
- "webview.editor.label": "Webansichten-Editor"
- },
- "vs/workbench/contrib/welcome/common/newFile.contribution": {
- "Built-In": "Integriert",
- "Create": "Erstellen",
- "change keybinding": "Tastenzuordnung konfigurieren",
- "createNew": "Neu erstellen...",
- "file": "Datei",
- "miNewFile2": "Textdatei",
- "notebook": "Notebook",
- "welcome.newFile": "Neue Datei…"
- },
- "vs/workbench/contrib/welcome/common/viewsWelcomeContribution": {
- "ViewsWelcomeExtensionPoint.proposedAPI": "Der „viewsWelcome“-Beitrag in „{0}“ erfordert „enabledApiProposals: [\"contribViewsWelcome\"]“, um die vorgeschlagene Eigenschaft „group“ zu verwenden."
- },
- "vs/workbench/contrib/welcome/common/viewsWelcomeExtensionPoint": {
- "contributes.viewsWelcome": "Willkommensinhalte in beigetragenen Ansichten. Willkommensinhalte werden in Strukturansichten gerendert, wenn sie keine aussagekräftigen Inhalte enthalten (Beispiel: Datei-Explorer, wenn kein Ordner geöffnet ist). Solche Inhalte sind als produktinterne Dokumentation nützlich, um Benutzer zur Verwendung bestimmter Features zu motivieren, bevor diese verfügbar sind. Ein gutes Beispiel hierfür ist eine Schaltfläche \"Repository klonen\" in der Willkommensansicht des Datei-Explorers.",
- "contributes.viewsWelcome.view": "Beigetragene Begrüßungsinhalte für eine bestimmte Ansicht.",
- "contributes.viewsWelcome.view.contents": "Willkommensinhalte, die angezeigt werden sollen. Das Format des Inhalts ist eine Teilmenge von Markdown. Nur Links werden unterstützt.",
- "contributes.viewsWelcome.view.enablement": "Bedingung für die Aktivierung der Schaltflächen mit Willkommensinhalten und Befehlslinks.",
- "contributes.viewsWelcome.view.group": "Die Gruppe, zu der diese Willkommensinhalte gehören. Vorgeschlagene API.",
- "contributes.viewsWelcome.view.view": "Der Zielansichtsbezeichner für diesen Willkommensinhalt. Es werden nur Strukturansichten unterstützt.",
- "contributes.viewsWelcome.view.when": "Bedingung, wann der Willkommensinhalt angezeigt werden soll."
- },
- "vs/workbench/contrib/welcome/gettingStarted/browser/gettingStarted": {
- "allDone": "Als erledigt markieren",
- "checkboxTitle": "Wenn diese Option aktiviert ist, wird diese Seite beim Start angezeigt.",
- "close": "Ausblenden",
- "footer": "{0} erfasst Nutzungsdaten. Lesen Sie unsere {1} und erfahren Sie, wie Sie {2}.",
- "getStarted": "Erste Schritte",
- "gettingStarted.allStepsComplete": "Alle {0} Schritte abgeschlossen!",
- "gettingStarted.editingEvolved": "Fortschrittliche Bearbeitung",
- "gettingStarted.someStepsComplete": "{0} von {1} Schritten abgeschlossen",
- "imageShowing": "Bild mit {0}",
- "new": "Neu",
- "newItems": "Aktualisiert",
- "nextOne": "Nächster Abschnitt",
- "optOut": "Abmelden",
- "pickWalkthroughs": "Exemplarische Vorgehensweise öffnen...",
- "privacy statement": "Datenschutzbestimmungen",
- "recent": "Zuletzt verwendet",
- "show more recents": "Alle zuletzt geöffneten Ordner anzeigen {0}",
- "showAll": "Weitere...",
- "start": "Start",
- "walkthroughs": "Exemplarische Vorgehensweisen",
- "welcomeAriaLabel": "Übersicht für den schnellen Einstieg in Ihren Editor.",
- "welcomePage.openFolderWithPath": "Ordner {0} mit Pfad {1} öffnen",
- "welcomePage.showOnStartup": "Beim Start Willkommensseite anzeigen"
- },
- "vs/workbench/contrib/welcome/gettingStarted/browser/gettingStarted.contribution": {
- "getStarted": "Erste Schritte",
- "help": "Hilfe",
- "miGetStarted": "Erste Schritte",
- "pickWalkthroughs": "Exemplarische Vorgehensweise öffnen...",
- "welcome.goBack": "Zurück",
- "welcome.markStepComplete": "Schritt als abgeschlossen markieren",
- "welcome.markStepInomplete": "Schritt als nicht abgeschlossen markieren",
- "welcome.showAllWalkthroughs": "Exemplarische Vorgehensweise öffnen...",
- "workbench.welcomePage.preferReducedMotion": "Verringern Sie die Bewegung auf der Willkommensseite, wenn diese Option aktiviert ist.",
- "workbench.welcomePage.walkthroughs.openOnInstall": "Wenn diese Option aktiviert ist, wird die exemplarische Vorgehensweise einer Erweiterung bei der Installation der Erweiterung geöffnet.",
- "workspacePlatform": "Die Plattform des aktuellen Arbeitsbereichs, die sich in Remote- oder serverlosen Kontexten von der Plattform der Benutzeroberfläche unterscheiden kann."
- },
- "vs/workbench/contrib/welcome/gettingStarted/browser/gettingStartedColors": {
- "welcomePage.background": "Hintergrundfarbe für die Startseite.",
- "welcomePage.progress.background": "Vordergrundfarbe für die Statusleisten der Willkommensseite.",
- "welcomePage.progress.foreground": "Hintergrundfarbe für die Statusleisten der Willkommensseite.",
- "welcomePage.tileBackground": "Hintergrundfarbe für die Kacheln auf der Seite \"Erste Schritte\".",
- "welcomePage.tileHoverBackground": "Hoverhintergrundfarbe für die Kacheln auf der Seite \"Erste Schritte\".",
- "welcomePage.tileShadow": "Die Schattenfarbe für Kategorieschaltflächen exemplarischer Vorgehensweisen auf der Willkommensseite."
- },
- "vs/workbench/contrib/welcome/gettingStarted/browser/gettingStartedExtensionPoint": {
- "pathDeprecated": "Veraltet. Verwenden Sie stattdessen \"Image\" oder \"Markdown\".",
- "title": "Titel",
- "walkthroughs": "Exemplarische Vorgehensweisen beitragen, damit Benutzer mit ihrer Erweiterung beginnen können.",
- "walkthroughs.description": "Beschreibung der exemplarischen Vorgehensweise.",
- "walkthroughs.featuredFor": "Exemplarische Vorgehensweisen, die mit einem dieser Glob-Muster übereinstimmen, werden in Arbeitsbereichen mit den angegebenen Dateien als \"Featured\" angezeigt. In einer exemplarischen Vorgehensweise für \"Transcript Projects\" wird hier möglicherweise \"tsconfig.json\" angegeben.",
- "walkthroughs.id": "Eindeutiger Bezeichner für diese exemplarische Vorgehensweise.",
- "walkthroughs.steps": "Schritte, die im Rahmen dieser exemplarischen Vorgehensweise durchgeführt werden.",
- "walkthroughs.steps.button.deprecated.interpolated": "Veraltet. Verwenden Sie stattdessen Markdown-Links in der Beschreibung, z. B. {0}, {1} oder {2}",
- "walkthroughs.steps.completionEvents": "Ereignisse, die auslösen sollen, dass dieser Schritt deaktiviert wird. Wenn leer oder nicht definiert, wird der Schritt deaktiviert, wenn auf die Schaltflächen oder Links des Schritts geklickt wird. Wenn der Schritt keine Schaltflächen oder Links enthält, wird er bei der Auswahl überprüft.",
- "walkthroughs.steps.completionEvents.extensionInstalled": "Deaktivieren Sie den Schritt, wenn eine Erweiterung mit der angegebenen ID installiert ist. Wenn die Extension bereits installiert ist, wird der Schritt gestartet.",
- "walkthroughs.steps.completionEvents.onCommand": "Deaktivieren Sie den Schritt, wenn ein bestimmter Befehl an beliebiger Stelle in VS Code ausgeführt wird.",
- "walkthroughs.steps.completionEvents.onContext": "Deaktivieren Sie den Schritt, wenn ein Kontextschlüssel Ausdruck \"true\" ist.",
- "walkthroughs.steps.completionEvents.onLink": "Hacken Sie einen Schritt ab, wenn ein angegebener Link über einen Schritt der exemplarischen Vorgehensweise geöffnet wird.",
- "walkthroughs.steps.completionEvents.onSettingChanged": "Deaktivieren Sie den Schritt bei Änderung einer bestimmten Einstellung",
- "walkthroughs.steps.completionEvents.onView": "Deaktivieren Sie den Schritt beim Öffnen einer angegebenen Ansicht",
- "walkthroughs.steps.completionEvents.stepSelected": "Deaktivieren Sie den Schritt, sobald er ausgewählt wurde.",
- "walkthroughs.steps.description.interpolated": "Beschreibung des Schritts. Unterstützt \"vorformatierte\", __italic__ und **Fett ** Text. Verwenden Sie Markdown-Stil-Links für Befehle oder externe Links: {0}, {1}, oder {2}. Links in ihrer eigenen Zeile werden als Schaltflächen gerendert.",
- "walkthroughs.steps.doneOn": "Signal zum Markieren des Schritts als abgeschlossen.",
- "walkthroughs.steps.doneOn.deprecation": "doneOn ist veraltet. Die Schritte werden beim Klicken auf Ihre Schaltflächen standardmäßig deaktiviert, um die weitere Verwendung von completionEvents zu konfigurieren.",
- "walkthroughs.steps.id": "Eindeutiger Bezeichner für diesen Schritt. Hiermit wird nachverfolgt, welche Schritte abgeschlossen wurden.",
- "walkthroughs.steps.media": "Medien, die neben diesem Schritt angezeigt werden sollen, entweder ein Bild oder ein Markdown-Inhalt.",
- "walkthroughs.steps.media.altText": "Alternativer Text, der angezeigt werden soll, wenn das Bild nicht geladen werden kann, oder der bei der Sprachausgabe verwendet werden soll.",
- "walkthroughs.steps.media.image.path.dark.string": "Pfad zum Image für Dunkel-Designs relativ zum Erweiterungsverzeichnis.",
- "walkthroughs.steps.media.image.path.hc.string": "Pfad zum Image für HC-Designs relativ zum Erweiterungsverzeichnis.",
- "walkthroughs.steps.media.image.path.light.string": "Pfad zum Image für Hell-Designs relativ zum Erweiterungsverzeichnis.",
- "walkthroughs.steps.media.image.path.string": "Pfad zu einem Bild oder Objekt, das aus Pfaden zu hellen, dunklen und HC-Images besteht, relativ zum Erweiterungsverzeichnis. Abhängig vom Kontext wird das Bild von 400px bis 800px breit angezeigt, mit ähnlichen Begrenzungen in der Höhe. Um HIDPI-Displays zu unterstützen, wird das Bild bei einer Skalierung von 1,5 x gerendert, beispielsweise wird ein 900-Pixel breites Bild als 600 logische Pixel breit angezeigt.",
- "walkthroughs.steps.media.image.path.svg": "Der Pfad zu einem SVG: Farbtoken werden in Variablen unterstützt, um die Übereinstimmung mit der Workbench zu unterstützen.",
- "walkthroughs.steps.media.markdown.path": "Pfad zum Markdowndokument relativ zum Erweiterungsverzeichnis.",
- "walkthroughs.steps.oneOn.command": "Hiermit wird der Schritt als durchgeführt markiert, wenn der angegebene Befehl ausgeführt wird.",
- "walkthroughs.steps.title": "Der Titel des Schritts.",
- "walkthroughs.steps.when": "Kontextschlüsselausdruck zum Steuern der Sichtbarkeit dieses Schritts.",
- "walkthroughs.title": "Titel der exemplarischen Vorgehensweise.",
- "walkthroughs.when": "Kontextschlüsselausdruck zum Steuern der Sichtbarkeit dieser exemplarischen Vorgehensweise."
- },
- "vs/workbench/contrib/welcome/gettingStarted/browser/gettingStartedIcons": {
- "gettingStartedChecked": "Stellt die Schritte dar, die bereits abgeschlossen wurden",
- "gettingStartedUnchecked": "Stellt die Schritte dar, die noch nicht abgeschlossen wurden"
- },
- "vs/workbench/contrib/welcome/gettingStarted/browser/gettingStartedInput": {
- "getStarted": "Erste Schritte"
- },
- "vs/workbench/contrib/welcome/gettingStarted/browser/gettingStartedService": {
- "builtin": "Integriert"
- },
- "vs/workbench/contrib/welcome/gettingStarted/common/gettingStartedContent": {
- "browseLangExts": "Spracherweiterungen durchsuchen",
- "browsePopular": "Beliebte Weberweiterungen durchsuchen",
- "browseRecommended": "Empfohlene Erweiterungen durchsuchen",
- "cloneRepo": "Repository klonen",
- "commandPalette": "Befehlspalette öffnen",
- "enableSync": "Einstellungssynchronisierung aktivieren",
- "enableTrust": "Vertrauensstellung aktivieren",
- "getting-started-beginner-icon": "Symbol für die Kategorie „Anfänger“ der Willkommensseite",
- "getting-started-intermediate-icon": "Symbol für die Kategorie „Fortgeschritten“ der Willkommensseite",
- "getting-started-setup-icon": "Symbol für die Kategorie „Setup“ der Willkommensseite",
- "gettingStarted.beginner.description": "Steigen Sie sofort in VS Code ein, und erhalten Sie einen Überblick über die wichtigsten Features.",
- "gettingStarted.beginner.title": "Grundlegende Informationen",
- "gettingStarted.commandPalette.description.interpolated": "Befehle sind die Tastaturmethode, um jede Aufgabe in VS Code auszuführen. **Üben Sie**, indem Sie Ihre häufigen Befehle suchen, um Zeit zu sparen.\r\n{0}\r\n__Versuchen Sie nach „Ansicht umschalten“ zu suchen.__",
- "gettingStarted.commandPalette.title": "Eine Tastenkombination, um auf alles zugreifen zu können",
- "gettingStarted.debug.description.interpolated": "Beschleunigen Sie die Bearbeitungs-, Build-, Test- und Debugschleife durch Einrichten einer Startkonfiguration.\r\n{0}",
- "gettingStarted.debug.title": "Code in Aktion ansehen",
- "gettingStarted.extensions.description.interpolated": "Durch Erweiterungen können Sie VS Code noch umfassender nutzen. Diese reichen von praktischen Hacks zur Produktivitätssteigerung über Erweiterungen für vorkonfigurierte Features bis hin zu völlig neuen Funktionen.\r\n{0}",
- "gettingStarted.extensions.title": "Unbegrenzte Erweiterbarkeit",
- "gettingStarted.extensionsWeb.description.interpolated": "Erweiterungen sind Verstärkungen für VS Code. Eine wachsende Zahl wird im Web verfügbar.\r\n{0}",
- "gettingStarted.findLanguageExts.description.interpolated": "Programmieren Sie intelligenter mit Syntaxhervorhebung, Codevervollständigung, Linten und Debuggen. Viele Sprachen sind bereits integriert, aber es können noch viele weitere als Erweiterungen hinzugefügt werden.\r\n{0}",
- "gettingStarted.findLanguageExts.title": "Umfassende Unterstützung für alle Sprachen",
- "gettingStarted.installGit.description.interpolated": "Installieren Sie Git, um Änderungen in Ihren Projekten nachzuverfolgen.\r\n{0}",
- "gettingStarted.installGit.title": "Git installieren",
- "gettingStarted.intermediate.description": "Optimieren Sie Ihren Entwicklungsworkflow mit diesen Tipps und Tricks.",
- "gettingStarted.intermediate.title": "Steigern Sie Ihre Produktivität",
- "gettingStarted.menuBar.description.interpolated": "Die vollständige Menüleiste ist im Dropdownmenü verfügbar, um Platz für Ihren Code zu schaffen. Schalten Sie die Darstellung für schnelleren Zugriff um. \r\n {0}",
- "gettingStarted.menuBar.title": "Genau das richtige Maß an Benutzeroberfläche",
- "gettingStarted.newFile.description": "Öffnen Sie eine neue unbenannte Datei, ein Notizbuch oder einen benutzerdefinierten Editor.",
- "gettingStarted.newFile.title": "Neue Datei…",
- "gettingStarted.notebook.title": "Notebooks anpassen",
- "gettingStarted.notebookProfile.description": "Richten Sie Notebooks so ein, dass sie sich genauso anfühlen, wie Sie es mögen.",
- "gettingStarted.notebookProfile.title": "Wählen Sie das Layout für Ihre Notebooks aus.",
- "gettingStarted.openFile.description": "Hiermit öffnen Sie eine Datei, um mit der Arbeit zu beginnen.",
- "gettingStarted.openFile.title": "Datei öffnen...",
- "gettingStarted.openFolder.description": "Hiermit öffnen Sie einen Ordner, um mit der Arbeit zu beginnen.",
- "gettingStarted.openFolder.title": "Ordner öffnen...",
- "gettingStarted.openMac.description": "Hiermit öffnen Sie eine Datei oder einen Ordner, um mit der Arbeit zu beginnen.",
- "gettingStarted.openMac.title": "Öffnen...",
- "gettingStarted.pickColor.description.interpolated": "Die richtige Farbpalette hilft Ihnen, sich auf Ihren Code zu konzentrieren, ist angenehm für die Augen und macht einfach mehr Spaß.\r\n{0}",
- "gettingStarted.pickColor.title": "Wählen Sie die gewünschte Darstellung aus.",
- "gettingStarted.playground.description.interpolated": "Möchten Sie schneller und intelligenter programmieren? Üben Sie leistungsstarke Codebearbeitungsfunktionen im interaktiven Playground.\r\n{0}",
- "gettingStarted.playground.title": "Ihre Bearbeitungsfähigkeiten neu definieren",
- "gettingStarted.quickOpen.description.interpolated": "Mit nur einem Tastaturanschlag können Sie sofort zwischen Dateien wechseln. Tipp: Öffnen Sie mehrere Dateien durch Drücken der NACH-RECHTS-TASTE.\r\n{0}",
- "gettingStarted.quickOpen.title": "Schnelles Navigieren zwischen Ihren Dateien",
- "gettingStarted.scm.description.interpolated": "Kein Suchen nach Git-Befehlen mehr! Git- und GitHub-Workflows sind nahtlos integriert.\r\n{0}",
- "gettingStarted.scm.title": "Code mit Git nachverfolgen",
- "gettingStarted.scmClone.description.interpolated": "Richten Sie die integrierte Versionskontrolle für Ihr Projekt ein, um Ihre Änderungen nachzuverfolgen und mit anderen zusammenzuarbeiten.\r\n{0}",
- "gettingStarted.scmSetup.description.interpolated": "Richten Sie die integrierte Versionskontrolle für Ihr Projekt ein, um Ihre Änderungen nachzuverfolgen und mit anderen zusammenzuarbeiten.\r\n{0}",
- "gettingStarted.settings.description.interpolated": "Alle Aspekte von VS Code und Ihre Erweiterungen lassen sich ganz auf Ihre Anforderungen abstimmen. Häufig verwendete Einstellungen werden zuerst aufgelistet, um Ihnen den Einstieg zu erleichtern.\r\n{0}",
- "gettingStarted.settings.title": "Optimieren Ihrer Einstellungen",
- "gettingStarted.settingsSync.description.interpolated": "Halten Sie Ihre wesentlichen VS Code-Anpassungen auf allen Ihren Geräten gesichert und aktualisiert.\r\n{0}",
- "gettingStarted.settingsSync.title": "Synchronisieren mit und von anderen Geräten",
- "gettingStarted.setup.OpenFolder.description.interpolated": "Jetzt können Sie mit dem Programmieren beginnen. Öffnen Sie einen Projektordner, um Ihre Dateien in VS Code zu verschieben.\r\n{0}",
- "gettingStarted.setup.OpenFolder.title": "Ihren Code öffnen",
- "gettingStarted.setup.OpenFolderWeb.description.interpolated": "Sie sind bereit, mit dem Programmieren zu beginnen. Sie können ein lokales Projekt oder ein Remote-Repository öffnen, um Ihre Dateien in VS Code zu übertragen.\r\n{0}\r\n{1}",
- "gettingStarted.setup.description": "Entdecken Sie die besten Anpassungen, mit denen Sie VS Code ganz nach Ihren Wünschen gestalten können.",
- "gettingStarted.setup.title": "VS Code Erste Schritte",
- "gettingStarted.setupWeb.description": "Entdecken Sie die besten Anpassungen, um VS Code im Web für Sie anzupassen.",
- "gettingStarted.setupWeb.title": "Los geht's mit VS Code im Web",
- "gettingStarted.shortcuts.description.interpolated": "Nachdem Sie Ihre bevorzugten Befehle entdeckt haben, erstellen Sie benutzerdefinierte Tastenkombinationen für den sofortigen Zugriff.\r\n{0}",
- "gettingStarted.shortcuts.title": "Tastenkombinationen anpassen",
- "gettingStarted.splitview.description.interpolated": "Nutzen Sie Ihre Bildschirm-Estate-Ansicht, indem Sie Dateien nebeneinander, vertikal und horizontal öffnen.\r\n{0}",
- "gettingStarted.splitview.title": "Mit Ansicht \"Nebeneinander\" bearbeiten",
- "gettingStarted.tasks.description.interpolated": "Erstellen Sie Aufgaben für Ihre gemeinsamen Workflows, und profitieren Sie von der integrierten Funktion Skripts auszuführen und Ergebnisse automatisch zu überprüfen.\r\n{0}",
- "gettingStarted.tasks.title": "Automatisieren von Projektaufgaben",
- "gettingStarted.terminal.description.interpolated": "Führen Sie schnell Shellbefehle aus, und überwachen Sie die Buildausgabe direkt neben Ihrem Code.\r\n{0}",
- "gettingStarted.terminal.title": "Komfortables integriertes Terminal",
- "gettingStarted.topLevelGitClone.description": "Klonen eines Remote-Repositorys in einen lokalen Ordner",
- "gettingStarted.topLevelGitClone.title": "Git-Repository klonen...",
- "gettingStarted.topLevelGitOpen.description": "Verbinden mit einem Remote-Repository oder Pull Request zum Durchsuchen, Suchen, Bearbeiten und Committen",
- "gettingStarted.topLevelGitOpen.title": "Repository öffnen...",
- "gettingStarted.topLevelShowWalkthroughs.description": "Exemplarische Vorgehensweise für den Editor oder eine Erweiterung anzeigen",
- "gettingStarted.topLevelShowWalkthroughs.title": "Exemplarische Vorgehensweise öffnen...",
- "gettingStarted.videoTutorial.description.interpolated": "Sehen Sie sich das erste in einer Reihe von kurzen und praktischen Videotutorials zu den wichtigsten VS Code-Features an.\r\n{0}",
- "gettingStarted.videoTutorial.title": "Entspanntes Lernen",
- "gettingStarted.workspaceTrust.description.interpolated": "Mit {0} können Sie entscheiden, ob Ihre Projektordner die automatische Codeausführung **zulassen oder einschränken** sollen __(erforderlich für Erweiterungen, Debugging usw.)__.\r\nBeim Öffnen einer Datei/eines Ordners werden Sie aufgefordert, Vertrauen zu gewähren. Sie können dies später jederzeit {1}.",
- "gettingStarted.workspaceTrust.title": "Code sicher durchsuchen und bearbeiten",
- "initRepo": "Git-Repository initialisieren",
- "installGit": "Git installieren",
- "keyboardShortcuts": "Tastenkombinationen",
- "openEditorPlayground": "Editor-Playground öffnen",
- "openFolder": "Ordner öffnen",
- "openRepository": "Repository öffnen",
- "openSCM": "Quellcodeverwaltung öffnen",
- "pickFolder": "Ordner auswählen",
- "quickOpen": "Datei über Quick Open öffnen",
- "runProject": "Ausführen Ihres Projekts",
- "runTasks": "Automatisch erkannte Aufgaben ausführen",
- "showTerminal": "Terminalpanel anzeigen",
- "splitEditor": "Editor teilen",
- "titleID": "Farbdesigns durchsuchen",
- "toggleMenuBar": "Menüleiste umschalten",
- "tweakSettings": "Einstellungen optimieren",
- "watch": "Tutorial ansehen",
- "workspaceTrust": "Vertrauensstellung des Arbeitsbereichs"
- },
- "vs/workbench/contrib/welcome/gettingStarted/common/media/example_markdown_media": {
- "HighContrast": "Hoher Kontrast",
- "dark": "Dunkel",
- "light": "Hell",
- "seeMore": "Weitere Designs anzeigen..."
- },
- "vs/workbench/contrib/welcome/gettingStarted/common/media/notebookProfile": {
- "colab": "Colab",
- "default": "Standard",
- "jupyter": "Jupyter"
- },
- "vs/workbench/contrib/welcome/overlay/browser/welcomeOverlay": {
- "hideWelcomeOverlay": "Schnittstellenüberblick ausblenden",
- "welcomeOverlay": "Benutzeroberflächenüberblick",
- "welcomeOverlay.commandPalette": "Alle Befehle suchen und ausführen",
- "welcomeOverlay.debug": "Starten und debuggen",
- "welcomeOverlay.explorer": "Datei-Explorer",
- "welcomeOverlay.extensions": "Erweiterungen verwalten",
- "welcomeOverlay.git": "Quellcodeverwaltung",
- "welcomeOverlay.notifications": "Benachrichtigungen anzeigen",
- "welcomeOverlay.problems": "Fehler und Warnungen anzeigen",
- "welcomeOverlay.search": "Dateiübergreifend suchen",
- "welcomeOverlay.terminal": "Integriertes Terminal umschalten"
- },
- "vs/workbench/contrib/welcome/page/browser/welcomePage.contribution": {
- "workbench.startupEditor": "Steuert, welcher Editor beim Start angezeigt wird, wenn keiner aus der vorherigen Sitzung wiederhergestellt wird.",
- "workbench.startupEditor.newUntitledFile": "Öffnen Sie eine neue unbenannte Datei (gilt nur beim Öffnen eines neuen Fensters).",
- "workbench.startupEditor.none": "Ohne Editor starten.",
- "workbench.startupEditor.readme": "Öffnen Sie die Infodatei, sofern eine im geöffneten Ordner enthalten ist. Andernfalls erfolgt ein Fallback auf „welcomePage“. Hinweis: Dies wird nur als globale Konfiguration betrachtet. Sie wird ignoriert, wenn sie in einer Arbeitsbereichs-oder Ordnerkonfiguration festgelegt wird.",
- "workbench.startupEditor.welcomePage": "Öffnen Sie die neue Willkommensseite mit Inhalten, die Sie beim Einstieg in VS Code und Erweiterungen unterstützen.",
- "workbench.startupEditor.welcomePageInEmptyWorkbench": "Willkommensseite öffnen, wenn eine leere Workbench geöffnet wird."
+ "vs/workbench/contrib/webview/electron-browser/webviewCommands": {
+ "iframeWebviewAlert": "Zum Debuggen der iFrame-basierten Webansicht werden Standard-Dev-Tools verwendet.",
+ "openToolsDescription": "Öffnet Entwicklertools für aktive Webansichten",
+ "openToolsLabel": "Webview-Entwicklertools öffnen"
},
- "vs/workbench/contrib/welcome/walkThrough/browser/editor/editorWalkThrough": {
- "editorWalkThrough": "Interaktiver Editor-Playground",
- "editorWalkThrough.title": "Editor-Playground"
+ "vs/workbench/contrib/webviewPanel/browser/webviewCommands": {
+ "editor.action.webvieweditor.findNext": "Weitersuchen",
+ "editor.action.webvieweditor.findPrevious": "Vorherige suchen",
+ "editor.action.webvieweditor.hideFind": "Suche beenden",
+ "editor.action.webvieweditor.showFind": "Suche anzeigen",
+ "refreshWebviewLabel": "Webansichten neu laden"
},
- "vs/workbench/contrib/welcome/walkThrough/browser/walkThrough.contribution": {
- "miPlayground": "Editor-Playgrou&&nd",
- "walkThrough.editor.label": "Playground"
+ "vs/workbench/contrib/webviewPanel/browser/webviewEditor": {
+ "context.activeWebviewId": "Der viewType des derzeit aktiven Webansichtsbereichs."
},
- "vs/workbench/contrib/welcome/walkThrough/browser/walkThroughPart": {
- "walkThrough.embeddedEditorBackground": "Hintergrundfarbe für die eingebetteten Editoren im interaktiven Playground.",
- "walkThrough.gitNotFound": "Git scheint auf Ihrem System nicht installiert zu sein.",
- "walkThrough.unboundCommand": "Ungebunden"
+ "vs/workbench/contrib/webviewPanel/browser/webviewPanel.contribution": {
+ "webview.editor.label": "Webansichten-Editor"
+ },
+ "vs/workbench/contrib/welcomeDialog/browser/welcomeDialog.contribution": {
+ "workbench.welcome.dialog": "Wenn diese Option aktiviert ist, wird ein Willkommenswidget im Editor angezeigt."
+ },
+ "vs/workbench/contrib/welcomeDialog/browser/welcomeWidget": {
+ "dialogClose": "Dialogfeld schließen"
},
"vs/workbench/contrib/welcomeGettingStarted/browser/gettingStarted": {
+ "acessibleViewHint": "In der barrierefreien Ansicht überprüfen ({0}).\r\n",
+ "acessibleViewHintNoKbOpen": "Überprüfen Sie dies in der barrierefreien Ansicht über den Befehl „Barrierefreie Ansicht öffnen“, der zurzeit nicht über eine Tastenzuordnung ausgelöst werden kann.\r\n",
"allDone": "Als erledigt markieren",
"checkboxTitle": "Wenn diese Option aktiviert ist, wird diese Seite beim Start angezeigt.",
"close": "Ausblenden",
+ "closeAriaLabel": "Ausblenden",
"footer": "{0} erfasst Nutzungsdaten. Lesen Sie unsere {1} und erfahren Sie, wie Sie {2}.",
- "getStarted": "Erste Schritte",
"gettingStarted.allStepsComplete": "Alle {0} Schritte abgeschlossen!",
"gettingStarted.editingEvolved": "Fortschrittliche Bearbeitung",
"gettingStarted.keyboardTip": "Tipp: Verwenden Sie die Tastenkombination",
"gettingStarted.someStepsComplete": "{0} von {1} Schritten abgeschlossen",
+ "goBack": "Zurück",
"imageShowing": "Bild zeigt {0}",
"new": "Neu",
"newItems": "Aktualisiert",
@@ -10247,40 +16418,51 @@
"show more recents": "Alle zuletzt geöffneten Ordner anzeigen {0}",
"showAll": "Weitere...",
"start": "Start",
+ "stepDone": "Kontrollkästchen für Schritt {0}: Abgeschlossen",
+ "stepNotDone": "Kontrollkästchen für Schritt {0}: Nicht abgeschlossen",
"toStart": "um zu beginnen.",
+ "videoAltText": "Video für {0}",
+ "videoShowing": "Video mit {0}",
"walkthroughs": "Exemplarische Vorgehensweisen",
+ "welcome": "Willkommen",
"welcomeAriaLabel": "Übersicht für den schnellen Einstieg in Ihren Editor.",
"welcomePage.openFolderWithPath": "Ordner {0} mit Pfad {1} öffnen",
"welcomePage.showOnStartup": "Willkommensseite beim Start anzeigen"
},
"vs/workbench/contrib/welcomeGettingStarted/browser/gettingStarted.contribution": {
"deprecationMessage": "Veraltet, verwenden Sie das globale `workbench.reduceMotion`.",
- "getStarted": "Erste Schritte",
- "help": "Hilfe",
- "miGetStarted": "Erste Schritte",
- "pickWalkthroughs": "Exemplarische Vorgehensweise öffnen...",
+ "miWelcome": "Willkommen",
+ "minWelcomeDescription": "Öffnet eine exemplarische Vorgehensweise, die Ihnen den Einstieg in VS Code erleichtert.",
+ "pickWalkthroughs": "Wählen Sie eine exemplarische Vorgehensweise zum Öffnen aus.",
+ "welcome": "Willkommen",
"welcome.goBack": "Zurück",
"welcome.markStepComplete": "Schritt als abgeschlossen markieren",
"welcome.markStepInomplete": "Schritt als nicht abgeschlossen markieren",
"welcome.showAllWalkthroughs": "Exemplarische Vorgehensweise öffnen...",
"workbench.startupEditor": "Steuert, welcher Editor beim Start angezeigt wird, wenn keiner aus der vorherigen Sitzung wiederhergestellt wird.",
- "workbench.startupEditor.newUntitledFile": "Öffnen Sie eine neue unbenannte Datei (gilt nur beim Öffnen eines neuen Fensters).",
+ "workbench.startupEditor.newUntitledFile": "Öffnen Sie eine neue unbenannte Textdatei (gilt nur beim Öffnen eines leeren Fensters).",
"workbench.startupEditor.none": "Ohne Editor starten.",
"workbench.startupEditor.readme": "Öffnen Sie die Infodatei, sofern eine im geöffneten Ordner enthalten ist. Andernfalls erfolgt ein Fallback auf „welcomePage“. Hinweis: Dies wird nur als globale Konfiguration betrachtet. Sie wird ignoriert, wenn sie in einer Arbeitsbereichs-oder Ordnerkonfiguration festgelegt wird.",
+ "workbench.startupEditor.terminal": "Ein neues Terminal im Editorbereich öffnen.",
"workbench.startupEditor.welcomePage": "Öffnen Sie die neue Willkommensseite mit Inhalten, die Sie beim Einstieg in VS Code und Erweiterungen unterstützen.",
"workbench.startupEditor.welcomePageInEmptyWorkbench": "Willkommensseite öffnen, wenn eine leere Workbench geöffnet wird.",
"workbench.welcomePage.preferReducedMotion": "Verringern Sie die Bewegung auf der Willkommensseite, wenn diese Option aktiviert ist.",
- "workbench.welcomePage.videoTutorials": "Wenn diese Option aktiviert ist, enthält die Seite „Erste Schritte“ zusätzliche Links zu Videotutorials.",
"workbench.welcomePage.walkthroughs.openOnInstall": "Wenn diese Option aktiviert ist, wird die exemplarische Vorgehensweise einer Erweiterung bei der Installation der Erweiterung geöffnet.",
"workspacePlatform": "Die Plattform des aktuellen Arbeitsbereichs, die sich in Remote- oder serverlosen Kontexten von der Plattform der Benutzeroberfläche unterscheiden kann."
},
+ "vs/workbench/contrib/welcomeGettingStarted/browser/gettingStartedAccessibleView": {
+ "gettingStarted.description": "Beschreibung: {0}",
+ "gettingStarted.step": "{0}\r\n{1}",
+ "gettingStarted.title": "Titel: {0}"
+ },
"vs/workbench/contrib/welcomeGettingStarted/browser/gettingStartedColors": {
+ "walkthrough.stepTitle.foreground": "Vordergrundfarbe der Überschrift jedes Schritts mit exemplarischer Vorgehensweise",
"welcomePage.background": "Hintergrundfarbe für die Startseite.",
"welcomePage.progress.background": "Vordergrundfarbe für die Statusleisten der Willkommensseite.",
"welcomePage.progress.foreground": "Hintergrundfarbe für die Statusleisten der Willkommensseite.",
- "welcomePage.tileBackground": "Hintergrundfarbe für die Kacheln auf der Seite \"Erste Schritte\".",
- "welcomePage.tileHoverBackground": "Hoverhintergrundfarbe für die Kacheln auf der Seite \"Erste Schritte\".",
- "welcomePage.tileShadow": "Die Schattenfarbe für Kategorieschaltflächen exemplarischer Vorgehensweisen auf der Willkommensseite."
+ "welcomePage.tileBackground": "Hintergrundfarbe für die Kacheln auf der Willkommensseite.",
+ "welcomePage.tileBorder": "Rahmenfarbe für die Kacheln auf der Willkommensseite.",
+ "welcomePage.tileHoverBackground": "Hoverhintergrundfarbe für die Kacheln auf der Willkommensseite."
},
"vs/workbench/contrib/welcomeGettingStarted/browser/gettingStartedExtensionPoint": {
"pathDeprecated": "Veraltet. Verwenden Sie stattdessen \"Image\" oder \"Markdown\".",
@@ -10288,6 +16470,7 @@
"walkthroughs": "Exemplarische Vorgehensweisen beitragen, damit Benutzer mit ihrer Erweiterung beginnen können.",
"walkthroughs.description": "Beschreibung der exemplarischen Vorgehensweise.",
"walkthroughs.featuredFor": "Exemplarische Vorgehensweisen, die mit einem dieser Glob-Muster übereinstimmen, werden in Arbeitsbereichen mit den angegebenen Dateien als \"Featured\" angezeigt. In einer exemplarischen Vorgehensweise für \"Transcript Projects\" wird hier möglicherweise \"tsconfig.json\" angegeben.",
+ "walkthroughs.icon": "Relativer Pfad zum Symbol der exemplarischen Vorgehensweise. Der Pfad ist relativ zum Erweiterungsspeicherort. Wenn keine Angabe erfolgt, wird standardmäßig das Erweiterungssymbol verwendet, sofern verfügbar.",
"walkthroughs.id": "Eindeutiger Bezeichner für diese exemplarische Vorgehensweise.",
"walkthroughs.steps": "Schritte, die im Rahmen dieser exemplarischen Vorgehensweise durchgeführt werden.",
"walkthroughs.steps.button.deprecated.interpolated": "Veraltet. Verwenden Sie stattdessen Markdown-Links in der Beschreibung, z. B. {0}, {1} oder {2}",
@@ -10323,44 +16506,76 @@
"gettingStartedUnchecked": "Stellt die Schritte dar, die noch nicht abgeschlossen wurden"
},
"vs/workbench/contrib/welcomeGettingStarted/browser/gettingStartedInput": {
- "getStarted": "Erste Schritte"
+ "getStarted": "Willkommen",
+ "walkthroughPageTitle": "Exemplarische Vorgehensweise: {0}"
},
"vs/workbench/contrib/welcomeGettingStarted/browser/gettingStartedService": {
"builtin": "Integriert",
"developer": "Developer",
+ "resetGettingStartedProgressDescription": "Setzen Sie den Fortschritt aller Schritte der exemplarischen Vorgehensweise auf der Willkommensseite zurück, damit sie so angezeigt werden, als ob sie zum ersten Mal angezeigt werden, was einen neuen Start mit „Erste Schritte“ ermöglicht.",
"resetWelcomePageWalkthroughProgress": "Zurücksetzen des Fortschritts der exemplarischen Vorgehensweise auf der Willkommensseite"
},
+ "vs/workbench/contrib/welcomeGettingStarted/browser/startupPage": {
+ "startupPage.markdownPreviewError": "Markdownvorschau konnte nicht geöffnet werden: {0}.\r\n\r\nStellen Sie sicher, dass die Markdownerweiterung aktiviert ist.",
+ "welcome.displayName": "Willkommensseite"
+ },
"vs/workbench/contrib/welcomeGettingStarted/common/gettingStartedContent": {
"browseLangExts": "Spracherweiterungen durchsuchen",
- "browsePopular": "Beliebte Weberweiterungen durchsuchen",
- "browseRecommended": "Empfohlene Erweiterungen durchsuchen",
+ "browsePopular": "Beliebte Erweiterungen durchsuchen",
+ "browsePopularWeb": "Beliebte Weberweiterungen durchsuchen",
"cloneRepo": "Repository klonen",
"commandPalette": "Befehlspalette öffnen",
- "enableSync": "Einstellungssynchronisierung aktivieren",
+ "enableSync": "Einstellungen für Sicherung und Synchronisierung",
"enableTrust": "Vertrauensstellung aktivieren",
"getting-started-beginner-icon": "Symbol für die Kategorie „Anfänger“ der Willkommensseite",
- "getting-started-intermediate-icon": "Symbol für die Kategorie „Fortgeschritten“ der Willkommensseite",
"getting-started-setup-icon": "Symbol für die Kategorie „Setup“ der Willkommensseite",
- "gettingStarted.beginner.description": "Steigen Sie sofort in VS Code ein, und erhalten Sie einen Überblick über die wichtigsten Features.",
+ "gettingStarted.accessibilityHelp.description.interpolated": "Das Hilfedialogfeld für Barrierefreiheit enthält Informationen dazu, was sie von einem Feature erwarten können, sowie die Befehle/Tastenzuordnungen, um sie zu betreiben.\r\n Mit Fokus in einem Editor, Terminal, Notebook, Chatantwort, Kommentar oder einer Debugkonsole kann das relevante Dialogfeld mit dem Befehl „Barrierefreiheitshilfe öffnen“ geöffnet werden.\r\n{0}",
+ "gettingStarted.accessibilityHelp.title": "Verwenden Sie das Hilfedialogfeld für Barrierefreiheit, um Informationen zu Features zu erhalten.",
+ "gettingStarted.accessibilitySettings.description.interpolated": "Barrierefreiheitseinstellungen können durch Ausführen des Befehls „Barrierefreiheitseinstellungen öffnen“ konfiguriert werden.\r\n{0}",
+ "gettingStarted.accessibilitySettings.title": "Barrierefreiheitseinstellungen konfigurieren",
+ "gettingStarted.accessibilitySignals.description.interpolated": "Barrierefreiheitssounds und Ankündigungen werden rund um die Workbench für verschiedene Ereignisse wiedergegeben.\r\n Diese können mithilfe der Befehle „Signalsounds auflisten“ und „Signalankündigungen auflisten“ ermittelt und konfiguriert werden.\r\n{0}\r\n{1}",
+ "gettingStarted.accessibilitySignals.title": "Optimieren Sie, welche Barrierefreiheitssignale Sie per Audio oder Braille empfangen möchten.",
+ "gettingStarted.accessibleView.description.interpolated": "Die barrierefreie Ansicht ist für Terminal, Hovers, Benachrichtigungen, Kommentare, Notebookausgabe, Chatantworten, Inlinevervollständigungen und Debugkonsolenausgabe verfügbar.\r\n Mit Fokus auf eines dieser Features kann es mit dem Befehl „Barrierefreie Ansicht öffnen“ geöffnet werden.\r\n{0}",
+ "gettingStarted.accessibleView.title": "Benutzer der Sprachausgabe können die Inhalte zeilenweise und zeichenweise in der barrierefreien Ansicht überprüfen.",
+ "gettingStarted.beginner.description": "Verschaffen Sie sich einen Überblick über die wichtigsten Funktionen.",
"gettingStarted.beginner.title": "Grundlagen erlernen",
- "gettingStarted.commandPalette.description.interpolated": "Befehle sind die Tastaturmethode, um jede Aufgabe in VS Code auszuführen. **Üben Sie**, indem Sie Ihre häufigen Befehle suchen, um Zeit zu sparen.\r\n{0}\r\n__Versuchen Sie nach „Ansicht umschalten“ zu suchen.__",
- "gettingStarted.commandPalette.title": "Eine Tastenkombination, um auf alles zugreifen zu können",
+ "gettingStarted.beginner.walkthroughPageTitle": "Grundlegende Features",
+ "gettingStarted.codeFolding.description.interpolated": "Falten oder entfalten Sie einen Codeabschnitt mit dem Befehl „Faltung umschalten“.\r\n{0}\r\n Falten oder entfalten Sie rekursiv mit dem Befehl „Faltung rekursiv umschalten“\r\n{1}\r\n",
+ "gettingStarted.codeFolding.title": "Verwenden Sie die Codefaltung, um Codeblöcke zu reduzieren und sich auf den Code zu konzentrieren, an dem Sie interessiert sind.",
+ "gettingStarted.commandPalette.description.interpolated": "Führen Sie Befehle aus, ohne die Maus zu erreichen, um eine Aufgabe in VS Code auszuführen.\r\n{0}",
+ "gettingStarted.commandPalette.title": "Produktivität mit der Befehlspalette steigern ",
+ "gettingStarted.commandPaletteAccessibility.description.interpolated": "Führen Sie Befehle ohne Maus aus, um eine Aufgabe in VS Code auszuführen.\r\n{0}",
+ "gettingStarted.commandPaletteAccessibility.title": "Steigern der Produktivität mit der Befehlspalette ",
+ "gettingStarted.copilotSetup.description": "Sie können [Copilot]({0}) verwenden, um mithilfe natürlicher Sprache Code in mehreren Dateien zu generieren, Fehler zu beheben, Fragen zu Ihrem Code zu stellen und vieles mehr.",
+ "gettingStarted.copilotSetup.terms": "Wenn Sie mit {0} Copilot fortfahren, stimmen Sie den [Nutzungsbedingungen]({2}) und [Datenschutzbestimmungen]({3}) von {1} zu.",
+ "gettingStarted.copilotSetup.title": "KI-Features mit Copilot kostenlos verwenden",
"gettingStarted.debug.description.interpolated": "Beschleunigen Sie die Bearbeitungs-, Build-, Test- und Debugschleife durch Einrichten einer Startkonfiguration.\r\n{0}",
"gettingStarted.debug.title": "Code in Aktion ansehen",
+ "gettingStarted.dictation.description.interpolated": "Mit der Diktatfunktion können Sie Code und Text mit Ihrer Stimme schreiben. Sie lässt sich mit dem Befehl „Voice: Start Dictation in Editor“ aktivieren.\r\n{0}\r\n Für die Diktatfunktion im Terminal verwenden Sie die Befehle „Voice: Start Dictation in Terminal“ und „Voice: Stop Dictation in Terminal“.\r\n{1}\r\n{2}",
+ "gettingStarted.dictation.title": "Verwenden der Diktatfunktion, um Code und Text im Editor und Terminal zu schreiben",
"gettingStarted.extensions.description.interpolated": "Durch Erweiterungen können Sie VS Code noch umfassender nutzen. Diese reichen von praktischen Hacks zur Produktivitätssteigerung über Erweiterungen für vorkonfigurierte Features bis hin zu völlig neuen Funktionen.\r\n{0}",
- "gettingStarted.extensions.title": "Unbegrenzte Erweiterbarkeit",
+ "gettingStarted.extensions.title": "Programmieren mit Erweiterungen",
"gettingStarted.extensionsWeb.description.interpolated": "Erweiterungen sind Verstärkungen für VS Code. Eine wachsende Zahl wird im Web verfügbar.\r\n{0}",
- "gettingStarted.findLanguageExts.description.interpolated": "Programmieren Sie intelligenter mit Syntaxhervorhebung, Codevervollständigung, Linten und Debuggen. Viele Sprachen sind bereits integriert, aber es können noch viele weitere als Erweiterungen hinzugefügt werden.\r\n{0}",
+ "gettingStarted.findLanguageExts.description.interpolated": "Programmieren Sie intelligenter mit Syntaxhervorhebung, Inlinevorschlägen, Linten und Debuggen. Viele Sprachen sind bereits integriert, aber es können noch viele weitere als Erweiterungen hinzugefügt werden.\r\n{0}",
"gettingStarted.findLanguageExts.title": "Umfassende Unterstützung für alle Sprachen",
- "gettingStarted.installGit.description.interpolated": "Installieren Sie Git, um Änderungen in Ihren Projekten nachzuverfolgen.\r\n{0}",
+ "gettingStarted.goToSymbol.description.interpolated": "Der Befehl „Gehe zu Symbol“ ist nützlich, um zwischen wichtigen Landmarks in einem Dokument zu navigieren.\r\n{0}",
+ "gettingStarted.goToSymbol.title": "Zu Symbolen in einer Datei navigieren",
+ "gettingStarted.hover.description.interpolated": "Während sich der Fokus im Editor auf einer Variablen oder einem Symbol befindet, kann ein Daraufzeigen mit dem Daraufzeigebefehl „Zeigen“ oder „Öffnen“ fokussiert werden.\r\n{0}",
+ "gettingStarted.hover.title": "Greifen Sie auf das Daraufzeigen im Editor zu, um weitere Informationen zu einer Variablen oder einem Symbol zu erhalten.",
+ "gettingStarted.installGit.description.interpolated": "Installieren Sie Git, um Änderungen an Ihren Projekten zu verfolgen.\r\n{0}\r\n{1}Fenster neu laden{2} nach der Installation, um die Einrichtung von Git abzuschließen.",
"gettingStarted.installGit.title": "Git installieren",
- "gettingStarted.intermediate.description": "Optimieren Sie Ihren Entwicklungsworkflow mit diesen Tipps und Tricks.",
- "gettingStarted.intermediate.title": "Steigern Ihrer Produktivität",
- "gettingStarted.menuBar.description.interpolated": "Die vollständige Menüleiste ist im Dropdownmenü verfügbar, um Platz für Ihren Code zu schaffen. Schalten Sie die Darstellung für schnelleren Zugriff um. \r\n {0}",
+ "gettingStarted.intellisense.description.interpolated": "IntelliSense-Vorschläge können mit dem IntelliSense-Befehl „Auslösen“ geöffnet werden.\r\n{0}\r\n IntelliSense-Inlinevorschläge können mit „Trigger Inline Suggestions“ ausgelöst werden.\r\n{1}\r\n Zu den nützlichen Einstellungen gehören editor.inlineCompletionsAccessibilityVerbose und editor.screenReaderAnnounceInlineSuggestion.",
+ "gettingStarted.intellisense.title": "Verwenden von IntelliSense, um die Codierungseffizienz zu verbessern",
+ "gettingStarted.keyboardShortcuts.description.interpolated": "Nachdem Sie Ihre bevorzugten Befehle entdeckt haben, erstellen Sie benutzerdefinierte Tastenkombinationen für den sofortigen Zugriff.\r\n{0}",
+ "gettingStarted.keyboardShortcuts.title": "Anpassen der Tastenkombinationen",
+ "gettingStarted.menuBar.description.interpolated": "Um Platz für Ihren Code zu schaffen, ist die vollständige Menüleiste im Drop-down-Menü verfügbar. Schalten Sie die Darstellung zum Beschleunigen des Zugriffs um. \r\n{0}",
"gettingStarted.menuBar.title": "Genau das richtige Maß an Benutzeroberfläche",
- "gettingStarted.newFile.description": "Öffnen Sie eine neue unbenannte Datei, ein Notizbuch oder einen benutzerdefinierten Editor.",
+ "gettingStarted.newFile.description": "Öffnen Sie eine neue unbenannte Textdatei, ein Nootbook oder einen benutzerdefinierten Editor.",
"gettingStarted.newFile.title": "Neue Datei…",
+ "gettingStarted.newWorkspaceChat.description": "Chatten, um einen neuen Arbeitsbereich zu erstellen",
+ "gettingStarted.newWorkspaceChat.title": "Neuen Arbeitsbereich generieren ...",
"gettingStarted.notebook.title": "Notebooks anpassen",
+ "gettingStarted.notebook.walkthroughPageTitle": "Notebooks",
"gettingStarted.notebookProfile.description": "Richten Sie Notebooks so ein, dass sie sich genauso anfühlen, wie Sie es mögen.",
"gettingStarted.notebookProfile.title": "Wählen Sie das Layout für Ihre Notebooks aus.",
"gettingStarted.openFile.description": "Hiermit öffnen Sie eine Datei, um mit der Arbeit zu beginnen.",
@@ -10369,63 +16584,80 @@
"gettingStarted.openFolder.title": "Ordner öffnen...",
"gettingStarted.openMac.description": "Hiermit öffnen Sie eine Datei oder einen Ordner, um mit der Arbeit zu beginnen.",
"gettingStarted.openMac.title": "Öffnen...",
- "gettingStarted.pickColor.description.interpolated": "Die richtige Farbpalette hilft Ihnen, sich auf Ihren Code zu konzentrieren, ist angenehm für die Augen und macht einfach mehr Spaß.\r\n{0}",
- "gettingStarted.pickColor.title": "Wählen Sie die gewünschte Darstellung aus.",
- "gettingStarted.playground.description.interpolated": "Möchten Sie schneller und intelligenter programmieren? Üben Sie leistungsstarke Codebearbeitungsfunktionen im interaktiven Playground.\r\n{0}",
- "gettingStarted.playground.title": "Ihre Bearbeitungsfähigkeiten neu definieren",
+ "gettingStarted.pickColor.description.interpolated": "Das richtige Design hilft Ihnen, sich auf Ihren Code zu konzentrieren, ist angenehm für die Augen und macht einfach mehr Spaß.\r\n{0}",
+ "gettingStarted.pickColor.title": "Design auswählen",
"gettingStarted.quickOpen.description.interpolated": "Mit nur einem Tastaturanschlag können Sie sofort zwischen Dateien wechseln. Tipp: Öffnen Sie mehrere Dateien durch Drücken der NACH-RECHTS-TASTE.\r\n{0}",
"gettingStarted.quickOpen.title": "Schnelles Navigieren zwischen Ihren Dateien",
"gettingStarted.scm.description.interpolated": "Kein Suchen nach Git-Befehlen mehr! Git- und GitHub-Workflows sind nahtlos integriert.\r\n{0}",
"gettingStarted.scm.title": "Code mit Git nachverfolgen",
"gettingStarted.scmClone.description.interpolated": "Richten Sie die integrierte Versionskontrolle für Ihr Projekt ein, um Ihre Änderungen nachzuverfolgen und mit anderen zusammenzuarbeiten.\r\n{0}",
"gettingStarted.scmSetup.description.interpolated": "Richten Sie die integrierte Versionskontrolle für Ihr Projekt ein, um Ihre Änderungen nachzuverfolgen und mit anderen zusammenzuarbeiten.\r\n{0}",
- "gettingStarted.settings.description.interpolated": "Alle Aspekte von VS Code und Ihre Erweiterungen lassen sich ganz auf Ihre Anforderungen abstimmen. Häufig verwendete Einstellungen werden zuerst aufgelistet, um Ihnen den Einstieg zu erleichtern.\r\n{0}",
"gettingStarted.settings.title": "Optimieren Ihrer Einstellungen",
- "gettingStarted.settingsSync.description.interpolated": "Halten Sie Ihre wesentlichen VS Code-Anpassungen auf allen Ihren Geräten gesichert und aktualisiert.\r\n{0}",
- "gettingStarted.settingsSync.title": "Synchronisieren mit und von anderen Geräten",
- "gettingStarted.setup.OpenFolder.description.interpolated": "Jetzt können Sie mit dem Programmieren beginnen. Öffnen Sie einen Projektordner, um Ihre Dateien in VS Code zu verschieben.\r\n{0}",
+ "gettingStarted.settingsAndSync.description.interpolated": "Passen Sie jeden Aspekt von VS Code an und [synchronisieren Sie](command:workbench.userDataSync.actions.turnOn) Anpassungen geräteübergreifend.\r\n{0}",
+ "gettingStarted.settingsSync.description.interpolated": "Halten Sie Ihre wesentlichen Anpassungen auf allen Ihren Geräten gesichert und aktualisiert.\r\n{0}",
+ "gettingStarted.settingsSync.title": "Einstellungen geräteübergreifend synchronisieren",
"gettingStarted.setup.OpenFolder.title": "Ihren Code öffnen",
"gettingStarted.setup.OpenFolderWeb.description.interpolated": "Sie sind bereit, mit dem Programmieren zu beginnen. Sie können ein lokales Projekt oder ein Remote-Repository öffnen, um Ihre Dateien in VS Code zu übertragen.\r\n{0}\r\n{1}",
- "gettingStarted.setup.description": "Entdecken Sie die besten Anpassungen, mit denen Sie VS Code ganz nach Ihren Wünschen gestalten können.",
- "gettingStarted.setup.title": "VS Code Erste Schritte",
- "gettingStarted.setupWeb.description": "Entdecken Sie die besten Anpassungen, um VS Code im Web für Sie anzupassen.",
- "gettingStarted.setupWeb.title": "Los geht's mit VS Code im Web",
+ "gettingStarted.setup.description": "Passen Sie Ihren Editor an, lernen Sie die Grundlagen kennen, und beginnen Sie mit dem Programmieren.",
+ "gettingStarted.setup.title": "Erste Schritte mit VS Code",
+ "gettingStarted.setup.walkthroughPageTitle": "VS Code einrichten",
+ "gettingStarted.setupAccessibility.description": "Erfahren Sie mehr über die Tools und Verknüpfungen, mit denen VS Code zugänglich sind. Beachten Sie, dass einige Aktionen innerhalb des Kontexts der exemplarischen Vorgehensweise nicht ausgeführt werden können.",
+ "gettingStarted.setupAccessibility.title": "Erste Schritte mit Barrierefreiheitsfeatures",
+ "gettingStarted.setupAccessibility.walkthroughPageTitle": "VS Code Bedienungshilfen einrichten",
+ "gettingStarted.setupWeb.description": "Passen Sie Ihren Editor an, lernen Sie die Grundlagen kennen, und beginnen Sie mit dem Programmieren.",
+ "gettingStarted.setupWeb.title": "Erste Schritte mit VS Code für das Web",
+ "gettingStarted.setupWeb.walkthroughPageTitle": "VS Code Web einrichten",
"gettingStarted.shortcuts.description.interpolated": "Nachdem Sie Ihre bevorzugten Befehle entdeckt haben, erstellen Sie benutzerdefinierte Tastenkombinationen für den sofortigen Zugriff.\r\n{0}",
"gettingStarted.shortcuts.title": "Anpassen Ihrer Tastenkombinationen",
- "gettingStarted.splitview.description.interpolated": "Nutzen Sie Ihre Bildschirm-Estate-Ansicht, indem Sie Dateien nebeneinander, vertikal und horizontal öffnen.\r\n{0}",
- "gettingStarted.splitview.title": "Mit Ansicht \"Nebeneinander\" bearbeiten",
"gettingStarted.tasks.description.interpolated": "Erstellen Sie Aufgaben für Ihre gemeinsamen Workflows, und profitieren Sie von der integrierten Funktion Skripts auszuführen und Ergebnisse automatisch zu überprüfen.\r\n{0}",
"gettingStarted.tasks.title": "Automatisieren von Projektaufgaben",
"gettingStarted.terminal.description.interpolated": "Führen Sie schnell Shellbefehle aus, und überwachen Sie die Buildausgabe direkt neben Ihrem Code.\r\n{0}",
- "gettingStarted.terminal.title": "Praktisches integriertes Terminal",
+ "gettingStarted.terminal.title": "Integriertes Terminal",
"gettingStarted.topLevelGitClone.description": "Klonen eines Remote-Repositorys in einen lokalen Ordner",
"gettingStarted.topLevelGitClone.title": "Git-Repository klonen...",
"gettingStarted.topLevelGitOpen.description": "Verbinden mit einem Remote-Repository oder Pull Request zum Durchsuchen, Suchen, Bearbeiten und Committen",
"gettingStarted.topLevelGitOpen.title": "Repository öffnen...",
- "gettingStarted.topLevelShowWalkthroughs.description": "Exemplarische Vorgehensweise für den Editor oder eine Erweiterung anzeigen",
- "gettingStarted.topLevelShowWalkthroughs.title": "Öffnen einer exemplarischen Vorgehensweise...",
- "gettingStarted.topLevelVideoTutorials.description": "Sehen Sie sich unsere Serie von kurzen und praktischen Videotutorials zu den wichtigsten VS Code-Features an.",
- "gettingStarted.topLevelVideoTutorials.title": "Videotutorials ansehen",
+ "gettingStarted.topLevelOpenTunnel.description": "Herstellen einer Verbindung mit einem Remotecomputer über einen Tunnel",
+ "gettingStarted.topLevelOpenTunnel.title": "Tunnel öffnen...",
+ "gettingStarted.topLevelRemoteOpen.description": "Stellen Sie eine Verbindung mit Remote-Entwicklungsarbeitsbereichen her.",
+ "gettingStarted.topLevelRemoteOpen.title": "Verbinden mit…",
+ "gettingStarted.verbositySettings.description.interpolated": "Für Features rund um die Workbench sind Ausführlichkeitseinstellungen für die Sprachausgabe vorhanden, sodass ein Benutzer, sobald er mit einem Feature vertraut ist, Hinweise zur Funktionsweise vermeiden kann. Features, für die ein Dialogfeld zur Barrierefreiheitshilfe vorhanden ist, zeigen z. B. an, wie das Dialogfeld geöffnet wird, bis die Ausführlichkeitseinstellung für dieses Feature deaktiviert wurde.\r\n Diese und andere Barrierefreiheitseinstellungen können durch Ausführen des Befehls „Barrierefreiheitseinstellungen öffnen“ konfiguriert werden.\r\n{0}",
+ "gettingStarted.verbositySettings.title": "Ausführlichkeit von aria-Bezeichnungen steuern",
"gettingStarted.videoTutorial.description.interpolated": "Sehen Sie sich das erste in einer Reihe von kurzen und praktischen Videotutorials zu den wichtigsten VS Code-Features an.\r\n{0}",
- "gettingStarted.videoTutorial.title": "Entspanntes Lernen",
+ "gettingStarted.videoTutorial.title": "Videotutorials ansehen",
"gettingStarted.workspaceTrust.description.interpolated": "Mit {0} können Sie entscheiden, ob Ihre Projektordner die automatische Codeausführung **zulassen oder einschränken** sollen __(erforderlich für Erweiterungen, Debugging usw.)__.\r\nBeim Öffnen einer Datei/eines Ordners werden Sie aufgefordert, Vertrauen zu gewähren. Sie können dies später jederzeit {1}.",
"gettingStarted.workspaceTrust.title": "Code sicher durchsuchen und bearbeiten",
"initRepo": "Git-Repository initialisieren",
"installGit": "Git installieren",
"keyboardShortcuts": "Tastenkombinationen",
- "openEditorPlayground": "Editor-Playground öffnen",
+ "listSignalAnnouncements": "Signalankündigungen auflisten",
+ "listSignalSounds": "Signaltöne auflisten",
+ "openAccessibilityHelp": "Hilfe zur Barrierefreiheit öffnen",
+ "openAccessibilitySettings": "Barrierefreiheitseinstellungen öffnen",
+ "openAccessibleView": "Barrierefreie Ansicht öffnen",
"openFolder": "Ordner öffnen",
+ "openGoToSymbol": "Gehe zu Symbol",
"openRepository": "Repository öffnen",
"openSCM": "Quellcodeverwaltung öffnen",
- "pickFolder": "Ordner auswählen",
+ "openVerbositySettings": "Barrierefreiheitseinstellungen öffnen",
"quickOpen": "Datei über Quick Open öffnen",
"runProject": "Ausführen Ihres Projekts",
"runTasks": "Automatisch erkannte Aufgaben ausführen",
- "showTerminal": "Terminalbereich anzeigen",
- "splitEditor": "Editor teilen",
+ "settings": "{0} Copilot kann Vorschläge für [öffentlichen Code]({1}) anzeigen und Ihre Daten verwenden, um das Produkt zu verbessern. Sie können diese [Einstellungen]({2}) jederzeit ändern.",
+ "setupCopilotButton.chatWithCopilot": "Chat starten",
+ "setupCopilotButton.setup": "KI-Features verwenden",
+ "showOrFocusHover": "Anzeigen oder Fokus beim Daraufzeigen",
+ "showTerminal": "Terminal öffnen",
+ "terminalStartDictation": "Terminal: Start Dictation in Terminal",
+ "terminalStopDictation": "Terminal: Stop Dictation in Terminal",
"titleID": "Farbdesigns durchsuchen",
+ "toggleDictation": "Voice: Start Dictation in Editor",
+ "toggleFold": "Einklappung umschalten",
+ "toggleFoldRecursively": "Rekursiv falten umschalten",
"toggleMenuBar": "Menüleiste umschalten",
- "tweakSettings": "Optimieren meiner Einstellungen",
+ "triggerInlineSuggestion": "Inline-Vorschlag auslösen",
+ "triggerIntellisense": "IntelliSense auslösen",
+ "tweakSettings": "Einstellungen öffnen",
"watch": "Tutorial ansehen",
"workspaceTrust": "Vertrauensstellung des Arbeitsbereichs"
},
@@ -10437,10 +16669,16 @@
"vs/workbench/contrib/welcomeGettingStarted/common/media/theme_picker": {
"HighContrast": "Dunkel hoher Kontrast",
"HighContrastLight": "Hell hoher Kontrast",
- "dark": "Dunkel",
- "light": "Hell",
+ "dark": "Dunkel modern",
+ "light": "Hell modern",
"seeMore": "Weitere Designs anzeigen..."
},
+ "vs/workbench/contrib/welcomeGettingStarted/common/media/theme_picker_small": {
+ "HighContrast": "Dunkel hoher Kontrast",
+ "HighContrastLight": "Hell hoher Kontrast",
+ "dark": "Dunkel modern",
+ "light": "Hell modern"
+ },
"vs/workbench/contrib/welcomeOverlay/browser/welcomeOverlay": {
"hideWelcomeOverlay": "Schnittstellenüberblick ausblenden",
"welcomeOverlay": "Benutzeroberflächenüberblick",
@@ -10452,15 +16690,8 @@
"welcomeOverlay.notifications": "Benachrichtigungen anzeigen",
"welcomeOverlay.problems": "Fehler und Warnungen anzeigen",
"welcomeOverlay.search": "Dateiübergreifend suchen",
- "welcomeOverlay.terminal": "Integriertes Terminal umschalten"
- },
- "vs/workbench/contrib/welcomePage/browser/welcomePage.contribution": {
- "workbench.startupEditor": "Steuert, welcher Editor beim Start angezeigt wird, wenn keiner aus der vorherigen Sitzung wiederhergestellt wird.",
- "workbench.startupEditor.newUntitledFile": "Öffnen Sie eine neue unbenannte Datei (gilt nur beim Öffnen eines neuen Fensters).",
- "workbench.startupEditor.none": "Ohne Editor starten.",
- "workbench.startupEditor.readme": "Öffnen Sie die Infodatei, sofern eine im geöffneten Ordner enthalten ist. Andernfalls erfolgt ein Fallback auf „welcomePage“. Hinweis: Dies wird nur als globale Konfiguration betrachtet. Sie wird ignoriert, wenn sie in einer Arbeitsbereichs-oder Ordnerkonfiguration festgelegt wird.",
- "workbench.startupEditor.welcomePage": "Öffnen Sie die neue Willkommensseite mit Inhalten, die Sie beim Einstieg in VS Code und Erweiterungen unterstützen.",
- "workbench.startupEditor.welcomePageInEmptyWorkbench": "Willkommensseite öffnen, wenn eine leere Workbench geöffnet wird."
+ "welcomeOverlay.terminal": "Integriertes Terminal umschalten",
+ "welcomeOverlayBackground": "„welcomeOverlay“-Hintergrundfarbe."
},
"vs/workbench/contrib/welcomeViews/common/newFile.contribution": {
"Built-In": "Integriert",
@@ -10468,9 +16699,10 @@
"change keybinding": "Tastenzuordnung konfigurieren",
"file": "Datei",
"miNewFile2": "Textdatei",
- "miNewFileWithName": "Neue Datei ({0})",
+ "miNewFileWithName": "Neue Datei erstellen ({0})",
+ "newFilePlaceholder": "Dateityp auswählen oder Dateinamen eingeben...",
+ "newFileTitle": "Neue Datei…",
"notebook": "Notebook",
- "selectFileType": "Dateityp auswählen...",
"welcome.newFile": "Neue Datei…"
},
"vs/workbench/contrib/welcomeViews/common/viewsWelcomeContribution": {
@@ -10487,57 +16719,56 @@
},
"vs/workbench/contrib/welcomeWalkthrough/browser/editor/editorWalkThrough": {
"editorWalkThrough": "Interaktiver Editor-Playground",
- "editorWalkThrough.title": "Editor-Playground"
+ "editorWalkThrough.title": "Editor-Playground",
+ "editorWalkThroughMetadata": "Öffnet einen interaktiven Playground, um mehr über den Editor zu erfahren."
},
"vs/workbench/contrib/welcomeWalkthrough/browser/walkThrough.contribution": {
"miPlayground": "Editor-Playgrou&&nd",
"walkThrough.editor.label": "Playground"
},
"vs/workbench/contrib/welcomeWalkthrough/browser/walkThroughPart": {
- "walkThrough.embeddedEditorBackground": "Hintergrundfarbe für die eingebetteten Editoren im interaktiven Playground.",
"walkThrough.gitNotFound": "Git scheint auf Ihrem System nicht installiert zu sein.",
"walkThrough.unboundCommand": "ungebunden"
},
+ "vs/workbench/contrib/welcomeWalkthrough/common/walkThroughUtils": {
+ "walkThrough.embeddedEditorBackground": "Hintergrundfarbe für die eingebetteten Editoren im interaktiven Playground."
+ },
"vs/workbench/contrib/workspace/browser/workspace.contribution": {
- "addWorkspaceFolderDetail": "Sie fügen Dateien zu einem vertrauenswürdigen Arbeitsbereich hinzu, der zurzeit nicht vertrauenswürdig ist. Vertrauen Sie den Autoren dieser neuen Dateien?",
+ "addWorkspaceFolderDetail": "Sie fügen Dateien, die zurzeit nicht vertrauenswürdig sind, zu einem vertrauenswürdigen Arbeitsbereich hinzu. Vertrauen Sie den Autoren dieser neuen Dateien?",
"addWorkspaceFolderMessage": "Vertrauen Sie den Autoren der Dateien in diesem Ordner?",
- "cancel": "Abbrechen",
"cancelWorkspaceTrustButton": "Abbrechen",
"checkboxString": "Den Autoren aller Dateien im übergeordneten Ordner \"{0}\" vertrauen",
- "configureWorkspaceTrust": "Vertrauensstellung des Arbeitsbereichs konfigurieren",
+ "configureWorkspaceTrustSettings": "Vertrauensstellungseinstellungen des Arbeitsbereichs konfigurieren",
"dontTrustFolderOptionDescription": "Ordner im eingeschränkten Modus durchsuchen",
- "dontTrustOption": "Nein, ich vertraue den Autoren nicht",
+ "dontTrustOption": "&&Nein, ich vertraue den Autoren nicht",
"dontTrustWorkspaceOptionDescription": "Arbeitsbereich im eingeschränkten Modus durchsuchen",
"folderStartupTrustDetails": "{0} stellt Features bereit, die Dateien in diesem Ordner automatisch ausführen können.",
"folderTrust": "Vertrauen Sie den Autoren der Dateien in diesem Ordner?",
- "grantFolderTrustButton": "Ordner vertrauen und fortfahren",
- "grantWorkspaceTrustButton": "Arbeitsbereich vertrauen und fortfahren",
- "immediateTrustRequestLearnMore": "If you don't trust the authors of these files, we do not recommend continuing as the files may be malicious. See [our docs](https://aka.ms/vscode-workspace-trust) to learn more.",
+ "grantFolderTrustButton": "&&Ordner vertrauen und fortfahren",
+ "grantWorkspaceTrustButton": "&&Arbeitsbereich vertrauen und fortfahren",
+ "immediateTrustRequestLearnMore": "Wenn Sie den Autoren dieser Dateien nicht vertrauen, empfehlen wir nicht fortzufahren, da die Dateien bösartig sein könnten. Weitere Informationen finden Sie in unserer [Dokumentation](https://aka.ms/vscode-workspace-trust).",
"immediateTrustRequestMessage": "Ein Feature, das Sie verwenden möchten, stellt möglicherweise ein Sicherheitsrisiko dar, wenn Sie der Quelle der zurzeit geöffneten Dateien oder Ordner nicht vertrauen.",
"manageWorkspaceTrust": "Arbeitsbereichsvertrauensstellung verwalten",
- "manageWorkspaceTrustButton": "Verwalten",
- "newWindow": "Im eingeschränkten Modus öffnen",
+ "manageWorkspaceTrustButton": "&&Verwalten",
+ "newWindow": "&&Im eingeschränkten Modus öffnen",
"no": "Nein",
- "open": "Öffnen",
- "openLooseFileLearnMore": "If you don't trust the authors of these files, we recommend to open them in Restricted Mode in a new window as the files may be malicious. See [our docs](https://aka.ms/vscode-workspace-trust) to learn more.",
- "openLooseFileMesssage": "Vertrauen Sie den Autoren dieser Dateien?",
+ "open": "&&Öffnen",
+ "openLooseFileLearnMore": "Wenn Sie keine nicht vertrauenswürdigen Dateien öffnen wollen, empfehlen wir, sie im eingeschränkten Modus in einem neuen Fenster zu öffnen, da die Dateien bösartig sein könnten. Weitere Informationen finden Sie in [unserer Dokumentation](https://aka.ms/vscode-workspace-trust).",
"openLooseFileWindowDetails": "Sie versuchen, nicht vertrauenswürdige Dateien in einem vertrauenswürdigen Fenster zu öffnen.",
+ "openLooseFileWindowMesssage": "Möchten Sie nicht vertrauenswürdige Dateien in diesem Fenster zulassen?",
"openLooseFileWorkspaceCheckbox": "Meine Entscheidung für alle Arbeitsbereiche speichern",
"openLooseFileWorkspaceDetails": "Sie versuchen, nicht vertrauenswürdige Dateien in einem vertrauenswürdigen Arbeitsbereich zu öffnen.",
- "restrictedModeBannerAriaLabelFolder": "Der eingeschränkte Modus ist dafür konzipiert, den Quellcode sicher zu durchsuchen. Markieren Sie diesen Ordner, um alle Features zu aktivieren. Verwenden Sie Navigationstasten, um auf Banneraktionen zuzugreifen.",
+ "openLooseFileWorkspaceMesssage": "Möchten Sie nicht vertrauenswürdige Dateien in diesem Arbeitsbereich zulassen?",
+ "restrictedModeBannerAriaLabelFolder": "Der eingeschränkte Modus ist für sicheres Durchsuchen von Code vorgesehen. Vertrauen Sie diesem Ordner, um alle Features zu aktivieren. Verwenden Sie Navigationstasten, um auf Banneraktionen zuzugreifen.",
"restrictedModeBannerAriaLabelWindow": "Der eingeschränkte Modus ist für sicheres Durchsuchen von Code vorgesehen. Vertrauen Sie diesem Fenster, um alle Features zu aktivieren. Verwenden Sie Navigationstasten, um auf Banneraktionen zuzugreifen.",
"restrictedModeBannerAriaLabelWorkspace": "Der eingeschränkte Modus ist für sicheres Durchsuchen von Code vorgesehen. Vertrauen Sie diesem Arbeitsbereich, um alle Features zu aktivieren. Verwenden Sie Navigationstasten, um auf Banneraktionen zuzugreifen.",
"restrictedModeBannerLearnMore": "Weitere Informationen",
"restrictedModeBannerManage": "Verwalten",
- "restrictedModeBannerMessageFolder": "Der eingeschränkte Modus ist dafür konzipiert, den Quellcode sicher zu durchsuchen. Markieren Sie diesen Ordner, um alle Features zu aktivieren.",
+ "restrictedModeBannerMessageFolder": "Der eingeschränkte Modus ist für sicheres Durchsuchen von Code vorgesehen. Vertrauen Sie diesem Ordner, um alle Features zu aktivieren.",
"restrictedModeBannerMessageWindow": "Der eingeschränkte Modus ist für sicheres Durchsuchen von Code vorgesehen. Vertrauen Sie diesem Fenster, um alle Features zu aktivieren.",
"restrictedModeBannerMessageWorkspace": "Der eingeschränkte Modus ist für sicheres Durchsuchen von Code vorgesehen. Vertrauen Sie diesem Arbeitsbereich, um alle Features zu aktivieren.",
- "securityConfigurationTitle": "Sicherheit",
- "startupTrustRequestLearnMore": "If you don't trust the authors of these files, we recommend to continue in restricted mode as the files may be malicious. See [our docs](https://aka.ms/vscode-workspace-trust) to learn more.",
+ "startupTrustRequestLearnMore": "Wenn Sie den Autoren dieser Dateien nicht vertrauen, empfehlen wir, im eingeschränkten Modus fortzufahren, da die Dateien bösartig sein könnten. Weitere Informationen finden Sie in [unserer Dokumentation](https://aka.ms/vscode-workspace-trust).",
"status.WorkspaceTrust": "Arbeitsbereichsvertrauensstellung",
- "status.ariaTrustedFolder": "Dieser Ordner ist vertrauenswürdig.",
- "status.ariaTrustedWindow": "Dieses Fenster ist vertrauenswürdig.",
- "status.ariaTrustedWorkspace": "Dieser Arbeitsbereich ist vertrauenswürdig.",
"status.ariaUntrustedFolder": "Eingeschränkter Modus: Einige Features sind deaktiviert, da dieser Ordner nicht vertrauenswürdig ist.",
"status.ariaUntrustedWindow": "Eingeschränkter Modus: Einige Features sind deaktiviert, da dieses Fenster nicht vertrauenswürdig ist.",
"status.ariaUntrustedWorkspace": "Eingeschränkter Modus: Einige Features sind deaktiviert, da dieser Arbeitsbereich nicht vertrauenswürdig ist.",
@@ -10545,10 +16776,11 @@
"status.tooltipUntrustedWindow2": "Ausführung im eingeschränkten Modus\r\n\r\nEinige [Features sind deaktiviert]({0}), weil dieses [Fenster nicht vertrauenswürdig ist]({1}).",
"status.tooltipUntrustedWorkspace2": "Ausführung im eingeschränkten Modus\r\n\r\nEinige [Features sind deaktiviert]({0}), weil dieser [Arbeitsbereich nicht vertrauenswürdig ist]({1}).",
"trustFolderOptionDescription": "Ordner vertrauen und alle Features aktivieren",
- "trustOption": "Ja, ich vertraue den Autoren",
+ "trustOption": "&&Ja, ich vertraue den Autoren",
"trustWorkspaceOptionDescription": "Arbeitsbereich vertrauen und alle Features aktivieren",
+ "untrusted": "Eingeschränkter Modus",
"workspace.trust.banner.always": "Das Banner immer anzeigen, wenn ein nicht vertrauenswürdiger Arbeitsbereich geöffnet ist.",
- "workspace.trust.banner.description": "Steuert, wann das Banner für den eingeschränkten Modus angezeigt wird.",
+ "workspace.trust.banner.description": "Steuert, wann das Banner für eingeschränkten Modus angezeigt wird.",
"workspace.trust.banner.never": "Das Banner nicht anzeigen, wenn ein nicht vertrauenswürdiger Arbeitsbereich geöffnet ist.",
"workspace.trust.banner.untilDismissed": "Das Banner anzeigen, wenn ein nicht vertrauenswürdiger Arbeitsbereich geöffnet wird und bis er geschlossen wird.",
"workspace.trust.description": "Steuert, ob die Vertrauensstellung des Arbeitsbereichs in VS Code aktiviert ist.",
@@ -10558,14 +16790,13 @@
"workspace.trust.startupPrompt.never": "Fordern Sie beim Öffnen eines nicht vertrauenswürdigen Arbeitsbereichs nicht die Vertrauensstellung an.",
"workspace.trust.startupPrompt.once": "Fordern Sie beim ersten Öffnen eines nicht vertrauenswürdigen Arbeitsbereichs die Vertrauensstellung an.",
"workspace.trust.untrustedFiles.description": "Steuert, wie das Öffnen nicht vertrauenswürdiger Dateien in einem vertrauenswürdigen Arbeitsbereich behandelt wird. Diese Einstellung gilt auch für das Öffnen von Dateien in einem leeren Fenster, das über \"# {0} #\" als vertrauenswürdig eingestuft wird.",
- "workspace.trust.untrustedFiles.newWindow": "Öffnen Sie immer nicht vertrauenswürdige Dateien in einem separaten Fenster im eingeschränkten Modus ohne Eingabeaufforderung.",
+ "workspace.trust.untrustedFiles.newWindow": "Öffnen Sie nicht vertrauenswürdige Dateien immer in einem separaten Fenster im eingeschränkten Modus ohne Eingabeaufforderung.",
"workspace.trust.untrustedFiles.open": "Die Einführung nicht vertrauenswürdiger Dateien in einen vertrauenswürdigen Arbeitsbereich ohne Eingabeaufforderung immer zulassen.",
"workspace.trust.untrustedFiles.prompt": "Fragen Sie, wie nicht vertrauenswürdige Dateien für jeden Arbeitsbereich behandelt werden. Sobald nicht vertrauenswürdige Dateien in einen vertrauenswürdigen Arbeitsbereich eingeführt werden, werden Sie nicht erneut aufgefordert.",
"workspaceStartupTrustDetails": "{0} stellt Features bereit, die Dateien in diesem Arbeitsbereich automatisch ausführen können.",
"workspaceTrust": "Vertrauen Sie den Autoren der Dateien in diesem Arbeitsbereich?",
"workspaceTrustEditor": "Editor für Arbeitsbereichsvertrauensstellung",
- "workspacesCategory": "Arbeitsbereiche",
- "yes": "Ja"
+ "workspacesCategory": "Arbeitsbereiche"
},
"vs/workbench/contrib/workspace/browser/workspaceTrustEditor": {
"addButton": "Ordner hinzufügen",
@@ -10577,6 +16808,7 @@
"folderPickerIcon": "Symbol für das Symbol „Ordner auswählen“ im Arbeitsbereichsvertrauensstellungs-Editor.",
"hostColumnLabel": "Host",
"invalidTrust": "Sie können einzelnen Ordnern innerhalb eines Repositorys nicht vertrauen.",
+ "keyboardShortcut": "Tastenkombination: {0}",
"localAuthority": "Lokal",
"no untrustedSettings": "Arbeitsbereichseinstellungen, für die Vertrauen erforderlich sind, werden nicht angewendet.",
"noTrustedFoldersDescriptions": "Sie haben noch keine Ordner oder Arbeitsbereichsdateien als vertrauenswürdig eingestuft.",
@@ -10594,7 +16826,7 @@
"trustUri": "Vertrauenswürdiger Ordner",
"trustedDebugging": "Debugging ist aktiviert",
"trustedDescription": "Alle Features sind aktiviert, da dem Arbeitsbereich Vertrauen gewährt wurde.",
- "trustedExtensions": "Alle Erweiterungen sind aktiviert",
+ "trustedExtensions": "Alle aktivierten Erweiterungen werden aktiviert.",
"trustedFolder": "In einem vertrauenswürdigen Ordner",
"trustedFolderAriaLabel": "{0}, vertrauenswürdig",
"trustedFolderSubtitle": "Sie vertrauen den Autoren der Dateien im aktuellen Ordner. Alle Features sind aktiviert:",
@@ -10613,9 +16845,9 @@
"trustedWorkspace": "In einem vertrauenswürdigen Arbeitsbereich",
"trustedWorkspaceSubtitle": "Sie vertrauen den Autoren der Dateien im aktuellen Arbeitsbereich. Alle Features sind aktiviert:",
"untrustedDebugging": "Das Debuggen ist deaktiviert",
- "untrustedDescription": "{0} befindet sich in einem eingeschränkten Modus, der für sicheres Codesuchen vorgesehen ist.",
+ "untrustedDescription": "{0} befindet sich in eingeschränktem Modus, der für sicheres Durchsuchen von Code vorgesehen ist.",
"untrustedExtensions": "[{0} Erweiterungen]({1}) sind deaktiviert oder verfügen über eingeschränkte Funktionen",
- "untrustedFolderReason": "Dieser Arbeitsbereich wird über die fett formatierten Einträge in den vertrauenswürdigen Ordnern unten als vertrauenswürdig eingestuft.",
+ "untrustedFolderReason": "Dieser Ordner wird über die fett formatierten Einträge in den vertrauenswürdigen Ordnern unten als vertrauenswürdig eingestuft.",
"untrustedFolderSubtitle": "Sie vertrauen den Autoren der Dateien im aktuellen Ordner nicht. Die folgenden Features sind deaktiviert:",
"untrustedHeader": "Sie befinden sich im eingeschränkten Modus",
"untrustedSettings": "[{0} Arbeitsbereichseinstellungen]({1}) werden nicht angewendet",
@@ -10624,7 +16856,7 @@
"untrustedWorkspace": "Im eingeschränkten Modus",
"untrustedWorkspaceReason": "Dieser Arbeitsbereich wird über die fett formatierten Einträge in den vertrauenswürdigen Ordnern unten als vertrauenswürdig eingestuft.",
"untrustedWorkspaceSubtitle": "Sie vertrauen den Autoren der Dateien im aktuellen Arbeitsbereich nicht. Die folgenden Features sind deaktiviert:",
- "workspaceTrustEditorHeaderActions": "[Configure your settings]({0}) or [learn more](https://aka.ms/vscode-workspace-trust).",
+ "workspaceTrustEditorHeaderActions": "[Einstellungen konfigurieren]({0}) oder [weitere Informationen](https://aka.ms/vscode-workspace-trust).",
"xListIcon": "Symbol für das Kreuz im Arbeitsbereichsvertrauensstellungs-Editor."
},
"vs/workbench/contrib/workspace/common/workspace": {
@@ -10632,53 +16864,90 @@
"workspaceTrustedCtx": "Gibt an, ob der aktuelle Arbeitsbereich vom Benutzer als vertrauenswürdig eingestuft wurde."
},
"vs/workbench/contrib/workspaces/browser/workspaces.contribution": {
+ "alreadyOpen": "Dieser Arbeitsbereich ist bereits geöffnet.",
+ "foundWorkspace": "Dieser Ordner enthält die Arbeitsbereichsdatei \"{0}\". Möchten Sie diese öffnen? [Weitere Informationen]({1}) zu Arbeitsbereichsdateien.",
+ "foundWorkspaces": "Dieser Ordner enthält mehrere Arbeitsbereichsdateien. Möchten Sie eine dieser Dateien öffnen? [Weitere Informationen]({0}) zu Arbeitsbereichsdateien.",
"openWorkspace": "Arbeitsbereich öffnen",
"selectToOpen": "Zu öffnenden Arbeitsbereich auswählen",
- "selectWorkspace": "Arbeitsbereich auswählen",
- "workspaceFound": "Dieser Ordner enthält die Arbeitsbereichsdatei \"{0}\". Möchten Sie diese öffnen? [Weitere Informationen]({1}) zu Arbeitsbereichsdateien.",
- "workspacesFound": "Dieser Ordner enthält mehrere Arbeitsbereichsdateien. Möchten Sie eine dieser Dateien öffnen? [Weitere Informationen]({0}) zu Arbeitsbereichsdateien."
+ "selectWorkspace": "Arbeitsbereich auswählen"
+ },
+ "vs/workbench/services/accounts/common/defaultAccount": {
+ "sign in": "Anmelden"
},
"vs/workbench/services/actions/common/menusExtensionPoint": {
+ "command name": "ID",
+ "command title": "Titel",
+ "commands": "Befehle",
"comment.actions": "Das Kontextmenü des Kommentarbeitrags, gerendert als Schaltflächen unter dem Kommentar-Editor",
+ "comment.commentContext": "Das beigetragene Kommentarkontextmenü, das als Rechtsklickmenü für einen einzelnen Kommentar in der Peekansicht des Kommentarthreads gerendert wird.",
"comment.title": "Das beigetragene Titelmenü für Kommentare",
"commentThread.actions": "Das beigetragene Kommentarthread-Kontextmenü, gerendert als Schaltflächen unterhalb des Kommentar-Editors",
+ "commentThread.editorActions": "Die beigetragenen Bearbeitungsaktionen für Kommentare",
"commentThread.title": "Das Titelmenü des Kommentarthreadbeitrags",
- "dup": "Der Befehl `{0}` ist mehrmals im Abschnitt `commands` vorhanden.",
+ "commentThread.titleContext": "Das Kontextmenü des beigetragenen Kommentarthreadtitels, das als Rechtsklickmenü im Vorschautitel des Kommentarthreads gerendert wird.",
+ "commentsView.threadActions": "Kontextmenü des Kommentarthreads in der Kommentaransicht",
+ "dup0": "Der Befehl \"{0}\" wurde bereits registriert",
+ "dup1": "Der Befehl \"{0}\" wurde bereits von {1} registriert ({2})",
"dupe.command": "Das Menüelement verweist auf den gleichen Befehl wie der Standard- und der Alternativbefehl.",
+ "editorLineNumberContext": "Das Kontextmenü für die Zeilennummer im Editor",
"file.newFile": "Die Schnellauswahl \"Neue Datei...\", angezeigt auf der Begrüßungsseite und im Menü \"Datei\".",
"inlineCompletions.actions": "Die Aktionen, die angezeigt werden, wenn der Mauszeiger auf einem Inlineabschluss bewegt wird.",
"interactive.cell.title": "Das beigetragene interaktive Zellentitelmenü",
"interactive.toolbar": "Das beigetragene interaktive Symbolleistenmenü",
+ "issue.reporter": "Das beigetragene Problemberichtsmenü",
+ "keyboard shortcuts": "Tastenkombinationen",
+ "menuContexts": "Menükontexte",
+ "menus.artifactContext": "Kontextmenü des Artefakts für die Quellcodeverwaltung",
+ "menus.artifactGroupContext": "Kontextmenü der Artefaktgruppe für die Quellcodeverwaltung",
"menus.changeTitle": "Menü für Inlineänderungen der Quellcodeverwaltung",
+ "menus.chatMultiDiffContext": "Das Kontextmenü für Chat-Multi-Diff.",
+ "menus.chatSessions": "Das Menü „Chat-Sitzungen“.",
+ "menus.chatSessionsNewSession": "Menü für neue Chats",
+ "menus.chatTextEditor": "Untermenü „Chat“ im Kontextmenü des Text-Editors.",
"menus.commandPalette": "Die Befehlspalette",
"menus.debugCallstackContext": "Das Kontextmenü für die Ansicht der Debugaufrufliste",
+ "menus.debugCreateConfiguation": "Das Menü „Konfiguration erstellen“ für das Debuggen",
"menus.debugToolBar": "Das Debug-Symbolleistenmenü",
"menus.debugVariablesContext": "Das Kontextmenü für die Debugvariablenansicht",
+ "menus.debugWatchContext": "Kontextmenü der Debugüberwachungsansicht",
+ "menus.diffEditorGutterToolBarMenus": "Die Bundstegsymbolleiste im Diff-Editor",
"menus.editorContext": "Das Editor-Kontextmenü.",
"menus.editorContextCopyAs": "Untermenü \"Kopieren als\" im Kontextmenü des Editors",
"menus.editorContextShare": "Untermenü ‚Teilen‘ im Kontextmenü des Editors",
"menus.editorTabContext": "Das Kontextmenü für die Editor-Registerkarten",
"menus.editorTitle": "Das Editor-Titelmenü.",
+ "menus.editorTitleContextShare": "Untermenü „Teilen“ im Titelkontextmenü des Editors",
"menus.editorTitleRun": "Untermenü innerhalb des Editor-Titelmenüs ausführen",
"menus.explorerContext": "Das Kontextmenü des Datei-Explorers.",
+ "menus.explorerContextShare": "Untermenü „Teilen“ im Kontextmenü des Datei-Explorers",
"menus.extensionContext": "Das Erweiterungskontextmenü",
+ "menus.historyItemContext": "Kontextmenü des Verlaufselements der Quellcodeverwaltung",
+ "menus.historyItemRefContext": "Kontextmenü des Referenzkontexts des Quellcodeverwaltungsverlaufselements",
"menus.home": "Kontextmenü für Startseitenindikator (nur Web)",
+ "menus.input": "Das Eingabefeldmenü \"Quellcodeverwaltung\"",
+ "menus.mergeEditorResult": "Die Ergebnissymbolleiste des Merge-Editors",
+ "menus.multiDiffEditorResource": "Die Ressourcensymbolleiste im Multi-Diff-Editor",
+ "menus.notebookVariablesContext": "Das Kontextmenü für die Notebook-Variablenansicht",
"menus.opy": "Untermenü \"Kopieren als\" im Menü \"Bearbeiten\" der obersten Ebene",
"menus.resourceFolderContext": "Kontextmenü für den Ressourcenordner der Quellcodeverwaltung",
"menus.resourceGroupContext": "Das Ressourcengruppen-Kontextmenü der Quellcodeverwaltung",
"menus.resourceStateContext": "Das Ressourcenstatus-Kontextmenü der Quellcodeverwaltung",
+ "menus.scmHistoryTitle": "Das Titelmenü des Quellcodeverwaltungsverlaufs",
"menus.scmSourceControl": "Menü \"Quellcodeverwaltung\"",
+ "menus.scmSourceControlInline": "Menü Quellcodeverwaltungs-Repository",
+ "menus.scmSourceControlTitle": "Das Titelmenü der Quellcodeverwaltung-Repositorys",
"menus.scmTitle": "Das Titelmenü der Quellcodeverwaltung",
"menus.share": "Das Untermenü Teilen, das im Dateimenü der obersten Ebene angezeigt wird.",
"menus.statusBarRemoteIndicator": "Das Menü für Remoteanzeigen in der Statusleiste",
+ "menus.terminalContext": "Das Kontextmenü des Terminals",
+ "menus.terminalTabContext": "Das Kontextmenü für die Terminalregisterkarten",
"menus.touchBar": "Die Touch Bar (nur macOS)",
- "merge.toolbar": "Die prominente Schaltfläche im Merge-Editor",
+ "merge.toolbar": "Die hervorgehobene Schaltfläche in einem Editor, überlagert den Inhalt",
"missing.altCommand": "Das Menüelement verweist auf einen Alternativbefehl `{0}`, der im Abschnitt `commands` nicht definiert ist.",
"missing.command": "Das Menüelement verweist auf einen Befehl `{0}`, der im Abschnitt `commands` nicht definiert ist.",
"missing.submenu": "Das Menüelement verweist auf ein Untermenü `{0}`, das im Abschnitt `submenus` nicht definiert ist.",
"nonempty": "Es wurde ein nicht leerer Wert erwartet.",
"notebook.cell.execute": "Das Zellenausführungsmenü des beigetragenen Notebooks",
- "notebook.cell.executePrimary": "Die Schaltfläche für die Zellenausführung des beigetragenen primären Notebooks",
"notebook.cell.title": "Das Zelltitelmenü des hinzugefügten Notebooks",
"notebook.kernelSource": "Menü \"Bereitgestellte Notebook-Kernelquellen\"",
"notebook.toolbar": "Das Symbolleistenmenü des hinzugefügten Notebooks",
@@ -10691,13 +16960,19 @@
"requirearray": "Untermenüelemente müssen als Array vorliegen.",
"requirestring": "Die Eigenschaft `{0}` ist erforderlich und muss vom Typ `string` sein.",
"requirestrings": "Die Eigenschaften `{0}` und `{1}` sind obligatorisch und müssen vom Typ `string` sein.",
+ "searchPanel.aiResultsCommands": "Die Befehle, die zum Menü beitragen, das als Schaltflächen neben dem Titel der KI-Suche gerendert wird",
"submenuId.duplicate.id": "Das Untermenü `{0}` wurde zuvor bereits registriert.",
"submenuId.invalid.id": "`{0}` ist kein gültiger Untermenübezeichner.",
"submenuId.invalid.label": "`{0}` ist keine gültige Untermenübezeichnung.",
"submenuItem.duplicate": "Das Untermenü `{0}` wurde bereits dem Menü `{1}` hinzugefügt.",
"testing.item.context": "Das beigetragene Testelementmenü.",
"testing.item.gutter.title": "Das Menü für eine Bundsteg-Dekoration für ein Testelement",
+ "testing.item.result.title": "Das Menü für ein Element in der Testergebnisansicht oder -vorschau.",
+ "testing.message.content.title": "Kontextmenü für die Nachricht in der Ergebnisstruktur",
+ "testing.message.context.title": "Eine markante Schaltfläche, die den Inhalt des Editors überlagert, in dem die Nachricht angezeigt wird",
+ "testing.profiles.context.title": "Das Menü zum Konfigurieren von Testprofilen.",
"unsupported.submenureference": "Das Menüelement verweist auf ein Untermenü für ein Menü, das keine Unterstützung für Untermenüs bietet.",
+ "view.containerTitle": "Das beigetragene Menü \"Containertitel anzeigen\"",
"view.itemContext": "Das beigetragene Anzeigeelement-Kontextmenü.",
"view.timelineContext": "Das Kontextmenü des Elements der Zeitleistenansicht",
"view.timelineTitle": "Das Titelmenü der Zeitleistenansicht",
@@ -10705,9 +16980,10 @@
"view.tunnelOriginInline": "Das Inlinemenü des Anzeigeelementursprungs für Ports",
"view.tunnelPortInline": "Das Port-Inlinemenü des Anzeigeelement für Ports",
"view.viewTitle": "Das beigetragene Editor-Titelmenü.",
+ "viewContainerTitle.when": "Der {0}-Menübeitrag muss {1} in der {2}-Klausel überprüfen.",
"vscode.extension.contributes.commandType.category": "(Optionale) Kategoriezeichenfolge, nach der der Befehl in der Benutzeroberfläche gruppiert wird",
"vscode.extension.contributes.commandType.command": "Der Bezeichner des auszuführenden Befehls.",
- "vscode.extension.contributes.commandType.icon": "(Optional) Symbol, das den Befehl in der Benutzeroberfläche darstellt. Entweder ein Dateipfad, ein Objekt mit Dateipfaden für dunkle und helle Designs oder ein Designsymbolverweis wie `\\$(zap)`.",
+ "vscode.extension.contributes.commandType.icon": "(Optional) Symbol, das den Befehl in der Benutzeroberfläche darstellt. Entweder ein Dateipfad, ein Objekt mit Dateipfaden für dunkle und helle Designs oder ein Designsymbolverweis wie „\\$(zap)“.",
"vscode.extension.contributes.commandType.icon.dark": "Symbolpfad, wenn ein dunkles Design verwendet wird",
"vscode.extension.contributes.commandType.icon.light": "Symbolpfad, wenn ein helles Design verwendet wird",
"vscode.extension.contributes.commandType.precondition": "(Optional) Diese Bedingung muss als TRUE ausgewertet werden, um den Befehl in der Benutzeroberfläche zu aktivieren (Menü- und Tastenzuordnungen). Die Ausführung des Befehls in anderer Weise, z. B. über `executeCommand -api`, wird nicht verhindert.",
@@ -10720,7 +16996,7 @@
"vscode.extension.contributes.menuItem.submenu": "Bezeichner des Untermenüs, das in diesem Element angezeigt werden soll.",
"vscode.extension.contributes.menuItem.when": "Eine Bedingung, die TRUE lauten muss, damit dieses Element angezeigt wird.",
"vscode.extension.contributes.menus": "Trägt Menüelemente zum Editor bei.",
- "vscode.extension.contributes.submenu.icon": "(Optional) Symbol zur Darstellung des Untermenüs in der Benutzeroberfläche. Entweder ein Dateipfad, ein Objekt mit Dateipfaden für dunkle und helle Designs oder ein Designsymbolverweis wie `\\$(zap)`.",
+ "vscode.extension.contributes.submenu.icon": "(Optional) Symbol zur Darstellung des Untermenüs in der Benutzeroberfläche. Entweder ein Dateipfad, ein Objekt mit Dateipfaden für dunkle und helle Designs oder ein Designsymbolverweis wie „\\$(zap)“.",
"vscode.extension.contributes.submenu.icon.dark": "Symbolpfad, wenn ein dunkles Design verwendet wird",
"vscode.extension.contributes.submenu.icon.light": "Symbolpfad, wenn ein helles Design verwendet wird",
"vscode.extension.contributes.submenu.id": "Bezeichner des Menüs, das als Untermenü angezeigt werden soll.",
@@ -10728,38 +17004,78 @@
"vscode.extension.contributes.submenus": "Trägt untergeordnete Menüelemente zum Editor bei.",
"webview.context": "Kontextmenü für die Webansicht"
},
- "vs/workbench/services/authentication/browser/authenticationService": {
+ "vs/workbench/services/activity/common/activity": {
+ "activityErrorBadge.background": "Hintergrundfarbe des Badges „Fehleraktivität“",
+ "activityErrorBadge.foreground": "Vordergrundfarbe des Badges “Fehleraktivität“",
+ "activityWarningBadge.background": "Hintergrundfarbe des Badges „Warnungsaktivität“",
+ "activityWarningBadge.foreground": "Vordergrundfarbe des Badges „Warnungsaktivität“"
+ },
+ "vs/workbench/services/assignment/common/assignmentService": {
+ "workbench.enableExperiments": "Ruft Experimente ab, die über einen Microsoft-Onlinedienst ausgeführt werden sollen."
+ },
+ "vs/workbench/services/authentication/browser/authenticationExtensionsService": {
"accessRequest": "Zugriff auf {0} gewähren, um {1}... (1)",
- "allow": "Zulassen",
- "authentication.Placeholder": "Es wurden noch keine Konten angefordert...",
- "authentication.id": "Die ID des Authentifizierungsanbieters.",
- "authentication.idConflict": "Diese Authentifizierungs-ID \"{0}\" wurde bereits registriert.",
- "authentication.label": "Der lesbare Name des Authentifizierungsanbieters.",
- "authentication.missingId": "In einem Authentifizierungsbeitrag muss eine ID angegeben werden.",
- "authentication.missingLabel": "In einem Authentifizierungsbeitrag muss eine Bezeichnung angegeben werden.",
- "authenticationExtensionPoint": "Trägt die Authentifizierung bei.",
- "cancel": "Abbrechen",
+ "allow": "&&Zulassen",
"confirmAuthenticationAccess": "Die Erweiterung {0} versucht, auf Authentifizierungsinformationen für das {1}-Konto \"{2}\" zuzugreifen.",
- "deny": "Ablehnen",
+ "deny": "&&Ablehnen",
"getSessionPlateholder": "Wählen Sie das zu verwendende Konto für \"{0}\" aus, oder drücken Sie zum Abbrechen die ESC-Taste.",
- "loading": "Wird geladen...",
"selectAccount": "Die Erweiterung \"{0}\" fordert Zugriff auf ein {1}-Konto an.",
"sign in": "Anmeldung angefordert",
"signInRequest": "Melden Sie sich mit {0} an, um {1} (1) zu verwenden",
"useOtherAccount": "Mit einem anderen Konto anmelden"
},
- "vs/workbench/services/bulkEdit/browser/bulkEditService": {
- "summary.0": "Keine Änderungen vorgenommen",
- "summary.nm": "{0} Änderungen am Text in {1} Dateien vorgenommen",
- "summary.n0": "{0} Änderungen am Text in einer Datei vorgenommen",
- "workspaceEdit": "Arbeitsbereichsbearbeitung",
- "nothing": "Keine Änderungen vorgenommen"
+ "vs/workbench/services/authentication/browser/authenticationMcpService": {
+ "accessRequest": "Zugriff auf {0} gewähren, um {1}... (1)",
+ "allow": "&&Zulassen",
+ "confirmAuthenticationAccess": "Der MCP-Server „{0}“ möchte auf das {1}-Konto „{2}“ zugreifen.",
+ "deny": "&&Ablehnen",
+ "getSessionPlateholder": "Wählen Sie das zu verwendende Konto für \"{0}\" aus, oder drücken Sie zum Abbrechen die ESC-Taste.",
+ "selectAccount": "Der MCP-Server „{0}“ möchte auf ein {1}-Konto zugreifen.",
+ "sign in": "Anmeldung angefordert",
+ "signInRequest": "Melden Sie sich mit {0} an, um {1} (1) zu verwenden",
+ "useOtherAccount": "Mit einem anderen Konto anmelden"
+ },
+ "vs/workbench/services/authentication/browser/authenticationService": {
+ "authentication.authorizationServerGlobs": "Eine Liste von Globs, die mit den Autorisierungsservern übereinstimmen, die dieser Anbieter unterstützt.",
+ "authentication.authorizationServerGlobsDescription": "Eine Liste von Globs, die mit den Autorisierungsservern übereinstimmen, die dieser Anbieter unterstützt.",
+ "authentication.id": "Die ID des Authentifizierungsanbieters.",
+ "authentication.idConflict": "Diese Authentifizierungs-ID \"{0}\" wurde bereits registriert.",
+ "authentication.label": "Der lesbare Name des Authentifizierungsanbieters.",
+ "authentication.missingId": "In einem Authentifizierungsbeitrag muss eine ID angegeben werden.",
+ "authentication.missingLabel": "In einem Authentifizierungsbeitrag muss eine Bezeichnung angegeben werden.",
+ "authenticationExtensionPoint": "Trägt die Authentifizierung bei."
+ },
+ "vs/workbench/services/auxiliaryWindow/browser/auxiliaryWindowService": {
+ "lifecycleVeto": "Von Ihnen vorgenommene Änderungen werden möglicherweise nicht gespeichert. Klicken Sie auf „Abbrechen“, und versuchen Sie es noch einmal.",
+ "retry": "&&Wiederholen",
+ "unableToOpenWindow": "Der Browser hat das Öffnen eines neuen Fensters blockiert. Wählen Sie „Erneut versuchen“ aus, um es noch einmal zu versuchen.",
+ "unableToOpenWindowDetail": "Erlauben Sie Popups für diese Website in Ihren [Browsereinstellungen]({0}).",
+ "unableToOpenWindowError": "Ein neues Fenster kann nicht geöffnet werden."
+ },
+ "vs/workbench/services/auxiliaryWindow/electron-browser/auxiliaryWindowService": {
+ "backupErrorDetails": "Versuchen Sie zuerst, die Editoren mit nicht gespeicherten Änderungen zu speichern oder zurückzusetzen, und versuchen Sie es dann noch einmal."
+ },
+ "vs/workbench/services/chat/common/chatEntitlementService": {
+ "learnMore": "Weitere Informationen",
+ "ok": "OK",
+ "retry": "Wiederholen",
+ "signUpInvalidResponseError": "Ungültiger Antwortinhalt.",
+ "signUpNoResponseContentsError": "Die Antwort hat keinen Inhalt.",
+ "signUpNoResponseError": "Keine Antwort empfangen.",
+ "signUpUnexpectedStatusError": "Unerwarteter Statuscode {0}.",
+ "unknownSignUpError": "Beim Registrieren für den GitHub Copilot Free-Plan ist ein Fehler aufgetreten. Möchten Sie es erneut versuchen?",
+ "unprocessableSignUpError": "Beim Registrieren für den GitHub Copilot Free-Plan ist ein Fehler aufgetreten."
+ },
+ "vs/workbench/services/clipboard/browser/clipboardService": {
+ "clipboardError": "Aus der Zwischenablage des Browsers kann nicht gelesen werden. Stellen Sie sicher, dass Sie dieser Website Zugriff zum Lesen aus der Zwischenablage gewährt haben.",
+ "learnMore": "Weitere Informationen",
+ "retry": "Wiederholen"
},
"vs/workbench/services/configuration/browser/configurationService": {
"configurationDefaults.description": "Beitragen von Standardwerten für Konfigurationen",
- "experimental": "Experimente"
+ "setting description": "Konfigurieren Sie Einstellungen, die auf alle Profile angewendet werden sollen."
},
- "vs/workbench/services/configuration/common/configurationEditingService": {
+ "vs/workbench/services/configuration/common/configurationEditing": {
"errorConfigurationFileDirty": "In die Benutzereinstellungen kann nicht geschrieben werden, weil die Datei nicht gespeicherte Änderungen enthält. Speichern Sie die Datei mit den Benutzereinstellungen, und versuchen Sie es noch einmal.",
"errorConfigurationFileDirtyFolder": "In die Ordnereinstellungen kann nicht geschrieben werden, da die Datei nicht gespeicherte Änderungen enthält. Speichern Sie die Datei mit den Ordnereinstellungen „{0}“ und versuchen Sie es noch einmal.",
"errorConfigurationFileDirtyWorkspace": "In die Arbeitsbereichseinstellungen kann nicht geschrieben werden, weil die Datei nicht gespeicherte Änderungen enthält. Speichern Sie die Datei mit den Arbeitsbereichseinstellungen, und versuchen Sie es noch einmal.",
@@ -10772,6 +17088,7 @@
"errorInvalidFolderConfiguration": "In die Ordnereinstellungen kann nicht geschrieben werden, weil {0} den Gültigkeitsbereich für Ordnerressourcen nicht unterstützt.",
"errorInvalidFolderTarget": "In die Ordnereinstellungen kann nicht geschrieben werden, weil keine Ressource angegeben ist.",
"errorInvalidLaunchConfiguration": "In die Startkonfigurationsdatei kann nicht geschrieben werden. Öffnen Sie die Datei, um Fehler/Warnungen darin zu beheben, und versuchen Sie es noch mal.",
+ "errorInvalidMCPConfiguration": "In die MCP-Konfigurationsdatei kann nicht geschrieben werden. Öffnen Sie die Datei, um Fehler/Warnungen darin zu beheben, und versuchen Sie es erneut.",
"errorInvalidRemoteConfiguration": "In den Remotebenutzereinstellungen sind keine Schreibvorgänge möglich. Öffnen Sie die Remotebenutzereinstellungen, um die Fehler und Warnungen dort zu korrigieren, und versuchen Sie es erneut.",
"errorInvalidResourceLanguageConfiguration": "Die Spracheinstellungen können nicht geändert werden, da {0} keine Ressourcenspracheinstellung ist.",
"errorInvalidTaskConfiguration": "In die Konfigurationsdatei der Aufgabe kann nicht geschrieben werden. Öffnen Sie die Datei, um Fehler/Warnungen darin zu beheben, und versuchen Sie es noch mal.",
@@ -10781,6 +17098,8 @@
"errorInvalidWorkspaceTarget": "In die Arbeitsbereichseinstellungen kann nicht geschrieben werden, da {0} den Arbeitsbereichsumfang in einem Arbeitsbereich mit mehreren Ordnern nicht unterstützt.",
"errorLaunchConfigurationFileDirty": "In die Startkonfigurationsdatei kann nicht geschrieben werden, weil sie nicht gespeicherte Änderungen enthält. Speichern Sie die Datei, und versuchen Sie es noch mal.",
"errorLaunchConfigurationFileModifiedSince": "Beim Schreiben in die Startkonfigurationsdatei ist ein Fehler aufgetreten, da der Inhalt der Datei neuer ist.",
+ "errorMCPConfigurationFileDirty": "In die MCP-Konfigurationsdatei kann nicht geschrieben werden, weil sie nicht gespeicherte Änderungen enthält. Speichern Sie die Datei, und versuchen Sie es erneut.",
+ "errorMCPConfigurationFileModifiedSince": "Fehler beim Schreiben in die MCP-Konfigurationsdatei, da der Inhalt der Datei neuer ist.",
"errorNoWorkspaceOpened": "In {0} kann nicht geschrieben werden, weil kein Arbeitsbereich geöffnet ist. Öffnen Sie zuerst einen Arbeitsbereich, und versuchen Sie es noch mal.",
"errorPolicyConfiguration": "{0} kann nicht geschrieben werden, da sie in der Systemrichtlinie konfiguriert ist.",
"errorRemoteConfigurationFileDirty": "In die Remotebenutzereinstellungen kann nicht geschrieben werden, weil die Datei nicht gespeicherte Änderungen enthält. Speichern Sie die Datei für die Remotebenutzereinstellungen, und versuchen Sie es noch einmal.",
@@ -10790,8 +17109,10 @@
"errorUnknown": "In {0} kann aufgrund eines internen Fehlers nicht geschrieben werden.",
"errorUnknownKey": "In {0} kann nicht geschrieben werden, weil {1} keine registrierte Konfiguration ist.",
"folderTarget": "Ordnereinstellungen",
+ "fsError": "Fehler beim Schreiben in {0}. {1}",
"open": "Einstellungen öffnen",
"openLaunchConfiguration": "Startkonfiguration öffnen",
+ "openMcpConfiguration": "MCP-Konfiguration öffnen",
"openTasksConfiguration": "Aufgabenkonfiguration öffnen",
"remoteUserTarget": "Remotebenutzereinstellungen",
"saveAndRetry": "Speichern und wiederholen",
@@ -10799,7 +17120,6 @@
"workspaceTarget": "Arbeitsbereichseinstellungen"
},
"vs/workbench/services/configuration/common/jsonEditingService": {
- "errorFileDirty": "In die Datei kann nicht geschrieben werden, weil sie nicht gespeicherte Änderungen enthält. Speichern Sie die Datei, und versuchen Sie es noch einmal.",
"errorInvalidFile": "In die Datei kann nicht geschrieben werden. Öffnen Sie die Datei, um Fehler/Warnungen in der Datei zu beheben, und versuchen Sie es noch mal."
},
"vs/workbench/services/configurationResolver/browser/baseConfigurationResolverService": {
@@ -10832,6 +17152,7 @@
},
"vs/workbench/services/configurationResolver/common/variableResolver": {
"canNotFindFolder": "Die Variable \"{0}\" kann nicht aufgelöst werden. Es ist kein Ordner \"{1}\" vorhanden.",
+ "canNotResolveColumnNumber": "Die Variable {0} kann nicht aufgelöst werden. Im aktiven Editor muss eine Spalte ausgewählt sein.",
"canNotResolveFile": "Die Variable \"{0}\" kann nicht aufgelöst werden. Öffnen Sie einen Editor.",
"canNotResolveFolderForFile": "Variable \"{0}\": Der Arbeitsbereichsordner \"{1}\" wurde nicht gefunden.",
"canNotResolveLineNumber": "Die Variable \"{0}\" kann nicht aufgelöst werden. Im aktiven Editor muss eine Zeile ausgewählt sein.",
@@ -10852,7 +17173,6 @@
},
"vs/workbench/services/dialogs/browser/abstractFileDialogService": {
"allFiles": "Alle Dateien",
- "cancel": "Abbrechen",
"dontSave": "&&Nicht speichern",
"filterName.workspace": "Arbeitsbereich",
"noExt": "Keine Erweiterung",
@@ -10868,21 +17188,35 @@
"saveChangesMessages": "Möchten Sie die an den folgenden {0}-Dateien vorgenommenen Änderungen speichern?",
"saveFileAs.title": "Speichern unter"
},
+ "vs/workbench/services/dialogs/browser/fileDialogService": {
+ "learnMore": "&&Weitere Informationen",
+ "openFiles": "&&Dateien öffnen...",
+ "openRemote": "&&Remote öffnen...",
+ "pickFolderAndOpen": "Ordner können nicht geöffnet werden. Versuchen Sie stattdessen, dem Arbeitsbereich einen Ordner hinzuzufügen.",
+ "pickWorkspaceAndOpen": "Arbeitsbereiche können nicht geöffnet werden. Versuchen Sie stattdessen, dem Arbeitsbereich einen Ordner hinzuzufügen.",
+ "unsupportedBrowserDetail": "Das Öffnen lokaler Ordner wird von Ihrem Browser nicht unterstützt.\r\nSie können entweder einzelne Dateien öffnen oder ein Remote-Repository öffnen.",
+ "unsupportedBrowserMessage": "Das Öffnen lokaler Ordner wird nicht unterstützt."
+ },
"vs/workbench/services/dialogs/browser/simpleFileDialog": {
"openLocalFile": "Lokale Datei öffnen ...",
"openLocalFileFolder": "Lokal öffnen ...",
"openLocalFolder": "Lokalen Ordner öffnen ...",
- "remoteFileDialog.badPath": "Der Pfad ist nicht vorhanden.",
+ "remoteFileDialog.badPath": "Der Pfad ist nicht vorhanden. Verwenden Sie ~, um zu Ihrem Basisverzeichnis zu wechseln.",
"remoteFileDialog.cancel": "Abbrechen",
+ "remoteFileDialog.hideDotFiles": "Punktdateien ausblenden",
"remoteFileDialog.invalidPath": "Geben Sie einen gültigen Pfad ein.",
"remoteFileDialog.local": "Lokal anzeigen",
"remoteFileDialog.notConnectedToRemote": "Der Dateisystemanbieter für {0} ist nicht verfügbar.",
+ "remoteFileDialog.placeholder": "Ordnerpfad",
+ "remoteFileDialog.showDotFiles": "Punktdateien anzeigen",
"remoteFileDialog.validateBadFilename": "Geben Sie einen gültigen Dateinamen ein.",
+ "remoteFileDialog.validateCreateDirectory": "Der Ordner {0} ist nicht vorhanden. Möchten Sie ihn erstellen?",
"remoteFileDialog.validateExisting": "Die Datei \"{0}\" ist bereits vorhanden. Möchten Sie sie wirklich überschreiben?",
"remoteFileDialog.validateFileOnly": "Wählen Sie eine Datei aus.",
"remoteFileDialog.validateFolder": "Der Ordner ist bereits vorhanden. Verwenden Sie einen neuen Dateinamen.",
"remoteFileDialog.validateFolderOnly": "Wählen Sie einen Ordner aus.",
"remoteFileDialog.validateNonexistentDir": "Geben Sie einen vorhandenen Pfad ein.",
+ "remoteFileDialog.validateReadonlyFolder": "Dieser Ordner kann nicht als Speicherziel verwendet werden. Wählen Sie einen anderen Ordner aus.",
"remoteFileDialog.windowsDriveLetter": "Beginnen Sie den Pfad mit einem Laufwerkbuchstaben.",
"saveLocalFile": "Lokale Datei speichern..."
},
@@ -10898,27 +17232,28 @@
"promptOpenWith.updateDefaultPlaceHolder": "Neuen Standard-Editor für \"{0}\" auswählen"
},
"vs/workbench/services/editor/common/editorResolverService": {
- "editor.editorAssociations": "Konfigurieren Sie Globmuster für Editoren (z. B. `\"*.hex\": \"hexEditor.hexEdit\"`). Diese haben Vorrang vor dem Standardverhalten."
+ "editor.editorAssociations": "Konfigurieren Sie [Globmuster](https://aka.ms/vscode-glob-patterns) für Editoren (z. B. `\"*.hex\": \"hexEditor.hexedit\"`). Diese haben Vorrang vor dem Standardverhalten."
},
"vs/workbench/services/extensionManagement/browser/extensionBisect": {
+ "I cannot reproduce": "Ich kann nicht reproduzieren",
+ "This is Bad": "Ich kann reproduzieren",
"bisect": "Die Zweiteilung von Erweiterungen ist aktiv und hat {0} Erweiterungen deaktiviert. Überprüfen Sie, ob Sie das Problem weiterhin reproduzieren können, und setzen Sie den Vorgang fort, indem Sie aus diesen Optionen auswählen.",
"bisect.plural": "Die Zweiteilung von Erweiterungen ist aktiv und hat {0} Erweiterungen deaktiviert. Überprüfen Sie, ob Sie das Problem weiterhin reproduzieren können, und setzen Sie den Vorgang fort, indem Sie aus diesen Optionen auswählen.",
"bisect.singular": "Die Zweiteilung von Erweiterungen ist aktiv und hat 1 Erweiterung deaktiviert. Überprüfen Sie, ob Sie das Problem weiterhin reproduzieren können, und setzen Sie den Vorgang fort, indem Sie aus diesen Optionen auswählen.",
+ "continue": "Weiter",
"detail.start": "Bei der Zweiteilung von Erweiterungen wird die Binärsuche verwendet, um eine Erweiterung zu ermitteln, die ein Problem verursacht. Während des Vorgangs wird das Fenster wiederholt geladen (etwa {0}-mal). Sie müssen jedes Mal angeben, ob die Probleme weiterhin auftreten.",
- "done": "Weiter",
"done.detail": "Die Zweiteilung von Erweiterungen wurde abgeschlossen. \"{0}\" wurde als die Erweiterung identifiziert, die das Problem verursacht.",
"done.detail2": "Die Zweiteilung von Erweiterungen wurde abgeschlossen, aber es wurde keine Erweiterung identifiziert. Mögliche Ursache des Problems: {0}.",
"done.disbale": "Diese Erweiterung deaktiviert lassen",
"done.msg": "Zweiteilung von Erweiterungen",
- "help": "Hilfe",
"msg.next": "Zweiteilung von Erweiterungen",
"msg.start": "Zweiteilung von Erweiterungen",
- "msg2": "Zweiteilung von Erweiterungen starten",
- "next.bad": "Fehlerhaft",
- "next.cancel": "Abbrechen",
- "next.good": "Jetzt fehlerfrei",
- "next.stop": "Zweiteilung beenden",
- "report": "Problem melden und fortfahren",
+ "msg2": "&&Zweiteilung von Erweiterungen starten",
+ "next.bad": "Ich kann &&reproduzieren",
+ "next.cancel": "&&Zweiteilung abbrechen",
+ "next.good": "Ich ka&&nn nicht reproduzieren",
+ "next.stop": "&&Zweiteilung beenden",
+ "report": "&&Problem melden und fortfahren",
"title.isBad": "Zweiteilung von Erweiterungen fortsetzen",
"title.start": "Zweiteilung von Erweiterungen starten",
"title.stop": "Zweiteilung von Erweiterungen beenden"
@@ -10926,47 +17261,93 @@
"vs/workbench/services/extensionManagement/browser/extensionEnablementService": {
"Reload": "Erweiterungen erneut laden und aktivieren",
"cannot change disablement environment": "Die Aktivierung der {0}-Erweiterung kann nicht geändert werden, da sie in der Umgebung deaktiviert ist.",
+ "cannot change disallowed extension enablement": "Die Aktivierung der Erweiterung {0} kann nicht geändert werden, da sie nicht zulässig ist",
"cannot change enablement dependency": "Die Erweiterung \"{0}\" kann nicht aktiviert werden, da Sie von der Erweiterung \"{1}\" abhängig ist, die nicht aktiviert werden kann.",
"cannot change enablement environment": "Die Aktivierung der {0}-Erweiterung kann nicht geändert werden, da sie in der Umgebung aktiviert ist.",
"cannot change enablement extension kind": "Die Aktivierung der {0} Erweiterung kann aufgrund ihrer Erweiterungsart nicht geändert werden.",
+ "cannot change enablement malicious": "Die Aktivierung der Erweiterung {0} kann nicht geändert werden, da sie schädlich ist",
"cannot change enablement virtual workspace": "Die Aktivierung der {0}-Erweiterung kann nicht geändert werden, da virtuelle Arbeitsbereiche nicht unterstützt werden.",
+ "cannot change invalid extension enablement": "Die Aktivierung der Erweiterung {0} kann nicht geändert werden, da sie nicht gültig ist.",
"cannot disable auth extension": "Die Aktivierung der Erweiterung \"{0}\" kann nicht geändert werden, weil die Einstellungssynchronisierung davon abhängig ist.",
"cannot disable auth extension in workspace": "Die Aktivierung der Erweiterung \"{0}\" kann im Arbeitsbereich nicht geändert werden, weil sie Authentifizierungsanbieter beiträgt.",
"cannot disable language pack extension": "Die Aktivierung der Erweiterung \"{0}\" kann nicht geändert werden, weil sie Sprachpakete beiträgt.",
"extensionsDisabled": "Alle installierten Erweiterungen sind vorübergehend deaktiviert.",
"noWorkspace": "Kein Arbeitsbereich."
},
+ "vs/workbench/services/extensionManagement/browser/webExtensionsScannerService": {
+ "not a web extension": "\"{0}\" kann nicht hinzugefügt werden, weil es sich bei dieser Erweiterung nicht um eine Weberweiterung handelt.",
+ "openInstalledWebExtensionsResource": "Installierte Weberweiterungsressource öffnen"
+ },
+ "vs/workbench/services/extensionManagement/common/extensionFeaturesManagemetService": {
+ "accessExtensionFeature": "Auf Funktion „{0}“ zugreifen",
+ "accessExtensionFeatureMessage": "Erweiterung „{0}“ möchte auf die Funktion „{1}“ zugreifen.",
+ "allow": "Zulassen",
+ "disallow": "Nicht zulassen"
+ },
+ "vs/workbench/services/extensionManagement/common/extensionManagementServerService": {
+ "browser": "Browser",
+ "remote": "Remote"
+ },
"vs/workbench/services/extensionManagement/common/extensionManagementService": {
"Manifest is not found": "Fehler beim Installieren der Erweiterung {0}: Manifest konnte nicht gefunden werden.",
"VS Code for Web": "{0} für das Web",
- "cancel": "Abbrechen",
+ "allUnverifed": "Alle Herausgeber sind [**nicht** überprüft]({0}).",
"cannot be installed": "Die Erweiterung \"{0}\" kann nicht installiert werden, weil sie in diesem Setup nicht verfügbar ist.",
+ "cannot be installed in server": "Die Erweiterung „{0}“ kann nicht installiert werden, da sie im Setup „{1}“ nicht verfügbar ist.",
+ "checkAllTrustedPublishersTitle": "Vertrauen Sie dem Herausgeber \"{0}\" und {1} anderen?",
+ "checkTrustedPublisherTitle": "Vertrauen Sie dem Herausgeber \"{0}\"?",
+ "checkTwoTrustedPublishersTitle": "Vertrauen Sie Herausgebern \"{0}\" und \"{1}\"?",
+ "extension published by message": "Die Erweiterung {0} wird von {1} veröffentlicht.",
"extensionInstallWorkspaceTrustButton": "Arbeitsbereich vertrauen & Installieren",
"extensionInstallWorkspaceTrustContinueButton": "Installieren",
"extensionInstallWorkspaceTrustManageButton": "Weitere Informationen",
"extensionInstallWorkspaceTrustMessage": "Um diese Erweiterung zu aktivieren, ist ein vertrauenswürdiger Arbeitsbereich erforderlich.",
- "install": "Installieren",
- "install and do no sync": "Installieren (nicht synchronisieren)",
- "install anyways": "Trotzdem installieren",
+ "firstTimeInstallingMessage": "Dies ist das erste Mal, dass Sie Erweiterungen von diesen Herausgebern installieren.",
+ "install": "&&Installieren",
+ "install and do no sync": "Installieren (&&nicht synchronisieren)",
+ "install anyways": "&&Trotzdem installieren",
"install extension": "Erweiterung installieren",
"install extensions": "Erweiterungen installieren",
"install multiple extensions": "Möchten Sie Erweiterungen geräteübergreifend installieren und synchronisieren?",
"install single extension": "Möchten Sie die Erweiterung \"{0}\" geräteübergreifend installieren und synchronisieren?",
+ "learnMore": "&&Weitere Informationen",
"limited support": "„{0}“ verfügt über eingeschränkte Funktionalität in {1}.",
+ "main.notFound": "Kann nicht aktiviert werden, da „{0}“ nicht gefunden wurde.",
+ "manifest is not found": "Das Manifest wurde nicht gefunden.",
+ "message1": "Die Erweiterung {0} wird von {1} veröffentlicht. Dies ist die erste Erweiterung, die Sie von diesem Herausgeber installieren.",
+ "message2": "{0} hat keine Kontrolle über das Verhalten von Drittanbietererweiterungen, einschließlich der Verwaltung Ihrer persönlichen Daten. Setzen Sie den Vorgang nur fort, wenn Sie dem Herausgeber vertrauen.",
+ "message3": "Durch das Installieren dieser Erweiterung werden auch [extensions]({0}) installiert, die von {1} und {2} veröffentlicht wurden.",
+ "message4": "{0} hat keine Kontrolle über das Verhalten von Drittanbietererweiterungen, einschließlich der Verwaltung Ihrer persönlichen Daten. Setzen Sie den Vorgang nur fort, wenn Sie den Herausgebern vertrauen.",
+ "multiInstallMessage": "Dies ist das erste Mal, dass Sie Erweiterungen von Herausgebern {0} und {1} installieren.",
"multipleDependentsError": "Die Erweiterung \"{0}\" kann nicht deinstalliert werden. Die Erweiterungen \"{1}\" und \"{2}\" sowie weitere hängen von dieser Erweiterung ab.",
"non web extensions": "„{0}“ enthält Erweiterungen, die in {1} nicht unterstützt werden.",
"non web extensions detail": "Enthält nicht unterstützte Erweiterungen.",
- "showExtensions": "Erweiterungen anzeigen",
+ "showExtensions": "&&Erweiterungen anzeigen",
"singleDependentError": "Die Erweiterung \"{0}\" kann nicht deinstalliert werden. Die Erweiterung \"{1}\" hängt von dieser Erweiterung ab.",
- "twoDependentsError": "Die Erweiterung \"{0}\" kann nicht deinstalliert werden. Die Erweiterungen \"{1}\" und \"{2}\" hängen von dieser Erweiterung ab."
+ "singleUntrustedPublisher": "Durch die Installation dieser Erweiterung werden auch [Erweiterungen]({0}) installiert, die von {1} veröffentlicht wurden.",
+ "trust and install": "Herausgeber vertrauen &&installieren",
+ "trust publishers and install": "Herausgeber vertrauen &&installieren",
+ "twoDependentsError": "Die Erweiterung \"{0}\" kann nicht deinstalliert werden. Die Erweiterungen \"{1}\" und \"{2}\" hängen von dieser Erweiterung ab.",
+ "unverifiedPublisherWithName": "{0} ist [**nicht** verifiziert]({1}).",
+ "unverifiedPublishers": "{0} und {1} werden [**nicht** überprüft]({2}).",
+ "verifiedPublisherWithName": "{0} hat den Besitz von {1} bestätigt."
+ },
+ "vs/workbench/services/extensionManagement/common/extensionsIcons": {
+ "extensionDefault": "Symbol, das für die Standarderweiterung in der Erweiterungsansicht und im Editor verwendet wird.",
+ "extensionIconVerifiedForeground": "Die Symbolfarbe für den verifizierten Erweiterungsherausgeber.",
+ "verifiedPublisher": "Symbol, das für den verifizierten Erweiterungsherausgeber in der Erweiterungsansicht und im Editor verwendet wird."
},
- "vs/workbench/services/extensionManagement/electron-sandbox/extensionManagementServerService": {
- "local": "LOCAL",
+ "vs/workbench/services/extensionManagement/electron-browser/extensionGalleryManifestService": {
+ "extensionGalleryManifestService.accountChange": "{0} ist jetzt für einen anderen Marketplace konfiguriert. Führen Sie einen Neustart aus, um die Änderungen anzuwenden.",
+ "restart": "&&Neu starten"
+ },
+ "vs/workbench/services/extensionManagement/electron-browser/extensionManagementServerService": {
+ "local": "Lokal",
"remote": "Remote"
},
- "vs/workbench/services/extensionManagement/electron-sandbox/remoteExtensionManagementService": {
+ "vs/workbench/services/extensionManagement/electron-browser/remoteExtensionManagementService": {
+ "incompatibleAPI": "Die Erweiterung \"{0}\" kann nicht installiert werden. {1}",
"notFoundCompatibleDependency": "Die Erweiterung „{0}“ kann nicht installiert werden, weil sie nicht mit der aktuellen Version von {1} (Version {2}) kompatibel ist.",
- "notFoundCompatiblePrereleaseDependency": "Die Vorabversion der Erweiterung „{0}“ kann nicht installiert werden, weil sie nicht mit der aktuellen Version von {1} (Version {2}) kompatibel ist.",
"notFoundReleaseExtension": "Die endgültige Version der Erweiterung „{0}“ kann nicht installiert werden, da sie keine endgültige Version aufweist."
},
"vs/workbench/services/extensionRecommendations/common/workspaceExtensionsConfig": {
@@ -10976,33 +17357,36 @@
"workspace folder": "Arbeitsbereichsordner"
},
"vs/workbench/services/extensions/browser/extensionUrlHandler": {
- "Installing": "Die Erweiterung \"{0}\" wird installiert...",
- "confirmUrl": "Öffnen dieser URI durch eine Erweiterung zulassen?",
- "enableAndHandle": "Die Erweiterung '{0}' ist deaktiviert. Möchten Sie die Erweiterung aktivieren und die URL öffnen?",
- "enableAndReload": "&&Aktivieren und öffnen",
+ "confirmUrl": "Möchten Sie der Erweiterung \"{0}\" erlauben, diesen URI zu öffnen?",
"extensions": "Erweiterungen",
- "install and open": "&&Installieren und öffnen",
- "installAndHandle": "Die Erweiterung '{0}' ist nicht installiert. Möchten Sie die Erweiterung installieren und diese URL öffnen?",
+ "installDetail": "Diese Erweiterung möchte einen URI öffnen:",
"manage": "Autorisierte Erweiterungs-URIs verwalten...",
"no": "Zurzeit sind keine URIs für autorisierte Erweiterungen vorhanden.",
"open": "&&Öffnen",
+ "openUri": "URI öffnen",
"reloadAndHandle": "Die Erweiterung \"{0}\" ist nicht geladen. Möchten Sie das Fenster erneut laden, um die Erweiterung zu laden und die URL zu öffnen?",
"reloadAndOpen": "&&Fenster neu laden und öffnen",
"rememberConfirmUrl": "Nicht mehr nach dieser Erweiterung fragen"
},
- "vs/workbench/services/extensions/browser/webWorkerExtensionHost": {
- "name": "Workererweiterungshost"
- },
"vs/workbench/services/extensions/common/abstractExtensionService": {
+ "activation": "Aktivierungsereignisse",
+ "disconnectRemote": "Remote-Agent trennen",
"extensionService.autoRestart": "Der Remoteerweiterungshost wurde unerwartet beendet. Wird neu gestartet...",
"extensionService.crash": "Der Remoteerweiterungshost wurde innerhalb der letzten 5 Minuten unerwartet dreimal beendet.",
+ "extensionStopVetoError": "{0} (Fehler: {1})",
+ "extensionStopVetoMessage": "Bitte bestätigen Sie den Neustart der Erweiterungen.",
"extensionTestError": "Es wurde kein Erweiterungshost gefunden, der den Test Runner auf {0} starten kann.",
"looping": "Folgende Erweiterungen enthalten Abhängigkeitsschleifen und wurden deaktiviert: {0}",
- "restart": "Remoteerweiterungshost neu starten"
+ "proceedAnyways": "Trotzdem neu starten",
+ "restart": "Remoteerweiterungshost neu starten",
+ "stopExtensionHosts": "Erweiterungshosts werden beendet"
},
"vs/workbench/services/extensions/common/extensionHostManager": {
"measureExtHostLatency": "Latenz des Hosts der Measureerweiterung"
},
+ "vs/workbench/services/extensions/common/extensionsProposedApi": {
+ "enabledProposedAPIs": "API-Vorschläge"
+ },
"vs/workbench/services/extensions/common/extensionsRegistry": {
"extensionKind": "Definieren Sie die Art der Erweiterung. \"ui\"-Erweiterungen werden auf dem lokalen Computer installiert und ausgeführt, während \"workspace\"-Erweiterungen auf dem Remotecomputer ausgeführt werden.",
"extensionKind.empty": "Definieren Sie eine Erweiterung, die weder auf dem lokalen Computer noch auf dem Remotecomputer in einem Remotekontext ausgeführt werden kann.",
@@ -11014,6 +17398,7 @@
"ui": "Art der Benutzeroberflächenerweiterung. In einem Remotefenster werden solche Erweiterungen nur aktiviert, wenn sie auf dem lokalen Rechner verfügbar sind.",
"vscode.extension.activationEvents": "Aktivierungsereignisse für die VS Code-Erweiterung.",
"vscode.extension.activationEvents.onAuthenticationRequest": "Ein Aktivierungsereignis, das immer dann ausgegeben wird, wenn Sitzungen vom angegebenen Authentifizierungsanbieter angefordert werden.",
+ "vscode.extension.activationEvents.onChatParticipant": "Ein Aktivierungsereignis, das ausgegeben wird, wenn der angegebene Chatteilnehmer aufgerufen wird.",
"vscode.extension.activationEvents.onCommand": "Ein Aktivierungsereignis wird beim Aufrufen des angegebenen Befehls ausgegeben.",
"vscode.extension.activationEvents.onCustomEditor": "Ein Aktivierungsereignis, das immer dann ausgelöst wird, wenn der angegebene benutzerdefinierte Editor sichtbar wird.",
"vscode.extension.activationEvents.onDebug": "Ein Aktivierungsereignis wird ausgesandt, wenn ein Benutzer eine Debugging startet, oder eine Debug-Konfiguration erstellt.",
@@ -11021,22 +17406,31 @@
"vscode.extension.activationEvents.onDebugDynamicConfigurations": "Ein Aktivierungsereignis, das immer dann ausgegeben wird, wenn eine Liste aller Debugkonfigurationen erstellt werden muss (und alle provideDebugConfigurations-Methoden für den Bereich \"dynamic\" aufgerufen werden müssen).",
"vscode.extension.activationEvents.onDebugInitialConfigurations": "Ein Aktivierungsereignis ausgegeben, wenn ein \"launch.json\" erstellt werden muss (und alle provideDebugConfigurations Methoden aufgerufen werden müssen).",
"vscode.extension.activationEvents.onDebugResolve": "Ein Aktivierungsereignis ausgegeben, wenn eine Debug-Sitzung mit dem spezifischen Typ gestartet wird (und eine entsprechende resolveDebugConfiguration-Methode aufgerufen werden muss).",
+ "vscode.extension.activationEvents.onEditSession": "Ein Aktivierungsereignis wird ausgegeben, wenn auf eine Bearbeitungssitzung mit dem angegebenen Schema zugegriffen wird.",
"vscode.extension.activationEvents.onFileSystem": "Ein Aktivierungsereignis wird ausgegeben, wenn auf eine Datei oder einen Ordner mit dem angegebenen Schema zugegriffen wird.",
- "vscode.extension.activationEvents.onIdentity": "Ein Aktivierungsereignis, das bei jeder angegebenen Benutzeridentität ausgegeben wird.",
+ "vscode.extension.activationEvents.onIssueReporterOpened": "Ein Aktivierungsereignis, das ausgegeben wird, wenn der Problembericht geöffnet wird.",
"vscode.extension.activationEvents.onLanguage": "Ein Aktivierungsereignis wird beim Öffnen einer Datei ausgegeben, die in die angegebene Sprache aufgelöst wird.",
+ "vscode.extension.activationEvents.onLanguageModelChatProvider": "Ein Aktivierungsereignis, das ausgegeben wird, wenn ein Chatmodellanbieter für den angegebenen Anbieter angefordert wird.",
+ "vscode.extension.activationEvents.onLanguageModelTool": "Ein Aktivierungsereignis, das ausgegeben wird, wenn das angegebene Sprachmodelltool aufgerufen wird.",
+ "vscode.extension.activationEvents.onMcpCollection": "Ein Aktivierungsereignis, das ausgegeben wird, wenn ein Tool vom MCP-Server angefordert wird.",
"vscode.extension.activationEvents.onNotebook": "Bei jedem Öffnen des angegebenen Notebookdokuments wird ein Aktivierungsereignis ausgegeben.",
"vscode.extension.activationEvents.onOpenExternalUri": "Ein Aktivierungsereignis, das immer dann ausgegeben wird, wenn ein externer URI (z. B. ein HTTP- oder HTTPS-Link) geöffnet wird.",
"vscode.extension.activationEvents.onRenderer": "Ein Aktivierungsereignis, das ausgegeben wird, wenn ein Renderer für Notizbuchausgaben verwendet wird.",
"vscode.extension.activationEvents.onSearch": "Ein Aktivierungsereignis wird ausgegeben, wenn eine Suche im Ordner mit dem angegebenen Schema gestartet wird.",
"vscode.extension.activationEvents.onStartupFinished": "Ein Aktivierungsereignis, das nach dem Abschluss des Starts ausgegeben wird (nachdem alle Erweiterungen mit \"*\" die Aktivierung abgeschlossen haben).",
"vscode.extension.activationEvents.onTaskType": "Ein Aktivierungsereignis, das immer dann ausgegeben wird, wenn Aufgaben eines bestimmten Typs aufgelistet oder aufgelöst werden müssen.",
+ "vscode.extension.activationEvents.onTerminal": "Ein Aktivierungsereignis, das ausgegeben wird, wenn ein Terminal des angegebenen Shelltyps geöffnet wird.",
"vscode.extension.activationEvents.onTerminalProfile": "Ein Aktivierungsereignis, das beim Starten eines bestimmten Terminal Profils ausgegeben wird.",
+ "vscode.extension.activationEvents.onTerminalQuickFixRequest": "Ein Aktivierungsereignis, das ausgegeben wird, wenn ein Befehl mit dem Selektor übereinstimmt, der dieser ID zugeordnet ist.",
+ "vscode.extension.activationEvents.onTerminalShellIntegration": "Ein Aktivierungsereignis, das ausgegeben wird, wenn die Terminalshellintegration für den angegebenen Shelltyp aktiviert wird.",
"vscode.extension.activationEvents.onUri": "Ein Aktivierungsereignis wird ausgegeben, wenn ein systemweiter URI, der auf diese Erweiterung ausgerichtet ist, geöffnet ist.",
"vscode.extension.activationEvents.onView": "Ein Aktivierungsereignis wird beim Erweitern der angegebenen Ansicht ausgegeben.",
"vscode.extension.activationEvents.onWalkthrough": "Ein Aktivierungsereignis, das beim Öffnen einer angegebenen exemplarischen Vorgehensweise ausgegeben wird.",
"vscode.extension.activationEvents.onWebviewPanel": "Ein Aktivierungsereignis, das ausgelöst wird, wenn eine Webansicht eines bestimmten „viewType“ geladen wird",
"vscode.extension.activationEvents.star": "Ein Aktivierungsereignis wird beim Start von VS Code ausgegeben. Damit für die Endbenutzer eine bestmögliche Benutzerfreundlichkeit sichergestellt ist, verwenden Sie dieses Aktivierungsereignis in Ihrer Erweiterung nur dann, wenn in Ihrem Anwendungsfall keine andere Kombination an Aktivierungsereignissen funktioniert.",
"vscode.extension.activationEvents.workspaceContains": "Ein Aktivierungsereignis wird beim Öffnen eines Ordners ausgegeben, der mindestens eine Datei enthält, die mit dem angegebenen Globmuster übereinstimmt.",
+ "vscode.extension.api": "Beschreiben Sie die von dieser Erweiterung bereitgestellte API. Weitere Informationen finden Sie unter: „https://code.visualstudio.com/api/advanced-topics/remote-extensions#handling-dependencies-with-remote-extensions“",
+ "vscode.extension.api.none": "Geben Sie die Möglichkeit zum Exportieren beliebiger APIs vollständig auf. Dadurch können andere Erweiterungen, die von dieser Erweiterung abhängig sind, in einem separaten Erweiterungs-Host-Prozess oder auf einem Remote-Computer ausgeführt werden.",
"vscode.extension.badges": "Array aus Badges, die im Marketplace in der Seitenleiste auf der Seite mit den Erweiterungen angezeigt werden.",
"vscode.extension.badges.description": "Eine Beschreibung für den Badge.",
"vscode.extension.badges.href": "Der Link für den Badge.",
@@ -11071,8 +17465,10 @@
"vscode.extension.galleryBanner.color": "Die Bannerfarbe für die Kopfzeile der VS Code Marketplace-Seite.",
"vscode.extension.galleryBanner.theme": "Das Farbdesign für die Schriftart, die im Banner verwendet wird.",
"vscode.extension.icon": "Der Pfad zu einem 128x128-Pixel-Symbol.",
+ "vscode.extension.l10n": "Der relative Pfad zu einem Ordner, der Lokalisierungsdateien (bundle.l10n.*.json) enthält. Muss angegeben werden, wenn Sie die vscode.l10n API verwenden.",
"vscode.extension.markdown": "Steuert das im Marketplace verwendete Markdown-Renderingmodul. Entweder GitHub (Standardeinstellung) oder Standard",
"vscode.extension.preview": "Legt die Erweiterung fest, die im Marketplace als Vorschau gekennzeichnet werden soll.",
+ "vscode.extension.pricing": "Die Preisinformationen zur Erweiterung. Der Wert kann \"Free\" (Standard) oder \"Trial\" lauten. Weitere Informationen finden Sie hier: https://code.visualstudio.com/api/working-with-extensions/publishing-extension#extension-pricing-label",
"vscode.extension.publisher": "Der Herausgeber der VS Code-Erweiterung.",
"vscode.extension.qna": "Steuert den Q&A-Link im Marketplace. Auf \"marketplace\" festlegen, um die standardmäßige Marketplace-Q&A-Website festzulegen. Auf \"string\" festlegen, um die URL einer benutzerdefinierten Q&A-Website anzugeben. Auf \"false\" festlegen, um Q&A zu deaktivieren.",
"vscode.extension.scripts.prepublish": "Ein Skript, das ausgeführt wird, bevor das Paket als VS Code-Erweiterung veröffentlicht wird.",
@@ -11081,108 +17477,53 @@
},
"vs/workbench/services/extensions/common/extensionsUtil": {
"extensionUnderDevelopment": "Die Entwicklungserweiterung unter \"{0}\" wird geladen.",
- "overwritingExtension": "Die Erweiterung \"{0}\" wird mit \"{1}\" überschrieben."
+ "overwritingExtension": "Die Erweiterung \"{0}\" wird mit \"{1}\" überschrieben.",
+ "overwritingWithWorkspaceExtension": "{0} wird mit der Arbeitsbereichserweiterung {1} überschrieben."
},
- "vs/workbench/services/extensions/common/remoteExtensionHost": {
- "remote extension host Log": "Remoteerweiterungshost"
- },
- "vs/workbench/services/extensions/electron-sandbox/cachedExtensionScanner": {
+ "vs/workbench/services/extensions/electron-browser/cachedExtensionScanner": {
"extensionCache.invalid": "Erweiterungen wurden auf der Festplatte geändert. Laden Sie das Fenster neu.",
+ "extensionUnderDevelopment.invalid": "Fehler beim Laden der Erweiterung „{0}“, die sich in der Entwicklung befindet, da sie ungültig ist: {1}",
+ "extensionsUnderDevelopment.invalid": "Fehler beim Laden von Erweiterungen „{0}“, die sich in der Entwicklung befinden, weil sie ungültig sind: {1}",
+ "reloadWindow": "Fenster neu laden"
+ },
+ "vs/workbench/services/extensions/electron-browser/localProcessExtensionHost": {
+ "extensionHost.startupFail": "Der Erweiterungshost wurde nicht innerhalb von 10 Sekunden gestartet. Dies stellt ggf. ein Problem dar.",
+ "extensionHost.startupFailDebug": "Der Erweiterungshost wurde nicht innerhalb von 10 Sekunden gestartet. Möglicherweise wurde er in der ersten Zeile beendet und benötigt einen Debugger, um die Ausführung fortzusetzen.",
+ "join.extensionDevelopment": "Erweiterungsdebugsitzung wird beendet",
"reloadWindow": "Fenster neu laden"
},
- "vs/workbench/services/extensions/electron-sandbox/electronExtensionService": {
- "devTools": "Entwicklertools öffnen",
+ "vs/workbench/services/extensions/electron-browser/nativeExtensionService": {
+ "devTools": "Entwicklungstools öffnen",
"enable": "Aktivieren und erneut laden",
"enableResolver": "Die Erweiterung \"{0}\" ist erforderlich, um das Remotefenster zu öffnen.\r\nMöchte Sie sie aktivieren?",
"extensionService.autoRestart": "Der Erweiterungshost wurde unerwartet beendet. Wird neu gestartet...",
"extensionService.crash": "Der Erweiterungshost wurde innerhalb der letzten 5 Minuten unerwartet dreimal beendet.",
"extensionService.versionMismatchCrash": "Erweiterungshost kann nicht gestartet werden: Versionskonflikt.",
"getEnvironmentFailure": "Die Remoteumgebung konnte nicht abgerufen werden.",
- "install": "Installieren und neu laden",
+ "install": "Installieren und erneut laden",
"installResolver": "Die Erweiterung „{0}“ ist erforderlich, um das Remotefenster zu öffnen.\r\nMöchten Sie die Erweiterung installieren?",
- "looping": "Folgende Erweiterungen enthalten Abhängigkeitsschleifen und wurden deaktiviert: {0}",
+ "learnMore": "Weitere Informationen",
"relaunch": "VS Code neu starten",
"resolverExtensionNotFound": "\"{0}\" nicht im Marketplace gefunden",
"restart": "Erweiterungshost neu starten",
- "restartExtensionHost": "Erweiterungshost neu starten"
- },
- "vs/workbench/services/extensions/electron-sandbox/localProcessExtensionHost": {
- "extension host Log": "Erweiterungshost",
- "extensionHost.error": "Fehler vom Erweiterungshost: {0}",
- "extensionHost.startupFail": "Der Erweiterungshost wurde nicht innerhalb von 10 Sekunden gestartet. Dies stellt ggf. ein Problem dar.",
- "extensionHost.startupFailDebug": "Der Erweiterungshost wurde nicht innerhalb von 10 Sekunden gestartet. Möglicherweise wurde er in der ersten Zeile beendet und benötigt einen Debugger, um die Ausführung fortzusetzen.",
- "join.extensionDevelopment": "Erweiterungsdebugsitzung wird beendet",
- "reloadWindow": "Fenster neu laden"
+ "restartExtensionHost": "Erweiterungshost neu starten",
+ "restartExtensionHost.reason": "Eine explizite Anforderung",
+ "startBisect": "Zweiteilung von Erweiterungen starten"
},
"vs/workbench/services/files/electron-browser/diskFileSystemProvider": {
- "binFailed": "Fehler beim Verschieben von \"{0}\" in den Papierkorb.",
- "trashFailed": "Fehler beim Verschieben von \"{0}\" in den Papierkorb."
- },
- "vs/workbench/services/gettingStarted/common/gettingStartedContent": {
- "getting-started-setup-icon": "Symbol für die Kategorie \"Setup\" in \"Erste Schritte\"",
- "getting-started-beginner-icon": "Symbol für die Kategorie \"Anfänger\" in \"Erste Schritte\"",
- "getting-started-codespaces-icon": "Symbol für die Kategorie \"Codespaces\" in \"Erste Schritte\"",
- "gettingStarted.newFile.title": "Neue Datei",
- "gettingStarted.newFile.description": "Hiermit beginnen Sie mit einer neuen, leeren Datei.",
- "gettingStarted.openMac.title": "Öffnen...",
- "gettingStarted.openMac.description": "Hiermit öffnen Sie eine Datei oder einen Ordner, um mit der Arbeit zu beginnen.",
- "gettingStarted.openFile.title": "Datei öffnen...",
- "gettingStarted.openFile.description": "Hiermit öffnen Sie eine Datei, um mit der Arbeit zu beginnen.",
- "gettingStarted.openFolder.title": "Ordner öffnen...",
- "gettingStarted.openFolder.description": "Hiermit öffnen Sie einen Ordner, um mit der Arbeit zu beginnen.",
- "gettingStarted.cloneRepo.title": "Git-Repository klonen...",
- "gettingStarted.cloneRepo.description": "Git-Repository klonen",
- "gettingStarted.topLevelCommandPalette.title": "Befehl ausführen...",
- "gettingStarted.topLevelCommandPalette.description": "Verwenden Sie die Befehlspalette, um alle VSCode-Befehle anzuzeigen und auszuführen.",
- "gettingStarted.codespaces.title": "Einführung zu Codespaces",
- "gettingStarted.codespaces.description": "Durch die Umgebung mit sofort einsetzbarem Code sind Sie sofort startbereit.",
- "gettingStarted.runProject.title": "App erstellen und ausführen",
- "gettingStarted.runProject.description": "Sie können Ihren Code direkt im Browser erstellen, ausführen und debuggen.",
- "gettingStarted.runProject.button": "Debuggen starten (F5)",
- "gettingStarted.forwardPorts.title": "Zugreifen auf die ausgeführte Anwendung",
- "gettingStarted.forwardPorts.description": "In Ihrem Codespace ausgeführte Ports werden automatisch an das Web weitergeleitet, damit Sie sie in Ihrem Browser öffnen können.",
- "gettingStarted.forwardPorts.button": "Portpanel anzeigen",
- "gettingStarted.pullRequests.title": "Pull Requests sofort verfügbar",
- "gettingStarted.pullRequests.description": "Bringen Sie Ihren GitHub-Workflow und Ihren Code näher zusammen. So können Sie beispielsweise Pull Requests anzeigen, Kommentare hinzufügen oder Branches mergen.",
- "gettingStarted.pullRequests.button": "GitHub-Ansicht öffnen",
- "gettingStarted.remoteTerminal.title": "Ausführen von Aufgaben im integrierten Terminal",
- "gettingStarted.remoteTerminal.description": "Führen Sie mit dem integrierten Terminal schnell Befehlszeilenaufgaben aus.",
- "gettingStarted.remoteTerminal.button": "Fokus auf Terminal",
- "gettingStarted.openVSC.title": "Remoteentwicklung in VS Code",
- "gettingStarted.openVSC.description": "Profitieren Sie in Ihrer lokalen VS Code-Instanz von der Leistungsfähigkeit Ihrer Cloudentwicklungsumgebung. Richten Sie diese ein, indem Sie die GitHub Codespaces-Erweiterung installieren und Ihr GitHub-Konto verbinden.",
- "gettingStarted.openVSC.button": "In VS Code öffnen",
- "gettingStarted.setup.title": "Express-Setup",
- "gettingStarted.setup.description": "Erweitern und optimieren Sie VS Code, um es perfekt auf Ihre Anforderungen abzustimmen.",
- "gettingStarted.pickColor.title": "Anpassen des Erscheinungsbilds mithilfe von Designs",
- "gettingStarted.pickColor.description": "Wählen Sie ein Farbdesign aus, das Ihrem Geschmack und Ihrer Stimmung beim Codieren entspricht.",
- "gettingStarted.pickColor.button": "Design auswählen",
- "gettingStarted.findLanguageExts.title": "Codieren Sie in einer Sprache Ihrer Wahl, ohne Editor-Wechsel",
- "gettingStarted.findLanguageExts.description": "VS Code unterstützt mehr als 50 Programmiersprachen. Viele sind bereits integriert, andere können mit nur einem Mausklick als Erweiterung installiert werden.",
- "gettingStarted.findLanguageExts.button": "Spracherweiterungen durchsuchen",
- "gettingStarted.settingsSync.title": "Synchronisieren Ihres bevorzugten Setups",
- "gettingStarted.settingsSync.description": "Kein Verlust des perfekten VS Code-Setups! Dank der Einstellungssynchronisierung werden Einstellungen, Tastenzuordnungen und installierte Erweiterungen gesichert und in mehreren VS Code-Instanzen übernommen.",
- "gettingStarted.settingsSync.button": "Synchronisierung von Einstellungen aktivieren",
- "gettingStarted.setup.OpenFolder.title": "Öffnen Ihres Projekts",
- "gettingStarted.setup.OpenFolder.description": "Öffnen Sie einen Projektordner, um loszulegen.",
- "gettingStarted.setup.OpenFolder.button": "Ordner auswählen",
- "gettingStarted.setup.OpenFolder.description2": "Öffnen Sie einen Ordner, um zu starten.",
- "gettingStarted.beginner.title": "Grundlegende Informationen",
- "gettingStarted.beginner.description": "Sparen Sie Zeit mit diesen praktischen Verknüpfungen und Features.",
- "gettingStarted.commandPalette.title": "Suchen und Ausführen von Befehlen",
- "gettingStarted.commandPalette.description": "Die einfachste Möglichkeit zum Finden sämtlicher Aktionen, die in VS Code ausgeführt werden können. Wenn Sie nach einem Feature oder einer Verknüpfung suchen, lesen Sie zuerst diese Inhalte!",
- "gettingStarted.commandPalette.button": "Befehlspalette öffnen",
- "gettingStarted.terminal.title": "Ausführen von Aufgaben im integrierten Terminal",
- "gettingStarted.terminal.description": "Führen Sie schnell Shellbefehle aus, und überwachen Sie die Buildausgabe direkt neben Ihrem Code.",
- "gettingStarted.terminal.button": "Terminal öffnen",
- "gettingStarted.extensions.title": "Unbegrenzte Erweiterbarkeit",
- "gettingStarted.extensions.description": "Durch Erweiterungen können Sie VS Code noch umfassender nutzen. Diese reichen von praktischen Hacks zur Produktivitätssteigerung über Erweiterungen für vorkonfigurierte Features bis hin zu völlig neuen Funktionen.",
- "gettingStarted.extensions.button": "Empfohlene Erweiterungen durchsuchen",
- "gettingStarted.settings.title": "Alles ist Einstellungssache",
- "gettingStarted.settings.description": "Passen Sie jedes Detail des VS Code-Erscheinungsbilds nach Ihrem Geschmack an. Wenn Sie die Option \"Einstellungen synchronisieren\" aktivieren, werden Ihre persönlichen Optimierungen computerübergreifend übernommen.",
- "gettingStarted.settings.button": "Einstellungen optimieren",
- "gettingStarted.videoTutorial.title": "Entspanntes Lernen",
- "gettingStarted.videoTutorial.description": "Sehen Sie sich das erste in einer Reihe von kurzen und praktischen Videotutorials zu den wichtigsten VS Code-Features an.",
- "gettingStarted.videoTutorial.button": "Tutorial ansehen"
+ "fileWatcher": "Datei-Watcher"
+ },
+ "vs/workbench/services/files/electron-browser/elevatedFileService": {
+ "fileNotTrusted": "Arbeitsbereich ist nicht vertrauenswürdig.",
+ "fileNotTrustedMessagePosix": "Sie sind im Begriff, „{0}“ als Superuser zu speichern.",
+ "fileNotTrustedMessageWindows": "Sie sind im Begriff, „{0}“ als Administrator zu speichern."
+ },
+ "vs/workbench/services/filesConfiguration/common/filesConfigurationService": {
+ "configuredReadonly": "Der Editor ist schreibgeschützt, da die Datei über die Einstellungen als schreibgeschützt festgelegt wurde. [Klicken Sie hier](command:{0}), um zu konfigurieren, oder auf [Für diese Sitzung umschalten](command:{1}).",
+ "fileLocked": "Der Editor ist aufgrund von Dateiberechtigungen schreibgeschützt. [Klicken Sie hier](command:{0}), um den Schreibzugriff trotzdem festzulegen.",
+ "fileReadonly": "Der Editor ist schreibgeschützt, da die Datei schreibgeschützt ist.",
+ "providerReadonly": "Der Editor ist schreibgeschützt, da das Dateisystem der Datei schreibgeschützt ist.",
+ "sessionReadonly": "Der Editor ist schreibgeschützt, da die Datei in dieser Sitzung als schreibgeschützt festgelegt wurde. [Klicken Sie hier](command:{0}) zum Festlegen des Schreibzugriffs."
},
"vs/workbench/services/history/browser/historyService": {
"canNavigateBack": "Gibt an, ob die Rückwärtsnavigation im Editor-Verlauf möglich ist.",
@@ -11195,20 +17536,51 @@
"canNavigateToLastNavigationLocation": "Gibt an, ob die Navigation zur letzten Navigationsposition des Editors möglich ist",
"canReopenClosedEditor": "Gibt an, ob der zuletzt geschlossene Editor wieder geöffnet werden kann."
},
- "vs/workbench/services/integrity/electron-sandbox/integrityService": {
+ "vs/workbench/services/host/browser/browserHostService": {
+ "retry": "&&Wiederholen",
+ "unableToOpenExternal": "Der Browser hat das Öffnen einer neuen Registerkarte oder eines neuen Fensters blockiert. Wählen Sie „Erneut versuchen“ aus, um es noch einmal zu versuchen.",
+ "unableToOpenExternalWorkspace": "Der Browser hat das Öffnen einer neuen Registerkarte oder eines neuen Fensters für „{0}“ blockiert. Wählen Sie „Erneut versuchen“ aus, um es noch einmal zu versuchen.",
+ "unableToOpenWindowDetail": "Erlauben Sie Popups für diese Website in Ihren [Browsereinstellungen]({0})."
+ },
+ "vs/workbench/services/hover/browser/hoverWidget": {
+ "hoverhint": "Halten Sie die {0}-Taste gedrückt, um mit der Maus darauf zu zeigen."
+ },
+ "vs/workbench/services/integrity/electron-browser/integrityService": {
"integrity.dontShowAgain": "Nicht mehr anzeigen",
"integrity.moreInformation": "Weitere Informationen",
"integrity.prompt": "Ihre {0}-Installation ist offenbar beschädigt. Führen Sie eine Neuinstallation durch."
},
+ "vs/workbench/services/issue/browser/issueTroubleshoot": {
+ "I cannot reproduce": "Ich kann nicht reproduzieren",
+ "Stop": "Beenden",
+ "This is Bad": "Ich kann reproduzieren",
+ "ask to download insiders": "Versuchen Sie, das Problem in {0} Insidern herunterzuladen und zu reproduzieren.",
+ "ask to reproduce issue": "Versuchen Sie, das Problem in {0} Insidern zu reproduzieren, und bestätigen Sie, ob das Problem dort vorhanden ist.",
+ "bad": "Ich kann reproduzieren",
+ "detail.start": "Problembehandlung ist ein Prozess, mit dem Sie die Ursache eines Problems identifizieren können. Die Ursache für ein Problem kann eine falsch konfigurierte Konfiguration sein, die auf eine Erweiterung zurückzuführen ist, oder selbst {0} sein kann.\r\n\r\nWährend des Vorgangs wird das Fenster wiederholt neu geladen. Sie müssen jedes Mal bestätigen, ob das Problem weiterhin auftritt.",
+ "download insiders": "{0} Insider herunterladen",
+ "empty.profile": "Die Problembehandlung ist aktiv und hat Ihre Konfigurationen vorübergehend auf die Standardwerte zurückgesetzt. Überprüfen Sie, ob Sie das Problem weiterhin reproduzieren können, und fahren Sie fort, indem Sie eine der folgenden Optionen auswählen.",
+ "good": "Ich kann nicht reproduzieren",
+ "issue is in core": "Bei der Problembehandlung wurde festgestellt, dass ein Problem mit {0} vorliegt.",
+ "issue is with configuration": "Bei der Problembehandlung wurde festgestellt, dass das Problem durch Ihre Konfigurationen verursacht wird. Melden Sie das Problem, indem Sie Ihre Konfigurationen mit dem Befehl \"Profil exportieren\" exportieren, und geben Sie die Datei im Problembericht frei.",
+ "msg": "&&Problembehandlung",
+ "profile.extensions.disabled": "Die Problembehandlung ist aktiv und hat vorübergehend alle installierten Erweiterungen deaktiviert. Überprüfen Sie, ob Sie das Problem weiterhin reproduzieren können, und fahren Sie fort, indem Sie eine der folgenden Optionen auswählen.",
+ "report anyway": "Problem trotzdem melden",
+ "stop": "Beenden",
+ "title.stop": "Problembehandlung stoppen",
+ "troubleshoot issue": "Problembehandlung",
+ "troubleshootIssue": "Problembehandlung...",
+ "use insiders": "Dies bedeutet wahrscheinlich, dass das Problem bereits behoben wurde und in einer bevorstehenden Version verfügbar sein wird. Sie können {0} Insider sicher verwenden, bis die neue stabile Version verfügbar ist."
+ },
"vs/workbench/services/keybinding/browser/keybindingService": {
- "dispatch": "Steuert die Abgangslogik, sodass bei einem Tastendruck entweder \"code\" (empfohlen) oder \"keyCode\" verwendet wird.",
"invalid.keybindings": "Ungültige Angabe \"contributes.{0}\": {1}",
+ "keybindings.commandsIsArray": "Falscher Typ. \"{0}\" erwartet. Das Feld \"command\" unterstützt nicht das Ausführen mehrerer Befehle. Verwenden Sie den Befehl \"runCommands\", um mehrere Befehle zur Ausführung zu übergeben.",
"keybindings.json.args": "Argumente, die an den auszuführenden Befehl übergeben werden sollen.",
"keybindings.json.command": "Der Name des auszuführenden Befehls.",
"keybindings.json.key": "Der Schlüssel oder die Schlüsselsequenz (durch Leerzeichen getrennt)",
+ "keybindings.json.removalCommand": "Name des Befehls, für den die Tastenkombination entfernt werden soll",
"keybindings.json.title": "Tastenbindungskonfiguration",
"keybindings.json.when": "Die Bedingung, wann der Schlüssel aktiv ist.",
- "keyboardConfigurationTitle": "Tastatur",
"nonempty": "Es wurde ein nicht leerer Wert erwartet.",
"optstring": "Die Eigenschaft \"{0}\" kann ausgelassen werden oder muss vom Typ \"string\" sein.",
"requirestring": "Die Eigenschaft \"{0}\" ist erforderlich und muss vom Typ \"string\" sein.",
@@ -11222,6 +17594,10 @@
"vscode.extension.contributes.keybindings.when": "Die Bedingung, wann der Schlüssel aktiv ist.",
"vscode.extension.contributes.keybindings.win": "Der Windows-spezifische Schlüssel oder die Schlüsselsequenz."
},
+ "vs/workbench/services/keybinding/browser/keyboardLayoutService": {
+ "keyboard.layout.config": "Steuern Sie das im Web verwendete Tastaturlayout.",
+ "keyboardConfigurationTitle": "Tastatur"
+ },
"vs/workbench/services/keybinding/common/keybindingEditing": {
"emptyKeybindingsHeader": "Geben Sie Ihre Tastenzuordnungen in dieser Datei ein, um die Standardwerte außer Kraft zu setzen.",
"errorInvalidConfiguration": "In die Tastenbindungskonfigurationsdatei kann nicht geschrieben werden. Sie enthält ein Objekt, bei dem es sich nicht um ein Array handelt. Öffnen Sie die Datei, um das Problem zu beheben, und versuchen Sie es dann nochmal.",
@@ -11244,8 +17620,13 @@
"workspaceNameVerbose": "{0} (Arbeitsbereich)"
},
"vs/workbench/services/language/common/languageService": {
+ "file extensions": "Dateierweiterungen",
+ "grammar": "Grammatik",
"invalid": "Ungültige Angabe \"contributes.{0}\". Es wurde ein Array erwartet.",
"invalid.empty": "Leerer Wert für \"contributes.{0}\".",
+ "language id": "ID",
+ "language name": "Name",
+ "languages": "Programmiersprachen",
"opt.aliases": "Die Eigenschaft \"{0}\" kann ausgelassen werden. Sie muss vom Typ \"string[]\" sein.",
"opt.configuration": "Die Eigenschaft \"{0}\" kann ausgelassen werden. Sie muss vom Typ \"string\" sein.",
"opt.extensions": "Die Eigenschaft \"{0}\" kann ausgelassen werden. Sie muss vom Typ \"string[]\" sein.",
@@ -11254,6 +17635,7 @@
"opt.icon": "Die Eigenschaft \"{0}\" kann ausgelassen werden und muss vom Typ \"object\" mit den Eigenschaften \"{1}\" und \"{2}\" vom Typ \"String\" sein.",
"opt.mimetypes": "Die Eigenschaft \"{0}\" kann ausgelassen werden. Sie muss vom Typ \"string[]\" sein.",
"require.id": "Die Eigenschaft \"{0}\" ist erforderlich und muss vom Typ \"string\" sein.",
+ "snippets": "Codeschnipsel",
"vscode.extension.contributes.languages": "Contributes-Sprachdeklarationen",
"vscode.extension.contributes.languages.aliases": "Namensaliase für die Sprache.",
"vscode.extension.contributes.languages.configuration": "Ein relativer Pfad zu einer Datei mit Konfigurationsoptionen für die Sprache.",
@@ -11267,41 +17649,37 @@
"vscode.extension.contributes.languages.id": "Die ID der Sprache.",
"vscode.extension.contributes.languages.mimetypes": "MIME-Typen, die der Sprache zugeordnet sind."
},
- "vs/workbench/services/lifecycle/electron-sandbox/lifecycleService": {
- "errorClose": "Unerwarteter Fehler beim Schließen des Fensters ({0}).",
- "errorLoad": "Unerwarteter Fehler beim Ändern des Arbeitsbereichs im Fenster ({0}).",
- "errorQuit": "Unerwarteter Fehler beim Beenden der Anwendung ({0}).",
- "errorReload": "Unerwarteter Fehler beim Neuladen des Fensters ({0})."
+ "vs/workbench/services/lifecycle/browser/lifecycleService": {
+ "lifecycleVeto": "Von Ihnen vorgenommene Änderungen werden möglicherweise nicht gespeichert. Klicken Sie auf „Abbrechen“, und versuchen Sie es noch einmal."
},
- "vs/workbench/services/mode/common/workbenchLanguageService": {
- "invalid": "Ungültige Angabe \"contributes.{0}\". Es wurde ein Array erwartet.",
- "invalid.empty": "Leerer Wert für \"contributes.{0}\".",
- "opt.aliases": "Die Eigenschaft \"{0}\" kann ausgelassen werden. Sie muss vom Typ \"string[]\" sein.",
- "opt.configuration": "Die Eigenschaft \"{0}\" kann ausgelassen werden. Sie muss vom Typ \"string\" sein.",
- "opt.extensions": "Die Eigenschaft \"{0}\" kann ausgelassen werden. Sie muss vom Typ \"string[]\" sein.",
- "opt.filenames": "Die Eigenschaft \"{0}\" kann ausgelassen werden. Sie muss vom Typ \"string[]\" sein.",
- "opt.firstLine": "Die Eigenschaft \"{0}\" kann ausgelassen werden. Sie muss vom Typ \"string\" sein.",
- "opt.mimetypes": "Die Eigenschaft \"{0}\" kann ausgelassen werden. Sie muss vom Typ \"string[]\" sein.",
- "require.id": "Die Eigenschaft \"{0}\" ist erforderlich und muss vom Typ \"string\" sein.",
- "vscode.extension.contributes.languages": "Contributes-Sprachdeklarationen",
- "vscode.extension.contributes.languages.aliases": "Namensaliase für die Sprache.",
- "vscode.extension.contributes.languages.configuration": "Ein relativer Pfad zu einer Datei mit Konfigurationsoptionen für die Sprache.",
- "vscode.extension.contributes.languages.extensions": "Dateierweiterungen, die der Sprache zugeordnet sind.",
- "vscode.extension.contributes.languages.filenamePatterns": "Dateinamen-Globmuster, die Sprache zugeordnet sind.",
- "vscode.extension.contributes.languages.filenames": "Dateinamen, die der Sprache zugeordnet sind.",
- "vscode.extension.contributes.languages.firstLine": "Ein regulärer Ausdruck, der mit der ersten Zeile einer Datei der Sprache übereinstimmt.",
- "vscode.extension.contributes.languages.id": "Die ID der Sprache.",
- "vscode.extension.contributes.languages.mimetypes": "MIME-Typen, die der Sprache zugeordnet sind."
+ "vs/workbench/services/localization/browser/localeService": {
+ "clearDisplayLanguageDetail": "Drücken Sie die Schaltfläche „Neu laden“, um die Seite zu aktualisieren, und verwenden Sie die Sprache Ihres Browsers.",
+ "clearDisplayLanguageMessage": "Um die Anzeige-Sprache zu ändern, muss {0} neu geladen werden.",
+ "relaunchDisplayLanguageDetail": "Drücken Sie die Schaltfläche „Neu laden“, um die Seite zu aktualisieren, und legen Sie die Anzeigesprache auf {0} fest.",
+ "relaunchDisplayLanguageMessage": "Um die Anzeige-Sprache zu ändern, muss {0} neu geladen werden.",
+ "reload": "&&Neu laden"
+ },
+ "vs/workbench/services/localization/electron-browser/localeService": {
+ "argvInvalid": "Die Anzeigesprache kann nicht geschrieben werden. Öffnen Sie die Laufzeiteinstellungen, korrigieren Sie die darin enthaltenen Fehler/Warnungen, und versuchen Sie es noch mal.",
+ "installing": "Die Sprachunterstützung für {0} wird installiert...",
+ "openArgv": "Laufzeiteinstellungen öffnen",
+ "restart": "&&Neu starten",
+ "restartDisplayLanguageDetail1": "Um die Anzeigesprache in {0} zu ändern, muss {1} neu starten.",
+ "restartDisplayLanguageMessage1": "Starten Sie {0} neu, um zu {1} zu wechseln?"
+ },
+ "vs/workbench/services/log/common/logConstants": {
+ "window": "Fenster"
},
"vs/workbench/services/notification/common/notificationService": {
"neverShowAgain": "Nicht mehr anzeigen"
},
"vs/workbench/services/preferences/browser/keybindingsEditorInput": {
+ "keybindingsEditorLabelIcon": "Symbol der Bezeichnung des Tastenzuordnungseditors.",
"keybindingsInputName": "Tastenkombinationen"
},
"vs/workbench/services/preferences/browser/keybindingsEditorModel": {
"cat.title": "{0}: {1}",
- "default": "Standard",
+ "default": "System",
"extension": "Erweiterung",
"meta": "meta",
"option": "Option",
@@ -11314,7 +17692,10 @@
"openFolderFirst": "Öffnen Sie zuerst einen Ordner oder einen Arbeitsbereich, um Arbeitsbereichs- oder Ordnereinstellungen zu erstellen."
},
"vs/workbench/services/preferences/common/preferencesEditorInput": {
- "settingsEditor2InputName": "Einstellungen"
+ "preferencesEditorInputName": "Einstellungen",
+ "preferencesEditorLabelIcon": "Symbol der Bezeichnung des Einstellungseditors.",
+ "settingsEditor2InputName": "Einstellungen",
+ "settingsEditorLabelIcon": "Symbol der Bezeichnung des Einstellungseditors."
},
"vs/workbench/services/preferences/common/preferencesModels": {
"commonlyUsed": "Am häufigsten verwendet",
@@ -11322,6 +17703,7 @@
},
"vs/workbench/services/preferences/common/preferencesValidation": {
"invalidTypeError": "Die Einstellung weist einen ungültigen Typ auf, erwartet wurde \"{0}\". Führen Sie eine Korrektur in JSON durch.",
+ "regexParsingError": "Fehler beim Analysieren des folgenden regulären Ausdrucks mit und ohne dem U-Flag:",
"validations.arrayIncorrectType": "Falscher Typ. Ein Array wurde erwartet.",
"validations.booleanIncorrectType": "Falscher Typ. \"boolean\" erwartet.",
"validations.colorFormat": "Ungültiges Farbformat. Verwenden Sie #RGB, #RGBA, #RRGGBB oder #RRGGBBAA.",
@@ -11350,14 +17732,6 @@
"validations.uriMissing": "Es wird ein URI erwartet.",
"validations.uriSchemeMissing": "Ein URI mit einem Schema wird erwartet."
},
- "vs/workbench/services/profiles/common/profile": {
- "profile": "Einstellungsprofil",
- "settings profiles": "Einstellungsprofil"
- },
- "vs/workbench/services/profiles/common/profileService": {
- "applied profile": "{0}: Erfolgreich angewendet.",
- "profiles.applying": "{0}: Wird angewendet..."
- },
"vs/workbench/services/progress/browser/progressService": {
"cancel": "Abbrechen",
"dismiss": "Schließen",
@@ -11366,32 +17740,102 @@
"progress.title3": "[{0}] {1}: {2}",
"status.progress": "Fortschrittsmeldung"
},
+ "vs/workbench/services/remote/browser/remoteAgentService": {
+ "connectionError": "Unerwarteter Fehler, der ein erneutes Laden dieser Seite erfordert.",
+ "connectionErrorDetail": "Die Workbench konnte keine Verbindung mit dem Server herstellen (Fehler: {0}).",
+ "reload": "&&Neu laden"
+ },
"vs/workbench/services/remote/common/remoteExplorerService": {
+ "RemoteHelpInformationExtPoint": "Trägt Hilfeinformationen für Remoteelement bei.",
+ "RemoteHelpInformationExtPoint.documentation": "Die URL zur Dokumentationsseite Ihres Projekts bzw. ein Befehl, der diese URL zurückgibt.",
+ "RemoteHelpInformationExtPoint.feedback": "Die URL zum Feedback-Reporter Ihres Projekts bzw. ein Befehl, der diese URL zurückgibt.",
+ "RemoteHelpInformationExtPoint.feedback.deprecated": "Verwenden Sie stattdessen {0}.",
+ "RemoteHelpInformationExtPoint.getStarted": "Die URL oder ein Befehl, der die URL auf die \"Erste Schritte\"-Seite Ihres Projekts zurückgibt oder eine exemplarische ID, die von der Erweiterung Ihres Projekts beigetragen wurde",
+ "RemoteHelpInformationExtPoint.issues": "Die URL zur Issueliste Ihres Projekts bzw. ein Befehl, der diese URL zurückgibt.",
+ "RemoteHelpInformationExtPoint.reportIssue": "Die URL oder ein Befehl, der die URL an den Problembericht Ihres Projekts zurückgibt.",
+ "getStartedWalkthrough.id": "Zu öffnende exemplarische \"Erste Schritte\"-ID."
+ },
+ "vs/workbench/services/remote/common/tunnelModel": {
"remote.localPortMismatch.single": "Der lokale Port {0} konnte nicht für die Weiterleitung an den Remote-Port {1} verwendet werden.\r\n\r\nDies tritt normalerweise auf, wenn bereits ein anderer Prozess den lokalen Port {0} verwendet.\r\n\r\nStattdessen wurde die Portnummer {2} verwendet.",
+ "tunnel.forwardedPortsViewEnabled": "Gibt an, ob die Portansicht aktiviert ist.",
"tunnel.source.auto": "Automatisch weitergeleitet",
"tunnel.source.user": "Benutzerweiterleitung",
"tunnel.staticallyForwarded": "Statische Weiterleitung"
},
- "vs/workbench/services/remote/electron-sandbox/remoteAgentService": {
+ "vs/workbench/services/remote/electron-browser/remoteAgentService": {
"connectionError": "Fehler beim Verbinden mit dem Hostserver der Remoteerweiterung (Fehler: {0})",
- "devTools": "Entwicklertools öffnen",
+ "devTools": "Entwicklungstools öffnen",
"directUrl": "Im Browser öffnen"
},
+ "vs/workbench/services/request/browser/requestService": {
+ "network": "Netzwerk"
+ },
+ "vs/workbench/services/request/electron-browser/requestService": {
+ "network": "Netzwerk"
+ },
+ "vs/workbench/services/search/browser/searchService": {
+ "errorSearchFile": "Die Suche mit dem Dateisuchprogramm von Web-Worker ist nicht möglich.",
+ "errorSearchText": "Die Suche mit dem Textsuchprogramm von Web-Worker ist nicht möglich."
+ },
"vs/workbench/services/search/common/queryBuilder": {
"search.noWorkspaceWithName": "Der Arbeitsbereichsordner ist nicht vorhanden: {0}"
},
- "vs/workbench/services/sessionSync/browser/sessionSyncWorkbenchService": {
- "account preference": "Anmelden, um Bearbeitungssitzungen zu verwenden",
- "choose account placeholder": "Konto für die Anmeldung auswählen",
- "others": "Sonstige",
- "reset auth": "Abmelden",
- "sign in using account": "Anmelden mit \"{0}\"",
- "signed in": "Angemeldet"
+ "vs/workbench/services/secrets/electron-browser/secretStorageService": {
+ "encryptionNotAvailableJustTroubleshootingGuide": "Es konnte kein Betriebssystemschlüsselbund zum Speichern der verschlüsselungsbezogenen Daten in Ihrer aktuellen Desktopumgebung identifiziert werden.",
+ "isGnome": "Sie werden in einer GNOME-Umgebung ausgeführt, aber der Betriebssystemschlüsselbund ist für die Verschlüsselung nicht verfügbar. Stellen Sie sicher, dass Sie über eine installierte und ausgeführte Libsecret-kompatible Implementierung verfügen.",
+ "isKwallet": "Sie arbeiten in einer KDE-Umgebung, aber der Betriebssystemschlüsselbund ist für die Verschlüsselung nicht verfügbar. Stellen Sie sicher, dass kwallet läuft.",
+ "troubleshootingButton": "Leitfaden zur Problembehandlung öffnen",
+ "usePlainText": "Schwächere Verschlüsselung verwenden",
+ "usePlainTextExtraSentence": "Öffnen Sie den Leitfaden zur Problembehandlung, um dieses Problem zu beheben, oder verwenden Sie eine schwächere Verschlüsselung, die nicht den Betriebssystemschlüsselbund verwendet."
+ },
+ "vs/workbench/services/suggest/browser/simpleSuggestWidget": {
+ "ariaCurrenttSuggestionReadDetails": "{0}, Dokumente: {1}",
+ "label": "{0}, {1}",
+ "label.desc": "{0}, {1} {2}",
+ "label.detail": "{0}{1} {2}",
+ "label.full": "{0}{1}, {2} {3}",
+ "simpleSuggestWidgetFirstSuggestionFocused": "Gibt an, ob der erste einfache Vorschlag fokussiert ist",
+ "simpleSuggestWidgetHasFocusedSuggestion": "Gibt an, ob ein einfacher Vorschlag fokussiert ist.",
+ "simpleSuggestWidgetHasNavigated": "Ob das einfache Vorschlags-Widget nach unten navigiert wurde.",
+ "suggest": "Vorschlagen",
+ "suggestWidget.loading": "Wird geladen...",
+ "suggestWidget.noSuggestions": "Keine Vorschläge."
+ },
+ "vs/workbench/services/suggest/browser/simpleSuggestWidgetDetails": {
+ "details.close": "Schließen",
+ "loading": "Wird geladen..."
+ },
+ "vs/workbench/services/textfile/browser/textFileService": {
+ "confirmMakeWriteable": "\"{0}\" ist als schreibgeschützt markiert. Möchten Sie dennoch speichern?",
+ "confirmMakeWriteableDetail": "Pfade können über die Einstellungen als schreibgeschützt konfiguriert werden.",
+ "confirmOverwrite": "'{0}' ist bereits vorhanden. Möchten Sie die Datei ersetzen?",
+ "deleted": "Gelöscht",
+ "fileBinaryError": "Die Datei ist offenbar eine Binärdatei und kann nicht als Text geöffnet werden.",
+ "makeWriteableButtonLabel": "&&Trotzdem speichern",
+ "overwriteIrreversible": "Im Ordner \"{1}\" ist bereits eine Datei oder ein Ordner mit dem Namen \"{0}\" vorhanden. Durch das Ersetzen wird der aktuelle Inhalt überschrieben.",
+ "readonly": "Schreibgeschützt",
+ "readonlyAndDeleted": "Gelöscht, schreibgeschützt",
+ "replaceButtonLabel": "&&Ersetzen",
+ "textFileCreate.source": "Datei erstellt",
+ "textFileModelDecorations": "Dekorationen für Textdateimodell",
+ "textFileOverwrite.source": "Datei ersetzt"
+ },
+ "vs/workbench/services/textfile/common/textFileEditorModel": {
+ "saveParticipants": "„{0}“ wird gespeichert",
+ "saveTextFile": "In Datei schreiben...",
+ "textFileCreate.source": "Dateicodierung geändert"
+ },
+ "vs/workbench/services/textfile/common/textFileEditorModelManager": {
+ "genericSaveError": "Fehler beim Speichern von \"{0}\": {1}"
+ },
+ "vs/workbench/services/textfile/common/textFileSaveParticipant": {
+ "saveParticipants1": "Codeaktionen und Formatierer werden ausgeführt...",
+ "skip": "Überspringen"
},
- "vs/workbench/services/sessionSync/common/sessionSync": {
- "session sync": "Sitzungen bearbeiten"
+ "vs/workbench/services/textfile/electron-browser/nativeTextFileService": {
+ "join.textFiles": "Textdateien werden gespeichert"
},
- "vs/workbench/services/textMate/browser/abstractTextMateService": {
+ "vs/workbench/services/textMate/browser/textMateTokenizationFeatureImpl": {
"alreadyDebugging": "Es wird bereits eine Protokollierung durchgeführt.",
"invalid.embeddedLanguages": "Ungültiger Wert in \"contributes.{0}.embeddedLanguages\". Muss eine Objektzuordnung von Bereichsname zu Sprache sein. Angegebener Wert: {1}",
"invalid.injectTo": "Ungültiger Wert in \"contributes.{0}.injectTo\". Es muss sich um ein Array von Sprachbereichsnamen handeln. Bereitgestellter Wert: {1}",
@@ -11415,30 +17859,6 @@
"vscode.extension.contributes.grammars.tokenTypes": "Eine Zuordnung von Bereichsnamen zu Tokentypen.",
"vscode.extension.contributes.grammars.unbalancedBracketScopes": "Definiert, welche Bereichsnamen keine ausgeglichenen Klammern enthalten."
},
- "vs/workbench/services/textfile/browser/textFileService": {
- "confirmOverwrite": "'{0}' ist bereits vorhanden. Möchten Sie die Datei ersetzen?",
- "deleted": "Gelöscht",
- "fileBinaryError": "Die Datei ist offenbar eine Binärdatei und kann nicht als Text geöffnet werden.",
- "irreversible": "Im Ordner \"{1}\" ist bereits eine Datei oder ein Ordner mit dem Namen \"{0}\" vorhanden. Durch das Ersetzen wird der aktuelle Inhalt überschrieben.",
- "readonly": "Schreibgeschützt",
- "readonlyAndDeleted": "Gelöscht, schreibgeschützt",
- "replaceButtonLabel": "&&Ersetzen",
- "textFileCreate.source": "Datei erstellt",
- "textFileModelDecorations": "Dekorationen für Textdateimodell",
- "textFileOverwrite.source": "Datei ersetzt"
- },
- "vs/workbench/services/textfile/common/textFileEditorModel": {
- "textFileCreate.source": "Dateicodierung geändert"
- },
- "vs/workbench/services/textfile/common/textFileEditorModelManager": {
- "genericSaveError": "Fehler beim Speichern von \"{0}\": {1}"
- },
- "vs/workbench/services/textfile/common/textFileSaveParticipant": {
- "saveParticipants": "\"{0}\" wird gespeichert"
- },
- "vs/workbench/services/textfile/electron-sandbox/nativeTextFileService": {
- "join.textFiles": "Textdateien werden gespeichert"
- },
"vs/workbench/services/themes/browser/fileIconThemeData": {
"error.cannotparseicontheme": "Probleme beim Analysieren der Dateisymboldatei: {0}",
"error.invalidformat": "Ungültiges Format für Dateisymbol-Designdatei: Objekt erwartet."
@@ -11451,7 +17871,7 @@
"error.fontStyle": "Ungültiger Schriftschnitt in Schriftart \"{0}\". Die Einstellung wird ignoriert.",
"error.fontWeight": "Ungültige Schriftbreite in Schriftart \"{0}\". Die Einstellung wird ignoriert.",
"error.icon.font": "Die Symboldefinition \"{0}\" wird übersprungen. Unbekannte Schriftart.",
- "error.icon.fontCharacter": "Die Symboldefinition \"{0}\" wird übersprungen. Unbekannter fontCharacter-Wert.",
+ "error.icon.fontCharacter": "Symboldefinition wird übersprungen '{0}': Muss definiert werden",
"error.invalidformat": "Ungültiges Format für Produktsymbol-Designdatei: Objekt erwartet.",
"error.missingProperties": "Ungültiges Format für Produktsymboldesigndatei: Muss iconDefinitions und Schriftarten enthalten.",
"error.noFontSrc": "In der Schriftart \"{0}\" ist keine gültige Schriftartquelle vorhanden. Schriftartdefinition wird ignoriert.",
@@ -11461,6 +17881,7 @@
"error.cannotloadtheme": "{0} kann nicht geladen werden: {1}"
},
"vs/workbench/services/themes/common/colorExtensionPoint": {
+ "colors": "Farben",
"contributes.color": "Fügt in Erweiterung definierte verwendbare Farben hinzu",
"contributes.color.description": "Die Beschreibung der designfähigen Farbe",
"contributes.color.id": "Der Bezeichner der verwendbaren Farbe",
@@ -11469,6 +17890,11 @@
"contributes.defaults.highContrast": "Die Standardfarbe für dunkle Designs mit hohem Kontrast. Entweder ein Farbwert in Hexadezimalformat (#RRGGBB[AA]) oder der Bezeichner einer designfähigen Farbe, die den Standardwert bereitstellt. Wenn keine Angabe erfolgt, wird die Farbe „dark“ standardmäßig für dunkle Designs mit hohem Kontrast verwendet.",
"contributes.defaults.highContrastLight": "Die Standardfarbe für helle Designs mit hohem Kontrast. Entweder ein Farbwert in Hexadezimalformat (#RRGGBB[AA]) oder der Bezeichner einer designfähigen Farbe, die den Standardwert bereitstellt. Wenn keine Angabe erfolgt, wird die Farbe „light“ standardmäßig für helle Designs mit hohem Kontrast verwendet.",
"contributes.defaults.light": "Die Standardfarbe für helle Themen. Entweder eine Farbe als Hex-Code (#RRGGBB[AA]) oder der Bezeichner einer verwendbaren Farbe, der eine Standardeinstellung bereitstellt.",
+ "defaultDark": "Standard, dunkel",
+ "defaultHC": "Standard, hoher Kontrast",
+ "defaultLight": "Standard, hell",
+ "description": "Beschreibung",
+ "id": "ID",
"invalid.colorConfiguration": "\"configuration.colors\" muss ein Array sein.",
"invalid.default.colorType": "{0} muss entweder eine Farbe als Hex-Code (#RRGGBB[AA] oder #RGB[A]) sein oder der Bezeichner einer verwendbaren Farbe, der eine Standardeinstellung bereitstellt.",
"invalid.defaults": "„configuration.colors.defaults“ muss definiert sein, und „light“ und „dark“ enthalten",
@@ -11517,7 +17943,7 @@
"schema.folderNamesExpanded": "Ordnet Ordnernamen Symbolen für aufgeklappte Ordner zu. Der Objektschlüssel ist der Ordnername ohne Pfadsegmente. Muster oder Platzhalter sind unzulässig. Bei der Zuordnung von Ordnernamen wird die Groß-/Kleinschreibung nicht berücksichtigt.",
"schema.font-format": "Das Format der Schriftart.",
"schema.font-path": "Der Schriftartpfad relativ zur aktuellen Dateisymbol-Designdatei.",
- "schema.font-size": "Die Standardgröße der Schriftart. Gültige Werte finden Sie unter https://developer.mozilla.org/de-de/docs/Web/CSS/font-size.",
+ "schema.font-size": "Die Standardgröße der Schriftart. Es wird dringend empfohlen, einen Prozentwert zu verwenden, z. B. 125 %.",
"schema.font-style": "Der Stil der Schriftart. Gültige Werte finden Sie unter https://developer.mozilla.org/de-DE/docs/Web/CSS/font-style.",
"schema.font-weight": "Die Schriftbreite. Gültige Werte finden Sie unter https://developer.mozilla.org/de-DE/docs/Web/CSS/font-weight.",
"schema.fontCharacter": "Bei Verwendung einer Glyphenschriftart: das zu verwendende Zeichen in der Schriftart.",
@@ -11531,10 +17957,14 @@
"schema.iconDefinitions": "Beschreibung aller Symbole, die beim Zuordnen von Dateien zu Symbolen verwendet werden können.",
"schema.iconPath": "Bei Verwendung eines SVG- oder PNG-Datei: der Pfad zum Bild. Der Pfad ist relativ zur Symbolsammlungsdatei.",
"schema.id": "Die ID der Schriftart.",
- "schema.id.formatError": "Die ID darf nur Buchstaben, Ziffern, Unterstriche und Bindestriche enthalten.",
"schema.languageId": "Die ID der Symboldefinition für die Zuordnung.",
"schema.languageIds": "Ordnet Sprachen Symbolen zu. Der Objektschlüssel ist die Sprach-ID wie im Sprachbeitragspunkt definiert.",
"schema.light": "Optionale Zuordnungen für Dateisymbole in hellen Farbdesigns.",
+ "schema.rootFolder": "Das Ordnersymbol für zugeklappte Stammordner und, wenn rootFolderExpanded nicht festgelegt ist, auch für aufgeklappte Stammordner.",
+ "schema.rootFolderExpanded": "Das Ordnersymbol für aufgeklappte Stammordner. Das Symbol für aufgeklappte Stammordner ist optional. Wenn diese Option nicht festgelegt ist, wird das für Stammordner definierte Symbol angezeigt.",
+ "schema.rootFolderNameExpanded": "Die ID der Symboldefinition für die Zuordnung.",
+ "schema.rootFolderNames": "Ordnet Stammordnernamen Symbolen zu. Der Objektschlüssel ist der Stammordnername. Muster oder Platzhalter sind unzulässig. Bei der Zuordnung von Stammordnernamen wird die Groß-/Kleinschreibung nicht berücksichtigt.",
+ "schema.rootFolderNamesExpanded": "Ordnet Stammordnernamen Symbolen für aufgeklappte Stammordner zu. Der Objektschlüssel ist der Stammordnername. Muster oder Platzhalter sind unzulässig. Bei der Zuordnung von Stammordnernamen wird die Groß-/Kleinschreibung nicht berücksichtigt.",
"schema.showLanguageModeIcons": "Konfiguriert, ob die Standardsprachsymbole verwendet werden sollen, wenn das Design kein Symbol für eine Sprache definiert.",
"schema.src": "Der Speicherort der Schriftart."
},
@@ -11560,16 +17990,15 @@
"schema.font-weight": "Die Schriftbreite. Gültige Werte finden Sie unter https://developer.mozilla.org/de-DE/docs/Web/CSS/font-weight.",
"schema.iconDefinitions": "Zuordnung des Symbolnamens zu einem Schriftartzeichen.",
"schema.id": "Die ID der Schriftart.",
- "schema.id.formatError": "Die ID darf nur Buchstaben, Ziffern, Unterstriche und Bindestriche enthalten.",
"schema.src": "Der Speicherort der Schriftart."
},
"vs/workbench/services/themes/common/themeConfiguration": {
- "autoDetectHighContrast": "Ist diese Option aktiviert, wird automatisch zu einem Design mit hohem Kontrast gewechselt, wenn das Betriebssystem ein Design mit hohem Kontrast verwendet. Das zu verwendende Design mit hohem Kontrast wird durch `#{0}#` und `#{1}#` angegeben",
- "colorTheme": "Gibt das in der Workbench verwendete Farbdesign an.",
+ "autoDetectHighContrast": "Ist diese Option aktiviert, wird automatisch zu einem Design mit hohem Kontrast gewechselt, wenn das Betriebssystem ein Design mit hohem Kontrast verwendet. Das zu verwendende Design mit hohem Kontrast wird durch \"{0}\" und \"{1}\" angegeben.",
+ "colorTheme": "Gibt das Farbdesign an, das in der Workbench verwendet wird, wenn {0} nicht aktiviert ist.",
"colorThemeError": "Das Design ist unbekannt oder nicht installiert.",
"defaultProductIconThemeDesc": "Standard",
"defaultProductIconThemeLabel": "Standard",
- "detectColorScheme": "Wenn diese Einstellung festgelegt ist, wechseln Sie basierend auf der Darstellung des Betriebssystems automatisch zum bevorzugten Farbdesign. Wenn die Darstellung des Betriebssystems dunkel ist, wird das unter \"#{0}#\" angegebene Design für hell \"#{1}#\" verwendet.",
+ "detectColorScheme": "Wenn diese Option aktiviert ist, wird automatisch ein Farbdesign basierend auf dem Systemfarbmodus ausgewählt. Wenn der Systemfarbmodus dunkel ist, wird {0} verwendet, andernfalls {1}.",
"editorColors": "Überschreibt die Farben und den Schriftschnitt für die Editor-Syntax aus dem aktuell ausgewählten Farbdesign.",
"editorColors.comments": "Legt die Farben und Stile für Kommentare fest.",
"editorColors.functions": "Legt die Farben und Stile für Funktionsdeklarationen und Verweise fest.",
@@ -11577,7 +18006,7 @@
"editorColors.numbers": "Legt die Farben und Stile für Nummernliterale fest.",
"editorColors.semanticHighlighting": "Gibt an, ob für semantische Hervorhebungen für dieses Design aktiviert werden sollen.",
"editorColors.semanticHighlighting.deprecationMessage": "Verwenden Sie stattdessen \"enabled\" in der Einstellung \"editor.semanticTokenColorCustomizations\".",
- "editorColors.semanticHighlighting.deprecationMessageMarkdown": "Verwenden Sie stattdessen \"enabled\" in der Einstellung \"#editor.semanticTokenColorCustomizations#\".",
+ "editorColors.semanticHighlighting.deprecationMessageMarkdown": "Verwenden Sie stattdessen „aktiviert“ in der Einstellung {0}.",
"editorColors.semanticHighlighting.enabled": "Gibt an, ob die semantische Hervorhebung für dieses Design aktiviert oder deaktiviert ist.",
"editorColors.semanticHighlighting.rules": "Formatregeln für Semantiktoken für dieses Design.",
"editorColors.strings": "Legt die Farben und Stile für Zeichenfolgenliterale fest.",
@@ -11588,20 +18017,24 @@
"iconThemeError": "Dateisymboldesign ist unbekannt oder nicht installiert.",
"noIconThemeDesc": "Keine Dateisymbole",
"noIconThemeLabel": "Keine",
- "preferredDarkColorTheme": "Gibt das bevorzugte Farbdesign für den dunklen Modus des Betriebssystems an, wenn \"#{0}#\" aktiviert ist.",
- "preferredHCDarkColorTheme": "Gibt das bevorzugte Farbdesign an, das im dunklen Modus mit hohem Kontrast verwendet wird, wenn `#{0}#` aktiviert ist.",
- "preferredHCLightColorTheme": "Gibt das bevorzugte Farbdesign an, das im hellem Modus mit hohen Kontrast verwendet wird, wenn `#{0}#` aktiviert ist.",
- "preferredLightColorTheme": "Gibt das bevorzugte Farbdesign für den hellen Modus des Betriebssystems an, wenn \"#{0}#\" aktiviert ist.",
+ "preferredDarkColorTheme": "Gibt das Farbdesign an, wenn der Systemfarbmodus dunkel und {0} aktiviert ist.",
+ "preferredHCDarkColorTheme": "Gibt das Farbdesign im kontrastreichen dunklen Modus und wenn {0} aktiviert ist, an.",
+ "preferredHCLightColorTheme": "Gibt das Farbdesign im kontrastreichen hellen Modus und wenn {0} aktiviert ist, an.",
+ "preferredLightColorTheme": "Gibt das Farbdesign an, wenn der Systemfarbmodus hell und {0} aktiviert ist.",
"productIconTheme": "Gibt das verwendete Produktsymboldesign an.",
"productIconThemeError": "Das Produktsymboldesign ist unbekannt oder nicht installiert.",
"semanticTokenColors": "Überschreibt die Farben und Stile für Semantiktoken im Editor aus dem aktuell ausgewählten Farbdesign.",
"workbenchColors": "Überschreibt Farben aus dem derzeit ausgewählte Farbdesign."
},
"vs/workbench/services/themes/common/themeExtensionPoints": {
+ "color themes": "Farbdesigns",
+ "file icon themes": "Dateisymboldesigns",
"invalid.path.1": "Es wurde eine Einbindung von \"contributes.{0}.path\" ({1}) in den Erweiterungsordner ({2}) erwartet. Möglicherweise ist die Erweiterung nicht portierbar.",
+ "product icon themes": "Produktsymboldesigns",
"reqarray": "Der Erweiterungspunkt \"{0}\" muss ein Array sein.",
"reqid": "In \"contributes.{0}.id\" wurde eine Zeichenfolge erwartet. Bereitgestellter Wert: {1}",
"reqpath": "In \"contributes.{0}.path\" wurde eine Zeichenfolge erwartet. Angegebener Wert: {1}",
+ "themes": "Designs",
"vscode.extension.contributes.iconThemes": "Trägt Dateisymboldesigns bei.",
"vscode.extension.contributes.iconThemes.id": "ID des Dateisymbolsdesigns, das in den Benutzereinstellungen verwendet wird.",
"vscode.extension.contributes.iconThemes.label": "Bezeichnung des Dateisymboldesigns, die auf der Benutzeroberfläche angezeigt wird.",
@@ -11642,87 +18075,191 @@
"invalid.semanticTokenTypeConfiguration": "\"configuration.semanticTokenType\" muss ein Array sein.",
"invalid.superType.format": "\"configuration.{0}.superType\" muss dem Muster BuchstabeOderZahl[-_BuchstabeOderZahl]* folgen."
},
+ "vs/workbench/services/themes/electron-browser/themes.contribution": {
+ "window.systemColorTheme": "Legen Sie den Farbodus für native Benutzeroberflächenelemente wie native Dialogfelder, Menüs und Titelleisten fest. Auch wenn Ihr Betriebssystem im hellen Farbmodus konfiguriert ist, können Sie ein dunkles Systemfarbdesign für das Fenster auswählen. Sie können auch die automatische Anpassung basierend auf der Einstellung {0} konfigurieren.\r\n\r\nHinweis: Diese Einstellung wird ignoriert, wenn {1} aktiviert ist.",
+ "window.systemColorTheme.auto": "Verwenden Sie helle native Widgetfarben für helle Farbdesigns und dunkle für dunkle Farbdesigns.",
+ "window.systemColorTheme.dark": "Verwenden Sie dunkle native Widgetfarben.",
+ "window.systemColorTheme.default": "Native Widgetfarben stimmen mit den Systemfarben überein.",
+ "window.systemColorTheme.light": "Verwenden Sie helle native Widgetfarben."
+ },
+ "vs/workbench/services/userDataProfile/browser/extensionsResource": {
+ "all profiles and disabled": "Alle Profile",
+ "exclude": "{0}-Erweiterung auswählen",
+ "extensions": "Erweiterungen",
+ "installingExtension": "Erweiterung „{0}“ wird installiert..."
+ },
+ "vs/workbench/services/userDataProfile/browser/globalStateResource": {
+ "globalState": "Benutzeroberflächenzustand"
+ },
+ "vs/workbench/services/userDataProfile/browser/keybindingsResource": {
+ "keybindings": "Tastenkombinationen"
+ },
+ "vs/workbench/services/userDataProfile/browser/mcpProfileResource": {
+ "mcp": "MCP-Server"
+ },
+ "vs/workbench/services/userDataProfile/browser/settingsResource": {
+ "settings": "Einstellungen"
+ },
+ "vs/workbench/services/userDataProfile/browser/snippetsResource": {
+ "exclude": "Ausschnitt {0} auswählen",
+ "snippets": "Codeausschnitte"
+ },
+ "vs/workbench/services/userDataProfile/browser/tasksResource": {
+ "tasks": "Aufgaben"
+ },
+ "vs/workbench/services/userDataProfile/browser/userDataProfileImportExportService": {
+ "applying global state": "Benutzeroberflächenstatus wird angewendet...",
+ "close": "Schließen",
+ "copy": "&&Link kopieren",
+ "create from profile": "Profil erstellen: {0}",
+ "create keybindings": "Tastenkombinationen werden erstellt...",
+ "create snippets": "Codeausschnitte werden erstellt...",
+ "create tasks": "Aufgaben werden erstellt...",
+ "creating settings": "Einstellungen werden erstellt...",
+ "export profile dialog": "Profil speichern",
+ "export profile name": "Profil benennen",
+ "export profile title": "Profil exportieren",
+ "export success": "Das Profil „{0}“ wurde erfolgreich exportiert.",
+ "file": "Datei",
+ "from default": "Aus Standardprofil",
+ "installing extensions": "Erweiterungen werden installiert...",
+ "invalid profile content": "Dieses Profil ist ungültig.",
+ "local": "Lokal",
+ "open": "&&Link öffnen",
+ "open in": "&&In {0}öffnen",
+ "overwrite": "&&Ersetzen",
+ "profile already exists": "Das Profil mit dem Namen „{0}“ ist bereits vorhanden. Möchten Sie seinen Inhalt ersetzen?",
+ "profile name required": "Profilname muss angegeben werden.",
+ "profiles.exporting": "{0}: Export wird ausgeführt ...",
+ "progress extensions": "Erweiterungen werden angewendet...",
+ "progress global state": "Zustand wird angewendet...",
+ "progress keybindings": "Tastenkombinationen werden angewendet...",
+ "progress settings": "Einstellungen werden angewendet...",
+ "progress snippets": "Ausschnitte werden angewendet...",
+ "progress tasks": "Aufgaben werden angewendet...",
+ "select": "{0} auswählen",
+ "select profile": "Profil auswählen",
+ "select profile content handler": "Profil „{0}“ exportieren als ...",
+ "switching profile": "Profil wird gewechselt...",
+ "troubleshoot issue": "Problembehandlung",
+ "troubleshoot profile progress": "Problembehandlungsprofil wird eingerichtet: {0}"
+ },
"vs/workbench/services/userDataProfile/browser/userDataProfileManagement": {
- "cannotDeleteDefaultProfile": "Das Standardeinstellungsprofil kann nicht gelöscht werden",
- "cannotRenameDefaultProfile": "Das Standardeinstellungsprofil kann nicht umbenannt werden",
+ "cannotDeleteDefaultProfile": "Das Standardprofil kann nicht gelöscht werden.",
+ "cannotRenameDefaultProfile": "Das Standardprofil kann nicht umbenannt werden.",
"reload button": "&&Neu laden",
- "reload message": "Zum Wechseln eines Einstellungsprofils muss VS Code neu geladen werden.",
- "reload message when removed": "Das aktuelle Einstellungsprofil wurde entfernt. Bitte neu laden, um zum Standardeinstellungsprofil zurückzukehren"
+ "reload message": "Zum Wechseln eines Profils muss VS Code neu geladen werden.",
+ "reload message when removed": "Das aktuelle Profil wurde entfernt. Bitte neu laden, um zum Standardprofil zurückzukehren",
+ "reload message when switched": "Der aktuelle Arbeitsbereich wurde aus dem aktuellen Profil entfernt. Laden Sie erneut, um zum aktualisierten Profil zurückzukehren.",
+ "reload message when updated": "Das aktuelle Profil wurde aktualisiert. Laden Sie erneut, um zurück zum aktualisierten Profil zu wechseln.",
+ "switch profile": "Es wird zu einem Profil gewechselt"
},
"vs/workbench/services/userDataProfile/common/userDataProfile": {
- "profile": "Einstellungsprofil",
- "settings profiles": "Einstellungsprofile"
+ "defaultProfileIcon": "Symbol für Standardprofil.",
+ "profile": "Profil",
+ "profiles": "Profile"
},
- "vs/workbench/services/userDataProfile/common/userDataProfileImportExportService": {
- "applied profile": "{0}: Erfolgreich angewendet.",
- "imported profile": "{0}: Erfolgreich importiert.",
- "name": "Profilname",
- "profiles.applying": "{0}: Wird angewendet...",
- "profiles.importing": "{0}: Importieren...",
- "save profile as": "Aus aktuellem Profil erstellen..."
+ "vs/workbench/services/userDataProfile/common/userDataProfileIcons": {
+ "settingsViewBarIcon": "Einstellungssymbol in der Ansichtsleiste."
},
"vs/workbench/services/userDataSync/browser/userDataSyncWorkbenchService": {
- "cancel": "Abbrechen",
+ "and": " und ",
"choose account placeholder": "Konto für die Anmeldung auswählen",
- "conflicts detected": "Konflikte erkannt",
- "first time sync detail": "Offenbar wurde die letzte Synchronisierung von einem anderen Computer aus ausgeführt.\r\nMöchten Sie die Daten mit den Daten in der Cloud mergen, oder möchten Sie sie ersetzen?",
+ "conflicts detected": "In {0} erkannte Konflikte",
+ "download sync activity dialog open label": "Speichern",
+ "download sync activity dialog title": "Ordner zum Herunterladen der Aktivität \"Einstellungssynchronisierung\" auswählen",
"last used": "Letzte Verwendung mit Synchronisierung",
- "merge": "Mergereplikation",
- "merge Manually": "Manuell mergen...",
- "merge or replace": "Mergen oder ersetzen",
- "no": "&&Nein",
+ "no": "Nein",
"no account": "Kein Konto verfügbar.",
"no authentication providers": "Die Einstellungssynchronisierung kann nicht aktiviert werden, weil keine Authentifizierungsanbieter verfügbar sind.",
+ "no authentication providers during signin": "Anmeldung nicht möglich, da keine Authentifizierungsanbieter verfügbar sind.",
"others": "Sonstige",
- "replace local": "Lokal ersetzen",
+ "replace local": "&&Remote akzeptieren",
+ "replace local single": "Akzeptieren &{0}",
+ "replace remote": "&&Local akzeptieren",
+ "replace remote single": "& Lokale {0} akzeptieren",
"reset": "Hierdurch werden Ihre Daten in der Cloud gelöscht, und die Synchronisierung wird auf all Ihren Geräten beendet.",
"reset title": "Löschen",
"resetButton": "&&Zurücksetzen",
- "resolve": "Fehler beim Mergen aufgrund von Konflikten. Führen Sie den Mergevorgang manuell durch, um fortzufahren...",
+ "resolve": "Lösen Sie Konflikte, um Folgendes zu aktivieren...",
+ "resolving conflicts": "Konflikte werden aufgelöst...",
"settings sync": "Einstellungssynchronisierung",
- "show log": "Protokoll anzeigen",
- "sign in": "Anmelden",
+ "show conflicts": "&&Konflikte anzeigen",
"sign in using account": "Anmelden mit \"{0}\"",
"signed in": "Angemeldet",
- "successive auth failures": "Die Einstellungssynchronisierung wurde aufgrund von aufeinanderfolgenden Autorisierungsfehlern angehalten. Melden Sie sich erneut an, um die Synchronisierung fortzusetzen.",
"sync in progress": "Die Einstellungssynchronisierung wird gerade aktiviert. Möchten Sie den Vorgang abbrechen?",
"sync turned on": "\"{0}\" ist aktiviert.",
- "syncing resource": "\"{0}\" wird synchronisiert...",
+ "syncing...": "Wird aktiviert...",
"turning on": "Wird aktiviert...",
"yes": "&&Ja"
},
"vs/workbench/services/userDataSync/common/userDataSync": {
+ "download sync activity title": "Aktivität \"Einstellungssynchronisierung\" herunterladen",
"extensions": "Erweiterungen",
"keybindings": "Tastenkombinationen",
+ "mcp": "MCP-Server",
+ "profiles": "Profile",
+ "prompts": "Eingabeaufforderungen und Anweisungen",
"settings": "Einstellungen",
- "snippets": "Benutzercodeschnipsel",
+ "snippets": "Codeausschnitte",
"sync category": "Einstellungssynchronisierung",
"syncViewIcon": "Ansichtssymbol der Einstellungssynchronisierungsansicht.",
- "tasks": "Benutzeraufgaben",
- "ui state label": "Benutzeroberflächenzustand"
+ "tasks": "Aufgaben",
+ "ui state label": "Benutzeroberflächenzustand",
+ "workspace state label": "Arbeitsbereichszustand"
},
"vs/workbench/services/views/browser/viewDescriptorService": {
- "cachedViewContainerPositions": "Anpassungen von Containerpositionen anzeigen",
- "cachedViewPositions": "Anpassungen für Ansichtspositionen",
"hideView": "“{0}” ausblenden",
- "resetViewLocation": "Speicherort zurücksetzen"
+ "hideViewDescription": "Blendet die {0}-Ansicht aus, wenn sie sichtbar ist und der Ansichtscontainer, in dem sie sich befindet, sichtbar ist.",
+ "resetViewLocation": "Speicherort zurücksetzen",
+ "toggleVisibilityDescription": "Schaltet die Sichtbarkeit der {0}-Ansicht um, wenn der Ansichtscontainer, in dem sie sich befindet, sichtbar ist.",
+ "user": "Benutzeransichtscontainer"
+ },
+ "vs/workbench/services/views/browser/viewsService": {
+ "editor": "Text-Editor",
+ "focus view": "Fokus auf Ansicht \"{0}\"",
+ "open view": "Öffnet die Ansicht {0}",
+ "preserveFocus": "Ob der vorhandene Fokus beim Öffnen der Ansicht beibehalten werden soll.",
+ "resetViewLocation": "Speicherort zurücksetzen",
+ "show view": "{0} anzeigen",
+ "toggle view": "\"{0}\" umschalten"
},
- "vs/workbench/services/views/common/viewContainerModel": {
- "globalViewsStateStorageId": "Sichtbarkeitsanpassungen für Ansichten im {0}-Ansichtscontainer."
+ "vs/workbench/services/views/test/browser/viewContainerModel.test": {
+ "Test View 1": "Testansicht 1",
+ "Test View 2": "Testansicht 2",
+ "Test View 3": "Testansicht 3",
+ "Test View 4": "Testansicht 4",
+ "Test View 5": "Testansicht 5",
+ "test": "Test"
+ },
+ "vs/workbench/services/views/test/browser/viewDescriptorService.test": {
+ "Test View 1": "Testansicht 1",
+ "Test View 2": "Testansicht 2",
+ "Test View 3": "Testansicht 3",
+ "Test View 4": "Testansicht 4",
+ "test": "Test"
+ },
+ "vs/workbench/services/voiceRecognition/electron-sandbox/workbenchVoiceRecognitionService": {
+ "voiceTranscription": "Sprachtranskription",
+ "voiceTranscriptionError": "Fehler bei der Sprachtranskription: {0}",
+ "voiceTranscriptionGettingReady": "Mikrofon wird vorbereitet...",
+ "voiceTranscriptionRecording": "Aufzeichnung über Mikrofon..."
},
"vs/workbench/services/workingCopy/common/fileWorkingCopyManager": {
+ "confirmMakeWriteable": "\"{0}\" ist als schreibgeschützt markiert. Möchten Sie dennoch speichern?",
+ "confirmMakeWriteableDetail": "Pfade können über die Einstellungen als schreibgeschützt konfiguriert werden.",
"confirmOverwrite": "'{0}' ist bereits vorhanden. Möchten Sie die Datei ersetzen?",
"deleted": "Gelöscht",
"fileWorkingCopyCreate.source": "Datei erstellt",
"fileWorkingCopyDecorations": "Dekorationen für Arbeitskopien von Dateien",
"fileWorkingCopyReplace.source": "Datei ersetzt",
- "irreversible": "Im Ordner \"{1}\" ist bereits eine Datei oder ein Ordner mit dem Namen \"{0}\" vorhanden. Durch das Ersetzen wird der aktuelle Inhalt überschrieben.",
+ "makeWriteableButtonLabel": "&&Trotzdem speichern",
+ "overwriteIrreversible": "Im Ordner \"{1}\" ist bereits eine Datei oder ein Ordner mit dem Namen \"{0}\" vorhanden. Durch das Ersetzen wird der aktuelle Inhalt überschrieben.",
"readonly": "Schreibgeschützt",
"readonlyAndDeleted": "Gelöscht, schreibgeschützt",
"replaceButtonLabel": "&&Ersetzen"
},
"vs/workbench/services/workingCopy/common/storedFileWorkingCopy": {
- "discard": "Verwerfen",
"genericSaveError": "Fehler beim Speichern von \"{0}\": {1}",
"overwrite": "Überschreiben",
"overwriteElevated": "Als Administrator überschreiben...",
@@ -11733,55 +18270,62 @@
"readonlySaveErrorAdmin": "Fehler beim Speichern von \"{0}\": Die Datei ist schreibgeschützt. Wählen Sie \"Als Administrator überschreiben\" aus, um den Vorgang als Administrator zu wiederholen.",
"readonlySaveErrorSudo": "Fehler beim Speichern von \"{0}\": Die Datei ist schreibgeschützt. Wählen Sie \"Als sudo überschreiben\" aus, um den Vorgang als Superuser zu wiederholen.",
"retry": "Wiederholen",
+ "revert": "Zurücksetzen",
"saveAs": "Speichern unter...",
"saveElevated": "Als Admin wiederholen...",
"saveElevatedSudo": "Als Sudo wiederholen...",
+ "saveParticipants": "„{0}“ wird gespeichert",
+ "saveTextFile": "In Datei schreiben...",
"staleSaveError": "Fehler beim Speichern von „{0}“: Der Inhalt der Datei ist neuer. Möchten Sie die Datei mit Ihren Änderungen überschreiben?"
},
"vs/workbench/services/workingCopy/common/storedFileWorkingCopyManager": {
"join.fileWorkingCopyManager": "Arbeitskopien werden gespeichert"
},
"vs/workbench/services/workingCopy/common/storedFileWorkingCopySaveParticipant": {
- "saveParticipants": "„{0}“ wird gespeichert"
+ "saveParticipants1": "Codeaktionen und Formatierer werden ausgeführt...",
+ "skip": "Überspringen"
},
"vs/workbench/services/workingCopy/common/workingCopyHistoryService": {
"default.source": "Datei gespeichert",
+ "join.workingCopyHistory": "Lokaler Verlauf wird gespeichert",
"moved.source": "Datei verschoben",
"renamed.source": "Datei umbenannt"
},
"vs/workbench/services/workingCopy/common/workingCopyHistoryTracker": {
"undoRedo.source": "Rückgängig/Wiederholen"
},
- "vs/workbench/services/workingCopy/electron-sandbox/workingCopyBackupService": {
+ "vs/workbench/services/workingCopy/electron-browser/workingCopyBackupService": {
"join.workingCopyBackups": "Arbeitskopien sichern"
},
- "vs/workbench/services/workingCopy/electron-sandbox/workingCopyBackupTracker": {
+ "vs/workbench/services/workingCopy/electron-browser/workingCopyBackupTracker": {
"backupBeforeShutdownDetail": "Klicken Sie auf „Abbrechen“, um das Warten zu beenden und die Editoren mit nicht gespeicherten Änderungen zu speichern oder zurückzusetzen.",
"backupBeforeShutdownMessage": "Das Sichern von Editoren mit nicht gespeicherten Änderungen dauert etwas länger...",
"backupErrorDetails": "Versuchen Sie zuerst, die Editoren mit nicht gespeicherten Änderungen zu speichern oder zurückzusetzen, und versuchen Sie es dann noch einmal.",
"backupTrackerBackupFailed": "Die folgenden Editoren mit nicht gespeicherten Änderungen konnten nicht am Sicherungsspeicherort gespeichert werden.",
"backupTrackerConfirmFailed": "Die folgenden Editoren mit nicht gespeicherten Änderungen konnten nicht am Sicherungsspeicherort gespeichert oder zurückgesetzt werden.",
"discardBackupsBeforeShutdown": "Das Verwerfen von Sicherungen dauert etwas länger...",
+ "ok": "&&OK",
"revertBeforeShutdown": "Das Wiederherstellen von Editoren mit nicht gespeicherten Änderungen dauert etwas länger...",
- "saveBeforeShutdown": "Das Speichern von Editoren mit nicht gespeicherten Änderungen dauert etwas länger..."
- },
- "vs/workbench/services/workingCopy/electron-sandbox/workingCopyHistoryService": {
- "join.workingCopyHistory": "Lokaler Verlauf wird gespeichert"
+ "saveBeforeShutdown": "Das Speichern von Editoren mit nicht gespeicherten Änderungen dauert etwas länger...",
+ "shutdownForceClose": "Trotzdem schließen",
+ "shutdownForceQuit": "Trotzdem beenden",
+ "shutdownForceReload": "Trotzdem neu laden"
},
"vs/workbench/services/workspaces/browser/abstractWorkspaceEditingService": {
"errorInvalidTaskConfiguration": "In die Konfigurationsdatei des Arbeitsbereichs kann nicht geschrieben werden. Öffnen Sie die Datei, um Fehler/Warnungen darin zu beheben, und versuchen Sie es noch mal.",
- "errorWorkspaceConfigurationFileDirty": "In die Konfigurationsdatei des Arbeitsbereichs kann nicht geschrieben werden, weil sie nicht gespeicherte Änderungen enthält. Speichern Sie die Datei, und versuchen Sie es noch einmal.",
"openWorkspaceConfigurationFile": "Konfiguration des Arbeitsbereichs öffnen",
"save": "Speichern",
"saveWorkspace": "Arbeitsbereich speichern"
},
"vs/workbench/services/workspaces/browser/workspaceTrustEditorInput": {
- "workspaceTrustEditorInputName": "Arbeitsbereichsvertrauensstellung"
+ "workspaceTrustEditorInputName": "Arbeitsbereichsvertrauensstellung",
+ "workspaceTrustEditorLabelIcon": "Symbol der Bezeichnung des Editors für die Arbeitsbereichsvertrauensstellung."
},
- "vs/workbench/services/workspaces/electron-sandbox/workspaceEditingService": {
- "cancel": "Abbrechen",
- "doNotSave": "Nicht speichern",
- "save": "Speichern",
+ "vs/workbench/services/workspaces/electron-browser/workspaceEditingService": {
+ "doNotAskAgain": "Unbenannte Arbeitsbereiche immer ohne Aufforderung verwerfen",
+ "doNotSave": "&&Nicht speichern",
+ "restartExtensionHost.reason": "Ein Arbeitsbereich mit mehreren Stämmen wird geöffnet",
+ "save": "&&Speichern",
"saveWorkspaceDetail": "Speichern Sie Ihren Arbeitsbereich, wenn Sie ihn erneut öffnen möchten.",
"saveWorkspaceMessage": "Möchten Sie Ihre Arbeitsbereichskonfiguration als Datei speichern?",
"workspaceOpenedDetail": "Der Arbeitsbereich ist bereits in einem anderen Fenster geöffnet. Schließen Sie zuerst das andere Fenster, und versuchen Sie anschließend noch mal.",
diff --git a/i18n/vscode-language-pack-es/package.json b/i18n/vscode-language-pack-es/package.json
index 0e5909f133..beb6000fd9 100644
--- a/i18n/vscode-language-pack-es/package.json
+++ b/i18n/vscode-language-pack-es/package.json
@@ -2,7 +2,7 @@
"name": "vscode-language-pack-es",
"displayName": "Spanish Language Pack for Visual Studio Code",
"description": "Language pack extension for Spanish",
- "version": "1.70.0",
+ "version": "1.108.0",
"publisher": "MS-CEINTL",
"repository": {
"type": "git",
@@ -10,12 +10,15 @@
},
"license": "SEE MIT LICENSE IN LICENSE.md",
"engines": {
- "vscode": "^1.70.0"
+ "vscode": "^1.108.0"
},
"icon": "languagepack.png",
"categories": [
"Language Packs"
],
+ "keywords": [
+ "español"
+ ],
"contributes": {
"localizations": [
{
@@ -27,601 +30,369 @@
"id": "vscode",
"path": "./translations/main.i18n.json"
},
+ {
+ "id": "ms-vscode.js-debug",
+ "path": "./translations/extensions/ms-vscode.js-debug.i18n.json"
+ },
{
"id": "vscode.bat",
- "path": "./translations/extensions/bat.i18n.json"
+ "path": "./translations/extensions/vscode.bat.i18n.json"
+ },
+ {
+ "id": "vscode.builtin-notebook-renderers",
+ "path": "./translations/extensions/vscode.builtin-notebook-renderers.i18n.json"
},
{
"id": "vscode.clojure",
- "path": "./translations/extensions/clojure.i18n.json"
+ "path": "./translations/extensions/vscode.clojure.i18n.json"
},
{
"id": "vscode.coffeescript",
- "path": "./translations/extensions/coffeescript.i18n.json"
+ "path": "./translations/extensions/vscode.coffeescript.i18n.json"
},
{
"id": "vscode.configuration-editing",
- "path": "./translations/extensions/configuration-editing.i18n.json"
+ "path": "./translations/extensions/vscode.configuration-editing.i18n.json"
},
{
"id": "vscode.cpp",
- "path": "./translations/extensions/cpp.i18n.json"
+ "path": "./translations/extensions/vscode.cpp.i18n.json"
},
{
"id": "vscode.csharp",
- "path": "./translations/extensions/csharp.i18n.json"
+ "path": "./translations/extensions/vscode.csharp.i18n.json"
},
{
"id": "vscode.css-language-features",
- "path": "./translations/extensions/css-language-features.i18n.json"
+ "path": "./translations/extensions/vscode.css-language-features.i18n.json"
},
{
"id": "vscode.css",
- "path": "./translations/extensions/css.i18n.json"
+ "path": "./translations/extensions/vscode.css.i18n.json"
},
{
"id": "vscode.dart",
- "path": "./translations/extensions/dart.i18n.json"
+ "path": "./translations/extensions/vscode.dart.i18n.json"
},
{
"id": "vscode.debug-auto-launch",
- "path": "./translations/extensions/debug-auto-launch.i18n.json"
+ "path": "./translations/extensions/vscode.debug-auto-launch.i18n.json"
},
{
"id": "vscode.debug-server-ready",
- "path": "./translations/extensions/debug-server-ready.i18n.json"
+ "path": "./translations/extensions/vscode.debug-server-ready.i18n.json"
},
{
"id": "vscode.diff",
- "path": "./translations/extensions/diff.i18n.json"
+ "path": "./translations/extensions/vscode.diff.i18n.json"
},
{
"id": "vscode.docker",
- "path": "./translations/extensions/docker.i18n.json"
+ "path": "./translations/extensions/vscode.docker.i18n.json"
+ },
+ {
+ "id": "vscode.dotenv",
+ "path": "./translations/extensions/vscode.dotenv.i18n.json"
},
{
"id": "vscode.emmet",
- "path": "./translations/extensions/emmet.i18n.json"
+ "path": "./translations/extensions/vscode.emmet.i18n.json"
},
{
"id": "vscode.extension-editing",
- "path": "./translations/extensions/extension-editing.i18n.json"
+ "path": "./translations/extensions/vscode.extension-editing.i18n.json"
},
{
"id": "vscode.fsharp",
- "path": "./translations/extensions/fsharp.i18n.json"
+ "path": "./translations/extensions/vscode.fsharp.i18n.json"
},
{
"id": "vscode.git-base",
- "path": "./translations/extensions/git-base.i18n.json"
- },
- {
- "id": "vscode.git-ui",
- "path": "./translations/extensions/git-ui.i18n.json"
+ "path": "./translations/extensions/vscode.git-base.i18n.json"
},
{
"id": "vscode.git",
- "path": "./translations/extensions/git.i18n.json"
+ "path": "./translations/extensions/vscode.git.i18n.json"
},
{
"id": "vscode.github-authentication",
- "path": "./translations/extensions/github-authentication.i18n.json"
- },
- {
- "id": "vscode.github-browser",
- "path": "./translations/extensions/github-browser.i18n.json"
+ "path": "./translations/extensions/vscode.github-authentication.i18n.json"
},
{
"id": "vscode.github",
- "path": "./translations/extensions/github.i18n.json"
+ "path": "./translations/extensions/vscode.github.i18n.json"
},
{
"id": "vscode.go",
- "path": "./translations/extensions/go.i18n.json"
+ "path": "./translations/extensions/vscode.go.i18n.json"
},
{
"id": "vscode.groovy",
- "path": "./translations/extensions/groovy.i18n.json"
+ "path": "./translations/extensions/vscode.groovy.i18n.json"
},
{
"id": "vscode.grunt",
- "path": "./translations/extensions/grunt.i18n.json"
+ "path": "./translations/extensions/vscode.grunt.i18n.json"
},
{
"id": "vscode.gulp",
- "path": "./translations/extensions/gulp.i18n.json"
+ "path": "./translations/extensions/vscode.gulp.i18n.json"
},
{
"id": "vscode.handlebars",
- "path": "./translations/extensions/handlebars.i18n.json"
+ "path": "./translations/extensions/vscode.handlebars.i18n.json"
},
{
"id": "vscode.hlsl",
- "path": "./translations/extensions/hlsl.i18n.json"
+ "path": "./translations/extensions/vscode.hlsl.i18n.json"
},
{
"id": "vscode.html-language-features",
- "path": "./translations/extensions/html-language-features.i18n.json"
+ "path": "./translations/extensions/vscode.html-language-features.i18n.json"
},
{
"id": "vscode.html",
- "path": "./translations/extensions/html.i18n.json"
- },
- {
- "id": "vscode.image-preview",
- "path": "./translations/extensions/image-preview.i18n.json"
+ "path": "./translations/extensions/vscode.html.i18n.json"
},
{
"id": "vscode.ini",
- "path": "./translations/extensions/ini.i18n.json"
+ "path": "./translations/extensions/vscode.ini.i18n.json"
},
{
"id": "vscode.ipynb",
- "path": "./translations/extensions/ipynb.i18n.json"
+ "path": "./translations/extensions/vscode.ipynb.i18n.json"
},
{
"id": "vscode.jake",
- "path": "./translations/extensions/jake.i18n.json"
+ "path": "./translations/extensions/vscode.jake.i18n.json"
},
{
"id": "vscode.java",
- "path": "./translations/extensions/java.i18n.json"
+ "path": "./translations/extensions/vscode.java.i18n.json"
},
{
"id": "vscode.javascript",
- "path": "./translations/extensions/javascript.i18n.json"
+ "path": "./translations/extensions/vscode.javascript.i18n.json"
},
{
"id": "vscode.json-language-features",
- "path": "./translations/extensions/json-language-features.i18n.json"
+ "path": "./translations/extensions/vscode.json-language-features.i18n.json"
},
{
"id": "vscode.json",
- "path": "./translations/extensions/json.i18n.json"
+ "path": "./translations/extensions/vscode.json.i18n.json"
},
{
"id": "vscode.julia",
- "path": "./translations/extensions/julia.i18n.json"
+ "path": "./translations/extensions/vscode.julia.i18n.json"
},
{
"id": "vscode.latex",
- "path": "./translations/extensions/latex.i18n.json"
+ "path": "./translations/extensions/vscode.latex.i18n.json"
},
{
"id": "vscode.less",
- "path": "./translations/extensions/less.i18n.json"
+ "path": "./translations/extensions/vscode.less.i18n.json"
},
{
"id": "vscode.log",
- "path": "./translations/extensions/log.i18n.json"
+ "path": "./translations/extensions/vscode.log.i18n.json"
},
{
"id": "vscode.lua",
- "path": "./translations/extensions/lua.i18n.json"
+ "path": "./translations/extensions/vscode.lua.i18n.json"
},
{
"id": "vscode.make",
- "path": "./translations/extensions/make.i18n.json"
- },
- {
- "id": "vscode.markdown-basics",
- "path": "./translations/extensions/markdown-basics.i18n.json"
+ "path": "./translations/extensions/vscode.make.i18n.json"
},
{
"id": "vscode.markdown-language-features",
- "path": "./translations/extensions/markdown-language-features.i18n.json"
+ "path": "./translations/extensions/vscode.markdown-language-features.i18n.json"
},
{
"id": "vscode.markdown-math",
- "path": "./translations/extensions/markdown-math.i18n.json"
- },
- {
- "id": "vscode.markdown-notebook-math",
- "path": "./translations/extensions/markdown-notebook-math.i18n.json"
- },
- {
- "id": "vscode.merge-conflict",
- "path": "./translations/extensions/merge-conflict.i18n.json"
- },
- {
- "id": "vscode.microsoft-authentication",
- "path": "./translations/extensions/microsoft-authentication.i18n.json"
+ "path": "./translations/extensions/vscode.markdown-math.i18n.json"
},
{
- "id": "vscode.ms-vscode.github-browser",
- "path": "./translations/extensions/ms-vscode.github-browser.i18n.json"
- },
- {
- "id": "vscode.ms-vscode.js-debug",
- "path": "./translations/extensions/ms-vscode.js-debug.i18n.json"
- },
- {
- "id": "vscode.ms-vscode.node-debug",
- "path": "./translations/extensions/ms-vscode.node-debug.i18n.json"
+ "id": "vscode.markdown",
+ "path": "./translations/extensions/vscode.markdown.i18n.json"
},
{
- "id": "vscode.ms-vscode.node-debug2",
- "path": "./translations/extensions/ms-vscode.node-debug2.i18n.json"
+ "id": "vscode.media-preview",
+ "path": "./translations/extensions/vscode.media-preview.i18n.json"
},
{
- "id": "vscode.ms-vscode.remotehub",
- "path": "./translations/extensions/ms-vscode.remotehub.i18n.json"
+ "id": "vscode.merge-conflict",
+ "path": "./translations/extensions/vscode.merge-conflict.i18n.json"
},
{
- "id": "vscode.notebook-markdown-extensions",
- "path": "./translations/extensions/notebook-markdown-extensions.i18n.json"
+ "id": "vscode.mermaid-chat-features",
+ "path": "./translations/extensions/vscode.mermaid-chat-features.i18n.json"
},
{
- "id": "vscode.notebook-renderers",
- "path": "./translations/extensions/notebook-renderers.i18n.json"
+ "id": "vscode.microsoft-authentication",
+ "path": "./translations/extensions/vscode.microsoft-authentication.i18n.json"
},
{
"id": "vscode.npm",
- "path": "./translations/extensions/npm.i18n.json"
+ "path": "./translations/extensions/vscode.npm.i18n.json"
},
{
"id": "vscode.objective-c",
- "path": "./translations/extensions/objective-c.i18n.json"
+ "path": "./translations/extensions/vscode.objective-c.i18n.json"
},
{
"id": "vscode.perl",
- "path": "./translations/extensions/perl.i18n.json"
+ "path": "./translations/extensions/vscode.perl.i18n.json"
},
{
"id": "vscode.php-language-features",
- "path": "./translations/extensions/php-language-features.i18n.json"
+ "path": "./translations/extensions/vscode.php-language-features.i18n.json"
},
{
"id": "vscode.php",
- "path": "./translations/extensions/php.i18n.json"
+ "path": "./translations/extensions/vscode.php.i18n.json"
},
{
"id": "vscode.powershell",
- "path": "./translations/extensions/powershell.i18n.json"
+ "path": "./translations/extensions/vscode.powershell.i18n.json"
+ },
+ {
+ "id": "vscode.prompt",
+ "path": "./translations/extensions/vscode.prompt.i18n.json"
},
{
"id": "vscode.pug",
- "path": "./translations/extensions/pug.i18n.json"
+ "path": "./translations/extensions/vscode.pug.i18n.json"
},
{
"id": "vscode.python",
- "path": "./translations/extensions/python.i18n.json"
+ "path": "./translations/extensions/vscode.python.i18n.json"
},
{
"id": "vscode.r",
- "path": "./translations/extensions/r.i18n.json"
+ "path": "./translations/extensions/vscode.r.i18n.json"
},
{
"id": "vscode.razor",
- "path": "./translations/extensions/razor.i18n.json"
+ "path": "./translations/extensions/vscode.razor.i18n.json"
},
{
"id": "vscode.references-view",
- "path": "./translations/extensions/references-view.i18n.json"
+ "path": "./translations/extensions/vscode.references-view.i18n.json"
},
{
"id": "vscode.restructuredtext",
- "path": "./translations/extensions/restructuredtext.i18n.json"
+ "path": "./translations/extensions/vscode.restructuredtext.i18n.json"
},
{
"id": "vscode.ruby",
- "path": "./translations/extensions/ruby.i18n.json"
+ "path": "./translations/extensions/vscode.ruby.i18n.json"
},
{
"id": "vscode.rust",
- "path": "./translations/extensions/rust.i18n.json"
+ "path": "./translations/extensions/vscode.rust.i18n.json"
},
{
"id": "vscode.scss",
- "path": "./translations/extensions/scss.i18n.json"
+ "path": "./translations/extensions/vscode.scss.i18n.json"
},
{
"id": "vscode.search-result",
- "path": "./translations/extensions/search-result.i18n.json"
+ "path": "./translations/extensions/vscode.search-result.i18n.json"
},
{
"id": "vscode.shaderlab",
- "path": "./translations/extensions/shaderlab.i18n.json"
+ "path": "./translations/extensions/vscode.shaderlab.i18n.json"
},
{
"id": "vscode.shellscript",
- "path": "./translations/extensions/shellscript.i18n.json"
+ "path": "./translations/extensions/vscode.shellscript.i18n.json"
},
{
"id": "vscode.simple-browser",
- "path": "./translations/extensions/simple-browser.i18n.json"
+ "path": "./translations/extensions/vscode.simple-browser.i18n.json"
},
{
"id": "vscode.sql",
- "path": "./translations/extensions/sql.i18n.json"
+ "path": "./translations/extensions/vscode.sql.i18n.json"
},
{
"id": "vscode.swift",
- "path": "./translations/extensions/swift.i18n.json"
+ "path": "./translations/extensions/vscode.swift.i18n.json"
},
{
- "id": "vscode.testing-editor-contributions",
- "path": "./translations/extensions/testing-editor-contributions.i18n.json"
+ "id": "vscode.terminal-suggest",
+ "path": "./translations/extensions/vscode.terminal-suggest.i18n.json"
},
{
"id": "vscode.theme-abyss",
- "path": "./translations/extensions/theme-abyss.i18n.json"
+ "path": "./translations/extensions/vscode.theme-abyss.i18n.json"
},
{
"id": "vscode.theme-defaults",
- "path": "./translations/extensions/theme-defaults.i18n.json"
+ "path": "./translations/extensions/vscode.theme-defaults.i18n.json"
},
{
"id": "vscode.theme-kimbie-dark",
- "path": "./translations/extensions/theme-kimbie-dark.i18n.json"
+ "path": "./translations/extensions/vscode.theme-kimbie-dark.i18n.json"
},
{
"id": "vscode.theme-monokai-dimmed",
- "path": "./translations/extensions/theme-monokai-dimmed.i18n.json"
+ "path": "./translations/extensions/vscode.theme-monokai-dimmed.i18n.json"
},
{
"id": "vscode.theme-monokai",
- "path": "./translations/extensions/theme-monokai.i18n.json"
+ "path": "./translations/extensions/vscode.theme-monokai.i18n.json"
},
{
"id": "vscode.theme-quietlight",
- "path": "./translations/extensions/theme-quietlight.i18n.json"
+ "path": "./translations/extensions/vscode.theme-quietlight.i18n.json"
},
{
"id": "vscode.theme-red",
- "path": "./translations/extensions/theme-red.i18n.json"
- },
- {
- "id": "vscode.theme-seti",
- "path": "./translations/extensions/theme-seti.i18n.json"
+ "path": "./translations/extensions/vscode.theme-red.i18n.json"
},
{
"id": "vscode.theme-solarized-dark",
- "path": "./translations/extensions/theme-solarized-dark.i18n.json"
+ "path": "./translations/extensions/vscode.theme-solarized-dark.i18n.json"
},
{
"id": "vscode.theme-solarized-light",
- "path": "./translations/extensions/theme-solarized-light.i18n.json"
+ "path": "./translations/extensions/vscode.theme-solarized-light.i18n.json"
},
{
"id": "vscode.theme-tomorrow-night-blue",
- "path": "./translations/extensions/theme-tomorrow-night-blue.i18n.json"
+ "path": "./translations/extensions/vscode.theme-tomorrow-night-blue.i18n.json"
},
{
- "id": "vscode.typescript-basics",
- "path": "./translations/extensions/typescript-basics.i18n.json"
+ "id": "vscode.tunnel-forwarding",
+ "path": "./translations/extensions/vscode.tunnel-forwarding.i18n.json"
},
{
"id": "vscode.typescript-language-features",
- "path": "./translations/extensions/typescript-language-features.i18n.json"
- },
- {
- "id": "vscode.vb",
- "path": "./translations/extensions/vb.i18n.json"
- },
- {
- "id": "vscode.vscode-chrome-debug-core",
- "path": "./translations/extensions/vscode-chrome-debug-core.i18n.json"
- },
- {
- "id": "ms-vscode.node-debug",
- "path": "./translations/extensions/vscode-node-debug.i18n.json"
- },
- {
- "id": "ms-vscode.node-debug2",
- "path": "./translations/extensions/vscode-node-debug2.i18n.json"
+ "path": "./translations/extensions/vscode.typescript-language-features.i18n.json"
},
{
- "id": "vscode.vscode.bat",
- "path": "./translations/extensions/vscode.bat.i18n.json"
- },
- {
- "id": "vscode.vscode.clojure",
- "path": "./translations/extensions/vscode.clojure.i18n.json"
- },
- {
- "id": "vscode.vscode.coffeescript",
- "path": "./translations/extensions/vscode.coffeescript.i18n.json"
- },
- {
- "id": "vscode.vscode.cpp",
- "path": "./translations/extensions/vscode.cpp.i18n.json"
- },
- {
- "id": "vscode.vscode.csharp",
- "path": "./translations/extensions/vscode.csharp.i18n.json"
- },
- {
- "id": "vscode.vscode.css",
- "path": "./translations/extensions/vscode.css.i18n.json"
- },
- {
- "id": "vscode.vscode.docker",
- "path": "./translations/extensions/vscode.docker.i18n.json"
- },
- {
- "id": "vscode.vscode.fsharp",
- "path": "./translations/extensions/vscode.fsharp.i18n.json"
- },
- {
- "id": "vscode.vscode.go",
- "path": "./translations/extensions/vscode.go.i18n.json"
- },
- {
- "id": "vscode.vscode.groovy",
- "path": "./translations/extensions/vscode.groovy.i18n.json"
- },
- {
- "id": "vscode.vscode.handlebars",
- "path": "./translations/extensions/vscode.handlebars.i18n.json"
- },
- {
- "id": "vscode.vscode.hlsl",
- "path": "./translations/extensions/vscode.hlsl.i18n.json"
- },
- {
- "id": "vscode.vscode.html",
- "path": "./translations/extensions/vscode.html.i18n.json"
- },
- {
- "id": "vscode.vscode.ini",
- "path": "./translations/extensions/vscode.ini.i18n.json"
- },
- {
- "id": "vscode.vscode.java",
- "path": "./translations/extensions/vscode.java.i18n.json"
- },
- {
- "id": "vscode.vscode.javascript",
- "path": "./translations/extensions/vscode.javascript.i18n.json"
- },
- {
- "id": "vscode.vscode.json",
- "path": "./translations/extensions/vscode.json.i18n.json"
- },
- {
- "id": "vscode.vscode.less",
- "path": "./translations/extensions/vscode.less.i18n.json"
- },
- {
- "id": "vscode.vscode.log",
- "path": "./translations/extensions/vscode.log.i18n.json"
- },
- {
- "id": "vscode.vscode.lua",
- "path": "./translations/extensions/vscode.lua.i18n.json"
- },
- {
- "id": "vscode.vscode.make",
- "path": "./translations/extensions/vscode.make.i18n.json"
- },
- {
- "id": "vscode.vscode.markdown",
- "path": "./translations/extensions/vscode.markdown.i18n.json"
- },
- {
- "id": "vscode.vscode.objective-c",
- "path": "./translations/extensions/vscode.objective-c.i18n.json"
- },
- {
- "id": "vscode.vscode.perl",
- "path": "./translations/extensions/vscode.perl.i18n.json"
- },
- {
- "id": "vscode.vscode.php",
- "path": "./translations/extensions/vscode.php.i18n.json"
- },
- {
- "id": "vscode.vscode.powershell",
- "path": "./translations/extensions/vscode.powershell.i18n.json"
- },
- {
- "id": "vscode.vscode.pug",
- "path": "./translations/extensions/vscode.pug.i18n.json"
- },
- {
- "id": "vscode.vscode.r",
- "path": "./translations/extensions/vscode.r.i18n.json"
- },
- {
- "id": "vscode.vscode.razor",
- "path": "./translations/extensions/vscode.razor.i18n.json"
- },
- {
- "id": "vscode.vscode.ruby",
- "path": "./translations/extensions/vscode.ruby.i18n.json"
- },
- {
- "id": "vscode.vscode.rust",
- "path": "./translations/extensions/vscode.rust.i18n.json"
- },
- {
- "id": "vscode.vscode.scss",
- "path": "./translations/extensions/vscode.scss.i18n.json"
- },
- {
- "id": "vscode.vscode.shaderlab",
- "path": "./translations/extensions/vscode.shaderlab.i18n.json"
- },
- {
- "id": "vscode.vscode.shellscript",
- "path": "./translations/extensions/vscode.shellscript.i18n.json"
- },
- {
- "id": "vscode.vscode.sql",
- "path": "./translations/extensions/vscode.sql.i18n.json"
- },
- {
- "id": "vscode.vscode.swift",
- "path": "./translations/extensions/vscode.swift.i18n.json"
- },
- {
- "id": "vscode.vscode.theme-abyss",
- "path": "./translations/extensions/vscode.theme-abyss.i18n.json"
- },
- {
- "id": "vscode.vscode.theme-defaults",
- "path": "./translations/extensions/vscode.theme-defaults.i18n.json"
- },
- {
- "id": "vscode.vscode.theme-kimbie-dark",
- "path": "./translations/extensions/vscode.theme-kimbie-dark.i18n.json"
- },
- {
- "id": "vscode.vscode.theme-monokai-dimmed",
- "path": "./translations/extensions/vscode.theme-monokai-dimmed.i18n.json"
- },
- {
- "id": "vscode.vscode.theme-monokai",
- "path": "./translations/extensions/vscode.theme-monokai.i18n.json"
- },
- {
- "id": "vscode.vscode.theme-quietlight",
- "path": "./translations/extensions/vscode.theme-quietlight.i18n.json"
- },
- {
- "id": "vscode.vscode.theme-red",
- "path": "./translations/extensions/vscode.theme-red.i18n.json"
- },
- {
- "id": "vscode.vscode.theme-solarized-dark",
- "path": "./translations/extensions/vscode.theme-solarized-dark.i18n.json"
- },
- {
- "id": "vscode.vscode.theme-solarized-light",
- "path": "./translations/extensions/vscode.theme-solarized-light.i18n.json"
- },
- {
- "id": "vscode.vscode.theme-tomorrow-night-blue",
- "path": "./translations/extensions/vscode.theme-tomorrow-night-blue.i18n.json"
- },
- {
- "id": "vscode.vscode.typescript",
+ "id": "vscode.typescript",
"path": "./translations/extensions/vscode.typescript.i18n.json"
},
{
- "id": "vscode.vscode.vb",
+ "id": "vscode.vb",
"path": "./translations/extensions/vscode.vb.i18n.json"
},
{
- "id": "vscode.vscode.vscode-theme-seti",
+ "id": "vscode.vscode-theme-seti",
"path": "./translations/extensions/vscode.vscode-theme-seti.i18n.json"
},
- {
- "id": "vscode.vscode.xml",
- "path": "./translations/extensions/vscode.xml.i18n.json"
- },
- {
- "id": "vscode.vscode.yaml",
- "path": "./translations/extensions/vscode.yaml.i18n.json"
- },
{
"id": "vscode.xml",
- "path": "./translations/extensions/xml.i18n.json"
+ "path": "./translations/extensions/vscode.xml.i18n.json"
},
{
"id": "vscode.yaml",
- "path": "./translations/extensions/yaml.i18n.json"
+ "path": "./translations/extensions/vscode.yaml.i18n.json"
}
]
}
diff --git a/i18n/vscode-language-pack-es/translations/extensions/bat.i18n.json b/i18n/vscode-language-pack-es/translations/extensions/bat.i18n.json
deleted file mode 100644
index 0a656f4417..0000000000
--- a/i18n/vscode-language-pack-es/translations/extensions/bat.i18n.json
+++ /dev/null
@@ -1,16 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "package": {
- "description": "Proporciona fragmentos de código, resaltado de sintaxis, correspondencia de corchetes y plegado de código en archivos por lotes de Windows.",
- "displayName": "Conceptos básicos del lenguaje Windows Bat"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-es/translations/extensions/clojure.i18n.json b/i18n/vscode-language-pack-es/translations/extensions/clojure.i18n.json
deleted file mode 100644
index b1110f522b..0000000000
--- a/i18n/vscode-language-pack-es/translations/extensions/clojure.i18n.json
+++ /dev/null
@@ -1,16 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "package": {
- "description": "Proporciona resaltado de sintaxis y correspondencia de corchetes en archivos de Clojure.",
- "displayName": "Conceptos básicos del lenguaje Clojure"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-es/translations/extensions/coffeescript.i18n.json b/i18n/vscode-language-pack-es/translations/extensions/coffeescript.i18n.json
deleted file mode 100644
index 6fb975b30e..0000000000
--- a/i18n/vscode-language-pack-es/translations/extensions/coffeescript.i18n.json
+++ /dev/null
@@ -1,16 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "package": {
- "description": "Proporciona fragmentos de código, resaltado de sintaxis, correspondencia de corchetes y plegado de código en archivos de CoffeeScript.",
- "displayName": "Conceptos básicos del lenguaje CoffeeScript"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-es/translations/extensions/configuration-editing.i18n.json b/i18n/vscode-language-pack-es/translations/extensions/configuration-editing.i18n.json
deleted file mode 100644
index b5e72b8166..0000000000
--- a/i18n/vscode-language-pack-es/translations/extensions/configuration-editing.i18n.json
+++ /dev/null
@@ -1,70 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "dist/configurationEditingMain": {
- "cwd": "El directorio de trabajo del ejecutor de tarea en el arranque",
- "defaultBuildTask": "El nombre de la tarea de compilación predeterminada. Si no hay una única tarea de compilación predeterminada se muestra una selección rápida para elegir la tarea de compilación.",
- "extensionInstallFolder": "Ruta de acceso en que se instala una extensión.",
- "file": "El archivo abierto actualmente",
- "fileBasename": "Nombre base del archivo abierto actual ",
- "fileBasenameNoExtension": "Nombre base del archivo abierto actual sin extensión de archivo ",
- "fileDirname": "Nombre del directorio del archivo abierto actual",
- "fileExtname": "Extensión del archivo abierto actualmente",
- "lineNumber": "El número de línea seleccionado actual en el archivo activo",
- "pathSeparator": "Carácter que usa el sistema operativo para separar los componentes en las rutas de acceso de los archivos",
- "relativeFile": "El archivo abierto actualmente relativo a ${workspaceFolder}",
- "relativeFileDirname": "Nombre de directorio del archivo abierto actual en relación con ${workspaceFolder}",
- "selectedText": "El texto actual seleccionado en el archivo activo ",
- "workspaceFolder": "La ruta de la carpeta abierta en VS Code",
- "workspaceFolderBasename": "El nombre de la carpeta abierta en VS Code sin ninguna barra diagonal (/)"
- },
- "dist/extensionsProposals": {
- "exampleExtension": "Ejemplo"
- },
- "dist/settingsDocumentHelper": {
- "activeEditor": "Utilice el idioma del editor de texto actualmente activo, si existe",
- "activeEditorLong": "la ruta de acceso completa del archivo (por ejemplo, /Users/Development/myFolder/myFileFolder/myFile.txt)",
- "activeEditorMedium": "la ruta de acceso de archivo relativa a la carpeta de área de trabajo (p. ej. myFolder/myFileFolder/myFile.txt)",
- "activeEditorShort": "el nombre del archivo (por ejemplo miarchivo.txt)",
- "activeFolderLong": "la ruta completa de la carpeta que contiene el archivo (por ejemplo, /Users/Development/myFolder/myFileFolder)",
- "activeFolderMedium": "la ruta de la carpeta que contiene el archivo, relativa a la carpeta del área de trabajo (por ejemplo myFolder/myFileFolder)",
- "activeFolderShort": "el nombre de la carpeta en que se encuentra el archivo (por ejemplo, myFileFolder)",
- "appName": "p. ej. VS Code",
- "assocDescriptionFile": "Asigna todos los archivos cuyo nombre coincide con el patrón global al lenguaje con el identificador especificado.",
- "assocDescriptionPath": "Asigna todos los archivos cuya ruta de acceso al lenguaje con el identificador especificado coincide con el patrón global de ruta de acceso absoluta.",
- "assocLabelFile": "Archivos con extensión",
- "assocLabelPath": "Archivos con ruta de acceso",
- "derivedDescription": "Hacer coincidir archivos que tienen elementos del mismo nivel con el mismo nombre pero con extensión diferente.",
- "derivedLabel": "Archivos con elementos del mismo nivel por nombre",
- "dirty": "un indicador para cuando el editor activo tiene cambios sin guardar",
- "fileDescription": "Hacer coincidir todos los archivos que tengan una extensión de archivo determinada.",
- "fileLabel": "Archivos por extensión",
- "filesDescription": "Hacer coincidir todos los archivos con cualquiera de las extensiones de archivo.",
- "filesLabel": "Archivos con varias extensiones",
- "folderDescription": "Hacer coincidir una carpeta con un nombre determinado en cualquier ubicación.",
- "folderLabel": "Carpeta por nombre (cualquier ubicación)",
- "folderName": "nombre de la carpeta del área de trabajo en la que el archivo está contenido (p. ej. myFolder)",
- "folderPath": "ruta de acceso de archivo de la carpeta del área de trabajo en la que el archivo está contenido (p. ej. /Users/Development/myFolder)",
- "remoteName": "por ejemplo, SSH",
- "rootName": "nombre del área de trabajo (p. ej. myFolder o myWorkspace)",
- "rootPath": "ruta del archivo del área de trabajo (p. ej. /Users/Development/myWorkspace)",
- "separator": "un separador condicional (\"-\") que aparece solo cuando está rodeado de variables con valores",
- "siblingsDescription": "Hacer coincidir archivos que tienen elementos del mismo nivel con el mismo nombre pero con extensión diferente.",
- "topFolderDescription": "Hacer coincidir una carpeta de nivel superior con un nombre específico.",
- "topFolderLabel": "Carpeta por nombre (nivel superior)",
- "topFoldersDescription": "Hacer coincidir varias carpetas de nivel superior.",
- "topFoldersLabel": "Carpetas con varios nombres (nivel superior)"
- },
- "package": {
- "description": "Proporciona características (IntelliSense avanzado, corrección automática) en archivos de configuración, como archivos de valores, de inicio y de recomendación de extensiones. ",
- "displayName": "Edición de configuración"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-es/translations/extensions/cpp.i18n.json b/i18n/vscode-language-pack-es/translations/extensions/cpp.i18n.json
deleted file mode 100644
index abe62e7c3a..0000000000
--- a/i18n/vscode-language-pack-es/translations/extensions/cpp.i18n.json
+++ /dev/null
@@ -1,16 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "package": {
- "description": "Proporciona fragmentos de código, resaltado de sintaxis, correspondencia de corchetes y plegado de código en archivos de C/C++.",
- "displayName": "Conceptos básicos del lenguaje C y C++"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-es/translations/extensions/csharp.i18n.json b/i18n/vscode-language-pack-es/translations/extensions/csharp.i18n.json
deleted file mode 100644
index 0f34c019bf..0000000000
--- a/i18n/vscode-language-pack-es/translations/extensions/csharp.i18n.json
+++ /dev/null
@@ -1,16 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "package": {
- "description": "Proporciona fragmentos de código, resaltado de sintaxis, correspondencia de corchetes y plegado de código en archivos de C#.",
- "displayName": "Conceptos básicos del lenguaje C#"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-es/translations/extensions/css-language-features.i18n.json b/i18n/vscode-language-pack-es/translations/extensions/css-language-features.i18n.json
deleted file mode 100644
index a649ed4f6d..0000000000
--- a/i18n/vscode-language-pack-es/translations/extensions/css-language-features.i18n.json
+++ /dev/null
@@ -1,128 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "client\\dist\\node/cssClient": {
- "cssserver.name": "Servidor de lenguaje CSS",
- "folding.end": "Fin de la región plegable",
- "folding.start": "Inicio de la región plegable"
- },
- "package": {
- "css.colorDecorators.enable.deprecationMessage": "El valor \"css.colorDecorators.enable\" está en desuso en favor de \"editor.colorDecorators\".",
- "css.completion.completePropertyWithSemicolon.desc": "Inserta punto y coma al final de la línea al completar las propiedades CSS.",
- "css.completion.triggerPropertyValueCompletion.desc": "De forma predeterminada, VS Code desencadena la finalización de valores de propiedad tras seleccionar una propiedad CSS. Use esta opción para deshabilitar este comportamiento.",
- "css.customData.desc": "Una lista de rutas de archivo relativas que apuntan a archivos JSON siguiendo el [formato de datos personalizados](https://github.com/microsoft/vscode-css-languageservice/blob/master/docs/customData.md).\r\n\r\nVS Code carga los datos personalizados al iniciarse para mejorar su soporte de CSS para las propiedades CSS personalizadas, las directivas, las pseudoclases y los pseudoelementos que especifique en los archivos JSON.\r\n\r\nLas rutas de los archivos son relativas al espacio de trabajo y sólo se consideran las configuraciones de la carpeta del espacio de trabajo.",
- "css.format.braceStyle.desc": "Ponga llaves en la misma línea que las reglas ('collapse') o coloque llaves en su propia línea ('expand').",
- "css.format.enable.desc": "Habilita o deshabilita el formateador CSS predeterminado.",
- "css.format.maxPreserveNewLines.desc": "Número máximo de saltos de línea que se conservarán en un fragmento cuando `#css.format.preserveNewLines#` esté habilitado.",
- "css.format.newlineBetweenRules.desc": "Separa los conjuntos de reglas con una línea en blanco.",
- "css.format.newlineBetweenSelectors.desc": "Separa los selectores con una nueva línea.",
- "css.format.preserveNewLines.desc": "Indica si se deben conservar los saltos de línea existentes antes de los elementos.",
- "css.format.spaceAroundSelectorSeparator.desc": "Asegúrate de que haya un carácter de espacio alrededor de los separadores de selector '>', '+', '~' (por ejemplo, 'a > b').",
- "css.hover.documentation": "Mostrar la documentación de atributos y etiquetas mediante movimientos del puntero de CSS.",
- "css.hover.references": "Mostrar las referencias a MDN mediante movimientos del puntero de CSS.",
- "css.lint.argumentsInColorFunction.desc": "Número de parámetros incorrecto.",
- "css.lint.boxModel.desc": "No use \"width\" o \"height\" al usar \"padding\" o \"border\".",
- "css.lint.compatibleVendorPrefixes.desc": "Cuando use un prefijo específico del proveedor, compruebe que también haya incluido el resto de propiedades específicas del proveedor.",
- "css.lint.duplicateProperties.desc": "No use definiciones de estilo duplicadas.",
- "css.lint.emptyRules.desc": "No use conjuntos de reglas vacíos.",
- "css.lint.float.desc": "Le recomendamos no usar \"float\". Los valores float producen CSS frágiles que pueden dañarse fácilmente si cambia cualquier aspecto del diseño.",
- "css.lint.fontFaceProperties.desc": "La regla \"@font-face\" debe definir las propiedades \"src\" y \"font-family\".",
- "css.lint.hexColorLength.desc": "Los colores hexadecimales deben estar formados por tres o seis números hexadecimales.",
- "css.lint.idSelector.desc": "Los selectores no deben contener identificadores porque estas reglas están estrechamente ligadas a HTML.",
- "css.lint.ieHack.desc": "Las modificaciones de IE solo son necesarias cuando se admite IE7 y versiones anteriores.",
- "css.lint.importStatement.desc": "Las instrucciones Import no se cargan en paralelo.",
- "css.lint.important.desc": "Evite usar `!important`. Es una indicación que la especificidad de todo el CSS se ha salido de control y debe ser refactorizada.",
- "css.lint.propertyIgnoredDueToDisplay.desc": "La propiedad se ignora a causa de la pantalla. Por ejemplo, con \"display: inline\", las propiedades \"width\", \"height\", \"margin-top\", \"margin-bottom\" y \"float\" no tienen ningún efecto.",
- "css.lint.universalSelector.desc": "Se sabe que el selector universal (\"*\") es lento.",
- "css.lint.unknownAtRules.desc": "Regla At desconocida.",
- "css.lint.unknownProperties.desc": "Propiedad desconocida.",
- "css.lint.unknownVendorSpecificProperties.desc": "Propiedad específica del proveedor desconocida.",
- "css.lint.validProperties.desc": "Lista de propiedades que no se validan con la regla \"unknownProperties\".",
- "css.lint.vendorPrefix.desc": "Cuando use un prefijo específico del proveedor, incluya también la propiedad estándar.",
- "css.lint.zeroUnits.desc": "No se necesita una unidad para cero.",
- "css.title": "CSS",
- "css.trace.server.desc": "Hace un seguimiento de la comunicación entre VSCode y el servidor de lenguaje CSS.",
- "css.validate.desc": "Habilita o deshabilita todas las validaciones.",
- "css.validate.title": "Controla la validación de CSS y la gravedad de los problemas.",
- "description": "Proporciona un potente soporte de lenguaje para archivos CSS, LESS y SCSS.",
- "displayName": "Características del lenguaje CSS",
- "less.colorDecorators.enable.deprecationMessage": "El valor \"less.colorDecorators.enable\" está en desuso en favor de \"editor.colorDecorators\".",
- "less.completion.completePropertyWithSemicolon.desc": "Inserta punto y coma al final de la línea al completar las propiedades CSS.",
- "less.completion.triggerPropertyValueCompletion.desc": "De forma predeterminada, VS Code desencadena la finalización de valores de propiedad tras seleccionar una propiedad CSS. Use esta opción para deshabilitar este comportamiento.",
- "less.format.braceStyle.desc": "Ponga llaves en la misma línea que las reglas ('collapse') o coloque llaves en su propia línea ('expand').",
- "less.format.enable.desc": "Habilite o deshabilite el formateador LESS predeterminado.",
- "less.format.maxPreserveNewLines.desc": "Número máximo de saltos de línea que se conservarán en un fragmento cuando `#less.format.preserveNewLines#` esté habilitado.",
- "less.format.newlineBetweenRules.desc": "Separa los conjuntos de reglas con una línea en blanco.",
- "less.format.newlineBetweenSelectors.desc": "Separa los selectores con una nueva línea.",
- "less.format.preserveNewLines.desc": "Indica si se deben conservar los saltos de línea existentes antes de los elementos.",
- "less.format.spaceAroundSelectorSeparator.desc": "Asegúrate de que haya un carácter de espacio alrededor de los separadores de selector '>', '+', '~' (por ejemplo, 'a > b').",
- "less.hover.documentation": "Mostrar la documentación de atributos y etiquetas mediante movimientos del puntero de LESS.",
- "less.hover.references": "Mostrar las referencias a MDN mediante movimientos del puntero de LESS.",
- "less.lint.argumentsInColorFunction.desc": "Número de parámetros incorrecto.",
- "less.lint.boxModel.desc": "No use \"width\" o \"height\" al usar \"padding\" o \"border\".",
- "less.lint.compatibleVendorPrefixes.desc": "Cuando use un prefijo específico del proveedor, compruebe que también haya incluido el resto de propiedades específicas del proveedor.",
- "less.lint.duplicateProperties.desc": "No use definiciones de estilo duplicadas.",
- "less.lint.emptyRules.desc": "No use conjuntos de reglas vacíos.",
- "less.lint.float.desc": "Le recomendamos no usar \"float\". Los valores float producen CSS frágiles que pueden dañarse fácilmente si cambia cualquier aspecto del diseño.",
- "less.lint.fontFaceProperties.desc": "La regla \"@font-face\" debe definir las propiedades \"src\" y \"font-family\".",
- "less.lint.hexColorLength.desc": "Los colores hexadecimales deben estar formados por tres o seis números hexadecimales.",
- "less.lint.idSelector.desc": "Los selectores no deben contener identificadores porque estas reglas están estrechamente ligadas a HTML.",
- "less.lint.ieHack.desc": "Las modificaciones de IE solo son necesarias cuando se admite IE7 y versiones anteriores.",
- "less.lint.importStatement.desc": "Las instrucciones Import no se cargan en paralelo.",
- "less.lint.important.desc": "Evite usar `!important`. Es una indicación que la especificidad de todo el CSS se ha salido de control y debe ser refactorizada.",
- "less.lint.propertyIgnoredDueToDisplay.desc": "La propiedad se ignora a causa de la pantalla. Por ejemplo, con \"display: inline\", las propiedades \"width\", \"height\", \"margin-top\", \"margin-bottom\" y \"float\" no tienen ningún efecto.",
- "less.lint.universalSelector.desc": "Se sabe que el selector universal (\"*\") es lento.",
- "less.lint.unknownAtRules.desc": "Regla At desconocida.",
- "less.lint.unknownProperties.desc": "Propiedad desconocida.",
- "less.lint.unknownVendorSpecificProperties.desc": "Propiedad específica del proveedor desconocida.",
- "less.lint.validProperties.desc": "Lista de propiedades que no se validan con la regla \"unknownProperties\".",
- "less.lint.vendorPrefix.desc": "Cuando use un prefijo específico del proveedor, incluya también la propiedad estándar.",
- "less.lint.zeroUnits.desc": "No se necesita una unidad para cero.",
- "less.title": "LESS",
- "less.validate.desc": "Habilita o deshabilita todas las validaciones.",
- "less.validate.title": "Controla la validación de LESS y la gravedad de los problemas.",
- "scss.colorDecorators.enable.deprecationMessage": "El valor \"scss.colorDecorators.enable\" está en desuso en favor de \"editor.colorDecorators\".",
- "scss.completion.completePropertyWithSemicolon.desc": "Inserta punto y coma al final de la línea al completar las propiedades CSS.",
- "scss.completion.triggerPropertyValueCompletion.desc": "De forma predeterminada, VS Code desencadena la finalización de valores de propiedad tras seleccionar una propiedad CSS. Use esta opción para deshabilitar este comportamiento.",
- "scss.format.braceStyle.desc": "Ponga llaves en la misma línea que las reglas ('collapse') o coloque llaves en su propia línea ('expand').",
- "scss.format.enable.desc": "Habilita o deshabilita el formateador SCSS predeterminado.",
- "scss.format.maxPreserveNewLines.desc": "Número máximo de saltos de línea que se conservarán en un fragmento cuando `#scss.format.preserveNewLines#` esté habilitado.",
- "scss.format.newlineBetweenRules.desc": "Separe los conjuntos de reglas con una línea en blanco.",
- "scss.format.newlineBetweenSelectors.desc": "Separa los selectores con una nueva línea.",
- "scss.format.preserveNewLines.desc": "Indica si se deben conservar los saltos de línea existentes antes de los elementos.",
- "scss.format.spaceAroundSelectorSeparator.desc": "Asegúrate de que haya un carácter de espacio alrededor de los separadores de selector '>', '+', '~' (por ejemplo, 'a > b').",
- "scss.hover.documentation": "Mostrar la documentación de atributos y etiquetas mediante movimientos del puntero de SCSS.",
- "scss.hover.references": "Mostrar las referencias a MDN mediante movimientos del puntero de SCSS.",
- "scss.lint.argumentsInColorFunction.desc": "Número de parámetros incorrecto.",
- "scss.lint.boxModel.desc": "No use \"width\" o \"height\" al usar \"padding\" o \"border\".",
- "scss.lint.compatibleVendorPrefixes.desc": "Cuando use un prefijo específico del proveedor, compruebe que también haya incluido el resto de propiedades específicas del proveedor.",
- "scss.lint.duplicateProperties.desc": "No use definiciones de estilo duplicadas.",
- "scss.lint.emptyRules.desc": "No use conjuntos de reglas vacíos.",
- "scss.lint.float.desc": "Le recomendamos no usar \"float\". Los valores float producen CSS frágiles que pueden dañarse fácilmente si cambia cualquier aspecto del diseño.",
- "scss.lint.fontFaceProperties.desc": "La regla \"@font-face\" debe definir las propiedades \"src\" y \"font-family\".",
- "scss.lint.hexColorLength.desc": "Los colores hexadecimales deben estar formados por tres o seis números hexadecimales.",
- "scss.lint.idSelector.desc": "Los selectores no deben contener identificadores porque estas reglas están estrechamente ligadas a HTML.",
- "scss.lint.ieHack.desc": "Las modificaciones de IE solo son necesarias cuando se admite IE7 y versiones anteriores.",
- "scss.lint.importStatement.desc": "Las instrucciones Import no se cargan en paralelo.",
- "scss.lint.important.desc": "Evite usar `!important`. Es una indicación que la especificidad de todo el CSS se ha salido de control y debe ser refactorizada.",
- "scss.lint.propertyIgnoredDueToDisplay.desc": "La propiedad se ignora a causa de la pantalla. Por ejemplo, con \"display: inline\", las propiedades \"width\", \"height\", \"margin-top\", \"margin-bottom\" y \"float\" no tienen ningún efecto.",
- "scss.lint.universalSelector.desc": "Se sabe que el selector universal (\"*\") es lento.",
- "scss.lint.unknownAtRules.desc": "Regla At desconocida.",
- "scss.lint.unknownProperties.desc": "Propiedad desconocida.",
- "scss.lint.unknownVendorSpecificProperties.desc": "Propiedad específica del proveedor desconocida.",
- "scss.lint.validProperties.desc": "Lista de propiedades que no se validan con la regla \"unknownProperties\".",
- "scss.lint.vendorPrefix.desc": "Cuando use un prefijo específico del proveedor, incluya también la propiedad estándar.",
- "scss.lint.zeroUnits.desc": "No se necesita una unidad para cero.",
- "scss.title": "SCSS (Sass)",
- "scss.validate.desc": "Habilita o deshabilita todas las validaciones.",
- "scss.validate.title": "Controla la validación de SCSS y la gravedad de los problemas."
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-es/translations/extensions/css.i18n.json b/i18n/vscode-language-pack-es/translations/extensions/css.i18n.json
deleted file mode 100644
index d6aa2b999e..0000000000
--- a/i18n/vscode-language-pack-es/translations/extensions/css.i18n.json
+++ /dev/null
@@ -1,16 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "package": {
- "description": "Proporciona resaltado de sintaxis y correspondencia de corchetes en archivos CSS, LESS y SCSS.",
- "displayName": "Básicos de CSS"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-es/translations/extensions/debug-auto-launch.i18n.json b/i18n/vscode-language-pack-es/translations/extensions/debug-auto-launch.i18n.json
deleted file mode 100644
index 1cbcb7c078..0000000000
--- a/i18n/vscode-language-pack-es/translations/extensions/debug-auto-launch.i18n.json
+++ /dev/null
@@ -1,38 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "dist/extension": {
- "debug.javascript.autoAttach.always.description": "Se asocia automáticamente a todos los procesos de Node.js iniciados en el terminal",
- "debug.javascript.autoAttach.always.label": "Siempre",
- "debug.javascript.autoAttach.disabled.description": "La asociación automática está deshabilitada y no se muestra en la barra de estado",
- "debug.javascript.autoAttach.disabled.label": "Deshabilitado",
- "debug.javascript.autoAttach.onlyWithFlag.description": "Solo es posible la asociación automática cuando se proporciona la marca \"--inspect\".",
- "debug.javascript.autoAttach.onlyWithFlag.label": "Solo con marca",
- "debug.javascript.autoAttach.smart.description": "Se asocia automáticamente cuando se ejecutan scripts que no están en una carpeta node_modules",
- "debug.javascript.autoAttach.smart.label": "Inteligente",
- "scope.global": "Alternar la asociación automática en esta máquina",
- "scope.workspace": "Alternar la asociación automática en esta área de trabajo",
- "status.name.auto.attach": "Depuración de asociación automática",
- "status.text.auto.attach.always": "Asociar automáticamente: Siempre",
- "status.text.auto.attach.disabled": "Asociar automáticamente: deshabilitada",
- "status.text.auto.attach.smart": "Asociar automáticamente: Inteligente",
- "status.text.auto.attach.withFlag": "Asociar automáticamente: Con marca",
- "status.tooltip.auto.attach": "Conectar automáticamente a los procesos de node.js en modo de depuración",
- "tempDisable.disable": "Deshabilitar temporalmente la asociación automática en esta sesión",
- "tempDisable.enable": "Volver a habilitar la asociación automática",
- "tempDisable.suffix": "Asociar automáticamente: deshabilitada"
- },
- "package": {
- "description": "Ayudante para la funcionalidad de conexión automática cuando las extensiones de depuración de node.js están desactivadas.",
- "displayName": "Conexión Automática a node.js en modo de depuración",
- "toggle.auto.attach": "Alternar auto conectarse"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-es/translations/extensions/debug-server-ready.i18n.json b/i18n/vscode-language-pack-es/translations/extensions/debug-server-ready.i18n.json
deleted file mode 100644
index 7c4bb9d551..0000000000
--- a/i18n/vscode-language-pack-es/translations/extensions/debug-server-ready.i18n.json
+++ /dev/null
@@ -1,29 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "dist/extension": {
- "server.ready.nocapture.error": "El URI de formato (\"{0}\") usa un marcador de posición de sustitución, pero el patrón no capturó nada.",
- "server.ready.placeholder.error": "El URI de formato (\"{0}\") debe contener exactamente un marcador de posición de sustitución."
- },
- "package": {
- "debug.server.ready.action.debugWithChrome.description": "Comience a depurar con el \"Depurador para Chrome\".",
- "debug.server.ready.action.description": "Qué hacer con el URI cuando el servidor está listo.",
- "debug.server.ready.action.openExternally.description": "Abra el URI externamente con la aplicación predeterminada.",
- "debug.server.ready.action.startDebugging.description": "Ejecuta otra configuración de inicio.",
- "debug.server.ready.debugConfigName.description": "Nombre de la configuración de inicio que se va a ejecutar.",
- "debug.server.ready.pattern.description": "El servidor está preparado si este patrón aparece en la consola de depuración. El primer grupo de captura debe incluir un URI o un número de puerto.",
- "debug.server.ready.serverReadyAction.description": "Actuar sobre un URI cuando un programa de servidor en proceso de depuración esté listo (se indica mediante el envío de la salida del formulario \"escuchando en el puerto 3000\" o \"Ahora escuchando en: https://localhost:5001' a la consola de depuración).",
- "debug.server.ready.uriFormat.description": "Una cadena de formato usada al construir el URI a partir de un número de puerto. El primer \"%s\" se reemplaza por el número de puerto.",
- "debug.server.ready.webRoot.description": "Valor pasado a la configuración de depuración para el \"Depurador para Chrome\".",
- "description": "Abrir URI en el navegador si el servidor bajo la depuración está listo.",
- "displayName": "Acción lista para el servidor"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-es/translations/extensions/docker.i18n.json b/i18n/vscode-language-pack-es/translations/extensions/docker.i18n.json
deleted file mode 100644
index 942338474b..0000000000
--- a/i18n/vscode-language-pack-es/translations/extensions/docker.i18n.json
+++ /dev/null
@@ -1,16 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "package": {
- "description": "Proporciona resaltado de sintaxis y correspondencia de corchetes en archivos de Docker.",
- "displayName": "Conceptos básicos del lenguaje Docker"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-es/translations/extensions/emmet.i18n.json b/i18n/vscode-language-pack-es/translations/extensions/emmet.i18n.json
deleted file mode 100644
index c1a2a225e3..0000000000
--- a/i18n/vscode-language-pack-es/translations/extensions/emmet.i18n.json
+++ /dev/null
@@ -1,79 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "dist\\node/abbreviationActions": {
- "wrapWithAbbreviationPrompt": "Escribir abreviatura"
- },
- "package": {
- "command.balanceIn": "Equilibrio (entrante)",
- "command.balanceOut": "Equilibrio (saliente)",
- "command.decrementNumberByOne": "Disminuir por 1",
- "command.decrementNumberByOneTenth": "Disminuir por 0.1",
- "command.decrementNumberByTen": "Disminuir por 10",
- "command.evaluateMathExpression": "Evaluar expresión matemática",
- "command.incrementNumberByOne": "Aumentar por 1",
- "command.incrementNumberByOneTenth": "Aumentar por 0.1",
- "command.incrementNumberByTen": "Aumentar por 10",
- "command.matchTag": "Ir al par coincidente",
- "command.mergeLines": "Combinar líneas",
- "command.nextEditPoint": "Ir al siguiente punto de edición",
- "command.prevEditPoint": "Ir al punto de edición anterior",
- "command.reflectCSSValue": "Reflejar valor CSS",
- "command.removeTag": "Quitar etiqueta",
- "command.selectNextItem": "Seleccionar el siguiente elemento",
- "command.selectPrevItem": "Seleccionar el elemento anterior",
- "command.showEmmetCommands": "Mostrar los comandos de Emmet",
- "command.splitJoinTag": "Dividir/Combinar etiqueta",
- "command.toggleComment": "Alternar comentario",
- "command.updateImageSize": "Actualizar tamaño de imagen",
- "command.updateTag": "Actualizar etiqueta",
- "command.wrapWithAbbreviation": "Encapsular con abreviatura",
- "description": "Soporte de Emmet para VS Code",
- "emmetExclude": "Matriz de lenguajes donde no deben expandirse las abreviaturas de Emmet.",
- "emmetExtensionsPath": "Una matriz de rutas, donde cada ruta puede contener syntaxProfiles de Emmet y / o archivos de fragmentos.\r\n En caso de conflictos, los perfiles / fragmentos de las rutas posteriores anularán los de las rutas anteriores.\r\n Consulte https://code.visualstudio.com/docs/editor/emmet para obtener más información y un archivo de fragmento de ejemplo.",
- "emmetExtensionsPathItem": "Una ruta de acceso que contiene Emmet syntaxProfiles y/o fragmentos de código.",
- "emmetIncludeLanguages": "Habilite la abreviación Emmet en los lenguajes que no se admiten de forma predeterminada. Agregue una asignación aquí entre el lenguaje y el lenguaje compatible con Emmet.\r\n Por ejemplo: \"{\"vue-html\": \"html\", \"javascript\": \"javascriptreact\"}\"",
- "emmetOptimizeStylesheetParsing": "Cuando se establece en \"false\", se analiza el archivo entero para determinar si la posición actual es válida para la expansión de abreviaciones Emmet. Cuando se establece en \"true\", solo se analiza el contenido alrededor de la posición actual en archivos CSS, SCSS o Less.",
- "emmetPreferences": "Preferencias usadas para modificar el comportamiento de algunas acciones y resoluciones de Emmet.",
- "emmetPreferencesAllowCompactBoolean": "Si es \"true\", se produce una anotación compacta de atributos booleanos.",
- "emmetPreferencesBemElementSeparator": "Separador de elementos utilizado para las clases cuando se utiliza el filtro BEM",
- "emmetPreferencesBemModifierSeparator": "Separador de modificador utilizado para las clases cuando se utiliza el filtro BEM",
- "emmetPreferencesCssAfter": "Símbolo que debe colocarse al final de una propiedad CSS cuando se expanden abreviaturas CSS",
- "emmetPreferencesCssBetween": "Símbolo que debe colocarse entre una propiedad CSS y un valor cuando se expanden abreviaturas CSS",
- "emmetPreferencesCssColorShort": "Si es \"true\", los valores de color como \"#f\" se expandirán a \"#fff\" en lugar de \"#ffffff\".",
- "emmetPreferencesCssFuzzySearchMinScore": "La mínima puntuación (de 0 a 1) que se debe alcanzar en la comparación difusa de abreviación. Los valores más bajos pueden producir muchos resultados falsos positivos, los valores más altos pueden reducir posibles coincidencias.",
- "emmetPreferencesCssMozProperties": "Propiedades CSS separadas por comas que obtienen el prefijo de proveedor 'moz' cuando se utilizan en la abreviatura Emmet que comienza con '-'. Establecer en la cadena vacía para evitar siempre el prefijo 'moz'.",
- "emmetPreferencesCssMsProperties": "Propiedades CSS separadas por comas que obtienen el prefijo de proveedor 'ms' cuando se utilizan en la abreviatura Emmet que comienza con '-'. Establecer en la cadena vacía para evitar siempre el prefijo 'ms'.",
- "emmetPreferencesCssOProperties": "Propiedades CSS separadas por comas que obtienen el prefijo de proveedor 'o' cuando se utilizan en la abreviatura Emmet que comienza con '-'. Establecer en la cadena vacía para evitar siempre el prefijo 'o'.",
- "emmetPreferencesCssWebkitProperties": "Propiedades CSS separadas por comas que obtienen el prefijo de proveedor 'webkit' cuando se utilizan en la abreviatura Emmet que comienza con '-'. Establecer en la cadena vacía para evitar siempre el prefijo 'webkit'.",
- "emmetPreferencesFilterCommentAfter": "Una definición de comentario que debe colocarse después de elemento emparejado cuando se aplica el filtro de comentarios.",
- "emmetPreferencesFilterCommentBefore": "Una definición de comentario que debe colocarse antes del elemento emparejado cuando se aplica el filtro de comentarios.",
- "emmetPreferencesFilterCommentTrigger": "Una lista separada por comas de nombres de atributos que debe existir en la abreviatura para que se aplique el filtro de comentarios",
- "emmetPreferencesFloatUnit": "Unidad predeterminada para valores float",
- "emmetPreferencesFormatForceIndentTags": "Una matriz de nombres de etiqueta que siempre debería recibir una sangría interna",
- "emmetPreferencesFormatNoIndentTags": "Una matriz de nombres de etiqueta que no debería recibir una sangría interna",
- "emmetPreferencesIntUnit": "Unidad predeterminada para valores enteros",
- "emmetPreferencesOutputInlineBreak": "Número de elementos alineados del mismo nivel para los que se necesita colocar saltos de línea entre ellos. Si el valor es \"0\", los elementos alineados siempre se expanden en una sola línea.",
- "emmetPreferencesOutputReverseAttributes": "Si es \"true\", revierte las direcciones de combinación de atributos al resolver fragmentos de código.",
- "emmetPreferencesOutputSelfClosingStyle": "Estilo de etiquetas de autocierre: HTML (\" \"), XML (\" \") o XHTML (\" \").",
- "emmetPreferencesSassAfter": "Símbolo que debe colocarse al final de una propiedad CSS cuando se expanden abreviaturas CSS en archivos SASS",
- "emmetPreferencesSassBetween": "Símbolo que debe colocarse entre una propiedad CSS y un valor cuando se expanden abreviaturas CSS en archivos SASS",
- "emmetPreferencesStylusAfter": "Símbolo que debe colocarse al final de una propiedad CSS cuando se expanden abreviaturas CSS en archivos Stylus",
- "emmetPreferencesStylusBetween": "Símbolo que debe colocarse entre una propiedad CSS y un valor cuando se expanden abreviaturas CSS en archivos Stylus",
- "emmetShowAbbreviationSuggestions": "Muestra posibles abreviaciones Emmet como sugerencias. No se aplica a hojas de estilos ni cuando emmet.showExpandedAbbreviation está establecido en \"never\". ",
- "emmetShowExpandedAbbreviation": "Muestra las abreviaciones Emmet expandidas como sugerencias.\r\nLa opción \"inMarkupAndStylesheetFilesOnly\" se aplica a html, haml, jade, slim, xml, xsl, css, scss, sass, less y stylus.\r\nLa opción \"always\" se aplica a todas las partes del archivo, independientemente del marcado o CSS.",
- "emmetShowSuggestionsAsSnippets": "Si es \"true\", las sugerencias Emmet se muestran como fragmentos de código, de modo que puede ordenarlas por el valor \"#editor.snippetSuggestions#\". ",
- "emmetSyntaxProfiles": "Defina el perfil de la sintaxis especificada o use su propio perfil con reglas específicas.",
- "emmetTriggerExpansionOnTab": "Cuando se habilita, se expande la abreviación Emmet al presionar la tecla TAB. ",
- "emmetUseInlineCompletions": "Si es \"true\", Emmet usará finalizaciones insertadas para sugerir expansiones. Para evitar que el proveedor de elementos de finalización no insertados aparezca con la frecuencia con la que esta configuración es \"true\", active \"#editor.quickSuggestions#\" en \"inline\" o \"off\" para el elemento \"other\".",
- "emmetVariables": "Variables para ser utilizadas en fragmentos de código de Emmet"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-es/translations/extensions/extension-editing.i18n.json b/i18n/vscode-language-pack-es/translations/extensions/extension-editing.i18n.json
deleted file mode 100644
index b20a5c7c4c..0000000000
--- a/i18n/vscode-language-pack-es/translations/extensions/extension-editing.i18n.json
+++ /dev/null
@@ -1,30 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "dist/extensionLinter": {
- "apiProposalNotListed": "Esta propuesta no se puede usar porque, para esta extensión, el producto define un conjunto fijo de propuestas de API. Puede probar la extensión, pero antes de publicarla DEBE ponerse en contacto con el equipo de VS Code.",
- "dataUrlsNotValid": "Las direcciones URL de datos no son un origen de imagen válido.",
- "embeddedSvgsNotValid": "Los SGV insertados no son un origen de imagen válido.",
- "httpsRequired": "Las imágenes deben utilizar el protocolo HTTPS.",
- "relativeBadgeUrlRequiresHttpsRepository": "Las direcciones URL relativas de distintivos requieren un repositorio con el protocolo HTTPS especificado en este archivo package.json.",
- "relativeIconUrlRequiresHttpsRepository": "Un icono requiere un repositorio con el protocolo HTTPS especificado en este archivo package.json.",
- "relativeUrlRequiresHttpsRepository": "Las direcciones URL relativas de imágenes requieren un repositorio con el protocolo HTTPS especificado en el archivo package.json.",
- "svgsNotValid": "Los SVG no son un origen de imagen válido."
- },
- "dist/packageDocumentHelper": {
- "languageSpecificEditorSettings": "Configuración del editor específica del lenguaje",
- "languageSpecificEditorSettingsDescription": "Reemplazar configuración del editor para lenguaje"
- },
- "package": {
- "description": "Proporciona funcionalidad de detección de errores para la creación de extensiones.",
- "displayName": "Creación de extensiones"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-es/translations/extensions/fsharp.i18n.json b/i18n/vscode-language-pack-es/translations/extensions/fsharp.i18n.json
deleted file mode 100644
index 72034b2bf0..0000000000
--- a/i18n/vscode-language-pack-es/translations/extensions/fsharp.i18n.json
+++ /dev/null
@@ -1,16 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "package": {
- "description": "Proporciona fragmentos de código, resaltado de sintaxis, correspondencia de corchetes y plegado de código en archivos de F#.",
- "displayName": "Conceptos básicos del lenguaje F#"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-es/translations/extensions/git-base.i18n.json b/i18n/vscode-language-pack-es/translations/extensions/git-base.i18n.json
deleted file mode 100644
index 024711df3f..0000000000
--- a/i18n/vscode-language-pack-es/translations/extensions/git-base.i18n.json
+++ /dev/null
@@ -1,30 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "dist/remoteSource": {
- "branch name": "Nombre de rama",
- "error": "{0} Error: {1}",
- "none found": "No se encontraron repositorios remotos.",
- "pick url": "Elija una dirección URL desde la que se va a clonar.",
- "provide url": "Proporcionar la dirección URL del repositorio",
- "provide url or pick": "Proporcione la dirección URL del repositorio o seleccione un origen de repositorio.",
- "recently opened": "abiertos recientemente",
- "remote sources": "orígenes remotos",
- "type to filter": "Nombre del repositorio",
- "type to search": "Nombre del repositorio (escribir para buscar)",
- "url": "URL"
- },
- "package": {
- "command.api.getRemoteSources": "Obtener orígenes remotos",
- "description": "Selectores y contribuciones estáticas de Git.",
- "displayName": "Git Base"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-es/translations/extensions/git-ui.i18n.json b/i18n/vscode-language-pack-es/translations/extensions/git-ui.i18n.json
deleted file mode 100644
index 9031dd716c..0000000000
--- a/i18n/vscode-language-pack-es/translations/extensions/git-ui.i18n.json
+++ /dev/null
@@ -1,16 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "package": {
- "displayName": "Interfaz de usuario de Git",
- "description": "Integración de la UI de Git SCM"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-es/translations/extensions/git.i18n.json b/i18n/vscode-language-pack-es/translations/extensions/git.i18n.json
deleted file mode 100644
index 854d5f7171..0000000000
--- a/i18n/vscode-language-pack-es/translations/extensions/git.i18n.json
+++ /dev/null
@@ -1,577 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "dist/actionButton": {
- "scm button commit and push title": "{0} Hacer \"commit\" e insertar",
- "scm button commit and push tooltip": "Confirmar y enviar cambios",
- "scm button commit and sync title": "{0} Hacer \"commit\" y sincronizar",
- "scm button commit and sync tooltip": "Confirmar y sincronizar cambios",
- "scm button commit title": "{0} Hacer \"commit\"",
- "scm button commit to new branch and push tooltip": "Hacer \"commit\" en rama nueva e insertar cambios",
- "scm button commit to new branch and sync tooltip": "Hacer \"commit\" en rama nueva y sincronizar cambios",
- "scm button commit to new branch tooltip": "Hacer \"commit\" de cambios en una nueva rama",
- "scm button commit tooltip": "Confirmar cambios",
- "scm button committing and pushing tooltip": "Confirmando y enviando cambios...",
- "scm button committing and synching tooltip": "Confirnando y sincronizando cambios...",
- "scm button committing to new branch and pushing tooltip": "Haciendo \"commit\" en nueva rama e insertando los cambios...",
- "scm button committing to new branch and synching tooltip": "Haciendo \"commit\" en nueva rama y sincronizando los cambios...",
- "scm button committing to new branch tooltip": "Haciendo \"commit\" de los cambios en la nueva rama...",
- "scm button committing tooltip": "Confirmando cambios...",
- "scm button continue title": "{0} Continue",
- "scm button continue tooltip": "Continue Rebase",
- "scm button continuing tooltip": "Continuing Rebase...",
- "scm button publish branch": "Publicar Branch",
- "scm button publish branch running": "Publicando Branch...",
- "scm button sync description": "{0} Sincronizar cambios {1}{2}",
- "scm publish branch action button title": "{0} Publicar Branch",
- "scm secondary button commit": "Confirmar",
- "syncing changes": "Sincronizando cambios..."
- },
- "dist/askpass-main": {
- "missOrInvalid": "Faltan las credenciales o no son válidas."
- },
- "dist/autofetch": {
- "no": "No",
- "not now": "Preguntarme luego",
- "suggest auto fetch": "¿Te gustaría que Code [ejecute 'git fetch' periódicamente]({0})?",
- "yes": "Sí"
- },
- "dist/commands": {
- "HEAD not available": "La versión HEAD de '{0}' no está disponible.",
- "Theirs": "Suya",
- "Yours": "Suyo",
- "add": "Añadir al área de trabajo",
- "add remote": "Agregar un nuevo remoto...",
- "addFrom": "Agregar remoto desde dirección URL",
- "addfrom": "Agregar remoto desde {0}",
- "addremote": "Agregar remoto",
- "always": "Siempre",
- "are you sure": "Esto creará un repositorio Git en '{0}'. ¿Está seguro de que desea continuar?",
- "auth failed": "No se pudo autenticar en GIT remoto.",
- "auth failed specific": "No se pudo autenticar en GIT remoto:\r\n\r\n{0}",
- "branch already exists": "Ya existe una rama como '{0}'",
- "branch name": "Nombre de rama",
- "branch name does not match sanitized": "La nueva rama será '{0}'",
- "branch name format invalid": "El nombre de la rama debe coincidir con la expresión regular \"{0}\".",
- "cant push": "No se pueden enviar referencias al remoto. Intenta ejecutar 'Pull' primero para integrar tus cambios.",
- "checkout detached": "Extracción del repositorio desasociada...",
- "choose": "Elegir carpeta...",
- "clean repo": "Limpie el árbol de trabajo del repositorio antes de la desprotección.",
- "clonefrom": "Clonar desde {0}",
- "cloning": "Clonando el repositorio git '{0}'...",
- "commit": "Hacer \"commit\" de los cambios \"staged\"",
- "commit anyway": "Crear \"commit\" vacío",
- "commit changes": "Confirmar de todos modos",
- "commit hash": "Hash de confirmación",
- "commit message": "Mensaje de confirmación",
- "commit to branch": "Confirmar en una rama nueva",
- "commitMessageWithHeadLabel2": "Mensaje (confirmar en \"{0}\")",
- "confirm branch protection commit": "Está intentando confirmar en una rama protegida y es posible que no tenga permiso para insertar las confirmaciones en el remoto.\r\n\r\n¿Cómo quiere continuar?",
- "confirm delete": "¿Seguro que quiere ELIMINAR {0}?\r\nEsta acción es IRREVERSIBLE.\r\nSi continúa, este archivo SE PERDERÁ PARA SIEMPRE.",
- "confirm delete multiple": "¿Seguro que quiere ELIMINAR {0}archivos?\r\n Esta acción es IRREVERSIBLE. \r\nSi continúa, los archivos SE PERDERÁN PARA SIEMPRE.",
- "confirm discard": "¿Está seguro de que quiere descartar los cambios de {0}?",
- "confirm discard all": "¿Seguro que quiere descartar TODOS los cambios en {0} archivos? \r\nEsta acción es IRREVERSIBLE. \r\nSi continúa, su espacio de trabajo actual SE PERDERÁ PARA SIEMPRE.",
- "confirm discard all 2": "{0}\r\n\r\nEsta acción es IRREVERSIBLE. Su espacio de trabajo actual SE PERDERÁ PARA SIEMPRE.",
- "confirm discard all single": "¿Está seguro de que quiere descartar los cambios de {0}?",
- "confirm discard multiple": "¿Está seguro de que quiere descartar los cambios de {0} archivos?",
- "confirm empty commit": "Are you sure you want to create an empty commit?",
- "confirm force delete branch": "La rama '{0}' no está completamente fusionada. ¿Borrarla de todas formas?",
- "confirm force push": "Está a punto de forzar el envío de cambios mediante \"push\". Esta acción puede resultar destructiva y sobrescribir involuntariamente los cambios realizados por otros usuarios.\r\n\r\n¿Seguro que quiere continuar?",
- "confirm no verify commit": "Está a punto de confirmar los cambios sin comprobación, lo que omite los enlaces previos a la confirmación y puede no ser deseable.\r\n\r\n¿Seguro que quiere continuar?",
- "confirm publish branch": "La rama '{0}' no tiene ninguna rama remota. ¿Quiere publicar esta rama?",
- "confirm restore": "¿Está seguro de que desea restaurar {0}?",
- "confirm restore multiple": "¿Está seguro de que desea restaurar {0} archivos?",
- "confirm stage file with merge conflicts": "¿Está seguro de que quiere hacer una copia intermedia de {0} con conflictos de fusión mediante combinación?",
- "confirm stage files with merge conflicts": "¿Está seguro de que quiere hacer una copia intermedia de {0} archivos con conflictos de fusión mediante combinación?",
- "create branch": "Crear rama...",
- "create branch from": "Crear rama a partir de...",
- "create repo": "Inicializar el repositorio",
- "current": "Actual",
- "default": "Valor predeterminado",
- "delete": "Eliminar archivo",
- "delete branch": "Borrar rama",
- "delete file": "Eliminar archivo",
- "delete files": "Eliminar archivos",
- "deleted by them": "Ellos eliminaron el archivo \"{0}\" y nosotros lo modificamos.\r\n\r\n¿Qué quiere hacer?",
- "deleted by us": "Nosotros eliminamos el archivo \"{0}\" y ellos lo modificaron.\r\n\r\n¿Qué quiere hacer?",
- "discard": "Descartar cambios",
- "discardAll": "Descartar todos los archivos ({0})",
- "discardAll multiple": "Descartar un archivo",
- "drop all stashes": "¿Está seguro de que quiere quitar TODOS los cambios guardados provisionalmente? Hay {0} cambios guardados provisionalmente que estarán sujetos a eliminación y PUEDEN SER IMPOSIBLES DE RECUPERAR.",
- "drop one stash": "¿Está seguro de que quiere quitar TODOS los cambios guardados provisionalmente? Hay 1 cambio guardado provisionalmente que estará sujeto a eliminación y PUEDE SER IMPOSIBLES DE RECUPERAR.",
- "empty commit": "Se canceló la operación de confirmación debido a un mensaje de confirmación vacío.",
- "force": "Forzar extracción del repositorio",
- "force push not allowed": "No está permitido forzar envío de cambios, habilite la opción mediante el control \"git.allowForcePush\".",
- "git error": "Error de GIT",
- "git error details": "GIT: {0}",
- "git.timeline.openDiffCommand": "Abrir comparación",
- "git.title.diff": "{0} ↔ {1}",
- "git.title.diffRefs": "{0} ({1}) ↔{0} ({2})",
- "git.title.index": "{0} (índice)",
- "git.title.ref": "{0} ({1})",
- "git.title.workingTree": "{0} (árbol de trabajo)",
- "init": "Seleccione una carpeta de área de trabajo en la que inicializar el repositorio de git",
- "init repo": "Inicializar el repositorio",
- "invalid branch name": "Nombre de rama no válido",
- "keep ours": "Mantener nuestra versión",
- "keep theirs": "Mantener la versión de ellos",
- "learn more": "Más información",
- "local changes": "Los cambios locales se sobrescribirán al extraer del repositorio.",
- "merge commit": "La última confirmación fue una confirmación de fusión mediante combinación. ¿Seguro que quiere deshacerla?",
- "merge conflicts": "Hay conflictos de fusión. Resuelvalos antes de confirmar.",
- "missing user info": "Asegúrese de configurar los valores de \"user.name\" y \"user.email\" en git.",
- "never": "Nunca",
- "never again": "No volver a mostrar ",
- "never ask again": "De acuerdo, no volver a preguntar",
- "no changes": "No hay cambios para confirmar.",
- "no changes stash": "No existen cambios para el guardado provisional.",
- "no more": "No se puede deshacer porque HEAD no apunta a ningún commit.",
- "no rebase": "No hay ninguna fusión mediante cambio de base \"rebase\" en curso.",
- "no remotes added": "Su repositorio no tiene remotos.",
- "no remotes to fetch": "El repositorio no tiene remotos configurados de los que recuperar.",
- "no remotes to publish": "El repositorio no tiene remotos configurados en los que publicar.",
- "no remotes to pull": "El repositorio no tiene remotos configurados de los que extraer.",
- "no remotes to push": "El repositorio no tiene remotos configurados en los que insertar.",
- "no staged changes": "No hay cambios \"staged\" para hacer \"commit\".\r\n\r\n¿Quiere agregar al \"stage\" todos los cambios y hacer \"commit\" de estos directamente?",
- "no stashes": "No hay cambios guardados provisionalmente en el repositorio.",
- "no tags": "Este repositorio no tiene etiquetas.",
- "no verify commit not allowed": "No se permiten las confirmaciones sin verificación, habilítelas con la configuración \"git. allowNoVerifyCommit\".",
- "nobranch": "Extraiga del repositorio una rama para insertar un remoto.",
- "ok": "Aceptar",
- "open git log": "Abrir registro de GIT",
- "open repo": "Abrir repositorio",
- "openrepo": "Abrir",
- "openreponew": "Abrir en una ventana nueva",
- "pick branch pull": "Seleccionar una rama de la que extraer",
- "pick provider": "Seleccione un proveedor para publicar la rama \"{0}\" en:",
- "pick remote": "Seleccionar un elemento remoto para publicar la rama '{0}':",
- "pick remote pull repo": "Seleccione un origen remoto desde el que extraer la rama",
- "pick stash to apply": "Elegir un cambio guardado provisionalmente para aplicarlo",
- "pick stash to drop": "Escoja una copia intermedia para eliminar",
- "pick stash to pop": "Elija un cambio guardado provisionalmente para aplicarlo y quitarlo",
- "proposeopen": "¿Desea abrir el repositorio clonado?",
- "proposeopen init": "¿Desea abrir el repositorio inicializado?",
- "proposeopen2": "¿Desea abrir el repositorio clonado, o añadir al área de trabajo actual?",
- "proposeopen2 init": "¿Desea abrir el repositorio inicializado, o añadir al área de trabajo actual?",
- "provide branch name": "Proporcione un nuevo nombre de rama",
- "provide commit hash": "Proporcione el hash de \"commit\".",
- "provide commit message": "Proporcione un mensaje de confirmación",
- "provide remote name": "Proporcione un nombre de remoto",
- "provide stash message": "Opcionalmente, proporcionar un mensaje para el guardado provisional",
- "provide tag message": "Por favor, especifique un mensaje para anotar la etiqueta",
- "provide tag name": "Por favor proporcione un nombre para la etiqueta ",
- "publish to": "Publicar en {0}",
- "remote already exists": "El remoto \"{0}\" ya existe.",
- "remote branch at": "Rama remota en {0}",
- "remote name": "Nombre de remoto",
- "remote name format invalid": "Formato de nombre de remoto no válido",
- "remove remote": "Seleccione un remoto para quitar",
- "repourl": "Dirección URL de repositorio",
- "restore file": "Restaurar archivo",
- "restore files": "Restaurar archivos",
- "save and commit": "Guardar todo y confirmar",
- "save and stash": "Guardar todo y aplicar \"stash\"",
- "select a branch to merge from": "Seleccione una rama desde la que fusionar",
- "select a branch to rebase onto": "Seleccionar una rama en la que fusionar mediante \"rebase\"",
- "select a ref to checkout": "Seleccione una referencia para desproteger",
- "select a ref to checkout detached": "Seleccionar una referencia para extraer del repositorio en modo desasociado",
- "select a ref to create a new branch from": "Seleccione una referencia desde la cual se creará la rama \"{0}\"",
- "select a tag to delete": "Seleccione una etiqueta para eliminar",
- "select branch to delete": "Seleccione una rama para borrar",
- "select log level": "Seleccionar nivel de log",
- "selectFolder": "Seleccione la ubicación del repositorio",
- "show command output": "Mostrar salida del comando",
- "stash": "Guardar provisionalmente de todos modos",
- "stash merge conflicts": "Hubo conflictos de fusión al aplicar el cambio provisional.",
- "stash message": "Mensaje para el guardado provisional",
- "stashcheckout": "Guardar provisionalmente y extraer del repositorio",
- "sure drop": "¿Seguro que quiere quitar el \"stash\": {0}?",
- "sync is unpredictable": "Esta acción extraerá e insertará confirmaciones desde y hacia '{0}/{1}'.",
- "tag at": "Etiqueta en {0}",
- "tag message": "Mensaje",
- "tag name": "Nombre de etiqueta",
- "there are untracked files": "Hay {0} archivos sin seguimiento que se ELIMINARÁN DEL DISCO si se descartan.",
- "there are untracked files single": "El siguiente archivo sin seguimiento se ELIMINARÁ DEL DISCO si se descarta: {0}.",
- "undo commit": "Deshacer la confirmación de fusión mediante combinación",
- "unsaved files": "Hay {0} archivos sin guardar.\r\n\r\n¿Quiere guardarlos antes de confirmar?",
- "unsaved files single": "El siguiente archivo tiene cambios no guardados que no se incluirán en la confirmación si continúa: {0}.\r\n\r\n¿Desea guardarlos antes de confirmar?",
- "unsaved stash files": "Hay {0}archivos sin guardar.\r\n\r\n¿Quiere guardarlos antes de aplicar \"stash\"?",
- "unsaved stash files single": "El archivo siguiente tiene cambios no guardados que no se incluirán en el \"stash\" si continúa: {0}.\r\n\r\n¿Quiere guardarlo antes de aplicar \"stash\"?",
- "warn untracked": "¡Esto ELIMINARÁ {0} archivos sin seguimiento!\r\n¡Esta acción es IRREVERSIBLE!\r\nEstos archivos SE PERDERÁN PARA SIEMPRE.",
- "yes": "Sí",
- "yes discard tracked": "Descartar un archivo con seguimiento",
- "yes discard tracked multiple": "Descartar {0} archivos con seguimiento",
- "yes never again": "Sí, no volver a mostrar"
- },
- "dist/log": {
- "gitLogLevel": "Nivel de registro: {0}"
- },
- "dist/main": {
- "downloadgit": "Descargar Git",
- "git20": "Parece que tiene instalado GIT {0}. El código funciona mejor con GIT >= 2",
- "git2526": "La instancia {0} de GIT instalada tiene problemas conocidos. Actualice a GIT >= 2.27 para que las características de este funcionen correctamente.",
- "neverShowAgain": "No mostrar de nuevo",
- "notfound": "Git no encontrado. Instálalo o configúralo usando la configuración 'git.path'.",
- "skipped": "Se omitió git encontrado en: {0}",
- "updateGit": "Actualizar GIT",
- "using git": "Usando GIT {0} desde {1}",
- "validating": "La validación encontró Git en: {0}"
- },
- "dist/model": {
- "no repositories": "No hay repositorios disponibles",
- "not supported": "Rutas absolutas no admitidas en el parámetro \"git.scanRepositories\".",
- "pick repo": "Elija un repositorio",
- "repoOnHomeDriveRootWarning": "No se puede abrir automáticamente el repositorio git en '{0}'. Para abrir ese repositorio git, ábralo directamente como carpeta en VS Code.",
- "too many submodules": "El repositorio ' {0} ' tiene {1} submódulos que no se abrirán automáticamente. Usted todavía puede abrir cada archivo individualmente."
- },
- "dist/postCommitCommands": {
- "scm secondary button commit and push": "Confirmar e insertar",
- "scm secondary button commit and sync": "Confirmar y sincronizar"
- },
- "dist/repository": {
- "add known": "¿Desea añadir \"{0}\" a .gitignore?",
- "added by them": "Conflicto: agregado por ellos",
- "added by us": "Conflicto: agregado por nosotros",
- "always pull": "Incorporar cambios siempre con \"pull\"",
- "both added": "Conflicto: agregado por ambos",
- "both deleted": "Conflicto: eliminado por ambos",
- "both modified": "Conflicto: modificado por ambos",
- "changes": "Cambios",
- "commit": "\"Commit\"",
- "commit in rebase": "No es posible cambiar el mensaje de confirmación en medio de un rebase. En su lugar, complete la operación rebase y utilice rebase interactivo.",
- "commitMessage": "Mensaje ({0} para confirmar)",
- "commitMessageCountdown": "quedan {0} caracteres en la línea actual",
- "commitMessageWarning": "{0} caracteres sobre {1} en la línea actual",
- "commitMessageWhitespacesOnlyWarning": "El mensaje de confirmación actual solo contiene espacios en blanco.",
- "commitMessageWithHeadLabel": "Mensaje ({0} para confirmar en \"{1}\")",
- "deleted": "Eliminado",
- "deleted by them": "Conflicto: eliminado por ellos",
- "deleted by us": "Conflicto: eliminado por nosotros",
- "dont pull": "No incorporar cambios con \"pull\"",
- "git.title.deleted": "{0} (eliminado)",
- "git.title.index": "{0} (índice)",
- "git.title.ours": "{0} (Nuestro)",
- "git.title.theirs": "{0} (el suyo)",
- "git.title.untracked": "{0} (Sin seguimiento)",
- "git.title.workingTree": "{0} (árbol de trabajo)",
- "huge": "El repositorio Git '{0}' contiene muchos cambios activos, solamente un subconjunto de las características de Git serán habilitadas.",
- "ignored": "Omitido",
- "index added": "Índice añadido",
- "index copied": "Índice copiado",
- "index deleted": "Índice Eliminado",
- "index modified": "Índice modificado",
- "index renamed": "Nombre de Índice Cambiado",
- "intent to add": "Intención de añadir",
- "merge changes": "Fusionar cambios mediante combinación",
- "modified": "Modificado",
- "neveragain": "No mostrar de nuevo",
- "no": "No",
- "ok": "Aceptar",
- "open": "Abrir",
- "open.merge": "Ejecutar combinación",
- "pull": "Incorporar cambios (\"pull\")",
- "pull branch maybe rebased": "Parece que la rama \"{0}\" actual puede haberse fusionado mediante cambio de base con \"rebase\". ¿Seguro que aún quiere incorporar los cambios en esta mediante \"pull\"?",
- "pull maybe rebased": "Parece que la rama actual puede haberse fusionado mediante cambio de base con \"rebase\". ¿Seguro que aún quiere incorporar los cambios en esta mediante \"pull\"?",
- "pull n": "Hacer \"pull\" en {0} \"commits\" de {1}/{2}",
- "pull push n": "Hacer \"pull\" de {0} y \"push\" de {1} \"commits\" entre {2}/{3}",
- "push n": "Hacer \"push\" en {0} \"commits\" a {1}/{2}",
- "push success": "Push realizado con éxito.",
- "staged changes": "Cambios \"staged\"",
- "sync changes": "Sincronizar cambios",
- "sync is unpredictable": "Sincronizando. La cancelación puede provocar daños graves en el repositorio.",
- "tooManyChangesWarning": "Se detectaron demasiados cambios. A continuación solo se mostrarán los primeros {0} cambios.",
- "untracked": "Sin seguimiento",
- "untracked changes": "Cambios sin seguimiento",
- "yes": "Sí"
- },
- "dist/statusbar": {
- "checkout": "Extraer del repositorio una rama o etiqueta...",
- "publish branch": "Publicar rama",
- "publish to": "Publicar en {0}",
- "publish to...": "Publicar en...",
- "rebasing": "Creando una nueva base",
- "syncing changes": "Sincronizando cambios..."
- },
- "dist/timelineProvider": {
- "git.timeline.email": "Correo electrónico",
- "git.timeline.openComparison": "Abrir comparación",
- "git.timeline.source": "Historia de Git",
- "git.timeline.stagedChanges": "Cambios almacenados provisionalmente",
- "git.timeline.uncommitedChanges": "Cambios pendientes de confirmación",
- "git.timeline.you": "Usted"
- },
- "package": {
- "colors.added": "Color de los recursos agregados.",
- "colors.conflict": "Color para los recursos con conflictos.",
- "colors.deleted": "Color para los recursos eliminados.",
- "colors.ignored": "Color para los recursos ignorados.",
- "colors.modified": "Color para recursos modificados.",
- "colors.renamed": "Color para los recursos que se han cambiado de nombre o se han copiado.",
- "colors.stageDeleted": "Color de los recursos eliminados que se han almacenado provisionalmente.",
- "colors.stageModified": "Color de los recursos modificados que se han almacenado provisionalmente.",
- "colors.submodule": "Color para los recursos de submódulos.",
- "colors.untracked": "Color para los recursos a los que no se les hace seguimiento.",
- "command.addRemote": "Agregar remoto...",
- "command.api.getRemoteSources": "Obtener orígenes remotos",
- "command.api.getRepositories": "Obtener repositorios",
- "command.api.getRepositoryState": "Obtener estado del repositorio",
- "command.branch": "Crear rama...",
- "command.branchFrom": "Crear rama desde...",
- "command.checkout": "Desproteger en...",
- "command.checkoutDetached": "Extraer del repositorio en (desasociado)...",
- "command.cherryPick": "Selección exclusiva...",
- "command.clean": "Descartar cambios",
- "command.cleanAll": "Descartar todos los cambios",
- "command.cleanAllTracked": "Descartar todos los cambios a los que se les realiza seguimiento",
- "command.cleanAllUntracked": "Descartar todos los cambios a los que no se está haciendo seguimiento",
- "command.clone": "Clonar",
- "command.cloneRecursive": "Clonar (recursivo)",
- "command.close": "Cerrar repositorio",
- "command.closeAllDiffEditors": "Cerrar todos los editores de diferencias",
- "command.commit": "Confirmar",
- "command.commitAll": "Confirmar todo",
- "command.commitAllAmend": "Confirmar todo (modificar)",
- "command.commitAllAmendNoVerify": "Confirmar todo (modificar, no comprobar)",
- "command.commitAllNoVerify": "Confirmar todo (no comprobar)",
- "command.commitAllSigned": "Confirmar todo (aprobado)",
- "command.commitAllSignedNoVerify": "Confirmar todo (aprobado, no comprobar)",
- "command.commitEmpty": "Confirmar vacío",
- "command.commitEmptyNoVerify": "Confirmar vacíos (no comprobar)",
- "command.commitMessageAccept": "Aceptar mensaje de confirmación",
- "command.commitMessageDiscard": "Descartar mensaje de confirmación",
- "command.commitNoVerify": "Confirmar (no comprobar)",
- "command.commitStaged": "Confirmar elementos almacenados provisionalmente",
- "command.commitStagedAmend": "Confirmar almacenados provisionalmente (modificar)",
- "command.commitStagedAmendNoVerify": "Confirmar almacenados provisionalmente (modificar, no comprobar)",
- "command.commitStagedNoVerify": "Confirmar almacenados provisionalmente (no comprobar)",
- "command.commitStagedSigned": "Confirmar por etapas (Aprobado)",
- "command.commitStagedSignedNoVerify": "Confirmar almacenados provisionalmente (aprobado, no comprobar)",
- "command.createTag": "Crear etiqueta",
- "command.deleteBranch": "Borrar rama...",
- "command.deleteTag": "Eliminar etiqueta",
- "command.fetch": "Capturar",
- "command.fetchAll": "Capturar desde todos los remotos",
- "command.fetchPrune": "Fetch (capturar)",
- "command.git.acceptMerge": "Aceptar fusión mediante combinación",
- "command.ignore": "Añadir a .gitignore",
- "command.init": "Inicializar el repositorio",
- "command.merge": "Fusionar rama...",
- "command.openAllChanges": "Abrir todos los cambios",
- "command.openChange": "Abrir cambios",
- "command.openFile": "Abrir archivo",
- "command.openHEADFile": "Abrir archivo (HEAD)",
- "command.openRepository": "Abrir repositorio",
- "command.publish": "Publicar rama...",
- "command.pull": "Incorporación de cambios",
- "command.pullFrom": "Extraer de...",
- "command.pullRebase": "Incorporación de cambios (fusionar mediante cambio de base)",
- "command.push": "Insertar",
- "command.pushFollowTags": "Insertar (seguir etiquetas)",
- "command.pushFollowTagsForce": "Insertar (seguir etiquetas, forzar)",
- "command.pushForce": "Envío de cambios (forzar)",
- "command.pushTags": "Hacer \"push\" en las etiquetas",
- "command.pushTo": "Insertar en...",
- "command.pushToForce": "Insertar en... (Forzar)",
- "command.rebase": "Fusionar la rama mediante \"rebase\"...",
- "command.rebaseAbort": "Anular fusión mediante cambio de base",
- "command.refresh": "Actualizar",
- "command.removeRemote": "Quitar remoto",
- "command.rename": "Cambiar nombre",
- "command.renameBranch": "Renombrar Rama...",
- "command.restoreCommitTemplate": "Restaurar plantilla de confirmación",
- "command.revealFileInOS.linux": "Abrir carpeta contenedora",
- "command.revealFileInOS.mac": "Revelar en Finder",
- "command.revealFileInOS.windows": "Mostrar en el Explorador de archivos",
- "command.revealInExplorer": "Mostrar en la vista Explorador",
- "command.revertChange": "Revertir el cambio",
- "command.revertSelectedRanges": "Revertir los intervalos seleccionados",
- "command.setLogLevel": "Establecer nivel de registro...",
- "command.showOutput": "Mostrar salida de GIT",
- "command.stage": "Almacenar cambios provisionalmente",
- "command.stageAll": "Almacenar todos los cambios",
- "command.stageAllMerge": "Almacenar provisionalmente todos los cambios fusionados mediante combinación",
- "command.stageAllTracked": "Realizar copia intermedia de todos los cambios rastreados",
- "command.stageAllUntracked": "Realizar copia intermedia de todos los cambios sin seguimiento",
- "command.stageChange": "Cambiar etapa",
- "command.stageSelectedRanges": "Realizar copia intermedia de los intervalos seleccionados",
- "command.stash": "Guardar provisionalmente",
- "command.stashApply": "Aplicar cambio guardados provisionalmente",
- "command.stashApplyLatest": "Aplicar últimos cambios guardados provisionalmente",
- "command.stashDrop": "Descartar cambios guardados provisionalmente...",
- "command.stashDropAll": "Quitar todos los cambios guardados provisionalmente...",
- "command.stashIncludeUntracked": "Guardar provisionalmente (Incluir sin seguimiento)",
- "command.stashPop": "Aplicar y quitar cambios guardados provisionalmente...",
- "command.stashPopLatest": "Aplicar y quitar últimos cambios guardados provisionalmente...",
- "command.sync": "Sincronizar",
- "command.syncRebase": "Sincronizar (Rebase)",
- "command.timelineCompareWithSelected": "Comparar con seleccionados",
- "command.timelineCopyCommitId": "Copiar ID de confirmación",
- "command.timelineCopyCommitMessage": "Copiar mensaje de confirmación",
- "command.timelineOpenDiff": "Abrir cambios",
- "command.timelineSelectForCompare": "Seleccionar para comparar",
- "command.undoCommit": "Deshacer última confirmación",
- "command.unstage": "Cancelar almacenamiento provisional de los cambios",
- "command.unstageAll": "Cancelar almacenamiento provisional de todos los cambios",
- "command.unstageSelectedRanges": "Cancelar almacenamiento provisional de los intervalos seleccionados",
- "config.allowForcePush": "Controla si está habilitada la opción de forzar envío de cambios (con o sin concesión).",
- "config.allowNoVerifyCommit": "Controla si se permiten las confirmaciones sin ejecutar enlaces previos a la confirmación y de mensajes de confirmación.",
- "config.alwaysShowStagedChangesResourceGroup": "Permitir siempre el grupo de recursos Cambios almacenados provisionalmente.",
- "config.alwaysSignOff": "Controla el indicador de firma para todos los commits",
- "config.autoRepositoryDetection": "Configura cuándo los repositorios deben detectarse automáticamente.",
- "config.autoRepositoryDetection.false": "Desactivar el escaneado automático de repositorio.",
- "config.autoRepositoryDetection.openEditors": "Buscar por carpetas padre de los archivos abiertos.",
- "config.autoRepositoryDetection.subFolders": "Buscar por subcarpetas de la carpeta actualmente abierta.",
- "config.autoRepositoryDetection.true": "Buscar por ambas subcarpetas de la carpeta abierta actual y carpetas padre de archivos abiertos.",
- "config.autoStash": "Guarde cualquier cambio antes de insertar y restaurarlos cuando la inserción se haya completado correctamente.",
- "config.autofetch": "Cuando se establece en true, se aplica \"fetch\" a los \"commits\" de forma automática para recuperar los cambios del elemento remoto predeterminado del repositorio GIT actual. Si se establece en \"all\" se recuperan los cambios con \"fetch\" de todos los elementos remotos.",
- "config.autofetchPeriod": "Duración en segundos entre cada búsqueda de GIT automática, cuando se habilita \"git.autofetch\".",
- "config.autorefresh": "Si la actualización automática es habilitada.",
- "config.branchPrefix": "Prefijo usado al crear una rama nueva.",
- "config.branchProtection": "Lista de ramas protegidas. De forma predeterminada, se muestra un mensaje antes de que se confirmen los cambios en una rama protegida. El mensaje se puede controlar mediante la configuración '#git.branchProtectionPrompt#'.",
- "config.branchProtectionPrompt": "Controla si se está solicitando una confirmación antes de que los cambios se confirmen en una rama protegida.",
- "config.branchProtectionPrompt.alwaysCommit": "Confirmar siempre los cambios en la rama protegida.",
- "config.branchProtectionPrompt.alwaysCommitToNewBranch": "Confirmar siempre los cambios en una rama nueva.",
- "config.branchProtectionPrompt.alwaysPrompt": "Preguntar siempre antes de que los cambios se confirmen en una rama protegida.",
- "config.branchRandomNameDictionary": "Lista de diccionarios usados para el nombre de rama generado aleatoriamente. Cada valor representa el diccionario usado para generar el segmento del nombre de rama. Diccionarios admitidos: \"adjetivos\", \"animales\", \"colores\" y \"números\".",
- "config.branchRandomNameDictionary.adjectives": "Un adjetivo aleatorio",
- "config.branchRandomNameDictionary.animals": "Un nombre de animal aleatorio",
- "config.branchRandomNameDictionary.colors": "Un nombre de color aleatorio",
- "config.branchRandomNameDictionary.numbers": "Un número aleatorio entre 100 y 999",
- "config.branchRandomNameEnable": "Controla si se genera un nombre aleatorio al crear una rama nueva.",
- "config.branchSortOrder": "Controla el criterio de ordenación de las bifurcaciones.",
- "config.branchValidationRegex": "Una expresión regular para validar nuevos nombres de rama.",
- "config.branchWhitespaceChar": "Carácter que reemplazará los espacios en blanco en los nuevos nombres de rama y para separar los segmentos de un nombre de rama generado aleatoriamente.",
- "config.checkoutType": "Controla qué tipo de referencias GIT aparecen en la lista al ejecutar \"Extraer del repositorio en...\" .",
- "config.checkoutType.local": "Ramas locales",
- "config.checkoutType.remote": "Ramas remotas",
- "config.checkoutType.tags": "Etiquetas",
- "config.closeDiffOnOperation": "Controla si el editor de diferencias debe cerrarse automáticamente cuando los cambios se guardan provisionalmente, se confirman, se descartan, se almacenan provisionalmente o se quitan.",
- "config.commandsToLog": "Lista de comandos git (p. ej., commit, push) que tendrían `stdout` registrado en el [git output](command:git.showOutput). Si el comando git tiene configurado un enlace del lado cliente, el enlace del lado cliente `stdout` también se registrará en el [git output](command:git.showOutput).",
- "config.confirmEmptyCommits": "Confirme siempre la creación de confirmaciones vacías para el comando \"Git: Commit Empty\".",
- "config.confirmForcePush": "Controla si va a solicitar confirmación antes de forzar envío de cambios.",
- "config.confirmNoVerifyCommit": "Controla si se debe pedir confirmación antes de ejecutar sin comprobación.",
- "config.confirmSync": "Confirmar antes de sincronizar repositorios GIT.",
- "config.countBadge": "Controla la insignia de recuento de Git.",
- "config.countBadge.all": "Recuento de todos los cambios.",
- "config.countBadge.off": "Desactive el contador.",
- "config.countBadge.tracked": "Recuento solo de los cambios de los que se ha realizado seguimiento.",
- "config.decorations.enabled": "Controla si GIT aporta colores y distintivos al explorador y a la vista Editores abiertos.",
- "config.defaultCloneDirectory": "La ubicación predeterminada en la que se clona un repositorio de GIT.",
- "config.detectSubmodules": "Controla si se detectan automáticamente los submódulos Git. ",
- "config.detectSubmodulesLimit": "Controla el límite de submódulos de git detectados.",
- "config.discardAllScope": "Controla qué cambios son descartados por el comando 'Descartar todos los cambios'. 'all' descarta todos los cambios. 'tracked' descarta sólo los ficheros en seguimiento. 'prompt' muestra un cuadro de diálogo para confirmar cada vez la acción ejecutada.",
- "config.enableCommitSigning": "Habilita la firma de \"commit\" con GPG o X.509.",
- "config.enableSmartCommit": "Confirmar todos los cambios cuando no hay elementos almacenados provisionalmente.",
- "config.enableStatusBarSync": "Controla si el comando Git Sync aparece en la barra de estado.",
- "config.enabled": "Si GIT está habilitado.",
- "config.experimental.installGuide": "Mejoras experimentales para el flujo de configuración de Git.",
- "config.fetchOnPull": "Cuando esté activado, obtenga todas las ramas al insertar. De lo contrario, obtenga solo la actual.",
- "config.followTagsWhenSync": "Siga el envío de cambios mediante \"push\" de todas las etiquetas al ejecutar el comando de sincronización.",
- "config.ignoreLegacyWarning": "Ignora las advertencias hereradas de GIT.",
- "config.ignoreLimitWarning": "Ignora la advertencia cuando hay demasiados cambios en un repositorio.",
- "config.ignoreMissingGitWarning": "Ignora la advertencia cuando falta Git.",
- "config.ignoreRebaseWarning": "Ignora la advertencia cuando parece que la rama se ha fusionado mediante cambio de base con \"rebase\" durante la incorporación de cambios con \"pull\".",
- "config.ignoreSubmodules": "Ignore las modificaciones de los submódulos en el árbol de archivos.",
- "config.ignoreWindowsGit27Warning": "Ignora la advertencia cuando Git 2.25 - 2.26 está instalado en Windows.",
- "config.ignoredRepositories": "Lista de repositorios GIT que se van a ignorar.",
- "config.inputValidation": "Controla cuándo mostrar el mensaje de validación de entrada en el contador de entrada.",
- "config.inputValidationLength": "Controla el umbral de longitud de mensaje de confirmación para mostrar una advertencia.",
- "config.inputValidationSubjectLength": "Controla el umbral de longitud del asunto del mensaje de confirmación para mostrar una advertencia. Desactívelo para heredar el valor de \"config.inputValidationLength\".",
- "config.logLevel": "Especifica la cantidad de información (si la hay) que se va a registrar en la [salida del GIT](command:git.showOutput).",
- "config.logLevel.critical": "Registrar solo información crítica",
- "config.logLevel.debug": "Registrar solo depuración, información, advertencia, error e información crítica",
- "config.logLevel.error": "Registrar solo error e información crítica",
- "config.logLevel.info": "Registrar solo información, advertencia, error e información crítica",
- "config.logLevel.off": "No registrar nada",
- "config.logLevel.trace": "Registrar toda la información",
- "config.logLevel.warn": "Registrar solo advertencia, error e información crítica",
- "config.mergeEditor": "Abra el editor de combinación para los archivos que están actualmente en conflicto.",
- "config.openAfterClone": "Controla si se va a abrir un repositorio de forma automática después de la clonación.",
- "config.openAfterClone.always": "Abrir siempre en la ventana actual.",
- "config.openAfterClone.alwaysNewWindow": "Abrir siempre en una ventana nueva.",
- "config.openAfterClone.prompt": "Solicitar siempre la acción.",
- "config.openAfterClone.whenNoFolderOpen": "Abrir solo en la ventana actual si no hay ninguna carpeta abierta.",
- "config.openDiffOnClick": "Controla si el editor diff debe abrirse al hacer clic en un cambio. De lo contrario se abrirá el editor normal.",
- "config.path": "Ruta de acceso y nombre de archivo del archivo ejecutable git; por ejemplo, \"C:\\Program Files\\Git\\bin\\git.exe\" (Windows). También puede ser una matriz de valores de cadena que contiene varias rutas de acceso para buscar.",
- "config.postCommitCommand": "Ejecuta un comando de git después de una confirmación correcta.",
- "config.postCommitCommand.none": "No ejecutar ningún comando después de una confirmación.",
- "config.postCommitCommand.push": "Ejecutar 'Git Push' después de una confirmación exitosa.",
- "config.postCommitCommand.sync": "Ejecutar 'Git Sync' después de una confirmación exitosa.",
- "config.promptToSaveFilesBeforeCommit": "Controla si Git debe comprobar los archivos no guardados antes de confirmar las actualizaciones. ",
- "config.promptToSaveFilesBeforeCommit.always": "Compruebe si hay archivos sin guardar.",
- "config.promptToSaveFilesBeforeCommit.never": "Desactive esta comprobación.",
- "config.promptToSaveFilesBeforeCommit.staged": "Compruebe solo si hay archivos preconfigurados sin guardar.",
- "config.promptToSaveFilesBeforeStash": "Controla si GIT debe comprobar los archivos no guardados antes de guardar los cambios provisionalmente con \"stash\". ",
- "config.promptToSaveFilesBeforeStash.always": "Compruebe si hay archivos sin guardar.",
- "config.promptToSaveFilesBeforeStash.never": "Desactive esta comprobación.",
- "config.promptToSaveFilesBeforeStash.staged": "Compruebe solo si hay archivos preconfigurados sin guardar.",
- "config.pruneOnFetch": "Eliminar al hacer \"fetch\".",
- "config.pullTags": "Recupere todas las etiquetas al insertar.",
- "config.rebaseWhenSync": "Forzar que GIT utilice la fusión mediante cambio de base cuando se ejecute el comando de sincronización.",
- "config.repositoryScanIgnoredFolders": "Lista de carpetas que se ignoran al buscar repositorios Git cuando `#git.autoRepositoryDetection#` se establece como `true` o `subFolders`.",
- "config.repositoryScanMaxDepth": "Controla la profundidad usada al examinar las carpetas del área de trabajo en busca de repositorios Git cuando \"#git.autoRepositoryDetection#\" está establecido en \"true\" o \"subFolders\". Se puede establecer en \"-1\" para que no haya límite.",
- "config.requireGitUserConfig": "Controla si se va a requerir una configuración de usuario de GIT explícita o se va a permitir a GIT que la adivine si falta.",
- "config.scanRepositories": "Lista de rutas en las que buscar repositorios de git.",
- "config.showActionButton": "Controla si se muestra un botón de acción en la vista Control de código fuente.",
- "config.showActionButton.commit": "Muestra un botón de acción para confirmar los cambios cuando la rama local haya modificado archivos listos para confirmarse.",
- "config.showActionButton.publish": "Muestra un botón de acción para publicar la rama local cuando no tiene una rama remota de seguimiento.",
- "config.showActionButton.sync": "Muestra un botón de acción para sincronizar los cambios cuando la rama local está por delante o detrás de la rama remota.",
- "config.showCommitInput": "Controla si se va a mostrar la entrada de confirmación en el panel de control de código fuente de GIT.",
- "config.showInlineOpenFileAction": "Controla si se debe mostrar una acción de archivo abierto en la vista de cambios en Git",
- "config.showProgress": "Controla si las acciones de git deben mostrar el progreso.",
- "config.showPushSuccessNotification": "Controla si se va a mostrar una notificación cuando un push es exitoso.",
- "config.smartCommitChanges": "Controle qué cambios se realizan automáticamente mediante Smart Commit.",
- "config.smartCommitChanges.all": "Agregar todos los cambios automáticamente al \"stage\".",
- "config.smartCommitChanges.tracked": "Solo cambios de seguimiento \"staged\" automáticamente.",
- "config.statusLimit": "Controla cómo limitar el número de cambios que se pueden analizar desde el comando de estado de Git. Se puede establecer en 0 sin límite.",
- "config.suggestSmartCommit": "Sugiere habilitar la confirmación inteligente (confirmar todos los cambios cuando no hay cambios \"staged\").",
- "config.supportCancellation": "Controla si aparece una notificación al ejecutar la acción Sincronizar, que permite al usuario cancelar la operación.",
- "config.terminalAuthentication": "Controla si debe habilitarse VS Code como controlador de autenticación para los procesos GIT que se generan en el terminal integrado. Nota: Los terminales deben reiniciarse para recoger el cambio en esta configuración.",
- "config.terminalGitEditor": "Controla si debe habilitarse VS Code como editor GIT para los procesos GIT generados en el terminal integrado. Nota: Los terminales deben reiniciarse para recoger el cambio en esta configuración.",
- "config.timeline.date": "Controla la fecha que se va a usar para los elementos de la vista Escala de tiempo.",
- "config.timeline.date.authored": "Usar la fecha de creación",
- "config.timeline.date.committed": "Usar la fecha de confirmación",
- "config.timeline.showAuthor": "Controla si se va a mostrar el autor del \"commit\" en la vista Escala de tiempo.",
- "config.timeline.showUncommitted": "Controla si se van a mostrar los cambios no confirmados en la vista Escala de tiempo.",
- "config.untrackedChanges": "Controla el comportamiento de los cambios a los que no se hace seguimiento.",
- "config.untrackedChanges.hidden": "Los cambios a los que no se realiza seguimiento se ocultan y se excluyen de varias acciones.",
- "config.untrackedChanges.mixed": "Todos los cambios, rastreados y no rastreados, aparecen juntos y se comportan por igual.",
- "config.untrackedChanges.separate": "Los cambios sin seguimiento aparecen por separado en la vista de control de código fuente. También se excluyen de varias acciones.",
- "config.useCommitInputAsStashMessage": "Controla si se va a usar el mensaje del cuadro de entrada de \"commit\" como mensaje \"stash\" predeterminado.",
- "config.useEditorAsCommitInput": "Controla si un editor de texto completo será utilizado para crear mensajes de confirmación, siempre que no se proporcione ningún mensaje en el cuadro de entrada de confirmación.",
- "config.useForcePushWithLease": "Controla si forzar envío de cambios usa variante de forzar con concesión, más segura.",
- "config.useIntegratedAskPass": "Controla si se debe sobrescribir GIT_ASKPASS para usar la versión integrada.",
- "config.verboseCommit": "Habilite la salida detallada cuando \"#git.useEditorAsCommitInput#\" esté habilitado.",
- "description": "Integración Git SCM",
- "displayName": "GIT",
- "submenu.branch": "Rama",
- "submenu.changes": "Cambios",
- "submenu.commit": "\"Commit\"",
- "submenu.commit.amend": "Rectificar",
- "submenu.commit.signoff": "Cerrar sesión",
- "submenu.explorer": "GIT",
- "submenu.pullpush": "\"Pull\", \"Push\"",
- "submenu.remotes": "Remoto",
- "submenu.stash": "Stash",
- "submenu.tags": "Etiquetas",
- "view.workbench.cloneRepository": "Puede clonar un repositorio de forma local.\r\n[Clonar repositorio](command:git.clone 'Clonar un repositorio una vez que la extensión GIT se haya activado')",
- "view.workbench.learnMore": "Para obtener más información sobre cómo usar GIT y el control de código fuente en VS Code, [lea nuestra documentación](https://aka.ms/vscode-scm).",
- "view.workbench.scm.disabled": "Si desea utilizar las características de git, habilite git en su [configuración](command:workbench.action.openSettings?%5B%22git.enabled%22%5D).\r\nPara obtener más información sobre cómo usar Git y el control de código fuente en VS Code [lea nuestros documentos](https://aka.ms/vscode-scm).",
- "view.workbench.scm.empty": "Para utilizar las características de git, puede abrir una carpeta que contenga un repositorio git o clonarlo desde una dirección URL.\r\n[Abrir carpeta](command:vscode.openFolder)\r\n[Clonar repositorio](command:git.clone)\r\nPara obtener más información sobre cómo usar Git y el control de código fuente en VS Code [lea nuestros documentos](https://aka.ms/vscode-scm).",
- "view.workbench.scm.emptyWorkspace": "El área de trabajo abierto actualmente no tiene ninguna carpeta que contenga repositorios git.\r\n[Agregue carpeta al espacio de trabajo](command:workbench.action.addRootFolder)\r\nPara obtener más información sobre cómo usar Git y el control de código fuente en VS Code [lea nuestros documentos](https://aka.ms/vscode-scm).",
- "view.workbench.scm.folder": "La carpeta abierta actualmente no tiene un repositorio git. Puede inicializar un repositorio que habilitará características de control de código fuente con tecnología de git.\r\n[Inicializar repositorio](command:git.init?%5Btrue%5D)\r\n Para obtener más información sobre cómo usar git y el control de código fuente en VS Code [lea nuestra documentación](https://aka.ms/vscode-scm).",
- "view.workbench.scm.missing": "Instale Git, un conocido sistema de control de código fuente, para realizar un seguimiento de los cambios de código y colaborar con otros usuarios. Obtenga más información en nuestras [guías Git](https://aka.ms/vscode-scm).",
- "view.workbench.scm.missing.linux": "El control de código fuente depende de la instalación de Git.\r\n[Descargar Git para Linux](https://git-scm.com/download/linux)\r\nDespués de la instalación, [recarga](command:workbench.action.reloadWindow) (o [solucionar problemas](command:git.showOutput)). Se pueden instalar proveedores de control de código fuente adicionales [desde Marketplace](command:workbench.extensions.search?%22%40category%3A%5C%22scm%20providers%5C%22%22).",
- "view.workbench.scm.missing.mac": "[Descargar Git para macOS](https://git-scm.com/download/mac)\r\nDespués de la instalación, [recarga](command:workbench.action.reloadWindow) (o [solucionar problemas](command:git.showOutput)). Se pueden instalar proveedores de control de código fuente adicionales [desde Marketplace](command:workbench.extensions.search?%22%40category%3A%5C%22scm%20providers%5C%22%22).",
- "view.workbench.scm.missing.windows": "[Descargar Git para Windows](https://git-scm.com/download/win)\r\nDespués de la instalación, [recarga](command:workbench.action.reloadWindow) (o [solucionar problemas](command:git.showOutput)). Se pueden instalar proveedores de control de código fuente adicionales [desde Marketplace](command:workbench.extensions.search?%22%40category%3A%5C%22scm%20providers%5C%22%22).",
- "view.workbench.scm.workspace": "El área de trabajo abierta actualmente no tiene ninguna carpeta que contenga repositorios de git. Puede inicializar un repositorio en una carpeta, lo que habilitará las características de control de código con tecnología de git.\r\n[Inicializar repositorio](command:git.init)\r\n Para obtener más información sobre cómo usar git y el control de código fuente en VS Code [lea nuestra documentación](https://aka.ms/vscode-scm)."
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-es/translations/extensions/github-authentication.i18n.json b/i18n/vscode-language-pack-es/translations/extensions/github-authentication.i18n.json
deleted file mode 100644
index 9976975035..0000000000
--- a/i18n/vscode-language-pack-es/translations/extensions/github-authentication.i18n.json
+++ /dev/null
@@ -1,27 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "dist/githubServer": {
- "code.detail": "Para finalizar la autenticación, vaya a GitHub y pegue el código de un solo uso anterior.",
- "code.title": "Su código: {0}",
- "no": "No",
- "otherReasonMessage": "Aún no ha terminado de autorizar esta extensión para usar GitHub. ¿Desea seguir intentándolo?",
- "progress": "Abra [{0}]({0}) en una pestaña nueva y pegue el código de un solo uso: {1}",
- "signingIn": "Iniciando sesión en github.com...",
- "signingInAnotherWay": "Iniciando sesión en github.com...",
- "userCancelledMessage": "¿Tiene problemas para iniciar sesión? ¿Desea probar de otra forma?",
- "yes": "Sí"
- },
- "package": {
- "description": "Proveedor de autenticación de GitHub",
- "displayName": "Autenticación de GitHub"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-es/translations/extensions/github-browser.i18n.json b/i18n/vscode-language-pack-es/translations/extensions/github-browser.i18n.json
deleted file mode 100644
index 0302799875..0000000000
--- a/i18n/vscode-language-pack-es/translations/extensions/github-browser.i18n.json
+++ /dev/null
@@ -1,19 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "package": {
- "displayName": "Explorador de GitHub",
- "description": "Examinar un repositorio de GitHub de forma remota"
- },
- "dist/scm": {
- "no changes": "No hay cambios para confirmar."
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-es/translations/extensions/github.i18n.json b/i18n/vscode-language-pack-es/translations/extensions/github.i18n.json
deleted file mode 100644
index e480b27026..0000000000
--- a/i18n/vscode-language-pack-es/translations/extensions/github.i18n.json
+++ /dev/null
@@ -1,46 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "dist/publish": {
- "ignore": "Seleccione los archivos que se deben incluir en el repositorio.",
- "openingithub": "Abrir en GitHub",
- "pick folder": "Seleccionar una carpeta para publicar en GitHub",
- "publishing_done": "El repositorio \"{0}\" se ha publicado correctamente en GitHub.",
- "publishing_firstcommit": "Creando el primer \"commit\"",
- "publishing_private": "Publicando en un repositorio de GitHub privado",
- "publishing_public": "Publicando en un repositorio de GitHub público",
- "publishing_uploading": "Cargando archivos"
- },
- "dist/pushErrorHandler": {
- "create a fork": "Crear bifurcación",
- "create fork": "Crear bifurcación de GitHub",
- "createghpr": "Creando solicitud de incorporación de cambios de GitHub...",
- "createpr": "Crear PR",
- "donepr": "La PR \"{0}/{1}#{2}\" se creó correctamente en GitHub.",
- "fork": "No tiene permisos para realizar la inserción en \"{0}/{1}\" en GitHub. ¿Desea crear una bifurcación y realizar mejor en ella la inserción?",
- "forking": "Bifurcando \"{0}/{1}\"...",
- "forking_done": "La bifurcación \"{0}\" se creó correctamente en GitHub.",
- "forking_pushing": "Insertando cambios...",
- "no": "No",
- "no pr template": "Ninguna plantilla",
- "openingithub": "Abrir en GitHub",
- "openpr": "Abrir PR",
- "select pr template": "Seleccionar la plantilla de solicitud de incorporación de cambios"
- },
- "package": {
- "config.gitAuthentication": "Controla si se debe habilitar la autenticación automática de GitHub para los comandos GIT dentro de VS Code.",
- "config.gitProtocol": "Controla qué protocolo se usa para clonar un repositorio de GitHub",
- "description": "Características de GitHub para VS Code",
- "displayName": "GitHub",
- "welcome.publishFolder": "También puede publicar directamente esta carpeta en un repositorio de GitHub. Una vez publicada, tendrá acceso a las características de control de código fuente con tecnología de git y GitHub.\r\n[$(github) Publicar en GitHub](command:github.publish)",
- "welcome.publishWorkspaceFolder": "También puede publicar directamente una carpeta del área de trabajo en un repositorio de GitHub. Una vez publicada, tendrá acceso a las características de control de código fuente con tecnología de git y GitHub.\r\n[$(github) Publicar en GitHub](command:github.publish)"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-es/translations/extensions/go.i18n.json b/i18n/vscode-language-pack-es/translations/extensions/go.i18n.json
deleted file mode 100644
index f9814a9e77..0000000000
--- a/i18n/vscode-language-pack-es/translations/extensions/go.i18n.json
+++ /dev/null
@@ -1,16 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "package": {
- "description": "Proporciona resaltado de sintaxis y correspondencia de corchetes en archivos de Go.",
- "displayName": "Elementos básicos del lenguaje Go"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-es/translations/extensions/groovy.i18n.json b/i18n/vscode-language-pack-es/translations/extensions/groovy.i18n.json
deleted file mode 100644
index 20d543730d..0000000000
--- a/i18n/vscode-language-pack-es/translations/extensions/groovy.i18n.json
+++ /dev/null
@@ -1,16 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "package": {
- "description": "Proporciona fragmentos de código, resaltado de sintaxis y correspondencia de corchetes en archivos de Groovy.",
- "displayName": "Conceptos básicos del lenguaje Groovy"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-es/translations/extensions/grunt.i18n.json b/i18n/vscode-language-pack-es/translations/extensions/grunt.i18n.json
deleted file mode 100644
index 975c7ae8b0..0000000000
--- a/i18n/vscode-language-pack-es/translations/extensions/grunt.i18n.json
+++ /dev/null
@@ -1,25 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "dist/main": {
- "execFailed": "La detección automática de Grunt para la carpeta {0} falló con el error: {1}",
- "gruntShowOutput": "Ir a la salida",
- "gruntTaskDetectError": "Problema para encontrar tareas grunt. Consulte la salida para obtener más información."
- },
- "package": {
- "config.grunt.autoDetect": "Controla la habilitación de la detección de tareas de Gulp. La detección de tareas de Gulp puede hacer que se ejecuten archivos en cualquier espacio de trabajo abierto.",
- "description": "Extensión que agrega funcionalidad de Grunt a VS Code.",
- "displayName": "Funcionalidad de Grunt para VS Code",
- "grunt.taskDefinition.args.description": "Argumentos de línea de comandos para pasar a la tarea de Grunt",
- "grunt.taskDefinition.file.description": "El archivo de Grunt que proporciona la tarea. Se puede omitir.",
- "grunt.taskDefinition.type.description": "La tarea de Grunt que se va a personalizar."
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-es/translations/extensions/gulp.i18n.json b/i18n/vscode-language-pack-es/translations/extensions/gulp.i18n.json
deleted file mode 100644
index 502ba106f9..0000000000
--- a/i18n/vscode-language-pack-es/translations/extensions/gulp.i18n.json
+++ /dev/null
@@ -1,24 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "dist/main": {
- "execFailed": "La detección automática de gulp para la carpeta {0} falló con el error: {1}",
- "gulpShowOutput": "Ir a la salida",
- "gulpTaskDetectError": "Problemas para encontrar tareas de gulp. Vea la salida para obtener más información."
- },
- "package": {
- "config.gulp.autoDetect": "Controla la habilitación de la detección de tareas de Gulp. La detección de tareas de Gulp puede hacer que se ejecuten archivos en cualquier espacio de trabajo abierto.",
- "description": "Extensión para añadir funcionalidad de Gulp a VSCode.",
- "displayName": "Soporte de Gulp para VSCode",
- "gulp.taskDefinition.file.description": "El archivo de Gulp que proporciona la tarea. Se puede omitir.",
- "gulp.taskDefinition.type.description": "La tarea de Gulp que se va a personalizar."
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-es/translations/extensions/handlebars.i18n.json b/i18n/vscode-language-pack-es/translations/extensions/handlebars.i18n.json
deleted file mode 100644
index ced1b92f3a..0000000000
--- a/i18n/vscode-language-pack-es/translations/extensions/handlebars.i18n.json
+++ /dev/null
@@ -1,16 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "package": {
- "description": "Proporciona resaltado de sintaxis y correspondencia de corchetes en archivos de Handlebars.",
- "displayName": "Conceptos básicos del lenguaje Handlebars "
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-es/translations/extensions/hlsl.i18n.json b/i18n/vscode-language-pack-es/translations/extensions/hlsl.i18n.json
deleted file mode 100644
index 0d0cad6b0e..0000000000
--- a/i18n/vscode-language-pack-es/translations/extensions/hlsl.i18n.json
+++ /dev/null
@@ -1,16 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "package": {
- "description": "Proporciona resaltado de sintaxis y correspondencia de corchetes en archivos de HLSL.",
- "displayName": "Conceptos básicos del lenguaje HLSL"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-es/translations/extensions/html-language-features.i18n.json b/i18n/vscode-language-pack-es/translations/extensions/html-language-features.i18n.json
deleted file mode 100644
index 636a64c1e8..0000000000
--- a/i18n/vscode-language-pack-es/translations/extensions/html-language-features.i18n.json
+++ /dev/null
@@ -1,59 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "client\\dist\\node/htmlClient": {
- "configureButton": "Configurar",
- "folding.end": "Fin de la región plegable",
- "folding.html": "Punto de partida HTML5 sencillo",
- "folding.start": "Inicio de la región plegable",
- "htmlserver.name": "Servidor de lenguaje HTML",
- "linkedEditingQuestion": "VS Code ahora tiene integrada la compatibilidad con el cambio de nombre automático de etiquetas. ¿Desea habilitarlo?"
- },
- "package": {
- "description": "Ofrece un extenso soporte de lenguaje para archivos HTML y Handlebar",
- "displayName": "Características del lenguaje HTML",
- "html.autoClosingTags": "Habilita o deshabilita el cierre automático de las etiquetas HTML.",
- "html.autoCreateQuotes": "Habilita o deshabilita la creación automática de comillas para la asignación de atributos HTML. '#html.completion.attributeDefaultValue#' puede configurar el tipo de comillas.",
- "html.completion.attributeDefaultValue": "Controla el valor predeterminado de los atributos cuando se acepta la finalización.",
- "html.completion.attributeDefaultValue.doublequotes": "El valor del atributo se establece en \"\".",
- "html.completion.attributeDefaultValue.empty": "El valor del atributo no está establecido.",
- "html.completion.attributeDefaultValue.singlequotes": "El valor del atributo se establece en ''.",
- "html.customData.desc": "Una lista de rutas de archivo relativas que apuntan a archivos JSON siguiendo el [formato de datos personalizados](https://github.com/microsoft/vscode-html-languageservice/blob/master/docs/customData.md).\r\n\r\nVS Code carga los datos personalizados al iniciarse para mejorar su soporte HTML para las etiquetas HTML personalizadas, los atributos y los valores de atributos que usted especifica en los archivos JSON.\r\n\r\nLas rutas de los archivos son relativas al área de trabajo y sólo se tiene en cuenta la configuración de la carpeta del área de trabajo.",
- "html.format.contentUnformatted.desc": "Lista de etiquetas, separadas por comas, en las que el contenido no debe volver a formatearse. \"null\" se establece de manera predeterminada en la etiqueta \"pre\".",
- "html.format.enable.desc": "Habilitar o deshabilitar el formateador HTML predeterminado.",
- "html.format.extraLiners.desc": "Lista de etiquetas, separadas por comas, que deben tener una nueva línea adicional delante. \"null\" tiene como valores predeterminados \"head, body, /html\".",
- "html.format.indentHandlebars.desc": "Formato y sangría {{#foo}} y {{/foo}}.",
- "html.format.indentInnerHtml.desc": "Aplique sangría a las secciones \"\" y \"\".",
- "html.format.maxPreserveNewLines.desc": "Número máximo de saltos de línea que deben conservarse en un fragmento. Use \"null\" para que el número sea ilimitado.",
- "html.format.preserveNewLines.desc": "Controla si los saltos de línea existentes delante de los elementos deben conservarse. Solo funciona delante de los elementos, no dentro de las etiquetas ni con texto.",
- "html.format.templating.desc": "Respete las etiquetas de los lenguajes de plantillas django, erb, handlebars y php.",
- "html.format.unformatted.desc": "Lista de etiquetas, separadas por comas, a las que no se debe volver a aplicar formato. El valor predeterminado de \"null\" son todas las etiquetas mostradas en https://www.w3.org/TR/html5/dom.html#phrasing-content.",
- "html.format.unformattedContentDelimiter.desc": "Agrupe el contenido de texto entre esta cadena.",
- "html.format.wrapAttributes.alignedmultiple": "Ajusta cuando se supera la longitud de línea y alinea los atributos verticalmente.",
- "html.format.wrapAttributes.auto": "Ajustar atributos solo cuando se supera la longitud de la línea.",
- "html.format.wrapAttributes.desc": "Ajustar atributos.",
- "html.format.wrapAttributes.force": "Ajustar todos los atributos excepto el primero.",
- "html.format.wrapAttributes.forcealign": "Ajustar todos los atributos excepto el primero y mantener la alineación.",
- "html.format.wrapAttributes.forcemultiline": "Ajustar todos los atributos.",
- "html.format.wrapAttributes.preserve": "Preserva el ajuste de atributos.",
- "html.format.wrapAttributes.preservealigned": "Conservar el ajuste de atributos pero alinear.",
- "html.format.wrapAttributesIndentSize.desc": "Aplicar sangría a los atributos ajustados después de N caracteres. Use \"null\" para usar el tamaño de sangría predeterminado. Se omite si '#html.format.wrapAttributes#' está establecido en “aligned”.",
- "html.format.wrapLineLength.desc": "Cantidad máxima de caracteres por línea (0 = deshabilitar).",
- "html.hover.documentation": "Mostrar la documentación de atributos y etiquetas mediante movimiento del mouse.",
- "html.hover.references": "Mostrar las referencias a MDN mediante movimiento del mouse.",
- "html.mirrorCursorOnMatchingTag": "Habilitar o deshabilitar el reflejo del cursor en la etiqueta HTML coincidente.",
- "html.mirrorCursorOnMatchingTagDeprecationMessage": "En desuso en favor de \"editor.linkedEditing\"",
- "html.suggest.html5.desc": "Controla si la compatibilidad con el lenguaje HTML integrada sugiere etiquetas, propiedades y valores de HTML5.",
- "html.trace.server.desc": "Hace un seguimiento de la comunicación entre VSCode y el servidor de lenguaje HTML.",
- "html.validate.scripts": "Controla si la compatibilidad con el lenguaje HTML integrada valida los scripts incrustados.",
- "html.validate.styles": "Controla si la compatibilidad con el lenguaje HTML integrada valida los estilos incrustados."
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-es/translations/extensions/html.i18n.json b/i18n/vscode-language-pack-es/translations/extensions/html.i18n.json
deleted file mode 100644
index f4e7c71ceb..0000000000
--- a/i18n/vscode-language-pack-es/translations/extensions/html.i18n.json
+++ /dev/null
@@ -1,16 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "package": {
- "description": "Proporciona resaltado de sintaxis, coincidencia de corchetes y fragmentos de código en archivos HTML.",
- "displayName": "Conceptos básicos de lenguaje HTML"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-es/translations/extensions/image-preview.i18n.json b/i18n/vscode-language-pack-es/translations/extensions/image-preview.i18n.json
deleted file mode 100644
index b060bfb9fd..0000000000
--- a/i18n/vscode-language-pack-es/translations/extensions/image-preview.i18n.json
+++ /dev/null
@@ -1,39 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "dist/binarySizeStatusBarEntry": {
- "sizeB": "{0} B",
- "sizeGB": "{0} GB",
- "sizeKB": "{0} KB",
- "sizeMB": "{0} MB",
- "sizeStatusBar.name": "Tamaño binario de la imagen",
- "sizeTB": "{0} TB"
- },
- "dist/preview": {
- "preview.imageLoadError": "Se ha producido un error al cargar la imagen.",
- "preview.imageLoadErrorLink": "¿Abrir archivo con el editor de texto/binario estándar de VS Code?"
- },
- "dist/sizeStatusBarEntry": {
- "sizeStatusBar.name": "Tamaño de la imagen"
- },
- "dist/zoomStatusBarEntry": {
- "zoomStatusBar.name": "Zoom de imagen",
- "zoomStatusBar.placeholder": "Seleccionar nivel de zoom",
- "zoomStatusBar.wholeImageLabel": "Imagen completa"
- },
- "package": {
- "command.zoomIn": "Acercar",
- "command.zoomOut": "Alejar",
- "customEditors.displayName": "Vista previa de la imagen",
- "description": "Proporciona la vista previa de imagen integrada de VS Code",
- "displayName": "Vista previa de la imagen"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-es/translations/extensions/ini.i18n.json b/i18n/vscode-language-pack-es/translations/extensions/ini.i18n.json
deleted file mode 100644
index 68e6161607..0000000000
--- a/i18n/vscode-language-pack-es/translations/extensions/ini.i18n.json
+++ /dev/null
@@ -1,16 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "package": {
- "description": "Proporciona resaltado de sintaxis y correspondencia de corchetes en archivos Ini.",
- "displayName": "Conceptos básicos del lenguaje Ini"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-es/translations/extensions/ipynb.i18n.json b/i18n/vscode-language-pack-es/translations/extensions/ipynb.i18n.json
deleted file mode 100644
index e28d1ee7f1..0000000000
--- a/i18n/vscode-language-pack-es/translations/extensions/ipynb.i18n.json
+++ /dev/null
@@ -1,16 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "package": {
- "description": "Proporciona compatibilidad básica para abrir y leer los archivos .ipynb del bloc de notas de Jupyter.",
- "displayName": "Compatibilidad con .ipynb"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-es/translations/extensions/jake.i18n.json b/i18n/vscode-language-pack-es/translations/extensions/jake.i18n.json
deleted file mode 100644
index e2a3e9e1e9..0000000000
--- a/i18n/vscode-language-pack-es/translations/extensions/jake.i18n.json
+++ /dev/null
@@ -1,24 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "dist/main": {
- "execFailed": "La detección automática de Jake para la carpeta {0} falló con el error: {1}",
- "jakeShowOutput": "Ir a la salida",
- "jakeTaskDetectError": "Problema para encontrar tareas de jake. Vea la salida para más información."
- },
- "package": {
- "config.jake.autoDetect": "Controla la activación de la detección de tareas de Jake. La detección de tareas de Jake puede hacer que se ejecuten los archivos de cualquier área de trabajo abierta.",
- "description": "Extensión que agrega funcionalidad de Jake a VS Code.",
- "displayName": "Funcionalidad de Jake para VS Code",
- "jake.taskDefinition.file.description": "EL archivo de Jake que proporciona la tarea. Se puede omitir.",
- "jake.taskDefinition.type.description": "La tarea de Jake que se va a personalizar."
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-es/translations/extensions/java.i18n.json b/i18n/vscode-language-pack-es/translations/extensions/java.i18n.json
deleted file mode 100644
index 6a959ed3f4..0000000000
--- a/i18n/vscode-language-pack-es/translations/extensions/java.i18n.json
+++ /dev/null
@@ -1,16 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "package": {
- "description": "Proporciona fragmentos de código, resaltado de sintaxis, correspondencia de corchetes y plegado de código en archivos de Java.",
- "displayName": "Conceptos básicos del lenguaje Java"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-es/translations/extensions/javascript.i18n.json b/i18n/vscode-language-pack-es/translations/extensions/javascript.i18n.json
deleted file mode 100644
index 2af98a9ac2..0000000000
--- a/i18n/vscode-language-pack-es/translations/extensions/javascript.i18n.json
+++ /dev/null
@@ -1,16 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "package": {
- "description": "Proporciona fragmentos de código, resaltado de sintaxis, correspondencia de corchetes y plegado de código en archivos de JavaScript.",
- "displayName": "Conceptos básicos del lenguaje JavaScript"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-es/translations/extensions/json-language-features.i18n.json b/i18n/vscode-language-pack-es/translations/extensions/json-language-features.i18n.json
deleted file mode 100644
index faf51fd29c..0000000000
--- a/i18n/vscode-language-pack-es/translations/extensions/json-language-features.i18n.json
+++ /dev/null
@@ -1,73 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "client\\dist\\node/jsonClient": {
- "json.clearCache.completed": "Borrada la caché de esquema JSON.",
- "json.resolveError": "JSON: Error de resolución de esquemas",
- "json.schemaResolutionDisabledMessage": "La descarga de esquemas está deshabilitada. Haga clic para configurar.",
- "json.schemaResolutionErrorMessage": "No se puede resolver el esquema. Haga clic para volver a intentarlo.",
- "jsonserver.name": "Servidor de lenguaje JSON",
- "schemaDownloadDisabled": "La descarga de esquemas está deshabilitada mediante el valor \"{0}\"",
- "untitled.schema": "No se puede cargar {0}"
- },
- "client\\dist\\node/languageStatus": {
- "documentColorsStatusItem.name": "Estado del símbolo de color JSON",
- "documentSymbolsStatusItem.name": "Estado del esquema JSON",
- "foldingRangesStatusItem.name": "Estado de plegado de JSON",
- "openExtension": "Abrir la extensión",
- "openSettings": "Abrir configuración",
- "pending.detail": "Cargando información JSON",
- "schema.noSchema": "No hay ningún esquema configurado para este archivo",
- "schema.showdocs": "Más información sobre la configuración del esquema JSON...",
- "schemaFromFolderSettings": "Configurado en la configuración del área de trabajo",
- "schemaFromUserSettings": "Configurado en la configuración de usuario",
- "schemaFromextension": "Configurado por extensión: {0}",
- "schemaPicker.title": "Esquemas JSON usados para {0}",
- "status.button.configure": "Configurar",
- "status.error": "No se pueden calcular los esquemas usados",
- "status.limitedDocumentColors.details": "solo {0} se muestran los decoradores de color",
- "status.limitedDocumentColors.short": "Símbolos de color limitados",
- "status.limitedDocumentSymbols.details": "solo {0} se muestran los símbolos del documento",
- "status.limitedDocumentSymbols.short": "Esquema limitado",
- "status.limitedFoldingRanges.details": "solo {0} intervalos de plegado mostrados",
- "status.limitedFoldingRanges.short": "Rangos de plegado limitados",
- "status.multipleSchema": "se configuraron varios esquemas JSON",
- "status.noSchema": "no hay ningún esquema JSON configurado",
- "status.noSchema.short": "Sin validación de esquema",
- "status.notJSON": "No es un editor JSON",
- "status.openSchemasLink": "Mostrar esquemas",
- "status.singleSchema": "Esquema JSON configurado",
- "status.withSchema.short": "Esquema validado",
- "status.withSchemas.short": "Esquema validado",
- "statusItem.name": "Estado de validación JSON"
- },
- "package": {
- "description": "Proporciona un potente soporte de lenguaje para archivos JSON.",
- "displayName": "Características del lenguaje JSON",
- "json.clickToRetry": "Haga clic para volver a intentarlo.",
- "json.colorDecorators.enable.deprecationMessage": "El valor \"json.colorDecorators.enable\" está en desuso en favor de \"editor.colorDecorators\".",
- "json.colorDecorators.enable.desc": "Habilita o deshabilita decoradores de color",
- "json.command.clearCache": "Borrar caché de esquema",
- "json.enableSchemaDownload.desc": "Cuando está habilitado, los esquemas JSON se pueden capturar desde ubicaciones http y https.",
- "json.format.enable.desc": "Habilitar o deshabilitar el formateador JSON predeterminado",
- "json.format.keepLines.desc": "Conservar todas las líneas nuevas existentes al formatear.",
- "json.maxItemsComputed.desc": "El número máximo de símbolos del esquema y regiones de plegado calculados (limitado por motivos de rendimiento).",
- "json.maxItemsExceededInformation.desc": "Muestra una notificación cuando se supera el número máximo de símbolos de esquema y de regiones plegables.",
- "json.schemaResolutionErrorMessage": "No se puede resolver el esquema.",
- "json.schemas.desc": "Asocia esquemas a archivos JSON en el proyecto actual.",
- "json.schemas.fileMatch.desc": "Una matriz de patrones de archivo con los que buscar correspondencia al resolver archivos JSON en esquemas. \"*\" se puede usar como comodín. Los patrones de exclusión también se pueden definir y comenzar con \"!\". Un archivo coincide cuando hay al menos un patrón coincidente y el último patrón coincidente no es un patrón de exclusión.",
- "json.schemas.fileMatch.item.desc": "Un patrón de archivo que puede contener \"*\" con el cual coincidir cuando los archivos JSON se resuelvan en esquemas.",
- "json.schemas.schema.desc": "La definición de esquema de la dirección URL determinada. Solo se necesita proporcionar el esquema para evitar los accesos a la dirección URL del esquema.",
- "json.schemas.url.desc": "Una dirección URL a un esquema o una ruta de acceso relativa a un esquema en el directorio actual",
- "json.tracing.desc": "Realiza el seguimiento de la comunicación entre VS Code y el servidor de lenguaje JSON.",
- "json.validate.enable.desc": "Habilita o deshabilita la validación json."
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-es/translations/extensions/json.i18n.json b/i18n/vscode-language-pack-es/translations/extensions/json.i18n.json
deleted file mode 100644
index 86f733f02c..0000000000
--- a/i18n/vscode-language-pack-es/translations/extensions/json.i18n.json
+++ /dev/null
@@ -1,16 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "package": {
- "description": "Proporciona resaltado de sintaxis y coincidencia de corchetes en los archivos JSON.",
- "displayName": "Conceptos básicos de lenguaje JSON"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-es/translations/extensions/less.i18n.json b/i18n/vscode-language-pack-es/translations/extensions/less.i18n.json
deleted file mode 100644
index cd3e0ff673..0000000000
--- a/i18n/vscode-language-pack-es/translations/extensions/less.i18n.json
+++ /dev/null
@@ -1,16 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "package": {
- "description": "Proporciona resaltado de sintaxis, correspondencia de corchetes y plegado en archivos Less.",
- "displayName": "Conceptos básicos del lenguaje Less"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-es/translations/extensions/log.i18n.json b/i18n/vscode-language-pack-es/translations/extensions/log.i18n.json
deleted file mode 100644
index 019edbdedd..0000000000
--- a/i18n/vscode-language-pack-es/translations/extensions/log.i18n.json
+++ /dev/null
@@ -1,16 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "package": {
- "description": "Proporciona resaltado de sintaxis para archivos con la extensión .log.",
- "displayName": "LOG"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-es/translations/extensions/lua.i18n.json b/i18n/vscode-language-pack-es/translations/extensions/lua.i18n.json
deleted file mode 100644
index 421f2f8bf6..0000000000
--- a/i18n/vscode-language-pack-es/translations/extensions/lua.i18n.json
+++ /dev/null
@@ -1,16 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "package": {
- "description": "Proporciona resaltado de sintaxis y correspondencia de corchetes en archivos de Lua.",
- "displayName": "Conceptos básicos del lenguaje Lua"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-es/translations/extensions/make.i18n.json b/i18n/vscode-language-pack-es/translations/extensions/make.i18n.json
deleted file mode 100644
index f14b07384d..0000000000
--- a/i18n/vscode-language-pack-es/translations/extensions/make.i18n.json
+++ /dev/null
@@ -1,16 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "package": {
- "description": "Proporciona resaltado de sintaxis y correspondencia de corchetes en archivos Make.",
- "displayName": "Conceptos básicos del lenguaje Make"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-es/translations/extensions/markdown-basics.i18n.json b/i18n/vscode-language-pack-es/translations/extensions/markdown-basics.i18n.json
deleted file mode 100644
index b791bb9bf3..0000000000
--- a/i18n/vscode-language-pack-es/translations/extensions/markdown-basics.i18n.json
+++ /dev/null
@@ -1,16 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "package": {
- "description": "Proporciona fragmentos de código y resaltado de sintaxis para Markdown.",
- "displayName": "Conceptos básicos del lenguaje Markdown"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-es/translations/extensions/markdown-language-features.i18n.json b/i18n/vscode-language-pack-es/translations/extensions/markdown-language-features.i18n.json
deleted file mode 100644
index 3ce8d2ca8c..0000000000
--- a/i18n/vscode-language-pack-es/translations/extensions/markdown-language-features.i18n.json
+++ /dev/null
@@ -1,90 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "dist/client": {
- "markdownServer.name": "Servidor de lenguaje Markdown"
- },
- "dist/languageFeatures/diagnostics": {
- "ignoreLinksQuickFix.title": "Excluya '{0}' de la validación de vínculos."
- },
- "dist/languageFeatures/fileReferences": {
- "error.noResource": "Error al buscar referencias de archivo. No se ha proporcionado ningún recurso.",
- "progress.title": "Buscando referencias de archivo"
- },
- "dist/preview/documentRenderer": {
- "preview.notFound": "{0} no se puede encontrar",
- "preview.securityMessage.label": "Alerta de seguridad de contenido deshabilitado",
- "preview.securityMessage.text": "Se ha deshabilitado parte del contenido de este documento",
- "preview.securityMessage.title": "Se ha deshabilitado el contenido potencialmente inseguro en la vista previa de Markdown. Para permitir el contenido inseguro o habilitar scripts, cambie la configuración de la vista previa de Markdown"
- },
- "dist/preview/preview": {
- "lockedPreviewTitle": "[Vista previa] {0}",
- "onPreviewStyleLoadError": "No se pudo cargar 'markdown.styles': {0}",
- "preview.clickOpenFailed": "No se pudo abrir {0}",
- "previewTitle": "Vista Previa {0}"
- },
- "dist/preview/security": {
- "disable.description": "Permitir todo el contenido y la ejecución de scripts. No se recomienda.",
- "disable.title": "Deshabilitar",
- "disableSecurityWarning.title": "Deshabilitar advertencias de seguridad de vista previa en esta área de trabajo",
- "enableSecurityWarning.title": "Habilitar advertencias de seguridad de vista previa en esta área de trabajo",
- "insecureContent.description": "Habilitar el contenido de carga sobre http",
- "insecureContent.title": "Permitir contenido no seguro",
- "insecureLocalContent.description": "Habilitar la carga del contenido sobre http desde localhost",
- "insecureLocalContent.title": "Permitir contenido local inseguro ",
- "moreInfo.title": "Más información",
- "preview.showPreviewSecuritySelector.title": "Seleccione configuración de seguridad para las previsualizaciones de Markdown en esta área de trabajo",
- "strict.description": "Cargar solo el contenido seguro",
- "strict.title": "Strict",
- "toggleSecurityWarning.description": "No afecta al nivel de seguridad de contenido"
- },
- "package": {
- "configuration.markdown.editor.drop.enabled": "Enable/disable dropping into the markdown editor to insert shift. Requires enabling `#editor.dropIntoEditor.enabled#`.",
- "configuration.markdown.editor.pasteLinks.enabled": "Al habilitar o deshabilitar el pegado de archivos en un editor de Markdown, se insertan vínculos de Markdown. Requiere habilitar \"#editor.experimental.pasteActions.enabled#\".",
- "configuration.markdown.experimental.validate.enabled.description": "Habilite o deshabilite todos los informes de errores en los archivos Markdown.",
- "configuration.markdown.experimental.validate.fileLinks.enabled.description": "Valide los vínculos a otros archivos de Markdown, por ejemplo, '[link](/path/to/file.md)'. Esto comprueba que los archivos de destino existen. Requiere habilitar '#markdown.experimental.validate.enabled#'.",
- "configuration.markdown.experimental.validate.fileLinks.markdownFragmentLinks.description": "Valide la parte de fragmento de vínculos a encabezados de otros archivos en archivos Markdown, por ejemplo, \"[link](/path/to/file.md#header)\". Hereda el valor de configuración de \"#markdown.experimental.validate.fragmentLinks.enabled#\" de forma predeterminada.",
- "configuration.markdown.experimental.validate.fragmentLinks.enabled.description": "Valide los vínculos de fragmento a los encabezados del archivo Markdown actual, por ejemplo, \"[link](#header)\". Requiere habilitar \"#markdown.experimental.validate.enabled#\".",
- "configuration.markdown.experimental.validate.ignoreLinks.description": "Configure vínculos que no deben validarse. Por ejemplo, `/about` no validaría el vínculo `[about](/about)`, mientras que el valor global `/assets/**/*.svg` le permitirá omitir la validación de cualquier vínculo a archivos `.svg` en el directorio `assets`.",
- "configuration.markdown.experimental.validate.referenceLinks.enabled.description": "Validar vínculos de referencia en archivos Markdown, por ejemplo, '[link][ref]'. Requiere habilitar '#markdown.experimental.validate.enabled#'.",
- "configuration.markdown.links.openLocation.beside": "Abrir enlaces junto al editor activo.",
- "configuration.markdown.links.openLocation.currentGroup": "Abra vínculos en el grupo de editor activo.",
- "configuration.markdown.links.openLocation.description": "Controla dónde se deben abrir los vínculos de los archivos Markdown.",
- "configuration.markdown.preview.openMarkdownLinks.description": "Controla cómo deben abrirse los vínculos hacia otros archivos Markdown en la vista previa de Markdown.",
- "configuration.markdown.preview.openMarkdownLinks.inEditor": "Intenta abrir los vínculos en el editor.",
- "configuration.markdown.preview.openMarkdownLinks.inPreview": "Intenta abrir los vínculos en la vista previa de Markdown.",
- "configuration.markdown.suggest.paths.enabled.description": "Habilitar o deshabilitar sugerencias de ruta de acceso para vínculos de marcado",
- "description": "Proporciona un potente soporte de lenguaje para archivos Markdown.",
- "displayName": "Características del lenguaje Markdown",
- "markdown.findAllFileReferences": "Buscar referencias de archivo",
- "markdown.preview.breaks.desc": "Establece cómo se representan los saltos de línea en la vista previa de Markdown. Si se establece en \"true\", se crea para las líneas nuevas dentro de los párrafos.",
- "markdown.preview.doubleClickToSwitchToEditor.desc": "Haga doble clic en la vista previa de Markdown para cambiar al editor.",
- "markdown.preview.fontFamily.desc": "Controla la familia de fuentes que se usa en la vista previa de Markdown.",
- "markdown.preview.fontSize.desc": "Controla el tamaño de fuente en píxeles que se usa en la vista previa de Markdown.",
- "markdown.preview.lineHeight.desc": "Controla la altura de línea que se usa en la vista previa de Markdown. Este número es relativo al tamaño de fuente.",
- "markdown.preview.linkify": "Habilita o deshabilita la conversión de texto de tipo URL a vínculos en la vista previa de Markdown.",
- "markdown.preview.markEditorSelection.desc": "Marca la selección del editor actual en la vista previa de Markdown.",
- "markdown.preview.refresh.title": "Actualizar vista previa",
- "markdown.preview.scrollEditorWithPreview.desc": "Al desplazarse en la vista previa de Markdown, se actualiza la vista del editor.",
- "markdown.preview.scrollPreviewWithEditor.desc": "Al desplazarse en el editor de Markdown, se actualiza la vista de la previsualización.",
- "markdown.preview.title": "Abrir vista previa",
- "markdown.preview.toggleLock.title": "Cambiar fijación de la vista previa ",
- "markdown.preview.typographer": "Habilita o deshabilita algunos embellecimientos de comillas y reemplazos independientes del idioma en la vista previa de Markdown.",
- "markdown.previewSide.title": "Abrir vista previa en el lateral",
- "markdown.showLockedPreviewToSide.title": "Abrir vista previa fija en el lateral",
- "markdown.showPreviewSecuritySelector.title": "Cambiar configuración de seguridad de vista previa",
- "markdown.showSource.title": "Mostrar origen",
- "markdown.styles.dec": "Lista de direcciones URL o rutas de acceso locales a hojas de estilo CSS que se van a usar desde la vista previa de Markdown. Las rutas de acceso relativas se interpretan en relación con la carpeta abierta en el Explorador. Si no hay ninguna carpeta abierta, se interpretan en relación con la ubicación del archivo Markdown. Todo '\\' debe escribirse como '\\\\'.",
- "markdown.trace.extension.desc": "Habilita el registro de depuración para las extensiones de Markdown. ",
- "markdown.trace.server.desc": "Realiza un seguimiento de la comunicación entre VS Code y el servidor de lenguaje Markdown.",
- "workspaceTrust": "Necesario para cargar los estilos configurados en el área de trabajo."
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-es/translations/extensions/markdown-math.i18n.json b/i18n/vscode-language-pack-es/translations/extensions/markdown-math.i18n.json
deleted file mode 100644
index 4d332ea37f..0000000000
--- a/i18n/vscode-language-pack-es/translations/extensions/markdown-math.i18n.json
+++ /dev/null
@@ -1,17 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "package": {
- "config.markdown.math.enabled": "Habilite o deshabilite la representación matemática en la vista previa integrada de Markdown.",
- "description": "Agrega compatibilidad matemática a Markdown en blocs de notas.",
- "displayName": "Matemáticas de Markdown"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-es/translations/extensions/markdown-notebook-math.i18n.json b/i18n/vscode-language-pack-es/translations/extensions/markdown-notebook-math.i18n.json
deleted file mode 100644
index 3e9f86cb14..0000000000
--- a/i18n/vscode-language-pack-es/translations/extensions/markdown-notebook-math.i18n.json
+++ /dev/null
@@ -1,16 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "package": {
- "displayName": "Matemáticas del bloc de notas con Markdown",
- "description": "Proporciona un potente soporte de lenguaje para archivos Markdown."
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-es/translations/extensions/merge-conflict.i18n.json b/i18n/vscode-language-pack-es/translations/extensions/merge-conflict.i18n.json
deleted file mode 100644
index d958a80ca6..0000000000
--- a/i18n/vscode-language-pack-es/translations/extensions/merge-conflict.i18n.json
+++ /dev/null
@@ -1,35 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "package": {
- "command.accept.all-both": "Aceptar ambos",
- "command.accept.all-current": "Aceptar todo actual",
- "command.accept.all-incoming": "Aceptar todos los entrantes",
- "command.accept.both": "Aceptar ambos",
- "command.accept.current": "Aceptar actuales",
- "command.accept.incoming": "Aceptar entrantes",
- "command.accept.selection": "Aceptar selección",
- "command.category": "Fusionar conflicto",
- "command.compare": "Comparar conflicto actual",
- "command.next": "Siguiente conflicto",
- "command.previous": "Conflicto anterior",
- "config.autoNavigateNextConflictEnabled": "Indica si, después de resolver un conflicto de fusión mediante combinación, se va automáticamente al siguiente conflicto de este tipo.",
- "config.codeLensEnabled": "Cree CodeLens para los bloques de conflictos de fusión mediante combinación en el editor.",
- "config.decoratorsEnabled": "Cree elementos Decorator para los bloques de conflictos de fusión mediante combinación en el editor.",
- "config.diffViewPosition": "Controla dónde se debe abrir la vista de diferencias al comparar los cambios en los conflictos de combinación.",
- "config.diffViewPosition.below": "Abra la vista de diferencias debajo del grupo de editor actual.",
- "config.diffViewPosition.beside": "Abra la vista de diferencias junto al grupo de editor actual.",
- "config.diffViewPosition.current": "Abra la vista de diferencias en el grupo de editor actual.",
- "config.title": "Fusionar conflicto",
- "description": "Resaltado y comandos para conflictos de fusión insertada.",
- "displayName": "Fusionar conflicto"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-es/translations/extensions/microsoft-authentication.i18n.json b/i18n/vscode-language-pack-es/translations/extensions/microsoft-authentication.i18n.json
deleted file mode 100644
index 60b479b249..0000000000
--- a/i18n/vscode-language-pack-es/translations/extensions/microsoft-authentication.i18n.json
+++ /dev/null
@@ -1,24 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "dist/AADHelper": {
- "pasteCodePlaceholder": "Paste authorization code here...",
- "pasteCodePrompt": "Provide the authorization code to complete the sign in flow.",
- "pasteCodeTitle": "Microsoft Authentication",
- "signOut": "Se ha cerrado la sesión porque se ha producido un error al leer la información de autenticación almacenada."
- },
- "package": {
- "description": "Proveedor de autenticación de Microsoft",
- "displayName": "Cuenta Microsoft",
- "signIn": "Iniciar sesión",
- "signOut": "Cerrar sesión"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-es/translations/extensions/ms-vscode.github-browser.i18n.json b/i18n/vscode-language-pack-es/translations/extensions/ms-vscode.github-browser.i18n.json
deleted file mode 100644
index 702a4b22a7..0000000000
--- a/i18n/vscode-language-pack-es/translations/extensions/ms-vscode.github-browser.i18n.json
+++ /dev/null
@@ -1,16 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "package": {
- "displayName": "Explorador de GitHub",
- "description": "Examinar un repositorio de GitHub de forma remota"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-es/translations/extensions/ms-vscode.js-debug.i18n.json b/i18n/vscode-language-pack-es/translations/extensions/ms-vscode.js-debug.i18n.json
index 6a3a70e9e1..67e14f80d3 100644
--- a/i18n/vscode-language-pack-es/translations/extensions/ms-vscode.js-debug.i18n.json
+++ b/i18n/vscode-language-pack-es/translations/extensions/ms-vscode.js-debug.i18n.json
@@ -8,281 +8,14 @@
],
"version": "1.0.0",
"contents": {
- "/src/adapter/breakpoints/userDefinedBreakpoint": {
- "breakpoint.provisionalBreakpoint": "Punto de interrupción sin enlazar"
- },
- "/src/adapter/console/queryObjectsMessage": {
- "queryObject.couldNotQuery": "No se pudo consultar el objeto proporcionado.",
- "queryObject.errorPreview": "Se ha podido generar la vista previa: {0}",
- "queryObject.invalidObject": "Solo se pueden consultar objetos"
- },
- "/src/adapter/console/textualMessage": {
- "console.assert": "Error de aserción"
- },
- "/src/adapter/customBreakpoints": {
- "breakpoint.animationFrameFired": "Fotograma de animación activado",
- "breakpoint.cancelAnimationFrame": "Cancelar el fotograma de animación",
- "breakpoint.closeAudioContext": "Cerrar AudioContext",
- "breakpoint.createAudioContext": "Crear AudioContext",
- "breakpoint.createCanvasContext": "Crear contexto del lienzo",
- "breakpoint.cspViolation": "Script bloqueado por la directiva de seguridad de contenido",
- "breakpoint.cspViolationNamed": "Infracción de CSP \"{0}\"",
- "breakpoint.cspViolationNamedDetails": "En pausa por un punto de interrupción de instrumentación de infracción de la directiva de seguridad de contenido, directiva \"{0}\"",
- "breakpoint.eventListenerNamed": "En pausa por un punto de interrupción de escucha de eventos \"{0}\", desencadenado en \"{1}\"",
- "breakpoint.instrumentationNamed": "En pausa por un punto de interrupción de instrumentación \"{0}\"",
- "breakpoint.requestAnimationFrame": "Solicitar fotograma de animación",
- "breakpoint.resumeAudioContext": "Reanudar AudioContext",
- "breakpoint.scriptFirstStatement": "Primera instrucción del script",
- "breakpoint.setInnerHtml": "Establecer innerHTML",
- "breakpoint.setIntervalFired": "setInterval activado",
- "breakpoint.setTimeoutFired": "setTimeout activado",
- "breakpoint.suspendAudioContext": "Suspender AudioContext",
- "breakpoint.webglErrorFired": "Error de WebGL desencadenado",
- "breakpoint.webglErrorNamed": "Error de WebGL \"{0}\"",
- "breakpoint.webglErrorNamedDetails": "En pausa por un punto de interrupción de instrumentación de error de WebGL, error \"{0}\"",
- "breakpoint.webglWarningFired": "Advertencia de WebGL desencadenada"
- },
- "/src/adapter/debugAdapter": {
- "breakpoint.caughtExceptions": "Excepciones detectadas",
- "breakpoint.caughtExceptions.description": "Se interrumpe en todos los errores de inicio, incluso si se detectan más tarde.",
- "breakpoint.uncaughtExceptions": "Excepciones no detectadas",
- "error.cannotPrettyPrint": "No se pueden imprimir con sangría",
- "error.sourceContentDidFail": "No se puede recuperar el contenido de origen",
- "error.sourceNotFound": "No se encontró el código fuente",
- "error.variableNotFound": "No se encontró la variable"
- },
- "/src/adapter/profiling/basicCpuProfiler": {
- "profile.cpu.description": "Genera un archivo .cpuprofile que se puede abrir en Chrome DevTools",
- "profile.cpu.label": "Perfil de CPU"
- },
- "/src/adapter/profiling/basicHeapProfiler": {
- "profile.heap.description": "Genera un archivo .heapprofile que se puede abrir en las herramientas de desarrollo de Chrome.",
- "profile.heap.label": "Perfil de montón"
- },
- "/src/adapter/profiling/heapDumpProfiler": {
- "profile.heap.description": "Genera un archivo .heapsnapshot que se puede abrir en Chrome DevTools",
- "profile.heap.label": "Instantánea de montón"
- },
- "/src/adapter/sources": {
- "source.skipFiles": "Omitido por skipFiles"
- },
- "/src/adapter/stackTrace": {
- "scope.block": "Bloquear",
- "scope.catch": "Bloque catch",
- "scope.closure": "Clausura",
- "scope.closureNamed": "Clausura ({0})",
- "scope.eval": "Eval",
- "scope.global": "Global",
- "scope.local": "Local",
- "scope.module": "Módulo",
- "scope.returnValue": "Valor devuelto",
- "scope.script": "Script",
- "scope.with": "Bloque With",
- "smartStepSkipLabel": "Omitido por smartStep",
- "source.skipFiles": "Omitido por skipFiles"
- },
- "/src/adapter/threads": {
- "error.evaluateDidFail": "No se puede evaluar",
- "error.evaluateOnAsyncStackFrame": "No se puede evaluar en un marco de pila asincrónica",
- "error.pauseDidFail": "No se puede pausar",
- "error.restartFrameAsync": "No se puede reiniciar un fotograma asincrónico",
- "error.resumeDidFail": "No se puede reanudar",
- "error.stackFrameNotFound": "No se encontró el marco de pila",
- "error.stepInDidFail": "No se puede entrar",
- "error.stepOutDidFail": "No se puede salir",
- "error.stepOverDidFail": "No se puede realizar el paso siguiente",
- "error.threadNotPaused": "El subproceso no está en pausa",
- "error.threadNotPausedOnException": "El subproceso no está en pausa por la excepción",
- "error.unknownRestartError": "No se pudo reiniciar el marco",
- "pause.DomBreakpoint": "En pausa por un punto de interrupción de DOM",
- "pause.assert": "En pausa por una aserción",
- "pause.breakpoint": "En pausa por un punto de interrupción",
- "pause.debugCommand": "En pausa por una llamada a debug()",
- "pause.default": "En pausa",
- "pause.eventListener": "En pausa por una escucha de eventos",
- "pause.exception": "En pausa por una excepción",
- "pause.instrumentation": "En pausa por un punto de interrupción de instrumentación",
- "pause.oom": "En pausa antes de la excepción de memoria insuficiente",
- "pause.promiseRejection": "En pausa por rechazo de una promesa",
- "pause.xhr": "En pausa por XMLHttpRequest o \"fetch\"",
- "reason.description.restart": "En pausa por una entrada de marco",
- "warnings.handleSourceMapPause.didNotWait": "ADVERTENCIA: El procesamiento de mapas de origen de {0} tardó más de {1} ms, por lo que se siguió ejecutando sin esperar a que se establecieran todos los puntos de interrupción del script."
- },
- "/src/adapter/variableStore": {
- "error.customValueDescriptionGeneratorFailed": "{0} (no se puede describir: {1})",
- "error.emptyExpression": "No se puede establecer un valor vacío",
- "error.invalidExpression": "Expresión no válida",
- "error.setVariableDidFail": "No se puede establecer el valor de la variable",
- "error.unknown": "Error desconocido",
- "error.variableNotFound": "No se encontró la variable"
- },
- "/src/binder": {
- "breakpoint.provisionalBreakpoint": "Punto de interrupción sin enlazar"
- },
- "/src/dap/errors": {
- "NVM_HOME.not.found.message": "El atributo \"runtimeVersion\" requiere el administrador de versiones \"nvm-windows\" o \"nvs\" de Node.js.",
- "NVS_HOME.not.found.message": "El atributo \"runtimeVersion\" requiere que se instale el administrador de versiones de Node.js \"nvs\" o \"nvm\".",
- "VSND2011": "No se puede iniciar el destino de depuración en el terminal ({0}).",
- "VSND2029": "No se pueden cargar las variables de entorno del archivo ({0}).",
- "asyncScopesNotAvailable": "Variables no disponibles en las pilas asincrónicas",
- "breakpointSyntaxError": "Error de sintaxis al establecer el punto de interrupción con la condición {0} en la línea {1}: {2}",
- "browserVersionNotFound": "No se encuentra {0} versión {1}. Las versiones detectadas automáticamente disponibles son: {2}. Puede establecer \"runtimeExecutable\" en launch.json en una de ellas o proporcionar una ruta de acceso absoluta al ejecutable del explorador.",
- "error.browserAttachError": "No se puede asociar al explorador",
- "error.browserLaunchError": "No se puede iniciar el explorador: \"{0}\"",
- "error.threadNotFound": "No se encontró la página de destino. Puede que tenga que actualizar el valor de \"urlFilter\" para que coincida con el de la página que quiere depurar.",
- "invalidHitCondition": "La condición de acierto \"{0}\" no es válida. Se esperaba una expresión como \"> 42\" o \"== 2\".",
- "noBrowserInstallFound": "No se encuentra ninguna instalación del explorador en el sistema. Prueba a instalarlo o proporciona una ruta de acceso completa al explorador en \"runtimeExecutable\", en el archivo launch.json.",
- "noUwpPipeFound": "No se pudo conectar a ninguna canalización de vista web UWP. Asegúrese de que la vista web esté hospedada en modo de depuración y de que el valor de \"pipeName\" de \"launch.json\" sea correcto.",
- "profile.error.concurrent": "Detenga el perfil en ejecución antes de iniciar uno nuevo.",
- "profile.error.generic": "Error al tomar un perfil del destino.",
- "runtime.node.notfound": "No se encuentra el binario de Node.js \"{0}\": {1}. Asegúrese de que Node.js esté instalado y en PATH, o bien establezca \"runtimeExecutable\" en launch.json.",
- "runtime.node.outdated": "La versión de Node en \"{0}\" está obsoleta (versión {1}); se requiere Node 8. x como mínimo.",
- "runtime.version.not.found.message": "La versión de Node.js \"{0}\" no se instaló con el administrador de versiones {1}.",
- "sourcemapParseError": "No se pudo leer el mapa de origen de {0}: {1}",
- "uwpPipeNotAvailable": "La depuración de la vista web UWP no está disponible en su plataforma."
- },
- "/src/debugServer": {
- "breakpoint.provisionalBreakpoint": "Punto de interrupción sin enlazar"
- },
- "/src/targets/browser/browserAttacher": {
- "attach.cannotConnect": "No se puede conectar con el destino en {0}: {1}",
- "chrome.targets.placeholder": "Seleccionar una pestaña"
- },
- "/src/targets/node/nodeAttacher": {
- "node.attach.restart.message": "Se perdió la conexión con el elemento que se va a depurar; se volverá a conectar en {0} ms\r\n"
- },
- "/src/targets/node/nodeBinaryProvider": {
- "outOfDate": "{0} ¿Quiere probar a depurar de todas formas?",
- "runtime.node.notfound.enoent": "la ruta de acceso no existe",
- "runtime.node.notfound.spawnErr": "error al obtener la versión: {0}",
- "warning.16bpIssue": "Es posible que algunos puntos de interrupción no funcionen en su versión de Node.js. Se recomienda realizar la actualización para las correcciones de errores, de rendimiento y de seguridad más recientes. Detalles: https://aka.ms/AAcsvqm",
- "warning.8outdated": "Está ejecutando una versión obsoleta de Node.js. Se recomienda actualizarla para acceder a las correcciones de errores, rendimiento y seguridad más recientes.",
- "yes": "Sí"
- },
- "/src/ui/autoAttach": {
- "details": "Detalles"
- },
- "/src/ui/companionBrowserLaunch": {
- "cannotDebugInBrowser": "No se puede iniciar ningún explorador en modo de depuración desde aquí. Abra el área de trabajo en VS Code en el escritorio para habilitar la depuración."
- },
- "/src/ui/configuration/chromiumDebugConfigurationProvider": {
- "chrome.launch.name": "Iniciar Chrome para localhost",
- "existingBrowser.alert": "Parece que ya se está ejecutando un explorador desde {0}. Ciérrelo antes de intentar la depuración; de lo contrario, es posible que VS Code posible no pueda conectarse a él.",
- "existingBrowser.debugAnyway": "Depurar de todos modos",
- "existingBrowser.location.default": "una sesión de depuración antigua",
- "existingBrowser.location.userDataDir": "el valor userDataDir configurado"
- },
- "/src/ui/configuration/edgeDebugConfigurationProvider": {
- "chrome.launch.name": "Iniciar Microsoft Edge para localhost"
- },
- "/src/ui/configuration/nodeDebugConfigurationProvider": {
- "debug.terminal.label": "Terminal de depuración de JavaScript",
- "node.launch.currentFile": "Ejecutar el archivo actual",
- "node.launch.script": "Ejecutar el script: {0}"
- },
- "/src/ui/configuration/nodeDebugConfigurationResolver": {
- "cwd.notFound": "El “cwd” {0} configurado no existe.",
- "mern.starter.explanation": "La configuración de inicio del proyecto '{0}' fue creada. ",
- "node.launch.config.name": "Iniciar el programa",
- "outFiles.explanation": "Ajusta modelos globales en los atributos ‘outFiles’ para cubrir el código JavaScript generado.",
- "program.guessed.from.package.json.explanation": "La configuración de inicio fue creada basada en \"package.json\".",
- "program.not.found.message": "No se encuentra ningún programa para depurar."
- },
- "/src/ui/debugLinkUI": {
- "debugLink.invalidUrl": "La dirección URL proporcionada no es válida.",
- "debugLink.savePrompt": "¿Desea guardar una configuración en el archivo launch.json para un acceso fácil más adelante?",
- "never": "Nunca",
- "no": "No",
- "yes": "Sí"
- },
- "/src/ui/debugNpmScript": {
- "debug.npm.noScripts": "No se han encontrado scripts npm en su package.json",
- "debug.npm.noWorkspaceFolder": "Debe abrir una carpeta de área de trabajo para depurar scripts npm.",
- "debug.npm.notFound.open": "Editar package.json",
- "debug.npm.parseError": "No se pudo leer {0}: {1}"
- },
- "/src/ui/debugTerminalUI": {
- "terminal.cwdpick": "Seleccione el directorio de trabajo actual para el nuevo terminal"
- },
- "/src/ui/diagnosticsUI": {
- "inspectSessionEnded": "Parece que la sesión de depuración ya ha finalizado. Intente volver a depurar y, luego, ejecute el comando \"Debug: Diagnose Breakpoint Problems\".",
- "never": "Nunca",
- "notNow": "Ahora no",
- "selectInspectSession": "Seleccione la sesión que quiere inspeccionar:",
- "yes": "Sí"
- },
- "/src/ui/disableSourceMapUI": {
- "always": "Siempre",
- "disableSourceMapUi.msg": "Esta es una ruta de acceso de archivo ausente a la que hace referencia una mapa de origen. ¿Quiere depurar la versión compilada en su lugar?",
- "no": "No",
- "yes": "Sí"
- },
- "/src/ui/edgeDevToolOpener": {
- "selectEdgeToolSession": "Seleccione la página en la que quiere abrir las herramientas de desarrollo"
- },
- "/src/ui/linkedBreakpointLocationUI": {
- "ignore": "Omitir",
- "readMore": "Leer más"
- },
- "/src/ui/longPredictionUI": {
- "longPredictionWarning.disable": "No volver a mostrar",
- "longPredictionWarning.message": "Los puntos de interrupción están tardando en configurarse. Puede acelerarlo actualizando \"outFiles\" en su archivo launch.json.",
- "longPredictionWarning.noFolder": "No hay ninguna carpeta del área de trabajo abierta.",
- "longPredictionWarning.open": "Abrir launch.json"
- },
- "/src/ui/processPicker": {
- "cannot.enable.debug.mode.error": "Asociar al proceso: no se puede habilitar el modo de depuración para el proceso '{0}' ({1}).",
- "pickNodeProcess": "Seleccione el proceso node. js para adjuntarlo a",
- "process.id.error": "Asociar al proceso: '{0}' no parece un id de proceso.",
- "process.id.port.signal": "Id. del proceso: {0}, puerto de depuración: {1} ({2})",
- "process.id.signal": "Id. del proceso: {0} ({1})",
- "process.picker.error": "Falló el selector de proceso ({0})"
- },
- "/src/ui/profiling/breakpointTerminationCondition": {
- "breakpointTerminationWarnConfirm": "¡Entendido!",
- "breakpointTerminationWarnSlow": "La generación de perfiles con los puntos de interrupción habilitados puede cambiar el rendimiento del código. Puede resultar útil validar los resultados con las condiciones de terminación \"duración\" o \"manual\".",
- "profile.termination.breakpoint.description": "Ejecutar hasta que se alcance un punto de interrupción específico",
- "profile.termination.breakpoint.label": "Seleccionar un punto de interrupción"
- },
- "/src/ui/profiling/durationTerminationCondition": {
- "profile.termination.duration.description": "Ejecutar durante un período de tiempo específico",
- "profile.termination.duration.inputTitle": "Duración del perfil",
- "profile.termination.duration.invalidFormat": "Escriba un número.",
- "profile.termination.duration.invalidLength": "Especifique un número mayor que 1.",
- "profile.termination.duration.label": "Duración",
- "profile.termination.duration.placeholder": "Duración del perfil en segundos; por ejemplo, \"5\""
- },
- "/src/ui/profiling/manualTerminationCondition": {
- "profile.termination.duration.description": "Ejecutar hasta que se detenga manualmente",
- "profile.termination.duration.label": "Manual"
- },
- "/src/ui/profiling/uiProfileManager": {
- "no": "No",
- "profile.alreadyRunning": "Ya se está ejecutando una sesión de generación de perfiles. ¿Quiere detenerla e iniciar una sesión nueva?",
- "profile.sessionState": "Generación de perfiles",
- "profile.status.default": "$(loading~spin) Haga clic para detener la generación de perfiles",
- "profile.status.multiSession": "$(loading~spin) Haga clic para detener la generación de perfiles (sesiones{0} )",
- "profile.status.single": "$(loading~spin) Haga clic para detener la generación de perfiles ({0})",
- "profile.termination.title": "Tiempo que se va a ejecutar el perfil:",
- "profile.type.title": "Tipo de perfil:",
- "yes": "Sí"
- },
- "/src/ui/profiling/uiProfileSession": {
- "profile.saving": "Guardando",
- "progress.profile.start": "Iniciando el perfil...",
- "progress.profile.stop": "Deteniendo perfil..."
- },
- "/src/ui/terminalLinkHandler": {
- "cantOpenChromeOnWeb": "No se puede iniciar ningún explorador en modo de depuración desde aquí. Si quiere depurar esta página web, abra el área de trabajo desde VS Code en el escritorio.",
- "terminalLinkHover.debug": "Depurar dirección URL"
- },
- "/src/vsDebugServer": {
- "session.rootSessionName": "Adaptador de depuración de JavaScript"
- },
"package": {
- "add.browser.breakpoint": "Agregar punto de interrupción del explorador",
+ "add.eventListener.breakpoint": "Alternar puntos de interrupción de escucha de eventos",
+ "add.xhr.breakpoint": "Agregar punto de interrupción de XHR/captura",
"attach.node.process": "Conectarse con el proceso de Node",
"base.cascadeTerminateToConfigurations.label": "Lista de sesiones de depuración que también se detendrán cuando se termine esta sesión de depuración.",
+ "base.enableDWARF.label": "Alterna si el depurador intentará leer los símbolos de depuración DWARF de WebAssembly, que pueden usar muchos recursos. Requiere la extensión \"ms-vscode.wasm-stretch-debugging\" para funcionar.",
+ "breakpoint.xhr.any": "Cualquier XHR/captura",
+ "breakpoint.xhr.contains": "Interrumpir cuando la dirección URL contenga:",
"browser.address.description": "La dirección IP o el nombre de host donde escucha el explorador depurado.",
"browser.attach.port.description": "Puerto para usar con la depuración remota del explorador, indicado como \"--remote-debugging-port\" al iniciar el explorador.",
"browser.baseUrl.description": "Dirección URL base para resolver rutas de acceso baseUrl. baseURL se recorta al asignar direcciones URL a los archivos del disco. El valor predeterminado es el dominio de la dirección URL de inicio.",
@@ -294,7 +27,9 @@
"browser.env.description": "Diccionario opcional de pares clave/valor de entorno para el explorador.",
"browser.file.description": "Archivo HTML local para abrirlo en el explorador",
"browser.includeDefaultArgs.description": "Si los argumentos predeterminados de inicio del explorador (para deshabilitar las características que pueden dificultar la depuración) se incluirán en el lanzamiento.",
+ "browser.includeLaunchArgs.description": "Avanzado: si se establecen argumentos predeterminados de inicio o depuración en el explorador. El depurador asumirá que el explorador usará depuración de canalización, como la que se proporciona con \"--remote-debugging-pipe\".",
"browser.inspectUri.description": "Formato que se va a usar para reescribir el valor inspectUri: es una cadena de plantilla que interpola las claves en ''{curlyBraces}\". Las claves disponibles son:\r\n - \"url.*\" es la dirección analizada de la aplicación en ejecución. Por ejemplo, ''{url.port}\", \"{url.hostname}'\r\n'. - \"port\" es el puerto de depuración en el que Chrome está escuchando.\r\n - \"browserInspectUri\" es el URI del inspector en el explorador iniciado.\r\n - \"browserInspectUriPath\" es la parte de la ruta de acceso del URI del inspector en el explorador iniciado (por ejemplo, \"/devtools/browser/e9ec0098-306e-472a-8133-5e42488929c2\").\r\n - \"wsProtocol\" es el protocolo websocket sugerido. Se establece en \"wss\" si la dirección URL original es \"https\"o en \"ws\" en caso contrario.\r\n",
+ "browser.killBehavior.description": "Configura cómo se eliminan los procesos del explorador al detener la sesión con \"cleanUp: wholeBrowser\". Puede ser:\r\n\r\n- forceful (predeterminado): anula de manera forzosa el árbol de procesos. Envía SIGKILL en posix o \"taskkill.exe /F\" en Windows.\r\n- polite: anula correctamente el árbol de procesos. Es posible que los procesos con un comportamiento erróneo se sigan ejecutando después de apagar de esta forma. Envía SIGTERM en posix o \"taskkill.exe\" sin la marca \"/F\" (forzar) en Windows.\r\n- none: no se producirá ninguna terminación.",
"browser.launch.port.description": "Puerto en que escucha el explorador. Se establece de manera predeterminada en \"0\", lo que provoca que el explorador se depure mediante canalizaciones. Esto suele ser más seguro y debe elegirse a menos que tenga que adjuntar el explorador desde otra herramienta.",
"browser.pathMapping.description": "Asignación de direcciones URL/rutas a carpetas locales, para resolver scripts en el navegador a scripts en disco",
"browser.perScriptSourcemaps.description": "Especifica si los scripts se cargan de forma individual con mapas de origen únicos que contengan el nombre base del archivo de código fuente. Puede establecerse para optimizar el tratamiento de los mapas de origen cuando se trabaja con un gran volumen de scripts pequeños. Si se establece en \"Automático\", se detectarán casos conocidos en los que esta operación sea adecuada.",
@@ -305,7 +40,7 @@
"browser.runtimeExecutable.description": "\"canary\", \"stable\", \"custom\" o ruta al ejecutable del explorador. Si se elige \"custom\", puede ser un encapsulador ajustable, una compilación ajustable o una variable de entorno CHROME_PATH.",
"browser.runtimeExecutable.edge.description": "Puede ser un \"valor controlado\", \"estable\", desarrollo, \"personalizado\" o una ruta de acceso al ejecutable del explorador. El valor \"personalizado\" significa un contenedor personalizado, una compilación personalizada o una variable de entorno EDGE_PATH.",
"browser.server.description": "Configura un servidor web para que se inicie. Toma la misma configuración que la tarea de lanzamiento \"node\".",
- "browser.skipFiles.description": "Matriz de nombres de archivo o carpeta, o patrones globales de ruta de acceso, que deben omitirse durante la depuración.",
+ "browser.skipFiles.description": "Matriz de nombres de archivo o carpeta, o patrones globales de ruta de acceso, que se omitirán durante la depuración. Se permiten patrones de estrella y negaciones, por ejemplo, \"[\"**/node_modules/**\", \"!**/node_modules/my-module/**\"]\"",
"browser.smartStep.description": "Ejecuta paso a paso líneas no asignadas de archivos sin mapa de origen de forma automática. Por ejemplo, código que TypeScript produce automáticamente durante la compilación de async/await u otras características.",
"browser.sourceMapPathOverrides.description": "Conjunto de asignaciones para reescribir las ubicaciones de los archivos de origen en sus ubicaciones en el disco, a partir de lo que indica el mapa de origen. Consulte el archivo LÉAME para obtener más detalles.",
"browser.sourceMapRenames.description": "Indica si se debe usar la asignación \"names\" en mapas de origen. Para ello, es necesario solicitar contenido de origen, que puede ser lento con determinados depuradores.",
@@ -330,16 +65,23 @@
"commands.callersRemoveAll.label": "Quitar todos los autores de la llamada excluidos",
"commands.disableSourceMapStepping.label": "Deshabilitar la ejecución paso a paso asignada de origen",
"commands.enableSourceMapStepping.label": "Habilitar la ejecución paso a paso asignada de origen",
+ "commands.networkClear.label": "Borrar registro de red",
+ "commands.networkCopyURI.label": "Copiar URL de solicitud",
+ "commands.networkOpenBody.label": "Abrir cuerpo de respuesta",
+ "commands.networkOpenBodyInHexEditor.label": "Abrir cuerpo de respuesta en el editor hexadecimal",
+ "commands.networkReplayXHR.label": "Solicitud de reproducción",
+ "commands.networkViewRequest.label": "Ver solicitud como cURL",
"configuration.autoAttachMode": "Configura los procesos que se van a asociar y a depurar automáticamente cuando \"#debug.node.autoAttach#\" esté activado. Un proceso de Node iniciado con la marca \"--inspect\" se asociará siempre, independientemente de esta configuración.",
"configuration.autoAttachMode.always": "Asocia automáticamente a todos los procesos de Node.js iniciados en el terminal.",
"configuration.autoAttachMode.disabled": "Conexión automática está desactivada y no se muestra en la barra de estado.",
"configuration.autoAttachMode.explicit": "Solo se puede asociar automáticamente cuando se proporciona la marca \"--inspect\".",
"configuration.autoAttachMode.smart": "Asocia automáticamente cuando se ejecutan scripts que no están en una carpeta node_modules.",
- "configuration.autoAttachSmartPatterns": "Configures glob patterns for determining when to attach in \"smart\" `#debug.javascript.autoAttachFilter#` mode. `$KNOWN_TOOLS$` is replaced with a list of names of common test and code runners. [Read more on the VS Code docs](https://code.visualstudio.com/docs/nodejs/nodejs-debugging#_auto-attach-smart-patterns).",
+ "configuration.autoAttachSmartPatterns": "Configura patrones globales para determinar cuándo asociar en modo \"smart\" \"#debug.javascript.autoAttachFilter#\". \"$KNOWN _TOOLS $\" se reemplaza por una lista de nombres de ejecutores de pruebas y código comunes. [Más información en la documentación de VS Code](https://code.visualstudio.com/docs/nodejs/nodejs-debugging#_auto-attach-smart-patterns).",
"configuration.automaticallyTunnelRemoteServer": "Al depurar una aplicación web remota, se establece si se debe hacer un túnel automático del servidor remoto al equipo local.",
"configuration.breakOnConditionalError": "Controla si se debe detener cuando los puntos de interrupción condicionales producen un error.",
"configuration.debugByLinkOptions": "Opciones utilizadas al depurar vínculos abiertos en los que se ha hecho clic desde dentro del terminal de depuración. Se puede establecer en \"false\" para deshabilitar este comportamiento.",
"configuration.defaultRuntimeExecutables": "Valor predeterminado de \"runtimeExecutable\" que se usa para las configuraciones de inicio, si no se especifica un valor. Se puede usar para configurar rutas de acceso personalizadas a Node.js o a las instalaciones del explorador.",
+ "configuration.enableNetworkView": "Habilita la vista de red experimental para los destinos que la admiten.",
"configuration.npmScriptLensLocation": "Lugar en que se debe mostrar una lente de código \"Ejecutar\" y \"Depurar\" en los scripts npm. Puede estar en todos, en scripts, sobre la sección del script o bien no mostrarse nunca.",
"configuration.pickAndAttachOptions": "Opciones predeterminadas que se usan al depurar un proceso mediante el comando \"Debug: Attach to Node.js Process\"",
"configuration.resourceRequestOptions": "Opciones de solicitud que se van a usar al cargar los recursos (como los mapas de origen) en el depurador. Puede ser necesario configurar esto si los mapas de origen requieren autenticación o el uso de un certificado autofirmado, por ejemplo. Las opciones se usan para crear una solicitud con la biblioteca [\"got\"](https://github.com/sindresorhus/got).\r\n\r\nUn caso habitual para deshabilitar la comprobación de certificados puede realizarse si se pasa \"{ \"https\": { \"rejectUnauthorized\": false } }\".",
@@ -371,17 +113,20 @@
"edge.port.description": "Al depurar vistas web, el puerto en que escucha el depurador de la vista web. Se detectará automáticamente si no se establece.",
"edge.useWebView.attach.description": "Objeto que contiene el \"pipeName\" de una canalización de depuración para una Webview2 hospedada por UWP. Este es el valor \"MyTestSharedMemory\" al crear la canalización \"\\\\.\\pipe\\LOCAL\\MyTestSharedMemory\"",
"edge.useWebView.launch.description": "Cuando sea \"verdadero\", el depurador tratará el ejecutable del entorno de ejecución como una aplicación host que contiene un elemento WebView que le permite depurar el contenido del script WebView.",
+ "edit.xhr.breakpoint": "Editar punto de interrupción de XHR/captura",
"enableContentValidation.description": "Alterna si se comprueba si el contenido de los archivos en el disco coincide con lo que se ha cargado en el entorno de ejecución. Resulta útil en diversos escenarios y es necesario en otros, pero puede causar problemas si, por ejemplo, se aplica la transformación de scripts del lado servidor.",
"errors.timeout": "{0}: tiempo de espera después de {1} ms",
"extension.description": "Extensión para depurar programas Node.js y Chrome.",
"extensionHost.label": "Desarrollo de extensiones de VS Code",
- "extensionHost.launch.config.name": "Iniciar extensión",
+ "extensionHost.launch.config.name": "Extensión de inicio",
"extensionHost.launch.debugWebWorkerHost": "Configura si debe intentarse la conexión con el host de extensiones de trabajo web.",
"extensionHost.launch.debugWebviews": "Configura si se debe intentar adjuntar a vistas web en la instancia de VS Code iniciada. Esto solo funcionará en VS Code de escritorio.",
"extensionHost.launch.env.description": "Variables de entorno pasadas al host de extensiones.",
"extensionHost.launch.rendererDebugOptions": "Opciones de inicio de Chrome que se usan al asociarse al proceso de representador, con \"debugWebviews\" o \"debugWebWorkerHost\".",
"extensionHost.launch.runtimeExecutable.description": "Ruta de acceso absoluta a VS Code.",
"extensionHost.launch.stopOnEntry.description": "El host de extensiones se detiene automáticamente tras el inicio.",
+ "extensionHost.launch.testConfiguration": "Ruta de acceso a un archivo de configuración de prueba para la [CLI de prueba](https://code.visualstudio.com/api/working-with-extensions/testing-extension#quick-setup-the-test-cli).",
+ "extensionHost.launch.testConfigurationLabel": "Una única configuración para ejecutar desde el archivo. Si no se especifica, es posible que se le pida que elija.",
"extensionHost.snippet.launch.description": "Iniciar una extensión de VS Code en modo de depuración",
"extensionHost.snippet.launch.label": "Desarrollo de extensiones de VS Code",
"getDiagnosticLogs.label": "Guardar los registros de depuración JS de diagnóstico",
@@ -392,16 +137,18 @@
"node.address.description": "Dirección TCP/IP del proceso que se va a depurar. El valor predeterminado es \"localhost\".",
"node.attach.attachExistingChildren.description": "Si se intenta adjuntar a procesos secundarios ya generados.",
"node.attach.attachSpawnedProcesses.description": "Si se deben establecer variables de entorno en el proceso adjunto para realizar un seguimiento de los elementos secundarios generados.",
- "node.attach.config.name": "Asociar",
+ "node.attach.config.name": "Adjuntar",
"node.attach.continueOnAttach": "Si es true, reanudaremos automáticamente los programas iniciados y esperando en \"--inspect-brk\"",
"node.attach.processId.description": "Identificador del proceso al que se va a asociar.",
"node.attach.restart.description": "Intente volver a conectarse al programa si se pierde la conexión. Si se establece en \"true\", se intentará una vez por segundo, para siempre. En su lugar, puede personalizar el intervalo y el número máximo de intentos mediante la especificación de los valores \"delay\" y \"maxAttempts\" en un objeto.",
"node.attachSimplePort.description": "Si se establece, se asocia al proceso a través del puerto especificado. Esto generalmente ya no es necesario en programas de Node.js y pierde la capacidad de depurar los procesos secundarios. Sin embargo, puede ser útil en escenarios más esotéricos, como en los lanzamientos de Deno y Docker. Si se establece en 0, se elegirá un puerto aleatorio y se agregará --inspect-brk a los argumentos de inicio de forma automática.",
- "node.console.title": "Consola de depuración de Node",
+ "node.console.title": "Consola de depuración de nodos",
"node.disableOptimisticBPs.description": "No establezca puntos de interrupción en ningún archivo hasta que se haya cargado un mapa de origen para el archivo.",
+ "node.enableTurboSourcemaps.description": "Configura si se va a usar un mecanismo nuevo y más rápido para la detección de mapas de origen",
+ "node.experimentalNetworking.description": "Habilite la inspección experimental en Node.js. Cuando se establece en \"auto\", se habilita para las versiones de Node.js que lo admiten. Se puede establecer en \"activado\" o \"desactivado\" para habilitarlo o deshabilitarlo explícitamente.",
"node.killBehavior.description": "Configure el modo en que terminan los procesos de depuración al detener la sesión. Puede ser:\r\n\r\n- forceful (predeterminado): anula de manera forzosa el árbol de procesos. Envía SIGKILL en posix o \"taskkill.exe /F\" en Windows.\r\n- polite: anula correctamente el árbol de procesos. Es posible que los procesos con un comportamiento erróneo se sigan ejecutando después de apagar de esta forma. Envía SIGTERM en posix o \"taskkill.exe\" sin la marca \"/F\" (forzar) en Windows.\r\n- none: no se producirá ninguna terminación.",
"node.label": "Node.js",
- "node.launch.args.description": "Command line arguments passed to the program.\r\n\r\nCan be an array of strings or a single string. When the program is launched in a terminal, setting this property to a single string will result in the arguments not being escaped for the shell.",
+ "node.launch.args.description": "Argumentos de línea de comandos que se pasan al programa.\r\n\r\nPuede ser una matriz de cadenas o una sola cadena. Cuando el programa se inicia en un terminal, establecer esta propiedad en una sola cadena hará que los argumentos no se escapen para el shell.",
"node.launch.autoAttachChildProcesses.description": "Asociar automáticamente el depurador a los procesos secundarios nuevos.",
"node.launch.config.name": "Iniciar",
"node.launch.console.description": "Lugar donde debe iniciarse el destino de depuración.",
@@ -419,7 +166,7 @@
"node.launch.restart.description": "Pruebe a reiniciar el programa si se cierra un código de salida distinto de cero.",
"node.launch.runtimeArgs.description": "Argumentos opcionales pasados al ejecutable del entorno de ejecución.",
"node.launch.runtimeExecutable.description": "Entorno de ejecución que debe usarse. Puede ser una ruta de acceso absoluta o el nombre de un entorno de ejecución disponible en PATH. Si se omite, se utiliza \"node\".",
- "node.launch.runtimeSourcemapPausePatterns": "A list of patterns at which to manually insert entrypoint breakpoints. This can be useful to give the debugger an opportunity to set breakpoints when using sourcemaps that don't exist or can't be detected before launch, such as [with the Serverless framework](https://github.com/microsoft/vscode-js-debug/issues/492).",
+ "node.launch.runtimeSourcemapPausePatterns": "Lista de patrones en los que se insertan manualmente puntos de interrupción de punto de entrada. Puede ser útil para proporcionar al depurador una oportunidad para establecer puntos de interrupción al usar mapas origen que no existen o que no se pueden detectar antes de iniciar, como [con Serverless Framework](https://github.com/microsoft/vscode-js-debug/issues/492).",
"node.launch.runtimeVersion.description": "Versión del entorno de ejecución de \"Node\" que debe usarse. Requiere \"NVM\".",
"node.launch.useWSL.deprecation": "\"useWSL\" está en desuso y se eliminará el soporte correspondiente. Utilice la extensión \"Remote - WSL\" en su lugar.",
"node.launch.useWSL.description": "Utilice el subsistema de Windows para Linux.",
@@ -428,11 +175,12 @@
"node.port.description": "El puerto de depuración al que se va a asociar. El valor predeterminado es 9229.",
"node.processattach.config.name": "Asociar al proceso",
"node.profileStartup.description": "Si es cierto, comenzará a generar perfiles tan pronto como se inicie el proceso.",
+ "node.remote.host.header.description": "Encabezado host explícito que se va a usar al conectarse al websocket del inspector. Si no se especifica, el encabezado de host se establecerá en \"localhost\". Esto es útil cuando el inspector se ejecuta detrás de un proxy que solo acepta un encabezado host determinado.",
"node.remoteRoot.description": "Ruta de acceso absoluta al directorio remoto que contiene el programa.",
"node.resolveSourceMapLocations.description": "Lista de patrones de minimatch para ubicaciones (carpetas y direcciones URL) en las que se pueden utilizar mapas de origen para resolver archivos locales. Se puede utilizar para evitar la interrupción incorrecta en el código asignado de origen externo. Los patrones se pueden prefijar con \"!\" para excluirlos. Se puede establecer en una matriz vacía o nula para evitar restricciones.",
"node.showAsyncStacks.description": "Muestra las llamadas asincrónicas que llevan a la pila de llamadas actual.",
"node.snippet.attach.description": "Adjuntar a un nodo en ejecución",
- "node.snippet.attach.label": "Node.js: Asociar",
+ "node.snippet.attach.label": "Node.js: Attach",
"node.snippet.attachProcess.description": "Abrir el selector de procesos para elegir el proceso de Node para conectarse",
"node.snippet.attachProcess.label": "Node.js: adjuntar a proceso",
"node.snippet.electron.description": "Depurar el proceso principal de Electron",
@@ -462,8 +210,9 @@
"pretty.print.script": "Bastante impresión para depuración",
"profile.start": "Tomar el perfil de rendimiento",
"profile.stop": "Detener el perfil de rendimiento",
- "remove.browser.breakpoint": "Eliminar punto de interrupción del explorador",
- "remove.browser.breakpoint.all": "Eliminar todos los puntos de interrupción del navegador",
+ "remove.eventListener.breakpoint.all": "Quitar todos los puntos de interrupción de escucha de eventos",
+ "remove.xhr.breakpoint": "Quitar punto de interrupción de XHR/captura",
+ "remove.xhr.breakpoint.all": "Quitar todos los puntos de interrupción de XHR/captura",
"requestCDPProxy.label": "Solicitar proxy de CDP para la sesión de depuración",
"skipFiles.description": "Una matriz de patrones globales para que los archivos omitan al depurar. El patrón \"/**\" coincide con todos los módulos internos de Node.js.",
"smartStep.description": "Explore automáticamente el código generado que no se puede volver a asignar al código fuente original.",
@@ -481,6 +230,230 @@
"trace.logFile.description": "Configura dónde se escriben los registros de disco.",
"trace.stdio.description": "Si desea devolver datos de seguimiento desde la aplicación o el explorador iniciados.",
"workspaceTrust.description": "Se necesita confianza para depurar el código de esta área de trabajo."
+ },
+ "bundle": {
+ "A profiling session is already running, would you like to stop it and start a new session?": "Ya se está ejecutando una sesión de generación de perfiles. ¿Quiere detenerla e iniciar una sesión nueva?",
+ "Add XHR Breakpoint": "Agregar punto de interrupción de XHR",
+ "Add new URL...": "Agregar nueva dirección URL...",
+ "Adjust glob pattern(s) in the 'outFiles' attribute so that they cover the generated JavaScript.": "Ajusta modelos globales en los atributos ‘outFiles’ para cubrir el código JavaScript generado.",
+ "Always": "Siempre",
+ "Always in this Workspace": "Siempre en esta área de trabajo",
+ "An error occurred taking a profile from the target.": "Error al tomar un perfil del destino.",
+ "Animation Frame Fired": "Fotograma de animación activado",
+ "Any XHR or fetch": "Cualquier XHR o captura",
+ "Assertion failed": "Error de aserción",
+ "Attach to process: '{0}' doesn't look like a process id.": "Asociar al proceso: '{0}' no parece un id de proceso.",
+ "Attach to process: cannot enable debug mode for process '{0}' ({1}).": "Asociar al proceso: no se puede habilitar el modo de depuración para el proceso '{0}' ({1}).",
+ "Attribute 'runtimeVersion' requires Node.js version manager 'nvm-windows' or 'nvs'.": "El atributo \"runtimeVersion\" requiere el administrador de versiones \"nvm-windows\" o \"nvs\" de Node.js.",
+ "Attribute 'runtimeVersion' requires Node.js version manager 'nvs', 'nvm' or 'fnm' to be installed.": "El atributo \"runtimeVersion\" requiere que se instale el administrador de versiones de Node.js \"nvs\", \"nvm\" o \"fnm\".",
+ "Attribute 'runtimeVersion' with a flavor/architecture requires 'nvs' to be installed.": "El atributo \"runtimeVersion\" con un tipo o arquitectura requiere que se instale \"nvs\".",
+ "Bidder Bidding Phase Start": "Inicio de la fase pujas",
+ "Bidder Reporting Phase Start": "Inicio de la fase de informes de pujas",
+ "Block": "Bloquear",
+ "Break when URL Contains": "Interrumpir cuando la dirección URL contenga",
+ "Breaks on all throw errors, even if they're caught later.": "Se interrumpe en todos los errores de inicio, incluso si se detectan más tarde.",
+ "Breaks only on errors or promise rejections that are not handled.": "Solo se interrumpe en caso de errores o rechazos de promesas que no se controlan.",
+ "Browser connection failed, will retry: {0}": "Error en la conexión del explorador, se reintentará: {0}",
+ "CPU Profile": "Perfil de CPU",
+ "CPU profile saved as \"{0}\" in your workspace folder": "Perfil de CPU guardado como \"{0}\" en la carpeta del área de trabajo",
+ "CSP violation \"{0}\"": "Infracción de CSP \"{0}\"",
+ "Can't find Node.js binary \"{0}\": {1}. Make sure Node.js is installed and in your PATH, or set the \"runtimeExecutable\" in your launch.json": "No se encuentra el binario de Node.js \"{0}\": {1}. Asegúrese de que Node.js esté instalado y en PATH, o bien establezca \"runtimeExecutable\" en launch.json.",
+ "Can't load environment variables from file ({0}).": "No se pueden cargar las variables de entorno del archivo ({0}).",
+ "Cancel Animation Frame": "Cancelar el fotograma de animación",
+ "Cannot connect to the target at {0}: {1}": "No se puede conectar con el destino en {0}: {1}",
+ "Cannot find `{0}` installed in {1}": "No se encuentra “{0}” instalado en {1}",
+ "Cannot find a program to debug": "No se encuentra ningún programa para depurar.",
+ "Cannot find test configuration with label `{0}`, got: {1}": "No se encuentra la configuración de prueba con la etiqueta “{0}”, se obtuvo: {1}",
+ "Cannot launch debug target in terminal ({0}).": "No se puede iniciar el destino de depuración en el terminal ({0}).",
+ "Cannot restart asynchronous frame": "No se puede reiniciar un fotograma asincrónico",
+ "Cannot set an empty value": "No se puede establecer un valor vacío",
+ "Catch Block": "Bloque catch",
+ "Caught Exceptions": "Excepciones detectadas",
+ "Close AudioContext": "Cerrar AudioContext",
+ "Closure": "Clausura",
+ "Closure ({0})": "Clausura ({0})",
+ "Console profile started": "Perfil de consola iniciado",
+ "Could not connect to any UWP Webview pipe. Make sure your webview is hosted in debug mode, and that the `pipeName` in your `launch.json` is correct.": "No se pudo conectar a ninguna canalización de vista web UWP. Asegúrese de que la vista web esté hospedada en modo de depuración y de que el valor de \"pipeName\" de \"launch.json\" sea correcto.",
+ "Could not find a location for the variable": "No se pudo encontrar una ubicación para la variable",
+ "Could not query the provided object": "No se pudo consultar el objeto proporcionado.",
+ "Could not read source map for {0}: {1}": "No se pudo leer el mapa de origen de {0}: {1}",
+ "Could not read {0}: {1}": "No se pudo leer {0}: {1}",
+ "Create AudioContext": "Crear AudioContext",
+ "Create canvas context": "Crear contexto del lienzo",
+ "Debug Anyway": "Depurar de todos modos",
+ "Debug URL": "Depurar dirección URL",
+ "Details": "Detalles",
+ "Don't show again": "No volver a mostrar",
+ "Duration": "Duración",
+ "Duration of Profile": "Duración del perfil",
+ "Edit XHR Breakpoint": "Editar punto de interrupción de XHR",
+ "Edit package.json": "Editar package.json",
+ "Enables Node.js [auto attach]({0}) debugging in \"{1}\" mode/{Locked='[auto attach]({0})'}the 2nd placeholder is the setting value": "Habilita la depuración de Node.js [auto attach]({0}) en el modo \"{1}\"",
+ "Enter a URL or a pattern to match": "Escriba una dirección URL o un patrón para coincidir",
+ "Eval": "Eval",
+ "Frame could not be restarted": "No se pudo reiniciar el marco",
+ "Generates a .cpuprofile file you can open in VS Code or the Edge/Chrome devtools": "Genera un archivo .cpuprofile que se puede abrir en VS Code o Edge/Chrome DevTools",
+ "Generates a .heapprofile file you can open in VS Code or the Edge/Chrome devtools": "Genera un archivo .heapprofile que se puede abrir en VS Code o Edge/Chrome DevTools",
+ "Generates a .heapsnapshot file you can open in VS Code or the Edge/Chrome devtools": "Genera un archivo .heapsnapshot que se puede abrir en VS Code o Edge/Chrome DevTools",
+ "Global": "Global",
+ "Globals": "Globales",
+ "Got it!": "¡Entendido!",
+ "Heap Profile": "Perfil de montón",
+ "Heap Snapshot": "Instantánea de montón",
+ "How long to run the profile": "Tiempo que se va a ejecutar el perfil",
+ "Ignore": "Ignorar",
+ "Installation complete! The extension will be used after you restart your debug session.": "Instalación completada La extensión se usará después de reiniciar la sesión de depuración.",
+ "Installing the DWARF debugger...": "Instalando el depurador DWARF...",
+ "Invalid expression": "Expresión no válida",
+ "Invalid hit condition \"{0}\". Expected an expression like \"> 42\" or \"== 2\".": "La condición de acierto \"{0}\" no es válida. Se esperaba una expresión como \"> 42\" o \"== 2\".",
+ "It looks like a browser is already running from {0}. Please close it before trying to debug, otherwise VS Code may not be able to connect to it.": "Parece que ya se está ejecutando un explorador desde {0}. Ciérrelo antes de intentar la depuración; de lo contrario, es posible que VS Code posible no pueda conectarse a él.",
+ "It looks like your debug session has already ended. Try debugging again, then run the \"Debug: Diagnose Breakpoint Problems\" command.": "Parece que la sesión de depuración ya ha finalizado. Intente volver a depurar y, luego, ejecute el comando \"Debug: Diagnose Breakpoint Problems\".",
+ "It's taking a while to configure your breakpoints. You can speed this up by updating the 'outFiles' in your launch.json.": "Los puntos de interrupción están tardando en configurarse. Puede acelerarlo actualizando \"outFiles\" en su archivo launch.json.",
+ "JavaScript Debug Terminal": "Terminal de depuración de JavaScript",
+ "JavaScript debug adapter": "Adaptador de depuración de JavaScript",
+ "Launch Chrome against localhost": "Iniciar Chrome para localhost",
+ "Launch Edge against localhost": "Iniciar Microsoft Edge para localhost",
+ "Launch Program": "Iniciar el programa",
+ "Launch configuration created based on 'package.json'.": "La configuración de inicio fue creada basada en \"package.json\".",
+ "Launch configuration for '{0}' project created.": "La configuración de inicio del proyecto '{0}' fue creada. ",
+ "Local": "Local",
+ "Locals": "Locales",
+ "Lost connection to debugee, reconnecting in {0}ms\r\n": "Se perdió la conexión con el elemento que se va a depurar; se volverá a conectar en {0} ms\r\n",
+ "Manual": "Manual",
+ "Missing source information. Did you set \"originalUrl\" or \"source\"?": "Falta información de origen. ¿Estableció \"originalUrl\" o \"source\"?",
+ "Module": "Módulo",
+ "Networking not available.": "Redes no disponibles.",
+ "Never": "Nunca",
+ "No": "No",
+ "No npm scripts found in the workspace folder.": "No se encontraron scripts npm en la carpeta del área de trabajo.",
+ "No npm scripts found in your package.json": "No se han encontrado scripts npm en su package.json",
+ "No package.json files found in your workspace.": "No se encontraron archivos package.json en el área de trabajo.",
+ "No workspace folder open.": "No hay ninguna carpeta del área de trabajo abierta.",
+ "Node Attributes": "Atributos de nodo",
+ "Node.js version '{0}' not installed using version manager {1}.": "La versión de Node.js \"{0}\" no se instaló con el administrador de versiones {1}.",
+ "Not Now": "Ahora no",
+ "Only objects can be queried": "Solo se pueden consultar objetos",
+ "Open launch.json": "Abrir launch.json",
+ "Output has been truncated to the first {0} characters. Run `{1}` to copy the full output.": "La salida se ha truncado a los primeros {0} caracteres. Ejecute \"{1}\" para copiar la salida completa.",
+ "Parameters": "Parámetros",
+ "Paused": "En pausa",
+ "Paused before Out Of Memory exception": "En pausa antes de la excepción de memoria insuficiente",
+ "Paused on Content Security Policy violation instrumentation breakpoint, directive \"{0}\"": "En pausa por un punto de interrupción de instrumentación de infracción de la directiva de seguridad de contenido, directiva \"{0}\"",
+ "Paused on DOM breakpoint": "En pausa por un punto de interrupción de DOM",
+ "Paused on WebGL Error instrumentation breakpoint, error \"{0}\"": "En pausa por un punto de interrupción de instrumentación de error de WebGL, error \"{0}\"",
+ "Paused on XMLHttpRequest or fetch": "En pausa por XMLHttpRequest o \"fetch\"",
+ "Paused on assert": "En pausa por una aserción",
+ "Paused on breakpoint": "En pausa por un punto de interrupción",
+ "Paused on debug() call": "En pausa por una llamada a debug()",
+ "Paused on debugger statement": "En pausa por una instrucción del depurador",
+ "Paused on event listener": "En pausa por una escucha de eventos",
+ "Paused on event listener breakpoint \"{0}\", triggered on \"{1}\"": "En pausa por un punto de interrupción de escucha de eventos \"{0}\", desencadenado en \"{1}\"",
+ "Paused on exception": "En pausa por una excepción",
+ "Paused on frame entry": "En pausa por una entrada de marco",
+ "Paused on instrumentation breakpoint": "En pausa por un punto de interrupción de instrumentación",
+ "Paused on instrumentation breakpoint \"{0}\"": "En pausa por un punto de interrupción de instrumentación \"{0}\"",
+ "Paused on {0}": "En pausa en {0}",
+ "Pick Breakpoint": "Seleccionar un punto de interrupción",
+ "Pick the node.js process to attach to": "Seleccione el proceso node. js para adjuntarlo a",
+ "Please enter a number": "Escriba un número.",
+ "Please enter a number greater than 1": "Especifique un número mayor que 1.",
+ "Please stop the running profile before starting a new one.": "Detenga el perfil en ejecución antes de iniciar uno nuevo.",
+ "Process picker failed ({0})": "Falló el selector de proceso ({0})",
+ "Profile duration in seconds, e.g \"5\"": "Duración del perfil en segundos; por ejemplo, \"5\"",
+ "Profiling": "Generación de perfiles",
+ "Profiling with breakpoints enabled can change the performance of your code. It can be useful to validate your findings with the \"duration\" or \"manual\" termination conditions.": "La generación de perfiles con los puntos de interrupción habilitados puede cambiar el rendimiento del código. Puede resultar útil validar los resultados con las condiciones de terminación \"duración\" o \"manual\".",
+ "Read More": "Más información",
+ "Request Animation Frame": "Solicitar fotograma de animación",
+ "Resume AudioContext": "Reanudar AudioContext",
+ "Return value": "Valor devuelto",
+ "Run Current File": "Ejecutar el archivo actual",
+ "Run Node.js tool": "Ejecutar herramienta Node.js",
+ "Run Script: {0}": "Ejecutar el script: {0}",
+ "Run Script: {0} ({1})": "Ejecutar script: {0} ({1})",
+ "Run for a specific amount of time": "Ejecutar durante un período de tiempo específico",
+ "Run until a specific breakpoint is hit": "Ejecutar hasta que se alcance un punto de interrupción específico",
+ "Run until manually stopped": "Ejecutar hasta que se detenga manualmente",
+ "Runs a Node.js command-line installed in the workspace node_modules.": "Ejecuta una línea de comandos Node.js instalada en el área de trabajo node_modules.",
+ "Saving": "Guardando",
+ "Script": "Script",
+ "Script Blocked by Content Security Policy": "Script bloqueado por la directiva de seguridad de contenido",
+ "Script First Statement": "Primera instrucción del script",
+ "Select a tab": "Seleccionar una pestaña",
+ "Select a tool to run": "Seleccionar una herramienta para ejecutar",
+ "Select current working directory for new terminal": "Seleccione el directorio de trabajo actual para el nuevo terminal",
+ "Select test configuration to run": "Seleccionar la configuración de prueba para ejecutar",
+ "Select the page where you want to open the devtools": "Seleccione la página en la que quiere abrir las herramientas de desarrollo",
+ "Select the session you want to inspect:": "Seleccione la sesión que quiere inspeccionar:",
+ "Seller Reporting Phase Start": "Inicio de la fase de informes de vendedores",
+ "Seller Scoring Phase Start": "Inicio de la fase de puntuación de vendedores",
+ "Set innerHTML": "Establecer innerHTML",
+ "Skipped by skipFiles": "Omitido por skipFiles",
+ "Skipped by smartStep": "Omitido por smartStep",
+ "Some breakpoints might not work in your version of Node.js. We recommend upgrading for the latest bug, performance, and security fixes. Details: https://aka.ms/AAcsvqm": "Es posible que algunos puntos de interrupción no funcionen en su versión de Node.js. Se recomienda realizar la actualización para las correcciones de errores, de rendimiento y de seguridad más recientes. Detalles: https://aka.ms/AAcsvqm",
+ "Source not a source map": "El origen no es un mapa de origen",
+ "Source not found": "No se encontró el origen",
+ "Stack frame not found": "No se encontró el marco de pila",
+ "Starting profile...": "Iniciando el perfil...",
+ "Stopping profile...": "Deteniendo perfil...",
+ "Suspend AudioContext": "Suspender AudioContext",
+ "Syntax error setting breakpoint with condition {0} on line {1}: {2}": "Error de sintaxis al establecer el punto de interrupción con la condición {0} en la línea {1}: {2}",
+ "Target page not found. You may need to update your \"urlFilter\" to match the page you want to debug.": "No se encontró la página de destino. Puede que tenga que actualizar el valor de \"urlFilter\" para que coincida con el de la página que quiere depurar.",
+ "The Node version in \"{0}\" is outdated (version {1}), we require at least Node 8.x.": "La versión de Node en \"{0}\" está obsoleta (versión {1}); se requiere Node 8. x como mínimo.",
+ "The URL provided is invalid": "La dirección URL proporcionada no es válida.",
+ "The browser process exited with code {0} before connecting to the debug server. Make sure the `runtimeExecutable` is configured correctly and that it can run without errors.": "El proceso del explorador se cerró con el código {0} antes de conectarse al servidor de depuración. Asegúrese de que \"runtimeExecutable\" está configurado correctamente y que se puede ejecutar sin errores.",
+ "The configured `cwd` {0} does not exist.": "El “cwd” {0} configurado no existe.",
+ "The configured `cwd` {0} is not a folder.": "El {0} configurado \"cwd\" no es una carpeta.",
+ "This is a missing file path referenced by a sourcemap. Would you like to debug the compiled version instead?": "Esta es una ruta de acceso de archivo ausente a la que hace referencia una mapa de origen. ¿Quiere depurar la versión compilada en su lugar?",
+ "Thread is not paused": "El subproceso no está en pausa",
+ "Thread is not paused on exception": "El subproceso no está en pausa por la excepción",
+ "Thread not found": "No se encontró el subproceso",
+ "Type of profile": "Tipo de perfil",
+ "URL contains \"{0}\"": "La dirección URL contiene \"{0}\"",
+ "UWP webview debugging is not available on your platform.": "La depuración de la vista web UWP no está disponible en su plataforma.",
+ "Unable to attach to browser": "No se puede asociar al explorador",
+ "Unable to evaluate": "No se puede evaluar",
+ "Unable to evaluate on async stack frame": "No se puede evaluar en un marco de pila asincrónica",
+ "Unable to find an installation of the browser on your system. Try installing it, or providing an absolute path to the browser in the \"runtimeExecutable\" in your launch.json.": "No se encuentra ninguna instalación del explorador en el sistema. Prueba a instalarlo o proporciona una ruta de acceso completa al explorador en \"runtimeExecutable\", en el archivo launch.json.",
+ "Unable to find {0} version {1}. Available auto-discovered versions are: {2}. You can set the \"runtimeExecutable\" in your launch.json to one of these, or provide an absolute path to the browser executable.": "No se encuentra {0} versión {1}. Las versiones detectadas automáticamente disponibles son: {2}. Puede establecer \"runtimeExecutable\" en launch.json en una de ellas o proporcionar una ruta de acceso absoluta al ejecutable del explorador.",
+ "Unable to launch browser: \"{0}\"": "No se puede iniciar el explorador: \"{0}\"",
+ "Unable to pause": "No se puede pausar",
+ "Unable to pretty print": "No se pueden imprimir con sangría",
+ "Unable to resume": "No se puede reanudar",
+ "Unable to retrieve source content": "No se puede recuperar el contenido de origen",
+ "Unable to set variable value": "No se puede establecer el valor de la variable",
+ "Unable to step in": "No se puede entrar",
+ "Unable to step next": "No se puede realizar el paso siguiente",
+ "Unable to step out": "No se puede salir",
+ "Unbound breakpoint": "Punto de interrupción sin enlazar",
+ "Uncaught Exceptions": "Excepciones no detectadas",
+ "Unknown error": "Error desconocido",
+ "VS Code can provide better debugging experience for WebAssembly via \"DWARF Debugging\" extension. Would you like to install it?/\"DWARF Debugging\" is the extension name and should not be localized.": "VS Code puede proporcionar una mejor experiencia de depuración para WebAssembly a través de la extensión \"Depuración de DWARF\". ¿Le gustaría instalarlo?",
+ "Variable not found": "No se encontró la variable",
+ "Variables not available in async stacks": "Variables no disponibles en las pilas asincrónicas",
+ "WARNING: Processing source-maps of {0} took longer than {1} ms so we continued execution without waiting for all the breakpoints for the script to be set.": "ADVERTENCIA: El procesamiento de mapas de origen de {0} tardó más de {1} ms, por lo que se siguió ejecutando sin esperar a que se establecieran todos los puntos de interrupción del script.",
+ "We can't launch a browser in debug mode from here. If you want to debug this webpage, open this workspace from VS Code on your desktop.": "No se puede iniciar ningún explorador en modo de depuración desde aquí. Si quiere depurar esta página web, abra el área de trabajo desde VS Code en el escritorio.",
+ "We can't launch a browser in debug mode from here. Open this workspace in VS Code on your desktop to enable debugging.": "No se puede iniciar ningún explorador en modo de depuración desde aquí. Abra el área de trabajo en VS Code en el escritorio para habilitar la depuración.",
+ "WebGL Error Fired": "Error de WebGL desencadenado",
+ "WebGL Warning Fired": "Advertencia de WebGL desencadenada",
+ "With Block": "Con bloque",
+ "Would you like to save a configuration in your launch.json for easy access later?": "¿Desea guardar una configuración en el archivo launch.json para un acceso fácil más adelante?",
+ "XHR/Fetch URLs": "URL XHR/captura",
+ "Yes": "Sí",
+ "You may install the `{}` module via npm for enhanced WebAssembly debugging": "Puede instalar el módulo '{}' a través de npm para la depuración mejorada de WebAssembly",
+ "You need to open a workspace folder to debug npm scripts.": "Debe abrir una carpeta de área de trabajo para depurar scripts npm.",
+ "You're running an outdated version of Node.js. We recommend upgrading for the latest bug, performance, and security fixes.": "Está ejecutando una versión obsoleta de Node.js. Se recomienda actualizarla para acceder a las correcciones de errores, rendimiento y seguridad más recientes.",
+ "an old debug session": "una sesión de depuración antigua",
+ "breakpoint.provisionalBreakpoint": "breakpoint.provisionalBreakpoint",
+ "path does not exist": "la ruta de acceso no existe",
+ "process id: {0} ({1})": "Id. del proceso: {0} ({1})",
+ "process id: {0}, debug port: {1} ({2})": "Id. del proceso: {0}, puerto de depuración: {1} ({2})",
+ "setInterval fired": "setInterval activado",
+ "setTimeout fired": "setTimeout activado",
+ "the configured userDataDir": "el valor userDataDir configurado",
+ "{0} (couldn't describe: {1})": "{0} (no se puede describir: {1})",
+ "{0} Click to Stop Profiling": "{0} Hacer clic aquí para detener la generación de perfiles",
+ "{0} Click to Stop Profiling ({1} sessions)": "{0} Hacer clic para detener la generación de perfiles (sesiones{1} )",
+ "{0} Click to Stop Profiling ({1})": "{0} Hacer clic aquí para detener la generación de perfiles ({1})."
}
}
}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-es/translations/extensions/ms-vscode.node-debug.i18n.json b/i18n/vscode-language-pack-es/translations/extensions/ms-vscode.node-debug.i18n.json
deleted file mode 100644
index f1bbb527aa..0000000000
--- a/i18n/vscode-language-pack-es/translations/extensions/ms-vscode.node-debug.i18n.json
+++ /dev/null
@@ -1,183 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "dist/node/extension/autoAttach": {
- "process.with.pid.label": "Asociado automáticamente ({0})"
- },
- "dist/node/extension/cluster": {
- "child.process.with.pid.label": "Proceso secundario {0}"
- },
- "dist/node/extension/configurationProvider": {
- "NVM_DIR.not.found.message": "El atributo \"runtimeVersion\" requiere el administrador de versiones \"nvm\" o \"nvs\" de Node.js.",
- "NVM_HOME.not.found.message": "El atributo \"runtimeVersion\" requiere el administrador de versiones \"nvm-windows\" o \"nvs\" de Node.js.",
- "NVS_HOME.not.found.message": "El atributo \"runtimeVersion\" requiere el administrador de versiones \"nvs\" de Node.js.",
- "mern.starter.explanation": "La configuración de inicio del proyecto '{0}' fue creada. ",
- "node.launch.config.name": "Iniciar el programa",
- "outFiles.explanation": "Ajusta modelos globales en los atributos ‘outFiles’ para cubrir el código JavaScript generado.",
- "program.guessed.from.package.json.explanation": "La configuración de inicio fue creada basada en \"package.json\".",
- "program.not.found.message": "No se encuentra ningún programa para depurar.",
- "runtime.version.not.found.message": "La versión '{0}' de Node.js no está instalada para '{1}'.",
- "useWslDeprecationWarning.doNotShowAgain": "No mostrar de nuevo",
- "useWslDeprecationWarning.title": "El atributo \"useWSL\" está en desuso. Utilice la extensión \"Remote WSL\" en su lugar. Haga clic [aquí]({0}) para obtener más información."
- },
- "dist/node/extension/processPicker": {
- "cannot.enable.debug.mode.error": "Asociar al proceso: no se puede habilitar el modo de depuración para el proceso '{0}' ({1}).",
- "pickNodeProcess": "Seleccione el proceso node. js para adjuntarlo a",
- "pid.error": "Adjuntar a proceso: no se puede poner el proceso '{0}' en modo de depuración.",
- "process.id.error": "Asociar al proceso: '{0}' no parece un id de proceso.",
- "process.id.port": "id de proceso: {0}, puerto de depuración: {1}",
- "process.id.port.legacy": "id. de proceso: {0}, Puerto de depuración: {1} (Protocolo legado)",
- "process.id.port.signal": "Id. del proceso: {0}, puerto de depuración: {1} ({2})",
- "process.id.signal": "Id. del proceso: {0} ({1})",
- "process.picker.error": "Falló el selector de proceso ({0})"
- },
- "dist/node/extension/protocolDetection": {
- "protocol.switch.legacy.detected": "Depurando con el protocolo heredado porque se ha detectado.",
- "protocol.switch.legacy.version": "Depurando con el protocolo heredado ya que se detectó Node.js {0}.",
- "protocol.switch.unknown.error": "Depurando con el protocolo inspector porque no se pudo determinar la versión de Node.js ({0})."
- },
- "dist/node/nodeDebug": {
- "VSND2001": "No se encuentra el entorno de ejecución \"{0}\" en PATH. Asegúrese de haber instalado \"{0}\".",
- "VSND2002": "No se puede iniciar el programa \"{0}\". Configurar mapas de origen puede ser útil.",
- "VSND2003": "No se puede iniciar el programa \"{0}\". Establecer el atributo \"{1}\" puede ser útil.",
- "VSND2009": "No se puede iniciar el programa \"{0}\" porque no se encuentra el elemento JavaScript correspondiente.",
- "VSND2010": "No se puede conectar con el proceso en tiempo de ejecución (motivo: {0}).",
- "VSND2011": "No se puede iniciar el destino de depuración en el terminal ({0}).",
- "VSND2015": "La solicitud '{_request}' se canceló porque Node.js no responde.",
- "VSND2016": "Node.js no respondió a la solicitud '{_request}' en un período de tiempo razonable.",
- "VSND2017": "No se puede iniciar el destino de depuración ({0}).",
- "VSND2018": "No hay ninguna pila de llamadas disponible ({_command}: {_error}).",
- "VSND2019": "El módulo interno {0} no se encontró.",
- "VSND2022": "No hay ninguna pila de llamadas porque el programa se pausó fuera de JavaScript.",
- "VSND2023": "No hay ninguna pila de llamadas disponible.",
- "VSND2028": "Tipo de consola \"{0}\" desconocido.",
- "VSND2029": "No se pueden cargar las variables de entorno del archivo ({0}).",
- "VSND2033": "No se puede conectar al sistema en tiempo de ejecución; asegúrese de que ese sistema se encuentre en modo de depuración 'legacy'.",
- "VSND2034": "No se puede conectar al sistema en tiempo de ejecución mediante el protocolo 'legacy'; intente utilizar el protocolo 'inspector'.",
- "anonymous.function": "(función anónima)",
- "attribute.path.not.absolute": "El atributo \"{0}\" no es absoluto (\"{1}\"). Pruebe a agregar \"{2}\" como prefijo para hacerlo absoluto.",
- "attribute.path.not.exist": "El atributo \"{0}\" no existe (\"{1}\").",
- "attribute.wls.not.exist": "No se puede encontrar la instalación del subsistema de Windows Linux",
- "eval.invalid.expression": "expresión no válida: {0}",
- "eval.not.available": "No disponible",
- "exception.paused.promise.rejection": "Pausado por un rechazo de promesa",
- "exception.promise.rejection": "Rechazo de Promise",
- "exception.promise.rejection.text": "Rechazo de Promise ({0})",
- "exceptions.all": "Todas las excepciones",
- "exceptions.rejects": "Rechazos de Promise",
- "exceptions.uncaught": "Excepciones no detectadas",
- "file.on.disk.changed": "No comprobado, porque el archivo del disco ha cambiado. Reinicie la sesión de depuración.",
- "more.information": "Más información",
- "node.console.title": "Consola de depuración de nodos",
- "origin.core.module": "módulo principal de solo lectura",
- "origin.from.node": "contenido de solo lectura de Node.js",
- "origin.from.remote.node": "contenido de solo lectura de Node.js remoto",
- "origin.inlined.source.map": "contenido insertado de solo lectura del mapa de origen",
- "program.path.case.mismatch.warning": "El uso de mayúsculas y minúsculas en la ruta de acceso del programa no es igual al del archivo en disco. Esto puede hacer que no se llegue a los puntos de interrupción.",
- "reason.description.breakpoint": "En pausa por un punto de interrupción",
- "reason.description.debugger_statement": "En pausa por una instrucción del depurador",
- "reason.description.entry": "En pausa por una entrada",
- "reason.description.exception": "En pausa por una excepción",
- "reason.description.restart": "En pausa por una entrada de marco",
- "reason.description.step": "En pausa por un paso",
- "reason.description.user_request": "En pausa por una solicitud de usuario",
- "scope.block": "Bloquear",
- "scope.catch": "Catch",
- "scope.closure": "Clausura",
- "scope.exception": "Excepción",
- "scope.global": "GLOBAL",
- "scope.local": "LOCAL",
- "scope.local.with.count": "Local ({0} de {1})",
- "scope.script": "Script",
- "scope.unknown": "Tipo de ámbito desconocido: {0}",
- "scope.with": "con",
- "setVariable.error": "No se admite el valor de configuración.",
- "source.not.found": "No se pudo recuperar el contenido.",
- "source.skipFiles": "omitido debido a \"skipFiles\"",
- "source.smartstep": "omitido debido a \"smartStep\"",
- "sourcemapping.fail.message": "El punto de interrupción se ignoró porque no se encontró el código generado (puede que sea un problema del mapa de origen)."
- },
- "dist/node/nodeV8Protocol": {
- "not.connected": "sin conexión al entorno de ejecución",
- "runtime.timeout": "tiempo de espera agotado transcurridos {0} ms",
- "runtime.unresponsive": "se canceló porque Node.js no responde"
- },
- "package": {
- "attach.node.process": "Conectarse con el proceso de Node (heredado)",
- "debug.node.showUseWslIsDeprecatedWarning.description": "Controla si se debe mostrar una advertencia cuando se utiliza el atributo \"useWSL\".",
- "extension.description": "Compatibilidad de depuración de Node.js (versiones < 8.0)",
- "launch.args.description": "Argumentos de la línea de comandos que se pasan al programa.",
- "node.address.description": "Dirección TCP/IP del proceso de depuración (solo para Node.js >= 5.0). El valor predeterminado es \"localhost\".",
- "node.attach.config.name": "Asociar",
- "node.attach.processId.description": "Identificador del proceso al que se va a asociar.",
- "node.disableOptimisticBPs.description": "No establezca puntos de interrupción en ningún archivo hasta que se haya cargado un mapa de origen para el archivo.",
- "node.label": "Node.js (heredado)",
- "node.launch.autoAttachChildProcesses.description": "Asociar automáticamente el depurador a los procesos secundarios nuevos.",
- "node.launch.config.name": "Iniciar",
- "node.launch.console.description": "Lugar donde debe iniciarse el destino de depuración.",
- "node.launch.console.externalTerminal.description": "Terminal externo que puede configurarse desde Configuración del usuario.",
- "node.launch.console.integratedTerminal.description": "Terminal integrado de VS Code",
- "node.launch.console.internalConsole.description": "Consola de depuración de VS Code (que no admite la lectura de entradas de un programa)",
- "node.launch.cwd.description": "Ruta de acceso absoluta al directorio de trabajo del programa que se está depurando.",
- "node.launch.env.description": "Variables de entorno pasadas al programa. El valor \"null\" elimina la variable del entorno.",
- "node.launch.envFile.description": "Ruta de acceso absoluta a un archivo que contiene definiciones de variables de entorno.",
- "node.launch.externalConsole.deprecationMessage": "El atributo \"externalConsole\" está en desuso, use \"console\" en su lugar.",
- "node.launch.outputCapture.description": "Ubicación desde donde se van a capturar los mensajes de salida: la API de depuración o las secuencias stdout/stderr.",
- "node.launch.program.description": "Ruta de acceso absoluta al programa. El valor generado se infiere de package.json y de los archivos abiertos. Edite este atributo.",
- "node.launch.runtimeArgs.description": "Argumentos opcionales pasados al ejecutable del entorno de ejecución.",
- "node.launch.runtimeExecutable.description": "Entorno de ejecución que debe usarse. Puede ser una ruta de acceso absoluta o el nombre de un entorno de ejecución disponible en PATH. Si se omite, se utiliza \"node\".",
- "node.launch.runtimeVersion.description": "Versión del entorno de ejecución de \"Node\" que debe usarse. Requiere \"NVM\".",
- "node.launch.useWSL.deprecation": "\"useWSL\" está en desuso y se eliminará el soporte correspondiente. Utilice la extensión \"Remote - WSL\" en su lugar.",
- "node.launch.useWSL.description": "Utilice el subsistema de Windows para Linux.",
- "node.localRoot.description": "Ruta de acceso al directorio local que contiene el programa.",
- "node.port.description": "Puerto de depuración al que se va a conectar. El valor predeterminado es 5858.",
- "node.processattach.config.name": "Asociar al proceso",
- "node.protocol.auto.description": "Intenta detectar el mejor protocolo de forma automática, seleccionando \"inspector\" para iniciar Node 8.0+.",
- "node.protocol.description": "Protocolo de depuración de Node.js para utilizar.",
- "node.protocol.inspector.description": "Nuevo protocolo compatible con las versiones >=6.3 de Node.js",
- "node.protocol.legacy.description": "Protocolo antiguo admitido por las versiones de Node.js < 8.0",
- "node.remoteRoot.description": "Ruta de acceso absoluta al directorio remoto que contiene el programa.",
- "node.restart.description": "Reinicia la sesión cuando Node.js ha terminado.",
- "node.showAsyncStacks.description": "Muestra las llamadas asincrónicas que llevan a la pila de llamadas actual. Solo el protocolo \"inspector\" .",
- "node.snippet.attach.description": "Adjuntar a un nodo en ejecución",
- "node.snippet.attach.label": "Node.js: Attach",
- "node.snippet.attachProcess.description": "Abrir el selector de procesos para elegir el proceso de Node para conectarse",
- "node.snippet.attachProcess.label": "Node.js: adjuntar a proceso",
- "node.snippet.electron.description": "Depurar el proceso principal de Electron",
- "node.snippet.electron.label": "Node.js: proceso principal de Electron",
- "node.snippet.gulp.description": "Depurar tarea de Gulp (asegúrese de tener Gulp instalado localmente en el proyecto)",
- "node.snippet.gulp.label": "Node.js: tarea de Gulp",
- "node.snippet.launch.description": "Iniciar un programa de nodo en modo de depuración",
- "node.snippet.launch.label": "Node.js: iniciar programa",
- "node.snippet.mocha.description": "Depurar pruebas de Mocha",
- "node.snippet.mocha.label": "Node.js: pruebas de Mocha",
- "node.snippet.nodemon.description": "Use nodemon para reiniciar una sesión de depuración en los cambios de origen",
- "node.snippet.nodemon.label": "Node.js: configuración de Nodemon",
- "node.snippet.npm.description": "Inicia un programa de Node con un script \"debug\" de npm.",
- "node.snippet.npm.label": "Node.js: iniciar mediante NPM",
- "node.snippet.remoteattach.description": "Adjuntar al puerto de depuración de un programa de nodo remoto",
- "node.snippet.remoteattach.label": "Node.js: adjuntar a programa remoto",
- "node.snippet.yo.description": "Depurar generador de Yeoman (se instala ejecutando \"npm link\" en la carpeta del proyecto).",
- "node.snippet.yo.label": "Node.js: generador de Yeoman",
- "node.sourceMapPathOverrides.description": "Un conjunto de mapeos para reescribir las localizaciones de los ficheros fuente con lo que los mapas fuente indican, a sus ubicaciones en disco.",
- "node.sourceMaps.description": "Se usan los mapas de origen de JavaScript (si existen).",
- "node.stopOnEntry.description": "El programa se detiene automáticamente tras el inicio.",
- "node.timeout.description": "Vuelva a probar con este número de milisegundos para conectarse a Node.js. El valor predeterminado es 10000 ms.",
- "open.loaded.script": "Abrir script cargado",
- "outDir.deprecationMessage": "El atributo \"outDir\" está en desuso, use \"outFiles\" en su lugar.",
- "outFiles.description": "Si los mapas de origen están habilitados, estos patrones globales especifican los archivos JavaScript generados. Si un patrón comienza con \"!\", los archivos se excluyen. Si no se especifica, se espera que el código se genere en el mismo directorio que su origen. Ejemplo: \"[\"${workspaceFolder}/out/**/*.js\"]\"",
- "skipFiles.description": "Una matriz de patrones globales para que los archivos omitan al depurar. El patrón \"/**\" coincide con todos los módulos internos de Node.js.",
- "smartStep.description": "Explore automáticamente el código generado que no se puede volver a asignar al código fuente original.",
- "start.with.stop.on.entry": "Iniciar depuración y detenerla tras el inicio (heredado)",
- "toggle.skipping.this.file": "Cambiar y omitir este archivo",
- "trace.description": "Produce una salida de diagnóstico. En lugar de establecer este valor en true, puede enumerar uno o varios selectores separados por comas. El selector \"verbose\" habilita una salida muy detallada."
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-es/translations/extensions/ms-vscode.node-debug2.i18n.json b/i18n/vscode-language-pack-es/translations/extensions/ms-vscode.node-debug2.i18n.json
deleted file mode 100644
index 3daddc10e6..0000000000
--- a/i18n/vscode-language-pack-es/translations/extensions/ms-vscode.node-debug2.i18n.json
+++ /dev/null
@@ -1,138 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "node_modules\\vscode-chrome-debug-core\\out/src/chrome/breakpoints": {
- "bp.fail.noscript": "No se encuentra el script para la solicitud de punto de interrupción.",
- "bp.fail.unbound": "El punto de interrupción se ha establecido, pero no se ha enlazado aún.",
- "invalidHitCondition": "Condición de acierto no válida: {0}",
- "setBPTimedOut": "Se agotó el tiempo de espera de la solicitud para establecer puntos de interrupción.",
- "validateBP.notFound": "El punto de interrupción se ignoró porque no se encontró la ruta de acceso de destino.",
- "validateBP.sourcemapFail": "El punto de interrupción se ignoró porque no se encontró el código generado (puede que sea un problema del mapa de origen)."
- },
- "node_modules\\vscode-chrome-debug-core\\out/src/chrome/chromeDebugAdapter": {
- "exceptions.all": "Todas las excepciones",
- "exceptions.promise_rejects": "Rechazos de Promise",
- "exceptions.uncaught": "Excepciones no detectadas"
- },
- "node_modules\\vscode-chrome-debug-core\\out/src/chrome/chromeTargetDiscoveryStrategy": {
- "attach.cannotConnect": "No se puede conectar con el destino: {0}",
- "attach.devToolsAttached": "No se puede asociar a este destino, ya que puede tener Chrome DevTools asociado: {0}",
- "attach.invalidResponse": "La respuesta del destino no parece válida. Error: {0}. Respuesta: {1}",
- "attach.invalidResponseArray": "La respuesta del destino no parece válida: {0}",
- "attach.noMatchingTarget": "No se encuentra ningún destino válido que coincida con {0}. Páginas disponibles: {1}",
- "attach.responseButNoTargets": "Se obtuvo una respuesta de la aplicación de destino, pero no se encontraron páginas de destino."
- },
- "node_modules\\vscode-chrome-debug-core\\out/src/chrome/stackFrames": {
- "scope.exception": "Excepción",
- "skipReason": "(omitido por '{0}')"
- },
- "node_modules\\vscode-chrome-debug-core\\out/src/chrome/stoppedEvent": {
- "reason.description.breakpoint": "En pausa por un punto de interrupción",
- "reason.description.caughtException": "En pausa por una excepción detectada",
- "reason.description.debugger_statement": "En pausa por una instrucción del depurador",
- "reason.description.entry": "En pausa por una entrada",
- "reason.description.exception": "En pausa por una excepción",
- "reason.description.promiseRejection": "En pausa por rechazo de una promesa",
- "reason.description.restart": "En pausa por una entrada de marco",
- "reason.description.step": "En pausa por un paso",
- "reason.description.uncaughtException": "En pausa por una excepción no detectada",
- "reason.description.user_request": "En pausa por una solicitud de usuario"
- },
- "node_modules\\vscode-chrome-debug-core\\out/src/errors": {
- "VSND2010": "No se puede conectar al proceso en tiempo de ejecución, el tiempo de espera se agota después de {0} ms (motivo: {1}).",
- "VSND2023": "No hay ninguna pila de llamadas disponible.",
- "attribute.path.not.absolute": "El atributo \"{0}\" no es absoluto (\"{1}\"). Pruebe a agregar \"{2}\" como prefijo para hacerlo absoluto.",
- "attribute.path.not.exist": "El atributo \"{0}\" no existe (\"{1}\").",
- "eval.not.available": "No disponible",
- "failed.to.read.port": "No se ha podido leer el archivo {dataDirPath}, {error}",
- "more.information": "Más información",
- "not.connected": "sin conexión al entorno de ejecución",
- "port.file.contents.invalid": "El archivo en la ubicación: \"{dataDirPath}\" no contiene datos válidos del puerto, el contenido era: \"{dataDirContents}\"",
- "restartFrame.cannot": "No se puede reiniciar el marco",
- "setVariable.error": "No se admite el valor de configuración.",
- "source.not.found": "No se pudo recuperar el contenido."
- },
- "node_modules\\vscode-chrome-debug-core\\out/src/transformers/baseSourceMapTransformer": {
- "origin.inlined.source.map": "contenido insertado de solo lectura del mapa de origen"
- },
- "node_modules\\vscode-chrome-debug-core\\out/src/transformers/remotePathTransformer": {
- "localRootAndRemoteRoot": "Deben especificarse tanto localRoot como remoteRoot."
- },
- "out/src/errors": {
- "VSND2001": "No se encuentra el entorno de ejecución \"{0}\" en PATH. ¿Se ha instalado \"{0}\"?",
- "VSND2002": "No se puede iniciar el programa \"{0}\". Configurar mapas de origen puede ser útil.",
- "VSND2003": "No se puede iniciar el programa \"{0}\". Establecer el atributo \"{1}\" puede ser útil.",
- "VSND2009": "No se puede iniciar el programa \"{0}\" porque no se encuentra el elemento JavaScript correspondiente.",
- "VSND2011": "No se puede iniciar el destino de depuración en el terminal ({0}).",
- "VSND2017": "No se puede iniciar el destino de depuración ({0}).",
- "VSND2028": "Tipo de consola \"{0}\" desconocido.",
- "VSND2029": "No se pueden cargar las variables de entorno del archivo ({0}).",
- "VSND2035": "No se puede depurar la extensión ({0})."
- },
- "out/src/nodeDebugAdapter": {
- "VSND2001": "No se encuentra el entorno de ejecución \"{0}\" en PATH. Asegúrese de haber instalado \"{0}\".",
- "attribute.path.not.absolute": "El atributo \"{0}\" no es absoluto (\"{1}\"). Pruebe a agregar \"{2}\" como prefijo para hacerlo absoluto.",
- "attribute.path.not.exist": "El atributo \"{0}\" no existe (\"{1}\").",
- "attribute.wsl.not.exist": "No se encuentra el subsistema de Windows para la instalación de Linux.",
- "more.information": "Más información",
- "node.console.title": "Consola de depuración de nodos",
- "origin.core.module": "módulo principal de solo lectura",
- "origin.from.node": "contenido de solo lectura de Node.js",
- "program.path.case.mismatch.warning": "El uso de mayúsculas y minúsculas en la ruta de acceso del programa no es igual al del archivo en disco. Esto puede hacer que no se llegue a los puntos de interrupción."
- },
- "package": {
- "extension.description": "Compatibilidad con la depuración de Node.js",
- "extensionHost.label": "Desarrollo de extensiones de VS Code",
- "extensionHost.launch.config.name": "Extensión de inicio",
- "extensionHost.launch.env.description": "Variables de entorno pasadas al host de extensiones.",
- "extensionHost.launch.runtimeExecutable.description": "Ruta de acceso absoluta a VS Code.",
- "extensionHost.launch.stopOnEntry.description": "El host de extensiones se detiene automáticamente tras el inicio.",
- "extensionHost.snippet.launch.description": "Iniciar una extensión de VS Code en modo de depuración",
- "extensionHost.snippet.launch.label": "Desarrollo de extensiones de VS Code",
- "node.address.description": "Dirección TCP/IP del puerto de depuración. El valor predeterminado es \"localhost\".",
- "node.attach.config.name": "Asociar",
- "node.attach.localRoot.description": "Raíz de origen local que corresponde a \"remoteRoot\".",
- "node.attach.processId.description": "Identificador del proceso al que se va a asociar.",
- "node.attach.remoteRoot.description": "Raíz de origen del host remoto.",
- "node.diagnosticLogging.deprecationMessage": "\"diagnosticLogging\" está en desuso. Use \"trace\" en su lugar.",
- "node.diagnosticLogging.description": "Si es true, el adaptador registra su propia información de diagnóstico en la consola.",
- "node.disableOptimisticBPs.description": "No establezca puntos de interrupción en ningún archivo hasta que se haya cargado un mapa de origen para el archivo.",
- "node.enableSourceMapCaching.description": "Cuando los mapas de origen se descargan desde una dirección URL, almacénelos en la memoria caché del disco.",
- "node.label": "Node.js v6.3+ mediante protocolo inspector",
- "node.launch.args.description": "Argumentos de la línea de comandos que se pasan al programa.",
- "node.launch.config.name": "Lanzamiento",
- "node.launch.console.description": "Lugar donde debe iniciarse el destino de depuración: consola interna, terminal integrado o terminal externo.",
- "node.launch.cwd.description": "Ruta de acceso absoluta al directorio de trabajo del programa que se está depurando.",
- "node.launch.env.description": "Variables de entorno pasadas al programa. El valor \"null\" elimina la variable del entorno.",
- "node.launch.envFile.description": "Ruta de acceso absoluta a un archivo que contiene definiciones de variables de entorno.",
- "node.launch.outputCapture.description": "Ubicación desde donde se van a capturar los mensajes de salida: la API de depuración o las secuencias stdout/stderr.",
- "node.launch.program.description": "Ruta de acceso absoluta al programa.",
- "node.launch.runtimeArgs.description": "Argumentos opcionales pasados al ejecutable del entorno de ejecución.",
- "node.launch.runtimeExecutable.description": "Entorno de ejecución que se va a usar. Una ruta de acceso absoluta o el nombre de un entorno de ejecución disponible en PATH. Si se omite, se asume el valor de \"node\".",
- "node.outFiles.description": "Si los mapas de origen están habilitados, estos patrones globales especifican los archivos JavaScript generados. Si un patrón comienza con '!' los archivos se excluyen. Si no se especifica, el código generado se espera en el mismo directorio que su origen.",
- "node.port.description": "El puerto de depuración al que se va a asociar. El valor predeterminado es 9229.",
- "node.processattach.config.name": "Asociar al proceso",
- "node.restart.description": "Reinicia la sesión cuando Node.js ha terminado.",
- "node.showAsyncStacks.description": "Muestra las llamadas asincrónicas que llevan a la pila de llamadas actual.",
- "node.skipFiles.description": "Matriz de nombres de archivo o carpeta, o de patrones globales, que se van a omitir en la depuración.",
- "node.smartStep.description": "Explore automáticamente el código generado que no se puede volver a asignar al código fuente original.",
- "node.sourceMapPathOverrides.description": "Conjunto de asignaciones para reescribir las ubicaciones de los archivos de origen en sus ubicaciones en el disco, a partir de lo que indica el mapa de origen. Consulte el archivo LÉAME para obtener más detalles.",
- "node.sourceMaps.description": "Se usan los mapas de origen de JavaScript (si existen).",
- "node.stopOnEntry.description": "El programa se detiene automáticamente tras el inicio.",
- "node.timeout.description": "Vuelva a probar con este número de milisegundos para conectarse a Node.js. El valor predeterminado es 10000 ms.",
- "node.trace.description": "Si es \"true\", el depurador registrará información de seguimiento en un archivo. Si es \"verbose\", también mostrará los registros en la consola.",
- "node.verboseDiagnosticLogging.deprecationMessage": "\"verboseDiagnosticLogging\" está en desuso. Use \"trace\" en su lugar.",
- "node.verboseDiagnosticLogging.description": "Si es true, el adaptador registra todo el tráfico en el cliente y el destino (así como la información que \"diagnosticLogging\" registra)",
- "outDir.deprecationMessage": "El atributo \"outDir\" está en desuso, use \"outFiles\" en su lugar.",
- "toggle.skipping.this.file": "Cambiar y omitir este archivo",
- "workspaceTrust": "Se necesita confianza para depurar el código de esta área de trabajo."
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-es/translations/extensions/ms-vscode.remotehub.i18n.json b/i18n/vscode-language-pack-es/translations/extensions/ms-vscode.remotehub.i18n.json
deleted file mode 100644
index 1b5ffbdd1b..0000000000
--- a/i18n/vscode-language-pack-es/translations/extensions/ms-vscode.remotehub.i18n.json
+++ /dev/null
@@ -1,81 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "package": {
- "colors.added": "Color for added resources",
- "colors.conflict": "Color for resources with conflicts",
- "colors.deleted": "Color for deleted resources",
- "colors.incomingAdded": "Color for incoming added resources",
- "colors.incomingDeleted": "Color for incoming deleted resources",
- "colors.incomingModified": "Color for incoming modified resources",
- "colors.incomingRenamed": "Color for incoming renamed resources",
- "colors.modified": "Color for modified resources",
- "colors.possibleConflict": "Color for resources with possible conflicts",
- "command.timeline.compareWithSelected": "Compare with Selected",
- "command.timeline.copyCommitId": "Copy Commit ID",
- "command.timeline.copyCommitMessage": "Copy Commit Message",
- "command.timeline.openDiff": "Open Changes",
- "command.timeline.openOnGitHub": "Open on GitHub",
- "command.timeline.selectForCompare": "Select for Compare",
- "commands.addRepositoryToWorkspace": "Add Remote Repository to Workspace...",
- "commands.clone": "Clone Repository Locally...",
- "commands.commit": "Commit",
- "commands.continueOn": "Continue on...",
- "commands.createBranch": "Create New Branch...",
- "commands.createBranchFrom": "Create New Branch from...",
- "commands.createDraftPullRequest": "Create a Draft Pull Request",
- "commands.createPullRequest": "Create a Pull Request",
- "commands.deleteAllLocalRepositoryData": "Delete All Local Repository Data",
- "commands.deleteLocalRepositoryData": "Delete Local Repository Data...",
- "commands.discardAllChanges": "Discard All Changes",
- "commands.discardChanges": "Discard Changes",
- "commands.enableIndexing": "Enable Search Indexing",
- "commands.exportPatch": "Export Changes...",
- "commands.fetch": "Fetch",
- "commands.keepChanges": "Keep Changes",
- "commands.openChanges": "Open Changes",
- "commands.openFile": "Open File",
- "commands.openInCodespaces": "Open in Codespaces...",
- "commands.openOnDesktop": "Reopen on the Desktop",
- "commands.openOnRemote": "Open on GitHub",
- "commands.openOnWeb": "Reopen on the Web",
- "commands.openRepository": "Open Remote Repository...",
- "commands.pull": "Pull",
- "commands.stageAllChanges": "Stage All Changes",
- "commands.stageChanges": "Stage Changes",
- "commands.switchToBranch": "Switch to Branch...",
- "commands.sync": "Sync (Pull & Push)",
- "commands.unstageAllChanges": "Unstage All Changes",
- "commands.unstageChanges": "Unstage Changes",
- "config.autoFetch.enabled": "Specifies whether to periodically fetch from the upstream repository",
- "config.autoFetch.interval": "Specifies the interval, in seconds, to periodically fetch from the upstream repository",
- "config.search.download.corsProxy": "Specifies the proxy to use when downloading repository indicies from a browser context",
- "config.search.download.enabled": "Specifies whether text search should download an index of the repository in order to provide more accurate search results",
- "config.search.download.repoLimit": "Specifies the maximum number of search indicies cached per repo. Each reference requires a separate search index",
- "config.search.download.sizeLimit": "Specifies the size (in MB) of search index cache. The search cache is located in the extension's global storage folder",
- "config.staging.enabled": "Specifies whether to enable the staging of changes before committing",
- "config.staging.smart": "Specifies whether to automatically stage all changes, if there are none, before committing",
- "description": "Remotely browse and edit a GitHub repository",
- "displayName": "Remote Repositories (RemoteHub)",
- "displayNameInsiders": "RemoteHub (Insiders)",
- "submenu.branch": "Branch",
- "submenu.changes": "Changes",
- "submenu.commit": "Commit",
- "submenu.export": "Export",
- "submenu.pullRequest": "Pull Request",
- "viewsWelcome.debug": "Run and Debug are not available in this environment. To run and debug, you will need to continue in another Visual Studio Code setup.",
- "viewsWelcome.debug.continueOn": "[Continue on...](command:remoteHub.continueOn 'Continue working on this remote repository elsewhere')",
- "viewsWelcome.explorer": "Or, you can remotely open a repository or pull request directly from Visual Studio Code without cloning.\r\n[Open Remote Repository](command:remoteHub.openRepository 'Open a remote repository (e.g. from GitHub)')",
- "viewsWelcome.explorer.web": "Or, you can remotely open a repository or pull request directly from Visual Studio Code.\r\n[Open Remote Repository](command:remoteHub.openRepository 'Open a remote repository (e.g. from GitHub)')",
- "viewsWelcome.terminal": "Terminals are not available in this environment. To use the terminal, you will need to continue in another Visual Studio Code setup.",
- "viewsWelcome.terminal.continueOn": "[Continue on...](command:remoteHub.continueOn 'Continue working on this remote repository elsewhere')"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-es/translations/extensions/notebook-markdown-extensions.i18n.json b/i18n/vscode-language-pack-es/translations/extensions/notebook-markdown-extensions.i18n.json
deleted file mode 100644
index c63d0ad8d3..0000000000
--- a/i18n/vscode-language-pack-es/translations/extensions/notebook-markdown-extensions.i18n.json
+++ /dev/null
@@ -1,16 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "package": {
- "description": "Proporciona un potente soporte de lenguaje para archivos Markdown.",
- "displayName": "Matemáticas del bloc de notas con Markdown"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-es/translations/extensions/npm.i18n.json b/i18n/vscode-language-pack-es/translations/extensions/npm.i18n.json
deleted file mode 100644
index 2be7dc652d..0000000000
--- a/i18n/vscode-language-pack-es/translations/extensions/npm.i18n.json
+++ /dev/null
@@ -1,77 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "dist/commands": {
- "noScriptFound": "No se pudo encontrar un script npm válido en la selección."
- },
- "dist/features/bowerJSONContribution": {
- "json.bower.default": "bower.json predeterminado",
- "json.bower.error.repoaccess": "No se pudo ejecutar la solicitud del repositorio de Bower: {0}",
- "json.bower.latest.version": "Más reciente"
- },
- "dist/features/packageJSONContribution": {
- "json.npm.error.repoaccess": "No se pudo ejecutar la solicitud del repositorio de NPM: {0}",
- "json.npm.latestversion": "Última versión del paquete en este momento",
- "json.npm.majorversion": "Coincide con la versión principal más reciente (1.x.x)",
- "json.npm.minorversion": "Coincide con la versión secundaria más reciente (1.2.x)",
- "json.npm.version.hover": "Última versión: {0}",
- "json.package.default": "package.json predeterminado"
- },
- "dist/npmScriptLens": {
- "codelens.debug": "Depurar"
- },
- "dist/npmView": {
- "autoDetectIsOff": "El ajuste \"npm.autoDetect\" está desactivado.",
- "noScripts": "No se han encontrado scripts."
- },
- "dist/scriptHover": {
- "debugScript": "Script de depuración",
- "debugScript.tooltip": "Ejecuta el script en el depurador.",
- "runScript": "Ejecutar script",
- "runScript.tooltip": "Ejecutar el script como una tarea"
- },
- "dist/tasks": {
- "npm.multiplePMWarning": "Usando {0} como administrador de paquetes preferido. Se encontraron varios archivos de bloqueo para {1}. Para resolver este problema, elimine los archivos de bloqueo que no coincidan con su administrador de paquetes preferido o cambie la configuración de \"npm.packageManager\" a un valor distinto de \"auto\".",
- "npm.multiplePMWarning.doNotShow": "No volver a mostrar",
- "npm.multiplePMWarning.learnMore": "Más información",
- "npm.parseError": "Detección de tareas de npm: no se pudo analizar el archivo {0}"
- },
- "package": {
- "command.debug": "Depurar",
- "command.openScript": "Abrir",
- "command.packageManager": "Obtener el administrador de paquetes configurado",
- "command.refresh": "Actualizar",
- "command.run": "Ejecutar",
- "command.runInstall": "Ejecutar instalación",
- "command.runScriptFromFolder": "Ejecutar el script de NPM en la carpeta...",
- "command.runSelectedScript": "Ejecutar script",
- "config.npm.autoDetect": "Controla si los scripts npm deben detectarse automáticamente.",
- "config.npm.enableRunFromFolder": "Habilite la ejecución de scripts NPM contenidos en una carpeta desde el menú contextual del Explorador.",
- "config.npm.enableScriptExplorer": "Habilite una vista de explorador para scripts npm cuando no haya ningún archivo \"package.json\" de nivel superior.",
- "config.npm.exclude": "Configura patrones globales para carpetas que deben excluirse de la detección automática de scripts. ",
- "config.npm.fetchOnlinePackageInfo": "Recupere datos de https://registry.npmjs.org y https://registry.bower.io para proporcionar la finalización automática y la información sobre las características de desplazamiento de puntero en las dependencias de npm.",
- "config.npm.packageManager": "El administrador de paquetes utilizado para ejecutar secuencias de comandos. ",
- "config.npm.packageManager.auto": "Detecta automáticamente el administrador de paquetes que se va a usar para ejecutar los scripts en función de los archivos de bloqueo y los administradores de paquetes instalados.",
- "config.npm.packageManager.npm": "Use npm como administrador de paquetes para ejecutar los scripts.",
- "config.npm.packageManager.pnpm": "Use pnpm como administrador de paquetes para ejecutar los scripts.",
- "config.npm.packageManager.yarn": "Use Yarn como administrador de paquetes para ejecutar los scripts.",
- "config.npm.runSilent": "Ejecutar comandos de npm con la opción '--silent'",
- "config.npm.scriptExplorerAction": "La acción de clic predeterminada utilizada en el explorador de scripts npm: \"open\" o \"run\", el valor predeterminado es \"open\".",
- "config.npm.scriptExplorerExclude": "Una matriz de expresiones regulares que indican qué scripts deben excluirse de la vista de Scripts NPM.",
- "description": "Extensión para agregar soporte a las tareas de secuencias de comandos NPM.",
- "displayName": "Funcionalidad de Npm para VS Code",
- "npm.parseError": "Detección de tareas de npm: no se pudo analizar el archivo {0}",
- "taskdef.path": "La ruta de la carpeta del archivo package.json que proporciona la secuencia de comandos. Se puede omitir.",
- "taskdef.script": "Script npm que debe personalizarse.",
- "view.name": "Scripts Npm ",
- "workspaceTrust": "Esta extensión ejecuta tareas que requieren confianza para ser ejecutadas."
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-es/translations/extensions/objective-c.i18n.json b/i18n/vscode-language-pack-es/translations/extensions/objective-c.i18n.json
deleted file mode 100644
index 4786a1158a..0000000000
--- a/i18n/vscode-language-pack-es/translations/extensions/objective-c.i18n.json
+++ /dev/null
@@ -1,16 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "package": {
- "description": "Proporciona resaltado de sintaxis y correspondencia de corchetes en archivos de Objective-C.",
- "displayName": "Conceptos básicos del lenguaje Objective-C"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-es/translations/extensions/perl.i18n.json b/i18n/vscode-language-pack-es/translations/extensions/perl.i18n.json
deleted file mode 100644
index 257f9ca621..0000000000
--- a/i18n/vscode-language-pack-es/translations/extensions/perl.i18n.json
+++ /dev/null
@@ -1,16 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "package": {
- "description": "Proporciona resaltado de sintaxis y correspondencia de corchetes en archivos de Perl.",
- "displayName": "Conceptos básicos del lenguaje Perl"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-es/translations/extensions/php-language-features.i18n.json b/i18n/vscode-language-pack-es/translations/extensions/php-language-features.i18n.json
deleted file mode 100644
index a5b28c381f..0000000000
--- a/i18n/vscode-language-pack-es/translations/extensions/php-language-features.i18n.json
+++ /dev/null
@@ -1,31 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "dist/features/validationProvider": {
- "goToSetting": "Abrir configuración",
- "noExecutable": "No se puede validar porque no hay ningún ejecutable PHP establecido. Use el ajuste \"php.validate.executablePath\" para configurar el ejecutable de PHP.",
- "noPhp": "No se puede validar porque no se ha encontrado una instalación de PHP. Utilice el ajuste \"php.validate.executablePath\" para configurar el ejecutable de PHP.",
- "unknownReason": "No se pudo ejecutar el archivo PHP con la ruta de acceso: {0}. Se desconoce el motivo.",
- "wrongExecutable": "No se puede validar porque {0} no es un ejecutable PHP válido. Use el ajuste \"php.validate.executablePath\" para configurar el ejecutable PHP."
- },
- "package": {
- "command.untrustValidationExecutable": "No permitir el ejecutable de validación de PHP (como configuración de área de trabajo)",
- "commands.categroy.php": "PHP",
- "configuration.suggest.basic": "Controla si se habilitan las sugerencias del lenguaje PHP integradas. La asistencia sugiere variables y opciones globales de PHP.",
- "configuration.title": "PHP",
- "configuration.validate.enable": "Habilita o deshabilita la validación integrada de PHP.",
- "configuration.validate.executablePath": "Señala al ejecutable PHP.",
- "configuration.validate.run": "Indica si linter se ejecuta al guardar o al escribir.",
- "description": "Proporciona un potente soporte de lenguaje para archivos PHP.",
- "displayName": "Características del lenguaje PHP",
- "workspaceTrust": "La extensión requiere la confianza del área de trabajo cuando el ajuste \"php.validate.executablePath\" cargará una versión de PHP en el área de trabajo."
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-es/translations/extensions/php.i18n.json b/i18n/vscode-language-pack-es/translations/extensions/php.i18n.json
deleted file mode 100644
index 23a346e0fa..0000000000
--- a/i18n/vscode-language-pack-es/translations/extensions/php.i18n.json
+++ /dev/null
@@ -1,16 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "package": {
- "description": "Proporciona resaltado de sintaxis y correspondencia de corchetes en archivos PHP.",
- "displayName": "Conceptos básicos del lenguaje PHP"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-es/translations/extensions/powershell.i18n.json b/i18n/vscode-language-pack-es/translations/extensions/powershell.i18n.json
deleted file mode 100644
index c0e9519e94..0000000000
--- a/i18n/vscode-language-pack-es/translations/extensions/powershell.i18n.json
+++ /dev/null
@@ -1,16 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "package": {
- "description": "Proporciona fragmentos de código, resaltado de sintaxis, correspondencia de corchetes y plegado de código en archivos de Powershell.",
- "displayName": "Conceptos básicos del lenguaje Powershell"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-es/translations/extensions/pug.i18n.json b/i18n/vscode-language-pack-es/translations/extensions/pug.i18n.json
deleted file mode 100644
index 7520e1a2b9..0000000000
--- a/i18n/vscode-language-pack-es/translations/extensions/pug.i18n.json
+++ /dev/null
@@ -1,16 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "package": {
- "description": "Proporciona resaltado de sintaxis y correspondencia de corchetes en archivos de Pug.",
- "displayName": "Conceptos básicos del lenguaje Pug"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-es/translations/extensions/r.i18n.json b/i18n/vscode-language-pack-es/translations/extensions/r.i18n.json
deleted file mode 100644
index 092a06422f..0000000000
--- a/i18n/vscode-language-pack-es/translations/extensions/r.i18n.json
+++ /dev/null
@@ -1,16 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "package": {
- "description": "Proporciona resaltado de sintaxis y correspondencia de corchetes en archivos de R.",
- "displayName": "Conceptos básicos del lenguaje R"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-es/translations/extensions/razor.i18n.json b/i18n/vscode-language-pack-es/translations/extensions/razor.i18n.json
deleted file mode 100644
index 829827961b..0000000000
--- a/i18n/vscode-language-pack-es/translations/extensions/razor.i18n.json
+++ /dev/null
@@ -1,16 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "package": {
- "description": "Proporciona resaltado de sintaxis, correspondencia de corchetes y plegado de código en archivos de Razor.",
- "displayName": "Conceptos básicos del lenguaje Razor"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-es/translations/extensions/references-view.i18n.json b/i18n/vscode-language-pack-es/translations/extensions/references-view.i18n.json
deleted file mode 100644
index 1fbde30c66..0000000000
--- a/i18n/vscode-language-pack-es/translations/extensions/references-view.i18n.json
+++ /dev/null
@@ -1,73 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "dist/calls/model": {
- "noresult": "Sin resultados.",
- "open": "Abrir llamada",
- "title.callers": "Autores de llamada de",
- "title.calls": "Llamadas de"
- },
- "dist/references/index": {
- "title": "Referencias"
- },
- "dist/references/model": {
- "noresult": "Sin resultados.",
- "open": "Abrir referencia",
- "result.1": "{0} resultado en {1} archivo",
- "result.1n": "{0} resultado en {1} archivos",
- "result.n1": "{0} resultados en {1} archivo",
- "result.nm": "{0} resultados en {1} archivos"
- },
- "dist/tree": {
- "noresult": "Sin resultados.",
- "noresult2": "No hay resultados. Intente ejecutar de nuevo una búsqueda anterior:",
- "placeholder": "Seleccionar búsqueda de referencia anterior",
- "title": "Referencias",
- "title.rerun": "Volver a ejecutar"
- },
- "dist/types/model": {
- "noresult": "Sin resultados.",
- "title.openType": "Abrir tipo",
- "title.sub": "Subtipos de",
- "title.sup": "Supertipos de"
- },
- "package": {
- "cmd.category.references": "Referencias",
- "cmd.references-view.clear": "Borrar",
- "cmd.references-view.clearHistory": "Borrar historial",
- "cmd.references-view.copy": "Copiar",
- "cmd.references-view.copyAll": "Copiar todo",
- "cmd.references-view.copyPath": "Copiar ruta de acceso",
- "cmd.references-view.findImplementations": "Buscar todas las implementaciones",
- "cmd.references-view.findReferences": "Buscar todas las referencias",
- "cmd.references-view.next": "Ir a la referencia siguiente",
- "cmd.references-view.pickFromHistory": "Mostrar historial",
- "cmd.references-view.prev": "Ir a referencia anterior",
- "cmd.references-view.refind": "Volver a ejecutar",
- "cmd.references-view.refresh": "Actualizar",
- "cmd.references-view.removeCallItem": "Descartar",
- "cmd.references-view.removeReferenceItem": "Descartar",
- "cmd.references-view.removeTypeItem": "Descartar",
- "cmd.references-view.showCallHierarchy": "Mostrar jerarquía de llamadas",
- "cmd.references-view.showIncomingCalls": "Mostrar llamadas entrantes",
- "cmd.references-view.showOutgoingCalls": "Mostrar llamadas salientes",
- "cmd.references-view.showSubtypes": "Mostrar subtipos",
- "cmd.references-view.showSupertypes": "Mostrar supertipos",
- "cmd.references-view.showTypeHierarchy": "Mostrar jerarquía de tipos",
- "config.references.preferredLocation": "Controla si se invoca 'Inspeccionar referencias' o 'Buscar referencias' al seleccionar referencias de lente de código",
- "config.references.preferredLocation.peek": "Mostrar referencias en el editor de inspección.",
- "config.references.preferredLocation.view": "Mostrar referencias en vista independiente.",
- "container.title": "Referencias",
- "description": "Hacer referencia a los resultados de la búsqueda como una vista independiente y estable en la barra lateral",
- "displayName": "Vista de búsqueda de referencia",
- "view.title": "Resultados"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-es/translations/extensions/ruby.i18n.json b/i18n/vscode-language-pack-es/translations/extensions/ruby.i18n.json
deleted file mode 100644
index bf4ad733b6..0000000000
--- a/i18n/vscode-language-pack-es/translations/extensions/ruby.i18n.json
+++ /dev/null
@@ -1,16 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "package": {
- "description": "Proporciona resaltado de sintaxis y correspondencia de corchetes en archivos de Ruby.",
- "displayName": "Conceptos básicos del lenguaje Ruby"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-es/translations/extensions/rust.i18n.json b/i18n/vscode-language-pack-es/translations/extensions/rust.i18n.json
deleted file mode 100644
index 7a23ab0ce0..0000000000
--- a/i18n/vscode-language-pack-es/translations/extensions/rust.i18n.json
+++ /dev/null
@@ -1,16 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "package": {
- "description": "Proporciona resaltado de sintaxis y correspondencia de corchetes en archivos de Rust.",
- "displayName": "Conceptos básicos del lenguaje Rust"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-es/translations/extensions/scss.i18n.json b/i18n/vscode-language-pack-es/translations/extensions/scss.i18n.json
deleted file mode 100644
index 659d1aa395..0000000000
--- a/i18n/vscode-language-pack-es/translations/extensions/scss.i18n.json
+++ /dev/null
@@ -1,16 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "package": {
- "description": "Proporciona resaltado de sintaxis, correspondencia de corchetes y plegado de código en archivos de SCSS.",
- "displayName": "Conceptos básicos del lenguaje SCSS"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-es/translations/extensions/shaderlab.i18n.json b/i18n/vscode-language-pack-es/translations/extensions/shaderlab.i18n.json
deleted file mode 100644
index 78b8ca9a46..0000000000
--- a/i18n/vscode-language-pack-es/translations/extensions/shaderlab.i18n.json
+++ /dev/null
@@ -1,16 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "package": {
- "description": "Proporciona resaltado de sintaxis y correspondencia de corchetes en archivos de Shaderlab.",
- "displayName": "Conceptos básicos del lenguaje Shaderlab"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-es/translations/extensions/shellscript.i18n.json b/i18n/vscode-language-pack-es/translations/extensions/shellscript.i18n.json
deleted file mode 100644
index 7b50a7d2f9..0000000000
--- a/i18n/vscode-language-pack-es/translations/extensions/shellscript.i18n.json
+++ /dev/null
@@ -1,16 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "package": {
- "description": "Proporciona resaltado de sintaxis y correspondencia de corchetes en archivos de script de shell.",
- "displayName": "Conceptos básicos del lenguaje Shell Script"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-es/translations/extensions/simple-browser.i18n.json b/i18n/vscode-language-pack-es/translations/extensions/simple-browser.i18n.json
deleted file mode 100644
index 136ef9ded1..0000000000
--- a/i18n/vscode-language-pack-es/translations/extensions/simple-browser.i18n.json
+++ /dev/null
@@ -1,30 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "dist/extension": {
- "openTitle": "Abrir en el explorador simple",
- "simpleBrowser.show.placeholder": "https://example.com",
- "simpleBrowser.show.prompt": "Escribir la dirección URL que se va a visitar"
- },
- "dist/simpleBrowserView": {
- "control.back.title": "Atrás",
- "control.forward.title": "Reenviar",
- "control.openExternal.title": "Abrir en el explorador",
- "control.reload.title": "Volver a cargar",
- "view.iframe-focused": "Bloqueo del foco",
- "view.title": "Explorador simple"
- },
- "package": {
- "configuration.focusLockIndicator.enabled.description": "Habilita o deshabilita el indicador flotante que se muestra cuando se tiene el foco en el explorador sencillo.",
- "description": "Vista web integrada muy básica para mostrar contenido web.",
- "displayName": "Explorador simple"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-es/translations/extensions/sql.i18n.json b/i18n/vscode-language-pack-es/translations/extensions/sql.i18n.json
deleted file mode 100644
index 9f0318ba13..0000000000
--- a/i18n/vscode-language-pack-es/translations/extensions/sql.i18n.json
+++ /dev/null
@@ -1,16 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "package": {
- "description": "Proporciona resaltado de sintaxis y correspondencia de corchetes en archivos de SQL.",
- "displayName": "Conceptos básicos del lenguaje SQL"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-es/translations/extensions/swift.i18n.json b/i18n/vscode-language-pack-es/translations/extensions/swift.i18n.json
deleted file mode 100644
index 036003e1ad..0000000000
--- a/i18n/vscode-language-pack-es/translations/extensions/swift.i18n.json
+++ /dev/null
@@ -1,16 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "package": {
- "description": "Proporciona fragmentos de código, resaltado de sintaxis y correspondencia de corchetes en archivos de Swift.",
- "displayName": "Conceptos básicos del lenguaje Swift"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-es/translations/extensions/testing-editor-contributions.i18n.json b/i18n/vscode-language-pack-es/translations/extensions/testing-editor-contributions.i18n.json
deleted file mode 100644
index dcb7d8fe25..0000000000
--- a/i18n/vscode-language-pack-es/translations/extensions/testing-editor-contributions.i18n.json
+++ /dev/null
@@ -1,27 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "package": {
- "action.debug": "Depurar",
- "action.run": "Ejecutar pruebas",
- "config.enableCodeLens": "Indica si CodeLens debe estar visible en los casos y conjuntos de pruebas.",
- "config.enableProblemDiagnostics": "Indica si los errores de las pruebas deben notificarse en la vista \"problemas\" y mostrarse como errores en el editor.",
- "description": "Proporciona la experiencia en el editor para las pruebas y los resultados de estas.",
- "displayName": "Contribuciones del editor de pruebas",
- "state.failed": "Error",
- "state.passed": "Correcto",
- "state.passedWithDuration": "Se ha superado en {0}",
- "tooltip.debug": "Depurar {0}",
- "tooltip.run": "Ejecutar {0}",
- "tooltip.runState": "{0}/{1} pruebas superadas",
- "tooltip.runStateWithDuration": "{0}/{1} pruebas superadas en {2}"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-es/translations/extensions/theme-abyss.i18n.json b/i18n/vscode-language-pack-es/translations/extensions/theme-abyss.i18n.json
deleted file mode 100644
index 4cccbfe53e..0000000000
--- a/i18n/vscode-language-pack-es/translations/extensions/theme-abyss.i18n.json
+++ /dev/null
@@ -1,17 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "package": {
- "description": "Tema Abyss para Visual Studio Code",
- "displayName": "Tema Abyss",
- "themeLabel": "Abyss"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-es/translations/extensions/theme-defaults.i18n.json b/i18n/vscode-language-pack-es/translations/extensions/theme-defaults.i18n.json
deleted file mode 100644
index ecf0c8d135..0000000000
--- a/i18n/vscode-language-pack-es/translations/extensions/theme-defaults.i18n.json
+++ /dev/null
@@ -1,23 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "package": {
- "darkColorThemeLabel": "Oscuro (Visual Studio)",
- "darkPlusColorThemeLabel": "Oscuro+ (oscuro predeterminado)",
- "description": "Temas claro y oscuro predeterminados de Visual Studio",
- "displayName": "Temas por defecto",
- "hcColorThemeLabel": "Contraste alto oscuro",
- "lightColorThemeLabel": "Claro (Visual Studio)",
- "lightHcColorThemeLabel": "Contraste alto claro",
- "lightPlusColorThemeLabel": "Claro+ (claro predeterminado)",
- "minimalIconThemeLabel": "Mínimo (Visual Studio Code)"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-es/translations/extensions/theme-kimbie-dark.i18n.json b/i18n/vscode-language-pack-es/translations/extensions/theme-kimbie-dark.i18n.json
deleted file mode 100644
index 6c5b8a3742..0000000000
--- a/i18n/vscode-language-pack-es/translations/extensions/theme-kimbie-dark.i18n.json
+++ /dev/null
@@ -1,17 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "package": {
- "description": "Tema Kinbie Dark para Visual Studio Code",
- "displayName": "Tema Kimbie Oscuro",
- "themeLabel": "Kimbie oscuro"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-es/translations/extensions/theme-monokai-dimmed.i18n.json b/i18n/vscode-language-pack-es/translations/extensions/theme-monokai-dimmed.i18n.json
deleted file mode 100644
index 1b99d1f276..0000000000
--- a/i18n/vscode-language-pack-es/translations/extensions/theme-monokai-dimmed.i18n.json
+++ /dev/null
@@ -1,17 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "package": {
- "description": "Tema atenuado Monokai para Visual Studio Code",
- "displayName": "Tema Monokai atenuado",
- "themeLabel": "Monokai atenuado"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-es/translations/extensions/theme-monokai.i18n.json b/i18n/vscode-language-pack-es/translations/extensions/theme-monokai.i18n.json
deleted file mode 100644
index 5bd83dd32f..0000000000
--- a/i18n/vscode-language-pack-es/translations/extensions/theme-monokai.i18n.json
+++ /dev/null
@@ -1,17 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "package": {
- "description": "Tema Monokai para Visual Studio Code",
- "displayName": "Tema Monokai",
- "themeLabel": "Monokai"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-es/translations/extensions/theme-quietlight.i18n.json b/i18n/vscode-language-pack-es/translations/extensions/theme-quietlight.i18n.json
deleted file mode 100644
index 4b2aad245d..0000000000
--- a/i18n/vscode-language-pack-es/translations/extensions/theme-quietlight.i18n.json
+++ /dev/null
@@ -1,17 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "package": {
- "description": "Tema Quiet Light para Visual Studio Code",
- "displayName": "Tema Quiet Light",
- "themeLabel": "Quiet claro"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-es/translations/extensions/theme-red.i18n.json b/i18n/vscode-language-pack-es/translations/extensions/theme-red.i18n.json
deleted file mode 100644
index 55e7f0b42a..0000000000
--- a/i18n/vscode-language-pack-es/translations/extensions/theme-red.i18n.json
+++ /dev/null
@@ -1,17 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "package": {
- "description": "Tema rojo para Visual Studio Code",
- "displayName": "Tema rojo",
- "themeLabel": "Rojo"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-es/translations/extensions/theme-seti.i18n.json b/i18n/vscode-language-pack-es/translations/extensions/theme-seti.i18n.json
deleted file mode 100644
index 6b38c9011b..0000000000
--- a/i18n/vscode-language-pack-es/translations/extensions/theme-seti.i18n.json
+++ /dev/null
@@ -1,17 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "package": {
- "description": "Un tema de icono de archivo basados en Seti IU",
- "displayName": "Tema del icono de archivo Seti",
- "themeLabel": "Seti (Visual Studio Code)"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-es/translations/extensions/theme-solarized-dark.i18n.json b/i18n/vscode-language-pack-es/translations/extensions/theme-solarized-dark.i18n.json
deleted file mode 100644
index 68ca9010c8..0000000000
--- a/i18n/vscode-language-pack-es/translations/extensions/theme-solarized-dark.i18n.json
+++ /dev/null
@@ -1,17 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "package": {
- "description": "Tema oscuro Solarized para Visual Studio Code",
- "displayName": "Tema oscuro Solarized ",
- "themeLabel": "Oscuro Solarized "
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-es/translations/extensions/theme-solarized-light.i18n.json b/i18n/vscode-language-pack-es/translations/extensions/theme-solarized-light.i18n.json
deleted file mode 100644
index 45d9d441f1..0000000000
--- a/i18n/vscode-language-pack-es/translations/extensions/theme-solarized-light.i18n.json
+++ /dev/null
@@ -1,17 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "package": {
- "description": "Tema de luz solarizada para Visual Studio Code",
- "displayName": "Tema claro Solarized ",
- "themeLabel": "Claro Solarized "
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-es/translations/extensions/theme-tomorrow-night-blue.i18n.json b/i18n/vscode-language-pack-es/translations/extensions/theme-tomorrow-night-blue.i18n.json
deleted file mode 100644
index 4ec0bee65a..0000000000
--- a/i18n/vscode-language-pack-es/translations/extensions/theme-tomorrow-night-blue.i18n.json
+++ /dev/null
@@ -1,17 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "package": {
- "description": "Tema Tomorrow Night Blue para Visual Studio Code",
- "displayName": "Tema Tomorrow Night Blue",
- "themeLabel": "Tomorrow Night Blue"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-es/translations/extensions/typescript-basics.i18n.json b/i18n/vscode-language-pack-es/translations/extensions/typescript-basics.i18n.json
deleted file mode 100644
index a0705648fd..0000000000
--- a/i18n/vscode-language-pack-es/translations/extensions/typescript-basics.i18n.json
+++ /dev/null
@@ -1,16 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "package": {
- "description": "Proporciona fragmentos de código, resaltado de sintaxis, correspondencia de corchetes y plegado de código en archivos de TypeScript.",
- "displayName": "Elementos básicos del lenguaje TypeScript"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-es/translations/extensions/typescript-language-features.i18n.json b/i18n/vscode-language-pack-es/translations/extensions/typescript-language-features.i18n.json
deleted file mode 100644
index 21b62a9173..0000000000
--- a/i18n/vscode-language-pack-es/translations/extensions/typescript-language-features.i18n.json
+++ /dev/null
@@ -1,328 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "dist/languageFeatures/codeLens/baseCodeLensProvider": {
- "referenceErrorLabel": "No se pudieron determinar las referencias"
- },
- "dist/languageFeatures/codeLens/implementationsCodeLens": {
- "manyImplementationLabel": "{0} implementaciones",
- "oneImplementationLabel": "1 implementación"
- },
- "dist/languageFeatures/codeLens/referencesCodeLens": {
- "manyReferenceLabel": "{0} referencias",
- "oneReferenceLabel": "1 referencia"
- },
- "dist/languageFeatures/completions": {
- "acquiringTypingsDetail": "Adquiriendo definiciones de typings para IntelliSense.",
- "acquiringTypingsLabel": "Adquiriendo typings...",
- "selectCodeAction": "Seleccione acción de código para aplicar"
- },
- "dist/languageFeatures/directiveCommentCompletions": {
- "ts-check": "Habilita la verificación semántica en un archivo de JavaScript. Debe estar al principio del archivo.",
- "ts-expect-error": "Suprime los errores de @ts-check en la siguiente línea de un archivo, esperando que al menos exista uno.",
- "ts-ignore": "Suprime los errores @ts-check en la siguiente línea de un archivo. ",
- "ts-nocheck": "Deshabilita la verificación semántica en un archivo de JavaScript. Debe estar al principio del archivo."
- },
- "dist/languageFeatures/fileReferences": {
- "error.noResource": "Error al buscar referencias de archivo. No se ha proporcionado ningún recurso.",
- "error.unknownFile": "Error al buscar referencias de archivo. Tipo de archivo desconocido.",
- "error.unsupportedLanguage": "Error al buscar referencias de archivo. Tipo de archivo no compatible.",
- "error.unsupportedVersion": "Error al buscar referencias de archivo. Se requiere TypeScript 4.2 o versiones posteriores.",
- "progress.title": "Buscando referencias de archivo"
- },
- "dist/languageFeatures/fixAll": {
- "autoFix.label": "Corregir todos los problemas de JS/TS que se pueden corregir",
- "autoFix.missingImports.label": "Agregar todas las importaciones que faltan",
- "autoFix.unused.label": "Quitar todo el código sin utilizar"
- },
- "dist/languageFeatures/jsDocCompletions": {
- "typescript.jsDocCompletionItem.documentation": "Comentario de JSDoc"
- },
- "dist/languageFeatures/organizeImports": {
- "organizeImportsAction.title": "Organizar Importaciones",
- "sortImportsAction.title": "Ordenar las importaciones"
- },
- "dist/languageFeatures/quickFix": {
- "fixAllInFileLabel": "{0} (Corregir todo en el archivo)"
- },
- "dist/languageFeatures/refactor": {
- "extractConstant.disabled.reason": "No se puede extraer la selección actual",
- "extractConstant.disabled.title": "Extraer a una constante",
- "extractFunction.disabled.reason": "No se puede extraer la selección actual",
- "extractFunction.disabled.title": "Extraer a una función",
- "refactor.documentation.title": "Más información sobre las refactorizaciones JS/TS",
- "refactoringFailed": "No se pudo aplicar la refactorización"
- },
- "dist/languageFeatures/rename": {
- "fileRenameFail": "Error al cambiar el nombre del archivo"
- },
- "dist/languageFeatures/sourceDefinition": {
- "error.noReferences": "No se ha encontrado ninguna definición.",
- "error.noResource": "Error al ir a la definición de origen. No se ha proporcionado ningún recurso.",
- "error.unknownFile": "Error al ir a la definición de origen. Tipo de archivo no conocido.",
- "error.unsupportedLanguage": "Error al ir a la definición de origen. Tipo de archivo no admitido.",
- "error.unsupportedVersion": "Error al ir a la definición de origen. Requiere TypeScript 4.7+.",
- "progress.title": "Buscando definiciones de origen"
- },
- "dist/languageFeatures/tsconfig": {
- "documentLink.tooltip": "Seguir vínculo",
- "openTsconfigExtendsModuleFail": "Error al resolver {0} como módulo"
- },
- "dist/languageFeatures/updatePathsOnRename": {
- "accept.title": "Sí",
- "always.title": "Actualizar siempre las importaciones automáticamente",
- "moreFile": "...1 archivo más que no se muestra",
- "moreFiles": "...{0} archivos más que no se muestran",
- "never.title": "No actualizar nunca las importaciones automáticamente",
- "prompt": "¿Actualizar las importaciones para \"{0}\"?",
- "promptMoreThanOne": "¿Actualizar importaciones para los siguientes {0} archivos?",
- "reject.title": "No",
- "renameProgress.title": "Comprobación de actualización de importaciones de JS/TS"
- },
- "dist/task/taskProvider": {
- "badTsConfig": "La tarea Typescript en tasks.json contiene \"\\\\\". Las tareas de Typescript tsconfig deben usar \"/\"",
- "buildAndWatchTscLabel": "inspección: {0}",
- "buildTscLabel": "compilación: {0}"
- },
- "dist/tsServer/serverProcess.electron": {
- "noServerFound": "La ruta de acceso {0} no apunta a una instalación válida de tsserver. Se usará la versión de TypeScript del paquete."
- },
- "dist/tsServer/versionManager": {
- "allow": "Permitir",
- "dismiss": "Descartar",
- "learnMore": "Más información sobre cómo administrar versiones de TypeScript",
- "promptUseWorkspaceTsdk": "Esta área de trabajo contiene una versión de TypeScript. ¿Quiere usar la versión de TypeScript del área de trabajo para las características de lenguaje TypeScript y JavaScript?",
- "selectTsVersion": "Seleccionar la versión de TypeScript usada para las características del lenguaje de JavaScript y TypeScript",
- "suppress prompt": "Nunca en esta área de trabajo",
- "useVSCodeVersionOption": "Utilizar la versión de VS Code",
- "useWorkspaceVersionOption": "Usar versión del área de trabajo"
- },
- "dist/typescriptServiceClient": {
- "noServerFound": "La ruta de acceso {0} no apunta a una instalación válida de tsserver. Se usará la versión de TypeScript del paquete.",
- "openTsServerLog.openFileFailedFailed": "No se puede abrir el archivo de registro del servidor de TS",
- "serverDied": "El servicio de lenguaje Typescript finalizó de forma inesperada cinco veces en los últimos cinco minutos.",
- "serverDiedAfterStart": "El servicio de lenguaje TypeScript finalizó de forma inesperada cinco veces después de haberse iniciado y no se reiniciará.",
- "serverDiedOnce": "El servicio de lenguaje TypeScript se cerró inesperadamente.",
- "serverDiedReportIssue": "Notificar problema",
- "serverExitedWithError": "El servidor de lenguaje TypeScript terminó con error. Mensaje de error: {0}",
- "serverLoading.progress": "Inicialización de características del lenguaje JS/TS",
- "typescript.openTsServerLog.enableAndReloadOption": "Habilite el registro y reinicie el servidor TS",
- "typescript.openTsServerLog.loggingNotEnabled": "Los registros del servidor TS están desconectados. Establezca \"typescript.tsserver.log\" y reinicie el servidor TS para activar los registros.",
- "typescript.openTsServerLog.noLogFile": "El servidor de TS no ha iniciado el registro.",
- "usingOldTsVersion.detail": "El área de trabajo usa una versión anterior de TypeScript ({0}).\r\n\r\nAntes de informar de un problema, actualice el área de trabajo para usar la última versión estable de TypeScript y comprobar que el error no se haya corregido ya.",
- "usingOldTsVersion.title": "Actualice su versión de TypeScript."
- },
- "dist/ui/intellisenseStatus": {
- "pending.detail": "Cargando estado de IntelliSense",
- "resolved.command.title.createJsconfig": "Crear jsconfig",
- "resolved.command.title.createTsconfig": "Crear tsconfig",
- "resolved.command.title.open": "Abrir archivo de configuración",
- "resolved.detail.noJsConfig": "Sin jsconfig",
- "resolved.detail.noOpenedFolders": "No hay carpetas abiertas",
- "resolved.detail.noTsConfig": "Sin tsconfig",
- "resolved.detail.notInOpenedFolder": "El archivo no forma parte de las carpetas abiertas",
- "statusItem.name": "Estado de JS/TS IntelliSense",
- "syntaxOnly.command.title.learnMore": "Más información",
- "syntaxOnly.detail": "IntelliSense no está disponible para todo el proyecto",
- "syntaxOnly.text": "Modo parcial"
- },
- "dist/ui/versionStatus": {
- "versionStatus.command": "Seleccionar versión",
- "versionStatus.detail": "Versión de TypeScript",
- "versionStatus.name": "Versión de TypeScript"
- },
- "dist/utils/api": {
- "invalidVersion": "versión inválida"
- },
- "dist/utils/logger": {
- "channelName": "TypeScript"
- },
- "dist/utils/tsconfig": {
- "typescript.configureJsconfigQuickPick": "Configurar jsconfig.json",
- "typescript.configureTsconfigQuickPick": "Configurar tsconfig.json",
- "typescript.noJavaScriptProjectConfig": "El archivo no forma parte de un proyecto JavaScript. Consulte la [documentación jsconfig.json]({0}) para obtener más información.",
- "typescript.noTypeScriptProjectConfig": "El archivo no forma parte de un proyecto TypeScript. Consulte la [documentación tsconfig.json]({0}) para obtener más información.",
- "typescript.projectConfigCouldNotGetInfo": "No se pudo determinar el proyecto de TypeScript o JavaScript",
- "typescript.projectConfigNoWorkspace": "Abra una carpeta en VS Code para usar un proyecto de TypeScript o JavaScript",
- "typescript.projectConfigUnsupportedFile": "No se pudo determinar el proyecto de TypeScript o JavaScript. Tipo de archivo no compatible"
- },
- "package": {
- "codeActions.refactor.extract.constant.description": "Extraiga la expresión en constante.",
- "codeActions.refactor.extract.constant.title": "Extraer constante",
- "codeActions.refactor.extract.function.description": "Extraiga la expresión al método o a la función.",
- "codeActions.refactor.extract.function.title": "Extraer función",
- "codeActions.refactor.extract.interface.description": "Extraer el tipo a una interfaz.",
- "codeActions.refactor.extract.interface.title": "Extraer interfaz",
- "codeActions.refactor.extract.type.description": "Extraer tipo en un alias de tipo.",
- "codeActions.refactor.extract.type.title": "Extraer tipo",
- "codeActions.refactor.move.newFile.description": "Mover la expresión a un nuevo archivo.",
- "codeActions.refactor.move.newFile.title": "Mover a un nuevo archivo",
- "codeActions.refactor.rewrite.arrow.braces.description": "Agregar o quitar llaves en una función de flecha.",
- "codeActions.refactor.rewrite.arrow.braces.title": "Reescribir llaves de flecha",
- "codeActions.refactor.rewrite.export.description": "Convierta entre la exportación predeterminada y la exportación con nombre.",
- "codeActions.refactor.rewrite.export.title": "Convertir exportación",
- "codeActions.refactor.rewrite.import.description": "Convertir entre importaciones con nombre e importaciones del espacio de nombres.",
- "codeActions.refactor.rewrite.import.title": "Convertir importación",
- "codeActions.refactor.rewrite.parameters.toDestructured.title": "Convertir los parámetros en un objeto desestructurado",
- "codeActions.refactor.rewrite.property.generateAccessors.description": "Generar los descriptores de acceso \"get\" y \"set\"",
- "codeActions.refactor.rewrite.property.generateAccessors.title": "Generar descriptores de acceso",
- "codeActions.source.organizeImports.title": "Organizar Importaciones",
- "configuration.implicitProjectConfig.checkJs": "Habilita o deshabilita la comprobación semántica de los archivos de JavaScript. Los archivos \"jsconfig.json\" o \"tsconfig.json\" existentes invalidan esta opción.",
- "configuration.implicitProjectConfig.experimentalDecorators": "Habilite o deshabilite \"experimentalDecorators\" en los archivos de JavaScript que no forman parte de un proyecto. Los archivos \"jsconfig.json\" o \"tsconfig.json\" existentes invalidan esta opción.",
- "configuration.implicitProjectConfig.module": "Establece el sistema de módulos para el programa. Más información: https://www.typescriptlang.org/tsconfig#module.",
- "configuration.implicitProjectConfig.strictFunctionTypes": "Enable/disable [strict function types](https://www.typescriptlang.org/tsconfig#strictFunctionTypes) in JavaScript and TypeScript files that are not part of a project. Existing `jsconfig.json` or `tsconfig.json` files override this setting.",
- "configuration.implicitProjectConfig.strictNullChecks": "Enable/disable [strict null checks](https://www.typescriptlang.org/tsconfig#strictNullChecks) in JavaScript and TypeScript files that are not part of a project. Existing `jsconfig.json` or `tsconfig.json` files override this setting.",
- "configuration.implicitProjectConfig.target": "Establezca la versión del lenguaje JavaScript de destino para las declaraciones JavaScript emitidas e incluya las declaraciones de biblioteca. Más información: https://www.typescriptlang.org/tsconfig#target.",
- "configuration.inlayHints.parameterNames.suppressWhenArgumentMatchesName": "Suprimir las sugerencias de nombre de parámetro en argumentos cuyo texto sea idéntico al nombre del parámetro.",
- "configuration.inlayHints.variableTypes.suppressWhenTypeMatchesName": "Suprima sugerencias de tipo en las variables cuyo nombre sea idéntico al nombre de tipo. Requiere el uso de TypeScript 4.8+ en el área de trabajo.",
- "configuration.javascript.checkJs.checkJs.deprecation": "Esta configuración está en desuso en favor de \"js/ts.implicitProjectConfig.checkJs\".",
- "configuration.javascript.checkJs.experimentalDecorators.deprecation": "Esta configuración está en desuso en favor de \"js/ts.implicitProjectConfig.experimentalDecorators\".",
- "configuration.suggest.autoImports": "Habilita o deshabilita las sugerencias de importación automática.",
- "configuration.suggest.classMemberSnippets.enabled": "Habilite o deshabilite las finalizaciones de fragmentos de código para los miembros de clase. Requiere el uso de TypeScript 4.5+ en el área de trabajo",
- "configuration.suggest.completeFunctionCalls": "Complete las funciones con la signatura de parámetro.",
- "configuration.suggest.completeJSDocs": "Habilitar/deshabilitar sugerencia para completar comentarios JSDoc.",
- "configuration.suggest.includeAutomaticOptionalChainCompletions": "Habilite/deshabilite la visualización de terminaciones en valores potencialmente indefinidos que insertan una llamada en cadena opcional. Requiere TS 3.7+ y que las comprobaciones estrictas de elementos nulos.estén habilitadas.",
- "configuration.suggest.includeCompletionsForImportStatements": "Habilita o deshabilita las finalizaciones del estilo de importación automática en las instrucciones de importación escritas parcialmente. Requiere el uso de TypeScript 4.3 o versiones posteriores en el área de trabajo.",
- "configuration.suggest.includeCompletionsWithSnippetText": "Habilita o deshabilita las finalizaciones de fragmentos de código del servidor de TS. Requiere el uso de TypeScript 4.3 o versiones posteriores en el área de trabajo.",
- "configuration.suggest.jsdoc.generateReturns": "Habilita o deshabilita la generación de anotaciones `@returns` para las plantillas de JSDoc. Requiere el uso de TypeScript 4.2 y versiones posteriores en el área de trabajo.",
- "configuration.suggest.names": "Habilite/deshabilite la inclusión de nombres únicos del archivo en las sugerencias de JavaScript. Tenga en cuenta que las sugerencias de nombre siempre están deshabilitadas en el código JavaScript que se comprueba semánticamente mediante \"@ts-check\" o \"checkJs\".",
- "configuration.suggest.objectLiteralMethodSnippets.enabled": "Habilita o deshabilita las finalizaciones de fragmentos de código para los métodos de literales de objeto. Requiere el uso de TypeScript 4.7+ en el área de trabajo",
- "configuration.suggest.paths": "Habilite/deshabilite las sugerencias para rutas de acceso en instrucciones de importación y requiera llamadas.",
- "configuration.surveys.enabled": "Habilitar/deshabilitar las encuestas ocasionales que nos ayudan a mejorar la compatibilidad de JavaScript y TypeScript en VS Code.",
- "configuration.tsserver.experimental.enableProjectDiagnostics": "(Experimental) Habilita los informes de errores de todo el proyecto.",
- "configuration.tsserver.maxTsServerMemory": "La cantidad máxima de memoria (en MB) a asignar al proceso del servidor TypeScript.",
- "configuration.tsserver.useSeparateSyntaxServer": "Habilite o deshabilite la generación de un servidor TypeScript independiente que pueda responder más rápidamente a las operaciones relacionadas con la sintaxis, como el cálculo de los símbolos de documento de plegado o de proceso. Requiere el uso de TypeScript 3.4.0 o posterior en el área de trabajo.",
- "configuration.tsserver.useSeparateSyntaxServer.deprecation": "Esta configuración ha quedado en desuso en favor de \"typescript.tsserver.useSyntaxServer\".",
- "configuration.tsserver.useSyntaxServer": "Controla si TypeScript inicia un servidor dedicado para controlar de forma más rápida las operaciones relacionadas con la sintaxis, como calcular el plegado de código.",
- "configuration.tsserver.useSyntaxServer.always": "Use un servidor de sintaxis más ligero para controlar todas las operaciones de IntelliSense. Este servidor de sintaxis solo puede proporcionar IntelliSense para los archivos abiertos.",
- "configuration.tsserver.useSyntaxServer.auto": "Generar tanto un servidor completo como uno más ligero dedicado a las operaciones de sintaxis. El servidor de sintaxis se usa para acelerar las operaciones de sintaxis y proporcionar IntelliSense mientras se cargan los proyectos.",
- "configuration.tsserver.useSyntaxServer.never": "No use un servidor de sintaxis dedicado. Use un único servidor para controlar todas las operaciones de IntelliSense.",
- "configuration.tsserver.watchOptions": "Configure qué estrategias de observación se deben utilizar para realizar un seguimiento de los archivos y directorios. Requiere el uso de TypeScript 3.8+ en el área de trabajo.",
- "configuration.tsserver.watchOptions.fallbackPolling": "Cuando se utilizan eventos del sistema de archivos, esta opción especifica la estrategia de sondeo que se utiliza cuando el sistema se queda sin monitores de archivos nativos o no los admite.",
- "configuration.tsserver.watchOptions.fallbackPolling.dynamicPriorityPolling ": "Utilice una cola dinámica en la que los archivos modificados con menos frecuencia se comprueben con menos frecuencia.",
- "configuration.tsserver.watchOptions.fallbackPolling.fixedPollingInterval": "Compruebe cada archivo en busca de cambios varias veces por segundo en un intervalo fijo.",
- "configuration.tsserver.watchOptions.fallbackPolling.priorityPollingInterval": "Compruebe cada archivo en busca de cambios varias veces por segundo, pero utilice la heurística para comprobar ciertos tipos de archivos con menos frecuencia que otros.",
- "configuration.tsserver.watchOptions.synchronousWatchDirectory": "Deshabilite la observación diferida en directorios. La observación diferida es útil cuando pueden producirse muchos cambios en los archivos a la vez (por ejemplo, un cambio en node_modules de ejecutar npm install), pero es posible que desee deshabilitarla con esta marca para algunas configuraciones menos comunes.",
- "configuration.tsserver.watchOptions.watchDirectory": "Estrategia de cómo se observan árboles de directorios completos en sistemas que carecen de funcionalidad recursiva de observación de archivos.",
- "configuration.tsserver.watchOptions.watchDirectory.dynamicPriorityPolling": "Utilice una cola dinámica en la que los directorios modificados con menos frecuencia se comprueben con menos frecuencia.",
- "configuration.tsserver.watchOptions.watchDirectory.fixedChunkSizePolling": "Sondea los directorios en fragmentos a intervalos regulares. Requiere el uso de TypeScript 4.3 o versiones posteriores en el área de trabajo.",
- "configuration.tsserver.watchOptions.watchDirectory.fixedPollingInterval": "Compruebe cada directorio en busca de cambios varias veces por segundo en un intervalo fijo.",
- "configuration.tsserver.watchOptions.watchDirectory.useFsEvents": "Intente utilizar los eventos nativos del sistema operativo/sistema de archivos para los cambios de directorio.",
- "configuration.tsserver.watchOptions.watchFile": "Estrategia de cómo se ven los archivos individuales.",
- "configuration.tsserver.watchOptions.watchFile.dynamicPriorityPolling": "Utilice una cola dinámica en la que los archivos modificados con menos frecuencia se comprueben con menos frecuencia.",
- "configuration.tsserver.watchOptions.watchFile.fixedChunkSizePolling": "Sondea los archivos en fragmentos a intervalos regulares. Requiere el uso de TypeScript 4.3 o versiones posteriores en el área de trabajo.",
- "configuration.tsserver.watchOptions.watchFile.fixedPollingInterval": "Compruebe cada archivo en busca de cambios varias veces por segundo en un intervalo fijo.",
- "configuration.tsserver.watchOptions.watchFile.priorityPollingInterval": "Compruebe cada archivo en busca de cambios varias veces por segundo, pero utilice la heurística para comprobar ciertos tipos de archivos con menos frecuencia que otros.",
- "configuration.tsserver.watchOptions.watchFile.useFsEvents": "Intente utilizar los eventos nativos del sistema operativo/sistema de archivos para los cambios de archivo.",
- "configuration.tsserver.watchOptions.watchFile.useFsEventsOnParentDirectory": "Intente utilizar los eventos nativos del sistema operativo/sistema de archivos para escuchar los cambios en los directorios contenidos de un archivo. Puede utilizar menos observadores de archivos, pero podría ser menos preciso.",
- "configuration.typescript": "TypeScript",
- "description": "Proporciona soporte de lenguaje enriquecido para JavaScript y TypeScript.",
- "displayName": "Características del lenguaje JavaScript y TypeScript",
- "format.insertSpaceAfterCommaDelimiter": "Define el tratamiento del espacio después de un delimitador de coma.",
- "format.insertSpaceAfterConstructor": "Define el tratamiento de los espacios después de la palabra clave de constructor.",
- "format.insertSpaceAfterFunctionKeywordForAnonymousFunctions": "Define el tratamiento del espacio después de la palabra clave function para las funciones anónimas.",
- "format.insertSpaceAfterKeywordsInControlFlowStatements": "Define el tratamiento del espacio después de las palabras clave en una instrucción de flujo de control.",
- "format.insertSpaceAfterOpeningAndBeforeClosingEmptyBraces": "Define el tratamiento de los espacios después de una llave de apertura y antes de una llave de cierre vacías.",
- "format.insertSpaceAfterOpeningAndBeforeClosingJsxExpressionBraces": "Define el tratamiento del espacio después de la llave de apertura y antes de la llave de cierre de expresiones JSX.",
- "format.insertSpaceAfterOpeningAndBeforeClosingNonemptyBraces": "Define el tratamiento de los espacios después de la llave de apertura y antes de la llave de cierre en instrucciones que no están vacías.",
- "format.insertSpaceAfterOpeningAndBeforeClosingNonemptyBrackets": "Define el manejo del espacio después de abrir y antes de cerrar los soportes no vacíos.",
- "format.insertSpaceAfterOpeningAndBeforeClosingNonemptyParenthesis": "Define el manejo del espacio después de abrir y antes de cerrar paréntesis no vacíos.",
- "format.insertSpaceAfterOpeningAndBeforeClosingTemplateStringBraces": "Define el tratamiento del espacio después de la llave de apertura y antes de la llave de cierre de cadenas de plantilla.",
- "format.insertSpaceAfterSemicolonInForStatements": "Define el tratamiento del espacio después de punto y coma en una instrucción for.",
- "format.insertSpaceAfterTypeAssertion": "Define el tratamiento de los espacios después de las aserciones de tipos en TypeScript.",
- "format.insertSpaceBeforeAndAfterBinaryOperators": "Define el tratamiento del espacio después de un operador binario.",
- "format.insertSpaceBeforeFunctionParenthesis": "Define el tratamiento del espacio antes de los paréntesis de argumentos de función.",
- "format.placeOpenBraceOnNewLineForControlBlocks": "Define si una llave de apertura se incluye en una nueva línea para los bloques de control o no.",
- "format.placeOpenBraceOnNewLineForFunctions": "Define si una llave de apertura se incluye en una nueva línea para las funciones o no.",
- "format.semicolons": "Define el control de punto y coma opcional. Requiere el uso de TypeScript 3.7 o posterior en el área de trabajo.",
- "format.semicolons.ignore": "No inserte ni quite los puntos y comas.",
- "format.semicolons.insert": "Inserte punto y coma en los extremos de la instrucción.",
- "format.semicolons.remove": "Elimine los puntos y comas innecesarios.",
- "goToProjectConfig.title": "Ir a configuración del proyecto",
- "inlayHints.parameterNames.all": "Habilitar las sugerencias de nombre de parámetro para argumentos literales y no literales.",
- "inlayHints.parameterNames.literals": "Habilitar las sugerencias de nombre de parámetro solo para los argumentos literales.",
- "inlayHints.parameterNames.none": "Deshabilitar las sugerencias de nombre de parámetro.",
- "javascript.format.enable": "Habilita o deshabilita el formateador predeterminado de JavaScript.",
- "javascript.preferences.jsxAttributeCompletionStyle.auto": "Inserte `={}` o `=\"\"` después de los nombres de atributo según el tipo de propiedad. Consulte `javascript.preferences.quoteStyle` para controlar el tipo de comillas usadas para los atributos de cadena.",
- "javascript.referencesCodeLens.enabled": "Habilitar/deshabilitar las referencias de CodeLens en los archivos de JavaScript.",
- "javascript.referencesCodeLens.showOnAllFunctions": "Habilitar o deshabilitar CodeLens de referencias en todas las funciones de los archivos de JavaScript.",
- "javascript.suggestionActions.enabled": "Habilita o deshabilita el diagnóstico de sugerencias para los archivos de JavaScript en el editor.",
- "javascript.validate.enable": "Habilita o deshabilita la validación de JavaScript.",
- "reloadProjects.title": "Volver a cargar el proyecto",
- "taskDefinition.tsconfig.description": "Archivo tsconfig que define la compilación de TS.",
- "typescript.autoClosingTags": "Habilita o deshabilita el cierre automático de las etiquetas JSX.",
- "typescript.check.npmIsInstalled": "Comprobar si npm está instalado para [Adquisición automática de tipos](https://code.visualstudio.com/docs/nodejs/working-with-javascript#_typings-and-automatic-type-acquisition).",
- "typescript.disableAutomaticTypeAcquisition": "Deshabilita [adquisición automática de tipos](https://code.visualstudio.com/docs/nodejs/working-with-javascript#_typings-and-automatic-type-acquisition). La adquisición automática de tipos obtiene los paquetes \"@types\" de npm para mejorar el IntelliSense de las bibliotecas externas.",
- "typescript.enablePromptUseWorkspaceTsdk": "Permite solicitar a los usuarios el uso de la versión de TypeScript configurada en el área de trabajo para IntelliSense.",
- "typescript.findAllFileReferences": "Buscar referencias de archivo",
- "typescript.format.enable": "Habilita o deshabilita el formateador predeterminado de TypeScript.",
- "typescript.goToSourceDefinition": "Ir a definición de origen",
- "typescript.implementationsCodeLens.enabled": "Habilite o deshabilite las implementaciones de CodeLens. Esta instancia de CodeLens muestra los implementadores de una interfaz.",
- "typescript.locale": "Establece la configuración regional que se usa para notificar errores de JavaScript y TypeScript. De forma predeterminada, se usa la configuración regional de VS Code.",
- "typescript.npm": "Specifies the path to the npm executable used for [Automatic Type Acquisition](https://code.visualstudio.com/docs/nodejs/working-with-javascript#_typings-and-automatic-type-acquisition).",
- "typescript.openTsServerLog.title": "Abrir registro del servidor de TS",
- "typescript.preferences.autoImportFileExcludePatterns": "Especifique patrones globales de archivos que se excluirán de las importaciones automáticas. Requiere el uso de TypeScript 4.8 o posterior en el área de trabajo.",
- "typescript.preferences.importModuleSpecifier": "Estilo de ruta de acceso preferido para las importaciones automáticas.",
- "typescript.preferences.importModuleSpecifier.nonRelative": "Prefiere una importación no relativa basada en los elementos \"baseUrl\" o \"paths\" configurados en \"jsconfig.json\" o \"tsconfig.json\".",
- "typescript.preferences.importModuleSpecifier.projectRelative": "Prefiere una importación no relativa solo si la ruta de acceso de importación relativa dejara el directorio del proyecto o paquete. Requiere el uso de TypeScript 4.2+ en el área de trabajo.",
- "typescript.preferences.importModuleSpecifier.relative": "Prefiere una ruta de acceso relativa a la ubicación del archivo importado.",
- "typescript.preferences.importModuleSpecifier.shortest": "Prefiere una importación no relativa solo si hay alguna disponible que tenga menos segmentos de trazado que una importación relativa.",
- "typescript.preferences.importModuleSpecifierEnding": "Ruta de acceso preferida que finaliza para las importaciones automáticas. Requiere el uso de TypeScript 4.5+ en el área de trabajo.",
- "typescript.preferences.importModuleSpecifierEnding.auto": "Utilice la configuración del proyecto para seleccionar un valor predeterminado.",
- "typescript.preferences.importModuleSpecifierEnding.index": "Acorte \"./component/index.js\" a \"./component/index\".",
- "typescript.preferences.importModuleSpecifierEnding.js": "No acorte los finales de ruta; incluyen la extensión \".js\".",
- "typescript.preferences.importModuleSpecifierEnding.minimal": "Acorte \"./component/index.js\" a \"./component\".",
- "typescript.preferences.includePackageJsonAutoImports": "Habilite o deshabilite la búsqueda de dependencias \"package.json\" para las importaciones automáticas disponibles.",
- "typescript.preferences.includePackageJsonAutoImports.auto": "Busque las dependencias en función del impacto estimado en el rendimiento.",
- "typescript.preferences.includePackageJsonAutoImports.off": "No busque nunca las dependencias.",
- "typescript.preferences.includePackageJsonAutoImports.on": "Busque siempre las dependencias.",
- "typescript.preferences.jsxAttributeCompletionStyle": "Estilo preferido para las finalizaciones de atributos JSX.",
- "typescript.preferences.jsxAttributeCompletionStyle.auto": "Inserte `={}` o `=\"\"` después de los nombres de atributo según el tipo de propiedad. Consulte `typescript.preferences.quoteStyle` para controlar el tipo de comillas usadas para los atributos de cadena.",
- "typescript.preferences.jsxAttributeCompletionStyle.braces": "Inserta '={}' después de los nombres de atributo.",
- "typescript.preferences.jsxAttributeCompletionStyle.none": "Inserte solo nombres de atributo.",
- "typescript.preferences.quoteStyle": "Estilo de comillas preferido para las correcciones rápidas.",
- "typescript.preferences.quoteStyle.auto": "Inferir el tipo de comillas a partir del código existente",
- "typescript.preferences.quoteStyle.double": "Siempre use comillas dobles: `\"`",
- "typescript.preferences.quoteStyle.single": "Siempre use comillas simples: `'`",
- "typescript.preferences.renameShorthandProperties.deprecationMessage": "El valor \"typescript.preferences.renameShorthandProperties\" ha quedado en desuso en favor de \"typescript.preferences.useAliasesForRenames\"",
- "typescript.preferences.useAliasesForRenames": "Habilite o deshabilite la introducción de alias para propiedades abreviadas de objetos durante los cambios de nombre. Requiere el uso de TypeScript 3.4 o una versión más reciente en el área de trabajo.",
- "typescript.problemMatchers.tsc.label": "Problemas de TypeScript",
- "typescript.problemMatchers.tscWatch.label": "Problemas de TypeScript (modo de inspección)",
- "typescript.referencesCodeLens.enabled": "Habilita o deshabilita CodeLens de referencias en archivos de TypeScript.",
- "typescript.referencesCodeLens.showOnAllFunctions": "Habilitar/deshabilitar referencias CodeLens en todas las funciones en archivos TypeScript.",
- "typescript.reportStyleChecksAsWarnings": "Notifique las comprobaciones de estilo como advertencias.",
- "typescript.restartTsServer": "Reiniciar servidor TS",
- "typescript.selectTypeScriptVersion.title": "Seleccione la versión de TypeScript...",
- "typescript.suggest.enabled": "Sugerencias de Autocomplete habilitadas/deshabilitadas.",
- "typescript.suggestionActions.enabled": "Habilita o deshabilita el diagnóstico de sugerencias para los archivos de TypeScript en el editor.",
- "typescript.tsc.autoDetect": "Controla la detección automática de las tareas TSC.",
- "typescript.tsc.autoDetect.build": "Cree únicamente tareas de compilación de una sola ejecución.",
- "typescript.tsc.autoDetect.off": "Deshabilite esta característica.",
- "typescript.tsc.autoDetect.on": "Cree tanto tareas de compilación como de inspección.",
- "typescript.tsc.autoDetect.watch": "Cree únicamente tareas de compilación y de inspección.",
- "typescript.tsdk.desc": "Especificar la ruta de la carpeta de los archivos tsserver y `lib*.d.ts` bajo una instalación de TypeScript para usarla en IntelliSense, por ejemplo: `./node_modules/typescript/lib`.\r\n\r\n- Cuando se especifica como una configuración de usuario, la versión de TypeScript de `typescript.tsdk` reemplaza automáticamente la versión de TypeScript incorporada.\r\n- Cuando se especifica como una configuración del área de trabajo, `typescript.tsdk` le permite cambiar para usar esa versión de TypeScript del área de trabajo para IntelliSense con el comando `TypeScript: Select TypeScript version`.\r\n\r\nConsulte la [documentación de TypeScript](https://code.visualstudio.com/docs/typescript/typescript-compiling#_using-newer-typescript-versions) para obtener más detalles sobre la administración de las versiones de TypeScript.",
- "typescript.tsserver.enableTracing": "Habilita el seguimiento del rendimiento del servidor TS en un directorio. Estos archivos de seguimiento se pueden usar para diagnosticar problemas de rendimiento del servidor TS. El registro puede contener rutas de acceso, código fuente e información potencialmente confidencial acerca del proyecto.",
- "typescript.tsserver.log": "Habilita los registros del servidor TS a un archivo. Este registro se puede utilizar para diagnosticar problemas en el servidor TS. Este registro puede contener rutas de acceso, código fuente y posiblemente otra información sensitiva acerca del proyecto.",
- "typescript.tsserver.pluginPaths": "Rutas de acceso adicionales para detectar complementos del servicio de lenguaje TypeScript.",
- "typescript.tsserver.pluginPaths.item": "Ruta relativa o absoluta. La ruta de acceso relativa se resolverá contra las carpetas del área de trabajo.",
- "typescript.tsserver.trace": "Habilita el seguimiento de mensajes al servidor TS. Este seguimiento se puede utilizar para diagnosticar problemas en el servidor TS. Este seguimiento puede contener rutas de acceso, código fuente y posiblemente otra información sensitiva acerca del proyecto.",
- "typescript.updateImportsOnFileMove.enabled": "Habilita o deshabilita la actualización automática de las rutas de acceso de importación al mover un archivo o cambiarle el nombre en VS Code.",
- "typescript.updateImportsOnFileMove.enabled.always": "Actualizar siempre las rutas de acceso automáticamente.",
- "typescript.updateImportsOnFileMove.enabled.never": "No cambiar nunca el nombre de las rutas de acceso y no preguntar.",
- "typescript.updateImportsOnFileMove.enabled.prompt": "Preguntar cada vez que se cambie de nombre.",
- "typescript.validate.enable": "Habilita o deshabilita la validación de TypeScript.",
- "typescript.workspaceSymbols.scope": "Controla los archivos que busca [ir al símbolo en el área de trabajo](https://code.visualstudio.com/docs/editor/editingevolved#_open-symbol-by-name).",
- "typescript.workspaceSymbols.scope.allOpenProjects": "Busque los símbolos en todos los proyectos abiertos de JavaScript o TypeScript. Requiere el uso de TypeScript 3.9 o una versión más reciente en el área de trabajo.",
- "typescript.workspaceSymbols.scope.currentProject": "Busque solo símbolos en el proyecto de JavaScript o TypeScript actual.",
- "virtualWorkspaces": "En los espacios de trabajo virtuales, no se admite la resolución y búsqueda de referencias entre archivos.",
- "workspaceTrust": "La extensión requiere la confianza del espacio de trabajo cuando se utiliza la versión del espacio de trabajo porque ejecuta el código especificado por el espacio de trabajo."
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-es/translations/extensions/vb.i18n.json b/i18n/vscode-language-pack-es/translations/extensions/vb.i18n.json
deleted file mode 100644
index ed3ea4f386..0000000000
--- a/i18n/vscode-language-pack-es/translations/extensions/vb.i18n.json
+++ /dev/null
@@ -1,16 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "package": {
- "description": "Proporciona fragmentos de código, resaltado de sintaxis, correspondencia de corchetes y plegado de código en archivos de Visual Basic.",
- "displayName": "Conceptos básicos del lenguaje VB"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-es/translations/extensions/vscode-chrome-debug-core.i18n.json b/i18n/vscode-language-pack-es/translations/extensions/vscode-chrome-debug-core.i18n.json
deleted file mode 100644
index 3574796119..0000000000
--- a/i18n/vscode-language-pack-es/translations/extensions/vscode-chrome-debug-core.i18n.json
+++ /dev/null
@@ -1,69 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "errors": {
- "eval.not.available": "No disponible",
- "not.connected": "sin conexión al entorno de ejecución",
- "restartFrame.cannot": "No se puede reiniciar el marco.",
- "attribute.path.not.exist": "El atributo \"{0}\" no existe (\"{1}\").",
- "attribute.path.not.absolute": "El atributo \"{0}\" no es absoluto (\"{1}\"). Pruebe a agregar \"{2}\" como prefijo para hacerlo absoluto.",
- "more.information": "Más información",
- "setVariable.error": "No se admite el valor de configuración.",
- "source.not.found": "No se pudo recuperar el contenido.",
- "VSND2010": "No se puede conectar al proceso en tiempo de ejecución, el tiempo de espera se agota después de {0} ms (motivo: {1}).",
- "VSND2023": "No hay ninguna pila de llamadas disponible.",
- "failed.to.read.port": "No se ha podido leer el archivo {dataDirPath}, {error}",
- "port.file.contents.invalid": "El archivo en la ubicación: \"{dataDirPath}\" no contiene datos válidos del puerto, el contenido era: \"{dataDirContents}\""
- },
- "chrome/breakpoints": {
- "setBPTimedOut": "Se agotó el tiempo de espera de la solicitud para establecer puntos de interrupción.",
- "bp.fail.unbound": "El punto de interrupción se ha establecido, pero no se ha enlazado aún.",
- "bp.fail.noscript": "No se encuentra el script para la solicitud de punto de interrupción.",
- "validateBP.sourcemapFail": "El punto de interrupción se ignoró porque no se encontró el código generado (puede que sea un problema del mapa de origen).",
- "validateBP.notFound": "El punto de interrupción se ignoró porque no se encontró la ruta de acceso de destino.",
- "invalidHitCondition": "Condición de acierto no válida: {0}"
- },
- "chrome/chromeDebugAdapter": {
- "exceptions.all": "Todas las excepciones",
- "exceptions.uncaught": "Excepciones no detectadas",
- "exceptions.promise_rejects": "Se rechaza la promesa"
- },
- "chrome/chromeTargetDiscoveryStrategy": {
- "attach.responseButNoTargets": "Se obtuvo una respuesta de la aplicación de destino, pero no se encontraron páginas de destino.",
- "attach.cannotConnect": "No se puede conectar con el destino: {0}",
- "attach.invalidResponse": "La respuesta del destino no parece válida. Error: {0}. Respuesta: {1}",
- "attach.invalidResponseArray": "La respuesta del destino no parece válida: {0}",
- "attach.noMatchingTarget": "No se encuentra ningún destino válido que coincida con {0}. Páginas disponibles: {1}",
- "attach.devToolsAttached": "No se puede asociar a este destino, ya que puede tener Chrome DevTools asociado: {0}"
- },
- "chrome/stackFrames": {
- "skipReason": "(omitido por '{0}')",
- "scope.exception": "Excepción"
- },
- "chrome/stoppedEvent": {
- "reason.description.step": "En pausa por un paso",
- "reason.description.breakpoint": "En pausa por un punto de interrupción",
- "reason.description.exception": "En pausa por una excepción",
- "reason.description.uncaughtException": "En pausa por una excepción no detectada",
- "reason.description.caughtException": "En pausa por una excepción detectada",
- "reason.description.user_request": "En pausa por una solicitud de usuario",
- "reason.description.entry": "En pausa por una entrada",
- "reason.description.debugger_statement": "En pausa por una instrucción del depurador",
- "reason.description.restart": "En pausa por una entrada de marco",
- "reason.description.promiseRejection": "En pausa por rechazo de una promesa"
- },
- "transformers/baseSourceMapTransformer": {
- "origin.inlined.source.map": "contenido insertado de solo lectura del mapa de origen"
- },
- "transformers/remotePathTransformer": {
- "localRootAndRemoteRoot": "Deben especificarse tanto localRoot como remoteRoot."
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-es/translations/extensions/vscode-node-debug.i18n.json b/i18n/vscode-language-pack-es/translations/extensions/vscode-node-debug.i18n.json
deleted file mode 100644
index 93674bfd94..0000000000
--- a/i18n/vscode-language-pack-es/translations/extensions/vscode-node-debug.i18n.json
+++ /dev/null
@@ -1,185 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "package": {
- "extension.description": "Compatibilidad de depuración de Node.js (versiones < 8.0)",
- "node.label": "Node.js",
- "open.loaded.script": "Abrir script cargado",
- "attach.node.process": "Conectarse con el proceso de Node",
- "toggle.skipping.this.file": "Cambiar y omitir este archivo",
- "start.with.stop.on.entry": "Iniciar depuración y detenerla tras el inicio",
- "smartStep.description": "Explore automáticamente el código generado que no se puede volver a asignar al código fuente original.",
- "skipFiles.description": "Una matriz de patrones globales para que los archivos omitan al depurar. El patrón \"/**\" coincide con todos los módulos internos de Node.js.",
- "outFiles.description": "Si los mapas de origen están habilitados, estos patrones globales especifican los archivos JavaScript generados. Si un patrón comienza con \"!\", los archivos se excluyen. Si no se especifica, se espera que el código se genere en el mismo directorio que su origen. Ejemplo: \"[\"${workspaceFolder}/out/**/*.js\"]\"",
- "outDir.deprecationMessage": "El atributo \"outDir\" está en desuso, use \"outFiles\" en su lugar.",
- "trace.description": "Produce una salida de diagnóstico. En lugar de establecer este valor en true, puede enumerar uno o varios selectores separados por comas. El selector \"verbose\" habilita una salida muy detallada.",
- "launch.args.description": "Argumentos de la línea de comandos que se pasan al programa.",
- "debug.node.showUseWslIsDeprecatedWarning.description": "Controla si se debe mostrar una advertencia cuando se utiliza el atributo \"useWSL\".",
- "debug.node.useV3.description": "[Experimental] Controla si se deben delegar configuraciones de inicio de tipo \"node\" en la extensión js-debug.",
- "debug.extensionHost.useV3.description": "[Experimental] Controla si se deben delegar configuraciones de inicio de tipo \"extensionHost\" a la extensión js-debug.",
- "node.protocol.description": "Protocolo de depuración de Node.js para utilizar.",
- "node.protocol.auto.description": "Intenta detectar el mejor protocolo de forma automática, seleccionando \"inspector\" para iniciar Node 8.0+.",
- "node.protocol.inspector.description": "Nuevo protocolo compatible con las versiones >=6.3 de Node.js",
- "node.protocol.legacy.description": "Protocolo antiguo admitido por las versiones de Node.js < 8.0",
- "node.sourceMaps.description": "Se usan los mapas de origen de JavaScript (si existen).",
- "node.stopOnEntry.description": "El programa se detiene automáticamente tras el inicio.",
- "node.port.description": "Puerto de depuración al que se va a conectar. El valor predeterminado es 5858.",
- "node.address.description": "Dirección TCP/IP del proceso de depuración (solo para Node.js >= 5.0). El valor predeterminado es \"localhost\".",
- "node.timeout.description": "Vuelva a probar con este número de milisegundos para conectarse a Node.js. El valor predeterminado es 10000 ms.",
- "node.restart.description": "Reinicia la sesión cuando Node.js ha terminado.",
- "node.localRoot.description": "Ruta de acceso al directorio local que contiene el programa.",
- "node.remoteRoot.description": "Ruta de acceso absoluta al directorio remoto que contiene el programa.",
- "node.showAsyncStacks.description": "Muestra las llamadas asincrónicas que llevan a la pila de llamadas actual. Solo el protocolo \"inspector\" .",
- "node.sourceMapPathOverrides.description": "Un conjunto de mapeos para reescribir las localizaciones de los ficheros fuente con lo que los mapas fuente indican, a sus ubicaciones en disco.",
- "node.disableOptimisticBPs.description": "No establezca puntos de interrupción en ningún archivo hasta que se haya cargado un mapa de origen para el archivo.",
- "node.launch.program.description": "Ruta de acceso absoluta al programa. El valor generado se infiere de package.json y de los archivos abiertos. Edite este atributo.",
- "node.launch.externalConsole.deprecationMessage": "El atributo \"externalConsole\" está en desuso, use \"console\" en su lugar.",
- "node.launch.console.description": "Lugar donde debe iniciarse el destino de depuración.",
- "node.launch.console.internalConsole.description": "Consola de depuración de VS Code (que no admite la lectura de entradas de un programa)",
- "node.launch.console.integratedTerminal.description": "Terminal integrado de VS Code",
- "node.launch.console.externalTerminal.description": "Terminal externo que puede configurarse desde Configuración del usuario.",
- "node.launch.cwd.description": "Ruta de acceso absoluta al directorio de trabajo del programa que se está depurando.",
- "node.launch.runtimeExecutable.description": "Entorno de ejecución que debe usarse. Puede ser una ruta de acceso absoluta o el nombre de un entorno de ejecución disponible en PATH. Si se omite, se utiliza \"node\".",
- "node.launch.runtimeArgs.description": "Argumentos opcionales pasados al ejecutable del entorno de ejecución.",
- "node.launch.runtimeVersion.description": "Versión del entorno de ejecución de \"Node\" que debe usarse. Requiere \"NVM\".",
- "node.launch.env.description": "Variables de entorno pasadas al programa. El valor \"null\" elimina la variable del entorno.",
- "node.launch.envFile.description": "Ruta de acceso absoluta a un archivo que contiene definiciones de variables de entorno.",
- "node.launch.useWSL.description": "Utilice el subsistema de Windows para Linux.",
- "node.launch.useWSL.deprecation": "\"useWSL\" está en desuso y se eliminará el soporte correspondiente. Utilice la extensión \"Remote - WSL\" en su lugar.",
- "node.launch.outputCapture.description": "Ubicación desde donde se van a capturar los mensajes de salida: la API de depuración o las secuencias stdout/stderr.",
- "node.launch.autoAttachChildProcesses.description": "Asociar automáticamente el depurador a los procesos secundarios nuevos.",
- "node.launch.config.name": "Lanzamiento",
- "node.attach.processId.description": "Identificador del proceso al que se va a asociar.",
- "node.attach.config.name": "Asociar",
- "node.processattach.config.name": "Asociar al proceso",
- "node.snippet.launch.label": "Node.js: iniciar programa",
- "node.snippet.launch.description": "Iniciar un programa de nodo en modo de depuración",
- "node.snippet.npm.label": "Node.js: iniciar mediante NPM",
- "node.snippet.npm.description": "Inicia un programa de Node con un script \"debug\" de npm.",
- "node.snippet.attach.label": "Node.js: Attach",
- "node.snippet.attach.description": "Adjuntar a un nodo en ejecución",
- "node.snippet.remoteattach.label": "Node.js: adjuntar a programa remoto",
- "node.snippet.remoteattach.description": "Adjuntar al puerto de depuración de un programa de nodo remoto",
- "node.snippet.attachProcess.label": "Node.js: adjuntar a proceso",
- "node.snippet.attachProcess.description": "Abrir el selector de procesos para elegir el proceso de Node para conectarse",
- "node.snippet.nodemon.label": "Node.js: configuración de Nodemon",
- "node.snippet.nodemon.description": "Use nodemon para reiniciar una sesión de depuración en los cambios de origen",
- "node.snippet.mocha.label": "Node.js: pruebas de Mocha",
- "node.snippet.mocha.description": "Depurar pruebas de Mocha",
- "node.snippet.yo.label": "Node.js: generador de Yeoman",
- "node.snippet.yo.description": "Depurar generador de Yeoman (se instala ejecutando \"npm link\" en la carpeta del proyecto).",
- "node.snippet.gulp.label": "Node.js: tarea de Gulp",
- "node.snippet.gulp.description": "Depurar tarea de Gulp (asegúrese de tener Gulp instalado localmente en el proyecto)",
- "node.snippet.electron.label": "Node.js: proceso principal de Electron",
- "node.snippet.electron.description": "Depurar el proceso principal de Electron"
- },
- "dist/node/nodeDebug": {
- "setVariable.error": "No se admite el valor de configuración.",
- "exception.paused.promise.rejection": "Pausado por un rechazo de promesa",
- "exception.promise.rejection.text": "Rechazo de Promise ({0})",
- "exception.promise.rejection": "Rechazo de Promise",
- "reason.description.step": "En pausa por un paso",
- "reason.description.breakpoint": "En pausa por un punto de interrupción",
- "reason.description.exception": "En pausa por una excepción",
- "reason.description.user_request": "En pausa por una solicitud de usuario",
- "reason.description.entry": "En pausa por una entrada",
- "reason.description.debugger_statement": "En pausa por una instrucción del depurador",
- "reason.description.restart": "En pausa por una entrada de marco",
- "exceptions.all": "Todas las excepciones",
- "exceptions.uncaught": "Excepciones no detectadas",
- "exceptions.rejects": "Rechazos de Promise",
- "VSND2028": "Tipo de consola \"{0}\" desconocido.",
- "attribute.wls.not.exist": "No se puede encontrar la instalación del subsistema de Windows Linux",
- "VSND2001": "No se encuentra el entorno de ejecución \"{0}\" en PATH. Asegúrese de haber instalado \"{0}\".",
- "program.path.case.mismatch.warning": "El uso de mayúsculas y minúsculas en la ruta de acceso del programa no es igual al del archivo en disco. Esto puede hacer que no se llegue a los puntos de interrupción.",
- "VSND2002": "No se puede iniciar el programa \"{0}\". Configurar mapas de origen puede ser útil.",
- "VSND2009": "No se puede iniciar el programa \"{0}\" porque no se encuentra el elemento JavaScript correspondiente.",
- "VSND2003": "No se puede iniciar el programa \"{0}\". Establecer el atributo \"{1}\" puede ser útil.",
- "VSND2029": "No se pueden cargar las variables de entorno del archivo ({0}).",
- "node.console.title": "Consola de depuración de nodos",
- "VSND2011": "No se puede iniciar el destino de depuración en el terminal ({0}).",
- "VSND2017": "No se puede iniciar el destino de depuración ({0}).",
- "VSND2010": "No se puede conectar con el proceso en tiempo de ejecución (motivo: {0}).",
- "VSND2033": "No se puede conectar al sistema en tiempo de ejecución; asegúrese de que ese sistema se encuentre en modo de depuración 'legacy'.",
- "VSND2034": "No se puede conectar al sistema en tiempo de ejecución mediante el protocolo 'legacy'; intente utilizar el protocolo 'inspector'.",
- "file.on.disk.changed": "No comprobado, porque el archivo del disco ha cambiado. Reinicie la sesión de depuración.",
- "VSND2019": "El módulo interno {0} no se encontró.",
- "sourcemapping.fail.message": "El punto de interrupción se ignoró porque no se encontró el código generado (puede que sea un problema del mapa de origen).",
- "VSND2022": "No hay ninguna pila de llamadas porque el programa se pausó fuera de JavaScript.",
- "VSND2023": "No hay ninguna pila de llamadas disponible.",
- "VSND2018": "No hay ninguna pila de llamadas disponible ({_command}: {_error}).",
- "origin.from.node": "contenido de solo lectura de Node.js",
- "origin.from.remote.node": "contenido de solo lectura de Node.js remoto",
- "origin.core.module": "módulo principal de solo lectura",
- "source.skipFiles": "omitido debido a \"skipFiles\"",
- "source.smartstep": "omitido debido a \"smartStep\"",
- "origin.inlined.source.map": "contenido insertado de solo lectura del mapa de origen",
- "anonymous.function": "(función anónima)",
- "scope.local.with.count": "Local ({0} de {1})",
- "scope.unknown": "Tipo de ámbito desconocido: {0}",
- "scope.exception": "Excepción",
- "eval.not.available": "No disponible",
- "eval.invalid.expression": "expresión no válida: {0}",
- "source.not.found": "No se pudo recuperar el contenido.",
- "attribute.path.not.exist": "El atributo \"{0}\" no existe (\"{1}\").",
- "attribute.path.not.absolute": "El atributo \"{0}\" no es absoluto (\"{1}\"). Pruebe a agregar \"{2}\" como prefijo para hacerlo absoluto.",
- "more.information": "Más información",
- "VSND2015": "La solicitud '{_request}' se canceló porque Node.js no responde.",
- "VSND2016": "Node.js no respondió a la solicitud '{_request}' en un período de tiempo razonable.",
- "scope.global": "GLOBAL",
- "scope.local": "LOCAL",
- "scope.with": "con",
- "scope.closure": "Clausura",
- "scope.catch": "Catch",
- "scope.block": "Bloquear",
- "scope.script": "Script"
- },
- "dist/node/nodeV8Protocol": {
- "not.connected": "sin conexión al entorno de ejecución",
- "runtime.unresponsive": "se canceló porque Node.js no responde",
- "runtime.timeout": "tiempo de espera agotado transcurridos {0} ms"
- },
- "dist/node/extension/autoAttach": {
- "process.with.pid.label": "Asociado automáticamente ({0})"
- },
- "dist/node/extension/cluster": {
- "child.process.with.pid.label": "Proceso secundario {0}"
- },
- "dist/node/extension/configurationProvider": {
- "program.not.found.message": "No se encuentra ningún programa para depurar.",
- "useWslDeprecationWarning.title": "El atributo \"useWSL\" está en desuso. Utilice la extensión \"Remote WSL\" en su lugar. Haga clic [aquí]({0}) para obtener más información.",
- "useWslDeprecationWarning.doNotShowAgain": "No mostrar de nuevo",
- "NVS_HOME.not.found.message": "El atributo \"runtimeVersion\" requiere el administrador de versiones \"nvs\" de Node.js.",
- "NVM_HOME.not.found.message": "El atributo \"runtimeVersion\" requiere el administrador de versiones \"nvm-windows\" o \"nvs\" de Node.js.",
- "NVM_DIR.not.found.message": "El atributo \"runtimeVersion\" requiere el administrador de versiones \"nvm\" o \"nvs\" de Node.js.",
- "runtime.version.not.found.message": "La versión '{0}' de Node.js no está instalada para '{1}'.",
- "node.launch.config.name": "Iniciar el programa",
- "mern.starter.explanation": "La configuración de inicio del proyecto '{0}' fue creada. ",
- "program.guessed.from.package.json.explanation": "La configuración de inicio fue creada basada en \"package.json\".",
- "outFiles.explanation": "Ajusta modelos globales en los atributos ‘outFiles’ para cubrir el código JavaScript generado."
- },
- "dist/node/extension/processPicker": {
- "pid.error": "Adjuntar a proceso: no se puede poner el proceso '{0}' en modo de depuración.",
- "process.id.error": "Asociar al proceso: '{0}' no parece un id de proceso.",
- "pickNodeProcess": "Seleccione el proceso node. js para adjuntarlo a",
- "process.picker.error": "Falló el selector de proceso ({0})",
- "process.id.port": "id de proceso: {0}, puerto de depuración: {1}",
- "process.id.port.legacy": "id. de proceso: {0}, Puerto de depuración: {1} (Protocolo legado)",
- "process.id.port.signal": "Id. del proceso: {0}, puerto de depuración: {1} ({2})",
- "process.id.signal": "Id. del proceso: {0} ({1})",
- "cannot.enable.debug.mode.error": "Asociar al proceso: no se puede habilitar el modo de depuración para el proceso '{0}' ({1})."
- },
- "dist/node/extension/protocolDetection": {
- "protocol.switch.legacy.detected": "Depurando con el protocolo heredado porque se ha detectado.",
- "protocol.switch.unknown.error": "Depurando con el protocolo inspector porque no se pudo determinar la versión de Node.js ({0}).",
- "protocol.switch.legacy.version": "Depurando con el protocolo heredado ya que se detectó Node.js {0}."
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-es/translations/extensions/vscode-node-debug2.i18n.json b/i18n/vscode-language-pack-es/translations/extensions/vscode-node-debug2.i18n.json
deleted file mode 100644
index d1e187d6d2..0000000000
--- a/i18n/vscode-language-pack-es/translations/extensions/vscode-node-debug2.i18n.json
+++ /dev/null
@@ -1,80 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "package": {
- "extension.description": "Compatibilidad con la depuración de Node.js",
- "node.label": "Node.js v6.3+ mediante protocolo inspector",
- "node.sourceMaps.description": "Se usan los mapas de origen de JavaScript (si existen).",
- "outDir.deprecationMessage": "El atributo \"outDir\" está en desuso, use \"outFiles\" en su lugar.",
- "node.outFiles.description": "Si los mapas de origen están habilitados, estos patrones globales especifican los archivos JavaScript generados. Si un patrón comienza con '!' los archivos se excluyen. Si no se especifica, el código generado se espera en el mismo directorio que su origen.",
- "node.stopOnEntry.description": "El programa se detiene automáticamente tras el inicio.",
- "node.port.description": "El puerto de depuración al que se va a asociar. El valor predeterminado es 9229.",
- "node.address.description": "Dirección TCP/IP del puerto de depuración. El valor predeterminado es \"localhost\".",
- "node.timeout.description": "Vuelva a probar con este número de milisegundos para conectarse a Node.js. El valor predeterminado es 10000 ms.",
- "node.smartStep.description": "Explore automáticamente el código generado que no se puede volver a asignar al código fuente original.",
- "node.enableSourceMapCaching.description": "Cuando los mapas de origen se descargan desde una dirección URL, almacénelos en la memoria caché del disco.",
- "node.diagnosticLogging.description": "Si es true, el adaptador registra su propia información de diagnóstico en la consola.",
- "node.diagnosticLogging.deprecationMessage": "\"diagnosticLogging\" está en desuso. Use \"trace\" en su lugar.",
- "node.verboseDiagnosticLogging.description": "Si es true, el adaptador registra todo el tráfico en el cliente y el destino (así como la información que \"diagnosticLogging\" registra)",
- "node.verboseDiagnosticLogging.deprecationMessage": "\"verboseDiagnosticLogging\" está en desuso. Use \"trace\" en su lugar.",
- "node.trace.description": "Si es \"true\", el depurador registrará información de seguimiento en un archivo. Si es \"verbose\", también mostrará los registros en la consola.",
- "node.sourceMapPathOverrides.description": "Conjunto de asignaciones para reescribir las ubicaciones de los archivos de origen en sus ubicaciones en el disco, a partir de lo que indica el mapa de origen. Consulte el archivo LÉAME para obtener más detalles.",
- "node.skipFiles.description": "Matriz de nombres de archivo o carpeta, o de patrones globales, que se van a omitir en la depuración.",
- "node.restart.description": "Reinicia la sesión cuando Node.js ha terminado.",
- "node.showAsyncStacks.description": "Muestra las llamadas asincrónicas que llevan a la pila de llamadas actual.",
- "node.disableOptimisticBPs.description": "No establezca puntos de interrupción en ningún archivo hasta que se haya cargado un mapa de origen para el archivo.",
- "node.launch.program.description": "Ruta de acceso absoluta al programa.",
- "node.launch.console.description": "Lugar donde debe iniciarse el destino de depuración: consola interna, terminal integrado o terminal externo.",
- "node.launch.args.description": "Argumentos de la línea de comandos que se pasan al programa.",
- "node.launch.cwd.description": "Ruta de acceso absoluta al directorio de trabajo del programa que se está depurando.",
- "node.launch.runtimeExecutable.description": "Entorno de ejecución que se va a usar. Una ruta de acceso absoluta o el nombre de un entorno de ejecución disponible en PATH. Si se omite, se asume el valor de \"node\".",
- "node.launch.runtimeArgs.description": "Argumentos opcionales pasados al ejecutable del entorno de ejecución.",
- "node.launch.env.description": "Variables de entorno pasadas al programa. El valor \"null\" elimina la variable del entorno.",
- "node.launch.envFile.description": "Ruta de acceso absoluta a un archivo que contiene definiciones de variables de entorno.",
- "node.launch.outputCapture.description": "Ubicación desde donde se van a capturar los mensajes de salida: la API de depuración o las secuencias stdout/stderr.",
- "node.launch.config.name": "Lanzamiento",
- "node.attach.processId.description": "Identificador del proceso al que se va a asociar.",
- "node.attach.localRoot.description": "Raíz de origen local que corresponde a \"remoteRoot\".",
- "node.attach.remoteRoot.description": "Raíz de origen del host remoto.",
- "node.attach.config.name": "Adjuntar",
- "node.processattach.config.name": "Asociar al proceso",
- "toggle.skipping.this.file": "Cambiar y omitir este archivo",
- "extensionHost.label": "Desarrollo de extensiones de VS Code",
- "extensionHost.launch.runtimeExecutable.description": "Ruta de acceso absoluta a VS Code.",
- "extensionHost.launch.stopOnEntry.description": "El host de extensiones se detiene automáticamente tras el inicio.",
- "extensionHost.launch.env.description": "Variables de entorno pasadas al host de extensiones.",
- "extensionHost.snippet.launch.label": "Desarrollo de extensiones de VS Code",
- "extensionHost.snippet.launch.description": "Iniciar una extensión de VS Code en modo de depuración",
- "extensionHost.launch.config.name": "Iniciar extensión"
- },
- "out/src/errors": {
- "VSND2001": "No se encuentra el entorno de ejecución \"{0}\" en PATH. ¿Se ha instalado \"{0}\"?",
- "VSND2011": "No se puede iniciar el destino de depuración en el terminal ({0}).",
- "VSND2017": "No se puede iniciar el destino de depuración ({0}).",
- "VSND2035": "No se puede depurar la extensión ({0}).",
- "VSND2028": "Tipo de consola \"{0}\" desconocido.",
- "VSND2002": "No se puede iniciar el programa \"{0}\". Configurar mapas de origen puede ser útil.",
- "VSND2003": "No se puede iniciar el programa \"{0}\". Establecer el atributo \"{1}\" puede ser útil.",
- "VSND2009": "No se puede iniciar el programa \"{0}\" porque no se encuentra el elemento JavaScript correspondiente.",
- "VSND2029": "No se pueden cargar las variables de entorno del archivo ({0})."
- },
- "out/src/nodeDebugAdapter": {
- "attribute.wsl.not.exist": "No se encuentra el subsistema de Windows para la instalación de Linux.",
- "program.path.case.mismatch.warning": "El uso de mayúsculas y minúsculas en la ruta de acceso del programa no es igual al del archivo en disco. Esto puede hacer que no se llegue a los puntos de interrupción.",
- "node.console.title": "Consola de depuración de Node",
- "attribute.path.not.exist": "El atributo \"{0}\" no existe (\"{1}\").",
- "attribute.path.not.absolute": "El atributo \"{0}\" no es absoluto (\"{1}\"). Pruebe a agregar \"{2}\" como prefijo para hacerlo absoluto.",
- "VSND2001": "No se encuentra el entorno de ejecución \"{0}\" en PATH. Asegúrese de haber instalado \"{0}\".",
- "more.information": "Más información",
- "origin.from.node": "contenido de solo lectura de Node.js",
- "origin.core.module": "módulo principal de solo lectura"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-es/translations/extensions/vscode.bat.i18n.json b/i18n/vscode-language-pack-es/translations/extensions/vscode.bat.i18n.json
index 207e52e270..0a656f4417 100644
--- a/i18n/vscode-language-pack-es/translations/extensions/vscode.bat.i18n.json
+++ b/i18n/vscode-language-pack-es/translations/extensions/vscode.bat.i18n.json
@@ -9,8 +9,8 @@
"version": "1.0.0",
"contents": {
"package": {
- "displayName": "Conceptos básicos del lenguaje Windows Bat",
- "description": "Proporciona fragmentos de código, resaltado de sintaxis, correspondencia de corchetes y plegado de código en archivos por lotes de Windows."
+ "description": "Proporciona fragmentos de código, resaltado de sintaxis, correspondencia de corchetes y plegado de código en archivos por lotes de Windows.",
+ "displayName": "Conceptos básicos del lenguaje Windows Bat"
}
}
}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-es/translations/extensions/notebook-renderers.i18n.json b/i18n/vscode-language-pack-es/translations/extensions/vscode.builtin-notebook-renderers.i18n.json
similarity index 100%
rename from i18n/vscode-language-pack-es/translations/extensions/notebook-renderers.i18n.json
rename to i18n/vscode-language-pack-es/translations/extensions/vscode.builtin-notebook-renderers.i18n.json
diff --git a/i18n/vscode-language-pack-es/translations/extensions/vscode.clojure.i18n.json b/i18n/vscode-language-pack-es/translations/extensions/vscode.clojure.i18n.json
index 5b77984b06..b1110f522b 100644
--- a/i18n/vscode-language-pack-es/translations/extensions/vscode.clojure.i18n.json
+++ b/i18n/vscode-language-pack-es/translations/extensions/vscode.clojure.i18n.json
@@ -9,8 +9,8 @@
"version": "1.0.0",
"contents": {
"package": {
- "displayName": "Conceptos básicos del lenguaje Clojure",
- "description": "Proporciona resaltado de sintaxis y correspondencia de corchetes en archivos de Clojure."
+ "description": "Proporciona resaltado de sintaxis y correspondencia de corchetes en archivos de Clojure.",
+ "displayName": "Conceptos básicos del lenguaje Clojure"
}
}
}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-es/translations/extensions/vscode.coffeescript.i18n.json b/i18n/vscode-language-pack-es/translations/extensions/vscode.coffeescript.i18n.json
index 993d3d1ae0..6fb975b30e 100644
--- a/i18n/vscode-language-pack-es/translations/extensions/vscode.coffeescript.i18n.json
+++ b/i18n/vscode-language-pack-es/translations/extensions/vscode.coffeescript.i18n.json
@@ -9,8 +9,8 @@
"version": "1.0.0",
"contents": {
"package": {
- "displayName": "Conceptos básicos del lenguaje CoffeeScript",
- "description": "Proporciona fragmentos de código, resaltado de sintaxis, correspondencia de corchetes y plegado de código en archivos de CoffeeScript."
+ "description": "Proporciona fragmentos de código, resaltado de sintaxis, correspondencia de corchetes y plegado de código en archivos de CoffeeScript.",
+ "displayName": "Conceptos básicos del lenguaje CoffeeScript"
}
}
}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-es/translations/extensions/vscode.configuration-editing.i18n.json b/i18n/vscode-language-pack-es/translations/extensions/vscode.configuration-editing.i18n.json
new file mode 100644
index 0000000000..cac04f5faa
--- /dev/null
+++ b/i18n/vscode-language-pack-es/translations/extensions/vscode.configuration-editing.i18n.json
@@ -0,0 +1,77 @@
+{
+ "": [
+ "--------------------------------------------------------------------------------------------",
+ "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."
+ ],
+ "version": "1.0.0",
+ "contents": {
+ "bundle": {
+ "Example": "Ejemplo",
+ "Files by Extension": "Archivos por extensión",
+ "Files with Extension": "Archivos con extensión",
+ "Files with Multiple Extensions": "Archivos con varias extensiones",
+ "Files with Path": "Archivos con ruta de acceso",
+ "Files with Siblings by Name": "Archivos con elementos del mismo nivel por nombre",
+ "Folder by Name (Any Location)": "Carpeta por nombre (cualquier ubicación)",
+ "Folder by Name (Top Level)": "Carpeta por nombre (nivel superior)",
+ "Folders with Multiple Names (Top Level)": "Carpetas con varios nombres (nivel superior)",
+ "GitHub": "GitHub",
+ "Map all files matching the absolute path glob pattern in their path to the language with the given identifier.": "Asigna todos los archivos cuya ruta de acceso al lenguaje con el identificador especificado coincide con el patrón global de ruta de acceso absoluta.",
+ "Map all files matching the glob pattern in their filename to the language with the given identifier.": "Asigna todos los archivos cuyo nombre coincide con el patrón global al lenguaje con el identificador especificado.",
+ "Match a folder with a specific name in any location.": "Hacer coincidir una carpeta con un nombre determinado en cualquier ubicación.",
+ "Match a top level folder with a specific name.": "Hacer coincidir una carpeta de nivel superior con un nombre específico.",
+ "Match all files of a specific file extension.": "Hacer coincidir todos los archivos que tengan una extensión de archivo determinada.",
+ "Match all files with any of the file extensions.": "Hacer coincidir todos los archivos con cualquiera de las extensiones de archivo.",
+ "Match files that have siblings with the same name but a different extension.": "Hacer coincidir archivos que tienen elementos del mismo nivel con el mismo nombre pero con extensión diferente.",
+ "Match multiple top level folders.": "Hacer coincidir varias carpetas de nivel superior.",
+ "The character used by the operating system to separate components in file paths. Is also aliased to '/'.": "Carácter que usa el sistema operativo para separar los componentes en las rutas de acceso de los archivos. También tiene el alias '/'.",
+ "The current opened file": "El archivo abierto actualmente",
+ "The current opened file relative to ${workspaceFolder}": "El archivo abierto actualmente relativo a ${workspaceFolder}",
+ "The current opened file workspace folder name without any slashes (/)": "Nombre de la carpeta del área de trabajo de archivos abierta actualmente sin barras diagonales (/)",
+ "The current opened file's basename": "Nombre base del archivo abierto actual ",
+ "The current opened file's basename with no file extension": "Nombre base del archivo abierto actual sin extensión de archivo ",
+ "The current opened file's dirname": "Nombre del directorio del archivo abierto actual",
+ "The current opened file's dirname relative to ${workspaceFolder}": "Nombre de directorio del archivo abierto actual en relación con ${workspaceFolder}",
+ "The current opened file's extension": "Extensión del archivo abierto actualmente",
+ "The current opened file's folder name": "Nombre de carpeta del archivo abierto actualmente",
+ "The current selected line number in the active file": "El número de línea seleccionado actual en el archivo activo",
+ "The current selected text in the active file": "El texto actual seleccionado en el archivo activo ",
+ "The file extension of the editor (e.g. txt)": "Extensión de archivo del editor (e.g. txt)",
+ "The file name of the editor without its directory or extension (e.g. myFile)": "Nombre de archivo del editor sin su directorio o extensión (p. ej., miArchivo)",
+ "The name of the default build task. If there is not a single default build task then a quick pick is shown to choose the build task.": "El nombre de la tarea de compilación predeterminada. Si no hay una única tarea de compilación predeterminada se muestra una selección rápida para elegir la tarea de compilación.",
+ "The name of the folder opened in VS Code without any slashes (/)": "El nombre de la carpeta abierta en VS Code sin ninguna barra diagonal (/)",
+ "The nth parent folder name of the editor": "El enésimo nombre de carpeta primaria del editor",
+ "The parent folder name of the editor (e.g. myFileFolder)": "Nombre de la carpeta principal del editor (p. ej., miCarpetaDeArchivo)",
+ "The path of the folder opened in VS Code": "La ruta de la carpeta abierta en VS Code",
+ "The path where an extension is installed.": "Ruta de acceso en que se instala una extensión.",
+ "The task runner's current working directory on startup": "El directorio de trabajo del ejecutor de tarea en el arranque",
+ "Use the language of the currently active text editor if any": "Utilice el idioma del editor de texto actualmente activo, si existe",
+ "a conditional separator (' - ') that only shows when surrounded by variables with values": "un separador condicional (\"-\") que aparece solo cuando está rodeado de variables con valores",
+ "an indicator for when the active editor has unsaved changes": "un indicador para cuando el editor activo tiene cambios sin guardar",
+ "e.g. SSH": "por ejemplo, SSH",
+ "e.g. VS Code": "p. ej. VS Code",
+ "file path of the workspace (e.g. /Users/Development/myWorkspace)": "ruta del archivo del área de trabajo (p. ej. /Users/Development/myWorkspace)",
+ "file path of the workspace folder the file is contained in (e.g. /Users/Development/myFolder)": "ruta de acceso de archivo de la carpeta del área de trabajo en la que el archivo está contenido (p. ej. /Users/Development/myFolder)",
+ "gist": "gist",
+ "name of the workspace folder the file is contained in (e.g. myFolder)": "nombre de la carpeta del área de trabajo en la que el archivo está contenido (p. ej. myFolder)",
+ "name of the workspace with optional remote name and workspace indicator if applicable (e.g. myFolder, myRemoteFolder [SSH] or myWorkspace (Workspace))": "nombre del área de trabajo con el nombre remoto opcional y el indicador del área de trabajo si procede (por ejemplo, myFolder, myRemoteFolder [SSH] o myWorkspace (Workspace))",
+ "shortened name of the workspace without suffixes (e.g. myFolder or myWorkspace)": "nombre abreviado del área de trabajo sin sufijos (por ejemplo, myFolder o myWorkspace)",
+ "the file name (e.g. myFile.txt)": "el nombre del archivo (por ejemplo miarchivo.txt)",
+ "the full path of the file (e.g. /Users/Development/myFolder/myFileFolder/myFile.txt)": "la ruta de acceso completa del archivo (por ejemplo, /Users/Development/myFolder/myFileFolder/myFile.txt)",
+ "the full path of the folder the file is contained in (e.g. /Users/Development/myFolder/myFileFolder)": "la ruta completa de la carpeta que contiene el archivo (por ejemplo, /Users/Development/myFolder/myFileFolder)",
+ "the name of the active branch in the active repository (e.g. main)": "el nombre de la rama activa en el repositorio activo (por ejemplo, main)",
+ "the name of the active repository (e.g. vscode)": "el nombre del repositorio activo (por ejemplo, vscode)",
+ "the name of the folder the file is contained in (e.g. myFileFolder)": "el nombre de la carpeta en que se encuentra el archivo (por ejemplo, myFileFolder)",
+ "the path of the file relative to the workspace folder (e.g. myFolder/myFileFolder/myFile.txt)": "la ruta de acceso de archivo relativa a la carpeta de área de trabajo (p. ej. myFolder/myFileFolder/myFile.txt)",
+ "the path of the folder the file is contained in, relative to the workspace folder (e.g. myFolder/myFileFolder)": "la ruta de la carpeta que contiene el archivo, relativa a la carpeta del área de trabajo (por ejemplo myFolder/myFileFolder)",
+ "the state of the active editor (e.g. modified).": "el estado del editor activo (por ejemplo, modificado)."
+ },
+ "package": {
+ "description": "Proporciona características (IntelliSense avanzado, corrección automática) en archivos de configuración, como archivos de valores, de inicio y de recomendación de extensiones. ",
+ "displayName": "Edición de configuración"
+ }
+ }
+}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-es/translations/extensions/vscode.cpp.i18n.json b/i18n/vscode-language-pack-es/translations/extensions/vscode.cpp.i18n.json
index 5a6262fe75..abe62e7c3a 100644
--- a/i18n/vscode-language-pack-es/translations/extensions/vscode.cpp.i18n.json
+++ b/i18n/vscode-language-pack-es/translations/extensions/vscode.cpp.i18n.json
@@ -9,8 +9,8 @@
"version": "1.0.0",
"contents": {
"package": {
- "displayName": "Conceptos básicos del lenguaje C y C++",
- "description": "Proporciona fragmentos de código, resaltado de sintaxis, correspondencia de corchetes y plegado de código en archivos de C/C++."
+ "description": "Proporciona fragmentos de código, resaltado de sintaxis, correspondencia de corchetes y plegado de código en archivos de C/C++.",
+ "displayName": "Conceptos básicos del lenguaje C y C++"
}
}
}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-es/translations/extensions/vscode.csharp.i18n.json b/i18n/vscode-language-pack-es/translations/extensions/vscode.csharp.i18n.json
index 2922268bd6..0f34c019bf 100644
--- a/i18n/vscode-language-pack-es/translations/extensions/vscode.csharp.i18n.json
+++ b/i18n/vscode-language-pack-es/translations/extensions/vscode.csharp.i18n.json
@@ -9,8 +9,8 @@
"version": "1.0.0",
"contents": {
"package": {
- "displayName": "Conceptos básicos del lenguaje C#",
- "description": "Proporciona fragmentos de código, resaltado de sintaxis, correspondencia de corchetes y plegado de código en archivos de C#."
+ "description": "Proporciona fragmentos de código, resaltado de sintaxis, correspondencia de corchetes y plegado de código en archivos de C#.",
+ "displayName": "Conceptos básicos del lenguaje C#"
}
}
}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-es/translations/extensions/vscode.css-language-features.i18n.json b/i18n/vscode-language-pack-es/translations/extensions/vscode.css-language-features.i18n.json
new file mode 100644
index 0000000000..3194d71e04
--- /dev/null
+++ b/i18n/vscode-language-pack-es/translations/extensions/vscode.css-language-features.i18n.json
@@ -0,0 +1,368 @@
+{
+ "": [
+ "--------------------------------------------------------------------------------------------",
+ "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."
+ ],
+ "version": "1.0.0",
+ "contents": {
+ "bundle": {
+ "\"store\" a boolean test for later evaluation in a guard or if().": "\"guarda\" una prueba booleana para su evaluación posterior en una restricción o if().",
+ "'from' expected": "se esperaba \"from\"",
+ "'in' expected": "Se esperaba \"in\"",
+ "'through' or 'to' expected": "se esperaba \"through\" o \"to\"",
+ "'{0}'": "'{0}'",
+ "( expected": "Se esperaba (",
+ ") expected": "Se esperaba )",
+ "": "",
+ "@font-face": "@font-face",
+ "@font-face rule must define 'src' and 'font-family' properties": "La regla @font-face debe definir las propiedades \"src\" y \"font-family\"",
+ "@keyframes {0}": "@keyframes {0}",
+ "A list of properties that are not validated against the `unknownProperties` rule.": "Lista de propiedades que no se validan con la regla \"unknownProperties\".",
+ "Adds quotes to a string.": "Agrega comillas a una cadena.",
+ "Also define the standard property '{0}' for compatibility": "Define también la propiedad estándar \"{0}\" por compatibilidad",
+ "Always define standard rule '@keyframes' when defining keyframes.": "Defina siempre la regla estándar \"@keyframes\" al definir fotogramas clave.",
+ "Always include all vendor specific properties: Missing: {0}": "Incluir siempre todas las propiedades específicas del proveedor. Falta: {0}",
+ "Always include all vendor specific rules: Missing: {0}": "Incluir siempre todas las reglas específicas del proveedor: falta: {0}",
+ "Appends a single value onto the end of a list.": "Anexa un único valor al final de una lista.",
+ "Appends selectors to one another without spaces in between.": "Anexa selectores entre sí sin espacios entre sí.",
+ "Avoid using !important. It is an indication that the specificity of the entire CSS has gotten out of control and needs to be refactored.": "Evite usar \"!important\". Es una indicación de que la especificidad de todo el CSS se ha salido de control y debe ser refactorizada.",
+ "Avoid using 'float'. Floats lead to fragile CSS that is easy to break if one aspect of the layout changes.": "Le recomendamos no usar \"float\". Los valores float producen CSS vulnerables que pueden dañarse fácilmente si se cambia cualquier aspecto del diseño.",
+ "CSS Language Server": "Servidor de lenguaje CSS",
+ "CSS fix is outdated and can't be applied to the document.": "La corrección CSS está obsoleta y no se puede aplicar al documento.",
+ "Causes one or more rules to be emitted at the root of the document.": "Hace que se emitan una o varias reglas en la raíz del documento.",
+ "Changes one or more properties of a color.": "Cambia una o varias propiedades de un color.",
+ "Changes the alpha component for a color.": "Cambia el componente alfa de un color.",
+ "Changes the hue of a color.": "Cambia el matiz de un color.",
+ "Combines several lists into a single multidimensional list.": "Combina varias listas en una sola lista multidimensional.",
+ "Converts a color into the format understood by IE filters.": "Convierte un color en el formato entendido por los filtros IE.",
+ "Converts a color to grayscale.": "Convierte un color en escala de grises.",
+ "Converts a string to lower case.": "Convierte una cadena en minúsculas.",
+ "Converts a string to upper case.": "Convierte una cadena en mayúsculas.",
+ "Converts a unitless number to a percentage.": "Convierte un número sin unidad en un porcentaje.",
+ "Creates a Color from hue, saturation, and lightness values.": "Crea un color a partir de valores de matiz, saturación y claridad.",
+ "Creates a Color from hue, saturation, lightness, and alpha values.": "Crea un color a partir de valores de matiz, saturación, claridad y alfa.",
+ "Creates a Color from hue, white, and black values.": "Crea un color a partir de valores de matiz, blanco y negro.",
+ "Creates a Color from lightness, a, and b values.": "Crea un color a partir de los valores de luminosidad, a y b.",
+ "Creates a Color from lightness, chroma, and hue values.": "Crea un color a partir de los valores de luminosidad, croma y tono.",
+ "Creates a Color from red, green, and blue values.": "Crea un color a partir de los valores rojo, verde y azul.",
+ "Creates a Color from red, green, blue, and alpha values.": "Crea un color a partir de valores rojos, verdes, azules y alfa.",
+ "Creates a Color from the hue, saturation, and lightness values of another Color.": "Crea un color a partir de los valores de matiz, saturación y luminosidad de otro color.",
+ "Creates a Color from the hue, white, and black values of another Color.": "Crea un color a partir de los valores de matiz, blanco y negro de otro color.",
+ "Creates a Color from the lightness, a, and b values of another Color.": "Crea un color a partir de los valores de luminosidad, a y b de otro color.",
+ "Creates a Color from the lightness, chroma, and hue values of another Color.": "Crea un color a partir de los valores de luminosidad, tono y matiz de otro color.",
+ "Creates a Color from the red, green, and blue values of another Color.": "Crea un color a partir de los valores rojo, verde y azul de otro color.",
+ "Creates a Color in a specific color space from red, green, and blue values.": "Crea un color en un espacio de color específico a partir de los valores rojo, verde y azul.",
+ "Creates a Color in a specific color space from the red, green, and blue values of another Color.": "Crea un color en un espacio de color específico a partir de los valores rojo, verde y azul de otro color.",
+ "Defines complex operations that can be re-used throughout stylesheets.": "Define operaciones complejas que se pueden volver a usar en hojas de estilos.",
+ "Defines styles that can be re-used throughout the stylesheet with `@include`.": "Define estilos que se pueden volver a usar en toda la hoja de estilos con \"@include\".",
+ "Do not use duplicate style definitions": "No use definiciones de estilo duplicadas",
+ "Do not use empty rulesets": "No usar conjuntos de reglas vacíos",
+ "Do not use width or height when using padding or border": "No use el ancho ni la altura al emplear el relleno o el borde.",
+ "Dynamically calls a Sass function.": "Llama dinámicamente a una función SASS.",
+ "Each loop that sets `$var` to each item in the list or map, then outputs the styles it contains using that value of `$var`.": "Cada bucle que establece \"$var\" en cada elemento de la lista o asignación y, a continuación, genera los estilos que contiene con ese valor de \"$var\".",
+ "Exposes the details of Sass’s inner workings.": "Expone los detalles del funcionamiento interno de Sass.",
+ "Extends $extendee with $extender within $selector.": "Extiende $extendee con $extender dentro de $selector.",
+ "Extracts a substring from $string.": "Extrae una subcadena de $string.",
+ "Failed to apply CSS fix to the document. Please consider opening an issue with steps to reproduce.": "No se pudo aplicar la corrección CSS al documento. Considere la posibilidad de abrir una incidencia con los pasos a reproducir.",
+ "Finds the maximum of several numbers.": "Busca el máximo de varios números.",
+ "Finds the minimum of several numbers.": "Busca el mínimo de varios números.",
+ "Fluidly scales one or more properties of a color.": "Escala de forma fluida una o varias propiedades de un color.",
+ "Folding Region End": "Fin de la región plegable",
+ "Folding Region Start": "Inicio de la región plegable",
+ "For loop that repeatedly outputs a set of styles for each `$var` in the `from/through` or `from/to` clause.": "Bucle For que genera repetidamente un conjunto de estilos para cada \"$var\" en la cláusula \"from/through\" o \"from/to\".",
+ "Generates new colors based on existing ones, making it easy to build color themes.": "Genera nuevos colores basados en los existentes, lo que facilita la creación de temas de color.",
+ "Gets the blue component of a color.": "Obtiene el componente azul de un color.",
+ "Gets the green component of a color.": "Obtiene el componente verde de un color.",
+ "Gets the hue component of a color.": "Obtiene el componente de matiz de un color.",
+ "Gets the lightness component of a color.": "Obtiene el componente de claridad de un color.",
+ "Gets the opacity component of a color.": "Obtiene el componente de opacidad de un color.",
+ "Gets the red component of a color.": "Obtiene el componente rojo de un color.",
+ "Gets the saturation component of a color.": "Obtiene el componente de saturación de un color.",
+ "Hex colors must consist of three, four, six or eight hex numbers": "Los colores hexadecimales deben constar de tres, cuatro, seis u ocho números hexadecimales",
+ "IE hacks are only necessary when supporting IE7 and older": "Las modificaciones de IE solo son necesarias cuando se admite IE7 y versiones anteriores.",
+ "Import statements do not load in parallel": "Las instrucciones Import no se cargan en paralelo.",
+ "Includes the body if the expression does not evaluate to `false` or `null`.": "Incluye el cuerpo si la expresión no se evalúa como \"false\" o \"null\".",
+ "Includes the styles defined by another mixin into the current rule.": "Incluye los estilos definidos por otra combinación en la regla actual.",
+ "Increases or decreases one or more components of a color.": "Aumenta o disminuye uno o varios componentes de un color.",
+ "Inherits the styles of another selector.": "Hereda los estilos de otro selector.",
+ "Insert url() Function": "Insertar función url()",
+ "Insert url() Functions": "Insertar funciones url()",
+ "Inserts $insert into $string at $index.": "Inserta $insert en $string en $index.",
+ "Invalid number of parameters": "Número de parámetros incorrecto",
+ "Joins together two lists into one.": "Combina dos listas en una.",
+ "Lets you access and modify values in lists.": "Permite acceder a los valores de las listas y modificarlos.",
+ "Loads a Sass stylesheet and makes its mixins, functions, and variables available when this stylesheet is loaded with the @use rule.": "Carga una hoja de estilos Sass y hace que sus mixins, funciones y variables estén disponibles cuando esta hoja de estilos se cargue con la regla de @use.",
+ "Loads mixins, functions, and variables from other Sass stylesheets as 'modules', and combines CSS from multiple stylesheets together.": "Carga mixins, funciones y variables de otras hojas de estilos SASS como \"módulos\" y combina CSS de varias hojas de estilos a la vez.",
+ "Makes a color darker.": "Hace que un color sea más oscuro.",
+ "Makes a color less saturated.": "Hace que un color esté menos saturado.",
+ "Makes a color lighter.": "Hace que un color sea más claro.",
+ "Makes a color more opaque.": "Hace que un color sea más opaco.",
+ "Makes a color more saturated.": "Hace que un color esté más saturado.",
+ "Makes a color more transparent.": "Hace que un color sea más transparente.",
+ "Makes it easy to combine, search, or split apart strings.": "Facilita la combinación, búsqueda o división de cadenas.",
+ "Makes it possible to look up the value associated with a key in a map, and much more.": "Permite buscar el valor asociado a una clave en una asignación y mucho más.",
+ "Merges two maps together into a new map.": "Combina dos mapas en un mapa nuevo.",
+ "Mix two colors together in a polar color space.": "Combinar dos colores en un espacio de colores polares.",
+ "Mix two colors together in a rectangular color space.": "Combina dos colores en un espacio de colores rectangular.",
+ "Mixes two colors together.": "Combina dos colores.",
+ "Nests selector beneath one another like they would be nested in the stylesheet.": "Anida el selector debajo de otro como si estuviera anidado en una hoja de estilos.",
+ "No unit for zero needed": "No se necesita ninguna unidad para cero",
+ "Parses a selector into the format returned by &.": "Analiza un selector en el formato devuelto por &.",
+ "Prints the value of an expression to the standard error output stream. Useful for debugging complicated Sass files.": "Imprime el valor de una expresión en el flujo de salida de error estándar. Resulta útil para depurar archivos Sass complicados.",
+ "Prints the value of an expression to the standard error output stream. Useful for libraries that need to warn users of deprecations or recovering from minor mixin usage mistakes. Warnings can be turned off with the `--quiet` command-line option or the `:quiet` Sass option.": "Imprime el valor de una expresión en el flujo de salida de error estándar. Es útil para bibliotecas que necesitan advertir a los usuarios sobre software en desuso o recuperarse de errores leves de uso de mixin. Las advertencias se pueden desactivar con la opción de línea de comandos \"--quiet\" o la opción de Sass \":quiet\".",
+ "Property is ignored due to the display.": "La propiedad se omite debido a la pantalla.",
+ "Property is ignored due to the display. With 'display: block', vertical-align should not be used.": "La propiedad se omite debido a la pantalla. Con \"display: block\", no se debe usar la alineación vertical.",
+ "Provides access to Sass’s powerful selector engine.": "Proporciona acceso al eficaz motor de selector de Sass.",
+ "Provides functions that operate on numbers.": "Proporciona funciones que funcionan en números.",
+ "Removes quotes from a string.": "Quita comillas de una cadena.",
+ "Rename to '{0}'": "Cambiar el nombre a \"{0}\"",
+ "Replaces $original with $replacement within $selector.": "Reemplaza $original por $replacement en $selector.",
+ "Replaces the nth item in a list.": "Reemplaza el elemento nth de una lista.",
+ "Returns a list of all keys in a map.": "Devuelve una lista de todas las claves de una asignación.",
+ "Returns a list of all values in a map.": "Devuelve una lista de todos los valores de una asignación.",
+ "Returns a new map with keys removed.": "Devuelve una nueva asignación con claves quitadas.",
+ "Returns a random number.": "Devuelve un número aleatorio.",
+ "Returns a specific item in a list.": "Devuelve un elemento específico de una lista.",
+ "Returns the absolute value of a number.": "Devuelve el valor absoluto de un número.",
+ "Returns the complement of a color.": "Devuelve el complemento de un color.",
+ "Returns the index of the first occurance of $substring in $string.": "Devuelve el índice de la primera instancia de $substring en $string.",
+ "Returns the inverse of a color.": "Devuelve el inverso de un color.",
+ "Returns the keywords passed to a function that takes variable arguments.": "Devuelve las palabras clave pasadas a una función que toma argumentos de variable.",
+ "Returns the length of a list.": "Devuelve la longitud de una lista.",
+ "Returns the number of characters in a string.": "Devuelve el número de caracteres de una cadena.",
+ "Returns the position of a value within a list.": "Devuelve la posición de un valor dentro de una lista.",
+ "Returns the separator of a list.": "Devuelve el separador de una lista.",
+ "Returns the simple selectors that comprise a compound selector.": "Devuelve los selectores simples que componen un selector compuesto.",
+ "Returns the string representation of a value as it would be represented in Sass.": "Devuelve la representación de cadena de un valor tal como se representaría en Sass.",
+ "Returns the type of a value.": "Devuelve el tipo de un valor.",
+ "Returns the unit(s) associated with a number.": "Devuelve las unidades asociadas a un número.",
+ "Returns the value in a map associated with a given key.": "Devuelve el valor de un mapa asociado a una clave determinada.",
+ "Returns whether $super matches all the elements $sub does, and possibly more.": "Devuelve la respuesta a si $super coincide con todos los elementos $sub y, posiblemente, con más.",
+ "Returns whether a feature exists in the current Sass runtime.": "Devuelve si existe una característica en el tiempo de ejecución de SASS actual.",
+ "Returns whether a function with the given name exists.": "Devuelve si existe una función con el nombre especificado.",
+ "Returns whether a map has a value associated with a given key.": "Devuelve si una asignación tiene un valor asociado a una clave determinada.",
+ "Returns whether a mixin with the given name exists.": "Devuelve si existe un mixin con el nombre especificado.",
+ "Returns whether a number has units.": "Devuelve si un número tiene unidades.",
+ "Returns whether a variable with the given name exists in the current scope.": "Devuelve si existe una variable con el nombre especificado en el ámbito actual.",
+ "Returns whether a variable with the given name exists in the global scope.": "Devuelve si existe una variable con el nombre especificado en el ámbito global.",
+ "Returns whether two numbers can be added, subtracted, or compared.": "Devuelve si se pueden sumar, restar o comparar dos números.",
+ "Rounds a number down to the previous whole number.": "Redondea un número hacia abajo hasta el número entero anterior.",
+ "Rounds a number to the nearest whole number.": "Redondea un número al número entero más cercano.",
+ "Rounds a number up to the next whole number.": "Redondea un número al siguiente número entero.",
+ "Sass documentation": "Documentación de Sass",
+ "Selector Specificity": "Especificidad del selector",
+ "Selectors should not contain IDs because these rules are too tightly coupled with the HTML.": "Los selectores no deben contener identificadores porque estas reglas están estrechamente ligadas a HTML.",
+ "The universal selector (*) is known to be slow": "Se sabe que el selector universal \"*\" es lento.",
+ "Throws the value of an expression as a fatal error with stack trace. Useful for validating arguments to mixins and functions.": "Inicia el valor de una expresión como un error irrecuperable con el seguimiento de la pila. Es útil para validar argumentos en mixins y funciones.",
+ "URI expected": "Se esperaba el URI",
+ "URL encodes a string": "La dirección URL codifica una cadena",
+ "Unifies two selectors to produce a selector that matches elements matched by both.": "Unifica dos selectores para generar un selector que coincida con los elementos coincidentes con ambos.",
+ "Unknown at-rule.": "Regla At desconocida.",
+ "Unknown property.": "Propiedad desconocida.",
+ "Unknown property: '{0}'": "Propiedad desconocida: \"{0}\"",
+ "Unknown vendor specific property.": "Propiedad específica del proveedor desconocida.",
+ "When using a vendor-specific prefix also include the standard property": "Cuando use un prefijo específico del proveedor, incluya también la propiedad estándar.",
+ "When using a vendor-specific prefix make sure to also include all other vendor-specific properties": "Cuando use un prefijo específico del proveedor, compruebe que también haya incluido el resto de las propiedades específicas del proveedor.",
+ "While loop that takes an expression and repeatedly outputs the nested styles until the statement evaluates to `false`.": "Bucle While que toma una expresión y genera repetidamente los estilos anidados hasta que la instrucción se evalúa como \"false\".",
+ "[ expected": "Se esperaba [",
+ "] expected": "se esperaba ]",
+ "absolute value of a number": "valor absoluto de un número",
+ "arccosine - inverse of cosine function": "arcocoseno: inverso de la función de coseno",
+ "arcsine - inverse of sine function": "arcoseno: inverso de la función de seno",
+ "arctangent - inverse of tangent function": "arcotangente: inversa de la función tangente",
+ "argument from '{0}'": "argumento de \"{0}\"",
+ "at-rule or selector expected": "se esperaba un selector o una regla en la regla",
+ "at-rule unknown": "at-rule desconocida",
+ "bind the evaluation of a ruleset to each member of a list.": "enlaza la evaluación de un conjunto de reglas a cada miembro de una lista.",
+ "calculates square root of a number": "calcula la raíz cuadrada de un número",
+ "colon expected": "Se esperaban dos puntos",
+ "comma expected": "se esperaba una coma",
+ "condition expected": "condición esperada",
+ "converts numbers from one type into another": "convierte números de un tipo a otro",
+ "converts to a %, e.g. 0.5 > 50%": "se convierte en %, por ejemplo, 0,5 > 50 %",
+ "cosine function": "función de coseno",
+ "creates a #AARRGGBB": "crea un #AARRGGBB",
+ "creates a color": "crea un color",
+ "css.builtin.lab": "css.builtin.lab",
+ "dot expected": "se esperaba un punto",
+ "escape string content": "contenido de cadena de escape",
+ "expression expected": "se esperaba una expresión",
+ "first argument modulus second argument": "primer argumento módulo segundo argumento",
+ "first argument raised to the power of the second argument": "primer argumento elevado a la potencia del segundo argumento",
+ "generate a list spanning a range of values": "generar una lista que abarque un rango de valores",
+ "identifier expected": "se esperaba un identificador",
+ "identifier or variable expected": "se esperaba un identificador o una variable",
+ "identifier or wildcard expected": "se esperaba un identificador o un carácter comodín",
+ "inline-block is ignored due to the float. If 'float' has a value other than 'none', the box is floated and 'display' is treated as 'block'": "\"inline-block\" se omite debido al float. Si \"float\" tiene un valor distinto de \"none\", el cuadro es floated y \"display\" se trata como \"block\"",
+ "inlines a resource and falls back to `url()`": "coloca en línea un recurso y vuelve a \"url()\"",
+ "media query expected": "se esperaba una consulta multimedia",
+ "number expected": "se esperaba un número",
+ "operator expected": "se esperaba un operador",
+ "page directive or declaraton expected": "se esperaba una directiva de página o una declaración",
+ "parses a string to a color": "analiza una cadena en un color",
+ "percentage expected": "porcentaje esperado",
+ "property value expected": "se esperaba un valor de propiedad",
+ "remove or change the unit of a dimension": "quita o cambia la unidad de una dimensión",
+ "return `@color` 10% points darker": "devuelve \"@color\" con un 10 % de puntos más oscuros",
+ "return `@color` 10% points less saturated": "devuelve \"@color\" con un 10 % menos de puntos de saturación",
+ "return `@color` 10% points less transparent": "devuelve \"@color\" con un 10 % de puntos menos transparentes",
+ "return `@color` 10% points lighter": "devuelve \"@color\" con un 10 % más de puntos de luminosidad",
+ "return `@color` 10% points more saturated": "devuelve \"@color\" con un 10 % más de puntos de saturación",
+ "return `@color` 10% points more transparent": "devuelve \"@color\" con un 10 % más de puntos de transparencia",
+ "return `@color` with 50% transparency": "devuelve \"@color\" con transparencia del 50 %",
+ "return `@color` with a 10 degree larger in hue": "devuelve \"@color\" con un matiz mayor de 10 grados",
+ "return `@darkcolor` if `@color1 is> 43% luma` otherwise return `@lightcolor`, see notes": "devuelve \"@darkcolor\" si \"@color1 is> 43% luma\"; de lo contrario, devuelve \"@lightcolor\". Consulte las notas",
+ "return a mix of `@color1` and `@color2`": "devuelve una combinación de \"@color1\" y \"@color2\"",
+ "returns a grey, 100% desaturated color": "devuelve un color gris, 100 % desaturado",
+ "returns a value at the specified position in the list": "devuelve un valor en la posición especificada de la lista",
+ "returns one of two values depending on a condition.": "devuelve uno de los dos valores en función de una condición.",
+ "returns pi": "devuelve PI",
+ "returns the `alpha` channel of `@color`": "devuelve el canal \"alfa\" de \"@color\"",
+ "returns the `blue` channel of `@color`": "devuelve el canal \"blue\" de \"@color\"",
+ "returns the `green` channel of `@color`": "devuelve el canal \"verde\" de \"@color\"",
+ "returns the `hue` channel of `@color` in the HSL space": "devuelve el canal \"hue\" de \"@color\" en el espacio HSL.",
+ "returns the `hue` channel of `@color` in the HSV space": "devuelve el canal \"matiz\" de \"@color\" en el espacio HSV",
+ "returns the `lightness` channel of `@color` in the HSL space": "devuelve el canal \"lightness\" de \"@color\" en el espacio HSL",
+ "returns the `luma` value (perceptual brightness) of `@color`": "devuelve el valor \"luma\" (brillo perceptual) de \"@color\"",
+ "returns the `red` channel of `@color`": "devuelve el canal \"rojo\" de \"@color\"",
+ "returns the `saturation` channel of `@color` in the HSL space": "devuelve el canal \"saturación\" de \"@color\" en el espacio HSL",
+ "returns the `saturation` channel of `@color` in the HSV space": "devuelve el canal \"saturación\" de \"@color\" en el espacio HSV",
+ "returns the `value` channel of `@color` in the HSV space": "devuelve el canal \"value\" de \"@color\" en el espacio HSV",
+ "returns the lowest of one or more values": "devuelve el valor más bajo de uno o más valores",
+ "returns the number of elements in a value list": "devuelve el número de elementos de una lista de valores",
+ "rounds a number to a number of places": "redondea un número a un número de lugares decimales",
+ "rounds down to an integer": "redondea a un entero",
+ "rounds up to an integer": "redondea a un entero",
+ "selector expected": "se esperaba un selector",
+ "semi-colon expected": "se esperaba punto y coma",
+ "sine function": "función seno",
+ "string literal expected": "se esperaba un literal de cadena",
+ "string replace": "reemplazo de cadena",
+ "tangent function": "función tangente",
+ "term expected": "término esperado",
+ "unknown keyword": "palabra clave desconocida",
+ "uri or string expected": "Se esperaba un URI o una cadena",
+ "variable name expected": "se espera un nombre de variable",
+ "variable value expected": "se esperaba un valor de variable",
+ "whitespace expected": "se esperaba un espacio en blanco",
+ "wildcard expected": "se esperaba un carácter comodín",
+ "{ expected": "se esperaba {",
+ "{0}, '{1}'": "{0}, \"{1}\"",
+ "} expected": "se esperaba }"
+ },
+ "package": {
+ "css.colorDecorators.enable.deprecationMessage": "El valor \"css.colorDecorators.enable\" está en desuso en favor de \"editor.colorDecorators\".",
+ "css.completion.completePropertyWithSemicolon.desc": "Inserta punto y coma al final de la línea al completar las propiedades CSS.",
+ "css.completion.triggerPropertyValueCompletion.desc": "De forma predeterminada, VS Code desencadena la finalización de valores de propiedad tras seleccionar una propiedad CSS. Use esta opción para deshabilitar este comportamiento.",
+ "css.customData.desc": "Una lista de rutas de archivo relativas que apuntan a archivos JSON siguiendo el [formato de datos personalizados](https://github.com/microsoft/vscode-css-languageservice/blob/master/docs/customData.md).\r\n\r\nVS Code carga datos personalizados al inicio para mejorar la compatibilidad de CSS con las propiedades personalizadas (variables), las reglas, las pseudoclases y los pseudoelementos que especifique en los archivos JSON.\r\n\r\nLas rutas de los archivos son relativas al área de trabajo y solo se consideran las configuraciones de la carpeta del espacio de trabajo.",
+ "css.format.braceStyle.desc": "Ponga llaves en la misma línea que las reglas ('collapse') o coloque llaves en su propia línea ('expand').",
+ "css.format.enable.desc": "Habilita o deshabilita el formateador CSS predeterminado.",
+ "css.format.maxPreserveNewLines.desc": "Número máximo de saltos de línea que se conservarán en un fragmento cuando `#css.format.preserveNewLines#` esté habilitado.",
+ "css.format.newlineBetweenRules.desc": "Separe los conjuntos de reglas con una línea en blanco.",
+ "css.format.newlineBetweenSelectors.desc": "Separa los selectores con una nueva línea.",
+ "css.format.preserveNewLines.desc": "Indica si se deben conservar los saltos de línea existentes antes de las reglas y declaraciones.",
+ "css.format.spaceAroundSelectorSeparator.desc": "Asegúrate de que haya un carácter de espacio alrededor de los separadores de selector '>', '+', '~' (por ejemplo, 'a > b').",
+ "css.hover.documentation": "Muestra la documentación de propiedades y valores en los desplazamientos de CSS.",
+ "css.hover.references": "Mostrar las referencias a MDN mediante movimientos del puntero de CSS.",
+ "css.lint.argumentsInColorFunction.desc": "Número de parámetros incorrecto.",
+ "css.lint.boxModel.desc": "No use \"width\" o \"height\" al usar \"padding\" o \"border\".",
+ "css.lint.compatibleVendorPrefixes.desc": "Cuando use un prefijo específico del proveedor, compruebe que también haya incluido el resto de propiedades específicas del proveedor.",
+ "css.lint.duplicateProperties.desc": "No use definiciones de estilo duplicadas.",
+ "css.lint.emptyRules.desc": "No use conjuntos de reglas vacíos.",
+ "css.lint.float.desc": "Le recomendamos no usar \"float\". Los valores float producen CSS frágiles que pueden dañarse fácilmente si cambia cualquier aspecto del diseño.",
+ "css.lint.fontFaceProperties.desc": "La regla \"@font-face\" debe definir las propiedades \"src\" y \"font-family\".",
+ "css.lint.hexColorLength.desc": "Los colores hexadecimales deben constar de 3, 4, 6 u 8 números hexadecimales.",
+ "css.lint.idSelector.desc": "Los selectores no deben contener identificadores porque estas reglas están estrechamente ligadas a HTML.",
+ "css.lint.ieHack.desc": "Las modificaciones de IE solo son necesarias cuando se admite IE7 y versiones anteriores.",
+ "css.lint.importStatement.desc": "Las instrucciones Import no se cargan en paralelo.",
+ "css.lint.important.desc": "Evite usar `!important`. Es una indicación que la especificidad de todo el CSS se ha salido de control y debe ser refactorizada.",
+ "css.lint.propertyIgnoredDueToDisplay.desc": "La propiedad se ignora a causa de la pantalla. Por ejemplo, con \"display: inline\", las propiedades \"width\", \"height\", \"margin-top\", \"margin-bottom\" y \"float\" no tienen ningún efecto.",
+ "css.lint.universalSelector.desc": "Se sabe que el selector universal (\"*\") es lento.",
+ "css.lint.unknownAtRules.desc": "Regla At desconocida.",
+ "css.lint.unknownProperties.desc": "Propiedad desconocida.",
+ "css.lint.unknownVendorSpecificProperties.desc": "Propiedad específica del proveedor desconocida.",
+ "css.lint.validProperties.desc": "Lista de propiedades que no se validan con la regla \"unknownProperties\".",
+ "css.lint.vendorPrefix.desc": "Cuando use un prefijo específico del proveedor, incluya también la propiedad estándar.",
+ "css.lint.zeroUnits.desc": "No se necesita una unidad para cero.",
+ "css.title": "CSS",
+ "css.trace.server.desc": "Hace un seguimiento de la comunicación entre VSCode y el servidor de lenguaje CSS.",
+ "css.validate.desc": "Habilita o deshabilita todas las validaciones.",
+ "css.validate.title": "Controla la validación de CSS y la gravedad de los problemas.",
+ "description": "Proporciona un potente soporte de lenguaje para archivos CSS, LESS y SCSS.",
+ "displayName": "Características del lenguaje CSS",
+ "less.colorDecorators.enable.deprecationMessage": "El valor \"less.colorDecorators.enable\" está en desuso en favor de \"editor.colorDecorators\".",
+ "less.completion.completePropertyWithSemicolon.desc": "Inserta punto y coma al final de la línea al completar las propiedades CSS.",
+ "less.completion.triggerPropertyValueCompletion.desc": "De forma predeterminada, VS Code desencadena la finalización de valores de propiedad tras seleccionar una propiedad CSS. Use esta opción para deshabilitar este comportamiento.",
+ "less.format.braceStyle.desc": "Ponga llaves en la misma línea que las reglas ('collapse') o coloque llaves en su propia línea ('expand').",
+ "less.format.enable.desc": "Habilite o deshabilite el formateador LESS predeterminado.",
+ "less.format.maxPreserveNewLines.desc": "Número máximo de saltos de línea que se conservarán en un fragmento cuando `#less.format.preserveNewLines#` esté habilitado.",
+ "less.format.newlineBetweenRules.desc": "Separa los conjuntos de reglas con una línea en blanco.",
+ "less.format.newlineBetweenSelectors.desc": "Separa los selectores con una nueva línea.",
+ "less.format.preserveNewLines.desc": "Indica si se deben conservar los saltos de línea existentes antes de las reglas y declaraciones.",
+ "less.format.spaceAroundSelectorSeparator.desc": "Asegúrate de que haya un carácter de espacio alrededor de los separadores de selector '>', '+', '~' (por ejemplo, 'a > b').",
+ "less.hover.documentation": "Muestra la documentación de propiedades y valores en los desplazamientos de LESS.",
+ "less.hover.references": "Mostrar las referencias a MDN mediante movimientos del puntero de LESS.",
+ "less.lint.argumentsInColorFunction.desc": "Número de parámetros incorrecto.",
+ "less.lint.boxModel.desc": "No use \"width\" o \"height\" al usar \"padding\" o \"border\".",
+ "less.lint.compatibleVendorPrefixes.desc": "Cuando use un prefijo específico del proveedor, compruebe que también haya incluido el resto de propiedades específicas del proveedor.",
+ "less.lint.duplicateProperties.desc": "No use definiciones de estilo duplicadas.",
+ "less.lint.emptyRules.desc": "No use conjuntos de reglas vacíos.",
+ "less.lint.float.desc": "Le recomendamos no usar \"float\". Los valores float producen CSS frágiles que pueden dañarse fácilmente si cambia cualquier aspecto del diseño.",
+ "less.lint.fontFaceProperties.desc": "La regla \"@font-face\" debe definir las propiedades \"src\" y \"font-family\".",
+ "less.lint.hexColorLength.desc": "Los colores hexadecimales deben constar de 3, 4, 6 u 8 números hexadecimales.",
+ "less.lint.idSelector.desc": "Los selectores no deben contener identificadores porque estas reglas están estrechamente ligadas a HTML.",
+ "less.lint.ieHack.desc": "Las modificaciones de IE solo son necesarias cuando se admite IE7 y versiones anteriores.",
+ "less.lint.importStatement.desc": "Las instrucciones Import no se cargan en paralelo.",
+ "less.lint.important.desc": "Evite usar `!important`. Es una indicación que la especificidad de todo el CSS se ha salido de control y debe ser refactorizada.",
+ "less.lint.propertyIgnoredDueToDisplay.desc": "La propiedad se ignora a causa de la pantalla. Por ejemplo, con \"display: inline\", las propiedades \"width\", \"height\", \"margin-top\", \"margin-bottom\" y \"float\" no tienen ningún efecto.",
+ "less.lint.universalSelector.desc": "Se sabe que el selector universal (\"*\") es lento.",
+ "less.lint.unknownAtRules.desc": "Regla At desconocida.",
+ "less.lint.unknownProperties.desc": "Propiedad desconocida.",
+ "less.lint.unknownVendorSpecificProperties.desc": "Propiedad específica del proveedor desconocida.",
+ "less.lint.validProperties.desc": "Lista de propiedades que no se validan con la regla \"unknownProperties\".",
+ "less.lint.vendorPrefix.desc": "Cuando use un prefijo específico del proveedor, incluya también la propiedad estándar.",
+ "less.lint.zeroUnits.desc": "No se necesita una unidad para cero.",
+ "less.title": "LESS",
+ "less.validate.desc": "Habilita o deshabilita todas las validaciones.",
+ "less.validate.title": "Controla la validación de LESS y la gravedad de los problemas.",
+ "scss.colorDecorators.enable.deprecationMessage": "El valor \"scss.colorDecorators.enable\" está en desuso en favor de \"editor.colorDecorators\".",
+ "scss.completion.completePropertyWithSemicolon.desc": "Inserta punto y coma al final de la línea al completar las propiedades CSS.",
+ "scss.completion.triggerPropertyValueCompletion.desc": "De forma predeterminada, VS Code desencadena la finalización de valores de propiedad tras seleccionar una propiedad CSS. Use esta opción para deshabilitar este comportamiento.",
+ "scss.format.braceStyle.desc": "Ponga llaves en la misma línea que las reglas ('collapse') o coloque llaves en su propia línea ('expand').",
+ "scss.format.enable.desc": "Habilita o deshabilita el formateador SCSS predeterminado.",
+ "scss.format.maxPreserveNewLines.desc": "Número máximo de saltos de línea que se conservarán en un fragmento cuando `#scss.format.preserveNewLines#` esté habilitado.",
+ "scss.format.newlineBetweenRules.desc": "Separa los conjuntos de reglas con una línea en blanco.",
+ "scss.format.newlineBetweenSelectors.desc": "Separa los selectores con una nueva línea.",
+ "scss.format.preserveNewLines.desc": "Indica si se deben conservar los saltos de línea existentes antes de las reglas y declaraciones.",
+ "scss.format.spaceAroundSelectorSeparator.desc": "Asegúrate de que haya un carácter de espacio alrededor de los separadores de selector '>', '+', '~' (por ejemplo, 'a > b').",
+ "scss.hover.documentation": "Muestra la documentación de propiedades y valores en los desplazamientos de SCSS.",
+ "scss.hover.references": "Mostrar las referencias a MDN mediante movimientos del puntero de SCSS.",
+ "scss.lint.argumentsInColorFunction.desc": "Número de parámetros incorrecto.",
+ "scss.lint.boxModel.desc": "No use \"width\" o \"height\" al usar \"padding\" o \"border\".",
+ "scss.lint.compatibleVendorPrefixes.desc": "Cuando use un prefijo específico del proveedor, compruebe que también haya incluido el resto de propiedades específicas del proveedor.",
+ "scss.lint.duplicateProperties.desc": "No use definiciones de estilo duplicadas.",
+ "scss.lint.emptyRules.desc": "No use conjuntos de reglas vacíos.",
+ "scss.lint.float.desc": "Le recomendamos no usar \"float\". Los valores float producen CSS frágiles que pueden dañarse fácilmente si cambia cualquier aspecto del diseño.",
+ "scss.lint.fontFaceProperties.desc": "La regla \"@font-face\" debe definir las propiedades \"src\" y \"font-family\".",
+ "scss.lint.hexColorLength.desc": "Los colores hexadecimales deben constar de 3, 4, 6 u 8 números hexadecimales.",
+ "scss.lint.idSelector.desc": "Los selectores no deben contener identificadores porque estas reglas están estrechamente ligadas a HTML.",
+ "scss.lint.ieHack.desc": "Las modificaciones de IE solo son necesarias cuando se admite IE7 y versiones anteriores.",
+ "scss.lint.importStatement.desc": "Las instrucciones Import no se cargan en paralelo.",
+ "scss.lint.important.desc": "Evite usar `!important`. Es una indicación que la especificidad de todo el CSS se ha salido de control y debe ser refactorizada.",
+ "scss.lint.propertyIgnoredDueToDisplay.desc": "La propiedad se ignora a causa de la pantalla. Por ejemplo, con \"display: inline\", las propiedades \"width\", \"height\", \"margin-top\", \"margin-bottom\" y \"float\" no tienen ningún efecto.",
+ "scss.lint.universalSelector.desc": "Se sabe que el selector universal (\"*\") es lento.",
+ "scss.lint.unknownAtRules.desc": "Regla de entrada desconocida.",
+ "scss.lint.unknownProperties.desc": "Propiedad desconocida.",
+ "scss.lint.unknownVendorSpecificProperties.desc": "Propiedad específica del proveedor desconocida.",
+ "scss.lint.validProperties.desc": "Lista de propiedades que no se validan con la regla \"unknownProperties\".",
+ "scss.lint.vendorPrefix.desc": "Cuando use un prefijo específico del proveedor, incluya también la propiedad estándar.",
+ "scss.lint.zeroUnits.desc": "No se necesita una unidad para cero.",
+ "scss.title": "SCSS (Sass)",
+ "scss.validate.desc": "Habilita o deshabilita todas las validaciones.",
+ "scss.validate.title": "Controla la validación de SCSS y la gravedad de los problemas."
+ }
+ }
+}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-es/translations/extensions/vscode.css.i18n.json b/i18n/vscode-language-pack-es/translations/extensions/vscode.css.i18n.json
index 1e2fdfb4a8..d6aa2b999e 100644
--- a/i18n/vscode-language-pack-es/translations/extensions/vscode.css.i18n.json
+++ b/i18n/vscode-language-pack-es/translations/extensions/vscode.css.i18n.json
@@ -9,8 +9,8 @@
"version": "1.0.0",
"contents": {
"package": {
- "displayName": "Básicos de CSS",
- "description": "Proporciona resaltado de sintaxis y correspondencia de corchetes en archivos CSS, LESS y SCSS."
+ "description": "Proporciona resaltado de sintaxis y correspondencia de corchetes en archivos CSS, LESS y SCSS.",
+ "displayName": "Básicos de CSS"
}
}
}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-es/translations/extensions/dart.i18n.json b/i18n/vscode-language-pack-es/translations/extensions/vscode.dart.i18n.json
similarity index 100%
rename from i18n/vscode-language-pack-es/translations/extensions/dart.i18n.json
rename to i18n/vscode-language-pack-es/translations/extensions/vscode.dart.i18n.json
diff --git a/i18n/vscode-language-pack-es/translations/extensions/vscode.debug-auto-launch.i18n.json b/i18n/vscode-language-pack-es/translations/extensions/vscode.debug-auto-launch.i18n.json
new file mode 100644
index 0000000000..75886145a9
--- /dev/null
+++ b/i18n/vscode-language-pack-es/translations/extensions/vscode.debug-auto-launch.i18n.json
@@ -0,0 +1,38 @@
+{
+ "": [
+ "--------------------------------------------------------------------------------------------",
+ "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."
+ ],
+ "version": "1.0.0",
+ "contents": {
+ "bundle": {
+ "Always": "Siempre",
+ "Auto Attach: Always": "Asociar automáticamente: Siempre",
+ "Auto Attach: Disabled": "Asociar automáticamente: deshabilitada",
+ "Auto Attach: Smart": "Asociar automáticamente: Inteligente",
+ "Auto Attach: With Flag": "Asociar automáticamente: Con marca",
+ "Auto attach is disabled and not shown in status bar": "La asociación automática está deshabilitada y no se muestra en la barra de estado",
+ "Auto attach to every Node.js process launched in the terminal": "Se asocia automáticamente a todos los procesos de Node.js iniciados en el terminal",
+ "Auto attach when running scripts that aren't in a node_modules folder": "Se asocia automáticamente cuando se ejecutan scripts que no están en una carpeta node_modules",
+ "Automatically attach to node.js processes in debug mode": "Conectar automáticamente a los procesos de node.js en modo de depuración",
+ "Debug Auto Attach": "Depuración de asociación automática",
+ "Disabled": "Deshabilitado",
+ "Only With Flag": "Solo con marca",
+ "Only auto attach when the `--inspect` flag is given": "Solo es posible la asociación automática cuando se proporciona la marca \"--inspect\".",
+ "Re-enable auto attach": "Volver a habilitar la asociación automática",
+ "Smart": "Inteligente",
+ "Temporarily disable auto attach in this session": "Deshabilitar temporalmente la asociación automática en esta sesión",
+ "Toggle Auto Attach": "Alternar asociar automáticamente",
+ "Toggle auto attach in this workspace": "Alternar la asociación automática en esta área de trabajo",
+ "Toggle auto attach on this machine": "Alternar la asociación automática en esta máquina"
+ },
+ "package": {
+ "description": "Ayudante para la funcionalidad de conexión automática cuando las extensiones de depuración de node.js están desactivadas.",
+ "displayName": "Conexión Automática a node.js en modo de depuración",
+ "toggle.auto.attach": "Alternar auto conectarse"
+ }
+ }
+}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-es/translations/extensions/vscode.debug-server-ready.i18n.json b/i18n/vscode-language-pack-es/translations/extensions/vscode.debug-server-ready.i18n.json
new file mode 100644
index 0000000000..986da04f13
--- /dev/null
+++ b/i18n/vscode-language-pack-es/translations/extensions/vscode.debug-server-ready.i18n.json
@@ -0,0 +1,31 @@
+{
+ "": [
+ "--------------------------------------------------------------------------------------------",
+ "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."
+ ],
+ "version": "1.0.0",
+ "contents": {
+ "bundle": {
+ "Format uri ('{0}') must contain exactly one substitution placeholder.": "El URI de formato (\"{0}\") debe contener exactamente un marcador de posición de sustitución.",
+ "Format uri ('{0}') uses a substitution placeholder but pattern did not capture anything.": "El URI de formato (\"{0}\") usa un marcador de posición de sustitución, pero el patrón no capturó nada."
+ },
+ "package": {
+ "debug.server.ready.action.debugWithChrome.description": "Comience a depurar con el \"Depurador para Chrome\".",
+ "debug.server.ready.action.description": "Qué hacer con el URI cuando el servidor está listo.",
+ "debug.server.ready.action.openExternally.description": "Abra el URI externamente con la aplicación predeterminada.",
+ "debug.server.ready.action.startDebugging.description": "Ejecuta otra configuración de inicio.",
+ "debug.server.ready.debugConfig.description": "Configuración de depuración que se va a ejecutar.",
+ "debug.server.ready.debugConfigName.description": "Nombre de la configuración de inicio que se va a ejecutar.",
+ "debug.server.ready.killOnServerStop.description": "Detenga la sesión secundaria cuando se detenga la sesión primaria.",
+ "debug.server.ready.pattern.description": "El servidor está preparado si este patrón aparece en la consola de depuración. El primer grupo de captura debe incluir un URI o un número de puerto.",
+ "debug.server.ready.serverReadyAction.description": "Actuar sobre un URI cuando un programa de servidor en proceso de depuración esté listo (se indica mediante el envío de la salida del formulario \"escuchando en el puerto 3000\" o \"Ahora escuchando en: https://localhost:5001' a la consola de depuración).",
+ "debug.server.ready.uriFormat.description": "Una cadena de formato usada al construir el URI a partir de un número de puerto. El primer \"%s\" se reemplaza por el número de puerto.",
+ "debug.server.ready.webRoot.description": "Valor pasado a la configuración de depuración para el \"Depurador para Chrome\".",
+ "description": "Abrir URI en el navegador si el servidor bajo la depuración está listo.",
+ "displayName": "Acción lista para el servidor"
+ }
+ }
+}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-es/translations/extensions/diff.i18n.json b/i18n/vscode-language-pack-es/translations/extensions/vscode.diff.i18n.json
similarity index 100%
rename from i18n/vscode-language-pack-es/translations/extensions/diff.i18n.json
rename to i18n/vscode-language-pack-es/translations/extensions/vscode.diff.i18n.json
diff --git a/i18n/vscode-language-pack-es/translations/extensions/vscode.docker.i18n.json b/i18n/vscode-language-pack-es/translations/extensions/vscode.docker.i18n.json
index f1c5ed63ff..942338474b 100644
--- a/i18n/vscode-language-pack-es/translations/extensions/vscode.docker.i18n.json
+++ b/i18n/vscode-language-pack-es/translations/extensions/vscode.docker.i18n.json
@@ -9,8 +9,8 @@
"version": "1.0.0",
"contents": {
"package": {
- "displayName": "Conceptos básicos del lenguaje Docker",
- "description": "Proporciona resaltado de sintaxis y correspondencia de corchetes en archivos de Docker."
+ "description": "Proporciona resaltado de sintaxis y correspondencia de corchetes en archivos de Docker.",
+ "displayName": "Conceptos básicos del lenguaje Docker"
}
}
}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-es/translations/extensions/vscode.dotenv.i18n.json b/i18n/vscode-language-pack-es/translations/extensions/vscode.dotenv.i18n.json
new file mode 100644
index 0000000000..dd05db0a4a
--- /dev/null
+++ b/i18n/vscode-language-pack-es/translations/extensions/vscode.dotenv.i18n.json
@@ -0,0 +1,16 @@
+{
+ "": [
+ "--------------------------------------------------------------------------------------------",
+ "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."
+ ],
+ "version": "1.0.0",
+ "contents": {
+ "package": {
+ "description": "Proporciona resaltado de sintaxis y correspondencia de corchetes en archivos de dotenv.",
+ "displayName": "Conceptos básicos del lenguaje dotenv"
+ }
+ }
+}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-es/translations/extensions/vscode.emmet.i18n.json b/i18n/vscode-language-pack-es/translations/extensions/vscode.emmet.i18n.json
new file mode 100644
index 0000000000..20e10f20a6
--- /dev/null
+++ b/i18n/vscode-language-pack-es/translations/extensions/vscode.emmet.i18n.json
@@ -0,0 +1,83 @@
+{
+ "": [
+ "--------------------------------------------------------------------------------------------",
+ "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."
+ ],
+ "version": "1.0.0",
+ "contents": {
+ "bundle": {
+ "Emmet Abbreviation": "Abreviación Emmet",
+ "Enter Abbreviation": "Escribir abreviatura",
+ "Invalid emmet.variables field. See https://code.visualstudio.com/docs/editor/emmet#_emmet-configuration for a valid example.": "Campo ediscovery.variables no válido. Consulte https://code.visualstudio.com/docs/editor/emmet#_emmet-configuration para obtener un ejemplo válido.",
+ "Invalid snippets file. See https://code.visualstudio.com/docs/editor/emmet#_using-custom-emmet-snippets for a valid example.": "Archivo de fragmentos de código no válido. Vea https://code.visualstudio.com/docs/editor/emmet#_using-custom-emmet-snippets para obtener un ejemplo válido.",
+ "Invalid syntax profile. See https://code.visualstudio.com/docs/editor/emmet#_emmet-configuration for a valid example.": "Perfil de sintaxis no válido. Consulte https://code.visualstudio.com/docs/editor/emmet#_emmet-configuration para obtener un ejemplo válido."
+ },
+ "package": {
+ "command.balanceIn": "Equilibrio (entrante)",
+ "command.balanceOut": "Equilibrio (saliente)",
+ "command.decrementNumberByOne": "Disminuir por 1",
+ "command.decrementNumberByOneTenth": "Disminuir por 0.1",
+ "command.decrementNumberByTen": "Disminuir por 10",
+ "command.evaluateMathExpression": "Evaluar expresión matemática",
+ "command.incrementNumberByOne": "Aumentar por 1",
+ "command.incrementNumberByOneTenth": "Aumentar por 0.1",
+ "command.incrementNumberByTen": "Aumentar por 10",
+ "command.matchTag": "Ir al par coincidente",
+ "command.mergeLines": "Combinar líneas",
+ "command.nextEditPoint": "Ir al siguiente punto de edición",
+ "command.prevEditPoint": "Ir al punto de edición anterior",
+ "command.reflectCSSValue": "Reflejar valor CSS",
+ "command.removeTag": "Quitar etiqueta",
+ "command.selectNextItem": "Seleccionar el siguiente elemento",
+ "command.selectPrevItem": "Seleccionar el elemento anterior",
+ "command.showEmmetCommands": "Mostrar los comandos de Emmet",
+ "command.splitJoinTag": "Dividir/Combinar etiqueta",
+ "command.toggleComment": "Alternar comentario",
+ "command.updateImageSize": "Actualizar tamaño de imagen",
+ "command.updateTag": "Actualizar etiqueta",
+ "command.wrapWithAbbreviation": "Encapsular con abreviatura",
+ "description": "Soporte de Emmet para VS Code",
+ "emmetExclude": "Matriz de lenguajes donde no deben expandirse las abreviaturas de Emmet.",
+ "emmetExtensionsPath": "Una matriz de rutas, donde cada ruta puede contener syntaxProfiles de Emmet y / o archivos de fragmentos.\r\n En caso de conflictos, los perfiles / fragmentos de las rutas posteriores anularán los de las rutas anteriores.\r\n Consulte https://code.visualstudio.com/docs/editor/emmet para obtener más información y un archivo de fragmento de ejemplo.",
+ "emmetExtensionsPathItem": "Una ruta de acceso que contiene Emmet syntaxProfiles y/o fragmentos de código.",
+ "emmetIncludeLanguages": "Habilite la abreviación Emmet en los lenguajes que no se admiten de forma predeterminada. Agregue una asignación aquí entre el lenguaje y el lenguaje compatible con Emmet.\r\n Por ejemplo: \"{\"vue-html\": \"html\", \"javascript\": \"javascriptreact\"}\"",
+ "emmetOptimizeStylesheetParsing": "Cuando se establece en \"false\", se analiza el archivo entero para determinar si la posición actual es válida para la expansión de abreviaciones Emmet. Cuando se establece en \"true\", solo se analiza el contenido alrededor de la posición actual en archivos CSS, SCSS o Less.",
+ "emmetPreferences": "Preferencias usadas para modificar el comportamiento de algunas acciones y resoluciones de Emmet.",
+ "emmetPreferencesAllowCompactBoolean": "Si es \"true\", se produce una anotación compacta de atributos booleanos.",
+ "emmetPreferencesBemElementSeparator": "Separador de elementos utilizado para las clases cuando se utiliza el filtro BEM",
+ "emmetPreferencesBemModifierSeparator": "Separador de modificador utilizado para las clases cuando se utiliza el filtro BEM",
+ "emmetPreferencesCssAfter": "Símbolo que debe colocarse al final de una propiedad CSS cuando se expanden abreviaturas CSS",
+ "emmetPreferencesCssBetween": "Símbolo que debe colocarse entre una propiedad CSS y un valor cuando se expanden abreviaturas CSS",
+ "emmetPreferencesCssColorShort": "Si es \"true\", los valores de color como \"#f\" se expandirán a \"#fff\" en lugar de \"#ffffff\".",
+ "emmetPreferencesCssFuzzySearchMinScore": "La mínima puntuación (de 0 a 1) que se debe alcanzar en la comparación difusa de abreviación. Los valores más bajos pueden producir muchos resultados falsos positivos, los valores más altos pueden reducir posibles coincidencias.",
+ "emmetPreferencesCssMozProperties": "Propiedades CSS separadas por comas que obtienen el prefijo de proveedor 'moz' cuando se utilizan en la abreviatura Emmet que comienza con '-'. Establecer en la cadena vacía para evitar siempre el prefijo 'moz'.",
+ "emmetPreferencesCssMsProperties": "Propiedades CSS separadas por comas que obtienen el prefijo de proveedor 'ms' cuando se utilizan en la abreviatura Emmet que comienza con '-'. Establecer en la cadena vacía para evitar siempre el prefijo 'ms'.",
+ "emmetPreferencesCssOProperties": "Propiedades CSS separadas por comas que obtienen el prefijo de proveedor 'o' cuando se utilizan en la abreviatura Emmet que comienza con '-'. Establecer en la cadena vacía para evitar siempre el prefijo 'o'.",
+ "emmetPreferencesCssWebkitProperties": "Propiedades CSS separadas por comas que obtienen el prefijo de proveedor 'webkit' cuando se utilizan en la abreviatura Emmet que comienza con '-'. Establecer en la cadena vacía para evitar siempre el prefijo 'webkit'.",
+ "emmetPreferencesFilterCommentAfter": "Una definición de comentario que debe colocarse después de elemento emparejado cuando se aplica el filtro de comentarios.",
+ "emmetPreferencesFilterCommentBefore": "Una definición de comentario que debe colocarse antes del elemento emparejado cuando se aplica el filtro de comentarios.",
+ "emmetPreferencesFilterCommentTrigger": "Una lista separada por comas de nombres de atributos que debe existir en la abreviatura para que se aplique el filtro de comentarios",
+ "emmetPreferencesFloatUnit": "Unidad predeterminada para valores float",
+ "emmetPreferencesFormatForceIndentTags": "Una matriz de nombres de etiqueta que siempre debería recibir una sangría interna",
+ "emmetPreferencesFormatNoIndentTags": "Una matriz de nombres de etiqueta que no debería recibir una sangría interna",
+ "emmetPreferencesIntUnit": "Unidad predeterminada para valores enteros",
+ "emmetPreferencesOutputInlineBreak": "Número de elementos alineados del mismo nivel para los que se necesita colocar saltos de línea entre ellos. Si el valor es \"0\", los elementos alineados siempre se expanden en una sola línea.",
+ "emmetPreferencesOutputReverseAttributes": "Si es \"true\", revierte las direcciones de combinación de atributos al resolver fragmentos de código.",
+ "emmetPreferencesOutputSelfClosingStyle": "Estilo de etiquetas de autocierre: HTML (\" \"), XML (\" \") o XHTML (\" \").",
+ "emmetPreferencesSassAfter": "Símbolo que debe colocarse al final de una propiedad CSS cuando se expanden abreviaturas CSS en archivos SASS",
+ "emmetPreferencesSassBetween": "Símbolo que debe colocarse entre una propiedad CSS y un valor cuando se expanden abreviaturas CSS en archivos SASS",
+ "emmetPreferencesStylusAfter": "Símbolo que debe colocarse al final de una propiedad CSS cuando se expanden abreviaturas CSS en archivos Stylus",
+ "emmetPreferencesStylusBetween": "Símbolo que debe colocarse entre una propiedad CSS y un valor cuando se expanden abreviaturas CSS en archivos Stylus",
+ "emmetShowAbbreviationSuggestions": "Muestra posibles abreviaciones Emmet como sugerencias. No se aplica a hojas de estilos ni cuando emmet.showExpandedAbbreviation está establecido en \"never\". ",
+ "emmetShowExpandedAbbreviation": "Muestra las abreviaciones Emmet expandidas como sugerencias.\r\nLa opción \"inMarkupAndStylesheetFilesOnly\" se aplica a html, haml, jade, slim, xml, xsl, css, scss, sass, less y stylus.\r\nLa opción \"always\" se aplica a todas las partes del archivo, independientemente del marcado o CSS.",
+ "emmetShowSuggestionsAsSnippets": "Si es \"true\", las sugerencias Emmet se muestran como fragmentos de código, de modo que puede ordenarlas por el valor \"#editor.snippetSuggestions#\". ",
+ "emmetSyntaxProfiles": "Defina el perfil de la sintaxis especificada o use su propio perfil con reglas específicas.",
+ "emmetTriggerExpansionOnTab": "Cuando se habilita, las abreviaciones Emmet se expanden al presionar TAB, incluso cuando las finalizaciones no se muestran. Cuando está deshabilitada, las finalizaciones que se muestran se pueden aceptar presionando TAB.",
+ "emmetUseInlineCompletions": "Si es \"true\", Emmet usará finalizaciones insertadas para sugerir expansiones. Para evitar que el proveedor de elementos de finalización no insertados aparezca con la frecuencia con la que esta configuración es \"true\", active \"#editor.quickSuggestions#\" en \"inline\" o \"off\" para el elemento \"other\".",
+ "emmetVariables": "Variables para ser utilizadas en fragmentos de código de Emmet"
+ }
+ }
+}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-es/translations/extensions/vscode.extension-editing.i18n.json b/i18n/vscode-language-pack-es/translations/extensions/vscode.extension-editing.i18n.json
new file mode 100644
index 0000000000..9541c1a4be
--- /dev/null
+++ b/i18n/vscode-language-pack-es/translations/extensions/vscode.extension-editing.i18n.json
@@ -0,0 +1,33 @@
+{
+ "": [
+ "--------------------------------------------------------------------------------------------",
+ "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."
+ ],
+ "version": "1.0.0",
+ "contents": {
+ "bundle": {
+ "Data URLs are not a valid image source.": "Las direcciones URL de datos no son un origen de imagen válido.",
+ "Embedded SVGs are not a valid image source.": "Los SGV insertados no son un origen de imagen válido.",
+ "Error parsing the when-clause:": "Error al analizar la cláusula de when:",
+ "Images must use the HTTPS protocol.": "Las imágenes deben utilizar el protocolo HTTPS.",
+ "Language specific editor settings": "Configuración del editor específica del lenguaje",
+ "Override editor settings for language": "Reemplazar configuración del editor para lenguaje",
+ "Relative badge URLs require a repository with HTTPS protocol to be specified in this package.json.": "Las direcciones URL relativas de distintivos requieren un repositorio con el protocolo HTTPS especificado en este archivo package.json.",
+ "Relative image URLs require a repository with HTTPS protocol to be specified in the package.json.": "Las direcciones URL relativas de imágenes requieren un repositorio con el protocolo HTTPS especificado en el archivo package.json.",
+ "Remove activation event": "Quitar evento de activación",
+ "SVGs are not a valid image source.": "Los SVG no son un origen de imagen válido.",
+ "This activation event can be removed as VS Code generates these automatically from your package.json contribution declarations.": "Este evento de activación puede eliminarse ya que VS Code los genera automáticamente a partir de sus declaraciones de contribución de package.json.",
+ "This activation event can be removed for extensions targeting engine version ^1.75.0 as VS Code will generate these automatically from your package.json contribution declarations.": "Este evento de activación se puede quitar para las extensiones destinadas a la versión del motor ^1.75.0, ya que VS Code las generará automáticamente a partir de las declaraciones de contribución package.json.",
+ "This activation event cannot be explicitly listed by your extension.": "La extensión no puede enumerar explícitamente este evento de activación.",
+ "This proposal cannot be used because for this extension the product defines a fixed set of API proposals. You can test your extension but before publishing you MUST reach out to the VS Code team.": "Esta propuesta no se puede usar porque, para esta extensión, el producto define un conjunto fijo de propuestas de API. Puede probar la extensión, pero antes de publicarla DEBE ponerse en contacto con el equipo de VS Code.",
+ "Using '*' activation is usually a bad idea as it impacts performance.": "El uso de la activación \"*\" suele ser una mala idea, ya que afecta al rendimiento."
+ },
+ "package": {
+ "description": "Proporciona funcionalidad de detección de errores para la creación de extensiones.",
+ "displayName": "Creación de extensiones"
+ }
+ }
+}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-es/translations/extensions/vscode.fsharp.i18n.json b/i18n/vscode-language-pack-es/translations/extensions/vscode.fsharp.i18n.json
index 1508106e3f..72034b2bf0 100644
--- a/i18n/vscode-language-pack-es/translations/extensions/vscode.fsharp.i18n.json
+++ b/i18n/vscode-language-pack-es/translations/extensions/vscode.fsharp.i18n.json
@@ -9,8 +9,8 @@
"version": "1.0.0",
"contents": {
"package": {
- "displayName": "Conceptos básicos del lenguaje F#",
- "description": "Proporciona fragmentos de código, resaltado de sintaxis, correspondencia de corchetes y plegado de código en archivos de F#."
+ "description": "Proporciona fragmentos de código, resaltado de sintaxis, correspondencia de corchetes y plegado de código en archivos de F#.",
+ "displayName": "Conceptos básicos del lenguaje F#"
}
}
}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-es/translations/extensions/vscode.git-base.i18n.json b/i18n/vscode-language-pack-es/translations/extensions/vscode.git-base.i18n.json
new file mode 100644
index 0000000000..21f3c79db8
--- /dev/null
+++ b/i18n/vscode-language-pack-es/translations/extensions/vscode.git-base.i18n.json
@@ -0,0 +1,30 @@
+{
+ "": [
+ "--------------------------------------------------------------------------------------------",
+ "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."
+ ],
+ "version": "1.0.0",
+ "contents": {
+ "bundle": {
+ "Branch name": "Nombre de rama",
+ "Choose a URL to clone from.": "Elija una dirección URL desde la que se va a clonar.",
+ "No remote repositories found.": "No se encontraron repositorios remotos.",
+ "Provide repository URL": "Proporcionar la dirección URL del repositorio",
+ "Provide repository URL or pick a repository source.": "Proporcione la dirección URL del repositorio o seleccione un origen de repositorio.",
+ "Repository name": "Nombre del repositorio",
+ "Repository name (type to search)": "Nombre del repositorio (escribir para buscar)",
+ "URL": "URL",
+ "recently opened": "abiertos recientemente",
+ "remote sources": "orígenes remotos",
+ "{0} Error: {1}": "{0} Error: {1}"
+ },
+ "package": {
+ "command.api.getRemoteSources": "Obtener orígenes remotos",
+ "description": "Selectores y contribuciones estáticas de Git.",
+ "displayName": "Git Base"
+ }
+ }
+}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-es/translations/extensions/vscode.git.i18n.json b/i18n/vscode-language-pack-es/translations/extensions/vscode.git.i18n.json
new file mode 100644
index 0000000000..e90af19e12
--- /dev/null
+++ b/i18n/vscode-language-pack-es/translations/extensions/vscode.git.i18n.json
@@ -0,0 +1,807 @@
+{
+ "": [
+ "--------------------------------------------------------------------------------------------",
+ "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."
+ ],
+ "version": "1.0.0",
+ "contents": {
+ "bundle": {
+ "\n\nAre you sure you want to discard ALL changes in {0} files?": "\n¿Está seguro de que desea descartar TODOS los cambios en {0} archivos?",
+ "\n\nAre you sure you want to discard changes in '{0}'?": "\n\n¿Está seguro de que quiere descartar los cambios de \"{0}\"?",
+ "\n and {0} more file{1}...": "\n y {0} más archivos{1}...",
+ "\"{0}\" has fingerprint \"{1}\"": "“{0}” tiene la huella digital “{1}”.",
+ "$(info) Remote \"{0}\" has no tags.": "$(info) Remoto \"{0}\" no tiene etiquetas.",
+ "$(info) This repository has no stashes.": "$(info) Este repositorio no tiene cambios provisionales.",
+ "$(info) This repository has no tags.": "$(info) Este repositorio no tiene etiquetas.",
+ "$(info) This repository has no worktrees.": "$(info) Este repositorio no tiene árboles de trabajo.",
+ "A branch named \"{0}\" already exists": "Ya existe una rama denominada \"{0}\"",
+ "A git repository was found in the parent folders of the workspace or the open file(s). Would you like to open the repository?": "Se encontró un repositorio Git en las carpetas primarias del área de trabajo o en los archivos abiertos. ¿Desea abrir el repositorio?",
+ "A worktree already exists at \"{0}\".": "Ya existe un árbol de trabajo en \"{0}\".",
+ "Absolute paths not supported in \"git.scanRepositories\" setting.": "No se admiten rutas de acceso absolutas en la configuración \"git.scanRepositories\".",
+ "Add Remote": "Agregar remoto",
+ "Add a new remote...": "Agregar un nuevo remoto...",
+ "Add remote from URL": "Agregar remoto desde dirección URL",
+ "Add remote from {0}": "Agregar remoto desde {0}",
+ "Add to Workspace": "Añadir al área de trabajo",
+ "All Repositories": "Todos los repositorios",
+ "Always": "Siempre",
+ "Always Pull": "Incorporar cambios siempre con \"pull\"",
+ "Always Replace Local Tag(s)": "Reemplazar siempre etiquetas locales",
+ "Are you sure you want to DELETE the following untracked file: '{0}'?{1}": "¿Está seguro de que desea ELIMINAR el siguiente archivo sin seguimiento: '{0}'?{1}",
+ "Are you sure you want to DELETE the {0} untracked files?{1}": "¿Está seguro de que desea ELIMINAR los {0} archivos sin seguimiento?{1}",
+ "Are you sure you want to continue connecting?": "¿Está seguro de que quiere continuar con la conexión?",
+ "Are you sure you want to create an empty commit?": "¿Seguro que desea crear una confirmación vacía?",
+ "Are you sure you want to delete branch \"{0}\"? This action will permanently remove the branch reference from the repository.": "¿Está seguro de que desea eliminar la rama \"{0}\"? Esta acción eliminará permanentemente la referencia de la rama en el repositorio.",
+ "Are you sure you want to delete tag \"{0}\"? This action will permanently remove the tag reference from the repository.": "¿Está seguro de que desea eliminar la etiqueta \"{0}\"? Esta acción eliminará permanentemente la referencia de la etiqueta en el repositorio.",
+ "Are you sure you want to discard ALL changes in {0} files?\n\nThis is IRREVERSIBLE!\nYour current working set will be FOREVER LOST if you proceed.": "¿Seguro que quiere descartar TODOS los cambios en {0} archivos?\n\nEsta acción es IRREVERSIBLE.\nSi continúa, su espacio de trabajo actual SE PERDERÁ PARA SIEMPRE.",
+ "Are you sure you want to discard changes in '{0}'?": "¿Está seguro de que quiere descartar los cambios de \"{0}\"?",
+ "Are you sure you want to drop ALL stashes? There are {0} stashes that will be subject to pruning, and MAY BE IMPOSSIBLE TO RECOVER.": "¿Está seguro de que quiere quitar TODOS los cambios guardados provisionalmente? Hay {0} cambios guardados provisionalmente que estarán sujetos a eliminación y PUEDEN SER IMPOSIBLES DE RECUPERAR.",
+ "Are you sure you want to drop ALL stashes? There is 1 stash that will be subject to pruning, and MAY BE IMPOSSIBLE TO RECOVER.": "¿Está seguro de que quiere quitar TODOS los cambios guardados provisionalmente? Hay 1 cambio guardado provisionalmente que estará sujeto a eliminación y PUEDE SER IMPOSIBLES DE RECUPERAR.",
+ "Are you sure you want to drop the stash: {0}?": "¿Seguro que quiere quitar el \"stash\": {0}?",
+ "Are you sure you want to restore '{0}'?": "¿Está seguro de que desea restaurar \"{0}\"?",
+ "Are you sure you want to restore ALL {0} files?": "¿Está seguro de que desea restaurar los {0} archivos?",
+ "Are you sure you want to stage {0} files with merge conflicts?": "¿Está seguro de que quiere hacer una copia intermedia de {0} archivos con conflictos de fusión mediante combinación?",
+ "Are you sure you want to stage {0} with merge conflicts?": "¿Está seguro de que quiere hacer una copia intermedia de {0} con conflictos de fusión mediante combinación?",
+ "Ask Me Later": "Preguntarme luego",
+ "Branch \"{0}\" already exists": "La rama \"{0}\" ya existe",
+ "Branch \"{0}\" is already checked out in the current repository.": "La rama \"{0}\" ya está comprobada en el repositorio actual.",
+ "Branch \"{0}\" is already checked out in the current window.": "La rama \"{0}\" ya está comprobada en la ventana actual.",
+ "Branch \"{0}\" is already checked out in the worktree at \"{1}\".": "La rama \"{0}\" ya está comprobada en el árbol de trabajo en \"{1}\".",
+ "Branch name": "Nombre de rama",
+ "Branch name needs to match regex: {0}": "El nombre de la rama debe coincidir con la expresión regular \"{0}\".",
+ "Branches": "Ramas",
+ "Can't force push refs to remote. The tip of the remote-tracking branch has been updated since the last checkout. Try running \"Pull\" first to pull the latest changes from the remote branch first.": "No se pueden forzar las referencias de inserción al modo remoto. La sugerencia de la rama de seguimiento remoto se ha actualizado desde la última desprotección. Intente ejecutar primero \"Extraer\" para extraer primero los cambios más recientes de la rama remota.",
+ "Can't push refs to remote. Try running \"Pull\" first to integrate your changes.": "No se pueden enviar referencias al remoto. Intenta ejecutar 'Pull' primero para integrar tus cambios.",
+ "Can't undo because HEAD doesn't point to any commit.": "No se puede deshacer porque HEAD no apunta a ningún commit.",
+ "Changes": "Cambios",
+ "Checking Out Branch/Tag...": "Extrayendo rama/etiqueta...",
+ "Checking Out Changes...": "Extrayendo cambios...",
+ "Checkout Branch/Tag...": "Extraer rama/etiqueta...",
+ "Choose Folder...": "Elegir carpeta...",
+ "Choose a folder to clone {0} into": "Elija una carpeta en la que clonar {0}",
+ "Choose a repository": "Elija un repositorio",
+ "Choose which repository to clone": "Elija el repositorio que se va a clonar",
+ "Choose which repository to publish": "Elija el repositorio que se va a publicar",
+ "Clear whitespace characters": "Borrar caracteres de espacio en blanco",
+ "Clone again": "Clonar de nuevo",
+ "Clone from URL": "Dirección URL de repositorio",
+ "Clone from {0}": "Clonar desde {0}",
+ "Cloning git repository \"{0}\"...": "Clonando el repositorio GIT '{0}'...",
+ "Commit": "Confirmar",
+ "Commit & Push Changes": "Confirmar y enviar cambios",
+ "Commit & Sync Changes": "Confirmar y sincronizar cambios",
+ "Commit Anyway": "Confirmar de todos modos",
+ "Commit Changes": "Confirmar cambios",
+ "Commit Changes on \"{0}\"": "Confirmar cambios en \"{0}\"",
+ "Commit Changes to New Branch": "Hacer \"commit\" de cambios en una nueva rama",
+ "Commit Hash": "Hash de confirmación",
+ "Commit message": "Mensaje de confirmación",
+ "Commit operation was cancelled due to empty commit message.": "Se canceló la operación de confirmación debido a un mensaje de confirmación vacío.",
+ "Commit to New Branch & Push Changes": "Hacer \"commit\" en rama nueva e insertar cambios",
+ "Commit to New Branch & Synchronize Changes": "Confirmar en una rama nueva y sincronizar cambios",
+ "Commit to a New Branch": "Confirmar en una rama nueva",
+ "Commits without verification are not allowed, please enable them with the \"git.allowNoVerifyCommit\" setting.": "No se permiten las confirmaciones sin verificación, habilítelas con la configuración \"git. allowNoVerifyCommit\".",
+ "Committing & Pushing Changes...": "Confirmando y enviando cambios...",
+ "Committing & Synchronizing Changes...": "Confirmación y sincronización de cambios...",
+ "Committing Changes to New Branch...": "Haciendo \"commit\" de los cambios en la nueva rama...",
+ "Committing Changes...": "Confirmando cambios...",
+ "Committing to New Branch & Pushing Changes...": "Haciendo \"commit\" en nueva rama e insertando los cambios...",
+ "Committing to New Branch & Synchronizing Changes...": "Confirmando con la nueva rama y sincronizando cambios...",
+ "Conflict: Added By Them": "Conflicto: agregado por ellos",
+ "Conflict: Added By Us": "Conflicto: agregado por nosotros",
+ "Conflict: Both Added": "Conflicto: agregado por ambos",
+ "Conflict: Both Deleted": "Conflicto: eliminado por ambos",
+ "Conflict: Both Modified": "Conflicto: modificado por ambos",
+ "Conflict: Deleted By Them": "Conflicto: eliminado por ellos",
+ "Conflict: Deleted By Us": "Conflicto: eliminado por nosotros",
+ "Continue Merge": "Continuar fusión mediante combinación",
+ "Continue Rebase": "Continuar fusión mediante cambio de base",
+ "Continuing Merge...": "Continuando fusión mediante combinación...",
+ "Continuing Rebase...": "Continuando fusión mediante cambio de base...",
+ "Copy Commit Hash": "Copiar hash de confirmación",
+ "Could not clone your repository as Git is not installed.": "No se pudo clonar el repositorio porque GIT no está instalado.",
+ "Create Empty Commit": "Crear \"commit\" vacío",
+ "Create New Branch": "Crear nueva rama",
+ "Current": "Actual",
+ "Current commit message only contains whitespace characters": "El mensaje de confirmación actual solo contiene espacios en blanco.",
+ "Delete All {0} Files": "Eliminar todos los archivos {0}",
+ "Delete Branch": "Borrar rama",
+ "Delete File": "Eliminar archivo",
+ "Delete Tag": "Eliminar etiqueta",
+ "Deleted": "Eliminado",
+ "Discard 1 Tracked File": "Descartar un archivo con seguimiento",
+ "Discard All {0} Files": "Descartar todos los archivos ({0})",
+ "Discard All {0} Tracked Files": "Descartar los {0} archivos a los que se les realiza seguimiento",
+ "Discard File": "Descartar archivo",
+ "Don't Pull": "No incorporar cambios con \"pull\"",
+ "Don't Show Again": "No volver a mostrar",
+ "Download Git": "Descargar Git",
+ "Enables the following features: {0}": "Activar las siguientes características: {0}",
+ "Failed to authenticate to git remote.": "No se pudo autenticar en GIT remoto.",
+ "Failed to authenticate to git remote:\n\n{0}": "No se pudo autenticar en GIT remoto:\n\n{0}",
+ "Failed to delete using the Recycle Bin. Do you want to permanently delete instead?": "Error al eliminar usando la papelera de reciclaje. ¿Desea eliminar de forma permanente en su lugar?",
+ "Failed to delete using the Trash. Do you want to permanently delete instead?": "No se pudo eliminar usando la papelera. ¿Desea eliminar de forma permanente?",
+ "Failed to open changes between \"{0}\" and \"{1}\": {2}": "No se pudieron abrir los cambios entre \"{0}\" y \"{1}\": {2}",
+ "File \"{0}\" was deleted by them and modified by us.\n\nWhat would you like to do?": "Ellos eliminaron el archivo \"{0}\" y nosotros lo modificamos.\n\n¿Qué quiere hacer?",
+ "File \"{0}\" was deleted by us and modified by them.\n\nWhat would you like to do?": "Nosotros eliminamos el archivo \"{0}\" y ellos lo modificaron.\n\n¿Qué quiere hacer?",
+ "Force Checkout": "Forzar extracción del repositorio",
+ "Force Delete": "Forzar eliminación",
+ "Force push is not allowed, please enable it with the \"git.allowForcePush\" setting.": "No está permitido forzar envío de cambios, habilite la opción mediante el control \"git.allowForcePush\".",
+ "Git Blame Information": "Información de Git Blame",
+ "Git History": "Historia de Git",
+ "Git Local Changes (Index)": "Cambios locales de Git (índice)",
+ "Git Local Changes (Working Tree)": "Cambios locales de Git (árbol de trabajo)",
+ "Git error": "Error de GIT",
+ "Git not found. Install it or configure it using the \"git.path\" setting.": "Git no encontrado. Instálelo o configúrelo mediante el valor \"git.path\".",
+ "Git repositories were found in the parent folders of the workspace or the open file(s). Would you like to open the repositories?": "Se encontraron repositorios Git en las carpetas primarias del área de trabajo o en los archivos abiertos. ¿Desea abrir los repositorios?",
+ "Git: {0}": "GIT: {0}",
+ "HEAD version of \"{0}\" is not available.": "La versión HEAD de \"{0}\" no está disponible.",
+ "Hard wrap all lines": "Ajustar todas las líneas de forma rígida",
+ "Hard wrap line": "Línea de encapsulado rígido",
+ "Ignored": "Omitido",
+ "Incoming": "Entrante",
+ "Incoming Changes": "Cambios entrantes",
+ "Incoming Changes (added)": "Cambios entrantes (agregados)",
+ "Incoming Changes (deleted)": "Cambios entrantes (eliminados)",
+ "Incoming Changes (modified)": "Cambios entrantes (modificados)",
+ "Incoming Changes (renamed)": "Cambios entrantes (nombre cambiado)",
+ "Index Added": "Índice añadido",
+ "Index Copied": "Índice copiado",
+ "Index Deleted": "Índice Eliminado",
+ "Index Modified": "Índice modificado",
+ "Index Renamed": "Nombre de Índice Cambiado",
+ "Initialize Repository": "Inicializar el repositorio",
+ "Intent to Add": "Intención de añadir",
+ "Intent to Rename": "Intención de cambiar el nombre",
+ "Invalid branch name": "Nombre de rama no válido",
+ "It looks like the current branch \"{0}\" might have been rebased. Are you sure you still want to pull into it?": "Parece que la rama actual \"{0}\" puede haberse reajustado. ¿Seguro que aún quiere incorporarlo?",
+ "It looks like the current branch might have been rebased. Are you sure you still want to pull into it?": "Parece que la rama actual puede haberse fusionado mediante cambio de base con \"rebase\". ¿Seguro que aún quiere incorporar los cambios en esta mediante \"pull\"?",
+ "It's not possible to change the commit message in the middle of a rebase. Please complete the rebase operation and use interactive rebase instead.": "No es posible cambiar el mensaje de confirmación en medio de un rebase. En su lugar, complete la operación rebase y utilice rebase interactivo.",
+ "Keep Our Version": "Mantener nuestra versión",
+ "Keep Their Version": "Mantener la versión de ellos",
+ "Learn More": "Más información",
+ "Make sure you configure your \"user.name\" and \"user.email\" in git.": "Asegúrese de configurar los valores de \"user.name\" y \"user.email\" en git.",
+ "Manage Unsafe Repositories": "Administrar repositorios no seguros",
+ "Merge Changes": "Fusionar cambios mediante combinación",
+ "Message": "Mensaje",
+ "Message (commit on \"{0}\")": "Mensaje (confirmar en \"{0}\")",
+ "Message ({0} to commit on \"{1}\")": "Mensaje ({0} para confirmar en \"{1}\")",
+ "Message ({0} to commit)": "Mensaje ({0} para confirmar)",
+ "Migrate Changes": "Migrar cambios",
+ "Modified": "Modificado",
+ "Move to Recycle Bin": "Mover a la papelera de reciclaje",
+ "Move to Trash": "Mover a la papelera",
+ "Never": "Nunca",
+ "No": "No",
+ "No hunk found at cursor position.": "No se encontró ningún trozo en la posición del cursor.",
+ "No rebase in progress.": "No hay ninguna fusión mediante cambio de base \"rebase\" en curso.",
+ "Not Committed Yet": "Sin confirmar",
+ "Not Committed Yet (Staged)": "Sin confirmar (preconfigurado)",
+ "OK": "Aceptar",
+ "OK, Don't Ask Again": "De acuerdo, no volver a preguntar",
+ "OK, Don't Show Again": "No volver a mostrar ",
+ "Open": "Abrir",
+ "Open Commit": "Abrir confirmación",
+ "Open Comparison": "Abrir comparación",
+ "Open Existing Repository Clone": "Abrir clonación del repositorio existente",
+ "Open File": "Abrir archivo",
+ "Open Git Log": "Abrir registro de GIT",
+ "Open Merge": "Ejecutar combinación",
+ "Open Repositories In Parent Folders": "Abrir repositorios en carpetas principales",
+ "Open Repository": "Abrir repositorio",
+ "Open Settings": "Abrir configuración",
+ "Open Worktree in Current Window": "Abrir el árbol de trabajo en la ventana actual",
+ "Open Worktree in New Window": "Abrir el árbol de trabajo en una nueva ventana",
+ "Open in New Window": "Abrir en una ventana nueva",
+ "Optionally provide a stash message": "Opcionalmente, proporcionar un mensaje para el guardado provisional",
+ "Passphrase": "Frase de contraseña",
+ "Pick a branch to pull from": "Seleccionar una rama de la que extraer",
+ "Pick a provider to publish the branch \"{0}\" to:": "Seleccione un proveedor para publicar la rama \"{0}\":",
+ "Pick a remote to publish the branch \"{0}\" to:": "Seleccionar un elemento remoto para publicar la rama \"{0}\":",
+ "Pick a remote to pull the branch from": "Seleccione un origen remoto desde el que extraer la rama",
+ "Pick a remote to remove": "Seleccione un remoto para quitar",
+ "Pick a repository to mark as safe and open": "Elegir un repositorio para marcarlo como seguro y abierto",
+ "Pick a repository to open": "Elija un repositorio para abrir",
+ "Pick a repository to reopen": "Elija un repositorio para volver a abrir",
+ "Pick a stash to apply": "Elegir un cambio guardado provisionalmente para aplicarlo",
+ "Pick a stash to drop": "Escoja una copia intermedia para eliminar",
+ "Pick a stash to pop": "Elija un cambio guardado provisionalmente para aplicarlo y quitarlo",
+ "Pick a stash to view": "Seleccionar un almacenamiento provisional para ver",
+ "Pick workspace folder to initialize git repo in": "Seleccione una carpeta de área de trabajo en la que inicializar el repositorio de git",
+ "Please check out a branch to push to a remote.": "Extraiga del repositorio una rama para insertar un remoto.",
+ "Please clean your repository working tree before checkout.": "Limpie el árbol de trabajo del repositorio antes de la desprotección.",
+ "Please provide a commit message": "Proporcione un mensaje de confirmación",
+ "Please provide a message to annotate the tag": "Por favor, especifique un mensaje para anotar la etiqueta",
+ "Please provide a new branch name": "Proporcione un nuevo nombre de rama",
+ "Please provide a remote name": "Proporcione un nombre de remoto",
+ "Please provide a tag name": "Por favor proporcione un nombre para la etiqueta ",
+ "Please provide a worktree path": "Proporcione una ruta de acceso del árbol de trabajo",
+ "Please provide the commit hash": "Proporcione el hash de \"commit\".",
+ "Proceed": "Continuar",
+ "Proceed with migrating changes to the current repository?": "¿Desea continuar con la migración de los cambios al repositorio actual?",
+ "Publish Branch": "Publicar rama",
+ "Publish Branch \"{0}\"/{Locked=\"Branch\"}Do not translate \"Branch\" as it is a git term": "Publicar Branch \"{0}\"",
+ "Publish Branch/{Locked=\"Branch\"}Do not translate \"Branch\" as it is a git term": "Publicar Branch",
+ "Publish to {0}": "Publicar en {0}",
+ "Publish to...": "Publicar en...",
+ "Publishing Branch \"{0}\".../{Locked=\"Branch\"}Do not translate \"Branch\" as it is a git term": "Publicando Branch \"{0}\"...",
+ "Publishing Branch.../{Locked=\"Branch\"}Do not translate \"Branch\" as it is a git term": "Publicando Branch...",
+ "Pull": "Incorporación de cambios",
+ "Pull {0} and push {1} commits between {2}/{3}": "Hacer \"pull\" de {0} y \"push\" de {1} \"commits\" entre {2}/{3}",
+ "Pull {0} commits from {1}/{2}": "Hacer \"pull\" en {0} \"commits\" de {1}/{2}",
+ "Push {0} commits to {1}/{2}": "Hacer \"push\" en {0} \"commits\" a {1}/{2}",
+ "Rebasing": "Creando una nueva base",
+ "Regenerate Branch Name": "Regenerar nombre de rama",
+ "Remote \"{0}\" already exists.": "El remoto \"{0}\" ya existe.",
+ "Remote branch at {0}": "Rama remota en {0}",
+ "Remote name": "Nombre de remoto",
+ "Remote name format invalid": "Formato de nombre de remoto no válido",
+ "Remote tag at {0}": "Etiqueta remota en {0}",
+ "Reopen Closed Repositories": "Volver a abrir repositorios cerrados",
+ "Replace Local Tag(s)": "Reemplazar etiqueta(s) local(es)",
+ "Restore All {0} Files": "Restaurar todos los archivos {0}",
+ "Restore File": "Restaurar archivo",
+ "Save All & Commit Changes": "Guardar todo y confirmar los cambios",
+ "Save All & Stash": "Guardar todo y aplicar \"stash\"",
+ "Select Worktree Destination": "Seleccionar como destino del árbol de trabajo",
+ "Select a branch or tag to checkout": "Seleccionar una rama o etiqueta para extraer del repositorio",
+ "Select a branch or tag to create the new worktree from": "Seleccione una rama o etiqueta para crear el nuevo árbol de trabajo desde",
+ "Select a branch or tag to merge from": "Seleccionar una rama o etiqueta desde la que combinar",
+ "Select a branch to checkout in detached mode": "Seleccionar una rama para desproteger en modo desasociado",
+ "Select a branch to delete": "Seleccione una rama para borrar",
+ "Select a branch to rebase onto": "Seleccionar una rama en la que fusionar mediante \"rebase\"",
+ "Select a ref to create the branch from": "Seleccione una referencia desde la cual se creará la rama",
+ "Select a reference to compare with": "Seleccione una referencia con la que comparar",
+ "Select a remote branch to delete": "Seleccionar una rama remota para eliminar",
+ "Select a remote tag to delete": "Seleccionar una etiqueta remota para eliminar",
+ "Select a remote to delete a tag from": "Seleccione un control remoto para eliminar una etiqueta",
+ "Select a remote to fetch": "Seleccionar un repositorio remoto para capturar",
+ "Select a tag to delete": "Seleccione una etiqueta para eliminar",
+ "Select a worktree to delete": "Seleccionar un árbol de trabajo para eliminar",
+ "Select a worktree to migrate changes from": "Seleccione un árbol de trabajo desde el que migrar los cambios",
+ "Select as Repository Destination": "Seleccionar como destino del repositorio",
+ "Select as Worktree Destination": "Seleccionar como destino del árbol de trabajo",
+ "Show Changes": "Mostrar los cambios",
+ "Show Command Output": "Mostrar salida del comando",
+ "Staged Changes": "Cambios \"staged\"",
+ "Stash & Checkout": "Guardar provisionalmente y extraer del repositorio",
+ "Stash Anyway": "Guardar provisionalmente de todos modos",
+ "Stash message": "Mensaje para el guardado provisional",
+ "Stashed Changes": "Cambios guardados provisionalmente",
+ "Successfully pushed.": "Push realizado con éxito.",
+ "Synchronize Changes": "Sincronizar cambios",
+ "Synchronizing Changes...": "Sincronizando cambios...",
+ "Syncing. Cancelling may cause serious damages to the repository": "Sincronizando. La cancelación puede provocar daños graves en el repositorio.",
+ "Tag at {0}": "Etiqueta en {0}",
+ "Tag name": "Nombre de etiqueta",
+ "Tags": "Etiquetas",
+ "The \"{0}\" repository has {1} submodules which won't be opened automatically. You can still open each one individually by opening a file within.": "El repositorio “{0}” tiene {1} submódulos que no se abrirán automáticamente. Usted todavía puede abrir cada archivo individualmente.",
+ "The \"{0}\" repository has {1} worktrees which won't be opened automatically. You can still open each one individually by opening a file within.": "El repositorio “{0}” tiene {1} árboles de trabajo que no se abrirán automáticamente. Puede abrir cada uno individualmente abriendo un archivo dentro.",
+ "The active branch cannot be deleted.": "No se puede eliminar la rama activa.",
+ "The branch \"{0}\" has no remote branch. Would you like to publish this branch?": "La rama \"{0}\" no tiene ninguna rama remota. ¿Quiere publicar esta rama?",
+ "The branch \"{0}\" is not fully merged. Delete anyway?": "La rama \"{0}\" no está totalmente combinada. ¿Eliminar de todos modos?",
+ "The changes are already present in the current branch.": "Los cambios ya están presentes en la rama actual.",
+ "The current branch is not published to the remote. Would you like to publish it to access your changes elsewhere?": "La rama actual no está publicada en remoto. ¿Le gustaría publicarla para acceder a sus cambios en otro lugar?",
+ "The following file has unresolved diagnostics: '{0}'.\n\nHow would you like to proceed?": "El siguiente archivo tiene diagnósticos sin resolver: '{0}'.\n\n¿Cómo desea continuar?",
+ "The following file has unsaved changes which won't be included in the commit if you proceed: {0}.\n\nWould you like to save it before committing?": "El siguiente archivo tiene cambios no guardados que no se incluirán en la confirmación si continúa: {0}.\n\n¿Desea guardarlos antes de confirmar?",
+ "The following file has unsaved changes which won't be included in the stash if you proceed: {0}.\n\nWould you like to save it before stashing?": "El archivo siguiente tiene cambios no guardados que no se incluirán en el \"stash\" si continúa: {0}.\n\n¿Quiere guardarlo antes de aplicar \"stash\"?",
+ "The git repositories in the current folder are potentially unsafe as the folders are owned by someone other than the current user.": "Los repositorios GIT de la carpeta actual son potencialmente inseguros, ya que las carpetas pertenecen a alguien que no es el usuario actual.",
+ "The git repository at \"{0}\" has too many active changes, only a subset of Git features will be enabled.": "El repositorio Git \"{0}\" contiene muchos cambios activos, solamente un subconjunto de las características de Git serán habilitadas.",
+ "The git repository in the current folder is potentially unsafe as the folder is owned by someone other than the current user.": "El repositorio GIT de la carpeta actual es potencialmente inseguro, ya que la carpeta pertenece a alguien que no es el usuario actual.",
+ "The last commit was a merge commit. Are you sure you want to undo it?": "La última confirmación fue una confirmación de fusión mediante combinación. ¿Seguro que quiere deshacerla?",
+ "The new branch will be \"{0}\"": "La nueva rama será \"{0}\"",
+ "The remote branch of the active branch cannot be deleted.": "No se puede eliminar la rama remota de la rama activa.",
+ "The repository does not have any changes.": "El repositorio no tiene ningún cambio.",
+ "The repository does not have any commits. Please make an initial commit before creating a stash.": "El repositorio no tiene ninguna confirmación. Realice una confirmación inicial antes de crear un almacenamiento provisional.",
+ "The repository does not have any staged changes.": "El repositorio no tiene ningún cambio preconfigurado.",
+ "The repository does not have any untracked changes.": "El repositorio no tiene ningún cambio sin seguimiento.",
+ "The selection range does not contain any changes.": "El intervalo de selección no contiene ningún cambio.",
+ "The source repository could not be found.": "No se encontró el repositorio de origen.",
+ "The worktree contains modified or untracked files. Do you want to force delete?": "El árbol de trabajo contiene archivos modificados o sin seguimiento. ¿Quiere forzar la eliminación?",
+ "There are known issues with the installed Git \"{0}\". Please update to Git >= 2.27 for the git features to work correctly.": "La instancia \"{0}\" de Git instalada tiene problemas conocidos. Actualice a Git >= 2.27 para que las características funcionen correctamente.",
+ "There are merge conflicts from migrating changes. Please resolve them before committing.": "Existen conflictos de combinación debido a la migración de cambios. Resuélvalos antes de confirmar.",
+ "There are merge conflicts while applying the stash. Please resolve them before committing your changes.": "Hay conflictos de fusión mediante combinación al aplicar el stash. Resuélvalos antes de confirmar los cambios.",
+ "There are merge conflicts. Please resolve them before committing your changes.": "Hay conflictos de fusión mediante combinación. Resuélvalos antes de confirmar los cambios.",
+ "There are no available repositories": "No hay repositorios disponibles",
+ "There are no available repositories matching the filter": "No hay repositorios disponibles que cumplan con el filtro",
+ "There are no changes between \"{0}\" and \"{1}\".": "No hay cambios entre \"{0}\" y \"{1}\".",
+ "There are no changes in the selected worktree to migrate.": "No hay cambios en el árbol de trabajo seleccionado para migrar.",
+ "There are no changes to commit.": "No hay cambios para confirmar.",
+ "There are no changes to stash.": "No existen cambios para el guardado provisional.",
+ "There are no staged changes to commit.\n\nWould you like to stage all your changes and commit them directly?": "No hay cambios \"staged\" para hacer \"commit\".\n\n¿Quiere agregar al \"stage\" todos los cambios y hacer \"commit\" de estos directamente?",
+ "There are no staged changes to stash.": "No hay ningún cambio guardado provisionalmente para confirmar.",
+ "There are no stashes in the repository.": "No hay cambios guardados provisionalmente en el repositorio.",
+ "There are {0} files that have unresolved diagnostics.\n\nHow would you like to proceed?": "Hay {0} archivos que tienen diagnósticos sin resolver.\n\n¿Cómo desea continuar?",
+ "There are {0} unsaved files.\n\nWould you like to save them before committing?": "Hay {0} archivos sin guardar.\n\n¿Quiere guardarlos antes de confirmar?",
+ "There are {0} unsaved files.\n\nWould you like to save them before stashing?": "Hay {0}archivos sin guardar.\n\n¿Quiere guardarlos antes de aplicar \"stash\"?",
+ "There were merge conflicts while cherry picking the changes. Resolve the conflicts before committing them.": "Hubo conflictos de combinación al seleccionar los cambios de forma exclusiva. Resuelva los conflictos antes de confirmarlos.",
+ "This action will pull and push commits from and to \"{0}/{1}\".": "Esta acción extraerá e insertará confirmaciones desde y hacia \"{0}/{1}\".",
+ "This is IRREVERSIBLE!\nThese files will be FOREVER LOST if you proceed.": "Esta acción es IRREVERSIBLE.\nSi continúa, estos archivos SE PERDERÁN PARA SIEMPRE.",
+ "This is IRREVERSIBLE!\nThis file will be FOREVER LOST if you proceed.": "Esta acción es IRREVERSIBLE.\nSi continúa, este archivo SE PERDERÁ PARA SIEMPRE.",
+ "This repository has no remotes configured to fetch from.": "El repositorio no tiene remotos configurados de los que recuperar.",
+ "This will apply the worktree's changes to this repository and discard changes in the worktree.\nThis is IRREVERSIBLE!": "Esto aplicará los cambios del árbol de trabajo a este repositorio y descartará los cambios en el árbol de trabajo.\nEsta acción es IRREVERSIBLE.",
+ "This will create a Git repository in \"{0}\". Are you sure you want to continue?": "Esto creará un repositorio Git en \"{0}\". ¿Está seguro de que quiere continuar?",
+ "Too many changes were detected. Only the first {0} changes will be shown below.": "Se detectaron demasiados cambios. A continuación solo se mostrarán los primeros {0} cambios.",
+ "Type Changed": "Tipo cambiado",
+ "Unable to pull from remote repository due to conflicting tag(s): {0}. Would you like to resolve the conflict by replacing the local tag(s)?": "No se puede extraer del repositorio remoto debido a etiquetas en conflicto: {0}. ¿Desea resolver el conflicto reemplazando la(s) etiqueta(s) local(es)?",
+ "Uncommitted Changes": "Cambios pendientes de confirmación",
+ "Undo merge commit": "Deshacer la confirmación de fusión mediante combinación",
+ "Untracked": "Sin seguimiento",
+ "Untracked Changes": "Cambios sin seguimiento",
+ "Update Git": "Actualizar GIT",
+ "View Problems": "Ver problemas",
+ "Workspace": "Área de trabajo",
+ "Workspace: {0}": "Área de trabajo: {0}",
+ "Worktree": "Árbol de trabajo",
+ "Worktree path": "Ruta del árbol de trabajo",
+ "Would you like to add \"{0}\" to .gitignore?": "¿Quiere añadir \"{0}\" a .gitignore?",
+ "Would you like to open the initialized repository, or add it to the current workspace?": "¿Desea abrir el repositorio inicializado, o añadir al área de trabajo actual?",
+ "Would you like to open the initialized repository?": "¿Desea abrir el repositorio inicializado?",
+ "Would you like to open the repository, or add it to the current workspace?": "¿Desea abrir el repositorio o agregarlo al área de trabajo actual?",
+ "Would you like to open the repository?": "¿Desea abrir el repositorio?",
+ "Would you like to publish this repository to continue working on it elsewhere?": "¿Le gustaría publicar este repositorio para seguir trabajando en él en otro lugar?",
+ "Would you like {0} to [periodically run \"git fetch\"]({1})?": "¿Te gustaría que {0} [ejecute la “recuperación de cambios de Git” periódicamente]({1})?",
+ "Yes": "Sí",
+ "Yes, Don't Show Again": "Sí, no volver a mostrar",
+ "You": "Usted",
+ "You are about to commit your changes without verification, this skips pre-commit hooks and can be undesirable.\n\nAre you sure to continue?": "Está a punto de confirmar los cambios sin comprobación, lo que omite los enlaces previos a la confirmación y puede no ser deseable.\n\n¿Seguro que quiere continuar?",
+ "You are about to force push your changes, this can be destructive and could inadvertently overwrite changes made by others.\n\nAre you sure to continue?": "Está a punto de forzar el envío de cambios mediante \"push\". Esta acción puede resultar destructiva y sobrescribir involuntariamente los cambios realizados por otros usuarios.\n\n¿Seguro que quiere continuar?",
+ "You are trying to commit to a protected branch and you might not have permission to push your commits to the remote.\n\nHow would you like to proceed?": "Está intentando confirmar en una rama protegida y es posible que no tenga permiso para insertar las confirmaciones en el remoto.\n\n¿Cómo quiere continuar?",
+ "You can restore these files from the Recycle Bin.": "Puede restaurar estos archivos desde la Papelera de reciclaje.",
+ "You can restore these files from the Trash.": "Puede restaurar estos archivos desde la Papelera.",
+ "You can restore this file from the Recycle Bin.": "Puede restaurar este archivo desde la Papelera de reciclaje.",
+ "You can restore this file from the Trash.": "Puede restaurar este archivo desde la Papelera.",
+ "You cannot delete the worktree you are currently in. Please switch to the main repository first.": "No puede eliminar el árbol de trabajo en el que se encuentra actualmente. Cambie primero al repositorio principal.",
+ "You seem to have git \"{0}\" installed. Code works best with git >= 2": "Parece que tiene instalado GIT “{0}”. El código funciona mejor con GIT >= 2",
+ "Your local changes to the following files would be overwritten by merge:\n {0}\n\nPlease stage, commit, or stash your changes in the repository before migrating changes.": "Los cambios locales en los siguientes archivos se sobrescribirán al realizar la fusión:\n {0}\n\nRealice una copia intermedia, confirme o almacene sus cambios en el repositorio antes de migrar los cambios.",
+ "Your local changes would be overwritten by checkout.": "Los cambios locales se sobrescribirán al extraer del repositorio.",
+ "Your repository has no remotes configured to publish to.": "El repositorio no tiene remotos configurados en los que publicar.",
+ "Your repository has no remotes configured to pull from.": "El repositorio no tiene remotos configurados de los que extraer.",
+ "Your repository has no remotes configured to push to.": "El repositorio no tiene remotos configurados en los que insertar.",
+ "Your repository has no remotes.": "Su repositorio no tiene remotos.",
+ "[main] Log level: {0}": "[main] Nivel de registro: {0}",
+ "[main] Skipped found git in: \"{0}\"": "[main] Git omitido encontrado en: \"{0}\"",
+ "[main] Using git \"{0}\" from \"{1}\"": "[main] Usando git \"{0}\" de \"{1}\"",
+ "[main] Validating found git in: \"{0}\"": "[main] Validando git encontrado en: \"{0}\"",
+ "branches": "ramas",
+ "in {0}": "En {0}",
+ "no": "no",
+ "now": "ahora",
+ "remote branches": "ramas remotas",
+ "tags": "etiquetas",
+ "yes": "sí",
+ "{0} (Deleted)": "{0} (eliminado)",
+ "{0} (Index)": "{0} (índice)",
+ "{0} (Intent to add)": "{0} (Intención de añadir)",
+ "{0} (Ours)": "{0} (Nuestro)",
+ "{0} (Theirs)": "{0} (el suyo)",
+ "{0} (Type changed)": "{0} (tipo cambiado)",
+ "{0} (Untracked)": "{0} (Sin seguimiento)",
+ "{0} (Working Tree)": "{0} (árbol de trabajo)",
+ "{0} ({1})": "{0} ({1})",
+ "{0} ({1}) ș {0} ({2})": "{0} ({1}) ș {0} ({2})",
+ "{0} Checkout detached...": "{0} Desproteger desasociación...",
+ "{0} Commit": "{0} Confirmación",
+ "{0} Commit & Push": "{0} Hacer \"commit\" e insertar",
+ "{0} Commit & Sync": "{0} Hacer \"commit\" y sincronizar",
+ "{0} Commit (Amend)": "{0} Confirmar (modificar)",
+ "{0} Continue": "{0} Continuar",
+ "{0} Create new branch from...": "{0} Crear nueva rama a partir de...",
+ "{0} Create new branch...": "{0} Crear nueva rama...",
+ "{0} Fetch all remotes": "{0} Capturar todos los repositorios remotos",
+ "{0} Publish Branch/{Locked=\"Branch\"}Do not translate \"Branch\" as it is a git term": "{0} Publicar Branch",
+ "{0} Sync Changes{1}{2}": "{0} Sincronizar cambios {1}{2}",
+ "{0} characters over {1} in current line": "{0} caracteres sobre {1} en la línea actual",
+ "{0} day": "{0} día",
+ "{0} day ago": "Hace {0} día",
+ "{0} days": "{0} días",
+ "{0} days ago": "Hace {0} días",
+ "{0} deletions{1}": "{0} eliminaciones{1}",
+ "{0} deletion{1}": "{0} eliminación{1}",
+ "{0} file changed": "{0} archivo cambiado",
+ "{0} files changed": "{0} archivos cambiados",
+ "{0} hour": "{0} hora",
+ "{0} hour ago": "Hace {0} hora",
+ "{0} hours": "{0} horas",
+ "{0} hours ago": "Hace {0} horas",
+ "{0} hr": "{0} hora",
+ "{0} hr ago": "Hace {0} hora",
+ "{0} hrs": "{0} horas",
+ "{0} hrs ago": "Hace {0} horas",
+ "{0} insertions{1}": "{0} inserciones{1}",
+ "{0} insertion{1}": "{0} inserción{1}",
+ "{0} min": "{0} minuto",
+ "{0} min ago": "Hace {0} minuto",
+ "{0} mins": "{0} minutos",
+ "{0} mins ago": "Hace {0} minutos",
+ "{0} minute": "{0} minuto",
+ "{0} minute ago": "Hace {0} minuto",
+ "{0} minutes": "{0} minutos",
+ "{0} minutes ago": "Hace {0} minutos",
+ "{0} mo": "{0} mes",
+ "{0} mo ago": "Hace {0} mes",
+ "{0} month": "{0} mes",
+ "{0} month ago": "Hace {0} mes",
+ "{0} months": "{0} meses",
+ "{0} months ago": "Hace {0} meses",
+ "{0} mos": "{0} meses",
+ "{0} mos ago": "Hace {0} meses",
+ "{0} sec": "{0} segundo",
+ "{0} sec ago": "Hace {0} segundo",
+ "{0} second": "{0} segundo",
+ "{0} second ago": "Hace {0} segundo",
+ "{0} seconds": "{0} segundos",
+ "{0} seconds ago": "Hace {0} segundos",
+ "{0} secs": "{0} segundos",
+ "{0} secs ago": "Hace {0} segundos",
+ "{0} week": "{0} semana",
+ "{0} week ago": "Hace {0} semana",
+ "{0} weeks": "{0} semanas",
+ "{0} weeks ago": "Hace {0} semanas",
+ "{0} wk": "{0} semana",
+ "{0} wk ago": "Hace {0} semana",
+ "{0} wks": "{0} semanas",
+ "{0} wks ago": "Hace {0} semanas",
+ "{0} year": "{0} año",
+ "{0} year ago": "Hace {0} año",
+ "{0} years": "{0} años",
+ "{0} years ago": "Hace {0} años",
+ "{0} yr": "{0} año",
+ "{0} yr ago": "Hace {0} año",
+ "{0} yrs": "{0} años",
+ "{0} yrs ago": "Hace {0} años",
+ "{0} ș {1}": "{0} ș {1}"
+ },
+ "package": {
+ "colors.added": "Color de los recursos agregados.",
+ "colors.blameEditorDecoration": "Color de la decoración del editor de Blame.",
+ "colors.conflict": "Color para los recursos con conflictos.",
+ "colors.deleted": "Color para los recursos eliminados.",
+ "colors.ignored": "Color para los recursos ignorados.",
+ "colors.incomingAdded": "Color del recurso entrante agregado.",
+ "colors.incomingDeleted": "Color del recurso entrante eliminado.",
+ "colors.incomingModified": "Color del recurso entrante modificado.",
+ "colors.incomingRenamed": "Color del recurso entrante cuyo nombre se ha cambiado.",
+ "colors.modified": "Color para recursos modificados.",
+ "colors.renamed": "Color para los recursos que se han cambiado de nombre o se han copiado.",
+ "colors.stageDeleted": "Color de los recursos eliminados que se han almacenado provisionalmente.",
+ "colors.stageModified": "Color de los recursos modificados que se han almacenado provisionalmente.",
+ "colors.submodule": "Color para los recursos de submódulos.",
+ "colors.untracked": "Color para los recursos a los que no se les hace seguimiento.",
+ "command.addRemote": "Agregar remoto...",
+ "command.api.getRemoteSources": "Obtener orígenes remotos",
+ "command.api.getRepositories": "Obtener repositorios",
+ "command.api.getRepositoryState": "Obtener estado del repositorio",
+ "command.blameToggleEditorDecoration": "Alternar decoración de Editor de Git Blame",
+ "command.blameToggleStatusBarItem": "Alternar elemento de la barra de estado de Git Blame",
+ "command.branch": "Crear rama...",
+ "command.branchFrom": "Crear rama desde...",
+ "command.checkout": "Desproteger en...",
+ "command.checkoutDetached": "Extraer del repositorio en (desasociado)...",
+ "command.cherryPick": "Selección exclusiva...",
+ "command.cherryPickAbort": "Anular selección exclusiva",
+ "command.clean": "Descartar cambios",
+ "command.cleanAll": "Descartar todos los cambios",
+ "command.cleanAllTracked": "Descartar todos los cambios a los que se les realiza seguimiento",
+ "command.cleanAllUntracked": "Descartar todos los cambios a los que no se está haciendo seguimiento",
+ "command.clone": "Clonar",
+ "command.cloneRecursive": "Clonar (recursivo)",
+ "command.close": "Cerrar repositorio",
+ "command.closeAllDiffEditors": "Cerrar todos los editores de diferencias",
+ "command.closeAllUnmodifiedEditors": "Cerrar todos los editores sin modificar",
+ "command.closeOtherRepositories": "Cerrar otros repositorios",
+ "command.commit": "\"Commit\"",
+ "command.commitAll": "Confirmar todo",
+ "command.commitAllAmend": "Confirmar todo (modificar)",
+ "command.commitAllAmendNoVerify": "Confirmar todo (modificar, no comprobar)",
+ "command.commitAllNoVerify": "Confirmar todo (no comprobar)",
+ "command.commitAllSigned": "Confirmar todo (aprobado)",
+ "command.commitAllSignedNoVerify": "Confirmar todo (aprobado, no comprobar)",
+ "command.commitAmend": "Confirmar (modificar)",
+ "command.commitAmendNoVerify": "Confirmar (modificar, no comprobar)",
+ "command.commitEmpty": "Confirmar vacío",
+ "command.commitEmptyNoVerify": "Confirmar vacíos (no comprobar)",
+ "command.commitMessageAccept": "Aceptar mensaje de confirmación",
+ "command.commitMessageDiscard": "Descartar mensaje de confirmación",
+ "command.commitNoVerify": "Confirmar (no comprobar)",
+ "command.commitSigned": "Confirmar (firmado)",
+ "command.commitSignedNoVerify": "Confirmar (firmado, sin comprobar)",
+ "command.commitStaged": "Confirmar elementos almacenados provisionalmente",
+ "command.commitStagedAmend": "Confirmar almacenados provisionalmente (modificar)",
+ "command.commitStagedAmendNoVerify": "Confirmar almacenados provisionalmente (modificar, no comprobar)",
+ "command.commitStagedNoVerify": "Confirmar almacenados provisionalmente (no comprobar)",
+ "command.commitStagedSigned": "Confirmar por etapas (Aprobado)",
+ "command.commitStagedSignedNoVerify": "Confirmar almacenados provisionalmente (aprobado, no comprobar)",
+ "command.compareWithWorkspace": "Comparar con el área de trabajo",
+ "command.continueInLocalClone": "Clonar repositorio localmente y abrir en escritorio...",
+ "command.continueInLocalClone.qualifiedName": "Seguir trabajando en el nuevo clon local",
+ "command.createFrom": "Crear desde...",
+ "command.createTag": "Crear etiqueta...",
+ "command.createWorktree": "Crear árbol de trabajo...",
+ "command.deleteBranch": "Borrar rama...",
+ "command.deleteRef": "Eliminar",
+ "command.deleteRemoteBranch": "Eliminar rama remota...",
+ "command.deleteRemoteTag": "Eliminar etiqueta remota...",
+ "command.deleteTag": "Eliminar etiqueta...",
+ "command.deleteWorktree": "Eliminar árbol de trabajo...",
+ "command.deleteWorktree2": "Eliminar árbol de trabajo",
+ "command.fetch": "Capturar",
+ "command.fetchAll": "Capturar desde todos los remotos",
+ "command.fetchPrune": "Fetch (capturar)",
+ "command.git.acceptMerge": "Completar la fusión mediante combinación",
+ "command.git.openMergeEditor": "Resolver en el Editor de combinación",
+ "command.git.runGitMerge": "Conflictos de proceso con GIT",
+ "command.git.runGitMergeDiff3": "Conflictos de proceso con Git (Diff3)",
+ "command.graphCheckout": "Comprobación",
+ "command.graphCheckoutDetached": "Desprotección (desasociado)",
+ "command.graphCherryPick": "Selección exclusiva",
+ "command.graphCompareRef": "Comparar con...",
+ "command.graphCompareWithMergeBase": "Comparar con la base de combinación",
+ "command.graphCompareWithRemote": "Comparar con remoto",
+ "command.graphDeleteBranch": "Eliminar rama",
+ "command.graphDeleteTag": "Eliminar etiqueta",
+ "command.ignore": "Añadir a .gitignore",
+ "command.init": "Inicializar el repositorio",
+ "command.manageUnsafeRepositories": "Administrar repositorios no seguros",
+ "command.merge": "Combinar...",
+ "command.merge2": "Combinar",
+ "command.mergeAbort": "Anular combinación",
+ "command.migrateWorktreeChanges": "Migrar cambios del árbol de trabajo...",
+ "command.openAllChanges": "Abrir todos los cambios",
+ "command.openChange": "Abrir cambios",
+ "command.openFile": "Abrir archivo",
+ "command.openHEADFile": "Abrir archivo (HEAD)",
+ "command.openRepositoriesInParentFolders": "Abrir repositorios en carpetas principales",
+ "command.openRepository": "Abrir repositorio",
+ "command.openWorktree": "Abrir el árbol de trabajo en la ventana actual",
+ "command.openWorktreeInNewWindow": "Abrir el árbol de trabajo en una nueva ventana",
+ "command.publish": "Publicar rama...",
+ "command.pull": "Incorporar cambios (\"pull\")",
+ "command.pullFrom": "Extraer de...",
+ "command.pullRebase": "Incorporación de cambios (fusionar mediante cambio de base)",
+ "command.push": "Insertar",
+ "command.pushFollowTags": "Insertar (seguir etiquetas)",
+ "command.pushFollowTagsForce": "Insertar (seguir etiquetas, forzar)",
+ "command.pushForce": "Envío de cambios (forzar)",
+ "command.pushTags": "Hacer \"push\" en las etiquetas",
+ "command.pushTo": "Insertar en...",
+ "command.pushToForce": "Insertar en... (Forzar)",
+ "command.rebase": "Fusionar la rama mediante \"rebase\"...",
+ "command.rebase2": "Fusionar mediante cambio de base",
+ "command.rebaseAbort": "Anular fusión mediante cambio de base",
+ "command.refresh": "Actualizar",
+ "command.removeRemote": "Quitar remoto",
+ "command.rename": "Cambiar nombre",
+ "command.renameBranch": "Renombrar Rama...",
+ "command.reopenClosedRepositories": "Volver a abrir repositorios cerrados...",
+ "command.restoreCommitTemplate": "Restaurar plantilla de confirmación",
+ "command.revealFileInOS.linux": "Abrir carpeta contenedora",
+ "command.revealFileInOS.mac": "Revelar en Finder",
+ "command.revealFileInOS.windows": "Mostrar en el Explorador de archivos",
+ "command.revealInExplorer": "Mostrar en la vista Explorador",
+ "command.revertChange": "Revertir el cambio",
+ "command.revertSelectedRanges": "Revertir los intervalos seleccionados",
+ "command.showOutput": "Mostrar salida de GIT",
+ "command.stage": "Almacenar cambios provisionalmente",
+ "command.stageAll": "Almacenar todos los cambios",
+ "command.stageAllMerge": "Almacenar provisionalmente todos los cambios fusionados mediante combinación",
+ "command.stageAllTracked": "Realizar copia intermedia de todos los cambios rastreados",
+ "command.stageAllUntracked": "Realizar copia intermedia de todos los cambios sin seguimiento",
+ "command.stageBlock": "Bloque de fase",
+ "command.stageChange": "Cambiar etapa",
+ "command.stageSelectedRanges": "Realizar copia intermedia de los intervalos seleccionados",
+ "command.stageSelection": "Selección de fase",
+ "command.stash": "Alijo",
+ "command.stashApply": "Aplicar cambio guardados provisionalmente",
+ "command.stashApplyEditor": "Aplicar cambio guardados provisionalmente",
+ "command.stashApplyLatest": "Aplicar últimos cambios guardados provisionalmente",
+ "command.stashDrop": "Descartar cambios guardados provisionalmente...",
+ "command.stashDropAll": "Quitar todos los cambios guardados provisionalmente...",
+ "command.stashDropEditor": "Descartar cambios guardados provisionalmente",
+ "command.stashIncludeUntracked": "Guardar provisionalmente (Incluir sin seguimiento)",
+ "command.stashPop": "Aplicar y quitar cambios guardados provisionalmente...",
+ "command.stashPopEditor": "Abrir alijo",
+ "command.stashPopLatest": "Aplicar y quitar últimos cambios guardados provisionalmente...",
+ "command.stashStaged": "Alijo creado",
+ "command.stashView": "Ver almacenamiento provisional...",
+ "command.sync": "Sincronizar",
+ "command.syncRebase": "Sincronizar (Rebase)",
+ "command.timelineCompareWithSelected": "Comparar con seleccionados",
+ "command.timelineCopyCommitId": "Copiar ID de confirmación",
+ "command.timelineCopyCommitMessage": "Copiar mensaje de confirmación",
+ "command.timelineOpenDiff": "Abrir cambios",
+ "command.timelineSelectForCompare": "Seleccionar para comparar",
+ "command.undoCommit": "Deshacer última confirmación",
+ "command.unstage": "Cancelar almacenamiento provisional de los cambios",
+ "command.unstageAll": "Cancelar almacenamiento provisional de todos los cambios",
+ "command.unstageChange": "Cancelar el almacenamiento provisional de los cambios",
+ "command.unstageSelectedRanges": "Cancelar almacenamiento provisional de los intervalos seleccionados",
+ "command.viewChanges": "Abrir cambios",
+ "command.viewCommit": "Abrir confirmación",
+ "command.viewStagedChanges": "Abrir cambios preconfigurados",
+ "command.viewUntrackedChanges": "Abrir cambios sin seguimiento",
+ "config.allowForcePush": "Controla si está habilitada la opción de forzar envío de cambios (con o sin concesión).",
+ "config.allowNoVerifyCommit": "Controla si se permiten las confirmaciones sin ejecutar enlaces previos a la confirmación y de mensajes de confirmación.",
+ "config.alwaysShowStagedChangesResourceGroup": "Permitir siempre el grupo de recursos Cambios almacenados provisionalmente.",
+ "config.alwaysSignOff": "Controla el indicador de firma para todos los commits",
+ "config.autoRepositoryDetection": "Configura cuándo los repositorios deben detectarse automáticamente.",
+ "config.autoRepositoryDetection.false": "Desactivar el escaneado automático de repositorio.",
+ "config.autoRepositoryDetection.openEditors": "Buscar por carpetas padre de los archivos abiertos.",
+ "config.autoRepositoryDetection.subFolders": "Buscar por subcarpetas de la carpeta actualmente abierta.",
+ "config.autoRepositoryDetection.true": "Buscar por ambas subcarpetas de la carpeta abierta actual y carpetas padre de archivos abiertos.",
+ "config.autoStash": "Guarde cualquier cambio antes de insertar y restaurarlos cuando la inserción se haya completado correctamente.",
+ "config.autofetch": "Cuando se establece en true, se aplica \"fetch\" a los \"commits\" de forma automática para recuperar los cambios del elemento remoto predeterminado del repositorio GIT actual. Si se establece en \"all\" se recuperan los cambios con \"fetch\" de todos los elementos remotos.",
+ "config.autofetchPeriod": "Duración en segundos entre cada búsqueda de GIT automática, cuando se habilita \"git.autofetch\".",
+ "config.autorefresh": "Si la actualización automática es habilitada.",
+ "config.blameEditorDecoration.enabled": "Controla si se va a mostrar información de autoría en el editor mediante decoraciones de editor.",
+ "config.blameEditorDecoration.template": "Plantilla para la decoración del editor de información del autor. Variables admitidas:\r\n\r\n* `hash`: hash de confirmación\r\n\r\n* `hashShort`: primeros N caracteres del hash de confirmación según `#git.commitShortHashLength#`\r\n\r\n* `subject`: primera línea del mensaje de confirmación\r\n\r\n* `authorName`: nombre del autor\r\n\r\n* `authorEmail`: correo electrónico del autor\r\n\r\n* `authorDate`: fecha de creación\r\n\r\n* `authorDateAgo`: diferencia de hora entre ahora y la fecha de creación\r\n\r\n",
+ "config.blameStatusBarItem.enabled": "Controla si se va a mostrar información de autoría en la barra de estado.",
+ "config.blameStatusBarItem.template": "Plantilla para el elemento de barra de estado de información de autoría. Variables admitidas:\r\n\r\n* `hash`: hash de confirmación\r\n\r\n* `hashShort`: primeros N caracteres del hash de confirmación según `#git.commitShortHashLength#`\r\n\r\n* `subject`: primera línea del mensaje de confirmación\r\n\r\n* `authorName`: nombre del autor\r\n\r\n* `authorEmail`: correo electrónico del autor\r\n\r\n* `authorDate`: fecha de creación\r\n\r\n* `authorDateAgo`: diferencia de hora entre ahora y la fecha de creación\r\n\r\n",
+ "config.branchPrefix": "Prefijo usado al crear una rama nueva.",
+ "config.branchProtection": "Lista de ramas protegidas. De forma predeterminada, se muestra un mensaje antes de que se confirmen los cambios en una rama protegida. El mensaje se puede controlar mediante la configuración '#git.branchProtectionPrompt#'.",
+ "config.branchProtectionPrompt": "Controla si se muestra un mensaje antes de confirmar los cambios en una rama protegida.",
+ "config.branchProtectionPrompt.alwaysCommit": "Confirmar siempre los cambios en la rama protegida.",
+ "config.branchProtectionPrompt.alwaysCommitToNewBranch": "Confirmar siempre los cambios en una rama nueva.",
+ "config.branchProtectionPrompt.alwaysPrompt": "Preguntar siempre antes de que los cambios se confirmen en una rama protegida.",
+ "config.branchRandomNameDictionary": "Lista de diccionarios usados para el nombre de rama generado aleatoriamente. Cada valor representa el diccionario usado para generar el segmento del nombre de rama. Diccionarios admitidos: \"adjetivos\", \"animales\", \"colores\" y \"números\".",
+ "config.branchRandomNameDictionary.adjectives": "Un adjetivo aleatorio",
+ "config.branchRandomNameDictionary.animals": "Un nombre de animal aleatorio",
+ "config.branchRandomNameDictionary.colors": "Un nombre de color aleatorio",
+ "config.branchRandomNameDictionary.numbers": "Un número aleatorio entre 100 y 999",
+ "config.branchRandomNameEnable": "Controla si se genera un nombre aleatorio al crear una rama nueva.",
+ "config.branchSortOrder": "Controla el criterio de ordenación de las bifurcaciones.",
+ "config.branchValidationRegex": "Una expresión regular para validar nuevos nombres de rama.",
+ "config.branchWhitespaceChar": "Carácter que reemplazará los espacios en blanco en los nuevos nombres de rama y para separar los segmentos de un nombre de rama generado aleatoriamente.",
+ "config.checkoutType": "Controla qué tipo de referencias Git son enumeradas cuando se ejecuta \"Desproteger en...\".",
+ "config.checkoutType.local": "Ramas locales",
+ "config.checkoutType.remote": "Ramas remotas",
+ "config.checkoutType.tags": "Etiquetas",
+ "config.closeDiffOnOperation": "Controla si el editor de diferencias debe cerrarse automáticamente cuando los cambios se guardan provisionalmente, se confirman, se descartan, se almacenan provisionalmente o se quitan.",
+ "config.commandsToLog": "Lista de comandos git (p. ej., commit, push) que tendrían `stdout` registrado en el [git output](command:git.showOutput). Si el comando git tiene configurado un enlace del lado cliente, el enlace del lado cliente `stdout` también se registrará en el [git output](command:git.showOutput).",
+ "config.commitShortHashLength": "Controla la longitud del hash corto de confirmación.",
+ "config.confirmEmptyCommits": "Confirme siempre la creación de confirmaciones vacías para el comando \"Git: Commit Empty\".",
+ "config.confirmForcePush": "Controla si va a solicitar confirmación antes de forzar envío de cambios.",
+ "config.confirmNoVerifyCommit": "Controla si se debe pedir confirmación antes de ejecutar sin comprobación.",
+ "config.confirmSync": "Confirmar antes de sincronizar repositorios Git.",
+ "config.countBadge": "Controla la insignia de recuento de Git.",
+ "config.countBadge.all": "Recuento de todos los cambios.",
+ "config.countBadge.off": "Desactive el contador.",
+ "config.countBadge.tracked": "Recuento solo de los cambios de los que se ha realizado seguimiento.",
+ "config.decorations.enabled": "Controla si GIT aporta colores y distintivos al explorador y a la vista Editores abiertos.",
+ "config.defaultBranchName": "Nombre de la rama predeterminada (p. ej., main, trunk, development) al inicializar un nuevo repositorio de Git. Cuando se establece en vacío, se usa el nombre de rama predeterminado configurado en Git. **Nota:** Requiere la versión de Git `2.28.0` o posterior.",
+ "config.defaultCloneDirectory": "La ubicación predeterminada en la que se clona un repositorio de Git.",
+ "config.detectSubmodules": "Controla si se detectan automáticamente los submódulos Git.",
+ "config.detectSubmodulesLimit": "Controla el límite de submódulos de Git detectados.",
+ "config.detectWorktrees": "Controla si se detectan automáticamente los árboles de trabajo de Git.",
+ "config.detectWorktreesLimit": "Controla el límite de árboles de trabajo de Git detectados.",
+ "config.diagnosticsCommitHook.enabled": "Controla si se deben comprobar los diagnósticos sin resolver antes de confirmar.",
+ "config.diagnosticsCommitHook.sources": "Controla la lista de orígenes (**Elemento**) y la gravedad mínima (**Valor**) que se deben tener en cuenta antes de confirmar. **Nota:** Para omitir los diagnósticos de un origen determinado, agregue el origen a la lista y establezca la gravedad mínima en `none`.",
+ "config.discardAllScope": "Controla qué cambios son descartados por el comando 'Descartar todos los cambios'. 'all' descarta todos los cambios. 'tracked' descarta sólo los ficheros en seguimiento. 'prompt' muestra un cuadro de diálogo para confirmar cada vez la acción ejecutada.",
+ "config.discardUntrackedChangesToTrash": "Controla si al descartar los cambios sin seguimiento se mueven los archivos a la papelera de reciclaje (Windows), papelera (macOS, Linux) en lugar de eliminarlos permanentemente. **Nota:** Esta configuración no tiene ningún efecto cuando se conecta a un control remoto o cuando se ejecuta en Linux como un paquete snap.",
+ "config.enableCommitSigning": "Habilita la firma de confirmaciones con GPG, X.509 o SSH.",
+ "config.enableSmartCommit": "Confirmar todos los cambios cuando no hay elementos almacenados provisionalmente.",
+ "config.enableStatusBarSync": "Controla si el comando Git Sync aparece en la barra de estado.",
+ "config.enabled": "Si Git está habilitado.",
+ "config.experimental.installGuide": "Mejoras experimentales para el flujo de configuración de Git.",
+ "config.fetchOnPull": "Cuando esté activado, obtenga todas las ramas al insertar. De lo contrario, obtenga solo la actual.",
+ "config.followTagsWhenSync": "Inserte todas las etiquetas anotadas al ejecutar el comando sync.",
+ "config.ignoreLegacyWarning": "Ignora las advertencias hereradas de GIT.",
+ "config.ignoreLimitWarning": "Ignora la advertencia cuando hay demasiados cambios en un repositorio.",
+ "config.ignoreMissingGitWarning": "Ignora la advertencia cuando falta Git.",
+ "config.ignoreRebaseWarning": "Ignora la advertencia cuando parece que la rama se ha fusionado mediante cambio de base con \"rebase\" durante la incorporación de cambios con \"pull\".",
+ "config.ignoreSubmodules": "Ignore las modificaciones de los submódulos en el árbol de archivos.",
+ "config.ignoreWindowsGit27Warning": "Ignora la advertencia cuando Git 2.25 - 2.26 está instalado en Windows.",
+ "config.ignoredRepositories": "Lista de repositorios Git que se van a ignorar.",
+ "config.inputValidation": "Controla si se van a mostrar los diagnósticos de validación de entrada de mensaje de confirmación.",
+ "config.inputValidationLength": "Controla el umbral de longitud de mensaje de confirmación para mostrar una advertencia.",
+ "config.inputValidationSubjectLength": "Controla el umbral de longitud del asunto del mensaje de confirmación para mostrar una advertencia. Desactívelo para heredar el valor de \"#git.inputValidationLength#\".",
+ "config.mergeEditor": "Abra el editor de combinación para los archivos que están actualmente en conflicto.",
+ "config.openAfterClone": "Controla si se va a abrir un repositorio de forma automática después de la clonación.",
+ "config.openAfterClone.always": "Abrir siempre en la ventana actual.",
+ "config.openAfterClone.alwaysNewWindow": "Abrir siempre en una ventana nueva.",
+ "config.openAfterClone.prompt": "Solicitar siempre la acción.",
+ "config.openAfterClone.whenNoFolderOpen": "Abrir solo en la ventana actual si no hay ninguna carpeta abierta.",
+ "config.openDiffOnClick": "Controla si el editor diff debe abrirse al hacer clic en un cambio. De lo contrario se abrirá el editor normal.",
+ "config.openRepositoryInParentFolders": "Controlar si se debe abrir un repositorio en carpetas primarias de áreas de trabajo o archivos abiertos.",
+ "config.openRepositoryInParentFolders.always": "Abra siempre un repositorio en carpetas primarias de áreas de trabajo o archivos abiertos.",
+ "config.openRepositoryInParentFolders.never": "Nunca abra un repositorio en carpetas primarias de áreas de trabajo ni archivos abiertos.",
+ "config.openRepositoryInParentFolders.prompt": "Preguntar antes de abrir un repositorio en las carpetas primarias de las áreas de trabajo o abrir archivos.",
+ "config.optimisticUpdate": "Controle si se debe actualizar de manera optimista el estado de la vista Control de código fuente después de ejecutar comandos de Git.",
+ "config.path": "Ruta de acceso y nombre de archivo del archivo ejecutable git; por ejemplo, \"C:\\Program Files\\Git\\bin\\git.exe\" (Windows). También puede ser una matriz de valores de cadena que contiene varias rutas de acceso para buscar.",
+ "config.postCommitCommand": "Ejecuta un comando de git después de una confirmación correcta.",
+ "config.postCommitCommand.none": "No ejecutar ningún comando después de una confirmación.",
+ "config.postCommitCommand.push": "Ejecute \"git push\" después de una confirmación correcta.",
+ "config.postCommitCommand.sync": "Ejecute \"git pull\" y \"git push\" después de una confirmación correcta.",
+ "config.promptToSaveFilesBeforeCommit": "Controla si Git debe comprobar los archivos no guardados antes de confirmar las actualizaciones. ",
+ "config.promptToSaveFilesBeforeCommit.always": "Compruebe si hay archivos sin guardar.",
+ "config.promptToSaveFilesBeforeCommit.never": "Desactive esta comprobación.",
+ "config.promptToSaveFilesBeforeCommit.staged": "Compruebe solo si hay archivos preconfigurados sin guardar.",
+ "config.promptToSaveFilesBeforeStash": "Controla si GIT debe comprobar los archivos no guardados antes de guardar los cambios provisionalmente con \"stash\". ",
+ "config.promptToSaveFilesBeforeStash.always": "Compruebe si hay archivos sin guardar.",
+ "config.promptToSaveFilesBeforeStash.never": "Desactive esta comprobación.",
+ "config.promptToSaveFilesBeforeStash.staged": "Compruebe solo si hay archivos preconfigurados sin guardar.",
+ "config.pruneOnFetch": "Eliminar al hacer \"fetch\".",
+ "config.publishBeforeContinueOn": "Controla si se publica el estado de Git no publicado cuando se usa Continuar trabajando en desde un repositorio Git.",
+ "config.publishBeforeContinueOn.always": "Publicar siempre el estado de Git no publicado cuando se usa Continuar trabajando en desde un repositorio Git",
+ "config.publishBeforeContinueOn.never": "No publicar nunca el estado de Git no publicado cuando se usa Continuar trabajando en desde un repositorio Git",
+ "config.publishBeforeContinueOn.prompt": "Preguntar para publicar estado de Git no publicado cuando se usa Continuar trabajando en desde un repositorio Git",
+ "config.pullBeforeCheckout": "Controla si una rama que no tiene confirmaciones salientes se reenvía rápidamente antes de restaurarse.",
+ "config.pullTags": "Recupere todas las etiquetas al insertar.",
+ "config.rebaseWhenSync": "Forzar que Git utilice la fusión mediante cambio de base cuando se ejecute el comando de sincronización.",
+ "config.rememberPostCommitCommand": "Recuerde el último comando git que se ejecutó después de una confirmación.",
+ "config.replaceTagsWhenPull": "Reemplazar automáticamente las etiquetas locales por las remotas en caso de conflicto al ejecutar el comando pull.",
+ "config.repositoryScanIgnoredFolders": "Lista de carpetas que se ignoran al buscar repositorios Git cuando `#git.autoRepositoryDetection#` se establece como `true` o `subFolders`.",
+ "config.repositoryScanMaxDepth": "Controla la profundidad usada al examinar las carpetas del área de trabajo en busca de repositorios Git cuando \"#git.autoRepositoryDetection#\" está establecido en \"true\" o \"subFolders\". Se puede establecer en \"-1\" para que no haya límite.",
+ "config.requireGitUserConfig": "Controla si se va a requerir una configuración de usuario de GIT explícita o se va a permitir a GIT que la adivine si falta.",
+ "config.scanRepositories": "Lista de rutas en las que buscar repositorios de Git.",
+ "config.showActionButton": "Controla si se muestra un botón de acción en la vista Control de código fuente.",
+ "config.showActionButton.commit": "Muestra un botón de acción para confirmar los cambios cuando la rama local haya modificado archivos listos para confirmarse.",
+ "config.showActionButton.publish": "Muestra un botón de acción para publicar la rama local cuando no tiene una rama remota de seguimiento.",
+ "config.showActionButton.sync": "Muestra un botón de acción para sincronizar los cambios cuando la rama local está por delante o detrás de la rama remota.",
+ "config.showCommitInput": "Controla si se va a mostrar la entrada de confirmación en el panel de control de código fuente de GIT.",
+ "config.showInlineOpenFileAction": "Controla si se debe mostrar una acción de archivo abierto en la vista de cambios en Git",
+ "config.showProgress": "Controla si las acciones de Git deben mostrar el progreso.",
+ "config.showPushSuccessNotification": "Controla si se va a mostrar una notificación cuando un push es exitoso.",
+ "config.showReferenceDetails": "Controla si se muestran los detalles de la última confirmación de las referencias de Git en los selectores de restauración, rama y etiqueta.",
+ "config.similarityThreshold": "Controla el umbral del índice de similitud (la cantidad de adiciones o eliminaciones en comparación con el tamaño del archivo) para que los cambios de un par de archivos agregados o eliminados se consideren un cambio de nombre. **Nota:** Requiere la versión de Git 2.18.0 o posterior.",
+ "config.smartCommitChanges": "Controle qué cambios se realizan automáticamente mediante Smart Commit.",
+ "config.smartCommitChanges.all": "Agregar todos los cambios automáticamente al \"stage\".",
+ "config.smartCommitChanges.tracked": "Solo cambios de seguimiento \"staged\" automáticamente.",
+ "config.statusLimit": "Controla cómo limitar el número de cambios que se pueden analizar desde el comando de estado de Git. Se puede establecer en 0 sin límite.",
+ "config.suggestSmartCommit": "Sugiere habilitar la confirmación inteligente (confirmar todos los cambios cuando no hay cambios \"staged\").",
+ "config.supportCancellation": "Controla si aparece una notificación al ejecutar la acción Sincronizar, que permite al usuario cancelar la operación.",
+ "config.terminalAuthentication": "Controla si debe habilitarse VS Code como controlador de autenticación para los procesos GIT que se generan en el terminal integrado. Nota: Los terminales deben reiniciarse para recoger el cambio en esta configuración.",
+ "config.terminalGitEditor": "Controla si se permite que VS Code sea el editor Git para los procesos Git generados en la terminal integrada. Nota: los terminales deben reiniciarse para recoger un cambio en esta configuración.",
+ "config.timeline.date": "Controla la fecha que se va a usar para los elementos de la vista Escala de tiempo.",
+ "config.timeline.date.authored": "Usar la fecha de creación",
+ "config.timeline.date.committed": "Usar la fecha de confirmación",
+ "config.timeline.showAuthor": "Controla si se va a mostrar el autor del \"commit\" en la vista Escala de tiempo.",
+ "config.timeline.showUncommitted": "Controla si se van a mostrar los cambios no confirmados en la vista Escala de tiempo.",
+ "config.untrackedChanges": "Controla el comportamiento de los cambios a los que no se hace seguimiento.",
+ "config.untrackedChanges.hidden": "Los cambios a los que no se realiza seguimiento se ocultan y se excluyen de varias acciones.",
+ "config.untrackedChanges.mixed": "Todos los cambios, rastreados y no rastreados, aparecen juntos y se comportan por igual.",
+ "config.untrackedChanges.separate": "Los cambios sin seguimiento aparecen por separado en la vista de control de código fuente. También se excluyen de varias acciones.",
+ "config.useCommitInputAsStashMessage": "Controla si se va a usar el mensaje del cuadro de entrada de \"commit\" como mensaje \"stash\" predeterminado.",
+ "config.useEditorAsCommitInput": "Controla si un editor de texto completo será utilizado para crear mensajes de confirmación, siempre que no se proporcione ningún mensaje en el cuadro de entrada de confirmación.",
+ "config.useForcePushIfIncludes": "Controla si la inserción forzada usa la variante más segura force-if-includes. Nota: esta configuración requiere que se habilite la opción \"#git.useForcePushWithLease#\" y la versión de GIT \"2.30.0\" o posterior.",
+ "config.useForcePushWithLease": "Controla si forzar envío de cambios usa variante de forzar con concesión, más segura.",
+ "config.useIntegratedAskPass": "Controla si se debe sobrescribir GIT_ASKPASS para usar la versión integrada.",
+ "config.verboseCommit": "Habilite la salida detallada cuando \"#git.useEditorAsCommitInput#\" esté habilitado.",
+ "description": "Integración Git SCM",
+ "displayName": "GIT",
+ "submenu.branch": "Rama",
+ "submenu.changes": "Cambios",
+ "submenu.commit": "\"Commit\"",
+ "submenu.commit.amend": "Rectificar",
+ "submenu.commit.signoff": "Cerrar sesión",
+ "submenu.explorer": "GIT",
+ "submenu.pullpush": "\"Pull\", \"Push\"",
+ "submenu.remotes": "Remoto",
+ "submenu.stash": "Stash",
+ "submenu.tags": "Etiquetas",
+ "submenu.worktrees": "Árboles de trabajo",
+ "view.workbench.cloneRepository": "Puede clonar un repositorio de forma local.\r\n[Clonar repositorio](command:git.clone 'Clonar un repositorio una vez que la extensión Git se haya activado')",
+ "view.workbench.learnMore": "Para obtener más información sobre cómo usar Git y el control de código fuente en VS Code [lea nuestros documentos](https://aka.ms/vscode-scm).",
+ "view.workbench.scm.closedRepositories": "Se encontraron repositorios Git que se cerraron anteriormente.\r\n[Volver a abrir repositorios cerrados](command:git.reopenClosedRepositories)\r\nPara obtener más información sobre cómo usar Git y el control de código fuente en VS Code [lea nuestros documentos](https://aka.ms/vscode-scm).",
+ "view.workbench.scm.closedRepository": "Se encontró un repositorio Git que se cerró anteriormente.\r\n[Volver a abrir repositorio cerrado](command:git.reopenClosedRepositories)\r\nPara obtener más información sobre cómo usar Git y el control de código fuente en VS Code [lea nuestros documentos](https://aka.ms/vscode-scm).",
+ "view.workbench.scm.disabled": "Si desea usar las características de Git, habilite Git en [settings](command:workbench.action.openSettings?%5B%22git.enabled%22%5D).\r\nPara obtener más información sobre cómo usar Git y el control de código fuente en VS Code [lea nuestros documentos](https://aka.ms/vscode-scm).",
+ "view.workbench.scm.empty": "Para usar las características de Git, puede abrir una carpeta que contenga un repositorio Git o clonar desde una dirección URL.\r\n[Abrir carpeta](command:vscode.openFolder)\r\n[Clonar repositorio](command:git.cloneRecursive)\r\nPara obtener más información sobre cómo usar Git y el control de código fuente en VS Code [lea nuestros documentos](https://aka.ms/vscode-scm).",
+ "view.workbench.scm.emptyWorkspace": "El área de trabajo abierta actualmente no tiene ninguna carpeta que contenga repositorios de Git.\r\n[Agregar carpeta al área de trabajo](command:workbench.action.addRootFolder)\r\nPara obtener más información sobre cómo usar Git y el control de código fuente en VS Code [lea nuestros documentos](https://aka.ms/vscode-scm).",
+ "view.workbench.scm.folder": "La carpeta abierta actualmente no tiene un repositorio Git. Puede inicializar un repositorio que habilitará características de control de código fuente con tecnología de Git.\r\n[Inicializar repositorio](command:git.init?%5Btrue%5D)\r\nPara obtener más información sobre cómo usar Git y el control de código fuente en VS Code [lea nuestros documentos](https://aka.ms/vscode-scm).",
+ "view.workbench.scm.missing": "Instale Git, un conocido sistema de control de código fuente, para realizar un seguimiento de los cambios de código y colaborar con otros usuarios. Obtenga más información en nuestras [guías Git](https://aka.ms/vscode-scm).",
+ "view.workbench.scm.missing.linux": "El control de código fuente depende de la instalación de Git.\r\n[Descargar Git para Linux](https://git-scm.com/download/linux)\r\nDespués de la instalación, [recarga](command:workbench.action.reloadWindow) (o [solucionar problemas](command:git.showOutput)). Se pueden instalar proveedores de control de código fuente adicionales [desde Marketplace](command:workbench.extensions.search?%22%40category%3A%5C%22scm%20providers%5C%22%22).",
+ "view.workbench.scm.missing.mac": "[Descargar Git para macOS](https://git-scm.com/download/mac)\r\nDespués de la instalación, [recarga](command:workbench.action.reloadWindow) (o [solucionar problemas](command:git.showOutput)). Se pueden instalar proveedores de control de código fuente adicionales [desde Marketplace](command:workbench.extensions.search?%22%40category%3A%5C%22scm%20providers%5C%22%22).",
+ "view.workbench.scm.missing.windows": "[Descargar Git para Windows](https://git-scm.com/download/win)\r\nDespués de la instalación, [recarga](command:workbench.action.reloadWindow) (o [solucionar problemas](command:git.showOutput)). Se pueden instalar proveedores de control de código fuente adicionales [desde Marketplace](command:workbench.extensions.search?%22%40category%3A%5C%22scm%20providers%5C%22%22).",
+ "view.workbench.scm.repositoriesInParentFolders": "Se encontraron repositorios Git en las carpetas primarias del área de trabajo o en los archivos abiertos.\r\n[Abrir repositorio](command:git.openRepositoriesInParentFolders)\r\nUse la configuración [git.openRepositoryInParentFolders](command:workbench.action.openSettings?%5B%22git.openRepositoryInParentFolders%22%5D) para controlar si se abren repositorios Git en carpetas primarias del área de trabajo o archivos abiertos. Para obtener más información [lea nuestros documentos](https://aka.ms/vscode-git-repository-in-parent-folders).",
+ "view.workbench.scm.repositoryInParentFolders": "Se encontró un repositorio Git en las carpetas primarias del área de trabajo o en los archivos abiertos.\r\n[Abrir repositorio](command:git.openRepositoriesInParentFolders)\r\nUse la configuración [git.openRepositoryInParentFolders](command:workbench.action.openSettings?%5B%22git.openRepositoryInParentFolders%22%5D) para controlar si se abren repositorios Git en carpetas primarias de áreas de trabajo o archivos abiertos. Para obtener más información [lea nuestros documentos](https://aka.ms/vscode-git-repository-in-parent-folders).",
+ "view.workbench.scm.scanFolderForRepositories": "Examinando la carpeta de repositorios Git...",
+ "view.workbench.scm.scanWorkspaceForRepositories": "Examinando el área de trabajo en busca de repositorios Git...",
+ "view.workbench.scm.unsafeRepositories": "Es posible que los repositorios Git detectados no sean seguros, ya que las carpetas son propiedad de alguien que no es el usuario actual.\r\n[Administrar repositorios no seguros](command:git.manageUnsafeRepositories)\r\nPara obtener más información sobre los repositorios no seguros [consulte nuestra documentación](https://aka.ms/vscode-git-unsafe-repository).",
+ "view.workbench.scm.unsafeRepository": "Es posible que el repositorio Git detectado no sea seguro, ya que la carpeta es propiedad de alguien que no es el usuario actual.\r\n[Administrar repositorios no seguros](command:git.manageUnsafeRepositories)\r\nPara obtener más información sobre los repositorios no seguros [consulte nuestra documentación](https://aka.ms/vscode-git-unsafe-repository).",
+ "view.workbench.scm.workspace": "El área de trabajo abierta actualmente no tiene ninguna carpeta que contenga repositorios de Git. Puede inicializar un repositorio en una carpeta, lo que habilitará las características de control de código con tecnología de Git.\r\n[Inicializar repositorio](command:git.init)\r\nPara obtener más información sobre cómo usar Git y el control de código fuente en VS Code [lea nuestros documentos](https://aka.ms/vscode-scm)."
+ }
+ }
+}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-es/translations/extensions/vscode.github-authentication.i18n.json b/i18n/vscode-language-pack-es/translations/extensions/vscode.github-authentication.i18n.json
new file mode 100644
index 0000000000..e4d4cf7c85
--- /dev/null
+++ b/i18n/vscode-language-pack-es/translations/extensions/vscode.github-authentication.i18n.json
@@ -0,0 +1,47 @@
+{
+ "": [
+ "--------------------------------------------------------------------------------------------",
+ "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."
+ ],
+ "version": "1.0.0",
+ "contents": {
+ "bundle": {
+ "A reload is required for the fetch setting change to take effect.": "Se requiere una recarga para que el cambio en la configuración de captura surta efecto.",
+ "Apple": "Apple",
+ "Continue to GitHub": "Continuar en GitHub",
+ "Continue to GitHub to create a Personal Access Token (PAT)": "Continuar con GitHub para crear un token de acceso personal (PAT)",
+ "Copy & Continue to {0}": "Copiar y continuar a {0}",
+ "GitHub": "GitHub",
+ "GitHub Authentication - Reload required": "Autenticación de GitHub: se requiere recargar",
+ "GitHub Enterprise Server URI is not a valid URI: {0}": "El URI del servidor de GitHub Enterprise no es un URI válido: {0}",
+ "Google": "Google",
+ "Having trouble logging in? Would you like to try a different way? ({0})": "¿Tiene problemas para iniciar sesión? ¿Desea probar de otra forma? ({0})",
+ "No": "No",
+ "Open [{0}]({0}) in a new tab and paste your one-time code: {1}/The [{0}]({0}) will be a url and the {1} will be a code, e.g. 123-456{Locked=\"[{0}]({0})\"}": "Abra [{0}]({0}) en una pestaña nueva y pegue el código de un solo uso: {1}",
+ "Reload Window": "Volver a cargar ventana",
+ "Sign in failed: {0}": "Error de inicio de sesión: {0}",
+ "Sign out failed: {0}": "Error al cerrar sesión: {0}",
+ "Signing in to {0}.../The {0} will be a url, e.g. github.com": "Iniciando sesión en {0}...",
+ "To finish authenticating, navigate to GitHub and paste in the above one-time code.": "Para finalizar la autenticación, vaya a GitHub y pegue el código de un solo uso anterior.",
+ "To finish authenticating, navigate to GitHub to create a PAT then paste the PAT into the input box.": "Para finalizar la autenticación, vaya a GitHub para crear un PAT y pegue el PAT en el cuadro de entrada.",
+ "Yes": "Sí",
+ "You have not yet finished authorizing this extension to use GitHub. Would you like to try a different way? ({0})": "Aún no ha terminado de autorizar esta extensión para usar GitHub. ¿Desea probar de otra forma? ({0})",
+ "Your Code: {0}/The {0} will be a code, e.g. 123-456": "Su código: {0}",
+ "device code": "código del dispositivo",
+ "local server": "servidor local",
+ "personal access token": "token de acceso personal",
+ "url handler": "Controlador de URL"
+ },
+ "package": {
+ "config.github-authentication.preferDeviceCodeFlow.description": "Cuando sea true, priorice el flujo de código del dispositivo para la autenticación en lugar de otros flujos disponibles. Esto es útil en entornos como WSL, donde los flujos del servidor local o del controlador de URL pueden no funcionar como se espera.",
+ "config.github-authentication.useElectronFetch.description": "Cuando es verdadero, utilice la función de capturar integrada de Electron para las solicitudes HTTP. Cuando es falso, utiliza la función de capturar global de Node.js. Esta configuración solo se aplica cuando se ejecuta en el entorno de Electron. **Nota:** Es necesario reiniciar para que esta configuración surta efecto.",
+ "config.github-enterprise.title": "Autenticación de servidor GHE.com y GitHub Enterprise",
+ "config.github-enterprise.uri.description": "URI de la instancia de GHE.com o GitHub Enterprise Server.\r\n\r\nEjemplos:\r\n* GHE.com: 'https://octocat.ghe.com`\r\n* GitHub Enterprise Server: 'https://github.octocat.com`\r\n\r\n> **Nota:** Debe _no_ establecerse en un URI de GitHub.com. Si su cuenta existe en GitHub.com o es un usuario administrado GitHub Enterprise, no necesita ninguna configuración adicional y simplemente puede iniciar sesión en GitHub.",
+ "description": "Proveedor de autenticación de GitHub",
+ "displayName": "Autenticación de GitHub"
+ }
+ }
+}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-es/translations/extensions/vscode.github.i18n.json b/i18n/vscode-language-pack-es/translations/extensions/vscode.github.i18n.json
new file mode 100644
index 0000000000..09cc52c2d4
--- /dev/null
+++ b/i18n/vscode-language-pack-es/translations/extensions/vscode.github.i18n.json
@@ -0,0 +1,65 @@
+{
+ "": [
+ "--------------------------------------------------------------------------------------------",
+ "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."
+ ],
+ "version": "1.0.0",
+ "contents": {
+ "bundle": {
+ "Checkout on vscode.dev": "Finalizar la compra en vscode.dev",
+ "Commit Changes": "Confirmar cambios",
+ "Copy Anyway": "Copiar de todos modos",
+ "Copy vscode.dev Link": "Copiar vínculo de vscode.dev",
+ "Create Fork": "Crear bifurcación",
+ "Create GitHub fork": "Crear bifurcación de GitHub",
+ "Create PR": "Crear PR",
+ "Creating GitHub Pull Request...": "Creando solicitud de incorporación de cambios de GitHub...",
+ "Creating first commit": "Creando el primer \"commit\"",
+ "Forking \"{0}/{1}\"...": "Bifurcando “{0}/{1}”...",
+ "Learn More": "Más información",
+ "Log level: {0}": "Nivel de registro: {0}",
+ "No": "No",
+ "No GitHub remotes found that contain this commit.": "No se encontraron remotos de GitHub que contengan esta confirmación.",
+ "No template": "Ninguna plantilla",
+ "Open PR": "Abrir PR",
+ "Open on GitHub": "Abrir en GitHub",
+ "Pick a folder to publish to GitHub": "Seleccionar una carpeta para publicar en GitHub",
+ "Publish Branch & Copy Link": "Publicar rama y copiar vínculo",
+ "Publishing to a private GitHub repository": "Publicando en un repositorio de GitHub privado",
+ "Publishing to a public GitHub repository": "Publicando en un repositorio de GitHub público",
+ "Pull Changes & Copy Link": "Cambios de extracción & copiar vínculo",
+ "Push Commits & Copy Link": "Confirmaciones de inserción > Copiar vínculo",
+ "Pushing changes...": "Insertando cambios...",
+ "Select the Pull Request template": "Seleccionar la plantilla de solicitud de incorporación de cambios",
+ "Select which files should be included in the repository.": "Seleccione los archivos que se deben incluir en el repositorio.",
+ "Successfully published the \"{0}\" repository to GitHub.": "El repositorio “{0}” se publicó correctamente en GitHub.",
+ "The PR \"{0}/{1}#{2}\" was successfully created on GitHub.": "La PR “{0}/{1}#{2}” se creó correctamente en GitHub.",
+ "The current branch has unpublished commits. Would you like to push your commits before copying a link?": "La rama actual tiene confirmaciones no publicadas. ¿Desea insertar las confirmaciones antes de copiar un vínculo?",
+ "The current branch is not published to the remote. Would you like to publish your branch before copying a link?": "La rama actual no está publicada en el remoto. ¿Desea publicar la rama antes de copiar un vínculo?",
+ "The current branch is not up to date. Would you like to pull before copying a link?": "La rama actual no está actualizada. ¿Desea extraer antes de copiar un vínculo?",
+ "The current file has uncommitted changes. Please commit your changes before copying a link.": "El archivo actual tiene cambios sin confirmar. Confirme los cambios antes de copiar un vínculo.",
+ "The fork \"{0}\" was successfully created on GitHub.": "La bifurcación “{0}” se creó correctamente en GitHub.",
+ "Uploading files": "Cargando archivos",
+ "You don't have permissions to push to \"{0}/{1}\" on GitHub. Would you like to create a fork and push to it instead?": "No tiene permisos para insertar en \"{0}/{1}\" en GitHub. ¿Desea crear una bifurcación e insertarla en ella en su lugar?",
+ "Your push to \"{0}/{1}\" was rejected by GitHub because push protection is enabled and one or more secrets were detected.": "GitHub rechazó la inserción en \"{0}/{1}\" porque la protección de inserción está habilitada y se detectaron uno o varios secretos.",
+ "{0} Open on GitHub": "{0} Abrir en GitHub"
+ },
+ "package": {
+ "command.copyVscodeDevLink": "Copiar vínculo de vscode.dev",
+ "command.openOnGitHub": "Abrir en GitHub",
+ "command.openOnVscodeDev": "Abrir en vscode.dev",
+ "command.publish": "Publicar en GitHub",
+ "config.branchProtection": "Controla si se deben consultar las reglas del repositorio para repositorios de GitHub.",
+ "config.gitAuthentication": "Controla si se debe habilitar la autenticación automática de GitHub para los comandos GIT dentro de VS Code.",
+ "config.gitProtocol": "Controla qué protocolo se usa para clonar un repositorio de GitHub",
+ "config.showAvatar": "Controla si se muestra el avatar de GitHub del autor de la confirmación en varios desplazamientos (p. ej., Git blame, Timeline, Source Control Graph, etc.).",
+ "description": "Características de GitHub para VS Code",
+ "displayName": "GitHub",
+ "welcome.publishFolder": "Puede publicar directamente esta carpeta en un repositorio de GitHub. Una vez publicada, tendrá acceso a las características de control de código fuente con tecnología de Git y GitHub.\r\n[$(github) Publicar en GitHub](command:github.publish)",
+ "welcome.publishWorkspaceFolder": "Puede publicar directamente una carpeta del área de trabajo en un repositorio de GitHub. Una vez publicada, tendrá acceso a las características de control de código fuente con tecnología de Git y GitHub.\r\n[$(github) Publicar en GitHub](command:github.publish)"
+ }
+ }
+}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-es/translations/extensions/vscode.go.i18n.json b/i18n/vscode-language-pack-es/translations/extensions/vscode.go.i18n.json
index 2490dae8ba..f9814a9e77 100644
--- a/i18n/vscode-language-pack-es/translations/extensions/vscode.go.i18n.json
+++ b/i18n/vscode-language-pack-es/translations/extensions/vscode.go.i18n.json
@@ -9,8 +9,8 @@
"version": "1.0.0",
"contents": {
"package": {
- "displayName": "Elementos básicos del lenguaje Go",
- "description": "Proporciona resaltado de sintaxis y correspondencia de corchetes en archivos de Go."
+ "description": "Proporciona resaltado de sintaxis y correspondencia de corchetes en archivos de Go.",
+ "displayName": "Elementos básicos del lenguaje Go"
}
}
}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-es/translations/extensions/vscode.groovy.i18n.json b/i18n/vscode-language-pack-es/translations/extensions/vscode.groovy.i18n.json
index cc91315f30..20d543730d 100644
--- a/i18n/vscode-language-pack-es/translations/extensions/vscode.groovy.i18n.json
+++ b/i18n/vscode-language-pack-es/translations/extensions/vscode.groovy.i18n.json
@@ -9,8 +9,8 @@
"version": "1.0.0",
"contents": {
"package": {
- "displayName": "Conceptos básicos del lenguaje Groovy",
- "description": "Proporciona fragmentos de código, resaltado de sintaxis y correspondencia de corchetes en archivos de Groovy."
+ "description": "Proporciona fragmentos de código, resaltado de sintaxis y correspondencia de corchetes en archivos de Groovy.",
+ "displayName": "Conceptos básicos del lenguaje Groovy"
}
}
}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-es/translations/extensions/vscode.grunt.i18n.json b/i18n/vscode-language-pack-es/translations/extensions/vscode.grunt.i18n.json
new file mode 100644
index 0000000000..2273078003
--- /dev/null
+++ b/i18n/vscode-language-pack-es/translations/extensions/vscode.grunt.i18n.json
@@ -0,0 +1,25 @@
+{
+ "": [
+ "--------------------------------------------------------------------------------------------",
+ "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."
+ ],
+ "version": "1.0.0",
+ "contents": {
+ "bundle": {
+ "Auto detecting Grunt for folder {0} failed with error: {1}', this.workspaceFolder.name, err.error ? err.error.toString() : 'unknown": "Error al detectar automáticamente Grunt para la carpeta {0}:: {1}', this.workspaceFolder.name, err.error ? err.error.toString() : 'unknown",
+ "Go to output": "Ir a la salida",
+ "Problem finding grunt tasks. See the output for more information.": "Problema para encontrar tareas grunt. Consulte la salida para obtener más información."
+ },
+ "package": {
+ "config.grunt.autoDetect": "Controla la habilitación de la detección de tareas de Gulp. La detección de tareas de Gulp puede hacer que se ejecuten archivos en cualquier espacio de trabajo abierto.",
+ "description": "Extensión que agrega funcionalidad de Grunt a VS Code.",
+ "displayName": "Funcionalidad de Grunt para VS Code",
+ "grunt.taskDefinition.args.description": "Argumentos de línea de comandos para pasar a la tarea de Grunt",
+ "grunt.taskDefinition.file.description": "El archivo de Grunt que proporciona la tarea. Se puede omitir.",
+ "grunt.taskDefinition.type.description": "La tarea de Grunt que se va a personalizar."
+ }
+ }
+}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-es/translations/extensions/vscode.gulp.i18n.json b/i18n/vscode-language-pack-es/translations/extensions/vscode.gulp.i18n.json
new file mode 100644
index 0000000000..680aad0599
--- /dev/null
+++ b/i18n/vscode-language-pack-es/translations/extensions/vscode.gulp.i18n.json
@@ -0,0 +1,24 @@
+{
+ "": [
+ "--------------------------------------------------------------------------------------------",
+ "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."
+ ],
+ "version": "1.0.0",
+ "contents": {
+ "bundle": {
+ "Auto detecting gulp for folder {0} failed with error: {1}', this.workspaceFolder.name, err.error ? err.error.toString() : 'unknown": "Error al detectar automáticamente Gulp para la carpeta {0}: {1}', this.workspaceFolder.name, err.error ? err.error.toString() : 'unknown",
+ "Go to output": "Ir a la salida",
+ "Problem finding gulp tasks. See the output for more information.": "Problemas para encontrar tareas de gulp. Vea la salida para obtener más información."
+ },
+ "package": {
+ "config.gulp.autoDetect": "Controla la habilitación de la detección de tareas de Gulp. La detección de tareas de Gulp puede hacer que se ejecuten archivos en cualquier espacio de trabajo abierto.",
+ "description": "Extensión para añadir funcionalidad de Gulp a VSCode.",
+ "displayName": "Soporte de Gulp para VSCode",
+ "gulp.taskDefinition.file.description": "El archivo de Gulp que proporciona la tarea. Se puede omitir.",
+ "gulp.taskDefinition.type.description": "La tarea de Gulp que se va a personalizar."
+ }
+ }
+}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-es/translations/extensions/vscode.handlebars.i18n.json b/i18n/vscode-language-pack-es/translations/extensions/vscode.handlebars.i18n.json
index d72ac1b1ba..ced1b92f3a 100644
--- a/i18n/vscode-language-pack-es/translations/extensions/vscode.handlebars.i18n.json
+++ b/i18n/vscode-language-pack-es/translations/extensions/vscode.handlebars.i18n.json
@@ -9,8 +9,8 @@
"version": "1.0.0",
"contents": {
"package": {
- "displayName": "Conceptos básicos del lenguaje Handlebars ",
- "description": "Proporciona resaltado de sintaxis y correspondencia de corchetes en archivos de Handlebars."
+ "description": "Proporciona resaltado de sintaxis y correspondencia de corchetes en archivos de Handlebars.",
+ "displayName": "Conceptos básicos del lenguaje Handlebars "
}
}
}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-es/translations/extensions/vscode.hlsl.i18n.json b/i18n/vscode-language-pack-es/translations/extensions/vscode.hlsl.i18n.json
index 4c7758e99a..0d0cad6b0e 100644
--- a/i18n/vscode-language-pack-es/translations/extensions/vscode.hlsl.i18n.json
+++ b/i18n/vscode-language-pack-es/translations/extensions/vscode.hlsl.i18n.json
@@ -9,8 +9,8 @@
"version": "1.0.0",
"contents": {
"package": {
- "displayName": "Conceptos básicos del lenguaje HLSL",
- "description": "Proporciona resaltado de sintaxis y correspondencia de corchetes en archivos de HLSL."
+ "description": "Proporciona resaltado de sintaxis y correspondencia de corchetes en archivos de HLSL.",
+ "displayName": "Conceptos básicos del lenguaje HLSL"
}
}
}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-es/translations/extensions/vscode.html-language-features.i18n.json b/i18n/vscode-language-pack-es/translations/extensions/vscode.html-language-features.i18n.json
new file mode 100644
index 0000000000..31d8392e79
--- /dev/null
+++ b/i18n/vscode-language-pack-es/translations/extensions/vscode.html-language-features.i18n.json
@@ -0,0 +1,304 @@
+{
+ "": [
+ "--------------------------------------------------------------------------------------------",
+ "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."
+ ],
+ "version": "1.0.0",
+ "contents": {
+ "bundle": {
+ "\"store\" a boolean test for later evaluation in a guard or if().": "\"guarda\" una prueba booleana para su evaluación posterior en una restricción o if().",
+ "'from' expected": "se esperaba \"from\"",
+ "'in' expected": "Se esperaba \"in\"",
+ "'through' or 'to' expected": "Se esperaba 'through' o 'to'",
+ "'{0}'": "'{0}'",
+ "( expected": "Se esperaba (",
+ ") expected": "Se esperaba )",
+ "": "",
+ "@font-face": "@font-face",
+ "@font-face rule must define 'src' and 'font-family' properties": "La regla @font-face debe definir las propiedades \"src\" y \"font-family\"",
+ "@keyframes {0}": "@keyframes {0}",
+ "A list of properties that are not validated against the `unknownProperties` rule.": "Lista de propiedades que no se validan con la regla \"unknownProperties\".",
+ "Adds quotes to a string.": "Agrega comillas a una cadena.",
+ "Also define the standard property '{0}' for compatibility": "Define también la propiedad estándar \"{0}\" por compatibilidad",
+ "Always define standard rule '@keyframes' when defining keyframes.": "Defina siempre la regla estándar \"@keyframes\" al definir fotogramas clave.",
+ "Always include all vendor specific properties: Missing: {0}": "Incluir siempre todas las propiedades específicas del proveedor. Falta: {0}",
+ "Always include all vendor specific rules: Missing: {0}": "Incluir siempre todas las reglas específicas del proveedor: falta: {0}",
+ "Appends a single value onto the end of a list.": "Anexa un único valor al final de una lista.",
+ "Appends selectors to one another without spaces in between.": "Anexa selectores entre sí sin espacios entre sí.",
+ "Avoid using !important. It is an indication that the specificity of the entire CSS has gotten out of control and needs to be refactored.": "Evite usar !important. Es una indicación que la especificidad de todo el CSS se ha salido de control y debe ser refactorizada.",
+ "Avoid using 'float'. Floats lead to fragile CSS that is easy to break if one aspect of the layout changes.": "Le recomendamos no usar \"float\". Los valores float producen CSS vulnerables, que pueden dañarse fácilmente si se cambia cualquier aspecto del diseño.",
+ "Causes one or more rules to be emitted at the root of the document.": "Hace que se emitan una o varias reglas en la raíz del documento.",
+ "Changes one or more properties of a color.": "Cambia una o varias propiedades de un color.",
+ "Changes the alpha component for a color.": "Cambia el componente alfa de un color.",
+ "Changes the hue of a color.": "Cambia el matiz de un color.",
+ "Character entity representing '{0}'": "Entidad de carácter que representa \"{0}\"",
+ "Character entity representing '{0}', unicode equivalent '{1}'": "Entidad de carácter que representa \"{0}\" (equivalente en unicode: \"{1}\")",
+ "Closing bracket expected.": "Se esperaba un corchete de cierre.",
+ "Closing bracket missing.": "Falta el corchete de cierre.",
+ "Combines several lists into a single multidimensional list.": "Combina varias listas en una sola lista multidimensional.",
+ "Configure": "Configurar",
+ "Converts a color into the format understood by IE filters.": "Convierte un color en el formato entendido por los filtros IE.",
+ "Converts a color to grayscale.": "Convierte un color en escala de grises.",
+ "Converts a string to lower case.": "Convierte una cadena en minúsculas.",
+ "Converts a string to upper case.": "Convierte una cadena en mayúsculas.",
+ "Converts a unitless number to a percentage.": "Convierte un número sin unidad en un porcentaje.",
+ "Creates a Color from hue, saturation, and lightness values.": "Crea un color a partir de valores de matiz, saturación y claridad.",
+ "Creates a Color from hue, saturation, lightness, and alpha values.": "Crea un color a partir de valores de matiz, saturación, claridad y alfa.",
+ "Creates a Color from hue, white, and black values.": "Crea un color a partir de valores de matiz, blanco y negro.",
+ "Creates a Color from lightness, a, and b values.": "Crea un color a partir de los valores de luminosidad, a y b.",
+ "Creates a Color from lightness, chroma, and hue values.": "Crea un color a partir de los valores de luminosidad, croma y tono.",
+ "Creates a Color from red, green, and blue values.": "Crea un color a partir de valores rojos, verdes y azules.",
+ "Creates a Color from red, green, blue, and alpha values.": "Crea un color a partir de valores rojos, verdes, azules y alfa.",
+ "Creates a Color from the hue, saturation, and lightness values of another Color.": "Crea un color a partir de los valores de matiz, saturación y luminosidad de otro color.",
+ "Creates a Color from the hue, white, and black values of another Color.": "Crea un color a partir de los valores de matiz, blanco y negro de otro color.",
+ "Creates a Color from the lightness, a, and b values of another Color.": "Crea un color a partir de los valores de luminosidad, a y b de otro color.",
+ "Creates a Color from the lightness, chroma, and hue values of another Color.": "Crea un color a partir de los valores de luminosidad, tono y matiz de otro color.",
+ "Creates a Color from the red, green, and blue values of another Color.": "Crea un color a partir de los valores rojo, verde y azul de otro color.",
+ "Creates a Color in a specific color space from red, green, and blue values.": "Crea un color en un espacio de color específico a partir de los valores rojo, verde y azul.",
+ "Creates a Color in a specific color space from the red, green, and blue values of another Color.": "Crea un color en un espacio de color específico a partir de los valores rojo, verde y azul de otro color.",
+ "Defines complex operations that can be re-used throughout stylesheets.": "Define operaciones complejas que se pueden volver a usar en hojas de estilos.",
+ "Defines styles that can be re-used throughout the stylesheet with `@include`.": "Define estilos que se pueden volver a usar en toda la hoja de estilos con `@include`.",
+ "Do not use duplicate style definitions": "No use definiciones de estilo duplicadas",
+ "Do not use empty rulesets": "No usar conjuntos de reglas vacíos.",
+ "Do not use width or height when using padding or border": "No use el ancho ni la altura al emplear el relleno o el borde.",
+ "Dynamically calls a Sass function.": "Llama dinámicamente a una función SASS.",
+ "Each loop that sets `$var` to each item in the list or map, then outputs the styles it contains using that value of `$var`.": "Cada bucle que establece \"$var\" en cada elemento de la lista o asignación y, a continuación, genera los estilos que contiene con ese valor de \"$var\".",
+ "End tag name expected.": "Se esperaba el nombre de la etiqueta final.",
+ "Exposes the details of Sass’s inner workings.": "Expone los detalles del funcionamiento interno de SASS.",
+ "Extends $extendee with $extender within $selector.": "Extiende $extendee con $extender dentro de $selector.",
+ "Extracts a substring from $string.": "Extrae una subcadena de $string.",
+ "Finds the maximum of several numbers.": "Busca el máximo de varios números.",
+ "Finds the minimum of several numbers.": "Busca el mínimo de varios números.",
+ "Fluidly scales one or more properties of a color.": "Escala de forma fluida una o varias propiedades de un color.",
+ "Folding Region End": "Fin de la región plegable",
+ "Folding Region Start": "Inicio de la región plegable",
+ "For loop that repeatedly outputs a set of styles for each `$var` in the `from/through` or `from/to` clause.": "Bucle For que genera repetidamente un conjunto de estilos para cada \"$var\" en la cláusula \"from/through\" o \"from/to\".",
+ "Generates new colors based on existing ones, making it easy to build color themes.": "Genera nuevos colores basados en los existentes, lo que facilita la creación de temas de color.",
+ "Gets the blue component of a color.": "Obtiene el componente azul de un color.",
+ "Gets the green component of a color.": "Obtiene el componente verde de un color.",
+ "Gets the hue component of a color.": "Obtiene el componente de matiz de un color.",
+ "Gets the lightness component of a color.": "Obtiene el componente de claridad de un color.",
+ "Gets the opacity component of a color.": "Obtiene el componente de opacidad de un color.",
+ "Gets the red component of a color.": "Obtiene el componente rojo de un color.",
+ "Gets the saturation component of a color.": "Obtiene el componente de saturación de un color.",
+ "HTML Language Server": "Servidor de lenguaje HTML",
+ "Hex colors must consist of three, four, six or eight hex numbers": "Los colores hexadecimales deben constar de tres, cuatro, seis u ocho números hexadecimales",
+ "IE hacks are only necessary when supporting IE7 and older": "Las modificaciones de IE solo son necesarias cuando se admite IE7 y versiones anteriores",
+ "Import statements do not load in parallel": "Las instrucciones Import no se cargan en paralelo",
+ "Includes the body if the expression does not evaluate to `false` or `null`.": "Incluye el cuerpo si la expresión no se evalúa como `false` o `null`.",
+ "Includes the styles defined by another mixin into the current rule.": "Incluye los estilos definidos por otra combinación en la regla actual.",
+ "Increases or decreases one or more components of a color.": "Aumenta o disminuye uno o varios componentes de un color.",
+ "Inherits the styles of another selector.": "Hereda los estilos de otro selector.",
+ "Inserts $insert into $string at $index.": "Inserta $insert en $string en $index.",
+ "Invalid number of parameters": "Número de parámetros incorrecto",
+ "Joins together two lists into one.": "Une dos listas en una.",
+ "Lets you access and modify values in lists.": "Permite acceder a los valores de las listas y modificarlos.",
+ "Loads a Sass stylesheet and makes its mixins, functions, and variables available when this stylesheet is loaded with the @use rule.": "Carga una hoja de estilos SASS y hace que sus mixins, funciones y variables estén disponibles cuando esta hoja de estilos se carga con la regla de @use.",
+ "Loads mixins, functions, and variables from other Sass stylesheets as 'modules', and combines CSS from multiple stylesheets together.": "Carga mixins, funciones y variables de otras hojas de estilos SASS como \"módulos\" y combina CSS de varias hojas de estilos a la vez.",
+ "Makes a color darker.": "Hace que un color sea más oscuro.",
+ "Makes a color less saturated.": "Hace que un color esté menos saturado.",
+ "Makes a color lighter.": "Hace que un color sea más claro.",
+ "Makes a color more opaque.": "Hace que un color sea más opaco.",
+ "Makes a color more saturated.": "Hace que un color esté más saturado.",
+ "Makes a color more transparent.": "Hace que un color sea más transparente.",
+ "Makes it easy to combine, search, or split apart strings.": "Facilita la combinación, búsqueda o división de cadenas.",
+ "Makes it possible to look up the value associated with a key in a map, and much more.": "Permite buscar el valor asociado a una clave en una asignación y mucho más.",
+ "Merges two maps together into a new map.": "Combina dos mapas en un mapa nuevo.",
+ "Mix two colors together in a polar color space.": "Combinar dos colores en un espacio de colores polares.",
+ "Mix two colors together in a rectangular color space.": "Combina dos colores en un espacio de colores rectangular.",
+ "Mixes two colors together.": "Combina dos colores.",
+ "Nests selector beneath one another like they would be nested in the stylesheet.": "Anida el selector debajo de otro como si estuviera anidado en una hoja de estilos.",
+ "No unit for zero needed": "No se necesita ninguna unidad para cero",
+ "Parses a selector into the format returned by &.": "Analiza un selector en el formato devuelto por &.",
+ "Prints the value of an expression to the standard error output stream. Useful for debugging complicated Sass files.": "Imprime el valor de una expresión en la secuencia de salida de error estándar. Es útil para depurar archivos SASS complicados.",
+ "Prints the value of an expression to the standard error output stream. Useful for libraries that need to warn users of deprecations or recovering from minor mixin usage mistakes. Warnings can be turned off with the `--quiet` command-line option or the `:quiet` Sass option.": "Imprime el valor de una expresión en la secuencia de salida de error estándar. Es útil para bibliotecas que necesitan advertir a los usuarios sobre software en desuso o recuperarse de errores leves de uso de mixin. Las advertencias se pueden desactivar con la opción de línea de comandos \"--quiet\" o la opción SASS \":quiet\".",
+ "Property is ignored due to the display.": "La propiedad se omite debido a la pantalla.",
+ "Property is ignored due to the display. With 'display: block', vertical-align should not be used.": "La propiedad se omite debido a la pantalla. Con 'display: block', no se debe usar la alineación vertical.",
+ "Provides access to Sass’s powerful selector engine.": "Proporciona acceso al eficaz motor de selector de SASS.",
+ "Provides functions that operate on numbers.": "Proporciona funciones que funcionan en números.",
+ "Removes quotes from a string.": "Quita las comillas de una cadena.",
+ "Rename to '{0}'": "Cambiar el nombre a '{0}'",
+ "Replaces $original with $replacement within $selector.": "Reemplaza $original por $replacement en $selector.",
+ "Replaces the nth item in a list.": "Reemplaza el elemento nth de una lista.",
+ "Returns a list of all keys in a map.": "Devuelve una lista de todas las claves de una asignación.",
+ "Returns a list of all values in a map.": "Devuelve una lista de todos los valores de una asignación.",
+ "Returns a new map with keys removed.": "Devuelve una nueva asignación con claves quitadas.",
+ "Returns a random number.": "Devuelve un número aleatorio.",
+ "Returns a specific item in a list.": "Devuelve un elemento específico de una lista.",
+ "Returns the absolute value of a number.": "Devuelve el valor absoluto de un número.",
+ "Returns the complement of a color.": "Devuelve el complemento de un color.",
+ "Returns the index of the first occurance of $substring in $string.": "Devuelve el índice de la primera instancia de $substring en $string.",
+ "Returns the inverse of a color.": "Devuelve el inverso de un color.",
+ "Returns the keywords passed to a function that takes variable arguments.": "Devuelve las palabras clave pasadas a una función que toma argumentos de variable.",
+ "Returns the length of a list.": "Devuelve la longitud de una lista.",
+ "Returns the number of characters in a string.": "Devuelve el número de caracteres de una cadena.",
+ "Returns the position of a value within a list.": "Devuelve la posición de un valor dentro de una lista.",
+ "Returns the separator of a list.": "Devuelve el separador de una lista.",
+ "Returns the simple selectors that comprise a compound selector.": "Devuelve los selectores simples que componen un selector compuesto.",
+ "Returns the string representation of a value as it would be represented in Sass.": "Devuelve la representación de cadena de un valor tal y como se representaría en Sass.",
+ "Returns the type of a value.": "Devuelve el tipo de un valor.",
+ "Returns the unit(s) associated with a number.": "Devuelve las unidades asociadas a un número.",
+ "Returns the value in a map associated with a given key.": "Devuelve el valor de un mapa asociado a una clave determinada.",
+ "Returns whether $super matches all the elements $sub does, and possibly more.": "Devuelve la respuesta a si $super coincide con todos los elementos $sub y, posiblemente, con más.",
+ "Returns whether a feature exists in the current Sass runtime.": "Devuelve si existe una característica en el runtime de SaaS actual.",
+ "Returns whether a function with the given name exists.": "Devuelve si existe una función con el nombre especificado.",
+ "Returns whether a map has a value associated with a given key.": "Devuelve si una asignación tiene un valor asociado a una clave determinada.",
+ "Returns whether a mixin with the given name exists.": "Devuelve si existe un mixin con el nombre especificado.",
+ "Returns whether a number has units.": "Devuelve si un número tiene unidades.",
+ "Returns whether a variable with the given name exists in the current scope.": "Devuelve si existe una variable con el nombre especificado en el ámbito actual.",
+ "Returns whether a variable with the given name exists in the global scope.": "Devuelve si existe una variable con el nombre especificado en el ámbito global.",
+ "Returns whether two numbers can be added, subtracted, or compared.": "Devuelve la respuesta a si se pueden agregar, restar o comparar dos números.",
+ "Rounds a number down to the previous whole number.": "Redondea un número hacia abajo hasta el número entero anterior.",
+ "Rounds a number to the nearest whole number.": "Redondea un número al número entero más cercano.",
+ "Rounds a number up to the next whole number.": "Redondea un número al siguiente número entero.",
+ "Sass documentation": "Documentación de Sass",
+ "Selector Specificity": "Especificidad del selector",
+ "Selectors should not contain IDs because these rules are too tightly coupled with the HTML.": "Los selectores no deben contener identificadores porque estas reglas están estrechamente ligadas a HTML.",
+ "Simple HTML5 starting point": "Punto de partida HTML5 sencillo",
+ "Start tag name expected.": "Se esperaba el nombre de la etiqueta de inicio.",
+ "Tag name must directly follow the open bracket.": "El nombre de etiqueta debe seguir directamente el corchete de apertura.",
+ "The universal selector (*) is known to be slow": "Se sabe que el selector universal \"*\" es lento.",
+ "Throws the value of an expression as a fatal error with stack trace. Useful for validating arguments to mixins and functions.": "Inicia el valor de una expresión como un error irrecuperable con el seguimiento de la pila. Es útil para validar argumentos en mixins y funciones.",
+ "URI expected": "Se esperaba el URI",
+ "URL encodes a string": "La dirección URL codifica una cadena",
+ "Unexpected character in tag.": "Carácter inesperado en la etiqueta.",
+ "Unifies two selectors to produce a selector that matches elements matched by both.": "Unifica dos selectores para producir un selector que coincide con los elementos coincidentes con ambos.",
+ "Unknown at-rule.": "At-rule desconocida.",
+ "Unknown property.": "Propiedad desconocida.",
+ "Unknown property: '{0}'": "Propiedad desconocida: \"{0}\"",
+ "Unknown vendor specific property.": "Propiedad específica del proveedor desconocida.",
+ "VS Code now has built-in support for auto-renaming tags. Do you want to enable it?": "VS Code ahora tiene integrada la compatibilidad con el cambio de nombre automático de etiquetas. ¿Desea habilitarlo?",
+ "When using a vendor-specific prefix also include the standard property": "Cuando use un prefijo específico del proveedor, incluya también la propiedad estándar.",
+ "When using a vendor-specific prefix make sure to also include all other vendor-specific properties": "Cuando use un prefijo específico del proveedor, compruebe que también haya incluido el resto de propiedades específicas del proveedor",
+ "While loop that takes an expression and repeatedly outputs the nested styles until the statement evaluates to `false`.": "Bucle While que toma una expresión y genera repetidamente los estilos anidados hasta que la instrucción se evalúa como \"false\".",
+ "[ expected": "Se esperaba [",
+ "] expected": "se esperaba ]",
+ "absolute value of a number": "valor absoluto de un número",
+ "arccosine - inverse of cosine function": "arcocoseno: inverso de la función de coseno",
+ "arcsine - inverse of sine function": "arcoseno: inverso de la función de seno",
+ "arctangent - inverse of tangent function": "arcotangente: inversa de la función tangente",
+ "argument from '{0}'": "argumento de \"{0}\"",
+ "at-rule or selector expected": "se esperaba un selector o una regla en la regla",
+ "at-rule unknown": "at-rule desconocida",
+ "bind the evaluation of a ruleset to each member of a list.": "enlaza la evaluación de un conjunto de reglas a cada miembro de una lista.",
+ "calculates square root of a number": "calcula la raíz cuadrada de un número",
+ "colon expected": "Se esperaban dos puntos",
+ "comma expected": "se esperaba una coma",
+ "condition expected": "condición esperada",
+ "converts numbers from one type into another": "convierte números de un tipo a otro",
+ "converts to a %, e.g. 0.5 > 50%": "convierte a %, p. ej., 0,5 > 50 %",
+ "cosine function": "función de coseno",
+ "creates a #AARRGGBB": "crea un #AARRGGBB",
+ "creates a color": "crea un color",
+ "css.builtin.lab": "css.builtin.lab",
+ "dot expected": "se esperaba un punto",
+ "escape string content": "contenido de cadena de escape",
+ "expression expected": "Se esperaba una expresión.",
+ "first argument modulus second argument": "primer argumento módulo segundo argumento",
+ "first argument raised to the power of the second argument": "primer argumento elevado a la potencia del segundo argumento",
+ "generate a list spanning a range of values": "genera una lista que abarca un intervalo de valores",
+ "identifier expected": "se esperaba un identificador",
+ "identifier or variable expected": "se esperaba un identificador o una variable",
+ "identifier or wildcard expected": "se esperaba un identificador o un carácter comodín",
+ "inline-block is ignored due to the float. If 'float' has a value other than 'none', the box is floated and 'display' is treated as 'block'": "inline-block se omite debido al float. Si 'float' tiene un valor distinto de 'none', el cuadro es floated y 'display' se trata como 'block'",
+ "inlines a resource and falls back to `url()`": "coloca en línea un recurso y vuelve a `url()`",
+ "media query expected": "se esperaba una consulta multimedia",
+ "number expected": "se esperaba un número",
+ "operator expected": "se esperaba un operador",
+ "page directive or declaraton expected": "se esperaba una directiva de página o una declaración",
+ "parses a string to a color": "analiza una cadena en un color",
+ "percentage expected": "porcentaje esperado",
+ "property value expected": "se esperaba un valor de propiedad",
+ "remove or change the unit of a dimension": "quita o cambia la unidad de una dimensión",
+ "return `@color` 10% points darker": "devuelve \"@color\" con un 10 % de puntos más oscuros",
+ "return `@color` 10% points less saturated": "devuelve `@color` con un 10 % menos de puntos de saturación",
+ "return `@color` 10% points less transparent": "devuelve \"@color\" con un 10 % de puntos menos transparentes",
+ "return `@color` 10% points lighter": "devuelve `@color` con un 10 % más de puntos de luminosidad",
+ "return `@color` 10% points more saturated": "devuelve \"@color\" con un 10 % más de puntos de saturación",
+ "return `@color` 10% points more transparent": "devuelve \"@color\" con un 10 % más de puntos de transparencia",
+ "return `@color` with 50% transparency": "devuelve \"@color\" con transparencia del 50 %",
+ "return `@color` with a 10 degree larger in hue": "devuelve \"@color\" con un matiz mayor de 10 grados",
+ "return `@darkcolor` if `@color1 is> 43% luma` otherwise return `@lightcolor`, see notes": "devuelve \"@darkcolor\" si \"@color1 is> 43% luma\"; de lo contrario, devuelve \"@lightcolor\". Consulte las notas.",
+ "return a mix of `@color1` and `@color2`": "devuelve una combinación de \"@color1\" y \"@color2\"",
+ "returns a grey, 100% desaturated color": "devuelve un color gris 100 % desaturado",
+ "returns a value at the specified position in the list": "devuelve un valor en la posición especificada de la lista",
+ "returns one of two values depending on a condition.": "devuelve uno de los dos valores en función de una condición.",
+ "returns pi": "devuelve pi",
+ "returns the `alpha` channel of `@color`": "devuelve el canal \"alfa\" de \"@color\"",
+ "returns the `blue` channel of `@color`": "devuelve el canal \"blue\" de \"@color\"",
+ "returns the `green` channel of `@color`": "devuelve el canal `green` de `@color`",
+ "returns the `hue` channel of `@color` in the HSL space": "devuelve el canal `hue` de `@color` en el espacio HSL",
+ "returns the `hue` channel of `@color` in the HSV space": "devuelve el canal \"matiz\" de \"@color\" en el espacio HSV",
+ "returns the `lightness` channel of `@color` in the HSL space": "devuelve el canal \"lightness\" de \"@color\" en el espacio HSL",
+ "returns the `luma` value (perceptual brightness) of `@color`": "devuelve el valor `luma` (brillo perceptual) de `@color`",
+ "returns the `red` channel of `@color`": "devuelve el canal `red` de `@color`",
+ "returns the `saturation` channel of `@color` in the HSL space": "devuelve el canal \"saturación\" de \"@color\" en el espacio HSL",
+ "returns the `saturation` channel of `@color` in the HSV space": "devuelve el canal \"saturación\" de \"@color\" en el espacio HSV",
+ "returns the `value` channel of `@color` in the HSV space": "devuelve el canal \"value\" de \"@color\" en el espacio HSV",
+ "returns the lowest of one or more values": "devuelve el valor más bajo de uno o más valores",
+ "returns the number of elements in a value list": "devuelve el número de elementos de una lista de valores",
+ "rounds a number to a number of places": "redondea un número a una cantidad de decimales",
+ "rounds down to an integer": "redondea a un entero",
+ "rounds up to an integer": "redondea a un entero",
+ "selector expected": "se esperaba un selector",
+ "semi-colon expected": "se esperaba punto y coma",
+ "sine function": "función seno",
+ "string literal expected": "se esperaba un literal de cadena",
+ "string replace": "reemplazo de cadena",
+ "tangent function": "función tangente",
+ "term expected": "se esperaba un término",
+ "unknown keyword": "palabra clave desconocida",
+ "uri or string expected": "Se esperaba un URI o una cadena",
+ "variable name expected": "se espera un nombre de variable",
+ "variable value expected": "se esperaba un valor de variable",
+ "whitespace expected": "se esperaba un espacio en blanco",
+ "wildcard expected": "se esperaba un carácter comodín",
+ "{ expected": "se esperaba {",
+ "{0}, '{1}'": "{0},",
+ "} expected": "se esperaba }"
+ },
+ "package": {
+ "description": "Ofrece un extenso soporte de lenguaje para archivos HTML y Handlebar",
+ "displayName": "Características del lenguaje HTML",
+ "html.autoClosingTags": "Habilita o deshabilita el cierre automático de las etiquetas HTML.",
+ "html.autoCreateQuotes": "Habilita o deshabilita la creación automática de comillas para la asignación de atributos HTML. '#html.completion.attributeDefaultValue#' puede configurar el tipo de comillas.",
+ "html.completion.attributeDefaultValue": "Controla el valor predeterminado de los atributos cuando se acepta la finalización.",
+ "html.completion.attributeDefaultValue.doublequotes": "El valor del atributo se establece en \"\".",
+ "html.completion.attributeDefaultValue.empty": "El valor del atributo no está establecido.",
+ "html.completion.attributeDefaultValue.singlequotes": "El valor del atributo se establece en ''.",
+ "html.customData.desc": "Una lista de rutas de archivo relativas que apuntan a archivos JSON siguiendo el [formato de datos personalizados](https://github.com/microsoft/vscode-html-languageservice/blob/master/docs/customData.md).\r\n\r\nVS Code carga los datos personalizados al iniciarse para mejorar su soporte HTML para las etiquetas HTML personalizadas, los atributos y los valores de atributos que usted especifica en los archivos JSON.\r\n\r\nLas rutas de los archivos son relativas al área de trabajo y sólo se tiene en cuenta la configuración de la carpeta del área de trabajo.",
+ "html.format.contentUnformatted.desc": "Lista de etiquetas, separadas por comas, en las que el contenido no debe volver a formatearse. \"null\" se establece de manera predeterminada en la etiqueta \"pre\".",
+ "html.format.enable.desc": "Habilitar o deshabilitar el formateador HTML predeterminado.",
+ "html.format.extraLiners.desc": "Lista de etiquetas, separadas por comas, que deben tener una nueva línea adicional delante. \"null\" tiene como valores predeterminados \"head, body, /html\".",
+ "html.format.indentHandlebars.desc": "Formato y sangría {{#foo}} y {{/foo}}.",
+ "html.format.indentInnerHtml.desc": "Aplique sangría a las secciones \"\" y \"\".",
+ "html.format.maxPreserveNewLines.desc": "Número máximo de saltos de línea que deben conservarse en un fragmento. Use \"null\" para que el número sea ilimitado.",
+ "html.format.preserveNewLines.desc": "Controla si los saltos de línea existentes delante de los elementos deben conservarse. Solo funciona delante de los elementos, no dentro de las etiquetas ni con texto.",
+ "html.format.templating.desc": "Respete las etiquetas de los lenguajes de plantillas django, erb, handlebars y php.",
+ "html.format.unformatted.desc": "Lista de etiquetas, separadas por comas, a las que no se debe volver a aplicar formato. El valor predeterminado de \"null\" son todas las etiquetas mostradas en https://www.w3.org/TR/html5/dom.html#phrasing-content.",
+ "html.format.unformattedContentDelimiter.desc": "Agrupe el contenido de texto entre esta cadena.",
+ "html.format.wrapAttributes.alignedmultiple": "Ajusta cuando se supera la longitud de línea y alinea los atributos verticalmente.",
+ "html.format.wrapAttributes.auto": "Ajustar atributos solo cuando se supera la longitud de la línea.",
+ "html.format.wrapAttributes.desc": "Ajustar atributos.",
+ "html.format.wrapAttributes.force": "Ajustar todos los atributos excepto el primero.",
+ "html.format.wrapAttributes.forcealign": "Ajustar todos los atributos excepto el primero y mantener la alineación.",
+ "html.format.wrapAttributes.forcemultiline": "Ajustar todos los atributos.",
+ "html.format.wrapAttributes.preserve": "Preserva el ajuste de atributos.",
+ "html.format.wrapAttributes.preservealigned": "Conservar el ajuste de atributos pero alinear.",
+ "html.format.wrapAttributesIndentSize.desc": "Aplicar sangría a los atributos ajustados después de N caracteres. Use \"null\" para usar el tamaño de sangría predeterminado. Se omite si \"#html.format.wrapAttributes#\" está establecido en \"aligned\".",
+ "html.format.wrapLineLength.desc": "Cantidad máxima de caracteres por línea (0 = deshabilitar).",
+ "html.hover.documentation": "Mostrar la documentación de atributos y etiquetas mediante movimiento del mouse.",
+ "html.hover.references": "Mostrar las referencias a MDN mediante movimiento del mouse.",
+ "html.mirrorCursorOnMatchingTag": "Habilitar o deshabilitar el reflejo del cursor en la etiqueta HTML coincidente.",
+ "html.mirrorCursorOnMatchingTagDeprecationMessage": "En desuso en favor de \"editor.linkedEditing\"",
+ "html.suggest.hideEndTagSuggestions.desc": "Controla si la compatibilidad integrada con el lenguaje HTML sugiere etiquetas de cierre. Si se desactiva, no se mostrarán las finalizaciones de etiquetas de cierre como ''.",
+ "html.suggest.html5.desc": "Controla si la compatibilidad con el lenguaje HTML integrada sugiere etiquetas, propiedades y valores de HTML5.",
+ "html.trace.server.desc": "Hace un seguimiento de la comunicación entre VSCode y el servidor de lenguaje HTML.",
+ "html.validate.scripts": "Controla si la compatibilidad con el lenguaje HTML integrada valida los scripts incrustados.",
+ "html.validate.styles": "Controla si la compatibilidad con el lenguaje HTML integrada valida los estilos incrustados."
+ }
+ }
+}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-es/translations/extensions/vscode.html.i18n.json b/i18n/vscode-language-pack-es/translations/extensions/vscode.html.i18n.json
index fe3b6fd666..f4e7c71ceb 100644
--- a/i18n/vscode-language-pack-es/translations/extensions/vscode.html.i18n.json
+++ b/i18n/vscode-language-pack-es/translations/extensions/vscode.html.i18n.json
@@ -9,8 +9,8 @@
"version": "1.0.0",
"contents": {
"package": {
- "displayName": "Conceptos básicos de lenguaje HTML",
- "description": "Proporciona resaltado de sintaxis, coincidencia de corchetes y fragmentos de código en archivos HTML."
+ "description": "Proporciona resaltado de sintaxis, coincidencia de corchetes y fragmentos de código en archivos HTML.",
+ "displayName": "Conceptos básicos de lenguaje HTML"
}
}
}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-es/translations/extensions/vscode.ini.i18n.json b/i18n/vscode-language-pack-es/translations/extensions/vscode.ini.i18n.json
index c7fe07fe13..68e6161607 100644
--- a/i18n/vscode-language-pack-es/translations/extensions/vscode.ini.i18n.json
+++ b/i18n/vscode-language-pack-es/translations/extensions/vscode.ini.i18n.json
@@ -9,8 +9,8 @@
"version": "1.0.0",
"contents": {
"package": {
- "displayName": "Conceptos básicos del lenguaje Ini",
- "description": "Proporciona resaltado de sintaxis y correspondencia de corchetes en archivos Ini."
+ "description": "Proporciona resaltado de sintaxis y correspondencia de corchetes en archivos Ini.",
+ "displayName": "Conceptos básicos del lenguaje Ini"
}
}
}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-es/translations/extensions/vscode.ipynb.i18n.json b/i18n/vscode-language-pack-es/translations/extensions/vscode.ipynb.i18n.json
new file mode 100644
index 0000000000..afe9513b97
--- /dev/null
+++ b/i18n/vscode-language-pack-es/translations/extensions/vscode.ipynb.i18n.json
@@ -0,0 +1,29 @@
+{
+ "": [
+ "--------------------------------------------------------------------------------------------",
+ "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."
+ ],
+ "version": "1.0.0",
+ "contents": {
+ "bundle": {
+ "Insert Image as Attachment": "Insertar imagen como datos adjuntos"
+ },
+ "package": {
+ "addCellOutputToChat.title": "Agregar salida de celda al chat",
+ "cleanInvalidImageAttachment.title": "Limpiar referencia de datos adjuntos de imagen no válida",
+ "copyCellOutput.title": "Copiar salida de celda",
+ "description": "Proporciona compatibilidad básica para abrir y leer los archivos .ipynb del bloc de notas de Jupyter.",
+ "displayName": "Compatibilidad con .ipynb",
+ "ipynb.experimental.serialization": "Característica experimental para serializar Jupyter Notebook en un subproceso de trabajo.",
+ "ipynb.pasteImagesAsAttachments.enabled": "Habilite o deshabilite el pegado de imágenes en celdas de Markdown en archivos de bloc de notas de ipynb. Las imágenes pegadas se insertan como datos adjuntos en la celda.",
+ "markdownAttachmentRenderer.displayName": "Representador de datos adjuntos de celda ipynb de Markdown",
+ "newUntitledIpynb.shortTitle": "Jupyter Notebook",
+ "newUntitledIpynb.title": "Nuevo Jupyter Notebook",
+ "openCellOutput.title": "Abrir salida de celda en editor de texto",
+ "openIpynbInNotebookEditor.title": "Abrir el archivo IPYNB en el editor de Notebook"
+ }
+ }
+}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-es/translations/extensions/vscode.jake.i18n.json b/i18n/vscode-language-pack-es/translations/extensions/vscode.jake.i18n.json
new file mode 100644
index 0000000000..9c55fa1245
--- /dev/null
+++ b/i18n/vscode-language-pack-es/translations/extensions/vscode.jake.i18n.json
@@ -0,0 +1,24 @@
+{
+ "": [
+ "--------------------------------------------------------------------------------------------",
+ "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."
+ ],
+ "version": "1.0.0",
+ "contents": {
+ "bundle": {
+ "Auto detecting Jake for folder {0} failed with error: {1}', this.workspaceFolder.name, err.error ? err.error.toString() : 'unknown": "Error al detectar automáticamente Jake para la carpeta {0}: {1}', this.workspaceFolder.name, err.error ? err.error.toString() : 'unknown",
+ "Go to output": "Ir a la salida",
+ "Problem finding jake tasks. See the output for more information.": "Problema para encontrar tareas de jake. Vea la salida para más información."
+ },
+ "package": {
+ "config.jake.autoDetect": "Controla la activación de la detección de tareas de Jake. La detección de tareas de Jake puede hacer que se ejecuten los archivos de cualquier área de trabajo abierta.",
+ "description": "Extensión que agrega funcionalidad de Jake a VS Code.",
+ "displayName": "Funcionalidad de Jake para VS Code",
+ "jake.taskDefinition.file.description": "EL archivo de Jake que proporciona la tarea. Se puede omitir.",
+ "jake.taskDefinition.type.description": "La tarea de Jake que se va a personalizar."
+ }
+ }
+}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-es/translations/extensions/vscode.java.i18n.json b/i18n/vscode-language-pack-es/translations/extensions/vscode.java.i18n.json
index 7942c50681..6a959ed3f4 100644
--- a/i18n/vscode-language-pack-es/translations/extensions/vscode.java.i18n.json
+++ b/i18n/vscode-language-pack-es/translations/extensions/vscode.java.i18n.json
@@ -9,8 +9,8 @@
"version": "1.0.0",
"contents": {
"package": {
- "displayName": "Conceptos básicos del lenguaje Java",
- "description": "Proporciona fragmentos de código, resaltado de sintaxis, correspondencia de corchetes y plegado de código en archivos de Java."
+ "description": "Proporciona fragmentos de código, resaltado de sintaxis, correspondencia de corchetes y plegado de código en archivos de Java.",
+ "displayName": "Conceptos básicos del lenguaje Java"
}
}
}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-es/translations/extensions/vscode.javascript.i18n.json b/i18n/vscode-language-pack-es/translations/extensions/vscode.javascript.i18n.json
index b08d830f1d..2af98a9ac2 100644
--- a/i18n/vscode-language-pack-es/translations/extensions/vscode.javascript.i18n.json
+++ b/i18n/vscode-language-pack-es/translations/extensions/vscode.javascript.i18n.json
@@ -9,8 +9,8 @@
"version": "1.0.0",
"contents": {
"package": {
- "displayName": "Conceptos básicos del lenguaje JavaScript",
- "description": "Proporciona fragmentos de código, resaltado de sintaxis, correspondencia de corchetes y plegado de código en archivos de JavaScript."
+ "description": "Proporciona fragmentos de código, resaltado de sintaxis, correspondencia de corchetes y plegado de código en archivos de JavaScript.",
+ "displayName": "Conceptos básicos del lenguaje JavaScript"
}
}
}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-es/translations/extensions/vscode.json-language-features.i18n.json b/i18n/vscode-language-pack-es/translations/extensions/vscode.json-language-features.i18n.json
new file mode 100644
index 0000000000..d865582b2d
--- /dev/null
+++ b/i18n/vscode-language-pack-es/translations/extensions/vscode.json-language-features.i18n.json
@@ -0,0 +1,190 @@
+{
+ "": [
+ "--------------------------------------------------------------------------------------------",
+ "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."
+ ],
+ "version": "1.0.0",
+ "contents": {
+ "bundle": {
+ "$ref '{0}' in '{1}' can not be resolved.": "$ref '{0}' en '{1}' no se puede resolver.",
+ "": "",
+ "A default value. Used by suggestions.": "Valor predeterminado. Usado por sugerencias.",
+ "A descriptive title of the schema.": "Título descriptivo del esquema.",
+ "A long description of the schema. Used in hover menus and suggestions.": "Descripción larga del esquema. Se usa en menús y sugerencias al mantener el puntero.",
+ "A map of property names to either an array of property names or a schema. An array of property names means the property named in the key depends on the properties in the array being present in the object in order to be valid. If the value is a schema, then the schema is only applied to the object if the property in the key exists on the object.": "Asignación de nombres de propiedad a una matriz de nombres de propiedad o a un esquema. Una matriz de nombres de propiedad significa que la propiedad denominada en la clave depende de las propiedades de la matriz presentes en el objeto para que sean válidas. Si el valor es un esquema, el esquema solo se aplica al objeto si la propiedad de la clave existe en el objeto.",
+ "A map of property names to schemas for each property.": "Asignación de nombres de propiedad a esquemas para cada propiedad.",
+ "A map of regular expressions on property names to schemas for matching properties.": "Asignación de expresiones regulares en nombres de propiedad a esquemas para propiedades coincidentes.",
+ "A number that should cleanly divide the current value (i.e. have no remainder).": "Número que debería dividir limpiamente el valor actual (es decir, que no quede resto).",
+ "A regular expression to match the string against. It is not implicitly anchored.": "Expresión regular con la que hacer coincidir la cadena. No está delimitado implícitamente.",
+ "A schema which must not match.": "El esquema que no debe coincidir.",
+ "A unique identifier for the schema.": "Identificador único del esquema.",
+ "An array instance is valid against \"contains\" if at least one of its elements is valid against the given schema.": "Una instancia de matriz es válida para \"contains\" si al menos uno de sus elementos es válido con el esquema especificado.",
+ "An array of schemas, all of which must match.": "Matriz de esquemas, todos los cuales deberán coincidir.",
+ "An array of schemas, exactly one of which must match.": "Una matriz de esquemas, exactamente una de las cuales debe coincidir.",
+ "An array of schemas, where at least one must match.": "Una matriz de esquemas, donde al menos uno deberá coincidir.",
+ "An array of strings that lists the names of all properties required on this object.": "Matriz de cadenas que enumera los nombres de todas las propiedades necesarias en este objeto.",
+ "An instance validates successfully against this keyword if its value is equal to the value of the keyword.": "Una instancia se valida correctamente con esta palabra clave si su valor es igual al valor de la palabra clave.",
+ "Array does not contain required item.": "La matriz no contiene el elemento necesario.",
+ "Array has duplicate items.": "La matriz tiene elementos duplicados.",
+ "Array has too few items that match the contains contraint. Expected {0} or more.": "La matriz tiene muy pocos elementos que coinciden con el limitador de contenido. Se esperaba {0} o más.",
+ "Array has too few items. Expected {0} or more.": "La matriz tiene muy pocos elementos. Se esperaban {0} o más.",
+ "Array has too many items according to schema. Expected {0} or fewer.": "La matriz tiene demasiados elementos según el esquema. Se esperaba {0} o menos.",
+ "Array has too many items that match the contains contraint. Expected {0} or less.": "La matriz tiene demasiados elementos que coinciden con el limitador de contenido. Se esperaba {0} o menos.",
+ "Array has too many items. Expected {0} or fewer.": "La matriz tiene demasiados elementos. Se esperaban {0} o menos.",
+ "Colon expected": "Se esperaban dos puntos",
+ "Comments are not permitted in JSON.": "No se permiten comentarios en JSON.",
+ "Comments from schema authors to readers or maintainers of the schema.": "Comentarios de los autores del esquema a los lectores o mantenedores del esquema.",
+ "Configure": "Configurar",
+ "Configured by extension: {0}": "Configurado por extensión: {0}",
+ "Configured in user settings": "Configurado en la configuración de usuario",
+ "Configured in workspace settings": "Configurado en la configuración del área de trabajo",
+ "Default value": "Valor predeterminado",
+ "Describes the content encoding of a string property.": "Describe la codificación de contenido de una propiedad de cadena.",
+ "Describes the format expected for the value. By default, not used for validation": "Describe el formato esperado para el valor. De forma predeterminada, no se usa para la validación",
+ "Describes the media type of a string property.": "Describe el tipo de medio de una propiedad de cadena.",
+ "Downloading schemas is disabled in untrusted workspaces": "La descarga de esquemas está deshabilitada en áreas de trabajo no confiables",
+ "Downloading schemas is disabled through setting '{0}'": "La descarga de esquemas está deshabilitada mediante el valor \"{0}\"",
+ "Downloading schemas is disabled. Click to configure.": "La descarga de esquemas está deshabilitada. Haga clic para configurar.",
+ "Draft-03 schemas are not supported.": "No se admiten esquemas borrador-03.",
+ "Duplicate anchor declaration: '{0}'": "Declaración de delimitador duplicada: '{0}'",
+ "Duplicate object key": "Clave de objeto duplicada",
+ "Either a schema or a boolean. If a schema, used to validate all properties not matched by 'properties', 'propertyNames', or 'patternProperties'. If false, any properties not defined by the adajacent keywords will cause this schema to fail.": "Esquema o booleano. Si es un esquema, se usa para validar todas las propiedades que no coincidan con \"properties\", \"propertyNames\" o \"patternProperties\". Si es false, cualquier propiedad no definida por las palabras clave adyacentes provocará un error en este esquema.",
+ "Either a string of one of the basic schema types (number, integer, null, array, object, boolean, string) or an array of strings specifying a subset of those types.": "Cadena de uno de los tipos de esquema básicos (número, entero, null, matriz, objeto, booleano, cadena) o una matriz de cadenas que especifica un subconjunto de esos tipos.",
+ "End of file expected.": "Se esperaba el final del archivo.",
+ "Expected a JSON object, array or literal.": "Se esperaba un objeto JSON, una matriz o un literal.",
+ "Expected comma": "Se esperaba una coma",
+ "Expected comma or closing brace": "Se esperaba una coma o un corchete de cierre",
+ "Expected comma or closing bracket": "Se esperaba una coma o un corchete de cierre",
+ "Failed to sort the JSONC document, please consider opening an issue.": "No se pudo ordenar el documento JSONC. Considere la posibilidad de abrir una incidencia.",
+ "For arrays, only when items is set as an array. If items are a schema, this schema validates items after the ones specified by the items schema. If false, additional items will cause validation to fail.": "Para matrices, solo cuando los elementos se establezcan como una matriz. Si los elementos son un esquema, este esquema valida los elementos después de los especificados por el esquema de elementos. Si es false, los elementos adicionales provocarán un error en la validación.",
+ "For arrays. Can either be a schema to validate every element against or an array of schemas to validate each item against in order (the first schema will validate the first element, the second schema will validate the second element, and so on.": "Para matrices. Puede ser un esquema con el que validar cada elemento o una matriz de esquemas para validar cada elemento en orden (el primer esquema validará el primer elemento, el segundo esquema validará el segundo elemento, y así sucesivamente.",
+ "If all of the items in the array must be unique. Defaults to false.": "Si todos los elementos de la matriz deben ser únicos. El valor predeterminado es false.",
+ "If the instance is an object, this keyword validates if every property name in the instance validates against the provided schema.": "Si la instancia es un objeto, esta palabra clave valida si todos los nombres de propiedad de la instancia se validan con el esquema proporcionado.",
+ "Incorrect type. Expected \"{0}\".": "Tipo incorrecto. Se esperaba \"{0}\".",
+ "Incorrect type. Expected one of {0}.": "Tipo incorrecto. Se esperaba uno de {0}.",
+ "Indicates that the value of the instance is managed exclusively by the owning authority.": "Indica que el valor de la instancia está administrado exclusivamente por la autoridad propietaria.",
+ "Invalid characters in string. Control characters must be escaped.": "Caracteres no válidos en la cadena. Los caracteres de control deberán tener caracteres de escape.",
+ "Invalid color format. Use #RGB, #RGBA, #RRGGBB or #RRGGBBAA.": "Formato de color no válido. Use #RGB, #RGBA, #RRGGBB o #RRGGBBAA.",
+ "Invalid escape character in string.": "Carácter de escape no válido en la cadena.",
+ "Invalid number format.": "Formato numérico no válido.",
+ "Invalid unicode sequence in string.": "Secuencia Unicode no válida en la cadena.",
+ "Item does not match any validation rule from the array.": "El elemento no coincide con ninguna regla de validación de la matriz.",
+ "JSON Language Server": "Servidor de lenguaje JSON",
+ "JSON Outline Status": "Estado del esquema JSON",
+ "JSON Validation Status": "Estado de validación JSON",
+ "JSON schema cache cleared.": "Borrada la caché de esquema JSON.",
+ "JSON schema configured": "Esquema JSON configurado",
+ "JSON: Schema Resolution Error": "JSON: Error de resolución de esquemas",
+ "Learn more about JSON schema configuration...": "Más información sobre la configuración del esquema JSON...",
+ "Loading JSON info": "Cargando información JSON",
+ "Makes the maximum property exclusive.": "Hace exclusiva la propiedad máxima.",
+ "Makes the minimum property exclusive.": "Hace que la propiedad mínima sea exclusiva.",
+ "Matches a schema that is not allowed.": "Coincide con un esquema no permitido.",
+ "Matches multiple schemas when only one must validate.": "Coincide con varios esquemas cuando solo se debe validar uno.",
+ "Missing property \"{0}\".": "Falta la propiedad \"{0}\".",
+ "New array": "Nueva matriz",
+ "New object": "Nuevo objeto",
+ "No schema configured for this file": "No hay ningún esquema configurado para este archivo",
+ "No schema validation": "Sin validación de esquema",
+ "Not used for validation. Place subschemas here that you wish to reference inline with $ref.": "No se usa para la validación. Coloque aquí los subesquemas a los que desee hacer referencia alineada con $ref.",
+ "Object has fewer properties than the required number of {0}": "El objeto tiene menos propiedades que el número requerido de {0}",
+ "Object has more properties than limit of {0}.": "El objeto tiene más propiedades que el límite de {0}.",
+ "Object is missing property {0} required by property {1}.": "Al objeto le falta la propiedad {0} requerida por la propiedad {1}.",
+ "Open Extension": "Abrir la extensión",
+ "Open Settings": "Abrir configuración",
+ "Outline": "Esquema",
+ "Problem reading content from '{0}': UTF-8 with BOM detected, only UTF 8 is allowed.": "Problema al leer el contenido de '{0}': UTF-8 con BOM detectado, solo se permite UTF 8.",
+ "Problems loading reference '{0}': {1}": "Problemas al cargar la referencia '{0}': {1}",
+ "Property expected": "Propiedad esperada",
+ "Property keys must be doublequoted": "Las claves de propiedad deberán tener comillas dobles",
+ "Property {0} is not allowed.": "No se permite la propiedad {0}.",
+ "Reference a definition hosted on any location.": "Referenciar a una definición hospedada en cualquier ubicación.",
+ "Sample JSON values associated with a particular schema, for the purpose of illustrating usage.": "Valores JSON de ejemplo asociados a un esquema concreto con el fin de ilustrar el uso.",
+ "Schema not found: {0}": "Esquema no encontrado: {0}",
+ "Schema validated": "Esquema validado",
+ "Select the schema to use for {0}": "Seleccione el esquema que se vaya a usar para {0}",
+ "Show Schemas": "Mostrar esquemas",
+ "Sort JSON": "Ordenar JSON",
+ "String does not match the pattern of \"{0}\".": "La cadena no coincide con el patrón de \"{0}\".",
+ "String is longer than the maximum length of {0}.": "La cadena es mayor que la longitud máxima de {0}.",
+ "String is not a RFC3339 date-time.": "La cadena no es una fecha y hora RFC3339.",
+ "String is not a RFC3339 date.": "La cadena no es una fecha RFC3339.",
+ "String is not a RFC3339 time.": "La cadena no es una hora RFC3339.",
+ "String is not a URI: {0}": "La cadena no es una URI: {0}",
+ "String is not a hostname.": "La cadena no es un nombre de host.",
+ "String is not an IPv4 address.": "La cadena no es una dirección IPv4.",
+ "String is not an IPv6 address.": "La cadena no es una dirección IPv6.",
+ "String is not an e-mail address.": "La cadena no es una dirección de correo electrónico.",
+ "String is shorter than the minimum length of {0}.": "La cadena es más corta que la longitud mínima de {0}.",
+ "The \"else\" subschema is used for validation when the \"if\" subschema fails.": "El subesquema \"else\" se usa para la validación cuando el subesquema \"if\" no tiene éxito.",
+ "The \"then\" subschema is used for validation when the \"if\" subschema succeeds.": "El subesquema \"then\" se usa para la validación cuando el subesquema \"if\" tiene éxito.",
+ "The maximum length of a string.": "La longitud máxima de una cadena.",
+ "The maximum number of items that can be inside an array. Inclusive.": "Número máximo de elementos que pueden estar dentro de una matriz. Inclusivo.",
+ "The maximum number of properties an object can have. Inclusive.": "Número máximo de propiedades que puede tener un objeto. Inclusivo.",
+ "The maximum numerical value, inclusive by default.": "Valor numérico máximo, inclusivo de forma predeterminada.",
+ "The minimum length of a string.": "Longitud mínima de una cadena.",
+ "The minimum number of items that can be inside an array. Inclusive.": "Número mínimo de elementos que pueden estar dentro de una matriz. Inclusivo.",
+ "The minimum number of properties an object can have. Inclusive.": "Número mínimo de propiedades que puede tener un objeto. Inclusivo.",
+ "The minimum numerical value, inclusive by default.": "Valor numérico mínimo, inclusivo de forma predeterminada.",
+ "The schema to verify this document against.": "Esquema con el que se va a comprobar este documento.",
+ "The schema uses meta-schema features ({0}) that are not yet supported by the validator.": "El esquema usa características de metaesquema ({0}) que aún no son compatibles con el validador.",
+ "The set of literal values that are valid.": "Conjunto de valores literales que son válidos.",
+ "The validation outcome of the \"if\" subschema controls which of the \"then\" or \"else\" keywords are evaluated.": "El resultado de la validación del subesquema \"if\" controlará qué palabras clave \"then\" o \"else\" se evalúan.",
+ "Trailing comma": "Coma final",
+ "URI expected.": "Se esperaba el URI.",
+ "URI is expected.": "Se espera el URI.",
+ "URI with a scheme is expected.": "Se espera el URI con un esquema.",
+ "Unable to compute used schemas: No document": "No se pueden calcular los esquemas usados: no hay documentos",
+ "Unable to compute used schemas: {0}": "No se pueden calcular los esquemas usados: {0}",
+ "Unable to download schemas in untrusted workspaces.": "No se pueden descargar esquemas en áreas de trabajo no confiables.",
+ "Unable to load schema from '{0}'. No schema request service available": "No se puede cargar el esquema desde \"{0}\" No hay ningún servicio de solicitud de esquema disponible",
+ "Unable to load schema from '{0}': No content.": "No se puede cargar el esquema desde '{0}': sin contenido.",
+ "Unable to load schema from '{0}': {1}.": "No se puede cargar el esquema desde '{0}': {1}.",
+ "Unable to load {0}": "No se puede cargar {0}",
+ "Unable to parse content from '{0}': Parse error at offset {1}.": "No se puede analizar el contenido de '{0}': error de análisis en el desplazamiento {1}.",
+ "Unable to resolve schema. Click to retry.": "No se puede resolver el esquema. Haga clic para volver a intentarlo.",
+ "Unexpected end of comment.": "Final de comentario inesperado.",
+ "Unexpected end of number.": "Fin de número inesperado.",
+ "Unexpected end of string.": "Final de cadena inesperado.",
+ "Value expected": "Se esperaba un valor",
+ "Value is above the exclusive maximum of {0}.": "El valor está por encima del máximo exclusivo de {0}.",
+ "Value is above the maximum of {0}.": "El valor está por encima del máximo de {0}.",
+ "Value is below the exclusive minimum of {0}.": "El valor está por debajo del mínimo exclusivo de {0}.",
+ "Value is below the minimum of {0}.": "El valor es inferior al mínimo de {0}.",
+ "Value is deprecated": "El valor está en desuso",
+ "Value is not accepted. Valid values: {0}.": "No se acepta el valor. Valores válidos: {0}.",
+ "Value is not divisible by {0}.": "El valor no es divisible por {0}.",
+ "Value must be {0}.": "El valor deberá ser {0}.",
+ "multiple JSON schemas configured": "se configuraron varios esquemas JSON",
+ "no JSON schema configured": "no hay ningún esquema JSON configurado",
+ "only {0} document symbols shown for performance reasons": "solo se muestran {0} símbolos del documento por motivos de rendimiento",
+ "{0} is a directory, not a file": "{0} es un directorio, no un archivo"
+ },
+ "package": {
+ "description": "Proporciona un potente soporte de lenguaje para archivos JSON.",
+ "displayName": "Características del lenguaje JSON",
+ "json.clickToRetry": "Haga clic para volver a intentarlo.",
+ "json.colorDecorators.enable.deprecationMessage": "El valor \"json.colorDecorators.enable\" está en desuso en favor de \"editor.colorDecorators\".",
+ "json.colorDecorators.enable.desc": "Habilita o deshabilita decoradores de color",
+ "json.command.clearCache": "Borrar caché de esquema",
+ "json.command.sort": "Ordenar documento",
+ "json.enableSchemaDownload.desc": "Cuando está habilitado, los esquemas JSON se pueden capturar desde ubicaciones http y https.",
+ "json.format.enable.desc": "Habilitar o deshabilitar el formateador JSON predeterminado",
+ "json.format.keepLines.desc": "Conservar todas las líneas nuevas existentes al formatear.",
+ "json.maxItemsComputed.desc": "El número máximo de símbolos del esquema y regiones de plegado calculados (limitado por motivos de rendimiento).",
+ "json.maxItemsExceededInformation.desc": "Muestra una notificación cuando se supera el número máximo de símbolos de esquema y de regiones plegables.",
+ "json.schemaResolutionErrorMessage": "No se puede resolver el esquema.",
+ "json.schemas.desc": "Asocia esquemas a archivos JSON en el proyecto actual.",
+ "json.schemas.fileMatch.desc": "Una matriz de patrones de archivo con los que buscar correspondencia al resolver archivos JSON en esquemas, \"*\" y \"**\" puede usarse como comodín. Los patrones de exclusión también se pueden definir y comenzar con \"!\". Un archivo coincide cuando hay al menos un patrón coincidente y el último patrón coincidente no es un patrón de exclusión.",
+ "json.schemas.fileMatch.item.desc": "Un patrón de archivo que puede contener \"*\" y \"**\" con el cual coincidir cuando los archivos JSON se resuelvan en esquemas. Cuando comienza con \"!\", define un patrón de exclusión.",
+ "json.schemas.schema.desc": "La definición de esquema de la dirección URL determinada. Solo se necesita proporcionar el esquema para evitar los accesos a la dirección URL del esquema.",
+ "json.schemas.url.desc": "Dirección URL o ruta de acceso de archivo absoluta a un esquema. Puede ser una ruta de acceso relativa (a partir de './') en la configuración del área de trabajo y de la carpeta del área de trabajo.",
+ "json.tracing.desc": "Realiza el seguimiento de la comunicación entre VS Code y el servidor de lenguaje JSON.",
+ "json.validate.enable.desc": "Habilita o deshabilita la validación json.",
+ "json.workspaceTrust": "La extensión requiere confianza en el área de trabajo para cargar esquemas desde http y https."
+ }
+ }
+}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-es/translations/extensions/vscode.json.i18n.json b/i18n/vscode-language-pack-es/translations/extensions/vscode.json.i18n.json
index 4c39ac2cd8..86f733f02c 100644
--- a/i18n/vscode-language-pack-es/translations/extensions/vscode.json.i18n.json
+++ b/i18n/vscode-language-pack-es/translations/extensions/vscode.json.i18n.json
@@ -9,8 +9,8 @@
"version": "1.0.0",
"contents": {
"package": {
- "displayName": "Conceptos básicos de lenguaje JSON",
- "description": "Proporciona resaltado de sintaxis y coincidencia de corchetes en los archivos JSON."
+ "description": "Proporciona resaltado de sintaxis y coincidencia de corchetes en los archivos JSON.",
+ "displayName": "Conceptos básicos de lenguaje JSON"
}
}
}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-es/translations/extensions/julia.i18n.json b/i18n/vscode-language-pack-es/translations/extensions/vscode.julia.i18n.json
similarity index 100%
rename from i18n/vscode-language-pack-es/translations/extensions/julia.i18n.json
rename to i18n/vscode-language-pack-es/translations/extensions/vscode.julia.i18n.json
diff --git a/i18n/vscode-language-pack-es/translations/extensions/latex.i18n.json b/i18n/vscode-language-pack-es/translations/extensions/vscode.latex.i18n.json
similarity index 100%
rename from i18n/vscode-language-pack-es/translations/extensions/latex.i18n.json
rename to i18n/vscode-language-pack-es/translations/extensions/vscode.latex.i18n.json
diff --git a/i18n/vscode-language-pack-es/translations/extensions/vscode.less.i18n.json b/i18n/vscode-language-pack-es/translations/extensions/vscode.less.i18n.json
index 3363c8af8f..cd3e0ff673 100644
--- a/i18n/vscode-language-pack-es/translations/extensions/vscode.less.i18n.json
+++ b/i18n/vscode-language-pack-es/translations/extensions/vscode.less.i18n.json
@@ -9,8 +9,8 @@
"version": "1.0.0",
"contents": {
"package": {
- "displayName": "Conceptos básicos del lenguaje Less",
- "description": "Proporciona resaltado de sintaxis, correspondencia de corchetes y plegado en archivos Less."
+ "description": "Proporciona resaltado de sintaxis, correspondencia de corchetes y plegado en archivos Less.",
+ "displayName": "Conceptos básicos del lenguaje Less"
}
}
}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-es/translations/extensions/vscode.log.i18n.json b/i18n/vscode-language-pack-es/translations/extensions/vscode.log.i18n.json
index dccc79ab4f..019edbdedd 100644
--- a/i18n/vscode-language-pack-es/translations/extensions/vscode.log.i18n.json
+++ b/i18n/vscode-language-pack-es/translations/extensions/vscode.log.i18n.json
@@ -9,8 +9,8 @@
"version": "1.0.0",
"contents": {
"package": {
- "displayName": "LOG",
- "description": "Proporciona resaltado de sintaxis para archivos con la extensión .log."
+ "description": "Proporciona resaltado de sintaxis para archivos con la extensión .log.",
+ "displayName": "LOG"
}
}
}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-es/translations/extensions/vscode.lua.i18n.json b/i18n/vscode-language-pack-es/translations/extensions/vscode.lua.i18n.json
index a1cbbeaf08..421f2f8bf6 100644
--- a/i18n/vscode-language-pack-es/translations/extensions/vscode.lua.i18n.json
+++ b/i18n/vscode-language-pack-es/translations/extensions/vscode.lua.i18n.json
@@ -9,8 +9,8 @@
"version": "1.0.0",
"contents": {
"package": {
- "displayName": "Conceptos básicos del lenguaje Lua",
- "description": "Proporciona resaltado de sintaxis y correspondencia de corchetes en archivos de Lua."
+ "description": "Proporciona resaltado de sintaxis y correspondencia de corchetes en archivos de Lua.",
+ "displayName": "Conceptos básicos del lenguaje Lua"
}
}
}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-es/translations/extensions/vscode.make.i18n.json b/i18n/vscode-language-pack-es/translations/extensions/vscode.make.i18n.json
index 77f9470ed4..f14b07384d 100644
--- a/i18n/vscode-language-pack-es/translations/extensions/vscode.make.i18n.json
+++ b/i18n/vscode-language-pack-es/translations/extensions/vscode.make.i18n.json
@@ -9,8 +9,8 @@
"version": "1.0.0",
"contents": {
"package": {
- "displayName": "Conceptos básicos del lenguaje Make",
- "description": "Proporciona resaltado de sintaxis y correspondencia de corchetes en archivos Make."
+ "description": "Proporciona resaltado de sintaxis y correspondencia de corchetes en archivos Make.",
+ "displayName": "Conceptos básicos del lenguaje Make"
}
}
}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-es/translations/extensions/vscode.markdown-language-features.i18n.json b/i18n/vscode-language-pack-es/translations/extensions/vscode.markdown-language-features.i18n.json
new file mode 100644
index 0000000000..1fbd6c7369
--- /dev/null
+++ b/i18n/vscode-language-pack-es/translations/extensions/vscode.markdown-language-features.i18n.json
@@ -0,0 +1,172 @@
+{
+ "": [
+ "--------------------------------------------------------------------------------------------",
+ "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."
+ ],
+ "version": "1.0.0",
+ "contents": {
+ "bundle": {
+ "...1 additional file not shown": "...1 archivo más que no se muestra",
+ "...{0} additional files not shown": "...{0} archivos más que no se muestran",
+ "Allow all content and script execution. Not recommended": "Permitir todo el contenido y la ejecución de scripts. No se recomienda.",
+ "Allow insecure content": "Permitir contenido no seguro",
+ "Allow insecure local content": "Permitir contenido local inseguro ",
+ "Always": "Siempre",
+ "An unexpected error occurred while restoring the Markdown preview.": "Error inesperado al restaurar la vista previa de Markdown.",
+ "Checking for Markdown links to update": "Comprobando los vínculos de Markdown para actualizar",
+ "Content Disabled Security Warning": "Alerta de seguridad de contenido deshabilitado",
+ "Could not load 'markdown.styles': {0}": "No se pudo cargar 'markdown.styles': {0}",
+ "Could not open {0}": "No se pudo abrir {0}",
+ "Disable": "Deshabilitar",
+ "Disable preview security warning in this workspace": "Deshabilitar advertencias de seguridad de vista previa en esta área de trabajo",
+ "Disable validation of Markdown links": "Deshabilitar validación de vínculos de Markdown",
+ "Does not affect the content security level": "No afecta al nivel de seguridad de contenido",
+ "Enable": "Habilitar",
+ "Enable loading content over http": "Habilitar el contenido de carga sobre http",
+ "Enable loading content over http served from localhost": "Habilitar la carga del contenido sobre http desde localhost",
+ "Enable preview security warnings in this workspace": "Habilitar advertencias de seguridad de vista previa en esta área de trabajo",
+ "Enable validation of Markdown links": "Habilitar validación de vínculos de Markdown",
+ "Exclude '{0}' from link validation.": "Excluya '{0}' de la validación de vínculos.",
+ "Extract to link definition": "Extraer para vincular la definición",
+ "File does not exist at path: {0}": "El archivo no existe en la ruta de acceso: {0}",
+ "Find file references failed. No resource provided.": "Error al buscar referencias de archivo. No se ha proporcionado ningún recurso.",
+ "Finding file references": "Buscando referencias de archivo",
+ "Follow link": "Seguir vínculo",
+ "Go to link definition": "Ir a la definición de vínculo",
+ "Header does not exist in file: {0}": "El encabezado no existe en el archivo: {0}",
+ "Insert Markdown Audio": "Insertar audio de Markdown",
+ "Insert Markdown Image": "Insertar imagen de Markdown",
+ "Insert Markdown Images": "Insertar imágenes de Markdown",
+ "Insert Markdown Images and Links": "Insertar imágenes y vínculos de Markdown",
+ "Insert Markdown Link": "Insertar vínculo de Markdown",
+ "Insert Markdown Links": "Insertar vínculos de Markdown",
+ "Insert Markdown Media": "Insertar elementos multimedia de Markdown",
+ "Insert Markdown Media and Images": "Insertar elementos multimedia e imágenes de Markdown",
+ "Insert Markdown Media and Links": "Insertar elementos multimedia y vínculos de Markdown",
+ "Insert Markdown Video": "Insertar vídeo de Markdown",
+ "Insert image": "Insertar imagen",
+ "Insert link": "Insertar vínculo",
+ "Link definition for '{0}' already exists": "Ya existe la definición de vínculo para \"{0}\"",
+ "Link definition is unused": "Definición de vínculo sin usar",
+ "Link is already a reference": "El vínculo ya es una referencia",
+ "Link is also defined here": "El vínculo también se define aquí",
+ "Link to '# {0}' in '{1}'": "Vincular a \"# {0}\" en \"{1}\"",
+ "Link to '{0}'": "Vincular a \"{0}\"",
+ "Markdown Language Server": "Servidor de lenguaje Markdown",
+ "Markdown link validation disabled": "Validación de vínculo de Markdown deshabilitada",
+ "Markdown link validation enabled": "Validación de vínculo de Markdown habilitada",
+ "Media": "Multimedia",
+ "More Information": "Más información",
+ "Never": "Nunca",
+ "No": "No",
+ "No header found: '{0}'": "No se encontró ningún encabezado: '{0}'",
+ "No link definition found: '{0}'": "No se encontró ninguna definición de vínculo: \"{0}\"",
+ "Not on link": "No está en el vínculo",
+ "Only load secure content": "Cargar solo el contenido seguro",
+ "Paste and update pasted links": "Pegar y actualizar vínculos pegados",
+ "Potentially unsafe or insecure content has been disabled in the Markdown preview. Change the Markdown preview security setting to allow insecure content or enable scripts": "Se ha deshabilitado el contenido potencialmente inseguro en la vista previa de Markdown. Para permitir el contenido inseguro o habilitar scripts, cambie la configuración de la vista previa de Markdown",
+ "Preview {0}": "Vista Previa {0}",
+ "Reference link '{0}'": "Vínculo de referencia \"{0}\"",
+ "Remove duplicate link definition": "Quitar definición de vínculo duplicado",
+ "Remove unused link definition": "Quitar definición de vínculo sin usar",
+ "Renaming is not supported here. Try renaming a header or link.": "Aquí no se admite el cambio de nombre. Intente cambiar el nombre de un encabezado o vínculo.",
+ "Select security settings for Markdown previews in this workspace": "Seleccione configuración de seguridad para las previsualizaciones de Markdown en esta área de trabajo",
+ "Some content has been disabled in this document": "Se ha deshabilitado parte del contenido de este documento",
+ "Strict": "Strict",
+ "Update Markdown links for '{0}'?": "¿Quiere actualizar los vínculos de Markdown para '{0}'?",
+ "Update Markdown links for the following {0} files?": "¿Quiere actualizar el vínculo de Markdown para los siguientes {0} archivos?",
+ "Yes": "Sí",
+ "[Preview] {0}": "[Vista previa] {0}",
+ "{0} cannot be found": "{0} no se puede encontrar"
+ },
+ "package": {
+ "configuration.copyIntoWorkspace.mediaFiles": "Intente copiar archivos de imagen y vídeo externos en el área de trabajo.",
+ "configuration.copyIntoWorkspace.never": "No copiar archivos externos en el área de trabajo.",
+ "configuration.markdown.copyFiles.destination": "Configura la ruta de acceso y el nombre de archivo de los archivos creados copiando/pegando o arrastrando y colocando. Se trata de un mapa de globos que coinciden con una ruta de acceso de documento de Markdown a la ruta de acceso de destino donde se debe crear el nuevo archivo.\r\n\r\nLa ruta de acceso de destino puede usar las siguientes variables:\r\n\r\n- \"${documentDirName}\": ruta de acceso del directorio primario absoluto del documento de Markdown, por ejemplo, \"/Users/me/myProject/docs\".\r\n- \"${documentRelativeDirName}\": ruta de acceso del directorio primario relativo del documento de Markdown, por ejemplo, \"docs\". Es lo mismo que \"${documentDirName}\" si el archivo no forma parte de un área de trabajo.\r\n- \"${documentFileName}\": el nombre de archivo completo del documento de Markdown, por ejemplo, \"README.md\".\r\n- \"${documentBaseName}\": el nombre base del documento de Markdown, por ejemplo, \"README\".\r\n- \"${documentExtName}\": extensión del documento de Markdown, por ejemplo, \"md\".\r\n- \"${documentFilePath}\": ruta de acceso absoluta del documento de Markdown; por ejemplo, \"/Users/me/myProject/docs/README.md\".\r\n- \"${documentRelativeFilePath}\": ruta de acceso relativa del documento de Markdown, por ejemplo, \"docs/README.md\". Es la misma que \"${documentFilePath}\" si el archivo no forma parte de un área de trabajo.\r\n- \"${documentWorkspaceFolder}\": carpeta del área de trabajo para el documento de Markdown, por ejemplo, \"/Users/me/myProject\". Es lo mismo que \"${documentDirName}\" si el archivo no forma parte de un área de trabajo.\r\n- \"${fileName}\": el nombre de archivo del archivo quitado, por ejemplo, \"image.png\".\r\n- \"${fileExtName}\": la extensión del archivo quitado, por ejemplo, \"png\".\r\n- \"${unixTime}\": la marca de tiempo de Unix actual en milisegundos.\r\n- \"${isoTime}\": la hora actual en formato ISO 8601, por ejemplo, \"2025-06-06T08:40:32.123Z\".",
+ "configuration.markdown.copyFiles.overwriteBehavior": "Controla si los archivos creados mediante colocar o pegar deben sobrescribir los archivos existentes.",
+ "configuration.markdown.copyFiles.overwriteBehavior.nameIncrementally": "Si ya existe un archivo con el mismo nombre, anexe un número al nombre de archivo, por ejemplo: \"image.png\" se convierte en \"image-1.png\".",
+ "configuration.markdown.copyFiles.overwriteBehavior.overwrite": "Sobrescribir si ya existe un archivo con el mismo nombre.",
+ "configuration.markdown.editor.drop.copyIntoWorkspace": "Controla si los archivos fuera del área de trabajo que se colocan en un editor de Markdown deben copiarse en el área de trabajo.\r\n\r\nUse \"#markdown.copyFiles.destination#\" para configurar dónde deben crearse los archivos copiados colocados.",
+ "configuration.markdown.editor.drop.enabled": "Habilite la colocación de archivos en un editor de Markdown manteniendo presionada la tecla Mayús. Requiere habilitar `#editor.dropIntoEditor.enabled#`.",
+ "configuration.markdown.editor.drop.enabled.always": "Insertar siempre vínculos de Markdown.",
+ "configuration.markdown.editor.drop.enabled.never": "No crear nunca vínculos de Markdown.",
+ "configuration.markdown.editor.drop.enabled.smart": "Cree vínculos de Markdown de forma inteligente y predeterminada cuando no se coloca en un bloque de código u otro elemento especial. Use el widget de colocación para cambiar entre pegar como texto sin formato o como vínculos de Markdown.",
+ "configuration.markdown.editor.filePaste.audioSnippet": "Fragmento de código usado al agregar audio a Markdown. Este fragmento de código puede usar las siguientes variables:\r\n- \"${src}\": la ruta de acceso resuelta del archivo de audio.\r\n- \"${title}\": título usado para el audio. Se creará automáticamente un marcador de posición de fragmento de código para esta variable.",
+ "configuration.markdown.editor.filePaste.copyIntoWorkspace": "Controla si los archivos fuera del área de trabajo que se pegan en un editor de Markdown deben copiarse en el área de trabajo.\r\n\r\nUse \"#markdown.copyFiles.destination#\" para configurar dónde deben crearse los archivos copiados.",
+ "configuration.markdown.editor.filePaste.enabled": "Al habilitar el pegado de archivos en un editor de Markdown para crear vínculos de Markdown. Requiere habilitar \"#editor.pasteAs.enabled#\".",
+ "configuration.markdown.editor.filePaste.enabled.always": "Insertar siempre vínculos de Markdown.",
+ "configuration.markdown.editor.filePaste.enabled.never": "No crear nunca vínculos de Markdown.",
+ "configuration.markdown.editor.filePaste.enabled.smart": "Crear vínculos de Markdown de forma inteligente y predeterminada cuando no se peguen en un bloque de código u otro elemento especial. Usar el widget de pegado para cambiar entre pegar como texto sin formato o como vínculos de Markdown.",
+ "configuration.markdown.editor.filePaste.videoSnippet": "Fragmento de código usado al agregar vídeos a Markdown. Este fragmento de código puede usar las siguientes variables:\r\n- \"${src}\": la ruta de acceso resuelta del archivo de vídeo.\r\n- \"${title}\": título usado para el vídeo. Se creará automáticamente un marcador de posición de fragmento de código para esta variable.",
+ "configuration.markdown.editor.pasteUrlAsFormattedLink.enabled": "Controla si los vínculos de Markdown se crean cuando las direcciones URL se pegan en un editor de Markdown. Requiere habilitar `#editor.pasteAs.enabled#`.",
+ "configuration.markdown.editor.updateLinksOnPaste.enabled": "Habilite o deshabilite una opción de pegado que actualice los vínculos y la referencia en el texto que se copia y pega entre los editores de Markdown.\r\n\r\nPara usar esta característica, después de pegar texto que contiene vínculos actualizables, simplemente haga clic en el widget Pegar y seleccione \"Pegar y actualizar vínculos pegados\".",
+ "configuration.markdown.links.openLocation.beside": "Abrir enlaces junto al editor activo.",
+ "configuration.markdown.links.openLocation.currentGroup": "Abra vínculos en el grupo de editor activo.",
+ "configuration.markdown.links.openLocation.description": "Controla dónde se deben abrir los vínculos de los archivos Markdown.",
+ "configuration.markdown.occurrencesHighlight.enabled": "Habilite el resaltado de las apariciones de vínculos en el documento actual.",
+ "configuration.markdown.preferredMdPathExtensionStyle": "Controla si se agregan extensiones de archivo (por ejemplo, `.md`) o no para vínculos a archivos Markdown. Esta configuración se usa cuando las rutas de acceso de archivo se agregan mediante herramientas como finalizaciones de rutas de acceso o cambios de nombre de archivo.",
+ "configuration.markdown.preferredMdPathExtensionStyle.auto": "Para las rutas de acceso existentes, intente mantener el estilo de extensión de archivo. Para nuevas rutas de acceso, agregue extensiones de archivo.",
+ "configuration.markdown.preferredMdPathExtensionStyle.includeExtension": "Prefiere incluir la extensión de archivo. Por ejemplo, las finalizaciones de ruta de acceso a un archivo denominado `file.md` insertarán `file.md`.",
+ "configuration.markdown.preferredMdPathExtensionStyle.removeExtension": "Prefiere quitar la extensión de archivo. Por ejemplo, las finalizaciones de ruta de acceso a un archivo denominado `file.md` insertarán `file` sin `.md`.",
+ "configuration.markdown.preview.openMarkdownLinks.description": "Controla cómo deben abrirse los vínculos hacia otros archivos Markdown en la vista previa de Markdown.",
+ "configuration.markdown.preview.openMarkdownLinks.inEditor": "Intenta abrir los vínculos en el editor.",
+ "configuration.markdown.preview.openMarkdownLinks.inPreview": "Intenta abrir los vínculos en la vista previa de Markdown.",
+ "configuration.markdown.suggest.paths.enabled.description": "Habilite las sugerencias de ruta de acceso mientras escribe vínculos en archivos Markdown.",
+ "configuration.markdown.suggest.paths.includeWorkspaceHeaderCompletions": "Habilite sugerencias para encabezados en otros archivos Markdown en el área de trabajo actual. Al aceptar una de estas sugerencias, se inserta la ruta de acceso completa al encabezado en ese archivo; por ejemplo: \"[link text](/path/to/file.md#header)\".",
+ "configuration.markdown.suggest.paths.includeWorkspaceHeaderCompletions.never": "Deshabilite las sugerencias de encabezado del área de trabajo.",
+ "configuration.markdown.suggest.paths.includeWorkspaceHeaderCompletions.onDoubleHash": "Habilite las sugerencias de encabezado del área de trabajo después de escribir \"##\" en una ruta de acceso, por ejemplo: \"[link text](##\".",
+ "configuration.markdown.suggest.paths.includeWorkspaceHeaderCompletions.onSingleOrDoubleHash": "Habilite las sugerencias de encabezado del área de trabajo después de escribir \"##\" o \"#\" en una ruta de acceso; por ejemplo: \"[link text](#\" o \"[link text](##\".",
+ "configuration.markdown.updateLinksOnFileMove.enableForDirectories": "Habilite la actualización de vínculos cuando se mueve o cambia el nombre de un directorio en el área de trabajo.",
+ "configuration.markdown.updateLinksOnFileMove.enabled": "Intente actualizar los vínculos de los archivos Markdown cuando se cambie el nombre o se mueva un archivo en el área de trabajo. Use `#markdown.updateLinksOnFileMove.include#` para configurar los archivos que desencadenan las actualizaciones de vínculos.",
+ "configuration.markdown.updateLinksOnFileMove.enabled.always": "Actualizar siempre los enlaces automáticamente.",
+ "configuration.markdown.updateLinksOnFileMove.enabled.never": "No intentar nunca actualizar el vínculo y no preguntar.",
+ "configuration.markdown.updateLinksOnFileMove.enabled.prompt": "Preguntar en cada movimiento de archivos.",
+ "configuration.markdown.updateLinksOnFileMove.include": "Patrones globales que especifican qué archivos desencadenan actualizaciones automáticas de vínculos. Vea \"#markdown.updateLinksOnFileMove.enabled#\" para más información sobre esta característica.",
+ "configuration.markdown.updateLinksOnFileMove.include.property": "Patrón global con el que se van a comparar las rutas de acceso de archivo. Establézcalo en true para habilitar el patrón.",
+ "configuration.markdown.validate.duplicateLinkDefinitions.description": "Valide las definiciones duplicadas en el archivo actual.",
+ "configuration.markdown.validate.enabled.description": "Habilite todos los informes de errores en los archivos Markdown.",
+ "configuration.markdown.validate.fileLinks.enabled.description": "Validar los enlaces a otros archivos en los archivos Markdown, por ejemplo \"[enlace](/path/to/file.md)\". Esto comprueba que los archivos de destino existen. Requiere la activación de \"#markdown.validate.enabled#\".",
+ "configuration.markdown.validate.fileLinks.markdownFragmentLinks.description": "Validar la parte del fragmento de los enlaces a las cabeceras de otros archivos en los archivos Markdown, por ejemplo: \"[enlace](/path/to/file.md#header)\". Hereda el valor de ajuste de \"#markdown.validate.fragmentLinks.enabled#\" por defecto.",
+ "configuration.markdown.validate.fragmentLinks.enabled.description": "Validar los enlaces de los fragmentos a los encabezados en el archivo Markdown actual, por ejemplo: \"[link](#header)\". Requiere activar \"#markdown.validate.enabled#\".",
+ "configuration.markdown.validate.ignoredLinks.description": "Configure vínculos que no deben validarse. Por ejemplo, agregar `/about` no validaría el vínculo `[about](/about)`, mientras que el valor global `/assets/**/*.svg` le permitirá omitir la validación de cualquier vínculo a archivos `.svg` en el directorio `assets`.",
+ "configuration.markdown.validate.referenceLinks.enabled.description": "Validar los vínculos de referencia en los archivos Markdown, por ejemplo: \"[link][ref]\". Requiere activar \"#markdown.validate.enabled#\".",
+ "configuration.markdown.validate.unusedLinkDefinitions.description": "Valide las definiciones de vínculo que no se usan en el archivo actual.",
+ "configuration.pasteUrlAsFormattedLink.always": "Insertar siempre vínculos de Markdown.",
+ "configuration.pasteUrlAsFormattedLink.never": "No crear nunca vínculos de Markdown.",
+ "configuration.pasteUrlAsFormattedLink.smart": "Crear vínculos de Markdown de forma inteligente y predeterminada cuando no se peguen en un bloque de código u otro elemento especial. Usar el widget de pegado para cambiar entre pegar como texto sin formato o como vínculos de Markdown.",
+ "configuration.pasteUrlAsFormattedLink.smartWithSelection": "Crear vínculos de Markdown de forma inteligente y predeterminada cuando haya seleccionado texto y no se peguen en un bloque de código u otro elemento especial. Usar el widget de pegado para cambiar entre pegar como texto sin formato o como vínculos de Markdown.",
+ "description": "Proporciona un potente soporte de lenguaje para archivos Markdown.",
+ "displayName": "Características del lenguaje Markdown",
+ "markdown.copyImage.title": "Copiar imagen",
+ "markdown.editor.insertImageFromWorkspace": "Insertar imagen desde el área de trabajo",
+ "markdown.editor.insertLinkFromWorkspace": "Insertar vínculo a archivo en el área de trabajo",
+ "markdown.findAllFileReferences": "Buscar referencias de archivo",
+ "markdown.openImage.title": "Abrir imagen",
+ "markdown.preview.breaks.desc": "Establece cómo se representan los saltos de línea en la vista previa de Markdown. Si se establece en `true`, se crea un ` ` para las nuevas líneas dentro de los párrafos.",
+ "markdown.preview.doubleClickToSwitchToEditor.desc": "Haga doble clic en la vista previa de Markdown para cambiar al editor.",
+ "markdown.preview.fontFamily.desc": "Controla la familia de fuentes que se usa en la vista previa de Markdown.",
+ "markdown.preview.fontSize.desc": "Controla el tamaño de fuente en píxeles que se usa en la vista previa de Markdown.",
+ "markdown.preview.lineHeight.desc": "Controla la altura de línea que se usa en la vista previa de Markdown. Este número es relativo al tamaño de fuente.",
+ "markdown.preview.linkify": "Convierta texto de tipo URL a vínculos en la vista previa de Markdown.",
+ "markdown.preview.markEditorSelection.desc": "Marca la selección del editor actual en la vista previa de Markdown.",
+ "markdown.preview.refresh.title": "Actualizar vista previa",
+ "markdown.preview.scrollEditorWithPreview.desc": "Al desplazarse en la vista previa de Markdown, se actualiza la vista del editor.",
+ "markdown.preview.scrollPreviewWithEditor.desc": "Al desplazarse en el editor de Markdown, se actualiza la vista de la previsualización.",
+ "markdown.preview.title": "Abrir vista previa",
+ "markdown.preview.toggleLock.title": "Cambiar fijación de la vista previa ",
+ "markdown.preview.typographer": "Habilita algunos embellecimientos de comillas y reemplazos independientes del idioma en la vista previa de Markdown.",
+ "markdown.previewSide.title": "Abrir vista previa en el lateral",
+ "markdown.server.log.desc": "Controla el nivel de registro del servidor de lenguaje Markdown.",
+ "markdown.showLockedPreviewToSide.title": "Abrir vista previa fija en el lateral",
+ "markdown.showPreviewSecuritySelector.title": "Cambiar configuración de seguridad de vista previa",
+ "markdown.showSource.title": "Mostrar origen",
+ "markdown.styles.dec": "Lista de direcciones URL o rutas de acceso locales a hojas de estilo CSS que se van a usar desde la vista previa de Markdown. Las rutas de acceso relativas se interpretan en relación con la carpeta abierta en el Explorador. Si no hay ninguna carpeta abierta, se interpretan en relación con la ubicación del archivo Markdown. Todo '\\' debe escribirse como '\\\\'.",
+ "markdown.trace.extension.desc": "Habilita el registro de depuración para las extensiones de Markdown. ",
+ "markdown.trace.server.desc": "Realiza un seguimiento de la comunicación entre VS Code y el servidor de lenguaje Markdown.",
+ "workspaceTrust": "Necesario para cargar los estilos configurados en el área de trabajo."
+ }
+ }
+}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-es/translations/extensions/vscode.markdown-math.i18n.json b/i18n/vscode-language-pack-es/translations/extensions/vscode.markdown-math.i18n.json
new file mode 100644
index 0000000000..11ae82807a
--- /dev/null
+++ b/i18n/vscode-language-pack-es/translations/extensions/vscode.markdown-math.i18n.json
@@ -0,0 +1,18 @@
+{
+ "": [
+ "--------------------------------------------------------------------------------------------",
+ "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."
+ ],
+ "version": "1.0.0",
+ "contents": {
+ "package": {
+ "config.markdown.math.enabled": "Habilite o deshabilite la representación matemática en la vista previa integrada de Markdown.",
+ "config.markdown.math.macros": "Colección de macros personalizadas. Cada macro es un par clave-valor en el que la clave es un nuevo nombre de comando y el valor es la expansión de la macro.",
+ "description": "Agrega compatibilidad matemática a Markdown en blocs de notas.",
+ "displayName": "Matemáticas de Markdown"
+ }
+ }
+}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-es/translations/extensions/vscode.markdown.i18n.json b/i18n/vscode-language-pack-es/translations/extensions/vscode.markdown.i18n.json
index 3f387e8142..b791bb9bf3 100644
--- a/i18n/vscode-language-pack-es/translations/extensions/vscode.markdown.i18n.json
+++ b/i18n/vscode-language-pack-es/translations/extensions/vscode.markdown.i18n.json
@@ -9,8 +9,8 @@
"version": "1.0.0",
"contents": {
"package": {
- "displayName": "Conceptos básicos del lenguaje Markdown",
- "description": "Proporciona fragmentos de código y resaltado de sintaxis para Markdown."
+ "description": "Proporciona fragmentos de código y resaltado de sintaxis para Markdown.",
+ "displayName": "Conceptos básicos del lenguaje Markdown"
}
}
}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-es/translations/extensions/vscode.media-preview.i18n.json b/i18n/vscode-language-pack-es/translations/extensions/vscode.media-preview.i18n.json
new file mode 100644
index 0000000000..65046400ac
--- /dev/null
+++ b/i18n/vscode-language-pack-es/translations/extensions/vscode.media-preview.i18n.json
@@ -0,0 +1,42 @@
+{
+ "": [
+ "--------------------------------------------------------------------------------------------",
+ "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."
+ ],
+ "version": "1.0.0",
+ "contents": {
+ "bundle": {
+ "An error occurred while loading the audio file.": "Se ha producido un error al cargar el archivo.",
+ "An error occurred while loading the image.": "Se ha producido un error al cargar la imagen.",
+ "An error occurred while loading the video file.": "Se ha producido un error al cargar el archivo de video.",
+ "Image Binary Size": "Tamaño binario de la imagen",
+ "Image Size": "Tamaño de la imagen",
+ "Image Zoom": "Zoom de imagen",
+ "Open file using VS Code's standard text/binary editor?": "¿Abrir archivo con el editor de texto/binario estándar de VS Code?",
+ "Select zoom level": "Seleccionar nivel de zoom",
+ "Whole Image": "Imagen completa",
+ "{0}B": "{0} B",
+ "{0}GB": "{0} GB",
+ "{0}KB": "{0} KB",
+ "{0}MB": "{0} MB",
+ "{0}TB": "{0} TB"
+ },
+ "package": {
+ "command.copyImage": "Copiar",
+ "command.reopenAsPreview": "Volver a abrir como vista previa de imagen",
+ "command.reopenAsText": "Volver a abrir como texto de origen",
+ "command.zoomIn": "Acercar",
+ "command.zoomOut": "Alejar",
+ "customEditor.audioPreview.displayName": "Vista previa de audio",
+ "customEditor.imagePreview.displayName": "Vista previa de la imagen",
+ "customEditor.videoPreview.displayName": "Vista previa del vídeo",
+ "description": "Proporciona vistas previas integradas de VS Code para imágenes, audio y vídeo",
+ "displayName": "Vista previa de medios",
+ "videoPreviewerAutoPlay": "Empiece a reproducir vídeos al silenciar automáticamente.",
+ "videoPreviewerLoop": "Repita los vídeos de nuevo automáticamente."
+ }
+ }
+}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-es/translations/extensions/vscode.merge-conflict.i18n.json b/i18n/vscode-language-pack-es/translations/extensions/vscode.merge-conflict.i18n.json
new file mode 100644
index 0000000000..25b62dbfbb
--- /dev/null
+++ b/i18n/vscode-language-pack-es/translations/extensions/vscode.merge-conflict.i18n.json
@@ -0,0 +1,49 @@
+{
+ "": [
+ "--------------------------------------------------------------------------------------------",
+ "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."
+ ],
+ "version": "1.0.0",
+ "contents": {
+ "bundle": {
+ "(Current Change)": "(Cambio actual)",
+ "(Incoming Change)": "(Cambio entrante)",
+ "Accept Both Changes": "Aceptar ambos cambios",
+ "Accept Current Change": "Aceptar cambio actual",
+ "Accept Incoming Change": "Aceptar cambio entrante",
+ "Compare Changes": "Comparar cambios",
+ "Editor cursor is not within a merge conflict": "El cursor de edición no se encuentra en un conflicto de fusión",
+ "Editor cursor is within the common ancestors block, please move it to either the \"current\" or \"incoming\" block": "El cursor del editor está dentro del bloque de ancestros comunes, por favor muévalo al bloque \"actual\" o al \"entrante\"",
+ "Editor cursor is within the merge conflict splitter, please move it to either the \"current\" or \"incoming\" block": "El cursor del editor está dentro del separador de conflictos de fusión, muévalo al bloque \"actual\" o al \"entrante\" ",
+ "No merge conflicts found in this file": "No se encontraron conflictos en este archivo",
+ "No other merge conflicts within this file": "No hay más conflictos en este archivo",
+ "{0}: Current Changes ↔ Incoming Changes": "{0}: Cambios actuales ↔ Cambios entrantes"
+ },
+ "package": {
+ "command.accept.all-both": "Aceptar ambos",
+ "command.accept.all-current": "Aceptar todo actual",
+ "command.accept.all-incoming": "Aceptar todos los entrantes",
+ "command.accept.both": "Aceptar ambos",
+ "command.accept.current": "Aceptar actuales",
+ "command.accept.incoming": "Aceptar entrantes",
+ "command.accept.selection": "Aceptar selección",
+ "command.category": "Fusionar conflicto",
+ "command.compare": "Comparar conflicto actual",
+ "command.next": "Siguiente conflicto",
+ "command.previous": "Conflicto anterior",
+ "config.autoNavigateNextConflictEnabled": "Indica si, después de resolver un conflicto de fusión mediante combinación, se va automáticamente al siguiente conflicto de este tipo.",
+ "config.codeLensEnabled": "Cree CodeLens para los bloques de conflictos de fusión mediante combinación en el editor.",
+ "config.decoratorsEnabled": "Cree elementos Decorator para los bloques de conflictos de fusión mediante combinación en el editor.",
+ "config.diffViewPosition": "Controla dónde se debe abrir la vista de diferencias al comparar los cambios en los conflictos de combinación.",
+ "config.diffViewPosition.below": "Abra la vista de diferencias debajo del grupo de editor actual.",
+ "config.diffViewPosition.beside": "Abra la vista de diferencias junto al grupo de editor actual.",
+ "config.diffViewPosition.current": "Abra la vista de diferencias en el grupo de editor actual.",
+ "config.title": "Fusionar conflicto",
+ "description": "Resaltado y comandos para conflictos de fusión insertada.",
+ "displayName": "Fusionar conflicto"
+ }
+ }
+}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-es/translations/extensions/vscode.mermaid-chat-features.i18n.json b/i18n/vscode-language-pack-es/translations/extensions/vscode.mermaid-chat-features.i18n.json
new file mode 100644
index 0000000000..162cd654f3
--- /dev/null
+++ b/i18n/vscode-language-pack-es/translations/extensions/vscode.mermaid-chat-features.i18n.json
@@ -0,0 +1,17 @@
+{
+ "": [
+ "--------------------------------------------------------------------------------------------",
+ "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."
+ ],
+ "version": "1.0.0",
+ "contents": {
+ "package": {
+ "config.enabled.description": "Habilitar una herramienta para la representación experimental de diagrama de Mermaid en las respuestas del chat.",
+ "description": "Agrega compatibilidad con el diagrama de Mermaid a los chats integrados.",
+ "displayName": "Características de chat de Mermaid"
+ }
+ }
+}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-es/translations/extensions/vscode.microsoft-authentication.i18n.json b/i18n/vscode-language-pack-es/translations/extensions/vscode.microsoft-authentication.i18n.json
new file mode 100644
index 0000000000..3c5e2a2a2c
--- /dev/null
+++ b/i18n/vscode-language-pack-es/translations/extensions/vscode.microsoft-authentication.i18n.json
@@ -0,0 +1,51 @@
+{
+ "": [
+ "--------------------------------------------------------------------------------------------",
+ "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."
+ ],
+ "version": "1.0.0",
+ "contents": {
+ "bundle": {
+ "Copy & Continue to Microsoft": "Copiar y continuar a Microsoft",
+ "Error validating custom environment setting: {0}": "Error al validar la configuración del entorno personalizado: {0}",
+ "Having trouble logging in? Would you like to try a different way? ({0})": "¿Tiene problemas para iniciar sesión? ¿Desea probar de otra manera? ({0})",
+ "Microsoft Account configuration has been changed.": "Se ha cambiado la configuración de la cuenta Microsoft.",
+ "Microsoft Authentication": "Autenticación de Microsoft",
+ "Microsoft Sovereign Cloud Authentication": "Autenticación de nube soberana de Microsoft",
+ "No": "No",
+ "Open [{0}]({0}) in a new tab and paste your one-time code: {1}/The [{0}]({0}) will be a url and the {1} will be a code, e.g. 123456{Locked=\"[{0}]({0})\"}": "Abra [{0}]({0}) en una pestaña nueva y pegue el código de un solo uso: {1}",
+ "Open settings": "Abrir configuración",
+ "Reload": "Recargar",
+ "Signing in to Microsoft...": "Iniciando sesión en Microsoft...",
+ "The environment `{0}` is not a valid environment.": "El entorno '{0}' no es un entorno válido.",
+ "To finish authenticating, navigate to Microsoft and paste in the above one-time code.": "Para finalizar la autenticación, vaya a Microsoft y pegue el código de un solo uso anterior.",
+ "Yes": "Sí",
+ "You have not yet finished authorizing this extension to use your Microsoft Account. Would you like to try a different way? ({0})": "Aún no ha terminado de autorizar esta extensión para usar su cuenta de Microsoft. ¿Desea probar de otra forma? ({0})",
+ "You must also specify a custom environment in order to use the custom environment auth provider.": "También debe especificar un entorno personalizado para poder usar el proveedor de autenticación del entorno personalizado.",
+ "Your Code: {0}/The {0} will be a code, e.g. 123-456": "Su código: {0}"
+ },
+ "package": {
+ "description": "Proveedor de autenticación de Microsoft",
+ "displayName": "Cuenta Microsoft",
+ "microsoft-authentication.implementation.description": "Implementación de autenticación que se va a usar para iniciar sesión con una cuenta de Microsoft.",
+ "microsoft-authentication.implementation.enumDescriptions.msal": "Use la Biblioteca de autenticación de Microsoft (MSAL) para iniciar sesión con una cuenta de Microsoft.",
+ "microsoft-authentication.implementation.enumDescriptions.msal-no-broker": "Use la Biblioteca de autenticación de Microsoft (MSAL) para iniciar sesión con una cuenta de Microsoft mediante un navegador. Esto es útil si tiene problemas con el agente nativo.",
+ "microsoft-sovereign-cloud.customEnvironment.activeDirectoryEndpointUrl.description": "El punto de conexión de Active Directory para la nube soberana personalizada.",
+ "microsoft-sovereign-cloud.customEnvironment.activeDirectoryResourceId.description": "El id. de recurso de Active Directory para la nube soberana personalizada.",
+ "microsoft-sovereign-cloud.customEnvironment.description": "Configuración personalizada de la nube soberana que se va a usar con el proveedor de autenticación de nube soberana de Microsoft. Esto junto con la configuración de `#microsoft-sovereign-cloud.environment#` en \"personalizado\" es necesario para usar esta característica.",
+ "microsoft-sovereign-cloud.customEnvironment.managementEndpointUrl.description": "Punto de conexión de administración de la nube soberana personalizada.",
+ "microsoft-sovereign-cloud.customEnvironment.name.description": "Nombre de la nube soberana personalizada.",
+ "microsoft-sovereign-cloud.customEnvironment.portalUrl.description": "Dirección URL del portal para la nube soberana personalizada.",
+ "microsoft-sovereign-cloud.customEnvironment.resourceManagerEndpointUrl.description": "Punto de conexión de Resource Manager de la nube soberana personalizada.",
+ "microsoft-sovereign-cloud.environment.description": "Nube soberana que se va a usar para la autenticación. Si selecciona \"personalizado\", también debe establecer la configuración de `#microsoft-sovereign-cloud.customEnvironment#`.",
+ "microsoft-sovereign-cloud.environment.enumDescriptions.AzureChinaCloud": "Azure China",
+ "microsoft-sovereign-cloud.environment.enumDescriptions.AzureUSGovernment": "Azure Gobierno de EE.UU.",
+ "microsoft-sovereign-cloud.environment.enumDescriptions.custom": "Una nube soberana de Microsoft personalizada",
+ "signIn": "Iniciar sesión",
+ "signOut": "Cerrar sesión"
+ }
+ }
+}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-es/translations/extensions/vscode.npm.i18n.json b/i18n/vscode-language-pack-es/translations/extensions/vscode.npm.i18n.json
new file mode 100644
index 0000000000..548c9782c2
--- /dev/null
+++ b/i18n/vscode-language-pack-es/translations/extensions/vscode.npm.i18n.json
@@ -0,0 +1,127 @@
+{
+ "": [
+ "--------------------------------------------------------------------------------------------",
+ "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."
+ ],
+ "version": "1.0.0",
+ "contents": {
+ "bundle": {
+ "Could not find a valid npm script at the selection.": "No se pudo encontrar un script npm válido en la selección.",
+ "Debug": "Depurar",
+ "Debug Script": "Script de depuración",
+ "Default package.json": "package.json predeterminado",
+ "Do not show again": "No volver a mostrar",
+ "Latest version: {0}": "Última versión: {0}",
+ "Latest version: {0} published {1}": "Versión más reciente: {0} publicada {1}",
+ "Learn more": "Más información",
+ "Matches the most recent major version (1.x.x)": "Coincide con la versión principal más reciente (1.x.x)",
+ "Matches the most recent minor version (1.2.x)": "Coincide con la versión secundaria más reciente (1.2.x)",
+ "No scripts found.": "No se han encontrado scripts.",
+ "Npm task detection: failed to parse the file {0}": "Detección de tareas de npm: no se pudo analizar el archivo {0}",
+ "Request to the NPM repository failed: {0}": "No se pudo ejecutar la solicitud del repositorio de NPM: {0}",
+ "Run Script": "Ejecutar script",
+ "Run the script as a task": "Ejecutar el script como una tarea",
+ "Runs the script under the debugger": "Ejecuta el script en el depurador.",
+ "The currently latest version of the package": "Última versión del paquete en este momento",
+ "The setting \"npm.autoDetect\" is \"off\".": "El ajuste \"npm.autoDetect\" está desactivado.",
+ "Using {0} as the preferred package manager. Found multiple lockfiles for {1}. To resolve this issue, delete the lockfiles that don't match your preferred package manager or change the setting \"npm.packageManager\" to a value other than \"auto\".": "Usando {0} como administrador de paquetes preferido. Se encontraron varios archivos de bloqueo para {1}. Para resolver este problema, elimine los archivos de bloqueo que no coincidan con su administrador de paquetes preferido o cambie la configuración de \"npm.packageManager\" a un valor distinto de \"auto\".",
+ "in {0}": "en {0}",
+ "now": "Ahora",
+ "{0} day": "{0} día",
+ "{0} day ago": "hace {0} día",
+ "{0} days": "{0} días",
+ "{0} days ago": "Hace {0} días",
+ "{0} hour": "{0} hora",
+ "{0} hour ago": "hace {0} hora",
+ "{0} hours": "{0} horas",
+ "{0} hours ago": "hace {0} horas",
+ "{0} hr": "{0} h",
+ "{0} hr ago": "hace {0} hora",
+ "{0} hrs": "{0} h",
+ "{0} hrs ago": "Hace {0} horas",
+ "{0} min": "{0} min",
+ "{0} min ago": "hace {0} minuto",
+ "{0} mins": "{0} minutos",
+ "{0} mins ago": "Hace {0} minutos",
+ "{0} minute": "{0} minuto",
+ "{0} minute ago": "hace {0} minuto",
+ "{0} minutes": "{0} minutos",
+ "{0} minutes ago": "hace {0} minutos",
+ "{0} mo": "{0} mes",
+ "{0} mo ago": "hace {0} mes",
+ "{0} month": "{0} mes",
+ "{0} month ago": "hace {0} mes",
+ "{0} months": "{0} meses",
+ "{0} months ago": "hace {0} meses",
+ "{0} mos": "{0} meses",
+ "{0} mos ago": "hace {0} meses",
+ "{0} sec": "{0} segundo",
+ "{0} sec ago": "hace {0} segundo",
+ "{0} second": "{0} segundo",
+ "{0} second ago": "hace {0} segundo",
+ "{0} seconds": "{0} segundos",
+ "{0} seconds ago": "hace {0} segundos",
+ "{0} secs": "{0} segundos",
+ "{0} secs ago": "Hace {0} segundos",
+ "{0} week": "{0} semana",
+ "{0} week ago": "hace {0} semana",
+ "{0} weeks": "{0} semanas",
+ "{0} weeks ago": "hace {0} semanas",
+ "{0} wk": "{0} semana",
+ "{0} wk ago": "hace {0} semana",
+ "{0} wks": "{0} semanas",
+ "{0} wks ago": "hace {0} semanas",
+ "{0} year": "{0} año",
+ "{0} year ago": "hace {0} año",
+ "{0} years": "{0} años",
+ "{0} years ago": "hace {0} años",
+ "{0} yr": "{0} año",
+ "{0} yr ago": "hace {0} año",
+ "{0} yrs": "{0} años",
+ "{0} yrs ago": "hace {0} años"
+ },
+ "package": {
+ "command.debug": "Depurar",
+ "command.openScript": "Abrir",
+ "command.packageManager": "Obtener el administrador de paquetes configurado",
+ "command.refresh": "Actualizar",
+ "command.run": "Ejecutar",
+ "command.runInstall": "Ejecutar instalación",
+ "command.runScriptFromFolder": "Ejecutar el script de NPM en la carpeta...",
+ "command.runSelectedScript": "Ejecutar script",
+ "config.npm.autoDetect": "Controla si los scripts npm deben detectarse automáticamente.",
+ "config.npm.enableRunFromFolder": "Habilite la ejecución de scripts NPM contenidos en una carpeta desde el menú contextual del Explorador.",
+ "config.npm.enableScriptExplorer": "Habilite una vista de explorador para scripts npm cuando no haya ningún archivo \"package.json\" de nivel superior.",
+ "config.npm.exclude": "Configura patrones globales para carpetas que deben excluirse de la detección automática de scripts. ",
+ "config.npm.fetchOnlinePackageInfo": "Recupere datos de https://registry.npmjs.org y https://registry.bower.io para proporcionar la finalización automática y la información sobre las características de desplazamiento de puntero en las dependencias de npm.",
+ "config.npm.packageManager": "El administrador de paquetes usado para instalar dependencias.",
+ "config.npm.packageManager.auto": "Detecta automáticamente el administrador de paquetes que se va a usar en función de los archivos de bloqueo y los administradores de paquetes instalados.",
+ "config.npm.packageManager.bun": "Use bun como administrador de paquetes.",
+ "config.npm.packageManager.npm": "Use npm como administrador de paquetes.",
+ "config.npm.packageManager.pnpm": "Use pnpm como administrador de paquetes.",
+ "config.npm.packageManager.yarn": "Use Yarn como administrador de paquetes.",
+ "config.npm.runSilent": "Ejecutar comandos de npm con la opción '--silent'",
+ "config.npm.scriptExplorerAction": "La acción de clic predeterminada utilizada en el explorador de scripts NPM: \"open\" o \"run\", el valor predeterminado es \"open\".",
+ "config.npm.scriptExplorerExclude": "Una matriz de expresiones regulares que indican qué scripts deben excluirse de la vista de Scripts NPM.",
+ "config.npm.scriptHover": "Mostrar al mantener el puntero con los comandos \"Ejecutar\" y \"Depurar\" para los scripts.",
+ "config.npm.scriptRunner": "Ejecutor de scripts usado para ejecutar scripts.",
+ "config.npm.scriptRunner.auto": "Detecta automáticamente el ejecutor de scripts que se va a usar en función de los archivos de bloqueo y los administradores de paquetes instalados.",
+ "config.npm.scriptRunner.bun": "Use bun como ejecutor de scripts.",
+ "config.npm.scriptRunner.node": "Use Node.js como ejecutor de scripts.",
+ "config.npm.scriptRunner.npm": "Use npm como ejecutor de scripts.",
+ "config.npm.scriptRunner.pnpm": "Use pnpm como ejecutor de scripts.",
+ "config.npm.scriptRunner.yarn": "Use Yarn como ejecutor de scripts.",
+ "description": "Extensión para agregar soporte a las tareas de secuencias de comandos NPM.",
+ "displayName": "Funcionalidad de Npm para VS Code",
+ "npm.parseError": "Detección de tareas de npm: no se pudo analizar el archivo {0}",
+ "taskdef.path": "La ruta de la carpeta del archivo package.json que proporciona la secuencia de comandos. Se puede omitir.",
+ "taskdef.script": "Script npm que debe personalizarse.",
+ "view.name": "Scripts Npm ",
+ "virtualWorkspaces": "La funcionalidad que requiere la ejecución del comando \"npm\" no está disponible en las áreas de trabajo virtuales.",
+ "workspaceTrust": "Esta extensión ejecuta tareas que requieren confianza para ser ejecutadas."
+ }
+ }
+}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-es/translations/extensions/vscode.objective-c.i18n.json b/i18n/vscode-language-pack-es/translations/extensions/vscode.objective-c.i18n.json
index 6e630171f8..4786a1158a 100644
--- a/i18n/vscode-language-pack-es/translations/extensions/vscode.objective-c.i18n.json
+++ b/i18n/vscode-language-pack-es/translations/extensions/vscode.objective-c.i18n.json
@@ -9,8 +9,8 @@
"version": "1.0.0",
"contents": {
"package": {
- "displayName": "Conceptos básicos del lenguaje Objective-C",
- "description": "Proporciona resaltado de sintaxis y correspondencia de corchetes en archivos de Objective-C."
+ "description": "Proporciona resaltado de sintaxis y correspondencia de corchetes en archivos de Objective-C.",
+ "displayName": "Conceptos básicos del lenguaje Objective-C"
}
}
}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-es/translations/extensions/vscode.perl.i18n.json b/i18n/vscode-language-pack-es/translations/extensions/vscode.perl.i18n.json
index 9e9c94e0f5..257f9ca621 100644
--- a/i18n/vscode-language-pack-es/translations/extensions/vscode.perl.i18n.json
+++ b/i18n/vscode-language-pack-es/translations/extensions/vscode.perl.i18n.json
@@ -9,8 +9,8 @@
"version": "1.0.0",
"contents": {
"package": {
- "displayName": "Conceptos básicos del lenguaje Perl",
- "description": "Proporciona resaltado de sintaxis y correspondencia de corchetes en archivos de Perl."
+ "description": "Proporciona resaltado de sintaxis y correspondencia de corchetes en archivos de Perl.",
+ "displayName": "Conceptos básicos del lenguaje Perl"
}
}
}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-es/translations/extensions/vscode.php-language-features.i18n.json b/i18n/vscode-language-pack-es/translations/extensions/vscode.php-language-features.i18n.json
new file mode 100644
index 0000000000..2693f0a927
--- /dev/null
+++ b/i18n/vscode-language-pack-es/translations/extensions/vscode.php-language-features.i18n.json
@@ -0,0 +1,31 @@
+{
+ "": [
+ "--------------------------------------------------------------------------------------------",
+ "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."
+ ],
+ "version": "1.0.0",
+ "contents": {
+ "bundle": {
+ "Cannot validate since a PHP installation could not be found. Use the setting 'php.validate.executablePath' to configure the PHP executable.": "No se puede validar porque no se ha encontrado una instalación de PHP. Utilice el ajuste \"php.validate.executablePath\" para configurar el ejecutable de PHP.",
+ "Cannot validate since no PHP executable is set. Use the setting 'php.validate.executablePath' to configure the PHP executable.": "No se puede validar porque no hay ningún ejecutable PHP establecido. Use el ajuste \"php.validate.executablePath\" para configurar el ejecutable de PHP.",
+ "Cannot validate since {0} is not a valid php executable. Use the setting 'php.validate.executablePath' to configure the PHP executable.": "No se puede validar porque {0} no es un ejecutable PHP válido. Use el ajuste \"php.validate.executablePath\" para configurar el ejecutable PHP.",
+ "Failed to run php using path: {0}. Reason is unknown.": "No se pudo ejecutar el archivo PHP con la ruta de acceso: {0}. Se desconoce el motivo.",
+ "Open Settings": "Abrir configuración"
+ },
+ "package": {
+ "command.untrustValidationExecutable": "No permitir el ejecutable de validación de PHP (como configuración de área de trabajo)",
+ "commands.categroy.php": "PHP",
+ "configuration.suggest.basic": "Controla si se habilitan las sugerencias del lenguaje PHP integradas. La asistencia sugiere variables y opciones globales de PHP.",
+ "configuration.title": "PHP",
+ "configuration.validate.enable": "Habilita o deshabilita la validación integrada de PHP.",
+ "configuration.validate.executablePath": "Señala al ejecutable PHP.",
+ "configuration.validate.run": "Indica si linter se ejecuta al guardar o al escribir.",
+ "description": "Proporciona un potente soporte de lenguaje para archivos PHP.",
+ "displayName": "Características del lenguaje PHP",
+ "workspaceTrust": "La extensión requiere la confianza del área de trabajo cuando el ajuste \"php.validate.executablePath\" cargará una versión de PHP en el área de trabajo."
+ }
+ }
+}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-es/translations/extensions/vscode.php.i18n.json b/i18n/vscode-language-pack-es/translations/extensions/vscode.php.i18n.json
index 9245fe625d..23a346e0fa 100644
--- a/i18n/vscode-language-pack-es/translations/extensions/vscode.php.i18n.json
+++ b/i18n/vscode-language-pack-es/translations/extensions/vscode.php.i18n.json
@@ -9,8 +9,8 @@
"version": "1.0.0",
"contents": {
"package": {
- "displayName": "Conceptos básicos del lenguaje PHP",
- "description": "Proporciona resaltado de sintaxis y correspondencia de corchetes en archivos PHP."
+ "description": "Proporciona resaltado de sintaxis y correspondencia de corchetes en archivos PHP.",
+ "displayName": "Conceptos básicos del lenguaje PHP"
}
}
}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-es/translations/extensions/vscode.powershell.i18n.json b/i18n/vscode-language-pack-es/translations/extensions/vscode.powershell.i18n.json
index f59ad94243..c0e9519e94 100644
--- a/i18n/vscode-language-pack-es/translations/extensions/vscode.powershell.i18n.json
+++ b/i18n/vscode-language-pack-es/translations/extensions/vscode.powershell.i18n.json
@@ -9,8 +9,8 @@
"version": "1.0.0",
"contents": {
"package": {
- "displayName": "Conceptos básicos del lenguaje Powershell",
- "description": "Proporciona fragmentos de código, resaltado de sintaxis, correspondencia de corchetes y plegado de código en archivos de Powershell."
+ "description": "Proporciona fragmentos de código, resaltado de sintaxis, correspondencia de corchetes y plegado de código en archivos de Powershell.",
+ "displayName": "Conceptos básicos del lenguaje Powershell"
}
}
}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-es/translations/extensions/vscode.prompt.i18n.json b/i18n/vscode-language-pack-es/translations/extensions/vscode.prompt.i18n.json
new file mode 100644
index 0000000000..be4010604b
--- /dev/null
+++ b/i18n/vscode-language-pack-es/translations/extensions/vscode.prompt.i18n.json
@@ -0,0 +1,16 @@
+{
+ "": [
+ "--------------------------------------------------------------------------------------------",
+ "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."
+ ],
+ "version": "1.0.0",
+ "contents": {
+ "package": {
+ "description": "Resaltado de sintaxis para los documentos de Aviso e Instrucciones.",
+ "displayName": "Conceptos Básicos del lenguaje del Símbolo del sistema"
+ }
+ }
+}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-es/translations/extensions/vscode.pug.i18n.json b/i18n/vscode-language-pack-es/translations/extensions/vscode.pug.i18n.json
index 6545e13225..7520e1a2b9 100644
--- a/i18n/vscode-language-pack-es/translations/extensions/vscode.pug.i18n.json
+++ b/i18n/vscode-language-pack-es/translations/extensions/vscode.pug.i18n.json
@@ -9,8 +9,8 @@
"version": "1.0.0",
"contents": {
"package": {
- "displayName": "Conceptos básicos del lenguaje Pug",
- "description": "Proporciona resaltado de sintaxis y correspondencia de corchetes en archivos de Pug."
+ "description": "Proporciona resaltado de sintaxis y correspondencia de corchetes en archivos de Pug.",
+ "displayName": "Conceptos básicos del lenguaje Pug"
}
}
}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-es/translations/extensions/python.i18n.json b/i18n/vscode-language-pack-es/translations/extensions/vscode.python.i18n.json
similarity index 100%
rename from i18n/vscode-language-pack-es/translations/extensions/python.i18n.json
rename to i18n/vscode-language-pack-es/translations/extensions/vscode.python.i18n.json
diff --git a/i18n/vscode-language-pack-es/translations/extensions/vscode.r.i18n.json b/i18n/vscode-language-pack-es/translations/extensions/vscode.r.i18n.json
index ac423fff2d..092a06422f 100644
--- a/i18n/vscode-language-pack-es/translations/extensions/vscode.r.i18n.json
+++ b/i18n/vscode-language-pack-es/translations/extensions/vscode.r.i18n.json
@@ -9,8 +9,8 @@
"version": "1.0.0",
"contents": {
"package": {
- "displayName": "Conceptos básicos del lenguaje R",
- "description": "Proporciona resaltado de sintaxis y correspondencia de corchetes en archivos de R."
+ "description": "Proporciona resaltado de sintaxis y correspondencia de corchetes en archivos de R.",
+ "displayName": "Conceptos básicos del lenguaje R"
}
}
}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-es/translations/extensions/vscode.razor.i18n.json b/i18n/vscode-language-pack-es/translations/extensions/vscode.razor.i18n.json
index 87b786acc2..829827961b 100644
--- a/i18n/vscode-language-pack-es/translations/extensions/vscode.razor.i18n.json
+++ b/i18n/vscode-language-pack-es/translations/extensions/vscode.razor.i18n.json
@@ -9,8 +9,8 @@
"version": "1.0.0",
"contents": {
"package": {
- "displayName": "Conceptos básicos del lenguaje Razor",
- "description": "Proporciona resaltado de sintaxis, correspondencia de corchetes y plegado de código en archivos de Razor."
+ "description": "Proporciona resaltado de sintaxis, correspondencia de corchetes y plegado de código en archivos de Razor.",
+ "displayName": "Conceptos básicos del lenguaje Razor"
}
}
}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-es/translations/extensions/vscode.references-view.i18n.json b/i18n/vscode-language-pack-es/translations/extensions/vscode.references-view.i18n.json
new file mode 100644
index 0000000000..be8e60edd8
--- /dev/null
+++ b/i18n/vscode-language-pack-es/translations/extensions/vscode.references-view.i18n.json
@@ -0,0 +1,61 @@
+{
+ "": [
+ "--------------------------------------------------------------------------------------------",
+ "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."
+ ],
+ "version": "1.0.0",
+ "contents": {
+ "bundle": {
+ "Callers Of": "Autores de llamada de",
+ "Calls From": "Llamadas de",
+ "No results.": "Sin resultados.",
+ "No results. Try running a previous search again:": "No hay resultados. Intente ejecutar de nuevo una búsqueda anterior:",
+ "Open Call": "Abrir llamada",
+ "Open Reference": "Abrir referencia",
+ "Open Type": "Abrir tipo",
+ "References": "Referencias",
+ "Rerun": "Volver a ejecutar",
+ "Select previous reference search": "Seleccionar búsqueda de referencia anterior",
+ "Subtypes Of": "Subtipos de",
+ "Supertypes Of": "Supertipos de",
+ "{0} result in {1} file": "{0} resultado en {1} archivo",
+ "{0} result in {1} files": "{0} resultado en {1} archivos",
+ "{0} results in {1} file": "{0} resultados en {1} archivo",
+ "{0} results in {1} files": "{0} resultados en {1} archivos"
+ },
+ "package": {
+ "cmd.category.references": "Referencias",
+ "cmd.references-view.clear": "Borrar",
+ "cmd.references-view.clearHistory": "Borrar historial",
+ "cmd.references-view.copy": "Copiar",
+ "cmd.references-view.copyAll": "Copiar todo",
+ "cmd.references-view.copyPath": "Copiar ruta de acceso",
+ "cmd.references-view.findImplementations": "Buscar todas las implementaciones",
+ "cmd.references-view.findReferences": "Buscar todas las referencias",
+ "cmd.references-view.next": "Ir a la referencia siguiente",
+ "cmd.references-view.pickFromHistory": "Mostrar historial",
+ "cmd.references-view.prev": "Ir a referencia anterior",
+ "cmd.references-view.refind": "Volver a ejecutar",
+ "cmd.references-view.refresh": "Actualizar",
+ "cmd.references-view.removeCallItem": "Descartar",
+ "cmd.references-view.removeReferenceItem": "Descartar",
+ "cmd.references-view.removeTypeItem": "Descartar",
+ "cmd.references-view.showCallHierarchy": "Mostrar jerarquía de llamadas",
+ "cmd.references-view.showIncomingCalls": "Mostrar llamadas entrantes",
+ "cmd.references-view.showOutgoingCalls": "Mostrar llamadas salientes",
+ "cmd.references-view.showSubtypes": "Mostrar subtipos",
+ "cmd.references-view.showSupertypes": "Mostrar supertipos",
+ "cmd.references-view.showTypeHierarchy": "Mostrar jerarquía de tipos",
+ "config.references.preferredLocation": "Controla si se invoca \"Ver referencias\" o \"Buscar referencias\" al seleccionar las referencias de CodeLens.",
+ "config.references.preferredLocation.peek": "Mostrar referencias en el editor de inspección.",
+ "config.references.preferredLocation.view": "Mostrar referencias en vista independiente.",
+ "container.title": "Referencias",
+ "description": "Hacer referencia a los resultados de la búsqueda como una vista independiente y estable en la barra lateral",
+ "displayName": "Vista de búsqueda de referencia",
+ "view.title": "Resultados de búsqueda de referencia"
+ }
+ }
+}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-es/translations/extensions/restructuredtext.i18n.json b/i18n/vscode-language-pack-es/translations/extensions/vscode.restructuredtext.i18n.json
similarity index 100%
rename from i18n/vscode-language-pack-es/translations/extensions/restructuredtext.i18n.json
rename to i18n/vscode-language-pack-es/translations/extensions/vscode.restructuredtext.i18n.json
diff --git a/i18n/vscode-language-pack-es/translations/extensions/vscode.ruby.i18n.json b/i18n/vscode-language-pack-es/translations/extensions/vscode.ruby.i18n.json
index 4bde8395f8..bf4ad733b6 100644
--- a/i18n/vscode-language-pack-es/translations/extensions/vscode.ruby.i18n.json
+++ b/i18n/vscode-language-pack-es/translations/extensions/vscode.ruby.i18n.json
@@ -9,8 +9,8 @@
"version": "1.0.0",
"contents": {
"package": {
- "displayName": "Conceptos básicos del lenguaje Ruby",
- "description": "Proporciona resaltado de sintaxis y correspondencia de corchetes en archivos de Ruby."
+ "description": "Proporciona resaltado de sintaxis y correspondencia de corchetes en archivos de Ruby.",
+ "displayName": "Conceptos básicos del lenguaje Ruby"
}
}
}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-es/translations/extensions/vscode.rust.i18n.json b/i18n/vscode-language-pack-es/translations/extensions/vscode.rust.i18n.json
index 415033900f..7a23ab0ce0 100644
--- a/i18n/vscode-language-pack-es/translations/extensions/vscode.rust.i18n.json
+++ b/i18n/vscode-language-pack-es/translations/extensions/vscode.rust.i18n.json
@@ -9,8 +9,8 @@
"version": "1.0.0",
"contents": {
"package": {
- "displayName": "Conceptos básicos del lenguaje Rust",
- "description": "Proporciona resaltado de sintaxis y correspondencia de corchetes en archivos de Rust."
+ "description": "Proporciona resaltado de sintaxis y correspondencia de corchetes en archivos de Rust.",
+ "displayName": "Conceptos básicos del lenguaje Rust"
}
}
}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-es/translations/extensions/vscode.scss.i18n.json b/i18n/vscode-language-pack-es/translations/extensions/vscode.scss.i18n.json
index 04959c12d9..659d1aa395 100644
--- a/i18n/vscode-language-pack-es/translations/extensions/vscode.scss.i18n.json
+++ b/i18n/vscode-language-pack-es/translations/extensions/vscode.scss.i18n.json
@@ -9,8 +9,8 @@
"version": "1.0.0",
"contents": {
"package": {
- "displayName": "Conceptos básicos del lenguaje SCSS",
- "description": "Proporciona resaltado de sintaxis, correspondencia de corchetes y plegado de código en archivos de SCSS."
+ "description": "Proporciona resaltado de sintaxis, correspondencia de corchetes y plegado de código en archivos de SCSS.",
+ "displayName": "Conceptos básicos del lenguaje SCSS"
}
}
}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-es/translations/extensions/search-result.i18n.json b/i18n/vscode-language-pack-es/translations/extensions/vscode.search-result.i18n.json
similarity index 100%
rename from i18n/vscode-language-pack-es/translations/extensions/search-result.i18n.json
rename to i18n/vscode-language-pack-es/translations/extensions/vscode.search-result.i18n.json
diff --git a/i18n/vscode-language-pack-es/translations/extensions/vscode.shaderlab.i18n.json b/i18n/vscode-language-pack-es/translations/extensions/vscode.shaderlab.i18n.json
index 7a578e91fe..78b8ca9a46 100644
--- a/i18n/vscode-language-pack-es/translations/extensions/vscode.shaderlab.i18n.json
+++ b/i18n/vscode-language-pack-es/translations/extensions/vscode.shaderlab.i18n.json
@@ -9,8 +9,8 @@
"version": "1.0.0",
"contents": {
"package": {
- "displayName": "Conceptos básicos del lenguaje Shaderlab",
- "description": "Proporciona resaltado de sintaxis y correspondencia de corchetes en archivos de Shaderlab."
+ "description": "Proporciona resaltado de sintaxis y correspondencia de corchetes en archivos de Shaderlab.",
+ "displayName": "Conceptos básicos del lenguaje Shaderlab"
}
}
}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-es/translations/extensions/vscode.shellscript.i18n.json b/i18n/vscode-language-pack-es/translations/extensions/vscode.shellscript.i18n.json
index edb80a1506..7b50a7d2f9 100644
--- a/i18n/vscode-language-pack-es/translations/extensions/vscode.shellscript.i18n.json
+++ b/i18n/vscode-language-pack-es/translations/extensions/vscode.shellscript.i18n.json
@@ -9,8 +9,8 @@
"version": "1.0.0",
"contents": {
"package": {
- "displayName": "Conceptos básicos del lenguaje Shell Script",
- "description": "Proporciona resaltado de sintaxis y correspondencia de corchetes en archivos de script de shell."
+ "description": "Proporciona resaltado de sintaxis y correspondencia de corchetes en archivos de script de shell.",
+ "displayName": "Conceptos básicos del lenguaje Shell Script"
}
}
}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-es/translations/extensions/vscode.simple-browser.i18n.json b/i18n/vscode-language-pack-es/translations/extensions/vscode.simple-browser.i18n.json
new file mode 100644
index 0000000000..483daefb9c
--- /dev/null
+++ b/i18n/vscode-language-pack-es/translations/extensions/vscode.simple-browser.i18n.json
@@ -0,0 +1,28 @@
+{
+ "": [
+ "--------------------------------------------------------------------------------------------",
+ "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."
+ ],
+ "version": "1.0.0",
+ "contents": {
+ "bundle": {
+ "Back": "Atrás",
+ "Enter url to visit": "Escribir la dirección URL que se va a visitar",
+ "Focus Lock": "Bloqueo del foco",
+ "Forward": "Reenviar",
+ "Open in browser": "Abrir en el explorador",
+ "Open in simple browser": "Abrir en el explorador simple",
+ "Reload": "Volver a cargar",
+ "Simple Browser": "Explorador simple",
+ "https://example.com": "https://example.com"
+ },
+ "package": {
+ "configuration.focusLockIndicator.enabled.description": "Habilita o deshabilita el indicador flotante que se muestra cuando se tiene el foco en el explorador sencillo.",
+ "description": "Vista web integrada muy básica para mostrar contenido web.",
+ "displayName": "Explorador simple"
+ }
+ }
+}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-es/translations/extensions/vscode.sql.i18n.json b/i18n/vscode-language-pack-es/translations/extensions/vscode.sql.i18n.json
index 9f7ee68a9d..9f0318ba13 100644
--- a/i18n/vscode-language-pack-es/translations/extensions/vscode.sql.i18n.json
+++ b/i18n/vscode-language-pack-es/translations/extensions/vscode.sql.i18n.json
@@ -9,8 +9,8 @@
"version": "1.0.0",
"contents": {
"package": {
- "displayName": "Conceptos básicos del lenguaje SQL",
- "description": "Proporciona resaltado de sintaxis y correspondencia de corchetes en archivos de SQL."
+ "description": "Proporciona resaltado de sintaxis y correspondencia de corchetes en archivos de SQL.",
+ "displayName": "Conceptos básicos del lenguaje SQL"
}
}
}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-es/translations/extensions/vscode.swift.i18n.json b/i18n/vscode-language-pack-es/translations/extensions/vscode.swift.i18n.json
index 95d50af8d6..036003e1ad 100644
--- a/i18n/vscode-language-pack-es/translations/extensions/vscode.swift.i18n.json
+++ b/i18n/vscode-language-pack-es/translations/extensions/vscode.swift.i18n.json
@@ -9,8 +9,8 @@
"version": "1.0.0",
"contents": {
"package": {
- "displayName": "Conceptos básicos del lenguaje Swift",
- "description": "Proporciona fragmentos de código, resaltado de sintaxis y correspondencia de corchetes en archivos de Swift."
+ "description": "Proporciona fragmentos de código, resaltado de sintaxis y correspondencia de corchetes en archivos de Swift.",
+ "displayName": "Conceptos básicos del lenguaje Swift"
}
}
}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-es/translations/extensions/vscode.terminal-suggest.i18n.json b/i18n/vscode-language-pack-es/translations/extensions/vscode.terminal-suggest.i18n.json
new file mode 100644
index 0000000000..09153f8106
--- /dev/null
+++ b/i18n/vscode-language-pack-es/translations/extensions/vscode.terminal-suggest.i18n.json
@@ -0,0 +1,18 @@
+{
+ "": [
+ "--------------------------------------------------------------------------------------------",
+ "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."
+ ],
+ "version": "1.0.0",
+ "contents": {
+ "package": {
+ "description": "Extensión para agregar finalizaciones de terminales para terminales zsh, bash y fish.",
+ "displayName": "Sugerencia de terminal para VS Code",
+ "terminal.integrated.suggest.clearCachedGlobals": "Borrar sugerencias de variables globales en caché",
+ "view.name": "Sugerencia de terminal"
+ }
+ }
+}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-es/translations/extensions/vscode.theme-abyss.i18n.json b/i18n/vscode-language-pack-es/translations/extensions/vscode.theme-abyss.i18n.json
index 88b46c502d..4cccbfe53e 100644
--- a/i18n/vscode-language-pack-es/translations/extensions/vscode.theme-abyss.i18n.json
+++ b/i18n/vscode-language-pack-es/translations/extensions/vscode.theme-abyss.i18n.json
@@ -9,8 +9,8 @@
"version": "1.0.0",
"contents": {
"package": {
- "displayName": "Tema Abyss",
"description": "Tema Abyss para Visual Studio Code",
+ "displayName": "Tema Abyss",
"themeLabel": "Abyss"
}
}
diff --git a/i18n/vscode-language-pack-es/translations/extensions/vscode.theme-defaults.i18n.json b/i18n/vscode-language-pack-es/translations/extensions/vscode.theme-defaults.i18n.json
index b9e56de8dc..78f8f6248a 100644
--- a/i18n/vscode-language-pack-es/translations/extensions/vscode.theme-defaults.i18n.json
+++ b/i18n/vscode-language-pack-es/translations/extensions/vscode.theme-defaults.i18n.json
@@ -9,13 +9,16 @@
"version": "1.0.0",
"contents": {
"package": {
- "displayName": "Temas por defecto",
- "description": "Temas claro y oscuro predeterminados de Visual Studio",
- "darkPlusColorThemeLabel": "Oscuro+ (oscuro predeterminado)",
- "lightPlusColorThemeLabel": "Claro+ (claro predeterminado)",
"darkColorThemeLabel": "Oscuro (Visual Studio)",
+ "darkModernThemeLabel": "Moderno oscuro",
+ "darkPlusColorThemeLabel": "Oscuro+",
+ "description": "Temas claro y oscuro predeterminados de Visual Studio",
+ "displayName": "Temas por defecto",
+ "hcColorThemeLabel": "Contraste alto oscuro",
"lightColorThemeLabel": "Claro (Visual Studio)",
- "hcColorThemeLabel": "Contraste alto",
+ "lightHcColorThemeLabel": "Contraste alto claro",
+ "lightModernThemeLabel": "Moderno claro",
+ "lightPlusColorThemeLabel": "Claro+",
"minimalIconThemeLabel": "Mínimo (Visual Studio Code)"
}
}
diff --git a/i18n/vscode-language-pack-es/translations/extensions/vscode.theme-kimbie-dark.i18n.json b/i18n/vscode-language-pack-es/translations/extensions/vscode.theme-kimbie-dark.i18n.json
index cfbb5ae9dd..6c5b8a3742 100644
--- a/i18n/vscode-language-pack-es/translations/extensions/vscode.theme-kimbie-dark.i18n.json
+++ b/i18n/vscode-language-pack-es/translations/extensions/vscode.theme-kimbie-dark.i18n.json
@@ -9,8 +9,8 @@
"version": "1.0.0",
"contents": {
"package": {
- "displayName": "Tema Kimbie Oscuro",
"description": "Tema Kinbie Dark para Visual Studio Code",
+ "displayName": "Tema Kimbie Oscuro",
"themeLabel": "Kimbie oscuro"
}
}
diff --git a/i18n/vscode-language-pack-es/translations/extensions/vscode.theme-monokai-dimmed.i18n.json b/i18n/vscode-language-pack-es/translations/extensions/vscode.theme-monokai-dimmed.i18n.json
index e740b82945..1b99d1f276 100644
--- a/i18n/vscode-language-pack-es/translations/extensions/vscode.theme-monokai-dimmed.i18n.json
+++ b/i18n/vscode-language-pack-es/translations/extensions/vscode.theme-monokai-dimmed.i18n.json
@@ -9,8 +9,8 @@
"version": "1.0.0",
"contents": {
"package": {
- "displayName": "Tema Monokai atenuado",
"description": "Tema atenuado Monokai para Visual Studio Code",
+ "displayName": "Tema Monokai atenuado",
"themeLabel": "Monokai atenuado"
}
}
diff --git a/i18n/vscode-language-pack-es/translations/extensions/vscode.theme-monokai.i18n.json b/i18n/vscode-language-pack-es/translations/extensions/vscode.theme-monokai.i18n.json
index a918b4609c..5bd83dd32f 100644
--- a/i18n/vscode-language-pack-es/translations/extensions/vscode.theme-monokai.i18n.json
+++ b/i18n/vscode-language-pack-es/translations/extensions/vscode.theme-monokai.i18n.json
@@ -9,8 +9,8 @@
"version": "1.0.0",
"contents": {
"package": {
- "displayName": "Tema Monokai",
"description": "Tema Monokai para Visual Studio Code",
+ "displayName": "Tema Monokai",
"themeLabel": "Monokai"
}
}
diff --git a/i18n/vscode-language-pack-es/translations/extensions/vscode.theme-quietlight.i18n.json b/i18n/vscode-language-pack-es/translations/extensions/vscode.theme-quietlight.i18n.json
index 1638fd4950..4b2aad245d 100644
--- a/i18n/vscode-language-pack-es/translations/extensions/vscode.theme-quietlight.i18n.json
+++ b/i18n/vscode-language-pack-es/translations/extensions/vscode.theme-quietlight.i18n.json
@@ -9,8 +9,8 @@
"version": "1.0.0",
"contents": {
"package": {
- "displayName": "Tema Quiet Light",
"description": "Tema Quiet Light para Visual Studio Code",
+ "displayName": "Tema Quiet Light",
"themeLabel": "Quiet claro"
}
}
diff --git a/i18n/vscode-language-pack-es/translations/extensions/vscode.theme-red.i18n.json b/i18n/vscode-language-pack-es/translations/extensions/vscode.theme-red.i18n.json
index 4d2c9731dd..55e7f0b42a 100644
--- a/i18n/vscode-language-pack-es/translations/extensions/vscode.theme-red.i18n.json
+++ b/i18n/vscode-language-pack-es/translations/extensions/vscode.theme-red.i18n.json
@@ -9,8 +9,8 @@
"version": "1.0.0",
"contents": {
"package": {
- "displayName": "Tema rojo",
"description": "Tema rojo para Visual Studio Code",
+ "displayName": "Tema rojo",
"themeLabel": "Rojo"
}
}
diff --git a/i18n/vscode-language-pack-es/translations/extensions/vscode.theme-solarized-dark.i18n.json b/i18n/vscode-language-pack-es/translations/extensions/vscode.theme-solarized-dark.i18n.json
index dcc4cf5760..68ca9010c8 100644
--- a/i18n/vscode-language-pack-es/translations/extensions/vscode.theme-solarized-dark.i18n.json
+++ b/i18n/vscode-language-pack-es/translations/extensions/vscode.theme-solarized-dark.i18n.json
@@ -9,8 +9,8 @@
"version": "1.0.0",
"contents": {
"package": {
- "displayName": "Tema oscuro Solarized ",
"description": "Tema oscuro Solarized para Visual Studio Code",
+ "displayName": "Tema oscuro Solarized ",
"themeLabel": "Oscuro Solarized "
}
}
diff --git a/i18n/vscode-language-pack-es/translations/extensions/vscode.theme-solarized-light.i18n.json b/i18n/vscode-language-pack-es/translations/extensions/vscode.theme-solarized-light.i18n.json
index 7ba3712d5f..45d9d441f1 100644
--- a/i18n/vscode-language-pack-es/translations/extensions/vscode.theme-solarized-light.i18n.json
+++ b/i18n/vscode-language-pack-es/translations/extensions/vscode.theme-solarized-light.i18n.json
@@ -9,8 +9,8 @@
"version": "1.0.0",
"contents": {
"package": {
- "displayName": "Tema claro Solarized ",
"description": "Tema de luz solarizada para Visual Studio Code",
+ "displayName": "Tema claro Solarized ",
"themeLabel": "Claro Solarized "
}
}
diff --git a/i18n/vscode-language-pack-es/translations/extensions/vscode.theme-tomorrow-night-blue.i18n.json b/i18n/vscode-language-pack-es/translations/extensions/vscode.theme-tomorrow-night-blue.i18n.json
index 9746333387..4ec0bee65a 100644
--- a/i18n/vscode-language-pack-es/translations/extensions/vscode.theme-tomorrow-night-blue.i18n.json
+++ b/i18n/vscode-language-pack-es/translations/extensions/vscode.theme-tomorrow-night-blue.i18n.json
@@ -9,8 +9,8 @@
"version": "1.0.0",
"contents": {
"package": {
- "displayName": "Tema Tomorrow Night Blue",
"description": "Tema Tomorrow Night Blue para Visual Studio Code",
+ "displayName": "Tema Tomorrow Night Blue",
"themeLabel": "Tomorrow Night Blue"
}
}
diff --git a/i18n/vscode-language-pack-es/translations/extensions/vscode.tunnel-forwarding.i18n.json b/i18n/vscode-language-pack-es/translations/extensions/vscode.tunnel-forwarding.i18n.json
new file mode 100644
index 0000000000..36475303b6
--- /dev/null
+++ b/i18n/vscode-language-pack-es/translations/extensions/vscode.tunnel-forwarding.i18n.json
@@ -0,0 +1,27 @@
+{
+ "": [
+ "--------------------------------------------------------------------------------------------",
+ "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."
+ ],
+ "version": "1.0.0",
+ "contents": {
+ "bundle": {
+ "Continue": "Continuar",
+ "Don't show again": "No volver a mostrar",
+ "Port Forwarding": "Reenvío de puertos",
+ "Private": "Privado",
+ "Public": "Público",
+ "You're about to create a publicly forwarded port. Anyone on the internet will be able to connect to the service listening on port {0}. You should only proceed if this service is secure and non-sensitive.": "Está a punto de crear un puerto reenviado públicamente. Cualquier persona en Internet podrá conectarse a la escucha del servicio en el puerto {0}. Solo debe continuar si este servicio es seguro y no confidencial."
+ },
+ "package": {
+ "category": "Reenvío de puertos",
+ "command.restart": "Reiniciar sistema de reenvío",
+ "command.showLog": "Mostrar registro",
+ "description": "Permite el acceso a los puertos locales de reenvío a través de Internet.",
+ "displayName": "Reenvío de puerto de túnel local"
+ }
+ }
+}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-es/translations/extensions/vscode.typescript-language-features.i18n.json b/i18n/vscode-language-pack-es/translations/extensions/vscode.typescript-language-features.i18n.json
new file mode 100644
index 0000000000..31694be5ab
--- /dev/null
+++ b/i18n/vscode-language-pack-es/translations/extensions/vscode.typescript-language-features.i18n.json
@@ -0,0 +1,367 @@
+{
+ "": [
+ "--------------------------------------------------------------------------------------------",
+ "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."
+ ],
+ "version": "1.0.0",
+ "contents": {
+ "bundle": {
+ "(loading...)/Prefix displayed for hover entries while the server is still loading": "(cargando...)",
+ "...1 additional file not shown": "...1 archivo más que no se muestra",
+ "...{0} additional files not shown": "...{0} archivos más que no se muestran",
+ "1 implementation": "1 implementación",
+ "1 reference": "1 referencia",
+ "Acquiring typings definitions for IntelliSense./Typings refers to the *.d.ts typings files that power our IntelliSense. It should not be localized": "Adquiriendo definiciones de typings para IntelliSense.",
+ "Acquiring typings.../Typings refers to the *.d.ts typings files that power our IntelliSense. It should not be localized": "Adquiriendo typings...",
+ "Add all missing imports": "Agregar todas las importaciones que faltan",
+ "Add meaningful parameter name with AI": "Agregar un nombre de parámetro significativo con IA",
+ "Add types to this code. Add separate interfaces when possible. Do not change the code except for adding types.": "Agregue tipos a este código. Añada interfaces separadas cuando sea posible. No cambie el código excepto para añadir tipos.",
+ "Allow": "Permitir",
+ "Always": "Siempre",
+ "An error occurred while renaming file": "Error al cambiar el nombre del archivo",
+ "Analyzing '{0}' and its dependencies": "Analizando '{0}' y sus dependencias",
+ "Checking for update of JS/TS imports": "Comprobación de actualización de importaciones de JS/TS",
+ "Configure Excludes": "Configurar exclusiones",
+ "Configure JSConfig": "Configurar JSConfig",
+ "Configure TSConfig": "Configurar TSConfig",
+ "Configure jsconfig.json": "Configurar jsconfig.json",
+ "Configure tsconfig.json": "Configurar tsconfig.json",
+ "Could not apply refactoring": "No se pudo aplicar la refactorización",
+ "Could not detect a Node installation to run TS Server.": "No se pudo detectar una instalación de nodo para ejecutar el servidor TS.",
+ "Could not determine TypeScript or JavaScript project": "No se pudo determinar el proyecto de TypeScript o JavaScript",
+ "Could not determine TypeScript or JavaScript project. Unsupported file type": "No se pudo determinar el proyecto de TypeScript o JavaScript. Tipo de archivo no compatible",
+ "Could not determine references": "No se pudieron determinar las referencias",
+ "Could not install typings files for JavaScript language features. Please ensure that NPM is installed, or configure 'typescript.npm' in your user settings. Alternatively, check the [documentation]({0}) to learn more.": "No se pudieron instalar archivos de términos para las características de lenguaje de JavaScript. Asegúrese de que NPM está instalado o configure \"typescript.npm\" en la configuración de usuario. También puede consultar la [documentación]({0}) para obtener más información.",
+ "Could not load the TypeScript version at this path": "No se pudo cargar la versión de TypeScript en esta ruta",
+ "Could not open TS Server log file": "No se puede abrir el archivo de registro del servidor de TS",
+ "Disable logging": "Deshabilitar registro",
+ "Disables semantic checking in a JavaScript file. Must be at the top of a file.": "Deshabilita la verificación semántica en un archivo de JavaScript. Debe estar al principio del archivo.",
+ "Dismiss": "Descartar",
+ "Don't Show Again": "No mostrar de nuevo",
+ "Don't show again": "No volver a mostrar",
+ "Enable logging and restart TS server": "Habilite el registro y reinicie el servidor TS",
+ "Enables semantic checking in a JavaScript file. Must be at the top of a file.": "Habilita la verificación semántica en un archivo de JavaScript. Debe estar al principio del archivo.",
+ "Enter file path": "Introducir ruta de acceso de archivo",
+ "Enter new file path...": "Escriba la nueva ruta de acceso del archivo...",
+ "Extract to constant": "Extraer a una constante",
+ "Extract to function": "Extraer a una función",
+ "Failed to resolve {0} as module": "Error al resolver {0} como módulo",
+ "Fetching data for better TypeScript IntelliSense": "Recuperando cambios en los datos para un mejor rendimiento de TypeScript IntelliSense",
+ "File is not part of a JavaScript project. View the [jsconfig.json documentation]({0}) to learn more.": "El archivo no forma parte de un proyecto JavaScript. Consulte la [documentación jsconfig.json]({0}) para obtener más información.",
+ "File is not part of a TypeScript project. View the [tsconfig.json documentation]({0}) to learn more.": "El archivo no forma parte de un proyecto TypeScript. Consulte la [documentación tsconfig.json]({0}) para obtener más información.",
+ "File is not part opened folders": "El archivo no forma parte de las carpetas abiertas",
+ "Find file references failed. No resource provided.": "Error al buscar referencias de archivo. No se ha proporcionado ningún recurso.",
+ "Find file references failed. Requires TypeScript 4.2+.": "Error al buscar referencias de archivo. Se requiere TypeScript 4.2 o versiones posteriores.",
+ "Find file references failed. Unknown file type.": "Error al buscar referencias de archivo. Tipo de archivo desconocido.",
+ "Find file references failed. Unsupported file type.": "Error al buscar referencias de archivo. Tipo de archivo no compatible.",
+ "Finding file references": "Buscando referencias de archivo",
+ "Finding source definitions": "Buscando definiciones de origen",
+ "Fix all fixable JS/TS issues": "Corregir todos los problemas de JS/TS que se pueden corregir",
+ "Follow link": "Seguir vínculo",
+ "Go to Source Definition failed. No resource provided.": "Error al ir a la definición de origen. No se ha proporcionado ningún recurso.",
+ "Go to Source Definition failed. Requires TypeScript 4.7+.": "Error al ir a la definición de origen. Requiere TypeScript 4.7+.",
+ "Go to Source Definition failed. Unknown file type.": "Error al ir a la definición de origen. Tipo de archivo no conocido.",
+ "Go to Source Definition failed. Unsupported file type.": "Error al ir a la definición de origen. Tipo de archivo no admitido.",
+ "Implement missing function declaration '{0}' using AI": "Implemente la declaración de función que falta “{0}” usando IA",
+ "Implement the stubbed-out class members for {0} with a useful implementation.": "Implemente los miembros de clase esbozados para {0} con una implementación útil.",
+ "Infer types using AI": "Inferir tipos con IA",
+ "Initializing '{0}'": "Inicializando '{0}'",
+ "JS/TS IntelliSense Status": "Estado de JS/TS IntelliSense",
+ "JSDoc comment": "Comentario de JSDoc",
+ "Learn More": "Más información",
+ "Learn more about JS/TS refactorings": "Más información sobre las refactorizaciones JS/TS",
+ "Learn more about managing TypeScript versions": "Más información sobre cómo administrar versiones de TypeScript",
+ "Loading IntelliSense status": "Cargando estado de IntelliSense",
+ "Move to File": "Mover a archivo",
+ "Never": "Nunca",
+ "Never in this Workspace": "Nunca en esta área de trabajo",
+ "No": "No",
+ "No jsconfig": "Sin jsconfig",
+ "No opened folders": "No hay carpetas abiertas",
+ "No source definitions found.": "No se ha encontrado ninguna definición.",
+ "No tsconfig": "Sin tsconfig",
+ "Not now": "Ahora no",
+ "Open Config File": "Abrir archivo de configuración",
+ "Open on GitHub": "Abrir en GitHub",
+ "Organize Imports": "Organizar importaciones",
+ "Partial mode": "Modo parcial",
+ "Paste with imports": "Pegar con importaciones",
+ "Please open a folder in VS Code to use a TypeScript or JavaScript project": "Abra una carpeta en VS Code para usar un proyecto de TypeScript o JavaScript",
+ "Please report an issue against Yarn PnP": "Informe de un problema con Yarn PnP",
+ "Please update your TypeScript version": "Actualice su versión de TypeScript.",
+ "Project wide IntelliSense not available": "IntelliSense no está disponible para todo el proyecto",
+ "Provide a reasonable implementation of the function {0} given its type and the context it's called in.": "Proporcione una implementación razonable de la función {0} según su tipo y el contexto en que se llama.",
+ "Remove Unused Imports": "Quitar importaciones sin usar",
+ "Remove all unused code": "Quitar todo el código sin utilizar",
+ "Rename the parameter {0} with a more meaningful name.": "Renombre el parámetro {0} con un nombre más significativo.",
+ "Report Issue": "Notificar problema",
+ "Report issue against Yarn PnP": "Informar problema con Yarn PnP",
+ "Select Version": "Seleccionar versión",
+ "Select code action to apply": "Seleccione acción de código para aplicar",
+ "Select existing file...": "Seleccionar archivo existente...",
+ "Select move destination": "Seleccionar destino de movimiento",
+ "Select the TypeScript version used for JavaScript and TypeScript language features": "Seleccionar la versión de TypeScript usada para las características del lenguaje de JavaScript y TypeScript",
+ "Sort Imports": "Ordenar las importaciones",
+ "Suppresses @ts-check errors on the next line of a file, expecting at least one to exist.": "Suprime los errores de @ts-check en la siguiente línea de un archivo, esperando que al menos exista uno.",
+ "Suppresses @ts-check errors on the next line of a file.": "Suprime los errores @ts-check en la siguiente línea de un archivo. ",
+ "TS Server has not started logging.": "El servidor de TS no ha iniciado el registro.",
+ "TS Server logging is currently enabled which may impact performance.": "El registro del servidor TS está habilitado actualmente, lo que puede afectar al rendimiento.",
+ "TS Server logging is off. Please set 'typescript.tsserver.log' and restart the TS server to enable logging": "Los registros del servidor de TS están desconectados. Establezca \"typescript.tsserver.log\" y reinicie el servidor de TS para activar los registros.",
+ "The JS/TS language service crashed 5 times in the last 5 Minutes.": "El servicio de lenguaje JS/TS se bloqueó 5 veces en los últimos 5 minutos.",
+ "The JS/TS language service crashed 5 times in the last 5 Minutes.\nThis may be caused by a plugin contributed by one of these extensions: {0}\nPlease try disabling these extensions before filing an issue against VS Code.": "El servicio de lenguaje JS/TS se bloqueó 5 veces en los últimos 5 minutos.\nEsto puede deberse a un complemento aportado por una de estas extensiones: {0}\nIntente deshabilitar estas extensiones antes de presentar una incidencia en VS Code.",
+ "The JS/TS language service crashed.": "El servicio de lenguaje JS/TS se bloqueó.",
+ "The JS/TS language service crashed.\nThis may be caused by a plugin contributed by one of these extensions: {0}.\nPlease try disabling these extensions before filing an issue against VS Code.": "El servicio de lenguaje JS/TS se bloqueó.\nEsto puede deberse a un complemento aportado por una de estas extensiones: {0}.\nIntente deshabilitar estas extensiones antes de presentar una incidencia en VS Code.",
+ "The JS/TS language service immediately crashed 5 times. The service will not be restarted.": "El servicio de lenguaje JS/TS se bloqueó inmediatamente 5 veces. No se reiniciará el servicio.",
+ "The JS/TS language service immediately crashed 5 times. The service will not be restarted.\nThis may be caused by a plugin contributed by one of these extensions: {0}.\nPlease try disabling these extensions before filing an issue against VS Code.": "El servicio de lenguaje JS/TS se bloqueó inmediatamente 5 veces. El servicio no se reiniciará.\nEsto puede deberse a un complemento aportado por una de estas extensiones: {0}.\nIntente deshabilitar estas extensiones antes de presentar una incidencia en VS Code.",
+ "The TypeScript Go extension is not installed.": "La extensión Go para TypeScript no está instalada.",
+ "The current selection cannot be extracted": "No se puede extraer la selección actual",
+ "The path {0} doesn't point to a valid Node installation to run TS Server. Falling back to bundled Node.": "La ruta de acceso {0} no apunta a una instalación de nodo válida para ejecutar el servidor TS. Revirtiendo al nodo incluido.",
+ "The path {0} doesn't point to a valid tsserver install. Falling back to bundled TypeScript version.": "La ruta de acceso {0} no apunta a una instalación válida de tsserver. Se usará la versión de TypeScript del paquete.",
+ "The workspace is using a version of the TypeScript Server that has been patched by Yarn PnP. This patching is a common source of bugs.": "El área de trabajo está utilizando una versión del Servidor TypeScript que ha sido revisada por Yarn PnP. Esta aplicación de revisiones es un origen común de errores.",
+ "The workspace is using an old version of TypeScript ({0}).\n\nBefore reporting an issue, please update the workspace to use TypeScript {1} or newer to make sure the bug has not already been fixed.": "El área de trabajo usa una versión anterior de TypeScript ({0}).\n\nAntes de notificar de una incidencia, actualice el área de trabajo para usar TypeScript {1} o posteriores, ya que puede que el error se haya corregido en una versión reciente.",
+ "This workspace contains a TypeScript version. Would you like to use the workspace TypeScript version for TypeScript and JavaScript language features?": "Esta área de trabajo contiene una versión de TypeScript. ¿Quiere usar la versión de TypeScript del área de trabajo para las características de lenguaje TypeScript y JavaScript?",
+ "This workspace wants to use the Node installation at '{0}' to run TS Server. Would you like to use it?": "Esta área de trabajo quiere usar la instalación de nodo en '{0}' para ejecutar el servidor TS. ¿Quiere que la use?",
+ "To enable project-wide JavaScript/TypeScript language features, exclude folders with many files, like: {0}": "Para habilitar las características de lenguaje de JavaScript/TypeScript en todo el proyecto, excluya las carpetas con muchos archivos, como: {0}",
+ "To enable project-wide JavaScript/TypeScript language features, exclude large folders with source files that you do not work on.": "Para habilitar las características de idioma de JavaScript/TypeScript IntelliSense en todo el proyecto, excluya las carpetas de tamaño grande con archivos de origen en los que no trabaje.",
+ "TypeScript Server Log": "Registro del servidor TypeScript",
+ "TypeScript Task in tasks.json contains \"\\\\\". TypeScript tasks tsconfig must use \"/\"": "La tarea Typescript en tasks.json contiene \"\\\\\". Las tareas de Typescript tsconfig deben usar \"/\"",
+ "TypeScript Version": "Versión de TypeScript",
+ "TypeScript language server exited with error. Error message is: {0}": "El servidor de lenguaje TypeScript terminó con error. Mensaje de error: {0}",
+ "TypeScript version": "Versión de TypeScript",
+ "TypeScript: Configure Excludes": "TypeScript: configurar exclusiones",
+ "Update imports for '{0}'?": "¿Actualizar las importaciones para \"{0}\"?",
+ "Update imports for the following {0} files?": "¿Actualizar importaciones para los siguientes {0} archivos?",
+ "Use VS Code's Version": "Utilizar la versión de VS Code",
+ "Use Workspace Version": "Usar versión del área de trabajo",
+ "VS Code's tsserver was deleted by another application such as a misbehaving virus detection tool. Please reinstall VS Code.": "Otra aplicación (por ejemplo, una herramienta de detección de virus con un comportamiento erróneo) eliminó el tsserver de VSCode. Debe reinstalar el VS Code.",
+ "Yes": "Sí",
+ "build - {0}": "compilación: {0}",
+ "destination files": "archivos de destino",
+ "invalid version": "versión inválida",
+ "watch - {0}": "inspección: {0}",
+ "{0} (Fix all in file)": "{0} (Corregir todo en el archivo)",
+ "{0} implementations": "{0} implementaciones",
+ "{0} references": "{0} referencias",
+ "{0} with AI": "{0} con IA"
+ },
+ "package": {
+ "configuration.format": "Formateando",
+ "configuration.hover.maximumLength": "Número máximo de caracteres al mantener el mouse. Si el desplazamiento es mayor que este, se truncará. Requiere TypeScript 5.9+.",
+ "configuration.implicitProjectConfig.checkJs": "Habilita o deshabilita la comprobación semántica de los archivos de JavaScript. Los archivos \"jsconfig.json\" o \"tsconfig.json\" existentes invalidan esta opción.",
+ "configuration.implicitProjectConfig.experimentalDecorators": "Habilite o deshabilite \"experimentalDecorators\" en los archivos de JavaScript que no forman parte de un proyecto. Los archivos \"jsconfig.json\" o \"tsconfig.json\" existentes invalidan esta opción.",
+ "configuration.implicitProjectConfig.module": "Establece el sistema de módulos para el programa. Más información: https://www.typescriptlang.org/tsconfig#module.",
+ "configuration.implicitProjectConfig.strict": "Habilitar o deshabilitar [modo estricto](https://www.typescriptlang.org/tsconfig#strictNullChecks) en archivos JavaScript y TypeScript que no forman parte de un proyecto. Los archivos \"jsconfig.json\" o \"tsconfig.json\" existentes invalidan esta configuración.",
+ "configuration.implicitProjectConfig.strictFunctionTypes": "Habilite o deshabilite [los tipos de función estrictos](https://www.typescriptlang.org/tsconfig#strictFunctionTypes) en los archivos de JavaScript y TypeScript que no forman parte de un proyecto. Los archivos \"jsconfig.json\" o \"tsconfig.json\" existentes invalidan esta configuración.",
+ "configuration.implicitProjectConfig.strictNullChecks": "Habilita o deshabilita [las comprobaciones estrictas de elementos nulos.](https://www.typescriptlang.org/tsconfig#strictNullChecks) en los archivos de JavaScript y TypeScript que no forman parte de un proyecto. Los archivos \"jsconfig.json\" o \"tsconfig.json\" existentes invalidan esta configuración.",
+ "configuration.implicitProjectConfig.target": "Establezca la versión del lenguaje JavaScript de destino para las declaraciones JavaScript emitidas e incluya las declaraciones de biblioteca. Más información: https://www.typescriptlang.org/tsconfig#target.",
+ "configuration.inlayHints": "Indicaciones incrustadas",
+ "configuration.inlayHints.enumMemberValues.enabled": "Activar/desactivar las indicaciones incrustadas para los valores de los miembros en las declaraciones de enum:\r\n``typescript\r\n\r\nenum MiValor {\r\n\tA /* = 0 */;\r\n\tB /* = 1 */;\r\n}\r\n \r\n```",
+ "configuration.inlayHints.functionLikeReturnTypes.enabled": "Activar/desactivar las indicaciones incrustadas para los tipos de retorno implícitos en las firmas de las funciones:\r\n``typescript\r\n\r\nfunction foo() /* :number */ {\r\n\treturn Date.now();\r\n} \r\n \r\n```",
+ "configuration.inlayHints.parameterNames.enabled": "Activar/desactivar las indicaciones incrustadas para los nombres de los parámetros:\r\n``typescript\r\n\r\nparseInt(/* str: */ '123', /* radix: */ 8)\r\n \r\n```",
+ "configuration.inlayHints.parameterNames.suppressWhenArgumentMatchesName": "Suprimir las sugerencias de nombre de parámetro en argumentos cuyo texto sea idéntico al nombre del parámetro.",
+ "configuration.inlayHints.parameterTypes.enabled": "Activar/desactivar las indicaciones incrustadas para los tipos de parámetros implícitos:\r\n``typescript\r\n\r\nel.addEventListener('click', e /* :MouseEvent */ => ...)\r\n \r\n```",
+ "configuration.inlayHints.propertyDeclarationTypes.enabled": "Activar/desactivar las indicaciones incrustadas para los tipos implícitos en las declaraciones de propiedades:\r\n``typescript\r\n\r\nclase Foo {\r\n\tprop /* :number */ = Date.now();\r\n}\r\n \r\n```",
+ "configuration.inlayHints.variableTypes.enabled": "Activar/desactivar las indicaciones incrustadas para los tipos de variables implícitas:\r\n``typescript\r\n\r\nconst foo /* :number */ = Date.now();\r\n \r\n```",
+ "configuration.inlayHints.variableTypes.suppressWhenTypeMatchesName": "Suprima sugerencias de tipo en las variables cuyo nombre sea idéntico al nombre de tipo.",
+ "configuration.preferGoToSourceDefinition": "Hace que `Ir a definición` evite archivos de declaración de tipos cuando sea posible desencadenando `Ir a definición de origen` en su lugar. Esto permite que se desencadene `Ir a definición de origen` con el gesto del mouse.",
+ "configuration.preferences": "Preferencias",
+ "configuration.server": "Servidor TS",
+ "configuration.suggest": "Sugerencias",
+ "configuration.suggest.autoImports": "Habilita o deshabilita las sugerencias de importación automática.",
+ "configuration.suggest.classMemberSnippets.enabled": "Activar/desactivar la finalización de fragmentos para los miembros de la clase.",
+ "configuration.suggest.completeFunctionCalls": "Complete las funciones con la signatura de parámetro.",
+ "configuration.suggest.completeJSDocs": "Habilitar/deshabilitar sugerencia para completar comentarios JSDoc.",
+ "configuration.suggest.includeAutomaticOptionalChainCompletions": "Habilite/deshabilite la visualización de terminaciones en valores potencialmente indefinidos que insertan una llamada en cadena opcional. Requiere que las comprobaciones estrictas de elementos nulos.estén habilitadas.",
+ "configuration.suggest.includeCompletionsForImportStatements": "Habilita o deshabilita las finalizaciones del estilo de importación automática en las instrucciones de importación escritas parcialmente.",
+ "configuration.suggest.jsdoc.generateReturns": "Habilite o deshabilite la generación de anotaciones \"@returns\" para plantillas JSDoc.",
+ "configuration.suggest.names": "Habilite/deshabilite la inclusión de nombres únicos del archivo en las sugerencias de JavaScript. Tenga en cuenta que las sugerencias de nombre siempre están deshabilitadas en el código JavaScript que se comprueba semánticamente mediante \"@ts-check\" o \"checkJs\".",
+ "configuration.suggest.objectLiteralMethodSnippets.enabled": "Activar/desactivar la finalización de fragmentos de métodos en los literales de objetos.",
+ "configuration.suggest.paths": "Habilite/deshabilite las sugerencias para rutas de acceso en instrucciones de importación y requiera llamadas.",
+ "configuration.tsserver.experimental.enableProjectDiagnostics": "Habilita la generación de informes de errores en todo el proyecto.",
+ "configuration.tsserver.maxTsServerMemory": "La cantidad máxima de memoria (en MB) a asignar al proceso del servidor TypeScript. Para usar un límite de memoria superior a 4 GB, use \"#typescript.tsserver.nodePath#\" para ejecutar el servidor de TS con una instalación de nodo personalizada.",
+ "configuration.tsserver.nodePath": "Ejecute el servidor TS en una instalación de nodo personalizada. Puede ser una ruta de acceso a un ejecutable de nodo, o \"node\" si desea que VS Code detecte una instalación de nodo.",
+ "configuration.tsserver.useSeparateSyntaxServer": "Habilite o deshabilite la generación de un servidor TypeScript independiente que pueda responder más rápidamente a las operaciones relacionadas con la sintaxis, como el cálculo de los símbolos de documento de plegado o de proceso.",
+ "configuration.tsserver.useSyntaxServer": "Controla si TypeScript inicia un servidor dedicado para controlar de forma más rápida las operaciones relacionadas con la sintaxis, como calcular el plegado de código.",
+ "configuration.tsserver.useSyntaxServer.always": "Use un servidor de sintaxis más ligero para controlar todas las operaciones de IntelliSense. Este servidor de sintaxis solo puede proporcionar IntelliSense para los archivos abiertos.",
+ "configuration.tsserver.useSyntaxServer.auto": "Generar tanto un servidor completo como uno más ligero dedicado a las operaciones de sintaxis. El servidor de sintaxis se usa para acelerar las operaciones de sintaxis y proporcionar IntelliSense mientras se cargan los proyectos.",
+ "configuration.tsserver.useSyntaxServer.never": "No use un servidor de sintaxis dedicado. Use un único servidor para controlar todas las operaciones de IntelliSense.",
+ "configuration.tsserver.useVsCodeWatcher": "Use los monitores de archivos de VS Code en lugar de los de TypeScript. Requiere el uso de TypeScript 5.4+ en el área de trabajo.",
+ "configuration.tsserver.watchOptions": "Configure qué estrategias de observación se deben utilizar para realizar un seguimiento de los archivos y directorios.",
+ "configuration.tsserver.watchOptions.fallbackPolling": "Cuando se utilizan eventos del sistema de archivos, esta opción especifica la estrategia de sondeo que se utiliza cuando el sistema se queda sin monitores de archivos nativos o no los admite.",
+ "configuration.tsserver.watchOptions.fallbackPolling.dynamicPriorityPolling ": "Utilice una cola dinámica en la que los archivos modificados con menos frecuencia se comprueben con menos frecuencia.",
+ "configuration.tsserver.watchOptions.fallbackPolling.fixedPollingInterval": "Compruebe cada archivo en busca de cambios varias veces por segundo en un intervalo fijo.",
+ "configuration.tsserver.watchOptions.fallbackPolling.priorityPollingInterval": "Compruebe cada archivo en busca de cambios varias veces por segundo, pero utilice la heurística para comprobar ciertos tipos de archivos con menos frecuencia que otros.",
+ "configuration.tsserver.watchOptions.synchronousWatchDirectory": "Deshabilite la observación diferida en directorios. La observación diferida es útil cuando pueden producirse muchos cambios en los archivos a la vez (por ejemplo, un cambio en node_modules de ejecutar npm install), pero es posible que desee deshabilitarla con esta marca para algunas configuraciones menos comunes.",
+ "configuration.tsserver.watchOptions.vscode": "Use los monitores de archivos de VS Code en lugar de los de TypeScript. Requiere el uso de TypeScript 5.4+ en el área de trabajo.",
+ "configuration.tsserver.watchOptions.watchDirectory": "Estrategia de cómo se observan árboles de directorios completos en sistemas que carecen de funcionalidad recursiva de observación de archivos.",
+ "configuration.tsserver.watchOptions.watchDirectory.dynamicPriorityPolling": "Utilice una cola dinámica en la que los directorios modificados con menos frecuencia se comprueben con menos frecuencia.",
+ "configuration.tsserver.watchOptions.watchDirectory.fixedChunkSizePolling": "Sondea directorios en fragmentos a intervalos regulares.",
+ "configuration.tsserver.watchOptions.watchDirectory.fixedPollingInterval": "Compruebe cada directorio en busca de cambios varias veces por segundo en un intervalo fijo.",
+ "configuration.tsserver.watchOptions.watchDirectory.useFsEvents": "Intente utilizar los eventos nativos del sistema operativo/sistema de archivos para los cambios de directorio.",
+ "configuration.tsserver.watchOptions.watchFile": "Estrategia de cómo se ven los archivos individuales.",
+ "configuration.tsserver.watchOptions.watchFile.dynamicPriorityPolling": "Utilice una cola dinámica en la que los archivos modificados con menos frecuencia se comprueben con menos frecuencia.",
+ "configuration.tsserver.watchOptions.watchFile.fixedChunkSizePolling": "Sondea archivos en fragmentos a intervalos regulares.",
+ "configuration.tsserver.watchOptions.watchFile.fixedPollingInterval": "Compruebe cada archivo en busca de cambios varias veces por segundo en un intervalo fijo.",
+ "configuration.tsserver.watchOptions.watchFile.priorityPollingInterval": "Compruebe cada archivo en busca de cambios varias veces por segundo, pero utilice la heurística para comprobar ciertos tipos de archivos con menos frecuencia que otros.",
+ "configuration.tsserver.watchOptions.watchFile.useFsEvents": "Intente utilizar los eventos nativos del sistema operativo/sistema de archivos para los cambios de archivo.",
+ "configuration.tsserver.watchOptions.watchFile.useFsEventsOnParentDirectory": "Intente utilizar los eventos nativos del sistema operativo/sistema de archivos para escuchar los cambios en los directorios contenidos de un archivo. Puede utilizar menos observadores de archivos, pero podría ser menos preciso.",
+ "configuration.tsserver.web.projectWideIntellisense.enabled": "Habilita o deshabilita IntelliSense en todo el proyecto en la web. Requiere que VS Code se ejecute en un contexto de confianza.",
+ "configuration.tsserver.web.projectWideIntellisense.suppressSemanticErrors": "Suprime los errores semánticos en la web incluso cuando IntelliSense para todo el proyecto está habilitado. Esto siempre está activado cuando IntelliSense para todo el proyecto no está habilitado o disponible. Vea `#typescript.tsserver.web.projectWideIntellisense.enabled#`",
+ "configuration.tsserver.web.typeAcquisition.enabled": "Habilitar o deshabilitar la adquisición de paquetes en la Web. Esto habilita IntelliSense para los paquetes importados. Requiere \"#typescript.tsserver.web.projectWideIntellisense.enabled#\". Actualmente no se admite para Safari.",
+ "configuration.typescript": "TypeScript",
+ "configuration.updateImportsOnPaste": "Actualizar automáticamente las importaciones al pegar código. Requiere TypeScript 5.6+.",
+ "description": "Proporciona soporte de lenguaje enriquecido para JavaScript y TypeScript.",
+ "displayName": "Características del lenguaje JavaScript y TypeScript",
+ "format.indentSwitchCase": "Sangrar cláusulas case en las instrucciones de cambio. Requiere el uso de TypeScript 5.1+ en el espacio de trabajo.",
+ "format.insertSpaceAfterCommaDelimiter": "Define el tratamiento del espacio después de un delimitador de coma.",
+ "format.insertSpaceAfterConstructor": "Define el tratamiento de los espacios después de la palabra clave de constructor.",
+ "format.insertSpaceAfterFunctionKeywordForAnonymousFunctions": "Define el tratamiento del espacio después de la palabra clave function para las funciones anónimas.",
+ "format.insertSpaceAfterKeywordsInControlFlowStatements": "Define el tratamiento del espacio después de las palabras clave en una instrucción de flujo de control.",
+ "format.insertSpaceAfterOpeningAndBeforeClosingEmptyBraces": "Define el tratamiento de los espacios después de una llave de apertura y antes de una llave de cierre vacías.",
+ "format.insertSpaceAfterOpeningAndBeforeClosingJsxExpressionBraces": "Define el tratamiento del espacio después de la llave de apertura y antes de la llave de cierre de expresiones JSX.",
+ "format.insertSpaceAfterOpeningAndBeforeClosingNonemptyBraces": "Define el tratamiento de los espacios después de la llave de apertura y antes de la llave de cierre en instrucciones que no están vacías.",
+ "format.insertSpaceAfterOpeningAndBeforeClosingNonemptyBrackets": "Define el manejo del espacio después de abrir y antes de cerrar los soportes no vacíos.",
+ "format.insertSpaceAfterOpeningAndBeforeClosingNonemptyParenthesis": "Define el manejo del espacio después de abrir y antes de cerrar paréntesis no vacíos.",
+ "format.insertSpaceAfterOpeningAndBeforeClosingTemplateStringBraces": "Define el tratamiento del espacio después de la llave de apertura y antes de la llave de cierre de cadenas de plantilla.",
+ "format.insertSpaceAfterSemicolonInForStatements": "Define el tratamiento del espacio después de punto y coma en una instrucción for.",
+ "format.insertSpaceAfterTypeAssertion": "Define el tratamiento de los espacios después de las aserciones de tipos en TypeScript.",
+ "format.insertSpaceBeforeAndAfterBinaryOperators": "Define el tratamiento del espacio después de un operador binario.",
+ "format.insertSpaceBeforeFunctionParenthesis": "Define el tratamiento del espacio antes de los paréntesis de argumentos de función.",
+ "format.placeOpenBraceOnNewLineForControlBlocks": "Define si una llave de apertura se incluye en una nueva línea para los bloques de control o no.",
+ "format.placeOpenBraceOnNewLineForFunctions": "Define si una llave de apertura se incluye en una nueva línea para las funciones o no.",
+ "format.semicolons": "Define el tratamiento de puntos y comas opcionales.",
+ "format.semicolons.ignore": "No inserte ni quite los puntos y comas.",
+ "format.semicolons.insert": "Inserte punto y coma en los extremos de la instrucción.",
+ "format.semicolons.remove": "Elimine los puntos y comas innecesarios.",
+ "inlayHints.parameterNames.all": "Habilitar las sugerencias de nombre de parámetro para argumentos literales y no literales.",
+ "inlayHints.parameterNames.literals": "Habilitar las sugerencias de nombre de parámetro solo para los argumentos literales.",
+ "inlayHints.parameterNames.none": "Deshabilitar las sugerencias de nombre de parámetro.",
+ "javascript.format.enable": "Habilita o deshabilita el formateador predeterminado de JavaScript.",
+ "javascript.goToProjectConfig.title": "Ir a Configuración del proyecto (jsconfig / tsconfig)",
+ "javascript.preferences.jsxAttributeCompletionStyle.auto": "Inserte '={}' o '=\"\"' después de los nombres de atributo según el tipo de propiedad. Consulte `#javascript.preferences.quoteStyle#` para controlar el tipo de comillas usadas para los atributos de cadena.",
+ "javascript.preferences.organizeImports": "Preferencias avanzadas que controlan cómo se ordenan las importaciones.",
+ "javascript.referencesCodeLens.enabled": "Habilitar/deshabilitar las referencias de CodeLens en los archivos de JavaScript.",
+ "javascript.referencesCodeLens.showOnAllFunctions": "Habilitar o deshabilitar CodeLens de referencias en todas las funciones de los archivos de JavaScript.",
+ "javascript.suggestionActions.enabled": "Habilita o deshabilita el diagnóstico de sugerencias para los archivos de JavaScript en el editor.",
+ "javascript.validate.enable": "Habilita o deshabilita la validación de JavaScript.",
+ "reloadProjects.title": "Volver a cargar el proyecto",
+ "taskDefinition.tsconfig.description": "Archivo tsconfig que define la compilación de TS.",
+ "typescript.autoClosingTags": "Habilita o deshabilita el cierre automático de las etiquetas JSX.",
+ "typescript.check.npmIsInstalled": "Comprobar si npm está instalado para [Adquisición automática de tipos](https://code.visualstudio.com/docs/nodejs/working-with-javascript#_typings-and-automatic-type-acquisition).",
+ "typescript.disableAutomaticTypeAcquisition": "Deshabilita [adquisición automática de tipos](https://code.visualstudio.com/docs/nodejs/working-with-javascript#_typings-and-automatic-type-acquisition). La adquisición automática de tipos obtiene los paquetes \"@types\" de npm para mejorar el IntelliSense de las bibliotecas externas.",
+ "typescript.enablePromptUseWorkspaceTsdk": "Permite solicitar a los usuarios el uso de la versión de TypeScript configurada en el área de trabajo para IntelliSense.",
+ "typescript.findAllFileReferences": "Buscar referencias de archivo",
+ "typescript.format.enable": "Habilita o deshabilita el formateador predeterminado de TypeScript.",
+ "typescript.goToProjectConfig.title": "Ir a configuración del proyecto (tsconfig)",
+ "typescript.goToSourceDefinition": "Ir a definición de origen",
+ "typescript.implementationsCodeLens.enabled": "Habilite o deshabilite las implementaciones de CodeLens. Esta instancia de CodeLens muestra los implementadores de una interfaz.",
+ "typescript.implementationsCodeLens.showOnAllClassMethods": "Active o desactive la visualización de implementaciones de CodeLens sobre todos los métodos de clase, no solo en los métodos abstractos.",
+ "typescript.implementationsCodeLens.showOnInterfaceMethods": "Habilite o deshabilite las implementaciones de CodeLens en los métodos de interfaz.",
+ "typescript.locale": "Establece la configuración regional que se usa para notificar errores de JavaScript y TypeScript. De forma predeterminada, se usa la configuración regional de VS Code.",
+ "typescript.locale.auto": "Usar el idioma de visualización configurado de VS Code.",
+ "typescript.npm": "Especifica la ruta del ejecutable npm utilizado para la [Adquisición automática de tipos](https://code.visualstudio.com/docs/nodejs/working-with-javascript#_typings-and-automatic-type-acquisition).",
+ "typescript.openTsServerLog.title": "Abrir registro del servidor de TS",
+ "typescript.preferences.autoImportFileExcludePatterns": "Especifique patrones globales de archivos que se excluirán de las importaciones automáticas. Las rutas de acceso relativas se resuelven en relación con la raíz del área de trabajo. Los patrones se evalúan mediante la semántica tsconfig.json ['exclude'](https://www.typescriptlang.org/tsconfig#exclude).",
+ "typescript.preferences.autoImportSpecifierExcludeRegexes": "Especifique expresiones regulares para excluir las importaciones automáticas con especificadores de importación coincidentes. Ejemplos:\r\n\r\n- \"^node:\"\r\n- \"lib/internal\" (las barras diagonales no necesitan escape...)\r\n- \"/lib\\/internal/i\" (... a menos que incluya barras diagonales adyacentes para las marcas \"i\" o \"u\")\r\n- \"^lodash$\" (solo permitir importaciones de subrutas desde lodash)",
+ "typescript.preferences.importModuleSpecifier": "Estilo de ruta de acceso preferido para las importaciones automáticas.",
+ "typescript.preferences.importModuleSpecifier.nonRelative": "Prefiere una importación no relativa basada en los elementos \"baseUrl\" o \"paths\" configurados en \"jsconfig.json\" o \"tsconfig.json\".",
+ "typescript.preferences.importModuleSpecifier.projectRelative": "Prefiere una importación no relativa solo si la ruta de acceso de importación relativa deja el directorio del proyecto o paquete.",
+ "typescript.preferences.importModuleSpecifier.relative": "Prefiere una ruta de acceso relativa a la ubicación del archivo importado.",
+ "typescript.preferences.importModuleSpecifier.shortest": "Prefiere una importación no relativa solo si hay alguna disponible que tenga menos segmentos de trazado que una importación relativa.",
+ "typescript.preferences.importModuleSpecifierEnding": "Finalización de ruta preferida para las importaciones automáticas.",
+ "typescript.preferences.importModuleSpecifierEnding.auto": "Utilice la configuración del proyecto para seleccionar un valor predeterminado.",
+ "typescript.preferences.importModuleSpecifierEnding.index": "Acorte \"./component/index.js\" a \"./component/index\".",
+ "typescript.preferences.importModuleSpecifierEnding.js": "No acorte los finales de ruta; incluya la extensión \".js\" o “.ts”.",
+ "typescript.preferences.importModuleSpecifierEnding.label.js": ".js / .ts",
+ "typescript.preferences.importModuleSpecifierEnding.minimal": "Acorte \"./component/index.js\" a \"./component\".",
+ "typescript.preferences.includePackageJsonAutoImports": "Habilite o deshabilite la búsqueda de dependencias \"package.json\" para las importaciones automáticas disponibles.",
+ "typescript.preferences.includePackageJsonAutoImports.auto": "Busque las dependencias en función del impacto estimado en el rendimiento.",
+ "typescript.preferences.includePackageJsonAutoImports.off": "No busque nunca las dependencias.",
+ "typescript.preferences.includePackageJsonAutoImports.on": "Busque siempre las dependencias.",
+ "typescript.preferences.jsxAttributeCompletionStyle": "Estilo preferido para las finalizaciones de atributos JSX.",
+ "typescript.preferences.jsxAttributeCompletionStyle.auto": "Inserte '={}' o '=\"\"' después de los nombres de atributo según el tipo de propiedad. Consulte `#typescript.preferences.quoteStyle#` para controlar el tipo de comillas usadas para los atributos de cadena.",
+ "typescript.preferences.jsxAttributeCompletionStyle.braces": "Inserta '={}' después de los nombres de atributo.",
+ "typescript.preferences.jsxAttributeCompletionStyle.none": "Inserte solo nombres de atributo.",
+ "typescript.preferences.organizeImports": "Preferencias avanzadas que controlan cómo se ordenan las importaciones.",
+ "typescript.preferences.organizeImports.accentCollation": "Requiere `organizeImports.unicodeCollation: 'unicode'`. Comparar caracteres con marcas diacríticas como distintos del carácter base.",
+ "typescript.preferences.organizeImports.caseFirst": "Requiere `organizeImports.unicodeCollation: 'unicode'`, y `organizeImports.caseSensitivity` no es `caseInsensitive`. Indica si las mayúsculas se ordenará antes que las minúsculas.",
+ "typescript.preferences.organizeImports.caseFirst.default": "Orden predeterminado proporcionado por `locale`.",
+ "typescript.preferences.organizeImports.caseFirst.lower": "Las minúsculas se presentan antes que las mayúsculas. Por ejemplo,` a, A, z, Z`.",
+ "typescript.preferences.organizeImports.caseFirst.upper": "Las mayúsculas se presentan antes que las minúsculas. Por ejemplo, ` A, a, B, b`.",
+ "typescript.preferences.organizeImports.caseSensitivity": "Especifica cómo se deben ordenar las importaciones con respecto a la distinción entre mayúsculas y minúsculas. Si es `auto` o no se especifica, detectaremos la distinción entre mayúsculas y minúsculas por archivo.",
+ "typescript.preferences.organizeImports.caseSensitivity.auto": "Detección de distinción entre mayúsculas y minúsculas para la ordenación de importación.",
+ "typescript.preferences.organizeImports.caseSensitivity.insensitive": "Ordenar importaciones sin distinción entre mayúsculas y minúsculas.",
+ "typescript.preferences.organizeImports.caseSensitivity.sensitive": "Ordenar importa con distinción entre mayúsculas y minúsculas.",
+ "typescript.preferences.organizeImports.locale": "Requiere `organizeImports.unicodeCollation: 'unicode'`. Invalida la configuración regional usada para la intercalación. Especifique \"auto\" para usar la configuración regional de la interfaz de usuario.",
+ "typescript.preferences.organizeImports.numericCollation": "Requiere `organizeImports.unicodeCollation: 'unicode'`. Ordenar cadenas numéricas por valor entero.",
+ "typescript.preferences.organizeImports.typeOrder": "Especifique cómo deben ordenarse las importaciones con nombre solo de tipo.",
+ "typescript.preferences.organizeImports.typeOrder.auto": "Detectar dónde deben ordenarse las importaciones con nombre solo de tipo.",
+ "typescript.preferences.organizeImports.typeOrder.first": "Las importaciones con nombre de tipo solo se ordenan al principio de la lista de importación. Por ejemplo, `import { type A, type Y, B, Z } from 'module';`",
+ "typescript.preferences.organizeImports.typeOrder.inline": "Las importaciones con nombre se ordenan solo por nombre. Por ejemplo, `import { type A, B, type Y, Z } from 'module';`",
+ "typescript.preferences.organizeImports.typeOrder.last": "Las importaciones con nombre de tipo solo se ordenan al final de la lista de importación. Por ejemplo, `import { B, Z, type A, type Y } from 'module';`",
+ "typescript.preferences.organizeImports.unicodeCollation": "Especifique si desea ordenar las importaciones mediante la intercalación de Unicode u Ordinal.",
+ "typescript.preferences.organizeImports.unicodeCollation.ordinal": "Ordenar importaciones con el valor numérico de cada punto de código.",
+ "typescript.preferences.organizeImports.unicodeCollation.unicode": "Ordenar importaciones mediante la intercalación de código Unicode.",
+ "typescript.preferences.preferTypeOnlyAutoImports": "Incluya la palabra clave \"type\" en las importaciones automáticas siempre que sea posible. Requiere el uso de TypeScript 5.3+ en el área de trabajo.",
+ "typescript.preferences.quoteStyle": "Estilo de comillas preferido para las correcciones rápidas.",
+ "typescript.preferences.quoteStyle.auto": "Inferir el tipo de comillas a partir del código existente",
+ "typescript.preferences.quoteStyle.double": "Siempre use comillas dobles: `\"`",
+ "typescript.preferences.quoteStyle.single": "Siempre use comillas simples: `'`",
+ "typescript.preferences.renameMatchingJsxTags": "Cuando esté en una etiqueta JSX, intente cambiar el nombre de la etiqueta correspondiente en lugar de cambiar el nombre del símbolo. Requiere el uso de TypeScript 5.1+ en el área de trabajo.",
+ "typescript.preferences.useAliasesForRenames": "Habilite o deshabilite la introducción de alias para propiedades abreviadas de objetos durante los cambios de nombre.",
+ "typescript.problemMatchers.tsc.label": "Problemas de TypeScript",
+ "typescript.problemMatchers.tscWatch.label": "Problemas de TypeScript (modo de inspección)",
+ "typescript.problemMatchers.tsgo-watch.label": "Problemas de TypeScript (modo de inspección)",
+ "typescript.referencesCodeLens.enabled": "Habilita o deshabilita CodeLens de referencias en archivos de TypeScript.",
+ "typescript.referencesCodeLens.showOnAllFunctions": "Habilitar/deshabilitar referencias CodeLens en todas las funciones en archivos TypeScript.",
+ "typescript.removeUnusedImports": "Quitar importaciones sin usar",
+ "typescript.reportStyleChecksAsWarnings": "Notifique las comprobaciones de estilo como advertencias.",
+ "typescript.restartTsServer": "Reiniciar servidor TS",
+ "typescript.selectTypeScriptVersion.title": "Seleccione la versión de TypeScript...",
+ "typescript.sortImports": "Ordenar importaciones",
+ "typescript.suggest.enabled": "Habilitar o deshabilitar las sugerencias de autocompletar.",
+ "typescript.suggestionActions.enabled": "Habilita o deshabilita el diagnóstico de sugerencias para los archivos de TypeScript en el editor.",
+ "typescript.tsc.autoDetect": "Controla la detección automática de las tareas TSC.",
+ "typescript.tsc.autoDetect.build": "Cree únicamente tareas de compilación de una sola ejecución.",
+ "typescript.tsc.autoDetect.off": "Deshabilite esta característica.",
+ "typescript.tsc.autoDetect.on": "Cree tanto tareas de compilación como de inspección.",
+ "typescript.tsc.autoDetect.watch": "Cree únicamente tareas de compilación y de inspección.",
+ "typescript.tsdk.desc": "Especificar la ruta de la carpeta de los archivos tsserver y `lib*.d.ts` bajo una instalación de TypeScript para usarla en IntelliSense, por ejemplo: `./node_modules/typescript/lib`.\r\n\r\n- Cuando se especifica como una configuración de usuario, la versión de TypeScript de `typescript.tsdk` reemplaza automáticamente la versión de TypeScript incorporada.\r\n- Cuando se especifica como una configuración del área de trabajo, `typescript.tsdk` le permite cambiar para usar esa versión de TypeScript del área de trabajo para IntelliSense con el comando `TypeScript: Select TypeScript version`.\r\n\r\nConsulte la [documentación de TypeScript](https://code.visualstudio.com/docs/typescript/typescript-compiling#_using-newer-typescript-versions) para obtener más detalles sobre la administración de las versiones de TypeScript.",
+ "typescript.tsserver.enableRegionDiagnostics": "Habilita los diagnósticos basados en regiones en TypeScript. Requiere el uso de TypeScript 5.6+ en el área de trabajo.",
+ "typescript.tsserver.enableTracing": "Habilita el seguimiento del rendimiento del servidor TS en un directorio. Estos archivos de seguimiento se pueden usar para diagnosticar problemas de rendimiento del servidor TS. El registro puede contener rutas de acceso, código fuente e información potencialmente confidencial acerca del proyecto.",
+ "typescript.tsserver.log": "Habilita los registros del servidor TS a un archivo. Este registro se puede utilizar para diagnosticar problemas en el servidor TS. Este registro puede contener rutas de acceso, código fuente y posiblemente otra información sensitiva acerca del proyecto.",
+ "typescript.tsserver.pluginPaths": "Rutas de acceso adicionales para detectar complementos del servicio de lenguaje TypeScript.",
+ "typescript.tsserver.pluginPaths.item": "Ruta relativa o absoluta. La ruta de acceso relativa se resolverá contra las carpetas del área de trabajo.",
+ "typescript.tsserver.trace": "Habilita el seguimiento de mensajes al servidor TS. Este seguimiento se puede utilizar para diagnosticar problemas en el servidor TS. Este seguimiento puede contener rutas de acceso, código fuente y posiblemente otra información sensitiva acerca del proyecto.",
+ "typescript.updateImportsOnFileMove.enabled": "Habilita o deshabilita la actualización automática de las rutas de acceso de importación al mover un archivo o cambiarle el nombre en VS Code.",
+ "typescript.updateImportsOnFileMove.enabled.always": "Actualizar siempre las rutas de acceso automáticamente.",
+ "typescript.updateImportsOnFileMove.enabled.never": "No cambiar nunca el nombre de las rutas de acceso y no preguntar.",
+ "typescript.updateImportsOnFileMove.enabled.prompt": "Preguntar cada vez que se cambie de nombre.",
+ "typescript.useTsgo": "Deshabilita las características de los lenguajes TypeScript y JavaScript para permitir el uso de la extensión experimental Go de TypeScript. Es necesario que Go de TypeScript se encuentre instalado y configurado. Es necesario volver a cargar las extensiones después de cambiar esta configuración.",
+ "typescript.validate.enable": "Habilita o deshabilita la validación de TypeScript.",
+ "typescript.workspaceSymbols.excludeLibrarySymbols": "Excluya los símbolos que proceden de los archivos de biblioteca en los resultados de `Ir a símbolo del área de trabajo`. Requiere el uso de TypeScript 5.3+ en el área de trabajo.",
+ "typescript.workspaceSymbols.scope": "Controla los archivos que busca [ir al símbolo en el área de trabajo](https://code.visualstudio.com/docs/editor/editingevolved#_open-symbol-by-name).",
+ "typescript.workspaceSymbols.scope.allOpenProjects": "Busque símbolos en todos los proyectos de JavaScript o TypeScript abiertos.",
+ "typescript.workspaceSymbols.scope.currentProject": "Busque solo símbolos en el proyecto de JavaScript o TypeScript actual.",
+ "virtualWorkspaces": "En los espacios de trabajo virtuales, no se admite la resolución y búsqueda de referencias entre archivos.",
+ "walkthroughs.nodejsWelcome.debugJsFile.altText": "Depure y ejecute el código JavaScript en Node.js con Visual Studio Code.",
+ "walkthroughs.nodejsWelcome.debugJsFile.description": "Una vez instalado Node.js, puede ejecutar programas de JavaScript en un terminal escribiendo “node your-file-name.js”\r\nOtra manera fácil de ejecutar programas Node.js es mediante el depurador de VS Code, que le permite ejecutar el código, pausar en diferentes puntos y ayudarle a comprender lo que sucede paso a paso.\r\n[Iniciar depuración](command:javascript-walkthrough.commands.debugJsFile)",
+ "walkthroughs.nodejsWelcome.debugJsFile.title": "Ejecución y depuración de JavaScript",
+ "walkthroughs.nodejsWelcome.description": "Saque el máximo partido de la experiencia de JavaScript de primera clase de Visual Studio Code.",
+ "walkthroughs.nodejsWelcome.downloadNode.forLinux.description": "Node.js es una manera sencilla de ejecutar código JavaScript. Puede usarlo para compilar rápidamente aplicaciones y servidores de línea de comandos. También incluye npm, un administrador de paquetes que facilita la reutilización y el uso compartido del código JavaScript.\r\n[Instalar Node.js](https://nodejs.org/en/download/package-manager/)",
+ "walkthroughs.nodejsWelcome.downloadNode.forLinux.title": "Instalar Node.js",
+ "walkthroughs.nodejsWelcome.downloadNode.forMacOrWindows.description": "Node.js es una manera sencilla de ejecutar código JavaScript. Puede usarlo para compilar rápidamente aplicaciones y servidores de línea de comandos. También incluye npm, un administrador de paquetes que facilita la reutilización y el uso compartido del código JavaScript.\r\n[Instalar Node.js](https://nodejs.org/en/download/)",
+ "walkthroughs.nodejsWelcome.downloadNode.forMacOrWindows.title": "Instalar Node.js",
+ "walkthroughs.nodejsWelcome.learnMoreAboutJs.altText": "Obtenga más información sobre JavaScript y Node.js en Visual Studio Code.",
+ "walkthroughs.nodejsWelcome.learnMoreAboutJs.description": "¿Quiere familiarizarse más con JavaScript, Node.js y VS Code? Asegúrese de consultar nuestra documentación.\r\nTenemos muchos recursos para aprender [JavaScript](https://code.visualstudio.com/docs/nodejs/working-with-javascript) y [Node.js](https://code.visualstudio.com/docs/nodejs/nodejs-tutorial).\r\n\r\n[Más información](https://code.visualstudio.com/docs/nodejs/nodejs-tutorial)",
+ "walkthroughs.nodejsWelcome.learnMoreAboutJs.title": "Explorar más",
+ "walkthroughs.nodejsWelcome.makeJsFile.description": "Vamos a escribir nuestro primer archivo JavaScript. Tendremos que crear un archivo y guardarlo con la extensión “.js” al final del nombre de archivo.\r\n[Crear un archivo JavaScript](command:javascript-walkthrough.commands.createJsFile)",
+ "walkthroughs.nodejsWelcome.makeJsFile.title": "Crear un archivo JavaScript",
+ "walkthroughs.nodejsWelcome.title": "Introducción a JavaScript y Node.js",
+ "workspaceTrust": "La extensión requiere la confianza del espacio de trabajo cuando se utiliza la versión del espacio de trabajo porque ejecuta el código especificado por el espacio de trabajo."
+ }
+ }
+}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-es/translations/extensions/vscode.typescript.i18n.json b/i18n/vscode-language-pack-es/translations/extensions/vscode.typescript.i18n.json
index 3a5fa57222..a0705648fd 100644
--- a/i18n/vscode-language-pack-es/translations/extensions/vscode.typescript.i18n.json
+++ b/i18n/vscode-language-pack-es/translations/extensions/vscode.typescript.i18n.json
@@ -9,8 +9,8 @@
"version": "1.0.0",
"contents": {
"package": {
- "displayName": "Elementos básicos del lenguaje TypeScript",
- "description": "Proporciona fragmentos de código, resaltado de sintaxis, correspondencia de corchetes y plegado de código en archivos de TypeScript."
+ "description": "Proporciona fragmentos de código, resaltado de sintaxis, correspondencia de corchetes y plegado de código en archivos de TypeScript.",
+ "displayName": "Elementos básicos del lenguaje TypeScript"
}
}
}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-es/translations/extensions/vscode.vb.i18n.json b/i18n/vscode-language-pack-es/translations/extensions/vscode.vb.i18n.json
index e85ee97585..ed3ea4f386 100644
--- a/i18n/vscode-language-pack-es/translations/extensions/vscode.vb.i18n.json
+++ b/i18n/vscode-language-pack-es/translations/extensions/vscode.vb.i18n.json
@@ -9,8 +9,8 @@
"version": "1.0.0",
"contents": {
"package": {
- "displayName": "Conceptos básicos del lenguaje VB",
- "description": "Proporciona fragmentos de código, resaltado de sintaxis, correspondencia de corchetes y plegado de código en archivos de Visual Basic."
+ "description": "Proporciona fragmentos de código, resaltado de sintaxis, correspondencia de corchetes y plegado de código en archivos de Visual Basic.",
+ "displayName": "Conceptos básicos del lenguaje VB"
}
}
}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-es/translations/extensions/vscode.vscode-theme-seti.i18n.json b/i18n/vscode-language-pack-es/translations/extensions/vscode.vscode-theme-seti.i18n.json
index 2b80562575..6b38c9011b 100644
--- a/i18n/vscode-language-pack-es/translations/extensions/vscode.vscode-theme-seti.i18n.json
+++ b/i18n/vscode-language-pack-es/translations/extensions/vscode.vscode-theme-seti.i18n.json
@@ -9,8 +9,8 @@
"version": "1.0.0",
"contents": {
"package": {
- "displayName": "Tema del icono de archivo Seti",
"description": "Un tema de icono de archivo basados en Seti IU",
+ "displayName": "Tema del icono de archivo Seti",
"themeLabel": "Seti (Visual Studio Code)"
}
}
diff --git a/i18n/vscode-language-pack-es/translations/extensions/vscode.xml.i18n.json b/i18n/vscode-language-pack-es/translations/extensions/vscode.xml.i18n.json
index afedc8829a..73f873161a 100644
--- a/i18n/vscode-language-pack-es/translations/extensions/vscode.xml.i18n.json
+++ b/i18n/vscode-language-pack-es/translations/extensions/vscode.xml.i18n.json
@@ -9,8 +9,8 @@
"version": "1.0.0",
"contents": {
"package": {
- "displayName": "Conceptos básicos del lenguaje XML",
- "description": "Proporciona resaltado de sintaxis y correspondencia de corchetes en archivos XML."
+ "description": "Proporciona resaltado de sintaxis y correspondencia de corchetes en archivos XML.",
+ "displayName": "Conceptos básicos del lenguaje XML"
}
}
}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-es/translations/extensions/vscode.yaml.i18n.json b/i18n/vscode-language-pack-es/translations/extensions/vscode.yaml.i18n.json
index 818c103962..53711f2e87 100644
--- a/i18n/vscode-language-pack-es/translations/extensions/vscode.yaml.i18n.json
+++ b/i18n/vscode-language-pack-es/translations/extensions/vscode.yaml.i18n.json
@@ -9,8 +9,8 @@
"version": "1.0.0",
"contents": {
"package": {
- "displayName": "Conceptos básicos del lenguaje YAML",
- "description": "Proporciona resaltado de sintaxis y correspondencia de corchetes en archivos de YAML."
+ "description": "Proporciona resaltado de sintaxis y correspondencia de corchetes en archivos de YAML.",
+ "displayName": "Conceptos básicos del lenguaje YAML"
}
}
}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-es/translations/extensions/xml.i18n.json b/i18n/vscode-language-pack-es/translations/extensions/xml.i18n.json
deleted file mode 100644
index 73f873161a..0000000000
--- a/i18n/vscode-language-pack-es/translations/extensions/xml.i18n.json
+++ /dev/null
@@ -1,16 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "package": {
- "description": "Proporciona resaltado de sintaxis y correspondencia de corchetes en archivos XML.",
- "displayName": "Conceptos básicos del lenguaje XML"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-es/translations/extensions/yaml.i18n.json b/i18n/vscode-language-pack-es/translations/extensions/yaml.i18n.json
deleted file mode 100644
index 53711f2e87..0000000000
--- a/i18n/vscode-language-pack-es/translations/extensions/yaml.i18n.json
+++ /dev/null
@@ -1,16 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "package": {
- "description": "Proporciona resaltado de sintaxis y correspondencia de corchetes en archivos de YAML.",
- "displayName": "Conceptos básicos del lenguaje YAML"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-es/translations/main.i18n.json b/i18n/vscode-language-pack-es/translations/main.i18n.json
index 842cf0fefa..5a328905ef 100644
--- a/i18n/vscode-language-pack-es/translations/main.i18n.json
+++ b/i18n/vscode-language-pack-es/translations/main.i18n.json
@@ -22,6 +22,9 @@
"dialogWarningMessage": "Advertencia",
"ok": "Aceptar"
},
+ "vs/base/browser/ui/dropdown/dropdownActionViewItem": {
+ "moreActions": "Más Acciones..."
+ },
"vs/base/browser/ui/findinput/findInput": {
"defaultLabel": "entrada"
},
@@ -34,14 +37,21 @@
"defaultLabel": "entrada",
"label.preserveCaseToggle": "Conservar may/min"
},
- "vs/base/browser/ui/iconLabel/iconLabelHover": {
- "iconLabel.loading": "Cargando..."
+ "vs/base/browser/ui/hover/hoverWidget": {
+ "acessibleViewHint": "Inspeccione esto en la vista accesible con {0}.",
+ "acessibleViewHintNoKbOpen": "Inspeccione esto en la vista accesible mediante el comando Abrir vista accesible, que actualmente no se puede desencadenar mediante el enlace de teclado."
+ },
+ "vs/base/browser/ui/icons/iconSelectBox": {
+ "iconSelect.noResults": "Ningún resultado",
+ "iconSelect.placeholder": "Buscar iconos"
},
"vs/base/browser/ui/inputbox/inputBox": {
"alertErrorMessage": "Error: {0}",
"alertInfoMessage": "Información: {0}",
"alertWarningMessage": "Advertencia: {0}",
- "history.inputbox.hint": "para el historial"
+ "clearedInput": "Entrada borrada",
+ "history.inputbox.hint.suffix.inparens": " ({0} para el historial)",
+ "history.inputbox.hint.suffix.noparens": " o {0} para el historial"
},
"vs/base/browser/ui/keybindingLabel/keybindingLabel": {
"unbound": "Sin enlazar"
@@ -62,10 +72,17 @@
"vs/base/browser/ui/tree/abstractTree": {
"close": "Cerrar",
"filter": "Filtrar",
- "not found": "No se encontraron elementos.",
+ "foundResults": "{0} resultados",
+ "fuzzySearch": "Coincidencia aproximada",
+ "not found": "No se encontraron resultados.",
+ "replFindNoResults": "No hay resultados",
"type to filter": "Escriba texto para filtrar",
"type to search": "Escriba texto para buscar"
},
+ "vs/base/browser/ui/tree/asyncDataTree": {
+ "type to filter": "Escriba para filtrar",
+ "type to search": "Escriba para buscar"
+ },
"vs/base/browser/ui/tree/treeDefaults": {
"collapse all": "Contraer todo"
},
@@ -126,7 +143,18 @@
"date.fromNow.years.singular": "{0} año",
"date.fromNow.years.singular.ago": "hace {0} año",
"date.fromNow.years.singular.ago.fullWord": "hace {0} año",
- "date.fromNow.years.singular.fullWord": "{0} año"
+ "date.fromNow.years.singular.fullWord": "{0} año",
+ "duration.d": "{0} días",
+ "duration.h": "{0} horas",
+ "duration.h.full": "{0} horas",
+ "duration.m": "{0} minutos",
+ "duration.m.full": "{0} minutos",
+ "duration.ms": "{0} ms",
+ "duration.ms.full": "{0} milisegundos",
+ "duration.s": "{0} s",
+ "duration.s.full": "{0} segundos",
+ "today": "Hoy",
+ "yesterday": "Ayer"
},
"vs/base/common/errorMessage": {
"error.defaultMessage": "Se ha producido un error desconocido. Consulte el registro para obtener más detalles.",
@@ -159,35 +187,28 @@
"windowsKey": "Windows",
"windowsKey.long": "Windows"
},
- "vs/base/common/platform": {
- "ensureLoaderPluginIsLoaded": "_"
- },
- "vs/base/node/processes": {
- "TaskRunner.UNC": "No se puede ejecutar un comando shell en una unidad UNC. "
+ "vs/base/common/policy": {
+ "extensionsConfigurationTitle": "Extensiones",
+ "interactiveSessionConfigurationTitle": "Chat",
+ "telemetryConfigurationTitle": "Telemetría",
+ "terminalIntegratedConfigurationTitle": "Terminal integrado",
+ "updateConfigurationTitle": "Actualizar"
},
"vs/base/node/zip": {
"incompleteExtract": "Incompleta. Se encontró {0} de {1} entradas",
"invalid file": "Error al extraer {0}. Archivo no válido.",
"notFound": "{0} no se encontró dentro del archivo zip."
},
- "vs/base/parts/quickinput/browser/quickInput": {
- "custom": "Personalizado",
- "inputModeEntry": "Presione \"Entrar\" para confirmar su entrada o \"Esc\" para cancelar",
- "inputModeEntryDescription": "{0} (Presione \"Entrar\" para confirmar o \"Esc\" para cancelar)",
- "ok": "Aceptar",
- "quickInput.back": "Atrás",
- "quickInput.backWithKeybinding": "Atrás ({0})",
- "quickInput.checkAll": "Activar o desactivar todas las casillas",
- "quickInput.countSelected": "{0} seleccionados",
- "quickInput.steps": "{0}/{1}",
- "quickInput.visibleCount": "{0} resultados",
- "quickInputBox.ariaLabel": "Escriba para restringir los resultados."
+ "vs/editor/browser/controller/editContext/native/screenReaderSupport": {
+ "editor": "editor"
},
- "vs/base/parts/quickinput/browser/quickInputList": {
- "quickInput": "Entrada rápida"
+ "vs/editor/browser/controller/editContext/screenReaderUtils": {
+ "accessibilityModeOff": "No se puede acceder al editor en este momento.",
+ "accessibilityOffAriaLabel": "{0} Para habilitar el modo optimizado para lectores de pantalla, use {1}",
+ "accessibilityOffAriaLabelNoKb": "{0} Para habilitar el modo optimizado para lector de pantalla, abra la selección rápida con {1} y ejecute el comando Alternar modo de accesibilidad del lector de pantalla, que actualmente no se puede desencadenar mediante el teclado.",
+ "accessibilityOffAriaLabelNoKbs": "{0} Para asignar un enlace de teclado para el comando Alternar modo de accesibilidad del lector de pantalla, acceda al editor de enlaces de teclado con {1} y ejecútelo."
},
- "vs/editor/browser/controller/textAreaHandler": {
- "accessibilityOffAriaLabel": "El editor no es accesible en este momento. Pulse {0} para ver las opciones.",
+ "vs/editor/browser/controller/editContext/textArea/textAreaEditContext": {
"editor": "editor"
},
"vs/editor/browser/coreCommands": {
@@ -202,22 +223,40 @@
"selectAll": "Seleccionar todo",
"undo": "Deshacer"
},
- "vs/editor/browser/widget/codeEditorWidget": {
- "cursors.maximum": "El número de cursores se ha limitado a {0}."
+ "vs/editor/browser/gpu/viewGpuContext": {
+ "editor.dom.render": "Uso de la representación basada en DOM"
},
- "vs/editor/browser/widget/diffEditorWidget": {
- "diff.tooLarge": "Los archivos no se pueden comparar porque uno de ellos es demasiado grande.",
- "diffInsertIcon": "Decoración de línea para las inserciones en el editor de diferencias.",
- "diffRemoveIcon": "Decoración de línea para las eliminaciones en el editor de diferencias."
+ "vs/editor/browser/services/inlineCompletionsService": {
+ "action.inlineSuggest.cancelSnooze": "Cancelar posponer sugerencias insertadas",
+ "action.inlineSuggest.snooze": "Posponer sugerencias insertadas",
+ "inlineCompletions.snoozed": "Si las finalizaciones insertadas están pospuestas actualmente",
+ "snooze.placeholder": "Seleccionar la duración de la pausa para las sugerencias insertadas"
+ },
+ "vs/editor/browser/widget/codeEditor/codeEditorWidget": {
+ "cursors.maximum": "El número de cursores se ha limitado a {0}. Considere la posibilidad de usar [buscar y reemplazar](https://code.visualstudio.com/docs/editor/codebasics#_find-and-replace) para realizar cambios mayores o aumentar la configuración del límite de varios cursores del editor.",
+ "goToSetting": "Aumentar el límite de varios cursores"
},
- "vs/editor/browser/widget/diffReview": {
+ "vs/editor/browser/widget/diffEditor/commands": {
+ "accessibleDiffViewer": "Visor de diferencias accesibles",
+ "collapseAllUnchangedRegions": "Contraer todas las regiones sin cambios",
+ "diffEditor": "Editor de diferencias",
+ "editor.action.accessibleDiffViewer.next": "Ir a la siguiente diferencia",
+ "editor.action.accessibleDiffViewer.prev": "Ir a la diferencia anterior",
+ "exitCompareMove": "Salir de la comparación de movimientos",
+ "revert": "Revertir",
+ "showAllUnchangedRegions": "Mostrar todas las regiones sin cambios",
+ "switchSide": "Lado del conmutador",
+ "toggleCollapseUnchangedRegions": "Alternar contraer regiones sin cambios",
+ "toggleShowMovedCodeBlocks": "Alternar Mostrar bloques de código movidos",
+ "toggleUseInlineViewWhenSpaceIsLimited": "Alternar el uso de la vista insertada cuando el espacio es limitado"
+ },
+ "vs/editor/browser/widget/diffEditor/components/accessibleDiffViewer": {
+ "accessibleDiffViewerCloseIcon": "Icono de \"Cerrar\" en el visor de diferencias accesible.",
+ "accessibleDiffViewerInsertIcon": "Icono de \"Insertar\" en el visor de diferencias accesible.",
+ "accessibleDiffViewerRemoveIcon": "Icono de \"Quitar\" en el visor de diferencias accesible.",
+ "ariaLabel": "Visor de diferencias accesible. Utilice la flecha hacia arriba y hacia abajo para navegar.",
"blankLine": "vacío",
"deleteLine": "- {0} línea original {1}",
- "diffReviewCloseIcon": "Icono para \"Cerrar\" en la revisión de diferencias.",
- "diffReviewInsertIcon": "Icono para \"Insertar\" en la revisión de diferencias.",
- "diffReviewRemoveIcon": "Icono para \"Quitar\" en la revisión de diferencias.",
- "editor.action.diffReview.next": "Ir a la siguiente diferencia",
- "editor.action.diffReview.prev": "Ir a la diferencia anterior",
"equalLine": "{0} línea original {1} línea modificada {2}",
"header": "Diferencia {0} de {1}: línea original {2}, {3}, línea modificada {4}, {5}",
"insertLine": "+ {0} línea modificada {1}",
@@ -227,7 +266,10 @@
"one_line_changed": "1 línea cambiada",
"unchangedLine": "{0} línea sin cambios {1}"
},
- "vs/editor/browser/widget/inlineDiffMargin": {
+ "vs/editor/browser/widget/diffEditor/components/diffEditorEditors": {
+ "diff-aria-navigation-tip": " use {0} para abrir la ayuda de accesibilidad."
+ },
+ "vs/editor/browser/widget/diffEditor/components/diffEditorViewZones/inlineDiffDeletedCodeMargin": {
"diff.clipboard.copyChangedLineContent.label": "Copiar línea cambiada ({0})",
"diff.clipboard.copyChangedLinesContent.label": "Copiar líneas cambiadas",
"diff.clipboard.copyChangedLinesContent.single.label": "Copiar línea cambiada",
@@ -236,18 +278,76 @@
"diff.clipboard.copyDeletedLinesContent.single.label": "Copiar línea eliminada",
"diff.inline.revertChange.label": "Revertir este cambio"
},
+ "vs/editor/browser/widget/diffEditor/diffEditor.contribution": {
+ "Open Accessible Diff Viewer": "Abrir visor de diferencias accesibles",
+ "revertHunk": "Revertir bloque",
+ "revertSelection": "Revertir selección",
+ "showMoves": "Mostrar bloques de código movidos",
+ "useInlineViewWhenSpaceIsLimited": "Uso de la vista insertada cuando el espacio es limitado"
+ },
+ "vs/editor/browser/widget/diffEditor/features/hideUnchangedRegionsFeature": {
+ "diff.bottom": "Hacer clic o arrastrar para mostrar más abajo",
+ "diff.hiddenLines.expandAll": "Doble clic para desplegar",
+ "diff.hiddenLines.top": "Haga clic o arrastre para mostrar más arriba",
+ "foldUnchanged": "Plegar la región sin cambios",
+ "hiddenLines": "{0} líneas ocultas",
+ "showUnchangedRegion": "Mostrar región sin cambios"
+ },
+ "vs/editor/browser/widget/diffEditor/features/movedBlocksLinesFeature": {
+ "codeMovedFrom": "Código movido de la línea {0}-{1}",
+ "codeMovedFromWithChanges": "Código movido con cambios de la línea {0}-{1}",
+ "codeMovedTo": "Código movido a la línea {0}-{1}",
+ "codeMovedToWithChanges": "Código movido con cambios en la línea {0}-{1}"
+ },
+ "vs/editor/browser/widget/diffEditor/features/revertButtonsFeature": {
+ "revertChange": "Revertir el cambio",
+ "revertSelectedChanges": "Revertir los cambios seleccionados"
+ },
+ "vs/editor/browser/widget/diffEditor/registrations.contribution": {
+ "diffEditor.move.border": "Color del borde del texto que se movió en el editor de diferencias.",
+ "diffEditor.moveActive.border": "Color del borde de texto activo que se movió en el editor de diferencias.",
+ "diffEditor.unchangedRegionShadow": "Color de la sombra paralela en torno a los widgets de región sin cambios.",
+ "diffInsertIcon": "Decoración de línea para las inserciones en el editor de diferencias.",
+ "diffRemoveIcon": "Decoración de línea para las eliminaciones en el editor de diferencias."
+ },
+ "vs/editor/browser/widget/multiDiffEditor/colors": {
+ "multiDiffEditor.background": "Color de fondo del editor de diferencias de varios archivos",
+ "multiDiffEditor.border": "Color de borde del editor de diferencias de varios archivos",
+ "multiDiffEditor.headerBackground": "Color de fondo del encabezado del editor de diferencias"
+ },
+ "vs/editor/browser/widget/multiDiffEditor/multiDiffEditorWidgetImpl": {
+ "loading": "Cargando...",
+ "noChangedFiles": "No hay archivos modificados"
+ },
"vs/editor/common/config/editorConfigurationSchema": {
"codeLens": "Controla si el editor muestra CodeLens.",
- "detectIndentation": "Controla si \"#editor.tabSize#\" y \"#editor.insertSpaces#\" se detectarán automáticamente al abrir un archivo en función del contenido de este.",
+ "detectIndentation": "Controla si {0} y {1} se detectan automáticamente al abrir un archivo en función del contenido de este.",
+ "diffAlgorithm.advanced": "Usa el algoritmo de diferenciación avanzada.",
+ "diffAlgorithm.legacy": "Usa el algoritmo de diferenciación heredado.",
+ "editor.experimental.asyncTokenization": "Controla si la tokenización debe producirse de forma asincrónica en un rol de trabajo.",
+ "editor.experimental.asyncTokenizationLogging": "Controla si se debe registrar la tokenización asincrónica. Solo para depuración.",
+ "editor.experimental.asyncTokenizationVerification": "Controla si se debe comprobar la tokenización asincrónica con la tokenización en segundo plano heredada. Puede ralentizar la tokenización. Solo para depuración.",
+ "editor.experimental.preferTreeSitter.css": "Controla si el analizador de modelos de árbol debe activarse para CSS. Esto tendrá prioridad sobre `#editor.experimental.treeSitterTelemetry#` para CSS.",
+ "editor.experimental.preferTreeSitter.ini": "Controla si se debe activar el análisis del establecedor de árbol para ini. Esto tendrá prioridad sobre `#editor.experimental.treeSitterTelemetry#` para ini.",
+ "editor.experimental.preferTreeSitter.regex": "Controla si se debe activar el análisis del establecedor de árbol para regex. Esto tendrá prioridad sobre `#editor.experimental.treeSitterTelemetry#` para regex.",
+ "editor.experimental.preferTreeSitter.typescript": "Controla si se debe activar el análisis del establecedor de árbol para TypeScript. Esto tendrá prioridad sobre `#editor.experimental.treeSitterTelemetry#` para TypeScript.",
+ "editor.experimental.treeSitterTelemetry": "Controla si se debe activar el análisis del establecedor de árbol y recopilar telemetría. Tendrá prioridad establecer `#editor.experimental.preferTreeSitter#` para idiomas específicos.",
"editorConfigurationTitle": "Editor",
+ "hideUnchangedRegions.contextLineCount": "Controla cuántas líneas se usan como contexto al comparar regiones sin cambios.",
+ "hideUnchangedRegions.enabled": "Controla si el editor de diferencias muestra las regiones sin cambios.",
+ "hideUnchangedRegions.minimumLineCount": "Controla cuántas líneas se usan como mínimo para las regiones sin cambios.",
+ "hideUnchangedRegions.revealLineCount": "Controla cuántas líneas se usan para las regiones sin cambios.",
"ignoreTrimWhitespace": "Cuando está habilitado, el editor de diferencias omite los cambios en los espacios en blanco iniciales o finales.",
- "insertSpaces": "Insertar espacios al presionar \"TAB\". Este valor se invalida en función del contenido del archivo cuando \"#editor.detectIndentation#\" está activado. ",
+ "indentSize": "Número de espacios usados para la sangría o \"tabSize\" para usar el valor de \"#editor.tabSize#\". Esta configuración se invalida en función del contenido del archivo cuando \"#editor.detectIndentation#\" está activado.",
+ "insertSpaces": "Insertar espacios al presionar \"TAB\". Este valor se invalida en función del contenido del archivo cuando {0} está activado.",
"largeFileOptimizations": "Manejo especial para archivos grandes para desactivar ciertas funciones de memoria intensiva.",
"maxComputationTime": "Tiempo de espera en milisegundos después del cual se cancela el cálculo de diferencias. Utilice 0 para no usar tiempo de espera.",
"maxFileSize": "Tamaño máximo de archivo en MB para el que calcular diferencias. Use 0 para no limitar.",
"maxTokenizationLineLength": "Las lineas por encima de esta longitud no se tokenizarán por razones de rendimiento.",
+ "renderGutterMenu": "Cuando está habilitado, el editor de diferencias muestra un medianil especial para acciones de reversión y fase.",
"renderIndicators": "Controla si el editor de diferencias muestra los indicadores +/- para los cambios agregados o quitados.",
"renderMarginRevertIcon": "Cuando está habilitado, el editor de diferencias muestra flechas en su margen de glifo para revertir los cambios.",
+ "renderSideBySideInlineBreakpoint": "Si el ancho del editor de diferencias es menor que este valor, se usa la vista insertada.",
"schema.brackets": "Define los corchetes que aumentan o reducen la sangría.",
"schema.closeBracket": "Secuencia de cadena o corchete de cierre.",
"schema.colorizedBracketPairs": "Define los pares de corchetes coloreados por su nivel de anidamiento si está habilitada la coloración de par de corchetes.",
@@ -256,64 +356,86 @@
"semanticHighlighting.enabled": "Controla si se muestra semanticHighlighting para los idiomas que lo admiten.",
"semanticHighlighting.false": "El resaltado semántico está deshabilitado para todos los temas de color.",
"semanticHighlighting.true": "El resaltado semántico está habilitado para todos los temas de color.",
+ "showEmptyDecorations": "Controla si el editor de diferencias muestra decoraciones vacías para ver dónde se insertan o eliminan los caracteres.",
+ "showMoves": "Controlar si el editor de diferencias debe mostrar los movimientos de código detectados.",
"sideBySide": "Controla si el editor de diferencias muestra las diferencias en paralelo o alineadas.",
"stablePeek": "Mantiene abiertos los editores interactivos, incluso al hacer doble clic en su contenido o presionar \"Escape\".",
- "tabSize": "El número de espacios a los que equivale una tabulación. Este valor se invalida en función del contenido del archivo cuando \"#editor.detectIndentation#\" está activado.",
+ "tabSize": "El número de espacios a los que equivale una tabulación. Este valor se invalida en función del contenido del archivo cuando {0} está activado.",
"trimAutoWhitespace": "Quitar el espacio en blanco final autoinsertado.",
- "wordBasedSuggestions": "Habilita sugerencias basadas en palabras.",
- "wordBasedSuggestionsMode": "Controla de qué documentos se calculan las finalizaciones basadas en palabras.",
- "wordBasedSuggestionsMode.allDocuments": "Sugerir palabras de todos los documentos abiertos.",
- "wordBasedSuggestionsMode.currentDocument": "Sugerir palabras solo del documento activo.",
- "wordBasedSuggestionsMode.matchingDocuments": "Sugerir palabras de todos los documentos abiertos del mismo idioma.",
- "wordWrap.inherit": "Las líneas se ajustarán en función de la configuración de \"#editor.wordWrap#\".",
+ "useInlineViewWhenSpaceIsLimited": "Si está habilitada y el ancho del editor es demasiado pequeño, se usa la vista en línea.",
+ "useTrueInlineView": "Si está habilitado y el editor usa la vista insertada, los cambios de palabra se representan en línea.",
+ "wordBasedSuggestions": "Controla si las finalizaciones se deben calcular en función de las palabras del documento y desde qué documentos se calculan.",
+ "wordBasedSuggestions.allDocuments": "Sugerir palabras de todos los documentos abiertos.",
+ "wordBasedSuggestions.currentDocument": "Sugerir palabras solo del documento activo.",
+ "wordBasedSuggestions.matchingDocuments": "Sugerir palabras de todos los documentos abiertos del mismo idioma.",
+ "wordBasedSuggestions.off": "Desactivar sugerencias basadas en Word.",
+ "wordWrap.inherit": "Las líneas se ajustarán en función de la configuración de {0}.",
"wordWrap.off": "Las líneas no se ajustarán nunca.",
"wordWrap.on": "Las líneas se ajustarán en el ancho de la ventanilla."
},
"vs/editor/common/config/editorOptions": {
- "acceptSuggestionOnCommitCharacter": "Controla si las sugerencias deben aceptarse con caracteres de confirmación. Por ejemplo, en JavaScript, el punto y coma (`; `) puede ser un carácter de confirmación que acepta una sugerencia y escribe ese carácter.",
+ "acceptSuggestionOnCommitCharacter": "Controla si se deben aceptar sugerencias en los caracteres de confirmación. Por ejemplo, en Javascript, el punto y coma (\";\") puede ser un carácter de confirmación que acepta una sugerencia y escribe ese carácter.",
"acceptSuggestionOnEnter": "Controla si las sugerencias deben aceptarse con \"Entrar\", además de \"TAB\". Ayuda a evitar la ambigüedad entre insertar nuevas líneas o aceptar sugerencias.",
"acceptSuggestionOnEnterSmart": "Aceptar solo una sugerencia con \"Entrar\" cuando realiza un cambio textual.",
"accessibilityPageSize": "Controla el número de líneas del editor que pueden ser leídas por un lector de pantalla a la vez. Cuando detectamos un lector de pantalla, fijamos automáticamente el valor por defecto en 500. Advertencia: esto tiene una implicación de rendimiento para números mayores que el predeterminado.",
- "accessibilitySupport": "Controla si el editor se debe ejecutar en un modo optimizado para lectores de pantalla. Si se activa, se deshabilitará el ajuste de líneas.",
- "accessibilitySupport.auto": "El editor usará API de plataforma para detectar cuándo está conectado un lector de pantalla.",
- "accessibilitySupport.off": "El editor nunca se optimizará para su uso con un lector de pantalla.",
- "accessibilitySupport.on": "El editor se optimizará de forma permanente para su uso con un lector de pantalla. El ajuste de líneas se deshabilitará.",
+ "accessibilitySupport": "Controla si la interfaz de usuario debe ejecutarse en un modo en el que esté optimizada para lectores de pantalla.",
+ "accessibilitySupport.auto": "Usar las API de la plataforma para detectar cuándo se conecta un lector de pantalla.",
+ "accessibilitySupport.off": "Supongamos que no hay un lector de pantalla conectado.",
+ "accessibilitySupport.on": "Optimizar para usar con un lector de pantalla.",
+ "allowVariableFonts": "Controla si se permite el uso de fuentes variables en el editor.",
+ "allowVariableFontsInAccessibilityMode": "Controla si se permite el uso de fuentes variables en el editor en el modo de accesibilidad.",
+ "allowVariableLineHeights": "Controla si se permite el uso de alto de línea variable en el editor.",
"alternativeDeclarationCommand": "Id. de comando alternativo que se está ejecutando cuando el resultado de \"Ir a declaración\" es la ubicación actual.",
"alternativeDefinitionCommand": "Identificador de comando alternativo que se ejecuta cuando el resultado de \"Ir a definición\" es la ubicación actual.",
"alternativeImplementationCommand": "Id. de comando alternativo que se está ejecutando cuando el resultado de \"Ir a implementación\" es la ubicación actual.",
"alternativeReferenceCommand": "Identificador de comando alternativo que se ejecuta cuando el resultado de \"Ir a referencia\" es la ubicación actual.",
"alternativeTypeDefinitionCommand": "Id. de comando alternativo que se está ejecutando cuando el resultado de \"Ir a definición de tipo\" es la ubicación actual.",
"autoClosingBrackets": "Controla si el editor debe cerrar automáticamente los corchetes después de que el usuario agregue un corchete de apertura.",
+ "autoClosingComments": "Controla si el editor debe cerrar automáticamente los comentarios después de que el usuario agregue un comentario de apertura.",
"autoClosingDelete": "Controla si el editor debe quitar los corchetes o las comillas de cierre adyacentes al eliminar.",
"autoClosingOvertype": "Controla si el editor debe escribir entre comillas o corchetes.",
"autoClosingQuotes": "Controla si el editor debe cerrar automáticamente las comillas después de que el usuario agrega uma comilla de apertura.",
"autoIndent": "Controla si el editor debe ajustar automáticamente la sangría mientras los usuarios escriben, pegan, mueven o sangran líneas.",
+ "autoIndentOnPaste": "Controla si el editor debe aplicar sangría automática automáticamente.",
+ "autoIndentOnPasteWithinString": "Controla si el editor deberá aplicar automáticamente sangría automática al contenido pegado cuando se pegue dentro de una cadena. Esto surte efecto cuando autoIndentOnPaste es verdadero.",
"autoSurround": "Controla si el editor debe rodear automáticamente las selecciones al escribir comillas o corchetes.",
"bracketPairColorization.enabled": "Controla si está habilitada o no la coloración de pares de corchetes. Use {0} para invalidar los colores de resaltado de corchete.",
"bracketPairColorization.independentColorPoolPerBracketType": "Controla si cada tipo de corchete tiene su propio grupo de colores independiente.",
- "codeActions": "Habilita la bombilla de acción de código en el editor.",
"codeLens": "Controla si el editor muestra CodeLens.",
"codeLensFontFamily": "Controla la familia de fuentes para CodeLens.",
- "codeLensFontSize": "Controla el tamaño de fuente de CodeLens en píxeles. Cuando se establece en \"0\", se usa el 90 % de \"#editor.fontSize#\".",
+ "codeLensFontSize": "Controla el tamaño de fuente de CodeLens en píxeles. Cuando se establece en 0, se usa el 90 % de \"#editor.fontSize#\".",
+ "colorDecoratorActivatedOn": "Controla la condición para que un selector de colores aparezca de un decorador de color.",
"colorDecorators": "Controla si el editor debe representar el Selector de colores y los elementos Decorator de color en línea.",
+ "colorDecoratorsLimit": "Controla el número máximo de decoradores de color que se pueden representar en un editor a la vez.",
"columnSelection": "Habilite que la selección con el mouse y las teclas esté realizando la selección de columnas.",
"comments.ignoreEmptyLines": "Controla si las líneas vacías deben ignorarse con la opción de alternar, agregar o quitar acciones para los comentarios de línea.",
"comments.insertSpace": "Controla si se inserta un carácter de espacio al comentar.",
"copyWithSyntaxHighlighting": "Controla si el resaltado de sintaxis debe ser copiado al portapapeles.",
"cursorBlinking": "Controla el estilo de animación del cursor.",
+ "cursorHeight": "Controla la altura del cursor cuando \"#editor.cursorStyle#\" se establece en \"line\". La altura máxima del cursor depende de la altura de la línea.",
"cursorSmoothCaretAnimation": "Controla si la animación suave del cursor debe estar habilitada.",
- "cursorStyle": "Controla el estilo del cursor.",
- "cursorSurroundingLines": "Controla el número mínimo de líneas iniciales y finales visibles que rodean al cursor. En algunos otros editores, se conoce como \"scrollOff\" o \"scrollOffset\".",
- "cursorSurroundingLinesStyle": "Controla cuando se debe aplicar \"cursorSurroundingLines\".",
+ "cursorSmoothCaretAnimation.explicit": "La animación de símbolo de intercalación suave solo se habilita cuando el usuario mueve el cursor con un gesto explícito.",
+ "cursorSmoothCaretAnimation.off": "La animación del símbolo de intercalación suave está deshabilitada.",
+ "cursorSmoothCaretAnimation.on": "La animación de símbolo de intercalación suave siempre está habilitada.",
+ "cursorStyle": "Controla el estilo del cursor en el modo de entrada de inserción.",
+ "cursorSurroundingLines": "Controla el número mínimo de líneas iniciales visibles (mínimo 0) y líneas finales (mínimo 1) que rodean el cursor. Se conoce como \"scrollOff\" o \"scrollOffset\" en otros editores.",
+ "cursorSurroundingLinesStyle": "Controla cuándo se debe aplicar '#editor.cursorSurroundingLines#'.",
"cursorSurroundingLinesStyle.all": "\"cursorSurroundingLines\" se aplica siempre.",
"cursorSurroundingLinesStyle.default": "Solo se aplica \"cursorSurroundingLines\" cuando se desencadena mediante el teclado o la API.",
"cursorWidth": "Controla el ancho del cursor cuando \"#editor.cursorStyle#\" se establece en \"line\".",
+ "defaultColorDecorators": "Controla si las decoraciones de color insertadas deben mostrarse con el proveedor de colores del documento predeterminado.",
"definitionLinkOpensInPeek": "Controla si el gesto del mouse Ir a definición siempre abre el widget interactivo.",
"deprecated": "Esta configuración está en desuso. Use configuraciones separadas como \"editor.suggest.showKeyword\" o \"editor.suggest.showSnippets\" en su lugar.",
"dragAndDrop": "Controla si el editor debe permitir mover las selecciones mediante arrastrar y colocar.",
- "dropIntoEditor.enabled": "Controls whether you can drag and drop a file into a text editor by holding down `shift` (instead of opening the file in an editor).",
+ "dropIntoEditor.enabled": "Controla si puede arrastrar y colocar un archivo en un editor de texto manteniendo presionada la tecla \"Mayús\" (en lugar de abrir el archivo en un editor).",
+ "dropIntoEditor.showDropSelector": "Controla si se muestra un widget al colocar archivos en el editor. Este widget le permite controlar cómo se coloca el archivo.",
+ "dropIntoEditor.showDropSelector.afterDrop": "Muestra el widget del selector de colocación después de colocar un archivo en el editor.",
+ "dropIntoEditor.showDropSelector.never": "No mostrar nunca el widget del selector de colocación. En su lugar, siempre se usa el proveedor de colocación predeterminado.",
+ "editContext": "Establece si se debe usar la API de EditContext en lugar del cuadro de texto para activar la entrada en el editor.",
"editor.autoClosingBrackets.beforeWhitespace": "Cerrar automáticamente los corchetes cuando el cursor esté a la izquierda de un espacio en blanco.",
"editor.autoClosingBrackets.languageDefined": "Utilizar las configuraciones del lenguaje para determinar cuándo cerrar los corchetes automáticamente.",
+ "editor.autoClosingComments.beforeWhitespace": "Cerrar automáticamente los comentarios solo cuando el cursor esté a la izquierda de un espacio en blanco.",
+ "editor.autoClosingComments.languageDefined": "Utilice las configuraciones de idioma para determinar cuándo cerrar los comentarios automáticamente.",
"editor.autoClosingDelete.auto": "Quite los corchetes o las comillas de cierre adyacentes solo si se insertaron automáticamente.",
"editor.autoClosingOvertype.auto": "Escriba en las comillas o los corchetes solo si se insertaron automáticamente.",
"editor.autoClosingQuotes.beforeWhitespace": "Cerrar automáticamente las comillas cuando el cursor esté a la izquierda de un espacio en blanco. ",
@@ -326,15 +448,24 @@
"editor.autoSurround.brackets": "Envolver con corchetes, pero no con comillas.",
"editor.autoSurround.languageDefined": "Use las configuraciones de idioma para determinar cuándo delimitar las selecciones automáticamente.",
"editor.autoSurround.quotes": "Envolver con comillas, pero no con corchetes.",
+ "editor.colorDecoratorActivatedOn.click": "Hacer que el selector de colores aparezca al hacer clic en el decorador de color",
+ "editor.colorDecoratorActivatedOn.clickAndHover": "Hacer que el selector de colores aparezca tanto al hacer clic como al mantener el puntero sobre el decorador de color",
+ "editor.colorDecoratorActivatedOn.hover": "Hacer que el selector de colores aparezca al pasar el puntero sobre el decorador de color",
+ "editor.defaultColorDecorators.always": "Mostrar siempre los elementos decorator de color predeterminados.",
+ "editor.defaultColorDecorators.auto": "Muestra los elementos Decorator de color predeterminados solo cuando ninguna extensión proporciona elementos Decorator de colores.",
+ "editor.defaultColorDecorators.never": "No mostrar nunca los elementos decorator de color predeterminados.",
"editor.editor.gotoLocation.multipleDeclarations": "Controla el comportamiento del comando \"Ir a declaración\" cuando existen varias ubicaciones de destino.",
"editor.editor.gotoLocation.multipleDefinitions": "Controla el comportamiento del comando \"Ir a definición\" cuando existen varias ubicaciones de destino.",
"editor.editor.gotoLocation.multipleImplemenattions": "Controla el comportamiento del comando \"Ir a implementaciones\" cuando existen varias ubicaciones de destino.",
"editor.editor.gotoLocation.multipleReferences": "Controla el comportamiento del comando \"Ir a referencias\" cuando existen varias ubicaciones de destino.",
"editor.editor.gotoLocation.multipleTypeDefinitions": "Controla el comportamiento del comando \"Ir a definición de tipo\" cuando existen varias ubicaciones de destino.",
- "editor.experimental.stickyScroll": "Shows the nested current scopes during the scroll at the top of the editor.",
"editor.find.autoFindInSelection.always": "Activar siempre Buscar en selección automáticamente.",
"editor.find.autoFindInSelection.multiline": "Activar Buscar en la selección automáticamente cuando se seleccionen varias líneas de contenido.",
"editor.find.autoFindInSelection.never": "No activar nunca Buscar en selección automáticamente (predeterminado).",
+ "editor.find.history.never": "No almacene el historial de búsqueda desde el widget de búsqueda.",
+ "editor.find.history.workspace": "Almacenar el historial de búsqueda en el área de trabajo activa",
+ "editor.find.replaceHistory.never": "No almacene el historial del widget de reemplazo.",
+ "editor.find.replaceHistory.workspace": "Almacenar el historial de reemplazos en el área de trabajo activa",
"editor.find.seedSearchStringFromSelection.always": "Siempre inicializar la cadena de búsqueda desde la selección del editor, incluida la palabra en la posición del cursor.",
"editor.find.seedSearchStringFromSelection.never": "Nunca inicializar la cadena de búsqueda desde la selección del editor.",
"editor.find.seedSearchStringFromSelection.selection": "Solo inicializar la cadena de búsqueda desde la selección del editor.",
@@ -356,10 +487,20 @@
"editor.guides.highlightActiveIndentation.false": "No resalta la guía de sangría activa.",
"editor.guides.highlightActiveIndentation.true": "Resalta la guía de sangría activa.",
"editor.guides.indentation": "Controla si el editor debe representar guías de sangría.",
- "editor.inlayHints.off": "Las sugerencias de incrustación están deshabilitadas",
- "editor.inlayHints.offUnlessPressed": "Las sugerencias de incrustación están ocultas de forma predeterminada y se muestran al mantener presionada la tecla `Ctrl+Alt`.",
- "editor.inlayHints.on": "Las sugerencias de incrustación están habilitadas",
- "editor.inlayHints.onUnlessPressed": "Las sugerencias de incrustación se muestran de forma predeterminada y se ocultan cuando se mantiene presionado `Ctrl+Alt`.",
+ "editor.inlayHints.off": "Las indicaciones incrustadas están deshabilitadas",
+ "editor.inlayHints.offUnlessPressed": "Las indicaciones incrustadas están ocultas de forma predeterminada y se muestran al mantener presionado {0}",
+ "editor.inlayHints.on": "Las indicaciones incrustadas están habilitadas",
+ "editor.inlayHints.onUnlessPressed": "Las indicaciones incrustadas se muestran de forma predeterminada y se ocultan cuando se mantiene presionado {0}",
+ "editor.inlineSuggest.edits.renderSideBySide.auto": "Las sugerencias más grandes se mostrarán una al lado de la otra si hay espacio suficiente; de lo contrario, se mostrarán a continuación.",
+ "editor.inlineSuggest.edits.renderSideBySide.never": "Las sugerencias más grandes nunca se muestran una al lado de la otra y siempre se mostrarán a continuación.",
+ "editor.lightbulb.enabled.off": "Deshabilite el menú de acción de código.",
+ "editor.lightbulb.enabled.on": "Muestra el menú de acción de código cuando el cursor está en líneas con código o en líneas vacías.",
+ "editor.lightbulb.enabled.onCode": "Muestra el menú de acción del código cuando el cursor está en líneas con código.",
+ "editor.stickyScroll.defaultModel": "Define el modelo que se va a usar para determinar qué líneas se van a pegar. Si el modelo de esquema no existe, recurrirá al modelo del proveedor de plegado que recurre al modelo de sangría. Este orden se respeta en los tres casos.",
+ "editor.stickyScroll.enabled": "Muestra los ámbitos actuales anidados durante el desplazamiento en la parte superior del editor.",
+ "editor.stickyScroll.maxLineCount": "Define el número máximo de líneas rápidas que se mostrarán.",
+ "editor.stickyScroll.scrollWithEditor": "Habilite el desplazamiento del desplazamiento con inmovilización con la barra de desplazamiento horizontal del editor.",
+ "editor.suggest.matchOnWordStartOnly": "Cuando se activa el filtro IntelliSense se requiere que el primer carácter coincida con el inicio de una palabra. Por ejemplo, \"c\" en \"Consola\" o \"WebContext\" but _not_ on \"descripción\". Si se desactiva, IntelliSense mostrará más resultados, pero los ordenará según la calidad de la coincidencia.",
"editor.suggest.showClasss": "Cuando está habilitado, IntelliSense muestra sugerencias de tipo \"class\".",
"editor.suggest.showColors": "Cuando está habilitado, IntelliSense muestra sugerencias de \"color\".",
"editor.suggest.showConstants": "Cuando está habilitado, IntelliSense muestra sugerencias de tipo \"constant\".",
@@ -391,12 +532,23 @@
"editor.suggest.showVariables": "Cuando está habilitado, IntelliSense muestra sugerencias de tipo \"variable\".",
"editorViewAccessibleLabel": "Contenido del editor",
"emptySelectionClipboard": "Controla si al copiar sin selección se copia la línea actual.",
+ "enabled": "Habilita la bombilla de acción de código en el editor.",
+ "experimentalGpuAcceleration": "Controla si se debe usar la aceleración de GPU experimental para representar el editor.",
+ "experimentalGpuAcceleration.off": "Use la representación basada en DOM normal.",
+ "experimentalGpuAcceleration.on": "Use la aceleración de GPU.",
+ "experimentalWhitespaceRendering": "Controla si los espacios en blanco se representan con un nuevo método experimental.",
+ "experimentalWhitespaceRendering.font": "Use un nuevo método de representación con caracteres de fuente.",
+ "experimentalWhitespaceRendering.off": "Use el método de representación estable.",
+ "experimentalWhitespaceRendering.svg": "Use un nuevo método de representación con svgs.",
"fastScrollSensitivity": "Multiplicador de la velocidad de desplazamiento al presionar \"Alt\".",
"find.addExtraSpaceOnTop": "Controla si Encontrar widget debe agregar más líneas en la parte superior del editor. Si es true, puede desplazarse más allá de la primera línea cuando Encontrar widget está visible.",
"find.autoFindInSelection": "Controla la condición para activar la búsqueda en la selección de forma automática.",
"find.cursorMoveOnType": "Controla si el cursor debe saltar para buscar coincidencias mientras se escribe.",
+ "find.findOnType": "Controla si buscar widget debe buscar mientras escribe.",
"find.globalFindClipboard": "Controla si el widget de búsqueda debe leer o modificar el Portapapeles de búsqueda compartido en macOS.",
+ "find.history": "Controla cómo se debe almacenar el historial de búsqueda del widget de búsqueda",
"find.loop": "Controla si la búsqueda se reinicia automáticamente desde el principio (o el final) cuando no se encuentran más coincidencias.",
+ "find.replaceHistory": "Controla cómo se debe almacenar el historial del widget de reemplazo",
"find.seedSearchStringFromSelection": "Controla si la cadena de búsqueda del widget de búsqueda se inicializa desde la selección del editor.",
"folding": "Controla si el editor tiene el plegado de código habilitado.",
"foldingHighlight": "Controla si el editor debe destacar los rangos plegados.",
@@ -410,6 +562,9 @@
"fontLigatures": "Habilita o deshabilita las ligaduras tipográficas (características de fuente \"calt\" y \"liga\"). Cámbielo a una cadena para el control específico de la propiedad de CSS \"font-feature-settings\".",
"fontLigaturesGeneral": "Configura las ligaduras tipográficas o las características de fuente. Puede ser un valor booleano para habilitar o deshabilitar las ligaduras o bien una cadena para el valor de la propiedad \"font-feature-settings\" de CSS.",
"fontSize": "Controla el tamaño de fuente en píxeles.",
+ "fontVariationSettings": "Propiedad CSS explícita 'font-variation-settings'. En su lugar, se puede pasar un valor booleano si solo es necesario traducir font-weight a font-variation-settings.",
+ "fontVariations": "Habilita o deshabilita la traducción del grosor de font-weight a font-variation-settings. Cambie esto a una cadena para el control específico de la propiedad CSS 'font-variation-settings'.",
+ "fontVariationsGeneral": "Configura variaciones de fuente. Puede ser un booleano para habilitar o deshabilitar la traducción de font-weight a font-variation-settings o una cadena para el valor de la propiedad CSS 'font-variation-settings'.",
"fontWeight": "Controla el grosor de la fuente. Acepta las palabras clave \"normal\" y \"negrita\" o los números entre 1 y 1000.",
"fontWeightErrorMessage": "Solo se permiten las palabras clave \"normal\" y \"negrita\" o los números entre 1 y 1000.",
"formatOnPaste": "Controla si el editor debe dar formato automáticamente al contenido pegado. Debe haber disponible un formateador capaz de aplicar formato a un rango dentro de un documento. ",
@@ -419,13 +574,37 @@
"hover.above": "Preferir mostrar los desplazamientos por encima de la línea, si hay espacio.",
"hover.delay": "Controla el retardo en milisegundos después del cual se muestra la información al mantener el puntero sobre un elemento.",
"hover.enabled": "Controla si se muestra la información al mantener el puntero sobre un elemento.",
+ "hover.enabled.off": "La característica de mantener el puntero está deshabilitada.",
+ "hover.enabled.on": "La característica de mantener el puntero está habilitada.",
+ "hover.enabled.onKeyboardModifier": "Mantener el puntero se muestra al mantener pulsada la tecla \"{0}\" o \"Alt\" (el modificador opuesto a \"#editor.multiCursorModifier#\")",
+ "hover.hidingDelay": "Controla el retraso en milisegundos después del cual se oculta el desplazamiento. Requiere que se habilite `#editor.hover.sticky#`.",
"hover.sticky": "Controla si la información que aparece al mantener el puntero sobre un elemento permanece visible al mover el mouse sobre este.",
- "inlayHints.enable": "Habilita las sugerencias de incrustación en el editor.",
- "inlayHints.fontFamily": "Controla la familia de fuentes de sugerencias de incrustación en el editor. Cuando se establece en vacío, se usa el {0}.",
- "inlayHints.fontSize": "Controla el tamaño de fuente de las sugerencias de incrustación en el editor. Como valor predeterminado, se usa {0} cuando el valor configurado es menor que {1} o mayor que el tamaño de fuente del editor.",
- "inlayHints.padding": "Habilita el relleno alrededor de las sugerencias de incrustación en el editor.",
+ "inertialScroll": "Haga que el desplazamiento sea inercial, lo cual es especialmente útil con el panel táctil en Linux.",
+ "inlayHints.enable": "Habilita las indicaciones incrustadas en el editor.",
+ "inlayHints.fontFamily": "Controla la familia de fuentes de indicaciones incrustadas en el editor. Cuando se establece en vacío, se usa el {0}.",
+ "inlayHints.fontSize": "Controla el tamaño de fuente de las indicaciones incrustadas en el editor. Como valor predeterminado, se usa {0} cuando el valor configurado es menor que {1} o mayor que el tamaño de fuente del editor.",
+ "inlayHints.maximumLength": "Longitud total máxima de las indicaciones incrustadas, para una sola línea, antes de que el editor las trunque. Establézcalo en '0' para que nunca se trunque",
+ "inlayHints.padding": "Habilita el relleno alrededor de las indicaciones incrustadas en el editor.",
"inline": "Las sugerencias rápidas se muestran como texto fantasma",
+ "inlineCompletionsAccessibilityVerbose": "Controla si se debe proporcionar la sugerencia de accesibilidad a los usuarios del lector de pantalla cuando se muestra una finalización insertada.",
+ "inlineSuggest.edits.allowCodeShifting": "Controla si mostrar una sugerencia desplazará el código para crear espacio para la sugerencia insertada.",
+ "inlineSuggest.edits.renderSideBySide": "Controla si las sugerencias más grandes se pueden mostrar en paralelo.",
+ "inlineSuggest.edits.showCollapsed": "Controla si la sugerencia se mostrará como contraída hasta saltar a ella.",
+ "inlineSuggest.edits.showLongDistanceHint": "Controla si se mostrarán sugerencias insertadas a larga distancia.",
+ "inlineSuggest.emptyResponseInformation": "Controla si se va a enviar información de solicitud desde el proveedor de sugerencias insertadas.",
"inlineSuggest.enabled": "Controla si se deben mostrar automáticamente las sugerencias alineadas en el editor.",
+ "inlineSuggest.fontFamily": "Controla la familia de fuentes de las sugerencias insertadas.",
+ "inlineSuggest.minShowDelay": "Controla el retraso mínimo en milisegundos tras el cual se muestran las sugerencias insertadas después de escribir.",
+ "inlineSuggest.showOnSuggestConflict": "Controla si se muestran sugerencias insertadas cuando hay un conflicto de sugerencias.",
+ "inlineSuggest.showToolbar": "Controla cuándo mostrar la barra de herramientas de sugerencias insertadas.",
+ "inlineSuggest.showToolbar.always": "Muestra la barra de herramientas de sugerencias insertadas cada vez que se muestra una sugerencia insertada.",
+ "inlineSuggest.showToolbar.never": "No mostrar nunca la barra de herramientas de sugerencias insertadas.",
+ "inlineSuggest.showToolbar.onHover": "Muestra la barra de herramientas de sugerencias insertadas al mantener el puntero sobre una sugerencia insertada.",
+ "inlineSuggest.suppressInSnippetMode": "Controla si las sugerencias insertadas se suprimirán cuando estén en modo de fragmento de código.",
+ "inlineSuggest.suppressInlineSuggestions": "Suprime los complementos en línea para los id. de extensión especificados, separados por comas.",
+ "inlineSuggest.suppressSuggestions": "Controla cómo interactúan las sugerencias insertadas con el widget de sugerencias. Si se habilita, el widget de sugerencias no se muestra automáticamente cuando hay sugerencias insertadas disponibles.",
+ "inlineSuggest.syntaxHighlightingEnabled": "Controla si se va a mostrar el resaltado de sintaxis para las sugerencias insertadas en el editor.",
+ "inlineSuggest.triggerCommandOnProviderChange": "Controla si se debe desencadenar un comando cuando cambia el proveedor de sugerencias insertadas.",
"letterSpacing": "Controla el espacio entre letras en píxeles.",
"lineHeight": "Controla el alto de línea. \r\n - Use 0 para calcular automáticamente el alto de línea a partir del tamaño de la fuente.\r\n - Los valores entre 0 y 8 se usarán como multiplicador con el tamaño de fuente.\r\n - Los valores mayores o igual que 8 se usarán como valores efectivos.",
"lineNumbers": "Controla la visualización de los números de línea.",
@@ -437,18 +616,29 @@
"links": "Controla si el editor debe detectar vínculos y hacerlos interactivos.",
"matchBrackets": "Resaltar paréntesis coincidentes.",
"minimap.autohide": "Controla si el minimapa se oculta automáticamente.",
+ "minimap.autohide.mouseover": "El minimapa se oculta cuando el ratón no está sobre él y se muestra cuando el ratón está sobre el minimapa.",
+ "minimap.autohide.none": "El minimapa siempre se muestra.",
+ "minimap.autohide.scroll": "El minimapa solo se muestra cuando se desplaza el editor",
"minimap.enabled": "Controla si se muestra el minimapa.",
+ "minimap.markSectionHeaderRegex": "Define la expresión regular usada para buscar encabezados de sección en los comentarios. La expresión regular debe contener un grupo de coincidencias con nombre 'label' (escrito como '(?.+)') que encapsula el encabezado de sección; de lo contrario, no funcionará. Opcionalmente, puede incluir otro grupo de coincidencias denominado 'separador'. Use \\n en el patrón para hacer coincidir los encabezados de varias líneas.",
"minimap.maxColumn": "Limite el ancho del minimapa para representar como mucho un número de columnas determinado.",
"minimap.renderCharacters": "Represente los caracteres reales en una línea, por oposición a los bloques de color.",
"minimap.scale": "Escala del contenido dibujado en el minimapa: 1, 2 o 3.",
+ "minimap.sectionHeaderFontSize": "Controla el tamaño de fuente de los encabezados de sección en el minimapa.",
+ "minimap.sectionHeaderLetterSpacing": "Controla la cantidad de espacio (en píxeles) entre los caracteres del encabezado de sección. Esto aumenta la legibilidad del encabezado en tamaños de fuente pequeños.",
+ "minimap.showMarkSectionHeaders": "Controla si los comentarios MARK: se muestran como encabezados de sección en el minimapa.",
+ "minimap.showRegionSectionHeaders": "Controla si las regiones con nombre se muestran como encabezados de sección en el minimapa.",
"minimap.showSlider": "Controla cuándo se muestra el control deslizante del minimapa.",
"minimap.side": "Controla en qué lado se muestra el minimapa.",
"minimap.size": "Controla el tamaño del minimapa.",
"minimap.size.fill": "El minimapa se estirará o reducirá según sea necesario para ocupar la altura del editor (sin desplazamiento).",
"minimap.size.fit": "El minimapa se reducirá según sea necesario para no ser nunca más grande que el editor (sin desplazamiento).",
"minimap.size.proportional": "El minimapa tiene el mismo tamaño que el contenido del editor (y podría desplazarse).",
+ "mouseMiddleClickAction": "Controla lo que ocurre al hacer clic con el botón central del ratón en el editor.",
"mouseWheelScrollSensitivity": "Se usará un multiplicador en los eventos de desplazamiento de la rueda del mouse \"deltaX\" y \"deltaY\". ",
"mouseWheelZoom": "Ampliar la fuente del editor cuando se use la rueda del mouse mientras se presiona \"Ctrl\".",
+ "mouseWheelZoom.mac": "Acercar la fuente del editor al usar la rueda del mouse y mantener pulsado 'Cmd'.",
+ "multiCursorLimit": "Controla el número máximo de cursores que puede haber en un editor activo a la vez.",
"multiCursorMergeOverlapping": "Combinar varios cursores cuando se solapan.",
"multiCursorModifier": "El modificador que se usará para agregar varios cursores con el mouse. Los gestos del mouse Ir a definición y Abrir vínculo se adaptarán de modo que no entren en conflicto con el [modificador multicursor](https://code.visualstudio.com/docs/editor/codebasics#_multicursor-modifier).",
"multiCursorModifier.alt": "Se asigna a \"Alt\" en Windows y Linux y a \"Opción\" en macOS.",
@@ -456,29 +646,40 @@
"multiCursorPaste": "Controla el pegado cuando el recuento de líneas del texto pegado coincide con el recuento de cursores.",
"multiCursorPaste.full": "Cada cursor pega el texto completo.",
"multiCursorPaste.spread": "Cada cursor pega una única línea del texto.",
- "occurrencesHighlight": "Controla si el editor debe resaltar las apariciones de símbolos semánticos.",
+ "occurrencesHighlight": "Controla si las repeticiones deben resaltarse en los archivos abiertos.",
+ "occurrencesHighlight.multiFile": "Experimental: Resalta las repeticiones en todos los archivos abiertos válidos.",
+ "occurrencesHighlight.off": "No resalta las repeticiones.",
+ "occurrencesHighlight.singleFile": "Resalta las repeticiones solo en el archivo actual.",
+ "occurrencesHighlightDelay": "Controla el retraso en milisegundos después del cual se resaltan las repeticiones.",
"off": "Las sugerencias rápidas están deshabilitadas",
"on": "Las sugerencias rápidas se muestran dentro del widget de sugerencias",
+ "overtypeCursorStyle": "Controla el estilo del cursor en el modo de entrada de sobrescritura.",
+ "overtypeOnPaste": "Controla si el pegado debe sobrescribirse.",
"overviewRulerBorder": "Controla si debe dibujarse un borde alrededor de la regla de información general.",
"padding.bottom": "Controla el espacio entre el borde inferior del editor y la última línea.",
"padding.top": "Controla la cantidad de espacio entre el borde superior del editor y la primera línea.",
"parameterHints.cycle": "Controla si el menú de sugerencias de parámetros se cicla o se cierra al llegar al final de la lista.",
"parameterHints.enabled": "Habilita un elemento emergente que muestra documentación de los parámetros e información de los tipos mientras escribe.",
+ "pasteAs.enabled": "Controla si se puede pegar contenido de distintas formas.",
+ "pasteAs.showPasteSelector": "Controla si se muestra un widget al pegar contenido en el editor. Este widget le permite controlar cómo se pega el archivo.",
+ "pasteAs.showPasteSelector.afterPaste": "Muestra el widget del selector de pegado después de pegar contenido en el editor.",
+ "pasteAs.showPasteSelector.never": "No mostrar nunca el widget del selector de pegado. En su lugar, siempre se usa el comportamiento de pegado predeterminado.",
"peekWidgetDefaultFocus": "Controla si se debe enfocar el editor en línea o el árbol en el widget de vista.",
"peekWidgetDefaultFocus.editor": "Enfocar el editor al abrir la inspección",
"peekWidgetDefaultFocus.tree": "Enfocar el árbol al abrir la inspección",
- "quickSuggestions": "Controla si las sugerencias deben mostrarse automáticamente al escribir. Puede controlarse para la escritura en comentarios, cadenas y otro código. Las sugerencias rápidas pueden configurarse para mostrarse como texto fantasma o con el widget de sugerencias. Tenga también en cuenta la configuración '{0}' que controla si las sugerencias son desencadenadas por caracteres especiales.",
+ "quickSuggestions": "Controla si las sugerencias deben mostrarse automáticamente al escribir. Puede controlarse para la escritura en comentarios, cadenas y otro código. Las sugerencias rápidas pueden configurarse para mostrarse como texto fantasma o con el widget de sugerencias. Tenga en cuenta también la configuración de {0} que controla si los caracteres especiales desencadenan las sugerencias.",
"quickSuggestions.comments": "Habilita sugerencias rápidas en los comentarios.",
"quickSuggestions.other": "Habilita sugerencias rápidas fuera de las cadenas y los comentarios.",
"quickSuggestions.strings": "Habilita sugerencias rápidas en las cadenas.",
"quickSuggestionsDelay": "Controla el retraso, en milisegundos, tras el cual aparecerán sugerencias rápidas.",
"renameOnType": "Controla si el editor cambia el nombre automáticamente en el tipo.",
- "renameOnTypeDeprecate": "En desuso. Utilice \"editor.linkedEditing\" en su lugar.",
+ "renameOnTypeDeprecate": "En desuso. Utilice `#editor.linkedEditing#` en su lugar.",
"renderControlCharacters": "Controla si el editor debe representar caracteres de control.",
"renderFinalNewline": "Representar el número de la última línea cuando el archivo termina con un salto de línea.",
"renderLineHighlight": "Controla cómo debe representar el editor el resaltado de línea actual.",
"renderLineHighlight.all": "Resalta el medianil y la línea actual.",
"renderLineHighlightOnlyWhenFocus": "Controla si el editor debe representar el resaltado de la línea actual solo cuando el editor está enfocado.",
+ "renderRichScreenReaderContent": "Indica si se debe renderizar el contenido del lector de pantalla cuando la configuración `#editor.editContext#` está habilitada.",
"renderWhitespace": "Controla la forma en que el editor debe representar los caracteres de espacio en blanco.",
"renderWhitespace.boundary": "Representa caracteres de espacio en blanco, excepto los espacios individuales entre palabras.",
"renderWhitespace.selection": "Represente los caracteres de espacio en blanco solo en el texto seleccionado.",
@@ -487,14 +688,17 @@
"rulers": "Muestra reglas verticales después de un cierto número de caracteres monoespaciados. Usa múltiples valores para mostrar múltiples reglas. Si la matriz está vacía, no se muestran reglas.",
"rulers.color": "Color de esta regla del editor.",
"rulers.size": "Número de caracteres monoespaciales en los que se representará esta regla del editor.",
+ "screenReaderAnnounceInlineSuggestion": "Controlar si un lector de pantalla anuncia sugerencias insertadas.",
"scrollBeyondLastColumn": "Controla el número de caracteres adicionales a partir del cual el editor se desplazará horizontalmente.",
"scrollBeyondLastLine": "Controla si el editor seguirá haciendo scroll después de la última línea.",
+ "scrollOnMiddleClick": "Controla si el editor se desplazará cuando se presione el botón central.",
"scrollPredominantAxis": "Desplácese solo a lo largo del eje predominante cuando se desplace vertical y horizontalmente al mismo tiempo. Evita la deriva horizontal cuando se desplaza verticalmente en un trackpad.",
"scrollbar.horizontal": "Controla la visibilidad de la barra de desplazamiento horizontal.",
"scrollbar.horizontal.auto": "La barra de desplazamiento horizontal estará visible solo cuando sea necesario.",
"scrollbar.horizontal.fit": "La barra de desplazamiento horizontal estará siempre oculta.",
"scrollbar.horizontal.visible": "La barra de desplazamiento horizontal estará siempre visible.",
"scrollbar.horizontalScrollbarSize": "Altura de la barra de desplazamiento horizontal.",
+ "scrollbar.ignoreHorizontalScrollbarInContentHeight": "Cuando se establece, la barra de desplazamiento horizontal no aumentará el tamaño del contenido del editor.",
"scrollbar.scrollByPage": "Controla si al hacer clic se desplaza por página o salta a la posición donde se hace clic.",
"scrollbar.vertical": "Controla la visibilidad de la barra de desplazamiento vertical.",
"scrollbar.vertical.auto": "La barra de desplazamiento vertical estará visible solo cuando sea necesario.",
@@ -502,8 +706,11 @@
"scrollbar.vertical.visible": "La barra de desplazamiento vertical estará siempre visible.",
"scrollbar.verticalScrollbarSize": "Ancho de la barra de desplazamiento vertical.",
"selectLeadingAndTrailingWhitespace": "Indica si los espacios en blanco iniciales y finales deben seleccionarse siempre.",
+ "selectSubwords": "Indica si se deben seleccionar las subpalabras (como \"foo\" en \"fooBar\" o \"foo_bar\").",
"selectionClipboard": "Controla si el portapapeles principal de Linux debe admitirse.",
"selectionHighlight": "Controla si el editor debe destacar las coincidencias similares a la selección.",
+ "selectionHighlightMaxLength": "Controla cuántos caracteres pueden estar en la selección antes de que no se resalten coincidencias similares. Establezca en cero para un valor ilimitado.",
+ "selectionHighlightMultiline": "Controla si el editor debe resaltar las coincidencias de selección que abarcan varias líneas.",
"showDeprecated": "Controla las variables en desuso tachadas.",
"showFoldingControls": "Controla cuándo se muestran los controles de plegado en el medianil.",
"showFoldingControls.always": "Mostrar siempre los controles de plegado.",
@@ -519,11 +726,16 @@
"stickyTabStops": "Emula el comportamiento de selección de los caracteres de tabulación al usar espacios para la sangría. La selección se aplicará a las tabulaciones.",
"suggest.filterGraceful": "Controla si el filtrado y la ordenación de sugerencias se tienen en cuenta para los errores ortográficos pequeños.",
"suggest.insertMode": "Controla si las palabras se sobrescriben al aceptar la finalización. Tenga en cuenta que esto depende de las extensiones que participan en esta característica.",
+ "suggest.insertMode.always": "Seleccione siempre una sugerencia cuando se desencadene IntelliSense automáticamente.",
"suggest.insertMode.insert": "Inserte la sugerencia sin sobrescribir el texto a la derecha del cursor.",
+ "suggest.insertMode.never": "Nunca seleccione una sugerencia cuando desencadene IntelliSense automáticamente.",
"suggest.insertMode.replace": "Inserte la sugerencia y sobrescriba el texto a la derecha del cursor.",
+ "suggest.insertMode.whenQuickSuggestion": "Seleccione una sugerencia solo cuando desencadene IntelliSense mientras escribe.",
+ "suggest.insertMode.whenTriggerCharacter": "Seleccione una sugerencia solo cuando desencadene IntelliSense desde un carácter de desencadenador.",
"suggest.localityBonus": "Controla si la ordenación mejora las palabras que aparecen cerca del cursor.",
"suggest.maxVisibleSuggestions.dep": "La configuración está en desuso. Ahora puede cambiarse el tamaño del widget de sugerencias.",
"suggest.preview": "Controla si se puede obtener una vista previa del resultado de la sugerencia en el editor.",
+ "suggest.selectionMode": "Controla si se selecciona una sugerencia cuando se muestra el widget. Tenga en cuenta que esto solo se aplica a las sugerencias desencadenadas automáticamente ({0} y {1}) y que siempre se selecciona una sugerencia cuando se invoca explícitamente, por ejemplo, a través de 'Ctrl+Espacio'.",
"suggest.shareSuggestSelections": "Controla si las selecciones de sugerencias recordadas se comparten entre múltiples áreas de trabajo y ventanas (necesita \"#editor.suggestSelection#\").",
"suggest.showIcons": "Controla si mostrar u ocultar iconos en sugerencias.",
"suggest.showInlineDetails": "Controla si los detalles de sugerencia se muestran incorporados con la etiqueta o solo en el widget de detalles.",
@@ -540,6 +752,8 @@
"tabCompletion.off": "Deshabilitar los complementos para pestañas.",
"tabCompletion.on": "La pestaña se completará insertando la mejor sugerencia de coincidencia encontrada al presionar la pestaña",
"tabCompletion.onlySnippets": "La pestaña se completa con fragmentos de código cuando su prefijo coincide. Funciona mejor cuando las 'quickSuggestions' no están habilitadas.",
+ "tabFocusMode": "Controla si el editor recibe las pestañas o las aplaza al área de trabajo para la navegación.",
+ "trimWhitespaceOnDelete": "Controla si el editor también eliminará el espacio en blanco de sangría de la línea siguiente al eliminar un salto de línea.",
"unfoldOnClickAfterEndOfLine": "Controla si al hacer clic en el contenido vacío después de una línea plegada se desplegará la línea.",
"unicodeHighlight.allowedCharacters": "Define los caracteres permitidos que no se resaltan.",
"unicodeHighlight.allowedLocales": "Los caracteres Unicode que son comunes en las configuraciones regionales permitidas no se resaltan.",
@@ -552,7 +766,11 @@
"unusualLineTerminators.auto": "Los terminadores de línea no habituales se quitan automáticamente.",
"unusualLineTerminators.off": "Los terminadores de línea no habituales se omiten.",
"unusualLineTerminators.prompt": "Advertencia de terminadores de línea inusuales que se quitarán.",
- "useTabStops": "La inserción y eliminación del espacio en blanco sigue a las tabulaciones.",
+ "useTabStops": "Los espacios y tabulaciones se insertan y eliminan en alineación con tabulaciones.",
+ "wordBreak": "Controla las reglas de salto de palabra usadas para texto chino, japonés o coreano (CJK).",
+ "wordBreak.keepAll": "Los saltos de palabra no deben usarse para texto chino, japonés o coreano (CJK). El comportamiento del texto distinto a CJK es el mismo que el normal.",
+ "wordBreak.normal": "Use la regla de salto de línea predeterminada.",
+ "wordSegmenterLocales": "Configuraciones regionales que se usarán para la segmentación de palabras al realizar operaciones o navegaciones relacionadas con palabras. Especifique la etiqueta de idioma BCP 47 de la palabra que desea reconocer (por ejemplo, ja, zh-CN, zh-Hant-TW, etc.).",
"wordSeparators": "Caracteres que se usarán como separadores de palabras al realizar operaciones o navegaciones relacionadas con palabras.",
"wordWrap": "Controla cómo deben ajustarse las líneas.",
"wordWrap.bounded": "Las líneas se ajustarán al valor que sea inferior: el tamaño de la ventanilla o el valor de \"#editor.wordWrapColumn#\".",
@@ -560,19 +778,28 @@
"wordWrap.on": "Las líneas se ajustarán en el ancho de la ventanilla.",
"wordWrap.wordWrapColumn": "Las líneas se ajustarán al valor de \"#editor.wordWrapColumn#\". ",
"wordWrapColumn": "Controla la columna de ajuste del editor cuando \"#editor.wordWrap#\" es \"wordWrapColumn\" o \"bounded\".",
+ "wrapOnEscapedLineFeeds": "Controla si el literal `\\n` desencadenará un ajuste de línea cuando se habilite `#editor.wordWrap#`.\r\n\r\nPor ejemplo:\r\n```c\r\nchar* str=\"hello\\nworld\"\r\n```\r\nse mostrará como\r\n```c\r\nchar* str=\"hello\\n\r\n world\"\r\n```",
"wrappingIndent": "Controla la sangría de las líneas ajustadas.",
"wrappingIndent.deepIndent": "A las líneas ajustadas se les aplica una sangría de +2 respecto al elemento primario.",
"wrappingIndent.indent": "A las líneas ajustadas se les aplica una sangría de +1 respecto al elemento primario.",
"wrappingIndent.none": "No hay sangría. Las líneas ajustadas comienzan en la columna 1.",
"wrappingIndent.same": "A las líneas ajustadas se les aplica la misma sangría que al elemento primario.",
- "wrappingStrategy": "Controla el algoritmo que calcula los puntos de ajuste.",
+ "wrappingStrategy": "Controla el algoritmo que calcula los puntos de ajuste. Tenga en cuenta que, en el modo de accesibilidad, se usará el modo avanzado para obtener la mejor experiencia.",
"wrappingStrategy.advanced": "Delega el cálculo de puntos de ajuste en el explorador. Es un algoritmo lento, que podría causar bloqueos para archivos grandes, pero funciona correctamente en todos los casos.",
"wrappingStrategy.simple": "Se supone que todos los caracteres son del mismo ancho. Este es un algoritmo rápido que funciona correctamente para fuentes monoespaciales y ciertos scripts (como caracteres latinos) donde los glifos tienen el mismo ancho."
},
"vs/editor/common/core/editorColorRegistry": {
"caret": "Color del cursor del editor.",
+ "deprecatedEditorActiveIndentGuide": "\"editorIndentGuide.activeBackground\" está en desuso. Use \"editorIndentGuide.activeBackground1\" en su lugar.",
"deprecatedEditorActiveLineNumber": "ID es obsoleto. Usar en lugar 'editorLineNumber.activeForeground'. ",
+ "deprecatedEditorIndentGuides": "\"editorIndentGuide.background\" está en desuso. Use \"editorIndentGuide.background1\" en su lugar.",
"editorActiveIndentGuide": "Color de las guías de sangría activas del editor.",
+ "editorActiveIndentGuide1": "Color de las guías de sangría del editor activo (1).",
+ "editorActiveIndentGuide2": "Color de las guías de sangría del editor activo (2).",
+ "editorActiveIndentGuide3": "Color de las guías de sangría del editor activo (3).",
+ "editorActiveIndentGuide4": "Color de las guías de sangría del editor activo (4).",
+ "editorActiveIndentGuide5": "Color de las guías de sangría del editor activo (5).",
+ "editorActiveIndentGuide6": "Color de las guías de sangría del editor activo (6).",
"editorActiveLineNumber": "Color del número de línea activa en el editor",
"editorBracketHighlightForeground1": "Color de primer plano de los corchetes (1). Requiere que se habilite la coloración del par de corchetes.",
"editorBracketHighlightForeground2": "Color de primer plano de los corchetes (2). Requiere que se habilite la coloración del par de corchetes.",
@@ -597,18 +824,30 @@
"editorBracketPairGuide.background6": "Color de fondo de las guías de par de corchetes inactivos (6). Requiere habilitar guías de par de corchetes.",
"editorCodeLensForeground": "Color principal de lentes de código en el editor",
"editorCursorBackground": "Color de fondo del cursor de edición. Permite personalizar el color del caracter solapado por el bloque del cursor.",
+ "editorDimmedLineNumber": "Color de la línea final del editor cuando editor.renderFinalNewline se establece en atenuado.",
"editorGhostTextBackground": "Color de fondo del texto fantasma en el editor.",
"editorGhostTextBorder": "Color del borde del texto fantasma en el editor.",
"editorGhostTextForeground": "Color de primer plano del texto fantasma en el editor.",
"editorGutter": "Color de fondo del margen del editor. Este espacio contiene los márgenes de glifos y los números de línea.",
"editorIndentGuides": "Color de las guías de sangría del editor.",
+ "editorIndentGuides1": "Color de las guías de sangría del editor (1).",
+ "editorIndentGuides2": "Color de las guías de sangría del editor (2).",
+ "editorIndentGuides3": "Color de las guías de sangría del editor (3).",
+ "editorIndentGuides4": "Color de las guías de sangría del editor (4).",
+ "editorIndentGuides5": "Color de las guías de sangría del editor (5).",
+ "editorIndentGuides6": "Color de las guías de sangría del editor (6).",
"editorLineNumbers": "Color de números de línea del editor.",
- "editorOverviewRulerBackground": "Color de fondo de la regla de información general del editor. Solo se usa cuando el minimapa está habilitado y está ubicado en el lado derecho del editor.",
+ "editorMultiCursorPrimaryBackground": "Color de fondo de los cursores del editor principal cuando hay varios cursores presentes. Permite personalizar el color del carácter solapado por el bloque del cursor.",
+ "editorMultiCursorPrimaryForeground": "Color de los cursores del editor principal cuando hay varios cursores presentes.",
+ "editorMultiCursorSecondaryBackground": "Color de fondo de los cursores del editor secundario cuando hay varios cursores presentes. Permite personalizar el color del carácter solapado por el bloque del cursor.",
+ "editorMultiCursorSecondaryForeground": "Color de los cursores del editor secundario cuando hay varios cursores presentes.",
+ "editorOverviewRulerBackground": "Color de fondo de la regla de información general del editor.",
"editorOverviewRulerBorder": "Color del borde de la regla de visión general.",
"editorRuler": "Color de las reglas del editor",
"editorUnicodeHighlight.background": "Color de borde usado para resaltar caracteres unicode.",
"editorUnicodeHighlight.border": "Color de borde usado para resaltar caracteres Unicode.",
"editorWhitespaces": "Color de los caracteres de espacio en blanco del editor.",
+ "inactiveLineHighlight": "Color de fondo para el resaltado de línea en la posición del cursor cuando el editor no es prioritario.",
"lineHighlight": "Color de fondo para la línea resaltada en la posición del cursor.",
"lineHighlightBorderBox": "Color de fondo del borde alrededor de la línea en la posición del cursor.",
"overviewRuleError": "Color de marcador de regla de información general para errores. ",
@@ -623,6 +862,15 @@
"unnecessaryCodeOpacity": "Opacidad de código fuente innecesario (sin usar) en el editor. Por ejemplo, \"#000000c0\" representará el código con un 75 % de opacidad. Para temas de alto contraste, utilice el color del tema 'editorUnnecessaryCode.border' para resaltar el código innecesario en vez de atenuarlo."
},
"vs/editor/common/editorContextKeys": {
+ "accessibleDiffViewerVisible": "Si el visor de diferencias accesible está visible",
+ "comparingMovedCode": "Indica si se selecciona un bloque de código movido para la comparación",
+ "diffEditorHasChanges": "Si el editor de diferencias tiene cambios",
+ "diffEditorInlineMode": "Si el modo insertado está activo",
+ "diffEditorModifiedUri": "URI del documento modificado",
+ "diffEditorModifiedWritable": "Indica si la modificación se puede escribir en el editor de diferencias",
+ "diffEditorOriginalUri": "URI del documento original",
+ "diffEditorOriginalWritable": "Indica si la modificación se puede escribir en el editor de diferencias",
+ "diffEditorRenderSideBySideInlineBreakpointReached": "Indica si se alcanza el punto de interrupción insertado en paralelo del editor de diferencias",
"editorColumnSelection": "Si \"editor.columnSelection\" se ha habilitado",
"editorFocus": "Si el editor o un widget del editor tiene el foco (por ejemplo, el foco está en el widget de búsqueda)",
"editorHasCodeActionsProvider": "Si el editor tiene un proveedor de acciones de código",
@@ -645,6 +893,7 @@
"editorHasSelection": "Si el editor tiene texto seleccionado",
"editorHasSignatureHelpProvider": "Si el editor tiene un proveedor de ayuda de signatura",
"editorHasTypeDefinitionProvider": "Si el editor tiene un proveedor de definiciones de tipo",
+ "editorHoverFocused": "Si se centra el desplazamiento del editor",
"editorHoverVisible": "Si el mantenimiento del puntero del editor es visible",
"editorLangId": "Identificador de idioma del editor",
"editorReadonly": "Si el editor es de solo lectura",
@@ -652,8 +901,73 @@
"editorTextFocus": "Si el texto del editor tiene el foco (el cursor parpadea)",
"inCompositeEditor": "Si el editor forma parte de otro más grande (por ejemplo, blocs de notas)",
"inDiffEditor": "Si el contexto es un editor de diferencias",
+ "inMultiDiffEditor": "Si el contexto es un editor de diferencias múltiples",
+ "isEmbeddedDiffEditor": "Si el contexto es un editor de diferencias incrustado",
+ "multiDiffEditorAllCollapsed": "Si todos los archivos del editor de diferencias múltiples están contraídos",
+ "standaloneColorPickerFocused": "Si el selector de colores independiente está centrado",
+ "standaloneColorPickerVisible": "Si el selector de colores independiente está visible",
+ "stickyScrollFocused": "Si el desplazamiento con inmovilización está centrado",
+ "stickyScrollVisible": "Si el desplazamiento con inmovilización está visible",
"textInputFocus": "Si un editor o una entrada de texto enriquecido tienen el foco (el cursor parpadea)"
},
+ "vs/editor/common/languages": {
+ "Array": "matriz",
+ "Boolean": "booleano",
+ "Class": "clase",
+ "Constant": "constante",
+ "Constructor": "constructor",
+ "Enum": "enumeración",
+ "EnumMember": "miembro de la enumeración",
+ "Event": "evento",
+ "Field": "campo",
+ "File": "archivo",
+ "Function": "función",
+ "Interface": "interfaz",
+ "Key": "clave",
+ "Method": "método",
+ "Module": "módulo",
+ "Namespace": "espacio de nombres",
+ "Null": "NULL",
+ "Number": "número",
+ "Object": "objeto",
+ "Operator": "operador",
+ "Package": "paquete",
+ "Property": "propiedad",
+ "String": "cadena",
+ "Struct": "estructura",
+ "TypeParameter": "parámetro de tipo",
+ "Variable": "variable",
+ "suggestWidget.kind.class": "Clase",
+ "suggestWidget.kind.color": "Color",
+ "suggestWidget.kind.constant": "Constante",
+ "suggestWidget.kind.constructor": "Constructor",
+ "suggestWidget.kind.customcolor": "Color personalizado",
+ "suggestWidget.kind.enum": "Enumeración",
+ "suggestWidget.kind.enumMember": "Miembro de enumeración",
+ "suggestWidget.kind.event": "Evento",
+ "suggestWidget.kind.field": "Campo",
+ "suggestWidget.kind.file": "Archivo",
+ "suggestWidget.kind.folder": "Carpeta",
+ "suggestWidget.kind.function": "Función",
+ "suggestWidget.kind.interface": "Interfaz",
+ "suggestWidget.kind.issue": "Incidencia",
+ "suggestWidget.kind.keyword": "Palabra clave",
+ "suggestWidget.kind.method": "Método",
+ "suggestWidget.kind.module": "Módulo",
+ "suggestWidget.kind.operator": "Operador",
+ "suggestWidget.kind.property": "Propiedad",
+ "suggestWidget.kind.reference": "Referencia",
+ "suggestWidget.kind.snippet": "Fragmento de código",
+ "suggestWidget.kind.struct": "Estructura",
+ "suggestWidget.kind.text": "Texto",
+ "suggestWidget.kind.tool": "Herramienta",
+ "suggestWidget.kind.typeParameter": "Parámetro de tipo",
+ "suggestWidget.kind.unit": "Unidad",
+ "suggestWidget.kind.user": "Usuario",
+ "suggestWidget.kind.value": "Valor",
+ "suggestWidget.kind.variable": "Variable",
+ "symbolAriaLabel": "{0} ({1})"
+ },
"vs/editor/common/languages/modesRegistry": {
"plainText.alias": "Texto sin formato"
},
@@ -661,40 +975,58 @@
"edit": "Escribiendo"
},
"vs/editor/common/standaloneStrings": {
- "accessibilityHelpMessage": "Presione Alt+F1 para ver las opciones de accesibilidad.",
- "auto_off": "El editor está configurado para que no se optimice nunca su uso con un lector de pantalla, que en este momento no es el caso.",
- "auto_on": "El editor está configurado para optimizarse para su uso con un lector de pantalla.",
+ "acceptSuggestAction": "Aceptar sugerencia{0} para aceptar la sugerencia seleccionada actualmente.",
+ "accessibilityHelpTitle": "Ayuda de accesibilidad",
+ "auto_off": "La aplicación está configurada para que nunca se optimice para su uso con un lector de pantalla.",
+ "auto_on": "La aplicación está configurada para optimizarse para su uso con un lector de pantalla.",
"bulkEditServiceSummary": "{0} ediciones realizadas en {1} archivos",
- "changeConfigToOnMac": "Para configurar el editor de forma que se optimice su uso con un lector de pantalla, presione ahora Comando+E.",
- "changeConfigToOnWinLinux": "Para configurar el editor de forma que se optimice su uso con un lector de pantalla, presione ahora Control+E.",
- "editableDiffEditor": "en un panel de un editor de diferencias.",
- "editableEditor": " en un editor de código",
+ "changeConfigToOnMac": "Configure la aplicación para que se optimice para su uso con un lector de pantalla (Comando+E).",
+ "changeConfigToOnWinLinux": "Configure la aplicación para que se optimice para su uso con un lector de pantalla (Control+E).",
+ "chatEditing.navigation": "Navega entre las ediciones en el editor con anterior{0} y siguiente{1}, y acepta{2}, rechaza{3} o visualiza el diff{4} para el cambio actual. Acepta las ediciones en todos los archivos{5}.",
+ "chatEditorModification": "El editor contiene modificaciones pendientes realizadas por el chat.",
+ "chatEditorRequestInProgress": "El editor está esperando a que el chat realice modificaciones.",
+ "codeFolding": "Use el plegado de código para contraer bloques de código y céntrese en el código que le interesa mediante el comando de alternar plegado{0}.",
+ "debug.startDebugging": "La depuración: el comando Iniciar depuración{0} iniciará una sesión de depuración.",
+ "debugConsole.addToWatch": "El comando Depurar: agregar a Inspección{0} agregará el texto seleccionado a la vista de inspección.",
+ "debugConsole.executeSelection": "El comando{0} Depurar: Ejecutar selección ejecutará el texto seleccionado en la consola de depuración.",
+ "debugConsole.setBreakpoint": "El comando{0} Depurar: Punto de interrupción insertado establecerá o anulará un punto de interrupción en la posición actual del cursor en el editor activo.",
+ "defaultWindowTitleExcludingEditorState": "activeEditorState, como los elementos modificados, los problemas y más, actualmente no se incluye como parte de la configuración de window.title de forma predeterminada. Habilítela con accessibility.windowTitleOptimized.",
+ "defaultWindowTitleIncludesEditorState": "activeEditorState, como modificado, problemas, etc., se incluye como parte de la configuración window.title de forma predeterminada. Deshabilítela con accessibility.windowTitleOptimized.",
+ "editableDiffEditor": "Está en un panel de un editor de diferencias.",
+ "editableEditor": "Está en un editor de código.",
"editorViewAccessibleLabel": "Contenido del editor",
- "emergencyConfOn": "Se cambiará ahora el valor \"accessibilitySupport\" a \"activado\".",
+ "goToSymbol": "Vaya a símbolo{0} para navegar rápidamente entre los símbolos del archivo actual.",
"gotoLineActionLabel": "Vaya a Línea/Columna...",
+ "gotoOffsetActionLabel": "Ir a Colocación en capas...",
"helpQuickAccess": "Mostrar todos los proveedores de acceso rápido",
"inspectTokens": "Desarrollador: inspeccionar tokens",
- "multiSelection": "{0} selecciones",
- "multiSelectionRange": "{0} selecciones ({1} caracteres seleccionados)",
- "noSelection": "Sin selección",
- "openDocMac": "Presione ahora Comando+H para abrir una ventana del explorador con más información relacionada con la accesibilidad del editor.",
- "openDocWinLinux": "Presione ahora Control+H para abrir una ventana del explorador con más información relacionada con la accesibilidad del editor.",
- "openingDocs": "Se abrirá ahora la página de documentación de accesibilidad del editor.",
- "outroMsg": "Para descartar esta información sobre herramientas y volver al editor, presione Esc o Mayús+Escape.",
+ "intellisense": "Use IntelliSense para mejorar la eficacia de codificación y reducir los errores. Desencadenar sugerencias{0}.",
+ "listAnnouncementsCommand": "Ejecute el comando: List Signal Announcements para obtener información general de los anuncios y su estado actual.",
+ "listSignalSoundsCommand": "Ejecute el comando: List Signal Sounds para obtener información general de todos los sonidos y su estado actual.",
+ "openingDocs": "Abriendo la página de documentación de accesibilidad.",
+ "quickChatCommand": "Alterne el chat rápido{0} para abrir o cerrar una sesión de chat.",
"quickCommandActionHelp": "Mostrar y ejecutar comandos",
"quickCommandActionLabel": "Paleta de comandos",
"quickOutlineActionLabel": "Ir a símbolo...",
"quickOutlineByCategoryActionLabel": "Ir a símbolo por categoría...",
- "readonlyDiffEditor": "en un panel de solo lectura de un editor de diferencias.",
- "readonlyEditor": "en un editor de código de solo lectura",
+ "readonlyDiffEditor": "Está en un panel de solo lectura de un editor de diferencias.",
+ "readonlyEditor": "Está en un editor de código de solo lectura.",
+ "screenReaderModeDisabled": "Modo optimizado del lector de pantalla deshabilitado.",
+ "screenReaderModeEnabled": "Modo optimizado para lector de pantalla habilitado.",
"showAccessibilityHelpAction": "Mostrar ayuda de accesibilidad",
- "singleSelection": "Línea {0}, columna {1}",
- "singleSelectionRange": "Línea {0}, columna {1} ({2} seleccionadas)",
- "tabFocusModeOffMsg": "Al presionar TAB en el editor actual, se insertará el carácter de tabulación. Presione {0} para activar o desactivar este comportamiento.",
- "tabFocusModeOffMsgNoKb": "Al presionar TAB en el editor actual, se insertará el carácter de tabulación. El comando {0} no se puede desencadenar actualmente mediante un enlace de teclado.",
- "tabFocusModeOnMsg": "Al presionar TAB en el editor actual, el foco se mueve al siguiente elemento activable. Presione {0} para activar o desactivar este comportamiento.",
- "tabFocusModeOnMsgNoKb": "Al presionar TAB en el editor actual, el foco se mueve al siguiente elemento activable. El comando {0} no se puede desencadenar actualmente mediante un enlace de teclado.",
- "toggleHighContrast": "Alternar tema de contraste alto"
+ "showOrFocusHover": "Muestra o centra el puntero mantenido{0} para leer información sobre el símbolo actual.",
+ "startInlineChatCommand": "Inicie el chat en línea{0} para crear una sesión de chat en el editor.",
+ "stickScrollKb": "Enfoque el desplazamiento con inmovilización{0} para enfocar los ámbitos anidados actuales.",
+ "suggestActionsKb": "Activar el widget de sugerencias{0} para mostrar posibles sugerencias insertadas.",
+ "tabFocusModeOffMsg": "Al presionar TAB en el editor actual, se insertará el carácter de tabulación. Active o desactive este comportamiento{0}.",
+ "tabFocusModeOnMsg": "Al presionar TAB en el editor actual, el foco se mueve al siguiente elemento activable. Active o desactive este comportamiento{0}.",
+ "toggleHighContrast": "Alternar tema de contraste alto",
+ "toggleSuggestionFocus": "Alternar foco entre el widget de sugerencias y el editor{0} y alternar el foco de detalles con{1} para obtener más información sobre la sugerencia.",
+ "toolbar": "En el área de trabajo, cuando el lector de pantalla anuncie que ha llegado a una barra de herramientas, use teclas estrechas para desplazarse entre las acciones de la barra de herramientas."
+ },
+ "vs/editor/common/viewLayout/viewLineRenderer": {
+ "overflow.chars": "{0} caracteres",
+ "showMore": "Mostrar más ({0})"
},
"vs/editor/contrib/anchorSelect/browser/anchorSelect": {
"anchorSet": "Delimitador establecido en {0}:{1}",
@@ -708,7 +1040,9 @@
"miGoToBracket": "Ir al &&corchete",
"overviewRulerBracketMatchForeground": "Resumen color de marcador de regla para corchetes.",
"smartSelect.jumpBracket": "Ir al corchete",
- "smartSelect.selectToBracket": "Seleccionar para corchete"
+ "smartSelect.removeBrackets": "Quitar corchetes",
+ "smartSelect.selectToBracket": "Seleccionar para corchete",
+ "smartSelect.selectToBracketDescription": "Se selecciona el texto que está dentro, incluyendo los corchetes o las llaves"
},
"vs/editor/contrib/caretOperations/browser/caretOperations": {
"caret.moveLeft": "Mover el texto seleccionado a la izquierda",
@@ -728,8 +1062,10 @@
"miPaste": "&&Pegar",
"share": "Compartir"
},
+ "vs/editor/contrib/codeAction/browser/codeAction": {
+ "applyCodeActionFailed": "Se ha producido un error desconocido al aplicar la acción de código"
+ },
"vs/editor/contrib/codeAction/browser/codeActionCommands": {
- "applyCodeActionFailed": "Se ha producido un error desconocido al aplicar la acción de código",
"args.schema.apply": "Controla cuándo se aplican las acciones devueltas.",
"args.schema.apply.first": "Aplicar siempre la primera acción de código devuelto.",
"args.schema.apply.ifSingle": "Aplicar la primera acción de código devuelta si solo hay una.",
@@ -754,30 +1090,65 @@
"editor.action.source.noneMessage.preferred.kind": "No hay acciones de origen preferidas para \"{0}\" disponibles",
"fixAll.label": "Corregir todo",
"fixAll.noneMessage": "No está disponible la acción de corregir todo",
+ "organizeImports.description": "Organice las importaciones en el archivo actual. También se denomina \"Optimizar importaciones\" por parte de algunas herramientas",
"organizeImports.label": "Organizar Importaciones",
"quickfix.trigger.label": "Corrección Rápida",
"refactor.label": "Refactorizar...",
- "refactor.preview.label": "Refactorizar con vista previa...",
"source.label": "Acción de código fuente..."
},
- "vs/editor/contrib/codeAction/browser/codeActionMenu": {
- "CodeActionMenuVisible": "Si el widget de lista de acciones de código está visible",
- "label": "{0} to Refactor, {1} to Preview"
+ "vs/editor/contrib/codeAction/browser/codeActionContributions": {
+ "includeNearbyQuickFixes": "Habilita o deshabilita la visualización de la corrección rápida más cercana dentro de una línea cuando no está actualmente en un diagnóstico.",
+ "showCodeActionHeaders": "Activar/desactivar la visualización de los encabezados de los grupos en el menú de Acción de código.",
+ "triggerOnFocusChange": "Habilitar el desencadenamiento {0} cuando {1} se establece en {2}. Las acciones de código deben establecerse en {3} para que se desencadenen los cambios de ventana y de foco."
+ },
+ "vs/editor/contrib/codeAction/browser/codeActionController": {
+ "editingNewSelection": "Contexto: {0} en la línea {1} y columna {2}.",
+ "hideMoreActions": "Ocultar deshabilitado",
+ "showMoreActions": "Mostrar elementos deshabilitados"
},
- "vs/editor/contrib/codeAction/browser/codeActionWidgetContribution": {
- "codeActionWidget": "Si habilita esta opción, se ajusta la forma en que se representa el menú de acción de código."
+ "vs/editor/contrib/codeAction/browser/codeActionMenu": {
+ "codeAction.widget.id.convert": "Reescribir",
+ "codeAction.widget.id.extract": "Extraer",
+ "codeAction.widget.id.inline": "Insertado",
+ "codeAction.widget.id.more": "Más Acciones...",
+ "codeAction.widget.id.move": "Mover",
+ "codeAction.widget.id.quickfix": "Corrección rápida",
+ "codeAction.widget.id.source": "Acción de origen",
+ "codeAction.widget.id.surround": "Delimitar con"
},
"vs/editor/contrib/codeAction/browser/lightBulbWidget": {
"codeAction": "Mostrar acciones de código",
+ "codeActionAutoRun": "Ejecutar: {0}",
"codeActionWithKb": "Mostrar acciones de código ({0})",
+ "gutterLightbulbAIFixAutoFixWidget": "Icono que genera el menú de acciones de código desde el medianil cuando no hay espacio en el editor y hay disponible una corrección de IA y una corrección rápida.",
+ "gutterLightbulbAIFixWidget": "Icono que genera el menú de acciones de código desde el medianil cuando no hay espacio en el editor y hay disponible una corrección de IA.",
+ "gutterLightbulbAutoFixWidget": "Icono que genera el menú de acciones de código desde el medianil cuando no hay espacio en el editor y hay disponible una corrección rápida.",
+ "gutterLightbulbSparkleFilledWidget": "Icono que genera el menú de acciones de código desde el medianil cuando no hay espacio en el editor y hay disponible una corrección de IA y una corrección rápida.",
+ "gutterLightbulbWidget": "Icono que genera el menú de acciones de código desde el medianil cuando no hay espacio en el editor.",
"preferredcodeActionWithKb": "Mostrar acciones de código. Corrección rápida preferida disponible ({0})"
},
"vs/editor/contrib/codelens/browser/codelensController": {
- "showLensOnLine": "Mostrar comandos de lente de código para la línea actual"
+ "placeHolder": "Seleccionar un comando",
+ "showLensOnLine": "Mostrar comandos de CodeLens para la línea actual"
+ },
+ "vs/editor/contrib/colorPicker/browser/colorPickerParts/colorPickerCloseButton": {
+ "closeIcon": "Icono para cerrar el selector de colores"
},
- "vs/editor/contrib/colorPicker/browser/colorPickerWidget": {
+ "vs/editor/contrib/colorPicker/browser/colorPickerParts/colorPickerHeader": {
"clickToToggleColorOptions": "Haga clic para alternar las opciones de color (rgb/hsl/hex)"
},
+ "vs/editor/contrib/colorPicker/browser/hoverColorPicker/hoverColorPickerParticipant": {
+ "hoverAccessibilityColorParticipant": "Aquí hay un selector de colores."
+ },
+ "vs/editor/contrib/colorPicker/browser/standaloneColorPicker/standaloneColorPickerActions": {
+ "hideColorPicker": "Ocultar la Selector de colores",
+ "hideColorPickerDescription": "Ocultar el selector de colores independiente.",
+ "insertColorWithStandaloneColorPicker": "Insertar color con Selector de colores independiente",
+ "insertColorWithStandaloneColorPickerDescription": "Inserte colores hexadecimales/rgb/hsl con el selector de colores independiente centrado.",
+ "mishowOrFocusStandaloneColorPicker": "&&Mostrar o centrar Selector de colores independientes",
+ "showOrFocusStandaloneColorPicker": "Mostrar o centrar Selector de colores independientes",
+ "showOrFocusStandaloneColorPickerDescription": "Mostrar o centrar un selector de color independiente que usa el proveedor de colores predeterminado. Muestra colores hexadecimales/rgb/hsl."
+ },
"vs/editor/contrib/comment/browser/comment": {
"comment.block": "Alternar comentario de bloque",
"comment.line": "Alternar comentario de línea",
@@ -788,7 +1159,7 @@
},
"vs/editor/contrib/contextmenu/browser/contextmenu": {
"action.showContextMenu.label": "Mostrar menú contextual del editor",
- "context.minimap.minimap": "Minimap",
+ "context.minimap.minimap": "Minimapa",
"context.minimap.renderCharacters": "Representar caracteres",
"context.minimap.size": "Tamaño vertical",
"context.minimap.size.fill": "Relleno",
@@ -798,24 +1169,54 @@
"context.minimap.slider.always": "Siempre",
"context.minimap.slider.mouseover": "Pasar el mouse"
},
- "vs/editor/contrib/copyPaste/browser/copyPasteContribution": {
- "pasteActions": "Habilita o deshabilita la ejecución de ediciones desde extensiones al pegar."
- },
"vs/editor/contrib/cursorUndo/browser/cursorUndo": {
"cursor.redo": "Cursor Rehacer",
"cursor.undo": "Cursor Deshacer"
},
- "vs/editor/contrib/dropIntoEditor/browser/dropIntoEditorContribution": {
- "dropProgressTitle": "Ejecutando controladores de destino..."
+ "vs/editor/contrib/dropOrPasteInto/browser/copyPasteContribution": {
+ "pasteAs": "Pegar como...",
+ "pasteAs.kind": "El tipo de edición de pegado con la que se intentará pegar.\r\nEn caso de haber varias ediciones para esta variante, el editor mostrará un selector. En caso de que no haya ediciones de este tipo, el editor mostrará un mensaje de error.",
+ "pasteAs.preferences": "Lista de variantes de edición de pegado preferidas para su intento de aplicación.\r\nSe aplicará la primera edición que coincida con las preferencias.",
+ "pasteAsText": "Pegar como texto"
+ },
+ "vs/editor/contrib/dropOrPasteInto/browser/copyPasteController": {
+ "noPreferences": "vacío",
+ "pasteAsDefault": "Configurar la acción de pegado predeterminada",
+ "pasteAsError": "No se encontraron ediciones de pegado para '{0}'",
+ "pasteAsPickerPlaceholder": "Seleccionar acción pegar",
+ "pasteAsProgress": "Ejecutando controladores de pegado",
+ "pasteIntoEditorProgress": "Ejecutando controladores de pegado. Haga clic para cancelar y hacer pegado básico",
+ "pasteWidgetVisible": "Si se muestra el widget de pegado",
+ "postPasteWidgetTitle": "Mostrar opciones de pegado...",
+ "resolveProcess": "Resolviendo la edición de pegado para '{0}'. Haga clic para cancelar"
+ },
+ "vs/editor/contrib/dropOrPasteInto/browser/defaultProviders": {
+ "defaultDropProvider.uriList.path": "Insertar ruta de acceso",
+ "defaultDropProvider.uriList.paths": "Insertar rutas de acceso",
+ "defaultDropProvider.uriList.relativePath": "Insertar ruta de acceso relativa",
+ "defaultDropProvider.uriList.relativePaths": "Insertar rutas de acceso relativas",
+ "defaultDropProvider.uriList.uri": "Insertar URI",
+ "defaultDropProvider.uriList.uris": "Insertar URIs",
+ "pasteHtmlLabel": "Insertar HTML",
+ "text.label": "Insertar texto sin formato"
+ },
+ "vs/editor/contrib/dropOrPasteInto/browser/dropIntoEditorController": {
+ "dropIntoEditorProgress": "Ejecutando controladores de colocación. Haga clic para cancelar.",
+ "dropWidgetVisible": "Si se muestra el widget de colocación",
+ "postDropWidgetTitle": "Mostrar opciones de colocación..."
+ },
+ "vs/editor/contrib/dropOrPasteInto/browser/postEditWidget": {
+ "applyError": "Error al aplicar la edición ''{0}:\r\n{1}",
+ "resolveError": "Error al resolver la edición \"{0}\":\r\n{1}"
},
"vs/editor/contrib/editorState/browser/keybindingCancellation": {
"cancellableOperation": "Indica si el editor ejecuta una operación que se puede cancelar como, por ejemplo, \"Inspeccionar referencias\""
},
"vs/editor/contrib/find/browser/findController": {
- "actions.find.isRegexOverride": "Invalida la marca \"Usar expresión regular\".\r\nLa marca no se guardará para el futuro.\r\n0: No hacer nada\r\n1: True\r\n2: False",
- "actions.find.matchCaseOverride": "Invalida la marca \"Caso matemático\".\r\nLa marca no se guardará para el futuro.\r\n0: No hacer nada\r\n1: True\r\n2: False",
- "actions.find.preserveCaseOverride": "Invalida la marca \"Conservar mayúsculas y minúsculas.\r\nLa marca no se guardará para el futuro.\r\n0: No hacer nada\r\n1: True\r\n2: False",
- "actions.find.wholeWordOverride": "Invalida la marca \"Hacer coincidir palabra completa”.\r\nLa marca no se guardará para el futuro.\r\n0: No hacer nada\r\n1: True\r\n2: False",
+ "findMatchAction.goToMatch": "Ir a Coincidencia...",
+ "findMatchAction.inputPlaceHolder": "Escriba un número para ir a una coincidencia específica (entre 1 y {0})",
+ "findMatchAction.inputValidationMessage": "Escriba un número entre 1 y {0}",
+ "findMatchAction.noResults": "No hay coincidencias. Intente buscar otra cosa.",
"findNextMatchAction": "Buscar siguiente",
"findPreviousMatchAction": "Buscar anterior",
"miFind": "&&Buscar",
@@ -825,14 +1226,14 @@
"startFindAction": "Buscar",
"startFindWithArgsAction": "Búsqueda con argumentos",
"startFindWithSelectionAction": "Buscar con selección",
- "startReplace": "Reemplazar"
+ "startReplace": "Reemplazar",
+ "too.large.for.replaceall": "El archivo es demasiado grande para realizar una operación de reemplazar todo."
},
"vs/editor/contrib/find/browser/findWidget": {
"ariaSearchNoResult": "{0} encontrado para \"{1}\"",
"ariaSearchNoResultEmpty": "Encontrados: {0}",
"ariaSearchNoResultWithLineNum": "{0} encontrado para \"{1}\", en {2}",
"ariaSearchNoResultWithLineNumNoCurrentMatch": "{0} encontrado para \"{1}\"",
- "ctrlEnter.keybindingChanged": "Ctrl+Entrar ahora inserta un salto de línea en lugar de reemplazar todo. Puede modificar el enlace de claves para editor.action.replaceAll para invalidar este comportamiento.",
"findCollapsedIcon": "Icono para indicar que el widget de búsqueda del editor está contraído.",
"findExpandedIcon": "Icono para indicar que el widget de búsqueda del editor está expandido.",
"findNextMatchIcon": "Icono para \"Buscar siguiente\" en el widget de búsqueda del editor.",
@@ -842,6 +1243,7 @@
"findSelectionIcon": "Icono para \"Buscar en selección\" en el widget de búsqueda del editor.",
"label.closeButton": "Cerrar",
"label.find": "Buscar",
+ "label.findDialog": "Buscar y reemplazar",
"label.matchesLocation": "{0} de {1}",
"label.nextMatchButton": "Coincidencia siguiente",
"label.noResults": "No hay resultados",
@@ -856,44 +1258,42 @@
"title.matchesCountLimit": "Sólo los primeros {0} resultados son resaltados, pero todas las operaciones de búsqueda trabajan en todo el texto."
},
"vs/editor/contrib/folding/browser/folding": {
- "createManualFoldRange.label": "Create Manual Folding Range from Selection",
- "editorGutter.foldingControlForeground": "Color del control plegable en el medianil del editor.",
+ "createManualFoldRange.label": "Crear rango de plegado a partir de la selección",
"foldAction.label": "Plegar",
"foldAllAction.label": "Plegar todo",
"foldAllBlockComments.label": "Cerrar todos los comentarios de bloque",
- "foldAllExcept.label": "Plegar todas las regiones excepto las seleccionadas",
+ "foldAllExcept.label": "Plegar todas excepto las seleccionadas",
"foldAllMarkerRegions.label": "Plegar todas las regiones",
- "foldBackgroundBackground": "Color de fondo detrás de los rangos plegados. El color no debe ser opaco para no ocultar las decoraciones subyacentes.",
"foldLevelAction.label": "Nivel de plegamiento {0}",
"foldRecursivelyAction.label": "Plegar de forma recursiva",
"gotoNextFold.label": "Ir al rango de plegado siguiente",
"gotoParentFold.label": "Ir al plegado primario",
"gotoPreviousFold.label": "Ir al rango de plegado anterior",
- "maximum fold ranges": "El número de regiones que se pueden plegar está limitado a un máximo de {0}. Aumente la opción de configuración ['Plegamiento de regiones máximas'](command:workbench.action.openSettings?[\" editor.foldingMaximumRegions\"]) para habilitar más.",
- "removeManualFoldingRanges.label": "Remove Manual Folding Ranges",
+ "removeManualFoldingRanges.label": "Quitar rangos de plegado manuales",
"toggleFoldAction.label": "Alternar plegado",
+ "toggleFoldRecursivelyAction.label": "Alternar plegado recursivo",
+ "toggleImportFold.label": "Alternar plegamiento de importación",
"unFoldRecursivelyAction.label": "Desplegar de forma recursiva",
"unfoldAction.label": "Desplegar",
"unfoldAllAction.label": "Desplegar todo",
- "unfoldAllExcept.label": "Desplegar todas las regiones excepto las seleccionadas",
+ "unfoldAllExcept.label": "Desplegar todas excepto las seleccionadas",
"unfoldAllMarkerRegions.label": "Desplegar Todas las Regiones"
},
"vs/editor/contrib/folding/browser/foldingDecorations": {
+ "collapsedTextColor": "Color del texto contraído después de la primera línea de un rango doblado.",
+ "editorGutter.foldingControlForeground": "Color del control plegable en el medianil del editor.",
+ "foldBackgroundBackground": "Color de fondo detrás de los rangos plegados. El color no debe ser opaco para no ocultar las decoraciones subyacentes.",
"foldingCollapsedIcon": "Icono de rangos contraídos en el margen de glifo del editor.",
"foldingExpandedIcon": "Icono de rangos expandidos en el margen de glifo del editor.",
- "foldingManualCollapedIcon": "Icon for manually collapsed ranges in the editor glyph margin.",
- "foldingManualExpandedIcon": "Icon for manually expanded ranges in the editor glyph margin."
+ "foldingManualCollapedIcon": "Icono de intervalos contraídos manualmente en el margen del glifo del editor.",
+ "foldingManualExpandedIcon": "Icono de intervalos expandidos manualmente en el margen del glifo del editor.",
+ "linesCollapsed": "Haga clic para expandir el rango.",
+ "linesExpanded": "Haga clic para contraer el intervalo."
},
"vs/editor/contrib/fontZoom/browser/fontZoom": {
- "EditorFontZoomIn.label": "Acercarse a la tipografía del editor",
- "EditorFontZoomOut.label": "Alejarse de la tipografía del editor",
- "EditorFontZoomReset.label": "Restablecer alejamiento de la tipografía del editor"
- },
- "vs/editor/contrib/format/browser/format": {
- "hint11": "1 edición de formato en la línea {0}",
- "hint1n": "1 edición de formato entre las líneas {0} y {1}",
- "hintn1": "{0} ediciones de formato en la línea {1}",
- "hintnn": "{0} ediciones de formato entre las líneas {1} y {2}"
+ "EditorFontZoomIn.label": "Aumentar el tamaño de fuente del editor",
+ "EditorFontZoomOut.label": "Disminuir el tamaño de fuente del editor",
+ "EditorFontZoomReset.label": "Restablecer tamaño de fuente del editor"
},
"vs/editor/contrib/format/browser/formatActions": {
"formatDocument.label": "Dar formato al documento",
@@ -983,8 +1383,8 @@
"vs/editor/contrib/gotoSymbol/browser/referencesModel": {
"aria.fileReferences.1": "1 símbolo en {0}, ruta de acceso completa {1}",
"aria.fileReferences.N": "{0} símbolos en {1}, ruta de acceso completa {2}",
- "aria.oneReference": "símbolo en {0} linea {1} en la columna {2}",
- "aria.oneReference.preview": "símbolo en {0} línea {1} en la columna {2}, {3}",
+ "aria.oneReference": "en {0} en la línea {1} en la columna {2}",
+ "aria.oneReference.preview": "{0} en {1} en la línea {2} en la columna {3}",
"aria.result.0": "No se encontraron resultados",
"aria.result.1": "Encontró 1 símbolo en {0}",
"aria.result.n1": "Encontró {0} símbolos en {1}",
@@ -995,12 +1395,64 @@
"location": "Símbolo {0} de {1}",
"location.kb": "Símbolo {0} de {1}, {2} para el siguiente"
},
- "vs/editor/contrib/hover/browser/hover": {
+ "vs/editor/contrib/gpu/browser/gpuActions": {
+ "drawGlyph.label": "Glifo de dibujo",
+ "gpuDebug.label": "Desarrollador: Representador de GPU del editor de depuración",
+ "logTextureAtlasStats.label": "Estadísticas de Atlas de textura de registro",
+ "saveTextureAtlas.label": "Guardar atlas de textura"
+ },
+ "vs/editor/contrib/hover/browser/contentHoverRendered": {
+ "hoverAccessibilityStatusBar": "Se trata de una barra de estado activable.",
+ "hoverAccessibilityStatusBarActionWithKeybinding": "Tiene una acción con la etiqueta {0} y el enlace de teclado {1}.",
+ "hoverAccessibilityStatusBarActionWithoutKeybinding": "Tiene una acción con la etiqueta {0}."
+ },
+ "vs/editor/contrib/hover/browser/hoverAccessibleViews": {
+ "decreaseVerbosity": "- El nivel de detalle de la parte prioritaria al mantener se puede disminuir con el comando Disminuir nivel de detalle al mantener.",
+ "increaseVerbosity": "- El nivel de detalle de la parte prioritaria al mantener se puede aumentar con el comando Aumentar nivel de detalle al mantener."
+ },
+ "vs/editor/contrib/hover/browser/hoverActionIds": {
+ "decreaseHoverVerbosityLevel": "Disminuir nivel de detalle al mantener el puntero",
+ "increaseHoverVerbosityLevel": "Aumentar nivel de detalle al mantener el puntero sobre el editor"
+ },
+ "vs/editor/contrib/hover/browser/hoverActions": {
+ "goToBottomHover": "Ir a la parte inferior al mantener el puntero",
+ "goToBottomHoverDescription": "Vaya a la parte inferior del editor al mantener el puntero sobre el editor.",
+ "goToTopHover": "Ir al puntero superior",
+ "goToTopHoverDescription": "Vaya a la parte superior del editor al mantener el puntero.",
+ "hideHover": "Ocultar mantener el puntero",
+ "pageDownHover": "Desplazamiento de página hacia abajo",
+ "pageDownHoverDescription": "Desplace la página hacia abajo al mantener el puntero sobre el editor.",
+ "pageUpHover": "Desplazamiento de página hacia arriba",
+ "pageUpHoverDescription": "Desplazar página hacia arriba al mantener el puntero sobre el editor.",
+ "scrollDownHover": "Desplazar hacia abajo al mantener el puntero",
+ "scrollDownHoverDescription": "Desplácese hacia abajo al mantener el puntero sobre el editor.",
+ "scrollLeftHover": "Desplazar al mantener el puntero a la izquierda",
+ "scrollLeftHoverDescription": "Desplácese a la izquierda al mantener el puntero sobre el editor.",
+ "scrollRightHover": "Desplazar al mantener el puntero a la derecha",
+ "scrollRightHoverDescription": "Desplácese a la derecha al mantener el puntero sobre el editor.",
+ "scrollUpHover": "Desplazar hacia arriba al mantener el puntero",
+ "scrollUpHoverDescription": "Desplácese hacia arriba al mantener el puntero sobre el editor.",
"showDefinitionPreviewHover": "Mostrar vista previa de la definición que aparece al mover el puntero",
- "showHover": "Mostrar al mantener el puntero"
+ "showDefinitionPreviewHoverDescription": "Muestre la vista previa de la definición al mantener el puntero sobre el editor.",
+ "showOrFocusHover": "Mostrar o centrarse al mantener el puntero",
+ "showOrFocusHover.focus.autoFocusImmediately": "Se enfocará el cuadro que aparece cuando se pasa el ratón por encima de un elemento.",
+ "showOrFocusHover.focus.focusIfVisible": "El cuadro del elemento sobre el que se ha pasado el ratón se enfocará solo si ya está visible.",
+ "showOrFocusHover.focus.noAutoFocus": "El cuadro del elemento sobre el que se ha pasado el ratón se enfocará automáticamente.",
+ "showOrFocusHoverDescription": "Mostrar o centrar al mantener el puntero sobre el editor, que muestra documentación, referencias y otro contenido para un símbolo en la posición actual del cursor."
+ },
+ "vs/editor/contrib/hover/browser/hoverCopyButton": {
+ "hover.copied": "Se copió en el portapapeles",
+ "hover.copy": "Copiar"
},
"vs/editor/contrib/hover/browser/markdownHoverParticipant": {
+ "decreaseHoverVerbosity": "Icono para reducir el nivel de detalle al mantener el puntero.",
+ "decreaseVerbosity": "Disminuir nivel de detalle al mantener el puntero",
+ "decreaseVerbosityWithKb": "Disminuir nivel de detalle al mantener el puntero ({0})",
+ "increaseHoverVerbosity": "Icono para aumentar el nivel de detalle al mantener el puntero.",
+ "increaseVerbosity": "Aumentar nivel de detalle al mantener el puntero",
+ "increaseVerbosityWithKb": "Aumentar nivel de detalle al mantener el puntero ({0})",
"modesContentHover.loading": "Cargando...",
+ "stopped rendering": "Representación en pausa durante una línea larga por motivos de rendimiento. Esto se puede configurar mediante \"editor.stopRenderingLineAfter\".",
"too many characters": "Por motivos de rendimiento, la tokenización se omite con filas largas. Esta opción se puede configurar con \"editor.maxTokenizationLineLength\"."
},
"vs/editor/contrib/hover/browser/markerHoverParticipant": {
@@ -1009,19 +1461,26 @@
"quick fixes": "Corrección Rápida",
"view problem": "Ver el problema"
},
- "vs/editor/contrib/inPlaceReplace/browser/inPlaceReplace": {
- "InPlaceReplaceAction.next.label": "Reemplazar con el valor siguiente",
- "InPlaceReplaceAction.previous.label": "Reemplazar con el valor anterior"
- },
"vs/editor/contrib/indentation/browser/indentation": {
+ "changeTabDisplaySize": "Cambiar tamaño de visualización de tabulación",
+ "changeTabDisplaySizeDescription": "Cambie el tamaño de espacio equivalente de la pestaña.",
"configuredTabSize": "Tamaño de tabulación configurado",
+ "currentTabSize": "Tamaño de tabulación actual",
+ "defaultTabSize": "Tamaño de tabulación predeterminado",
"detectIndentation": "Detectar sangría del contenido",
+ "detectIndentationDescription": "Detectar la sangría del contenido.",
"editor.reindentlines": "Volver a aplicar sangría a líneas",
+ "editor.reindentlinesDescription": "Vuelva a aplicar sangría a las líneas del editor.",
"editor.reindentselectedlines": "Volver a aplicar sangría a líneas seleccionadas",
+ "editor.reindentselectedlinesDescription": "Vuelve a aplicar sangría a las líneas seleccionadas del editor.",
"indentUsingSpaces": "Aplicar sangría con espacios",
+ "indentUsingSpacesDescription": "Use sangría con espacios.",
"indentUsingTabs": "Aplicar sangría con tabulaciones",
+ "indentUsingTabsDescription": "Usar sangría con tabulaciones.",
"indentationToSpaces": "Convertir sangría en espacios",
+ "indentationToSpacesDescription": "Convierta la sangría de tabulación en espacios.",
"indentationToTabs": "Convertir sangría en tabulaciones",
+ "indentationToTabsDescription": "Convierte la sangría de espacios en tabulaciones.",
"selectTabWidth": "Seleccionar tamaño de tabulación para el archivo actual"
},
"vs/editor/contrib/inlayHints/browser/inlayHintsHover": {
@@ -1034,27 +1493,105 @@
"links.navigate.kb.meta": "ctrl + clic",
"links.navigate.kb.meta.mac": "cmd + clic"
},
- "vs/editor/contrib/inlineCompletions/browser/ghostTextController": {
+ "vs/editor/contrib/inlineCompletions/browser/controller/commands": {
+ "accept": "Aceptar",
+ "acceptLine": "Aceptar línea",
+ "acceptWord": "Aceptar palabra",
+ "action.inlineSuggest.accept": "Aceptar sugerencia insertada",
+ "action.inlineSuggest.acceptNextLine": "Aceptar la siguiente línea de sugerencia insertada",
+ "action.inlineSuggest.acceptNextWord": "Aceptar la siguiente palabra de sugerencia insertada",
+ "action.inlineSuggest.alwaysShowToolbar": "Mostrar siempre la barra de herramientas",
+ "action.inlineSuggest.dev.extractRepro": "Desarrollador: extraer estado de sugerencia en línea",
+ "action.inlineSuggest.hide": "Ocultar sugerencia insertada",
+ "action.inlineSuggest.jump": "Saltar a la siguiente edición insertada",
"action.inlineSuggest.showNext": "Mostrar sugerencia alineada siguiente",
"action.inlineSuggest.showPrevious": "Mostrar sugerencia alineada anterior",
- "action.inlineSuggest.trigger": "Desencadenar sugerencia alineada",
+ "action.inlineSuggest.toggleShowCollapsed": "Alternar sugerencias insertadas Mostrar contraídas",
+ "action.inlineSuggest.trigger": "Desencadenar sugerencia insertada",
+ "inlineSuggest.trigger.args": "Opciones para activar sugerencias insertadas.",
+ "inlineSuggest.trigger.description": "Activa una sugerencia insertada en el editor.",
+ "jump": "Saltar",
+ "noInlineSuggestionAvailable": "No hay ninguna sugerencia insertada disponible.",
+ "reject": "Reject"
+ },
+ "vs/editor/contrib/inlineCompletions/browser/controller/inlineCompletionContextKeys": {
+ "cursorAtInlineEdit": "Si el cursor está en una edición insertada",
+ "cursorBeforeGhostText": "Si el cursor está en texto fantasma",
+ "cursorInIndentation": "Si el cursor está en sangría",
+ "editor.hasSelection": "Si el editor tiene texto seleccionado",
+ "inInlineEditsPreviewEditor": "Si el editor de código actual muestra una vista previa de ediciones insertadas",
+ "inlineEditVisible": "Si una edición alineada es visible",
"inlineSuggestionHasIndentation": "Si la sugerencia alineada comienza con un espacio en blanco",
"inlineSuggestionHasIndentationLessThanTabSize": "Si la sugerencia insertada comienza con un espacio en blanco menor que lo que se insertaría mediante tabulación",
- "inlineSuggestionVisible": "Si una sugerencia alineada está visible"
+ "inlineSuggestionVisible": "Si una sugerencia alineada está visible",
+ "suppressSuggestions": "Si las sugerencias deben suprimirse para la sugerencia actual",
+ "tabShouldAcceptInlineEdit": "Indica si la pestaña debe aceptar la edición insertada.",
+ "tabShouldJumpToInlineEdit": "Indica si la pestaña debe saltar a una edición insertada."
},
- "vs/editor/contrib/inlineCompletions/browser/ghostTextHoverParticipant": {
- "acceptInlineSuggestion": "Aceptar",
- "inlineSuggestionFollows": "Sugerencia:",
- "showNextInlineSuggestion": "Siguiente",
- "showPreviousInlineSuggestion": "Anterior"
+ "vs/editor/contrib/inlineCompletions/browser/controller/inlineCompletionsController": {
+ "showAccessibleViewHint": "Inspeccionar esto en la vista accesible ({0})"
+ },
+ "vs/editor/contrib/inlineCompletions/browser/hintsWidget/hoverParticipant": {
+ "hoverAccessibilityStatusBar": "Hay finalizaciones insertadas aquí",
+ "inlineSuggestionFollows": "Sugerencia:"
+ },
+ "vs/editor/contrib/inlineCompletions/browser/hintsWidget/inlineCompletionsHintsWidget": {
+ "content": "{0} ({1})",
+ "next": "Siguiente",
+ "parameterHintsNextIcon": "Icono para mostrar la sugerencia de parámetro siguiente.",
+ "parameterHintsPreviousIcon": "Icono para mostrar la sugerencia de parámetro anterior.",
+ "previous": "Anterior"
+ },
+ "vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/components/gutterIndicatorMenu": {
+ "accept": "Aceptar",
+ "goto": "Ir a",
+ "reject": "Rechazar",
+ "settings": "Configuración",
+ "showCollapsed": "Mostrar contraído",
+ "showExpanded": "Mostrar expandido",
+ "snooze": "Posponer"
+ },
+ "vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/components/gutterIndicatorView": {
+ "inlineSuggestion": "Sugerencia insertada"
+ },
+ "vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/theme": {
+ "inlineEdit.gutterIndicator.background": "Color de fondo del indicador de medianil de edición en línea.",
+ "inlineEdit.gutterIndicator.primaryBackground": "Color de fondo para el indicador de medianil de edición en línea principal.",
+ "inlineEdit.gutterIndicator.primaryBorder": "Color de borde para el indicador de medianil de edición insertada principal.",
+ "inlineEdit.gutterIndicator.primaryForeground": "Color de primer plano para el indicador de medianil de edición en línea principal.",
+ "inlineEdit.gutterIndicator.secondaryBackground": "Color de fondo para el indicador de medianil de edición en línea secundario.",
+ "inlineEdit.gutterIndicator.secondaryBorder": "Color del borde del indicador de medianil de edición insertada secundario.",
+ "inlineEdit.gutterIndicator.secondaryForeground": "Color de primer plano para el indicador de medianil de edición en línea secundario.",
+ "inlineEdit.gutterIndicator.successfulBackground": "Color de fondo para el indicador de medianil de edición en línea correcto.",
+ "inlineEdit.gutterIndicator.successfulBorder": "Color de borde para el indicador de medianil de edición insertada correcto.",
+ "inlineEdit.gutterIndicator.successfulForeground": "Color de primer plano para el indicador de medianil alineado correcto.",
+ "inlineEdit.modifiedBackground": "Color de fondo del texto modificado en las ediciones insertadas.",
+ "inlineEdit.modifiedBorder": "Color del borde del texto modificado en las ediciones insertadas.",
+ "inlineEdit.modifiedChangedLineBackground": "Color de fondo de las líneas cambiadas en el texto modificado de las ediciones insertadas.",
+ "inlineEdit.modifiedChangedTextBackground": "Color de superposición del texto modificado en el texto modificado de las ediciones insertadas.",
+ "inlineEdit.originalBackground": "Color de fondo del texto original en las ediciones insertadas.",
+ "inlineEdit.originalBorder": "Color de borde del texto original en las ediciones insertadas.",
+ "inlineEdit.originalChangedLineBackground": "Color de fondo de las líneas cambiadas en el texto original de las ediciones insertadas.",
+ "inlineEdit.originalChangedTextBackground": "Color de superposición para el texto modificado en el texto original de las ediciones insertadas.",
+ "inlineEdit.tabWillAcceptModifiedBorder": "Color de borde modificado para el widget de ediciones insertadas cuando la pestaña lo aceptará.",
+ "inlineEdit.tabWillAcceptOriginalBorder": "Color del borde original del widget de ediciones insertadas sobre el texto original cuando la pestaña lo acepte."
+ },
+ "vs/editor/contrib/inPlaceReplace/browser/inPlaceReplace": {
+ "InPlaceReplaceAction.next.label": "Reemplazar con el valor siguiente",
+ "InPlaceReplaceAction.previous.label": "Reemplazar con el valor anterior"
+ },
+ "vs/editor/contrib/insertFinalNewLine/browser/insertFinalNewLine": {
+ "insertFinalNewLine": "Insertar nueva línea final"
},
"vs/editor/contrib/lineSelection/browser/lineSelection": {
"expandLineSelection": "Expandir selección de línea"
},
"vs/editor/contrib/linesOperations/browser/linesOperations": {
"duplicateSelection": "Selección duplicada",
+ "editor.transformToCamelcase": "Transformar a mayúsculas y minúsculas Camel",
"editor.transformToKebabcase": "Transformar en caso Kebab",
"editor.transformToLowercase": "Transformar a minúsculas",
+ "editor.transformToPascalcase": "Transformar en Pascal Case",
"editor.transformToSnakecase": "Transformar en Snake Case",
"editor.transformToTitlecase": "Transformar en Title Case",
"editor.transformToUppercase": "Transformar a mayúsculas",
@@ -1072,6 +1609,7 @@
"lines.moveDown": "Mover línea hacia abajo",
"lines.moveUp": "Mover línea hacia arriba",
"lines.outdent": "Anular sangría de línea",
+ "lines.reverseLines": "Invertir líneas",
"lines.sortAscending": "Ordenar líneas en orden ascendente",
"lines.sortDescending": "Ordenar líneas en orden descendente",
"lines.trimTrailingWhitespace": "Recortar espacio final",
@@ -1142,6 +1680,8 @@
"peekViewEditorGutterBackground": "Color de fondo del margen en el editor de vista de inspección.",
"peekViewEditorMatchHighlight": "Buscar coincidencia del color de resultado del editor de vista de inspección.",
"peekViewEditorMatchHighlightBorder": "Hacer coincidir el borde resaltado en el editor de vista previa.",
+ "peekViewEditorStickScrollBackground": "Color de fondo del desplazamiento con inmovilización en el editor de vista de inspección.",
+ "peekViewEditorStickyScrollGutterBackground": "Color de fondo de la parte del canal del desplazamiento con inmovilización en el editor de vista de inspección.",
"peekViewResultsBackground": "Color de fondo de la lista de resultados de vista de inspección.",
"peekViewResultsFileForeground": "Color de primer plano de los archivos de inspección en la lista de resultados.",
"peekViewResultsMatchForeground": "Color de primer plano de los nodos de inspección en la lista de resultados.",
@@ -1152,12 +1692,19 @@
"peekViewTitleForeground": "Color del título de la vista de inpección.",
"peekViewTitleInfoForeground": "Color de la información del título de la vista de inspección."
},
+ "vs/editor/contrib/placeholderText/browser/placeholderText.contribution": {
+ "placeholderForeground": "Color de primer plano del texto del marcador de posición en el editor."
+ },
"vs/editor/contrib/quickAccess/browser/gotoLineQuickAccess": {
- "cannotRunGotoLine": "Abra primero un editor de texto para ir a una línea.",
- "gotoLineColumnLabel": "Vaya a la línea {0} y al carácter {1}.",
- "gotoLineLabel": "Ir a la línea {0}.",
- "gotoLineLabelEmpty": "Línea actual: {0}, Carácter: {1}. Escriba un número de línea al que navegar.",
- "gotoLineLabelEmptyWithLimit": "Línea actual: {0}, Carácter: {1}. Escriba un número de línea entre 1 y {2} a los que navegar."
+ "gotoLine.ariaLabel": "Posición actual: línea {0}, columna {1}. {2}",
+ "gotoLine.columnPrompt": "Pulse 'Entrar' para ir a la línea {0} o escriba un número de columna (de 1 a {1}).",
+ "gotoLine.goToPosition": "Pulse 'Entrar' para ir a la línea {0} en la columna {1}.",
+ "gotoLine.lineColumnPrompt": "Presione \"Entrar\" para ir a la línea {0} o escriba dos puntos : para agregar un número de columna.",
+ "gotoLine.linePrompt": "Escriba un número de línea al que ir (de 1 a {0}).",
+ "gotoLine.noEditor": "Abra primero un editor de texto para ir a una línea o desplazamiento.",
+ "gotoLine.offsetPrompt": "Escriba una posición de carácter a la que ir (de 1 a {0}).",
+ "gotoLine.offsetPromptZero": "Escriba una posición de carácter a la que ir (de 0 a {0}).",
+ "gotoLineToggle": "Usar desplazamiento con base cero"
},
"vs/editor/contrib/quickAccess/browser/gotoSymbolQuickAccess": {
"_constructor": "constructores ({0})",
@@ -1200,6 +1747,8 @@
"vs/editor/contrib/rename/browser/rename": {
"aria": "Nombre cambiado correctamente de '{0}' a '{1}'. Resumen: {2}",
"enablePreview": "Activar/desactivar la capacidad de previsualizar los cambios antes de cambiar el nombre",
+ "focusNextRenameSuggestion": "Enfocar la siguiente sugerencia de cambio de nombre",
+ "focusPreviousRenameSuggestion": "Enfocar sugerencia de cambio de nombre anterior",
"label": "Cambiando el nombre de '{0}' a '{1}'",
"no result": "No hay ningún resultado.",
"quotableLabel": "Cambiar el nombre de {0} a {1}",
@@ -1208,10 +1757,14 @@
"rename.label": "Cambiar el nombre del símbolo",
"resolveRenameLocationFailed": "Error desconocido al resolver el cambio de nombre de la ubicación"
},
- "vs/editor/contrib/rename/browser/renameInputField": {
+ "vs/editor/contrib/rename/browser/renameWidget": {
+ "cancelRenameSuggestionsButton": "Cancelar",
+ "generateRenameSuggestionsButton": "Generar sugerencias de nombre nuevo",
"label": "{0} para cambiar de nombre, {1} para obtener una vista previa",
"renameAriaLabel": "Cambie el nombre de la entrada. Escriba el nuevo nombre y presione Entrar para confirmar.",
- "renameInputVisible": "Indica si el widget de cambio de nombre de entrada está visible."
+ "renameInputFocused": "Si el widget de entrada de cambio de nombre está enfocado",
+ "renameInputVisible": "Indica si el widget de cambio de nombre de entrada está visible.",
+ "renameSuggestionsReceivedAria": "Se han recibido {0} sugerencias de cambio de nombre"
},
"vs/editor/contrib/smartSelect/browser/smartSelect": {
"miSmartSelectGrow": "&&Expandir selección",
@@ -1265,6 +1818,19 @@
"Wednesday": "Miércoles",
"WednesdayShort": "Mié"
},
+ "vs/editor/contrib/stickyScroll/browser/stickyScrollActions": {
+ "focusStickyScroll": "Centrarse en el desplazamiento con inmovilización del editor",
+ "goToFocusedStickyScrollLine.title": "Ir a la línea de desplazamiento con inmovilización centrada",
+ "miStickyScroll": "&&Desplazamiento con inmovilización",
+ "mifocusEditorStickyScroll": "&&Centrarse en el desplazamiento con inmovilización del editor",
+ "mitoggleStickyScroll": "&&Alternar desplazamiento con inmovilización del editor",
+ "selectEditor.title": "Seleccionar el Editor",
+ "selectNextStickyScrollLine.title": "Seleccionar la siguiente línea de desplazamiento con inmovilización del editor",
+ "selectPreviousStickyScrollLine.title": "Seleccionar la línea de desplazamiento con inmovilización anterior",
+ "stickyScroll": "Desplazamiento con inmovilización",
+ "toggleEditorStickyScroll": "Alternar desplazamiento con inmovilización del editor",
+ "toggleEditorStickyScroll.description": "Alternar o habilitar el desplazamiento con inmovilización del editor que muestra los ámbitos anidados en la parte superior de la ventanilla"
+ },
"vs/editor/contrib/suggest/browser/suggest": {
"acceptSuggestionOnEnter": "Indica si se insertan sugerencias al presionar Entrar.",
"suggestWidgetDetailsVisible": "Indica si los detalles de las sugerencias están visibles.",
@@ -1279,8 +1845,8 @@
"accept.insert": "Insertar",
"accept.replace": "Reemplazar",
"aria.alert.snippet": "Aceptando \"{0}\" ediciones adicionales de {1} realizadas",
- "detail.less": "mostrar más",
- "detail.more": "mostrar menos",
+ "detail.less": "Mostrar más",
+ "detail.more": "Mostrar menos",
"suggest.reset.label": "Restablecer tamaño del widget de sugerencias",
"suggest.trigger.label": "Sugerencias para Trigger"
},
@@ -1295,9 +1861,10 @@
"editorSuggestWidgetSelectedForeground": "Color de primer plano de le entrada seleccionada del widget de sugerencias.",
"editorSuggestWidgetSelectedIconForeground": "Color de primer plano del icono de la entrada seleccionada en el widget de sugerencias.",
"editorSuggestWidgetStatusForeground": "Color de primer plano del estado del widget sugerido.",
- "label.desc": "{0}, {1}",
- "label.detail": "{0}{1}",
- "label.full": "{0}{1}, {2}",
+ "label": "{0}, {1}",
+ "label.desc": "{0}, {1}, {2}",
+ "label.detail": "{0} {1}, {2}",
+ "label.full": "{0} {1}, {2}, {3}",
"suggest": "Sugerir",
"suggestWidget.loading": "Cargando...",
"suggestWidget.noSuggestions": "No hay sugerencias."
@@ -1310,8 +1877,8 @@
"readMore": "Leer más",
"suggestMoreInfoIcon": "Icono para obtener más información en el widget de sugerencias."
},
- "vs/editor/contrib/suggest/browser/suggestWidgetStatus": {
- "ddd": "{0} ({1})"
+ "vs/editor/contrib/suggest/browser/wordContextKey": {
+ "desc": "Una clave de contexto que es true cuando se encuentra al final de una palabra. Tenga en cuenta que esto solo se define cuando están habilitadas las finalizaciones de pestañas"
},
"vs/editor/contrib/symbolIcons/browser/symbolIcons": {
"symbolIcon.arrayForeground": "Color de primer plano de los símbolos de matriz. Estos símbolos aparecen en el contorno, la ruta de navegación y el widget de sugerencias.",
@@ -1349,6 +1916,7 @@
"symbolIcon.variableForeground": "Color de primer plano de los símbolos variables. Estos símbolos aparecen en el contorno, la ruta de navegación y el widget de sugerencias."
},
"vs/editor/contrib/toggleTabFocusMode/browser/toggleTabFocusMode": {
+ "tabMovesFocusDescriptions": "Determina si la tecla tab mueve el foco alrededor del área de trabajo o inserta el carácter de tabulación en el editor actual. Esto también se denomina captura de pestañas, navegación por pestañas o modo de enfoque de pestañas.",
"toggle.tabMovesFocus": "Alternar tecla de tabulación para mover el punto de atención",
"toggle.tabMovesFocus.off": "Presionando la pestaña ahora insertará el carácter de tabulación",
"toggle.tabMovesFocus.on": "Presionando la pestaña ahora moverá el foco al siguiente elemento enfocable."
@@ -1356,6 +1924,9 @@
"vs/editor/contrib/tokenization/browser/tokenization": {
"forceRetokenize": "Desarrollador: forzar nueva aplicación de token"
},
+ "vs/editor/contrib/unicodeHighlighter/browser/bannerController": {
+ "closeBanner": "Cerrar banner"
+ },
"vs/editor/contrib/unicodeHighlighter/browser/unicodeHighlighter": {
"action.unicodeHighlight.disableHighlightingInComments": "Deshabilitar resaltado de caracteres en comentarios",
"action.unicodeHighlight.disableHighlightingInStrings": "Deshabilitar resaltado de caracteres en cadenas",
@@ -1366,6 +1937,7 @@
"unicodeHighlight.adjustSettings": "Ajustar la configuración",
"unicodeHighlight.allowCommonCharactersInLanguage": "Permite caracteres Unicode más comunes en el idioma \"{0}\".",
"unicodeHighlight.characterIsAmbiguous": "El carácter {0} podría confundirse con el carácter {1}, que es más común en el código fuente.",
+ "unicodeHighlight.characterIsAmbiguousASCII": "El carácter {0} podría confundirse con el carácter ASCII {1}, que es más común en el código fuente.",
"unicodeHighlight.characterIsInvisible": "El carácter {0} es invisible.",
"unicodeHighlight.characterIsNonBasicAscii": "El carácter {0} no es un carácter ASCII básico.",
"unicodeHighlight.configureUnicodeHighlightOptions": "Configurar opciones de resaltado Unicode",
@@ -1383,42 +1955,147 @@
},
"vs/editor/contrib/unusualLineTerminators/browser/unusualLineTerminators": {
"unusualLineTerminators.detail": "Este archivo \"{0}\" contiene uno o más caracteres de terminación de línea inusuales, como el separador de línea (LS) o el separador de párrafo (PS).\r\n\r\nSe recomienda eliminarlos del archivo. Esto puede configurarse mediante \"editor.unusualLineTerminators\".",
- "unusualLineTerminators.fix": "Quitar terminadores de línea inusuales",
+ "unusualLineTerminators.fix": "&&Quitar terminadores de línea inusuales",
"unusualLineTerminators.ignore": "Omitir",
"unusualLineTerminators.message": "Se han detectado terminadores de línea inusuales",
"unusualLineTerminators.title": "Terminadores de línea inusuales"
},
- "vs/editor/contrib/wordHighlighter/browser/wordHighlighter": {
+ "vs/editor/contrib/wordHighlighter/browser/highlightDecorations": {
"overviewRulerWordHighlightForeground": "Color del marcador de regla general para destacados de símbolos. El color no debe ser opaco para no ocultar decoraciones subyacentes.",
"overviewRulerWordHighlightStrongForeground": "Color de marcador de regla general para destacados de símbolos de acceso de escritura. El color no debe ser opaco para no ocultar las decoraciones subyacentes.",
+ "overviewRulerWordHighlightTextForeground": "Color del marcador de regla de información general de una repetición textual de un símbolo. El color no debe ser opaco para no ocultar las decoraciones subyacentes.",
"wordHighlight": "Color de fondo de un símbolo durante el acceso de lectura, como la lectura de una variable. El color no debe ser opaco para no ocultar decoraciones subyacentes.",
- "wordHighlight.next.label": "Ir al siguiente símbolo destacado",
- "wordHighlight.previous.label": "Ir al símbolo destacado anterior",
- "wordHighlight.trigger.label": "Desencadenar los símbolos destacados",
"wordHighlightBorder": "Color de fondo de un símbolo durante el acceso de lectura; por ejemplo, cuando se lee una variable.",
"wordHighlightStrong": "Color de fondo de un símbolo durante el acceso de escritura, como escribir en una variable. El color no debe ser opaco para no ocultar las decoraciones subyacentes.",
- "wordHighlightStrongBorder": "Color de fondo de un símbolo durante el acceso de escritura; por ejemplo, cuando se escribe una variable."
+ "wordHighlightStrongBorder": "Color de fondo de un símbolo durante el acceso de escritura; por ejemplo, cuando se escribe una variable.",
+ "wordHighlightText": "Color de fondo de la presencia textual para un símbolo. Para evitar ocultar cualquier decoración subyacente, el color no debe ser opaco.",
+ "wordHighlightTextBorder": "Color de borde de una repetición textual de un símbolo."
+ },
+ "vs/editor/contrib/wordHighlighter/browser/wordHighlighter": {
+ "wordHighlight.next.label": "Ir al siguiente símbolo destacado",
+ "wordHighlight.previous.label": "Ir al símbolo destacado anterior",
+ "wordHighlight.trigger.label": "Desencadenar los símbolos destacados"
},
"vs/editor/contrib/wordOperations/browser/wordOperations": {
"deleteInsideWord": "Eliminar palabra"
},
+ "vs/platform/accessibilitySignal/browser/accessibilitySignalService": {
+ "accessibility.signals.chatEditModifiedFile": "Archivo modificado desde ediciones de chat",
+ "accessibility.signals.chatRequestSent": "Se envió una solicitud de chat",
+ "accessibility.signals.chatUserActionRequired": "Acción necesaria por parte del usuario del chat",
+ "accessibility.signals.clear": "Borrar",
+ "accessibility.signals.codeActionRequestTriggered": "Solicitud de acción de código desencadenada",
+ "accessibility.signals.editsKept": "Ediciones guardadas",
+ "accessibility.signals.editsUndone": "Ediciones deshechas",
+ "accessibility.signals.format": "Formato",
+ "accessibility.signals.lineHasBreakpoint": "Punto de interrupción",
+ "accessibility.signals.lineHasError": "Error en la línea",
+ "accessibility.signals.lineHasFoldedArea": "Contraída",
+ "accessibility.signals.lineHasWarning": "Advertencia en la línea",
+ "accessibility.signals.nextEditSuggestion": "Siguiente sugerencia de edición",
+ "accessibility.signals.noInlayHints": "No hay indicaciones incrustadas",
+ "accessibility.signals.notebookCellCompleted": "Celda del bloc de notas completada",
+ "accessibility.signals.notebookCellFailed": "Error en la celda del bloc de notas",
+ "accessibility.signals.onDebugBreak": "Punto de interrupción",
+ "accessibility.signals.positionHasError": "Error",
+ "accessibility.signals.positionHasWarning": "Advertencia",
+ "accessibility.signals.progress": "Progreso",
+ "accessibility.signals.save": "Guardar",
+ "accessibility.signals.taskCompleted": "Tarea completada.",
+ "accessibility.signals.taskFailed": "Error en la tarea",
+ "accessibility.signals.terminalBell": "Campana de terminal",
+ "accessibility.signals.terminalCommandFailed": "Error del comando",
+ "accessibility.signals.terminalCommandSucceeded": "Comando correcto",
+ "accessibility.signals.terminalQuickFix": "Corrección rápida",
+ "accessibilitySignals.chatEditModifiedFile": "Editar archivo modificado de chat",
+ "accessibilitySignals.chatRequestSent": "Se envió una solicitud de chat",
+ "accessibilitySignals.chatResponseReceived": "Respuesta de chat recibida",
+ "accessibilitySignals.chatUserActionRequired": "Acción necesaria por parte del usuario del chat",
+ "accessibilitySignals.clear": "Borrar",
+ "accessibilitySignals.codeActionApplied": "Acción de código aplicada",
+ "accessibilitySignals.codeActionRequestTriggered": "Solicitud de acción de código desencadenada",
+ "accessibilitySignals.diffLineDeleted": "Línea de diferencia eliminada",
+ "accessibilitySignals.diffLineInserted": "Línea de diferencia insertada",
+ "accessibilitySignals.diffLineModified": "Línea de diferencia modificada",
+ "accessibilitySignals.editsKept": "Ediciones guardadas",
+ "accessibilitySignals.editsUndone": "Deshacer ediciones",
+ "accessibilitySignals.format": "Formato",
+ "accessibilitySignals.lineHasBreakpoint.name": "Punto de interrupción en la línea",
+ "accessibilitySignals.lineHasError.name": "Error en la línea",
+ "accessibilitySignals.lineHasFoldedArea.name": "Área doblada en la línea",
+ "accessibilitySignals.lineHasInlineSuggestion.name": "Sugerencia insertada en la línea",
+ "accessibilitySignals.lineHasWarning.name": "Advertencia en la línea",
+ "accessibilitySignals.nextEditSuggestion.name": "Siguiente sugerencia de edición en línea",
+ "accessibilitySignals.noInlayHints": "No hay indicaciones incrustadas en la línea",
+ "accessibilitySignals.notebookCellCompleted": "Celda del bloc de notas completada",
+ "accessibilitySignals.notebookCellFailed": "Error en la celda del bloc de notas",
+ "accessibilitySignals.onDebugBreak.name": "Depurador detenido en el punto de interrupción",
+ "accessibilitySignals.positionHasError.name": "Error en la posición",
+ "accessibilitySignals.positionHasWarning.name": "Advertencia en posición",
+ "accessibilitySignals.progress": "Progreso",
+ "accessibilitySignals.save": "Guardar",
+ "accessibilitySignals.taskCompleted": "Tarea completada.",
+ "accessibilitySignals.taskFailed": "Error en la tarea",
+ "accessibilitySignals.terminalBell": "Campana de terminal",
+ "accessibilitySignals.terminalCommandFailed": "Error del comando de terminal",
+ "accessibilitySignals.terminalCommandSucceeded": "Comando de terminal correcto",
+ "accessibilitySignals.terminalQuickFix.name": "Corrección rápida del terminal",
+ "accessibilitySignals.voiceRecordingStarted": "Grabación de voz iniciada",
+ "accessibilitySignals.voiceRecordingStopped": "Grabación de voz detenida"
+ },
+ "vs/platform/action/common/actionCommonCategories": {
+ "developer": "Desarrollador",
+ "file": "archivo",
+ "help": "Ayuda",
+ "preferences": "Preferencias",
+ "test": "Probar",
+ "view": "Ver"
+ },
+ "vs/platform/actions/browser/buttonbar": {
+ "labelWithKeybinding": "{0} ({1})",
+ "moreActions": "Más acciones"
+ },
+ "vs/platform/actions/browser/dropdownActionViewItemWithKeybinding": {
+ "titleAndKb": "{0} ({1})"
+ },
"vs/platform/actions/browser/menuEntryActionViewItem": {
+ "content": "{0} ({1})",
+ "content2": "{1} al {0}",
"titleAndKb": "{0} ({1})",
"titleAndKbAndAlt": "{0}\r\n[{1}] {2}"
},
+ "vs/platform/actions/browser/toolbar": {
+ "hide": "Ocultar",
+ "resetThisMenu": "Menú Restablecer"
+ },
"vs/platform/actions/common/menuResetAction": {
- "cat": "Ver",
- "title": "Restablecer menús ocultos"
+ "title": "Restablecer todos los menús"
},
"vs/platform/actions/common/menuService": {
+ "configure keybinding": "Configurar el enlace de teclado",
"hide.label": "Ocultar \"{0}\""
},
+ "vs/platform/actionWidget/browser/actionList": {
+ "customQuickFixWidget": "Widget de acción",
+ "customQuickFixWidget.labels": "{0}, Motivo de deshabilitación: {1}",
+ "label": "{0} para aplicar",
+ "label-preview": "{0} para aplicar, {1} para previsualizar"
+ },
+ "vs/platform/actionWidget/browser/actionWidget": {
+ "acceptSelected.title": "Aceptar la acción seleccionada",
+ "actionBar.toggledBackground": "Color de fondo de los elementos de acción alternados en la barra de acciones.",
+ "codeActionMenuVisible": "Si la lista de widgets de acción es visible",
+ "hideCodeActionWidget.title": "Ocultar el widget de acción",
+ "previewSelected.title": "Vista previa de la acción seleccionada",
+ "selectNextCodeAction.title": "Seleccione la siguiente acción",
+ "selectPrevCodeAction.title": "Seleccione la acción anterior"
+ },
"vs/platform/configuration/common/configurationRegistry": {
"config.policy.duplicate": "No se puede registrar \"{0}\". La directiva asociada {1} ya está registrada con {2}.",
"config.property.duplicate": "No se puede registrar \"{0}\". Esta propiedad ya está registrada.",
"config.property.empty": "No se puede registrar una propiedad vacía.",
"config.property.languageDefault": "No se puede registrar \"{0}\". Coincide con el patrón de propiedad '\\\\[.*\\\\]$' para describir la configuración del editor específica del lenguaje. Utilice la contribución \"configurationDefaults\".",
- "defaultLanguageConfiguration.description": "Configure los valores que se invalidarán para el idioma {0}.",
+ "defaultLanguageConfiguration.description": "Configure los valores que se van a invalidar para {0}.",
"defaultLanguageConfigurationOverrides.title": "La configuración del lenguaje predeterminada se reemplaza",
"overrideSettings.defaultDescription": "Establecer los valores de configuración que se reemplazarán para un lenguaje.",
"overrideSettings.errorMessage": "Esta configuración no admite la configuración por idioma."
@@ -1426,38 +2103,77 @@
"vs/platform/contextkey/browser/contextKeyService": {
"getContextKeyInfo": "Comando que devuelve información sobre las claves de contexto"
},
+ "vs/platform/contextkey/common/contextkey": {
+ "contextkey.parser.error.closingParenthesis": "paréntesis de cierre ')'",
+ "contextkey.parser.error.emptyString": "Expresión de clave de contexto vacía",
+ "contextkey.parser.error.emptyString.hint": "¿Ha olvidado escribir una expresión? también puede poner \"false\" o \"true\" para evaluar siempre como false o true, respectivamente.",
+ "contextkey.parser.error.expectedButGot": "Esperado: {0}\r\nrecibido: '{1}'.",
+ "contextkey.parser.error.noInAfterNot": "'in' después de 'not'.",
+ "contextkey.parser.error.unexpectedEOF": "Final de expresión inesperado",
+ "contextkey.parser.error.unexpectedEOF.hint": "¿Ha olvidado poner una clave de contexto?",
+ "contextkey.parser.error.unexpectedToken": "Token inesperado",
+ "contextkey.parser.error.unexpectedToken.hint": "¿Ha olvidado poner && o || antes del token?",
+ "contextkey.scanner.errorForLinter": "Token inesperado.",
+ "contextkey.scanner.errorForLinterWithHint": "Token inesperado. Pista: {0}"
+ },
"vs/platform/contextkey/common/contextkeys": {
"inputFocus": "Si el foco del teclado está dentro de un cuadro de entrada",
"isIOS": "Si el sistema operativo es IOS",
"isLinux": "Si el sistema operativo es Linux",
"isMac": "Si el sistema operativo es macOS",
"isMacNative": "Si el sistema operativo es macOS en una plataforma que no es de explorador",
+ "isMobile": "Si la plataforma es un explorador web móvil",
"isWeb": "Si la plataforma es un explorador web",
"isWindows": "Si el sistema operativo es Windows",
"productQualityType": "Tipo de calidad de VS Code"
},
+ "vs/platform/contextkey/common/scanner": {
+ "contextkey.scanner.hint.didYouForgetToEscapeSlash": "¿Ha olvidado escapar el carácter \"/\" (barra diagonal)?Coloque dos barras diagonales inversas antes de que escape, por ejemplo, '\\\\/'.",
+ "contextkey.scanner.hint.didYouForgetToOpenOrCloseQuote": "¿Ha olvidado abrir o cerrar la cita?",
+ "contextkey.scanner.hint.didYouMean1": "¿Quiso decir {0}?",
+ "contextkey.scanner.hint.didYouMean2": "¿Quiso decir {0} o {1}?",
+ "contextkey.scanner.hint.didYouMean3": "¿Quiso decir {0}, {1} o {2}?"
+ },
+ "vs/platform/dialogs/browser/dialog": {
+ "aboutDetail": "Versión: {0}\r\nConfirmación: {1}\r\nFecha: {2}\r\nExplorador: {3}"
+ },
"vs/platform/dialogs/common/dialogs": {
+ "cancelButton": "Cancelar",
"moreFile": "...1 archivo más que no se muestra",
- "moreFiles": "...{0} archivos más que no se muestran"
+ "moreFiles": "...{0} archivos más que no se muestran",
+ "okButton": "&&Aceptar",
+ "yesButton": "&&Sí"
+ },
+ "vs/platform/dialogs/electron-browser/dialog": {
+ "aboutDetail": "Versión: {0}\r\nConfirmar: {1}\r\nFecha: {2}\r\nElectron: {3}\r\nElectronBuildId: {4}\r\nChromium: {5}\r\nNode.js: {6}\r\nV8: {7}\r\nSO: {8}"
},
"vs/platform/dialogs/electron-main/dialogMainService": {
"open": "Abrir",
"openFile": "Abrir archivo",
"openFolder": "Abrir carpeta",
"openWorkspace": "&&Abrir",
- "openWorkspaceTitle": "Abrir área de trabajo desde archivo"
+ "openWorkspaceTitle": "Abrir área de trabajo desde archivo",
+ "selectFolder": "&&Seleccionar carpeta"
},
"vs/platform/dnd/browser/dnd": {
"fileTooLarge": "El archivo es demasiado grande para abrirlo como editor sin título. Cárguelo primero en el explorador de archivos e inténtelo de nuevo."
},
"vs/platform/environment/node/argv": {
"add": "Agregar carpetas a la última ventana activa.",
+ "addFile": "Añada archivos como contexto a la sesión de chat.",
+ "addMcp": "Agrega una definición de servidor del protocolo de contexto de modelo al perfil de usuario. Acepta la entrada JSON con el formato '{\"name\":\"server-name\",\"command\":...}'",
"category": "Filtra las extensiones instaladas por la categoría proporcionada cuando se usa --list-extensions.",
+ "chatMaximize": "Maximice la vista de sesión de chat.",
+ "chatMode": "Modo que se va a usar para la sesión de chat. Opciones disponibles: \"ask\", \"edit\", \"agent\" o el identificador de un modo personalizado. El valor predeterminado es \"agent\".",
+ "cliDataDir": "Directorio donde deben almacenarse los metadatos de la CLI.",
+ "cliPrompt": "solicitud",
"deprecated.useInstead": "Use {0} en su lugar.",
"diff": "Comparar dos archivos entre sí.",
- "disableExtension": "Deshabilitar una extensión.",
- "disableExtensions": "Deshabilite todas las extensiones instaladas.",
+ "disableChromiumSandbox": "Use esta opción solo cuando sea requerida para iniciar la aplicación como usuario de sudo en Linux o cuando se ejecute como un usuario con privilegios elevados en un entorno de AppLocker en Windows.",
+ "disableExtension": "Deshabilite la extensión proporcionada. Esta opción no es persistente y solo es efectiva cuando el comando abre una nueva ventana.",
+ "disableExtensions": "Deshabilite las extensiones instaladas. Esta opción no es persistente y solo es efectiva cuando el comando abre una nueva ventana.",
"disableGPU": "Deshabilita la aceleración de hardware de GPU.",
+ "disableLCDText": "Deshabilitar la representación de fuentes LCD.",
"experimentalApis": "Habilita las características de API propuestas para las extensiones. Puede recibir uno o más identificadores de extensión para habilitar individualmente.",
"extensionHomePath": "Establezca la ruta de acceso raíz para las extensiones.",
"extensionsManagement": "Administración de extensiones",
@@ -1469,25 +2185,33 @@
"installExtension": "Instala o actualiza una extensión. El argumento es un identificador de extensión o una ruta de acceso a un VSIX. El identificador de una extensión es \"${publisher}.${name}\". Use el argumento \"--force\" para actualizar a la versión más reciente. Para instalar una versión específica, proporcione \"@${version}\". Por ejemplo: \"vscode.csharp@1.2.3\".",
"listExtensions": "Enumere las extensiones instaladas.",
"locale": "La configuración regional que se usará (por ejemplo, en-US o zh-TW).",
- "log": "Nivel de registro a utilizar. Por defecto es 'info'. Los valores permitidos son 'critical', 'error', 'warn', 'info', 'debug', 'trace', 'off'.",
- "maxMemory": "Tamaño máximo de memoria para una ventana (en Mbytes).",
+ "locateShellIntegrationPath": "Imprima la ruta de acceso a un script de integración del shell del terminal. Los valores permitidos son 'bash', 'pwsh', 'zsh' o 'fish'.",
+ "log": "Nivel de registro que se va a usar. El valor predeterminado es \"info\". Los valores permitidos son \"critical\", \"error\", \"warn\", \"info\", \"debug\", \"trace\", \"off\". También puede configurar el nivel de registro de una extensión pasando el identificador de extensión y el nivel de registro en el siguiente formato: \"${publisher}.${name}:${logLevel}\". Por ejemplo: \"vscode.csharp:trace\". Puede recibir una o varias de estas entradas.",
+ "mcp": "Protocolo de contexto de modelo",
"merge": "Realice una combinación triple. Para ello, proporcione rutas para dos versiones modificadas de un archivo, el origen común de ambas versiones modificadas y el archivo de resultado para guardar los resultados de la combinación.",
"newWindow": "Fuerce para abrir una ventana nueva.",
+ "newWindowForChat": "Forzar la apertura de una ventana vacía para la sesión de chat.",
"options": "Opciones",
"optionsUpperCase": "Opciones",
"paths": "rutas de acceso",
"prof-startup": "Ejecutar el perfil de la CPU durante el arranque.",
+ "profileName": "Abre la carpeta o el área de trabajo proporcionada con el perfil especificado y asocia el perfil al área de trabajo. Si el perfil no existe, se crea uno vacío.",
+ "prompt": "El mensaje que se utilizará como chat.",
+ "remove": "Quitar carpetas de la última ventana activa.",
"reuseWindow": "Fuerza la apertura de un archivo o una carpeta en una ventana ya abierta.",
+ "reuseWindowForChat": "Forzar el uso de la última ventana activa para la sesión de chat.",
"showVersions": "Muestra las versiones de las extensiones instaladas cuando se usa --list-extensions.",
"status": "Imprimir el uso del proceso y la información de diagnóstico.",
- "stdinUnix": "Para leer desde stdin, añada \"-\" (por ejemplo, \"ps aux | grep code | {0} -\")",
- "stdinWindows": "Para leer la salida de otro programa, añada \"-\" (p. ej. \"echo Hello World | {0} -\")",
+ "stdinUsage": "Para leer desde stdin, añada \"-\" (por ejemplo, \"{0}\")",
+ "subcommands": "Subcomandos",
"telemetry": "Muestra todos los eventos de telemetría que recopila VS Code.",
+ "transient": "Ejecutar con directorios temporales de datos y extensiones, como si se lanzara por primera vez.",
"troubleshooting": "Solución de problemas",
"turn sync": "Active o desactive la sincronización.",
"uninstallExtension": "Desinstala una extensión.",
"unknownCommit": "Confirmación desconocida",
"unknownVersion": "Versión desconocida",
+ "updateExtensions": "Actualizar las extensiones instaladas.",
"usage": "Uso",
"userDataDir": "Especifica el directorio donde se guardan los datos del usuario. Se puede utilizar para abrir varias instancias de código distintas.",
"verbose": "Imprima salidas detalladas (implica --wait).",
@@ -1499,33 +2223,62 @@
"emptyValue": "La opción \"{0}\" requiere un valor que no esté vacío. Omitiendo la opción.",
"gotoValidation": "Los argumentos del modo \"--goto\" deben tener el formato \"ARCHIVO(:LÍNEA(:CARÁCTER))\".",
"multipleValues": "La opción \"{0}\" se ha definido más de una vez. Usando el valor \"{1}\".",
- "unknownOption": "Advertencia: \"{0}\" no está en la lista de opciones conocidas, pero todavía pasa a Electron/Chromium."
+ "unknownOption": "Advertencia: \"{0}\" no está en la lista de opciones conocidas, pero todavía pasa a Electron/Chromium.",
+ "unknownSubCommandOption": "Advertencia: \"{0}\" no está en la lista de opciones conocidas para el subcomando \"{1}\""
},
"vs/platform/extensionManagement/common/abstractExtensionManagementService": {
"MarketPlaceDisabled": "Marketplace no está habilitado",
- "Not a Marketplace extension": "Sólo se pueden reinstalar Extensiones del Marketplace",
- "incompatible platform": "La extensión \"{0}\" no está disponible en {1} para {2}.",
+ "incompatible platform": "La extensión \"{0}\" no está disponible en {1} para la {2}.",
+ "incompatibleAPI": "No se puede instalar la extensión '{0}'. {1}",
+ "learn why": "Información sobre el motivo",
"malicious extension": "No se puede instalar la extensión \"{0}\" ya que se informó de que era problemática.",
"multipleDependentsError": "No se puede desinstalar la extensión \"{0}\". Las extensiones \"{1}\" y \"{2}\", entre otras, dependen de esta.",
"multipleIndirectDependentsError": "No se puede desinstalar la extensión \"{0}\". Incluye la desinstalación de la extensión \"{1}\" y las extensiones \"{2}\" y \"{3}\", entre otras, dependen de esta.",
+ "not allowed to install": "Esta extensión no se puede instalar porque {0}",
"notFoundCompatibleDependency": "No se puede instalar la extensión \"{0}\" porque no es compatible con la versión actual de {1} (versión {2}).",
- "notFoundCompatiblePrereleaseDependency": "No se puede instalar la versión preliminar de la extensión \"{0}\" porque no es compatible con la versión actual de {1} (versión {2}).",
+ "notFoundDeprecatedReplacementExtension": "No se puede instalar la extensión '{0}' porque estaba en desuso y no se encuentra la extensión de reemplazo '{1}'.",
"notFoundReleaseExtension": "No se puede instalar la versión de lanzamiento de la extensión \"{0}\" porque no tiene ninguna versión de lanzamiento.",
"singleDependentError": "No se puede desinstalar la extensión \"{0}\". La extensión \"{1}\" depende de esta.",
"singleIndirectDependentError": "No se puede desinstalar la extensión \"{0}\". Incluye la desinstalación de la extensión \"{1}\" y la extensión \"{2}\" depende de esta.",
"twoDependentsError": "No se puede desinstalar la extensión \"{0}\". Las extensiones \"{1}\" y \"{2}\" dependen de esta.",
"twoIndirectDependentsError": "No se puede desinstalar la extensión \"{0}\". Incluye la desinstalación de la extensión \"{1}\" y las extensiones \"{2}\" y \"{3}\" dependen de esta."
},
+ "vs/platform/extensionManagement/common/allowedExtensionsService": {
+ "extension prerelease not allowed": "las versiones preliminares de esta extensión no están en la [lista de permitidos]({0})",
+ "prerelease versions from this publisher not allowed": "las versiones preliminares de este publicador no están en la [lista de permitidos]({1})",
+ "publisher not allowed": "las extensiones de este publicador no están en la [lista de permitidos]({1})",
+ "specific extension not allowed": "no está en la [lista de permitidos]({0})",
+ "specific version of extension not allowed": "la versión {0} de esta extensión no está en la [lista de permitidos]({1})"
+ },
"vs/platform/extensionManagement/common/extensionManagement": {
+ "extension.publisher.allow.description": "Permitir o denegar todas las extensiones del publicador.",
"extensions": "Extensiones",
+ "extensions.allow.all.description": "Permitir o denegar todas las extensiones.",
+ "extensions.allow.all.disable": "No permitir todas las extensiones.",
+ "extensions.allow.all.enable": "Permitir todas las extensiones.",
+ "extensions.allow.description": "Permitir o denegar la extensión.",
+ "extensions.allow.version.description": "Permitir o denegar versiones específicas de la extensión. Para especificar una versión específica de la plataforma, use el formato `platform@1.2.3`, por ejemplo, `win32-x64@1.2.3`. Las plataformas admitidas son `win32-x64`, `win32-arm64`, `linux-x64`, `linux-arm64`, `linux-armhf`, `alpine-x64`, `alpine-arm64`, `darwin-x64`, `darwin-arm64`",
+ "extensions.allowed": "Especifique una lista de extensiones que se pueden utilizar. Esto ayuda a mantener un entorno de desarrollo seguro y coherente al restringir el uso de extensiones no autorizadas. Para obtener más información sobre cómo configurar esta opción, visite la sección [Configurar extensiones permitidas](https://code.visualstudio.com/docs/setup/enterprise#_configure-allowed-extensions).",
+ "extensions.allowed.all": "Se permiten todas las extensiones.",
+ "extensions.allowed.disable.desc": "No se permite la extensión.",
+ "extensions.allowed.disable.stable.desc": "Permitir solo versiones estables de la extensión.",
+ "extensions.allowed.enable.desc": "Se permite la extensión.",
+ "extensions.allowed.none": "No se permiten extensiones.",
+ "extensions.allowed.policy": "Especifique una lista de extensiones que se pueden utilizar. Esto ayuda a mantener un entorno de desarrollo seguro y coherente al restringir el uso de extensiones no autorizadas. Más información: https://code.visualstudio.com/docs/setup/enterprise#_configure-allowed-extensions",
+ "extensions.publisher.allowed.disable.desc": "No se permiten todas las extensiones del publicador.",
+ "extensions.publisher.allowed.disable.stable.desc": "Permitir solo las versiones estables de las extensiones del publicador.",
+ "extensions.publisher.allowed.enable.desc": "Se permiten todas las extensiones del publicador.",
+ "extensionsConfigurationTitle": "Extensiones",
"preferences": "Preferencias"
},
- "vs/platform/extensionManagement/common/extensionManagementCLIService": {
+ "vs/platform/extensionManagement/common/extensionManagementCLI": {
"alreadyInstalled": "La extensión '{0}' ya está instalada.",
"alreadyInstalled-checkAndUpdate": "La extensión \"{0}\" v{1} ya está instalada. Use la opción \"--force\" para actualizar a la última versión o proporcione \"@\" para instalar una versión específica, por ejemplo: \"{2}@1.2.3\".",
"builtin": "\"{0}\" es una extensión integrada y no se puede desinstalar.",
- "cancelInstall": "Se canceló la instalación de la Extensión '{0}'.",
"cancelVsixInstall": "Se canceló la instalación de la Extensión '{0}'.",
+ "error while installing extensions": "Error al instalar las extensiones: {0}",
+ "errorInstallingExtension": "Error al instalar las extensiones: {0}: {1}",
+ "errorUpdatingExtension": "Error al actualizar la extensión {0}: {1}",
"forceDowngrade": "Ya está instalada una versión más reciente de la extensión \"{0}\" v{1}. Utilice la opción \"--force\" para volver a la versión anterior.",
"forceUninstall": "El usuario ha marcado la extensión \"{0}\" como extensión integrada. Use la opción \"--force\" para desinstalarla.",
"installation failed": "Error al instalar extensiones: {0}",
@@ -1542,49 +2295,51 @@
"successInstall": "La extensión \"{0}\" v{1} se instaló correctamente.",
"successUninstall": "La extensión '{0}' se desinstaló correctamente.",
"successUninstallFromLocation": "La extensión \"{0}\" se ha desinstalado correctamente de {1}.",
+ "successUpdate": "La extensión \"{0}\" v{1} se actualizó correctamente.",
"successVsixInstall": "La extensión \"{0}\" se instaló correctamente.",
"uninstalling": "Desinstalando {0}...",
+ "updateExtensionsNewVersionsAvailable": "Actualizando las extensiones: {0}",
+ "updateExtensionsNoExtensions": "No hay ninguna extensión para actualizar",
+ "updateExtensionsQuery": "Capturando las últimas versiones de las extensiones de {0}",
"updateMessage": "Actualizando la extensión '{0}' a la versión {1}",
"useId": "Asegúrese de utilizar el identificador de extensión completo, incluido el publicador, por ejemplo: {0}"
},
+ "vs/platform/extensionManagement/common/extensionNls": {
+ "missingNLSKey": "No se encontró un mensaje para la clave {0}."
+ },
"vs/platform/extensionManagement/common/extensionsScannerService": {
"fileReadFail": "No se puede leer el archivo {0}: {1}.",
"jsonInvalidFormat": "Formato no válido {0}: se esperaba un objeto JSON.",
"jsonParseFail": "No se ha podido analizar {0}: [{1}, {2}] {3}.",
"jsonParseInvalidType": "Archivo de manifiesto {0} no válido: no es un objeto JSON.",
- "jsonsParseReportErrors": "No se pudo analizar {0}: {1}.",
- "missingNLSKey": "No se encontró un mensaje para la clave {0}."
- },
- "vs/platform/extensionManagement/electron-sandbox/extensionTipsService": {
- "exeRecommended": "Tiene {0} instalado en el sistema. ¿Quiere instalar las extensiones recomendadas para este?"
+ "jsonsParseReportErrors": "No se pudo analizar {0}: {1}."
},
"vs/platform/extensionManagement/node/extensionManagementService": {
"cannot read": "No se puede leer la extensión desde {0}",
"errorDeleting": "No se puede eliminar la carpeta '{0}' mientras se instala la extensión '{1}'. Elimine la carpeta manualmente y vuelva a intentarlo.",
- "exitCode": "No se puede instalar la extensión. Por favor, salga e inicie VS Code antes de reinstalarlo. ",
"incompatible": "No se puede instalar la extensión \"{0}\" porque no es compatible con VS Code \"{1}\".",
- "notInstalled": "La extensión '{0}' no está instalada.",
- "quitCode": "No se puede instalar la extensión. Por favor, cierre e inicie VS Code antes de reinstalarlo.",
- "removeError": "Error al quitar la extensión: {0}. Salga e inicie VS Code antes de intentarlo de nuevo.",
- "renameError": "Error desconocido al cambiar el nombre de {0} a {1}",
- "restartCode": "Por favor reinicia VS Code antes de reinstalar {0}."
+ "invalidManifest": "No se puede instalar la extensión \"{0}\" porque el manifiesto no coincide con Marketplace",
+ "notAllowed": "Esta extensión no se puede instalar porque {0}",
+ "restartCode": "Por favor reinicia VS Code antes de reinstalar {0}.",
+ "signature verification failed": "Error \"{0}\" en la comprobación de la firma.",
+ "signature verification not executed": "No se ejecutó la comprobación de firma."
},
"vs/platform/extensionManagement/node/extensionManagementUtil": {
"invalidManifest": "VSIX no válido: package.json no es un archivo JSON."
},
"vs/platform/extensions/common/extensionValidator": {
+ "apiProposalMismatch1": "Esta extensión usa la propuesta de API \"{0}\" que no es compatible con la versión actual de VS Code.",
+ "apiProposalMismatch2": "Esta extensión usa las propuestas de API {0} y ''{1}'' que no son compatibles con la versión actual de VS Code.",
"extensionDescription.activationEvents1": "la propiedad `{0}` se puede omitir o debe ser de tipo `string[]`",
- "extensionDescription.activationEvents2": "las propiedades `{0}` y `{1}` deben especificarse u omitirse conjuntamente",
+ "extensionDescription.activationEvents2": "la propiedad '{0}' debe omitirse si la extensión no tiene una propiedad '{1}' o '{2}'.",
"extensionDescription.browser1": "la propiedad `{0}` se puede omitir o debe ser de tipo `string`",
"extensionDescription.browser2": "Se esperaba que `browser` ({0}) se hubiera incluido en la carpeta de la extensión ({1}). Esto puede hacer que la extensión no sea portátil.",
- "extensionDescription.browser3": "las propiedades `{0}` y `{1}` deben especificarse u omitirse conjuntamente",
"extensionDescription.engines": "la propiedad `{0}` es obligatoria y debe ser de tipo `object`",
"extensionDescription.engines.vscode": "la propiedad `{0}` es obligatoria y debe ser de tipo `string`",
"extensionDescription.extensionDependencies": "la propiedad `{0}` se puede omitir o debe ser de tipo `string[]`",
"extensionDescription.extensionKind": "la propiedad `{0}` solo se puede definir si la propiedad 'main' también está definida.",
"extensionDescription.main1": "la propiedad “{0}” se puede omitir o debe ser de tipo “string”",
"extensionDescription.main2": "Se esperaba que `main` ({0}) se hubiera incluido en la carpeta de la extensión ({1}). Esto puede hacer que la extensión no sea portátil.",
- "extensionDescription.main3": "las propiedades `{0}` y `{1}` deben especificarse u omitirse conjuntamente",
"extensionDescription.name": "la propiedad `{0}` es obligatoria y debe ser de tipo `string`",
"extensionDescription.publisher": "El publicador de propiedades debe ser de tipo `string`.",
"extensionDescription.version": "la propiedad `{0}` es obligatoria y debe ser de tipo `string`",
@@ -1606,9 +2361,27 @@
"fileSystemNotAllowedError": "Permisos insuficientes. Vuelva a intentarlo y permita la operación.",
"fileSystemRenameError": "El cambio de nombre solo se admite para los archivos."
},
+ "vs/platform/files/browser/indexedDBFileSystemProvider": {
+ "dirIsNotEmpty": "El directorio no está vacío",
+ "fileExceedsStorageQuota": "El archivo supera la cuota de almacenamiento disponible",
+ "fileIsDirectory": "El archivo es un directorio",
+ "fileNotDirectory": "El archivo no es un directorio",
+ "fileNotExists": "El archivo no existe",
+ "internal": "Error interno en el proveedor del sistema de archivos IndexedDB. ({0})"
+ },
+ "vs/platform/files/common/files": {
+ "sizeB": "{0} B",
+ "sizeGB": "{0} GB",
+ "sizeKB": "{0} KB",
+ "sizeMB": "{0} MB",
+ "sizeTB": "{0} TB",
+ "unknownError": "Error desconocido"
+ },
"vs/platform/files/common/fileService": {
+ "deleteFailedAtomicUnsupported": "No se puede eliminar el archivo '{0}' de forma atómica porque el proveedor no lo admite.",
"deleteFailedNonEmptyFolder": "No se puede eliminar la carpeta no vacía \"{0}\".",
"deleteFailedNotFound": "No se puede eliminar el archivo inexistente '{0}'",
+ "deleteFailedTrashAndAtomicUnsupported": "No se puede eliminar de forma atómica el archivo '{0}' porque el uso de la papelera está habilitado.",
"deleteFailedTrashUnsupported": "No se puede eliminar el archivo \"{0}\" a través de la papelera porque el proveedor no lo admite.",
"err.read": "No se puede leer el archivo \"{0}\" ({1})",
"err.readonly": "No se puede modificar el archivo de solo lectura \"{0}\"",
@@ -1622,53 +2395,50 @@
"fileTooLargeError": "No se puede leer el archivo \"{0}\", que es demasiado grande para abrirse",
"invalidPath": "No se puede resolver el proveedor del sistema de archivos con la ruta de acceso de archivo relativa \"{0}\"",
"mkdirExistsError": "No se puede crear la carpeta \"{0}\" que ya existe pero no es un directorio",
- "noProviderFound": "No se ha encontrado ningún proveedor de sistema de archivos para el recurso \"{0}\"",
+ "noProviderFound": "ENOPRO: No se ha encontrado ningún proveedor de sistema de archivos para el recurso \"{0}\"",
"unableToMoveCopyError1": "No se puede copiar cuando el origen \"{0}\" es el mismo que el destino \"{1}\" con mayúsculas y minúsculas diferentes en un sistema de archivos que no distingue mayúsculas de minúsculas",
"unableToMoveCopyError2": "No se puede mover/copiar cuando el origen \"{0}\" es el elemento principal del destino \"{1}\".",
"unableToMoveCopyError3": "No se puede mover/copiar \"{0}\" porque el destino \"{1}\" ya existe en el punto final.",
"unableToMoveCopyError4": "No se puede mover/copiar \"{0}\" en \"{1}\" ya que un archivo reemplazaría la carpeta en la que está contenido.",
+ "writeFailedAtomicUnlock": "No se puede desbloquear el archivo '{0}' porque la escritura atómica está habilitada.",
+ "writeFailedAtomicUnsupported1": "No se puede escribir de forma atómica el archivo '{0}' porque el proveedor no lo admite.",
+ "writeFailedAtomicUnsupported2": "No se puede escribir de forma atómica el archivo '{0}' porque el proveedor no admite escritura sin búfer.",
"writeFailedUnlockUnsupported": "No se puede desbloquear el archivo \"{0}\" porque el proveedor no lo admite."
},
- "vs/platform/files/common/files": {
- "sizeB": "{0} B",
- "sizeGB": "{0} GB",
- "sizeKB": "{0} KB",
- "sizeMB": "{0} MB",
- "sizeTB": "{0} TB",
- "unknownError": "Error desconocido"
- },
"vs/platform/files/common/io": {
- "fileTooLargeError": "El archivo es demasiado grande para abrirse",
- "fileTooLargeForHeapError": "Para abrir un archivo de este tamaño, es necesario reiniciar y habilitar el uso de más memoria"
+ "fileTooLargeError": "El archivo es demasiado grande para abrirse"
},
"vs/platform/files/electron-main/diskFileSystemProviderServer": {
- "binFailed": "No se pudo mover \"{0}\" a la papelera de reciclaje",
- "trashFailed": "No se pudo mover '{0}' a la papelera"
+ "binFailed": "No se pudo mover \"{0}\" a la papelera de reciclaje ({1})",
+ "trashFailed": "No se pudo mover \"{0}\" a la papelera ({1})"
},
"vs/platform/files/node/diskFileSystemProvider": {
"copyError": "No se puede copiar \"{0}\" en \"{1}\" ({2}).",
- "fileCopyErrorExists": "El archivo del destino ya existe",
- "fileCopyErrorPathCase": "\"El archivo no se puede copiar en la misma ruta de acceso con distinto uso de mayúsculas y minúsculas en la ruta",
+ "fileCopyErrorPathCase": "El archivo no se puede copiar en la misma ruta de acceso con un caso de ruta de acceso diferente",
"fileExists": "El archivo ya existe",
+ "fileMoveCopyErrorExists": "El archivo en el destino ya existe y, por lo tanto, no se moverá ni copiará a menos que se especifique la sobre escritura.",
+ "fileMoveCopyErrorNotFound": "El archivo que se va a mover o copiar no existe",
"fileNotExists": "El archivo no existe",
"moveError": "No se puede mover \"{0}\" a \"{1}\" ({2})."
},
"vs/platform/history/browser/contextScopedHistoryWidget": {
"suggestWidgetVisible": "Indica si las sugerencias están visibles."
},
- "vs/platform/issue/electron-main/issueMainService": {
- "cancel": "&&Cancelar",
- "confirmCloseIssueReporter": "Su entrada no se guardará. ¿Está seguro de que desea cerrar esta ventana?",
- "issueReporter": "Notificador de problemas",
- "issueReporterWriteToClipboard": "Los datos son demasiados para enviarlos a GitHub directamente. Los datos se copiarán en el portapapeles, péguelos en la página de problemas de GitHub que se abre.",
- "local": "LOCAL",
- "ok": "&&ACEPTAR",
- "processExplorer": "Explorador de Procesos",
- "yes": "&&Sí"
+ "vs/platform/hover/browser/hoverWidget": {
+ "hoverhint": "Mantenga presionada la tecla {0} para pasar el mouse"
+ },
+ "vs/platform/hover/browser/updatableHoverWidget": {
+ "iconLabel.loading": "Cargando..."
},
"vs/platform/keybinding/common/abstractKeybindingService": {
"first.chord": "Se presionó ({0}). Esperando la siguiente tecla...",
- "missing.chord": "La combinación de claves ({0}, {1}) no es un comando."
+ "missing.chord": "La combinación de claves ({0}, {1}) no es un comando.",
+ "next.chord": "Se ha presionado ({0}). Esperando la siguiente tecla..."
+ },
+ "vs/platform/keyboardLayout/common/keyboardConfig": {
+ "dispatch": "Controla la lógica de distribución de las pulsaciones de teclas para usar `code` (recomendado) o `keyCode`.",
+ "keyboardConfigurationTitle": "Teclado",
+ "mapAltGrToCtrlAlt": "Controla si el modificador AltGraph+ debe tratarse como Ctrl+Alt+."
},
"vs/platform/languagePacks/common/languagePacks": {
"currentDisplayLanguage": " (Actual)"
@@ -1681,6 +2451,9 @@
"vs/platform/list/browser/listService": {
"Fast Scroll Sensitivity": "Multiplicador de la velocidad de desplazamiento al presionar \"Alt\".",
"Mouse Wheel Scroll Sensitivity": "Se usará un multiplicador en los eventos de desplazamiento de la rueda del mouse \"deltaX\" y \"deltaY\". ",
+ "defaultFindMatchTypeSettingKey": "Controla el tipo de coincidencia que se usa al buscar listas y árboles en el área de trabajo.",
+ "defaultFindMatchTypeSettingKey.contiguous": "Use coincidencias contiguas al buscar.",
+ "defaultFindMatchTypeSettingKey.fuzzy": "Usar coincidencias aproximadas al buscar.",
"defaultFindModeSettingKey": "Controla el modo de búsqueda predeterminado para listas y árboles en el área de trabajo.",
"defaultFindModeSettingKey.filter": "Filtre elementos al buscar.",
"defaultFindModeSettingKey.highlight": "Resalta elementos al buscar. Navegar más arriba o abajo pasará solo por los elementos resaltados.",
@@ -1690,29 +2463,59 @@
"keyboardNavigationSettingKey.filter": "La navegación mediante el teclado de filtro filtrará y ocultará todos los elementos que no coincidan con la entrada del teclado.",
"keyboardNavigationSettingKey.highlight": "Destacar la navegación del teclado resalta los elementos que coinciden con la entrada del teclado. Más arriba y abajo la navegación atravesará solo los elementos destacados.",
"keyboardNavigationSettingKey.simple": "La navegación simple del teclado se centra en elementos que coinciden con la entrada del teclado. El emparejamiento se hace solo en prefijos.",
- "keyboardNavigationSettingKeyDeprecated": "En lugar de eso, use 'workbench.list.defaultFindMode'.",
+ "keyboardNavigationSettingKeyDeprecated": "Use \"workbench.list.defaultFindMode\" y \"workbench.list.typeNavigationMode\" en su lugar.",
"list smoothScrolling setting": "Controla si las listas y los árboles tienen un desplazamiento suave.",
+ "list.scrollByPage": "Controla si los clics en la barra de desplazamiento se desplazan página por página.",
"multiSelectModifier": "El modificador que se utilizará para agregar un elemento en los árboles y listas para una selección múltiple con el ratón (por ejemplo en el explorador, abiertos editores y vista de scm). Los gestos de ratón 'Abrir hacia' - si están soportados - se adaptarán de forma tal que no tenga conflicto con el modificador múltiple.",
"multiSelectModifier.alt": "Se asigna a \"Alt\" en Windows y Linux y a \"Opción\" en macOS.",
"multiSelectModifier.ctrlCmd": "Se asigna a \"Control\" en Windows y Linux y a \"Comando\" en macOS.",
"openModeModifier": "Controla cómo abrir elementos en los árboles y las listas mediante el mouse (si se admite). Tenga en cuenta que algunos árboles y listas pueden optar por ignorar esta configuración si no es aplicable.",
"render tree indent guides": "Controla si el árbol debe representar guías de sangría.",
+ "sticky scroll": "Controla si el desplazamiento con inmovilización está habilitado en los árboles.",
+ "sticky scroll maximum items": "Controla el número de elementos permanentes que se muestran en el árbol cuando {0} está habilitado.",
"tree indent setting": "Controla la sangría de árbol en píxeles.",
+ "typeNavigationMode2": "Controla el funcionamiento de la navegación por tipos en listas y árboles del área de trabajo. Cuando se establece en \"trigger\", la navegación por tipos comienza una vez que se ejecuta el comando \"list.triggerTypeNavigation\".",
"workbenchConfigurationTitle": "Área de trabajo"
},
+ "vs/platform/log/common/log": {
+ "debug": "Depurar",
+ "error": "Error",
+ "info": "Información",
+ "off": "OFF",
+ "trace": "Seguimiento",
+ "warn": "Advertencia"
+ },
"vs/platform/markers/common/markers": {
"sev.error": "Error",
+ "sev.errors": "Errores",
"sev.info": "Información",
- "sev.warning": "Advertencia"
+ "sev.infos": "Información",
+ "sev.warning": "Advertencia",
+ "sev.warnings": "Advertencias"
+ },
+ "vs/platform/markers/common/markerService": {
+ "filtered": "Los problemas están en pausa porque: \"{0}\"",
+ "filtered.network": "Los problemas están en pausa porque: \"{0}\" y {1} más"
+ },
+ "vs/platform/mcp/common/allowedMcpServersService": {
+ "mcp servers are not allowed": "Los servidores de Protocolo de contexto de modelo están deshabilitados en el Editor. Compruebe su [configuración]({0})."
+ },
+ "vs/platform/mcp/common/mcpGalleryService": {
+ "noReadme": "No hay LÉAME disponible",
+ "readme.viewInBrowser": "Encontrará información sobre este servidor [aquí]({0})"
+ },
+ "vs/platform/mcp/common/mcpManagementService": {
+ "not allowed to install": "Este servidor mcp no se puede instalar porque {0}"
},
"vs/platform/menubar/electron-main/menubar": {
- "cancel": "&&Cancelar",
+ "cancel": "Cancelar",
+ "exit": "&&Salida",
"mAbout": "Acerca de {0}",
"mBringToFront": "Traer todo al frente",
- "mEdit": "&&Editar",
+ "mEdit": "E&&ditar",
"mFile": "&&Archivo",
"mGoto": "&&Ir",
- "mHelp": "&&Ayuda",
+ "mHelp": "A&&yuda",
"mHide": "Ocultar {0}",
"mHideOthers": "Ocultar otros",
"mMergeAllWindows": "Combinar todas las ventanas",
@@ -1741,42 +2544,125 @@
"miRestartToUpdate": "Reiniciar para &&actualizar",
"miSwitchWindow": "Cambiar &&ventana...",
"quit": "&&Salir",
- "quitMessage": "¿Está seguro de que desea salir?"
+ "quitMessage": "¿Está seguro de que quiere salir?",
+ "quitMessageMac": "¿Está seguro de que desea salir?"
},
"vs/platform/native/electron-main/nativeHostMainService": {
- "cancel": "&&Cancelar",
+ "cancel": "Cancelar",
"cantCreateBinFolder": "No se puede desinstalar el comando shell '{0}'.",
"cantUninstall": "No se puede desinstalar el comando shell \"{0}\".",
+ "copyLink": "&&Copiar vínculo",
"ok": "&&ACEPTAR",
+ "openExternalErrorLinkMessage": "Se produjo un error al abrir un vínculo en el navegador predeterminado.",
+ "openExternalProgramErrorMessage": "Se produjo un error al abrir un programa externo.",
"sourceMissing": "No se puede encontrar el script de Shell en '{0}'",
+ "trace.detail": "Cree una incidencia y adjunte manualmente el archivo siguiente:\r\n{0}",
+ "trace.message": "El archivo de seguimiento se creó correctamente",
+ "trace.ok": "&&Aceptar",
"warnEscalation": "{0} solicitará ahora privilegios de administrador con \"osascript\" para instalar el comando shell.",
"warnEscalationUninstall": "{0} solicitará ahora privilegios de administrador con \"osascript\" para desinstalar el comando shell."
},
+ "vs/platform/notification/common/notification": {
+ "severityPrefix.error": "Error: {0}",
+ "severityPrefix.info": "Información: {0}",
+ "severityPrefix.warning": "Advertencia: {0}"
+ },
+ "vs/platform/process/electron-main/processMainService": {
+ "local": "Local"
+ },
"vs/platform/quickinput/browser/commandsQuickAccess": {
- "canNotRun": "El comando \"{0}\" dio lugar a un error ({1})",
+ "canNotRun": "El comando \"{0}\" ha dado lugar a un error",
"commandPickAriaLabelWithKeybinding": "{0}, {1}",
+ "commonlyUsed": "usados habitualmente",
"morecCommands": "otros comandos",
- "recentlyUsed": "usado recientemente"
+ "recentlyUsed": "usado recientemente",
+ "suggested": "comandos similares"
},
"vs/platform/quickinput/browser/helpQuickAccess": {
"helpPickAriaLabel": "{0}, {1}"
},
+ "vs/platform/quickinput/browser/quickInput": {
+ "cursorAtEndOfQuickInputBox": "Si el cursor de la entrada rápida está al final del cuadro de entrada",
+ "inQuickInput": "Si el foco del teclado está dentro del control de entrada rápida",
+ "inputModeEntry": "Presione \"Entrar\" para confirmar su entrada o \"Esc\" para cancelar",
+ "inputModeEntryDescription": "{0} (Presione \"Entrar\" para confirmar o \"Esc\" para cancelar)",
+ "ok": "Aceptar",
+ "quickInput.back": "Atrás",
+ "quickInput.steps": "{0}/{1}",
+ "quickInputAlignment": "Alineación de la entrada rápida",
+ "quickInputBox.ariaLabel": "Escriba para restringir los resultados.",
+ "quickInputType": "El tipo de la entrada rápida visible actualmente"
+ },
+ "vs/platform/quickinput/browser/quickInputActions": {
+ "nonQuickWidget": "Se usa en el contexto de algunas entradas rápidas. Si cambia un enlace de teclado para este comando, también debe cambiar todos los demás enlaces de teclado (variantes modificadoras) de este comando.",
+ "quickInput": "Se usa en el contexto de cualquier tipo de entrada rápida. Si cambia un enlace de teclado para este comando, también debe cambiar todos los demás enlaces de teclado (variantes modificadoras) de este comando.",
+ "quickInput.nextSeparatorWithQuickAccessFallback": "Si estamos en modo de acceso rápido, se desplazará al siguiente elemento. Si no estamos en modo de acceso rápido, se desplazará al separador siguiente.",
+ "quickInput.previousSeparatorWithQuickAccessFallback": "Si estamos en modo de acceso rápido, se navegará al elemento anterior. Si no estamos en modo de acceso rápido, se navegará al separador anterior.",
+ "quickPick": "Se usa en el contexto de la selección rápida. Si cambia un enlace de teclado para este comando, también debe cambiar todos los demás enlaces de teclado (variantes modificadoras) de este comando."
+ },
+ "vs/platform/quickinput/browser/quickInputController": {
+ "custom": "Personalizado",
+ "ok": "Aceptar",
+ "quickInput.back": "Atrás",
+ "quickInput.backWithKeybinding": "Atrás ({0})",
+ "quickInput.checkAll": "Activar o desactivar todas las casillas",
+ "quickInput.countSelected": "{0} seleccionados",
+ "quickInput.visibleCount": "{0} resultados"
+ },
+ "vs/platform/quickinput/browser/quickInputList": {
+ "quickInput": "Entrada rápida"
+ },
+ "vs/platform/quickinput/browser/quickInputUtils": {
+ "executeCommand": "Haga clic en para ejecutar el comando \"{0}\""
+ },
+ "vs/platform/quickinput/browser/quickPickPin": {
+ "pinCommand": "Anclar comando",
+ "pinnedCommand": "Comando anclado",
+ "terminal.commands.pinned": "anclado"
+ },
+ "vs/platform/quickinput/browser/tree/quickInputTreeAccessibilityProvider": {
+ "quickTree": "Árbol rápido"
+ },
+ "vs/platform/quickinput/browser/tree/quickTree": {
+ "quickInputBox.ariaLabel": "Escriba para restringir los resultados."
+ },
+ "vs/platform/remoteTunnel/common/remoteTunnel": {
+ "remoteTunnelLog": "Servicio de túnel remoto"
+ },
+ "vs/platform/remoteTunnel/node/remoteTunnelService": {
+ "remoteTunnelService.authorizing": "Conectarse como {0} ({1})",
+ "remoteTunnelService.building": "Compilación de la CLI a partir de orígenes",
+ "remoteTunnelService.openTunnel": "Abriendo túnel",
+ "remoteTunnelService.openTunnelWithName": "Abriendo túnel {0}",
+ "remoteTunnelService.serviceInstallFailed": "No se pudo instalar el túnel como servicio, empezando en la sesión..."
+ },
"vs/platform/request/common/request": {
+ "electronFetch": "Controla si se debe habilitar el uso de la implementación de captura de Electron en lugar de Node.js\". Todas las extensiones locales obtendrán la implementación de captura de Electron para la API de captura global.",
+ "fetchAdditionalSupport": "Controla si la implementación de captura de Node.js se debe extender con compatibilidad adicional. Actualmente, la compatibilidad con proxy ({1}) y los certificados del sistema ({2}) se agregan cuando se habilita la configuración correspondiente. Cuando durante [desarrollo remoto](https://aka.ms/vscode-remote) la configuración de {0} está deshabilitada, esta configuración se puede establecer en la configuración local y remota por separado.",
"httpConfigurationTitle": "HTTP",
- "proxy": "La configuración de proxy que se usará. Si no se establece, se heredará de las variables de entorno \"http_proxy\" y \"https_proxy\".",
- "proxyAuthorization": "El valor para enviar como el encabezado \"Autenticación de proxy\" para cada solicitud de red.",
- "proxySupport": "Utilice el soporte de proxy para extensiones.",
+ "networkInterfaceCheckInterval": "Controla el intervalo en segundos para comprobar los cambios en la interfaz de red y así invalidar la caché del proxy. Establézcalo en -1 para deshabilitarlo. Cuando durante [desarrollo remoto](https://aka.ms/vscode-remote) la configuración de {0} está deshabilitada, esta configuración se puede establecer en la configuración local y remota por separado.",
+ "noProxy": "Especifica los nombres de dominio para los que se debe omitir la configuración de proxy para las solicitudes HTTP/HTTPS. Cuando durante [desarrollo remoto](https://aka.ms/vscode-remote) la configuración de {0} está deshabilitada, esta configuración se puede establecer en la configuración local y remota por separado.",
+ "proxy": "Configuración de proxy que se va a usar. Si no se establece, se heredará de las variables de entorno \"http_proxy\" y \"https_proxy\". Cuando durante [desarrollo remoto](https://aka.ms/vscode-remote) la configuración de {0} está deshabilitada, esta configuración se puede establecer en la configuración local y remota por separado.",
+ "proxyAuthorization": "El valor para enviar como el encabezado `Autenticación de proxy` para cada solicitud de red. Cuando durante [desarrollo remoto](https://aka.ms/vscode-remote) la configuración de {0} está deshabilitada, esta configuración se puede establecer en la configuración local y remota por separado.",
+ "proxyKerberosServicePrincipal": "Reemplaza el nombre del servicio principal para la autenticación Kerberos con el proxy HTTP. Se utiliza un valor predeterminado basado en el nombre de host del proxy cuando no se establece. Cuando durante [desarrollo remoto](https://aka.ms/vscode-remote) la configuración de {0} está deshabilitada, esta configuración se puede establecer en la configuración local y remota por separado.",
+ "proxySupport": "Utilice el soporte de proxy para extensiones. Cuando durante [desarrollo remoto](https://aka.ms/vscode-remote) la configuración de {0} está deshabilitada, esta configuración se puede establecer en la configuración local y remota por separado.",
"proxySupportFallback": "Habilitar compatibilidad con proxy para extensiones, revertir a opciones de solicitud cuando no se encuentre ningún proxy.",
"proxySupportOff": "Deshabilite la compatibilidad de proxy para las extensiones.",
"proxySupportOn": "Habilite la compatibilidad de proxy para extensiones.",
"proxySupportOverride": "Habilite la compatibilidad de proxy para las extensiones, invalide las opciones de solicitud.",
- "strictSSL": "Controla si el certificado del servidor proxy debe comprobarse en la lista de entidades de certificación proporcionada.",
- "systemCertificates": "Controla si los certificados de entidad de certificación deben cargarse desde el SO. (En Windows y macOS, se requiere una recarga de la ventana después de desactivar esta opción)."
+ "strictSSL": "Controla si el certificado del servidor proxy debe comprobarse en la lista de entidades de certificación proporcionada. Cuando durante [desarrollo remoto](https://aka.ms/vscode-remote) la configuración de {0} está deshabilitada, esta configuración se puede establecer en la configuración local y remota por separado.",
+ "systemCertificates": "Controla si los certificados de entidad de certificación se deben cargar desde el sistema operativo. En Windows y macOS, se requiere recargar la ventana después de desactivar esta opción. Cuando durante [desarrollo remoto](https://aka.ms/vscode-remote) la configuración de {0} está deshabilitada, esta configuración se puede establecer en la configuración local y remota por separado.",
+ "systemCertificatesNode": "Controla si los certificados del sistema deben cargarse usando el soporte integrado de Node.js. Recargue la ventana tras cambiar esta configuración. Cuando durante [desarrollo remoto](https://aka.ms/vscode-remote) la configuración de {0} está deshabilitada, esta configuración se puede establecer en la configuración local y remota por separado.",
+ "systemCertificatesV2": "Controla si se debe habilitar la carga experimental de certificados de CA desde el sistema operativo. Usa un enfoque más general que la implementación predeterminada. Cuando durante [desarrollo remoto](https://aka.ms/vscode-remote) la configuración de {0} está deshabilitada, esta configuración se puede establecer en la configuración local y remota por separado.",
+ "useLocalProxy": "Controla si se debe usar la configuración del proxy local en el host de extensión remoto. Esta configuración solo se aplica como configuración remota durante [remote development](https://aka.ms/vscode-remote)."
},
"vs/platform/shell/node/shellEnv": {
"resolveShellEnvError": "No se puede resolver el entorno de shell: {0}",
"resolveShellEnvExitError": "Código de salida inesperado del shell generado (código {0}, señal {1})",
- "resolveShellEnvTimeout": "No se puede resolver el entorno de shell en un tiempo razonable. Revise la configuración del shell."
+ "resolveShellEnvTimeout": "No se puede resolver el entorno de shell en un tiempo razonable. Revise la configuración del shell y reinicie."
+ },
+ "vs/platform/telemetry/common/telemetryLogAppender": {
+ "telemetryLog": "Telemetría{0}"
},
"vs/platform/telemetry/common/telemetryService": {
"enableTelemetryDeprecated": "Si esta configuración es false, no se enviará ningún dato de telemetría independientemente del valor de la nueva configuración. En desuso en favor de la configuración de {0}.",
@@ -1784,51 +2670,41 @@
"telemetry.docsAndPrivacyStatement": "Obtenga más información sobre los [datos que recopilamos]({0}) y nuestra [declaración de privacidad]({1}).",
"telemetry.docsStatement": "Obtenga más información sobre los [datos que recopilamos]({0}).",
"telemetry.enableTelemetry": "Habilite los datos de diagnóstico que se van a recopilar. Esto nos ayuda a comprender mejor el rendimiento de {0} y dónde es necesario realizar mejoras.",
- "telemetry.enableTelemetryMd": "Habilite los datos de diagnóstico que se van a recopilar. Esto nos ayuda a comprender mejor el rendimiento de {0} y dónde es necesario realizar mejoras. [Más información] ({1}) sobre lo que recopilamos y nuestra declaración de privacidad.",
+ "telemetry.enableTelemetryMd": "Habilite los datos de diagnóstico que se van a recopilar. Esto nos ayuda a comprender mejor el rendimiento de {0} y dónde es necesario realizar mejoras. [Más información]({1}) sobre lo que recopilamos y nuestra declaración de privacidad.",
"telemetry.errors": "Telemetría de errores",
+ "telemetry.feedback.enabled": "Habilite mecanismos de comentarios, como el notificador de problemas, encuestas y otras opciones de comentarios.",
"telemetry.restart": "Es necesario reiniciar completamente la aplicación para que los cambios de informes de bloqueo surtan efecto.",
"telemetry.telemetryLevel.crash": "Envía informes de bloqueo de nivel de sistema operativo.",
"telemetry.telemetryLevel.default": "Envía datos de uso, errores e informes de bloqueo.",
"telemetry.telemetryLevel.deprecated": "****Nota:**** Si esta configuración está desactivada, no se enviará ningún dato de telemetría independientemente de la configuración de telemetría. Si esta configuración se establece en cualquier cosa excepto \"desactivado\" y la telemetría está deshabilitada con la configuración en desuso, no se enviará telemetría.*",
"telemetry.telemetryLevel.error": "Envía telemetría de errores generales e informes de bloqueo.",
"telemetry.telemetryLevel.off": "Deshabilita toda la telemetría del producto.",
+ "telemetry.telemetryLevel.policyDescription": "Controla el nivel de telemetría.",
"telemetry.telemetryLevel.tableDescription": "En la tabla siguiente se describen los datos enviados con cada configuración:",
- "telemetry.telemetryLevelMd": "Controla la telemetría {0} , la telemetría de extensiones propias y la telemetría de extensiones de terceros participante. Es posible que algunas extensiones de terceros no respeten esta configuración. Consulta la documentación de la extensión específica para asegurarse. La telemetría nos ayuda a entender mejor cómo {0} está funcionando, dónde hay que mejorar y cómo se utilizan las características.",
+ "telemetry.telemetryLevelMd": "Controla la telemetría {0}, la telemetría de las extensiones de origen y la telemetría de las extensiones de terceros participantes. Es posible que algunas extensiones de terceros no respeten esta configuración. Consulte la documentación de la extensión específica para estar seguro. La telemetría nos ayuda a entender mejor cómo {0} está funcionando, dónde hay que mejorar y cómo se utilizan las funciones.",
"telemetry.usage": "Datos de uso",
"telemetryConfigurationTitle": "Telemetría"
},
+ "vs/platform/telemetry/common/telemetryUtils": {
+ "telemetryLogName": "Telemetría"
+ },
+ "vs/platform/terminal/common/terminalLogService": {
+ "terminalLoggerName": "Terminal"
+ },
"vs/platform/terminal/common/terminalPlatformConfiguration": {
- "terminal.integrated.automationProfile.linux": "Perfil del terminal que se va a usar en Linux para el uso de terminales relacionados con la automatización, como tareas y depuración. Esta configuración se omitirá actualmente si se establece {0}.",
- "terminal.integrated.automationProfile.osx": "Perfil del terminal que se va a usar en macOS para el uso de terminales relacionados con la automatización, como tareas y depuración. Esta configuración se omitirá actualmente si se establece {0}.",
- "terminal.integrated.automationProfile.windows": "Perfil del terminal que se va a usar para el uso de terminales relacionados con la automatización, como tareas y depuración. Esta configuración se omitirá actualmente si se establece {0}.",
- "terminal.integrated.automationShell.linux": "Ruta de acceso que, cuando se establece, invalida {0} e ignora los valores de {1} para el uso del terminal relacionado con la automatización, como las tareas y la depuración.",
- "terminal.integrated.automationShell.linux.deprecation": "Esto está en desuso, la nueva manera recomendada de configurar el shell de automatización es crear un perfil de automatización de terminal con {0}. Esto tendrá prioridad sobre la nueva configuración del perfil de automatización, aunque cambiará en el futuro.",
- "terminal.integrated.automationShell.osx": "Ruta de acceso que, cuando se establece, invalida {0} e ignora los valores de {1} para el uso del terminal relacionado con la automatización, como las tareas y la depuración.",
- "terminal.integrated.automationShell.osx.deprecation": "Esto está en desuso, la nueva manera recomendada de configurar el shell de automatización es crear un perfil de automatización de terminal con {0}. Esto tendrá prioridad sobre la nueva configuración del perfil de automatización, aunque cambiará en el futuro.",
- "terminal.integrated.automationShell.windows": "Ruta de acceso que, cuando se establece, invalida {0} e ignora los valores de {1} para el uso del terminal relacionado con la automatización, como las tareas y la depuración.",
- "terminal.integrated.automationShell.windows.deprecation": "Esto está en desuso, la nueva manera recomendada de configurar el shell de automatización es crear un perfil de automatización de terminal con {0}. Esto tendrá prioridad sobre la nueva configuración del perfil de automatización, aunque cambiará en el futuro.",
+ "terminal.integrated.automationProfile.linux": "Perfil del terminal que se va a usar en Linux para el uso de terminales relacionados con la automatización, como tareas y depuración.",
+ "terminal.integrated.automationProfile.osx": "Perfil del terminal que se va a usar en macOS para el uso de terminales relacionados con la automatización, como tareas y depuración.",
+ "terminal.integrated.automationProfile.windows": "Perfil del terminal que se va a usar para el uso de terminales relacionados con la automatización, como tareas y depuración. Esta configuración se omitirá actualmente si se establece {0} (ahora en desuso).",
"terminal.integrated.confirmIgnoreProcesses": "Conjunto de nombres de proceso que se omitirán al usar la configuración de {0}.",
- "terminal.integrated.defaultProfile.linux": "El perfil predeterminado utilizado en Linux. Esta configuración se ignorará si se establecen {0} o {1}.",
- "terminal.integrated.defaultProfile.osx": "El perfil predeterminado utilizado en macOS. Esta configuración se ignorará si se establecen {0} o {1}.",
- "terminal.integrated.defaultProfile.windows": "El perfil predeterminado utilizado en Windows. Esta configuración se ignorará si se establecen {0} o {1}.",
+ "terminal.integrated.defaultProfile.linux": "Perfil de terminal predeterminado en Linux.",
+ "terminal.integrated.defaultProfile.osx": "Perfil de terminal predeterminado en macOS.",
+ "terminal.integrated.defaultProfile.windows": "Perfil de terminal predeterminado en Windows.",
"terminal.integrated.inheritEnv": "Si los nuevos shells deben heredar su entorno de VS Code, lo que puede generar un shell de inicio de sesión para asegurarse de que se inicializan $PATH y otras variables de desarrollo. Esto no tiene ningún efecto en Windows.",
"terminal.integrated.persistentSessionScrollback": "Controla la cantidad máxima de líneas que se restaurarán al volver a conectarse a una sesión de terminal persistente. Si aumenta este número, se restaurarán más líneas de scrollback con el costo de más memoria asociado y aumentará el tiempo que se tarda en conectarse a los terminales al iniciarse. Esta configuración requiere un reinicio para que se aplique y debe establecerse en un valor menor o igual a \"#terminal.integrated.scrollback#\".",
- "terminal.integrated.profile.linux": "Perfiles de Linux que se van a presentar al crear un nuevo terminal a través de la lista desplegable de terminales. Establezca manualmente la propiedad {0} con un {1} opcional.\r\n\r\nEstablezca un perfil existente en {2} para ocultar el perfil de la lista, por ejemplo: {3}.",
- "terminal.integrated.profile.osx": "Perfiles de macOS que se van a presentar al crear un nuevo terminal a través de la lista desplegable de terminales. Establezca manualmente la propiedad {0} con un {1} opcional.\r\n\r\nEstablezca un perfil existente en {2} para ocultar el perfil de la lista, por ejemplo: {3}.",
- "terminal.integrated.profiles.windows": "Perfiles de Windows que se van a presentar al crear un nuevo terminal a través de la lista desplegable de terminales. Use la propiedad {0} para detectar automáticamente la ubicación del shell. O bien, establezca la propiedad {1} manualmente con una {2} opcional.\r\n\r\nEstablezca un perfil existente en {3} para ocultar el perfil de la lista, por ejemplo: {4}.",
- "terminal.integrated.shell.linux": "Ruta de acceso del shell que el terminal usa en Linux. [Obtener más información acerca de la configuración del shell](https://code.visualstudio.com/docs/editor/integrated-terminal#_terminal-profiles).",
- "terminal.integrated.shell.linux.deprecation": "Esto está en desuso, la nueva forma recomendada para configurar el shell predeterminado es crear un perfil de terminal en {0} y establecer el nombre de su perfil como el predeterminado en {1}. Actualmente, esto tendrá prioridad sobre la configuración de los nuevos perfiles, aunque esto cambiará en el futuro.",
- "terminal.integrated.shell.osx": "Ruta de acceso del shell que el terminal usa en macOS. [Obtener más información acerca de la configuración del shell](https://code.visualstudio.com/docs/editor/integrated-terminal#_terminal-profiles).",
- "terminal.integrated.shell.osx.deprecation": "Esto está en desuso, la nueva forma recomendada para configurar el shell predeterminado es crear un perfil de terminal en {0} y establecer el nombre de su perfil como el predeterminado en {1}. Actualmente, esto tendrá prioridad sobre la configuración de los nuevos perfiles, aunque esto cambiará en el futuro.",
- "terminal.integrated.shell.windows": "Ruta de acceso del shell que el terminal usa en Windows. [Obtener más información acerca de la configuración del shell](https://code.visualstudio.com/docs/editor/integrated-terminal#_terminal-profiles).",
- "terminal.integrated.shell.windows.deprecation": "Esto está en desuso, la nueva forma recomendada para configurar el shell predeterminado es crear un perfil de terminal en {0} y establecer el nombre de su perfil como el predeterminado en {1}. Actualmente, esto tendrá prioridad sobre la configuración de los nuevos perfiles, aunque esto cambiará en el futuro.",
- "terminal.integrated.shellArgs.linux": "Argumentos de la línea de comandos que se van a usar en el terminal de Linux. [Obtener más información acerca de la configuración del shell](https://code.visualstudio.com/docs/editor/integrated-terminal#_terminal-profiles).",
- "terminal.integrated.shellArgs.osx": "Argumentos de la línea de comandos que se van a usar en el terminal de macOS. [Obtener más información acerca de la configuración del shell](https://code.visualstudio.com/docs/editor/integrated-terminal#_terminal-profiles).",
- "terminal.integrated.shellArgs.windows": "Argumentos de la línea de comandos que se van a usar en el terminal de Windows. [Obtener más información acerca de la configuración del shell](https://code.visualstudio.com/docs/editor/integrated-terminal#_terminal-profiles).",
- "terminal.integrated.shellArgs.windows.string": "Argumentos de la línea de comandos en [formato de línea de comandos](https://msdn.Microsoft.com/en-au/08dfcab2-eb6e-49a4-80eb-87d4076c98c6) que se van a usar en el terminal de Windows. [Obtener más información acerca de la configuración del shell](https://code.visualstudio.com/docs/editor/integrated-terminal#_terminal-profiles).",
+ "terminal.integrated.profile": "Conjunto de personalizaciones de perfil de terminal para {0} que permite agregar, quitar o cambiar la forma en que se inician los terminales. Los perfiles se componen de una ruta de acceso obligatoria, argumentos opcionales y otras opciones de presentación.\r\n\r\nPara reemplazar un perfil existente, use su nombre de perfil como clave, por ejemplo: \r\n\r\n{1}\r\n\r\n{2}Obtenga más información sobre la configuración de perfiles{3}.",
"terminal.integrated.showLinkHover": "Indica si se deben mostrar los desplazamientos de los vínculos en la salida de terminal.",
"terminal.integrated.useWslProfiles": "Controla si se muestran o no las distribuciones de WSL en la lista desplegable del terminal.",
- "terminalAutomationProfile.path": "Una única ruta de acceso a un ejecutable de shell.",
+ "terminalAutomationProfile.path": "Una ruta de acceso a un ejecutable de shell.",
"terminalIntegratedConfigurationTitle": "Terminal integrado",
"terminalProfile.args": "Conjunto opcional de argumentos con los que ejecutar el archivo ejecutable del shell.",
"terminalProfile.color": "Identificador de color del tema que se va a asociar al icono de terminal.",
@@ -1840,16 +2716,19 @@
"terminalProfile.osxExtensionId": "El ID del terminal de extensión",
"terminalProfile.osxExtensionIdentifier": "La extensión que ha contribuido con este perfil.",
"terminalProfile.osxExtensionTitle": "El nombre del terminal de extensión",
- "terminalProfile.overrideName": "Controla si el nombre del perfil reemplazará o no al detectado automáticamente.",
+ "terminalProfile.overrideName": "Indica si se va a reemplazar el título del terminal dinámico que detecta qué programa se está ejecutando con el nombre de perfil estático.",
"terminalProfile.path": "Única ruta de acceso a un archivo ejecutable del shell o una matriz de rutas de acceso que se usarán como reserva cuando otra genere un error.",
"terminalProfile.windowsExtensionId": "El ID del terminal de extensión",
"terminalProfile.windowsExtensionIdentifier": "La extensión que ha contribuido con este perfil.",
"terminalProfile.windowsExtensionTitle": "El nombre del terminal de extensión",
- "terminalProfile.windowsSource": "Origen de perfil que detectará las rutas de acceso al shell de forma automática."
+ "terminalProfile.windowsSource": "Origen de perfil que detectará automáticamente las rutas de acceso al shell. Tenga en cuenta que las ubicaciones ejecutables no estándar no se admiten y deben crearse manualmente en un perfil nuevo."
},
"vs/platform/terminal/common/terminalProfiles": {
"terminalAutomaticProfile": "Detectar automáticamente el valor predeterminado"
},
+ "vs/platform/terminal/node/ptyHostMain": {
+ "ptyHost": "Pty Host"
+ },
"vs/platform/terminal/node/ptyService": {
"terminal-history-restored": "Historial restaurado"
},
@@ -1859,23 +2738,26 @@
"launchFail.executableDoesNotExist": "La ruta de acceso al ejecutable del shell \"{0}\" no existe",
"launchFail.executableIsNotFileOrSymlink": "La ruta de acceso al ejecutable del shell \"{0}\" no es un archivo o symlink"
},
- "vs/platform/theme/common/colorRegistry": {
+ "vs/platform/theme/common/colors/baseColors": {
"activeContrastBorder": "Un borde adicional alrededor de los elementos activos para separarlos unos de otros y así mejorar el contraste.",
- "activeLinkForeground": "Color de los vínculos activos.",
- "badgeBackground": "Color de fondo de la insignia. Las insignias son pequeñas etiquetas de información, por ejemplo los resultados de un número de resultados.",
- "badgeForeground": "Color de primer plano de la insignia. Las insignias son pequeñas etiquetas de información, por ejemplo los resultados de un número de resultados.",
- "breadcrumbsBackground": "Color de fondo de los elementos de ruta de navegación",
- "breadcrumbsFocusForeground": "Color de los elementos de ruta de navegación que reciben el foco.",
- "breadcrumbsSelectedBackground": "Color de fondo del selector de elementos de ruta de navegación.",
- "breadcrumbsSelectedForeground": "Color de los elementos de ruta de navegación seleccionados.",
- "buttonBackground": "Color de fondo del botón.",
- "buttonBorder": "Color del borde del botón",
- "buttonForeground": "Color de primer plano del botón.",
- "buttonHoverBackground": "Color de fondo del botón al mantener el puntero.",
- "buttonSecondaryBackground": "Color de fondo del botón secundario.",
- "buttonSecondaryForeground": "Color de primer plano del botón secundario.",
- "buttonSecondaryHoverBackground": "Color de fondo del botón secundario al mantener el mouse.",
- "buttonSeparator": "Color del separador de botones.",
+ "contrastBorder": "Un borde adicional alrededor de los elementos para separarlos unos de otros y así mejorar el contraste.",
+ "descriptionForeground": "Color de primer plano para el texto descriptivo que proporciona información adicional, por ejemplo para una etiqueta.",
+ "disabledForeground": "Primer plano general de los elementos deshabilitados. Este color solo se usa si un componente no lo reemplaza.",
+ "errorForeground": "Color de primer plano general para los mensajes de erroe. Este color solo se usa si un componente no lo invalida.",
+ "focusBorder": "Color de borde de los elementos con foco. Este color solo se usa si un componente no lo invalida.",
+ "foreground": "Color de primer plano general. Este color solo se usa si un componente no lo invalida.",
+ "iconForeground": "El color predeterminado para los iconos en el área de trabajo.",
+ "selectionBackground": "El color de fondo del texto seleccionado en el área de trabajo (por ejemplo, campos de entrada o áreas de texto). Esto no se aplica a las selecciones dentro del editor.",
+ "textBlockQuoteBackground": "Color de fondo para los bloques en texto.",
+ "textBlockQuoteBorder": "Color de borde para los bloques en texto.",
+ "textCodeBlockBackground": "Color de fondo para los bloques de código en el texto.",
+ "textLinkActiveForeground": "Color de primer plano para los enlaces de texto, al hacer clic o pasar el mouse sobre ellos.",
+ "textLinkForeground": "Color de primer plano para los vínculos en el texto.",
+ "textPreformatBackground": "Color de fondo para segmentos de texto con formato previo.",
+ "textPreformatForeground": "Color de primer plano para los segmentos de texto con formato previo.",
+ "textSeparatorForeground": "Color para los separadores de texto."
+ },
+ "vs/platform/theme/common/colors/chartsColors": {
"chartsBlue": "Color azul que se usa en las visualizaciones de gráficos.",
"chartsForeground": "Color de primer plano que se usa en los gráficos.",
"chartsGreen": "Color verde que se usa en las visualizaciones de gráficos.",
@@ -1883,13 +2765,18 @@
"chartsOrange": "Color naranja que se usa en las visualizaciones de gráficos.",
"chartsPurple": "Color púrpura que se usa en las visualizaciones de gráficos.",
"chartsRed": "Color rojo que se usa en las visualizaciones de gráficos.",
- "chartsYellow": "Color amarillo que se usa en las visualizaciones de gráficos.",
- "checkbox.background": "Color de fondo de la casilla de verificación del widget.",
- "checkbox.border": "Color del borde del widget de la casilla de verificación.",
- "checkbox.foreground": "Color de primer plano del widget de la casilla de verificación.",
- "contrastBorder": "Un borde adicional alrededor de los elementos para separarlos unos de otros y así mejorar el contraste.",
- "descriptionForeground": "Color de primer plano para el texto descriptivo que proporciona información adicional, por ejemplo para una etiqueta.",
+ "chartsYellow": "Color amarillo que se usa en las visualizaciones de gráficos."
+ },
+ "vs/platform/theme/common/colors/editorColors": {
+ "activeLinkForeground": "Color de los vínculos activos.",
+ "breadcrumbsBackground": "Color de fondo de los elementos de ruta de navegación",
+ "breadcrumbsFocusForeground": "Color de los elementos de ruta de navegación que reciben el foco.",
+ "breadcrumbsSelectedBackground": "Color de fondo del selector de elementos de ruta de navegación.",
+ "breadcrumbsSelectedForeground": "Color de los elementos de ruta de navegación seleccionados.",
"diffDiagonalFill": "Color de relleno diagonal del editor de diferencias. El relleno diagonal se usa en las vistas de diferencias en paralelo.",
+ "diffEditor.unchangedCodeBackground": "Color de fondo del código sin modificar en el editor de diferencias.",
+ "diffEditor.unchangedRegionBackground": "Color de fondo de los bloques sin modificar en el editor de diferencias.",
+ "diffEditor.unchangedRegionForeground": "Color de primer plano de los bloques sin modificar en el editor de diferencias.",
"diffEditorBorder": "Color del borde entre ambos editores de texto.",
"diffEditorInserted": "Color de fondo para el texto que se insertó. El color no debe ser opaco para no ocultar las decoraciones subyacentes.",
"diffEditorInsertedLineGutter": "Color de fondo del margen donde se insertaron las líneas.",
@@ -1901,16 +2788,13 @@
"diffEditorRemovedLineGutter": "Color de fondo del margen donde se quitaron las líneas.",
"diffEditorRemovedLines": "Color de fondo de las líneas que se quitaron. El color no debe ser opaco para no ocultar las decoraciones subyacentes.",
"diffEditorRemovedOutline": "Color de contorno para el texto quitado.",
- "disabledForeground": "Primer plano general de los elementos deshabilitados. Este color solo se usa si un componente no lo reemplaza.",
- "dropdownBackground": "Fondo de lista desplegable.",
- "dropdownBorder": "Borde de lista desplegable.",
- "dropdownForeground": "Primer plano de lista desplegable.",
- "dropdownListBackground": "Fondo de la lista desplegable.",
"editorBackground": "Color de fondo del editor.",
+ "editorCompositionBorder": "Color del borde de una composición de IME.",
"editorError.background": "Color de fondo del texto de error del editor. El color no debe ser opaco para no ocultar las decoraciones subyacentes.",
"editorError.foreground": "Color de primer plano de squigglies de error en el editor.",
"editorFindMatch": "Color de la coincidencia de búsqueda actual.",
"editorFindMatchBorder": "Color de borde de la coincidencia de búsqueda actual.",
+ "editorFindMatchForeground": "Color de texto de la coincidencia de búsqueda actual.",
"editorForeground": "Color de primer plano predeterminado del editor.",
"editorHint.foreground": "Color de primer plano de pista squigglies en el editor.",
"editorInactiveSelection": "Color de la selección en un editor inactivo. El color no debe ser opaco para no ocultar decoraciones subyacentes.",
@@ -1922,39 +2806,86 @@
"editorInlayHintForeground": "Color de primer plano de las sugerencias insertadas",
"editorInlayHintForegroundParameter": "Color de primer plano de las sugerencias insertadas para los parámetros",
"editorInlayHintForegroundTypes": "Color de primer plano de las sugerencias insertadas para los tipos de letra",
+ "editorLightBulbAiForeground": "El color utilizado para el icono de bombilla de inteligencia artificial.",
"editorLightBulbAutoFixForeground": "El color utilizado para el icono de la bombilla de acciones de corrección automática.",
"editorLightBulbForeground": "El color utilizado para el icono de bombilla de acciones.",
"editorSelectionBackground": "Color de la selección del editor.",
"editorSelectionForeground": "Color del texto seleccionado para alto contraste.",
"editorSelectionHighlight": "Color en las regiones con el mismo contenido que la selección. El color no debe ser opaco para no ocultar decoraciones subyacentes.",
"editorSelectionHighlightBorder": "Color de borde de las regiones con el mismo contenido que la selección.",
- "editorStickyScrollBackground": "Sticky scroll background color for the editor",
- "editorStickyScrollHoverBackground": "Sticky scroll on hover background color for the editor",
+ "editorStickyScrollBackground": "Color de fondo del desplazamiento con inmovilización en el editor",
+ "editorStickyScrollBorder": "Color de borde del desplazamiento con inmovilización en el editor",
+ "editorStickyScrollGutterBackground": "Color de fondo de la parte del medianil del desplazamiento con inmovilización en el editor",
+ "editorStickyScrollHoverBackground": "Color de fondo del desplazamiento con inmovilización al mantener el mouse en el editor",
+ "editorStickyScrollShadow": " Color de sombra del desplazamiento con inmovilización en el editor",
"editorWarning.background": "Color de fondo del texto de advertencia del editor. El color no debe ser opaco para no ocultar las decoraciones subyacentes.",
"editorWarning.foreground": "Color de primer plano de squigglies de advertencia en el editor.",
"editorWidgetBackground": "Color de fondo del editor de widgets como buscar/reemplazar",
"editorWidgetBorder": "Color de borde de los widgets del editor. El color solo se usa si el widget elige tener un borde y no invalida el color.",
"editorWidgetForeground": "Color de primer plano de los widgets del editor, como buscar y reemplazar.",
"editorWidgetResizeBorder": "Color del borde de la barra de cambio de tamaño de los widgets del editor. El color se utiliza solo si el widget elige tener un borde de cambio de tamaño y si un widget no invalida el color.",
- "errorBorder": "Color del borde de los cuadros de error en el editor.",
- "errorForeground": "Color de primer plano general para los mensajes de erroe. Este color solo se usa si un componente no lo invalida.",
+ "errorBorder": "Si se establece, color de subrayados dobles para errores en el editor.",
"findMatchHighlight": "Color de los otros resultados de la búsqueda. El color no debe ser opaco para no ocultar las decoraciones subyacentes.",
"findMatchHighlightBorder": "Color de borde de otra búsqueda que coincide.",
+ "findMatchHighlightForeground": "Color de primer plano de las otras coincidencias de búsqueda.",
"findRangeHighlight": "Color de la gama que limita la búsqueda. El color no debe ser opaco para no ocultar decoraciones subyacentes.",
"findRangeHighlightBorder": "Color del borde de la gama que limita la búsqueda. El color no debe ser opaco para no ocultar las decoraciones subyacentes.",
- "focusBorder": "Color de borde de los elementos con foco. Este color solo se usa si un componente no lo invalida.",
- "foreground": "Color de primer plano general. Este color solo se usa si un componente no lo invalida.",
- "highlight": "Color de primer plano de la lista o el árbol de las coincidencias resaltadas al buscar dentro de la lista o el ábol.",
- "hintBorder": "Color del borde de los cuadros de sugerencia en el editor.",
+ "hintBorder": "Si se establece, color de subrayados dobles para sugerencias en el editor.",
"hoverBackground": "Color de fondo al mantener el puntero en el editor.",
"hoverBorder": "Color del borde al mantener el puntero en el editor.",
"hoverForeground": "Color de primer plano al mantener el puntero en el editor.",
"hoverHighlight": "Destacar debajo de la palabra para la que se muestra un mensaje al mantener el mouse. El color no debe ser opaco para no ocultar decoraciones subyacentes.",
- "iconForeground": "El color predeterminado para los iconos en el área de trabajo.",
- "infoBorder": "Color del borde de los cuadros de información en el editor.",
- "inputBoxActiveOptionBorder": "Color de borde de opciones activadas en campos de entrada.",
- "inputBoxBackground": "Fondo de cuadro de entrada.",
- "inputBoxBorder": "Borde de cuadro de entrada.",
+ "infoBorder": "Si se establece, color de subrayados dobles para informaciones en el editor.",
+ "mergeBorder": "Color del borde en los encabezados y el divisor en conflictos de combinación alineados.",
+ "mergeCommonContentBackground": "Fondo de contenido antecesor común en conflictos de combinación en línea. El color no debe ser opaco para no ocultar las decoraciones subyacentes.",
+ "mergeCommonHeaderBackground": "Fondo de cabecera de elemento antecesor común en conflictos de fusión en línea. El color no debe ser opaco para no ocultar decoraciones subyacentes.",
+ "mergeCurrentContentBackground": "Fondo de contenido actual en los conflictos de combinación en línea. El color no debe ser opaco para no ocultar las decoraciones subyacentes.",
+ "mergeCurrentHeaderBackground": "Fondo del encabezado actual en los conflictos de combinación en línea. El color no debe ser opaco para no ocultar las decoraciones subyacentes.",
+ "mergeIncomingContentBackground": "Fondo de contenido entrante en los conflictos de combinación en línea. El color no debe ser opaco para no ocultar las decoraciones subyacentes.",
+ "mergeIncomingHeaderBackground": "Fondo de encabezado entrante en los conflictos de combinación en línea. El color no debe ser opaco para no ocultar las decoraciones subyacentes.",
+ "overviewRulerCommonContentForeground": "Primer plano de la regla de visión general de ancestros comunes para conflictos de combinación alineados.",
+ "overviewRulerCurrentContentForeground": "Primer plano de la regla de visión general actual para conflictos de combinación alineados.",
+ "overviewRulerFindMatchForeground": "Color del marcador de regla general para buscar actualizaciones. El color no debe ser opaco para no ocultar las decoraciones subyacentes.",
+ "overviewRulerIncomingContentForeground": "Primer plano de regla de visión general de entrada para conflictos de combinación alineados.",
+ "overviewRulerSelectionHighlightForeground": "Color del marcador de la regla general para los destacados de la selección. El color no debe ser opaco para no ocultar las decoraciones subyacentes.",
+ "problemsErrorIconForeground": "Color utilizado para el icono de error de problemas.",
+ "problemsInfoIconForeground": "Color utilizado para el icono de información de problemas.",
+ "problemsWarningIconForeground": "Color utilizado para el icono de advertencia de problemas.",
+ "snippetFinalTabstopHighlightBackground": "Resaltado del color de fondo para la última ficha de un fragmento de código.",
+ "snippetFinalTabstopHighlightBorder": "Resaltado del color del borde para la última tabulación de un fragmento de código.",
+ "snippetTabstopHighlightBackground": "Resaltado del color de fondo para una ficha de un fragmento de código.",
+ "snippetTabstopHighlightBorder": "Resaltado del color del borde para una ficha de un fragmento de código.",
+ "statusBarBackground": "Color de fondo de la barra de estado al mantener el puntero en el editor.",
+ "toolbarActiveBackground": "Fondo de la barra de herramientas al mantener el mouse sobre las acciones",
+ "toolbarHoverBackground": "El fondo de la barra de herramientas se perfila al pasar por encima de las acciones con el mouse.",
+ "toolbarHoverOutline": "La barra de herramientas se perfila al pasar por encima de las acciones con el mouse.",
+ "warningBorder": "Si se establece, color de subrayados dobles para advertencias en el editor.",
+ "widgetBorder": "Color de borde de los widgets dentro del editor, como buscar/reemplazar",
+ "widgetShadow": "Color de sombra de los widgets dentro del editor, como buscar/reemplazar"
+ },
+ "vs/platform/theme/common/colors/inputColors": {
+ "buttonBackground": "Color de fondo del botón.",
+ "buttonBorder": "Color del borde del botón",
+ "buttonForeground": "Color de primer plano del botón.",
+ "buttonHoverBackground": "Color de fondo del botón al mantener el puntero.",
+ "buttonSecondaryBackground": "Color de fondo del botón secundario.",
+ "buttonSecondaryForeground": "Color de primer plano del botón secundario.",
+ "buttonSecondaryHoverBackground": "Color de fondo del botón secundario al mantener el mouse.",
+ "buttonSeparator": "Color del separador de botones.",
+ "checkbox.background": "Color de fondo de la casilla de verificación del widget.",
+ "checkbox.border": "Color del borde del widget de la casilla de verificación.",
+ "checkbox.disabled.background": "Fondo de una casilla de verificación deshabilitada.",
+ "checkbox.disabled.foreground": "Primer plano de una casilla de verificación deshabilitada.",
+ "checkbox.foreground": "Color de primer plano del widget de la casilla de verificación.",
+ "checkbox.select.background": "Color de fondo del widget de la casilla cuando se selecciona el elemento en el que se encuentra.",
+ "checkbox.select.border": "Color de borde del widget de la casilla cuando se selecciona el elemento en el que se encuentra.",
+ "dropdownBackground": "Fondo de lista desplegable.",
+ "dropdownBorder": "Borde de lista desplegable.",
+ "dropdownForeground": "Primer plano de lista desplegable.",
+ "dropdownListBackground": "Fondo de la lista desplegable.",
+ "inputBoxActiveOptionBorder": "Color de borde de opciones activadas en campos de entrada.",
+ "inputBoxBackground": "Fondo de cuadro de entrada.",
+ "inputBoxBorder": "Borde de cuadro de entrada.",
"inputBoxForeground": "Primer plano de cuadro de entrada.",
"inputOption.activeBackground": "Color de fondo al pasar por encima de las opciones en los campos de entrada.",
"inputOption.activeForeground": "Color de primer plano de las opciones activadas en los campos de entrada.",
@@ -1969,23 +2900,38 @@
"inputValidationWarningBackground": "Color de fondo de validación de entrada para gravedad de advertencia.",
"inputValidationWarningBorder": "Color de borde de validación de entrada para gravedad de advertencia.",
"inputValidationWarningForeground": "Color de primer plano de validación de entrada para información de advertencia.",
- "invalidItemForeground": "Color de primer plano de una lista o árbol para los elementos inválidos, por ejemplo una raiz sin resolver en el explorador.",
"keybindingLabelBackground": "Color de fondo de etiqueta de enlace de teclado. La etiqueta enlace de teclado se usa para representar un método abreviado de teclado.",
"keybindingLabelBorder": "Color del borde de la etiqueta de enlace de teclado. La etiqueta enlace de teclado se usa para representar un método abreviado de teclado.",
"keybindingLabelBottomBorder": "Color del borde inferior de la etiqueta de enlace de teclado. La etiqueta enlace de teclado se usa para representar un método abreviado de teclado.",
"keybindingLabelForeground": "Color de primer plano de etiqueta de enlace de teclado. La etiqueta enlace de teclado se usa para representar un método abreviado de teclado.",
+ "radioActiveBorder": "Color de borde de la opción de radio activa.",
+ "radioActiveForeground": "Color de primer plano de la opción de radio activa.",
+ "radioBackground": "Color de fondo de la opción de radio activa.",
+ "radioHoverBackground": "Color de fondo de la opción de radio activa inactiva al mantener el puntero.",
+ "radioInactiveBackground": "Color de fondo de la opción de radio inactiva.",
+ "radioInactiveBorder": "Color de borde de la opción de radio inactiva.",
+ "radioInactiveForeground": "Color de primer plano de la opción de radio inactiva."
+ },
+ "vs/platform/theme/common/colors/listColors": {
+ "editorActionListBackground": "Color de fondo de la lista de acciones.",
+ "editorActionListFocusBackground": "Color de fondo de la lista de acciones para el elemento con el foco.",
+ "editorActionListFocusForeground": "Color de primer plano de la lista de acciones para el elemento con el foco.",
+ "editorActionListForeground": "Color de primer plano de la lista de acciones.",
+ "highlight": "Color de primer plano de la lista o el árbol de las coincidencias resaltadas al buscar dentro de la lista o el ábol.",
+ "invalidItemForeground": "Color de primer plano de una lista o árbol para los elementos inválidos, por ejemplo una raiz sin resolver en el explorador.",
"listActiveSelectionBackground": "Color de fondo de la lista o el árbol del elemento seleccionado cuando la lista o el árbol están activos. Una lista o un árbol tienen el foco del teclado cuando están activos, cuando están inactivos no.",
"listActiveSelectionForeground": "Color de primer plano de la lista o el árbol del elemento seleccionado cuando la lista o el árbol están activos. Una lista o un árbol tienen el foco del teclado cuando están activos, cuando están inactivos no.",
"listActiveSelectionIconForeground": "Color de primer plano del icono de lista o árbol del elemento seleccionado cuando la lista o el árbol están activos. Una lista o un árbol tienen el foco del teclado cuando están activos, cuando están inactivos no.",
"listDeemphasizedForeground": "Color de primer plano de lista/árbol para los elementos no enfatizados.",
- "listDropBackground": "Fondo de arrastrar y colocar la lista o el árbol al mover los elementos con el mouse.",
+ "listDropBackground": "Fondo de lista/árbol al arrastrar y colocar cuando se mueven elementos sobre otros elementos al usar el mouse.",
+ "listDropBetweenBackground": "Color del borde de lista o árbol al arrastrar y colocar cuando se mueven elementos entre otros elementos mediante el mouse.",
"listErrorForeground": "Color del primer plano de elementos de lista que contienen errores.",
"listFilterMatchHighlight": "Color de fondo de la coincidencia filtrada.",
"listFilterMatchHighlightBorder": "Color de borde de la coincidencia filtrada.",
"listFilterWidgetBackground": "Color de fondo del widget de filtro de tipo en listas y árboles.",
"listFilterWidgetNoMatchesOutline": "Color de contorno del widget de filtro de tipo en listas y árboles, cuando no hay coincidencias.",
"listFilterWidgetOutline": "Color de contorno del widget de filtro de tipo en listas y árboles.",
- "listFilterWidgetShadow": "Color del sombreado del widget de filtrado de escritura en listas y árboles.",
+ "listFilterWidgetShadow": "Color de sombra del widget de filtrado de escritura en listas y árboles.",
"listFocusAndSelectionOutline": "Color de contorno de la lista o el árbol del elemento con el foco cuando la lista o el árbol están activos y seleccionados. Una lista o un árbol tienen el foco del teclado cuando están activos, pero no cuando están inactivos.",
"listFocusBackground": "Color de fondo de la lista o el árbol del elemento con el foco cuando la lista o el árbol están activos. Una lista o un árbol tienen el foco del teclado cuando están activos, cuando están inactivos no.",
"listFocusForeground": "Color de primer plano de la lista o el árbol del elemento con el foco cuando la lista o el árbol están activos. Una lista o un árbol tienen el foco del teclado cuando están activos, cuando están inactivos no.",
@@ -1999,82 +2945,77 @@
"listInactiveSelectionForeground": "Color de primer plano de la lista o el árbol del elemento con el foco cuando la lista o el árbol esta inactiva. Una lista o un árbol tiene el foco del teclado cuando está activo, cuando esta inactiva no.",
"listInactiveSelectionIconForeground": "Color de primer plano del icono de lista o árbol del elemento seleccionado cuando la lista o el árbol están inactivos. Una lista o un árbol tienen el foco del teclado cuando están activos, cuando están inactivos no.",
"listWarningForeground": "Color del primer plano de elementos de lista que contienen advertencias.",
+ "tableColumnsBorder": "Color de borde de la tabla entre columnas.",
+ "tableOddRowsBackgroundColor": "Color de fondo para las filas de tabla impares.",
+ "treeInactiveIndentGuidesStroke": "Color de trazo de árbol para las guías de sangría que no están activas.",
+ "treeIndentGuidesStroke": "Color de trazo de árbol para las guías de sangría."
+ },
+ "vs/platform/theme/common/colors/menuColors": {
"menuBackground": "Color de fondo de los elementos de menú.",
"menuBorder": "Color del borde de los menús.",
"menuForeground": "Color de primer plano de los elementos de menú.",
"menuSelectionBackground": "Color de fondo del menu para el elemento del menú seleccionado.",
"menuSelectionBorder": "Color del borde del elemento seleccionado en los menús.",
"menuSelectionForeground": "Color de primer plano del menu para el elemento del menú seleccionado.",
- "menuSeparatorBackground": "Color del separador del menu para un elemento del menú.",
- "mergeBorder": "Color del borde en los encabezados y el divisor en conflictos de combinación alineados.",
- "mergeCommonContentBackground": "Fondo de contenido antecesor común en conflictos de combinación en línea. El color no debe ser opaco para no ocultar las decoraciones subyacentes.",
- "mergeCommonHeaderBackground": "Fondo de cabecera de elemento antecesor común en conflictos de fusión en línea. El color no debe ser opaco para no ocultar decoraciones subyacentes.",
- "mergeCurrentContentBackground": "Fondo de contenido actual en los conflictos de combinación en línea. El color no debe ser opaco para no ocultar las decoraciones subyacentes.",
- "mergeCurrentHeaderBackground": "Fondo del encabezado actual en los conflictos de combinación en línea. El color no debe ser opaco para no ocultar las decoraciones subyacentes.",
- "mergeIncomingContentBackground": "Fondo de contenido entrante en los conflictos de combinación en línea. El color no debe ser opaco para no ocultar las decoraciones subyacentes.",
- "mergeIncomingHeaderBackground": "Fondo de encabezado entrante en los conflictos de combinación en línea. El color no debe ser opaco para no ocultar las decoraciones subyacentes.",
+ "menuSeparatorBackground": "Color del separador del menu para un elemento del menú."
+ },
+ "vs/platform/theme/common/colors/minimapColors": {
"minimapBackground": "Color de fondo del minimapa.",
"minimapError": "Color del marcador de minimapa para errores.",
"minimapFindMatchHighlight": "Color de marcador de minimapa para coincidencias de búsqueda.",
"minimapForegroundOpacity": "Opacidad de los elementos de primer plano representados en el minimapa. Por ejemplo, \"#000000c0\" representará los elementos con 75% de opacidad.",
+ "minimapInfo": "Color del marcador de minimapa para información.",
"minimapSelectionHighlight": "Color del marcador de minimapa para la selección del editor.",
"minimapSelectionOccurrenceHighlight": "Color de marcador de minimapa para las selecciones del editor que se repiten.",
"minimapSliderActiveBackground": "Color de fondo del deslizador de minimapa al hacer clic en él.",
"minimapSliderBackground": "Color de fondo del deslizador del minimapa.",
"minimapSliderHoverBackground": "Color de fondo del deslizador del minimapa al pasar el puntero.",
- "overviewRuleWarning": "Color del marcador de minimapa para advertencias.",
- "overviewRulerCommonContentForeground": "Primer plano de la regla de visión general de ancestros comunes para conflictos de combinación alineados.",
- "overviewRulerCurrentContentForeground": "Primer plano de la regla de visión general actual para conflictos de combinación alineados.",
- "overviewRulerFindMatchForeground": "Color del marcador de regla general para buscar actualizaciones. El color no debe ser opaco para no ocultar las decoraciones subyacentes.",
- "overviewRulerIncomingContentForeground": "Primer plano de regla de visión general de entrada para conflictos de combinación alineados.",
- "overviewRulerSelectionHighlightForeground": "Color del marcador de la regla general para los destacados de la selección. El color no debe ser opaco para no ocultar las decoraciones subyacentes.",
+ "overviewRuleWarning": "Color del marcador de minimapa para advertencias."
+ },
+ "vs/platform/theme/common/colors/miscColors": {
+ "activityErrorBadge.background": "Color de fondo del distintivo de actividad de error",
+ "activityErrorBadge.foreground": "Color de primer plano del distintivo de actividad de error",
+ "activityWarningBadge.background": "Color de fondo del distintivo de actividad de advertencia",
+ "activityWarningBadge.foreground": "Color de primer plano del distintivo de actividad de advertencia",
+ "badgeBackground": "Color de fondo de la insignia. Las insignias son pequeñas etiquetas de información, por ejemplo los resultados de un número de resultados.",
+ "badgeForeground": "Color de primer plano de la insignia. Las insignias son pequeñas etiquetas de información, por ejemplo los resultados de un número de resultados.",
+ "chartAxis": "Color del eje para el gráfico.",
+ "chartGuide": "Línea de guía para el gráfico.",
+ "chartLine": "Color de línea para el gráfico.",
+ "progressBarBackground": "Color de fondo para la barra de progreso que se puede mostrar para las operaciones de larga duración.",
+ "sashActiveBorder": "Color de borde de los marcos activos.",
+ "scrollbarBackground": "Color de fondo de la pista de la barra de desplazamiento.",
+ "scrollbarShadow": "Sombra de la barra de desplazamiento indica que la vista se ha despazado.",
+ "scrollbarSliderActiveBackground": "Color de fondo de la barra de desplazamiento al hacer clic.",
+ "scrollbarSliderBackground": "Color de fondo de control deslizante de barra de desplazamiento.",
+ "scrollbarSliderHoverBackground": "Color de fondo de barra de desplazamiento cursor cuando se pasar sobre el control."
+ },
+ "vs/platform/theme/common/colors/quickpickColors": {
"pickerBackground": "Color de fondo del selector rápido. El widget del selector rápido es el contenedor para selectores como la paleta de comandos.",
"pickerForeground": "Color de primer plano del selector rápido. El widget del selector rápido es el contenedor para selectores como la paleta de comandos.",
"pickerGroupBorder": "Selector de color rápido para la agrupación de bordes.",
"pickerGroupForeground": "Selector de color rápido para la agrupación de etiquetas.",
"pickerTitleBackground": "Color de fondo del título del selector rápido. El widget del selector rápido es el contenedor para selectores como la paleta de comandos.",
- "problemsErrorIconForeground": "Color utilizado para el icono de error de problemas.",
- "problemsInfoIconForeground": "Color utilizado para el icono de información de problemas.",
- "problemsWarningIconForeground": "Color utilizado para el icono de advertencia de problemas.",
- "progressBarBackground": "Color de fondo para la barra de progreso que se puede mostrar para las operaciones de larga duración.",
"quickInput.list.focusBackground deprecation": "Use quickInputList.focusBackground en su lugar.",
"quickInput.listFocusBackground": "Color de fondo del selector rápido para el elemento con el foco.",
"quickInput.listFocusForeground": "Selector rápido del color de primer plano para el elemento con el foco.",
- "quickInput.listFocusIconForeground": "Color de primer plano del icono del selector rápido para el elemento con el foco.",
- "sashActiveBorder": "Color de borde de los marcos activos.",
- "scrollbarShadow": "Sombra de la barra de desplazamiento indica que la vista se ha despazado.",
- "scrollbarSliderActiveBackground": "Color de fondo de la barra de desplazamiento al hacer clic.",
- "scrollbarSliderBackground": "Color de fondo de control deslizante de barra de desplazamiento.",
- "scrollbarSliderHoverBackground": "Color de fondo de barra de desplazamiento cursor cuando se pasar sobre el control.",
+ "quickInput.listFocusIconForeground": "Color de primer plano del icono del selector rápido para el elemento con el foco."
+ },
+ "vs/platform/theme/common/colors/searchColors": {
+ "search.resultsInfoForeground": "Color del texto en el mensaje de finalización del viewlet de búsqueda.",
"searchEditor.editorFindMatchBorder": "Color de borde de las consultas coincidentes del Editor de búsqueda.",
- "searchEditor.queryMatch": "Color de las consultas coincidentes del Editor de búsqueda.",
- "selectionBackground": "El color de fondo del texto seleccionado en el área de trabajo (por ejemplo, campos de entrada o áreas de texto). Esto no se aplica a las selecciones dentro del editor.",
- "snippetFinalTabstopHighlightBackground": "Resaltado del color de fondo para la última ficha de un fragmento de código.",
- "snippetFinalTabstopHighlightBorder": "Resaltado del color del borde para la última tabulación de un fragmento de código.",
- "snippetTabstopHighlightBackground": "Resaltado del color de fondo para una ficha de un fragmento de código.",
- "snippetTabstopHighlightBorder": "Resaltado del color del borde para una ficha de un fragmento de código.",
- "statusBarBackground": "Color de fondo de la barra de estado al mantener el puntero en el editor.",
- "tableColumnsBorder": "Color de borde de la tabla entre columnas.",
- "tableOddRowsBackgroundColor": "Color de fondo para las filas de tabla impares.",
- "textBlockQuoteBackground": "Color de fondo para los bloques en texto.",
- "textBlockQuoteBorder": "Color de borde para los bloques en texto.",
- "textCodeBlockBackground": "Color de fondo para los bloques de código en el texto.",
- "textLinkActiveForeground": "Color de primer plano para los enlaces de texto, al hacer clic o pasar el mouse sobre ellos.",
- "textLinkForeground": "Color de primer plano para los vínculos en el texto.",
- "textPreformatForeground": "Color de primer plano para los segmentos de texto con formato previo.",
- "textSeparatorForeground": "Color para los separadores de texto.",
- "toolbarActiveBackground": "Fondo de la barra de herramientas al mantener el mouse sobre las acciones",
- "toolbarHoverBackground": "El fondo de la barra de herramientas se perfila al pasar por encima de las acciones con el mouse.",
- "toolbarHoverOutline": "La barra de herramientas se perfila al pasar por encima de las acciones con el mouse.",
- "treeIndentGuidesStroke": "Color de trazo de árbol para las guías de sangría.",
- "warningBorder": "Color del borde de los cuadros de advertencia en el editor.",
- "widgetShadow": "Color de sombra de los widgets dentro del editor, como buscar/reemplazar"
+ "searchEditor.queryMatch": "Color de las consultas coincidentes del Editor de búsqueda."
+ },
+ "vs/platform/theme/common/colorUtils": {
+ "transparecyRequired": "Este color debe ser transparente u ocultará el contenido",
+ "useDefault": "Use el color predeterminado."
},
"vs/platform/theme/common/iconRegistry": {
"iconDefinition.fontCharacter": "Carácter de fuente asociado a la definición del icono.",
"iconDefinition.fontId": "Identificador de la fuente que se va a usar. Si no se establece, se usa la fuente definida en primer lugar.",
"nextChangeIcon": "Icono para ir a la ubicación del editor siguiente.",
"previousChangeIcon": "Icono para ir a la ubicación del editor anterior.",
+ "schema.fontId.formatError": "El id. de fuente solo puede contener letras, números, guiones bajos y guiones.",
"widgetClose": "Icono de la acción de cierre en los widgets."
},
"vs/platform/theme/common/tokenClassificationRegistry": {
@@ -2102,7 +3043,7 @@
"operator": "Estilo para operadores.",
"parameter": "Estilo de parámetros.",
"property": "Estilo de propiedades.",
- "readonly": "Estilo que se usará para los símbolos que son de solo lectura.",
+ "readonly": "Estilo que se va a usar para los símbolos que son de solo lectura.",
"regexp": "Estilo para expresiones.",
"schema.fontStyle.error": "El estilo de fuente debe ser \"cursiva\", \"negrita\", \"subrayado\", \"tachado\" o una combinación. La cadena vacía anula todos los estilos.",
"schema.token.background.warning": "En este momento los colores de fondo para Token no están soportados.",
@@ -2122,7 +3063,6 @@
"variable": "Estilo de variables."
},
"vs/platform/undoRedo/common/undoRedoService": {
- "cancel": "Cancelar",
"cannotResourceRedoDueToInProgressUndoRedo": "No se pudo rehacer \"{0}\" porque ya hay una operación de deshacer o rehacer en ejecución.",
"cannotResourceUndoDueToInProgressUndoRedo": "No se pudo deshacer \"{0}\" porque ya hay una operación de deshacer o rehacer en ejecución.",
"cannotWorkspaceRedo": "No se pudo rehacer \"{0}\" en todos los archivos. {1}",
@@ -2135,12 +3075,12 @@
"cannotWorkspaceUndoDueToInProgressUndoRedo": "No se pudo deshacer \"{0}\" en todos los archivos porque ya hay una operación de deshacer o rehacer en ejecución en {1}",
"confirmDifferentSource": "¿Quiere deshacer \"{0}\"?",
"confirmDifferentSource.no": "No",
- "confirmDifferentSource.yes": "Sí",
+ "confirmDifferentSource.yes": "&&Sí",
"confirmWorkspace": "¿Desea deshacer \"{0}\" en todos los archivos?",
"externalRemoval": "Se han cerrado los siguientes archivos y se han modificado en el disco: {0}.",
"noParallelUniverses": "Los siguientes archivos se han modificado de forma incompatible: {0}.",
- "nok": "Deshacer este archivo",
- "ok": "Deshacer en {0} archivos"
+ "nok": "Deshacer este &&archivo",
+ "ok": "&&Deshacer en {0} archivos"
},
"vs/platform/update/common/update.config.contribution": {
"default": "Habilitar la comprobación automática de actualizaciones. El código comprobará las actualizaciones automática y periódicamente.",
@@ -2181,22 +3121,36 @@
"settingsSync.ignoredSettings": "Configure los ajustes que se omitirán durante la sincronización.",
"settingsSync.keybindingsPerPlatform": "Sincronice los enlaces de teclado para cada plataforma."
},
+ "vs/platform/userDataSync/common/userDataSyncLog": {
+ "userDataSyncLog": "Sincronización de configuración"
+ },
"vs/platform/userDataSync/common/userDataSyncMachines": {
"error incompatible": "No se pueden leer los datos de las máquinas, ya que la versión actual no es compatible. Actualice {0} e inténtelo de nuevo."
},
- "vs/platform/windows/electron-main/window": {
- "appCrashed": "La ventana se bloqueó",
- "appCrashedDetail": "Sentimos las molestias. Puede volver a abrir la ventana para continuar donde lo dejó.",
- "appCrashedDetails": "Se bloqueó la ventana (motivo: \"{0}\", código: \"{1}\")",
+ "vs/platform/userDataSync/common/userDataSyncResourceProvider": {
+ "incompatible sync data": "No se pueden analizar los datos de la sincronización porque no son compatibles con la versión actual."
+ },
+ "vs/platform/windows/electron-main/windowImpl": {
+ "appGone": "La ventana finalizó inesperadamente",
+ "appGoneDetailEmptyWindow": "Lamentamos las molestias. Puede abrir una nueva ventana vacía para volver a iniciarla.",
+ "appGoneDetailWorkspace": "Sentimos las molestias. Puede volver a abrir la ventana para continuar donde lo dejó.",
+ "appGoneDetails": "La ventana finalizó inesperadamente (motivo: '{0}', código: '{1}')",
"appStalled": "La ventana no responde",
"appStalledDetail": "Puede volver a abrir la ventana, cerrarla o seguir esperando.",
"close": "&&Cerrar",
"doNotRestoreEditors": "No restaurar los editores",
"hiddenMenuBar": "Aún puede acceder a la barra de menús presionando la tecla Alt.",
+ "newWindow": "&&Nueva ventana",
"reopen": "&&Volver a abrir",
"wait": "&&Continuar esperando"
},
"vs/platform/windows/electron-main/windowsMainService": {
+ "allow": "&&Permitir",
+ "cancel": "&&Cancelar",
+ "confirmOpenDetail": "La ruta de acceso ''{0}'' usa un host que no está permitido. A menos que confíe en el host, debe presionar \"Cancelar\".",
+ "confirmOpenMessage": "No se encontró el host ''{0}'' en la lista de hosts permitidos. ¿Desea permitirlo de todos modos?",
+ "doNotAskAgain": "Permitir permanentemente \"{0}\" de host",
+ "learnMore": "&&Más información",
"ok": "&&ACEPTAR",
"pathNotExistDetail": "La ruta de acceso \"{0}\" no existe en este equipo.",
"pathNotExistTitle": "La ruta no existe",
@@ -2206,11 +3160,11 @@
"vs/platform/workspace/common/workspace": {
"codeWorkspace": "Área de trabajo de código"
},
- "vs/platform/workspace/common/workspaceTrust": {
- "trusted": "De confianza",
- "untrusted": "Modo restringido"
- },
"vs/platform/workspaces/electron-main/workspacesHistoryMainService": {
+ "cancel": "&&Cancelar",
+ "clearButtonLabel": "&&Borrar",
+ "confirmClearDetail": "Esta acción es irreversible.",
+ "confirmClearRecentsMessage": "¿Desea borrar todos los archivos y áreas de trabajo abiertos recientemente?",
"newWindow": "Nueva ventana",
"newWindowDesc": "Abre una ventana nueva",
"recentFolders": "Carpetas recientes",
@@ -2223,6 +3177,28 @@
"workspaceOpenedDetail": "El área de trabajo ya está abierta en otra ventana. Por favor, cierre primero la ventana y vuelta a intentarlo de nuevo.",
"workspaceOpenedMessage": "No se puede guardar el área de trabajo '{0}'"
},
+ "vs/server/node/remoteExtensionHostAgentCli": {
+ "remotecli": "CLI remota"
+ },
+ "vs/server/node/serverEnvironmentService": {
+ "acceptLicenseTerms": "Si se establece, el usuario acepta los términos de licencia del servidor y el servidor se iniciará sin que el usuario lo solicite.",
+ "connection-token": "Secreto que se debe incluir con todas las solicitudes.",
+ "connection-token-file": "Ruta de acceso a un archivo que contiene el token de conexión.",
+ "default-folder": "Carpeta del área de trabajo que se va a abrir cuando no se especifica ninguna entrada en la dirección URL del explorador. Ruta de acceso relativa o absoluta resuelta en el directorio de trabajo actual.",
+ "default-workspace": "Área de trabajo que se va a abrir cuando no se especifica ninguna entrada en la dirección URL del explorador. Ruta de acceso relativa o absoluta resuelta en el directorio de trabajo actual.",
+ "host": "Nombre de host o dirección IP que el servidor debe escuchar. Si no se establece, el valor predeterminado es \"localhost\".",
+ "port": "Puerto que el servidor debe escuchar. Si se pasa 0, se selecciona un puerto libre aleatorio. Si se pasa un intervalo con el formato num-num, se selecciona un puerto libre del intervalo (extremo inclusivo).",
+ "reconnection-grace-time": "Anular la ventana de período de gracia para la reconexión en segundos. El valor predeterminado es 10 800 (3 horas).",
+ "server-base-path": "Ruta de acceso en la que se proporcionan la interfaz de usuario web y el servidor de código. Tiene como valor predeterminado \"/\".`",
+ "serverDataDir": "Especifica el directorio en el que se mantienen los datos del servidor.",
+ "socket-path": "Ruta de acceso a un archivo de socket para el servidor escuche.",
+ "start-server": "Inicie el servidor al instalar o desinstalar extensiones. Se usará en combinación con \"install-extension\", \"install-builtin-extension\" y \"uninstall-extension\".",
+ "telemetry-level": "Establece el nivel de telemetría inicial. Los niveles válidos son: \"off\", \"crash\", \"error\" y \"all\". Si no se especifica, el servidor enviará datos de telemetría hasta que un cliente se conecte y, a continuación, usará la configuración de telemetría de los clientes. Establecer esta opción en \"off\" equivale a --disable-telemetry",
+ "without-connection-token": "Ejecutar sin un token de conexión. Use esta opción solo si la conexión está protegida por otros medios."
+ },
+ "vs/server/node/serverServices": {
+ "remoteExtensionLog": "Servidor"
+ },
"win32/i18n/messages": {
"AddContextMenuFiles": "Agregar la acción \"Abrir con %1\" al menú contextual de archivo del Explorador de Windows",
"AddContextMenuFolders": "Agregar la acción \"Abrir con %1\" al menú contextual de directorio del Explorador de Windows",
@@ -2236,369 +3212,67 @@
"OpenWithCodeContextMenu": "Abrir &con %1",
"Other": "Otros:",
"RunAfter": "Ejecutar %1 después de la instalación",
- "SourceFile": "Archivo de origen %1"
- },
- "readme.md": {
- "LanguagePackTitle": "El paquete de idioma proporciona una experiencia de interfaz de usuario localizada para VS Code.",
- "Usage": "Uso",
- "displayLanguage": "Puede invalidar el idioma predeterminado de la interfaz de usuario si establece explícitamente el idioma de VS Code con el comando \"Configure Display Language\".",
- "Command Palette": "Presione \"Ctrl+Mayús+P\" para que aparezca la instancia de \"Paleta de comandos\" y empiece a escribir \"display\" para filtrar y mostrar el comando \"Configure Display Language\".",
- "ShowLocale": "Presione \"Entrar\" y se mostrará una lista de los idiomas instalados por configuración regional, con la actual resaltada.",
- "SwtichUI": "Seleccione otra \"configuración regional\" para cambiar el idioma de la interfaz de usuario.",
- "DocLink": "Consulte \"Docs\" para obtener más información.",
- "Contributing": "Colaboración",
- "Feedback": "Para obtener información sobre la mejora de traducción, cree una incidencia en el repositorio \"vscode-loc\".",
- "LocPlatform": "Las cadenas de traducción se mantienen en la plataforma de localización de Microsoft. Solo pueden realizarse cambios en dicha plataforma y, después, exportarlos al repositorio vscode-loc, por lo que no se aceptarán solicitudes de incorporación de cambios \"pull request\" en ese repositorio.",
- "LicenseTitle": "Licencia",
- "LicenseMessage": "El código fuente y las cadenas están incluidas bajo licencia \"MIT\".",
- "Credits": "Créditos",
- "Contributed": "Se ha colaborado en este paquete de idioma a través del trabajo comunitario de localización \"By the community, for the community\". Un agradecimiento especial a los colaboradores de la comunidad por ponerlo a disposición de los usuarios.",
- "TopContributors": "Colaboradores principales:",
- "Contributors": "Colaboradores:",
- "EnjoyLanguagePack": "Disfrútelo"
- },
- "win32/i18n/Default": {
- "SetupAppTitle": "Programa de instalación",
- "SetupWindowTitle": "Instalación: %1",
- "UninstallAppTitle": "Desinstalar",
- "UninstallAppFullTitle": "Desinstalación de %1",
- "InformationTitle": "Información",
- "ConfirmTitle": "Confirmar",
- "ErrorTitle": "Error",
- "SetupLdrStartupMessage": "Esto instalará %1. ¿Quiere continuar?",
- "LdrCannotCreateTemp": "No se puede crear un archivo temporal. Instalación anulada.",
- "LdrCannotExecTemp": "No se puede ejecutar un archivo en el directorio temporal. Instalación anulada.",
- "LastErrorMessage": "%1.%n%nError %2: %3",
- "SetupFileMissing": "El archivo %1 no está en el directorio de instalación. Solucione el problema u obtenga una nueva copia del programa.",
- "SetupFileCorrupt": "Los archivos de instalación están dañados. Obtenga una nueva copia del programa.",
- "SetupFileCorruptOrWrongVer": "Los archivos de instalación están dañados o no son compatibles con esta versión del programa de instalación. Solucione el problema u obtenga una nueva copia del programa.",
- "InvalidParameter": "Se pasó un parámetro no válido en la línea de comandos:%n%n%1",
- "SetupAlreadyRunning": "El programa de instalación ya se está ejecutando.",
- "WindowsVersionNotSupported": "Este programa no es compatible con la versión de Windows del equipo.",
- "WindowsServicePackRequired": "Este programa requiere %1 Service Pack %2 o posterior.",
- "NotOnThisPlatform": "El programa no se ejecutará en %1.",
- "OnlyOnThisPlatform": "El programa debe ejecutarse en %1.",
- "OnlyOnTheseArchitectures": "El programa solo se puede instalar en versiones de Windows diseñadas para las arquitecturas de procesador siguientes:%n%n%1",
- "MissingWOW64APIs": "La versión de Windows que usa no incluye la funcionalidad que el programa de instalación requiere para realizar una instalación de 64 bits. Para solucionar este problema, instale el Service Pack %1.",
- "WinVersionTooLowError": "Este programa requiere %1 versión %2 o posterior.",
- "WinVersionTooHighError": "Este programa no se puede instalar en %1 versión %2 o posterior.",
- "AdminPrivilegesRequired": "Cuando instale este programa, debe haber iniciado sesión como administrador.",
- "PowerUserPrivilegesRequired": "Debe haber iniciado sesión como administrador o como miembro del grupo Usuarios avanzados al instalar este programa.",
- "SetupAppRunningError": "El programa de instalación ha detectado que %1 está actualmente en ejecución.%n%nCierre todas las instancias abiertas y haga clic en Aceptar para continuar o en Cancelar para salir.",
- "UninstallAppRunningError": "El programa de desinstalación ha detectado que %1 está actualmente en ejecución.%n%nCierre todas las instancias abiertas y haga clic en Aceptar para continuar o en Cancelar para salir.",
- "ErrorCreatingDir": "El programa de instalación no pudo crear el directorio \"%1\"",
- "ErrorTooManyFilesInDir": "No se puede crear un archivo en el directorio \"%1\" porque contiene demasiados archivos",
- "ExitSetupTitle": "Salir de la instalación",
- "ExitSetupMessage": "La instalación no se ha completado. Si sale ahora, el programa no se instalará.%n%nPara completar la instalación, puede volver a ejecutar el programa de instalación en otro momento.%n%n¿Quiere salir del programa de instalación?",
- "AboutSetupMenuItem": "&Acerca de la instalación...",
- "AboutSetupTitle": "Acerca de la instalación",
- "AboutSetupMessage": "%1 versión %2%n%3%n%n%1 página principal:%n%4",
- "ButtonBack": "< &Atrás",
- "ButtonNext": "&Siguiente >",
- "ButtonInstall": "&Instalar",
- "ButtonOK": "Aceptar",
- "ButtonCancel": "Cancelar",
- "ButtonYes": "&Sí",
- "ButtonYesToAll": "Sí a &todo",
- "ButtonNo": "&No",
- "ButtonNoToAll": "N&o a todo",
- "ButtonFinish": "&Finalizar",
- "ButtonBrowse": "&Examinar...",
- "ButtonWizardBrowse": "E&xaminar...",
- "ButtonNewFolder": "&Crear nueva carpeta",
- "SelectLanguageTitle": "Seleccionar idioma de instalación",
- "SelectLanguageLabel": "Seleccione el idioma que se va a usar durante la instalación:",
- "ClickNext": "Haga clic en Siguiente para continuar o en Cancelar para salir del programa de instalación.",
- "BrowseDialogTitle": "Buscar carpeta",
- "BrowseDialogLabel": "Seleccione una carpeta de la lista siguiente y haga clic en Aceptar.",
- "NewFolderName": "Nueva carpeta",
- "WelcomeLabel1": "Asistente para instalación de [nombre]",
- "WelcomeLabel2": "Esto instalará [nombre/ver] en el equipo.%n%nSe recomienda que cierre el resto de aplicaciones antes de continuar.",
- "WizardPassword": "Contraseña",
- "PasswordLabel1": "La instalación está protegida por contraseña.",
- "PasswordLabel3": "Proporcione la contraseña y haga clic en Siguiente para continuar. Las contraseñas distinguen entre mayúsculas y minúsculas.",
- "PasswordEditLabel": "&Contraseña:",
- "IncorrectPassword": "La contraseña especificada no es correcta. Vuelva a intentarlo.",
- "WizardLicense": "Contrato de licencia",
- "LicenseLabel": "Lea la siguiente información importante antes de continuar.",
- "LicenseLabel3": "Lea el siguiente Contrato de licencia. Para continuar con la instalación, debe aceptar los términos de este contrato.",
- "LicenseAccepted": "&Acepto el contrato",
- "LicenseNotAccepted": "&No acepto el contrato",
- "WizardInfoBefore": "Información",
- "InfoBeforeLabel": "Lea la siguiente información importante antes de continuar.",
- "InfoBeforeClickLabel": "Cuando esté listo para continuar con la instalación, haga clic en Siguiente.",
- "WizardInfoAfter": "Información",
- "InfoAfterLabel": "Lea la siguiente información importante antes de continuar.",
- "InfoAfterClickLabel": "Cuando esté listo para continuar con la instalación, haga clic en Siguiente.",
- "WizardUserInfo": "Información del usuario",
- "UserInfoDesc": "Escriba sus datos personales.",
- "UserInfoName": "&Nombre de usuario:",
- "UserInfoOrg": "&Organización:",
- "UserInfoSerial": "&Número de serie:",
- "UserInfoNameRequired": "Debe especificar un nombre.",
- "WizardSelectDir": "Seleccionar ubicación de destino",
- "SelectDirDesc": "¿Dónde debe instalarse [nombre]?",
- "SelectDirLabel3": "El programa de instalación instalará [nombre] en la carpeta siguiente.",
- "SelectDirBrowseLabel": "Para continuar, haga clic en Siguiente. Si desea seleccionar una carpeta diferente, haga clic en Examinar.",
- "DiskSpaceMBLabel": "Se requieren al menos [mb] MB de espacio libre en disco.",
- "CannotInstallToNetworkDrive": "El programa de instalación no puede instalar en una unidad de red.",
- "CannotInstallToUNCPath": "El programa de instalación no puede instalar en una ruta de acceso UNC.",
- "InvalidPath": "Debe especificar una ruta completa con la letra de la unidad; por ejemplo:%n%nC:\\APP%n%n o una ruta UNC de la forma:%n%n\\\\server\\share",
- "InvalidDrive": "El recurso compartido de unidad o UNC que ha seleccionado no existe o no está accesible. Seleccione otro.",
- "DiskSpaceWarningTitle": "No hay espacio en disco suficiente",
- "DiskSpaceWarning": "El programa de instalación requiere al menos %1 KB de espacio libre en disco para instalar, pero la unidad seleccionada solo tiene %2 KB disponibles.%n%n¿Quiere continuar de todas formas?",
- "DirNameTooLong": "El nombre o la ruta de la carpeta son demasiado largos.",
- "InvalidDirName": "El nombre de la carpeta no es válido.",
- "BadDirName32": "Los nombres de carpeta no pueden incluir ninguno de los caracteres siguientes: %n%n%1",
- "DirExistsTitle": "La carpeta existe",
- "DirExists": "La carpeta:%n%n%1%n%nya existe. ¿Quiere instalar en esa carpeta de todas formas?",
- "DirDoesntExistTitle": "La carpeta no existe",
- "DirDoesntExist": "La carpeta:%n%n%1%n%nno existe. ¿Quiere que se cree la carpeta?",
- "WizardSelectComponents": "Seleccionar componentes",
- "SelectComponentsDesc": "¿Qué componentes deben instalarse?",
- "SelectComponentsLabel2": "Seleccione los componentes que quiere instalar y desactive la casilla de los que no quiere. Haga clic en Siguiente cuando esté listo para continuar.",
- "FullInstallation": "Instalación completa",
- "CompactInstallation": "Instalación compacta",
- "CustomInstallation": "Instalación personalizada",
- "NoUninstallWarningTitle": "Los componentes existen",
- "NoUninstallWarning": "El programa de instalación ha detectado que los componentes siguientes ya están instalados en el equipo:%n%n%1%n%nAnular la selección de estos componentes no los desinstalará.%n%n¿Quiere continuar de todas formas?",
- "ComponentSize1": "%1 KB",
- "ComponentSize2": "%1 MB",
- "ComponentsDiskSpaceMBLabel": "La selección actual requiere al menos [mb] MB de espacio en disco.",
- "WizardSelectTasks": "Seleccionar tareas adicionales",
- "SelectTasksDesc": "¿Qué tareas adicionales deben realizarse?",
- "SelectTasksLabel2": "Seleccione las tareas adicionales que quiere que se realicen durante la instalación de [nombre] y haga clic en Siguiente.",
- "WizardSelectProgramGroup": "Seleccionar carpeta del menú Inicio",
- "SelectStartMenuFolderDesc": "¿Dónde debe colocar el programa de instalación los accesos directos del programa?",
- "SelectStartMenuFolderLabel3": "El programa de instalación creará los accesos directos del programa en la carpeta siguiente del menú Inicio.",
- "SelectStartMenuFolderBrowseLabel": "Para continuar, haga clic en Siguiente. Si desea seleccionar una carpeta diferente, haga clic en Examinar.",
- "MustEnterGroupName": "Debe escribir un nombre de carpeta.",
- "GroupNameTooLong": "El nombre o la ruta de la carpeta son demasiado largos.",
- "InvalidGroupName": "El nombre de la carpeta no es válido.",
- "BadGroupName": "El nombre de carpeta no puede incluir ninguno de los caracteres siguientes:%n%n%1",
- "NoProgramGroupCheck2": "&No crear una carpeta del menú Inicio",
- "WizardReady": "Listo para instalar",
- "ReadyLabel1": "El programa de instalación está listo para empezar a instalar [nombre] en el equipo.",
- "ReadyLabel2a": "Haga clic en Instalar para continuar con la instalación o en Atrás si quiere revisar o cambiar cualquier ajuste.",
- "ReadyLabel2b": "Haga clic en Instalar para continuar con la instalación.",
- "ReadyMemoUserInfo": "Información del usuario:",
- "ReadyMemoDir": "Ubicación de destino:",
- "ReadyMemoType": "Tipo de instalación:",
- "ReadyMemoComponents": "Componentes seleccionados:",
- "ReadyMemoGroup": "Carpeta del menú Inicio:",
- "ReadyMemoTasks": "Tareas adicionales:",
- "WizardPreparing": "Preparando la instalación",
- "PreparingDesc": "El programa de instalación está preparando la instalación de [nombre] en el equipo.",
- "PreviousInstallNotCompleted": "La instalación o la eliminación de un programa anterior no se han completado. Para completar esta tarea, es necesario reiniciar el equipo.%n%nDespués de reiniciar, vuelva a ejecutar el programa de instalación para completar la instalación de [nombre].",
- "CannotContinue": "El programa de instalación no puede continuar. Haga clic en Cancelar para salir.",
- "ApplicationsFound": "Las aplicaciones siguientes usan archivos que el programa de instalación debe actualizar. Se recomienda permitir a dicho programa que cierre estas aplicaciones automáticamente.",
- "ApplicationsFound2": "Las aplicaciones siguientes usan archivos que el programa de instalación debe actualizar. Se recomienda permitir a dicho programa que cierre estas aplicaciones automáticamente. Una vez completada la instalación, el programa de instalación intentará reiniciar las aplicaciones.",
- "CloseApplications": "&Cerrar las aplicaciones automáticamente",
- "DontCloseApplications": "&No cerrar las aplicaciones",
- "ErrorCloseApplications": "El programa de instalación no puede cerrar todas las aplicaciones automáticamente. Se recomienda cerrar todas las aplicaciones que usan archivos que el programa de instalación debe actualizar antes de continuar.",
- "WizardInstalling": "Instalando",
- "InstallingLabel": "Espere mientras el programa de instalación instala [nombre] en el equipo.",
- "FinishedHeadingLabel": "Completando el Asistente para instalación de [nombre]",
- "FinishedLabelNoIcons": "El programa de instalación terminó de instalar [nombre] en el equipo.",
- "FinishedLabel": "El programa de instalación ha terminado de instalar [name] en su computadora. La aplicación puede iniciarse seleccionando los iconos instalados.",
- "ClickFinish": "Haga clic en Finalizar para salir del programa de configuración.",
- "FinishedRestartLabel": "El programa de instalación debe reiniciar el equipo para poder completar la instalación de [nombre]. ¿Quiere reiniciarlo ahora?",
- "FinishedRestartMessage": "El programa de instalación debe reiniciar el equipo para poder completar la instalación de [nombre].%n%n¿Quiere reiniciarlo ahora?",
- "ShowReadmeCheck": "Sí, quiero ver el archivo LÉAME",
- "YesRadio": "&Sí, reiniciar el equipo ahora",
- "NoRadio": "&No, reiniciaré el equipo más tarde",
- "RunEntryExec": "Ejecutar %1",
- "RunEntryShellExec": "Ver %1",
- "ChangeDiskTitle": "El programa de instalación necesita el disco siguiente",
- "SelectDiskLabel2": "Inserte el disco %1 y haga clic en Aceptar.%n%nSi los archivos del disco se encuentran en una carpeta distinta a la que aparece a continuación, especifique la ruta de acceso correcta o haga clic en Examinar.",
- "PathLabel": "&Ruta de acceso:",
- "FileNotInDir2": "El archivo \"%1\" no se encontró en \"%2\". Inserte el disco correcto o seleccione otra carpeta.",
- "SelectDirectoryLabel": "Especifique la ubicación del disco siguiente.",
- "SetupAborted": "El programa de instalación no se completó.%n%nSolucione el problema y vuelva a ejecutar dicho programa.",
- "EntryAbortRetryIgnore": "Haga clic en Reintentar para volver a intentarlo, en Ignorar para continuar de todas formas o en Anular para cancelar la instalación.",
- "StatusClosingApplications": "Cerrando aplicaciones...",
- "StatusCreateDirs": "Creando directorios...",
- "StatusExtractFiles": "Extrayendo archivos...",
- "StatusCreateIcons": "Creando accesos directos...",
- "StatusCreateIniEntries": "Creando entradas INI...",
- "StatusCreateRegistryEntries": "Creando entradas del Registro...",
- "StatusRegisterFiles": "Registrando archivos...",
- "StatusSavingUninstall": "Guardando información de desinstalación...",
- "StatusRunProgram": "Finalizando instalación...",
- "StatusRestartingApplications": "Reiniciando aplicaciones...",
- "StatusRollback": "Revirtiendo cambios...",
- "ErrorInternal2": "Error interno: %1",
- "ErrorFunctionFailedNoCode": "Error de %1",
- "ErrorFunctionFailed": "Error de %1; código %2",
- "ErrorFunctionFailedWithMessage": "Error de %1; código %2.%n%3",
- "ErrorExecutingProgram": "No se puede ejecutar el archivo:%n%1",
- "ErrorRegOpenKey": "Error al abrir la clave del Registro:%n%1\\%2",
- "ErrorRegCreateKey": "Error al crear la clave del Registro:%n%1\\%2",
- "ErrorRegWriteKey": "Error al escribir en la clave de Registro:%n%1\\%2",
- "ErrorIniEntry": "Error al crear una entrada INI en el archivo \"%1\".",
- "FileAbortRetryIgnore": "Haga clic en Reintentar para volver a intentarlo, en Ignorar para omitir este archivo (no se recomienda) o en Anular para cancelar la instalación.",
- "FileAbortRetryIgnore2": "Haga clic en Reintentar para volver a intentarlo, en Ignorar para seguir de todas formas (no se recomienda) o en Anular para cancelar la instalación.",
- "SourceIsCorrupted": "El archivo de origen está dañado.",
- "SourceDoesntExist": "El archivo de origen \"%1\" no existe.",
- "ExistingFileReadOnly": "El archivo existente está marcado como de solo lectura.%n%nHaga clic en Reintentar para quitar el atributo de solo lectura y volver a intentarlo, en Ignorar para omitir este archivo o en Anular para cancelar la instalación.",
- "ErrorReadingExistingDest": "Error al intentar leer el archivo existente:",
- "FileExists": "El archivo ya existe.%n%n¿Quiere que el programa de instalación lo sobrescriba?",
- "ExistingFileNewer": "El archivo existente es más reciente que el que intenta instalar el programa de instalación y se recomienda conservarlo.%n%n¿Quiere conservar el archivo existente?",
- "ErrorChangingAttr": "Error al intentar cambiar los atributos del archivo existente:",
- "ErrorCreatingTemp": "Error al intentar crear un archivo en el directorio de destino:",
- "ErrorReadingSource": "Error al intentar leer el archivo de origen:",
- "ErrorCopying": "Error al intentar copiar un archivo:",
- "ErrorReplacingExistingFile": "Error al intentar reemplazar el archivo existente:",
- "ErrorRestartReplace": "Error de RestartReplace:",
- "ErrorRenamingTemp": "Error al intentar cambiar un archivo de nombre en el directorio de destino:",
- "ErrorRegisterServer": "No se puede registrar el archivo DLL/OCX: %1",
- "ErrorRegSvr32Failed": "Error de RegSvr32 con el código de salida %1",
- "ErrorRegisterTypeLib": "No se puede registrar la biblioteca de tipos: %1",
- "ErrorOpeningReadme": "Error al intentar abrir el archivo LÉAME.",
- "ErrorRestartingComputer": "El programa de instalación no puede reiniciar el equipo. Realice esta tarea manualmente.",
- "UninstallNotFound": "El archivo \"%1\" no existe. No se puede desinstalar.",
- "UninstallOpenError": "El archivo \"%1\" no se puede abrir. No se puede desinstalar.",
- "UninstallUnsupportedVer": "El archivo de registro \"%1\" de la desinstalación tiene un formato que esta versión del desinstalador no reconoce. No se puede desinstalar.",
- "UninstallUnknownEntry": "Se encontró una entrada desconocida (%1) en el registro de desinstalación.",
- "ConfirmUninstall": "¿Está seguro de que desea eliminar completamente %1? Las extensiones y configuraciones no se eliminarán.",
- "UninstallOnlyOnWin64": "La instalación solo puede desinstalarse en Windows de 64 bits.",
- "OnlyAdminCanUninstall": "Solo un usuario con privilegios administrativos puede desinstalar la instalación.",
- "UninstallStatusLabel": "Espere mientras %1 se quita del equipo.",
- "UninstalledAll": "%1 se quitó correctamente del equipo.",
- "UninstalledMost": "Desinstalación de %1 completa.%n%nAlgunos elementos no se pudieron quitar. Puede quitarlos de forma manual.",
- "UninstalledAndNeedsRestart": "Para completar la desinstalación de %1, es necesario reiniciar el equipo.%n%n¿Quiere reiniciar ahora?",
- "UninstallDataCorrupted": "El archivo \"%1\" está dañado. No se puede desinstalar",
- "ConfirmDeleteSharedFileTitle": "¿Quitar el archivo compartido?",
- "ConfirmDeleteSharedFile2": "El sistema indica que ningún programa usa actualmente el siguiente archivo compartido. ¿Quiere que el programa de desinstalación lo elimine?%n%nSi algún programa usa el archivo y este se elimina, puede que dicho programa no funcione correctamente. Si no está seguro, elija No. Dejar el archivo en el sistema no causará ningún daño.",
- "SharedFileNameLabel": "Nombre de archivo:",
- "SharedFileLocationLabel": "Ubicación:",
- "WizardUninstalling": "Estado de desinstalación",
- "StatusUninstalling": "Desinstalando %1...",
- "ShutdownBlockReasonInstallingApp": "Instalando %1.",
- "ShutdownBlockReasonUninstallingApp": "Desinstalando %1.",
- "NameAndVersion": "%1 versión %2",
- "AdditionalIcons": "Iconos adicionales:",
- "CreateDesktopIcon": "Crear un icono de &escritorio",
- "CreateQuickLaunchIcon": "Crear un &icono de inicio rápido",
- "ProgramOnTheWeb": "%1 en la Web",
- "UninstallProgram": "Desinstalar %1",
- "LaunchProgram": "Iniciar %1",
- "AssocFileExtension": "&Asociar %1 a la extensión de archivo %2",
- "AssocingFileExtension": "Asociando %1 a la extensión de archivo %2...",
- "AutoStartProgramGroupDescription": "Inicio:",
- "AutoStartProgram": "Iniciar %1 automáticamente",
- "AddonHostProgramNotFound": "%1 no se encontró en la carpeta seleccionada.%n%n¿Quiere continuar de todas formas?"
- },
- "vscode/vscode/": {
- "FinishedLabel": "El programa de instalación ha terminado de instalar [nombre] en el equipo. La aplicación puede iniciarse mediante la selección de los accesos directos instalados.",
- "ConfirmUninstall": "¿Seguro que quiere quitar %1 y todos sus componentes por completo?",
- "AdditionalIcons": "Iconos adicionales:",
- "CreateDesktopIcon": "Crear un icono de &escritorio",
- "CreateQuickLaunchIcon": "Crear un &icono de inicio rápido",
- "AddContextMenuFiles": "Agregar la acción \"Abrir con %1\" al menú contextual de archivo del Explorador de Windows",
- "AddContextMenuFolders": "Agregar la acción \"Abrir con %1\" al menú contextual de directorio del Explorador de Windows",
- "AssociateWithFiles": "Registrar %1 como editor para tipos de archivo admitidos",
- "AddToPath": "Agregar a PATH (requiere reinicio del shell)",
- "RunAfter": "Ejecutar %1 después de la instalación",
- "Other": "Otros:",
"SourceFile": "Archivo de origen %1",
- "OpenWithCodeContextMenu": "Abrir &con %1"
+ "UpdatingVisualStudioCode": "Actualizando Visual Studio Code..."
},
"vs/code/electron-main/app": {
"cancel": "&&No",
"confirmOpenDetail": "Si no ha iniciado esta solicitud, puede tratarse de un intento de ataque a su sistema. A menos que haya realizado una acción explícita para iniciar esta solicitud, debe presionar \"No\".",
- "confirmOpenMessage": "Una aplicación externa quiere abrir \"{0}\" en {1}. ¿Quiere abrir este archivo o carpeta?",
- "open": "&&SÍ",
- "trace.detail": "Cree una incidencia y adjunte manualmente el archivo siguiente:\r\n{0}",
- "trace.message": "Rastro creado correctamente.",
- "trace.ok": "&&ACEPTAR"
+ "confirmOpenMessageFileOrFolder": "Una aplicación externa quiere abrir \"{0}\" en {1}. ¿Quiere abrir este archivo o carpeta?",
+ "confirmOpenMessageFolder": "Una aplicación externa quiere abrir \"{0}\" en {1}. ¿Desea abrir esta carpeta?",
+ "confirmOpenMessageWorkspace": "Una aplicación externa quiere abrir \"{0}\" en {1}. ¿Desea abrir este archivo del área de trabajo?",
+ "doNotAskAgainLocal": "Permitir abrir rutas de acceso locales sin preguntar",
+ "doNotAskAgainRemote": "Permitir abrir rutas de acceso remotas sin preguntar",
+ "open": "&&SÍ"
},
"vs/code/electron-main/main": {
"close": "&&Cerrar",
- "secondInstanceAdmin": "Ya se está ejecutando una segunda instancia de {0} como administrador.",
+ "mainLog": "Principal",
+ "secondInstanceAdmin": "Ya se está ejecutando como administrador otra instancia de {0}.",
"secondInstanceAdminDetail": "Cierre la otra instancia y vuelva a intentarlo.",
"secondInstanceNoResponse": "Se está ejecutando otra instancia de {0} pero no responde",
"secondInstanceNoResponseDetail": "Cierre todas las demás instancias y vuelva a intentarlo.",
"startupDataDirError": "No se pueden escribir datos de usuario de programa.",
- "startupUserDataAndExtensionsDirErrorDetail": "{0}\r\n\r\nAsegúrese de que se puede escribir en los directorios siguientes:\r\n\r\n{1}"
- },
- "vs/code/electron-sandbox/issue/issueReporterMain": {
- "bugDescription": "Indique los pasos necesarios para reproducir el problema. Debe incluir el resultado real y el resultado esperado. Admitimos Markdown al estilo de GitHub. Podrá editar el problema y agregar capturas de pantalla cuando veamos una vista previa en GitHub.",
- "bugReporter": "Informe de errores",
- "closed": "Cerrado",
- "createOnGitHub": "Crear en GitHub",
- "description": "Descripción",
- "disabledExtensions": "Las extensiones están deshabilitadas",
- "extension": "Una extensión",
- "featureRequest": "Solicitud de característica",
- "featureRequestDescription": "Describa la característica que le gustaría ver. Admitimos Markdown al estilo de GitHub. Podrá editar esta información y agregar capturas de pantalla cuando veamos una vista previa en GitHub.",
- "hide": "ocultar",
- "loadingData": "Cargando datos...",
- "marketplace": "Marketplace de extensiones",
- "noCurrentExperiments": "No hay experimentos en curso.",
- "noSimilarIssues": "No se han encontrado problemas similares",
- "open": "Abrir",
- "pasteData": "Hemos escrito los datos necesarios en su Portapapeles porque eran demasiado grandes para enviarlos. Ahora debe pegarlos.",
- "performanceIssue": "Problema de rendimiento",
- "performanceIssueDesciption": "¿Cuándo ocurrió este problema de rendimiento? ¿Se produce al inicio o después de realizar una serie específica de acciones? Admitimos Markdown al estilo de GitHub. Podrá editar el problema y agregar capturas de pantalla cuando veamos una vista previa en GitHub.",
- "previewOnGitHub": "Vista previa en GitHub",
- "rateLimited": "Se superó el límite de consulta de GitHub. Espere.",
- "selectSource": "Seleccionar origen",
- "show": "mostrar",
- "similarIssues": "Problemas similares",
- "stepsToReproduce": "Pasos para reproducir",
- "unknown": "No sé",
- "vscode": "Visual Studio Code"
+ "startupUserDataAndExtensionsDirErrorDetail": "{0}\r\n\r\nAsegúrese de que se puede escribir en los directorios siguientes:\r\n\r\n{1}",
+ "statusWarning": "Advertencia: El argumento --estado solo puede utilizarse si {0} ya se está ejecutando. Ejecútelo de nuevo después de que {0} se haya iniciado."
},
- "vs/code/electron-sandbox/issue/issueReporterPage": {
- "chooseExtension": "Extensión",
- "completeInEnglish": "Complete el formulario en inglés.",
- "descriptionEmptyValidation": "Se requiere una descripción.",
- "details": "Especifique los detalles.",
- "disableExtensions": "Deshabilitar todas las extensiones y volver a cargar la ventana",
- "disableExtensionsLabelText": "Intente reproducir el problema después de {0}. Si el problema sólo se reproduce cuando las extensiones están activas, puede que haya un problema con una extensión.",
- "extensionWithNoBugsUrl": "El notificador de problemas no puede crear un informe para esta extensión, ya que no especifica una dirección URL para notificar problemas. Consulte la página del catálogo de esta extensión para ver si hay otras instrucciones disponibles.",
- "extensionWithNonstandardBugsUrl": "El notificador del problema no puede crear problemas para esta extensión. Visite {0} para informar de un problema.",
- "issueSourceEmptyValidation": "Se requiere un origen del problema.",
- "issueSourceLabel": "Archivo en",
- "issueTitleLabel": "Título",
- "issueTitleRequired": "Por favor, introduzca un título.",
- "issueTypeLabel": "Esto es un",
- "sendExperiments": "Incluir información del experimento A/B",
- "sendExtensions": "Incluir mis extensiones habilitadas",
- "sendProcessInfo": "Incluir mis procesos actualmente en ejecución",
- "sendSystemInfo": "Incluir mi información del sistema",
- "sendWorkspaceInfo": "Incluir los metadatos de mi área de trabajo",
- "show": "mostrar",
- "titleEmptyValidation": "Se requiere un título.",
- "titleLengthValidation": "El título es demasiado largo."
+ "vs/code/electron-utility/sharedProcess/sharedProcessMain": {
+ "networkk": "Red",
+ "sharedLog": "Compartido"
},
- "vs/code/electron-sandbox/processExplorer/processExplorerMain": {
- "copy": "Copiar",
- "copyAll": "Copiar todo",
- "cpu": "CPU (%)",
- "debug": "Depurar",
- "forceKillProcess": "Forzar la terminación del proceso",
- "killProcess": "Terminar proceso",
- "memory": "Memoria (MB)",
- "name": "Nombre del proceso",
- "pid": "PID"
+ "vs/code/node/cliProcessMain": {
+ "cli": "CLI"
},
"vs/workbench/api/browser/mainThreadAuthentication": {
- "accountLastUsedDate": "Último uso de esta cuenta {0}",
- "allow": "Permitir",
+ "addClientRegistrationDetails": "Agregar detalles de registro del cliente",
+ "allow": "&&Permitir",
"cancel": "Cancelar",
+ "clientIdPlaceholder": "Id. de cliente de OAuth (azye39d...)",
+ "clientIdPrompt": "Escriba un id. de cliente existente que se haya registrado con los siguientes URI de redireccionamiento: http://127.0.0.1:33418, https://vscode.dev/redirect",
+ "clientIdRequired": "El campo Id. de cliente es obligatorio",
+ "clientSecretPlaceholder": "Secreto de cliente de OAuth (wer32o50f...) o déjalo en blanco",
+ "clientSecretPrompt": "(opcional) Escriba un secreto de cliente existente asociado con el id. de cliente \"{0}\" o deje este campo en blanco",
"confirmLogin": "La extensión \"{0}\" desea iniciar sesión con {1}.",
"confirmRelogin": "La extensión \"{0}\" requiere que vuelva a iniciar sesión con {1}.",
- "manageExtensions": "Elija qué extensiones pueden acceder a esta cuenta",
- "manageTrustedExtensions": "Administrar extensiones de confianza",
- "manageTrustedExtensions.cancel": "Cancelar",
- "noTrustedExtensions": "Esta cuenta no se ha usado en ninguna extensión.",
- "notUsed": "No ha usado esta cuenta",
- "signOut": "Cerrar sesión",
- "signOutMessage": "La cuenta '{0}' ha sido utilizada por:\r\n\r\n{1}\r\n\r\n ¿Cerrar sesión en estas extensiones?",
- "signOutMessageSimple": "¿Cerrar la sesión de \"{0}\"?",
- "signedOut": "La sesión se ha cerrado correctamente."
+ "copyAndContinue": "Copiar y continuar",
+ "dcrCopyUrlsAndProceed": "Copiar URI y continuar",
+ "dcrFailedToCopy": "No se pudieron copiar los URI de redireccionamiento en el portapapeles.",
+ "dcrNotSupported": "No se admite el registro dinámico de clientes",
+ "dcrNotSupportedDetail": "El servidor de autorización \"{0}\" no admite el registro automático de clientes. ¿Desea continuar proporcionando manualmente un registro de cliente (id. de cliente)?\r\n\r\nNota: al registrar su aplicación de OAuth, asegúrese de incluir estas URI de redireccionamiento:\r\n{1}",
+ "deviceCodeDetail": "Su código: {0}\r\n\r\nPara completar la autenticación, vaya a {1} y escriba el código anterior.",
+ "deviceCodeTitle": "Autenticación de código de dispositivo",
+ "failedToOpenUri": "No se pudo abrir {0}",
+ "incorrectAccount": "Se detectó una cuenta incorrecta",
+ "incorrectAccountDetail": "La cuenta elegida, {0}, no coincide con la cuenta solicitada, {1}.",
+ "keep": "Mantener {0}",
+ "learnMore": "Más información",
+ "loginWith": "Iniciar sesión con {0}",
+ "no": "No",
+ "yes": "Sí"
+ },
+ "vs/workbench/api/browser/mainThreadChatSessions": {
+ "chatEditorContributionName": "{0}",
+ "interruptActiveResponse": "¿Está seguro de que quiere interrumpir la sesión activa?"
},
"vs/workbench/api/browser/mainThreadCLICommands": {
"cannot be installed": "No se puede instalar la extensión \"{0}\" porque se ha declarado que no se ejecute en este programa de instalación."
@@ -2607,7 +3281,11 @@
"commentsViewIcon": "Vea el icono de la vista de comentarios."
},
"vs/workbench/api/browser/mainThreadCustomEditors": {
- "defaultEditLabel": "Editar"
+ "defaultEditLabel": "Editar",
+ "vetoExtHostRestart": "Todavía hay abierto un editor de extensión proporcionado para '{0}' que se cerraría de lo contrario."
+ },
+ "vs/workbench/api/browser/mainThreadEditSessionIdentityParticipant": {
+ "timeout.onWillCreateEditSessionIdentity": "Se anuló el evento onWillCreateEditSessionIdentity después de 10000 ms"
},
"vs/workbench/api/browser/mainThreadExtensionService": {
"disabledDep": "No se puede activar la extensión '{0}' porque depende de la '{1}' extensión, que está deshabilitada. ¿Quieres activar la extensión y volver a cargar la ventana?",
@@ -2619,11 +3297,11 @@
"reload": "Recargar ventana",
"reload window": "No se puede activar la extensión \"{0}\" porque depende de la extensión \"{1}\", que no está cargada. ¿Le gustaría recargar la ventana para cargar la extensión?",
"restrictedMode": "No se puede activar la extensión \"{0}\" porque depende de la extensión \"{1}\", que no se admite en modo restringido",
- "uninstalledDep": "No se puede activar la extensión \"{0}\" porque depende de la extensión \"{1}\", que no está instalada. ¿Le gustaría instalar la extensión y recargar la ventana?",
+ "uninstalledDep": "No puede activar la extensión \"{0}\" porque depende de la extensión \"{1}\" de \"{2}\", que está deshabilitada. ¿Desea instalar la extensión y volver a cargar la ventana?",
"unknownDep": "No se puede activar la extensión \"{0}\" porque depende de una extensión \"{1}\" desconocida."
},
"vs/workbench/api/browser/mainThreadFileSystemEventService": {
- "again": "No volver a preguntar",
+ "again": "No volver a hacerme esta pregunta",
"ask.1.copy": "La extensión \"{0}\" quiere hacer cambios de refactorización con esta copia de archivo",
"ask.1.create": "La extensión \"{0}\" quiere hacer cambios de refactorización con esta creación de archivo",
"ask.1.delete": "La extensión \"{0}\" quiere hacer cambios de refactorización con esta eliminación de archivo",
@@ -2639,15 +3317,36 @@
"msg-delete": "Ejecutando participantes de \"Eliminar archivo\"...",
"msg-rename": "Ejecutando participantes \"Cambiar nombre de archivo\"...",
"msg-write": "Ejecutando participantes de 'Escritura de archivos'...",
- "ok": "Aceptar",
- "preview": "Mostrar vista previa"
+ "ok": "&&Aceptar",
+ "preview": "Mostrar &&vista previa"
+ },
+ "vs/workbench/api/browser/mainThreadLanguageModels": {
+ "confirmLanguageModelAccess": "La extensión \"{0}\" quiere acceder a los modelos de lenguaje proporcionados por {1}.",
+ "languageModelsAccountId": "Modelos de lenguaje"
+ },
+ "vs/workbench/api/browser/mainThreadMcp": {
+ "allow": "&&Permitir",
+ "confirmLogin": "La definición del servidor MCP \"{0}\" quiere autenticarse en {1}.",
+ "confirmRelogin": "La definición del servidor MCP \"{0}\" quiere que se autentique en {1}.",
+ "incorrectAccount": "Se detectó una cuenta incorrecta",
+ "incorrectAccountDetail": "La cuenta elegida, {0}, no coincide con la cuenta solicitada, {1}.",
+ "keep": "Mantener {0}",
+ "loginWith": "Iniciar sesión con {0}",
+ "mcpAuthSessionRemoved": "Sesión de autenticación quitada {0}, deteniendo servidor"
},
"vs/workbench/api/browser/mainThreadMessageService": {
"cancel": "Cancelar",
"defaultSource": "Extensión",
- "extensionSource": "{0} (extensión)",
"manageExtension": "Administrar extensión",
- "ok": "Aceptar"
+ "ok": "&&Aceptar"
+ },
+ "vs/workbench/api/browser/mainThreadNotebookSaveParticipant": {
+ "timeout.onWillSave": "Se anuló onWillSaveNotebookDocument-event después de 1750 ms"
+ },
+ "vs/workbench/api/browser/mainThreadOutputService": {
+ "status.showOutput": "Mostrar salida",
+ "status.showOutputAria": "Mostrar {0} canal de salida",
+ "status.showOutputTooltip": "Mostrar {0} canal de salida"
},
"vs/workbench/api/browser/mainThreadProgress": {
"manageExtension": "Administrar extensión"
@@ -2676,7 +3375,22 @@
"folderStatusMessageRemoveMultipleFolders": "La extensión ' {0} ' eliminó las carpetas {1} del área de trabajo",
"folderStatusMessageRemoveSingleFolder": "Extensión ' {0} ' eliminó 1 carpeta del área de trabajo"
},
+ "vs/workbench/api/browser/statusBarExtensionPoint": {
+ "accessibilityInformation": "Define el rol y la etiqueta aria que se usarán cuando la entrada de la barra de estado esté centrada.",
+ "accessibilityInformation.label": "Etiqueta aria de la entrada de la barra de estado. El valor predeterminado es el texto de la entrada.",
+ "accessibilityInformation.role": "Rol de la entrada de la barra de estado que define cómo interactúa un lector de pantalla con él. Puede encontrar más información sobre los roles aria aquí https://w3c.github.io/aria/#widget_roles",
+ "alignment": "Alineación de la entrada de la barra de estado.",
+ "command": "Comando que se ejecutará cuando se haga clic en la entrada de la barra de estado.",
+ "id": "Identificador de la entrada de la barra de estado. Debe ser único en la extensión. Se debe usar el mismo valor al llamar a la API \"vscode.window.createStatusBarItem(id, ...)\"",
+ "invalid": "Contribución de elemento de barra de estado no válida.",
+ "name": "Nombre de la entrada, como \"Indicador de lenguaje de Python\", \"Estado de GIT\", etc. Intente que la longitud del nombre sea breve, pero lo suficientemente descriptiva como para que los usuarios puedan comprender de qué trata el elemento de la barra de estado.",
+ "priority": "Prioridad de la entrada de la barra de estado. Un mayor valor significa que el elemento se mostrará más a la izquierda.",
+ "text": "Texto que se va a mostrar para la entrada. Puede insertar iconos en el texto aprovechando la sintaxis \"$()\", como \"Hola $(globe)!\".",
+ "tooltip": "El texto de información sobre herramientas para la entrada.",
+ "vscode.extension.contributes.statusBarItems": "Aporta elementos a la barra de estado."
+ },
"vs/workbench/api/browser/viewsExtensionPoint": {
+ "RequiresChatSessionsProposedAPI": "El contenedor de vista '{0}' requiere 'enabledApiProposals: [\"chatSessionsProvider\"]'.",
"ViewContainerDoesnotExist": "Contenedor de vistas ' {0} ' no existe y todas las vistas registradas se agregarán al 'Explorer'.",
"ViewContainerRequiresProposedAPI": "Ver el contenedor “{0}” requiere que se agregue “enabledApiProposals: [\"contribViewsRemote\"]” a “Remote”.",
"duplicateView1": "No se pueden registrar varias vistas con el mismo identificador \"{0}\"",
@@ -2688,15 +3402,25 @@
"requirenonemptystring": "la propiedad '{0}' es obligatoria y debe ser de tipo 'string' con un valor no vacío",
"requirestring": "la propiedad \"{0}\" es obligatoria y debe ser de tipo \"string\"",
"unknownViewType": "Tipo de vista \"{0}\" desconocido.",
+ "view container id": "ID.",
+ "view container location": "Donde",
+ "view container title": "Título",
+ "view id": "ID.",
+ "view name title": "Nombre",
"viewcontainer requirearray": "los contenedores de vistas deben ser una matriz",
+ "views": "Vistas",
+ "views.agentSessions": "Contribuye vistas al contenedor de sesiones de agente en la barra de actividades. Para contribuir a este contenedor, debe habilitarse la propuesta de API \"chatSessionsProvider\".",
"views.container.activitybar": "Contribuir vistas de contenedores a la barra de actividades",
"views.container.panel": "Aportar contenedores de vistas al Panel",
+ "views.container.secondarySidebar": "Contribuir con contenedores de vistas a la barra lateral secundaria",
"views.contributed": "Contribuye vistas al contenedor de vistas aportadas",
"views.debug": "Contribuye vistas al contenedor de depuración en la barra de actividades",
"views.explorer": "Aporta vistas al contenedor del explorador en la barra de actividades",
- "views.remote": "Aporta las vistas al contenedor remoto en la barra de actividad. Para contribuir a este contenedor, enableProposedApi debe estar activado",
+ "views.remote": "Contribuye vistas al contenedor remoto en la barra de actividades. Para contribuir a este contenedor, debe habilitarse la propuesta de API \"contribViewsRemote\".",
"views.scm": "Contribuye vistas al contenedor SCM en la barra de actividades",
"views.test": "Contribuye vistas al contenedor de pruebas en la barra de actividades",
+ "viewsContainers": "Ver contenedores",
+ "vscode.extension.contributes.view.accessibilityHelpContent": "Cuando se invoca el cuadro de diálogo de ayuda de accesibilidad en esta vista, este contenido se presentará al usuario como una cadena de Markdown. Los enlaces de teclado se resolverán cuando se proporcionen en el formato de . Si no hay ningún enlace de teclado, se indicará y este comando se incluirá en una selección rápida para facilitar la configuración.",
"vscode.extension.contributes.view.contextualTitle": "Contexto legible para cuando la vista se mueve fuera de su ubicación original. De forma predeterminada, se usará el nombre del contenedor de la vista.",
"vscode.extension.contributes.view.group": "Grupo anidado en el viewlet",
"vscode.extension.contributes.view.icon": "Ruta de acceso al icono de vista. Los iconos de vista se muestran cuando no se puede mostrar el nombre de la vista. Se recomienda que los iconos estén en SVG, aunque se acepta cualquier tipo de archivo de imagen.",
@@ -2716,20 +3440,29 @@
"vscode.extension.contributes.views.containers.id": "Identificador único utilizado para identificar el contenedor en el que se pueden aportar vistas mediante el punto de contribución \"vistas\"",
"vscode.extension.contributes.views.containers.title": "Cadena de texto en lenguaje natural usada para mostrar el contenedor. ",
"vscode.extension.contributes.viewsContainers": "Contribuye con vistas de contenedores al editor ",
- "vscode.extension.contributs.view.size": "El tamaño de la vista. El uso de un número se comportará como la propiedad CSS 'flex' y el tamaño establecerá el tamaño inicial cuando se muestre por primera vez la vista. En la barra lateral, este es el alto de la vista."
+ "vscode.extension.contributs.view.size": "Tamaño inicial de la vista. El tamaño se comportará como la propiedad css \"flex\" y establecerá el tamaño inicial cuando se muestre la vista por primera vez. En la barra lateral, este es el alto de la vista. Este valor solo se respeta cuando la misma extensión posee tanto la vista como el contenedor de vistas."
},
"vs/workbench/api/common/configurationExtensionPoint": {
+ "accessibility": "Configuración de accesibilidad",
+ "advanced": "La configuración avanzada está oculta de manera predeterminada en el editor de configuración, a menos que el usuario elija mostrarla.",
"config.property.defaultConfiguration.warning": "No se pueden registrar los valores predeterminados de configuración para \"{0}\". Solo se admiten los valores predeterminados de los ajustes de alcance reemplazable por la máquina, la ventana, el recurso y el idioma.",
"config.property.duplicate": "No se puede registrar \"{0}\". Esta propiedad ya está registrada.",
+ "config.property.preventDefaultConfiguration.warning": "No se pueden registrar los valores predeterminados de configuración para '{0}'. Esta opción no permite valores predeterminados de configuración de contribución.",
+ "default": "Predeterminado",
+ "description": "Descripción",
+ "experimental": "La configuración experimental puede cambiar y eliminarse en futuras versiones.",
"invalid.allOf": "\"configuration.allOf\" está en desuso y ya no debe utilizarse. En su lugar, pase varias secciones de configuración como una matriz al punto de contribución \"configuration\".",
"invalid.properties": "configuration.properties debe ser un objeto",
"invalid.property": "la propiedad Configuration. Properties ' {0} ' debe ser un objeto",
"invalid.title": "configuration.title debe ser una cadena",
+ "preview": "La configuración de vista previa se puede usar para probar nuevas funciones antes de que se finalicen.",
"scope.application.description": "Configuración que solo se puede establecer en los valores del usuario.",
"scope.deprecationMessage": "Si se establece, la propiedad se marca como \"en desuso\" y se muestra el mensaje dado como explicación.",
"scope.description": "Ámbito en el que se aplica la configuración. Los ámbitos disponibles son \"application\", \"machine\", \"window\", \"resource\" y \"machine-overridable\".",
"scope.editPresentation": "Cuando se especifica, controla el formato de presentación de la configuración de cadena.",
"scope.enumDescriptions": "Descripciones de los valores de enumeración",
+ "scope.enumItemLabels": "Etiquetas para los valores de enumeración que se mostrarán en el editor de configuración. Cuando se especifica, los valores de {0} se siguen mostrando después de las etiquetas, pero de modo menos evidente.",
+ "scope.ignoreSync": "Cuando está habilitada, la sincronización de configuración no sincronizará el valor de usuario de esta configuración de forma predeterminada.",
"scope.language-overridable.description": "Configuración de recursos que puede establecerse en la configuración específica del idioma.",
"scope.machine-overridable.description": "Configuración del equipo que se puede realizar también en la configuración del área de trabajo o de la carpeta.",
"scope.machine.description": "Configuración que solo se puede establecer en la configuración de usuario o solo en la configuración remota.",
@@ -2740,8 +3473,13 @@
"scope.order": "Cuando se especifica, da el orden de esta configuración en relación con otras configuraciones dentro de la misma categoría. Las configuraciones con una propiedad de orden serán colocadas antes de las configuraciones sin esta propiedad establecida.",
"scope.resource.description": "Configuración que se puede establecer en la configuración de usuario, remoto, área de trabajo o carpeta.",
"scope.singlelineText.description": "El valor se mostrará en un cuadro de entrada.",
+ "scope.tags": "Lista de etiquetas bajo las cuales se colocará la configuración. Luego, se puede buscar la etiqueta en el editor de configuraciones. Por ejemplo, especificar la etiqueta \"experimental\" permite encontrar la configuración buscando \"@tag:experimental\".",
"scope.window.description": "Configuración que se puede establecer en la configuración remota, de usuario o de área de trabajo.",
+ "setting name": "Id.",
+ "settings": "Configuración",
+ "telemetry": "Configuración de telemetría",
"unknownWorkspaceProperty": "Propiedad de configuración de área de trabajo desconocida",
+ "usesOnlineServices": "Configuración que utiliza servicios en línea",
"vscode.extension.contributes.configuration": "Aporta opciones de configuración.",
"vscode.extension.contributes.configuration.order": "Cuando se especifica, proporciona el orden de esta categoría de configuración en relación con otras categorías.",
"vscode.extension.contributes.configuration.properties": "Descripción de las propiedades de configuración.",
@@ -2751,6 +3489,7 @@
"workspaceConfig.extensions.description": "Extensiones del área de trabajo",
"workspaceConfig.folders.description": "Lista de carpetas para cargar en el área de trabajo. ",
"workspaceConfig.launch.description": "Configuraciones de inicio del área de trabajo",
+ "workspaceConfig.mcp.description": "Configuraciones del servidor del protocolo de contexto de modelo",
"workspaceConfig.name.description": "Un nombre opcional para la carpeta. ",
"workspaceConfig.path.description": "Ruta de acceso de archivo; por ejemplo, \"/raíz/carpetaA\" o \"./carpetaA\" para una ruta de acceso de archivo que se resolverá respecto a la ubicación del archivo del área de trabajo.",
"workspaceConfig.remoteAuthority": "El servidor remoto donde se ubica el espacio de trabajo.",
@@ -2759,6 +3498,13 @@
"workspaceConfig.transient": "Un área de trabajo temporal desaparecerá cuando se reinicie o se vuelva a cargar.",
"workspaceConfig.uri.description": "URI de la carpeta"
},
+ "vs/workbench/api/common/extHostAuthentication": {
+ "authenticatingTo": "Autenticando en \"{0}\"",
+ "completeAuth": "Complete la autenticación en la ventana del explorador que se ha abierto.",
+ "continueWith": "Aún no ha terminado de autenticarse en \"{0}\". ¿Desea probar de otra forma? ({1})",
+ "url handler": "Controlador de URL",
+ "userCanceledContinue": "¿Tiene problemas para autenticarse en \"{0}\"? ¿Desea probar de otra forma? ({1})"
+ },
"vs/workbench/api/common/extHostDiagnostics": {
"limitHit": "No se mostrarán {0} errores y advertencias adicionales."
},
@@ -2766,19 +3512,38 @@
"extensionTestError": "La ruta de acceso {0} no apunta a un ejecutor de pruebas de extensión.",
"extensionTestError1": "No se puede cargar el ejecutor de pruebas."
},
- "vs/workbench/api/common/extHostProgress": {
- "extensionSource": "{0} (extensión)"
+ "vs/workbench/api/common/extHostLanguageFeatures": {
+ "defaultDropLabel": "Colocar con la extensión \"{0}\"",
+ "defaultPasteLabel": "Pegar con la extensión \"{0}\""
+ },
+ "vs/workbench/api/common/extHostLanguageModels": {
+ "chatAccessWithJustification": "Justificación: {1}"
+ },
+ "vs/workbench/api/common/extHostLogService": {
+ "local": "Host de extensión",
+ "remote": "Host de extensión (remoto)",
+ "worker": "Host de extensión (trabajo)"
+ },
+ "vs/workbench/api/common/extHostNotebook": {
+ "err.readonly": "No se puede modificar el archivo de solo lectura \"{0}\"",
+ "fileModifiedError": "Archivo Modificado Desde"
},
"vs/workbench/api/common/extHostStatusBar": {
"extensionLabel": "{0} (Extensión)",
"status.extensionMessage": "Estado de la extensión"
},
+ "vs/workbench/api/common/extHostTelemetry": {
+ "extensionTelemetryLog": "Telemetría de extensiones{0}"
+ },
"vs/workbench/api/common/extHostTerminalService": {
"launchFail.idMissingOnExtHost": "No se encontró el terminal con el identificador {0} en el host de extensiones"
},
"vs/workbench/api/common/extHostTreeViews": {
- "treeView.duplicateElement": "El elemento con id {0} está ya registrado",
- "treeView.notRegistered": "No se ha registrado ninguna vista del árbol con el id. \"{0}\"."
+ "treeView.duplicateElement": "El elemento con id {0} está ya registrado"
+ },
+ "vs/workbench/api/common/extHostTunnelService": {
+ "tunnelPrivacy.private": "Privado",
+ "tunnelPrivacy.public": "Público"
},
"vs/workbench/api/common/extHostWorkspace": {
"updateerror": "La extensión ' {0} ' no pudo actualizar las carpetas del área de trabajo: {1}"
@@ -2787,79 +3552,118 @@
"contributes.jsonValidation": "Aporta la configuración del esquema JSON.",
"contributes.jsonValidation.fileMatch": "El patrón de archivo (o una matriz de patrones) para que coincida con, por ejemplo, \"package.json\" o \"*.launch\". Los patrones de exclusión comienzan con \"!\".",
"contributes.jsonValidation.url": "Dirección URL de esquema ('http:', 'https:') o ruta de acceso relativa a la carpeta de extensión ('./').",
+ "fileMatch": "Coincidencia de archivo",
"invalid.fileMatch": "\"configuration.jsonValidation.fileMatch\" debe definirse como una cadena o una matriz de cadenas.",
"invalid.jsonValidation": "configuration.jsonValidation debe ser una matriz",
"invalid.path.1": "Se esperaba que \"contributes.{0}.url\" ({1}) estuviera incluido en la carpeta de la extensión ({2}). Esto puede hacer que la extensión no sea portátil.",
"invalid.url": "configuration.jsonValidation.url debe ser una dirección URL o una ruta de acceso relativa",
"invalid.url.fileschema": "configuration.jsonValidation.url es una dirección URL relativa no válida: {0}",
- "invalid.url.schema": "\"configuration.jsonValidation.url\" debe ser una dirección URL absoluta o empezar con \"./\" para hacer referencia a esquemas ubicados en la extensión."
+ "invalid.url.schema": "\"configuration.jsonValidation.url\" debe ser una dirección URL absoluta o empezar con \"./\" para hacer referencia a esquemas ubicados en la extensión.",
+ "jsonValidation": "Validación JSON",
+ "schema": "Esquema"
+ },
+ "vs/workbench/api/node/extHostAuthentication": {
+ "completeAuth": "Complete la autenticación en la ventana del explorador que se ha abierto.",
+ "device code": "Código del dispositivo",
+ "loopback": "Servidor de bucle invertido",
+ "waitingForAuth": "Abra [{0}]({0}) en una pestaña nueva y pegue el código de un solo uso: {1}"
},
"vs/workbench/api/node/extHostDebugService": {
"debug.terminal.title": "Proceso de depuración"
},
- "vs/workbench/api/node/extHostTunnelService": {
- "tunnelPrivacy.private": "Privado",
- "tunnelPrivacy.public": "Público"
+ "vs/workbench/api/test/browser/mainThreadTreeViews.test": {
+ "Test View 1": "Vista de pruebas 1",
+ "test": "prueba"
},
"vs/workbench/browser/actions/developerActions": {
+ "global": "Global",
"inspect context keys": "Inspeccionar claves de contexto",
- "keyboardShortcutsFormat.command": "Título del comando.",
- "keyboardShortcutsFormat.commandAndKeys": "Título y teclas del comando.",
- "keyboardShortcutsFormat.commandWithGroup": "Título del comando precedido por su grupo.",
- "keyboardShortcutsFormat.commandWithGroupAndKeys": "Título y teclas del comando con el comando precedido por su grupo.",
- "keyboardShortcutsFormat.keys": "Teclas.",
+ "largeStorageItemDetail": "Ámbito: {0}, destino: {1}",
"logStorage": "Registrar el contenido de la base de datos de almacenamiento",
"logWorkingCopies": "Registrar copias de trabajo",
+ "machine": "Máquina",
+ "policyDiagnostics": "Diagnóstico de directivas",
+ "profile": "Perfil",
+ "removeLargeStorageDatabaseEntries": "Quitar entradas de la base de datos de almacenamiento de gran tamaño...",
+ "removeLargeStorageEntriesButtonLabel": "&&Quitar",
+ "removeLargeStorageEntriesConfirmRemove": "¿Desea quitar las entradas de almacenamiento seleccionadas de la base de datos?",
+ "removeLargeStorageEntriesConfirmRemoveDetail": "{0}\r\n\r\nEsta acción es irreversible y puede provocar la pérdida de datos.",
+ "removeLargeStorageEntriesPickerButton": "Quitar",
+ "removeLargeStorageEntriesPickerDescriptionNoEntries": "No hay entradas de almacenamiento de gran tamaño para quitar.",
+ "removeLargeStorageEntriesPickerPlaceholder": "Seleccionar entradas grandes para quitar del almacenamiento",
"screencastMode.fontSize": "Controla el tamaño de fuente (en píxeles) del teclado de modo de presentación de pantalla.",
+ "screencastMode.keyboardOptions.description": "Opciones para personalizar la superposición del teclado en el modo de presentación en pantalla.",
+ "screencastMode.keyboardOptions.showCommandGroups": "Mostrar los nombres del grupo de comandos cuando también se muestran los comandos.",
+ "screencastMode.keyboardOptions.showCommands": "Mostrar nombres de comandos.",
+ "screencastMode.keyboardOptions.showKeybindings": "Muestra los métodos abreviados de teclado.",
+ "screencastMode.keyboardOptions.showKeys": "Mostrar claves sin formato.",
+ "screencastMode.keyboardOptions.showSingleEditorCursorMoves": "Mostrar comandos de movimiento de cursor de editor único.",
"screencastMode.keyboardOverlayTimeout": "Controla el tiempo (en milisegundos) que se muestra la superposición del teclado en el modo de presentación de pantalla.",
- "screencastMode.keyboardShortcutsFormat": "Controla lo que se muestra en la superposición de teclado al mostrar accesos directos.",
"screencastMode.location.verticalPosition": "Controla el desplazamiento vertical de la superposición del modo de presentación en pantalla desde la parte inferior como un porcentaje de la altura del área de trabajo.",
"screencastMode.mouseIndicatorColor": "Controla el color en notación hexadecimal (#RGB, #RGBA, #RRGGBB o #RRGGBBAA) del indicador del mouse en el modo de presentación en pantalla.",
"screencastMode.mouseIndicatorSize": "Controla el tamaño (en píxeles) del indicador de mouse en el modo de presentación de pantalla.",
- "screencastMode.onlyKeyboardShortcuts": "Solo muestra los métodos abreviados de teclado en el modo de presentación de pantalla.",
"screencastModeConfigurationTitle": "Modo de presentación en pantalla",
- "toggle screencast mode": "Alternar el modo de presentación en pantalla"
+ "snapshotTrackedDisposables": "Elementos descartables con seguimiento de instantáneas",
+ "startTrackDisposables": "Iniciar seguimiento de descartables",
+ "stopTrackDisposables": "Detener seguimiento de descartables",
+ "storageLogDialogDetails": "Abra las herramientas de desarrollo en el menú y seleccione la pestaña Consola.",
+ "storageLogDialogMessage": "El contenido de la base de datos de almacenamiento se ha registrado en las herramientas de desarrollo.",
+ "toggle screencast mode": "Alternar el modo de presentación en pantalla",
+ "user": "Usuario",
+ "workspace": "Área de trabajo"
},
"vs/workbench/browser/actions/helpActions": {
+ "askVScode": "Preguntar a @vscode",
+ "getStartedWithAccessibilityFeatures": "Introducción a las características de accesibilidad",
"keybindingsReference": "Referencia de métodos abreviados de teclado",
"miDocumentation": "&&Documentación",
"miKeyboardShortcuts": "&&Referencia de métodos abreviados de teclado",
"miLicense": "Ver &&licencia",
"miPrivacyStatement": "Declaración de privaci&&dad",
"miTipsAndTricks": "Consejos y tru&&cos",
- "miTwitter": "&&Únase a nosotros en Twitter",
"miUserVoice": "&&Buscar solicitudes de características",
"miVideoTutorials": "&&Tutoriales de vídeo",
+ "miYouTube": "&&Unirse a nosotros en YouTube",
"newsletterSignup": "Regístrese para recibir el boletín de VS Code",
"openDocumentationUrl": "Documentación",
"openLicenseUrl": "Ver licencia",
"openPrivacyStatement": "Declaración de privacidad",
"openTipsAndTricksUrl": "Sugerencias y trucos",
- "openTwitterUrl": "Únase a nosotros en Twitter",
"openUserVoiceUrl": "Buscar solicitudes de características",
- "openVideoTutorialsUrl": "Tutoriales en vídeo"
+ "openVideoTutorialsUrl": "Tutoriales en vídeo",
+ "openYouTubeUrl": "Unirse a nosotros en YouTube"
},
"vs/workbench/browser/actions/layoutActions": {
"active": "Activo",
"activityBar": "Barra de actividades",
"activityBarLeft": "Representa la barra de actividad en la posición izquierda",
"activityBarRight": "Representa la barra de actividad en la posición derecha",
+ "alignQuickInputCenter": "Alinear centro de entrada rápida",
+ "alignQuickInputTop": "Alinear entrada rápida arriba",
+ "center": "Centrar",
"centerLayoutIcon": "Representa el modo de diseño centrado",
"centerPanel": "Centrar",
"centeredLayout": "Diseño centrado",
"close": "Cerrar",
- "closeSidebar": "Cerrar la barra lateral principal",
"cofigureLayoutIcon": "El icono representa la configuración de diseño del área de trabajo.",
"compositePart.hideSideBarLabel": "Ocultar barra lateral principal",
+ "configureEditors": "Configurar editores",
"configureLayout": "Configurar diseño",
+ "configureTabs": "Configurar pestañas",
"customizeLayout": "Personalizar diseño...",
"customizeLayoutQuickPickTitle": "Personalizar diseño",
"decreaseEditorHeight": "Reducir el alto del editor",
"decreaseEditorWidth": "Reducir el ancho del editor",
"decreaseViewSize": "Reducir tamaño de vista actual",
+ "editorActionsPosition": "Posición de acciones del editor",
"fullScreenIcon": "Representa el modo de pantalla completa",
"fullscreen": "Pantalla completa",
- "hidden": "Oculta",
+ "hideEditorActons": "Ocultar acciones del editor",
+ "hideEditorActonsDescription": "Ocultar Editor acciones en la pestaña y la barra de título",
+ "hideEditorTabs": "Ocultar pestañas del editor",
+ "hideEditorTabsDescription": "Ocultar barra de pestañas",
+ "hideEditorTabsZenMode": "Ocultar pestañas del editor en Modo zen",
+ "hideEditorTabsZenModeDescription": "Ocultar barra de pestañas en modo zen",
"increaseEditorHeight": "Aumentar el alto del editor",
"increaseEditorWidth": "Aumentar el ancho del editor",
"increaseViewSize": "Aumentar tamaño de vista actual",
@@ -2869,23 +3673,23 @@
"leftSideBar": "Izquierda",
"menuBar": "Barra de menús",
"menuBarIcon": "Representa la barra de menús",
- "miActivityBar": "&&Activity Bar",
"miAppearance": "&&Apariencia",
- "miMenuBar": "Menu &&Bar",
- "miMenuBarNoMnemonic": "Menu Bar",
+ "miMenuBar": "Barra de &&menú",
+ "miMenuBarNoMnemonic": "Barra de menús",
"miMoveSidebarLeft": "&&Mover barra lateral principal a la izquierda",
"miMoveSidebarRight": "&&Mover barra lateral principal a la derecha",
"miShowEditorArea": "Mostrar &&área de editor",
- "miShowSidebar": "&&Primary Side Bar",
- "miSidebarNoMnnemonic": "Primary Side Bar",
- "miStatusbar": "S&&tatus Bar",
+ "miStatusbar": "Barra de e&&stado",
"miToggleCenteredLayout": "&&Diseño centrado",
"miToggleZenMode": "Modo zen",
"move second sidebar left": "Mover barra lateral secundaria a la izquierda",
"move second sidebar right": "Mover barra lateral secundaria a la derecha",
"move side bar right": "Mover barra lateral principal a la derecha",
"move sidebar left": "Mover barra lateral principal a la izquierda",
- "move sidebar right": "Mover barra lateral principal a la derecha",
+ "moveEditorActionsToTabBar": "Mover acciones del editor a la barra de pestañas",
+ "moveEditorActionsToTabBarDescription": "Mover acciones del editor de la barra de título a la barra de pestañas",
+ "moveEditorActionsToTitleBar": "Mover acciones del editor a la barra de título",
+ "moveEditorActionsToTitleBarDescription": "Mover acciones del Editor de la barra de pestañas a la barra de título",
"moveFocusedView": "Mover vista enfocada",
"moveFocusedView.error.noFocusedView": "No hay ninguna vista enfocada actualmente.",
"moveFocusedView.error.nonMovableView": "La vista enfocada actualmente no es móvil.",
@@ -2898,6 +3702,7 @@
"moveSidebarLeft": "Mover barra lateral principal a la izquierda",
"moveSidebarRight": "Mover barra lateral principal a la derecha",
"moveView": "Mover vista",
+ "openAndCloseSidebar": "Abrir, mostrar y cerrar u ocultar la barra lateral",
"panel": "Panel",
"panelAlignment": "Alineación del panel",
"panelBottom": "Representa el panel inferior",
@@ -2910,34 +3715,60 @@
"panelLeftOff": "Representa una barra lateral en la posición izquierda desactivada",
"panelRight": "Representa la barra lateral en la posición derecha",
"panelRightOff": "Representa la barra lateral en la posición derecha desactivada",
+ "primary sidebar": "Barra lateral principal",
+ "primary sidebar mnemonic": "&&Barra lateral principal",
+ "quickInputAlignmentCenter": "Representa la alineación de entrada rápida establecida en el centro",
+ "quickInputAlignmentTop": "Representa la alineación de entrada rápida establecida en la parte superior",
+ "quickOpen": "Posición de entrada rápida",
"resetFocusedView.error.noFocusedView": "No hay ninguna vista enfocada actualmente.",
"resetFocusedViewLocation": "Restablecer la ubicación de la vista enfocada",
"resetViewLocations": "Restablecer ubicaciones de vista",
+ "restore defaults": "Restaurar valores predeterminados",
"rightPanel": "Derecha",
"rightSideBar": "Derecha",
"secondarySideBar": "Barra lateral secundaria",
"secondarySideBarContainer": "Barra lateral secundaria / {0}",
+ "selectToHide": "Seleccionar para ocultar",
+ "selectToShow": "Seleccionar para mostrar",
+ "showEditorActons": "Mostrar acciones del editor",
+ "showEditorActonsDescription": "Hacer visibles las acciones de Editor.",
+ "showMultipleEditorTabs": "Mostrar varias pestañas del editor",
+ "showMultipleEditorTabsDescription": "Mostrar barra de pestañas con varias pestañas",
+ "showMultipleEditorTabsZenMode": "Mostrar varias pestañas del editor en modo zen",
+ "showMultipleEditorTabsZenModeDescription": "Mostrar barra de pestañas en modo Zen",
+ "showSingleEditorTab": "Mostrar pestaña de editor único",
+ "showSingleEditorTabDescription": "Mostrar barra de pestañas con una pestaña",
+ "showSingleEditorTabZenMode": "Mostrar pestaña de editor único en Modo zen",
+ "showSingleEditorTabZenModeDescription": "Mostrar barra de pestañas en modo zen con una pestaña",
"sideBar": "Barra lateral principal",
"sideBarPosition": "Posición de la barra lateral principal",
"sidebar": "Barra lateral",
"sidebarContainer": "Barra lateral / {0}",
+ "sidebarHidden": "Barra lateral principal oculta",
+ "sidebarVisible": "Barra lateral principal mostrada",
"statusBar": "Barra de estado",
"statusBarIcon": "Representa la barra de estado",
- "toggleActivityBar": "Alternar visibilidad de la barra de actividades",
+ "tabBar": "Barra de pestañas",
"toggleCenteredLayout": "Alternar diseño centrado",
"toggleEditor": "Cambiar la visibilidad del área de edición",
"toggleMenuBar": "Alternar barra de menús",
+ "toggleSeparatePinnedEditorTabs": "Separar pestañas del editor ancladas",
+ "toggleSeparatePinnedEditorTabsDescription": "Alternar si las pestañas del editor ancladas se muestran en una fila independiente encima de las pestañas desancladas.",
"toggleSideBar": "Alternar barra lateral principal",
"toggleSidebar": "Alternar la visibilidad de la barra lateral principal",
"toggleSidebarPosition": "Alternar la posición de la barra lateral principal",
"toggleStatusbar": "Alternar visibilidad de la barra de estado",
- "toggleTabs": "Alternar visibilidad de la pestaña",
"toggleVisibility": "Visibilidad",
"toggleZenMode": "Alternar modo zen",
- "visible": "Visible",
+ "top": "Superior",
"zenMode": "Modo zen",
"zenModeIcon": "Representa el modo zen"
},
+ "vs/workbench/browser/actions/listCommands": {
+ "mitoggleTreeStickyScroll": "&&Alternar desplazamiento con inmovilización de árbol",
+ "toggleTreeStickyScroll": "Alternar desplazamiento con inmovilización de árbol",
+ "toggleTreeStickyScrollDescription": "Alterna el widget de desplazamiento con inmovilización en la parte superior de las estructuras de árbol, como la vista de variables de Explorador de archivos y Depuración."
+ },
"vs/workbench/browser/actions/navigationActions": {
"focusNextPart": "Enfocar la parte siguiente",
"focusPreviousPart": "Enfocar la parte anterior",
@@ -2950,6 +3781,7 @@
"quickNavigateNext": "Navegar a siguiente en Quick Open",
"quickNavigatePrevious": "Navegar a anterior en Quick Open",
"quickOpen": "Ir al archivo...",
+ "quickOpenWithModes": "Quick Open",
"quickSelectNext": "Seleccionar Siguiente en Quick Open",
"quickSelectPrevious": "Seleccionar Anterior en Quick Open"
},
@@ -2963,6 +3795,8 @@
},
"vs/workbench/browser/actions/windowActions": {
"about": "Acerca de",
+ "activeOpenedRecentlyOpenedFolder": "Carpeta abierta en Ventana activa",
+ "activeOpenedRecentlyOpenedWorkspace": "Área de trabajo abierta en Ventana activa",
"blur": "Quitar el foco del teclado del elemento con foco",
"dirtyFolder": "Carpeta con archivos no guardados",
"dirtyFolderConfirm": "¿Quiere abrir la carpeta para revisar los archivos no guardados?",
@@ -2972,7 +3806,6 @@
"dirtyWorkspace": "Área de trabajo con archivos no guardados",
"dirtyWorkspaceConfirm": "¿Quiere abrir el área de trabajo para revisar los archivos no guardados?",
"dirtyWorkspaceConfirmDetail": "Las áreas de trabajo con archivos no guardados no se pueden quitar hasta que todos esos archivos se hayan guardado o revertido.",
- "file": "Archivo",
"files": "archivos",
"folders": "carpetas",
"miAbout": "&&Acerca de",
@@ -2985,6 +3818,8 @@
"openRecent": "Abrir Reciente...",
"openRecentPlaceholder": "Seleccionar para abrir (mantenga presionada la tecla Ctrl para forzar la apertura de una nueva ventana o la tecla Alt para abrir la misma ventana)",
"openRecentPlaceholderMac": "Seleccionar para abrir (mantenga presionada la tecla Cmd para forzar la apertura de una nueva ventana o la tecla Opción para abrir la misma ventana)",
+ "openedRecentlyOpenedFolder": "Carpeta abierta en una ventana",
+ "openedRecentlyOpenedWorkspace": "Área de trabajo abierta en una ventana",
"quickOpenRecent": "Abrir Reciente Rapidamente...",
"recentDirtyFolderAriaLabel": "{0}, carpeta con cambios no guardados",
"recentDirtyWorkspaceAriaLabel": "{0}, área de trabajo con cambios no guardados",
@@ -2997,7 +3832,6 @@
"closeWorkspace": "Cerrar área de trabajo",
"duplicateWorkspace": "Área de trabajo duplicada",
"duplicateWorkspaceInNewWindow": "Duplicar como área de trabajo en una ventana nueva",
- "filesCategory": "archivo",
"globalRemoveFolderFromWorkspace": "Quitar carpeta del Área de trabajo...",
"miAddFolderToWorkspace": "A&&gregar carpeta al área de trabajo...",
"miCloseFolder": "Cerrar &&carpeta",
@@ -3021,53 +3855,70 @@
"addFolderToWorkspaceTitle": "Agregar carpeta al área de trabajo",
"workspaceFolderPickerPlaceholder": "Seleccionar la carpeta del área de trabajo"
},
- "vs/workbench/browser/codeeditor": {
- "openWorkspace": "Abrir área de trabajo"
- },
"vs/workbench/browser/editor": {
"pinned": "{0}, anclado",
"preview": "{0}, vista previa"
},
- "vs/workbench/browser/parts/activitybar/activitybarActions": {
- "authProviderUnavailable": "{0} no está disponible",
- "focusActivityBar": "Enfocar la barra de actividades",
- "hideAccounts": "Ocultar cuentas",
- "manageTrustedExtensions": "Administrar extensiones de confianza",
- "nextSideBarView": "Vista de la barra lateral principal siguiente",
- "noAccounts": "No ha iniciado sesión en ninguna cuenta.",
- "previousSideBarView": "Vista anterior de barra lateral principal",
- "signOut": "Cerrar sesión"
+ "vs/workbench/browser/labels": {
+ "notebookCellLabel": "{0} • Celda {1}",
+ "notebookCellOutputLabel": "{0} • Celda {1} • Salida {2}",
+ "notebookCellOutputLabelSimple": "{0} • Celda {1} • Salida"
},
"vs/workbench/browser/parts/activitybar/activitybarPart": {
- "accounts": "Cuentas",
- "accounts visibility key": "Personalización de visibilidad de entrada de cuentas en la barra de actividades.",
- "accountsViewBarIcon": "Icono de cuentas en la barra de vistas.",
- "hideActivitBar": "Ocultar barra de actividades",
+ "activity bar position": "Posición de la barra de actividad",
+ "bottom": "Abajo",
+ "default": "Predeterminado",
+ "focusActivityBar": "Enfocar la barra de actividades",
+ "hide": "Oculto",
+ "hideActivityBar": "Ocultar barra de actividades",
"hideMenu": "Ocultar menú",
- "manage": "Administrar",
"menu": "Menú",
- "pinned view containers": "Personalizaciones de visibilidad de entradas de la barra de actividades",
- "resetLocation": "Restablecer ubicación",
- "settingsViewBarIcon": "Icono de configuración en la barra de vistas."
+ "miBottomActivityBar": "&&Inferior",
+ "miDefaultActivityBar": "&&Predeterminado",
+ "miHideActivityBar": "&&Oculto",
+ "miTopActivityBar": "&&Superior",
+ "nextSideBarView": "Vista de la barra lateral principal siguiente",
+ "positionActivituBar": "Posición de la barra de actividad",
+ "positionActivityBarBottom": "Mover la barra de actividad a la parte inferior",
+ "positionActivityBarDefault": "Mover barra de actividad a un lado",
+ "positionActivityBarTop": "Mover la barra de actividad a la parte superior",
+ "previousSideBarView": "Vista anterior de barra lateral principal",
+ "top": "Superior"
},
"vs/workbench/browser/parts/auxiliarybar/auxiliaryBarActions": {
+ "auxiliaryBarHidden": "Barra lateral secundaria oculta",
+ "auxiliaryBarVisible": "Barra lateral secundaria mostrada",
+ "closeIcon": "Icono para cerrar la barra lateral secundaria.",
+ "closeSecondarySideBar": "Ocultar barra lateral secundaria",
"focusAuxiliaryBar": "Centrarse en la barra lateral secundaria",
"hideAuxiliaryBar": "Ocultar barra lateral secundaria",
- "miAuxiliaryBar": "Secondary Si&&de Bar",
- "miAuxiliaryBarNoMnemonic": "Secondary Side Bar",
+ "maximizeAuxiliaryBar": "Maximizar barra lateral secundaria",
+ "maximizeAuxiliaryBarTooltip": "Maximizar el tamaño de la barra lateral secundaria",
+ "maximizeIcon": "Icono para maximizar la barra lateral secundaria.",
+ "miCloseSecondarySideBar": "&&Barra lateral secundaria",
+ "nextAuxiliaryBarView": "Vista siguiente de barra lateral secundaria",
+ "openAndCloseAuxiliaryBar": "Abrir, mostrar y cerrar u ocultar la barra lateral secundaria",
+ "previousAuxiliaryBarView": "Vista anterior de barra lateral secundaria",
+ "restoreAuxiliaryBar": "Restaurar barra lateral secundaria",
+ "restoreAuxiliaryBarTooltip": "Restaurar tamaño de barra lateral secundaria",
"toggleAuxiliaryBar": "Alternar visibilidad de la barra lateral secundaria",
- "toggleAuxiliaryIconLeft": "Icono para alternar la barra auxiliar en su posición izquierda.",
- "toggleAuxiliaryIconLeftOn": "Icono para alternar la barra auxiliar en su posición izquierda.",
- "toggleAuxiliaryIconRight": "Icono para alternar la barra auxiliar fuera de su posición derecha.",
- "toggleAuxiliaryIconRightOn": "Icono para alternar la barra auxiliar en su posición derecha.",
+ "toggleAuxiliaryIconLeft": "Icono para alternar la barra lateral secundaria en su posición izquierda.",
+ "toggleAuxiliaryIconLeftOn": "Icono para activar la barra lateral secundaria en su posición izquierda.",
+ "toggleAuxiliaryIconRight": "Icono para desactivar la barra lateral secundaria en su posición derecha.",
+ "toggleAuxiliaryIconRightOn": "Icono para activar la barra lateral secundaria en su posición derecha.",
+ "toggleMaximizedAuxiliaryBar": "Alternar barra lateral secundaria maximizada",
"toggleSecondarySideBar": "Alternar barra lateral secundaria"
},
"vs/workbench/browser/parts/auxiliarybar/auxiliaryBarPart": {
- "hideAuxiliaryBar": "Ocultar barra lateral secundaria",
+ "activity bar position": "Posición de la barra de actividad",
+ "hide second side bar": "Ocultar barra lateral secundaria",
"move second side bar left": "Mover barra lateral secundaria a la izquierda",
- "move second side bar right": "Mover barra lateral secundaria a la derecha"
+ "move second side bar right": "Mover barra lateral secundaria a la derecha",
+ "showIcons": "Mostrar iconos",
+ "showLabels": "Mostrar etiquetas"
},
"vs/workbench/browser/parts/banner/bannerPart": {
+ "closeBanner": "Cerrar banner",
"focusBanner": "Colocar foco sobre la pancarta"
},
"vs/workbench/browser/parts/compositeBar": {
@@ -3075,13 +3926,14 @@
},
"vs/workbench/browser/parts/compositeBarActions": {
"additionalViews": "Vistas adicionales",
- "badgeTitle": "{0} - {1}",
"hide": "Ocultar \"{0}\"",
+ "hideBadge": "Ocultar distintivo",
"keep": "Mantener \"{0}\"",
- "manageExtension": "Administrar extensión",
"numberBadge": "{0} ({1})",
+ "showBadge": "Mostrar distintivo",
"titleKeybinding": "{0} ({1})",
- "toggle": "Alternar vista fijada"
+ "toggle": "Alternar vista fijada",
+ "toggleBadge": "Alternar distintivo de vista"
},
"vs/workbench/browser/parts/compositePart": {
"ariaCompositeToolbarLabel": "acciones de {0}",
@@ -3089,18 +3941,20 @@
"viewsAndMoreActions": "Vistas y más acciones..."
},
"vs/workbench/browser/parts/dialogs/dialogHandler": {
- "aboutDetail": "Versión: {0}\r\nConfirmación: {1}\r\nFecha: {2}\r\nExplorador: {3}",
- "cancelButton": "Cancelar",
- "copy": "Copiar",
- "ok": "Aceptar",
- "yesButton": "&&Sí"
+ "copy": "&&Copiar",
+ "ok": "Aceptar"
+ },
+ "vs/workbench/browser/parts/editor/auxiliaryEditorPart": {
+ "disableCompactAuxiliaryWindow": "Desactivar el Modo compacto",
+ "enableCompactAuxiliaryWindow": "Activar el Modo compacto",
+ "toggleCompactAuxiliaryWindow": "Alternar modo compacto de ventana"
},
"vs/workbench/browser/parts/editor/binaryDiffEditor": {
"metadataDiff": "{0} ↔ {1}"
},
"vs/workbench/browser/parts/editor/binaryEditor": {
"binaryEditor": "Visor binario",
- "binaryError": "El archivo no se muestra en el editor porque es binario o utiliza una codificación de texto no soportada. ",
+ "binaryError": "El archivo no se muestra en el editor de texto porque es binario o utiliza una codificación de texto no soportada.",
"openAnyway": "Abrir de todos modos"
},
"vs/workbench/browser/parts/editor/breadcrumbs": {
@@ -3151,14 +4005,24 @@
"breadcrumbsPossible": "Indica si el editor puede mostrar rutas de navegación.",
"breadcrumbsVisible": "Indica si las rutas de navegación están visibles.",
"cmd.focus": "Enfocar rutas de navegación",
+ "cmd.focusAndSelect": "Enfoque y selección de rutas de navegación",
"cmd.toggle": "Alternar rutas de navegación",
+ "cmd.toggle2": "Alternar rutas de navegación",
"empty": "no hay elementos",
- "miBreadcrumbs": "&&Breadcrumbs",
+ "miBreadcrumbs2": "&&Rutas de navegación",
"separatorIcon": "Icono del separador en las rutas de navegación."
},
"vs/workbench/browser/parts/editor/breadcrumbsPicker": {
"breadcrumbs": "Rutas de navegación"
},
+ "vs/workbench/browser/parts/editor/diffEditorCommands": {
+ "compare": "Comparar",
+ "compare.nextChange": "Ir al cambio siguiente",
+ "compare.openSide": "Abrir lado de diferencias activas",
+ "compare.previousChange": "Ir al cambio anterior",
+ "swapDiffSides": "Intercambiar el lado izquierdo y derecho en el editor",
+ "toggleInlineView": "Alternar la vista alineada"
+ },
"vs/workbench/browser/parts/editor/editor.contribution": {
"activeGroupEditorsByMostRecentlyUsedQuickAccess": "Mostrar editores en grupo activo por el más reciente utilizado",
"allEditorsByAppearanceQuickAccess": "Mostrar todos los editores abiertos por apariencia",
@@ -3177,15 +4041,26 @@
"closeRight": "Cerrar a la derecha",
"closeRightEditors": "Cerrar Editores a la Derecha en el Grupo",
"closeSavedEditors": "Cerrar los editores guardados del grupo",
+ "configureEditors": "Configurar editores",
+ "configureTabs": "Configurar pestañas",
+ "copyEditorGroupToNewWindow": "Copiar a nueva ventana",
+ "copyEditorToNewWindow": "Copiar editor en nueva ventana",
+ "copyToNewWindow": "Copiar a nueva ventana",
+ "editorActionsPosition": "Posición de acciones del editor",
"editorQuickAccessPlaceholder": "Escriba el nombre de un editor para abrirlo.",
- "file": "Archivo",
- "ignoreTrimWhitespace.label": "Ignorar las diferencias de espacios en blanco iniciales/finales",
+ "hidden": "Oculto",
+ "hideTabs": "Oculto",
+ "ignoreTrimWhitespace.label": "Mostrar las diferencias de espacios en blanco iniciales/finales",
"inlineView": "Vista alineada",
"joinInGroup": "Unir en grupo",
"keepEditor": "Mantener editor",
"keepOpen": "Mantener abierto",
+ "lockEditorGroup": "Bloquear grupo",
"lockGroup": "Bloquear grupo",
- "miClearRecentOpen": "&&Borrar abierto recientemente",
+ "lockGroupAction": "Bloquear grupo",
+ "maximizeGroup": "Maximizar grupo",
+ "miClearRecentOpen": "&&Borrar abierto recientemente...",
+ "miCopyEditorToNewWindow": "&&Copiar editor en nueva ventana",
"miEditorLayout": "Diseño del &&editor",
"miFirstSideEditor": "&&Cara primaria en el editor",
"miFocusAboveGroup": "Agrupar &&arriba",
@@ -3200,6 +4075,7 @@
"miJoinEditorInGroup": "Unir en &&Grupo",
"miJoinEditorInGroupWithoutMnemonic": "Unir en grupo",
"miLastEditLocation": "&&Última ubicación de edición",
+ "miMoveEditorToNewWindow": "&&Mover editor en nueva ventana",
"miNextEditor": "&&Editor siguiente",
"miNextEditorInGroup": "&&Próximo editor en grupo",
"miNextGroup": "&&Grupo siguiente",
@@ -3241,16 +4117,27 @@
"miTwoRowsEditorLayoutWithoutMnemonic": "Dos filas",
"miTwoRowsRightEditorLayout": "Dos fil&&as a la derecha",
"miTwoRowsRightEditorLayoutWithoutMnemonic": "Dos filas a la derecha",
+ "moveAbove": "Mover hacia arriba",
+ "moveBelow": "Mover hacia abajo",
+ "moveEditorGroupToNewWindow": "Mover a nueva ventana",
+ "moveEditorToNewWindow": "Mover editor en nueva ventana",
+ "moveLeft": "Mover a la izquierda",
+ "moveRight": "Mover a la derecha",
+ "moveToNewWindow": "Mover a nueva ventana",
+ "multipleTabs": "Varias pestañas",
"navigate.next.label": "Cambio siguiente",
"navigate.prev.label": "Cambio anterior",
+ "newWindow": "Nueva ventana",
"nextChangeIcon": "Icono de la acción de cambio siguiente en el editor de diferencias.",
"pin": "Anclar",
"pinEditor": "Anclar editor",
"previousChangeIcon": "Icono de la acción de cambio anterior en el editor de diferencias.",
"reopenWith": "Volver a abrir el editor con...",
+ "share": "Compartir",
"showOpenedEditors": "Mostrar editores abiertos",
- "showTrimWhitespace.label": "Mostrar las diferencias de espacios en blanco iniciales/finales",
"sideBySideEditor": "Editor de lado a lado",
+ "singleTab": "Pestaña única",
+ "splitAndMoveEditor": "Dividir y mover",
"splitDown": "Dividir Abajo",
"splitEditorDown": "Dividir Editor Abajo",
"splitEditorRight": "Dividir Editor Derecho",
@@ -3258,21 +4145,26 @@
"splitLeft": "Dividir Izquierda",
"splitRight": "Dividir Derecha",
"splitUp": "Dividir Arriba",
+ "swapDiffSides": "Intercambiar el lado izquierdo y derecho",
+ "tabBar": "Barra de pestañas",
"textDiffEditor": "Editor de diferencias de texto",
"textEditor": "Editor de texto",
+ "titleBar": "Barra de título",
"toggleLockGroup": "Bloquear grupo",
"togglePreviewMode": "Habilitar editores de vista previa",
"toggleSplitEditorInGroupLayout": "Alternar diseño",
"toggleWhitespace": "Icono de la acción de alternar espacio en blanco en el editor de diferencias.",
"unlockEditorGroup": "Desbloquear grupo",
"unlockGroupAction": "Desbloquear grupo",
+ "unmaximizeGroup": "Quitar el máximo de grupo",
"unpin": "Desanclar",
"unpinEditor": "Desanclar editor"
},
"vs/workbench/browser/parts/editor/editorActions": {
"clearButtonLabel": "&&Borrar",
"clearEditorHistory": "Borrar historial del editor",
- "clearRecentFiles": "Borrar abiertos recientemente",
+ "clearEditorHistoryWithoutConfirm": "Borrar historial del editor sin confirmación",
+ "clearRecentFiles": "Borrar abierto recientemente...",
"closeAllEditors": "Cerrar todos los editores",
"closeAllGroups": "Cerrar Todos los Grupos Editores",
"closeEditor": "Cerrar editor",
@@ -3283,6 +4175,8 @@
"confirmClearDetail": "Esta acción es irreversible.",
"confirmClearEditorHistoryMessage": "¿Desea borrar el historial de los editores abiertos recientemente?",
"confirmClearRecentsMessage": "¿Desea borrar todos los archivos y áreas de trabajo abiertos recientemente?",
+ "copyEditorGroupToNewWindow": "Copiar grupo de editores en nueva ventana",
+ "copyEditorToNewWindow": "Copiar editor en nueva ventana",
"duplicateActiveGroupDown": "Duplicar el grupo de editores abajo",
"duplicateActiveGroupLeft": "Duplicar el grupo de editores a la izquierda",
"duplicateActiveGroupRight": "Duplicar el grupo de editores a la derecha",
@@ -3309,14 +4203,22 @@
"joinAllGroups": "Combinar todos los grupos de Editor",
"joinTwoGroups": "Unir grupo de editores con el siguiente grupo",
"lastEditorInGroup": "Abrir el último editor del grupo",
- "maximizeEditor": "Maximizar grupo de editores y ocultar barras laterales",
+ "maximizeEditorHideSidebar": "Maximizar grupo de editores y ocultar barras laterales",
"miBack": "&&Atrás",
+ "miCopyEditorGroupToNewWindow": "&&Copiar grupo de editores en nueva ventana",
+ "miCopyEditorToNewWindow": "&&Copiar editor en nueva ventana",
"miForward": "&&Reenviar",
- "minimizeOtherEditorGroups": "Maximizar Grupo Editor",
+ "miMoveEditorGroupToNewWindow": "&&Mover grupo de editores en nueva ventana",
+ "miMoveEditorToNewWindow": "&&Mover editor en nueva ventana",
+ "miNewEmptyEditorWindow": "&&Nueva ventana de editor vacía",
+ "miRestoreEditorsToMainWindow": "&&Restaurar editores en la ventana principal",
+ "minimizeOtherEditorGroups": "Expandir grupo de editores",
+ "minimizeOtherEditorGroupsHideSidebar": "Expandir grupo de editores y ocultar barras laterales",
"moveActiveGroupDown": "Mover Grupo Editor Abajo",
"moveActiveGroupLeft": "Mover el grupo de editores a la izquierda",
"moveActiveGroupRight": "Mover el grupo de editores a la derecha",
"moveActiveGroupUp": "Mover Grupo Editor Arriba",
+ "moveEditorGroupToNewWindow": "Mover grupo de editores en nueva ventana",
"moveEditorLeft": "Mover el editor a la izquierda",
"moveEditorRight": "Mover el editor a la derecha",
"moveEditorToAboveGroup": "Mover editor al grupo anterior",
@@ -3324,6 +4226,7 @@
"moveEditorToFirstGroup": "Mover el Editor al Primer Grupo",
"moveEditorToLastGroup": "Mudar el Editor al Último Grupo ",
"moveEditorToLeftGroup": "Mudar el Editor al Grupo Izquierdo",
+ "moveEditorToNewWindow": "Mover editor en nueva ventana",
"moveEditorToNextGroup": "Mover editor al grupo siguiente",
"moveEditorToPreviousGroup": "Mover editor al grupo anterior",
"moveEditorToRightGroup": "Mudar el Editor al Grupo Derecho",
@@ -3340,10 +4243,11 @@
"navigatePreviousInNavigationLocations": "Ir a Anterior en Ubicaciones de navegación",
"navigateToLastEditLocation": "Ir a la última ubicación de edición",
"navigateToLastNavigationLocation": "Ir a la última ubicación de navegación",
- "newEditorAbove": "Nuevo Grupo Editor Arriba",
- "newEditorBelow": "Nuevo Grupo Editor Abajo",
- "newEditorLeft": "Nuevo Grupo Editor a Izquierda",
- "newEditorRight": "Nuevo Grupo Editor a Derecha",
+ "newEmptyEditorWindow": "Nueva ventana de editor vacía",
+ "newGroupAbove": "Nuevo Grupo Editor Arriba",
+ "newGroupBelow": "Nuevo Grupo Editor Abajo",
+ "newGroupLeft": "Nuevo Grupo Editor a Izquierda",
+ "newGroupRight": "Nuevo Grupo Editor a Derecha",
"nextEditorInGroup": "Abrir el siguiente editor del grupo",
"openNextEditor": "Abrir el editor siguiente",
"openNextRecentlyUsedEditor": "Abrir el siguiente editor recientemente usado",
@@ -3357,7 +4261,10 @@
"quickOpenPreviousRecentlyUsedEditor": "Quick Open del editor anterior usado recientemente",
"quickOpenPreviousRecentlyUsedEditorInGroup": "Quick Open del editor anterior usado recientemente en el grupo",
"reopenClosedEditor": "Volver a abrir el editor cerrado",
+ "reopenTextEditor": "Volver a abrir el editor con el editor de texto",
+ "restoreEditorsToMainWindow": "Restaurar editores en la ventana principal",
"revertAndCloseActiveEditor": "Revertir y cerrar el editor",
+ "reverting": "Revirtiendo editores...",
"showAllEditors": "Mostrar todos los editores por apariencia",
"showAllEditorsByMostRecentlyUsed": "Mostrar todos los editores desde el más reciente utilizado",
"showEditorsInActiveGroup": "Mostrar editores en grupo activo por el más reciente utilizado",
@@ -3375,19 +4282,21 @@
"splitEditorToNextGroup": "Dividir editor en el siguiente grupo",
"splitEditorToPreviousGroup": "Dividir editor en el grupo anterior",
"splitEditorToRightGroup": "Dividir editor en el grupo de la derecha",
+ "toggleEditorType": "Alternar tipo de editor",
"toggleEditorWidths": "Alternar tamaños de grupo de editor",
- "unpinEditor": "Desanclar editor",
- "workbench.action.reopenTextEditor": "Volver a abrir el editor con el editor de texto",
- "workbench.action.toggleEditorType": "Alternar tipo de editor"
+ "toggleMaximizeEditorGroup": "Alternar para maximizar grupo de editores",
+ "unmaximizeGroup": "Quitar el máximo de grupo",
+ "unpinEditor": "Desanclar editor"
},
"vs/workbench/browser/parts/editor/editorCommands": {
- "compare": "Comparar",
"editorCommand.activeEditorCopy.arg.description": "Propiedades de argumento:\r\n * \"to\": valor de cadena que indica dónde copiar.\r\n\t* 'value': valor numérico que indica cuántas posiciones o una posición absoluta para copiar.",
"editorCommand.activeEditorCopy.arg.name": "Argumento para copiar el editor activo",
"editorCommand.activeEditorCopy.description": "Copiar el editor activo por grupos",
"editorCommand.activeEditorMove.arg.description": "Argument Properties:\r\n\t* \"to\": Valor de cadena que indica hacia dónde se realiza el movimiento.\r\n\t* \"by\": Valor de cadena que indica la unidad del movimiento (por pestaña o por grupo).\r\n\t* \"value\": Valor numérico que indica, con una posición absoluta o con un número de posiciones, el alcance del movimiento.",
"editorCommand.activeEditorMove.arg.name": "Argumento para mover el editor activo",
"editorCommand.activeEditorMove.description": "Mover el editor activo por tabulaciones o grupos",
+ "editorGroupLayout.horizontal": "Horizontal",
+ "editorGroupLayout.vertical": "Vertical",
"focusLeftSideEditor": "Enfocar el primer lado en el editor activo",
"focusOtherSideEditor": "Enfocar otro lado en el editor activo",
"focusRightSideEditor": "Enfocar el segundo lado en el editor activo",
@@ -3395,16 +4304,19 @@
"lockEditorGroup": "Bloquar grupo de editores",
"splitEditorInGroup": "Dividir editor en grupo",
"toggleEditorGroupLock": "Alternar el bloqueo del grupo de editores",
- "toggleInlineView": "Alternar la vista alineada",
"toggleJoinEditorInGroup": "Alternar dividir editor en grupo",
"toggleSplitEditorInGroupLayout": "Alternar diseño del Editor dividido en grupo",
"unlockEditorGroup": "Desbloquear grupo de editores"
},
"vs/workbench/browser/parts/editor/editorConfiguration": {
- "editor.editorAssociations": "Configurar patrones globales para editores (por ejemplo, `\"*.hex\": \"hexEditor.hexEdit\"`). Estos tienen prioridad sobre el comportamiento predeterminado.",
+ "editor.editorAssociations": "Configure [patrones globales](https://aka.ms/vscode-glob-patterns) en editores (por ejemplo, '\"*.hex\": \"hexEditor.hexedit\"'). Tienen prioridad sobre el comportamiento predeterminado.",
+ "editorLargeFileSizeConfirmation": "Controla el tamaño mínimo de un archivo en MB antes de pedir confirmación al abrir en el editor. Tenga en cuenta que esta configuración puede no aplicarse a todos los entornos y tipos de editor.",
+ "interactiveWindow": "Ventana interactiva",
+ "livePreview": "Vista previa dinámica",
"markdownPreview": "Vista previa de Markdown",
- "workbench.editor.autoLockGroups": "Si un editor que coincide con uno de los tipos enumerados se abre como el primero en un grupo de editores y hay más de un grupo abierto, el grupo se bloquea automáticamente. Los grupos bloqueados solo se usarán para abrir editores cuando se elijan explícitamente mediante gestos del usuario (por ejemplo, arrastrar y colocar), pero no de forma predeterminada. Por lo tanto, es menos probable que el editor activo de un grupo bloqueado sea reemplazado accidentalmente por otro editor.",
- "workbench.editor.defaultBinaryEditor": "El editor predeterminado para los archivos detectados como binarios. Si no se define, se presentará al usuario con un selector."
+ "simpleBrowser": "Explorador simple",
+ "workbench.editor.autoLockGroups": "Si un editor que coincide con uno de los tipos de la lista se abre como el primero de un grupo de editores y hay más de un grupo abierto, el grupo se bloquea automáticamente. Los grupos bloqueados solo serán usados para abrir editores cuando sean elegidos explícitamente por un gesto del usuario (por ejemplo, arrastrar y soltar), pero no por defecto. En consecuencia, es menos probable que el editor activo de un grupo bloqueado sea sustituido accidentalmente por otro editor.",
+ "workbench.editor.defaultBinaryEditor": "El editor predeterminado para los archivos detectados como binarios. Si no se define, será presentado al usuario un selector."
},
"vs/workbench/browser/parts/editor/editorDropTarget": {
"dropIntoEditorPrompt": "Mantenga __{0}__ para colocarlo en el editor"
@@ -3413,22 +4325,43 @@
"ariaLabelGroupActions": "Acciones del grupo de editores vacías",
"emptyEditorGroup": "{0} (vacío) ",
"groupAriaLabel": "Grupo de editores {0}",
- "groupLabel": "Grupo {0}"
- },
- "vs/workbench/browser/parts/editor/editorPanes": {
- "cancel": "Cancelar",
- "editorOpenErrorDialog": "No se puede abrir '{0}'",
- "ok": "Aceptar"
+ "groupAriaLabelLong": "{0}: {1}de grupo de editores",
+ "groupLabel": "Grupo {0}",
+ "groupLabelLong": "{0}: {1}de grupo",
+ "moveErrorDetails": "Pruebe a guardar o revertir primero las ediciones y luego inténtelo de nuevo."
},
- "vs/workbench/browser/parts/editor/editorPlaceholder": {
+ "vs/workbench/browser/parts/editor/editorGroupWatermark": {
+ "editorLineHighlight": "Color de primer plano de las etiquetas en la marca de agua del editor.",
+ "watermark.findInFiles": "Buscar en archivos",
+ "watermark.newUntitledFile": "Nuevo archivo de texto sin título",
+ "watermark.openChat": "Abrir chat",
+ "watermark.openFile": "Abrir archivo",
+ "watermark.openFileFolder": "Abrir archivo o carpeta",
+ "watermark.openFolder": "Abrir carpeta",
+ "watermark.openRecent": "Abrir recientes",
+ "watermark.openSettings": "Abrir configuración",
+ "watermark.quickAccess": "Ir al archivo",
+ "watermark.showCommands": "Mostrar todos los comandos",
+ "watermark.startDebugging": "Iniciar depuración",
+ "watermark.toggleTerminal": "Alternar terminal"
+ },
+ "vs/workbench/browser/parts/editor/editorPanes": {
+ "editorOpenErrorDialog": "No se puede abrir '{0}'",
+ "ok": "&&ACEPTAR"
+ },
+ "vs/workbench/browser/parts/editor/editorParts": {
+ "groupLabel": "Ventana {0}"
+ },
+ "vs/workbench/browser/parts/editor/editorPlaceholder": {
"errorEditor": "Editor de errores",
"manageTrust": "Administrar la confianza del área de trabajo",
"requiresFolderTrustText": "El archivo no se muestra en el editor porque no se ha concedido confianza a la carpeta.",
"requiresWorkspaceTrustText": "El archivo no se muestra en el editor porque no se ha concedido confianza al área de trabajo.",
"retry": "Volver a intentarlo",
+ "showLogs": "Mostrar registros",
"trustRequiredEditor": "Se requiere confianza del área de trabajo",
"unavailableResourceErrorEditorText": "No se pudo abrir el editor porque no se encontró el archivo.",
- "unknownErrorEditorTextWithError": "No se pudo abrir el editor debido a un error inesperado: {0}",
+ "unknownErrorEditorTextWithError": "No se pudo abrir el editor debido a un error inesperado. Consulte el registro para obtener más detalles.",
"unknownErrorEditorTextWithoutError": "No se pudo abrir el editor debido a un error inesperado."
},
"vs/workbench/browser/parts/editor/editorQuickAccess": {
@@ -3442,6 +4375,8 @@
"autoDetect": "Detectar automáticamente",
"changeEncoding": "Cambiar codificación de archivo",
"changeEndOfLine": "Cambiar secuencia de fin de línea",
+ "changeLanguageMode.arg.name": "Nombre del modo de idioma al que se va a cambiar.",
+ "changeLanguageMode.description": "Cambiar el modo de idioma del editor de texto activo.",
"changeMode": "Cambiar modo de lenguaje",
"columnSelectionModeEnabled": "Selección de columnas",
"configureAssociationsExt": "Configurar asociación de archivos para '{0}'...",
@@ -3457,6 +4392,7 @@
"guessedEncoding": "Adivinado por el contenido",
"indentConvert": "convertir archivo",
"indentView": "cambiar vista",
+ "inputModeOvertype": "OVR",
"languageDescription": "({0}): lenguaje configurado",
"languageDescriptionConfigured": "({0})",
"languagesPicks": "lenguajes (identificador)",
@@ -3471,12 +4407,11 @@
"pickEndOfLine": "Seleccionar secuencia de fin de línea",
"pickLanguage": "Seleccionar modo de lenguaje",
"pickLanguageToConfigure": "Seleccionar modo de lenguaje para asociar con '{0}'",
+ "reopen": "Descartar cambios y volver a abrir",
"reopenWithEncoding": "Volver a abrir con Encoding",
+ "reopenWithEncodingDetail": "Esto descartará los cambios no guardados.",
+ "reopenWithEncodingWarning": "¿Quiere revertir el editor de texto activo y volver a abrirlo con una codificación diferente?",
"saveWithEncoding": "Guardar con Encoding",
- "screenReaderDetected": "Lector de pantalla optimizado",
- "screenReaderDetectedExplanation.answerNo": "No",
- "screenReaderDetectedExplanation.answerYes": "Sí",
- "screenReaderDetectedExplanation.question": "¿Está utilizando un lector de pantalla para trabajar con VS Code? (el ajuste de líneas se deshabilita cuando se utiliza un lector de pantalla)",
"selectEOL": "Seleccionar secuencia de fin de línea",
"selectEncoding": "Seleccionar Encoding",
"selectIndentation": "Seleccione la sangría",
@@ -3484,37 +4419,57 @@
"showLanguageExtensions": "Buscar extensiones de Marketplace para '{0}'...",
"singleSelection": "Lín. {0}, col. {1}",
"singleSelectionRange": "Lín. {0}, Col. {1} ({2} seleccionada)",
+ "spacesAndTabsSize": "Espacios: {0} (Tamaño de tabulación: {1})",
"spacesSize": "Espacios: {0}",
"status.editor.columnSelectionMode": "Modo selección de columnas",
+ "status.editor.enableInsertMode": "Habilitar modo de inserción",
"status.editor.encoding": "Codificación del editor",
"status.editor.eol": "Editor final de línea",
"status.editor.indentation": "Sangría del editor",
"status.editor.info": "Información del archivo",
"status.editor.mode": "Lenguaje del editor",
- "status.editor.screenReaderMode": "Modo lector de pantalla",
"status.editor.selection": "Selección de editor",
"status.editor.tabFocusMode": "Modo de accesibilidad",
"tabFocusModeEnabled": "Tabulación Mueve el Foco",
"tabSize": "Tamaño de tabulación: {0}"
},
- "vs/workbench/browser/parts/editor/sideBySideEditor": {
- "sideBySideEditor": "Editor de lado a lado"
+ "vs/workbench/browser/parts/editor/editorTabsControl": {
+ "ariaLabelEditorActions": "Acciones de editor",
+ "draggedEditorGroup": "{0} (+ {1})"
},
- "vs/workbench/browser/parts/editor/tabsTitleControl": {
+ "vs/workbench/browser/parts/editor/multiEditorTabsControl": {
"ariaLabelTabActions": "Acciones de pestaña"
},
+ "vs/workbench/browser/parts/editor/sideBySideEditor": {
+ "sideBySideEditor": "Editor de lado a lado"
+ },
"vs/workbench/browser/parts/editor/textCodeEditor": {
"textEditor": "Editor de texto"
},
"vs/workbench/browser/parts/editor/textDiffEditor": {
+ "fileTooLargeForHeapErrorWithSize": "Al menos un archivo no se muestra en el editor de comparación de texto porque es muy grande ({0}).",
+ "fileTooLargeForHeapErrorWithoutSize": "Al menos un archivo no se muestra en el editor de comparación de texto porque es muy grande.",
"textDiffEditor": "Editor de diferencias de texto"
},
"vs/workbench/browser/parts/editor/textEditor": {
"editor": "Editor"
},
- "vs/workbench/browser/parts/editor/titleControl": {
- "ariaLabelEditorActions": "Acciones de editor",
- "draggedEditorGroup": "{0} (+ {1})"
+ "vs/workbench/browser/parts/globalCompositeBar": {
+ "accounts": "Cuentas",
+ "accountsViewBarIcon": "Icono de cuentas en la barra de vistas.",
+ "authProviderUnavailable": "{0} no está disponible",
+ "hideAccounts": "Ocultar cuentas",
+ "loading": "Cargando...",
+ "manage": "Administrar",
+ "manage profile": "Administrar {0} (perfil)",
+ "manageDynamicAuthProviders": "Administrar proveedores de autenticación dinámica...",
+ "manageTrustedExtensions": "Administrar extensiones de confianza",
+ "manageTrustedMCPServers": "Administrar servidores MCP de confianza",
+ "signOut": "Cerrar sesión"
+ },
+ "vs/workbench/browser/parts/notifications/notificationAccessibleView": {
+ "clearNotification": "Borrar notificación",
+ "notification.accessibleViewSrc": "{0} Origen: {1}"
},
"vs/workbench/browser/parts/notifications/notificationsActions": {
"clearAllIcon": "Icono de la acción de borrar todo en las notificaciones.",
@@ -3523,15 +4478,17 @@
"clearNotifications": "Limpiar todas las notificaciones",
"collapseIcon": "Icono de la acción de contraer en las notificaciones.",
"collapseNotification": "Contraer notificación",
+ "configureDoNotDisturbMode": "Configurar No molestar...",
"configureIcon": "Icono de la acción de configuración en las notificaciones.",
- "configureNotification": "Configurar la Notificación",
+ "configureNotification": "Más acciones...",
"copyNotification": "Copiar texto",
"doNotDisturbIcon": "Icono de la acción de silenciar todo en las notificaciones.",
"expandIcon": "Icono de la acción de expandir en las notificaciones.",
"expandNotification": "Expandir notificación",
"hideIcon": "Icono de la acción de ocultar en las notificaciones.",
"hideNotificationsCenter": "Ocultar notificaciones",
- "toggleDoNotDisturbMode": "Alternar modo No molestar"
+ "toggleDoNotDisturbMode": "Alternar modo No molestar",
+ "toggleDoNotDisturbModeBySource": "Alternar modo No molestar por origen..."
},
"vs/workbench/browser/parts/notifications/notificationsAlerts": {
"alertErrorMessage": "Error: {0}",
@@ -3539,22 +4496,32 @@
"alertWarningMessage": "Advertencia: {0}"
},
"vs/workbench/browser/parts/notifications/notificationsCenter": {
+ "moreSources": "Más...",
"notifications": "Notificaciones",
"notificationsCenterWidgetAriaLabel": "Centro de notificaciones",
"notificationsEmpty": "No hay notificaciones nuevas",
- "notificationsToolbar": "Acciones del centro de notificaciones"
+ "notificationsToolbar": "Acciones del centro de notificaciones",
+ "turnOffNotifications": "Deshabilitar el modo No molestar",
+ "turnOnNotifications": "Habilitar el modo No molestar"
},
"vs/workbench/browser/parts/notifications/notificationsCommands": {
+ "acceptNotificationPrimaryAction": "Aceptar la acción principal de notificación",
"clearAllNotifications": "Limpiar todas las notificaciones",
"focusNotificationToasts": "Centrarse en la notificación del sistema",
"hideNotifications": "Ocultar notificaciones",
"notifications": "Notificaciones",
+ "selectSources": "Seleccionar orígenes desde los que habilitar todas las notificaciones",
"showNotifications": "Mostrar notificaciones",
- "toggleDoNotDisturbMode": "Alternar modo No molestar"
+ "toggleDoNotDisturbMode": "Alternar modo No molestar",
+ "toggleDoNotDisturbModeBySource": "Alternar modo No molestar por origen..."
},
"vs/workbench/browser/parts/notifications/notificationsList": {
+ "notificationAccessibleViewHint": "Inspeccione la respuesta en la vista accesible con {0}",
+ "notificationAccessibleViewHintNoKb": "Inspeccione la respuesta en la vista accesible mediante el comando Abrir vista accesible, que actualmente no se puede desencadenar mediante el enlace de teclado.",
"notificationAriaLabel": "{0}, notificación",
+ "notificationAriaLabelHint": "{0}, notificación, {1}",
"notificationWithSourceAriaLabel": "{0}, origen: {1}, notificación",
+ "notificationWithSourceAriaLabelHint": "{0}, origen: {1}, notificación, {2}",
"notificationsList": "Lista de notificaciones"
},
"vs/workbench/browser/parts/notifications/notificationsStatus": {
@@ -3578,7 +4545,21 @@
"vs/workbench/browser/parts/notifications/notificationsViewer": {
"executeCommand": "Haga clic en para ejecutar el comando \"{0}\"",
"notificationActions": "Acciones de notificaciones",
- "notificationSource": "Origen: {0}."
+ "notificationSource": "Origen: {0}.",
+ "turnOffNotifications": "Desactivar la información y las notificaciones de advertencia de '{0}'",
+ "turnOnNotifications": "Activar todas las notificaciones de '{0}'"
+ },
+ "vs/workbench/browser/parts/paneCompositeBar": {
+ "auxiliarybar": "Barra lateral secundaria",
+ "moveToMenu": "Mover a",
+ "panel": "Panel",
+ "resetLocation": "Restablecer ubicación",
+ "sidebar": "Barra lateral principal"
+ },
+ "vs/workbench/browser/parts/paneCompositePart": {
+ "moreActions": "Más Acciones...",
+ "pane.emptyMessage": "Arrastre una vista aquí para mostrarla.",
+ "views": "Vistas"
},
"vs/workbench/browser/parts/panel/panelActions": {
"alignPanel": "Alinear panel",
@@ -3591,18 +4572,16 @@
"alignPanelRight": "Establecer alineación del panel a la derecha",
"alignPanelRightShort": "Derecha",
"closeIcon": "Icono para cerrar un panel.",
- "closePanel": "Cerrar panel",
- "closeSecondarySideBar": "Cerrar barra lateral secundaria",
+ "closePanel": "Ocultar panel",
"focusPanel": "Centrarse en el panel",
- "hidePanel": "Ocultar panel",
"maximizeIcon": "Icono para maximizar un panel.",
"maximizePanel": "Maximizar el tamaño del panel",
- "miPanel": "&&Panel",
- "miPanelNoMnemonic": "Panel",
+ "miTogglePanelMnemonic": "&&Panel",
"minimizePanel": "Restaurar el tamaño del panel",
"movePanelToSecondarySideBar": "Mover las vistas del panel a la barra lateral secundaria",
"moveSidePanelToPanel": "Mover vistas de barra lateral secundaria al panel",
"nextPanelView": "Siguiente vista de panel",
+ "openAndClosePanel": "Abrir, mostrar y cerrar u ocultar panel",
"panelMaxNotSupported": "La maximización del panel solo se admite cuando está alineado en el centro.",
"positionPanel": "Posición del panel",
"positionPanelBottom": "Mover el panel hacia abajo",
@@ -3611,8 +4590,9 @@
"positionPanelLeftShort": "Izquierda",
"positionPanelRight": "Mover el panel a la derecha",
"positionPanelRightShort": "Derecha",
+ "positionPanelTop": "Mover panel a la parte superior",
+ "positionPanelTopShort": "Arriba",
"previousPanelView": "Vista del panel anterior",
- "restoreIcon": "Icono para restaurar un panel.",
"toggleMaximizedPanel": "Alternar el panel maximizado",
"togglePanel": "Alternar panel",
"togglePanelOffIcon": "Icono para desactivar el panel cuando está activado.",
@@ -3620,37 +4600,34 @@
"togglePanelVisibility": "Alternar visibilidad del panel"
},
"vs/workbench/browser/parts/panel/panelPart": {
+ "align panel": "Alinear panel",
"hidePanel": "Ocultar panel",
- "moreActions": "Más Acciones...",
- "panel.emptyMessage": "Arrastre una vista aquí para mostrarla.",
- "pinned view containers": "Personalizaciones de visibilidad de entradas de panel",
- "resetLocation": "Restablecer ubicación"
+ "panel position": "Posición del panel",
+ "showIcons": "Mostrar iconos",
+ "showLabels": "Mostrar etiquetas"
},
"vs/workbench/browser/parts/sidebar/sidebarActions": {
+ "closeSidebar": "Cerrar la barra lateral principal",
"focusSideBar": "Centrarse en la barra lateral principal"
},
+ "vs/workbench/browser/parts/sidebar/sidebarPart": {
+ "toggleActivityBar": "Alternar visibilidad de la barra de actividades"
+ },
"vs/workbench/browser/parts/statusbar/statusbarActions": {
"focusStatusBar": "Colocar foco sobre la barra de estado",
- "hide": "Ocultar \"{0}\""
- },
- "vs/workbench/browser/parts/statusbar/statusbarModel": {
- "statusbar.hidden": "Personalizaciones de visibilidad de entradas de la barra de estado"
+ "hide": "Ocultar \"{0}\"",
+ "manageExtension": "Administrar extensión"
},
"vs/workbench/browser/parts/statusbar/statusbarPart": {
"hideStatusBar": "Ocultar barra de estado"
},
"vs/workbench/browser/parts/titlebar/commandCenterControl": {
- "all": "Mostrar modos de búsqueda...",
- "commandCenter-activeBackground": "Color de fondo activo del centro de comandos",
- "commandCenter-activeForeground": "Color de primer plano activo del centro de comandos",
- "commandCenter-background": "Color de fondo del centro de comandos",
- "commandCenter-border": "Color del borde del centro de comandos",
- "commandCenter-foreground": "Color de primer plano del centro de comandos",
"label.dfl": "Buscar",
"label1": "{0} {1}",
"label2": "{0} {1}",
"title": "Buscar {0} ({1}) — {2}",
- "title2": "Buscar {0} — {1}"
+ "title2": "Buscar {0} — {1}",
+ "title3": "Centro de comandos"
},
"vs/workbench/browser/parts/titlebar/menubarControl": {
"DownloadingUpdate": "Descargando actualización...",
@@ -3669,29 +4646,53 @@
"mSelection": "&&Selección",
"mTerminal": "&&Terminal",
"mView": "&&Ver",
- "menubar.customTitlebarAccessibilityNotification": "El soporte de accesibilidad está habilitado para usted. Para que la experiencia sea más accesible, se recomienda el estilo de la barra de título personalizado.",
+ "menubar.customTitlebarAccessibilityNotification": "El soporte de accesibilidad está habilitado para usted. Para que la experiencia sea más accesible, se recomienda el estilo de menú personalizado.",
"restartToUpdate": "Reiniciar para &&actualizar"
},
+ "vs/workbench/browser/parts/titlebar/titlebarActions": {
+ "accounts": "Cuentas",
+ "hideCustomTitleBar": "Ocultar barra de título personalizada",
+ "hideCustomTitleBarInFullScreen": "Ocultar barra de título personalizada en pantalla completa",
+ "manage": "Administrar",
+ "showCustomTitleBar": "Mostrar barra de título personalizada",
+ "toggle.commandCenter": "Centro de comandos",
+ "toggle.commandCenterDescription": "Alternar visibilidad del Centro de comandos en la barra de título",
+ "toggle.customTitleBar": "Barra de título personalizada",
+ "toggle.editorActions": "Acciones de editor",
+ "toggle.hideCustomTitleBar": "Ocultar barra de título personalizada",
+ "toggle.hideCustomTitleBarInFullScreen": "Ocultar barra de título personalizada en pantalla completa",
+ "toggle.layout": "Controles de diseño",
+ "toggle.layoutDescription": "Alternar visibilidad de los controles de diseño en la barra de título",
+ "toggle.navigation": "Controles de navegación",
+ "toggle.navigationDescription": "Alternar visibilidad de los controles de navegación en la barra de título"
+ },
"vs/workbench/browser/parts/titlebar/titlebarPart": {
- "focusTitleBar": "Enfocar barra de título",
- "toggle.commandCenter": "Command Center",
- "toggle.layout": "Layout Controls"
+ "ariaLabelTitleActions": "Acciones de título",
+ "focusTitleBar": "Enfocar barra de título"
},
"vs/workbench/browser/parts/titlebar/windowTitle": {
"devExtensionWindowTitlePrefix": "[Host de desarrollo de la extensión]",
"userIsAdmin": "[Administrador]",
"userIsSudo": "[Superusuario]"
},
+ "vs/workbench/browser/parts/views/checkbox": {
+ "checked": "Activadas",
+ "unchecked": "Sin activar"
+ },
"vs/workbench/browser/parts/views/treeView": {
"collapseAll": "Contraer todo",
"command-error": "Error al ejecutar el comando {1}: {0}. Probablemente esté provocado por la extensión que contribuye a {1}.",
"no-dataprovider": "No hay ningún proveedor de datos registrado que pueda proporcionar datos de la vista.",
"refresh": "Actualizar",
- "treeView.enableCollapseAll": "Indica si la vista de árbol con el identificador {0} habilita la opción para contraer todo.",
+ "treeView.enableCollapseAll": "Si la vista de árbol con id. {0} permite contraer todo.",
"treeView.enableRefresh": "Indica si la vista de árbol con el identificador {0} habilita la actualización.",
"treeView.toggleCollapseAll": "Indica si la opción para contraer todo se ha activado para la vista de árbol con el identificador {0}."
},
+ "vs/workbench/browser/parts/views/viewFilter": {
+ "more filters": "Más filtros..."
+ },
"vs/workbench/browser/parts/views/viewPane": {
+ "viewAccessibilityHelp": "Use Alt+F1 para obtener ayuda de accesibilidad {0}",
"viewPaneContainerCollapsedIcon": "Icono de un contenedor de panel de vista contraído.",
"viewPaneContainerExpandedIcon": "Icono de un contenedor de panel de vista expandido.",
"viewToolbarAriaLabel": "acciones de {0}"
@@ -3704,55 +4705,84 @@
"views": "Vistas",
"viewsMove": "Mover vistas"
},
- "vs/workbench/browser/parts/views/viewsService": {
- "focus view": "Foco en vista {0}",
- "resetViewLocation": "Restablecer ubicación",
- "show view": "Mostrar {0}",
- "toggle view": "Alternar {0}"
- },
"vs/workbench/browser/quickaccess": {
"inQuickOpen": "Si el foco del teclado está dentro del control de apertura rápida"
},
- "vs/workbench/browser/workbench": {
- "loaderErrorNative": "No se pudo cargar un archivo requerido. Reinicie la aplicación para intentarlo de nuevo. Detalles: {0}"
+ "vs/workbench/browser/web.main": {
+ "reset": "Restablecer datos de usuario",
+ "reset user data message": "¿Desea restablecer los datos (configuración, enlaces de teclado, extensiones, fragmentos de código y estado de la interfaz de usuario) y volver a cargar?"
+ },
+ "vs/workbench/browser/window": {
+ "closeWindowButtonLabel": "&&Cerrar ventana",
+ "closeWindowMessage": "¿Está seguro de que desea cerrar la ventana?",
+ "doNotAskAgain": "No volver a hacerme esta pregunta",
+ "exitButtonLabel": "&&Salida",
+ "openExternalDialogButtonInstall.v3": "&&Instalar",
+ "openExternalDialogButtonRetry.v2": "&&Volver a intentarlo",
+ "openExternalDialogDetail.v2": "Iniciamos {0} en el equipo.\r\n\r\nSi {1} no se ha iniciado, vuelva a intentarlo o instálelo a continuación.",
+ "openExternalDialogDetailNoInstall": "Iniciamos {0} en el equipo.\r\n\r\nSi {1} no se ha iniciado, vuelva a intentarlo a continuación.",
+ "openExternalDialogTitle": "Todo listo. Puede cerrar esta pestaña ahora.",
+ "quitButtonLabel": "&&Salir",
+ "quitMessage": "¿Está seguro de que quiere salir?",
+ "quitMessageMac": "¿Está seguro de que desea salir?",
+ "reload": "&&Recargar",
+ "retry": "&&Reintentar",
+ "shutdownError": "Se ha producido un error inesperado que requiere recargar esta página.",
+ "shutdownErrorDetail": "El área de trabajo se eliminó inesperadamente durante la ejecución.",
+ "unableToOpenExternal": "El explorador ha bloqueado la apertura de una nueva pestaña o ventana. Presione \"Reintentar\" para volver a intentarlo.",
+ "unableToOpenWindowDetail": "Permita los elementos emergentes de este sitio web en su [configuración del explorador]({0})."
},
"vs/workbench/browser/workbench.contribution": {
"activeEditorLong": "\"${activeEditorLong}\": la ruta de acceso completa del archivo (p. ej., /Users/Development/myFolder/myFileFolder/myFile.txt).",
"activeEditorMedium": "`${activeEditorMedium}`: la ruta de acceso de archivo relativa a la carpeta de área de trabajo (p. ej. myFolder/myFileFolder/myFile.txt)",
"activeEditorShort": "`${activeEditorShort}`: el nombre de archivo (p. ej., myFile.txt).",
+ "activeEditorState": "'${activeEditorState}': proporciona información sobre el estado del editor activo (por ejemplo, modificado). Se anexará de forma predeterminada cuando esté en modo de lector de pantalla con {0} habilitado.",
"activeFolderLong": "`${activeFolderLong}`: la ruta de acceso completa de la carpeta que contiene el archivo (p. ej., /Users/Development/myFolder/myFileFolder).",
"activeFolderMedium": "`${activeFolderMedium}`: la ruta de acceso de la carpeta que contiene el archivo, relativa a la carpeta del área de trabajo (p. ej., myFolder/myFileFolder).",
"activeFolderShort": "`${activeFolderShort}`: el nombre de la carpeta que contiene el archivo (p. ej., myFileFolder).",
- "activityBarIconClickBehavior": "Controla el comportamiento de clics de un icono de la barra de actividades en el área de trabajo.",
- "activityBarVisibility": "Controla la visibilidad de la barra de actividades en el área de trabajo.",
+ "activeRepositoryBranchName": "'${activeRepositoryBranchName}': el nombre de la rama activa en el repositorio activo (por ejemplo, main).",
+ "activeRepositoryName": "'${activeRepositoryName}': el nombre del repositorio activo (por ejemplo, vscode).",
+ "activityBarIconClickBehavior": "Controla el comportamiento de hacer clic en un icono de barra de actividad en el área de trabajo. Este valor se omite cuando {0} no se establece en {1}.",
+ "activityBarLocation": "Controla la ubicación de la barra de actividad en relación con las barras laterales principal y secundaria.",
+ "alwaysShowEditorActions": "Controla si mostrar siempre las acciones del editor, incluso cuando el grupo de editores no está activo.",
"appName": "\"${appName}\": por ejemplo, VS Code.",
+ "askChatLocation": "Controla dónde la paleta de comandos debería hacer preguntas de chat.",
+ "askChatLocation.chatView": "Haga preguntas sobre el chat en la vista de chat.",
+ "askChatLocation.quickChat": "Haga preguntas sobre el chat en el chat rápido.",
+ "browser": "Configure el explorador que se usará para abrir vínculos http o https externamente. Puede ser el nombre del explorador ('edge', 'chrome', 'firefox') o una ruta de acceso absoluta al ejecutable del explorador. Si no se establece, se usará el valor predeterminado del sistema.",
"centeredLayoutAutoResize": "Controla si el diseño centrado debe cambiar de tamaño automáticamente al ancho máximo cuando se abre más de un grupo. Cuando solo haya un grupo abierto, volverá al ancho original centrado.",
+ "centeredLayoutDynamicWidth": "Controla si el diseño centrado intenta mantener un ancho constante cuando se cambia el tamaño de la ventana.",
"closeEmptyGroups": "Controla el comportamiento de los grupos de editores vacíos cuando se cierra la última pestaña del grupo. Si esta opción está habilitada, los grupos vacíos se cierran automáticamente. Si está deshabilitada, los grupos vacíos siguen formando parte de la cuadrícula.",
"closeOnFileDelete": "Controla si los editores que muestran un archivo que se abrió durante la sesión deben cerrarse automáticamente cuando otro proceso elimina el archivo o lo cambia de nombre. Si se deshabilita esta opción y se da alguna de estas circunstancias, el editor abierto se mantiene. Tenga en cuenta que, al eliminar desde la aplicación, siempre se cierra el editor y que los editores con cambios sin guardar nunca se cerrarán para conservar los datos.",
"closeOnFocusLost": "Controla si Quick Open debe cerrarse automáticamente cuando pierde el foco.",
"commandHistory": "Controla el número de comandos utilizados recientemente que se mantendrán en el historial de la paleta de comandos. Establezca el valor a 0 para desactivar el historial de comandos.",
- "confirmBeforeClose": "Controla si se muestra un cuadro de diálogo de confirmación antes de cerrar la ventana o salir de la aplicación.",
+ "confirmBeforeClose": "Controla si se muestra un cuadro de diálogo de confirmación antes de cerrar una ventana o salir de la aplicación.",
"confirmBeforeCloseWeb": "Controla si debe mostrarse un cuadro de diálogo de confirmación antes de cerrar la ventana o la pestaña del explorador. Tenga en cuenta que, aunque se habilite, los exploradores pueden decidir cerrar una pestaña o una ventana sin confirmación y que esta configuración es solo una sugerencia que puede no funcionar en todos los casos.",
+ "customEditorLabelDescriptionExample": "Ejemplo: `\"**/static/**/*.html\": \"${filename} - ${dirname} (${extname})\"` representará un archivo `WORKSPACE_FOLDER/static/folder/file.html` as `file - folder (html)`.",
"customMenuBarAltFocus": "Controla si la barra de menús se enfocará pulsando la tecla Alt. Esta configuración no tiene ningún efecto para alternar la barra de menús con la tecla Alt.",
"decorations.badges": "Controla si las decoraciones de archivo del editor deben usar distintivos.",
"decorations.colors": "Controla si las decoraciones de archivo del editor deben usar colores. ",
"dirty": "\"${dirty}\": un indicador de cuándo el editor activo tiene cambios sin guardar.",
- "editorOpenPositioning": "Controla dónde se abren los editores. Seleccione \"left\" o \"right\" para abrir los editores a la izquierda o la derecha del que está activo actualmente. Seleccione \"first\" o \"last\" para abrir los editores con independencia del que está activo.",
- "editorTabCloseButton": "Controla la posición de los botones de cierre de pestañas del editor o los deshabilita cuando se establece en \"off\". Este valor se omite cuando \"#workbench.editor.showTabs#\" está deshabilitado.",
+ "doubleClickTabToToggleEditorGroupSizes": "Controla cómo se cambia el tamaño del grupo de editores al hacer doble clic en una pestaña. Este valor se omite cuando {0} no se establece en {1}.",
+ "dragToOpenWindow": "Controla si los editores se pueden arrastrar fuera de la ventana para abrirlos en una nueva ventana. Mantenga presionada la tecla \"ALT\" mientras arrastra para alternar esta opción dinámicamente.",
+ "editorActionsLocation": "Controla dónde se muestran las acciones del editor.",
+ "editorOpenPositioning": "Controla dónde se abren los editores. Seleccione {0} o {1} para abrir los editores a la izquierda o la derecha del que está activo actualmente. Seleccione {2} o {3} para abrir los editores con independencia del que está activo.",
+ "enableDefaultVisibilityInOldWorkspace": "Habilita la visibilidad predeterminada de la barra lateral secundaria en áreas de trabajo antiguas, antes de que existiera soporte técnico para la visibilidad predeterminada.",
"enableMenuBarMnemonics": "Controla si los menús principales se pueden abrir a través de los accesos directos de la tecla Alt. La desactivación de las teclas de acceso permite vincular estos accesos directos de tecla Alt a los comandos del editor en su lugar.",
- "enablePreview": "Controla si los editores abiertos se muestran como editores de vista previa. Los editores de vista previa no permanecen abiertos, se reutilizan hasta que se establecen explícitamente para mantenerse abiertos (por ejemplo, mediante doble clic o edición) y muestran los nombres de archivo en cursiva.",
- "enablePreviewFromCodeNavigation": "Controla si los editores permanecen en vista previa cuando se inicia la navegación de código desde ellos. Los editores en vista previa no se mantienen abiertos y se reutilizan hasta que se establece explícitamente que se mantengan abiertos (por ejemplo, mediante doble clic o edición). Este valor se omite cuando \"#workbench.editor.enablePreview#\" está deshabilitado.",
- "enablePreviewFromQuickOpen": "Controla si los editores abiertos desde Quick Open se muestran como editores de vista previa. Los editores de vista previa no permanecen abiertos y se reutilizan hasta que se establecen explícitamente para mantenerse abiertos (por ejemplo, mediante doble clic o edición). Este valor se omite cuando \"#workbench.editor.enablePreview#\" está deshabilitado.",
- "exclude": "Configure [patrones de glob](https://code.visualstudio.com/docs/editor/codebasics#_advanced-search-options) para excluir archivos del historial de archivos local. El cambio de esta configuración no afecta a las entradas existentes del historial de archivos locales.",
- "focusRecentEditorAfterClose": "Controla si las pestañas se cierran en el orden de uso más reciente o de izquierda a derecha.",
+ "enableNaturalLanguageSearch": "Controla si la paleta de comandos debe incluir comandos similares. Debe tener instalada una extensión que proporcione compatibilidad con lenguaje natural.",
+ "enablePreview": "Controla si se usa el modo de vista previa al abrir los editores. Hay un máximo de un editor en modo de vista previa por grupo de editores. Este editor muestra su nombre de archivo en cursiva en su etiqueta de título o pestaña y en la vista Abrir editores. Su contenido se reemplazará por el siguiente editor abierto en modo de vista previa. Al realizar un cambio en un editor de modo de vista previa, se conservará, al igual que ocurre al hacer doble clic en su etiqueta o en la opción \"Mantener abierto\" en el menú contextual de la etiqueta. Al abrir un archivo desde el Explorador con un doble clic, se conserva el editor inmediatamente.",
+ "enablePreviewFromCodeNavigation": "Controla si los editores permanecen en vista previa cuando se inicia la navegación de código desde ellos. Los editores en vista previa no se mantienen abiertos y se reutilizan hasta que se establece explícitamente que se mantengan abiertos (mediante doble clic o edición). Este valor se omite cuando {0} no se establece en {1}.",
+ "enablePreviewFromQuickOpen": "Controla si los editores abiertos desde Quick Open se muestran como editores de vista previa. Los editores en vista previa no se mantienen abiertos y se reutilizan hasta que se establece explícitamente que se mantengan abiertos (mediante doble clic o edición). Cuando esté habilitada, mantenga presionada la tecla Ctrl antes de la selección para abrir un editor sin vista previa. Este valor se omite cuando {0} no se establece en {1}.",
+ "exclude": "Configure rutas de acceso o [patrones globales](https://aka.ms/vscode-glob-patterns) para excluir archivos del historial de archivos local. Los patrones globales siempre se evalúan en relación con la ruta de acceso de la carpeta del área de trabajo, a menos que sean rutas de acceso absolutas. Cambiar esta configuración no tiene ningún efecto en las entradas del historial de archivos locales existentes.",
+ "focusRecentEditorAfterClose": "Controla si los editores se cierran en el orden de uso más reciente o de izquierda a derecha.",
+ "focusedView": "'${focusedView}': el nombre de la vista que está en foco actualmente.",
"folderName": "`${folderName}`: nombre de la carpeta del área de trabajo que contiene el archivo (p. ej., myFolder).",
"folderPath": "`${folderPath}`: ruta de acceso de archivo de la carpeta del área de trabajo que contiene el archivo (p. ej., /Users/Development/myFolder).",
"fontAliasing": "Controla el método de alias (aliasing) de la fuente en el área de trabajo.",
- "highlightModifiedTabs": "Controla si se dibuja un borde superior en las pestañas de los editores que tienen cambios sin guardar. Este valor se omite cuando \"#workbench.editor.showTabs#\" está deshabilitado.",
- "layoutControlEnabled": "Controla si los controles de diseño de la barra de título personalizada están habilitados a través de {0}.",
- "layoutControlEnabledDeprecation": "Esta configuración ha quedado en desuso en favor de {0}",
+ "highlightModifiedTabs": "Controla si se dibuja un borde superior en las pestañas de los editores que tienen cambios sin guardar. Este valor se omite cuando {0} no se establece en {1}.",
+ "layoutControlEnabled": "Controla si el control de diseño se muestra en la barra de título personalizada. Esta configuración solo tiene efecto cuando{0} no se establece en {1}.",
+ "layoutControlEnabledWeb": "Controla si se muestra el control de diseño en la barra de título.",
"layoutControlType": "Controla si el control de diseño de la barra de título personalizada se muestra como un solo botón de menú o con varios botones de alternancia de interfaz de usuario.",
- "layoutControlTypeDeprecation": "Esta configuración ha quedado en desuso en favor de {0}",
"layoutcontrol.type.both": "Muestra la lista desplegable y los botones de alternancia.",
"layoutcontrol.type.menu": "Muestra un solo botón con una lista desplegable de opciones de diseño.",
"layoutcontrol.type.toggles": "Muestra varios botones para alternar la visibilidad de los paneles y de la barra lateral.",
@@ -3766,44 +4796,60 @@
"menuBarVisibility.mac": "Controlar la visibilidad de la barra de menús. Una configuración de “alternar” significa que la barra de menús está oculta y al ejecutar “Menú de aplicación de foco” se mostrará. Una configuración de “compacto” moverá el menú a la barra lateral.",
"mergeWindow": "Configure un intervalo en segundos durante el cual la última entrada del historial local de archivo se reemplazará por la entrada que se va a agregar. Esto ayuda a reducir el número total de entradas que se agregan, por ejemplo, cuando el guardado automático está habilitado. Esta configuración solo se aplica a las entradas que tienen el mismo origen. Cambiar esta configuración no tiene ningún efecto en las entradas del historial de archivos locales existentes.",
"mouseBackForwardToNavigate": "Habilita el uso de los botones cuatro y cinco del mouse para los comandos 'Volver' y 'Avanzar'.",
+ "navigationControlEnabled": "Controla si el control de navegación se muestra en la barra de título personalizada. Esta configuración solo tiene efecto cuando{0} no se establece en {1}.",
+ "navigationControlEnabledWeb": "Controla si se muestra el control de navegación en la barra de título.",
"navigationScope": "Controla el ámbito de navegación del historial en los editores para comandos como 'Volver' y 'Avanzar'.",
"openDefaultKeybindings": "Controla si la configuración de apertura de enlaces de teclado también abre un editor que muestra todos los enlaces de teclado predeterminados.",
"openDefaultSettings": "Controla si la configuración de apertura también abre un editor que muestra todos los valores predeterminados.",
"openFilesInNewWindow": "Controla si los archivos deben abrirse en una nueva ventana cuando se usa una línea de comandos o un cuadro de diálogo de archivo.\r\nTenga en cuenta que aún puede haber casos en los que este valor se ignore (por ejemplo, al usar la opción de la línea de comandos `--new-window` o `--reuse-window`).",
"openFilesInNewWindowMac": "Controla si los archivos deben abrirse en una nueva ventana cuando se usa una línea de comandos o un cuadro de diálogo de archivo.\r\nTenga en cuenta que aún puede haber casos en los que este valor se ignore (por ejemplo, al usar la opción de la línea de comandos `--new-window` o `--reuse-window`).",
"openFoldersInNewWindow": "Controla si las carpetas deben abrirse en una ventana nueva o reemplazar la última ventana activa.\r\nTenga en cuenta que aún puede haber casos en los que este valor se ignore (por ejemplo, al usar la opción de la línea de comandos \"--new-window\" o \"--reuse-window\"). ",
- "panelDefaultLocation": "Controla la ubicación predeterminada del panel (terminal, consola de depuración, salida, problemas) en un área de trabajo nueva. Puede mostrarse en la parte inferior, derecha o izquierda del área del editor.",
+ "panelDefaultLocation": "Controla la ubicación predeterminada del panel (terminal, consola de depuración, salida, problemas) en un área de trabajo nueva. Puede mostrarse en la parte inferior, superior, derecha o izquierda del área del editor.",
"panelOpensMaximized": "Controla si el panel se abre maximizado. Puede abrirse maximizado siempre, nunca o abrirse en el último estado en el que se encontraba antes de cerrarse.",
+ "panelShowLabels": "Controla si los elementos de actividad del título del panel se muestran como etiqueta o icono.",
"perEditorGroup": "Controla si el límite del máximo de editores abiertos debe aplicarse por grupo de editores o en todos los grupos de editores.",
- "pinnedTabSizing": "Controla el dimensionamiento de las pestañas del editor ancladas. Las pestañas ancladas se ordenan al principio de todas las pestañas abiertas y normalmente no se cierran hasta que se desanclan. Este valor se omite cuando \"#workbench.editor.showTabs#\" está deshabilitado.",
+ "pinnedTabSizing": "Controla el tamaño de las pestañas del editor ancladas. Las pestañas ancladas se ordenan al principio de todas las pestañas abiertas y normalmente no se cierran hasta que se desanclan. Este valor se omite cuando {0} no se establece en {1}.",
"preserveInput": "Controla si la última entrada especificada en la paleta de comandos debe restaurarse al abrir la próxima vez.",
+ "problems.visibility": "Controla si los problemas son visibles en el editor y el área de trabajo.",
+ "profileName": "`${profileName}`: nombre del perfil en el que se abre el área de trabajo (por ejemplo, Ciencia de datos (perfil)). Se omite si se usa el perfil predeterminado.",
"remoteName": "\"${remoteName}\": por ejemplo, SSH",
"restoreViewState": "Restaura el último estado de vista del editor (por ejemplo, la posición de desplazamiento) al volver a abrir los editores después de cerrarlos. El estado de vista del editor se almacena por grupo de editores y se descarta cuando se cierra un grupo. Use el valor {0} para usar el último estado de vista conocido en todos los grupos de editores si no se encuentra ningún estado de vista anterior para un grupo de editores.",
"revealIfOpen": "Controla si un editor se muestra en alguno de los grupos visibles cuando se abre. Si se deshabilita esta opción, un editor preferirá abrirse en el grupo de editores activo en ese momento. Si se habilita, se mostrará un editor ya abierto en lugar de volver a abrirse en el grupo de editores activo. Tenga en cuenta que hay casos en los que esta opción se omite, por ejemplo, cuando se fuerza la apertura de un editor en un grupo específico o junto al grupo activo actual.",
- "rootName": "\"${rootName}\": nombre del área de trabajo o la carpeta abierta (por ejemplo, miCarpeta o miÁreaDeTrabajo).",
+ "rootName": "`${rootName}`: nombre del área de trabajo con el nombre remoto opcional y el indicador de área de trabajo si procede (por ejemplo, myFolder, myRemoteFolder [SSH] o myWorkspace (Workspace)).",
+ "rootNameShort": "'${rootNameShort}': nombre acortado del área de trabajo sin sufijos (por ejemplo, myFolder, myRemoteFolder o myWorkspace).",
"rootPath": "\"${rootPath}\": ruta de acceso de archivo del área de trabajo o la carpeta abierta (por ejemplo, /Users/Development/myWorkspace).",
- "scrollToSwitchTabs": "Controla si las pestañas se abrirán o no al desplazarse sobre ellas. De forma predeterminada, las pestañas solo se muestran cuando se desplaza sobre ellas, pero no se abren. Puede mantener presionada la tecla Mayús mientras se desplaza para cambiar el comportamiento en esa duración. Este valor se omite cuando \"#workbench.editor.showTabs#\" está deshabilitado.",
+ "scrollToSwitchTabs": "Controla si las pestañas se abrirán o no al desplazarse sobre ellas. De forma predeterminada, las pestañas solo se muestran cuando se desplaza sobre ellas, pero no se abren. Puede mantener presionada la tecla Mayús mientras se desplaza para cambiar el comportamiento en esa duración. Este valor se omite cuando {0} no se establece en {1}.",
+ "secondarySideBarDefaultVisibility": "Controla la visibilidad predeterminada de la barra lateral secundaria en áreas de trabajo o ventanas vacías que se abren por primera vez.",
+ "secondarySideBarShowLabels": "Controla si los elementos de actividad del título de la barra lateral secundaria se muestran como etiqueta o icono. Esta configuración solo tiene efecto cuando {0} no se establece en {1}.",
"separator": "`${separator}`: un separador condicional (\" - \") que solo se muestra cuando está rodeado por variables con valores o texto estático.",
"settings.editor.desc": "Determina el editor de configuración que se va a usar de forma predeterminada.",
"settings.editor.json": "Use el editor de archivos JSON.",
"settings.editor.ui": "Use el editor de la interfaz de usuario de configuración.",
- "sharedViewState": "Conserva el estado de vista del editor más reciente (por ejemplo, la posición de desplazamiento) en todos los grupos de editor y lo restaura si no se encuentra ningún estado de vista del editor específico para el grupo de editores.",
- "showEditorTabs": "Controla si los editores abiertos se deben mostrar o no en pestañas.",
+ "settings.showAISearchToggle": "Controla si se muestra el interruptor de resultados de la búsqueda de IA en la barra de búsqueda del editor de configuración después de realizar una búsqueda y una vez que los resultados de búsqueda de IA están disponibles.",
+ "sharedViewState": "Conserva el estado de la vista del editor más reciente (como la posición de desplazamiento) en todos los grupos de editores y lo restaura si no se encuentra un estado de vista del editor específico para el grupo de editores.",
+ "showAskInChat": "Controla si la paleta de comandos muestra la opción \"Preguntar en el chat\" en la parte inferior.",
+ "showEditorTabs": "Controla si los editores abiertos deben mostrarse como pestañas individuales, una sola pestaña grande o si no se debe mostrar el área de título.",
"showIcons": "Controla si los editores abiertos deben mostrarse o no con un icono. Requiere que también se habilite un tema de icono de archivo.",
+ "showTabIndex": "Cuando esté habilitado, mostrará el índice de pestaña. Este valor se omite cuando {0} no se establece en {1}.",
"sideBarLocation": "Controla la ubicación de la barra lateral principal y la barra de actividad. Pueden mostrarse a la izquierda o a la derecha del área de trabajo. La barra lateral secundaria se mostrará en el lado opuesto del área de trabajo.",
- "sideBySideDirection": "Controla la dirección predeterminada de los editores que se abren en paralelo (por ejemplo, desde el explorador). De forma predeterminada, los editores se abren a la derecha del que está activo. Si se cambia a \"down\", los editores se abren debajo del que está activo.",
+ "sideBySideDirection": "Controla la dirección predeterminada de los editores que se abren en paralelo (por ejemplo, desde el Explorer). De forma predeterminada, los editores se abren a la derecha del que está activo. Si se cambia a \"down\", los editores se abren debajo del que está activo. Esto también afecta a la acción de dividir el editor en la barra de herramientas del editor.",
"splitInGroupLayout": "Controla el diseño para cuando un editor se divide en un grupo de editores para que sea vertical u horizontal.",
"splitOnDragAndDrop": "Controla si los grupos de editores pueden dividirse a partir de las operaciones de arrastrar y colocar al colocar un editor o archivo en los bordes del área del editor.",
"splitSizing": "Controla el tamaño de los grupos de editores al dividirlos.",
"statusBarVisibility": "Controla la visibilidad de la barra de estado en la parte inferior del área de trabajo.",
+ "suggestCommands": "Controla si la paleta de comandos debe tener una lista de comandos usados habitualmente.",
+ "swipeToNavigate": "Navega entre archivos abiertos deslizando horizontalmente con tres dedos. Tenga en cuenta que en Preferencias del sistema > Panel táctil > Más gestos debe estar activada la opción \"Deslizar con dos o tres dedos\".",
+ "tabActionLocation": "Controla la posición de los botones de acción de las pestañas del editor (cerrar, desanclar). Este valor se omite cuando {0} no se establece en {1}.",
"tabDescription": "Controla el formato de etiqueta de un editor.",
"tabScrollbarHeight": "Controla la altura de las barras de desplazamiento utilizadas para las pestañas y las rutas de navegación en el área de título del editor.",
- "tabSizing": "Controla el dimensionamiento de las pestañas del editor. Este valor se omite cuando \"#workbench.editor.showTabs#\" está deshabilitado.",
- "untitledHint": "Controla si la sugerencia de texto sin título debe estar visible en el editor.",
+ "tabSizing": "Controla el tamaño de las pestañas del editor. Este valor se omite cuando {0} no se establece en {1}.",
+ "tips.enabled": "Si esta opción está habilitada, se muestran sugerencias de referencia cuando no hay ningún editor abierto.",
+ "titleScrollbarVisibility": "Controla la visibilidad de las barras de desplazamiento utilizadas para las pestañas y las rutas de navegación en el área de título del editor.",
"untitledLabelFormat": "Controla el formato de la etiqueta para un editor sin título.",
"useSplitJSON": "Controla si se utiliza el editor de JSON de división al editar la configuración como JSON.",
"viewVisibility": "Controla la visibilidad de las acciones en el encabezado de la vista. Las acciones en el encabezado de la vista pueden ser siempre visibles, o solo cuando la vista es enfocada o apuntada.",
- "window.commandCenter": "Muestra el iniciador de comandos junto con el título de la ventana. Esta configuración solo tiene efecto cuando {0} se establece en {1}.",
+ "window.commandCenter": "Muestra el iniciador de comandos junto con el título de la ventana. Esta configuración solo tiene efecto cuando{0} no se establece en {1}.",
+ "window.commandCenterWeb": "Muestra el iniciador de comandos junto con el título de la ventana.",
"window.confirmBeforeClose.always": "Pedir siempre confirmación.",
"window.confirmBeforeClose.always.web": "Intente pedir confirmación siempre. Tenga en cuenta que los exploradores aún pueden decidir cerrar una pestaña o una ventana sin confirmación.",
"window.confirmBeforeClose.keyboardOnly": "Pedir confirmación solo si se usó un enlace de teclado.",
@@ -3811,7 +4857,8 @@
"window.confirmBeforeClose.never": "Nunca pedir confirmación explícitamente.",
"window.confirmBeforeClose.never.web": "No solicitar nunca confirmación explícitamente, a menos que la pérdida de datos sea inminente.",
"window.menuBarVisibility.classic": "El menú se muestra en la parte superior de la ventana y solo se oculta en el modo de pantalla completa.",
- "window.menuBarVisibility.compact": "El menú se muestra como un botón compacto en la barra lateral. Este valor se ignora cuando {0} es {1}.",
+ "window.menuBarVisibility.compact": "El menú se muestra como un botón compacto en la barra lateral. Este valor se omite cuando {0} es {1} y {2} es {3} o {4}.",
+ "window.menuBarVisibility.compact.web": "El menú se muestra como un botón compacto en la barra lateral.",
"window.menuBarVisibility.hidden": "El menú está siempre oculto.",
"window.menuBarVisibility.toggle": "El menú está oculto, pero puede mostrarse en la parte superior de la ventana con la tecla Alt.",
"window.menuBarVisibility.toggle.mac": "El menú está oculto, pero puede mostrarse en la parte superior de la ventana mediante la ejecución del comando \"Focus Application Menu\".",
@@ -3824,11 +4871,29 @@
"window.openFoldersInNewWindow.off": "Las carpetas reemplazarán la última ventana activa.",
"window.openFoldersInNewWindow.on": "Las carpetas se abrirán en una ventana nueva.",
"window.titleSeparator": "Separador utilizado por {0}.",
- "windowConfigurationTitle": "Ventana",
- "windowTitle": "Controla el icono de ventana según el editor activo. Las variables se sustituyen según el contexto:",
- "workbench.activityBar.iconClickBehavior.focus": "Enfoca la barra lateral si el elemento en el que se hace clic ya está visible.",
- "workbench.activityBar.iconClickBehavior.toggle": "Oculta la barra lateral si el elemento en el que se hace clic ya está visible.",
+ "windowTitle": "Controla el título de la ventana en función del contexto actual, como el área de trabajo abierta o el editor activo. Las variables se sustituyen en función del contexto:",
+ "workbench.activityBar.iconClickBehavior.focus": "Centre la barra lateral principal si el elemento en el que se ha hecho clic ya está visible.",
+ "workbench.activityBar.iconClickBehavior.toggle": "Oculte la barra lateral principal si el elemento en el que se ha hecho clic ya está visible.",
+ "workbench.activityBar.location.bottom": "Mostrar la barra de actividad en la parte inferior de las barras laterales principal y secundaria.",
+ "workbench.activityBar.location.default": "Mostrar la barra de actividad en el lado de la barra lateral principal y en la parte superior de la barra lateral secundaria.",
+ "workbench.activityBar.location.hide": "Ocultar la barra de actividad en las barras laterales principal y secundaria.",
+ "workbench.activityBar.location.top": "Muestra la barra de actividad en la parte superior de las barras laterales principal y secundaria.",
+ "workbench.editor.doubleClickTabToToggleEditorGroupSizes.expand": "El grupo de editores ocupa tanto espacio como sea posible al hacer que todos los demás grupos de editores sean lo más pequeños posible.",
+ "workbench.editor.doubleClickTabToToggleEditorGroupSizes.maximize": "El resto de grupos de editores están ocultos y el grupo de editores actual está maximizado para ocupar todo el área del editor.",
+ "workbench.editor.doubleClickTabToToggleEditorGroupSizes.off": "No se cambia el tamaño de ningún grupo de editores al hacer doble clic en una pestaña.",
+ "workbench.editor.editorActionsLocation.default": "Muestra las acciones del editor en la barra de título de la ventana cuando {0} se establece en {1}. De lo contrario, las acciones del editor se muestran en la barra de pestañas del editor.",
+ "workbench.editor.editorActionsLocation.hidden": "No se muestran las acciones del editor.",
+ "workbench.editor.editorActionsLocation.titleBar": "Muestra las acciones del editor en la barra de título de la ventana. Si {0} se establece en {1}, se ocultan las acciones del editor.",
+ "workbench.editor.empty.hint": "Controla si la sugerencia de texto del editor vacío debe estar visible en el editor.",
"workbench.editor.historyBasedLanguageDetection": "Habilita el uso del historial del editor en la detección de idioma. Esto hace que la detección de idioma automática favorezca los idiomas abiertos recientemente y permite que funcione con entradas más pequeñas.",
+ "workbench.editor.label.dirname": "`${dirname}`: nombre de la carpeta en la que se encuentra el archivo (por ejemplo, `WORKSPACE_FOLDER/folder/file.txt -> folder`).",
+ "workbench.editor.label.enabled": "Controla si se deben aplicar las etiquetas del editor de área de trabajo personalizadas.",
+ "workbench.editor.label.extname": "`${extname}`: la extensión de archivo (por ejemplo, `WORKSPACE_FOLDER/folder/file.txt -> txt`).",
+ "workbench.editor.label.filename": "'${filename}': nombre del archivo sin la extensión de archivo (por ejemplo, `WORKSPACE_FOLDER/folder/file.txt -> file`).",
+ "workbench.editor.label.nthdirname": "`${dirname(N)}`: nombre de la enésima carpeta principal en la que se encuentra el archivo (por ejemplo: `N=2: WORKSPACE_FOLDER/static/folder/file.txt -> WORKSPACE_FOLDER`). Las carpetas se pueden seleccionar desde el principio de la ruta de acceso mediante números negativos (por ejemplo: `N=-1: WORKSPACE_FOLDER/folder/file.txt -> WORKSPACE_FOLDER`). Si el __elemento__ es una ruta de acceso de patrón absoluta, la primera carpeta ('N=-1') hace referencia a la primera carpeta de la ruta de acceso absoluta; de lo contrario, corresponde a la carpeta del área de trabajo.",
+ "workbench.editor.label.nthextname": "`${extname(N)}`: la enésima extensión del archivo separada por '.' (por ejemplo: `N=2: WORKSPACE_FOLDER/folder/file.ext1.ext2.ext3 -> ext1`). La extensión se puede elegir desde el principio de la extensión mediante números negativos (por ejemplo: `N=-1: WORKSPACE_FOLDER/folder/file.ext1.ext2.ext3 -> ext2`).",
+ "workbench.editor.label.patterns": "Controla la representación de la etiqueta del editor. Cada __Item__ es un patrón que coincide con una ruta de acceso de archivo. Se admiten rutas de acceso de archivo relativas y absolutas. La ruta de acceso relativa debe incluir el WORKSPACE_FOLDER (por ejemplo, `WORKSPACE_FOLDER/src/**.tsx` o `*/src/**.tsx`). Los patrones absolutos deben comenzar con `/`. En caso de que coincidan varios patrones, se seleccionará la ruta de coincidencia más larga. Cada __Value__ es la plantilla del editor representado cuando el __Item__ coincide. Las variables se sustituyen en función del contexto:",
+ "workbench.editor.label.template": "La plantilla que se debe representar cuando el patrón coincide. Puede incluir las variables ${dirname}, ${filename} y ${extname}.",
"workbench.editor.labelFormat.default": "Mostrar el nombre del archivo. Cuando las pestañas están habilitadas y dos archivos tienen el mismo nombre en un grupo, se agregan las secciones distintivas de la ruta de acceso de cada archivo. Cuando las pestañas están deshabilitadas, se muestra la carpeta del área de trabajo si el editor está activo.",
"workbench.editor.labelFormat.long": "Mostrar el nombre del archivo seguido de la ruta de acceso absoluta.",
"workbench.editor.labelFormat.medium": "Muestre el nombre del archivo seguido de su ruta de acceso relativa a la carpeta del área de trabajo.",
@@ -3840,18 +4905,37 @@
"workbench.editor.pinnedTabSizing.compact": "Una pestaña anclada se mostrará en un formato compacto con solo un icono o una primera letra del nombre del editor.",
"workbench.editor.pinnedTabSizing.normal": "Una pestaña anclada hereda la apariencia de pestañas no ancladas.",
"workbench.editor.pinnedTabSizing.shrink": "Una pestaña fijada se reduce a un tamaño fijo compacto que muestra partes del nombre del editor.",
+ "workbench.editor.pinnedTabsOnSeparateRow": "Cuando está habilitado, muestra las pestañas ancladas en una fila independiente encima del resto de pestañas. Este valor se omite cuando {0} no se establece en {1}.",
"workbench.editor.preferBasedLanguageDetection": "Cuando se habilita, se dará más prioridad a un modelo de detección de idioma que tenga en cuenta el historial del editor.",
- "workbench.editor.showLanguageDetectionHints": "Cuando se habilite, mostrará una corrección rápida de la barra de estado cuando el lenguaje del editor no coincida con el lenguaje del contenido detectado.",
+ "workbench.editor.preventPinnedEditorClose": "Controla si los editores anclados deben cerrarse cuando se usa el botón secundario del mouse o el teclado para cerrar.",
+ "workbench.editor.preventPinnedEditorClose.always": "Impedir siempre que se cierre el editor anclado al usar el botón central del mouse o el teclado.",
+ "workbench.editor.preventPinnedEditorClose.never": "No impedir nunca el cierre de un editor anclado.",
+ "workbench.editor.preventPinnedEditorClose.onlyKeyboard": "Impedir que se cierre el editor anclado al usar el teclado.",
+ "workbench.editor.preventPinnedEditorClose.onlyMouse": "Impedir que se cierre el editor anclado al usar el botón central del mouse.",
+ "workbench.editor.showLanguageDetectionHints": "Cuando se activa, muestra una barra de estado de Corrección rápida cuando el idioma del editor no coincide con el idioma del contenido detectado.",
"workbench.editor.showLanguageDetectionHints.editors": "Mostrar en los editores de texto sin título",
"workbench.editor.showLanguageDetectionHints.notebook": "Mostrar en los editores del bloc de notas",
+ "workbench.editor.showTabs.multiple": "Cada editor se muestra como una pestaña en el área de título del editor.",
+ "workbench.editor.showTabs.none": "No se muestra el área de título del editor.",
+ "workbench.editor.showTabs.single": "El editor activo se muestra como una sola pestaña grande en el área de título del editor.",
"workbench.editor.splitInGroupLayoutHorizontal": "Los editores se colocan de izquierda a derecha.",
"workbench.editor.splitInGroupLayoutVertical": "Los editores se colocan de arriba abajo.",
+ "workbench.editor.splitSizingAuto": "Divide el grupo de editores activo en partes iguales, a menos que todos los grupos de editores ya estén en partes iguales. En ese caso, divide todos los grupos de editores en partes iguales.",
"workbench.editor.splitSizingDistribute": "Divide todos los grupos de editores en partes iguales.",
"workbench.editor.splitSizingSplit": "Divide el grupo de editor activo en partes iguales.",
+ "workbench.editor.tabActionCloseVisibility": "Controla la visibilidad del botón de la acción de cerrar pestaña.",
+ "workbench.editor.tabActionUnpinVisibility": "Controla la visibilidad del botón de acción de desanclar pestaña.",
+ "workbench.editor.tabHeight": "Controla la altura de las pestañas del editor. También se aplica a la barra de control de título cuando {0} no está establecido en {1}.",
"workbench.editor.tabSizing.fit": "Mantenga siempre un tamaño de pestaña suficientemente grande para mostrar la etiqueta del editor completa.",
+ "workbench.editor.tabSizing.fixed": "Haga que todas las pestañas tengan el mismo tamaño, a la vez que les permite reducir su tamaño cuando el espacio disponible no sea suficiente para mostrar todas las pestañas a la vez.",
"workbench.editor.tabSizing.shrink": "Permita que se reduzca el tamaño de las pestañas cuando el espacio disponible no es suficiente para mostrarlas todas a la vez.",
+ "workbench.editor.tabSizingFixedMaxWidth": "Controla el ancho máximo de las pestañas cuando el tamaño {0} se establece en {1}.",
+ "workbench.editor.tabSizingFixedMinWidth": "Controla el ancho mínimo de las pestañas cuando el tamaño {0} se establece en {1}.",
"workbench.editor.titleScrollbarSizing.default": "El tamaño predeterminado.",
"workbench.editor.titleScrollbarSizing.large": "Aumenta el tamaño, por lo que se puede capturar más fácilmente con el mouse.",
+ "workbench.editor.titleScrollbarVisibility.auto": "La barra de desplazamiento horizontal estará visible solo cuando sea necesario.",
+ "workbench.editor.titleScrollbarVisibility.hidden": "La barra de desplazamiento horizontal estará siempre oculta.",
+ "workbench.editor.titleScrollbarVisibility.visible": "La barra de desplazamiento horizontal estará siempre visible.",
"workbench.editor.untitled.labelFormat.content": "El nombre del archivo sin título se deriva del contenido de su primera línea a menos que tenga una ruta de acceso de archivo asociada. Se recurrirá al nombre en caso de que la línea esté vacía o no contenga caracteres de palabra.",
"workbench.editor.untitled.labelFormat.name": "El nombre del archivo sin título no se deriva del contenido del archivo.",
"workbench.fontAliasing.antialiased": "Suaviza las fuentes en píxeles, en lugar de subpíxeles. Puede hacer que las fuentes se vean más claras en general.",
@@ -3860,39 +4944,54 @@
"workbench.fontAliasing.none": "Deshabilita el suavizado de fuentes. El texto se muestra con bordes nítidos irregulares.",
"workbench.hover.delay": "Controla el retardo en milisegundos tras el cual se muestra el texto al mantener el puntero para los elementos del área de trabajo (por ejemplo, ciertos elementos de vista de árbol proporcionados por una extensión). Puede que los elementos ya visibles requieran una actualización antes de reflejar este cambio de configuración.",
"workbench.panel.opensMaximized.always": "Maximice siempre el panel al abrirlo.",
- "workbench.panel.opensMaximized.never": "No maximice nunca el panel al abrirlo. El panel se abrirá sin maximizar.",
+ "workbench.panel.opensMaximized.never": "No maximice nunca el panel al abrirlo.",
"workbench.panel.opensMaximized.preserve": "Abra el panel en el estado en el que se encontraba antes de cerrarlo.",
+ "workbench.panel.output": "Vista de salida",
"workbench.quickOpen.preserveInput": "Controla si debe restaurarse la última entrada escrita en Quick Open al abrirlo la próxima vez.",
"workbench.reduceMotion": "Controla si el área de trabajo debe representarse con menos animaciones.",
"workbench.reduceMotion.auto": "Representación con movimiento reducido basado en la configuración del sistema operativo.",
"workbench.reduceMotion.off": "No representar con movimiento reducido",
"workbench.reduceMotion.on": "Representar siempre con movimiento reducido.",
- "wrapTabs": "Controla si las tabulaciones deben ajustarse en varias líneas al superar el espacio disponible o si debe mostrarse una barra de desplazamiento en su lugar. Este valor se omite cuando \"#workbench.editor.showTabs#\" está deshabilitado.",
+ "workbench.secondarySideBar.defaultVisibility.hidden": "La barra lateral secundaria está oculta de forma predeterminada.",
+ "workbench.secondarySideBar.defaultVisibility.maximized": "La barra lateral secundaria está visible y maximizada de forma predeterminada.",
+ "workbench.secondarySideBar.defaultVisibility.maximizedInWorkspace": "La barra lateral secundaria está visible de forma predeterminada si se abre un área de trabajo.",
+ "workbench.secondarySideBar.defaultVisibility.visible": "La barra lateral secundaria es visible de forma predeterminada.",
+ "workbench.secondarySideBar.defaultVisibility.visibleInWorkspace": "La barra lateral secundaria está visible de forma predeterminada si se abre un área de trabajo.",
+ "workbench.view.showQuietly": "Si una extensión solicita que se muestre una vista oculta, muestre en su lugar un indicador de barra de estado en el que se pueda hacer clic.",
+ "wrapTabs": "Controla si las tabulaciones deben ajustarse en varias líneas al superar el espacio disponible o si debe mostrarse una barra de desplazamiento en su lugar. Este valor se omite cuando {0} no se establece en \"{1}\".",
"zenMode.centerLayout": "Controla si al activar el modo zen se centra también el diseño.",
"zenMode.fullScreen": "Controla si al activar el modo zen se pone también el área de trabajo en modo de pantalla completa.",
"zenMode.hideActivityBar": "Controla si al activar el modo zen se oculta también la barra de actividades en la parte izquierda o derecha del área de trabajo.",
"zenMode.hideLineNumbers": "Controla si encender modo Zen esconde también los números de línea del editor.",
"zenMode.hideStatusBar": "Controla si la activación del modo zen también oculta la barra de estado en la parte inferior del área de trabajo.",
- "zenMode.hideTabs": "Controla si la activación del modo zen también oculta las pestañas del área de trabajo.",
"zenMode.restore": "Controla si una ventana debe restaurarse a modo zen si se cerró en modo zen.",
+ "zenMode.showTabs": "Controla si la activación del modo zen debe mostrar varias pestañas del editor, una sola pestaña del editor u ocultar completamente el área de título del editor.",
+ "zenMode.showTabs.multiple": "Cada editor se muestra como una pestaña en el área de título del editor.",
+ "zenMode.showTabs.none": "No se muestra el área de título del editor.",
+ "zenMode.showTabs.single": "El editor activo se muestra como una sola pestaña grande en el área de título del editor.",
"zenMode.silentNotifications": "Controla si las notificaciones del modo no molestar deben estar habilitadas en modo zen. Si es true, solo se mostrarán las notificaciones de error.",
"zenModeConfigurationTitle": "Modo zen"
},
- "vs/workbench/common/actions": {
- "developer": "Desarrollador",
- "help": "Ayuda",
- "preferences": "Preferencias",
- "test": "Probar",
- "view": "Ver"
- },
"vs/workbench/common/configuration": {
+ "active window": "Ventana activa",
+ "applicationConfigurationTitle": "Aplicación",
+ "newWindowProfile": "Especifica el perfil que se va a usar al abrir una nueva ventana. Si se proporciona un nombre de perfil, la nueva ventana usará ese perfil. Si no se proporciona ningún nombre de perfil, la nueva ventana usará el perfil de la ventana activa o el perfil predeterminado si no existe ninguna ventana activa.",
+ "problemsConfigurationTitle": "Problemas",
+ "security.allowedUNCHosts": "Conjunto de nombres de host UNC (sin barra diagonal o inversa inicial o final, por ejemplo \"192.168.0.1\" en \"mi-server\") que se permiten sin confirmación del usuario. Si se está accediendo a un host UNC que no está permitido a través de esta configuración o no se ha confirmado mediante la confirmación del usuario, se producirá un error y se detendrá la operación. Se requiere un reinicio al cambiar esta configuración. Obtenga más información sobre esta configuración en https://aka.ms/vscode-windows-unc.",
+ "security.allowedUNCHosts.patternErrorMessage": "Los nombres de host UNC no deben contener barras diagonales inversas.",
+ "security.restrictUNCAccess": "Si se habilita, solo permite el acceso a los nombres de host UNC permitidos por la configuración '#security.allowedUNCHosts#' o después de la confirmación del usuario. Obtenga más información sobre esta configuración en https://aka.ms/vscode-windows-unc.",
+ "securityConfigurationTitle": "Seguridad",
+ "windowConfigurationTitle": "Ventana",
"workbenchConfigurationTitle": "Workbench"
},
"vs/workbench/common/contextkeys": {
+ "SelectedEditorsInGroupFileOrUntitledResourceContextKey": "Si todos los editores seleccionados de un grupo tienen o no un archivo o un recurso sin título asociado",
"activeAuxiliary": "El identificador del panel auxiliar activo",
+ "activeCompareEditorCanSwap": "Si el editor de comparación activo puede intercambiar lados",
"activeEditor": "Identificador del editor activo",
"activeEditorAvailableEditorIds": "Identificadores de editores disponibles que se pueden usar para el editor activo",
"activeEditorCanRevert": "Indica si el editor activo puede revertirse.",
+ "activeEditorCanToggleReadonly": "Si el editor activo puede alternar entre ser de solo lectura o de escritura",
"activeEditorGroupEmpty": "Si el grupo de editores activo está vacío",
"activeEditorGroupIndex": "Índice del grupo de editores activo",
"activeEditorGroupLast": "Si el grupo de editores activo es el último grupo",
@@ -3906,19 +5005,29 @@
"activePanel": "Identificador del panel activo",
"activeViewlet": "Identificador del viewlet activo",
"auxiliaryBarFocus": "Si la barra auxiliar tiene el foco del teclado",
+ "auxiliaryBarMaximized": "Si la barra auxiliar está maximizada",
"auxiliaryBarVisible": "Si la barra auxiliar está visible",
"bannerFocused": "Si la pancarta tiene el foco del teclado",
"dirtyWorkingCopies": "Si hay copias en funcionamiento con cambios sin guardar",
- "editorAreaVisible": "Si el área del editor está visible",
"editorIsOpen": "Si un editor está abierto",
+ "editorPartEditorGroupMaximized": "EditorPart tiene un grupo maximizado",
+ "editorPartMultipleEditorGroups": "Si hay varios grupos de editores abiertos en un EditorPart",
"editorTabsVisible": "Si las pestañas del editor son visibles",
+ "embedderIdentifier": "Identificador del incrustador según el servicio de producto, si se define uno",
"focusedView": "Identificador de la vista que tiene el foco del teclado",
"groupEditorsCount": "Número de grupos de editores abiertos",
+ "inAutomation": "Si VS Code se ejecuta en prueba de humo o automatización",
"inZenMode": "Si está habilitado el modo zen",
- "isCenteredLayout": "Si está habilitado el diseño centrado",
+ "isAuxiliaryWindow": "La ventana es una ventana auxiliar",
+ "isAuxiliaryWindowFocusedContext": "Si se enfoca una ventana auxiliar",
+ "isCompactTitleBar": "La barra de título está en modo compacto",
"isFileSystemResource": "Si un proveedor del sistema de archivos respalda el recurso",
- "isFullscreen": "Si la ventana está en modo de pantalla completa",
+ "isFullscreen": "Si la ventana principal está en modo de pantalla completa",
+ "isMainEditorCenteredLayout": "Si el diseño centrado está habilitado para el editor principal",
+ "isWindowAlwaysOnTop": "Si la ventana siempre está visible",
+ "mainEditorAreaVisible": "Si el área del editor de la ventana principal está visible",
"multipleEditorGroups": "Si hay varios grupos de editores abiertos",
+ "multipleEditorsSelectedInGroup": "Si se han seleccionado varios editores en un grupo de editores",
"notificationCenterVisible": "Si el centro de notificaciones está visible",
"notificationFocus": "Si una notificación tiene el foco del teclado",
"notificationToastsVisible": "Si una notificación del sistema está visible",
@@ -3941,14 +5050,20 @@
"sideBySideEditorActive": "Si un editor en paralelo está activo",
"splitEditorsVertically": "Si los editores se dividen verticalmente",
"statusBarFocused": "Si la barra de estado tiene el foco del teclado",
+ "temporaryWorkspace": "El esquema del área de trabajo actual procede de un sistema de archivos temporal.",
"textCompareEditorActive": "Si hay un editor de comparación de texto activo",
"textCompareEditorVisible": "Si el editor de comparación de texto está visible",
- "virtualWorkspace": "El esquema del área de trabajo actual si procede de un sistema de archivos virtual o una cadena vacía.",
+ "titleBarStyle": "Estilo de la barra de título de la ventana",
+ "titleBarVisible": "Si la barra de título está visible",
+ "twoEditorsSelectedInGroup": "Si se han seleccionado exactamente dos editores en un grupo de editores",
+ "virtualWorkspace": "El esquema del área de trabajo actual procede de un sistema de archivos virtual o una cadena vacía.",
"workbenchState": "Variante del área de trabajo abierta en la ventana, que puede ser \"vacía\" (sin área de trabajo), \"carpeta\" (única carpeta) o \"área de trabajo\" (área de trabajo con varias raíces)",
"workspaceFolderCount": "Número de carpetas raíz en el área de trabajo"
},
"vs/workbench/common/editor": {
"builtinProviderDisplayName": "Integrado",
+ "configureEditorLargeFileConfirmation": "Configurar límite",
+ "openLargeFile": "Abrir de todos modos",
"promptOpenWith.defaultEditor.displayName": "Editor de texto"
},
"vs/workbench/common/editor/diffEditorInput": {
@@ -3971,9 +5086,23 @@
"activityBarDragAndDropBorder": "Color de arrastrar y colocar comentarios de la barra de actividad. La barra de actividad se muestra en el extremo izquierdo o derecho y permite cambiar entre vistas de la barra lateral.",
"activityBarForeground": "Color de primer plano del elemento de barra de actividad cuando está activo. La barra de actividad se muestra en el lado izquierdo o derecho y permite cambiar entre diferentes vistas de la barra lateral.",
"activityBarInActiveForeground": "Color de primer plano del elemento de barra de actividad cuando está inactivo. La barra de actividad se muestra en el lado izquierdo o derecho y permite cambiar entre diferentes vistas de la barra lateral.",
+ "activityBarTop": "Color de primer plano activo del elemento en la barra actividad cuando está en la parte superior o inferior. La actividad permite cambiar entre las vistas de la barra lateral.",
+ "activityBarTopActiveBackground": "Color de fondo del elemento activo en la barra actividad cuando está en la parte superior o inferior. La actividad permite cambiar entre vistas de la barra lateral.",
+ "activityBarTopActiveFocusBorder": "Color del borde del foco para el elemento activo en la barra actividad cuando está en la parte superior o inferior. La actividad permite cambiar entre las vistas de la barra lateral.",
+ "activityBarTopBackground": "Color de fondo de la barra de actividad cuando se establece en superior o inferior.",
+ "activityBarTopDragAndDropBorder": "Arrastre y coloque el color de comentarios de los elementos de la barra de actividad cuando esté en la parte superior o inferior. La actividad permite cambiar entre las vistas de la barra lateral.",
+ "activityBarTopInActiveForeground": "Color de primer plano inactivo del elemento en la barra actividad cuando está en la parte superior o inferior. La actividad permite cambiar entre las vistas de la barra lateral.",
"banner.background": "Color de fondo de la pancarta. La pancarta se muestra en la barra de título de la ventana.",
"banner.foreground": "Color de primer plano de la pancarta. La pancarta se muestra en la barra de título de la ventana.",
"banner.iconForeground": "Color del icono de la pancarta. La pancarta se muestra en la barra de título de la ventana.",
+ "commandCenter-activeBackground": "Color de fondo activo del centro de comandos",
+ "commandCenter-activeBorder": "Color del borde activo del centro de comandos",
+ "commandCenter-activeForeground": "Color de primer plano activo del centro de comandos",
+ "commandCenter-background": "Color de fondo del centro de comandos",
+ "commandCenter-border": "Color del borde del centro de comandos",
+ "commandCenter-foreground": "Color de primer plano del centro de comandos",
+ "commandCenter-inactiveBorder": "Color de borde del centro de comandos cuando la ventana está inactiva",
+ "commandCenter-inactiveForeground": "Color de primer plano del centro de comandos cuando la ventana está inactiva",
"editorDragAndDropBackground": "Color de fondo cuando se arrastran los editores. El color debería tener transparencia para que el contenido del editor pueda brillar a su través.",
"editorDropIntoPromptBackground": "Color de fondo del texto que se muestra sobre los editores al arrastrar archivos. Este texto informa al usuario de que puede mantener el desplazamiento para colocarlo en el editor.",
"editorDropIntoPromptBorder": "Color del borde del texto que se muestra sobre los editores al arrastrar archivos. Este texto informa al usuario de que puede mantener el turno para colocarlo en el editor.",
@@ -3981,7 +5110,7 @@
"editorGroupBorder": "Color para separar varios grupos de editores entre sí. Los grupos de editores son los contenedores de los editores.",
"editorGroupEmptyBackground": "Color de fondo de un grupo de editores vacío. Los grupos de editores son los contenedores de los editores.",
"editorGroupFocusedEmptyBorder": "Color del borde de un grupo de editores vacío que tiene el foco. Los grupos de editores son los contenedores de los editores.",
- "editorGroupHeaderBackground": "Color de fondo del encabezado de título del grupo editor cuando las tabulaciones están deshabilitadas (' \"Workbench. Editor. showTabs \": false '). Los grupos editor son los contenedores de los editores.",
+ "editorGroupHeaderBackground": "Color de fondo del encabezado del título del grupo de editores cuando (`\"workbench.editor.showTabs\": \"single\"`). Los grupos de editores son los contenedores de editores.",
"editorPaneBackground": "Color de fondo del panel del editor visible a la izquierda y a la derecha del diseño de editor centrado.",
"editorTitleContainerBorder": "Color de borde del encabezado de título del grupo de editores. Los grupos de editores son los contenedores de los editores.",
"extensionBadge.remoteBackground": "Color de fondo de la insignia remota en la vista de extensiones.",
@@ -4001,6 +5130,8 @@
"notificationsInfoIconForeground": "Color utilizado para el icono de las notificaciones de información. Las notificaciones se muestran desde la parte inferior derecha de la ventana.",
"notificationsLink": "Color de primer plano de los vínculos de las notificaciones. Las notificaciones se deslizan desde la parte inferior derecha de la ventana.",
"notificationsWarningIconForeground": "Color utilizado para el icono de las notificaciones de advertencia. Las notificaciones se deslizan desde la parte inferior derecha de la ventana.",
+ "outputViewBackground": "Color de fondo de vista de salida.",
+ "outputViewStickyScrollBackground": "Color de fondo de desplazamiento con inmovilización de la vista de salida.",
"panelActiveTitleBorder": "Color de borde del título del panel activo. Los paneles se muestran debajo del área del editor y contienen vistas como Salida y Terminal integrado.",
"panelActiveTitleForeground": "Color del título del panel activo. Los paneles se muestran debajo del área del editor y contienen vistas como Salida y Terminal integrado.",
"panelBackground": "Color de fondo del panel. Los paneles se muestran debajo del área de editores y contienen vistas, como Salida y Terminal integrado.",
@@ -4013,6 +5144,15 @@
"panelSectionHeaderBackground": "Color de fondo del encabezado de la sección del panel. Los paneles se muestran debajo del área del editor y contienen vistas como salida y terminal integrado. Las secciones de panel son vistas anidadas en los paneles.",
"panelSectionHeaderBorder": "Color de borde del encabezado de la sección del panel que se usa cuando varias vistas se apilan verticalmente en el panel. Los paneles se muestran debajo del área del editor y contienen vistas como la salida y el terminal integrado. Las secciones de panel son vistas anidadas en los paneles.",
"panelSectionHeaderForeground": "Color de primer plano del encabezado de la sección del panel. Los paneles se muestran debajo del área del editor y contienen vistas como la salida y el terminal integrado. Las secciones de panel son vistas anidadas en los paneles.",
+ "panelStickyScrollBackground": "Color de fondo del desplazamiento con inmovilización en el panel.",
+ "panelStickyScrollBorder": "Color de borde del desplazamiento con inmovilización en el panel.",
+ "panelStickyScrollShadow": "Color de sombra del desplazamiento con inmovilización en el panel.",
+ "panelTitleBadgeBackground": "Color de fondo del distintivo del título del panel. Los paneles se muestran debajo del área del editor y contienen vistas como la salida y el terminal integrado.",
+ "panelTitleBadgeForeground": "Color de primer plano del distintivo del título del panel. Los paneles se muestran debajo del área del editor y contienen vistas como la salida y el terminal integrado.",
+ "panelTitleBorder": "Color del borde del título del panel en la parte inferior, separando el título de las vistas. Los paneles se muestran debajo del área del editor y contienen vistas como la salida y el terminal integrado.",
+ "profileBadgeBackground": "Color de fondo del distintivo de perfil. El distintivo de perfil se muestra en la parte superior del icono de engranaje de configuración de la barra de actividad.",
+ "profileBadgeForeground": "Color de primer plano del distintivo de perfil. El distintivo de perfil se muestra en la parte superior del icono de engranaje de configuración de la barra de actividad.",
+ "sideBarActivityBarTopBorder": "Color de borde entre la barra de actividad en la parte superior e inferior y las vistas.",
"sideBarBackground": "Color de fondo de la barra lateral, que es el contenedor de vistas como Explorador y Búsqueda.",
"sideBarBorder": "Color de borde de la barra lateral en el lado que separa el editor. La barra lateral es el contenedor de vistas como Explorador y Búsqueda.",
"sideBarDragAndDropBackground": "Color de arrastrar y colocar comentarios para las secciones de la barra lateral. El color debe tener transparencia para permitir que se vean las secciones de la barra lateral, que es el contenedor para vistas como la del explorador o la de búsqueda. Las secciones de la barra lateral son vistas anidadas en la barra lateral.",
@@ -4020,6 +5160,11 @@
"sideBarSectionHeaderBackground": "Color de fondo del encabezado de sección de la barra lateral. La barra lateral es el contenedor de vistas, como el explorador y la búsqueda. Las secciones de la barra lateral son vistas anidadas en la barra lateral.",
"sideBarSectionHeaderBorder": "Color de borde del encabezado de sección de la barra lateral. La barra lateral es el contenedor de vistas, como el explorador y la búsqueda. Las secciones de la barra lateral son vistas anidadas en la barra lateral.",
"sideBarSectionHeaderForeground": "Color de primer plano del encabezado de sección de la barra lateral. La barra lateral es el contenedor de vistas, como el explorador y la búsqueda. Las secciones de la barra lateral son vistas anidadas en la barra lateral.",
+ "sideBarStickyScrollBackground": "Color de fondo del desplazamiento con inmovilización en la barra lateral.",
+ "sideBarStickyScrollBorder": "Color de borde del desplazamiento con inmovilización en la barra lateral.",
+ "sideBarStickyScrollShadow": "Color de sombra del desplazamiento con inmovilización en la barra lateral.",
+ "sideBarTitleBackground": "Color de fondo de título de barra lateral. La barra lateral es el contenedor de vistas como Explorador y Búsqueda.",
+ "sideBarTitleBorder": "Color del borde del título de la barra lateral en la parte inferior, separando el título de las vistas. La barra lateral es el contenedor de vistas como Explorador y Búsqueda.",
"sideBarTitleForeground": "Color de primer plano del título de la barra lateral, que es el contenedor de vistas como Explorador y Búsqueda.",
"sideBySideEditor.horizontalBorder": "Color para separar dos editores entre sí cuando se muestran en paralelo en un grupo de editores de arriba a abajo.",
"sideBySideEditor.verticalBorder": "Color para separar dos editores entre sí cuando se muestran en paralelo en un grupo de editores de izquierda a derecha.",
@@ -4027,22 +5172,34 @@
"statusBarBorder": "Color de borde de la barra de estado que separa la barra lateral y el editor. La barra de estado se muestra en la parte inferior de la ventana.",
"statusBarErrorItemBackground": "Color de fondo de los elementos de error en la barra de estado. Los elementos de error se destacan de otras entradas de la barra de estado para indicar condiciones de error. La barra de estado se muestra en la parte inferior de la ventana.",
"statusBarErrorItemForeground": "Color de primer plano de los elementos de error en la barra de estado. Los elementos de error se destacan de otras entradas de la barra de estado para indicar condiciones de error. La barra de estado se muestra en la parte inferior de la ventana.",
+ "statusBarErrorItemHoverBackground": "Color de fondo de los elementos de error en la barra de estado al mantener el puntero sobre ellos. Los elementos de error se destacan de otras entradas de la barra de estado para indicar condiciones de error. La barra de estado se muestra en la parte inferior de la ventana.",
+ "statusBarErrorItemHoverForeground": "Color de primer plano de los elementos de error en la barra de estado al mantener el puntero sobre ellos. Los elementos de error se destacan de otras entradas de la barra de estado para indicar condiciones de error. La barra de estado se muestra en la parte inferior de la ventana.",
"statusBarFocusBorder": "Color de borde de la barra de estado cuando se centra en la navegación del teclado. La barra de estado se muestra en la parte inferior de la ventana.",
"statusBarForeground": "Color de primer plano de la barra de estado cuando se abre un área de trabajo o una carpeta. La barra de estado se muestra en la parte inferior de la ventana.",
"statusBarItemActiveBackground": "Color de fondo de un elemento de la barra de estado al hacer clic. La barra de estado se muestra en la parte inferior de la ventana.",
"statusBarItemCompactHoverBackground": "Color de fondo de un elemento de la barra de estado al mantener el puntero sobre un elemento que contiene varios tipos de información que se muestran. La barra de estado se muestra en la parte inferior de la ventana.",
"statusBarItemFocusBorder": "Color de borde del elemento de la barra de estado cuando se centra en la navegación del teclado. La barra de estado se muestra en la parte inferior de la ventana.",
- "statusBarItemHostBackground": "Color de fondo para el indicador remoto en la barra de estado.",
- "statusBarItemHostForeground": "Color de primer plano para el indicador remoto en la barra de estado.",
"statusBarItemHoverBackground": "Color de fondo de un elemento de la barra de estado al mantener el puntero. La barra de estado se muestra en la parte inferior de la ventana.",
+ "statusBarItemHoverForeground": "Color de primer plano del elemento de la barra de estado al mantener el puntero sobre él. La barra de estado se muestra en la parte inferior de la ventana.",
+ "statusBarItemOfflineBackground": "Color de fondo del elemento de la barra de estado cuando el área de trabajo está sin conexión.",
+ "statusBarItemOfflineForeground": "Color de primer plano del elemento de la barra de estado cuando el área de trabajo está sin conexión.",
+ "statusBarItemRemoteBackground": "Color de fondo para el indicador remoto en la barra de estado.",
+ "statusBarItemRemoteForeground": "Color de primer plano para el indicador remoto en la barra de estado.",
"statusBarNoFolderBackground": "Color de fondo de la barra de estado cuando no hay ninguna carpeta abierta. La barra de estado se muestra en la parte inferior de la ventana.",
"statusBarNoFolderBorder": "Color de borde de la barra de estado que separa la barra lateral y el editor cuando no hay ninguna carpeta abierta. La barra de estado se muestra en la parte inferior de la ventana.",
"statusBarNoFolderForeground": "Color de primer plano de la barra de estado cuando no hay ninguna carpeta abierta. La barra de estado se muestra en la parte inferior de la ventana.",
- "statusBarProminentItemBackground": "Barra de estado elementos prominentes color de fondo. Los artículos prominentes se destacan de otras entradas de la barra de estado para indicar importancia, Cambiar el modo de 'Toggle Tab Key Moves Focus' de la paleta de comandos para ver un ejemplo. La barra de estado se muestra en la parte inferior de la ventana.",
- "statusBarProminentItemForeground": "Color de primer plano de elementos destacados de la barra de estado. Los elementos destacados resaltan entre el resto de entradas de la barra de estado para indicar la importancia. Cambie el modo \"Alternar tecla de tabulación para mover el punto de atención\" de la paleta de comandos para ver un ejemplo. La barra de estado está en la parte inferior de la ventana.",
- "statusBarProminentItemHoverBackground": "Barra de estado elementos prominentes color de fondo cuando se activa. Los artículos prominentes se destacan de otras entradas de la barra de estado para indicar importancia. Cambiar el modo de 'Toggle Tab Key Moves Focus' de la paleta de comandos para ver un ejemplo. La barra de estado se muestra en la parte inferior de la ventana.",
+ "statusBarOfflineItemHoverBackground": "Color de fondo del elemento de la barra de estado cuando el área de trabajo está sin conexión.",
+ "statusBarOfflineItemHoverForeground": "Color de primer plano del elemento de la barra de estado cuando el área de trabajo está sin conexión.",
+ "statusBarProminentItemBackground": "Color de fondo de elementos destacados de la barra de estado. Los artículos prominentes se destacan de otras entradas de la barra de estado para indicar importancia. La barra de estado se muestra en la parte inferior de la ventana.",
+ "statusBarProminentItemForeground": "Color de primer plano de elementos destacados de la barra de estado. Los artículos prominentes se destacan de otras entradas de la barra de estado para indicar importancia. La barra de estado se muestra en la parte inferior de la ventana.",
+ "statusBarProminentItemHoverBackground": "Barra de estado elementos prominentes color de fondo cuando se activa. Los artículos prominentes se destacan de otras entradas de la barra de estado para indicar importancia. La barra de estado se muestra en la parte inferior de la ventana.",
+ "statusBarProminentItemHoverForeground": "Color de primer plano de los elementos prominentes de la barra de estado al mantener el puntero sobre ellos. Los artículos prominentes se destacan de otras entradas de la barra de estado para indicar importancia. La barra de estado se muestra en la parte inferior de la ventana.",
+ "statusBarRemoteItemHoverBackground": "Color de fondo para el indicador remoto en la barra de estado al mantener el puntero sobre él.",
+ "statusBarRemoteItemHoverForeground": "Color de primer plano para el indicador remoto en la barra de estado al mantener el puntero sobre él.",
"statusBarWarningItemBackground": "Color de fondo de los elementos de advertencia en la barra de estado. Los elementos de advertencia se destacan de otras entradas de la barra de estado para indicar condiciones de advertencia. La barra de estado se muestra en la parte inferior de la ventana.",
"statusBarWarningItemForeground": "Color de primer plano de los elementos de advertencia en la barra de estado. Los elementos de advertencia se destacan de otras entradas de la barra de estado para indicar condiciones de advertencia. La barra de estado se muestra en la parte inferior de la ventana.",
+ "statusBarWarningItemHoverBackground": "Color de fondo de los elementos de aviso en la barra de estado al mantener el puntero sobre ellos. Los elementos de advertencia se destacan de otras entradas de la barra de estado para indicar condiciones de advertencia. La barra de estado se muestra en la parte inferior de la ventana.",
+ "statusBarWarningItemHoverForeground": "Color de primer plano de los elementos de aviso en la barra de estado al mantener el puntero sobre ellos. Los elementos de advertencia se destacan de otras entradas de la barra de estado para indicar condiciones de advertencia. La barra de estado se muestra en la parte inferior de la ventana.",
"tabActiveBackground": "Color de fondo de la pestaña activa. Las pestañas son los contenedores de los editores en el área de editores. Se pueden abrir varias pestañas en un grupo de editores. Puede haber varios grupos de editores.",
"tabActiveBorder": "Borde en la parte inferior de una ficha activa. Las fichas son los contenedores para los editores en el área de edición. Múltiple pestañas pueden abrirse en un grupo de editor. Puede haber múltiples grupos de editor. ",
"tabActiveBorderTop": "Borde a la parte superior de una pestaña activa. Las pestañas son los contenedores para los editores en el área del editor. Se pueden abrir múltiples pestañas en un grupo de editores. Puede haber múltiples grupos de editores.",
@@ -4051,12 +5208,16 @@
"tabActiveUnfocusedBorder": "Borde en la parte inferior de una pestaña activa para un grupo no seleccionado. Las pestañas son los contenedores para los editores en el área del editor. Se pueden abrir múltiples pestañas en un grupo de editores. Puede haber múltiples grupos de editores.",
"tabActiveUnfocusedBorderTop": "Borde en la parte superior de una pestaña activa para un grupo no seleccionado. Las pestañas son los contenedores para los editores en el área del editor. Se pueden abrir múltiples pestañas en un grupo de editores. Puede haber múltiples grupos de editores.",
"tabBorder": "Borde para separar las pestañas entre sí. Las pestañas son contenedores de editores en el área de editores. Se pueden abrir varias pestañas en un grupo de editores. Puede haber varios grupos de editores.",
+ "tabDragAndDropBorder": "Borde entre pestañas para indicar que se puede insertar una pestaña entre dos pestañas. Las pestañas son los contenedores de los editores en el área del editor. Se pueden abrir varias pestañas en un grupo de editores. Puede haber varios grupos de editores.",
"tabHoverBackground": "Color de fondo de la pestaña activa al mantener el puntero. Las pestañas son los contenedores de los editores en el área de editores. Se pueden abrir varias pestañas en un grupo de editores. Puede haber varios grupos de editores.",
"tabHoverBorder": "Borde para resaltar tabulaciones cuando se activan. Las fichas son los contenedores para los editores en el área del editor. Se pueden abrir varias fichas en un grupo de editores. Puede haber varios grupos de editores. ",
"tabHoverForeground": "Color de primer plano de la pestaña al mantener el puntero. Las pestañas son los contenedores de los editores en el área del editor. Se pueden abrir varias pestañas en un grupo de editores y puede haber varios grupos de este tipo.",
"tabInactiveBackground": "Color de fondo de la pestaña inactiva. Las pestañas son los contenedores de los editores en el área de editores. Se pueden abrir varias pestañas en un grupo de editores. Puede haber varios grupos de editores.",
"tabInactiveForeground": "Color de primer plano de la pestaña inactiva en un grupo activo. Las pestañas son los contenedores de los editores en el área de editores. Se pueden abrir varias pestañas en un grupo de editores. Puede haber varios grupos de editores.",
"tabInactiveModifiedBorder": "Borde en la parte superior de las pestañas inactivas modificadas en un grupo activo. Las pestañas son los contenedores de los editores en el área del editor. Se pueden abrir varias pestañas en un grupo de editores. Puede haber varios grupos de editores.",
+ "tabSelectedBackground": "Fondo de una pestaña seleccionada. Las pestañas son los contenedores de los editores en el área del editor. Se pueden abrir varias pestañas en un grupo de editores. Puede haber varios grupos de editores.",
+ "tabSelectedBorderTop": "Borde en la parte superior de una pestaña seleccionada. Las pestañas son los contenedores de los editores en el área del editor. Se pueden abrir varias pestañas en un grupo de editores. Puede haber varios grupos de editores.",
+ "tabSelectedForeground": "Primer plano de una pestaña seleccionada. Las pestañas son los contenedores de los editores en el área del editor. Se pueden abrir varias pestañas en un grupo de editores. Puede haber varios grupos de editores.",
"tabUnfocusedActiveBackground": "Color de fondo de la pestaña activa en un grupo no enfocado. Las pestañas son los contenedores para los editores en el área del editor. Se pueden abrir varias pestañas en un grupo de editor. Puede haber varios grupos de editor.",
"tabUnfocusedActiveForeground": "Color de primer plano de la ficha activa en un grupo que no tiene el foco. Las fichas son los contenedores de los editores en el área de editores. Se pueden abrir varias fichas en un grupo de editores. Puede haber varios grupos de editores. ",
"tabUnfocusedHoverBackground": "Color de fondo de tabulación en un grupo no enfocado cuando se pasa. Las fichas son los contenedores para los editores en el área del editor. Se pueden abrir varias fichas en un grupo de editores. Puede haber varios grupos de editores.",
@@ -4073,30 +5234,41 @@
"titleBarInactiveForeground": "Primer plano de la barra de título cuando la ventana está inactiva.",
"unfocusedActiveModifiedBorder": "Borde en la parte superior de las pestañas activas modificadas en un grupo sin foco. Las pestañas son los contenedores de los editores en el área del editor. Se pueden abrir varias pestañas en un grupo de editores. Puede haber varios grupos de editores.",
"unfocusedINactiveModifiedBorder": "Borde en la parte superior de las pestañas inactivas modificadas en un grupo sin foco. Las pestañas son los contenedores de los editores en el área del editor. Se pueden abrir varias pestañas en un grupo de editores. Puede haber varios grupos de editores.",
- "windowActiveBorder": "El color usado para el borde de la ventana cuando está activa. Solo es compatible con el cliente para equipo de escritorio al usar la barra de título personalizada.",
- "windowInactiveBorder": "El color usado para el borde de la ventana cuando está inactiva. Solo es compatible con el cliente para equipo de escritorio al usar la barra de título personalizada."
+ "windowActiveBorder": "Color que se usa para el borde de la ventana cuando está activa en macOS o Linux. Requiere un estilo de barra de título personalizado y controles de ventana personalizados u ocultos en Linux.",
+ "windowInactiveBorder": "Color que se usa para el borde de la ventana cuando está inactiva en macOS o Linux. Requiere un estilo de barra de título personalizado y controles de ventana personalizados u ocultos en Linux."
},
"vs/workbench/common/views": {
"defaultViewIcon": "Icono de vista predeterminado.",
- "duplicateId": "Una vista con id \"{0}\" ya está registrada"
+ "duplicateId": "Una vista con id \"{0}\" ya está registrada",
+ "treeView.notRegistered": "No se ha registrado ninguna vista del árbol con el id. \"{0}\".",
+ "views log": "Vistas"
},
- "vs/workbench/electron-sandbox/actions/developerActions": {
+ "vs/workbench/electron-browser/actions/developerActions": {
"configureRuntimeArguments": "Configurar argumentos en tiempo de ejecución",
"reloadWindowWithExtensionsDisabled": "Recargar con extensiones desactivadas",
- "toggleDevTools": "Alternar herramientas de desarrollo",
- "toggleSharedProcess": "Alternar proceso compartido"
- },
- "vs/workbench/electron-sandbox/actions/installActions": {
+ "revealUserDataFolder": "Revelar carpeta de datos de usuario",
+ "showGPUInfo": "Mostrar información de GPU",
+ "stopTracing": "Detener seguimiento",
+ "stopTracing.button": "&&Volver a iniciar y habilitar el seguimiento",
+ "stopTracing.detail": "Esto puede tardar hasta un minuto en completarse.",
+ "stopTracing.message": "El seguimiento requiere iniciarse con un argumento '--trace'",
+ "stopTracing.title": "Creando archivo de seguimiento...",
+ "toggleDevTools": "Alternar herramientas de desarrollo"
+ },
+ "vs/workbench/electron-browser/actions/installActions": {
"install": "Instalar el comando '{0}' en PATH",
"shellCommand": "Comando shell",
"successFrom": "El comando shell '{0}' se desinstaló correctamente de PATH.",
"successIn": "El comando shell '{0}' se instaló correctamente en PATH.",
"uninstall": "Desinstalar el comando '{0}' de PATH"
},
- "vs/workbench/electron-sandbox/actions/windowActions": {
+ "vs/workbench/electron-browser/actions/windowActions": {
"close": "Cerrar ventana",
+ "closeActive": "Cerrar Ventana activa",
"closeWindow": "Cerrar ventana",
"current": "Ventana actual",
+ "disableWindowAlwaysOnTop": "Desactivar Siempre visible",
+ "enableWindowAlwaysOnTop": "Activar Siempre visible",
"miCloseWindow": "C&&errar ventana",
"miZoomIn": "&&Ampliar",
"miZoomOut": "&&Alejar",
@@ -4104,24 +5276,35 @@
"quickSwitchWindow": "Cambio Rápido de Ventana...",
"switchWindow": "Cambiar de Ventana...",
"switchWindowPlaceHolder": "Seleccionar una ventana a la que cambiar",
+ "toggleWindowAlwaysOnTop": "Alternar ventana siempre visible",
"windowDirtyAriaLabel": "{0}, ventana con cambios sin guardar",
+ "windowGroup": "grupo de ventanas",
"zoomIn": "Acercar",
"zoomOut": "Alejar",
"zoomReset": "Restablecer zoom"
},
- "vs/workbench/electron-sandbox/desktop.contribution": {
+ "vs/workbench/electron-browser/desktop.contribution": {
+ "application.shellEnvironmentResolutionTimeout": "Controla el tiempo de espera en segundos antes de dejar de resolver el entorno de shell cuando la aplicación no se ha iniciado ya desde un terminal. Consulte nuestra [documentation](https://go.microsoft.com/fwlink/?linkid=2149667) para obtener más información.",
"argv.crashReporterId": "Identificador único que se usa para correlacionar los informes de bloqueo enviados desde esta instancia de la aplicación.",
+ "argv.disableChromiumSandbox": "Deshabilita el espacio aislado de Chromium. Esto es útil cuando se ejecuta VS Code con privilegios elevados en Linux y se ejecuta en AppLocker en Windows.",
"argv.disableHardwareAcceleration": "Deshabilita la aceleración de hardware. Solo cambie esta opción si encuentra problemas gráficos.",
+ "argv.disableLcdText": "Deshabilita el suavizado de contorno de la fuente LCD.",
"argv.enableCrashReporter": "Permite deshabilitar el informe de bloqueo; debe reiniciar la aplicación si se cambia el valor.",
+ "argv.enableRDPDisplayTracking": "Garantiza que las ventanas maximizadas se restauren a la pantalla correcta durante la reconexión de RDP.",
"argv.enebleProposedApi": "Habilite las API propuestas para una lista de identificadores de extensiones (como \"vscode. git\"). Las API propuestas son inestables y están sujetas a interrupciones sin advertencia en cualquier momento. Esta operación solo debe establecerse para el desarrollo de extensiones y para pruebas.",
"argv.force-renderer-accessibility": "Fuerza el acceso al renderizador. Solo cambie esto si está utilizando un lector de pantalla en Linux. En otras plataformas, el renderizador será accesible automáticamente. Esta marca se establece automáticamente si tiene editor.accessibilitySupport: on.",
"argv.forceColorProfile": "Permite anular el perfil de color que se va a utilizar. Si le parece que los colores están mal, intente establecer esto en \"srgb\" y reinicie.",
"argv.locale": "Idioma de visualización que se va a utilizar. La elección de un idioma diferente requiere la instalación del paquete de idioma asociado.",
- "argv.logLevel": "Nivel de registro a utilizar. Por defecto es 'info'. Los valores permitidos son 'critical', 'error', 'warn', 'info', 'debug', 'trace', 'off'.",
+ "argv.logLevel": "Nivel de registro a utilizar. Por defecto es \"info\". Los valores permitidos son \"error\", \"warn\", \"info\", \"debug\", \"trace\", \"off\".",
+ "argv.passwordStore": "Configura el back-end que se usa para almacenar secretos en Linux. Este argumento se omite en Windows y macOS.",
+ "argv.proxyBypassList": "Omita cualquier proxy especificado para la lista de hosts determinada separada por punto y coma. Valor de ejemplo \";*.microsoft.com;*foo.com; 1.2.3.4:5678\", usará el servidor proxy para todos los hosts excepto para las direcciones locales (localhost, 127.0.0.1, etc.), microsoft.com subdominios, hosts que contienen el sufijo foo.com y cualquier elemento en 1.2.3.4:5678",
+ "argv.remoteDebuggingPort": "Especifica el puerto que se va a usar para la depuración remota.",
+ "argv.useInMemorySecretStorage": "Garantiza que se usará un almacén en memoria para el almacenamiento de secretos en lugar de usar el almacén de credenciales del sistema operativo. Suele usarse al ejecutar VS Code pruebas de extensión o cuando tiene dificultades con el almacén de credenciales.",
"closeWhenEmpty": "Controla si, al cerrar el último editor, debe cerrarse también la ventana. Esta configuración se aplica solo a ventanas que no muestran carpetas.",
- "dialogStyle": "Ajustar la apariencia de las ventanas de cuadro de diálogo.",
+ "confirmSaveUntitledWorkspace": "Controla si se muestra un cuadro de diálogo de confirmación que solicita guardar o descartar un área de trabajo sin título abierta en la ventana al cambiar a otra área de trabajo. Si deshabilita el cuadro de diálogo de confirmación, siempre se descartará el área de trabajo sin título.",
+ "controlsStyle": "Ajuste la apariencia de los controles de la ventana para que sean nativos del sistema operativo, personalizados u ocultos. Los cambios requieren un reinicio completo para aplicarse.",
+ "dialogStyle": "Ajustar la apariencia de los cuadros de diálogo para que sean nativos del sistema operativo o personalizados.",
"enableCrashReporterDeprecated": "Si esta configuración es false, no se enviará ningún dato de telemetría independientemente del valor de la nueva configuración. En desuso debido a la combinación en la configuración de {0}.",
- "experimentalUseSandbox": "Experimental: cuando se habilita, la ventana tendrá habilitado el modo de espacio aislado a través de la API de Electron.",
"keyboardConfigurationTitle": "Teclado",
"mergeAllWindowTabs": "Combinar todas las ventanas",
"miExit": "S&&alir",
@@ -4130,19 +5313,39 @@
"newWindowDimensions": "Controla las dimensiones de apertura de una nueva ventana cuando ya existe al menos una ventana abierta. Tenga en cuenta que esta configuración no afecta a la primera ventana abierta, que siempre se restaurará al tamaño y ubicación en las que se dejó antes de cerrarla",
"openWithoutArgumentsInNewWindow": "Controla si debe abrirse una ventana nueva vacía cuando se inicia una segunda instancia sin argumentos o si debe obtener el foco la última instancia en ejecución.\r\nTenga en cuenta que aún puede haber casos en los que este valor se ignore (por ejemplo, al usar la opción de la línea de comandos \"--new-window\" o \"--reuse-window\"). ",
"restoreFullscreen": "Controla si una ventana se debe restaurar al modo de pantalla completa si se salió de ella en dicho modo.",
- "restoreWindows": "Controla el modo en que se vuelven a abrir las ventanas después de iniciar por primera vez. Esta configuración no tiene efecto cuando la aplicación ya se está ejecutando.",
+ "restoreWindows": "Controla cómo se restauran las ventanas y los editores que contienen al abrir.",
+ "security.promptForLocalFileProtocolHandling": "Si se habilita, un cuadro de diálogo solicitará confirmación cada vez que un archivo o área de trabajo local se abra a través de un controlador de protocolo.",
+ "security.promptForRemoteFileProtocolHandling": "Si se habilita, un cuadro de diálogo solicitará confirmación cada vez que un archivo o área de trabajo remoto se abra a través de un controlador de protocolo.",
"showNextWindowTab": "Mostrar siguiente pestaña de ventana",
"showPreviousTab": "Mostrar pestaña de ventana anterior",
"telemetry.enableCrashReporting": "Habilite los informes de bloqueo para que se recopilen. Esto nos ayuda a mejorar la estabilidad. \r\nEsta opción requiere reiniciar para surtir efecto.",
"telemetryConfigurationTitle": "Telemetría",
- "titleBarStyle": "Ajuste el aspecto de la barra de título de la ventana. En Linux y Windows, esta configuración también afecta a la aplicación y los aspectos del menú contextual. Los cambios requieren un reinicio completo para aplicarse.",
+ "titleBarStyle": "Ajustar la apariencia de la barra de título de la ventana para que sea nativa por el sistema operativo o personalizada. Los cambios requieren un reinicio completo para aplicarse.",
"toggleWindowTabsBar": "Alternar barra de pestañas de ventana",
"touchbar.enabled": "Habilita los botones de macOS Touchbar en el teclado si están disponibles.",
"touchbar.ignored": "Conjunto de identificadores para las entradas de la barra táctil que no deben aparecer (por ejemplo, \"workbench.action.navigateBack\").",
- "window.clickThroughInactive": "Si está habilitado, haciendo clic en una ventana inactiva, activará dicha ventana y disparará el elemento bajo el cursor del ratón si éste es clicable. Si está deshabilitado, haciendo clic en cualquier lugar en una ventana inactiva, solo activará la misma y será necesario un segundo clic en el elemento.",
- "window.doubleClickIconToClose": "Si está habilitado, al hacer doble clic en el icono de la aplicación en la barra de título, se cerrará la ventana y el icono no podrá arrastrarla. Esta configuración solo tiene efecto cuando \"#window.titleBarStyle#\" se establece en \"custom\".",
+ "window.border.color": "{0}: color específico en formato hexadecimal, RGB, RGBA, HSL, HSLA",
+ "window.border.default": "{0}: respetar la configuración del tema de color, volver a la configuración de Windows",
+ "window.border.off": "{0}: desactivar los colores de borde",
+ "window.border.prefix": "Controla el color del borde de la ventana:",
+ "window.border.suffix": "Use {0} para establecer diferentes colores para las ventanas activas e inactivas. Esta configuración se ignora cuando {1} se establece en {2}.",
+ "window.border.system": "{0}: respetar únicamente la configuración de Windows",
+ "window.clickThroughInactive": "Si está habilitado, haciendo clic en una ventana inactiva, activará dicha ventana y disparará el elemento bajo el cursor del ratón si éste es clicable. Si está deshabilitado, haciendo clic en cualquier lugar en una ventana inactiva, solo activará la misma y será necesario un segundo clic en el elemento. ",
+ "window.customTitleBarVisibility": "Ajustar cuándo se debe mostrar la barra de título personalizada. La barra de título personalizada se puede ocultar cuando se está en modo de pantalla completa con \"windowed\". La barra de título personalizada solo se puede ocultar si no está en modo de pantalla completa con \"nunca\" cuando {0} se establece en \"nativo\".",
+ "window.customTitleBarVisibility.auto": "Cambia automáticamente la visibilidad de la barra de título personalizada.",
+ "window.customTitleBarVisibility.never": "Ocultar la barra de título personalizada cuando {0} esté establecido en \"native\".",
+ "window.customTitleBarVisibility.windowed": "Ocultar barra de título personalizada en pantalla completa. Cuando no esté en pantalla completa, cambiar automáticamente la visibilidad de la barra de título personalizada.",
+ "window.doubleClickIconToClose": "Si está habilitada, esta configuración cerrará la ventana cuando se haga doble clic en el icono de aplicación de la barra de título. El icono no podrá arrastrar la ventana. Esta configuración solo es efectiva si `{0}` está establecido en `custom`.",
+ "window.menuStyle": "Ajuste el estilo del menú para que sea nativo del sistema operativo, personalizado o heredado del estilo de barra de título definido en {0}. Esto también afecta a la apariencia del menú contextual. Los cambios requieren un reinicio completo para aplicarse.",
+ "window.menuStyle.custom": "Use el menú personalizado.",
+ "window.menuStyle.custom.mac": "Use el menú contextual personalizado.",
+ "window.menuStyle.inherit": "Coincide el estilo de menú con el estilo de barra de título definido en {0}.",
+ "window.menuStyle.inherit.mac": "Coincide el estilo de menú contextual con el estilo de barra de título definido en {0}.",
+ "window.menuStyle.mac": "Ajuste las apariencias del menú contextual para que sea nativo del sistema operativo, personalizado o heredado del estilo de barra de título definido en {0}.",
+ "window.menuStyle.native": "Use el menú nativo. Esto se omite cuando {0} se establece en {1}.",
+ "window.menuStyle.native.mac": "Use el menú contextual nativo.",
"window.nativeFullScreen": "Controla si debe usarse el modo nativo de pantalla completa en macOS. Deshabilite esta opción para evitar que macOS cree un espacio nuevo cuando cambie a pantalla completa.",
- "window.nativeTabs": "Habilita las fichas de ventana en macOS Sierra. Note que los cambios requieren que reinicie el equipo y las fichas nativas deshabilitan cualquier estilo personalizado que haya configurado.",
+ "window.nativeTabs": "Habilita las pestañas de ventana nativas de macOS. Tenga en cuenta que los cambios requieren que reinicie el equipo y las pestañas nativas deshabilitan cualquier estilo de barra de título personalizado que haya configurado.",
"window.newWindowDimensions.default": "Abrir las nuevas ventanas en el centro de la pantalla.",
"window.newWindowDimensions.fullscreen": "Abrir las nuevas ventanas en modo de pantalla completa.",
"window.newWindowDimensions.inherit": "Abrir las nuevas ventanas con la misma dimensión que la última activa.",
@@ -4150,43 +5353,41 @@
"window.newWindowDimensions.offset": "Abra nuevas ventanas con la misma dimensión que la última activa con una posición de desfase.",
"window.openWithoutArgumentsInNewWindow.off": "Aplique el foco a la última instancia en ejecución activa.",
"window.openWithoutArgumentsInNewWindow.on": "Abra una ventana nueva vacía.",
- "window.reopenFolders.all": "Volver a abrir todas las ventanas, a menos que se abra una carpeta, un área de trabajo o un archivo (por ejemplo, desde la línea de comandos).",
- "window.reopenFolders.folders": "Volver a abrir todas las ventanas que tuvieran carpetas o áreas de trabajo abiertas, a menos que se abra una carpeta, un área de trabajo o un archivo (por ejemplo, desde la línea de comandos).",
+ "window.reopenFolders.all": "Volver a abrir todas las ventanas, a menos que se abra una carpeta, un área de trabajo o un archivo (por ejemplo, desde la línea de comandos). Si se abre un archivo, reemplazará cualquiera de los editores que se abrieron anteriormente en una ventana.",
+ "window.reopenFolders.folders": "Volver a abrir todas las ventanas que tuvieran carpetas o áreas de trabajo abiertas, a menos que se abra una carpeta, un área de trabajo o un archivo (por ejemplo, desde la línea de comandos). Si se abre un archivo, reemplazará cualquiera de los editores que se abrieron anteriormente en una ventana.",
"window.reopenFolders.none": "No volver a abrir nunca una ventana. Si no se abre una carpeta o un área de trabajo (por ejemplo, desde la línea de comandos), aparecerá una ventana vacía.",
- "window.reopenFolders.one": "Volver a abrir la última ventana activa, a menos que se abra una carpeta, un área de trabajo o un archivo (por ejemplo, desde la línea de comandos).",
- "window.reopenFolders.preserve": "Vuelva a abrir siempre todas las ventanas. Si se abre una carpeta o un área de trabajo (por ejemplo, desde la línea de comandos), se abre como ventana nueva, a menos que se hubiera abierto antes. Si los archivos se abren, se abrirán en una de las ventanas restauradas.",
+ "window.reopenFolders.one": "Volver a abrir la última ventana activa, a menos que se abra una carpeta, un área de trabajo o un archivo (por ejemplo, desde la línea de comandos). Si se abre un archivo, reemplazará cualquiera de los editores que se abrieron anteriormente en una ventana.",
+ "window.reopenFolders.preserve": "Vuelva a abrir siempre todas las ventanas. Si se abre una carpeta o un área de trabajo (por ejemplo, desde la línea de comandos), se abre como ventana nueva, a menos que se hubiera abierto antes. Si se abren archivos, se abrirán en una de las ventanas restauradas junto con los editores que se abrieron anteriormente.",
"windowConfigurationTitle": "Ventana",
- "windowControlsOverlay": "Use los controles de ventana proporcionados por la plataforma en lugar de nuestros controles de ventana basados en HTML. Los cambios requieren un reinicio completo para aplicarse.",
- "zoomLevel": "Ajuste el nivel de zoom de la ventana. El tamaño original es 0 y cada incremento (por ejemplo, 1) o disminución (por ejemplo, -1) representa una aplicación de zoom un 20 % más grande o más pequeño. También puede especificar decimales para ajustar el nivel de zoom con una granularidad más precisa."
+ "zoomLevel": "Ajuste el nivel de zoom predeterminado para todas las ventanas. Cada incremento por encima de '0' (por ejemplo, '1') o por debajo (por ejemplo, '-1') representa un zoom '20 %' mayor o menor. También puede escribir decimales para ajustar el nivel de zoom con una granularidad más fina. Consulte {0} para configurar si los comandos \"Acercar\" y \"Alejar\" aplican el nivel de zoom a todas las ventanas o solo a la ventana activa.",
+ "zoomPerWindow": "Controla si los comandos \"Acercar\" y \"Alejar\" aplican el nivel de zoom a todas las ventanas o solo a la ventana activa. Consulte {0} para configurar un nivel de zoom predeterminado para todas las ventanas."
},
- "vs/workbench/electron-sandbox/desktop.main": {
+ "vs/workbench/electron-browser/desktop.main": {
"join.closeStorage": "Guardando el estado de la interfaz de usuario"
},
- "vs/workbench/electron-sandbox/parts/dialogs/dialogHandler": {
- "aboutDetail": "Versión: {0}\r\nCommit: {1}\r\nFecha: {2}\r\nElectrón: {3}\r\nChromium: {4}\r\nNode.js: {5}\r\nV8: {6}\r\nOS: {7}",
- "cancelButton": "Cancelar",
+ "vs/workbench/electron-browser/parts/dialogs/dialogHandler": {
"copy": "&&Copiar",
- "okButton": "Aceptar",
- "yesButton": "&&Sí"
+ "okButton": "Aceptar"
},
- "vs/workbench/electron-sandbox/window": {
- "cancelButton": "&&Cancelar",
- "closeWindowButtonLabel": "&&Cerrar ventana",
- "closeWindowMessage": "¿Está seguro de que desea cerrar la ventana?",
- "doNotAskAgain": "No volver a hacerme esta pregunta",
- "exitButtonLabel": "&&Salida",
+ "vs/workbench/electron-browser/window": {
+ "appRootWarning.banner": "Los archivos que almacene en la carpeta de instalación ('{0}') se pueden SOBRESCRIBIR o ELIMINAR DE MANERA IRREVERSIBLE sin previo aviso en el momento de la actualización.",
+ "configure": "Configurar",
+ "downloadArmBuild": "Descargar",
"keychainWriteError": "Error al escribir la información de inicio de sesión en la cadena de claves: '{0}'.",
"learnMore": "Más información",
- "loaderCycle": "Hay un ciclo de dependencias en los módulos AMD que debe resolverse.",
"loginButton": "&&Iniciar sesión",
+ "macoseolmessage": "{0} en {1} pronto dejarán de recibir actualizaciones. Considere la posibilidad de actualizar la versión de macOS.",
"password": "Contraseña",
"proxyAuthRequired": "Autenticación proxy requerida",
"proxyDetail": "El proxy {0} requiere un nombre de usuario y una contraseña.",
- "quitButtonLabel": "&&Salir",
- "quitMessage": "¿Está seguro de que quiere salir?",
- "quitMessageMac": "¿Está seguro de que desea salir?",
"rememberCredentials": "Recordar mis credenciales",
+ "resolveShellEnvironment": "Resolviendo el entorno de shell...",
+ "restart": "Reiniciar",
"runningAsRoot": "No se recomienda ejecutar {0} como usuario raíz.",
+ "runningTranslated": "Está ejecutando una versión emulada de {0}. Para obtener un mejor rendimiento, descargue la versión arm64 nativa de la compilación {0} para su máquina.",
+ "sharedProcessCrash": "Un proceso en segundo plano compartido finalizó inesperadamente. Reinicie la aplicación para recuperarla.",
+ "showArgvParseWarning": "El archivo de argumentos para el tiempo de ejecución 'argv.json' contiene errores. Corríjalos y reinicie.",
+ "showArgvParseWarningAction": "Abrir archivo",
"shutdownErrorClose": "Un error inesperado impidió que se cerrara la ventana",
"shutdownErrorDetail": "Error: {0}",
"shutdownErrorLoad": "Un error inesperado impidió cambiar el área de trabajo",
@@ -4200,56 +5401,389 @@
"shutdownTitleLoad": "El cambio del área de trabajo está tardando un poco más de lo esperado...",
"shutdownTitleQuit": "Salir de la aplicación está tardando un poco más de lo esperado...",
"shutdownTitleReload": "Volver a cargar la ventana está tardando un poco más de lo esperado...",
+ "status.windowZoom": "Zoom de ventana",
"troubleshooting": "Guía de solución de problemas",
"username": "Nombre de usuario",
- "willShutdownDetail": "Las siguientes operaciones aún se están ejecutando: \r\n{0}"
- },
- "vs/workbench/contrib/audioCues/browser/audioCueService": {
- "audioCues.lineHasBreakpoint.name": "Punto de interrupción en la línea",
- "audioCues.lineHasError.name": "Error en la línea",
- "audioCues.lineHasFoldedArea.name": "Área doblada en la línea",
- "audioCues.lineHasInlineSuggestion.name": "Sugerencia insertada en la línea",
- "audioCues.lineHasWarning.name": "Advertencia en la línea",
- "audioCues.noInlayHints": "No hay sugerencias de incrustación en la línea",
- "audioCues.onDebugBreak.name": "Depurador detenido en el punto de interrupción"
+ "willShutdownDetail": "Las siguientes operaciones aún se están ejecutando: \r\n{0}",
+ "zoomIn": "Acercar",
+ "zoomNumber": "Nivel de zoom: {0} ({1} %)",
+ "zoomOut": "Alejar",
+ "zoomReset": "Restablecer",
+ "zoomResetLabel": "{0} ({1})",
+ "zoomSettings": "Configuración"
+ },
+ "vs/workbench/contrib/accessibility/browser/accessibilityConfiguration": {
+ "accessibility.debugWatchVariableAnnouncements": "Controla si se deben anunciar los cambios de variables en la vista de inspección de depuración.",
+ "accessibility.hideAccessibleView": "Controla si la vista accesible está oculta.",
+ "accessibility.openChatEditedFiles": "Controla si los archivos deben abrirse cuando el agente de chat ha aplicado cambios a los mismos.",
+ "accessibility.replEditor.readLastExecutedOutput": "Controla si se anunciará la salida de una ejecución en la REPL nativa.",
+ "accessibility.signalOptions.debouncePositionChanges": "Si se deben anular los cambios de posición o no",
+ "accessibility.signalOptions.delays.errorAtPosition.announcement": "El retraso en milisegundos antes de que se realice un anuncio cuando hay un error en la posición.",
+ "accessibility.signalOptions.delays.errorAtPosition.sound": "El retraso en milisegundos antes de que se reproduzca un sonido cuando hay un error en la posición.",
+ "accessibility.signalOptions.delays.general.announcement": "El retraso en milisegundos antes de que se realice un anuncio.",
+ "accessibility.signalOptions.delays.general.sound": "El retraso en milisegundos antes de que se reproduzca un sonido.",
+ "accessibility.signalOptions.delays.warningAtPosition.announcement": "El retraso en milisegundos antes de que se realice un anuncio cuando hay una advertencia en la posición.",
+ "accessibility.signalOptions.delays.warningAtPosition.sound": "El retraso en milisegundos antes de que se reproduzca un sonido cuando hay una advertencia en la posición.",
+ "accessibility.signalOptions.volume": "Volumen de las indicaciones de sonido en porcentaje (0-100).",
+ "accessibility.signals.chatEditModifiedFile": "Reproduce una señal de sonido o audio al mostrar un archivo con cambios de las ediciones de chat",
+ "accessibility.signals.chatEditModifiedFile.sound": "Reproduce un sonido al mostrar un archivo con cambios de las ediciones de chat",
+ "accessibility.signals.chatRequestSent": "Reproduce una señal o sonido (pista de audio) y/o anuncio (alerta) cuando se realiza una solicitud de chat.",
+ "accessibility.signals.chatRequestSent.announcement": "Anuncia cuando se realiza una solicitud de chat.",
+ "accessibility.signals.chatRequestSent.sound": "Reproduce un sonido cuando se realiza una solicitud de chat.",
+ "accessibility.signals.chatResponseReceived": "Reproduce una señal de sonido o audio cuando se recibe la respuesta.",
+ "accessibility.signals.chatResponseReceived.sound": "Reproduce un sonido cuando se ha recibido la respuesta.",
+ "accessibility.signals.chatUserActionRequired": "Reproduce una señal, sonido (indicación de audio) y/o anuncio (alerta), cuando se requiere una acción del usuario en el chat.",
+ "accessibility.signals.chatUserActionRequired.announcement": "Anuncia cuándo se requiere una acción del usuario en el chat, incluida información sobre la acción y cómo realizarla.",
+ "accessibility.signals.chatUserActionRequired.sound": "Reproduce un sonido cuando se requiere la acción del usuario en el chat.",
+ "accessibility.signals.clear": "Reproduce una señal o sonido (pista de audio) y/o anuncio (alerta) cuando se borra una característica (por ejemplo, el terminal, la Consola de depuración o el Canal de salida).",
+ "accessibility.signals.clear.announcement": "Anuncia cuando se borra una característica.",
+ "accessibility.signals.clear.sound": "Reproduce un sonido cuando se borra una característica.",
+ "accessibility.signals.codeActionApplied": "Reproduce una indicación de sonido o audio cuando se ha aplicado la acción de código.",
+ "accessibility.signals.codeActionApplied.sound": "Reproduce un sonido cuando se ha aplicado la acción de código.",
+ "accessibility.signals.codeActionTriggered": "Reproduce una indicación de sonido o audio cuando se ha desencadenado una acción de código.",
+ "accessibility.signals.codeActionTriggered.sound": "Reproduce un sonido cuando se ha desencadenado una acción de código.",
+ "accessibility.signals.diffLineDeleted": "Reproduce un sonido o pista de audio cuando el foco se mueve a una línea eliminada en el Modo de visualizador de diferencias accesibles o al cambio siguiente o anterior.",
+ "accessibility.signals.diffLineDeleted.sound": "Reproduce un sonido cuando el foco se mueve a una línea eliminada en modo de Visualizador de diferencias accesible o al cambio siguiente o anterior.",
+ "accessibility.signals.diffLineInserted": "Reproduce una pista de sonido o audio cuando el foco se mueve a una línea insertada en el Modo de visualizador de diferencias accesibles o al cambio siguiente o anterior.",
+ "accessibility.signals.diffLineModified": "Reproduce un sonido o pista de audio cuando el foco se mueve a una línea modificada en el modo Visor de diferencias accesibles o al cambio siguiente o anterior.",
+ "accessibility.signals.diffLineModified.sound": "Reproduce un sonido cuando el foco se mueve a una línea modificada en el modo Visor de diferencias accesibles o al cambio siguiente o anterior.",
+ "accessibility.signals.editsKept": "Reproduce una señal de sonido (indicación de audio) o anuncio (alerta) cuando se conservan las ediciones.",
+ "accessibility.signals.editsKept.announcement": "Anuncia cuándo se conservan las ediciones.",
+ "accessibility.signals.editsKept.sound": "Reproduce un sonido cuando se conservan las ediciones.",
+ "accessibility.signals.editsUndone": "Reproduce una señal de sonido (indicación de audio) o anuncio (alerta) cuando se han deshecho las ediciones.",
+ "accessibility.signals.editsUndone.announcement": "Anuncia cuándo se han deshecho las ediciones.",
+ "accessibility.signals.editsUndone.sound": "Reproduce un sonido cuando se han deshecho las ediciones.",
+ "accessibility.signals.format": "Reproduce una señal o sonido (pista de audio) y/o anuncio (alerta) cuando se formatea un archivo o bloc de notas.",
+ "accessibility.signals.format.always": "Reproduce el sonido siempre que se da formato a un archivo, incluso si se establece en formato al guardar, escribir, pegar o ejecutar una celda.",
+ "accessibility.signals.format.announcement": "Anuncia cuando se da formato a un archivo o bloc de notas.",
+ "accessibility.signals.format.announcement.always": "Anuncia cada vez que se da formato a un archivo, incluido si se establece en formato al guardar, escribir, pegar o ejecutar una celda.",
+ "accessibility.signals.format.announcement.never": "Nunca hace anuncios.",
+ "accessibility.signals.format.announcement.userGesture": "Anuncia cuando un usuario da formato explícitamente a un archivo.",
+ "accessibility.signals.format.never": "Nunca reproduce el sonido.",
+ "accessibility.signals.format.sound": "Reproduce un sonido cuando se da formato a un archivo o bloc de notas.",
+ "accessibility.signals.format.userGesture": "Reproduce el sonido cuando un usuario da formato explícitamente a un archivo.",
+ "accessibility.signals.lineHasBreakpoint": "Reproduce una señal o sonido (pista de audio) y/o anuncio (alerta) cuando la línea activa tiene un punto de interrupción.",
+ "accessibility.signals.lineHasBreakpoint.announcement": "Anuncia cuando la línea activa tiene un punto de interrupción.",
+ "accessibility.signals.lineHasBreakpoint.sound": "Reproduce un sonido cuando la línea activa tiene un punto de interrupción.",
+ "accessibility.signals.lineHasError": "Reproduce una señal o sonido (pista de audio) o anuncio (alerta) cuando la línea activa tiene un error.",
+ "accessibility.signals.lineHasError.announcement": "Anuncia cuando la línea activa tiene un error.",
+ "accessibility.signals.lineHasError.sound": "Reproduce un sonido cuando la línea activa tiene un error.",
+ "accessibility.signals.lineHasFoldedArea": "Reproduce una señal o sonido (pista de audio) y/o anuncio (alerta): la línea activa tiene un área doblada que se puede desplegar.",
+ "accessibility.signals.lineHasFoldedArea.announcement": "Anuncia cuando la línea activa tiene un área doblada que se puede expandir.",
+ "accessibility.signals.lineHasFoldedArea.sound": "Reproduce un sonido cuando la línea activa tiene un área doblada que se puede desplegar.",
+ "accessibility.signals.lineHasInlineSuggestion": "Reproduce una indicación de sonido o audio cuando la línea activa tiene una sugerencia en línea.",
+ "accessibility.signals.lineHasInlineSuggestion.sound": "Reproduce un sonido cuando la línea activa tiene una sugerencia insertada.",
+ "accessibility.signals.lineHasWarning": "Reproduce una señal o sonido (pista de audio) o anuncio (alerta) cuando la línea activa tiene una advertencia.",
+ "accessibility.signals.lineHasWarning.announcement": "Anuncia cuando la línea activa tiene una advertencia.",
+ "accessibility.signals.lineHasWarning.sound": "Reproduce un sonido cuando la línea activa tiene una advertencia.",
+ "accessibility.signals.nextEditSuggestion": "Reproduce una señal: sonido o aviso (alerta) cuando hay una nueva sugerencia de edición.",
+ "accessibility.signals.nextEditSuggestion.announcement": "Anuncia cuando hay una nueva sugerencia de edición.",
+ "accessibility.signals.nextEditSuggestion.sound": "Reproduce un sonido cuando hay una nueva sugerencia de edición.",
+ "accessibility.signals.noInlayHints": "Reproduce una señal o sonido (pista de audio) y/o anuncio (alerta) al intentar leer una línea con indicaciones incrustadas que no tiene indicaciones incrustadas.",
+ "accessibility.signals.noInlayHints.announcement": "Anuncia cuando se intenta leer una línea con indicaciones incrustadas que no tiene indicaciones incrustadas.",
+ "accessibility.signals.noInlayHints.sound": "Reproduce un sonido al intentar leer una línea con indicaciones incrustadas que no tiene indicaciones incrustadas.",
+ "accessibility.signals.notebookCellCompleted": "Reproduce una señal o sonido (pista de audio) y/o anuncio (alerta) cuando se completa correctamente la ejecución de una celda del bloc de notas.",
+ "accessibility.signals.notebookCellCompleted.announcement": "Anuncia cuando se completa correctamente la ejecución de una celda del cuaderno.",
+ "accessibility.signals.notebookCellCompleted.sound": "Reproduce un sonido cuando la ejecución de una celda del bloc de notas se completa correctamente.",
+ "accessibility.signals.notebookCellFailed": "Reproduce una señal o sonido (pista de audio) o anuncio (alerta) cuando se produce un error en la ejecución de una celda del cuaderno.",
+ "accessibility.signals.notebookCellFailed.announcement": "Anuncia cuando se produce un error en la ejecución de una celda del cuaderno.",
+ "accessibility.signals.notebookCellFailed.sound": "Reproduce un sonido cuando se produce un error en la ejecución de una celda del bloc de notas.",
+ "accessibility.signals.onDebugBreak": "Reproduce una señal o sonido (pista de audio) y/o anuncio (alerta) cuando el depurador se detiene en un punto de interrupción.",
+ "accessibility.signals.onDebugBreak.announcement": "Anuncia cuando se detuvo el depurador en un punto de interrupción.",
+ "accessibility.signals.onDebugBreak.sound": "Reproduce un sonido cuando el depurador se detiene en un punto de interrupción.",
+ "accessibility.signals.positionHasError": "Reproduce una señal o sonido (pista de audio) o anuncio (alerta) cuando la línea activa tiene una advertencia.",
+ "accessibility.signals.positionHasError.announcement": "Anuncia cuando la línea activa tiene una advertencia.",
+ "accessibility.signals.positionHasError.sound": "Reproduce un sonido cuando la línea activa tiene una advertencia.",
+ "accessibility.signals.positionHasWarning": "Reproduce una señal o sonido (pista de audio) o anuncio (alerta) cuando la línea activa tiene una advertencia.",
+ "accessibility.signals.positionHasWarning.announcement": "Anuncia cuando la línea activa tiene una advertencia.",
+ "accessibility.signals.positionHasWarning.sound": "Reproduce un sonido cuando la línea activa tiene una advertencia.",
+ "accessibility.signals.progress": "Reproduce una señal o sonido (pista de audio) y/o anuncio (alerta) en bucle mientras se produce el progreso.",
+ "accessibility.signals.progress.announcement": "Alertas en bucle mientras se produce el progreso.",
+ "accessibility.signals.progress.sound": "Reproduce un sonido en bucle mientras se produce el progreso.",
+ "accessibility.signals.save": "Reproduce una señal o sonido (pista de audio) o anuncio (alerta) cuando se guarda un archivo.",
+ "accessibility.signals.save.announcement": "Anuncia cuando se guarda un archivo.",
+ "accessibility.signals.save.announcement.always": "Anuncia cuándo se guarda un archivo, incluso si se guarda automáticamente.",
+ "accessibility.signals.save.announcement.never": "Nunca reproduce el anuncio.",
+ "accessibility.signals.save.announcement.userGesture": "Anuncia cuándo un usuario guarda explícitamente un archivo.",
+ "accessibility.signals.save.sound": "Reproduce un sonido cuando se guarda un archivo.",
+ "accessibility.signals.save.sound.always": "Reproduce el sonido cada vez que se guarda un archivo, incluido el guardado automático.",
+ "accessibility.signals.save.sound.never": "Nunca reproduce el sonido.",
+ "accessibility.signals.save.sound.userGesture": "Reproduce el sonido cuando un usuario guarda explícitamente un archivo.",
+ "accessibility.signals.sound": "Reproduce un sonido cuando el foco se mueve a una línea insertada en el modo Visor de diferencias accesibles o al cambio siguiente o anterior.",
+ "accessibility.signals.taskCompleted": "Reproduce una señal o sonido (pista de audio) o anuncio (alerta) cuando se completa una tarea.",
+ "accessibility.signals.taskCompleted.announcement": "Anuncia cuando se completa una tarea.",
+ "accessibility.signals.taskCompleted.sound": "Reproduce un sonido cuando se completa una tarea.",
+ "accessibility.signals.taskFailed": "Reproduce una señal o sonido (pista de audio) y/o anuncio (alerta) cuando se produce un error en una tarea (código de salida distinto de cero).",
+ "accessibility.signals.taskFailed.announcement": "Anuncia cuando se produce un error en una tarea (código de salida distinto de cero).",
+ "accessibility.signals.taskFailed.sound": "Reproduce un sonido cuando se produce un error en una tarea (código de salida distinto de cero).",
+ "accessibility.signals.terminalBell": "Reproduce una señal o sonido (pista de audio) o anuncio (alerta) cuando suena la campana del terminal.",
+ "accessibility.signals.terminalBell.announcement": "Anuncia cuando suena la campana del terminal.",
+ "accessibility.signals.terminalBell.sound": "Reproduce un sonido cuando suena la campana del terminal.",
+ "accessibility.signals.terminalCommandFailed": "Reproduce una señal o sonido (pista de audio) y/o anuncio (alerta) cuando se produce un error en un comando de terminal (código de salida distinto de cero) o cuando se navega a un comando con dicho código de salida en la vista accesible.",
+ "accessibility.signals.terminalCommandFailed.announcement": "Anuncia cuando se produce un error en un comando de terminal (código de salida distinto de cero) o cuando se navega a un comando con este tipo de código de salida en la vista accesible.",
+ "accessibility.signals.terminalCommandFailed.sound": "Reproduce un sonido cuando se produce un error en un comando de terminal (código de salida distinto de cero) o cuando se navega a un comando con este tipo de código de salida en la vista accesible.",
+ "accessibility.signals.terminalCommandSucceeded": "Reproduce una señal ―sonido (indicador de audio) y/o anuncio (alerta)― cuando un comando de terminal se ejecuta con éxito (código de salida cero) o cuando se navega a un comando con dicho código de salida en la vista accesible.",
+ "accessibility.signals.terminalCommandSucceeded.announcement": "Anuncia cuándo se produce un error en un comando de terminal (código de salida distinto de cero) o cuando se navega a un comando con dicho código de salida en la vista accesible.",
+ "accessibility.signals.terminalCommandSucceeded.sound": "Reproduce un sonido cuando un comando de terminal se ejecuta correctamente (código de salida cero) o cuando se navega hasta un comando con dicho código de salida en la vista accesible.",
+ "accessibility.signals.terminalQuickFix": "Reproduce una señal o sonido (pista de audio) o anuncio (alerta) cuando las correcciones rápidas del terminal están disponibles.",
+ "accessibility.signals.terminalQuickFix.announcement": "Anuncia cuando están disponibles las correcciones rápidas del terminal.",
+ "accessibility.signals.terminalQuickFix.sound": "Reproduce un sonido cuando hay correcciones rápidas de terminal disponibles.",
+ "accessibility.signals.voiceRecordingStarted": "Reproduce un sonido o pista de audio cuando se inicia la grabación de voz.",
+ "accessibility.signals.voiceRecordingStarted.sound": "Reproduce un sonido cuando se inicia la grabación de voz.",
+ "accessibility.signals.voiceRecordingStopped": "Reproduce un sonido o pista de audio cuando se detiene la grabación de voz.",
+ "accessibility.signals.voiceRecordingStopped.sound": "Reproduce un sonido cuando se detiene la grabación de voz.",
+ "accessibility.underlineLinks": "Controla si los vínculos deben estar subrayados en el área de trabajo.",
+ "accessibility.verboseChatProgressUpdates": "Controla si se deben hacer anuncios detallados del progreso cuando hay una solicitud de chat en curso, incluida información como el texto buscado para con X resultados, el archivo creado o el archivo leído .",
+ "accessibility.voice.autoSynthesize.off": "Deshabilite la característica.",
+ "accessibility.voice.autoSynthesize.on": "Habilite la característica. Cuando se habilita un lector de pantalla, tenga en cuenta que esto deshabilitará las actualizaciones de aria.",
+ "accessibility.windowTitleOptimized": "Controla si el {0} debe optimizarse para los lectores de pantalla en el modo de lector de pantalla. Cuando se habilita, el título de la ventana se habrá {1} anexado al final.",
+ "accessibilityConfigurationTitle": "Accesibilidad",
+ "announcement.enabled.auto": "Habilitar anuncio. Solo se reproducirá cuando se encuentre en el modo optimizado del lector de pantalla.",
+ "announcement.enabled.off": "Deshabilitar el anuncio.",
+ "autoSynthesize": "Si una respuesta textual debe leerse automáticamente en voz alta cuando se usó la voz como entrada. Por ejemplo, en una sesión de chat, una respuesta se sintetiza automáticamente cuando se usa la voz como solicitud de chat.",
+ "dimUnfocusedEnabled": "Indica si se van a atenuar los terminales y los editores sin foco, lo que hace que sea más claro a dónde se dirigirá la entrada escrita. Funciona con la mayoría de los editores, excepto aquellos que usan iframes como blocs de notas y editores de vista web de extensión.",
+ "dimUnfocusedOpacity": "Fracción de opacidad (de 0,2 a 1,0) que se va a usar para los editores y terminales sin foco. Esto solo surtirá efecto cuando {0} esté habilitado.",
+ "replEditor.autoFocusAppendedCell": "Controlar si el foco se debe enviar automáticamente a REPL cuando se ejecuta el código.",
+ "sound.enabled.auto": "Habilita el sonido cuando se conecta un lector de pantalla.",
+ "sound.enabled.autoWindow": "Habilita el sonido cuando se conecta un lector de pantalla.",
+ "sound.enabled.off": "Deshabilitar el sonido.",
+ "sound.enabled.on": "Habilitar sonido.",
+ "speechLanguage.auto": "Automático (usar idioma para mostrar)",
+ "terminal.integrated.accessibleView.closeOnKeyPress": "Al presionar la tecla, cerrar la vista accesible y enfocar el elemento desde el que se invocó.",
+ "verbosity.chat.description": "Proporcionar información sobre cómo acceder al menú de ayuda del chat cuando la entrada del chat está centrada.",
+ "verbosity.comments": "Proporcione información sobre las acciones que se pueden realizar en el widget de comentarios o en un archivo que contenga comentarios.",
+ "verbosity.debug": "Proporciona información sobre cómo acceder al cuadro de diálogo de ayuda de accesibilidad de la consola de depuración cuando se centra la consola de depuración o el viewlet de ejecución y depuración. Tenga en cuenta que se requiere una recarga de la ventana para que esto surta efecto.",
+ "verbosity.diffEditor.description": "Proporcionar información sobre cómo navegar por los cambios en el editor de diferencias cuando se centra.",
+ "verbosity.diffEditorActive": "Indicar cuándo un editor de diferencias se convierte en el editor activo.",
+ "verbosity.emptyEditorHint": "Proporcione información sobre las acciones relevantes en un editor de texto vacío.",
+ "verbosity.hover": "Proporcionar información sobre cómo abrir el puntero en una vista accesible.",
+ "verbosity.inlineCompletions.description": "Proporcionar información sobre cómo obtener acceso a mantener el mouse durante las finalizaciones de forma insertada y a la vista accesible.",
+ "verbosity.interactiveEditor.description": "Proporcionar información sobre cómo acceder al menú de ayuda de accesibilidad del chat del editor insertado y alertar con sugerencias que describen cómo usar la característica cuando la entrada está centrada.",
+ "verbosity.keybindingsEditor.description": "Proporcionar información sobre cómo cambiar un enlace de teclado en el editor de enlaces de teclado cuando se centra una fila.",
+ "verbosity.notebook": "Proporcione información sobre cómo enfocar el contenedor de celdas o el editor interno cuando se centra una celda del bloc de notas.",
+ "verbosity.notification": "Proporcionar información sobre cómo abrir la notificación en una vista accesible.",
+ "verbosity.replEditor.description": "Proporcione información acerca de cómo acceder al menú de ayuda de accesibilidad del editor REPL cuando el editor REPL esté centrado.",
+ "verbosity.scm": "Proporciona información sobre cómo acceder al menú de ayuda de accesibilidad del control de código fuente cuando la entrada está centrada.",
+ "verbosity.terminal.description": "Proporcionar información sobre cómo acceder al menú de ayuda de accesibilidad del terminal cuando el terminal está centrado.",
+ "verbosity.terminalChatOutput.description": "Proporcionar información sobre cómo abrir la salida del terminal de chat en la vista accesible.",
+ "verbosity.walkthrough": "Proporcionar información sobre cómo abrir el tutorial en una vista accesible.",
+ "voice.ignoreCodeBlocks": "Indica si se deben omitir los fragmentos de código en la síntesis de texto a voz.",
+ "voice.speechLanguage": "El idioma que deben usar la conversión de texto a voz y la conversión de voz en texto. Seleccione \"auto\" para usar el idioma de visualización configurado si es posible. Tenga en cuenta que no todos los idiomas de visualización pueden ser compatibles con el reconocimiento de voz y los sintetizadores.",
+ "voice.speechTimeout": "La duración en milisegundos que el reconocimiento de voz de voz permanece activo después de dejar de hablar. Por ejemplo, en una sesión de chat, el texto transcrito se envía automáticamente cuando se acaba el tiempo de espera. Establézcalo en \"0\" para desactivar esta característica."
+ },
+ "vs/workbench/contrib/accessibility/browser/accessibilityStatus": {
+ "screenReaderDetected": "Lector de pantalla optimizado",
+ "screenReaderDetectedExplanation.answerLearnMore": "Más información",
+ "screenReaderDetectedExplanation.answerNo": "No",
+ "screenReaderDetectedExplanation.answerYes": "Sí",
+ "screenReaderDetectedExplanation.question": "Se detectó el uso del lector de pantalla. ¿Desea habilitar {0} para optimizar el editor para el uso del lector de pantalla?",
+ "status.editor.screenReaderMode": "Modo lector de pantalla"
+ },
+ "vs/workbench/contrib/accessibility/browser/accessibleView": {
+ "accessibility-help": "Ayuda de accesibilidad",
+ "accessibility-help-hint": "Ayuda de accesibilidad, {0}",
+ "accessible-view": "Vista accesible",
+ "accessible-view-hint": "Vista accesible, {0}",
+ "accessibleHelpToolbar": "Ayuda de accesibilidad",
+ "accessibleViewNextPreviousHint": "Muestra el elemento siguiente{0} o el elemento anterior{1}.",
+ "accessibleViewSymbolQuickPickPlaceholder": "Escriba para buscar símbolos",
+ "accessibleViewSymbolQuickPickTitle": "Ir al símbolo en la vista accesible",
+ "accessibleViewToolbar": "Vista accesible",
+ "acessibleViewDisableHint": "\r\nDeshabilite el nivel de detalle de accesibilidad para esta característica{0}.",
+ "acessibleViewHint": "Inspeccione esto en la vista accesible con {0}",
+ "acessibleViewHintNoKbEither": "Inspeccione esto en la vista accesible mediante el comando Abrir vista accesible, que actualmente no se puede desencadenar mediante el enlace de teclado.",
+ "ariaAccessibleViewActions": "Explore acciones como deshabilitar esta sugerencia (Mayús+Tabulador).",
+ "ariaAccessibleViewActionsBottom": "Explore acciones como deshabilitar esta sugerencia (Mayús+Tabulador), use Escape para salir de este cuadro de diálogo.",
+ "configureKb": "\r\nConfigure enlaces de teclado para comandos que carecen de ellos {0}.",
+ "configureKbAssigned": "\r\nConfigure enlaces de teclado para los comandos que ya tienen asignaciones {0}.",
+ "disableAccessibilityHelp": "El nivel de detalle de accesibilidad {0} ahora está deshabilitado",
+ "exit": "\r\nSalga de este cuadro de diálogo (Escape).",
+ "goToSymbolHint": "Vaya a un símbolo{0}.",
+ "insertAtCursor": " - Insertar el bloque de código en el cursor{0}.",
+ "insertIntoNewFile": " - Insertar el bloque de código en un nuevo archivo{0}.",
+ "intro": "En la vista accesible, puede:\r\n",
+ "keybindings": "Configurar los enlaces de teclado",
+ "openDoc": "\r\nAbra una ventana del explorador con más información relacionada con la accesibilidad{0}.",
+ "runInTerminal": " - Ejecutar el bloque de código en el terminal{0}.\r\n",
+ "selectKeybinding": "Seleccionar un id. de comando para configurar un enlace de teclado para él",
+ "symbolLabel": "({0}) {1}",
+ "symbolLabelAria": "({0}) {1}",
+ "toolbar": "Vaya a la barra de herramientas (Mayús+Tab)."
+ },
+ "vs/workbench/contrib/accessibility/browser/accessibleViewActions": {
+ "editor.action.accessibilityHelp": "Abrir la ayuda de accesibilidad",
+ "editor.action.accessibilityHelpConfigureAssignedKeybindings": "Ayuda de accesibilidad Para configurar enlaces de teclado asignados",
+ "editor.action.accessibilityHelpConfigureUnassignedKeybindings": "Ayuda de accesibilidad para configurar enlaces de teclado sin asignar",
+ "editor.action.accessibilityHelpOpenHelpLink": "Ayuda de accesibilidad para abrir el vínculo de ayuda",
+ "editor.action.accessibleView": "Abrir Vista accesible",
+ "editor.action.accessibleViewAcceptInlineCompletionAction": "Aceptar finalización insertada",
+ "editor.action.accessibleViewDisableHint": "Deshabilitar sugerencia de vista accesible",
+ "editor.action.accessibleViewGoToSymbol": "Ir al símbolo en la vista accesible",
+ "editor.action.accessibleViewNext": "Mostrar siguiente en vista accesible",
+ "editor.action.accessibleViewNextCodeBlock": "Vista accesible: siguiente bloque de código",
+ "editor.action.accessibleViewPrevious": "Mostrar anterior en vista accesible",
+ "editor.action.accessibleViewPreviousCodeBlock": "Vista accesible: bloque de código anterior"
+ },
+ "vs/workbench/contrib/accessibilitySignals/browser/commands": {
+ "accessibility.announcement.help": "Ayuda: enumerar anuncios de señal",
+ "accessibility.announcement.help.description": "Enumerar todos los anuncios de accesibilidad, alertas, mensajes braille y configurar sus opciones",
+ "accessibility.sound.help.description": "Enumerar todos los sonidos, ruidos o indicaciones de audio de accesibilidad y configurar sus opciones",
+ "announcement.help.placeholder": "Seleccionar un anuncio para configurar",
+ "announcement.help.placeholder.disabled": "El lector de pantalla no está activo. Los anuncios están deshabilitados de forma predeterminada.",
+ "announcement.help.settings": "Configurar anuncio",
+ "signals.sound.help": "Ayuda: enumerar sonidos de señal",
+ "sounds.help.placeholder": "Seleccionar un sonido para reproducir y configurar",
+ "sounds.help.settings": "Configurar sonido"
+ },
+ "vs/workbench/contrib/accessibilitySignals/browser/openDiffEditorAnnouncement": {
+ "openDiffEditorAnnouncement": "Editor de diferencias"
+ },
+ "vs/workbench/contrib/accountEntitlements/browser/accountsEntitlements.contribution": {
+ "workbench.accounts.showEntitlements": "When enabled, available entitlements for the account will be shown in the accounts menu."
},
"vs/workbench/contrib/audioCues/browser/audioCues.contribution": {
+ "audioCues.chatRequestSent": "Reproduce un sonido cuando se realiza una solicitud de chat.",
+ "audioCues.chatResponsePending": "Reproduce un sonido en bucle mientras la respuesta está pendiente.",
+ "audioCues.chatResponseReceived": "Reproduce un sonido en bucle mientras la respuesta se ha recibido.",
+ "audioCues.clear": "Reproduce un sonido cuando se borra una característica (por ejemplo, el terminal, la Consola de depuración o el canal de salida). Cuando esta opción está deshabilitada, una alerta ARIA anunciará \"Borrado\".",
+ "audioCues.debouncePositionChanges": "Si se deben anular los cambios de posición o no",
+ "audioCues.diffLineDeleted": "Reproduce un sonido cuando el foco se mueve a una línea eliminada en modo de Visualizador de diferencias accesible o al cambio siguiente o anterior.",
+ "audioCues.diffLineInserted": "Reproduce un sonido cuando el foco se mueve a una línea insertada en el modo Visor de diferencias accesibles o al cambio siguiente o anterior.",
+ "audioCues.diffLineModified": "Reproduce un sonido cuando el foco se mueve a una línea modificada en el modo Visor de diferencias accesibles o al cambio siguiente o anterior.",
"audioCues.enabled.auto": "Habilita las indicaciones de audio cuando se conecta un lector de pantalla.",
"audioCues.enabled.off": "Deshabilitar indicaciones de audio.",
"audioCues.enabled.on": "Habilite indicaciones de audio.",
+ "audioCues.format": "Reproduce un sonido cuando se da formato a un archivo o bloc de notas. Consulte también {0}",
+ "audioCues.format.always": "Reproduce la indicación de audio siempre que se da formato a un archivo, incluido si se establece en formato al guardar, escribir o pegar o ejecutar una celda.",
+ "audioCues.format.never": "Nunca reproduce la indicación de audio.",
+ "audioCues.format.userGesture": "Reproduce la indicación de audio cuando un usuario da formato explícitamente a un archivo.",
"audioCues.lineHasBreakpoint": "Reproduce un sonido cuando la línea activa tiene un punto de interrupción.",
"audioCues.lineHasError": "Reproduce un sonido cuando la línea activa tiene un error.",
"audioCues.lineHasFoldedArea": "Reproduce un sonido cuando la línea activa tiene un área doblada que se puede desplegar.",
"audioCues.lineHasInlineSuggestion": "Reproduce un sonido cuando la línea activa tiene una sugerencia insertada.",
"audioCues.lineHasWarning": "Reproduce un sonido cuando la línea activa tiene una advertencia.",
"audioCues.noInlayHints": "Reproduce un sonido al intentar leer una línea con sugerencias de incrustación que no tiene sugerencias de incrustación.",
+ "audioCues.notebookCellCompleted": "Reproduce un sonido cuando la ejecución de una celda del bloc de notas se completa correctamente.",
+ "audioCues.notebookCellFailed": "Reproduce un sonido cuando se produce un error en la ejecución de una celda del bloc de notas.",
"audioCues.onDebugBreak": "Reproduce un sonido cuando el depurador se detiene en un punto de interrupción.",
+ "audioCues.save": "Reproduce un sonido cuando se guarda un archivo. Consulte también {0}",
+ "audioCues.save.always": "Reproduce la indicación de audio cada vez que se guarda un archivo, incluido el guardado automático.",
+ "audioCues.save.never": "Nunca reproduce la indicación de audio.",
+ "audioCues.save.userGesture": "Reproduce la indicación de audio cuando un usuario guarda explícitamente un archivo.",
+ "audioCues.taskCompleted": "Reproduce un sonido cuando se completa una tarea.",
+ "audioCues.taskFailed": "Reproduce un sonido cuando se produce un error en una tarea (código de salida distinto de cero).",
+ "audioCues.terminalCommandFailed": "Reproduce un sonido cuando se produce un error en un comando de terminal (código de salida distinto de cero).",
+ "audioCues.terminalQuickFix": "Reproduce un sonido cuando hay correcciones rápidas de terminal disponibles.",
"audioCues.volume": "Volumen de las indicaciones de audio en porcentaje (0-100)."
},
"vs/workbench/contrib/audioCues/browser/commands": {
+ "accessibility.alert.help": "Ayuda: lista de alertas",
+ "alerts.help.placeholder": "Inspeccionar y configurar el estado de una alerta",
+ "alerts.help.settings": "Habilitar/deshabilitar indicaciones de audio",
"audioCues.help": "Ayuda: Enumerar indicaciones de audio",
"audioCues.help.placeholder": "Seleccionar una indicación de audio para reproducir",
"audioCues.help.settings": "Habilitar/deshabilitar indicaciones de audio",
"disabled": "Deshabilitado"
},
- "vs/workbench/contrib/backup/electron-sandbox/backupTracker": {
- "backupTrackerBackupFailed": "No se han podido guardar los editores con modificaciones siguientes en la ubicación de copia de seguridad.",
- "backupTrackerConfirmFailed": "No se pudieron guardar ni revertir los editores con modificaciones siguientes.",
- "backupErrorDetails": "Pruebe a guardar o revertir primero las ediciones incompletas y luego inténtelo de nuevo.",
- "ok": "Aceptar",
- "backupBeforeShutdown": "Esperando a realizar una copia de seguridad de los editores con modificaciones...",
- "saveBeforeShutdown": "Esperando a que se guarden los editores con modificaciones...",
- "revertBeforeShutdown": "Esperando a que se reviertan los editores con modificaciones..."
+ "vs/workbench/contrib/authentication/browser/actions/manageAccountPreferencesForExtensionAction": {
+ "accounts": "Cuentas",
+ "currentAccount": "Cuenta actual",
+ "manageAccountPreferenceForExtension": "Administrar preferencias de cuenta de extensión...",
+ "noAccountUsage": "Esta extensión aún no se ha usado en ninguna cuenta.",
+ "noAccounts": "Esta extensión no usa cuentas actualmente.",
+ "pickAProviderTitle": "Administrar preferencias de cuenta de extensión",
+ "placeholder v2": "Administrar las preferencias de la cuenta \"{0}\" para {1}...",
+ "selectExtension": "Seleccione una extensión para administrar las preferencias de cuenta para",
+ "selectProvider": "Seleccione un proveedor de autenticación para el que administrar las preferencias de cuenta",
+ "title": "'{0}' preferencias de la cuenta para esta área de trabajo",
+ "use new account": "Usar una cuenta nueva..."
+ },
+ "vs/workbench/contrib/authentication/browser/actions/manageAccountPreferencesForMcpServerAction": {
+ "accounts": "Cuentas",
+ "currentAccount": "Cuenta actual",
+ "manageAccountPreferenceForMcpServer": "Administrar preferencias de cuenta del servidor MCP",
+ "noAccountUsage": "Este servidor MCP aún no ha usado ninguna cuenta.",
+ "noAccounts": "Actualmente, este servidor MCP no utiliza cuentas.",
+ "pickAProviderTitle": "Administrar preferencias de cuenta del servidor MCP",
+ "placeholder v2": "Administrar las preferencias de la cuenta \"{0}\" para {1}...",
+ "selectProvider": "Seleccione un proveedor de autenticación para el que administrar las preferencias de cuenta",
+ "title": "'{0}' preferencias de la cuenta para esta área de trabajo",
+ "use new account": "Usar una cuenta nueva..."
+ },
+ "vs/workbench/contrib/authentication/browser/actions/manageAccountsAction": {
+ "accounts": "Cuentas",
+ "manageAccount": "Administrar '{0}'",
+ "manageAccounts": "Administrar cuentas",
+ "manageTrustedExtensions": "Administrar extensiones de confianza",
+ "manageTrustedMCPServers": "Administrar servidores MCP de confianza",
+ "noActiveAccounts": "No hay ninguna cuenta activa.",
+ "pickAccount": "Seleccione una cuenta para administrar",
+ "selectAction": "Seleccionar una acción",
+ "signOut": "Cerrar sesión"
+ },
+ "vs/workbench/contrib/authentication/browser/actions/manageDynamicAuthenticationProvidersAction": {
+ "authenticationCategory": "Autenticación",
+ "clientId": "Id. de cliente: {0}",
+ "confirmDeleteDetail": "Esto eliminará todos los datos de autenticación almacenados para los proveedores seleccionados. Tendrá que volver a autenticarse si utiliza estos proveedores nuevamente.",
+ "confirmDeleteMultipleProviders": "¿Está seguro de que quiere quitar {0} proveedores de autenticación dinámica: {1}?",
+ "confirmDeleteSingleProvider": "¿Está seguro de que desea eliminar el proveedor de autenticación dinámica \"{0}\"?",
+ "noDynamicProviders": "No hay proveedores de autenticación dinámica",
+ "noDynamicProvidersDetail": "Aún no se ha utilizado ningún proveedor de autenticación dinámica.",
+ "remove": "Quitar",
+ "removeDynamicAuthProviders": "Eliminar proveedores de autenticación dinámica",
+ "selectProviderToRemove": "Seleccione un proveedor de autenticación dinámica para eliminar"
+ },
+ "vs/workbench/contrib/authentication/browser/actions/manageTrustedExtensionsForAccountAction": {
+ "accountLastUsedDate": "Último uso de esta cuenta {0}",
+ "accountPreferences": "Administrar preferencias de cuenta para esta extensión",
+ "accounts": "Cuentas",
+ "manageExtensions": "Elija qué extensiones pueden acceder a esta cuenta",
+ "manageTrustedExtensions": "Administrar extensiones de confianza",
+ "manageTrustedExtensions.cancel": "Cancelar",
+ "manageTrustedExtensionsForAccount": "Administrar extensiones de confianza para la cuenta",
+ "noTrustedExtensions": "Esta cuenta no se ha usado en ninguna extensión.",
+ "notUsed": "No ha usado esta cuenta",
+ "pickAccount": "Elija una cuenta para la que administrar extensiones de confianza",
+ "trustedExtensionTooltip": "Esta extensión es de confianza para Microsoft y\r\nsiempre tiene acceso a esta cuenta",
+ "trustedExtensions": "De confianza para Microsoft",
+ "viewExtensionDetails": "Ver detalles de la extensión"
+ },
+ "vs/workbench/contrib/authentication/browser/actions/manageTrustedMcpServersForAccountAction": {
+ "accountLastUsedDate": "Último uso de esta cuenta {0}",
+ "accountPreferences": "Administrar preferencias de cuenta para este servidor MCP",
+ "accounts": "Cuentas",
+ "manageMcpServers": "Elija qué servidores MCP pueden acceder a esta cuenta",
+ "manageTrustedMcpServers": "Administrar servidores MCP de confianza",
+ "manageTrustedMcpServers.cancel": "Cancelar",
+ "manageTrustedMcpServersForAccount": "Administrar servidores MCP de confianza para la cuenta",
+ "noTrustedMcpServers": "Esta cuenta no se ha usado en ningún servidor MCP.",
+ "notUsed": "No ha usado esta cuenta",
+ "pickAccount": "Elija una cuenta para administrar servidores MCP de confianza",
+ "trustedMcpServerTooltip": "Este servidor MCP es de confianza para Microsoft y\r\nsiempre tiene acceso a esta cuenta",
+ "trustedMcpServers": "De confianza para Microsoft"
+ },
+ "vs/workbench/contrib/authentication/browser/actions/signOutOfAccountAction": {
+ "signOut": "&&Cerrar sesión",
+ "signOutMessage": "La cuenta '{0}' ha sido utilizada por:\r\n\r\n{1}\r\n\r\n ¿Cerrar sesión en estas extensiones?",
+ "signOutMessageSimple": "¿Cerrar la sesión de \"{0}\"?",
+ "signOutOfAccount": "Cerrar sesión en la cuenta"
+ },
+ "vs/workbench/contrib/authentication/browser/authentication.contribution": {
+ "authentication": "Autenticación",
+ "authenticationMcpAuthorizationServers": "Servidores de autorización MCP",
+ "authenticationid": "Id.",
+ "authenticationlabel": "Etiqueta"
},
"vs/workbench/contrib/bulkEdit/browser/bulkEditService": {
- "areYouSureQuiteBulkEdit": "¿Seguro de que quiere {0}? \"{1}\" está en curso.",
- "changeWorkspace": "Cambiar área de trabajo",
- "closeTheWindow": "Cerrar ventana",
+ "areYouSureQuiteBulkEdit.detail": "\"{0}\" está en curso.",
+ "changeWorkspace.message": "¿Está seguro de que desea cambiar el área de trabajo?",
+ "closeTheWindow.message": "¿Está seguro de que desea cerrar la ventana?",
"fileOperation": "Operación de archivos",
"nothing": "No se realizaron ediciones",
- "quit": "Salir",
+ "quitMessage": "¿Está seguro de que quiere salir?",
+ "quitMessageMac": "¿Está seguro de que desea salir?",
"refactoring.autoSave": "Controla si los archivos que formaron parte de una refactorización se guardan automáticamente",
- "reloadTheWindow": "Volver a cargar ventana",
+ "reloadTheWindow.message": "¿Está seguro de que desea volver a cargar la ventana?",
"summary.0": "No se realizaron ediciones",
"summary.n0": "{0} ediciones de texto en un archivo",
"summary.nm": "{0} ediciones de texto en {1} archivos",
@@ -4259,9 +5793,8 @@
"vs/workbench/contrib/bulkEdit/browser/preview/bulkEdit.contribution": {
"Discard": "Descartar refactorización",
"apply": "Aplicar refactorización",
- "cancel": "Cancelar",
"cat": "Vista previa de refactorización",
- "continue": "Continuar",
+ "continue": "&&Continuar",
"detail": "Pulse \"Continuar\" para descartar la refactorización anterior y continuar con la refactorización actual.",
"groupByFile": "Agrupar cambios por archivo",
"groupByType": "Agrupar cambios por tipo",
@@ -4274,13 +5807,8 @@
"cancel": "Descartar",
"conflict.1": "No se puede aplicar la refactorización porque \"{0}\" ha cambiado mientras tanto.",
"conflict.N": "No se puede aplicar la refactorización porque {0} otros archivos han cambiado mientras tanto.",
- "create": "Crear",
- "edt.title.1": "{0} (previsualización de refactorización)",
- "edt.title.2": "{0} ({1}, vista previa de refactorización)",
- "edt.title.del": "{0} (eliminar, refactorizar la vista previa)",
"empty.msg": "Invoque una acción de código, como cambiar el nombre, para ver aquí una vista previa de sus cambios.",
- "ok": "Aplicar",
- "rename": "Cambiar nombre"
+ "ok": "Aplicar"
},
"vs/workbench/contrib/bulkEdit/browser/preview/bulkEditPreview": {
"default": "Otro"
@@ -4329,67 +5857,1937 @@
"to": "autores de llamada de {0}",
"tree.aria": "Jerarquía de llamadas"
},
- "vs/workbench/contrib/cli/node/cli.contribution": {
- "shellCommand": "Comando shell",
- "install": "Instalar el comando '{0}' en PATH",
- "not available": "Este comando no está disponible",
- "ok": "Aceptar",
- "cancel2": "Cancelar",
- "warnEscalation": "Ahora el código solicitará privilegios de administrador con \"osascript\" para instalar el comando shell.",
- "cantCreateBinFolder": "No se puede crear \"/usr/local/bin\".",
- "aborted": "Anulado",
- "successIn": "El comando shell '{0}' se instaló correctamente en PATH.",
- "uninstall": "Desinstalar el comando '{0}' de PATH",
- "warnEscalationUninstall": "Ahora el código solicitará privilegios de administrador con \"osascript\" para desinstalar el comando shell.",
- "cantUninstall": "No se puede desinstalar el comando shell \"{0}\".",
- "successFrom": "El comando shell '{0}' se desinstaló correctamente de PATH."
+ "vs/workbench/contrib/chat/browser/actions/chatAccessibilityActions": {
+ "chat.category": "Chat",
+ "chatNotReady": "La interfaz de chat no está lista.",
+ "focusChatConfirmation": "Confirmación del chat de concentración",
+ "noChatSession": "No se encontró ninguna sesión de chat activa.",
+ "noConfirmationRequired": "No se requiere confirmación de chat"
+ },
+ "vs/workbench/contrib/chat/browser/actions/chatAccessibilityHelp": {
+ "chat.announcement": "Las respuestas del chat se anunciarán a medida que vayan llegando. Una respuesta indicará el número de bloques de código, si los hay, y a continuación el resto de la respuesta.",
+ "chat.attachments.removal": "Para eliminar contextos adjuntos, céntrese en un adjunto y presione Suprimir o Retroceso.",
+ "chat.differencePanel": "La vista de chat del panel es una interfaz persistente que también admite la navegación por las preguntas de seguimiento sugeridas, mientras que la vista de chat rápido es una interfaz transitoria para realizar y ver solicitudes.",
+ "chat.differenceQuick": "La vista de chat rápido es una interfaz transitoria para realizar y ver solicitudes, mientras que la vista de chat del panel es una interfaz persistente que también admite la navegación por las preguntas de seguimiento sugeridas.",
+ "chat.focusMostRecentTerminal": "Para centrar la última terminal de chat que ejecutó una herramienta, invoque el comando Enfocar terminal de chat más reciente{0}.",
+ "chat.focusMostRecentTerminalOutput": "Para centrar la salida de la última herramienta de terminal de chat, invoca el comando Enfocar salida del terminal de chat más reciente{0}.",
+ "chat.inspectResponse": "En el cuadro de entrada, inspeccione la última respuesta en la vista accesible{0}.",
+ "chat.overview": "La vista de chat rápido consta de un cuadro de entrada y una lista de solicitudes y respuestas. El cuadro de entrada se usa para realizar solicitudes y la lista se usa para mostrar las respuestas.",
+ "chat.progressVerbosity": "Mientras se procesa la solicitud de chat, recibirá actualizaciones detalladas del progreso si la solicitud tarda más de 4 segundos. Esto incluye información como el texto buscado para con X resultados, el archivo creado o el archivo leído . Puede desactivar esto con accessibility.verboseChatProgressUpdates.",
+ "chat.requestHistory": "En el cuadro de entrada, utilice las flechas arriba y abajo para navegar por el historial de solicitudes. Edite la entrada y pulse Entrar o el botón de Enviar para ejecutar una nueva solicitud.",
+ "chat.showHiddenTerminals": "Si hay terminales de chat ocultos, puede verlos invocando el comando Ver terminales de chat ocultos{0}.",
+ "chat.signals": "Las señales de accesibilidad se pueden cambiar a través de la configuración con un prefijo de signals.chat. De forma predeterminada, si una solicitud tarda más de 4 segundos, escuchará un sonido que indica que el progreso todavía se está produciendo.",
+ "chatAgent.acceptTool": "Para aceptar una acción de la herramienta, utilice el comando Aceptar confirmación de herramienta {0}.",
+ "chatAgent.autoApprove": "Para aprobar automáticamente las acciones de la herramienta sin confirmación manual, establézcala {0} en {1} en la configuración.",
+ "chatAgent.openEditedFilesSetting": "De forma predeterminada, cuando se realizan modificaciones en los archivos, se abrirán. Para cambiar este comportamiento, establezca accessibility.openChatEditedFiles en false en la configuración.",
+ "chatAgent.overview": "La vista del agente de chat se utiliza para aplicar ediciones en los archivos de su área de trabajo, habilitar la ejecución de comandos en el terminal y mucho más.",
+ "chatAgent.runCommand": "Para realizar la acción, use el comando de la herramienta Ejecutar comando {0}.",
+ "chatAgent.userActionRequired": "Una alerta indicará cuándo se requiere la acción del usuario. Por ejemplo, si el agente quiere ejecutar algo en el terminal, escuchará: Acción requerida: Ejecutar comando en el terminal.",
+ "chatEditing.acceptAllFiles": "- Conservar todas las ediciones{0}.",
+ "chatEditing.acceptFile": "- Conservar{0} y Deshacer archivo{1}.",
+ "chatEditing.acceptHunk": "En el editor, Mantenga{0}, Deshaga{1} o Alterne la Diferencia{2} para el Cambio actual.",
+ "chatEditing.discardAllFiles": "- Deshacer todas las ediciones{0}.",
+ "chatEditing.expectation": "Cuando se realiza una solicitud, se reproducirá un indicador de progreso mientras se aplican las modificaciones.",
+ "chatEditing.format": "Se compone de un cuadro de entrada y un conjunto de trabajo de archivos (Mayús+Tabulador).",
+ "chatEditing.helpfulCommands": "Algunos de los comandos útiles son:",
+ "chatEditing.openFileInDiff": "- Abrir archivo en{0} de diferencias.",
+ "chatEditing.overview": "La vista de edición de chat se usa para aplicar ediciones entre archivos.",
+ "chatEditing.removeFileFromWorkingSet": "- Quitar archivo del espacio de trabajo{0}.",
+ "chatEditing.review": "Una vez aplicadas las ediciones, se reproducirá un sonido para indicar que el documento se ha abierto y está listo para su revisión. El sonido se puede deshabilitar con accessibility.signals.chatEditModifiedFile.",
+ "chatEditing.saveAllFiles": "- Guardar todos los archivos{0}.",
+ "chatEditing.sections": "Navegar entre las ediciones del editor con la navegación por la{0} anterior y la siguiente{1}",
+ "chatEditing.undoKeepSounds": "Los sonidos se reproducirán cuando se acepte o deshaga un cambio. Los sonidos se pueden deshabilitar con accessibility.signals.editsKept y accessibility.signals.editsUndone.",
+ "inlineChat.access": "Se puede activar mediante acciones de código o directamente mediante el comando: Inline Chat: Start Inline Chat{0}.",
+ "inlineChat.contextActions": "Las acciones del menú contextual pueden ejecutar una solicitud con el prefijo /. Escriba / para detectar estos comandos listos.",
+ "inlineChat.diff": "Una vez en el editor de diferencias, entre en el modo de revisión con {0}. Use las flechas arriba y abajo para desplazarse por las líneas con los cambios propuestos.",
+ "inlineChat.fix": "Si se invoca una acción de corrección, una respuesta indicará el problema con el código actual. Se representará un editor de diferencias y se puede acceder a él mediante tabulación.",
+ "inlineChat.inspectResponse": "En el cuadro de entrada, inspeccione la respuesta en la vista accesible{0}.",
+ "inlineChat.overview": "El chat en línea se realiza dentro de un editor de código y tiene en cuenta la selección actual. Resulta útil para realizar cambios en el editor actual. Por ejemplo, arreglar diagnósticos, documentar o refactorizar código. Tenga en cuenta que el código generado por inteligencia artificial puede ser incorrecto.",
+ "inlineChat.requestHistory": "En el cuadro de entrada, use Mostrar anterior{0} y Mostrar siguiente{1} para navegar por el historial de solicitudes. Edite la entrada y use entrar o el botón Enviar para ejecutar una nueva solicitud.",
+ "inlineChat.toolbar": "Utilice el tabulador para acceder a partes condicionales como comandos, estado, respuestas a mensajes y mucho más.",
+ "workbench.action.chat.announceConfirmation": "Para centrar los cuadros de diálogo de confirmación de chat pendientes, invoque el comando Estado de confirmación del chat{0}.",
+ "workbench.action.chat.editing.attachFiles": "- Adjuntar archivos{0}.",
+ "workbench.action.chat.focus": "Para centrar la lista de solicitudes y respuestas del chat, invoque el comando Enfocar chat{0}. Esto moverá el foco a la respuesta más reciente, a la que podrá navegar con las teclas de flecha arriba y abajo.",
+ "workbench.action.chat.focusInput": "Si desea enfocar el cuadro de entrada para las solicitudes de chat, invoque el comando Focus Chat Input{0}.",
+ "workbench.action.chat.focusLastFocusedItem": "Para volver a la última respuesta de chat en la que se enfocó, invoque el comando Enfocar última respuesta de chat prioritaria{0}.",
+ "workbench.action.chat.newChat": "Para crear una nueva sesión de chat, invoque el comando{0}Nuevo chat.",
+ "workbench.action.chat.nextCodeBlock": "Para enfocar el siguiente bloque de código dentro de una respuesta, invoque el comando Chat: Next Code Block{0}.",
+ "workbench.action.chat.nextUserPrompt": "Para navegar a la siguiente indicación de usuario en la conversación, invoque el comando Siguiente indicación de usuario{0}.",
+ "workbench.action.chat.previousUserPrompt": "Para navegar a la anterior indicación de usuario en la conversación, invoque el comando Anterior indicación de usuario{0}.",
+ "workbench.action.chat.undoEdits": "- Deshacer Ediciones{0}."
+ },
+ "vs/workbench/contrib/chat/browser/actions/chatActions": {
+ "actions.interactiveSession.focus": "Enfocar lista de chats",
+ "actions.interactiveSession.focusLastFocused": "Enfocar el último elemento de lista de chat prioritario",
+ "agent.newSession": "¿Iniciar nueva sesión?",
+ "agent.newSession.confirm": "Sí",
+ "agent.newSessionMessage": "Al cambiar el agente, finalizará su sesión de edición actual. ¿Desea cambiar el agente?",
+ "chat.category": "Chat",
+ "chat.clear.label": "Borrar todos los chats del área de trabajo",
+ "chat.editToolApproval.description": "Edite o administre las preferencias de aprobación y confirmación de herramientas para agentes de chat de IA.",
+ "chat.editToolApproval.label": "Administrar aprobación de herramienta",
+ "chat.history.label": "Mostrar chats...",
+ "chat.history.recent": "Chats recientes",
+ "chat.history.rename": "Cambiar nombre",
+ "chat.history.showMore": "Mostrar más...",
+ "chat.history.showMoreAgents": "Mostrar más...",
+ "chat.openNewChatToTheSide.label": "Abrir el nuevo editor de chat a un lado",
+ "chat.toggleChatHistoryVisibility.label": "Historial de chats",
+ "chat.toggleDefaultVisibility.label": "Mostrar vista de forma predeterminada",
+ "chatAndCompletionsQuotaExceeded": "Ha alcanzado la cuota mensual de mensajes de chat y sugerencias insertadas.",
+ "chatQuotaExceeded": "Ha alcanzado la cuota mensual de mensajes de chat. Todavía tiene disponibles sugerencias insertadas gratuitas.",
+ "chatQuotaExceededButton": "Se alcanzó la cuota de mensajes de chat del plan GitHub Copilot Free. Haga clic para obtener más detalles.",
+ "chatSessions.newChatInSideBar": "Abrir nuevo chat en la barra lateral",
+ "chatSessions.openNewChatInNewWindow": "Abrir nuevo chat en nueva ventana",
+ "completionsQuotaExceeded": "Ha alcanzado la cuota mensual de sugerencias insertadas. Todavía tiene mensajes de chat gratuitos disponibles.",
+ "config.label": "Configurar chat",
+ "configureCompletions": "Configurar sugerencias insertadas...",
+ "copilotQuotaReached": "Cuota de GitHub Copilot alcanzada",
+ "currentChatLabel": "actual",
+ "dismiss": "Ignorar",
+ "generateCode": "Generar código",
+ "generateInstructions": "Generar archivo de instrucciones del espacio de trabajo",
+ "generateInstructions.short": "Generar instrucciones del chat",
+ "interactiveSession.clearHistory.label": "Borrar el historial de entradas",
+ "interactiveSession.focusInput.label": "Enfocar entrada de chat",
+ "interactiveSession.history.clear": "Borrar todos los chats del área de trabajo",
+ "interactiveSession.history.delete": "Eliminar",
+ "interactiveSession.history.editor": "Abrir en el editor",
+ "interactiveSession.history.pick": "Cambiar a chat",
+ "interactiveSession.history.title": "Historial de chats del área de trabajo",
+ "interactiveSession.history.titleAll": "Historial de chats de todo el área de trabajo",
+ "interactiveSession.newChatWindow": "Nueva ventana de chat",
+ "interactiveSession.open": "Nuevo Editor de chat",
+ "manageChat": "Administrar chat",
+ "more": "Más...",
+ "newChatTitle": "Nuevo título del chat",
+ "openChat": "Abrir chat",
+ "openChatFeatureSettings": "Configuración de chat",
+ "openChatFeatureSettings.short": "Configuración de chat",
+ "openChatMode": "Abrir chat ({0})",
+ "quotaResetDate": "La asignación se restablecerá el {0}.",
+ "resetTrustedTools": "Confirmaciones de la herramienta de restablecimiento",
+ "resetTrustedToolsSuccess": "Se han restablecido las preferencias de confirmación de la herramienta.",
+ "showCopilotUsageExtensions": "Mostrar extensiones usando Copilot",
+ "signInToChatSetup": "Inicie sesión para usar las características de IA...",
+ "switchChat.confirmPhrase": "Al cambiar de chat, finalizará la sesión de edición actual.",
+ "switchMode.confirmPhrase": "Al cambiar agentes, finalizará la sesión de edición actual.",
+ "title4": "Chat",
+ "toggle.chatControl": "Controles de chat",
+ "toggle.chatControlsDescription": "Alternar visibilidad de los controles de diseño en la barra de título",
+ "toggleChat": "Alternar chat",
+ "upgradeChat": "Actualizar plan de GitHub Copilot",
+ "upgradePlan": "Actualizar plan de GitHub Copilot",
+ "upgradePro": "Actualizar a GitHub Copilot Pro",
+ "upgradeToPro": "Actualice a GitHub Copilot Pro (los primeros 30 días son gratuitos) para:\r\n- Sugerencias insertadas ilimitadas\r\n- Mensajes de chat ilimitados\r\n- Acceso a modelos premium"
+ },
+ "vs/workbench/contrib/chat/browser/actions/chatCodeblockActions": {
+ "interactive.applyInEditor.label": "Aplicar en el editor",
+ "interactive.applyInEditorWithURL.label": "Aplicar a {0}",
+ "interactive.compare.apply": "Aplicar ediciones",
+ "interactive.compare.discard": "Descartar ediciones",
+ "interactive.copyCodeBlock.label": "Copiar",
+ "interactive.insertCodeBlock.label": "Insertar en el cursor",
+ "interactive.insertIntoNewFile.label": "Insertar en nuevo archivo",
+ "interactive.nextCodeBlock.label": "Siguiente bloque de código",
+ "interactive.previousCodeBlock.label": "Bloque de código anterior",
+ "interactive.runInTerminal.label": "Insertar en terminal"
+ },
+ "vs/workbench/contrib/chat/browser/actions/chatContext": {
+ "chatContext.attachScreenshot.labelElectron.Window": "Ventana de recorte de pantalla",
+ "chatContext.attachScreenshot.labelWeb": "Recorte de pantalla",
+ "chatContext.editors": "Editores abiertos",
+ "chatContext.relatedFiles": "Archivos relacionados",
+ "chatContext.tools": "Herramientas...",
+ "chatContext.tools.placeholder": "Seleccionar una herramienta",
+ "imageFromClipboard": "Imagen del Portapapeles",
+ "pastedImage": "Imagen pegada",
+ "relatedFiles": "Agregar archivos relacionados al espacio de trabajo",
+ "terminal": "Terminal"
+ },
+ "vs/workbench/contrib/chat/browser/actions/chatContextActions": {
+ "chat.insertSearchResults": "Agregar resultados de la búsqueda al chat",
+ "chatContext.attach.placeholder": "Buscar datos adjuntos",
+ "goBack": "Volver ↩",
+ "workbench.action.chat.attachContext.label.2": "Agregar contexto...",
+ "workbench.action.chat.attachFile.label": "Agregar archivo al chat",
+ "workbench.action.chat.attachFolder.label": "Agregar carpeta al chat",
+ "workbench.action.chat.attachSelection.label": "Agregar selección al chat"
+ },
+ "vs/workbench/contrib/chat/browser/actions/chatContinueInAction": {
+ "chat.learnMore": "Learn More",
+ "continueChatInSession": "Continuar chat en...",
+ "continueSessionIn": "Continuar en {0}"
+ },
+ "vs/workbench/contrib/chat/browser/actions/chatCopyActions": {
+ "chat.copyKatexMathSource.label": "Copiar origen matemático",
+ "interactive.copyAll.label": "Copiar todo",
+ "interactive.copyItem.label": "Copiar"
+ },
+ "vs/workbench/contrib/chat/browser/actions/chatDeveloperActions": {
+ "workbench.action.chat.logChatIndex.label": "Registrar índice de chat",
+ "workbench.action.chat.logInputHistory.label": "Registrar historial de entrada de chat"
+ },
+ "vs/workbench/contrib/chat/browser/actions/chatElicitationActions": {
+ "chat.acceptElicitation": "Aceptar la solicitud"
+ },
+ "vs/workbench/contrib/chat/browser/actions/chatExecuteActions": {
+ "actions.chat.submitWithCodebase": "Enviar con {0}",
+ "chat.newChat.label": "Enviar a nuevo chat",
+ "chat.remove.confirmation.checkbox": "No volver a preguntar",
+ "chat.remove.confirmation.message2": "Esto quitará todas las solicitudes posteriores y se deshacerán las modificaciones realizadas en {0}. ¿Desea continuar?",
+ "chat.remove.confirmation.multipleEdits.message": "Esto quitará todas las solicitudes posteriores y deshacerá las modificaciones realizadas en los archivos {0} del conjunto de trabajo. ¿Desea continuar?",
+ "chat.remove.confirmation.primaryButton": "Sí",
+ "chat.remove.confirmation.title": "¿Desea deshacer {0} ediciones?",
+ "chat.removeLast.confirmation.message2": "Esto quitará la última solicitud y deshará las modificaciones realizadas en {0}. ¿Desea continuar?",
+ "chat.removeLast.confirmation.multipleEdits.message": "Esto quitará la última solicitud y deshacerá las modificaciones realizadas en los archivos {0} del conjunto de trabajo. ¿Desea continuar?",
+ "chat.removeLast.confirmation.title": "¿Desea deshacer la última edición?",
+ "edits.submit.label": "Enviar",
+ "interactive.cancel.label": "Cancelar",
+ "interactive.cancelEdit.label": "Cancelar edición",
+ "interactive.changeModel.label": "Cambiar modelo",
+ "interactive.openChatSessionPrimaryPicker.label": "Abrir selector",
+ "interactive.openModePicker.label": "Abrir selector de agente",
+ "interactive.openModelPicker.label": "Abrir selector de modelos",
+ "interactive.submit.label": "Enviar",
+ "interactive.submit.panel.label": "Enviar a Editar sesión",
+ "interactive.submitWithoutDispatch.label": "Enviar",
+ "interactive.switchToNextModel.label": "Cambiar al modelo siguiente",
+ "interactive.toggleAgent.label": "Cambiar al agente siguiente",
+ "sendToAgent": "Enviar al agente",
+ "setChatMode": "Establecer agente"
+ },
+ "vs/workbench/contrib/chat/browser/actions/chatFileTreeActions": {
+ "interactive.nextFileTree.label": "Siguiente árbol de archivos",
+ "interactive.previousFileTree.label": "Árbol de archivos anterior"
+ },
+ "vs/workbench/contrib/chat/browser/actions/chatImportExport": {
+ "chat.export.label": "Exportar chat...",
+ "chat.file.label": "Sesión de chat",
+ "chat.import.label": "Importar chat..."
+ },
+ "vs/workbench/contrib/chat/browser/actions/chatLanguageModelActions": {
+ "extensionOwner": "{0}",
+ "languageModelAuthPlaceholder": "Elegir qué extensiones pueden acceder a los modelos de lenguaje",
+ "languageModelAuthTitle": "Administrar el acceso al modelo de lenguaje",
+ "manageLanguageModelAuthentication": "Administrar el acceso al modelo de lenguaje...",
+ "noAccessDescription": "Actualmente, ninguna extensión tiene permitido usar modelos de {0}",
+ "noAllowedExtensions": "Ninguna extensión tiene acceso",
+ "noLanguageModels": "No se encontraron modelos de lenguaje que requieran autenticación.",
+ "noLanguageModelsDetail": "Actualmente no hay modelos de lenguaje que requieran autenticación.",
+ "openExtension": "Abrir extensión",
+ "trustedExtension": "De confianza para Microsoft"
+ },
+ "vs/workbench/contrib/chat/browser/actions/chatMoveActions": {
+ "chat.openInEditor.label": "Mover el chat al área del editor",
+ "chat.openInNewWindow.label": "Mover el chat a una ventana nueva",
+ "interactiveSession.openInPanel.label": "Mover el chat al panel",
+ "interactiveSession.openInPrimarySidebar.label": "Mover chat a la barra lateral principal",
+ "interactiveSession.openInSecondarySidebar.label": "Mover chat a la barra lateral secundaria",
+ "interactiveSession.openInSidebar.label": "Mover el chat a la barra lateral"
+ },
+ "vs/workbench/contrib/chat/browser/actions/chatNewActions": {
+ "chat.newChat.label": "Nuevo chat",
+ "chat.newEdits.label": "Nuevo chat",
+ "chat.redoEdit.label": "Rehacer la última solicitud",
+ "chat.redoEdit.label2": "Rehacer",
+ "chat.redoEdit.tooltip": "Volver a aplicar los cambios y el chat del área de trabajo descartados",
+ "chat.undoEdit.label": "Deshacer la última solicitud"
+ },
+ "vs/workbench/contrib/chat/browser/actions/chatPromptNavigationActions": {
+ "interactive.nextUserPrompt.label": "Siguiente indicación de usuario",
+ "interactive.previousUserPrompt.label": "Indicación de usuario anterior"
+ },
+ "vs/workbench/contrib/chat/browser/actions/chatQuickInputActions": {
+ "chat.closeQuickChat.label": "Cerrar chat rápido",
+ "chat.openInChatView.label": "Abrir en la vista de chat",
+ "interactiveSession.open": "Abrir chat rápido",
+ "quickChat": "Abrir chat rápido",
+ "toggle.desc": "Alternar el chat rápido",
+ "toggle.isPartialQuery": "Si la consulta es parcial; esperará más datos proporcionados por el usuario",
+ "toggle.query": "Consulta con la que se abrirá el chat rápido"
+ },
+ "vs/workbench/contrib/chat/browser/actions/chatSessionActions": {
+ "chat.openSessionInNewEditorGroup.label": "Mover chat a un lado",
+ "chat.openSessionInNewWindow.label": "Mover el chat a una ventana nueva",
+ "chat.openSessionInSidebar.label": "Mover el chat a la barra lateral",
+ "chat.sessions.gettingStarted.action": "Introducción a las sesiones de chat",
+ "chatSessions.extensionAlreadyInstalled": "\"{0}\" ya está instalado",
+ "chatSessions.installExtension": "Instala “{0}”",
+ "chatSessions.pickPlaceholder": "Elige extensiones para mejorar su experiencia de chat",
+ "chatSessions.selectExtension": "Instalar extensiones de chat",
+ "chatSessions.toggleDescriptionDisplay.label": "Mostrar descripciones enriquecidas",
+ "chatSessions.toggleViewLocation.label": "Combined Sessions View",
+ "deleteSession": "Eliminar",
+ "deleteSession.confirm": "¿Está seguro de que desea eliminar esta sesión de chat?",
+ "deleteSession.delete": "Eliminar",
+ "deleteSession.detail": "Esta acción no se puede deshacer.",
+ "interactiveSession.open": "Nuevo editor de chat",
+ "openSessionInNewWindow": "Abrir en nueva ventana",
+ "openSessionInSidebar": "Abrir en la barra lateral",
+ "openToSide": "Abrir en el lateral",
+ "renameSession": "Cambiar nombre",
+ "renameSession.emptyName": "El nombre no puede estar vacío",
+ "renameSession.error": "No se pudo cambiar el nombre de la sesión de chat: {0}",
+ "renameSession.nameTooLong": "El nombre es demasiado largo (máximo 100 caracteres)",
+ "renameSession.placeholder": "Escriba un nombre nuevo para la sesión de chat"
+ },
+ "vs/workbench/contrib/chat/browser/actions/chatTitleActions": {
+ "chat.retry.confirmation.checkbox": "No volver a preguntar",
+ "chat.retry.confirmation.message2": "Esto deshacerá las modificaciones realizadas en{0} desde esta solicitud.",
+ "chat.retry.confirmation.primaryButton": "Sí",
+ "chat.retry.label": "Reintentar",
+ "chat.retryLast.confirmation.message2": "Esto deshacerá las modificaciones realizadas en los archivos {0} del conjunto de trabajo desde esta solicitud. ¿Desea continuar?",
+ "chat.retryLast.confirmation.title2": "¿Desea reintentar la última solicitud?",
+ "interactive.helpful.label": "Útil",
+ "interactive.insertIntoNotebook.label": "Insertar en Notebook",
+ "interactive.reportIssueForBug.label": "Notificar incidencia",
+ "interactive.unhelpful.label": "Inútil"
+ },
+ "vs/workbench/contrib/chat/browser/actions/chatToolActions": {
+ "chat.accept": "Aceptar",
+ "chat.skip": "Omitir",
+ "chat.tools.description.agent": "El agente personalizado \"{0}\" configura las herramientas seleccionadas. Los cambios realizados en las herramientas también se aplicarán al archivo de agente personalizado.",
+ "chat.tools.description.global": "Las herramientas seleccionadas se aplicarán globalmente a todas las sesiones de chat que usen el agente predeterminado.",
+ "chat.tools.description.readOnlyAgent": "El agente personalizado \"{0}\" configura las herramientas seleccionadas. Los cambios de las herramientas solo se usarán en esta sesión y no modificarán el agente personalizado '{0}'.",
+ "chat.tools.description.session": "Las herramientas seleccionadas se configuraron solo para esta sesión de chat.",
+ "chat.tools.placeholder.agent": "Seleccionar herramientas para este agente personalizado",
+ "chat.tools.placeholder.global": "Seleccione las herramientas que están disponibles para chatear.",
+ "chat.tools.placeholder.readOnlyAgent": "Seleccionar herramientas para este agente personalizado",
+ "chat.tools.placeholder.session": "Seleccionar herramientas para esta sesión de chat",
+ "chatTools.tooManyEnabled": "Más de {0} herramientas están habilitadas, es posible que experimente un rendimiento degradado al llamar a las herramientas.",
+ "label": "Configurar herramientas..."
+ },
+ "vs/workbench/contrib/chat/browser/actions/chatToolPicker": {
+ "addExtensionButton": "Instando extensión...",
+ "addMcpServer": "Agregar servidor MCP...",
+ "configMcpCol": "Configurar {0}",
+ "configToolSets": "Configurar conjuntos de herramientas...",
+ "configureTools": "Configurar herramientas",
+ "defaultBucketLabel": "Integrado",
+ "editUserBucket": "Editar conjunto de herramientas",
+ "mcpShowOutput": "Mostrar salida",
+ "mcpUpdate": "Actualizar herramientas",
+ "noTools": "Agregar herramientas al chat",
+ "toolLimitExceeded": "Se han habilitado {0} herramientas. Es posible que experimente un rendimiento degradado al llamar a más de {1} herramientas.",
+ "userBucket": "Conjuntos de herramientas definidos por el usuario"
+ },
+ "vs/workbench/contrib/chat/browser/actions/codeBlockOperations": {
+ "activeEditor": "'{0}' del editor activo",
+ "applyCodeBlock.error": "No se pudo aplicar el bloque de código: {0}",
+ "applyCodeBlock.errorOpeningFile": "No se pudo abrir {0} en un editor de código.",
+ "applyCodeBlock.fileWriteError": "Error al crear el archivo: {0}",
+ "applyCodeBlock.noActiveEditor": "Para aplicar este bloque de código, abra un editor de código o cuaderno de notas.",
+ "applyCodeBlock.noCodeMapper": "No hay asignador de código disponible.",
+ "applyCodeBlock.progress": "Aplicando bloque de código con {0}...",
+ "applyCodeBlock.readonly": "No se puede aplicar el bloque de código al archivo de solo lectura.",
+ "applyCodeBlock.readonlyNotebook": "No se puede aplicar el bloque de código al editor de cuadernos de solo lectura.",
+ "createFile": "Nuevo archivo '{0}'",
+ "insertCodeBlock.noActiveEditor": "Para insertar el bloque de código, abra un editor de código o un editor del cuaderno de notas y establezca el cursor en la ubicación donde insertar el bloque de código.",
+ "insertCodeBlock.readonly": "No se puede insertar el bloque de código en el editor de código de solo lectura.",
+ "insertCodeBlock.readonlyNotebook": "No se puede insertar el bloque de código en el editor de cuaderno de notas de solo lectura.",
+ "newUntitledFile": "Nuevo editor sin título",
+ "selectOption": "Seleccione dónde desea aplicar el bloque de código"
+ },
+ "vs/workbench/contrib/chat/browser/actions/manageModelsActions": {
+ "manageLanguageModels": "Administrar modelos de lenguaje..."
+ },
+ "vs/workbench/contrib/chat/browser/agentSessions/agentSessions": {
+ "chat.session.providerLabel.background": "Fondo",
+ "chat.session.providerLabel.cloud": "Nube",
+ "chat.session.providerLabel.local": "Local"
+ },
+ "vs/workbench/contrib/chat/browser/agentSessions/agentSessionsActions": {
+ "agentSessions.filter.reset": "Reset",
+ "diffFile": "1 archivo",
+ "diffFiles": "{0} archivos",
+ "filterAgentSessions": "Filtrar sesiones del agente",
+ "find": "Buscar sesión de agente",
+ "refresh": "Actualizar sesiones del agente",
+ "showDiff": "Abrir cambios"
+ },
+ "vs/workbench/contrib/chat/browser/agentSessions/agentSessionsView": {
+ "agentSessions.newSession": "Nueva sesión",
+ "agentSessions.newSessionAriaLabel": "Nueva sesión",
+ "agentSessions.refreshing": "Actualizando sesiones del agente...",
+ "agentSessions.view.label": "Sesiones de agentes",
+ "chatSessions.installExtensions": "Instalar extensiones de chat...",
+ "newBackgroundSession": "Nueva sesión en segundo plano",
+ "newChatSessionDefault": "Nueva sesión local",
+ "newChatSessionFromProvider": "Nuevo {0}",
+ "newCloudSession": "Nueva sesión en la nube"
+ },
+ "vs/workbench/contrib/chat/browser/agentSessions/agentSessionsViewer": {
+ "agentSessions": "Sesiones de agentes",
+ "agentSessions.dragLabel": "{0} sesiones de agentes",
+ "chat.session.status.completed": "Finalizado",
+ "chat.session.status.completedAfter": "Finalizado en {0}.",
+ "chat.session.status.failed": "Erróneo",
+ "chat.session.status.failedAfter": "Error después de {0}.",
+ "chat.session.status.inProgress": "Trabajando...",
+ "chat.session.status.inProgressWithDuration": "Trabajando... ({0})"
+ },
+ "vs/workbench/contrib/chat/browser/agentSessions/agentSessionsViewFilter": {
+ "agentSessions.filter.archived": "Archivado",
+ "chatSessionStatus.completed": "Completado",
+ "chatSessionStatus.failed": "Erróneo",
+ "chatSessionStatus.inProgress": "En curso"
+ },
+ "vs/workbench/contrib/chat/browser/attachments/implicitContextAttachment": {
+ "cell.lowercase": "celda",
+ "chat.fileAttachment": "Adjunto {0}, {1}",
+ "chat.fileAttachmentWithRange": "Adjunto {0}, {1}, línea {2} a línea {3}",
+ "disable": "Deshabilitar contexto {0} actual",
+ "enable": "Habilitar contexto {0} actual",
+ "enableHint": "Habilitar contexto {0} actual",
+ "file.lowercase": "archivo",
+ "openEditor": "Contexto {0} actual",
+ "openFile": "Contexto de archivo actual"
+ },
+ "vs/workbench/contrib/chat/browser/chat.contribution": {
+ "autoApprove2.description": "La aprobación automática global también conocida como \"modo YOLO\" deshabilita completamente la aprobación manual para todas las herramientas de todas las áreas de trabajo, lo que permite que el agente actúe de forma totalmente autónoma. Esto es extremadamente peligroso y *nunca* se recomienda, incluso los entornos en contenedores como Codespaces y Dev Containers tienen claves de usuario reenviadas al contenedor que podrían estar en peligro.\r\n\r\nEsta característica deshabilita las protecciones de seguridad críticas y facilita mucho a un atacante poner en peligro la máquina.",
+ "chat": "Chat",
+ "chat.agent.enabled.description": "Habilite el modo de agente para el chat. Cuando esta opción está habilitada, el modo de agente se puede activar a través de la lista desplegable de la vista.",
+ "chat.agent.maxRequests": "Número máximo de solicitudes que se permiten por turno al usar un agente. Cuando se alcance el límite, se le pedirá que confirme que desea continuar.",
+ "chat.agent.thinking.collapsedTools": "Cuando está habilitado, las llamadas a herramientas se añaden a la sección plegable de pensamiento según el modo seleccionado.",
+ "chat.agent.thinking.collapsedTools.all": "Todas las llamadas a herramientas se añadieron a la sección plegable de pensamiento.",
+ "chat.agent.thinking.collapsedTools.none": "No se añadieron llamadas a herramientas en la sección plegable de pensamiento.",
+ "chat.agent.thinking.collapsedTools.readOnly": "Solo se añadieron llamadas a herramientas de solo lectura en la sección plegable de pensamiento.",
+ "chat.agent.thinkingMode.collapsed": "Las partes de pensamiento se contraerán de forma predeterminada.",
+ "chat.agent.thinkingMode.collapsedPreview": "Las partes de pensamiento se expandirán primero y, después, se contraerán cuando lleguemos a una parte que no está pensando.",
+ "chat.agent.thinkingMode.fixedScrolling": "Muestre el pensamiento en un panel de streaming de altura fija que se desplaza automáticamente; haga clic en el encabezado para expandirlo a altura completa.",
+ "chat.agent.thinkingStyle": "Controla cómo se representa el pensamiento.",
+ "chat.allowAnonymousAccess": "Controla si se permite el acceso anónimo en el chat.",
+ "chat.checkpoints.enabled": "Habilita los puntos de control en el chat. Los puntos de control le permiten restaurar el chat a un estado anterior.",
+ "chat.checkpoints.showFileChanges": "Controla si se deben mostrar los cambios en el archivo de punto de comprobación del chat.",
+ "chat.codeBlock.showProgressAnimation.description": "Al aplicar ediciones, muestra una animación de progreso en la pastilla del bloque de código. Si está deshabilitado, muestra el porcentaje de progreso en su lugar.",
+ "chat.commandCenter.enabled": "Controla si el centro de comandos muestra un menú para las acciones para controlar el chat (requiere {0}).",
+ "chat.detectParticipant.enabled": "Habilita la detección automática del participante del chat para el chat del panel.",
+ "chat.disableAIFeatures": "Deshabilite y oculte las características integradas de IA proporcionadas por GitHub Copilot, incluidas el chat y las sugerencias insertadas.",
+ "chat.editRequests": "Permite editar las solicitudes en el chat. Esto le permite cambiar el contenido de la solicitud y volver a enviarla al modelo.",
+ "chat.editing.autoAcceptDelay": "Retraso tras el cual se aceptan automáticamente los cambios realizados por el chat. Los valores son en segundos, '0' significa deshabilitado y '100' segundos es el máximo.",
+ "chat.editing.confirmEditRequestRemoval": "Indica si se debe mostrar una confirmación antes de quitar una solicitud y sus ediciones asociadas.",
+ "chat.editing.confirmEditRequestRetry": "Indica si se debe mostrar una confirmación antes de reintentar una solicitud y sus ediciones asociadas.",
+ "chat.edits2Enabled": "Habilita el nuevo modo de Edición basado en llamadas a herramientas. Cuando esta opción está habilitada, los modelos que no admiten llamadas a herramientas no están disponibles para el modo de Edición.",
+ "chat.emptyState.history.enabled": "Muestra el historial de chats recientes en el estado de chat vacío.",
+ "chat.experimental.detectParticipant.enabled": "Habilita la detección automática del participante del chat para el chat del panel.",
+ "chat.experimental.detectParticipant.enabled.deprecated": "Este valor está en desuso. Use \"chat.detectParticipant.enabled\" en su lugar.",
+ "chat.extensionToolsEnabled": "Habilite el uso de herramientas aportadas por extensiones de terceros.",
+ "chat.extensionUnification.enabled": "Habilita la unificación de extensiones de GitHub Copilot. Cuando se habilita, toda la funcionalidad de GitHub Copilot se ofrece desde la extensión de GitHub Copilot Chat. Si está desactivada, las extensiones GitHub Copilot y GitHub Copilot Chat funcionan de forma independiente.",
+ "chat.fontFamily": "Controla la familia de las fuentes en los mensajes de chat.",
+ "chat.fontSize": "Controla el tamaño de fuente en píxeles en mensajes de chat.",
+ "chat.hideNewButtonInAgentSessionsView": "Controla si el botón nueva sesión está oculto en la vista Sesiones del agente.",
+ "chat.implicitContext.enabled.1": "Habilita el uso automático del editor activo como contexto de chat para ubicaciones de chat especificadas.",
+ "chat.implicitContext.suggestedContext": "Controla si se muestra el nuevo flujo de contexto implícito. En los modos Preguntar y Editar, el contexto se incluirá automáticamente. Al usar un agente, el contexto se sugerirá como datos adjuntos. Las selecciones siempre se incluyen como contexto.",
+ "chat.implicitContext.value": "El valor del contexto implícito.",
+ "chat.implicitContext.value.always": "El contexto implícito siempre está habilitado.",
+ "chat.implicitContext.value.first": "El contexto implícito está habilitado para la primera interacción.",
+ "chat.implicitContext.value.never": "El contexto implícito nunca está habilitado.",
+ "chat.instructions.config.locations.description": "Especifique las ubicaciones de los archivos de instrucciones ('*{0}') que se pueden adjuntar en las sesiones de chat. [Más información]({1}).\r\n\r\nLas rutas de acceso relativas se resuelven desde las carpetas raíz del área de trabajo.",
+ "chat.instructions.config.locations.title": "Ubicaciones de los archivos de instrucciones",
+ "chat.mathEnabled.description": "Habilite la representación matemática en las respuestas del chat usando KaTeX.",
+ "chat.mcp.access": "Controla el acceso para los servidores del Protocolo de Contexto del Modelo instalados.",
+ "chat.mcp.access.any": "Permita el acceso a cualquier servidor MCP instalado.",
+ "chat.mcp.access.none": "No hay acceso a los servidores.",
+ "chat.mcp.access.registry": "Permite el acceso a los servidores MCP instalados desde el registro al que está conectado VS Code.",
+ "chat.mcp.assisted.nuget.enabled.description": "Habilita los paquetes NuGet para la instalación del servidor MCP asistida por IA. Se utiliza para instalar servidores MCP por nombre desde el registro central de paquetes .NET (NuGet.org).",
+ "chat.mcp.autostart": "Controla si los servidores MCP deben iniciarse automáticamente cuando se envían los mensajes de chat.",
+ "chat.mcp.autostart.never": "Nunca inicie automáticamente los servidores MCP.",
+ "chat.mcp.autostart.newAndOutdated": "Inicie automáticamente los servidores MCP nuevos y obsoletos que aún no están en ejecución.",
+ "chat.mcp.autostart.onlyNew": "Inicia automáticamente solo los nuevos servidores MCP que nunca se han ejecutado.",
+ "chat.mcp.gallery.enabled": "Habilita el Marketplace predeterminado para servidores del Protocolo de contexto de modelo (MCP).",
+ "chat.mcp.serverSampling": "Configura los modelos que se exponen a los servidores MCP para el muestreo (realizando solicitudes de modelo en segundo plano). Esta configuración se puede editar gráficamente bajo el comando `{0}`.",
+ "chat.mcp.serverSampling.allowedDuringChat": "Indica si este servidor realiza solicitudes de muestreo durante las llamadas de herramientas en una sesión de chat.",
+ "chat.mcp.serverSampling.allowedOutsideChat": "Indica si este servidor puede realizar solicitudes de muestreo fuera de una sesión de chat.",
+ "chat.mcp.serverSampling.model": "Modelo al que el servidor MCP tiene acceso.",
+ "chat.mode.config.locations.deprecated": "Esta configuración es obsoleta y será eliminada en próximas versiones. Los modos de chat ahora se llaman agentes personalizados y están en `.github/agents`",
+ "chat.mode.config.locations.description": "Especifique las ubicaciones de los archivos de modo de chat personalizados (`*{0}`). [Más información]({1}).\r\n\r\nLas rutas de acceso relativas se resuelven desde las carpetas raíz del área de trabajo.",
+ "chat.mode.config.locations.title": "Ubicaciones de archivo de modo",
+ "chat.notifyWindowOnConfirmation": "Controla si una sesión de chat debe presentar al usuario una notificación de sistema operativo cuando se necesita una confirmación mientras la ventana no está en el foco. Esto incluye un distintivo de ventana, así como notificaciones del sistema.",
+ "chat.notifyWindowOnResponseReceived": "Controla si una sesión de chat debe presentar al usuario una notificación de sistema operativo cuando se recibe una respuesta mientras la ventana no está en el foco. Esto incluye un distintivo de ventana, así como notificaciones del sistema.",
+ "chat.promptFilesRecommendations.description": "Configure los archivos de indicación que se recomiendan en la vista de bienvenida del chat. Cada clave es un nombre de archivo de indicación, y el valor puede ser `true` para recomendar siempre, `false` para no recomendar nunca, o una expresión [when clause](https://aka.ms/vscode-when-clause) como `resourceExtname == .js` o `resourceLangId == markdown`.",
+ "chat.promptFilesRecommendations.title": "Recomendaciones de archivo de indicación",
+ "chat.renderRelatedFiles": "Controla si los archivos relacionados se deben representar en la entrada de chat.",
+ "chat.reusablePrompts.config.locations.description": "Especifique las ubicaciones de los archivos de mensajes reutilizables ('*{0}') que se pueden ejecutar en sesiones de chat. [Más información]({1}).\r\n\r\nLas rutas de acceso relativas se resuelven desde las carpetas raíz del área de trabajo.",
+ "chat.reusablePrompts.config.locations.title": "Solicitar ubicaciones de archivo",
+ "chat.sendElementsToChat.attachCSS": "Controla si el CSS del elemento seleccionado se agregará al chat. {0} debe estar habilitado.",
+ "chat.sendElementsToChat.attachImages": "Controla si se añadirá al chat un recorte de pantalla del elemento seleccionado. {0} debe estar activado.",
+ "chat.sendElementsToChat.enabled": "Controla si los elementos se pueden enviar al chat desde el Explorador simple.",
+ "chat.sessionsViewLocation.description": "Controla dónde se muestra el menú de sesiones del agente.",
+ "chat.showAgentSessionsViewDescription": "Controla si las descripciones de sesión se muestran en una segunda fila en la vista de Sesiones de chat.",
+ "chat.signInWithAlternateScopes": "Controla si se usa el inicio de sesión con ámbitos alternativos.",
+ "chat.subagentTool.customAgents": "Si la herramienta runSubagent puede usar agentes personalizados. Si está habilitada, la herramienta puede usar el nombre exacto de un agente personalizado, pero debe tener el mismo nombre exacto del agente.",
+ "chat.todoListTool.descriptionField": "Si está activado, los elementos de tareas pendientes incluyen descripciones detalladas para el contexto de implementación. Esto aporta más información, pero usa más tokens y puede ralentizar las respuestas.",
+ "chat.todoListTool.writeOnly": "Cuando está habilitada, la herramienta de tareas funciona en modo de solo escritura, lo que requiere que el agente recuerde las tareas en el contexto.",
+ "chat.toolReferenceName.description": "{0} - {1}",
+ "chat.tools.autoApprove.edits": "Controla si las modificaciones realizadas por el chat se aprueban automáticamente. El valor predeterminado es aprobar todas las modificaciones excepto las realizadas en determinados archivos que pueden provocar efectos secundarios inmediatos no intencionados, como `**/.vscode/*.json`.\r\n\r\nConfigúrelo en \"true\" para aprobar automáticamente las ediciones en los archivos que coincidan, o en \"false\" para requerir siempre aprobación explícita. El último patrón que coincida con un archivo determinará si la edición se aprueba automáticamente.",
+ "chat.tools.eligibleForAutoApproval": "Controla qué herramientas pueden aprobarse automáticamente. Las herramientas configuradas en 'false' siempre pedirán confirmación y nunca ofrecerán la opción de aprobación automática. El comportamiento predeterminado (o configurar una herramienta en 'true') puede hacer que la herramienta ofrezca opciones de aprobación automática.",
+ "chat.tools.fetchPage.approvedUrls": "Controla qué URL se aprueban automáticamente cuando las herramientas de chat las solicitan. Las claves son patrones de URL y los valores pueden ser `true` para aprobar tanto solicitudes como respuestas, `false` para denegar, o un objeto con las propiedades `approveRequest` y `approveResponse` para un control detallado.\r\n\r\nEjemplos:\r\n- `\"https://example.com\": true` - Aprueba todas las solicitudes a example.com\r\n- `\"https://*.example.com\": true` - Aprueba todas las solicitudes a cualquier subdominio de example.com\r\n- `\"https://example.com/api/*\": { \"approveRequest\": true, \"approveResponse\": false }` - Aprueba las solicitudes pero no las respuestas para las rutas de example.com/api",
+ "chat.tools.todos.showWidget": "Controla si se muestra el widget de lista de tareas pendientes encima del campo de entrada del chat. Si está activado, el widget muestra los elementos de tareas pendientes creados por el agente y se actualiza conforme avanza el progreso.",
+ "chat.undoRequests.restoreInput": "Controla si se debe restaurar la entrada del chat cuando se realiza una solicitud de deshacer. La entrada se completará con el texto de la solicitud que se ha restaurado.",
+ "chat.useAgentMd.description": "Controle si las instrucciones de \"AGENTS''. El archivo MD que se encuentra en las raíces de un área de trabajo se adjunta a todas las solicitudes de chat.",
+ "chat.useAgentMd.title": "Usar el archivo AGENTS.MD",
+ "chat.useClaudeSkills.description": "Controle si las habilidades de Claude que se encuentran en el área de trabajo y en los directorios de inicio de usuario en `.claude/skills` se enumeran en todas las solicitudes de chat. El modelo de lenguaje puede cargar estas aptitudes a petición si la herramienta \"lectura\" está disponible.",
+ "chat.useClaudeSkills.title": "Usar habilidades de Claude",
+ "chat.useNestedAgentMd.description": "Controle si las instrucciones de ''AGENTS'' anidadas. Los archivos MD que se encuentran en el área de trabajo se muestran en todas las solicitudes de chat. El modelo de lenguaje puede cargar estas aptitudes a petición si la herramienta \"lectura\" está disponible.",
+ "chat.useNestedAgentMd.title": "Usar archivos AGENTS.MD anidados",
+ "clear": "Iniciar un nuevo chat",
+ "interactiveSession.editor.fontFamily": "Controla la familia de las fuentes en los bloques de código de chat.",
+ "interactiveSession.editor.fontSize": "Controla el tamaño de fuente en píxeles en bloques de código de chat.",
+ "interactiveSession.editor.fontWeight": "Controla el grosor de la fuente en los bloques de código de chat.",
+ "interactiveSession.editor.lineHeight": "Controla la altura de la línea en píxeles en bloques de código de chat. Use 0 para calcular la altura de la línea del tamaño de fuente.",
+ "interactiveSession.editor.wordWrap": "Controla si las líneas deben ajustarse en bloques de código de chat.",
+ "interactiveSessionConfigurationTitle": "Chat",
+ "mcp.discovery.enabled": "Configura la detección de servidores del Protocolo de contexto de modelo a partir de la configuración de otras aplicaciones.",
+ "mcp.gallery.serviceUrl": "Configuración de la dirección URL del servicio de la galería MCP a la que conectarse",
+ "mcp.list": "Enumerar servidores"
+ },
+ "vs/workbench/contrib/chat/browser/chatAccessibilityProvider": {
+ "chat": "Chat",
+ "multiCodeBlock": "{0}{1}{2} bloques de código: {3} {4}",
+ "multiCodeBlockHint": "{0}{1}{2}{3} bloques de código: {4}{5} {6}",
+ "multiFileTreeHint": "{0} árboles de archivos ",
+ "multiTableHint": "{0} tablas ",
+ "noCodeBlocks": "{0}{1}{2} {3}",
+ "noCodeBlocksHint": "{0}{1}{2}{3}{4} {5}",
+ "singleCodeBlock": "{0}{1}1 bloque de código: {2} {3}",
+ "singleCodeBlockHint": "{0}{1}{2}1 bloque de código: {3} {4}{5}",
+ "singleFileTreeHint": "1 árbol de archivos ",
+ "singleTableHint": "1 tabla ",
+ "toolInvocationsHint": "Se requiere confirmación de chat: {0}",
+ "toolInvocationsHintDetails": "Detalles: {0}",
+ "toolInvocationsHintKb": "Se requiere confirmación de chat: {0}. Presione {1} para aceptar o {2} para cancelar.",
+ "toolPostApprovalTitle": "Aprobar resultados de la herramienta"
+ },
+ "vs/workbench/contrib/chat/browser/chatAccessibilityService": {
+ "chat.untitledChat": "Chat sin título",
+ "chatTitle": "Chat: {0}",
+ "notificationDetail": "Nueva respuesta de chat."
+ },
+ "vs/workbench/contrib/chat/browser/chatAgentHover": {
+ "reservedName": "Esta extensión de chat usa un nombre reservado.",
+ "viewExtensionLabel": "Ver extensión"
+ },
+ "vs/workbench/contrib/chat/browser/chatAttachmentResolveService": {
+ "imageTooLarge": "La imagen es demasiado grande",
+ "imageTooLargeMessage": "La imagen {0} es demasiado grande para adjuntarse."
+ },
+ "vs/workbench/contrib/chat/browser/chatAttachmentWidgets": {
+ "chat.NotebookImageAttachment": "Salida del cuaderno adjunto, {0}",
+ "chat.attachment": "Contexto adjunto, {0}",
+ "chat.attachment.clearButton": "Quitar del contexto",
+ "chat.clickToViewContents": "Haga clic para ver el contenido de {0}.",
+ "chat.elementAttachment": "Elemento adjunto, {0}",
+ "chat.fileAttachment": "Archivo adjunto, {0}",
+ "chat.fileAttachmentHover": "{0} no admite este tipo de archivo.",
+ "chat.fileAttachmentWithRange": "Archivo adjunto, {0}, línea {1} a la línea {2}",
+ "chat.imageAttachment": "Imagen adjunta, {0}",
+ "chat.imageAttachmentHover": "{0} no admite imágenes.",
+ "chat.imageAttachmentWarning": "Este GIF se omitió parcialmente: se enviará el marco actual.",
+ "chat.instructionsAttachment": "Datos adjuntos de instrucciones, {0}",
+ "chat.omittedFileAttachment": "Se ha omitido este archivo: {0}",
+ "chat.omittedImageAttachment": "Se omitió esta imagen: {0}",
+ "chat.omittedNotebookImageAttachment": "Se omitió esta salida del Cuaderno: {0}",
+ "chat.partiallyOmittedImageAttachment": "Se omitió parcialmente esta imagen: {0}",
+ "chat.partiallyOmittedNotebookImageAttachment": "Se omitió parcialmente esta salida del cuaderno: {0}",
+ "chat.promptAttachment": "Archivo de indicación, {0}",
+ "chat.terminalCommand": "Comando de terminal, {0}",
+ "chat.terminalCommandHoverCommandTitle": "Comando",
+ "chat.terminalCommandHoverCommandTitleExit": "Comando: {0}, código de salida: {1}",
+ "chat.terminalCommandHoverHint": "Haga clic para enfocar este comando en el terminal.",
+ "chat.terminalCommandHoverOutputTitle": "Salida:",
+ "instructions": "Instrucciones",
+ "instructions.label": "Instrucciones adicionales",
+ "prompt": "Indicación",
+ "resource": "El valor completo del recurso de datos adjuntos del chat, incluido el esquema y la ruta de acceso",
+ "tool": "{0} - {1}",
+ "toolset": "{0} - {1}"
+ },
+ "vs/workbench/contrib/chat/browser/chatContentParts/chatAgentCommandContentPart": {
+ "rerun": "Volver a ejecutar sin {0}{1}"
+ },
+ "vs/workbench/contrib/chat/browser/chatContentParts/chatAnonymousRateLimitedPart": {
+ "anonymousRateLimited": "Continúe la conversación iniciando sesión. Su cuenta gratuita incluye 50 solicitudes premium al mes, además de acceso a más modelos y funciones de IA.",
+ "enableMoreAIFeatures": "Activar más funciones de IA"
+ },
+ "vs/workbench/contrib/chat/browser/chatContentParts/chatChangesSummaryPart": {
+ "chat.viewFileChangesSummary": "Ver todos los cambios de archivo"
+ },
+ "vs/workbench/contrib/chat/browser/chatContentParts/chatCodeCitationContentPart": {
+ "viewMatches": "Ver coincidencias"
+ },
+ "vs/workbench/contrib/chat/browser/chatContentParts/chatCollapsibleContentPart": {
+ "usedReferencesCollapsed": "{0}, contraído",
+ "usedReferencesExpanded": "{0}, expandido"
+ },
+ "vs/workbench/contrib/chat/browser/chatContentParts/chatCommandContentPart": {
+ "commandButtonDisabled": "Botón no disponible en el chat restaurado"
+ },
+ "vs/workbench/contrib/chat/browser/chatContentParts/chatConfirmationContentPart": {
+ "accept": "Aceptar",
+ "dismiss": "Descartar"
+ },
+ "vs/workbench/contrib/chat/browser/chatContentParts/chatConfirmationWidget": {
+ "chat.confirmationWidget.ariaLabel": "Cuadro de diálogo de confirmación de chat {0} {1}",
+ "chat.untitledChat": "Chat sin título",
+ "chatTitle": "Chat: {0}",
+ "notificationDetail": "Se necesita aprobación para continuar."
+ },
+ "vs/workbench/contrib/chat/browser/chatContentParts/chatExtensionsContentPart": {
+ "chat.extensions.loading": "Cargando extensiones..."
+ },
+ "vs/workbench/contrib/chat/browser/chatContentParts/chatMarkdownContentPart": {
+ "chat.codeblock.applyingEdits": "Aplicando ediciones",
+ "chat.codeblock.applyingPercentage": "({0}%)...",
+ "chat.codeblock.deletions": "{0} eliminaciones",
+ "chat.codeblock.deletions.one": "1 eliminación",
+ "chat.codeblock.edited": "Editado",
+ "chat.codeblock.generating": "Generando ediciones...",
+ "chat.codeblock.insertions": "{0} inserciones",
+ "chat.codeblock.insertions.one": "1 inserción",
+ "summary": "Se editaron {0}, {1}, {2}"
+ },
+ "vs/workbench/contrib/chat/browser/chatContentParts/chatMcpServersInteractionContentPart": {
+ "mcp.skip.link": "¿Omitir?",
+ "mcp.start.multiple": "Los servidores MCP {0} pueden tener nuevas herramientas y requieren interacción para iniciarse. [¿Iniciarlos ahora?]({1})",
+ "mcp.start.single": "El servidor MCP {0} puede tener nuevas herramientas y requiere interacción para iniciarse. [¿Iniciarlo ahora?]({1})",
+ "mcp.starting": "Iniciando {0}...",
+ "mcp.starting.servers": "Iniciando servidores MCP {0}...",
+ "mcp.working.mcp": "Activando extensiones MCP..."
+ },
+ "vs/workbench/contrib/chat/browser/chatContentParts/chatMultiDiffContentPart": {
+ "chatEditingSession.fileCounts": "{0} líneas agregadas, {1} líneas eliminadas",
+ "chatMultiDiff.manyFiles": "{0} archivos modificados",
+ "chatMultiDiff.oneFile": "1 archivo modificado",
+ "chatMultiDiff.openAllChanges": "Abrir cambios",
+ "chatMultiDiffList": "Cambios en el archivo"
+ },
+ "vs/workbench/contrib/chat/browser/chatContentParts/chatProgressContentPart": {
+ "chat.autoapprove.lmServicePerTool.profile": "Aprobado automáticamente para este perfil",
+ "chat.autoapprove.lmServicePerTool.session": "Aprobado automáticamente para esta sesión",
+ "chat.autoapprove.lmServicePerTool.workspace": "Aprobado automáticamente para esta área de trabajo",
+ "chat.autoapprove.setting": "Aprobado automáticamente por {0}",
+ "edit": "Editar",
+ "toolCallUnresponsive": "Esperando a que la herramienta '{0}' responda...",
+ "workingMessage": "Trabajando..."
+ },
+ "vs/workbench/contrib/chat/browser/chatContentParts/chatPullRequestContentPart": {
+ "chatPullRequest.seeMore": "Ver más"
+ },
+ "vs/workbench/contrib/chat/browser/chatContentParts/chatQuotaExceededPart": {
+ "clickToContinue": "Haz clic para reintentar",
+ "enableAdditionalUsage": "Administrar solicitudes Premium de pago",
+ "upgradeToCopilotPro": "Actualizar a GitHub Copilot Pro",
+ "waitWarning": "Los cambios pueden tardar unos minutos en surtir efecto."
+ },
+ "vs/workbench/contrib/chat/browser/chatContentParts/chatReferencesContentPart": {
+ "addToChat": "Agregar archivo al chat",
+ "chatCollapsibleList": "Lista de referencias de chat contraíble",
+ "chatEditingSession.fileCounts": "{0} líneas agregadas, {1} líneas eliminadas",
+ "copyLink": "Copiar vínculo",
+ "setting.hover": "Abrir configuración ''{0}''",
+ "usedReferencesPlural": "Referencias de {0} usadas",
+ "usedReferencesSingular": "Referencia de {0} usada"
+ },
+ "vs/workbench/contrib/chat/browser/chatContentParts/chatSuggestNextWidget": {
+ "chat.currentMode": "modo actual",
+ "chat.proceedFrom": "Continuar desde {0}",
+ "chat.suggestNext.item": "{0}"
+ },
+ "vs/workbench/contrib/chat/browser/chatContentParts/chatTextEditContentPart": {
+ "edits0": "Se ha anulado la realización de cambios.",
+ "editsSummary": "Se realizaron cambios."
+ },
+ "vs/workbench/contrib/chat/browser/chatContentParts/chatThinkingContentPart": {
+ "chat.thinking.fixed.done.generic": "Razonado durante unos segundos",
+ "chat.thinking.fixed.done.withHeader": "{0}{1}",
+ "chat.thinking.fixed.progress.withHeader": "Pensando: {0}",
+ "chat.thinking.header": "Pensando..."
+ },
+ "vs/workbench/contrib/chat/browser/chatContentParts/chatTodoListWidget": {
+ "chat.todoList.clearButton": "Borrar todos",
+ "chat.todoList.clearButton.disabled": "No se pueden borrar tareas pendientes mientras haya una tarea en curso",
+ "chat.todoList.collapseButton": "Contraer tareas pendientes",
+ "chat.todoList.currentTask": "{0} ({1}/{2})",
+ "chat.todoList.expandButton": "Expandir tareas pendientes",
+ "chat.todoList.item": "{0}, {1}",
+ "chat.todoList.itemWithDescription": "{0}, {1}, {2}",
+ "chat.todoList.status.completed": "completada",
+ "chat.todoList.status.inProgress": "en curso",
+ "chat.todoList.status.notStarted": "sin iniciar",
+ "chat.todoList.title": "Todos",
+ "chat.todoList.titleWithCount": "Tareas pendientes ({0}/{1})",
+ "chatTodoList": "Lista de tareas pendientes del chat"
+ },
+ "vs/workbench/contrib/chat/browser/chatContentParts/chatToolInputOutputContentPart": {
+ "chat.input": "Entrada",
+ "chat.output": "Salida"
+ },
+ "vs/workbench/contrib/chat/browser/chatContentParts/chatToolOutputContentSubPart": {
+ "chat.saveResources": "Guardar como...",
+ "chat.saveResources.error": "No se pudo guardar {0}: {1}",
+ "chat.saveResources.progress": "Guardando recursos...",
+ "chat.saveResources.reveal": "Recursos guardados en {0}",
+ "chat.saveResources.title": "Seleccionar carpeta para guardar recursos"
+ },
+ "vs/workbench/contrib/chat/browser/chatContentParts/chatTreeContentPart": {
+ "treeAriaLabel": "Árbol de archivos"
+ },
+ "vs/workbench/contrib/chat/browser/chatContentParts/toolInvocationParts/abstractToolConfirmationSubPart": {
+ "skip": "Omitir"
+ },
+ "vs/workbench/contrib/chat/browser/chatContentParts/toolInvocationParts/chatExtensionsInstallToolSubPart": {
+ "allow": "Permitir",
+ "cancel": "Cancelar",
+ "installExtensions": "Instalar extensiones",
+ "installExtensionsConfirmation": "Haga clic en el botón Instalar de la extensión y, a continuación, presione Permitir cuando haya finalizado."
+ },
+ "vs/workbench/contrib/chat/browser/chatContentParts/toolInvocationParts/chatInputOutputMarkdownProgressPart": {
+ "chat.autoapprove.lmServicePerTool.profile": "Aprobado automáticamente para este perfil",
+ "chat.autoapprove.lmServicePerTool.session": "Aprobado automáticamente para esta sesión",
+ "chat.autoapprove.lmServicePerTool.workspace": "Aprobado automáticamente para esta área de trabajo",
+ "chat.autoapprove.setting": "Aprobado automáticamente por {0}",
+ "edit": "Editar"
+ },
+ "vs/workbench/contrib/chat/browser/chatContentParts/toolInvocationParts/chatTerminalToolConfirmationSubPart": {
+ "autoApprove.button.enable": "Habilitar",
+ "autoApprove.enable": "Habilitar aprobación automática...",
+ "autoApprove.markdown": "Esto permitirá que un subconjunto configurable de comandos se ejecute en el terminal de forma autónoma. Proporciona *protecciones de mejor esfuerzo* y supone que el agente no actúa de forma malintencionada.",
+ "autoApprove.markdown2": "Más información sobre los posibles riesgos y cómo evitarlos.",
+ "autoApprove.title": "¿Habilitar la aprobación automática del terminal?",
+ "newRule": "Regla de aprobación automática {0} agregada",
+ "newRule.plural": "Reglas de aprobación automática {0} agregadas",
+ "ruleTooltip": "Ver regla en la configuración",
+ "sessionApproval": "Todos los comandos se aprobarán automáticamente en esta sesión",
+ "sessionApproval.disable": "Deshabilitar",
+ "skip.detail": "Continuar sin ejecutar este comando",
+ "tool.allow": "Permitir",
+ "tool.skip": "Omitir"
+ },
+ "vs/workbench/contrib/chat/browser/chatContentParts/toolInvocationParts/chatTerminalToolProgressPart": {
+ "chat.focusMostRecentTerminal": "Chat: enfocar el terminal más reciente",
+ "chat.focusMostRecentTerminalOutput": "Chat: enfocar la salida más reciente del terminal",
+ "chat.terminalOutputEmpty": "El comando no produjo ninguna salida.",
+ "chat.terminalOutputTruncated": "Salida truncada a las primeras {0} líneas.",
+ "chatTerminalOutputAccessibleViewHeader": "Comando: {0}",
+ "chatTerminalOutputAriaLabel": "Salida de terminal para {0}",
+ "focusTerminal": "Enfocar terminal",
+ "hideTerminalOutput": "Ocultar salida",
+ "showTerminal": "Mostrar y enfocar terminal",
+ "showTerminalOutput": "Mostrar salida",
+ "terminalToolCommand": "{0}"
+ },
+ "vs/workbench/contrib/chat/browser/chatContentParts/toolInvocationParts/chatToolConfirmationSubPart": {
+ "allow": "Permitir",
+ "allowReview": "Permitir y revisar",
+ "allowSkip": "Permitir y omitir la revisión del resultado",
+ "chat.input": "Entrada",
+ "seeMore": "Ver más",
+ "showMore": "Mostrar más",
+ "skip.detail": "Continuar sin ejecutar esta herramienta"
+ },
+ "vs/workbench/contrib/chat/browser/chatContentParts/toolInvocationParts/chatToolOutputPart": {
+ "chat.toolOutputError": "Error al representar la salida de la herramienta",
+ "loading": "Representando la salida de la herramienta..."
+ },
+ "vs/workbench/contrib/chat/browser/chatContentParts/toolInvocationParts/chatToolPostExecuteConfirmationPart": {
+ "allow": "Permitir",
+ "approveToolResult": "Aprobar resultado de la herramienta",
+ "noDisplayableResults": "No hay resultados para mostrar",
+ "noResults": "No hay resultados para mostrar",
+ "skip.post": "Omitir resultados"
+ },
+ "vs/workbench/contrib/chat/browser/chatContext.contribution": {
+ "chatContextExtPoint": "Aporta integraciones de contexto de chat al widget de chat.",
+ "chatContextExtPoint.icon": "Icono asociado a este elemento del contexto de chat.",
+ "chatContextExtPoint.id": "Identificador único de este elemento.",
+ "chatContextExtPoint.title": "Un nombre fácil de usar para este elemento que se usa para mostrarse en los menús."
+ },
+ "vs/workbench/contrib/chat/browser/chatDragAndDrop": {
+ "attacAsContext": "Adjuntar {0} como contexto",
+ "dragAndDroppedImageName": "Imagen de la dirección URL",
+ "file": "Archivo",
+ "folder": "Carpeta",
+ "image": "Imagen",
+ "notebookOutput": "Salida",
+ "problem": "Problema",
+ "scmHistoryItem": "Cambiar",
+ "symbol": "Símbolo",
+ "url": "Dirección URL"
+ },
+ "vs/workbench/contrib/chat/browser/chatEditing/chatEditingActions": {
+ "accept": "Mantener",
+ "accept.file": "Mantener",
+ "acceptAllEdits": "Conservar todas las ediciones",
+ "addFilesFromReferences": "Agregar archivos a partir de referencias",
+ "chat.editRequests.label": "Editar solicitud",
+ "chat.editing.discardAll.confirmation.manyFiles": "Esto deshará los cambios realizados en {0} archivos. ¿Desea continuar?",
+ "chat.editing.discardAll.confirmation.oneFile": "Esto deshará los cambios realizados en {0}. ¿Desea continuar?",
+ "chat.editing.discardAll.confirmation.primaryButton": "Sí",
+ "chat.editing.discardAll.confirmation.title": "¿Desea deshacer todas las ediciones?",
+ "chat.openFileUpdatedBySnapshot.label": "Abrir archivo",
+ "chat.openSnapshot.label": "Abrir instantánea de archivo",
+ "chat.remove.confirmation.checkbox": "No volver a preguntar",
+ "chat.remove.confirmation.message2": "Esto quitará todas las solicitudes posteriores y se deshacerán las modificaciones realizadas en {0}. ¿Desea continuar?",
+ "chat.remove.confirmation.multipleEdits.message": "Esto quitará todas las solicitudes posteriores y deshacerá las modificaciones realizadas en los archivos {0} del conjunto de trabajo. ¿Desea continuar?",
+ "chat.remove.confirmation.primaryButton": "Sí",
+ "chat.remove.confirmation.title": "¿Desea deshacer {0} ediciones?",
+ "chat.removeLast.confirmation.message2": "Esto quitará la última solicitud y deshará las modificaciones realizadas en {0}. ¿Desea continuar?",
+ "chat.removeLast.confirmation.multipleEdits.message": "Esto quitará la última solicitud y deshacerá las modificaciones realizadas en los archivos {0} del conjunto de trabajo. ¿Desea continuar?",
+ "chat.removeLast.confirmation.title": "¿Desea deshacer la última edición?",
+ "chat.restoreCheckpoint.label": "Restaurar punto de control",
+ "chat.restoreCheckpoint.tooltip": "Restaura el área de trabajo y el chat hasta este punto",
+ "chat.restoreLastCheckpoint.label": "Restaurar al último punto de control",
+ "chat.undoEdits.label": "Solicitudes de deshacer",
+ "chatEditing.snapshot": "{0} (Instantánea)",
+ "chatEditing.viewChanges": "Ver todas las ediciones",
+ "chatEditing.viewPreviousEdits": "Ver ediciones anteriores",
+ "discard": "Deshacer",
+ "discard.file": "Deshacer",
+ "discardAllEdits": "Deshacer todas las ediciones",
+ "open.fileInDiff": "Abrir cambios en el Editor de diferencias"
+ },
+ "vs/workbench/contrib/chat/browser/chatEditing/chatEditingCodeEditorIntegration": {
+ "diff.generic": "{0} (cambios del chat)"
+ },
+ "vs/workbench/contrib/chat/browser/chatEditing/chatEditingEditorActions": {
+ "accept": "Mantener ediciones de chat",
+ "accept2": "Mantener",
+ "accept3": "Mantener las ediciones de chat en este archivo",
+ "accept4": "Conservar todas las ediciones",
+ "acceptAllEdits": "Mantener todas las ediciones de chat",
+ "acceptAllEditsTooltip": "Mantener todas las ediciones de chat en esta sesión",
+ "acceptHunk": "Conservar este cambio",
+ "acceptHunkShort": "Mantener",
+ "accessibleDiff": "Mostrar vista de diferencias accesibles para las ediciones de chat",
+ "diff": "Activar/desactivar el editor de diferencias para ediciones de chat",
+ "discard": "Deshacer ediciones de chat",
+ "discard2": "Deshacer",
+ "discard3": "Deshacer ediciones de chat en este archivo",
+ "discard4": "Deshacer todas las ediciones",
+ "label": "Estado de navegación",
+ "next": "Ir a Siguiente edición de chat",
+ "prev": "Ir a Edición de chat anterior",
+ "review": "Revisar",
+ "undo": "Deshacer este cambio",
+ "undoShort": "Deshacer"
+ },
+ "vs/workbench/contrib/chat/browser/chatEditing/chatEditingEditorContextKeys": {
+ "chat.ctxCursorInChangeRange": "El cursor está dentro de un rango de cambios realizados por la edición del chat.",
+ "chat.ctxEditSessionIsGlobal": "El editor actual forma parte de la sesión de edición global",
+ "chat.ctxHasRequestInProgress": "El editor actual muestra un archivo de una sesión de edición que aún está en curso",
+ "chat.ctxReviewModeEnabled": "El modo de revisión para los cambios de chat está habilitado",
+ "chat.hasEditorModifications": "El editor actual contiene modificaciones de chat",
+ "chat.isCurrentlyBeingModified": "El editor actual está siendo modificado actualmente",
+ "chatEdits.requestCount": "Número de turnos que tiene la sesión de edición en este editor"
+ },
+ "vs/workbench/contrib/chat/browser/chatEditing/chatEditingEditorOverlay": {
+ "0Of0": "—",
+ "nOfM": "{0} de {1}",
+ "tooltip": "{0} ({1})",
+ "tooltip_11": "1 cambio en 1 archivo",
+ "tooltip_1n": "1 cambio en {0} archivos",
+ "tooltip_busy": "{0}: en funcionamiento...",
+ "tooltip_n1": "{0} cambios en 1 archivo",
+ "tooltip_nm": "{0} cambios en {1} archivos",
+ "working": "Trabajando..."
+ },
+ "vs/workbench/contrib/chat/browser/chatEditing/chatEditingModifiedDocumentEntry": {
+ "chatEditing1": "Edición de chat: \"{0}\"",
+ "chatEditing2": "Edición de chat",
+ "default": "Ediciones de chat"
+ },
+ "vs/workbench/contrib/chat/browser/chatEditing/chatEditingModifiedFileEntry": {
+ "editorSelectionBackground": "Color de las regiones de edición pendientes en el minimapa"
+ },
+ "vs/workbench/contrib/chat/browser/chatEditing/chatEditingModifiedNotebookEntry": {
+ "chatNotebookEdit1": "Edición de chat: \"{0}\"",
+ "chatNotebookEdit2": "Edición de chat"
+ },
+ "vs/workbench/contrib/chat/browser/chatEditing/chatEditingServiceImpl": {
+ "chat": "Edición de chat",
+ "chatEditing.modified2": "Cambios pendientes del chat",
+ "join.chatEditingSession": "Guardando el historial de ediciones de chat"
+ },
+ "vs/workbench/contrib/chat/browser/chatEditing/chatEditingSession": {
+ "multiDiffEditorInput.name": "Ediciones sugeridas"
+ },
+ "vs/workbench/contrib/chat/browser/chatEditing/notebook/chatEditingNotebookEditorIntegration": {
+ "diff.generic": "{0} (cambios del chat)"
+ },
+ "vs/workbench/contrib/chat/browser/chatEditing/simpleBrowserEditorOverlay": {
+ "cancelSelection": "Haga clic para cancelar la selección.",
+ "cancelSelectionLabel": "Cancelar",
+ "chat.configureElements": "Configurar datos adjuntos enviados",
+ "chat.expandOverlay": "Expandir superposición",
+ "chat.hideOverlay": "Contraer superposición",
+ "chat.nextSelection": "Volver a seleccionar",
+ "connectingWebviewElement": "Conectando a la vista web...",
+ "continuousSelectionDropdown": "Selección continua",
+ "elementCancelMessage": "Selección cancelada",
+ "elementSelectionComplete": "Elemento agregado al chat",
+ "elementSelectionInProgress": "Seleccionando elemento...",
+ "elementSelectionMessage": "Agregar elemento al chat",
+ "finishSelectionLabel": "Listo",
+ "reopenErrorWebviewElement": "Vuelva a abrir la vista previa.",
+ "selectAnElement": "Haga clic para seleccionar un elemento.",
+ "selectElementDropdown": "Seleccionar un elemento",
+ "startSelection": "Inicio"
+ },
+ "vs/workbench/contrib/chat/browser/chatEditor": {
+ "chatEditor.loadingSession": "Cargando..."
+ },
+ "vs/workbench/contrib/chat/browser/chatEditorInput": {
+ "chat.startEditing.confirmation.acceptEdits": "Conservar y continuar",
+ "chat.startEditing.confirmation.discardEdits": "Deshacer y continuar",
+ "chat.startEditing.confirmation.pending.message.2": "¿Quiere conservar las ediciones pendientes en {0} archivos?",
+ "chat.startEditing.confirmation.pending.message.default": "Si cierra el editor de chats, finalizará la sesión de edición actual.",
+ "chat.startEditing.confirmation.pending.message.default1": "Iniciar un nuevo chat finalizará la sesión de edición actual.",
+ "chat.startEditing.confirmation.title": "¿Iniciar nuevo chat?",
+ "chatEditorConfirmTitle": "Cerrar editor de chat",
+ "chatEditorLabelIcon": "Icono de la etiqueta del editor de chats.",
+ "chatEditorName": "Chat"
+ },
+ "vs/workbench/contrib/chat/browser/chatFollowups": {
+ "followUpAriaLabel": "Pregunta de seguimiento: {0}"
+ },
+ "vs/workbench/contrib/chat/browser/chatInlineAnchorWidget": {
+ "actions.attach.label": "Agregar archivo al chat",
+ "actions.copy.label": "Copiar",
+ "actions.goToDecl.label": "Ir a la definición",
+ "actions.openToSide.label": "Abrir en el lateral",
+ "goToImplementations.label": "Ir a Implementaciones",
+ "goToReferences.label": "Ir a Referencias",
+ "goToTypeDefinitions.label": "Ir a Definiciones de tipo",
+ "miGotoDefinition": "Ir a la &&Definición",
+ "miGotoImplementations": "Ir a &&implementaciones",
+ "miGotoReference": "Ir a &&Referencias",
+ "miGotoTypeDefinition": "Ir a definiciones de &&tipo"
+ },
+ "vs/workbench/contrib/chat/browser/chatInputPart": {
+ "actions.chat.accessibiltyHelp": "Entrada de chat {0}{1} Presione Entrar para enviar la solicitud. Use {2} para la Ayuda de accesibilidad del chat.",
+ "chatAttachFiles": "Buscar archivos y contexto para agregarlos a la solicitud",
+ "chatEditingSession.addSuggested": "Agregar sugerencia",
+ "chatEditingSession.addSuggestion": "Agregar {0} de sugerencias",
+ "chatEditingSession.ariaLabelWithCounts": "{0}, {1} líneas agregadas, {2} líneas eliminadas",
+ "chatEditingSession.manyFiles.1": "{0} archivos cambiados",
+ "chatEditingSession.oneFile.1": "1 archivo cambiado",
+ "chatEditingSession.toggleWorkingSet": "Alternar archivos modificados.",
+ "chatInput.accessibilityHelp": "Entrada de chat {0}{1}.",
+ "chatInput.accessibilityHelpNoKb": "Entrada de chat {0}{1} Presione Entrar para enviar la solicitud. Use el comando de Ayuda de accesibilidad de chat para obtener más información.",
+ "chatInput.mode.agent": "(Agente), editar archivos en el área de trabajo.",
+ "chatInput.mode.ask": "(Modo de preguntas), formule preguntas o escriba / para temas.",
+ "chatInput.mode.custom": "({0}), {1}",
+ "chatInput.mode.edit": "(Editar), editar archivos en el área de trabajo.",
+ "chatInput.model": ", {0}. ",
+ "suggeste.title": "{0} - {1}"
+ },
+ "vs/workbench/contrib/chat/browser/chatListRenderer": {
+ "chatConfirmationAction": "Seleccionado \"{0}\"",
+ "checkpointRestore": "Punto de control restaurado",
+ "didNotFollowInstructions": "No se han seguido las instrucciones",
+ "incompleteCode": "Código incompleto",
+ "incorrectCode": "Código incorrecto sugerido",
+ "missingContext": "Falta el contexto",
+ "offensiveOrUnsafe": "Ofensivo o no seguro",
+ "other": "Otros",
+ "poorlyWrittenOrFormatted": "Mal escrito o con formato incorrecto",
+ "refusedAValidRequest": "Se rechazó una solicitud válida",
+ "renderFailMsg": "Error de representación del contenido",
+ "reportIssue": "Informar de un problema",
+ "requestMarkdownPartTitle": "Haga clic para editar",
+ "usedAgent": "[[(rerun without)]]",
+ "usedAgentSlashCommand": "se usó {0} [[(rerun without)]]",
+ "working": "Trabajando"
+ },
+ "vs/workbench/contrib/chat/browser/chatManagement/chatManagement.contribution": {
+ "chatManagementEditor": "Editor de administración de chats",
+ "models.clearResults": "Borrar resultados de búsqueda de modelos",
+ "modelsManagementEditor": "Editor de administración de modelos",
+ "openAiManagement": "Administrar modelos de lenguaje"
+ },
+ "vs/workbench/contrib/chat/browser/chatManagement/chatManagementEditor": {
+ "chatManagementSashBorder": "El color del borde de la banda de la vista dividida del editor de administración de chat.",
+ "enableAIFeatures": "Usar características de IA",
+ "enableCopilotButton": "Habilitar características de IA",
+ "enableMoreAIFeatures": "Activar más funciones de IA",
+ "plan.businessName": "Copilot Business",
+ "plan.copilot": "Copilot",
+ "plan.enterpriseName": "Copilot Enterprise",
+ "plan.free": "Gratis",
+ "plan.freeName": "Copilot Free",
+ "plan.models": "Modelos",
+ "plan.proName": "Copilot Pro",
+ "plan.proPlusName": "Copilot Pro+",
+ "plan.upgradeToPro": "Actualizar a Copilot Pro",
+ "plan.upgradeToProPlus": "Actualizar a Copilot Pro+",
+ "plan.usage": "Uso",
+ "sectionsListAriaLabel": "Secciones",
+ "signInToUseAIFeatures": "Iniciar sesión para usar las características de IA",
+ "upgradeToCopilotPro": "Actualizar a Copilot Pro"
+ },
+ "vs/workbench/contrib/chat/browser/chatManagement/chatManagementEditorInput": {
+ "aiManagementEditorInputName": "Administrar Copilot",
+ "aiManagementEditorLabelIcon": "Icono de la etiqueta del editor de administración de IA.",
+ "modelsManagementEditorInputName": "Modelos de lenguaje",
+ "modelsManagementEditorLabelIcon": "Icono de la etiqueta del editor de administración de modelos."
+ },
+ "vs/workbench/contrib/chat/browser/chatManagement/chatModelsWidget": {
+ "Search.FullTextSearchPlaceholder": "Escriba para buscar...",
+ "capabilities": "Capacidades",
+ "capability.agent": "Modo de agente",
+ "capability.tools": "Herramientas",
+ "capability.vision": "Visión",
+ "clearSearch": "Borrar búsqueda",
+ "collapse": "Contraer",
+ "cost": "Multiplicador",
+ "expand": "Expandir",
+ "filter": "Filtro",
+ "filter.hidden": "Oculto",
+ "filter.visible": "Visible",
+ "filterByCapability": "Filtrar por {0}",
+ "filterByProvider": "Filtrar por {0}",
+ "filterByVisible": "Filtrar por {0}",
+ "model.ariaLabel": "{0} de {1}",
+ "modelName": "Nombre",
+ "models.agentMode": "Modo de agente",
+ "models.capabilities": "Capacidades",
+ "models.contextSize": "Tamaño del contexto",
+ "models.cost": "Multiplicador",
+ "models.enableModelProvider": "Agregar modelos...",
+ "models.hidden": "Mostrar en el selector de modelos de chat",
+ "models.hide": "Ocultar",
+ "models.input": "Entrada",
+ "models.manageProvider": "Administrar {0}...",
+ "models.output": "Resultado",
+ "models.show": "Mostrar",
+ "models.toolCalling": "Herramientas",
+ "models.tools": "Herramientas",
+ "models.userSelectable": "Este modelo está oculto en el selector de modelos de chat",
+ "models.visible": "Ocultar en el selector de modelos de chat",
+ "models.vision": "Visión",
+ "modelsTable.ariaLabel": "Modelos de lenguaje",
+ "tokenLimits": "Tamaño del contexto",
+ "vendor.ariaLabel": "{0} proveedor"
+ },
+ "vs/workbench/contrib/chat/browser/chatManagement/chatUsageWidget": {
+ "chatsLabel": "Mensajes de chat",
+ "completionsLabel": "Sugerencias insertadas",
+ "plan.additionalPaidEnabled": "Solicitudes premium de pago adicionales habilitadas.",
+ "plan.allowanceResets": "La asignación se restablece {0}.",
+ "plan.chatMessages": "Mensajes de chat",
+ "plan.included": "Incluido",
+ "plan.inlineSuggestions": "Sugerencias insertadas",
+ "plan.premiumRequests": "Solicitudes premium",
+ "quotaLimited": "Limitada"
+ },
+ "vs/workbench/contrib/chat/browser/chatOutputItemRenderer": {
+ "chatOutputRenderer.mimeTypes": "Tipos MIME que este representador puede controlar",
+ "chatOutputRenderer.viewType": "Identificador único del representador.",
+ "vscode.extension.contributes.chatOutputRenderer": "Aporta un representador para tipos MIME específicos en las salidas de chat"
+ },
+ "vs/workbench/contrib/chat/browser/chatParticipant.contribution": {
+ "chat.viewContainer.label": "Chat",
+ "chatCommand": "Nombre corto con el que se hace referencia a este comando en la interfaz de usuario, por ejemplo, \"fix\" o \"explain\" para los comandos que corrigen un problema o explican el código. El nombre debe ser único entre los comandos proporcionados por este participante.",
+ "chatCommandDescription": "Descripción de este comando.",
+ "chatCommandDisambiguation": "Metadatos para ayudar a enrutar automáticamente las preguntas del usuario a este comando de chat.",
+ "chatCommandDisambiguationCategory": "Un nombre detallado para esta categoría, por ejemplo, \"workspace_questions\" o \"web_questions\".",
+ "chatCommandDisambiguationDescription": "Descripción detallada de los tipos de preguntas que son adecuadas para este comando de chat.",
+ "chatCommandDisambiguationExamples": "Lista de preguntas de ejemplo representativas que son adecuadas para este comando de chat.",
+ "chatCommandSampleRequest": "Cuando el usuario hace clic en este comando en \"/help\", este texto se enviará al participante.",
+ "chatCommandSticky": "Indica si la invocación del comando deja el chat en modo persistente, donde el comando se agrega automáticamente a la entrada del chat para el siguiente mensaje.",
+ "chatCommandWhen": "Condición que debe ser verdadera para habilitar este comando.",
+ "chatCommandsDescription": "Comandos disponibles para este participante del chat, que el usuario puede invocar con \"/\".",
+ "chatFailErrorMessage": "No se pudo cargar el chat porque la versión instalada de la extensión Copilot Chat no es compatible con esta versión de {0}. Asegúrese de que la extensión Copilot Chat está actualizada.",
+ "chatParticipantDescription": "Una descripción de este participante del chat, que se muestra en la interfaz de usuario.",
+ "chatParticipantDisambiguation": "Metadatos para ayudar a enrutar automáticamente las preguntas del usuario a este participante del chat.",
+ "chatParticipantDisambiguationCategory": "Un nombre detallado para esta categoría, por ejemplo, \"workspace_questions\" o \"web_questions\".",
+ "chatParticipantDisambiguationDescription": "Una descripción detallada de los tipos de preguntas que son adecuadas para este participante del chat.",
+ "chatParticipantDisambiguationExamples": "Lista de preguntas de ejemplo representativas adecuadas para este participante de chat.",
+ "chatParticipantFullName": "Nombre completo de este participante del chat, que se muestra como la etiqueta para las respuestas procedentes de este participante. Si no se proporciona, se usa {0}.",
+ "chatParticipantId": "Id. único de este participante del chat.",
+ "chatParticipantName": "Nombre orientado al usuario para este participante del chat. El usuario empleará \"@\" con este nombre para invocar al participante. El nombre no debe contener espacios en blanco.",
+ "chatParticipantWhen": "Condición que debe ser verdadera para habilitar este participante.",
+ "chatParticipants": "Participantes del chat",
+ "chatSampleRequest": "Cuando el usuario hace clic en este participante en \"/help\", este texto se enviará al participante.",
+ "miToggleChat": "&&Chat",
+ "participantCommands": "Comandos",
+ "participantDescription": "Descripción",
+ "participantFullName": "Nombre completo",
+ "participantName": "Nombre",
+ "showExtension": "Mostrar extensión",
+ "vscode.extension.contributes.chatParticipant": "Contribuye a un participante del chat"
+ },
+ "vs/workbench/contrib/chat/browser/chatPasteProviders": {
+ "pastedAttachment.multiple": "{0} y {1} más",
+ "pastedAttachment.multipleLines": "{0} líneas",
+ "pastedAttachment.oneLine": "1 línea",
+ "pastedChatAttachments": "Insertar indicación y datos adjuntos",
+ "pastedCodeAttachment": "Datos adjuntos de código pegados",
+ "pastedImageAttachment": "Datos adjuntos de imagen pegados",
+ "pastedImageName": "Imagen pegada"
+ },
+ "vs/workbench/contrib/chat/browser/chatQuick": {
+ "termsDisclaimer": "Al continuar con {0} Copilot, acepta los [Términos]({2}) y la [Declaración de privacidad]({3}) de {1}"
+ },
+ "vs/workbench/contrib/chat/browser/chatResponseAccessibleView": {
+ "toolPostApprovalA11yView": "¿Aprobar resultados de {0}? Resultado: "
+ },
+ "vs/workbench/contrib/chat/browser/chatSessions.contribution": {
+ "chatCommand": "Nombre corto con el que se hace referencia a este comando en la interfaz de usuario, por ejemplo, \"fix\" o \"explain\" para los comandos que corrigen un problema o explican el código. El nombre debe ser único entre los comandos proporcionados por este participante.",
+ "chatCommandDescription": "Descripción de este comando.",
+ "chatCommandWhen": "Condición que debe ser verdadera para habilitar este comando.",
+ "chatCommandsDescription": "Comandos disponibles para esta sesión del chat, que el usuario puede invocar con \"/\".",
+ "chatEditorContributionName": "{0}",
+ "chatSessionsExtPoint": "Aporta integraciones de sesión de chat al widget de chat.",
+ "chatSessionsExtPoint.alternativeIds": "Identificadores alternativos para compatibilidad con versiones anteriores.",
+ "chatSessionsExtPoint.canDelegate": "Si se admite la delegación. El valor predeterminado es \"true\".",
+ "chatSessionsExtPoint.capabilities": "Funcionalidades opcionales para esta sesión de chat.",
+ "chatSessionsExtPoint.chatSessionType": "Identificador único del tipo de sesión de chat.",
+ "chatSessionsExtPoint.description": "Descripción de la sesión de chat para su uso en menús e información sobre herramientas.",
+ "chatSessionsExtPoint.displayName": "Un nombre más largo para este elemento que se usa para mostrar en los menús.",
+ "chatSessionsExtPoint.icon": "Identificador de icono (ID de codicon) para la pestaña del editor de sesión de chat. Por ejemplo, \"$(github)\" o \"$(cloud)\".",
+ "chatSessionsExtPoint.inputPlaceholder": "Texto del marcador de posición que se mostrará en el cuadro de entrada del chat para este tipo de sesión.",
+ "chatSessionsExtPoint.name": "Nombre del participante del chat registrado dinámicamente (p. ej., @agent). No debe contener espacios en blanco.",
+ "chatSessionsExtPoint.order": "Orden en que se debe mostrar este elemento.",
+ "chatSessionsExtPoint.supportsFileAttachments": "Indica si esta sesión de chat admite que se adjunten archivos o referencias de archivo.",
+ "chatSessionsExtPoint.supportsImageAttachments": "Si esta sesión de chat admite que se adjunten imágenes.",
+ "chatSessionsExtPoint.supportsInstructionAttachments": "Si esta sesión de chat admite que se adjunten instrucciones.",
+ "chatSessionsExtPoint.supportsMCPAttachments": "Si esta sesión de chat admite que se adjunten recursos de MCP.",
+ "chatSessionsExtPoint.supportsProblemAttachments": "Si esta sesión de chat admite que se adjunten problemas.",
+ "chatSessionsExtPoint.supportsSearchResultAttachments": "Si esta sesión de chat admite que se adjunten resultados de la búsqueda.",
+ "chatSessionsExtPoint.supportsSourceControlAttachments": "Indica si esta sesión de chat admite adjuntar cambios de control de código fuente.",
+ "chatSessionsExtPoint.supportsSymbolAttachments": "Si esta sesión de chat admite que se adjunten símbolos.",
+ "chatSessionsExtPoint.supportsToolAttachments": "Indica si esta sesión de chat admite que se adjunten herramientas o referencias de herramientas.",
+ "chatSessionsExtPoint.welcomeMessage": "Texto de mensaje (compatible con Markdown) para mostrar en la vista de bienvenida del chat para este tipo de sesión.",
+ "chatSessionsExtPoint.welcomeTips": "Texto de sugerencias (compatible con Markdown e iconos de tema) para mostrar en la vista de bienvenida del chat para este tipo de sesión.",
+ "chatSessionsExtPoint.welcomeTitle": "Texto del título que se mostrará en la vista de bienvenida del chat para este tipo de sesión.",
+ "chatSessionsExtPoint.when": "Condición que se debe cumplir para mostrar este elemento.",
+ "icon.dark": "Ruta de icono cuando se usa un tema oscuro",
+ "icon.light": "Ruta del icono cuando se usa un tema ligero",
+ "interactiveSession.chatSessionSubMenuTitle": "Crear sesión de chat",
+ "interactiveSession.openNewSessionEditor": "Nuevo {0}"
+ },
+ "vs/workbench/contrib/chat/browser/chatSessions/chatSessionPickerActionItem": {
+ "chat.sessionPicker.label": "Opción de selección"
+ },
+ "vs/workbench/contrib/chat/browser/chatSessions/localChatSessionsProvider": {
+ "chat.sessions.description.finished": "Finished",
+ "chat.sessions.description.waitingForConfirmation": "Waiting for confirmation:",
+ "chat.sessions.description.working": "Working..."
+ },
+ "vs/workbench/contrib/chat/browser/chatSessions/view/chatSessionsView": {
+ "chat.agent.sessions": "Sesiones de agentes",
+ "chat.agent.sessions.title": "Sesiones de agentes",
+ "chat.sessions.gettingStarted": "Introducción",
+ "chatSessions.noResults": "No hay sesiones de agente de chat local\r\n[Iniciar una sesión de agente](command:{0})"
+ },
+ "vs/workbench/contrib/chat/browser/chatSessions/view/sessionsTreeRenderer": {
+ "chat.sessions.archivedSessions": "Historial",
+ "chat.sessions.groupNode.multiple": "{0} sesiones",
+ "chat.sessions.groupNode.single": "1 sesión",
+ "chat.sessions.lastActivity": "Última actividad: {0}",
+ "chatSessionInputAriaLabel": "Escriba el nombre de la sesión. Presione Entrar para confirmar o Esc para cancelar."
+ },
+ "vs/workbench/contrib/chat/browser/chatSessions/view/sessionsViewPane": {
+ "chatSession.selectOption": "Más...",
+ "chatSessions": "Sesiones de chat",
+ "chatSessions.dragLabel": "{0} sesiones de agentes",
+ "chatSessions.installExtensions": "Instalar extensiones de chat",
+ "chatSessions.learnMoreGHCodingAgent": "Obtenga más información acerca del agente de codificación de GitHub Copilot",
+ "chatSessions.loading": "Cargando las sesiones de chat...",
+ "chatSessions.refreshing": "Actualizando las sesiones de chat..."
+ },
+ "vs/workbench/contrib/chat/browser/chatSetup": {
+ "chat.category": "Chat",
+ "chatSetupError": "Error en la configuración del chat.",
+ "chatTookLongWarning": "El chat tardó demasiado en prepararse. Asegúrese de que ha iniciado sesión {0} y de que la extensión \"{1}\" está instalada y habilitada.",
+ "chatTookLongWarningAnonymous": "El chat tardó demasiado en prepararse. Asegúrese de que la extensión `{0}` está instalada y habilitada.",
+ "chatWorkspaceTrust": "Actualmente, las características de IA solo se admiten en áreas de trabajo de confianza.",
+ "continueWith": "Continuar con {0}",
+ "copilotUnavailableWarning": "Error al obtener una respuesta. Inténtelo de nuevo.",
+ "enableMore": "Activar más funciones de IA",
+ "enterpriseInstance": "¿Cuál es la instancia? {0}",
+ "enterpriseInstancePlaceholder": "Por ejemplo, \"octocat\" o \"https://octocat.ghe.com\"...",
+ "explain": "Explicar",
+ "fix": "Corregir",
+ "forceSignIn": "Iniciar sesión para usar las características de IA",
+ "generate": "Generar",
+ "generateDocs": "Generar documentos",
+ "generateTests": "Generar pruebas",
+ "hideChatSetup": "Más información sobre cómo ocultar las funciones de IA",
+ "installingChat": "Preparando el chat...",
+ "invalidEnterpriseInstance": "Debe especificar una instancia válida {0} (es decir, \"octocat\" o \"https://octocat.ghe.com\")",
+ "manageOverages": "Administrar uso por encima del límite de GitHub Copilot",
+ "managePlan": "Actualizar a GitHub Copilot Pro",
+ "modify": "Modificar",
+ "restartExtensionHost.reason.disable": "Deshabilitación de las características de IA",
+ "restartExtensionHost.reason.enable": "Habilitación de las características de IA",
+ "retry": "Reintentar",
+ "review": "Revisión del código",
+ "settingUpCopilotNeeded": "Debe configurar GitHub Copilot e iniciar sesión para usar el chat.",
+ "settings": "Al continuar, acepta los [Términos]({1}) y la [Declaración de privacidad]({2}) de {0}. {3} Copilot puede mostrar sugerencias de [código público]({4}) y usar los datos para mejorar el producto. Puede cambiar esta [configuración]({5}) en cualquier momento.",
+ "settingsAnonymous": "Al continuar, acepta los [Términos]({1}) y la [Declaración de privacidad]({2}) de {0}.",
+ "setupAIButton": "Usar características de IA",
+ "setupChatProgress": "Preparando el chat...",
+ "setupChatSignIn2": "Iniciando sesión en {0}...",
+ "setupErrorDialog": "Error en la configuración del chat. ¿Quiere volver a intentarlo?",
+ "setupToolDisplayName": "Nueva área de trabajo",
+ "setupToolsDescription": "Crear una nueva área de trabajo en VS Code",
+ "signIn": "Iniciar sesión para usar las características de IA",
+ "skipForNow": "Omitir por ahora",
+ "startUsing": "Comenzar a usar las funciones de IA",
+ "terminalAgentDescription": "Preguntar cómo hacer algo en el terminal",
+ "triggerChatSetup": "Usar las características de IA con Copilot gratis...",
+ "triggerChatSetupFromAccounts": "Inicie sesión para usar las características de IA...",
+ "trustNeeded": "Debe confiar en esta área de trabajo para usar chat.",
+ "unknownSetupError": "Error al configurar el chat. ¿Quiere volver a intentarlo?",
+ "unknownSignInError": "No se pudo iniciar sesión en {0}. ¿Desea intentarlo de nuevo?",
+ "unknownSignInErrorDetail": "Debe haber iniciado sesión para usar las características de IA.",
+ "vscodeAgentDescription": "Formular preguntas sobre VS Code",
+ "waitingChat": "Preparando el chat...",
+ "waitingChat2": "El chat está casi listo...",
+ "willResolveTo": "Se resolverá en {0}",
+ "workspaceAgentDescription": "Preguntar sobre el área de trabajo"
+ },
+ "vs/workbench/contrib/chat/browser/chatStatus": {
+ "activateDescription": "Configure Copilot para usar las características de IA.",
+ "activeDescriptionAnonymous": "Al continuar con {0} Copilot, acepta los [Términos]({2}) y la [Declaración de privacidad]({3}) de {1}",
+ "additionalUsageDisabled": "Solicitudes premium de pago adicionales deshabilitadas.",
+ "additionalUsageEnabled": "Solicitudes premium de pago adicionales habilitadas.",
+ "anonymousTitle": "Uso de Copilot",
+ "cancelSnooze": "Cancelar posponer",
+ "chatAgentSessionsTitle": "Sesiones de agentes",
+ "chatAndCompletionsQuotaExceededStatus": "Se alcanzó la cuota",
+ "chatQuotaExceededStatus": "Cuota de chat alcanzada",
+ "chatSessionInProgressStatus": "1 sesión de agente en curso",
+ "chatSessionsInProgressStatus": "{0} sesiones de agente en curso",
+ "chatStatus": "Estado de Copilot",
+ "chatStatusAria": "Estado de Copilot",
+ "chatsLabel": "Mensajes de chat",
+ "completions.plus5min": "+5 min",
+ "completions.remainingTime": "restantes",
+ "completions.snooze5minutes": "Ocultar sugerencias en línea durante 5 min",
+ "completions.snooze5minutesTitle": "Ocultar sugerencias durante 5 minutos",
+ "completions.snoozeAdditional5minutes": "Posponer 5 minutos adicionales",
+ "completions.snoozeTimeDescription": "Las sugerencias insertadas están ocultas durante el tiempo restante",
+ "completionsDisabledStatus": "Sugerencias insertadas deshabilitadas",
+ "completionsLabel": "Sugerencias insertadas",
+ "completionsQuotaExceededStatus": "Se alcanzó la cuota de sugerencias insertadas",
+ "completionsSnoozedStatus": "Sugerencias insertadas pospuestas",
+ "copilotDisabledStatus": "Copilot deshabilitado",
+ "enableAIFeatures": "Usar características de IA",
+ "enableAdditionalUsage": "Administrar solicitudes premium de pago",
+ "enableCopilotButton": "Habilitar características de IA",
+ "enableDescription": "Habilite Copilot para usar las características de IA.",
+ "enableMoreAIFeatures": "Activar más funciones de IA",
+ "enableMoreDescription": "Inicie sesión para activar más funciones de IA de Copilot.",
+ "finishSetup": "Finalizar configuración",
+ "gaugeBackground": "Color de fondo de medidor.",
+ "gaugeBorder": "Color del borde del medidor.",
+ "gaugeErrorBackground": "Color de fondo de error del medidor.",
+ "gaugeErrorForeground": "Color de primer plano del error del medidor.",
+ "gaugeForeground": "Color de primer plano del medidor.",
+ "gaugeWarningBackground": "Color de fondo de advertencia del medidor.",
+ "gaugeWarningForeground": "Color de primer plano de advertencia del medidor.",
+ "inProgressChatSession": "$(loading~spin) {0} en curso",
+ "inlineSuggestions": "Sugerencias insertadas",
+ "learnMore": "Más información",
+ "limitQuota": "La asignación se restablece {0}.",
+ "notSignedIn": "Sesión cerrada",
+ "premiumChatsLabel": "Solicitudes premium",
+ "quotaDisplay": "{0}%",
+ "quotaDisplayWithOverage": "+{0} solicitudes",
+ "quotaLabel": "Administrar chat",
+ "quotaLimited": "Limitada",
+ "quotaTooltip": "Administrar chat",
+ "quotaUnlimited": "Incluido",
+ "settings.codeCompletions.allFiles": "Todos los archivos",
+ "settings.codeCompletions.language": "{0}",
+ "settings.nextEditSuggestions": "Siguientes sugerencias de edición",
+ "settings.snooze": "Posponer",
+ "settingsLabel": "Configuración",
+ "settingsTooltip": "Abrir configuración",
+ "signInDescription": "Inicie sesión para usar las características de IA de Copilot.",
+ "signInToUseAIFeatures": "Iniciar sesión para usar las características de IA",
+ "upgradeToCopilotPro": "Actualizar a GitHub Copilot Pro",
+ "usageTitle": "Uso de Copilot",
+ "viewChatSessionsLabel": "Ver sesiones de agentes",
+ "viewChatSessionsTooltip": "Ver sesiones de agentes"
+ },
+ "vs/workbench/contrib/chat/browser/chatWidget": {
+ "agentTitle": "Compilación con agente",
+ "chat.history.list": "Historial de chats",
+ "chat.history.showMore": "Historial de chats...",
+ "chat.history.showMoreAriaLabel": "Abrir historial de chats",
+ "chat.history.showMoreHover": "Mostrar historial de chats...",
+ "chat.input.placeholder.lockedToAgent": "Chatear con {0}",
+ "chatDescription": "Pregunte sobre su código",
+ "chatDisclaimer": "Las respuestas de IA pueden ser inexactas.",
+ "chatWidget.instructions": "[Generar instrucciones de agente]({0}) para incorporar inteligencia artificial en el código base.",
+ "chatWidget.promptFile.commandLabel": "{0}",
+ "chatWidget.suggestedPrompts.buildWorkspace": "Crear área de trabajo",
+ "chatWidget.suggestedPrompts.buildWorkspacePrompt": "¿Cómo compilar esta área de trabajo?",
+ "chatWidget.suggestedPrompts.findConfig": "Mostrar configuración",
+ "chatWidget.suggestedPrompts.findConfigPrompt": "¿Dónde se define la configuración de este proyecto?",
+ "chatWidget.suggestedPrompts.gettingStarted": "Preguntar a @vscode",
+ "chatWidget.suggestedPrompts.gettingStartedPrompt": "@vscode ¿Cómo cambio el tema a modo claro?",
+ "chatWidget.suggestedPrompts.newProject": "Crear proyecto",
+ "chatWidget.suggestedPrompts.newProjectPrompt": "Creación de un proyecto de Hola mundo #new en TypeScript",
+ "codingAgentTitle": "Delegar a {0}",
+ "copilotCodingAgentMessage": "Esta sesión de chat se reenviará al {0} [agente de codificación]({1}), donde se completa el trabajo en segundo plano. ",
+ "editsTitle": "Editar en contexto",
+ "genericCodingAgentMessage": "Esta sesión de chat se reenviará al agente de codificación {0} donde se completa el trabajo en segundo plano. ",
+ "scrollDownButtonLabel": "Desplazar hacia abajo",
+ "settings": "Al continuar con {0} Copilot, acepta los [Términos]({2}) y la [Declaración de privacidad]({3}) de {1}."
+ },
+ "vs/workbench/contrib/chat/browser/codeBlockPart": {
+ "chat.codeBlock.toolbar": "Barra de herramientas de bloque de código",
+ "chat.codeBlockHelp": "Bloque de código",
+ "chat.codeBlockLabel": "Bloque de código {0}",
+ "chat.codeBlockToolbarLabel": "Bloque de código {0}",
+ "chat.compareCodeBlockLabel": "Ediciones de código",
+ "chat.edits.1": "Se aplicó 1 cambio en [[''{0}'']]",
+ "chat.edits.N": "Cambios aplicados {0} en [[''{1}'']]",
+ "chat.edits.rejected": "Las ediciones de [[''{0}'']] se han rechazado",
+ "interactive.compare.apply.confirm": "Se ha modificado el archivo original.",
+ "interactive.compare.apply.confirm.detail": "¿Desea aplicar los cambios de todos modos?",
+ "modified": "Modificado",
+ "original": "Original",
+ "vulnerabilitiesPlural": "{0} vulnerabilidades",
+ "vulnerabilitiesSingular": "{0} vulnerabilidad"
+ },
+ "vs/workbench/contrib/chat/browser/contrib/chatInputCompletions": {
+ "activeFile": "Archivo activo",
+ "fileEntryDescription": "{0} ({1})",
+ "installLabel": "Instalar extensiones de chat...",
+ "mcp.prompt.error": "Error al resolver el mensaje: {0}",
+ "mcp.prompt.image": "Imagen de solicitud",
+ "mcp.prompt.resource": "Solicitar recurso",
+ "tool_source_completion": "{0}: {1}"
+ },
+ "vs/workbench/contrib/chat/browser/contrib/chatInputEditorHover": {
+ "hoverAccessibilityChatAgent": "Aquí hay una parte activable del agente de chat."
+ },
+ "vs/workbench/contrib/chat/browser/contrib/chatInputRelatedFilesContrib": {
+ "relatedFile": "{0} (Sugerido)"
+ },
+ "vs/workbench/contrib/chat/browser/contrib/screenshot": {
+ "screenshot": "Recorte de pantalla"
+ },
+ "vs/workbench/contrib/chat/browser/languageModelToolsConfirmationService": {
+ "allowGlobally": "Permitir siempre",
+ "allowGloballyPost": "Permitir siempre sin revisión",
+ "allowGloballyPostTooltip": "Siempre permita que los resultados de esta herramienta se envíen sin confirmación.",
+ "allowGloballyTooltip": "Permitir siempre que esta herramienta se ejecute sin confirmación.",
+ "allowServerGlobally": "Permitir siempre herramientas de {0}",
+ "allowServerGloballyPost": "Permitir siempre herramientas de {0} sin revisión",
+ "allowServerGloballyPostTooltip": "Permita siempre que los resultados de todas las herramientas de este servidor se envíen sin confirmación.",
+ "allowServerGloballyTooltip": "Permita siempre que todas las herramientas de este servidor se ejecuten sin confirmación.",
+ "allowServerSession": "Permitir herramientas de {0} en esta sesión",
+ "allowServerSessionPost": "Permitir herramientas de {0} sin revisión en esta sesión",
+ "allowServerSessionPostTooltip": "Permita que los resultados de todas las herramientas de este servidor se envíen sin confirmación en esta sesión.",
+ "allowServerSessionTooltip": "Permita que todas las herramientas de este servidor se ejecuten en esta sesión sin confirmación.",
+ "allowServerWorkspace": "Permitir herramientas de {0} en esta área de trabajo",
+ "allowServerWorkspacePost": "Permitir herramientas de {0} sin revisión en esta área de trabajo",
+ "allowServerWorkspacePostTooltip": "Permita que los resultados de todas las herramientas de este servidor se envíen sin confirmación en esta área de trabajo.",
+ "allowServerWorkspaceTooltip": "Permita que todas las herramientas de este servidor se ejecuten en esta área de trabajo sin confirmación.",
+ "allowSession": "Permitir en esta sesión",
+ "allowSessionPost": "Permitir sin revisión en esta sesión",
+ "allowSessionPostTooltip": "Permita que los resultados de esta herramienta se envíen sin confirmación en esta sesión.",
+ "allowSessionTooltip": "Permita que esta herramienta se ejecute en esta sesión sin confirmación.",
+ "allowWorkspace": "Permitir en esta área de trabajo",
+ "allowWorkspacePost": "Permitir sin revisión en esta área de trabajo",
+ "allowWorkspacePostTooltip": "Permita que los resultados de esta herramienta se envíen sin confirmación en esta área de trabajo.",
+ "allowWorkspaceTooltip": "Permita que esta herramienta se ejecute en esta área de trabajo sin confirmación.",
+ "configureGlobalToolApprovals": "Configurar aprobaciones de herramientas globales",
+ "configureSessionToolApprovals": "Configurar aprobaciones de herramientas de sesión",
+ "configureWorkspaceToolApprovals": "Configurar aprobaciones de herramientas del área de trabajo",
+ "continueWithoutReviewing": "Continuar sin revisar ningún resultado de la herramienta",
+ "continueWithoutReviewingResults": "sin revisar el resultado",
+ "runToolsWithoutApproval": "Ejecutar cualquier herramienta sin aprobación",
+ "runWithoutApproval": "sin aprobación",
+ "workspaceScope": "Configurar solo para esta área de trabajo"
+ },
+ "vs/workbench/contrib/chat/browser/languageModelToolsService": {
+ "autoApprove2.button.disable": "Deshabilitar",
+ "autoApprove2.button.enable": "Habilitar",
+ "autoApprove2.markdown": "La aprobación automática global también conocida como \"modo YOLO\" deshabilita completamente la aprobación manual para _todas las herramientas de todas las áreas de trabajo_, lo que permite que el agente actúe de forma totalmente autónoma. Esto es extremadamente peligroso y *nunca* se recomienda, incluso los entornos en contenedores como [Codespaces](https://github.com/features/codespaces) y [Dev Containers](https://marketplace.visualstudio.com/items?itemName=ms-vscode-remote.remote-containers) tienen claves de usuario reenviadas al contenedor que podrían estar en peligro.\r\n\r\n**Esta característica deshabilita [protecciones de seguridad críticas](https://code.visualstudio.com/docs/copilot/security) y facilita mucho a un atacante poner en peligro la máquina.**",
+ "autoApprove2.title": "¿Habilitar la aprobación automática global?",
+ "copilot.toolSet.launch.description": "Launch and run code, binaries or tests in the workspace",
+ "copilot.toolSet.vscode.description": "Use VS Code features",
+ "defaultToolConfirmation.disclaimer": "La aprobación automática de ''{0}'' está restringida a través de {1}.",
+ "defaultToolConfirmation.message": "¿Ejecutar la herramienta '{0}'?",
+ "defaultToolConfirmation.title": "¿Permitir que se ejecute la herramienta?"
+ },
+ "vs/workbench/contrib/chat/browser/modelPicker/modelPickerActionItem": {
+ "chat.manageModels": "Administrar modelos...",
+ "chat.manageModels.tooltip": "Administrar modelos de lenguaje",
+ "chat.modelPicker.label": "Elegir modelo",
+ "chat.moreModels": "Agregar modelos de idioma",
+ "chat.moreModels.tooltip": "Agregar modelos de idioma",
+ "chat.morePremiumModels": "Agregar modelos premium",
+ "chat.morePremiumModels.tooltip": "Agregar modelos premium"
+ },
+ "vs/workbench/contrib/chat/browser/modelPicker/modePickerActionItem": {
+ "built-in": "Integrado",
+ "custom": "Personalizar"
+ },
+ "vs/workbench/contrib/chat/browser/promptSyntax/attachInstructionsAction": {
+ "attach-instructions.capitalized.ellipses": "Adjuntar instrucciones...",
+ "chatContext.attach.instructions.label": "Instrucciones...",
+ "commands.instructions.select-dialog.placeholder": "Seleccionar archivos de instrucciones para adjuntar",
+ "commands.prompt.manage-dialog.placeholder": "Seleccione el archivo de instrucciones que desea abrir",
+ "configure-instructions": "Configurar instrucciones...",
+ "configure-instructions.short": "Instrucciones de chat",
+ "configureInstructions": "Configurar instrucciones...",
+ "placeholder": "Seleccionar archivos de instrucciones para adjuntar"
+ },
+ "vs/workbench/contrib/chat/browser/promptSyntax/chatModeActions": {
+ "configure-agents": "Configurar agentes personalizados...",
+ "configure-agents.short": "Agentes personalizados",
+ "configure.agent.prompts.placeholder": "Seleccione los agentes personalizados que se abrirán y configurarán su visibilidad en el selector de agentes",
+ "select-agent": "Configurar agentes personalizados..."
+ },
+ "vs/workbench/contrib/chat/browser/promptSyntax/newPromptFileActions": {
+ "commands.new.agent.local.title": "Nuevo agente personalizado...",
+ "commands.new.instructions.local.title": "Nuevo archivo de instrucciones...",
+ "commands.new.prompt.local.title": "Nuevo archivo de indicación...",
+ "commands.new.untitled.prompt.title": "Nuevo archivo de indicación sin título",
+ "enable.capitalized": "Habilitar",
+ "learnMore.capitalized": "Más información",
+ "workbench.command.prompts.create.user.enable-sync-notification": "¿Quiere hacer una copia de seguridad y sincronizar sus archivos de instrucciones, indicaciones de usuario y agente personalizado con Sincronización de configuración?'"
+ },
+ "vs/workbench/contrib/chat/browser/promptSyntax/pickers/askForPromptName": {
+ "askForAgentFileName.placeholder": "Escriba el nombre del archivo de agente",
+ "askForInstructionsFileName.placeholder": "Escriba el nombre del archivo de instrucciones",
+ "askForPromptFileName.error.empty": "Escriba un nombre.",
+ "askForPromptFileName.error.exists": "Ya existe un archivo para el nombre especificado.",
+ "askForPromptFileName.error.invalid": "El nombre contiene caracteres no válidos.",
+ "askForPromptFileName.placeholder": "Escriba el nombre del archivo de indicación",
+ "askForRenamedAgentFileName.placeholder": "Escriba un nuevo nombre del archivo de agente",
+ "askForRenamedInstructionsFileName.placeholder": "Escriba un nuevo nombre del archivo de instrucciones",
+ "askForRenamedPromptFileName.placeholder": "Escriba un nuevo nombre del archivo de indicación"
+ },
+ "vs/workbench/contrib/chat/browser/promptSyntax/pickers/askForPromptSourceFolder": {
+ "agent.copy.location.placeholder": "Seleccione una ubicación en la que copiar el archivo del agente...",
+ "agent.move.location.placeholder": "Seleccione una ubicación en la que mover el archivo del agente...",
+ "commands.agent.create.ask-folder.empty.docs-label": "Más información sobre cómo configurar agentes personalizados",
+ "commands.agent.create.ask-folder.empty.placeholder": "No se encontraron carpetas de origen de agente.",
+ "commands.instructions.create.ask-folder.empty.docs-label": "Más información sobre cómo configurar instrucciones reutilizables",
+ "commands.instructions.create.ask-folder.empty.placeholder": "No se encontraron carpetas de origen de instrucciones.",
+ "commands.prompts.create.ask-folder.empty.docs-label": "Obtenga información sobre cómo configurar mensajes reutilizables",
+ "commands.prompts.create.ask-folder.empty.placeholder": "No se encontraron carpetas de origen de mensajes.",
+ "commands.prompts.create.source-folder.current-workspace": "Área de trabajo actual",
+ "current.folder": "Ubicación actual",
+ "instructions.copy.location.placeholder": "Seleccione una ubicación a la que copiar el archivo de instrucciones...",
+ "instructions.move.location.placeholder": "Seleccione una ubicación a la que mover el archivo de instrucciones...",
+ "prompt.copy.location.placeholder": "Seleccione una ubicación en la que copiar el archivo de indicación...",
+ "prompt.move.location.placeholder": "Seleccione una ubicación a la que mover el archivo de indicación...",
+ "workbench.command.agent.create.location.placeholder": "Seleccione una ubicación para crear el archivo del agente en...",
+ "workbench.command.instructions.create.location.placeholder": "Seleccione una ubicación en la que crear el archivo de instrucciones...",
+ "workbench.command.prompt.create.location.placeholder": "Seleccione una ubicación para crear el archivo de la indicación..."
+ },
+ "vs/workbench/contrib/chat/browser/promptSyntax/pickers/promptFilePickers": {
+ "commands.new-agentfile.select-dialog.label": "Crear nuevo agente personalizado...",
+ "commands.new-instructionsfile.select-dialog.label": "Nuevo archivo de instrucciones...",
+ "commands.new-promptfile.select-dialog.label": "Nuevo archivo de indicación...",
+ "commands.prompts.use.select-dialog.delete-prompt.confirm.message": "¿Está seguro de que desea eliminar '{0}'?",
+ "commands.update-instructions.select-dialog.label": "Generar instrucciones del agente...",
+ "copy": "Copiar",
+ "delete": "Eliminar",
+ "help.agent": "Mostrar ayuda sobre archivos de agentes personalizados",
+ "help.instructions": "Mostrar ayuda sobre archivos de instrucciones",
+ "help.prompt": "Mostrar ayuda sobre archivos de indicación",
+ "hiddenInAgentPicker": "Oculto del selector de agente de vista de chat",
+ "hiddenLabelInfo": "{0} (oculto)",
+ "makeInvisible": "Ocultar del selector de agentes",
+ "makeVisible": "Oculto en el selector del agente de vista de chat. Haga clic para mostrar.",
+ "open": "Abrir en el Editor",
+ "rename": "Mover y/o renombrar",
+ "searching": "Buscando en el sistema de archivos...",
+ "separator.extensions": "Extensiones",
+ "separator.user": "Datos del usuario",
+ "separator.workspace": "Área de trabajo",
+ "separator.workspace-agent-instructions": "Instrucciones del agente"
+ },
+ "vs/workbench/contrib/chat/browser/promptSyntax/promptCodingAgentActionOverlay": {
+ "runPromptWithCodingAgent": "Ejecutar el archivo de solicitud en un agente de codificación remoto",
+ "runWithCodingAgent.label": "{0} Delegación en el agente de codificación de Copilot"
+ },
+ "vs/workbench/contrib/chat/browser/promptSyntax/promptToolsCodeLensProvider": {
+ "configure-tools.capitalized.ellipsis": "Configurar herramientas...",
+ "placeholder": "Seleccionar herramientas"
+ },
+ "vs/workbench/contrib/chat/browser/promptSyntax/promptUrlHandler": {
+ "confirmInstallAgent": "Una aplicación externa quiere crear un agente personalizado con contenido de una dirección URL. ¿Desea continuar seleccionando una carpeta de destino y un nombre?",
+ "confirmInstallInstructions": "Una aplicación externa quiere crear un archivo de instrucciones con contenido de una dirección URL. ¿Desea continuar seleccionando una carpeta de destino y un nombre?",
+ "confirmInstallPrompt": "Una aplicación externa quiere crear un archivo de aviso con contenido de una dirección URL. ¿Desea continuar seleccionando una carpeta de destino y un nombre?",
+ "confirmOpenDetail2": "Esto tendrá acceso a {0}.\r\n\r\n",
+ "confirmOpenDetail3": "Si no ha iniciado esta solicitud, puede tratarse de un intento de ataque a su sistema. A menos que haya realizado una acción explícita para iniciar esta solicitud, debe presionar \"No\".",
+ "failed": "No se pudo recuperar la URL: {0}",
+ "noButton": "No",
+ "yesButton": "&&Sí"
+ },
+ "vs/workbench/contrib/chat/browser/promptSyntax/runPromptAction": {
+ "commands.prompt.manage-dialog.placeholder": "Seleccione el archivo de indicación que desea abrir",
+ "commands.prompt.select-dialog.placeholder": "Seleccione el archivo de indicación que desea ejecutar (mantenga presionada la tecla {0} para usarla en el nuevo chat)",
+ "configure-prompts": "Configurar archivos de indicación...",
+ "configure-prompts.short": "Archivos de mensajes",
+ "run-prompt-in-new-chat.capitalized": "Ejecutar indicación en un chat nuevo",
+ "run-prompt.capitalized": "Ejecutar símbolo del sistema en el chat actual",
+ "run-prompt.capitalized.ellipses": "Ejecutar indicación..."
+ },
+ "vs/workbench/contrib/chat/browser/promptSyntax/saveAsPromptFileActions": {
+ "promptfile.saveAgentFile": "Guardar como archivo de agente",
+ "promptfile.saveAgentFile.description": "Guardar como archivo de agente",
+ "promptfile.saveInstructionsFile": "Guardar como archivo de instrucciones",
+ "promptfile.saveInstructionsFile.description": "Guardar como archivo de instrucciones",
+ "promptfile.savePromptFile": "Guardar como archivo de indicación",
+ "promptfile.savePromptFile.description": "Guardar como archivo de indicación"
+ },
+ "vs/workbench/contrib/chat/browser/tools/toolSetsContribution": {
+ "bad_name1": "Nombre de archivo no válido",
+ "bad_name2": "\"{0}\" no es un nombre de archivo válido",
+ "chat.configureToolSets": "Configurar conjuntos de herramientas...",
+ "chat.configureToolSets.add": "Crear nuevo archivo de conjuntos de herramientas...",
+ "chat.configureToolSets.placeholder": "Seleccione un conjunto de herramientas para configurar",
+ "chat.configureToolSets.short": "Conjuntos de herramientas",
+ "input.placeholder": "Escriba el nombre de archivo de conjuntos de herramientas",
+ "schema.default": "Conjunto de herramientas vacío",
+ "schema.description": "Breve descripción de este conjunto de herramientas.",
+ "schema.icon": "Icono que se usará para este conjunto de herramientas en la interfaz de usuario. Usa la sintaxis \"\\$(name)\", como \"\\$(zap)\"",
+ "schema.tools": "Lista de herramientas o conjuntos de herramientas que se incluirán en este conjunto de herramientas. No puede estar vacío y debe hacer referencia a las herramientas como se hace referencia en las indicaciones.",
+ "tool.description": "{1} ({0})\r\n\r\n{2}",
+ "toolsetSchema.json": "Configuración de conjuntos de herramientas de usuario"
+ },
+ "vs/workbench/contrib/chat/browser/viewsWelcome/chatViewsWelcomeHandler": {
+ "chatViewsWelcome.content": "Contenido del mensaje de bienvenida. El primer vínculo de comando se representará como un botón.",
+ "chatViewsWelcome.icon": "Icono del mensaje de bienvenida.",
+ "chatViewsWelcome.title": "Título del mensaje de bienvenida.",
+ "chatViewsWelcome.when": "Condición cuando se muestra el mensaje de bienvenida.",
+ "vscode.extension.contributes.chatViewsWelcome": "Aporta un mensaje de bienvenida a una vista de chat"
+ },
+ "vs/workbench/contrib/chat/browser/viewsWelcome/chatViewWelcomeController": {
+ "chatWidget.suggestedActions": "Acciones sugeridas",
+ "editPromptFile": "Editar archivo de indicación",
+ "runPromptTitle": "Indicación sugerida: {0}",
+ "suggestedPromptAriaLabel": "Indicación sugerida: {0}",
+ "suggestedPromptAriaLabelWithDescription": "Indicación sugerida: {0}, {1}"
+ },
+ "vs/workbench/contrib/chat/common/chatColors": {
+ "chat.avatarBackground": "Color de fondo de un avatar de chat.",
+ "chat.avatarForeground": "Color de primer plano de un avatar de chat.",
+ "chat.editedFileForeground": "Color de primer plano de un archivo editado por chat en la lista de archivos editados.",
+ "chat.linesAddedForeground": "Color de primer plano de las líneas añadidas en la cápsula del bloque de código de chat.",
+ "chat.linesRemovedForeground": "Color de primer plano de las líneas eliminadas en la cápsula del bloque de código de chat.",
+ "chat.requestBackground": "Color de fondo de una solicitud de chat.",
+ "chat.requestBorder": "Color del borde de una solicitud de chat.",
+ "chat.requestBubbleBackground": "Color de fondo de la burbuja de solicitud de chat.",
+ "chat.requestBubbleHoverBackground": "Color de fondo de la burbuja de solicitud de chat al pasar el ratón por encima.",
+ "chat.requestCodeBorder": "Color de borde de los bloques de código dentro de la burbuja de solicitud de chat.",
+ "chat.slashCommandBackground": "Color de fondo de un comando de barra oblicua de chat.",
+ "chat.slashCommandForeground": "Color de primer plano de un comando de barra oblicua de chat.",
+ "chatCheckpointSeparator": "Color del separador de punto de control del chat."
+ },
+ "vs/workbench/contrib/chat/common/chatContextKeys": {
+ "agentKind": "El \"tipo\" del agente actual.",
+ "agentSupportsAttachments": "Es true cuando el agente de chat admite datos adjuntos.",
+ "chatEditApplied": "True cuando se han aplicado las ediciones de texto del chat.",
+ "chatEditingCanRedo": "True cuando es posible rehacer una interacción en el panel de edición.",
+ "chatEditingCanUndo": "True cuando es posible deshacer una interacción en el panel de edición.",
+ "chatEditingHasElicitationRequest": "Es true cuando hay una solicitud de obtención de chat pendiente.",
+ "chatEditingHasToolConfirmation": "True cuando hay una confirmación de herramienta presente.",
+ "chatExtensionInvalid": "True cuando la extensión de chat instalada no es válida y debe actualizarse.",
+ "chatHasAgents": "Es true cuando el chat tiene agentes personalizados disponibles.",
+ "chatHasFileAttachments": "Es true cuando el chat tiene datos adjuntos de archivo.",
+ "chatInEmptyStateWithHistoryEnabled": "True cuando el historial de estado vacío del chat está habilitado Y el chat está en estado vacío.",
+ "chatIsActiveSession": "Es true cuando la sesión de chat está activa actualmente (no se puede eliminar).",
+ "chatIsArchivedItem": "Verdadero cuando el elemento de sesión de chat está archivado.",
+ "chatIsEnabled": "True cuando el chat está habilitado porque se activa un participante de chat predeterminado con una implementación.",
+ "chatIsKatexMathElement": "Es true cuando se centra un elemento matemático KaTeX.",
+ "chatItemId": "Id. del elemento de chat.",
+ "chatLastItemId": "Id. del último elemento de chat.",
+ "chatModelsAreUserSelectable": "True cuando el usuario puede seleccionar manualmente el modelo de chat.",
+ "chatPanelExtensionParticipantRegistered": "True cuando se registra un participante de chat predeterminado para el panel desde una extensión.",
+ "chatPanelLocation": "Ubicación del panel de chat.",
+ "chatParticipantRegistered": "True cuando se registra un participante de chat predeterminado para el panel.",
+ "chatRemoteJobCreating": "Verdadero cuando se crea un trabajo de agente de codificación remoto.",
+ "chatRequest": "El elemento de chat es una solicitud",
+ "chatResponse": "El elemento de chat es una respuesta.",
+ "chatResponseErrored": "Es True cuando la respuesta del chat produjo un error.",
+ "chatResponseFiltered": "Es true cuando el servidor filtró la respuesta del chat.",
+ "chatResponseSupportsIssueReporting": "Es verdadero cuando la respuesta de chat actual admite informes de problemas.",
+ "chatSessionHasModels": "Verdadero cuando el chat está en una sesión aportada que tiene \"modelos\" disponibles para mostrar.",
+ "chatSessionResponseDetectedAgentOrCommand": "Cuando se detectó automáticamente el agente o el comando",
+ "chatSessionType": "Tipo del elemento de sesión de chat actual.",
+ "chatSkipRequestInProgressMessage": "True cuando se debe omitir el mensaje de solicitud de chat en curso.",
+ "chatToolCount": "Número de herramientas disponibles en el agente actual.",
+ "chatToolGroupingThreshold": "Número de herramientas a partir del cual comenzamos a realizar la agrupación virtual.",
+ "enableRemoteCodingAgentPromptFileOverlay": "Si la característica de superposición de archivos de petición de mensajes del agente de codificación remota está habilitada",
+ "filePartOfEditSession": "Verdadero cuando el widget de chat está dentro de un archivo con una edición de sesión.",
+ "hasRemoteCodingAgent": "Si hay algún agente de codificación remoto disponible",
+ "inChat": "es true cuando el foco está en el widget del chat; en caso contrario, es false.",
+ "inChatEditor": "Indica si el foco está en el editor de chat.",
+ "inChatTerminalToolOutput": "Verdadero cuando el foco está en la región de salida del terminal de chat.",
+ "inInteractiveInput": "es true cuando el foco está en la entrada del chat; en caso contrario, es false.",
+ "inQuickChat": "Es true cuando la interfaz de usuario de chat rápido tiene el foco; de lo contrario, es false.",
+ "interactiveInputHasFocus": "True cuando la entrada de chat tiene el foco.",
+ "interactiveInputHasText": "True cuando la entrada de chat tiene texto.",
+ "interactiveSessionCurrentlyEditing": "True cuando se está editando la solicitud actual.",
+ "interactiveSessionCurrentlyEditingInput": "True cuando se está editando la entrada de solicitud actual en la parte inferior.",
+ "interactiveSessionRequestInProgress": "Es true cuando la solicitud actual aún está en curso.",
+ "interactiveSessionResponseVote": "Cuando la respuesta ha sido votada a favor, se establece en \"up\". Cuando se ha votado en contra, se establece como \"down\". En caso contrario, será una cadena vacía.",
+ "lockedToCodingAgent": "True cuando el widget de chat está bloqueado en la sesión del agente de codificación.",
+ "toolsCount": "El recuento de herramientas disponibles en el chat.",
+ "withinEditSessionDiff": "Verdadero cuando el widget de chat se envía al chat de edición de sesión."
+ },
+ "vs/workbench/contrib/chat/common/chatEditingService": {
+ "chatEditingAgentSupportsReadonlyReferences": "Si el agente de edición de chat admite referencias de solo lectura (temporales)",
+ "chatEditingWidgetFileState": "Estado actual del archivo en el widget de edición del chat"
+ },
+ "vs/workbench/contrib/chat/common/chatModel": {
+ "codeCitation": "Código similar encontrado con 1 tipo de licencia",
+ "codeCitations": "Código similar encontrado con {0} tipos de licencias",
+ "copyrightContentRetry": "Respuesta eliminada debido a una posible coincidencia con el código público, reintentando con la indicación modificada.",
+ "editsSummary": "Se realizaron cambios.",
+ "filteredContentRetry": "Respuesta eliminada debido a los filtros de seguridad de contenido, reintentando con la indicación modificada."
+ },
+ "vs/workbench/contrib/chat/common/chatModes": {
+ "agentDescription": "Describa qué compilar a continuación",
+ "chatDescription": "Explorar y comprender su código",
+ "editsDescription": "Editar o refactorizar el código seleccionado"
+ },
+ "vs/workbench/contrib/chat/common/chatProgressTypes/chatToolInvocation": {
+ "toolInvocationMessage": "Usando {0}"
+ },
+ "vs/workbench/contrib/chat/common/chatServiceImpl": {
+ "emptyResponse": "El proveedor devolvió una respuesta nula",
+ "newChat": "Nuevo chat"
+ },
+ "vs/workbench/contrib/chat/common/chatSessionStore": {
+ "join.chatSessionStore": "Guardando el historial de chats",
+ "newChat": "Nuevo chat"
+ },
+ "vs/workbench/contrib/chat/common/chatUrlFetchingConfirmation": {
+ "allowRequestsCheckbox": "Realizar solicitudes sin confirmación",
+ "allowResponsesCheckbox": "Permitir respuestas sin confirmación",
+ "approveAll": "Aprobar todo",
+ "approveRequestTo": "Permitir solicitudes a {0}",
+ "approveResponseFrom": "Permitir respuestas de {0}",
+ "approves": "Aprueba {0}",
+ "delete": "Eliminar",
+ "denyAll": "Denegar todo",
+ "moreOptions": "Permitir solicitudes a...",
+ "moreOptionsManage": "Más opciones...",
+ "moreOptionsMultiple": "Configurar aprobaciones de URL...",
+ "noApprovals": "No hay aprobaciones",
+ "openSettings": "Abrir configuración",
+ "requests": "solicitudes",
+ "responses": "respuestas",
+ "selectApproval": "Seleccionar el patrón de dirección URL que se aprobará"
+ },
+ "vs/workbench/contrib/chat/common/chatVariableEntries": {
+ "chat.attachment.problems.all": "Todos los problemas",
+ "chat.attachment.problems.inFile": "Problemas en {0}"
+ },
+ "vs/workbench/contrib/chat/common/languageModels": {
+ "vscode.extension.contributes.languageModelChatProviders": "Contribuye con proveedores de chat de modelos de lenguaje de un proveedor específico.",
+ "vscode.extension.contributes.languageModels.displayName": "Nombre para mostrar del proveedor de chat del modelo de lenguaje.",
+ "vscode.extension.contributes.languageModels.emptyVendor": "El campo de proveedor no puede estar vacío.",
+ "vscode.extension.contributes.languageModels.managementCommand": "Un comando para administrar el proveedor de chat del modelo de lenguaje, por ejemplo, \"Administrar modelos de Copilot\". Se utiliza en el selector de modelos de chat. Si no se proporciona, no se mostrará un icono de engranaje durante la selección del proveedor.",
+ "vscode.extension.contributes.languageModels.vendor": "Un proveedor único global del proveedor de chat del modelo de lenguaje.",
+ "vscode.extension.contributes.languageModels.vendorAlreadyRegistered": "El proveedor \"{0}\" ya está registrado y no puede registrarse dos veces",
+ "vscode.extension.contributes.languageModels.when": "Condición que debe ser verdadera para mostrar este proveedor de chat de modelo de lenguaje en la lista Administrar modelos.",
+ "vscode.extension.contributes.languageModels.whitespaceVendor": "El campo de proveedor no puede empezar ni terminar con espacios en blanco."
+ },
+ "vs/workbench/contrib/chat/common/languageModelStats": {
+ "Language Models": "Copilot",
+ "chat": "chat",
+ "languageModels": "El lenguaje modela las estadísticas de uso de esta extensión."
+ },
+ "vs/workbench/contrib/chat/common/languageModelToolsService": {
+ "builtin": "Integrado",
+ "toolResultDataPartA11y": "{0} de {1} datos binarios",
+ "user": "Definido por el usuario"
+ },
+ "vs/workbench/contrib/chat/common/modelPicker/modelPickerWidget": {
+ "chat.modelPicker.other": "Otros modelos"
+ },
+ "vs/workbench/contrib/chat/common/promptSyntax/chatPromptFilesContribution": {
+ "chatContribution.property.description": "(Opcional) Descripción del archivo.",
+ "chatContribution.property.name": "Identificador de este archivo. Debe ser único dentro de esta extensión para este punto de contribución.",
+ "chatContribution.property.path": "Ruta del archivo relativa a la raíz de la extensión.",
+ "chatContribution.schema.description": "Aporta {0} para los mensajes de chat.",
+ "extension.invalid.name": "La extensión \"{0}\" no puede registrar la entrada {1} con el nombre no válido \"{2}\".",
+ "extension.invalid.path": "La ruta de acceso de la extensión '{0}' {1} entrada '{2}' se resuelve fuera de la extensión.",
+ "extension.missing.description": "La extensión '{0}' no puede registrar {1} entrada '{2}' sin descripción.",
+ "extension.missing.path": "La extensión '{0}' no puede registrar {1} entrada '{2}' sin ruta de acceso.",
+ "extension.registration.failed": "No se pudo registrar {0} entrada '{1}': {2}"
+ },
+ "vs/workbench/contrib/chat/common/promptSyntax/computeAutomaticInstructions": {
+ "instruction.file.description.agentsmd.folder": "Instrucciones para la carpeta '{0}'",
+ "instruction.file.description.agentsmd.root": "Instrucciones para el área de trabajo",
+ "instruction.file.reason.agentsmd": "Se adjunta automáticamente porque la configuración {0} está habilitada",
+ "instruction.file.reason.allFiles": "Adjunto automáticamente como patrón es **",
+ "instruction.file.reason.copilot": "Se adjunta automáticamente porque la configuración {0} está habilitada",
+ "instruction.file.reason.referenced": "Referencia de {0}",
+ "instruction.file.reason.specificFile": "Adjunto automáticamente como patrón {0} coincide con {1}"
+ },
+ "vs/workbench/contrib/chat/common/promptSyntax/languageProviders/promptCodeActions": {
+ "expandToolNames": "Expand to {0} tools",
+ "migrateToAgent": "Migrar a archivo de agente personalizado",
+ "renameToAgent": "Cambiar nombre a \"agente\"",
+ "updateAllToolNames": "Actualizar todos los nombres de herramientas",
+ "updateToolName": "Actualizar a '{0}'"
+ },
+ "vs/workbench/contrib/chat/common/promptSyntax/languageProviders/promptHeaderAutocompletion": {
+ "promptHeaderAutocompletion.handoffsExample": "Ejemplo de entrega"
+ },
+ "vs/workbench/contrib/chat/common/promptSyntax/languageProviders/promptHovers": {
+ "modelFamily": "- Familia: {0}",
+ "modelName": "- Nombre: {0}",
+ "modelVendor": "- Proveedor: {0}",
+ "promptHeader.agent.argumentHint": "La sugerencia de argumento describe las entradas que el agente personalizado espera o admite.",
+ "promptHeader.agent.description": "Descripción del agente personalizado, qué hace y cuándo usarlo.",
+ "promptHeader.agent.handoffs": "Posibles acciones de entrega cuando el agente haya completado su tarea.",
+ "promptHeader.agent.handoffs.githubCopilot": "Nota: este atributo no se usa cuando el destino es github-copilot.",
+ "promptHeader.agent.model": "Especifique el modelo que ejecuta este agente personalizado.",
+ "promptHeader.agent.model.githubCopilot": "Nota: este atributo no se usa cuando el destino es github-copilot.",
+ "promptHeader.agent.name": "Nombre del agente tal y como se muestra en la interfaz de usuario.",
+ "promptHeader.agent.target": "Destino al que se aplican los atributos del encabezado, como las herramientas. Los valores posibles son \"github-copilot\" y \"vscode\".",
+ "promptHeader.agent.tools": "Conjunto de herramientas a las que tiene acceso el agente personalizado.",
+ "promptHeader.instructions.applyToRange": "Uno o varios patrones globales (separados por comas) que describen los archivos a los que se aplican las instrucciones. Según estos patrones, el archivo se incluye automáticamente en la solicitud cuando el contexto contiene un archivo que coincide con uno o varios de estos patrones. Utilice `**` cuando desee que este archivo se agregue siempre.\r\nEjemplo: `**/*.ts`, `**/*.js`, `client/**`",
+ "promptHeader.instructions.description": "Descripción del archivo de instrucciones. Se puede usar para proporcionar contexto adicional o información sobre las instrucciones y se pasa al modelo de lenguaje como parte de la solicitud.",
+ "promptHeader.instructions.name": "Nombre del archivo de instrucciones tal como aparece en la interfaz de usuario. Si no se establece, el nombre deriva del nombre del archivo.",
+ "promptHeader.prompt.agent.builtInDesc": "Agente integrado",
+ "promptHeader.prompt.agent.builtin": "**Agentes integrados:**",
+ "promptHeader.prompt.agent.custom": "**Agentes personalizados:**",
+ "promptHeader.prompt.agent.customDesc": "Agente personalizado",
+ "promptHeader.prompt.agent.description": "Agente que se va a usar al ejecutar esta indicación.",
+ "promptHeader.prompt.argumentHint": "La sugerencia de argumento describe las entradas que la indicación espera o admite.",
+ "promptHeader.prompt.description": "Descripción de la indicación reutilizable, qué hace y cuándo usarla.",
+ "promptHeader.prompt.model": "Modelo que se utilizará en esta solicitud.",
+ "promptHeader.prompt.name": "El nombre de la indicación. También es el nombre del comando de barra oblicua que ejecutará esta indicación.",
+ "promptHeader.prompt.tools": "Herramientas que se utilizarán en esta solicitud.",
+ "toolSetName": "Conjunto de herramientas: {0}\r\n\r\n"
+ },
+ "vs/workbench/contrib/chat/common/promptSyntax/languageProviders/promptValidator": {
+ "githubCopilotTools.customAgent": "Llamar a agentes personalizados",
+ "githubCopilotTools.edit": "Editar archivos",
+ "githubCopilotTools.search": "Buscar en archivos",
+ "githubCopilotTools.shell": "Ejecutar comandos de shell",
+ "promptValidator.agentNotFound": "Agente desconocido \"{0}\". Agentes disponibles: {1}.",
+ "promptValidator.applyToMustBeString": "El atributo “applyTo” debe ser una cadena.",
+ "promptValidator.applyToMustBeValidGlob": "El atributo “applyTo” debe ser un patrón global válido.",
+ "promptValidator.argumentHintMustBeString": "El atributo 'argument-hint' debe ser una cadena.",
+ "promptValidator.argumentHintShouldNotBeEmpty": "El atributo “argument-hint” no debe estar vacío.",
+ "promptValidator.attributeMustBeNonEmpty": "El atributo '{0}' debe ser una cadena no vacía.",
+ "promptValidator.attributeMustBeString": "El atributo “{0}” debe ser una cadena.",
+ "promptValidator.chatModesRenamedToAgents": "Los modos de chat han sido renombrados como agentes. Mueva este archivo a {0}",
+ "promptValidator.chatModesRenamedToAgentsNoMove": "Los modos de chat han sido renombrados como agentes. Mueva el archivo a {0}",
+ "promptValidator.deprecatedVariableReference": "Se cambió el nombre de la herramienta o conjunto de herramientas ''{0}\". Use \"{1}\" en su lugar.",
+ "promptValidator.deprecatedVariableReferenceMultipleNames": "Tool or toolset '{0}' has been renamed, use the following tools instead: {1}",
+ "promptValidator.descriptionMustBeString": "El atributo “description” debe ser una cadena.",
+ "promptValidator.descriptionShouldNotBeEmpty": "El atributo “description” no debe estar vacío.",
+ "promptValidator.disabledTool": "La herramienta o conjunto de herramientas \"{0}\" también debe estar habilitado en el encabezado.",
+ "promptValidator.eachHandoffMustBeObject": "Cada entrega en el atributo 'handoffs' debe ser un objeto con 'label', 'agent', 'prompt' y opcionalmente 'send'.",
+ "promptValidator.eachToolMustBeString": "Cada nombre de herramienta en el atributo “tools” debe ser una cadena.",
+ "promptValidator.excludeAgentMustBeArray": "El atributo “excludeMode” debe ser una matriz.",
+ "promptValidator.fileNotFound": "No se encontró el archivo “{0}” en “{1}”.",
+ "promptValidator.handoffAgentMustBeNonEmptyString": "La propiedad 'agent' en una entrega debe ser una cadena no vacía.",
+ "promptValidator.handoffLabelMustBeNonEmptyString": "La propiedad 'label' en una entrega debe ser una cadena no vacía.",
+ "promptValidator.handoffPromptMustBeString": "La propiedad 'prompt' en una entrega debe ser una cadena.",
+ "promptValidator.handoffSendMustBeBoolean": "La propiedad 'send' en una entrega debe ser un valor booleano.",
+ "promptValidator.handoffsMustBeArray": "El atributo “handoffs” debe ser una matriz.",
+ "promptValidator.ignoredAttribute.vscode-agent": "El atributo '{0}' se ignora cuando se ejecuta localmente en VS Code.",
+ "promptValidator.invalidFileReference": "Referencia de archivo no válida “{0}”.",
+ "promptValidator.missingHandoffProperties": "Faltan las propiedades obligatorias {0} en el objeto de entrega.",
+ "promptValidator.modeDeprecated": "El atributo \"modo\" está en desuso. En su lugar, se usa el atributo \"agente\".",
+ "promptValidator.modeDeprecated.useAgent": "El atributo \"mode\" está en desuso. Cámbielo a 'agent'.",
+ "promptValidator.modelMustBeNonEmpty": "El atributo “model” debe ser una cadena no vacía.",
+ "promptValidator.modelMustBeString": "El atributo “model” debe ser una cadena.",
+ "promptValidator.modelNotFound": "Modelo \"{0}\" desconocido.",
+ "promptValidator.modelNotSuited": "El modelo “{0}” no es adecuado para el modo de agente.",
+ "promptValidator.nameMustBeString": "El atributo “nombre” debe ser una cadena.",
+ "promptValidator.nameShouldNotBeEmpty": "El atributo “name” no debe estar vacío.",
+ "promptValidator.targetInvalidValue": "El atributo “target” debe ser: {0}.",
+ "promptValidator.targetMustBeNonEmpty": "El atributo 'target' debe ser una cadena no vacía.",
+ "promptValidator.targetMustBeString": "El atributo “target” debe ser una cadena.",
+ "promptValidator.toolDeprecated": "Se cambió el nombre de la herramienta o conjunto de herramientas ''{0}\". Use \"{1}\" en su lugar.",
+ "promptValidator.toolDeprecatedMultipleNames": "Tool or toolset '{0}' has been renamed, use the following tools instead: {1}",
+ "promptValidator.toolNotFound": "Herramienta desconocida \"{0}\".",
+ "promptValidator.toolsMustBeArrayOrMap": "El atributo “tools” debe ser una matriz.",
+ "promptValidator.toolsOnlyInAgent": "El atributo \"tools\" solo se admite al usar agentes. Se ignorará el atributo.",
+ "promptValidator.unknownAttribute.github-agent": "El atributo '{0}' no se admite en archivos de agente personalizados de GitHub Copilot. Admitidos: {1}.",
+ "promptValidator.unknownAttribute.instructions": "El atributo \"{0}\" no se admite en archivos de instrucciones. Admitidos: {1}.",
+ "promptValidator.unknownAttribute.prompt": "El atributo \"{0}\" no se admite en archivos de indicación. Admitidos: {1}.",
+ "promptValidator.unknownAttribute.vscode-agent": "El atributo \"{0}\" no se admite en archivos de agente de VS Code. Admitidos: {1}.",
+ "promptValidator.unknownHandoffProperty": "Propiedad desconocida '{0}' en el objeto de entrega. Las propiedades admitidas son 'label', 'agent', 'prompt' y opcionalmente 'send'.",
+ "promptValidator.unknownVariableReference": "Herramienta o conjunto de herramientas “{0}” desconocido."
+ },
+ "vs/workbench/contrib/chat/common/promptSyntax/service/promptsServiceImpl": {
+ "extension.with.id": "Extensión: {0}",
+ "user-data-dir.capitalized": "Datos del usuario"
+ },
+ "vs/workbench/contrib/chat/common/tools/languageModelToolsContribution": {
+ "canBeReferencedInPrompt": "Si es true, esta herramienta se muestra como datos adjuntos que el usuario puede agregar manualmente a su solicitud. Los participantes del chat recibirán la herramienta en {0}.",
+ "condition": "Condición que debe ser verdadera para que esta herramienta esté habilitada. Tenga en cuenta que una herramienta aún puede ser invocada por otra extensión aunque su condición \"when\" sea false.",
+ "descriptions": "Descripción",
+ "icon": "Icono que representa esta herramienta. Una ruta de acceso de archivo, un objeto con rutas de acceso de archivo para temas oscuros y claros, o una referencia de icono de tema, como \"\\$(zap)\"",
+ "icon.dark": "Ruta de icono cuando se usa un tema oscuro",
+ "icon.light": "Ruta del icono cuando se usa un tema ligero",
+ "langModelToolSets": "Conjuntos de herramientas de modelo de lenguaje",
+ "langModelTools": "Herramientas de modelo de lenguaje",
+ "legacyToolReferenceFullNames": "An array of deprecated names for backwards compatibility that can also be used to reference this tool in a query. Each name must not contain whitespace. Full names are generally in the format `toolsetName/toolReferenceName` (e.g., `search/readFile`) or just `toolReferenceName` when there is no toolset (e.g., `readFile`).",
+ "name": "Nombre",
+ "parametersSchema": "Esquema JSON para las entradas que acepta esta herramienta. Las entradas deben ser un objeto en el nivel superior. Es posible que un modelo de lenguaje determinado no admita todas las características del esquema JSON. Consulte la documentación de la familia de modelos de lenguaje que usa para obtener más información.",
+ "reference": "Nombre de referencia",
+ "toolDisplayName": "Nombre legible para esta herramienta que se puede usar para describirla en la interfaz de usuario.",
+ "toolModelDescription": "Descripción de esta herramienta que puede usar un modelo de lenguaje para seleccionarla.",
+ "toolName": "Un nombre único para esta herramienta. Este nombre debe ser un identificador único global y también se usa como nombre al presentar esta herramienta a un modelo de lenguaje.",
+ "toolName2": "Si {0} está habilitado para esta herramienta, el usuario puede usar '#' con este nombre para invocar la herramienta en una consulta. De lo contrario, no se requiere el nombre. El nombre no puede contener espacios en blanco.",
+ "toolSetDescription": "Descripción de este conjunto de herramientas.",
+ "toolSetIcon": "Icono que representa este conjunto de herramientas, como `$(zap)`",
+ "toolSetLegacyFullNames": "An array of deprecated names for backwards compatibility that can also be used to reference this tool set. Each name must not contain whitespace. Full names are generally in the format `parentToolSetName/toolSetName` (e.g., `github/repo`) or just `toolSetName` when there is no parent toolset (e.g., `repo`).",
+ "toolSetName": "Un nombre para este conjunto de herramientas. Se usa como referencia y no debe contener espacios en blanco.",
+ "toolSetTools": "Lista de herramientas o conjuntos de herramientas que se incluirán en este conjunto de herramientas. No puede estar vacío y debe hacer referencia a las herramientas mediante su `toolReferenceName`.",
+ "toolTableDescription": "Descripción",
+ "toolTableDisplayName": "Nombre para mostrar",
+ "toolTableName": "Nombre",
+ "toolTags": "Conjunto de etiquetas que describen aproximadamente las capacidades de la herramienta. Un usuario de herramientas puede usar estas herramientas para filtrar el conjunto de herramientas por solo aquellas que sean relevantes para la tarea que tenga a mano, o puede que quiera seleccionar una etiqueta que se pueda usar para identificar solo las herramientas aportadas por esta extensión.",
+ "toolUserDescription": "Descripción de esta herramienta que se puede mostrar al usuario.",
+ "tools": "Herramientas",
+ "vscode.extension.contributes.toolSets": "Aporta un conjunto de herramientas de modelo de lenguaje que se pueden usar juntas.",
+ "vscode.extension.contributes.tools": "Aporta una herramienta que un modelo de lenguaje puede invocar en una sesión de chat o desde un comando independiente. Todas las extensiones pueden usar las herramientas registradas."
+ },
+ "vs/workbench/contrib/chat/common/tools/manageTodoListTool": {
+ "todo.added.multiple": "Se han agregado {0} tareas pendientes",
+ "todo.added.single": "Se ha agregado una tarea pendiente",
+ "todo.completed": "Completado: *{0}* ({1}/{2})",
+ "todo.created.multiple": "Se han creado {0} tareas pendientes",
+ "todo.created.single": "Se ha creado 1 tarea pendiente",
+ "todo.readOperation": "Leer lista de tareas pendientes",
+ "todo.starting": "Iniciando: *{0}* ({1}/{2})",
+ "todo.updated": "Lista de tareas pendientes actualizada",
+ "todo.updatedList": "Lista de tareas pendientes actualizada",
+ "tool.manageTodoList.displayName": "Administrar y realizar un seguimiento de los elementos pendientes para la planificación de tareas",
+ "tool.manageTodoList.userDescription": "Manage and track todo items for task planning"
+ },
+ "vs/workbench/contrib/chat/common/tools/runSubagentTool": {
+ "tool.runSubagent.displayName": "Ejecutar subagente",
+ "tool.runSubagent.userDescription": "Run a task within an isolated subagent context to enable efficient organization of tasks and context window management."
+ },
+ "vs/workbench/contrib/chat/common/tools/tools": {
+ "toolset.custom-agent": "Delegate tasks to other agents"
+ },
+ "vs/workbench/contrib/chat/common/voiceChatService": {
+ "voiceChatInProgress": "Hay una sesión de conversión de voz en texto en curso para el chat."
+ },
+ "vs/workbench/contrib/chat/electron-browser/actions/chatDeveloperActions": {
+ "workbench.action.chat.openStorageFolder.label": "Abrir la carpeta de almacenamiento del chat"
+ },
+ "vs/workbench/contrib/chat/electron-browser/actions/voiceChatActions": {
+ "keywordActivation.status.active": "Escuchando 'Hey Code'...",
+ "keywordActivation.status.inactive": "Esperando a que finalice el chat de voz...",
+ "keywordActivation.status.name": "Activación de palabra clave de voz",
+ "listening": "Estoy escuchando",
+ "scopedChatSynthesisInProgress": "Se define como una ubicación donde la grabación de voz desde el micrófono está en curso para el chat de voz. Esta clave solo se define en el ámbito, por contexto de chat.",
+ "scopedVoiceChatGettingReady": "True al prepararse para recibir entradas de voz del micrófono para el chat de voz. Esta clave solo se define en el ámbito, por contexto de chat.",
+ "scopedVoiceChatInProgress": "Se define como una ubicación donde la grabación de voz desde el micrófono está en curso para el chat de voz. Esta clave solo se define en el ámbito, por contexto de chat.",
+ "voice.keywordActivation": "Controla si se reconoce la frase clave \"Hey Code\" para iniciar una sesión de chat de voz. Al habilitar esta opción, se iniciará la grabación desde el micrófono, pero el audio se procesa localmente y nunca se envía a un servidor.",
+ "voice.keywordActivation.chatInContext": "La activación de palabras clave está habilitada y se reconoce \"Hey Code\" para iniciar una sesión de chat de voz en el editor activo o en la vista, según el foco del teclado.",
+ "voice.keywordActivation.chatInView": "La activación de palabras clave está habilitada y se reconoce \"Hey Code\" para iniciar una sesión de chat de voz en la vista de chat.",
+ "voice.keywordActivation.inlineChat": "La activación por palabra clave está habilitada y a la escucha de \"Hey Code\" para iniciar una sesión de chat de voz en el editor activo, si es posible.",
+ "voice.keywordActivation.off": "La activación de palabras clave está deshabilitada.",
+ "voice.keywordActivation.quickChat": "La activación de palabras clave está habilitada y se reconoce \"Hey Code\" para iniciar una sesión de chat de voz en el chat rápido.",
+ "workbench.action.chat.holdToVoiceChatInChatView.label": "Mantener pulsado para el chat de voz en la vista de chat",
+ "workbench.action.chat.inlineVoiceChat": "Chat de voz insertado",
+ "workbench.action.chat.quickVoiceChat.label": "Chat de voz rápido",
+ "workbench.action.chat.readChatResponseAloud": "Lectura en voz alta",
+ "workbench.action.chat.startVoiceChat.label": "Iniciar chat de voz",
+ "workbench.action.chat.stopListening.label": "Dejar de escuchar",
+ "workbench.action.chat.stopListeningAndSubmit.label": "Dejar de escuchar y enviar",
+ "workbench.action.chat.stopReadChatItemAloud": "Detener lectura en voz alta",
+ "workbench.action.chat.voiceChatInView.label": "Chat de voz en la vista de chat",
+ "workbench.action.speech.stopReadAloud": "Detener lectura en voz alta"
+ },
+ "vs/workbench/contrib/chat/electron-browser/chat.contribution": {
+ "changeWorkspace.detail": "La solicitud de chat se detendrá si cambia el área de trabajo.",
+ "changeWorkspace.message": "Hay una solicitud de chat en curso. ¿Está seguro de que desea cambiar el área de trabajo?",
+ "chatRequestInProgress": "Hay una solicitud de chat en curso.",
+ "closeTheWindow.detail": "La solicitud de chat se detendrá si cierra la ventana.",
+ "closeTheWindow.message": "Hay una solicitud de chat en curso. ¿Está seguro de que desea cerrar la ventana?",
+ "copilotWorkspaceTrust": "Actualmente, las características de IA solo se admiten en áreas de trabajo de confianza.",
+ "exit.detail": "La solicitud de chat se detendrá si sale.",
+ "exit.message": "Hay una solicitud de chat en curso. ¿Está seguro de que desea salir?",
+ "quit.detail": "La solicitud de chat se detendrá si sale.",
+ "quit.message": "Hay una solicitud de chat en curso. ¿Está seguro de que desea salir?",
+ "reloadTheWindow.detail": "La solicitud de chat se detendrá si vuelve a cargar la ventana.",
+ "reloadTheWindow.message": "Hay una solicitud de chat en curso. ¿Está seguro de que desea volver a cargar la ventana?"
+ },
+ "vs/workbench/contrib/chat/electron-browser/tools/fetchPageTool": {
+ "fetchWebPage.binaryNotSupported": "Los archivos binarios no se admiten en este momento.",
+ "fetchWebPage.confirmationMessage.plural": "El contenido web puede contener código malintencionado o intentar ataques de inyección de indicaciones.",
+ "fetchWebPage.confirmationTitle.plural": "¿Capturar páginas web?",
+ "fetchWebPage.confirmationTitle.singular": "¿Capturar página web?",
+ "fetchWebPage.invalidUrl": "Dirección URL no válida",
+ "fetchWebPage.invocationMessage.plural": "Capturando {0} recursos",
+ "fetchWebPage.invocationMessage.singular": "Capturando {0}",
+ "fetchWebPage.invocationMessage.singularAsLink": "Capturando [resource]({0})",
+ "fetchWebPage.noValidUrls": "No se proporcionaron direcciones URL válidas.",
+ "fetchWebPage.pastTenseMessage.plural": "Se capturaron {0} recursos, pero las siguientes direcciones URL no eran válidas:\r\n\r\n{1}\r\n\r\n",
+ "fetchWebPage.pastTenseMessage.singular": "Se ha capturado el recurso, pero la siguiente dirección URL no es válida:\r\n\r\n{0}\r\n\r\n",
+ "fetchWebPage.pastTenseMessageResult.plural": "{0} recursos capturados",
+ "fetchWebPage.pastTenseMessageResult.singular": "Se capturó {0}",
+ "fetchWebPage.pastTenseMessageResult.singularAsLink": "[resource]({0}) capturado",
+ "fetchWebPage.urlsDescription": "Matriz de direcciones URL de las que se va a capturar contenido."
},
"vs/workbench/contrib/codeActions/browser/codeActionsContribution": {
- "codeActionsOnSave": "Tipos de acción de código que se ejecutarán en guardar.",
- "codeActionsOnSave.fixAll": "Controla si la acción de reparación automática se debe ejecutar al guardar el archivo.",
- "codeActionsOnSave.generic": "Controla si se deben ejecutar acciones de \"{0}\" en el archivo guardado."
- },
- "vs/workbench/contrib/codeActions/common/codeActionsExtensionPoint": {
- "contributes.codeActions": "Configure el editor que se usará para un recurso.",
- "contributes.codeActions.description": "Descripción de lo que hace la acción de código.",
- "contributes.codeActions.kind": "\"CodeActionKind\" de la acción de código de contribución.",
- "contributes.codeActions.languages": "Modos de idioma para los que están habilitadas las acciones de código.",
- "contributes.codeActions.title": "Etiqueta para la acción de código utilizada en la interfaz de usuario."
- },
- "vs/workbench/contrib/codeActions/common/documentationExtensionPoint": {
- "contributes.documentation": "Documentación aportada.",
- "contributes.documentation.refactoring": "Documentación aportada para la refactorización.",
- "contributes.documentation.refactoring.command": "Comando ejecutado.",
- "contributes.documentation.refactoring.title": "Etiqueta para la documentación utilizada en la interfaz de usuario.",
- "contributes.documentation.refactoring.when": "Cuando la cláusula.",
- "contributes.documentation.refactorings": "Documentación aportada para refactorizaciones."
+ "alwaysSave": "Desencadena acciones de código en los guardados explícitos y los guardados automáticos desencadenados por los cambios de foco o ventana.",
+ "codeActionsOnSave.generic": "Controla si se deben ejecutar acciones de \"{0}\" en el archivo guardado.",
+ "editor.codeActionsOnSave": "Ejecute acciones de código para el editor al guardar. Se deben especificar acciones de código y el editor no debe cerrarse. Cuando {0} se establece en \"afterDelay\", las acciones de código solo se ejecutarán cuando el archivo se guarde explícitamente. Ejemplo: `\"source.organizeImports\": \"explicit\" `",
+ "explicit": "Desencadena acciones de código solo cuando se guarda explícitamente.",
+ "explicitBoolean": "Desencadena acciones de código solo cuando se guarda explícitamente. Este valor quedará en desuso en favor de \"explicit\".",
+ "explicitSave": "Desencadena acciones de código solo cuando se guarda explícitamente",
+ "explicitSaveBoolean": "Desencadena acciones de código solo cuando se guarda explícitamente. Este valor quedará en desuso en favor de \"explicit\".",
+ "never": "Nunca desencadena acciones de código al guardar.",
+ "neverBoolean": "Desencadena acciones de código solo cuando se guarda explícitamente. Este valor quedará en desuso en favor de \"never\".",
+ "neverSave": "Nunca desencadena acciones de código al guardar",
+ "neverSaveBoolean": "Nunca desencadena acciones de código al guardar. Este valor quedará en desuso en favor de \"never\".",
+ "notebook.codeActionsOnSave": "Ejecute una serie de acciones de código para un cuaderno al guardar. Se deben especificar acciones de código y el editor no debe cerrarse. Cuando {0} se establece en \"afterDelay\", las acciones de código solo se ejecutarán cuando el archivo se guarde explícitamente. Ejemplo: `\"notebook.source.organizeImports\": \"explicit\"`"
},
"vs/workbench/contrib/codeEditor/browser/accessibility/accessibility": {
- "ShowAccessibilityHelpAction": "Mostrar ayuda de accesibilidad",
- "auto_off": "El editor está configurado para detectar automáticamente cuándo está conectado un lector de pantalla, lo que no es el caso en este momento.",
- "auto_on": "El editor ha detectado automáticamente un lector de pantalla conectado.",
- "auto_unknown": "El editor está configurado para usar API de plataforma para detectar cuándo está conectado un lector de pantalla, pero el entorno actual de tiempo de ejecución no admite esta característica.",
- "changeConfigToOnMac": "Para configurar el editor de forma que esté optimizado de permanentemente para su uso con un lector de pantalla, presione ahora Comando+E.",
- "changeConfigToOnWinLinux": "Para configurar el editor de forma que esté optimizado permanentemente para su uso con un lector de pantalla, presione ahora Control+E.",
- "configuredOff": "El editor está configurado de forma que no esté nunca optimizado para su uso con un lector de pantalla.",
- "configuredOn": "El editor está configurado para optimizarse permanentemente para su uso con un lector de pantalla; para cambiar este comportamiento, edite el valor de configuración \"editor.accessibilitySupport\".",
- "emergencyConfOn": "Se cambiará ahora el valor de configuración \"editor.accessibilitySupport\" a \"activado\".",
- "introMsg": "Gracias por probar las opciones de accesibilidad de VS Code.",
- "openDocMac": "Presione Comando+H ahora para abrir una ventana de explorador con más información de VS Code relacionada con la accesibilidad.",
- "openDocWinLinux": "Presione Control+H ahora para abrir una ventana de explorador con más información de VS Code relacionada con la accesibilidad.",
- "openingDocs": "Se abrirá ahora la página de documentación de accesibilidad de VS Code.",
- "outroMsg": "Para descartar esta información sobre herramientas y volver al editor, presione Esc o Mayús+Escape.",
- "status": "Estado:",
- "tabFocusModeOffMsg": "Al presionar TAB en el editor actual, se insertará el carácter de tabulación. Presione {0} para activar o desactivar este comportamiento.",
- "tabFocusModeOffMsgNoKb": "Al presionar TAB en el editor actual, se insertará el carácter de tabulación. El comando {0} no se puede desencadenar actualmente mediante un enlace de teclado.",
- "tabFocusModeOnMsg": "Al presionar TAB en el editor actual, el foco se mueve al siguiente elemento activable. Presione {0} para activar o desactivar este comportamiento.",
- "tabFocusModeOnMsgNoKb": "Al presionar TAB en el editor actual, el foco se mueve al siguiente elemento activable. El comando {0} no se puede desencadenar actualmente mediante un enlace de teclado."
+ "toggleScreenReaderMode": "Alternar modo de accesibilidad del lector de pantalla",
+ "toggleScreenReaderModeDescription": "Alterna un modo optimizado para su uso con lectores de pantalla, dispositivos braille y otras tecnologías de asistencia."
+ },
+ "vs/workbench/contrib/codeEditor/browser/dictation/editorDictation": {
+ "startDictation": "Iniciar dictado en el editor",
+ "stopDictation": "Detener dictado en el editor",
+ "stopDictationShort1": "Detener dictado ({0})",
+ "stopDictationShort2": "Detener dictado",
+ "voiceCategory": "Voz"
+ },
+ "vs/workbench/contrib/codeEditor/browser/diffEditorAccessibilityHelp": {
+ "msg1": "Usted está en un editor de diferencias.",
+ "msg2": "Vea la diferencia siguiente{0} o anterior{1} en el modo de revisión de diferencias que está optimizado para lectores de pantalla.",
+ "msg3": "Ejecute el comando Editor de diferencias: Cambiar lado{0} para alternar entre los editores originales y modificados.",
+ "msg4": "Para controlar qué señales de accesibilidad se deben reproducir, se pueden configurar las siguientes opciones: {0}.",
+ "msg5": "La configuración accessibility.verbosity.diffEditorActive controla si se realiza un anuncio del editor de diferencias cuando se convierte en el editor activo."
},
"vs/workbench/contrib/codeEditor/browser/diffEditorHelper": {
"hintTimeout": "El algoritmo de comparación se detuvo pronto (después de {0} ms).",
"hintWhitespace": "Mostrar diferencias de espacios en blanco",
"removeTimeout": "Quitar límite"
},
+ "vs/workbench/contrib/codeEditor/browser/emptyTextEditorHint/emptyTextEditorHint": {
+ "defaultHintAriaLabelWithInlineChat": "Ejecute {0} para formular una pregunta, ejecute {1} para seleccionar un lenguaje para comenzar. Comience a escribir para descartar.",
+ "defaultHintAriaLabelWithoutInlineChat": "Ejecute {0} para seleccionar un lenguaje y comenzar. Comience a escribir para descartar.",
+ "disableEditorEmptyHint": "Deshabilitar sugerencia de editor vacío",
+ "disableHint": " Alternar {0} en la configuración para deshabilitar esta sugerencia.",
+ "emptyTextEditorHintWithInlineChat": "[[Generar código]] ({0}) o [[seleccionar un lenguaje]] ({1}). Comience a escribir para descartar o [[no mostrar]] esto de nuevo.",
+ "emptyTextEditorHintWithoutInlineChat": "[[Seleccionar un lenguaje]] ({0}) para comenzar. Comience a escribir para descartar o [[no mostrar]] esto de nuevo."
+ },
"vs/workbench/contrib/codeEditor/browser/find/simpleFindWidget": {
"ariaSearchNoInput": "Escribir entrada de búsqueda",
"ariaSearchNoResult": "{0} encontrado para '{1}'",
@@ -4399,7 +7797,8 @@
"label.find": "Buscar",
"label.nextMatchButton": "Coincidencia siguiente",
"label.previousMatchButton": "Coincidencia anterior",
- "placeholder.find": "Buscar (⇅ para el historial)"
+ "placeholder.find": "Buscar",
+ "simpleFindWidget.sashBorder": "Color de borde del borde de la banda."
},
"vs/workbench/contrib/codeEditor/browser/inspectEditorTokens/inspectEditorTokens": {
"inspectEditorTokens": "Desarrollador: Inspeccionar los tokens y ámbitos del editor",
@@ -4409,7 +7808,76 @@
"workbench.action.inspectKeyMap": "Inspeccionar las asignaciones de clave",
"workbench.action.inspectKeyMapJSON": "Inspeccionar asignaciones de claves (JSON)"
},
- "vs/workbench/contrib/codeEditor/browser/languageConfigurationExtensionPoint": {
+ "vs/workbench/contrib/codeEditor/browser/largeFileOptimizations": {
+ "largeFile": "{0}: la tokenización, el ajuste, el plegado, el CodeLens, el resaltado de palabras y el desplazamiento con inmovilización se han desactivado para este archivo grande con el fin de reducir el uso de memoria y evitar la inmovilización o bloqueo.",
+ "removeOptimizations": "Forzar la activación de características",
+ "reopenFilePrompt": "Vuelva a abrir el archivo para que esta configuración surta efecto."
+ },
+ "vs/workbench/contrib/codeEditor/browser/outline/documentSymbolsOutline": {
+ "document": "Símbolos del documento"
+ },
+ "vs/workbench/contrib/codeEditor/browser/outline/documentSymbolsTree": {
+ "1.problem": "1 problema en este elemento",
+ "N.problem": "{0} problemas en este elemento",
+ "deep.problem": "Contiene elementos con problemas",
+ "title.template": "{0} ({1})"
+ },
+ "vs/workbench/contrib/codeEditor/browser/quickaccess/gotoLineQuickAccess": {
+ "gotoLine": "Vaya a Línea/Columna...",
+ "gotoLineQuickAccess": "Ir a Línea/Columna",
+ "gotoLineQuickAccessPlaceholder": "Escriba el número de línea y la columna opcional a la que ir (por ejemplo, 42:5 para la línea 42, columna 5). Escriba :: para ir a un desplazamiento de caracteres (por ejemplo, ::1024 para el carácter 1024 desde el inicio del archivo). Use valores negativos para desplazarse hacia atrás.",
+ "gotoOffset": "Ir al desplazamiento...",
+ "gotoOffsetQuickAccess": "Ir al desplazamiento"
+ },
+ "vs/workbench/contrib/codeEditor/browser/quickaccess/gotoSymbolQuickAccess": {
+ "empty": "No hay ninguna entrada coincidente.",
+ "gotoSymbol": "Ir al símbolo en el editor...",
+ "gotoSymbolByCategoryQuickAccess": "Ir a símbolo en el editor por categoría",
+ "gotoSymbolQuickAccess": "Ir a símbolo en el editor",
+ "gotoSymbolQuickAccessPlaceholder": "Escriba el nombre de un símbolo al que ir.",
+ "miGotoSymbolInEditor": "Ir al &&símbolo en el editor..."
+ },
+ "vs/workbench/contrib/codeEditor/browser/saveParticipants": {
+ "codeAction.apply": "Aplicando la acción de código \"{0}\".",
+ "codeaction": "Correcciones rápidas",
+ "codeaction.get2": "Obteniendo acciones de código de {0} ([configure]({1})).",
+ "formatting2": "Se está ejecutando el formateador \"{0}\" ([configure]({1}))."
+ },
+ "vs/workbench/contrib/codeEditor/browser/toggleColumnSelection": {
+ "miColumnSelection": "Modo de &&selección de columna",
+ "toggleColumnSelection": "Alternar el modo de selección de columnas"
+ },
+ "vs/workbench/contrib/codeEditor/browser/toggleMinimap": {
+ "miMinimap": "&&Minimapa",
+ "toggleMinimap": "Alternar minimapa"
+ },
+ "vs/workbench/contrib/codeEditor/browser/toggleMultiCursorModifier": {
+ "miMultiCursorAlt": "Cambiar a Alt+Clic para cursor múltiple",
+ "miMultiCursorCmd": "Cambiar a Cmd+Clic para cursor múltiple",
+ "miMultiCursorCtrl": "Cambiar a Ctrl+Clic para cursor múltiple",
+ "toggleLocation": "Alternar modificador multicursor"
+ },
+ "vs/workbench/contrib/codeEditor/browser/toggleOvertype": {
+ "mitoggleOvertypeInsertMode": "&&Alternar el modo de sobrescritura o inserción",
+ "toggleOvertypeInsertMode": "Alternar el modo de sobrescritura o inserción",
+ "toggleOvertypeMode.description": "Alternar entre el modo de sobrescritura e inserción"
+ },
+ "vs/workbench/contrib/codeEditor/browser/toggleRenderControlCharacter": {
+ "miToggleRenderControlCharacters": "Representar &&caracteres de control",
+ "toggleRenderControlCharacters": "Alternar caracteres de control"
+ },
+ "vs/workbench/contrib/codeEditor/browser/toggleRenderWhitespace": {
+ "miToggleRenderWhitespace": "&&Representar espacio en blanco",
+ "toggleRenderWhitespace": "Alternar representación de espacio en blanco"
+ },
+ "vs/workbench/contrib/codeEditor/browser/toggleWordWrap": {
+ "editorWordWrap": "Indica si el editor está usando el ajuste automático de línea.",
+ "miToggleWordWrap": "&&Ajuste de palabra",
+ "toggle.wordwrap": "Ver: Alternar ajuste de línea",
+ "unwrapMinified": "Deshabilitar ajuste para este archivo",
+ "wrapMinified": "Habilitar ajuste para este archivo"
+ },
+ "vs/workbench/contrib/codeEditor/common/languageConfigurationExtensionPoint": {
"formatError": "{0}: formato no válido, se esperaba un objeto JSON.",
"parseErrors": "Errores al analizar {0}: {1}",
"schema.autoCloseBefore": "Define qué caracteres deben aparecer después del cursor para que se aplique el cierre automático de corchetes o comillas al usar la configuración de autocierre \"languageDefined\". Suele ser el juego de caracteres que no pueden iniciar una expresión.",
@@ -4418,9 +7886,9 @@
"schema.blockComment.begin": "Secuencia de caracteres que inicia un comentario de bloque.",
"schema.blockComment.end": "Secuencia de caracteres que finaliza un comentario de bloque.",
"schema.blockComments": "Define cómo se marcan los comentarios de bloque.",
- "schema.brackets": "Define los corchetes que aumentan o reducen la sangría.",
+ "schema.brackets": "Define los símbolos de corchetes que aumentan o disminuyen la sangría. Cuando la coloración de pares de corchetes está activada y {0} no está definida, también define los pares de corchetes que se colorean según su nivel de anidamiento.",
"schema.closeBracket": "Secuencia de cadena o corchete de cierre.",
- "schema.colorizedBracketPairs": "Define los pares de corchetes coloreados por su nivel de anidamiento si está habilitada la coloración de par de corchetes.",
+ "schema.colorizedBracketPairs": "Define los pares de corchetes que se colorean según su nivel de anidamiento si la coloración de pares de corchetes está activada. Cualquier paréntesis incluido aquí que no esté incluido en {0} se incluirá automáticamente en {0}.",
"schema.comments": "Define los símbolos de comentario",
"schema.folding": "Configuración del plegamiento de idioma.",
"schema.folding.markers": "Marcadores de plegado específicos de un idioma, como \"'#region\" o \"#endregion\". Se probarán los valores regex en relación con el contenido de todas las líneas, y deben estar diseñados de manera eficiente.",
@@ -4444,7 +7912,9 @@
"schema.indentationRules.unIndentedLinePattern.errorMessage": "Debe coincidir con el patrón `/^([gimuy]+)$/`.",
"schema.indentationRules.unIndentedLinePattern.flags": "Las marcas de RegExp para unIndentedLinePattern.",
"schema.indentationRules.unIndentedLinePattern.pattern": "El patrón de RegExp para unIndentedLinePattern.",
- "schema.lineComment": "Secuencia de caracteres que inicia un comentario de línea.",
+ "schema.lineComment.comment": "Secuencia de caracteres que inicia un comentario de línea.",
+ "schema.lineComment.noIndent": "Indica si no se debe aplicar sangría al token de comentario y colocarlo en la primera columna. El valor predeterminado es falso.",
+ "schema.lineComment.object": "Configuración de comentarios de línea.",
"schema.onEnterRules": "Reglas del lenguaje que se van a evaluar al presionar Entrar.",
"schema.onEnterRules.action": "Acción que se va a ejecutar.",
"schema.onEnterRules.action.appendText": "Describe el texto que se va a anexar después de la línea nueva y después de la sangría.",
@@ -4473,113 +7943,36 @@
"schema.wordPattern.flags.errorMessage": "Debe coincidir con el patrón `/^([gimuy]+)$/`.",
"schema.wordPattern.pattern": "El patrón de expresión regular utilizado para localizar palabras."
},
- "vs/workbench/contrib/codeEditor/browser/largeFileOptimizations": {
- "largeFile": "{0}: la tokenización, ajuste y plegado han sido desactivadas para este archivo de gran tamaño con el fin de reducir el uso de memoria y evitar su cierre o bloqueo.",
- "removeOptimizations": "Forzar la activación de características",
- "reopenFilePrompt": "Vuelva a abrir el archivo para que esta configuración surta efecto."
+ "vs/workbench/contrib/codeEditor/electron-browser/selectionClipboard": {
+ "actions.pasteSelectionClipboard": "Pegar Portapapeles de selección"
},
- "vs/workbench/contrib/codeEditor/browser/outline/documentSymbolsOutline": {
- "document": "Símbolos del documento"
+ "vs/workbench/contrib/codeEditor/electron-browser/startDebugTextMate": {
+ "startDebugTextMate": "Iniciar el registro de gramática de sintaxis de TextMate"
},
- "vs/workbench/contrib/codeEditor/browser/outline/documentSymbolsTree": {
- "1.problem": "1 problema en este elemento",
- "Array": "matriz",
- "Boolean": "booleano",
- "Class": "clase",
- "Constant": "constante",
- "Constructor": "constructor",
- "Enum": "enumeración",
- "EnumMember": "miembro de la enumeración",
- "Event": "evento",
- "Field": "campo",
- "File": "archivo",
- "Function": "función",
- "Interface": "interfaz",
- "Key": "clave",
- "Method": "método",
- "Module": "módulo",
- "N.problem": "{0} problemas en este elemento",
- "Namespace": "espacio de nombres",
- "Null": "NULL",
- "Number": "número",
- "Object": "objeto",
- "Operator": "operador",
- "Package": "paquete",
- "Property": "propiedad",
- "String": "cadena",
- "Struct": "estructura",
- "TypeParameter": "parámetro de tipo",
- "Variable": "variable",
- "deep.problem": "Contiene elementos con problemas",
- "title.template": "{0} ({1})"
- },
- "vs/workbench/contrib/codeEditor/browser/quickaccess/gotoLineQuickAccess": {
- "gotoLine": "Vaya a Línea/Columna...",
- "gotoLineQuickAccess": "Ir a Línea/Columna",
- "gotoLineQuickAccessPlaceholder": "Escriba el número de línea y la columna opcional a la que ir (por ejemplo, 42:5 para la línea 42 y la columna 5)."
- },
- "vs/workbench/contrib/codeEditor/browser/quickaccess/gotoSymbolQuickAccess": {
- "empty": "No hay ninguna entrada coincidente.",
- "gotoSymbol": "Ir al símbolo en el editor...",
- "gotoSymbolByCategoryQuickAccess": "Ir a símbolo en el editor por categoría",
- "gotoSymbolQuickAccess": "Ir a símbolo en el editor",
- "gotoSymbolQuickAccessPlaceholder": "Escriba el nombre de un símbolo al que ir.",
- "miGotoSymbolInEditor": "Ir al &&símbolo en el editor..."
- },
- "vs/workbench/contrib/codeEditor/browser/saveParticipants": {
- "codeAction.apply": "Aplicando la acción de código \"{0}\".",
- "codeaction": "Correcciones rápidas",
- "codeaction.get2": "Obteniendo acciones de código de \"{0}\" ([configure] ({1})).",
- "formatting2": "Se está ejecutando el formateador \"{0}\" ([configure] ({1}))."
- },
- "vs/workbench/contrib/codeEditor/browser/toggleColumnSelection": {
- "miColumnSelection": "Modo de &&selección de columna",
- "toggleColumnSelection": "Alternar el modo de selección de columnas"
- },
- "vs/workbench/contrib/codeEditor/browser/toggleMinimap": {
- "miMinimap": "&&Minimap",
- "toggleMinimap": "Alternar minimapa"
- },
- "vs/workbench/contrib/codeEditor/browser/toggleMultiCursorModifier": {
- "miMultiCursorAlt": "Cambiar a Alt+Clic para cursor múltiple",
- "miMultiCursorCmd": "Cambiar a Cmd+Clic para cursor múltiple",
- "miMultiCursorCtrl": "Cambiar a Ctrl+Clic para cursor múltiple",
- "toggleLocation": "Alternar modificador multicursor"
- },
- "vs/workbench/contrib/codeEditor/browser/toggleRenderControlCharacter": {
- "miToggleRenderControlCharacters": "Representar &&caracteres de control",
- "toggleRenderControlCharacters": "Alternar caracteres de control"
- },
- "vs/workbench/contrib/codeEditor/browser/toggleRenderWhitespace": {
- "miToggleRenderWhitespace": "&&Representar espacio en blanco",
- "toggleRenderWhitespace": "Alternar representación de espacio en blanco"
- },
- "vs/workbench/contrib/codeEditor/browser/toggleWordWrap": {
- "editorWordWrap": "Indica si el editor está usando el ajuste automático de línea.",
- "miToggleWordWrap": "&&Ajuste de palabra",
- "toggle.wordwrap": "Ver: Alternar ajuste de línea",
- "unwrapMinified": "Deshabilitar ajuste para este archivo",
- "wrapMinified": "Habilitar ajuste para este archivo"
- },
- "vs/workbench/contrib/codeEditor/browser/untitledTextEditorHint": {
- "message": "[[Seleccione un idioma]] o [[abra un editor diferente]] para empezar.\r\nEmpiece a escribir para descartar o [[no mostrar]] esto de nuevo."
- },
- "vs/workbench/contrib/codeEditor/electron-sandbox/selectionClipboard": {
- "actions.pasteSelectionClipboard": "Pegar Portapapeles de selección"
- },
- "vs/workbench/contrib/codeEditor/electron-sandbox/startDebugTextMate": {
- "startDebugTextMate": "Iniciar el registro gramatical de la sintaxis Mate de texto"
+ "vs/workbench/contrib/commands/common/commands.contribution": {
+ "runCommands": "Ejecutar comandos",
+ "runCommands.commands": "Comandos para ejecutar",
+ "runCommands.description": "Ejecutar varios comandos",
+ "runCommands.invalidArgs": "'runCommands' ha recibido un argumento con un tipo incorrecto. Revise el argumento pasado al comando.",
+ "runCommands.noCommandsToRun": "'runCommands' no ha recibido comandos para ejecutar. ¿Ha olvidado pasar comandos en el argumento 'runCommands'?"
},
"vs/workbench/contrib/comments/browser/commentColors": {
+ "commentReplyInputBackground": "Color de fondo del cuadro de entrada de respuesta del comentario.",
"commentThreadActiveRangeBackground": "Color de fondo para el rango de comentarios seleccionado o al mantener el puntero.",
- "commentThreadActiveRangeBorder": "Color del borde del rango de comentarios seleccionado o al mantener el puntero.",
"commentThreadRangeBackground": "Color de fondo para intervalos de comentarios.",
- "commentThreadRangeBorder": "Color del borde de los intervalos de comentarios.",
"resolvedCommentBorder": "Color de bordes y flecha para los comentarios resueltos.",
- "unresolvedCommentBorder": "Color de bordes y flecha para los comentarios sin resolver."
+ "resolvedCommentIcon": "Color del icono para los comentarios resueltos.",
+ "unresolvedCommentBorder": "Color de bordes y flecha para los comentarios sin resolver.",
+ "unresolvedCommentIcon": "Color del icono para los comentarios sin resolver."
},
"vs/workbench/contrib/comments/browser/commentGlyphWidget": {
- "editorGutterCommentRangeForeground": "Color de decoración del margen del editor para intervalos de comentarios."
+ "editorGutterCommentDraftGlyphForeground": "Color de decoración del medianil del editor para glifos de comentarios para hilos de comentarios con borradores de comentarios.",
+ "editorGutterCommentGlyphForeground": "Color de decoración del margen del editor para comentar glifos.",
+ "editorGutterCommentRangeForeground": "Color de decoración del medianil del editor para los intervalos de comentarios. Este color debe ser opaco.",
+ "editorGutterCommentUnresolvedGlyphForeground": "Color de decoración del medianil del editor para glifos de comentarios para hilos de comentarios sin resolver.",
+ "editorOverviewRuler.commentDraftForeground": "Color de decoración de regla de información general del editor para los hilos de comentarios con borradores de comentarios. Este color debería ser opaco.",
+ "editorOverviewRuler.commentForeground": "Color de decoración de regla de información general del editor para los comentarios resueltos. Este color debe ser opaco.",
+ "editorOverviewRuler.commentUnresolvedForeground": "Color de decoración de regla de información general del editor para los comentarios sin resolver. Este color debe ser opaco."
},
"vs/workbench/contrib/comments/browser/commentNode": {
"commentAddReactionDefaultError": "Error al eliminar la reacción del comentario",
@@ -4594,54 +7987,157 @@
"newComment": "Escriba un nuevo comentario",
"reply": "Responder..."
},
- "vs/workbench/contrib/comments/browser/commentThreadBody": {
- "commentThreadAria": "Hilo de comentarios con {0} comentarios. {1}.",
- "commentThreadAria.withRange": "Hilo de comentarios con comentarios {0} en las líneas {1} a través de {2}. {3}."
- },
- "vs/workbench/contrib/comments/browser/commentThreadHeader": {
- "collapseIcon": "Icono para contraer un comentario de revisión.",
- "label.collapse": "Contraer",
- "startThread": "Iniciar discusión"
- },
"vs/workbench/contrib/comments/browser/comments.contribution": {
+ "collapseAll": "Contraer todo",
+ "collapseOnResolve": "Controla si el hilo de comentarios debe contraerse cuando se resuelve.",
+ "comments.maxHeight": "Controla si el widget de comentarios se desplaza o se expande.",
"comments.openPanel.deprecated": "Esta configuración está en desuso en favor de `comments.openView`.",
"comments.openView": "Controla cuándo debe abrirse la vista de comentarios.",
"comments.openView.file": "La vista de comentarios se abrirá cuando un archivo con comentarios esté activo.",
"comments.openView.firstFile": "Si la vista de comentarios aún no se ha abierto durante esta sesión, se abrirá por primera vez durante una sesión en la que un archivo con comentarios está activo.",
+ "comments.openView.firstFileUnresolved": "Si la vista de comentarios aún no se ha abierto durante esta sesión y el comentario no está resuelto, se abrirá por primera vez durante una sesión en la que un archivo con comentarios esté activo.",
"comments.openView.never": "La vista de comentarios nunca se abrirá.",
+ "comments.visible": "Controla la visibilidad de la barra de comentarios y los hilos de comentarios en los editores que tienen rangos de comentarios y comentarios. Los comentarios siguen siendo accesibles a través de la vista Comentarios y harán que los comentarios se activen de la misma manera que se ejecuta el comando \"Comentarios: Alternar comentarios del editor\" para alternar los comentarios.",
"commentsConfigurationTitle": "Comentarios",
+ "confirmOnCollapse": "Controla si se muestra un cuadro de diálogo de confirmación al contraer un hilo de comentarios.",
+ "confirmOnCollapse.never": "No mostrar nunca un cuadro de diálogo de confirmación al contraer un hilo de comentarios.",
+ "confirmOnCollapse.whenHasUnsubmittedComments": "Muestra un cuadro de diálogo de confirmación al contraer un hilo de comentarios con comentarios no enviados.",
+ "expandAll": "Expandir todo",
"openComments": "Controles cuándo se debe abrir el panel de comentarios.",
+ "reply": "Responder",
+ "totalUnresolvedComments": "{0} Comentarios sin resolver",
"useRelativeTime": "Determina si se usará la hora relativa en las marcas de tiempo de comentarios (por ejemplo, \"hace 1 día\")."
},
+ "vs/workbench/contrib/comments/browser/commentsAccessibility": {
+ "addCommentNoKb": "- Agregar comentario en la selección actual{0}.",
+ "commentCommands": "Algunos comandos de comentario útiles incluyen:",
+ "escape": "- Descartar comentario (Escape)",
+ "intro": "El editor contiene rangos que admiten comentarios. Algunos comandos útiles incluyen:",
+ "introWidget": "Este widget contiene un área de introducción de texto para la composición de nuevos comentarios y acciones a las que se pueden agregar pestañas una vez habilitado el modo de enfoque de movimiento de pestañas con el comando Alternar tecla de tabulación para mover el foco{0}.",
+ "next": "- Ir al siguiente intervalo de comentarios{0}.",
+ "nextCommentThreadKb": "- Ir al siguiente subproceso de comentario{0}.",
+ "nextCommentedRangeKb": "- Ir al siguiente intervalo comentado{0}.",
+ "previous": "- Ir al intervalo de comentarios anterior{0}.",
+ "previousCommentThreadKb": "- Ir al subproceso de comentario anterior{0}.",
+ "previousCommentedRangeKb": "- Ir al rango comentado anterior{0}.",
+ "submitComment": "- Enviar comentario{0}."
+ },
+ "vs/workbench/contrib/comments/browser/commentsController": {
+ "commentRange": "Línea {0}",
+ "commentRangeStart": "Líneas {0} a {1}",
+ "comments.addCommand.error": "El cursor debe estar dentro de un rango de comentarios para agregar un comentario.",
+ "comments.addFileCommentCommand.error": "No se permiten comentarios de archivo en este archivo.",
+ "hasCommentRanges": "El editor tiene rangos de comentarios.",
+ "hasCommentRangesKb": "El editor tiene rangos de comentarios. Ejecute el comando Abrir ayuda de accesibilidad ({0}), para obtener más información.",
+ "hasCommentRangesNoKb": "El editor tiene intervalos de comentarios. Ejecute el comando Abrir ayuda de accesibilidad, que actualmente no se puede desencadenar mediante un enlace de teclado, para obtener más información.",
+ "pickCommentService": "Seleccione Proveedor de Comentario"
+ },
"vs/workbench/contrib/comments/browser/commentsEditorContribution": {
+ "comments.NextCommentedRange": "Ir al siguiente rango comentado",
"comments.addCommand": "Agregar comentario en la selección actual",
+ "comments.collapseAll": "Contraer todos los comentarios",
+ "comments.expandAll": "Expandir todos los comentarios",
+ "comments.expandUnresolved": "Expandir comentarios sin resolver",
+ "comments.focusCommand.error": "El cursor debe estar en una línea con un comentario para enfocar el comentario",
+ "comments.focusCommentOnCurrentLine": "Comentario de foco en la línea actual",
+ "comments.nextCommentingRange": "Ir al rango de comentarios siguiente",
+ "comments.previousCommentedRange": "Ir al rango comentado anterior",
+ "comments.previousCommentingRange": "Ir al rango de comentarios anterior",
"comments.toggleCommenting": "Alternar comentarios del editor",
- "hasCommentingProvider": "Si el área de trabajo abierta tiene comentarios o intervalos de comentarios.",
- "hasCommentingRange": "Si la posición en el cursor activo tiene un intervalo de comentarios",
- "nextCommentThreadAction": "Ir al hilo de comentarios siguiente ",
- "pickCommentService": "Seleccione Proveedor de Comentario",
- "previousCommentThreadAction": "Ir al hilo de comentarios anterior"
+ "commentsCategory": "Comentarios"
+ },
+ "vs/workbench/contrib/comments/browser/commentsModel": {
+ "noComments": "Aún no hay ningún comentario en esta área de trabajo."
},
"vs/workbench/contrib/comments/browser/commentsTreeViewer": {
"commentCount": "1 comentario",
"commentLine": "[Lín. {0}]",
"commentRange": "[Lín. {0}-{1}]",
- "commentsCount": "{0} comentarios",
+ "comments.view.title": "Comentarios",
+ "commentsCountReplies": "{0} respuestas",
+ "commentsCountReply": "1 respuesta",
"image": "Imagen",
"imageWithLabel": "Imagen: {0}",
- "lastReplyFrom": "Última respuesta de {0}"
+ "lastReplyFrom": "Última respuesta de {0}",
+ "outdated": "Obsoleto"
},
"vs/workbench/contrib/comments/browser/commentsView": {
- "collapseAll": "Contraer todo",
- "resourceWithCommentLabel": "Comentario de ${0} en la línea {1}, columna {2} en {3}, origen: {4}",
+ "accessibleViewHint": "\r\nInspeccione esto en la vista accesible ({0}).",
+ "acessibleViewHintNoKbOpen": "\r\nInspeccione esto en la vista accesible mediante el comando Abrir vista accesible, que actualmente no se puede desencadenar mediante el enlace de teclado.",
+ "comments.filter.ariaLabel": "Filtrar comentarios",
+ "comments.filter.placeholder": "Filtro (por ejemplo, texto, autor)",
+ "fileCommentLabel": "en {0}",
+ "multiLineCommentLabel": "de la línea {0} a la línea {1} en {2}",
+ "oneLineCommentLabel": "en la línea {0} columna {1} en {2}",
+ "replyCount": " {0} respuestas,",
+ "resourceWithCommentLabel": "{0}: {1}\r\n{2}\r\n{3}\r\n{4}",
+ "resourceWithCommentLabelOutdated": "Obsoleto de {0}: {1}\r\n{2}\r\n{3}\r\n{4}",
"resourceWithCommentThreadsLabel": "Comentarios en {0}, ruta de acceso completa {1}",
- "rootCommentsLabel": "Comentarios para el área de trabajo actual"
+ "resourceWithRepliesLabel": "{0} {1}",
+ "rootCommentsLabel": "Comentarios para el área de trabajo actual",
+ "showing filtered results": "Se muestran {0} de {1}"
+ },
+ "vs/workbench/contrib/comments/browser/commentsViewActions": {
+ "comment sorts": "Ordenar por",
+ "comments": "Comentarios",
+ "commentsClearFilterText": "Borrar texto de filtro",
+ "focusCommentsFilter": "Filtro Enfocar comentarios",
+ "focusCommentsList": "Vista Enfocar comentarios",
+ "resolved": "Mostrar resueltos",
+ "sorting by position in file": "Posición en el campo",
+ "sorting by updated at": "Hora de actualización",
+ "toggle resolved": "Mostrar resueltos",
+ "toggle sorting by resource": "Posición en el campo",
+ "toggle sorting by updated at": "Hora de actualización",
+ "toggle unresolved": "Mostrar sin resolver",
+ "unresolved": "Mostrar sin resolver"
+ },
+ "vs/workbench/contrib/comments/browser/commentThreadBody": {
+ "commentThreadAria": "Hilo de comentarios con {0} comentarios. {1}.",
+ "commentThreadAria.document": "Hilo de comentarios con {0} comentarios en todo el documento. {1}.",
+ "commentThreadAria.withRange": "Hilo de comentarios con comentarios {0} en las líneas {1} a través de {2}. {3}."
+ },
+ "vs/workbench/contrib/comments/browser/commentThreadHeader": {
+ "collapseIcon": "Icono para contraer un comentario de revisión.",
+ "label.collapse": "Contraer",
+ "startThread": "Iniciar discusión"
+ },
+ "vs/workbench/contrib/comments/browser/commentThreadWidget": {
+ "commentLabel": "Comentario",
+ "commentLabelWithKeybinding": "{0}, use ({1}) para la ayuda de accesibilidad del editor",
+ "commentLabelWithKeybindingNoKeybinding": "{0}, ejecute el comando Abrir ayuda de accesibilidad, que actualmente no se puede desencadenar mediante un enlace de teclado."
+ },
+ "vs/workbench/contrib/comments/browser/commentThreadZoneWidget": {
+ "confirmCollapse": "Al contraer este hilo de comentarios, se descartarán los comentarios no enviados. ¿Está seguro de que desea descartar estos comentarios?",
+ "discard": "Descartar",
+ "neverAskAgain": "No volver a preguntarme"
},
"vs/workbench/contrib/comments/browser/reactionsAction": {
+ "comment.reactionLabelMany": "{0}{1} reacciones con {2}",
+ "comment.reactionLabelNone": "{0}{1} reacción",
+ "comment.reactionLabelOne": "{0}1 reacción con {1}",
+ "comment.reactionLessThanTen": "{0}{1} reaccionó con {2}",
+ "comment.reactionMoreThanTen": "{0}{1} y {2} más reaccionaron con {3}",
+ "comment.toggleableReaction": "Alternar reacción, ",
"pickReactions": "Recoger las reacciones..."
},
- "vs/workbench/contrib/comments/common/commentModel": {
- "noComments": "Aún no hay ningún comentario en esta área de trabajo."
+ "vs/workbench/contrib/comments/common/commentContextKeys": {
+ "comment": "Valor de contexto del comentario",
+ "commentController": "Id. del controlador de comentarios asociado a un hilo de comentarios",
+ "commentFocused": "Establecer cuándo se pone en foco el comentario",
+ "commentIsEmpty": "Se establece cuando el comentario no tiene ninguna entrada",
+ "commentThread": "Valor de contexto del hilo de comentarios",
+ "commentThreadIsEmpty": "Se establece cuando el hilo de comentarios no tiene comentarios",
+ "commentingEnabled": "Si la funcionalidad de comentarios está habilitada",
+ "editorHasCommentingRange": "Si el editor activo tiene un rango de comentarios",
+ "hasComment": "Si la posición en el cursor activo tiene un comentario",
+ "hasCommentingProvider": "Si el área de trabajo abierta tiene comentarios o intervalos de comentarios.",
+ "hasCommentingRange": "Si la posición en el cursor activo tiene un intervalo de comentarios"
+ },
+ "vs/workbench/contrib/customEditor/browser/customEditorInput": {
+ "editorCannotMove": "No se puede mover ''{0}: el editor contiene cambios que solo se pueden guardar en su ventana actual.",
+ "editorUnsupportedInWindow": "No se puede abrir el editor en esta ventana, contiene modificaciones que solo se pueden guardar en la ventana original.",
+ "reopenInOriginalWindow": "Abrir en la ventana original"
},
"vs/workbench/contrib/customEditor/common/contributedCustomEditors": {
"builtinProviderDisplayName": "Integrado"
@@ -4649,6 +8145,9 @@
"vs/workbench/contrib/customEditor/common/customEditor": {
"context.customEditor": "El valor viewType del editor personalizado activo."
},
+ "vs/workbench/contrib/customEditor/common/customTextEditorModel": {
+ "vetoExtHostRestart": "Aún hay abierto un editor de texto proporcionado por la extensión para '{0}' que, de lo contrario, se cerraría."
+ },
"vs/workbench/contrib/customEditor/common/extensionPoint": {
"contributes.customEditors": "Editores personalizados aportados.",
"contributes.displayName": "Nombre en lenguaje natural del editor personalizado. Se muestra a los usuarios cuando se selecciona el editor que se va a usar.",
@@ -4657,7 +8156,11 @@
"contributes.priority.option": "El editor no se usa automáticamente cuando el usuario abre un recurso, pero un usuario puede cambiar al editor mediante el comando \"Reopen With\".",
"contributes.selector": "Conjunto de patrones globales para los que está habilitado el editor personalizado.",
"contributes.selector.filenamePattern": "Patrones globales para los que está habilitado el editor personalizado.",
- "contributes.viewType": "Identificador para el editor personalizado. Debe ser único en todos los editores personalizados, por lo que se recomienda incluir el id. de extensión como parte de \"viewType\". \"viewType\" se utiliza al registrar editores personalizados con \"vscode. registerCustomEditorProvider\" y en \"onCustomEditor:${id}\" [evento de activación](https://code.visualstudio.com/api/references/activation-events)."
+ "contributes.viewType": "Identificador para el editor personalizado. Debe ser único en todos los editores personalizados, por lo que se recomienda incluir el id. de extensión como parte de \"viewType\". \"viewType\" se utiliza al registrar editores personalizados con \"vscode. registerCustomEditorProvider\" y en \"onCustomEditor:${id}\" [evento de activación](https://code.visualstudio.com/api/references/activation-events).",
+ "customEditors": "Editores personalizados",
+ "customEditors filenamePattern": "Patrón de nombre de archivo",
+ "customEditors priority": "Prioridad",
+ "customEditors view type": "Tipo de vista"
},
"vs/workbench/contrib/debug/browser/baseDebugView": {
"debug.lazyButton.tooltip": "Haga clic para expandir"
@@ -4666,17 +8169,18 @@
"addBreakpoint": "Agregar punto de interrupción",
"addConditionalBreakpoint": "Agregar punto de interrupción condicional...",
"addLogPoint": "Agregar punto de registro",
+ "addTriggeredBreakpoint": "Agregar punto de interrupción desencadenado...",
"breakpoint": "Punto de interrupción",
"breakpointHasConditionDisabled": "Este {0} tiene {1} que se perderá al quitarse. Considere habilitar {0} en su lugar.",
"breakpointHasConditionEnabled": "Este {0} tiene una {1} que se perderá al quitarla. Considere la posibilidad de desactivar el {0} en su lugar.",
- "cancel": "Cancelar",
+ "breakpointHelper": "Haga clic para agregar un punto de interrupción",
"condition": "Condición",
"debugIcon.breakpointCurrentStackframeForeground": "Color de icono del marco de pila del punto de interrupción actual.",
"debugIcon.breakpointDisabledForeground": "Color de icono para puntos de interrupción deshabilitados.",
"debugIcon.breakpointForeground": "Color de icono de los puntos de interrupción.",
"debugIcon.breakpointStackframeForeground": "Color de icono de los marcos de pila de todos los puntos de interrupción.",
"debugIcon.breakpointUnverifiedForeground": "Color de icono de los puntos de interrupción sin verificar.",
- "disable": "Deshabilitar",
+ "disable": "&&Deshabilitar",
"disableBreakpoint": "Deshabilitar {0}",
"disableBreakpointOnLine": "Deshabilitar punto de interrupción de línea",
"disableInlineColumnBreakpoint": "Deshabilitar el punto de interrupción insertado en la columna {0}",
@@ -4685,7 +8189,7 @@
"editBreakpoints": "Editar puntos de interrupción",
"editInlineBreakpointOnColumn": "Editar el punto de interrupción insertado en la columna {0}",
"editLineBreakpoint": "Editar punto de interrupción de línea",
- "enable": "Habilitar",
+ "enable": "&&Habilitar",
"enableBreakpoint": "Activar {0}",
"enableBreakpointOnLine": "Habilitar punto de interrupción de línea",
"enableBreakpoints": "Habilitar el punto de interrupción insertado en la columna {0}",
@@ -4696,39 +8200,44 @@
"removeBreakpoints": "Quitar puntos de interrupción",
"removeInlineBreakpointOnColumn": "Quitar el punto de interrupción insertado en la columna {0}",
"removeLineBreakpoint": "Quitar punto de interrupción de línea",
- "removeLogPoint": "Quitar {0}",
+ "removeLogPoint": "&&Quitar {0}",
"runToLine": "Ir a la línea"
},
- "vs/workbench/contrib/debug/browser/breakpointWidget": {
- "breakpointType": "Tipo de punto de interrupción",
- "breakpointWidgetExpressionPlaceholder": "Interrumpir cuando la expresión se evalúa como true. Presione \"ENTRAR\" para aceptar o \"Esc\" para cancelar.",
- "breakpointWidgetHitCountPlaceholder": "Interrumpir cuando se alcance el número de llamadas. Presione \"ENTRAR\" para aceptar o \"Esc\" para cancelar.",
- "breakpointWidgetLogMessagePlaceholder": "Mensaje para registrar cuando se alcanza el punto de interrupción. Las expresiones entre {} son interpoladas. 'Enter' para aceptar, 'esc' para cancelar. ",
- "expression": "Expresión",
- "hitCount": "Número de llamadas",
- "logMessage": "Mensaje de registro"
- },
"vs/workbench/contrib/debug/browser/breakpointsView": {
"access": "Acceso",
"activateBreakpoints": "Alternar Activar puntos de interrupción",
+ "addDataBreakpointOnAddress": "Agregar punto de interrupción de datos en la dirección",
"addFunctionBreakpoint": "Agregar punto de interrupción de función",
"breakpoint": "Punto de interrupción",
"breakpointUnsupported": "Los puntos de interrupción de este tipo no son compatibles con el depurador",
"breakpoints": "Puntos de interrupción",
+ "dataBreakPointExpresionAriaLabel": "Expresión de tipo. El punto de interrupción de datos se interrumpirá cuando la expresión se evalúe como true",
+ "dataBreakPointHitCountAriaLabel": "Escriba el número de llamadas. El punto de interrupción de datos se interrumpirá cuando se alcance el número de llamadas.",
"dataBreakpoint": "Punto de interrupción de datos",
+ "dataBreakpointAccessType": "Seleccionar el tipo de acceso que se va a supervisar",
+ "dataBreakpointAddrFormat": "La dirección debe estar formada por un rango de números de la forma \"[Inicio] - [Fin]\" o \"[Inicio] + [Bytes]\".",
+ "dataBreakpointAddrStartEnd": "El número debe ser un entero decimal o un valor hexadecimal que empiece por \"0x\", obtenido {0}",
+ "dataBreakpointError": "No se pudo establecer el punto de interrupción de datos en {0}: {1}",
+ "dataBreakpointExpressionPlaceholder": "Interrumpir cuando la expresión se evalúe como true",
+ "dataBreakpointHitCountPlaceholder": "Interrumpir cuando se alcance el número de llamadas",
+ "dataBreakpointMemoryRangePlaceholder": "Intervalo absoluto (0x1234 - 0x1300) o intervalo de bytes después de una dirección (0x1234 + 0xff)",
+ "dataBreakpointMemoryRangePrompt": "Escriba un intervalo de memoria en el que se va a interrumpir",
"dataBreakpointUnsupported": "Puntos de interrupción de datos no admitidos por este tipo de depuración",
"dataBreakpointsNotSupported": "Los puntos de interrupción de datos no son compatibles con este tipo de depuración",
+ "debug.decimal.address": "Dirección decimal: {0}",
"disableAllBreakpoints": "Deshabilitar todos los puntos de interrupción",
"disabledBreakpoint": "Punto de interrupción deshabilitado",
"disabledLogpoint": "Punto de registro deshabilitado",
- "editBreakpoint": "Editar el punto de interrupción de función...",
+ "editBreakpoint": "Editar condición de función...",
"editCondition": "Editar condición...",
+ "editDataBreakpointOnAddress": "Editar dirección...",
"editHitCount": "Editar el número de llamadas...",
+ "editMode": "Modo de edición...",
"enableAllBreakpoints": "Habilitar todos los puntos de interrupción",
"exceptionBreakpointAriaLabel": "Condición del punto de interrupción de excepción de tipo",
"exceptionBreakpointPlaceholder": "Interrumpir cuando la expresión se evalúe como true",
- "expression": "Condición de expresión: {0}",
- "expressionAndHitCount": "Expresión: {0} | Número de llamadas: {1}",
+ "expression": "Condición: {0}",
+ "expressionAndHitCount": "Condición: {0} | Número de llamadas: {1}",
"expressionCondition": "Condición de expresión: {0}",
"functionBreakPointExpresionAriaLabel": "Expresión de tipo. El punto de interrupción de función se interrumpirá cuando la expresión se evalúe como true.",
"functionBreakPointHitCountAriaLabel": "Escriba el número de llamadas. El punto de interrupción de función se interrumpirá cuando se alcance el número de llamadas.",
@@ -4744,6 +8253,7 @@
"instructionBreakpointAtAddress": "Punto de interrupción de instrucción en la dirección {0}",
"instructionBreakpointUnsupported": "Este tipo de depuración no admite los puntos de interrupción de instrucción",
"logMessage": "Mensaje de registro: {0}",
+ "miDataBreakpoint": "&&Punto de interrupción de datos...",
"miDisableAllBreakpoints": "&&Deshabilitar todos los puntos de interrupción",
"miEnableAllBreakpoints": "&&Habilitar todos los puntos de interrupción",
"miFunctionBreakpoint": "Punto de interrupción de &&función...",
@@ -4752,11 +8262,29 @@
"reapplyAllBreakpoints": "Volver a aplicar todos los puntos de interrupción",
"removeAllBreakpoints": "Quitar todos los puntos de interrupción",
"removeBreakpoint": "Quitar punto de interrupción",
+ "selectBreakpointMode": "Seleccionar modo de punto de interrupción",
+ "triggeredBy": "Alcanzar después del punto de interrupción: {0}",
"unverifiedBreakpoint": "Punto de interrupción no comprobado",
"unverifiedExceptionBreakpoint": "Punto de interrupción de excepción no comprobado",
"unverifiedLogpoint": "Punto de registro no comprobado",
"write": "Escritura"
},
+ "vs/workbench/contrib/debug/browser/breakpointWidget": {
+ "bpMode": "Modo",
+ "breakpointType": "Tipo de punto de interrupción",
+ "breakpointWidgetExpressionPlaceholder": "Interrumpir cuando la expresión se evalúa como true. ''{0}'' para aceptar, ''{1}'' para cancelar.",
+ "breakpointWidgetHitCountPlaceholder": "Interrumpir cuando se cumple la condición de recuento de llamadas. ''{0}'' para aceptar, ''{1}'' para cancelar.",
+ "breakpointWidgetLogMessagePlaceholder": "Mensaje para registrar cuando se alcanza el punto de interrupción. Las expresiones dentro de {} se interpolan. ''{0}'' para aceptar, ''{1}'' para cancelar.",
+ "expression": "Expresión",
+ "hitCount": "Número de llamadas",
+ "logMessage": "Mensaje de registro",
+ "noBpSource": "No se pudo cargar el origen.",
+ "noTriggerByBreakpoint": "Ninguno",
+ "ok": "Aceptar",
+ "selectBreakpoint": "Seleccionar punto de interrupción",
+ "triggerByLoading": "Cargando...",
+ "triggeredBy": "Esperar al punto de interrupción"
+ },
"vs/workbench/contrib/debug/browser/callStackEditorContribution": {
"focusedStackFrameLineHighlight": "Color de fondo para el resaltado de línea en la posición enfocada del marco de pila.",
"topStackFrameLineHighlight": "Color de fondo para el resaltado de línea en la posición superior del marco de pila. "
@@ -4764,7 +8292,7 @@
"vs/workbench/contrib/debug/browser/callStackView": {
"callStackAriaLabel": "Pila de llamadas de la depuración",
"collapse": "Contraer todo",
- "loadAllStackFrames": "Cargar todos los marcos de pila",
+ "loadAllStackFrames": "Cargar más marcos de pila",
"paused": "En pausa",
"pausedOn": "En pausa en {0}",
"restartFrame": "Reiniciar marco",
@@ -4777,35 +8305,52 @@
"stackFrameAriaLabel": "Marco de pila {0}, línea {1}, {2}",
"threadAriaLabel": "Subproceso {0} {1}"
},
+ "vs/workbench/contrib/debug/browser/callStackWidget": {
+ "failedToLoadFrames": "No se pudieron cargar los marcos de pila: {0}",
+ "goToFile": "Abrir archivo",
+ "stackFrameLocation": "Línea {0} columna {1}",
+ "stackTrace": "Seguimiento de la pila",
+ "stackTraceLabel": "{0}, línea {1} en {2}"
+ },
"vs/workbench/contrib/debug/browser/debug.contribution": {
"SetNextStatement": "Establecer la instrucción siguiente",
- "addToWatchExpressions": "Agregar a inspección",
"allowBreakpointsEverywhere": "Permite establecer puntos de interrupción en cualquier archivo.",
- "always": "Mostrar siempre la depuración en la barra de estado",
+ "always": "Mostrar siempre el elemento de depuración en la barra de estado",
"breakWhenValueChanges": "Interrumpir al cambiar el valor",
"breakWhenValueIsAccessed": "Interrumpir al acceder al valor",
"breakWhenValueIsRead": "Interrumpir al leer el valor",
"breakpoints": "Puntos de interrupción",
"callStack": "Pila de llamadas",
"cancel": "Cancele la depuración.",
- "copyAsExpression": "Copiar como expresión",
+ "closeReadonlyTabsOnEnd": "Al final de una sesión de depuración, se cerrarán todas las pestañas de solo lectura asociadas a esa sesión.",
"copyStackTrace": "Copiar pila de llamadas",
"copyValue": "Copiar valor",
- "debug.autoExpandLazyVariables": "Mostrar automáticamente los valores de las variables que el depurador resuelve diferido, como son captadores.",
+ "debug.autoExpandLazyVariables": "Controla si el depurador resuelve y expande automáticamente las variables que se resuelven de forma diferida, como los captadores.",
+ "debug.autoExpandLazyVariables.auto": "Cuando está en modo optimizado para lectores de pantalla, expanda automáticamente las variables diferidas.",
+ "debug.autoExpandLazyVariables.off": "Nunca expanda automáticamente las variables diferidas.",
+ "debug.autoExpandLazyVariables.on": "Expanda siempre automáticamente las variables diferidas.",
"debug.confirmOnExit": "Controla si se debe confirmar cuándo se cierra la ventana si hay sesiones de depuración activas.",
"debug.confirmOnExit.always": "Confirmar siempre si hay sesiones de depuración.",
"debug.confirmOnExit.never": "No confirmar nunca.",
- "debug.console.acceptSuggestionOnEnter": "Controla si las sugerencias deben aceptarse al escribir en la consola de depuración. La tecla ENTRAR también se usa para evaluar lo que se escribe en la consola de depuración.",
+ "debug.console.acceptSuggestionOnEnter": "Controla si las sugerencias deben ser aceptadas al entrar en la consola de depuración. La tecla Entrar también se utiliza para evaluar lo que se escribe en la consola de depuración.",
"debug.console.closeOnEnd": "Controla si la consola de depuración debe cerrarse automáticamente cuando finaliza la sesión de depuración.",
"debug.console.collapseIdenticalLines": "Controla si la consola de depuración debe contraer las líneas idénticas y mostrar un número de repeticiones con un distintivo.",
"debug.console.fontFamily": "Controla la familia de fuentes en la consola de depuración.",
"debug.console.fontSize": "Controla el tamaño de fuente en píxeles en la consola de depuración.",
- "debug.console.historySuggestions": "Controla si la consola de depuración debe sugerir la entrada escrita previamente.",
+ "debug.console.historySuggestions": "Controla si la Consola de depuración debe sugerir la entrada escrita previamente.",
"debug.console.lineHeight": "Controla la altura de la línea en píxeles en la consola de depuración. Use 0 para calcular la altura de la línea del tamaño de fuente.",
+ "debug.console.maximumLines": "Controla el número máximo de líneas en la Consola de depuración.",
"debug.console.wordWrap": "Controla si las líneas deben ajustarse en la consola de depuración.",
"debug.disassemblyView.showSourceCode": "Mostrar código fuente en vista de desensamblado.",
+ "debug.enableStatusBarColor": "Color de la barra de estado cuando el depurador está activo.",
"debug.focusEditorOnBreak": "Controla si el editor debe centrarse cuando se interrumpe el depurador.",
"debug.focusWindowOnBreak": "Controla si la ventana del área de trabajo debe centrarse cuando se interrumpe el depurador.",
+ "debug.gutterMiddleClickAction.conditionalBreakpoint": "Agregar punto de interrupción condicional.",
+ "debug.gutterMiddleClickAction.logpoint": "Agregar punto de registro.",
+ "debug.gutterMiddleClickAction.none": "No realizar ninguna acción.",
+ "debug.gutterMiddleClickAction.triggeredBreakpoint": "Agregar punto de interrupción desencadenado.",
+ "debug.hideLauncherWhileDebugging": "Ocultar el control \"Iniciar depuración\" en la barra de título de la vista \"Ejecutar y depurar\" mientras la depuración está activa. Solo es relevante cuando {0} no es \"docked\".",
+ "debug.hideSlowPreLaunchWarning": "Oculta la advertencia que se muestra cuando un objeto \"preLaunchTask\" se ha estado ejecutando durante un tiempo.",
"debug.onTaskErrors": "Controla qué hacer cuando se encuentran errores después de ejecutar preLaunchTask.",
"debug.saveBeforeStart": "Controla qué editores deben guardarse antes de iniciar una sesión de depuración.",
"debug.saveBeforeStart.allEditorsInActiveGroup": "Guarde todos los editores del grupo activo antes de iniciar una sesión de depuración.",
@@ -4815,10 +8360,14 @@
"debugAnyway": "Ignore los errores de la tarea e inicie la depuración.",
"debugCategory": "Depurar",
"debugConfigurationTitle": "Depurar",
- "debugFocusConsole": "Centrarse en la vista de consola de depuración",
"debugPanel": "Consola de depuración",
+ "debugToolBar.commandCenter": "'(Experimental)' Muestra la barra de herramientas de depuración en el centro de comandos.",
+ "debugToolBar.docked": "Mostrar la barra de herramientas de depuración solo en vistas de depuración.",
+ "debugToolBar.floating": "Muestra la barra de herramientas de depuración en todas las vistas.",
+ "debugToolBar.hidden": "No mostrar la barra de herramientas de depuración.",
"disassembly": "Desensamblado",
"editWatchExpression": "Editar expresión",
+ "gutterMiddleClickAction": "Controla la acción que se va a realizar al hacer clic en el medianil del editor con el botón central del mouse.",
"inlineBreakpoint": "Punto de interrupción insertado",
"inlineValues": "Muestre valores de variable en línea en el editor durante la depuración.",
"inlineValues.focusNoScroll": "Muestra los valores de variable insertados en el editor durante la depuración cuando el lenguaje admite ubicaciones de valores insertados.",
@@ -4840,10 +8389,11 @@
"miStepOut": "Depurar paso a paso para &&salir",
"miStepOver": "Depurar paso a paso por proce&&dimientos",
"miStopDebugging": "&&Detener depuración",
+ "miToggleBreakpoint": "Alternar punto de interrupción",
"miToggleDebugConsole": "Consola de de&&puración",
"miViewRun": "&&Ejecutar",
- "never": "Nunca mostrar debug en la barra de estado",
- "onFirstSessionStart": "Mostrar debug en la barra de estado solamente después del primero uso de debug",
+ "never": "Nunca mostrar el elemento de depuración en la barra de estado",
+ "onFirstSessionStart": "Mostrar elemento de depuración en la barra de estado solamente después que se inicie la depuración por primera vez",
"openDebug": "Controla cuándo debe abrirse la vista de depuración.",
"openExplorerOnEnd": "Abra automáticamente la vista de explorador al final de una sesión de depuración.",
"prompt": "Preguntar al usuario.",
@@ -4851,18 +8401,20 @@
"restartFrame": "Reiniciar marco",
"run": "Ejecutar o depurar...",
"run and debug": "Ejecución y depuración",
+ "runMenu": "Ejecutar",
"setValue": "Establecer valor",
"showBreakpointsInOverviewRuler": "Controla si los puntos de interrupción deben mostrarse en la regla de información general.",
"showErrors": "Muestre la vista Problemas y no inicie la depuración.",
- "showInStatusBar": "Controla cuándo debe estar visible la barra de estado de depuración.",
+ "showInStatusBar": "Controla cuándo debe estar visible el elemento de la barra de estado de depuración.",
"showInlineBreakpointCandidates": "Controla si se deben mostrar las decoraciones de candidatos de puntos de interrupción de líneas en el editor mientras se realiza la depuración.",
"showSubSessionsInToolBar": "Controla si las subsesiones de depuración se muestran en la barra de herramientas de depuración. Cuando esta opción es false, el comando de parada de una subsesión detendrá también la sesión principal.",
+ "showVariableTypes": "Mostrar el tipo de variable en el panel de variables durante la sesión de depuración",
"startDebugPlaceholder": "Escriba el nombre de la configuración de lanzamiento que se ejecutará.",
"startDebuggingHelp": "Iniciar depuración",
"tasksQuickAccessHelp": "Mostrar todas las consolas de depuración",
"tasksQuickAccessPlaceholder": "Escriba el nombre de una consola de depuración para abrir.",
"terminateThread": "Terminar hilo de ejecución",
- "toolBarLocation": "Controla la ubicación de la barra de herramientas de depuración. \"floating\" en todas las vistas, \"docked\" en la vista de depuración o \"hidden\".",
+ "toolBarLocation": "Controla la ubicación de la barra de herramientas de depuración. Puede ser \"flotante\" en todas las vistas, \"acoplado\" en la vista de depuración, \"commandCenter\" (requiere {0}) o \"oculta\".",
"variables": "Variables",
"viewMemory": "Ver datos binarios",
"watch": "Inspección"
@@ -4870,23 +8422,26 @@
"vs/workbench/contrib/debug/browser/debugActionViewItems": {
"addConfigTo": "Agregar configuración ({0})...",
"addConfiguration": "Agregar configuración...",
+ "commentLabelWithKeybinding": "{0}, use ({1}) para la ayuda de accesibilidad del editor",
+ "commentLabelWithKeybindingNoKeybinding": "{0}, ejecute el comando Abrir ayuda de accesibilidad, que actualmente no se puede desencadenar mediante un enlace de teclado.",
"debugLaunchConfigurations": "Configuraciones de inicio de depuración",
"debugSession": "Sesión de depuración",
"noConfigurations": "No hay configuraciones"
},
"vs/workbench/contrib/debug/browser/debugAdapterManager": {
"CouldNotFindLanguage": "No tiene una extensión para depurar {0}. ¿Deberíamos encontrar una extensión de {0} en el Marketplace?",
- "cancel": "Cancelar",
"debugName": "Nombre de la configuración; aparece en el menú desplegable de la configuración de inicio.",
"debugNoType": "El 'tipo' de depurador no se puede omitir y debe ser de tipo 'cadena'. ",
"debugPostDebugTask": "Tarea que se ejecutará después de terminar la sesión de depuración.",
"debugPrelaunchTask": "Tarea que se va a ejecutar antes de iniciarse la sesión de depuración.",
"debugServer": "Solo para el desarrollo de extensiones de depuración: si se especifica un puerto, VS Code intenta conectarse a un adaptador de depuración que se ejecuta en modo servidor",
- "findExtension": "Buscar {0} extensión",
+ "findExtension": "&&Buscar extensión {0}",
"installExt": "Instalar extensión...",
"installLanguage": "Instalar una extensión para {0}...",
+ "moreOptionsForDebugType": "Más opciones de {0}...",
"selectDebug": "Seleccionar depurador",
- "suggestedDebuggers": "Sugerencias"
+ "suggestedDebuggers": "Sugerencias",
+ "suppressMultipleSessionWarning": "Deshabilitar la advertencia al intentar iniciar la misma configuración de depuración más de una vez."
},
"vs/workbench/contrib/debug/browser/debugColors": {
"debugIcon.continueForeground": "Icono de la barra herramientas de depuración para continuar.",
@@ -4903,13 +8458,19 @@
"debugToolBarBorder": "Color de borde de la barra de herramientas de depuración "
},
"vs/workbench/contrib/debug/browser/debugCommands": {
+ "addConfiguration": "Agregar configuración...",
"addInlineBreakpoint": "Agregar punto de interrupción insertado",
+ "addToWatchExpressions": "Agregar a inspección",
+ "attachToCurrentCodeRenderer": "Adjuntar al representador de código actual",
"callStackBottom": "Navegar a la parte inferior de la pila de llamadas",
"callStackDown": "Navegar por la pila de llamadas hacia abajo",
"callStackTop": "Navegar a la parte superior de la pila de llamadas",
"callStackUp": "Navegar por la pila de llamadas hacia arriba",
"chooseLocation": "Elija la ubicación específica",
"continueDebug": "Continuar",
+ "copyAddress": "Copiar dirección",
+ "copyAsExpression": "Copiar como expresión",
+ "copyValue": "Copiar valor",
"debug": "Depurar",
"disconnect": "Desconectar",
"disconnectSuspend": "Desconectar y suspender",
@@ -4926,13 +8487,15 @@
"selectAndStartDebugging": "Seleccionar e iniciar la depuración",
"selectDebugConsole": "Seleccionar la Consola de depuración",
"selectDebugSession": "Seleccionar sesión de depuración",
+ "selectExceptionBreakpointsPlaceholder": "Seleccionar puntos de interrupción de excepciones habilitados",
"startDebug": "Iniciar depuración",
"startWithoutDebugging": "Iniciar sin depurar",
"stepIntoDebug": "Depurar paso a paso por instrucciones",
"stepIntoTargetDebug": "Depurar paso a paso por instrucciones el objetivo...",
"stepOutDebug": "Salir de la depuración",
"stepOverDebug": "Depurar paso a paso por procedimientos",
- "stop": "Detener"
+ "stop": "Detener",
+ "toggleExceptionBreakpoints": "Alternar puntos de interrupción de excepción"
},
"vs/workbench/contrib/debug/browser/debugConfigurationManager": {
"DebugConfig.failed": "No se puede crear el archivo \"launch.json\" dentro de la carpeta \".vscode\" ({0}).",
@@ -4945,6 +8508,7 @@
"workbench.action.debug.startDebug": "Iniciar una nueva sesión de depuración"
},
"vs/workbench/contrib/debug/browser/debugEditorActions": {
+ "EditBreakpointEditorAction": "Depurar: editar punto de interrupción",
"addToWatch": "Agregar a inspección",
"closeExceptionWidget": "Cerrar el widget de excepciones",
"conditionalBreakpointEditorAction": "Depuración: agregar punto de interrupción condicional...",
@@ -4955,18 +8519,21 @@
"logPointEditorAction": "Depuración: Agregar punto de registro...",
"miConditionalBreakpoint": "Punto de interrupción &&condicional...",
"miDisassemblyView": "&&DisassemblyView",
+ "miEditBreakpoint": "&&Editar punto de interrupción",
"miLogPoint": "&&Punto de registro...",
"miToggleBreakpoint": "Alter&&nar punto de interrupción",
+ "miTriggerByBreakpoint": "&&Punto de interrupción desencadenado...",
"mitogglesource": "&&ToggleSource",
"openDisassemblyView": "Abrir Vista de desensamblado",
"runToCursor": "Ejecutar hasta el cursor",
"showDebugHover": "Depuración: Mostrar al mantener el puntero",
"stepIntoTargets": "Depurar paso a paso por instrucciones el objetivo...",
"toggleBreakpointAction": "Depuración: Alternar punto de interrupción",
- "toggleDisassemblyViewSourceCode": "Alternar código fuente en vista de desensamblado"
+ "toggleDisassemblyViewSourceCode": "Alternar código fuente en vista de desensamblado",
+ "toggleDisassemblyViewSourceCodeDescription": "Muestra u oculta el código fuente en el desensamblado",
+ "triggerByBreakpointEditorAction": "Depurar: Agregar punto de interrupción desencadenado..."
},
"vs/workbench/contrib/debug/browser/debugEditorContribution": {
- "addConfiguration": "Agregar configuración...",
"editor.inlineValuesBackground": "Color del fondo del valor insertado de depuración.",
"editor.inlineValuesForeground": "Color del texto del valor insertado de depuración."
},
@@ -4996,6 +8563,7 @@
"debugBreakpointLog": "Icono de los puntos de interrupción de registro.",
"debugBreakpointLogDisabled": "Icono de un punto de interrupción de registro deshabilitado.",
"debugBreakpointLogUnverified": "Icono de los puntos de interrupción de registro no comprobados.",
+ "debugBreakpointPendingOnTrigger": "Icono de puntos de interrupción que esperan en otro punto de interrupción.",
"debugBreakpointUnsupported": "Icono de los puntos de interrupción no admitidos.",
"debugBreakpointUnverified": "Icono de los puntos de interrupción no comprobados.",
"debugCollapseAll": "Icono de la acción de contraer todo en las vistas de depuración.",
@@ -5028,6 +8596,7 @@
"variablesViewIcon": "Vea el icono de la vista de variables.",
"watchExpressionRemove": "Icono de la acción Quitar en la vista de inspección.",
"watchExpressionsAdd": "Icono de la acción de agregar en la vista de inspección.",
+ "watchExpressionsAddDataBreakpoint": "Icono de la acción agregar punto de interrupción de datos en la vista de puntos de interrupción.",
"watchExpressionsAddFuncBreakpoint": "Icono de la acción de agregar un punto de interrupción de función en la vista de inspección.",
"watchExpressionsRemoveAll": "Icono de la acción Quitar todo en la vista de inspección.",
"watchViewIcon": "Vea el icono de la vista de inspección."
@@ -5038,15 +8607,16 @@
"configure": "configurar",
"contributed": "aportadas",
"customizeLaunchConfig": "Configurar las opciones de lanzamiento",
+ "mostRecent": "Los más recientes",
"noDebugResults": "No hay ninguna configuración de inicio coincidente.",
"providerAriaLabel": "Configuraciones de {0} aportadas",
"removeLaunchConfig": "Quitar la configuración de inicio"
},
"vs/workbench/contrib/debug/browser/debugService": {
"1activeSession": "1 sesión activa",
+ "active debug session": "Aún se está ejecutando una sesión de depuración que finalizaría.",
"breakpointAdded": "Se ha agregado el punto de interrupción: línea {0}, archivo {1}",
"breakpointRemoved": "Se ha quitado el punto de interrupción: línea {0}, archivo {1}",
- "cancel": "Cancelar",
"compoundMustHaveConfigurations": "El compuesto debe tener configurado el atributo \"configurations\" a fin de iniciar varias configuraciones.",
"configMissing": "La configuración \"{0}\" falta en \"launch.json\".",
"debugAdapterCrash": "El proceso de adaptación del depurador finalizó inesperadamente ({0})",
@@ -5068,12 +8638,14 @@
},
"vs/workbench/contrib/debug/browser/debugSession": {
"debuggingStarted": "La depuración se ha iniciado.",
+ "debuggingStartedNoDebug": "Se inició la ejecución sin depuración.",
"debuggingStopped": "La depuración se ha detenido.",
"noDebugAdapter": "No hay ningún depurador disponible; no se puede enviar \"{0}\".",
+ "sessionDoesNotSupporBytesBreakpoints": "La sesión no admite puntos de interrupción con bytes",
"sessionNotReadyForBreakpoints": "La sesión no está lista para los puntos de interrupción"
},
"vs/workbench/contrib/debug/browser/debugSessionPicker": {
- "moveFocusedView.selectView": "Search debug sessions by name",
+ "moveFocusedView.selectView": "Buscar sesiones de depuración por nombre",
"workbench.action.debug.spawnFrom": "{0} de sesión generada a partir de{1}",
"workbench.action.debug.startDebug": "Iniciar una nueva sesión de depuración"
},
@@ -5086,8 +8658,9 @@
"DebugTaskNotFound": "No se encuentra la tarea especificada.",
"DebugTaskNotFoundWithTaskId": "No se encuentra la tarea \"{0}\".",
"abort": "Anular",
- "cancel": "Cancelar",
- "debugAnyway": "Depurar de todos modos",
+ "configureTask": "Configurar tarea",
+ "debugAnyway": "&&Depurar de todos modos",
+ "debugAnywayNoMemo": "Depurar de todos modos",
"invalidTaskReference": "No se puede hacer referencia a la tarea \"{0}\" desde una configuración de inicio que está en una carpeta de área de trabajo diferente.",
"preLaunchTaskError": "Hay un error después de ejecutar preLaunchTask \"{0}\". ",
"preLaunchTaskErrors": "Hay errores después de ejecutar preLaunchTask \"{0}\".",
@@ -5095,9 +8668,9 @@
"preLaunchTaskTerminated": "\"{0}\" de preLaunchTask terminado.",
"remember": "Recordar mi elección en la configuración del usuario",
"rememberTask": "Recordar mi elección para esta tarea",
- "showErrors": "Mostrar errores",
- "taskNotTracked": "No se puede realizar un seguimiento de la tarea \"{0}\". Asegúrese de tener un buscador de coincidencias de problemas definido.",
- "taskNotTrackedWithTaskId": "No se puede realizar un seguimiento de la tarea \"{0}\". Asegúrese de tener un buscador de coincidencias de problemas definido."
+ "runningTask": "Esperando a preLaunchTask '{0}'...",
+ "showErrors": "&&Mostrar errores",
+ "taskNotTracked": "La tarea '{0}' no se ha terminado y no tiene definido 'problemMatcher'. Asegúrese de definir un buscador de coincidencias de problemas para las tareas de inspección."
},
"vs/workbench/contrib/debug/browser/debugToolBar": {
"notebook.moreRunActionsLabel": "Más...",
@@ -5107,6 +8680,7 @@
"vs/workbench/contrib/debug/browser/debugViewlet": {
"debugPanel": "Consola de depuración",
"miOpenConfigurations": "Abrir &&configuraciones",
+ "openLaunchConfigDescription": "Abre el archivo usado para configurar cómo se depura su programa",
"selectWorkspaceFolder": "Seleccione una carpeta de área de trabajo para crear un archivo launch.json o agregarlo al archivo de configuración del área de trabajo",
"startAdditionalSession": "Iniciar otra sesión"
},
@@ -5129,10 +8703,13 @@
"vs/workbench/contrib/debug/browser/linkDetector": {
"fileLink": "Ctrl + clic para {0}",
"fileLinkMac": "Cmd + clic para {0}",
+ "fileLinkWithPath": "Ctrl + clic para {0}{1}",
+ "fileLinkWithPathMac": "Cmd + clic para {0}{1}",
"followForwardedLink": "seguir el vínculo con el puerto reenviado",
"followLink": "seguir vínculo"
},
"vs/workbench/contrib/debug/browser/loadedScriptsView": {
+ "collapse": "Contraer todo",
"loadedScriptsAriaLabel": "Depurar scripts cargados",
"loadedScriptsFolderAriaLabel": "Carpeta {0}, script cargado, depuración",
"loadedScriptsRootFolderAriaLabel": "Carpeta del área de trabajo {0}, script cargado, depuración",
@@ -5142,30 +8719,40 @@
},
"vs/workbench/contrib/debug/browser/rawDebugSession": {
"canNotStart": "El depurador debe abrir una nueva pestaña o ventana para el código que está siendo depurado, pero el explorador lo ha impedido. Debe conceder permiso para continuar.",
- "cancel": "Cancelar",
- "continue": "Continuar",
+ "continue": "&&Continuar",
"moreInfo": "Más información",
"noDebugAdapter": "No se encontró ningún depurador disponible. No se puede enviar \"{0}\".",
"noDebugAdapterStart": "No hay adaptador de depuración, no se puede iniciar la sesión de depuración."
},
"vs/workbench/contrib/debug/browser/repl": {
- "actions.repl.acceptInput": "REPL - Aceptar entrada",
+ "actions.repl.acceptInput": "Consola de depuración: aceptar entrada",
"actions.repl.copyAll": "Depuración: Consola Copiar Todo",
"clearRepl": "Borrar consola",
+ "clearRepl.descriotion": "Borra toda la salida del programa de su REPL de depuración",
"collapse": "Contraer todo",
+ "commentLabelWithKeybinding": "{0}, use ({1}) para la ayuda de accesibilidad del editor",
+ "commentLabelWithKeybindingNoKeybinding": "{0}, ejecute el comando Abrir ayuda de accesibilidad, que actualmente no se puede desencadenar mediante un enlace de teclado.",
"copy": "Copiar",
"copyAll": "Copiar todo",
"debugConsole": "Consola de depuración",
- "debugConsoleCleared": "Se borró la consola de depuración",
- "filter": "Filtrar",
+ "debugFocusConsole": "Centrarse en la vista de consola de depuración",
"paste": "Pegar",
- "repl.action.filter": "REPL Centrar en el contenido para filtrar",
+ "repl.action.filter": "Consola de depuración: filtro de foco",
+ "repl.action.find": "Consola de depuración: Búsqueda de foco",
"selectRepl": "Seleccionar la consola de depuración",
+ "showing filtered repl lines": "Se muestran {0} de {1}",
"startDebugFirst": "Inicie una sesión de depuración para evaluar las expresiones",
- "workbench.debug.filter.placeholder": "Filtro (por ejemplo, text, !exclude)"
- },
- "vs/workbench/contrib/debug/browser/replFilter": {
- "showing filtered repl lines": "Se muestran {0} de {1}"
+ "workbench.debug.filter.placeholder": "Filtro (por ejemplo, texto, excluir, escape)"
+ },
+ "vs/workbench/contrib/debug/browser/replAccessibilityHelp": {
+ "repl.accessibleView": "El comando Abrir vista accesible{0} permitirá navegar carácter a carácter por la salida de la consola.",
+ "repl.clear": "El comando{0} Depurar: Borrar consola borrará la salida de la consola.",
+ "repl.help": "La consola de depuración es un Read-Eval-Print-Loop que permite evaluar expresiones y ejecutar comandos y puede enfocarse con{0}.",
+ "repl.history": "Se puede navegar por el historial de salidas de la consola de depuración con las teclas de flecha arriba y abajo.",
+ "repl.input": "Se puede navegar a la entrada de la consola de depuración desde la salida con el comando Concentrarse en el widget siguiente{0}.",
+ "repl.lazyVariables": "El valor `debug.expandLazyVariables` controla si las variables se evalúan automáticamente. Esta opción está habilitada de forma predeterminada cuando se usa un lector de pantalla.",
+ "repl.output": "Se puede navegar a la salida de la consola de depuración desde el campo de entrada con el comando Concentrarse en el widget siguiente{0}.",
+ "repl.showRunAndDebug": "El comando{0} Mostrar vista Ejecutar y depurar abrirá la vista Ejecutar y depurar y proporciona más información sobre la depuración."
},
"vs/workbench/contrib/debug/browser/replViewer": {
"debugConsole": "Consola de depuración",
@@ -5174,25 +8761,44 @@
"replRawObjectAriaLabel": "Depurar la variable de consola {0}, valor {1}",
"replVariableAriaLabel": "Variable {0}, valor {1}"
},
+ "vs/workbench/contrib/debug/browser/runAndDebugAccessibilityHelp": {
+ "debug.continue": "- Depurar: El comando Continuar{0} continuará la ejecución hasta el siguiente punto de interrupción.",
+ "debug.focusBreakpoints": "- Depurar: el comando Vista de enfocar puntos de interrupción{0} enfocará la vista de puntos de interrupción.",
+ "debug.focusCallStack": "- Depurar: el comando Vista de enfocar pila de llamadas{0} enfocará la vista de pila de llamadas.",
+ "debug.focusVariables": "- Depurar: el comando Vista de enfocar variables{0} enfocará la vista de variables.",
+ "debug.focusWatch": "- Depurar: el comando Vista de enfocar inspección{0} enfocará la vista de inspección.",
+ "debug.help": "Acceda a la salida de depuración y evalúe expresiones en la consola de depuración, la que se puede centrar con{0}.",
+ "debug.restartDebugging": "- Depurar: el comando{0} Reiniciar depuración reiniciará la sesión de depuración actual.",
+ "debug.showRunAndDebug": "El comando mostrar vista de Ejecutar y depurar{0} abrirá la vista actual.",
+ "debug.startDebugging": "La depuración: el comando Iniciar depuración{0} iniciará una sesión de depuración.",
+ "debug.stepInto": "- Depurar: El comando Entrar{0} pasará a la siguiente llamada de función.",
+ "debug.stepOut": "- Depurar: El comando Salir{0} saldrá de la llamada de función actual.",
+ "debug.stepOver": "- Depurar: el comando Paso a paso{0} saltará la llamada de función actual.",
+ "debug.stopDebugging": "- Depurar: el comando{0} Detener depuración detendrá la sesión de depuración actual.",
+ "debug.views": "El viewlet de depuración está formado por varias vistas que se pueden enfocar con los siguientes comandos o a las que se puede navegar a través de la pestaña y, a continuación, las teclas de dirección:",
+ "debug.watchSetting": "La configuración {0} controla si se anuncian los cambios de variables de inspección.",
+ "onceDebugging": "Una vez depurado, los siguientes comandos estarán disponibles:"
+ },
"vs/workbench/contrib/debug/browser/statusbarColorProvider": {
+ "commandCenter-activeBackground": "Color de fondo del centro de comandos cuando se depura un programa",
"statusBarDebuggingBackground": "Color de fondo de la barra de estado cuando se está depurando un programa. La barra de estado se muestra en la parte inferior de la ventana",
"statusBarDebuggingBorder": "Color de borde de la barra de estado que separa la barra lateral y el editor cuando se está depurando un programa. La barra de estado se muestra en la parte inferior de la ventana.",
"statusBarDebuggingForeground": "Color de primer plano de la barra de estado cuando se está depurando un programa. La barra de estado se muestra en la parte inferior de la ventana"
},
"vs/workbench/contrib/debug/browser/variablesView": {
- "cancel": "Cancelar",
"collapse": "Contraer todo",
- "install": "Instalar",
+ "removeVisualizer": "Quitar visualizador",
+ "useVisualizer": "Visualizar variable...",
"variableAriaLabel": "{0}, valor {1}",
"variableScopeAriaLabel": "Ámbito {0}",
"variableValueAriaLabel": "Escribir un nuevo valor de variable",
"variablesAriaTreeLabel": "Variables de depuración",
- "viewMemory.install.progress": "Instalando el editor hexadecimal...",
- "viewMemory.prompt": "La inspección de datos binarios requiere la extensión del editor hexadecimal. ¿Desea instalarlo ahora?"
+ "viewMemory.prompt": "La inspección de datos binarios requiere esta extensión."
},
"vs/workbench/contrib/debug/browser/watchExpressionsView": {
"addWatchExpression": "Agregar expresión",
"collapse": "Contraer todo",
+ "copyWatchExpression": "Copiar Expresión",
"removeAllWatchExpressions": "Quitar todas las expresiones",
"typeNewValue": "Escribir nuevo valor",
"watchAriaTreeLabel": "Expresiones de inspección de la depuración",
@@ -5203,12 +8809,11 @@
},
"vs/workbench/contrib/debug/browser/welcomeView": {
"allDebuggersDisabled": "Todas las extensiones de depuración están deshabilitadas. Habilite una extensión de depuración o instale una nueva desde Marketplace.",
- "customizeRunAndDebug": "Para personalizar Ejecutar y depurar [cree un archivo launch.json](command:{0}).",
- "customizeRunAndDebugOpenFolder": "Para personalizar Ejecutar y depurar, [abra una carpeta](command:{0}) y cree un archivo launch.json.",
- "detectThenRunAndDebug": "[Mostrar todas las configuraciones de depuración automática](command:{0}).",
+ "customizeRunAndDebug2": "Para personalizar Ejecutar y depurar [cree un archivo launch.json]({0}).",
+ "customizeRunAndDebugOpenFolder2": "Para personalizar Ejecutar y depurar, [abra una carpeta]({0}) y cree un archivo launch.json.",
"openAFileWhichCanBeDebugged": "[Abrir un archivo](command:{0}) que se puede depurar o ejecutar.",
"run": "Ejecutar",
- "runAndDebugAction": "[Ejecutar y depurar{0}](command:{1})"
+ "runAndDebugAction": "Ejecución y depuración"
},
"vs/workbench/contrib/debug/common/abstractDebugAdapter": {
"timeout": "Tiempo de espera de {0} ms para \"{1}\""
@@ -5217,13 +8822,15 @@
"breakWhenValueChangesSupported": "Es true cuando la sesión con foco admite la interrupción al cambiarse el valor.",
"breakWhenValueIsAccessedSupported": "Es true cuando el punto de interrupción con foco admite la interrupción al acceder al valor.",
"breakWhenValueIsReadSupported": "Es true cuando el punto de interrupción con foco admite la interrupción al leer el valor.",
- "breakpointAccessType": "Representa el tipo de acceso del punto de interrupción de datos con foco en la vista de PUNTOS DE INTERRUPCIÓN. Por ejemplo: \"read\", \"readWrite\", \"write\"",
+ "breakpointHasModes": "Si el punto de interrupción tiene varios modos a los que puede cambiar.",
"breakpointInputFocused": "Es true cuando el cuadro de entrada tiene el foco en la vista de PUNTOS DE INTERRUPCIÓN.",
+ "breakpointItemIsDataBytes": "Si el elemento de punto de interrupción es un punto de interrupción de datos en un intervalo de bytes.",
"breakpointItemType": "Representa el tipo del elemento con foco en la vista de PUNTOS DE INTERRUPCIÓN. Por ejemplo: \"breakpoint\", \"exceptionBreakppint\", \"functionBreakpoint\", \"dataBreakpoint\".",
"breakpointSupportsCondition": "Es true cuando el punto de interrupción con foco admite las condiciones.",
"breakpointWidgetVisibile": "Es true cuando el widget de zona del editor de puntos de interrupción está visible; de lo contrario, es false.",
"breakpointsExist": "Es true cuando existe al menos un punto de interrupción.",
"breakpointsFocused": "Es true cuando la vista de PUNTOS DE INTERRUPCIÓN tiene el foco; de lo contrario, es false.",
+ "callStackFocused": "True cuando se centra la vista CALLSTACK; en caso contrario, false.",
"callStackItemStopped": "Es true cuando se detiene el elemento con foco en la PILA DE LLAMADAS. Se usa de forma interna para los menús insertados en la vista PILA DE LLAMADAS.",
"callStackItemType": "Representa el tipo del elemento con foco en la vista PILA DE LLAMADAS. Por ejemplo: \"session\", \"thread\", \"stackFrame\"",
"callStackSessionHasOneThread": "Es true si la sesión con foco en la vista PILA DE LLAMADAS tiene exactamente un subproceso. Se usa internamente para los menús insertados en la vista PILA DE LLAMADAS.",
@@ -5232,6 +8839,7 @@
"debugConfigurationType": "Tipo de depuración de la configuración de inicio seleccionada. Por ejemplo, \"python\".",
"debugExtensionsAvailable": "True cuando hay al menos una extensión de depuración instalada y habilitada.",
"debugProtocolVariableMenuContext": "Representa el contexto que el adaptador de depuración establece en la variable con foco en la vista de VARIABLES.",
+ "debugSetDataBreakpointAddressSupported": "Verdadero cuando la sesión enfocada aborda la solicitud 'getBreakpointInfo' en una dirección.",
"debugSetExpressionSupported": "Es true cuando la sesión con foco admite la solicitud \"setExpression\".",
"debugSetVariableSupported": "Es true cuando la sesión con foco admite la solicitud \"setVariable\".",
"debugState": "Estado en el que se encuentra la sesión de depuración con foco. Es uno de los siguientes: \"inactiva\", \"inicializando\", \"detenida\" o \"en ejecución\".",
@@ -5244,7 +8852,9 @@
"exceptionWidgetVisible": "Es true cuando el widget de excepciones está visible.",
"expressionSelected": "Es true cuando se abre un cuadro de entrada de expresión en la vista INSPECCIÓN o VARIABLES ; de lo contrario, es false.",
"focusedSessionIsAttach": "Es true cuando la sesión que tiene el foco es \"attach\".",
+ "focusedSessionIsNoDebug": "Es True cuando la sesión enfocada se ejecuta sin depuración.",
"focusedStackFrameHasInstructionReference": "True cuando el marco de pila enfocado tiene una referencia de puntero de instrucción.",
+ "hasDebugged": "True cuando se ha iniciado una sesión de depuración al menos una vez; de lo contrario, false.",
"inBreakpointWidget": "Es true cuando el foco está en el widget de zona del editor de puntos de interrupción; de lo contrario, es false.",
"inDebugMode": "Es true cuando se está depurando; de lo contrario, es false.",
"inDebugRepl": "Es true cuando el foco está en la consola de depuración; de lo contrario, es false.",
@@ -5261,8 +8871,15 @@
"stepIntoTargetsSupported": "Es true cuando la sesión con foco admite la solicitud \"stepIntoTargets\".",
"suspendDebuggeeSupported": "True cuando la sesión centrada admite la funcionalidad de depuración de suspensión.",
"terminateDebuggeeSupported": "Es true cuando la sesión que tiene el foco admite la capacidad de finalizar el depurador.",
+ "terminateThreadsSupported": "Verdadero cuando la sesión que tenga el foco admite la funcionalidad de finalización de subprocesos.",
"variableEvaluateNamePresent": "Es True cuando la variable con foco tiene un conjunto de campos \"evaluateName\".",
- "variableIsReadonly": "True cuando la variable con foco es de solo lectura.",
+ "variableExtensionId": "Identificador de extensión del origen de la variable, presente para las cláusulas de visualización de depuración.",
+ "variableInterfaces": "Todas las interfaces o contratos que cumpla la variable, presentes para las cláusulas de visualización de depuración.",
+ "variableIsReadonly": "True cuando la variable prioritario es de solo lectura.",
+ "variableLanguage": "Idioma del origen de variable, presente para las cláusulas de visualización de depuración.",
+ "variableName": "Nombre de la variable, presente para las cláusulas de visualización de depuración.",
+ "variableType": "Tipo de la variable, presente para las cláusulas de visualización de depuración.",
+ "variableValue": "Valor de la variable, presente para las cláusulas de visualización de depuración.",
"variablesFocused": "Es true cuando las vistas de VARIABLES tienen el foco; de lo contrario, es false.",
"watchExpressionsExist": "Es true cuando existe al menos una expresión de inspección; de lo contrario, es false.",
"watchExpressionsFocused": "Es true cuando la vista de INSPECCIÓN tiene el foco; de lo contrario, es false.",
@@ -5273,10 +8890,23 @@
"canNotResolveSourceWithError": "No se puede cargar el origen \"{0}\": {1}.",
"unable": "No se puede resolver el recurso sin una sesión de depuración"
},
+ "vs/workbench/contrib/debug/common/debugger": {
+ "cannot.find.da": "No puede encontrar el adaptador de depuración de tipo \"{0}\".",
+ "debugLinuxConfiguration": "Atributos de configuración de inicio específicos de Linux.",
+ "debugOSXConfiguration": "Atributos de configuración de inicio específicos de OS X.",
+ "debugRequest": "Tipo de solicitud de la configuración. Puede ser \"launch\" o \"attach\".",
+ "debugType": "Tipo de configuración.",
+ "debugTypeNotRecognised": "Este tipo de depuración no se reconoce. Compruebe que tiene instalada la correspondiente extensión de depuración y que está habilitada.",
+ "debugWindowsConfiguration": "Atributos de configuración de inicio específicos de Windows.",
+ "launch.config.comment1": "Use IntelliSense para saber los atributos posibles.",
+ "launch.config.comment2": "Mantenga el puntero para ver las descripciones de los existentes atributos.",
+ "launch.config.comment3": "Para más información, visite: {0}",
+ "node2NotSupported": "\"node2\" ya no se admite; use \"node\" en su lugar y establezca el atributo \"protocol\" en \"inspector\"."
+ },
"vs/workbench/contrib/debug/common/debugLifecycle": {
"debug.debugSessionCloseConfirmationPlural": "Hay sesiones de depuración activas, ¿está seguro de que desea detenerlas?",
"debug.debugSessionCloseConfirmationSingular": "Hay una sesión de depuración activa, ¿está seguro de que desea detenerla?",
- "debug.stop": "Detener depuración"
+ "debug.stop": "&&Detener depuración"
},
"vs/workbench/contrib/debug/common/debugModel": {
"breakpointDirtydHover": "Punto de interrupción no comprobado. El archivo se ha modificado, reinicie la sesión de depuración.",
@@ -5297,6 +8927,9 @@
"app.launch.json.title": "Lanzamiento",
"app.launch.json.version": "Versión de este formato de archivo.",
"compoundPrelaunchTask": "Tarea que se ejecuta antes de que se inicie cualquiera de las configuraciones compuestas.",
+ "debugger name": "Nombre",
+ "debugger type": "Tipo",
+ "debuggers": "Depuradores",
"presentation": "Opciones de presentación de cómo mostrar esta configuración en la lista desplegable de configuración de depuración y en la paleta de comandos.",
"presentation.group": "Grupo al que pertenece esta configuración. Se utiliza para agrupar y ordenar en el menú desplegable de configuración y en la paleta de comandos.",
"presentation.hidden": "Controla si esta configuración debe mostrarse en el menú desplegable de configuración y en la paleta de comandos.",
@@ -5310,6 +8943,7 @@
"vscode.extension.contributes.debuggers.configurationAttributes": "Configuraciones de esquema JSON para validar \"launch.json\".",
"vscode.extension.contributes.debuggers.configurationSnippets": "Fragmentos de código para agregar nuevas configuraciones a \"launch.json\".",
"vscode.extension.contributes.debuggers.deprecated": "Mensaje opcional para marcar este tipo de depuración como en desuso.",
+ "vscode.extension.contributes.debuggers.hiddenWhen": "Cuando esta condición es true, este tipo de depurador se oculta en la lista de depuradores, pero aún está habilitado.",
"vscode.extension.contributes.debuggers.initialConfigurations": "Configuraciones para generar el archivo \"launch.json\" inicial.",
"vscode.extension.contributes.debuggers.label": "Nombre para mostrar del adaptador de depuración.",
"vscode.extension.contributes.debuggers.languages": "Lista de lenguajes para los que la extensión de depuración podría considerarse el \"depurador predeterminado\".",
@@ -5320,6 +8954,8 @@
"vscode.extension.contributes.debuggers.program": "Ruta de acceso al programa de adaptadores de depuración, que puede ser absoluta o relativa respecto a la carpeta de extensión.",
"vscode.extension.contributes.debuggers.runtime": "Entorno de ejecución opcional en caso de que el atributo del programa no sea un ejecutable pero requiera un entorno de ejecución.",
"vscode.extension.contributes.debuggers.runtimeArgs": "Argumentos de entorno de ejecución opcionales.",
+ "vscode.extension.contributes.debuggers.strings": "Cadenas de interfaz de usuario aportadas por este adaptador de depuración.",
+ "vscode.extension.contributes.debuggers.strings.unverifiedBreakpoints": "Cuando haya puntos de interrupción no comprobados en un idioma compatible con este adaptador de depuración, este mensaje aparecerá al mantener el puntero sobre el punto de interrupción y en la vista de puntos de interrupción. Se admiten los vínculos de comando y Markdown.",
"vscode.extension.contributes.debuggers.type": "Identificador único de este adaptador de depuración.",
"vscode.extension.contributes.debuggers.variables": "Asignación de variables interactivas (p. ej., ${action.pickProcess}) en \"launch.json\" a un comando.",
"vscode.extension.contributes.debuggers.when": "Condición que debe ser true para habilitar este tipo de depurador. Considere la posibilidad de usar 'shellExecutionSupported', 'virtualWorkspace', 'resourceScheme' o una clave de contexto definida por la extensión según corresponda.",
@@ -5329,24 +8965,12 @@
"vs/workbench/contrib/debug/common/debugSource": {
"unknownSource": "Origen desconocido"
},
- "vs/workbench/contrib/debug/common/debugger": {
- "cannot.find.da": "No puede encontrar el adaptador de depuración de tipo \"{0}\".",
- "debugLinuxConfiguration": "Atributos de configuración de inicio específicos de Linux.",
- "debugOSXConfiguration": "Atributos de configuración de inicio específicos de OS X.",
- "debugRequest": "Tipo de solicitud de la configuración. Puede ser \"launch\" o \"attach\".",
- "debugType": "Tipo de configuración.",
- "debugTypeNotRecognised": "Este tipo de depuración no se reconoce. Compruebe que tiene instalada la correspondiente extensión de depuración y que está habilitada.",
- "debugWindowsConfiguration": "Atributos de configuración de inicio específicos de Windows.",
- "launch.config.comment1": "Use IntelliSense para saber los atributos posibles.",
- "launch.config.comment2": "Mantenga el puntero para ver las descripciones de los existentes atributos.",
- "launch.config.comment3": "Para más información, visite: {0}",
- "node2NotSupported": "\"node2\" ya no se admite; use \"node\" en su lugar y establezca el atributo \"protocol\" en \"inspector\"."
- },
"vs/workbench/contrib/debug/common/disassemblyViewInput": {
+ "disassemblyEditorLabelIcon": "Icono de la etiqueta del editor de desensamblado.",
"disassemblyInputName": "Desensamblado"
},
"vs/workbench/contrib/debug/common/loadedScriptsPicker": {
- "moveFocusedView.selectView": "Buscar scripts cargados por nombre"
+ "moveFocusedView.selectView": "Search loaded scripts by name"
},
"vs/workbench/contrib/debug/common/replModel": {
"consoleCleared": "Se ha borrado la consola"
@@ -5363,68 +8987,120 @@
"bracketPairColorizer.notification.action.showMoreInfo": "Más información",
"bracketPairColorizer.notification.action.uninstall": "Desinstalar extensión"
},
- "vs/workbench/contrib/dialogs/browser/dialogHandler": {
- "yesButton": "&&Sí",
- "cancelButton": "Cancelar",
- "aboutDetail": "Versión: {0}\r\nConfirmación: {1}\r\nFecha: {2}\r\nExplorador: {3}",
- "copy": "Copiar",
- "ok": "Aceptar"
+ "vs/workbench/contrib/dropOrPasteInto/browser/commands": {
+ "configureDefaultDrop.label": "Configurar la acción de eliminación preferida...",
+ "configureDefaultPaste.label": "Configurar la acción de pegado preferida..."
},
- "vs/workbench/contrib/dialogs/electron-sandbox/dialogHandler": {
- "yesButton": "&&Sí",
- "cancelButton": "Cancelar",
- "aboutDetail": "Versión: {0}\r\nConfirmación: {1}\r\nFecha: {2}\r\nElectron: {3}\r\nChrome: {4}\r\nNode.js: {5}\r\nV8: {6}\r\nSistema Operativo: {7}",
- "okButton": "Aceptar",
- "copy": "&&Copiar"
+ "vs/workbench/contrib/dropOrPasteInto/browser/configurationSchema": {
+ "dropKind": "Identificador de tipo de la edición de colocación.",
+ "dropPreferredDescription": "Configurar el tipo preferido de edición que se usará al quitar contenido.\r\n\r\nEsta es una lista ordenada de tipos de edición. Se usará la primera edición disponible de un tipo preferido.",
+ "pasteKind": "Identificador de tipo de la edición de pegado.",
+ "pastePreferredDescription": "Configurar el tipo preferido de edición que se usará al pegar contenido.\r\n\r\nEsta es una lista ordenada de tipos de edición. Se usará la primera edición disponible de un tipo preferido."
},
"vs/workbench/contrib/editSessions/browser/editSessions.contribution": {
- "client too old": "Actualice a una versión más reciente de {0} para reanudar esta sesión de edición.",
- "continue edit session": "Continuar con la edición de la sesión...",
+ "autoResumeWorkingChanges": "Controla si se reanudan automáticamente los cambios de trabajo disponibles almacenados en la nube para el área de trabajo actual.",
+ "autoResumeWorkingChanges.off": "Nunca intente reanudar los cambios de trabajo desde la nube.",
+ "autoResumeWorkingChanges.onReload": "Reanudar automáticamente los cambios de trabajo disponibles desde la nube al volver a cargar la ventana.",
+ "autoStoreWorkingChanges": "Almacenamiento de los cambios de trabajo actuales...",
+ "autoStoreWorkingChanges.off": "Nunca intente almacenar automáticamente los cambios de trabajo en la nube.",
+ "autoStoreWorkingChanges.onShutdown": "Almacenar automáticamente los cambios de trabajo actuales en la nube al cerrar la ventana.",
+ "autoStoreWorkingChangesDescription": "Controla si se van a almacenar automáticamente los cambios de trabajo disponibles en la nube para el área de trabajo actual. Esta configuración no tiene ningún efecto en la web.",
+ "check for pending cloud changes": "Comprobar si hay cambios pendientes en la nube",
+ "checkingForWorkingChanges": "Comprobando si hay cambios pendientes en la nube...",
+ "client too old": "Actualice a una versión más reciente de {0} para reanudar los cambios en el trabajo desde la nube.",
+ "cloudChangesPartialMatchesEnabled": "Controla si se deben exponer los cambios en la nube que coincidan parcialmente con la sesión actual.",
"continue edit session in local folder": "Abrir en carpeta local",
- "continueEditSession.openLocalFolder.title": "Seleccione una carpeta local para continuar con la sesión de edición en",
+ "continue with cloud changes": "Seleccionar si desea traer sus cambios de trabajo",
+ "continue working on": "Continuar trabajando en...",
+ "continueEditSession.openLocalFolder.title.v2": "Seleccionar una carpeta local en la que seguir trabajando",
"continueEditSessionExtPoint": "Aporta opciones para continuar con la sesión de edición actual en un entorno diferente",
"continueEditSessionExtPoint.command": "Identificador del comando que se va a ejecutar. El comando debe declararse en la sección \"commands\" y devolver un URI que represente un entorno diferente en el que se pueda continuar con la sesión de edición actual.",
+ "continueEditSessionExtPoint.description": "La dirección URL, o un comando que la devuelve, a la página de documentación de la opción.",
"continueEditSessionExtPoint.group": "Grupo al que pertenece este elemento.",
+ "continueEditSessionExtPoint.qualifiedName": "Nombre completo para este elemento que se usa para mostrar en los menús.",
+ "continueEditSessionExtPoint.remoteGroup": "Grupo al que pertenece este elemento en el indicador remoto.",
"continueEditSessionExtPoint.when": "Condición que se debe cumplir para mostrar este elemento.",
- "continueEditSessionItem.openInLocalFolder": "Abrir en carpeta local",
- "continueEditSessionPick.placeholder": "Elija cómo desea seguir trabajando",
- "continueEditSessionPick.title": "Continuar con la edición de la sesión...",
- "editSessionsEnabled": "Controla si se muestran las acciones habilitadas para la nube para almacenar y reanudar los cambios no confirmados al cambiar entre web, escritorio o dispositivos.",
- "no edit session": "No hay sesiones de edición para reanudar.",
- "no edit session content for ref": "No se pudo reanudar el contenido de la sesión de edición para el identificador {0}.",
- "no edits to store": "Se omitió el almacenamiento de la sesión de edición porque no hay ninguna edición para almacenar.",
- "payload failed": "No se puede almacenar la sesión de edición.",
- "payload too large": "La sesión de edición supera el límite de tamaño y no se puede almacenar.",
- "resume edit session warning": "La reanudación de la sesión de edición puede sobrescribir los cambios no confirmados existentes. ¿Quiere continuar?",
- "resume failed": "No se pudo reanudar la sesión de edición.",
- "resume latest.v2": "Reanudar la última sesión de edición",
- "resuming edit session": "Reanudando la sesión de edición...",
- "show edit session": "Show Edit Sessions",
- "store current.v2": "Almacenar sesión de edición actual",
- "storing edit session": "Almacenando sesión de edición..."
- },
- "vs/workbench/contrib/editSessions/browser/editSessionsViews": {
- "confirm delete": "Are you sure you want to permanently delete the edit session with ref {0}? You cannot undo this action.",
- "edit sessions data": "All Sessions",
- "open file": "Open File",
- "workbench.editSessions.actions.delete": "Delete Edit Session",
- "workbench.editSessions.actions.resume": "Resume Edit Session"
- },
- "vs/workbench/contrib/editSessions/browser/editSessionsWorkbenchService": {
- "account preference": "Iniciar sesión para usar Editar sesiones",
- "choose account placeholder": "Seleccione una cuenta con la que iniciar sesión",
- "clear data confirm": "Sí",
- "delete all edit sessions": "Elimine todas las sesiones de edición almacenadas de la nube.",
+ "continueEditSessionItem.builtin": "Integrado",
+ "continueEditSessionItem.openInLocalFolder.v2": "Abrir en carpeta local",
+ "continueEditSessionPick.title.v2": "Seleccione un entorno de desarrollo para seguir trabajando en {0} en",
+ "continueOn.installAdditional": "Instalar opciones adicionales del entorno de desarrollo",
+ "continueOnCloudChanges": "Controla si se pide al usuario que almacene los cambios de trabajo en la nube al usar Continuar trabajando en.",
+ "continueOnCloudChanges.off": "No almacene los cambios de trabajo en la nube con Continuar trabajando en, a menos que el usuario ya haya activado los Cambios en la nube.",
+ "continueOnCloudChanges.promptForAuth": "Solicite al usuario que inicie sesión para almacenar los cambios de trabajo en la nube con Continuar trabajando en.",
+ "continueWorkingOn.existingLocalFolder": "Seguir trabajando en la carpeta local existente",
+ "editSessionPartialMatch": "Tiene cambios en el trabajo pendientes en la nube para esta área de trabajo. ¿Desea reanudarlos?",
+ "learnMoreTooltip": "Obtener más información",
+ "no cloud changes": "No hay cambios para reanudar desde la nube.",
+ "no cloud changes for ref": "No se han podido reanudar los cambios desde la nube para el Id. {0}.",
+ "no working changes to store": "El almacenamiento de los cambios de trabajo ha sido omitido en la nube, ya que no hay ediciones que almacenar.",
+ "payload failed": "Sus cambios de trabajo no pueden ser almacenados.",
+ "payload too large": "Los cambios en el trabajo exceden el límite de tamaño y no pueden ser almacenados.",
+ "resume": "Reanudar",
+ "resume cloud changes": "Reanudar cambios de datos serializados",
+ "resume edit session warning 1": "Al reanudar los cambios en el trabajo desde la nube, se sobrescribirá {0}. ¿Desea continuar?",
+ "resume edit session warning many": "Al reanudar los cambios en el trabajo desde la nube, se sobrescribirán los siguientes {0} archivos. ¿Desea continuar?",
+ "resume failed": "No se han podido reanudar los cambios en el trabajo desde la nube.",
+ "resume latest cloud changes": "Reanudar los cambios más recientes de la nube",
+ "resuming working changes window": "Reanudando cambios de trabajo...",
+ "show cloud changes": "Mostrar cambios en la nube",
+ "show log": "Mostrar registro",
+ "store working changes": "Almacenamiento de los cambios en el trabajo...",
+ "store working changes in cloud": "Almacenar los cambios en el trabajo en la nube",
+ "store your working changes": "Almacenamiento de sus cambios en el trabajo...",
+ "storing working changes": "Almacenamiento de los cambios en el trabajo...",
+ "with cloud changes": "Sí, continuar con mis cambios de trabajo",
+ "without cloud changes": "No, continuar sin mis cambios de trabajo"
+ },
+ "vs/workbench/contrib/editSessions/browser/editSessionsStorageService": {
+ "choose account placeholder": "Seleccione una cuenta para almacenar sus cambios de trabajo en la nube",
+ "choose account read placeholder": "Seleccione una cuenta para restaurar sus cambios de trabajo de la nube",
+ "delete all cloud changes": "Elimine todos los datos almacenados de la nube.",
"others": "Otros",
- "reset auth.v2": "Sign Out of Edit Sessions",
+ "reset auth.v3": "Desactivar los cambios en la nube.",
+ "sign in": "Activar los cambios en la nube...",
+ "sign in badge": "Activar los cambios en la nube... (1)",
"sign in using account": "Iniciar sesión con {0}",
- "sign out of edit sessions clear data prompt": "¿Quiere cerrar la sesión de edición?",
+ "sign out of cloud changes clear data prompt": "¿Desea desactivar el almacenamiento de los cambios en el trabajo en la nube?",
"signed in": "Sesión iniciada"
},
+ "vs/workbench/contrib/editSessions/browser/editSessionsViews": {
+ "cloud changes": "Cambios en la nube",
+ "compare changes": "Comparar cambios",
+ "confirm delete all": "¿Está seguro de que desea eliminar permanentemente todos los cambios almacenados de la nube?",
+ "confirm delete all detail": " Esta acción no se puede deshacer.",
+ "confirm delete detail.v2": " Esta acción no se puede deshacer.",
+ "confirm delete.v2": "¿Está seguro de que desea eliminar permanentemente los cambios de trabajo con referencia {0}?",
+ "local copy": "Copia local",
+ "noStoredChanges": "No tiene cambios almacenados en la nube para mostrar.\r\n{0}",
+ "open file": "Abrir archivo",
+ "storeWorkingChangesTitle": "Almacenar cambios de trabajo",
+ "workbench.editSessions.actions.delete.v2": "Eliminar cambios de trabajo",
+ "workbench.editSessions.actions.deleteAll": "Borrar todos los cambios en el trabajo de la nube",
+ "workbench.editSessions.actions.resume.v2": "Reanudar cambios de trabajo",
+ "workbench.editSessions.actions.store.v2": "Almacenar cambios de trabajo"
+ },
"vs/workbench/contrib/editSessions/common/editSessions": {
- "edit sessions": "Edit Sessions",
- "editSessionViewIcon": "View icon of the edit sessions view.",
- "session sync": "Editar sesiones"
+ "cloud changes": "Cambios en la nube",
+ "editSessionViewIcon": "Ver icono de la vista de los cambios en la nube"
+ },
+ "vs/workbench/contrib/editSessions/common/editSessionsLogService": {
+ "cloudChangesLog": "Cambios en la nube"
+ },
+ "vs/workbench/contrib/editTelemetry/browser/editStats/aiStatsStatusBar": {
+ "aiStats.statusBar.configure": "Configurar",
+ "aiStatsStatusBarHeader": "Estadísticas de uso de la IA",
+ "inlineSuggestions": "Sugerencias insertadas",
+ "inlineSuggestionsStatusBar": "Barra de estado de sugerencias insertadas",
+ "text1": "IA frente al promedio de escritura: {0}",
+ "text2": "Sugerencias insertadas aceptadas hoy: {0}"
+ },
+ "vs/workbench/contrib/editTelemetry/browser/editTelemetry.contribution": {
+ "editTelemetry": "Editar telemetría",
+ "editor.aiStats.enabled": "Controla si se activan las estadísticas de IA en el editor. El indicador representa la cantidad promedio de código insertado por la IA en comparación con la escritura manual durante un período de 24 horas.",
+ "telemetry.editStats.detailed.enabled": "Controla si se debe habilitar la telemetría para las estadísticas de edición detalladas (solo envía estadísticas si está habilitada la telemetría general).",
+ "telemetry.editStats.enabled": "Controla si se debe habilitar la telemetría para editar estadísticas (solo envía estadísticas si está habilitada la telemetría general).",
+ "telemetry.editStats.showDecorations": "Controla si se van a mostrar decoraciones para editar la telemetría.",
+ "telemetry.editStats.showStatusBar": "Controla si se va a mostrar la barra de estado para editar la telemetría."
},
"vs/workbench/contrib/emmet/browser/actions/expandAbbreviation": {
"expandAbbreviationAction": "Emmet: Expandir abreviatura",
@@ -5438,8 +9114,12 @@
"disable": "Deshabilitar",
"disable workspace": "Deshabilitar (área de trabajo)",
"errors": "{0} errores no detectados",
+ "extensionActivating": "La extensión se está activando...",
"languageActivation": "Activado por {1} porque ha abierto un archivo de {0}",
+ "requests count": "Uso de{0}: solicitudes de {1} ",
+ "requests count title": "La última solicitud fue {0}.",
"runtimeExtensions": "Extensiones en tiempo de ejecución",
+ "session requests count": ", {0} Solicitudes (sesión)",
"showRuntimeExtensions": "Mostrar extensiones en ejecución",
"starActivation": "Activación por {0} al iniciar",
"startupFinishedActivation": "Activado por {0} después de que se haya completado el inicio",
@@ -5452,164 +9132,139 @@
"vs/workbench/contrib/extensions/browser/configBasedRecommendations": {
"exeBasedRecommendation": "Se recomienda esta extensión debido a la configuración actual del área de trabajo"
},
- "vs/workbench/contrib/extensions/browser/dynamicWorkspaceRecommendations": {
- "dynamicWorkspaceRecommendation": "Esta extensión puede interesarle porque es popular entre los usuarios del repositorio de {0}."
- },
"vs/workbench/contrib/extensions/browser/exeBasedRecommendations": {
"exeBasedRecommendation": "Se recomienda esta extensión porque tiene instalado {0}."
},
"vs/workbench/contrib/extensions/browser/extensionEditor": {
- "JSON Validation": "Validación JSON ({0})",
+ "Changelog title": "Registro de cambios",
+ "Install Info": "Instalación",
"Marketplace": "Marketplace",
- "Marketplace Info": "Más información",
- "Notebook id": "Id.",
- "Notebook mimetypes": "Tipos de MIME",
- "Notebook name": "Nombre",
- "Notebook renderer name": "Nombre",
- "NotebookRenderers": "Representadores de bloc de notas ({0})",
- "Notebooks": "Blocs de notas ({0})",
- "activation": "Hora de activación",
- "activation events": "Eventos de activación ({0})",
- "authentication": "Autenticación ({0})",
- "authentication.id": "Identificador",
- "authentication.label": "Etiqueta",
+ "Marketplace Info": "Marketplace",
+ "Readme title": "Léame",
+ "Version": "Versión",
"builtin": "Integrada",
+ "cache size": "Caché",
"categories": "Categorías",
"changelog": "Registro de cambios",
"changelogtooltip": "Historial de actualización de extensiones renderizado desde el archivo 'changelog.MD' ",
- "codeActions": "Acciones de código ({0})",
- "codeActions.description": "Descripción",
- "codeActions.kind": "Tipo",
- "codeActions.languages": "Idiomas",
- "codeActions.title": "Título",
- "colorId": "ID.",
- "colorThemes": "Temas de color ({0})",
- "colors": "Colores ({0})",
- "command name": "Nombre",
- "commands": "Comandos ({0})",
- "contributions": "Contribuciones de características",
- "contributionstooltip": "Enumera las contribuciones de esta extensión a VS Code",
- "customEditors": "Editores personalizados ({0})",
- "customEditors filenamePattern": "Patrón de nombre de archivo",
- "customEditors priority": "Prioridad",
- "customEditors view type": "Tipo de vista",
- "debugger name": "Nombre",
- "debugger type": "Tipo",
- "debuggers": "Depuradores ({0})",
- "default": "Predeterminado",
- "defaultDark": "Oscuro por defecto",
- "defaultHC": "Contraste alto por defecto",
- "defaultLight": "Claro por defecto",
"dependencies": "Dependencias",
"dependenciestooltip": "Enumera las extensiones de las que depende esta extensión",
- "description": "Descripción",
"details": "Detalles",
"detailstooltip": "Detalles de la extensión, mostrados en el archivo 'README.md' de la extensión",
+ "disk space used": "Tamaño de caché",
"extension pack": "Paquete de extensión ({0})",
"extension version": "Versión de la extensión",
"extensionpack": "Paquete de extensión",
"extensionpacktooltip": "Enumerar las extensiones que se instalarán junto con esta extensión",
- "file extensions": "Extensiones de archivo",
- "fileMatch": "Coincidencia de archivo",
+ "features": "Características",
+ "featurestooltip": "Enumera las características aportadas por esta extensión",
"find": "Buscar",
"find next": "Buscar siguiente",
"find previous": "Buscar anterior",
- "grammar": "Gramática",
- "iconThemes": "Temas de icono ({0})",
"id": "Identificador",
- "install count": "Número de instalaciones",
- "keyboard shortcuts": "Métodos abreviados de teclado",
- "language id": "ID.",
- "language name": "Nombre",
- "languages": "Lenguajes ({0})",
+ "issues": "Incidencias",
+ "last released": "Última versión",
"last updated": "Última actualización",
"license": "Licencia",
- "localizations": "Localizaciones ({0}) ",
- "localizations language id": "Id. de lenguaje",
- "localizations language name": "Nombre de idioma",
- "localizations localized language name": "Nombre de idioma (localizado)",
- "menuContexts": "Contextos de menú",
- "messages": "Mensajes ({0})",
"name": "Nombre de la extensión",
"noChangelog": "No hay ningún objeto CHANGELOG disponible.",
- "noContributions": "No hay contribuciones.",
"noDependencies": "No hay dependencias.",
"noReadme": "No hay ningún archivo LÉAME disponible.",
- "noStatus": "No hay ningún estado disponible.",
- "not yet activated": "Aún no se ha activado.",
- "preRelease": "Versión preliminar",
+ "other": "Local",
"preview": "Vista Previa",
- "productThemes": "Temas de icono del producto ({0})",
- "publisher": "Editor",
- "publisher verified tooltip": "Este editor ha comprobado la propiedad de {0}",
- "rating": "Clasificación",
- "release date": "Publicado el",
+ "published": "Publicado",
"repository": "Repositorio",
- "resources": "Recursos de extensión",
- "runtimeStatus": "Estado en tiempo de ejecución",
- "runtimeStatus description": "Estado en tiempo de ejecución de la extensión",
- "schema": "Esquema",
- "setting name": "Nombre",
- "settings": "Configuración ({0})",
- "snippets": "Fragmentos de código",
- "startup": "Inicio",
- "uncaught errors": "Errores no detectados ({0})",
- "view container id": "ID.",
- "view container location": "Donde",
- "view container title": "Título",
- "view id": "ID.",
- "view location": "Donde",
- "view name": "Nombre",
- "viewContainers": "Ver contenedores ({0})",
- "views": "Vistas ({0})"
+ "resources": "Recursos",
+ "size": "Tamaño",
+ "size when installed": "Tamaño cuando se instala",
+ "source": "Origen",
+ "vsix": "VSIX"
+ },
+ "vs/workbench/contrib/extensions/browser/extensionEnablementWorkspaceTrustTransitionParticipant": {
+ "restartExtensionHost.reason": "Cambiando la confianza del área de trabajo"
+ },
+ "vs/workbench/contrib/extensions/browser/extensionFeaturesTab": {
+ "accessExtensionFeature": "Habilitar característica '{0}'",
+ "activation": "Activación",
+ "cancel": "Cancelar",
+ "chartDescription": "Hubo {0} {1} solicitudes de esta extensión en los últimos 30 días.",
+ "disableAccessExtensionFeatureMessage": "¿Quiere revocar la extensión '{0}' para acceder a la característica '{1}'?",
+ "enable": "Permitir acceso",
+ "enableAccessExtensionFeatureMessage": "¿Le gustaría permitir a la extensión '{0}' acceder a la característica '{1}'?",
+ "extension features list": "Características de extensión",
+ "grant": "Permitir acceso",
+ "label": "{0} Uso ",
+ "messaages": "Mensajes ({0})",
+ "noFeatures": "No ha contribuido ninguna característica.",
+ "revoke": "Revocar acceso",
+ "revoked": "Sin acceso",
+ "runtime": "Estado en tiempo de ejecución",
+ "uncaught errors": "Errores no detectados ({0})"
},
"vs/workbench/contrib/extensions/browser/extensionRecommendationNotificationService": {
+ "donotShowAgain": "No volver a mostrar para este repositorio",
+ "donotShowAgainExtension": "No volver a mostrar para estas extensiones",
+ "donotShowAgainExtensionSingle": "No volver a mostrar para esta extensión",
+ "exeRecommended": "Tiene {0} instalado en el sistema. ¿Desea instalar el {1} recomendado para él?",
+ "extensionFromPublisher": "'{0}' extensión de {1}",
+ "extensionsFromMultiplePublishers": "extensiones de {0}, {1} y otros",
+ "extensionsFromPublisher": "extensiones de {0}",
+ "extensionsFromPublishers": "extensiones de {0} y {1}",
"ignoreAll": "Sí, ignorar todo",
"ignoreExtensionRecommendations": "¿Quiere ignorar todas las recomendaciones de extensión?",
"install": "Instalar",
"install and do no sync": "Instalar (no sincronizar)",
- "neverShowAgain": "No volver a mostrar",
"no": "No",
+ "recommended": "¿Desea instalar la {0}, recomendada para {1}?",
"show recommendations": "Mostrar recomendaciones",
- "singleExtensionRecommended": "Se recomienda la extensión \"{0}\" para este repositorio. ¿Quiere instalar?",
- "workspaceRecommended": "¿Quiere instalar las extensiones recomendadas para este repositorio?"
+ "this repository": "este repositorio"
},
"vs/workbench/contrib/extensions/browser/extensions.contribution": {
"InstallFromVSIX": "Instalar desde VSIX...",
"InstallVSIXAction.reloadNow": "Recargar ahora",
- "InstallVSIXAction.success": "Se ha completado la instalación de la extensión {0} de VSIX.",
- "InstallVSIXAction.successReload": "Se ha completado la instalación de la extensión {0} de VSIX. Recargue Visual Studio Code para habilitarla.",
+ "InstallVSIXAction.restartExtensions": "Reiniciar extensiones",
+ "InstallVSIXAction.successNoReload": "Se ha completado la instalación de la extensión.",
+ "InstallVSIXAction.successReload": "Se ha completado la instalación de la extensión. Recargue Visual Studio Code para habilitarla.",
+ "InstallVSIXAction.successRestart": "Se ha completado la instalación de la extensión. Reinicie las extensiones para habilitarla.",
+ "InstallVSIXs.successNoReload": "Se completó la instalación de las extensiones.",
+ "InstallVSIXs.successReload": "Se completó la instalación de las extensiones. Recargue Visual Studio Code para habilitarlas.",
+ "InstallVSIXs.successRestart": "Se completó la instalación de las extensiones. Reinicie las extensiones para habilitarlas.",
"all": "Todas las extensiones",
- "builtin": "\"{0}\" es una extensión integrada y no se puede instalar.",
+ "autoRestart": "Si se activa, las extensiones se reiniciarán automáticamente después de una actualización si la ventana no está en el foco. Puede que se pierdan datos si tiene Notebooks o editores personalizados abiertos.",
+ "builtin": "\"{0}\" es una extensión integrada y no se puede desinstalar.",
"builtin filter": "Integrada",
"checkForUpdates": "Buscar actualizaciones de la extensión",
"clearExtensionsSearchResults": "Borrar resultados de la búsqueda de extensiones",
- "configure auto updating extensions": "Actualizar extensiones automáticamente",
- "configureExtensionsAutoUpdate.all": "Todas las extensiones",
- "configureExtensionsAutoUpdate.enabled": "Solo las extensiones habilitadas",
- "configureExtensionsAutoUpdate.none": "Ninguna",
"disableAll": "Deshabilitar todas las extensiones instaladas",
"disableAllWorkspace": "Deshabilitar todas las extensiones instaladas para esta área de trabajo",
"disableAutoUpdate": "Deshabilitar la actualización automática de todas las extensiones",
+ "disablePreRleaseLabel": "Cambiar a la versión de lanzamiento",
"disabled filter": "Deshabilitada",
+ "download VSIX": "Descargar VSIX",
+ "download pre-release": "Descargar VSIX de versión preliminar",
+ "download specific version": "Descargar VSIX de versión específica...",
"enableAll": "Habilitar todas las extensiones",
"enableAllWorkspace": "Habilitar todas las extensiones para esta área de trabajo",
"enableAutoUpdate": "Habilitar la actualización automática de todas las extensiones",
+ "enablePreRleaseLabel": "Cambiar a la versión preliminar",
"enabled": "Solo las extensiones habilitadas",
"enabled filter": "Habilitada",
"extension": "Extensión",
+ "extension updates filter": "Actualizaciones",
"extensionInfoDescription": "Descripción: {0}",
"extensionInfoId": "ID: {0}",
"extensionInfoName": "Nombre: {0}",
"extensionInfoPublisher": "Editor: {0}",
"extensionInfoVSMarketplaceLink": "Vínculo de VS Marketplace: {0}",
"extensionInfoVersion": "Versión: {0}",
+ "extensionUpdates": "Mostrar actualizaciones de la extensión",
"extensions": "Extensiones",
"extensions.affinity": "Configura una extensión para que se ejecute en un proceso de host de extensión diferente.",
"extensions.autoUpdate": "Controla el comportamiento de actualización automática de las extensiones. Las actualizaciones se obtienen de un servicio en línea de Microsoft.",
- "extensions.autoUpdate.enabled": "Descarga e instala las actualizaciones de forma automática solo para las extensiones habilitadas. Las extensiones deshabilitadas no se actualizarán automáticamente.",
+ "extensions.autoUpdate.enabled": "Descarga e instala las actualizaciones de forma automática solo para las extensiones habilitadas.",
"extensions.autoUpdate.false": "Las extensiones no se actualizan automáticamente.",
"extensions.autoUpdate.true": "Descarga e instala las actualizaciones de forma automática para todas las extensiones.",
+ "extensions.gallery.serviceUrl": "Configurar la dirección URL del servicio de Marketplace a la que conectarse",
"extensions.supportUntrustedWorkspaces": "Reemplazar el soporte de área de trabajo no confiable de una extensión. Las extensiones que usen \"true\" estarán siempre habilitadas. Las extensiones que usen \"limited\" estarán siempre habilitadas, y la extensión ocultará la funcionalidad que requiera confianza. Las extensiones que usen \"false\" solo se habilitarán cuando el área de trabajo sea de confianza.",
"extensions.supportUntrustedWorkspaces.false": "La extensión sólo se activará cuando el área de trabajo sea de confianza.",
"extensions.supportUntrustedWorkspaces.limited": "La extensión siempre estará habilitada, y la extensión ocultará la funcionalidad que requiere confianza.",
@@ -5617,12 +9272,16 @@
"extensions.supportUntrustedWorkspaces.true": "La extensión estará siempre habilitada.",
"extensions.supportUntrustedWorkspaces.version": "Define la versión de la extensión a la que debe aplicarse la anulación. Si no se especifica, la anulación se aplicará independientemente de la versión de la extensión.",
"extensions.supportVirtualWorkspaces": "Reemplazar el soporte de áreas de trabajo virtuales de una extensión.",
+ "extensions.verifySignature": "Cuando se habilita, se comprueba que las extensiones se firmen antes de instalarse.",
"extensionsCheckUpdates": "Cuando se habilita, comprueba automáticamente las extensiones para las actualizaciones. Si una extensión tiene una actualización, se marca como obsoleta en la vista de extensiones. Las actualizaciones se obtienen de un servicio en línea de Microsoft.",
"extensionsCloseExtensionDetailsOnViewChange": "Cuando esta opción está habilitada, los editores con detalles de la extensión se cerrarán automáticamente al salir de la vista de extensiones. ",
"extensionsConfigurationTitle": "Extensiones",
+ "extensionsDeferredStartupFinishedActivation": "Cuando se habilita, las extensiones que declaran el evento de activación \"onStartupFinished\" se activarán después de un tiempo de espera.",
"extensionsIgnoreRecommendations": "Cuando esta opción está habilitada, las notificaciones para las recomendaciones de la extensión no se mostrarán.",
+ "extensionsInQuickAccess": "Cuando está habilitada, se pueden buscar extensiones a través de Acceso rápido e informar de problemas desde allí.",
+ "extensionsRequestTimeout": "Controla el tiempo de expiración en milisegundos para las solicitudes HTTP realizadas al obtener extensiones desde el Marketplace",
"extensionsShowRecommendationsOnlyOnDemand_Deprecated": "Esta configuración está en desuso. Use la configuración extensions.ignoreRecommendations para controlar las notificaciones de recomendación. Utilice las acciones de visibilidad de la vista Extensiones para ocultar la vista de recomendadas de forma predeterminada.",
- "extensionsUseUtilityProcess": "Cuando se habilita, el host de extensión se iniciará mediante la nueva API UtilityProcess Electron.",
+ "extensionsSupportNodeGlobalNavigator": "Cuando está habilitado, el objeto navegador de Node.js queda expuesto en el ámbito global.",
"extensionsWebWorker": "Habilite el host de extensiones de trabajo web.",
"extensionsWebWorker.auto": "El host de extensiones del rol de trabajo se iniciará cuando lo requiera una extensión Web.",
"extensionsWebWorker.false": "Nunca se iniciará el host de extensiones del rol de trabajo.",
@@ -5630,33 +9289,36 @@
"featured filter": "Destacadas",
"filter by category": "Categoría",
"filterExtensions": "Filtrar las extensiones...",
+ "focusExtensions": "Centrarse en la vista Extensiones",
"handleUriConfirmedExtensions": "Cuando una extensión aparece aquí, no se mostrará un mensaje de confirmación cuando esa extensión gestione un URI.",
"id required": "Se requiere el identificador de extensión.",
"importKeyboardShortcutsFroms": "Migrar métodos abreviados de teclado desde...",
+ "install": "Instalar",
"install button": "Instalar",
+ "install installAndDonotSync": "Instalar (no sincronizar)",
"installButton": "&&Instalar",
+ "installExtensionFromLocation": "Instalar extensión desde la ubicación...",
"installExtensionQuickAccessHelp": "Instalar o buscar extensiones",
"installExtensionQuickAccessPlaceholder": "Escriba el nombre de una extensión para instalarla o buscarla.",
"installExtensions": "Instalar extensiones",
- "installFromLocation": "Instalar extensión web desde la ubicación",
+ "installFromLocation": "Instalar extensión desde la ubicación",
"installFromLocationPlaceHolder": "Ubicación de la extensión web",
"installFromVSIX": "Instalar desde VSIX",
+ "installPrereleaseAndDonotSync": "Instalar versión preliminar (no sincronizar)",
"installVSIX": "Instalar la extensión VSIX",
- "installWebExtensionFromLocation": "Instalar extensión web...",
"installWorkspaceRecommendedExtensions": "Instalar las extensiones recomendadas del área de trabajo",
"installed filter": "Instalada",
+ "installedExtensions": "Mostrar extensiones instaladas",
"manageExtensionsHelp": "Administrar extensiones",
"manageExtensionsQuickAccessPlaceholder": "Presione Entrar para administrar las extensiones.",
"miPreferencesExtensions": "&&Extensiones",
"miViewExtensions": "E&&xtensiones",
- "miimportKeyboardShortcutsFrom": "&&Migrar métodos abreviados de teclado desde...",
"most popular filter": "Más populares",
"most popular recommended": "Recomendada",
"noUpdatesAvailable": "Todas las extensiones están actualizadas.",
"none": "Ninguna",
"notFound": "La extensión '{0}' no se encontró.",
"notInstalled": "La extensión \"{0}\" no está instalada. Asegúrese de utilizar el identificador de extensión completo, incluido el publicador, p. ej.: ms-vscode.csharp.",
- "outdated filter": "Obsoleta",
"recently published filter": "Publicadas recientemente",
"recentlyPublishedExtensions": "Mostrar las extensiones publicadas recientemente",
"refreshExtension": "Actualizar",
@@ -5667,43 +9329,55 @@
"showEnabledExtensions": "Mostrar extensiones habilitadas",
"showExtensions": "Extensiones",
"showFeaturedExtensions": "Mostrar las extensiones destacadas",
- "showInstalledExtensions": "Mostrar extensiones instaladas",
"showLanguageExtensionsShort": "Extensiones del lenguaje",
- "showOutdatedExtensions": "Mostrar extensiones obsoletas",
"showPopularExtensions": "Mostrar extensiones conocidas",
"showRecommendedExtensions": "Mostrar extensiones recomendadas",
"showRecommendedKeymapExtensionsShort": "Asignaciones de teclado",
"showWorkspaceUnsupportedExtensions": "Mostrar extensiones no admitidas por el área de trabajo",
- "sort by date": "Fecha de publicación",
+ "signInToMarketplace": "Iniciar sesión para acceder al marketplace de extensiones",
"sort by installs": "Número de instalaciones",
"sort by name": "Nombre",
+ "sort by published date": "Fecha de publicación",
"sort by rating": "Clasificación",
+ "sort by update date": "Fecha de actualización",
"sorty by": "Ordenar por",
+ "trustedPublishers": "Administrar publicadores de extensiones de confianza",
+ "trustedPublishersPlaceholder": "Elegir los editores en los que confiar",
"updateAll": "Actualizar todas las extensiones",
"workbench.extensions.action.addExtensionToWorkspaceRecommendations": "Añadir a las recomendaciones del área de trabajo",
"workbench.extensions.action.addToWorkspaceFolderIgnoredRecommendations": "Agregar extensión a la carpeta del área de trabajo de recomendaciones omitidas",
"workbench.extensions.action.addToWorkspaceFolderRecommendations": "Agregar extensión a la carpeta del área de trabajo de recomendaciones",
"workbench.extensions.action.addToWorkspaceIgnoredRecommendations": "Agregar extensión a las recomendaciones omitidas del área de trabajo",
"workbench.extensions.action.addToWorkspaceRecommendations": "Agregar extensión a las recomendaciones del área de trabajo",
- "workbench.extensions.action.configure": "Configuración de la extensión",
+ "workbench.extensions.action.changeAccountPreference": "Preferencias de la cuenta",
+ "workbench.extensions.action.configure": "Configuración",
+ "workbench.extensions.action.configureKeybindings": "Métodos abreviados de teclado",
"workbench.extensions.action.copyExtension": "Copiar",
"workbench.extensions.action.copyExtensionId": "Copiar Id. de extensión",
+ "workbench.extensions.action.copyLink": "Copiar vínculo",
"workbench.extensions.action.ignoreRecommendation": "Omitir recomendación",
+ "workbench.extensions.action.manageTrustedPublishers": "Administrar publicadores de extensiones de confianza",
"workbench.extensions.action.removeExtensionFromWorkspaceRecommendations": "Quitar de las recomendaciones del área de trabajo",
+ "workbench.extensions.action.toggleApplyToAllProfiles": "Aplicar extensión a todos los perfiles",
"workbench.extensions.action.toggleIgnoreExtension": "Sincronizar esta extensión",
"workbench.extensions.action.undoIgnoredRecommendation": "Deshacer la recomendación ignorada",
"workbench.extensions.installExtension.arg.decription": "Identificador de extensión o URI de recurso VSIX",
"workbench.extensions.installExtension.description": "Instalar la extensión dada",
"workbench.extensions.installExtension.option.context": "Contexto de la instalación. Este es un objeto JSON que se puede usar para pasar cualquier información a los controladores de instalación. Es decir, \"{skip Passthrough: true}\" omitirá abrir el tutorial tras la instalación.",
"workbench.extensions.installExtension.option.donotSync": "Cuando está habilitada, VS Code no sincronizar esta extensión cuando la sincronización de configuración está activada.",
+ "workbench.extensions.installExtension.option.enable": "Cuando la opción está habilitada, la extensión se habilitará si está instalada pero deshabilitada. Si la extensión ya está habilitada, esto no tiene efecto.",
"workbench.extensions.installExtension.option.installOnlyNewlyAddedFromExtensionPackVSIX": "Cuando se activa, VS Code se instala sólo las extensiones recién agregadas del paquete de extensiones VSIX. Esta opción sólo se tiene en cuenta al instalar un VSIX.",
"workbench.extensions.installExtension.option.installPreReleaseVersion": "Cuando está habilitada, VS Code instala la versión preliminar de la extensión, si está disponible.",
+ "workbench.extensions.installExtension.option.justification": "Justificación para instalar la extensión. Se trata de una cadena o un objeto que se puede usar para pasar cualquier información a los controladores de instalación. Por ejemplo `{reason: 'This extension wants to open a URI', action: 'Open URI'}` mostrará un cuadro de mensaje con el motivo y la acción tras la instalación.",
"workbench.extensions.search.arg.name": "Consulta para usar en la búsqueda",
"workbench.extensions.search.description": "Buscar una extensión específica",
"workbench.extensions.uninstallExtension.arg.name": "Identificador de la extensión para desinstalar",
"workbench.extensions.uninstallExtension.description": "Desinstale la extensión correspondiente",
"workspace unsupported filter": "Área de trabajo no admitida"
},
+ "vs/workbench/contrib/extensions/browser/extensions.web.contribution": {
+ "runtimeExtension": "Extensiones en ejecución"
+ },
"vs/workbench/contrib/extensions/browser/extensionsActions": {
"Cannot be enabled": "Esta extensión está deshabilitada porque no se admite en {0} para la Web.",
"Defined to run in desktop": "Esta extensión está deshabilitada porque está definida para ejecutarse solo en {0} para el escritorio.",
@@ -5711,42 +9385,39 @@
"Install in remote server to enable": "Esta extensión está deshabilitada en este área de trabajo porque está definida para ejecutarse en el host de extensión remota. Instale la extensión en \"{0}\" para habilitarla.",
"Install language pack also in remote server": "Instale la extensión del paquete de idioma en \"{0}\" para habilitarla también aquí.",
"Install language pack also locally": "Instale la extensión del paquete de idioma de forma local para habilitarla también aquí.",
- "InstallVSIXAction.reloadNow": "Recargar ahora",
- "ManageExtensionAction.uninstallingTooltip": "Desinstalando",
"OpenExtensionsFile.failed": "No se puede crear el archivo \"extensions.json\" dentro de la carpeta \".vscode\" ({0}).",
- "ReinstallAction.success": "La reinstalación de la extensión {0} se ha completado.",
- "ReinstallAction.successReload": "Vuelva a cargar Visual Studio Code para completar la reinstalación de la extensión {0}.",
- "Show alternate extension": "Abrir {0}",
+ "Show alternate extension": "&&Abrir {0}",
"Uninstalling": "Desinstalando",
"VS Code for Web": "{0} para la Web",
+ "auto update message": "[Revise la extensión]({0}) y actualícela manualmente.",
"cancel": "Cancelar",
"cannot be installed": "La extensión \"{0}\" no está disponible en {1}. Haga clic en \"Más información\" para obtener más detalles.",
- "check logs": "Consulte el [registro] ({0}) para obtener más detalles.",
+ "check logs": "Consulte el [registro]({0}) para obtener más detalles.",
"close": "Cerrar",
- "configure in settings": "Configuración de valores",
+ "configure in settings": "&&Opciones de configuración",
"configureWorkspaceFolderRecommendedExtensions": "Configurar extensiones recomendadas (Carpeta del área de trabajo)",
"configureWorkspaceRecommendedExtensions": "Configurar extensiones recomendadas (área de trabajo)",
"current": "actual",
+ "dependencies": "Mostrar dependencias",
"deprecated message": "Esta extensión está en desuso porque ya no se mantiene.",
"deprecated tooltip": "Esta extensión está en desuso porque ya no se mantiene.",
"deprecated with alternate extension message": "Esta extensión está en desuso. Use la extensión {0} en su lugar.",
"deprecated with alternate extension tooltip": "Esta extensión está en desuso. Use la extensión {0} en su lugar.",
"deprecated with alternate settings message": "Esta extensión está en desuso, ya que esta funcionalidad ahora está integrada en VS Code.",
"deprecated with alternate settings tooltip": "Esta extensión está en desuso, ya que esta funcionalidad ahora está integrada en VS Code. Configure estos {0} para usar esta funcionalidad.",
- "disableAction": "Deshabilitar",
+ "disableAutoUpdate": "Actualizaciones automáticas deshabilitadas para",
"disableForWorkspaceAction": "Deshabilitar (área de trabajo)",
"disableForWorkspaceActionToolTip": "Deshabilitar esta extensión solo en esta área de trabajo",
"disableGloballyAction": "Deshabilitar",
"disableGloballyActionToolTip": "Deshabilitar esta extensión",
"disabled": "Deshabilitado",
+ "disabled - not allowed": "Esta extensión está deshabilitada porque {0}",
"disabled because of virtual workspace": "Esta extensión se ha desactivado porque no es compatible con las áreas de trabajo virtuales.",
"disabled by environment": "El entorno deshabilita esta extensión.",
- "do no sync": "No sincronizar",
"do not sync": "No sincronizar esta extensión",
"download": "Pruebe a descargar de forma manual...",
- "enable locally": "Vuelva a cargar Visual Studio Code para habilitar esta extensión localmente.",
- "enable remote": "Vuelva a cargar Visual Studio Code para habilitar esta extensión en {0}.",
- "enableAction": "Habilitar",
+ "enableAutoUpdate": "Actualizaciones automáticas habilitadas para",
+ "enableAutoUpdateLabel": "Actualización automática",
"enableForWorkspaceAction": "Habilitar (área de trabajo)",
"enableForWorkspaceActionToolTip": "Habilitar esta extensión solo en esta área de trabajo",
"enableGloballyAction": "Habilitar",
@@ -5756,44 +9427,43 @@
"enabled in web worker": "Esta extensión está habilitada en el host de extensión de trabajo web porque prefiere ejecutarla allí.",
"enabled locally": "Esta extensión está habilitada en el host de extensión local porque prefiere ejecutarse allí.",
"enabled remotely": "Esta extensión está habilitada en el host de extensión remota porque prefiere ejecutarse allí.",
- "extension disabled because of dependency": "Esta extensión ha sido desactivada porque depende de una extensión que está desactivada.",
+ "extension disabled because of dependency": "Esta extensión depende de una extensión que está deshabilitada.",
"extension disabled because of trust requirement": "Esta extensión ha sido desactivada porque el espacio de trabajo actual no es de confianza.",
+ "extension disabled because of unification": "Toda la funcionalidad de GitHub Copilot ahora se ofrece desde la extensión de chat de GitHub Copilot. Para optar temporalmente por no usar esta unificación de extensiones, active o desactive la configuración {0}.",
"extension enabled on remote": "La extensión está habilitada en \"{0}\"",
"extension limited because of trust requirement": "Esta extensión tiene características limitadas porque el área de trabajo actual no es de confianza.",
"extension limited because of virtual workspace": "Esta extensión tiene características limitadas porque el espacio de trabajo actual es virtual.",
- "extensionButtonProminentBackground": "Color de fondo del botón para la extensión de acciones que se destacan (por ejemplo, el botón de instalación).",
- "extensionButtonProminentForeground": "Color de primer plano del botón para la extensión de acciones que se destacan (por ejemplo, botón de instalación).",
- "extensionButtonProminentHoverBackground": "Color de fondo del botón al mantener el mouse para la extensión de acciones que se destacan (por ejemplo, el botón de instalación).",
+ "extensionButtonBackground": "Color de fondo del botón para acciones de extensión.",
+ "extensionButtonForeground": "Color de primer plano del botón para acciones de extensión.",
+ "extensionButtonHoverBackground": "Color de fondo del botón al mantener el puntero para acciones de extensión.",
+ "extensionButtonProminentBackground": "Color de fondo del botón para las acciones de extensión que se destacan (por ejemplo, el botón de instalación).",
+ "extensionButtonProminentForeground": "Color de primer plano del botón para las acciones de extensión que se destacan (por ejemplo, botón de instalación).",
+ "extensionButtonProminentHoverBackground": "Color de fondo del botón al mantener el mouse para las acciones de extensión que se destacan (por ejemplo, el botón de instalación).",
+ "extensionButtonSeparator": "Color de separador de botones para acciones de extensión",
"finished installing": "Las extensiones se han instalado correctamente.",
"globally disabled": "El usuario ha deshabilitado esta extensión de forma global.",
- "globally enabled": "Esta extensión está habilitada globalmente.",
"ignoreExtensionRecommendation": "No volver a recomendar esta extensión",
+ "ignoreExtensionUpdatePublisher": "Omitiendo actualizaciones publicadas por {0}.",
"ignored": "Esta extensión se ignora durante la sincronización",
- "incompatible": "No se puede instalar la extensión '{0}' porque no es compatible.",
- "incompatible platform": "La extensión \"{0}\" no está disponible en {1} para {2}.",
"install": "Instalar",
- "install another version": "Instalar otra versión...",
+ "install another version": "Instalar versión específica...",
"install anyway": "Instalar de todos modos",
"install browser": "Instalar en el explorador",
"install confirmation": "¿Está seguro de que quiere instalar '{0}'?",
- "install everywhere tooltip": "Instalar esta extensión en todas las instancias de {0} sincronizadas",
- "install extension in remote": "{0} en {1}",
- "install extension in remote and do not sync": "{0} en {1} ({2})",
- "install extension locally": "{0} Localmente",
- "install extension locally and do not sync": "{0} Localmente ({1})",
+ "install donot verify": "Instalar de todos modos (no comprobar firma)",
"install in remote": "Instalar en {0}",
"install local extensions title": "Instalar las extensiones locales en \"{0}\"",
"install locally": "Instalar localmente",
"install operation": "Error al instalar la extensión \"{0}\".",
"install pre-release": "Instalar versión preliminar",
"install pre-release version": "Instalar la versión preliminar",
+ "install prerelease": "Instalar versión preliminar",
"install previous version": "Instalar la versión específica de la extensión...",
"install release version": "Instalar versión de lanzamiento",
- "install release version message": "¿Desea instalar la versión de lanzamiento?",
"install remote extensions": "Instalar extensiones remotas de forma local",
"install vsix": "Una vez descargado el VSIX de \"{0}\", instálelo manualmente.",
+ "install workspace version": "Instalar extensión de área de trabajo",
"installExtensionComplete": "La instalación de la extensión {0} ha finalizado.",
- "installExtensionCompletedAndReloadRequired": "La instalación de la extensión {0} ha finalizado. Vuelva a cargar Visual Studio Code para habilitarla.",
"installExtensionStart": "La instalación de la extensión {0} ha iniciado. Ahora hay un editor abierto con más detalles sobre esta extensión",
"installRecommendedExtension": "Instalar extensión recomendada",
"installVSIX": "Instalar desde VSIX...",
@@ -5801,25 +9471,27 @@
"installing": "Instalando",
"installing extensions": "Instalando extensiones...",
"learn more": "Más información",
- "learn why": "Información sobre el motivo",
"malicious tooltip": "Se informó de que esta extensión era problemática.",
"manage": "Administrar",
+ "manage access": "Administrar acceso",
"migrate": "Migrar",
"migrate to": "Migrar a {0}",
"migrateExtension": "Migrar",
- "more information": "Más información",
+ "missing from gallery tooltip": "Esta extensión ya no está disponible en El Marketplace de extensiones.",
+ "more information": "&&Más información",
"no local extensions": "No hay ninguna extensión para instalar.",
"no versions": "Esta extensión no tiene otras versiones.",
- "not web tooltip": "La extensión \"{0}\" no está disponible en {1}.",
- "postDisableTooltip": "Vuelva a cargar Visual Studio Code para completar la desinstalación de esta extensión.",
- "postEnableTooltip": "Vuelva a cargar Visual Studio Code para habilitar esta extensión.",
- "postUninstallTooltip": "Vuelva a cargar Visual Studio Code para completar la desinstalación de esta extensión.",
- "postUpdateTooltip": "Recargue Visual Studio Code para habilitar la extensión actualizada.",
+ "not signed": "'{0}' es una extensión de un origen desconocido. ¿Está seguro de que quiere instalarla?",
+ "not signed detail": "La extensión no está firmada.",
+ "not signed tooltip": "Esta extensión no está firmada por el Marketplace de extensiones.",
"pre-release": "versión preliminar",
- "reinstall": "Reinstalar extensión...",
- "reloadAction": "Volver a cargar",
- "reloadRequired": "Recarga necesaria",
- "search recommendations": "Buscar extensiones",
+ "reload window": "Recargar ventana",
+ "report issue": "Notificar problema",
+ "report issue body": "Incluya el siguiente registro \"F1 > Abrir vista... > Compartido' a continuación.\r\n\r\n",
+ "report issue title": "Error de comprobación de firma de extensión: {0}",
+ "restart extensions": "Reiniciar extensiones",
+ "restart product": "Reiniciar para actualizar",
+ "review": "Revisar",
"select and install local extensions": "Instalar las extensiones locales en \"{0}\"...",
"select and install remote extensions": "Instalar extensiones remotas de forma local...",
"select color theme": "Seleccionar tema de color",
@@ -5827,28 +9499,33 @@
"select file icon theme": "Seleccionar tema de icono de archivo",
"select product icon theme": "Seleccione Tema del icono del producto",
"selectExtension": "Seleccione la extensión",
- "selectExtensionToReinstall": "Seleccione una extensión para reinstalarla",
"selectVersion": "Seleccione la versión que desea instalar",
"settings": "configuración",
"showRecommendedExtension": "Mostrar la extensión recomendada",
- "switch to pre-release version": "Cambiar a la versión preliminar",
- "switch to pre-release version tooltip": "Cambiar a la versión preliminar de esta extensión",
- "switch to release version": "Cambiar a la versión de lanzamiento",
- "switch to release version tooltip": "Cambiar a la versión de lanzamiento de esta extensión",
+ "switchToPreReleaseLabel": "Cambiar a la versión preliminar",
+ "switchToPreReleaseTooltip": "Se cambiará a la versión preliminar y se habilitarán las actualizaciones a la versión más reciente siempre",
"sync": "Sincronizar esta extensión",
"synced": "Esta extensión está sincronizada",
+ "toggleAutoUpdatesForPublisherLabel": "Actualizar todo automáticamente (desde Publisher)",
+ "togglePreRleaseDisableLabel": "Cambiar a la versión de lanzamiento",
+ "togglePreRleaseDisableTooltip": "Esto cambiará y habilitará las actualizaciones de las versiones",
+ "togglePreRleaseLabel": "Versión preliminar",
"undo": "Deshacer",
"uninstallAction": "Desinstalar",
+ "uninstallAll": "Desinstalar (todos los perfiles)",
"uninstallExtensionComplete": "Vuelva a cargar Visual Studio Code para completar la desinstalación de la extensión {0}.",
"uninstallExtensionStart": "Inició la desinstalación de la extensión {0}.",
"uninstalled": "DESINSTALAR",
+ "update": "Actualizar",
"update operation": "Error al actualizar la extensión \"{0}\".",
- "updateAction": "Actualizar",
+ "update product": "Actualizar {0}",
+ "update to": "Actualización a v{0}",
"updateExtensionComplete": "La actualización de la extensión {0} a la versión {1} ha finalizado.",
+ "updateExtensionConsent": "{0}\r\n\r\n¿Desea actualizar la extensión?",
+ "updateExtensionConsentTitle": "Actualizar la extensión {0}",
"updateExtensionStart": "Inició la actualización de la extensión {0} a la versión {1}.",
- "updateToLatestVersion": "Actualizar a {0}",
- "updateToTargetPlatformVersion": "Actualización a la versión {0}",
"updated": "Actualizado",
+ "verification failed": "No se puede instalar la extensión '{0}' porque {1} no puede comprobar la firma de la extensión",
"workbench.extensions.action.clearLanguage": "Borrar idioma para mostrar",
"workbench.extensions.action.setColorTheme": "Configurar tema de color",
"workbench.extensions.action.setDisplayLanguage": "Establecer idioma para mostrar",
@@ -5881,6 +9558,7 @@
"installCountIcon": "Icono que se muestra junto con el número de instalaciones en el editor y la vista de extensiones.",
"installLocalInRemoteIcon": "Icono de la acción para \"Instalar la extensión local en ubicación remota\" en la vista de extensiones.",
"installWorkspaceRecommendedIcon": "Icono de la acción para \"Instalar extensiones recomendadas del área de trabajo\" en la vista de extensiones.",
+ "lockIcon": "Icono que se muestra para las extensiones privadas en la vista de extensiones y el editor.",
"manageExtensionIcon": "Icono de la acción \"Administrar\" en la vista de extensiones.",
"preReleaseIcon": "Icono que se muestra para las extensiones que tienen versiones preliminares en la vista de extensiones y en el editor.",
"ratingIcon": "Icono que se muestra junto con la clasificación en el editor y la vista de extensiones.",
@@ -5893,7 +9571,6 @@
"syncEnabledIcon": "Icono para indicar que una extensión está sincronizada.",
"syncIgnoredIcon": "Icono para indicar que una extensión se omite al sincronizar.",
"trustIcon": "Icono que se muestra con un mensaje de confianza en el área de trabajo en el editor de extensiones.",
- "verifiedPublisher": "Icono usado para el publicador de extensiones comprobado en la vista y el editor de extensiones.",
"warningIcon": "Icono que se muestra con un mensaje de advertencia en el editor de extensiones."
},
"vs/workbench/contrib/extensions/browser/extensionsQuickAccess": {
@@ -5905,37 +9582,54 @@
"vs/workbench/contrib/extensions/browser/extensionsViewer": {
"Unknown Extension": "Extensión desconocida:",
"error": "Error",
- "extension.arialabel": "{0}, {1}, {2}, {3}",
+ "extension.arialabel.deprecated": "En desuso",
+ "extension.arialabel.publisher": "Publicador {0}",
+ "extension.arialabel.rating": "Calificado {0} de 5 estrellas por {1} usuarios",
+ "extension.arialabel.verifiedPublisher": "Editor verificado {0}",
"extensions": "Extensiones"
},
"vs/workbench/contrib/extensions/browser/extensionsViewlet": {
+ "access denied": "Su cuenta no tiene acceso al marketplace de extensiones. Póngase en contacto con el administrador.",
+ "accessDenied": "Acceso denegado al marketplace",
+ "availableUpdates": "Actualizaciones disponibles",
"builtInThemesExtensions": "Temas",
"builtin": "Integrado",
"builtinFeatureExtensions": "Características",
"builtinProgrammingLanguageExtensions": "Lenguajes de programación",
+ "click show": "Haga clic para mostrar",
"deprecated": "En desuso",
"disabled": "Deshabilitado",
"disabledExtensions": "Deshabilitado",
+ "dismiss": "Descartar",
"enabled": "Habilitado",
"enabledExtensions": "Habilitado",
"extensionFound": "Se encontró 1 extensión.",
"extensionFoundInSection": "Se encontró 1 extensión en la sección {0}.",
+ "extensionToReload": "{0} requiere reiniciar",
+ "extensionToUpdate": "{0} requieren actualización",
"extensionsFound": "{0} extensiones encontradas.",
"extensionsFoundInSection": "Se encontraron {0} extensiones en la sección {1}.",
+ "extensionsToReload": "{0} requerir reinicio",
+ "extensionsToUpdate": "{0} requiere actualización",
"install remote in local": "Instalar extensiones remotas de forma local...",
"installed": "Instalado",
- "malicious warning": "Hemos desinstalado ' {0} ' porque se informó que era problemático.",
+ "learnMore": "Más información",
+ "malicious warning": "Se detectó que la extensión '{0}' es problemática y se ha desinstalado",
"marketPlace": "Marketplace",
"open user settings": "Abrir la configuración de usuario",
"otherRecommendedExtensions": "Otras recomendaciones",
- "outdated": "Obsoleto",
- "outdatedExtensions": "{0} extensiones obsoletas",
"popularExtensions": "Popular",
+ "recently updated": "Actualizada recientemente",
"recommendedExtensions": "Recomendado",
"reloadNow": "Recargar ahora",
"remote": "Remoto",
+ "restartNow": "Reiniciar extensiones",
"searchExtensions": "Buscar extensiones en Marketplace",
"select and install local extensions": "Instalar las extensiones locales en \"{0}\"...",
+ "show": "Mostrar",
+ "sign in": "[Iniciar sesión para acceder al marketplace de extensiones]({0})",
+ "sign in enterprise marketplace": "Iniciar sesión para acceder al marketplace",
+ "signInRequired": "Es necesario iniciar sesión para acceder al marketplace",
"suggestProxyError": "Marketplace devolvió \"ECONNREFUSED\". Compruebe la configuración de \"http.proxy\".",
"untrustedPartiallySupportedExtensions": "Limitado en modo restringido",
"untrustedUnsupportedExtensions": "Deshabilitado en modo restringido",
@@ -5946,27 +9640,28 @@
},
"vs/workbench/contrib/extensions/browser/extensionsViews": {
"error": "Error al capturar las extensiones. {0}",
- "extension.arialabel.deprecated": "En desuso",
- "extension.arialabel.publihser": "Publicador{0}",
- "extensions": "Extensiones",
"no extensions found": "No se encontraron extensiones.",
"no local extensions": "No hay ninguna extensión para instalar.",
"offline error": "No se puede buscar en Marketplace sin conexión. Compruebe la conexión de red.",
- "open user settings": "Abrir la configuración de usuario",
- "suggestProxyError": "Marketplace devolvió \"ECONNREFUSED\". Compruebe la configuración de \"http.proxy\"."
+ "showing local extensions only": "{0} mostrando extensiones locales.",
+ "showingExtensionsForFeature": "Extensiones que usan {0} en los últimos 30 días"
},
"vs/workbench/contrib/extensions/browser/extensionsWidgets": {
"Show prerelease version": "Versión preliminar",
"activation": "Hora de activación",
- "dependencies": "Mostrar dependencias",
+ "extensionIcon.private": "Color del icono para las extensiones privadas.",
"extensionIcon.sponsorForeground": "Color del icono para el patrocinador de la extensión.",
"extensionIconStarForeground": "Color del icono para clasificaciones de extensión.",
- "extensionIconVerifiedForeground": "Color del icono para el publicador comprobado de la extensión.",
"extensionPreReleaseForeground": "Color del icono para la extensión de versión preliminar.",
+ "feature access label": "{0} solicitudes",
+ "feature usage label": "{0} uso",
"has prerelease": "Esta extensión tiene una {0} disponible",
+ "install count": "Número de instalaciones",
+ "local extension": "Extensión local",
"message": "1 mensaje",
"messages": "{0} mensajes",
- "pre-release-label": "Versión preliminar",
+ "privateExtension": "Extensión privada",
+ "publisher": "Publicador ({0})",
"publisher verified tooltip": "Este editor ha comprobado la propiedad de {0}",
"ratedLabel": "Valoración media: {0} de 5",
"recommendationHasBeenIgnored": "Ha elegido no recibir recomendaciones para esta extensión.",
@@ -5974,27 +9669,92 @@
"sponsor": "Patrocinador",
"startup": "Inicio",
"syncingore.label": "Esta extensión se omite durante la sincronización.",
+ "total": "{0} {1} solicitudes en los últimos 30 días",
"uncaught error": "1 error no detectado",
- "uncaught errors": "{0} errores no detectados"
+ "uncaught errors": "{0} errores no detectados",
+ "updateRequired": "Última versión:",
+ "verified publisher": "Este editor ha comprobado la propiedad de {0}",
+ "workspace extension": "Extensión del área de trabajo"
},
"vs/workbench/contrib/extensions/browser/extensionsWorkbenchService": {
"Manifest is not found": "No se encuentra el manifiesto.",
+ "allplatforms": "Todas las plataformas",
+ "cannot be installed": "No se puede instalar la extensión \"{0}\" porque no está disponible en este programa de instalación.",
+ "confirmDisableAutoUpdate": "¿Desea deshabilitar la actualización automática de todas las extensiones?",
+ "confirmEnableAutoUpdate": "¿Desea habilitar la actualización automática de todas las extensiones?",
+ "confirmEnableDisableAutoUpdate": "Actualizar extensiones automáticamente",
+ "confirmEnableDisableAutoUpdateDetail": "Se restablecerá cualquier configuración de actualización automática que haya establecido para las extensiones individuales.",
+ "consentRequiredToUpdate": "La actualización de la extensión {0} introduce código ejecutable, que no está presente en la versión instalada actualmente.",
+ "consentRequiredToUpdateRepublishedExtension": "Los metadatos de Marketplace de esta extensión cambiaron, probablemente debido a una nueva publicación.",
+ "deprecated extensions": "Se detectaron extensiones en desuso. Revíselas y migre a alternativas.",
"disable all": "Deshabilitar todo",
+ "disableDependents": "Deshabilitar extensión con elementos dependientes",
+ "disallowed": "No se permite instalar esta extensión.",
+ "disallowed extensions": "Some extensions are disabled because they are configured not to be allowed.",
+ "disallowed extensions by policy": "Some extensions are disabled because they are not allowed by your system administrator.",
+ "download": "Descargar",
+ "download title": "Seleccione la carpeta para descargar VSIX",
+ "download.completed": "VSIX se descargó correctamente",
+ "download.failed": "Error al descargar el VSIX: {0}",
+ "downloading...": "Descargando VSIX...",
+ "enable locally": "{0} habilitar esta extensión localmente.",
+ "enable remote": "{0} habilitar esta extensión en {1}.",
+ "enableButtonLabel": "&&Habilitar extensión",
+ "enableButtonLabelWithAction": "&&Habilitar extensión y {0}",
+ "enableExtensionMessage": "¿Desea habilitar la extensión '{0}'?",
+ "enableExtensionTitle": "Habilitar extensión",
+ "extension not found": "La extensión '{0}' no se encontró.",
+ "extensionsAutoRestart": "Las extensiones se reiniciaron automáticamente para habilitar las actualizaciones.",
+ "incompatible": "No se puede instalar la extensión '{0}' porque no es compatible.",
+ "incompatibleExtensions": "Algunas extensiones están deshabilitadas debido a la incompatibilidad de la versión. Revíselas y actualícelas.",
+ "installButtonLabel": "&&Instalar extensión",
+ "installButtonLabelWithAction": "&&Instalar extensión y {0}",
+ "installExtensionMessage": "¿Desea instalar la extensión '{0}' desde '{1}'?",
+ "installExtensionTitle": "Instalar extensión",
+ "installVSIXMessage": "¿Desea instalar la extensión?",
"installing extension": "Instalando extensión...",
- "installing named extension": "Instalando extensión '{0}'...",
+ "installing named extension": "Instalando la extensión '{0}'...",
+ "invalidExtensions": "Se detectaron extensiones no válidas. Revíselas.",
"malicious": "Se informa de que esta extensión es problemática.",
"multipleDependentsError": "No se puede deshabilitar solo la extensión \"{0}\". Las extensiones \"{1}\" y \"{2}\", entre otras, dependen de ella. ¿Quiere deshabilitar todas estas extensiones?",
- "not found": "No puede instalarse la extensión \"{0}\" porque no se encuentra la versión solicitada \"{1}\".",
+ "multipleDependentsUninstallError": "No se puede desinstalar la extensión '{0}' individualmente. '{1}', '{2}' y otras extensiones dependen de esta. ¿Desea desinstalar todas estas extensiones?",
+ "no versions": "Esta extensión no tiene otras versiones.",
+ "not an extension": "El objeto proporcionado no es una extensión.",
+ "not found": "No se puede instalar la extensión '{0}' porque no se encontró.",
+ "not found version": "No se puede instalar la extensión '{0}' porque no se encontró la versión solicitada '{1}'.",
+ "not signed": "Esta extensión no está firmada.",
+ "open": "Extensión abierta",
+ "platform placeholder": "Seleccione la plataforma para la que desea descargar VSIX",
+ "postDisableTooltip": "{0} deshabilitar esta extensión.",
+ "postEnableTooltip": "{0} habilitar esta extensión.",
+ "postUninstallTooltip": "{0} para completar la desinstalación de esta extensión.",
+ "postUpdateDownloadTooltip": "Actualice {0} para habilitar la extensión actualizada.",
+ "postUpdateRestartTooltip": "Reinicie {0} para habilitar la extensión actualizada.",
+ "postUpdateTooltip": "{0} habilitar la extensión actualizada.",
+ "postUpdateUpdateTooltip": "Actualice {0} para habilitar la extensión actualizada.",
+ "pre-release": "versión preliminar",
+ "reload": "recargar la ventana",
+ "report issue": "Si este problema persiste, informe de ello en {0}",
+ "restart": "Cambio de la habilitación de la extensión",
+ "restart extensions": "reiniciar extensiones",
+ "selectVersion": "Seleccionar versión para descargar",
"singleDependentError": "No se puede deshabilitar solo la extensión \"{0}\". La extensión \"{1}\" depende de ella. ¿Quiere deshabilitar todas estas extensiones?",
+ "singleDependentUninstallError": "No se puede desinstalar la extensión '{0}' individualmente. La extensión '{1}' depende de esta. ¿Desea desinstalar todas estas extensiones?",
+ "sync extension": "Sincronizar esta extensión",
"twoDependentsError": "No se puede deshabilitar solo la extensión \"{0}\". Las extensiones \"{1}\" y \"{2}\" dependen de ella. ¿Quiere deshabilitar todas estas extensiones?",
- "uninstallingExtension": "Desinstalando la extensión...."
+ "twoDependentsUninstallError": "No se puede desinstalar la extensión '{0}' individualmente. Las extensiones '{1}' y '{2}' dependen de esta. ¿Desea desinstalar todas estas extensiones?",
+ "uninstallAll": "Desinstalar todas",
+ "uninstallAllProfiles": "Desinstalar (todos los perfiles)",
+ "uninstallApplicationScoped": "Desinstalar extensión",
+ "uninstallApplicationScopedMessage": "¿Desea desinstalar {0} de todos los perfiles?",
+ "uninstallDependents": "Desinstalar extensión con elementos dependientes",
+ "uninstallingExtension": "Desinstalando extensión...",
+ "unknown": "No se puede instalar la extensión",
+ "updatingExtensions": "Actualizando el estado de actualización automática de extensiones"
},
"vs/workbench/contrib/extensions/browser/fileBasedRecommendations": {
- "dontShowAgainExtension": "No volver a mostrar para los archivos \".{0}\"",
"fileBasedRecommendation": "Esta extensión se recomienda en función de los archivos abiertos recientemente.",
- "reallyRecommended": "¿Quiere instalar las extensiones recomendadas para {0}?",
- "searchMarketplace": "Buscar en Marketplace",
- "showLanguageExtensions": "Marketplace tiene extensiones que pueden ayudar con los archivos \".{0}\"."
+ "languageName": "el idioma {0}"
},
"vs/workbench/contrib/extensions/browser/webRecommendations": {
"reason": "Esta extensión se recomienda para {0} para la Web"
@@ -6002,6 +9762,9 @@
"vs/workbench/contrib/extensions/browser/workspaceRecommendations": {
"workspaceRecommendation": "Los usuarios del área de trabajo actual recomiendan esta extensión."
},
+ "vs/workbench/contrib/extensions/common/extensions": {
+ "extensions": "Extensiones"
+ },
"vs/workbench/contrib/extensions/common/extensionsFileTemplate": {
"app.extension.identifier.errorMessage": "Se esperaba el formato '${publisher}.${name}'. Ejemplo: 'vscode.csharp'.",
"app.extensions.json.recommendations": "Lista de extensiones que debe recomendarse a los usuarios de esta área de trabajo. El identificador de una extensión es siempre \"${anunciante}.${nombre}\". Por ejemplo: \"vscode.csharp\".",
@@ -6009,6 +9772,7 @@
"app.extensions.json.unwantedRecommendations": "Lista de extensiones recomendadas por VS Code que no deben recomendarse a los usuarios de esta área de trabajo. El identificador de una extensión es siempre \"${anunciante}.${nombre}\". Por ejemplo: \"vscode.csharp\"."
},
"vs/workbench/contrib/extensions/common/extensionsInput": {
+ "extensionsEditorLabelIcon": "Icono de la etiqueta del editor de extensiones.",
"extensionsInputName": "Extensión: {0}"
},
"vs/workbench/contrib/extensions/common/extensionsUtils": {
@@ -6016,69 +9780,86 @@
"no": "No",
"yes": "Sí"
},
- "vs/workbench/contrib/extensions/common/runtimeExtensionsInput": {
- "extensionsInputName": "Ejecutando extensiones"
+ "vs/workbench/contrib/extensions/common/installExtensionsTool": {
+ "installExtensionsTool.confirmationMessage": "Revise las extensiones sugeridas y haga clic en el botón **Instalar** para cada extensión que quiera agregar. Cuando haya terminado de instalar las extensiones seleccionadas, haga clic en **Continuar** para continuar.",
+ "installExtensionsTool.confirmationTitle": "Instalar extensiones",
+ "installExtensionsTool.displayName": "Instalar extensiones",
+ "installExtensionsTool.noResultMessage": "No se instaló ninguna extensión.",
+ "installExtensionsTool.resultMessage": "Se instalan las siguientes extensiones: {0}",
+ "installExtensionsTool.userDescription": "Herramienta para instalar extensiones"
},
- "vs/workbench/contrib/extensions/electron-sandbox/debugExtensionHostAction": {
- "cancel": "&&Cancelar",
- "debugExtensionHost": "Iniciar depuración del host de extensiones",
- "debugExtensionHost.launch.name": "Conectar Host de Extensión",
- "restart1": "Generar perfiles de extensiones",
- "restart2": "Para generar un perfil para las extensiones, es necesario reiniciar. ¿Quiere reiniciar \"{0}\" ahora?",
- "restart3": "&&Reiniciar"
+ "vs/workbench/contrib/extensions/common/reportExtensionIssueAction": {
+ "reportExtensionIssue": "Notificar problema"
},
- "vs/workbench/contrib/extensions/electron-sandbox/extensionProfileService": {
- "cancel": "&&Cancelar",
- "profilingExtensionHost": "Creando perfil del host de extensiones",
+ "vs/workbench/contrib/extensions/common/runtimeExtensionsInput": {
+ "extensionsInputName": "Ejecutando extensiones",
+ "runtimeExtensionEditorLabelIcon": "Icono de la etiqueta del editor de extensiones en tiempo de ejecución."
+ },
+ "vs/workbench/contrib/extensions/common/searchExtensionsTool": {
+ "searchExtensionsTool.displayName": "Buscar extensiones",
+ "searchExtensionsTool.noInput": "Proporcione una categoría, palabras clave o identificadores para buscar.",
+ "searchExtensionsTool.userDescription": "Buscar extensiones de VS Code"
+ },
+ "vs/workbench/contrib/extensions/electron-browser/debugExtensionHostAction": {
+ "debugExtensionHost": "Depurar el host de extensión en una nueva ventana",
+ "debugExtensionHost.launch.name": "Conectar host de extensión",
+ "debugExtensionHost.progress": "Asociación del depurador al host de extensión",
+ "openDevToolsForExtensionHost": "Depurar el host de extensión en herramientas de desarrollo",
+ "restart1": "Depurar extensiones",
+ "restart2": "Para depurar extensiones, es necesario reiniciar. ¿Quiere reiniciar '{0}' ahora?",
+ "restart3": "&&Reiniciar",
+ "selectExtensionHost": "Seleccionar host de extensión"
+ },
+ "vs/workbench/contrib/extensions/electron-browser/extensionProfileService": {
+ "profilingExtensionHost": "Host de extensión de generación de perfiles",
"profilingExtensionHostTime": "Host de extensión de generación de perfiles ({0} seg)",
"restart1": "Generar perfiles de extensiones",
"restart2": "Para generar un perfil para las extensiones, es necesario reiniciar. ¿Quiere reiniciar \"{0}\" ahora?",
"restart3": "&&Reiniciar",
"selectAndStartDebug": "Haga clic aquí para detener la generación de perfiles.",
- "status.profiler": "Extensión Profiler"
+ "status.profiler": "Generador de perfiles de extensión"
},
- "vs/workbench/contrib/extensions/electron-sandbox/extensions.contribution": {
- "runtimeExtension": "Extensiones en ejecución"
+ "vs/workbench/contrib/extensions/electron-browser/extensions.contribution": {
+ "runtimeExtension": "Ejecutando extensiones"
},
- "vs/workbench/contrib/extensions/electron-sandbox/extensionsActions": {
+ "vs/workbench/contrib/extensions/electron-browser/extensionsActions": {
+ "cleanUpExtensionsFolder": "Limpiar la carpeta de extensiones",
"openExtensionsFolder": "Abrir carpeta de extensiones"
},
- "vs/workbench/contrib/extensions/electron-sandbox/extensionsAutoProfiler": {
+ "vs/workbench/contrib/extensions/electron-browser/extensionsAutoProfiler": {
"show": "Mostrar extensiones",
"unresponsive-exthost": "La extensión \"{0}\" tardó mucho tiempo en completar su última operación y ha impedido la ejecución de otras extensiones."
},
- "vs/workbench/contrib/extensions/electron-sandbox/extensionsSlowActions": {
+ "vs/workbench/contrib/extensions/electron-browser/extensionsSlowActions": {
"attach.msg": "Este es un recordatorio para asegurarse de que no ha olvidado adjuntar \"{0}\" a la cuestión que acaba de crear.",
"attach.msg2": "Este es un recordatorio para asegurarse de que no ha olvidado adjuntar '{0}' a un problema de rendimiento existente.",
"attach.title": "¿Ha adjuntado el perfil CPU-Profile?",
"cmd.report": "Notificar problema",
"cmd.reportOrShow": "Problema de rendimiento",
- "cmd.show": "Mostrar Problemas"
- },
- "vs/workbench/contrib/extensions/electron-sandbox/reportExtensionIssueAction": {
- "reportExtensionIssue": "Notificar problema"
+ "cmd.show": "Mostrar problemas"
},
- "vs/workbench/contrib/extensions/electron-sandbox/runtimeExtensionsEditor": {
+ "vs/workbench/contrib/extensions/electron-browser/runtimeExtensionsEditor": {
"extensionHostProfileStart": "Iniciar perfil del host de extensiones",
+ "openExtensionHostProfile": "Abrir perfil de host de extensiones",
"saveExtensionHostProfile": "Guardar perfil del host de extensiones",
"saveprofile.dialogTitle": "Guardar perfil del host de extensiones",
- "saveprofile.saveButton": "Guardar",
"stopExtensionHostProfileStart": "Detener perfil del host de extensiones"
},
"vs/workbench/contrib/externalTerminal/browser/externalTerminal.contribution": {
- "scopedConsoleAction": "Abrir en terminal",
+ "scopedConsoleAction.Integrated": "Abrir en terminal integrado",
"scopedConsoleAction.external": "Abrir en terminal externo",
- "scopedConsoleAction.integrated": "Abrir en terminal integrado",
"scopedConsoleAction.wt": "Abrir en terminal de Windows"
},
- "vs/workbench/contrib/externalTerminal/electron-sandbox/externalTerminal.contribution": {
+ "vs/workbench/contrib/externalTerminal/electron-browser/externalTerminal.contribution": {
"explorer.openInTerminalKind": "Al abrir un archivo desde el explorador en un terminal, determina qué tipo de terminal se iniciará",
"globalConsoleAction": "Abrir nuevo terminal externo",
- "terminal.explorerKind.external": "Use el terminal externo configurado.",
- "terminal.explorerKind.integrated": "Use el terminal integrado de VS Code.",
+ "sourceControlRepositories.openInTerminalKind": "Al abrir un repositorio desde la vista de repositorios de control de fuentes en un terminal, determina qué tipo de terminal se iniciará",
"terminal.external.linuxExec": "Personaliza qué terminal debe ejecutarse en Linux.",
"terminal.external.osxExec": "Personaliza qué aplicación terminal se ejecutará en macOS.",
"terminal.external.windowsExec": "Personaliza qué terminal debe ejecutarse en Windows.",
+ "terminal.kind.both": "Mostrar acciones de terminal integrado y externas.",
+ "terminal.kind.external": "Muestra la acción de terminal externo.",
+ "terminal.kind.integrated": "Muestra la acción de terminal integrado.",
"terminalConfigurationTitle": "Terminal externo"
},
"vs/workbench/contrib/externalUriOpener/common/configuration": {
@@ -6120,16 +9901,17 @@
},
"vs/workbench/contrib/files/browser/editors/textFileEditor": {
"createFile": "Crear archivo",
- "fileIsDirectoryError": "El archivo es un directorio",
- "fileNotFoundError": "Archivo no encontrado",
- "ok": "Aceptar",
- "reveal": "Mostrar en la vista Explorador",
- "textFileEditor": "Editor de archivos de texto"
+ "fileIsDirectory": "El archivo no se muestra en el editor de texto porque es un directorio.",
+ "fileTooLargeForHeapErrorWithSize": "El archivo no se muestra en el editor de texto porque es muy grande ({0}).",
+ "fileTooLargeForHeapErrorWithoutSize": "El archivo no se muestra en el editor de texto porque es muy grande.",
+ "openFolder": "Abrir carpeta",
+ "reveal": "Mostrar carpeta",
+ "textFileEditor": "Editor de archivos de texto",
+ "unavailableResourceErrorEditorText": "No se pudo abrir el editor porque no se encontró el archivo."
},
"vs/workbench/contrib/files/browser/editors/textFileSaveErrorHandler": {
"compareChanges": "Comparar",
"configure": "Configurar",
- "discard": "Descartar",
"dontShowAgain": "No mostrar de nuevo",
"genericSaveError": "No se pudo guardar \"{0}\": {1}",
"learnMore": "Más información",
@@ -6142,6 +9924,7 @@
"readonlySaveErrorAdmin": "No se pudo guardar \"{0}\": el archivo es de solo lectura. Seleccione la opción de sobrescribir como administrador para reintentarlo como administrador.",
"readonlySaveErrorSudo": "No se pudo guardar '{0}': El archivo es de sólo lectura. Seleccione 'Sobrescribir como Sudo' para reintentar como superusuario.",
"retry": "Reintentar",
+ "revert": "Revertir",
"saveConflictDiffLabel": "{0} (en archivo) ↔ {1} (en {2}): resuelva el conflicto de guardado",
"saveElevated": "Reintentar como Admin...",
"saveElevatedSudo": "Reintentar como Sudo...",
@@ -6167,7 +9950,11 @@
"binFailed": "Error al eliminar usando la papelera de reciclaje. ¿Desea eliminar de forma permanente en su lugar?",
"clipboardComparisonLabel": "Clipboard ↔ {0}",
"closeGroup": "Cerrar Grupo",
+ "compareFileWithMeta": "Abre un selector para seleccionar un archivo para compararlo con el editor activo.",
+ "compareNewUntitledTextFiles": "Comparar nuevos archivos de texto sin título",
+ "compareNewUntitledTextFilesMeta": "Abre un nuevo editor de diferencias con dos archivos sin título.",
"compareWithClipboard": "Comparar archivo activo con portapapeles",
+ "compareWithClipboardMeta": "Abre un nuevo editor de diferencias para comparar el archivo activo con el contenido del Portapapeles.",
"confirmDeleteMessageFile": "¿Está seguro de que desea eliminar '{0}' de forma permanente?",
"confirmDeleteMessageFilesAndDirectories": "¿Está seguro de que desea eliminar los {0} archivos o directorios siguientes y su contenido de forma permanente?",
"confirmDeleteMessageFolder": "¿Está seguro de que desea eliminar '{0}' y su contenido de forma permanente?",
@@ -6178,6 +9965,11 @@
"confirmMoveTrashMessageFolder": "¿Está seguro de que desea eliminar '{0}' y su contenido?",
"confirmMoveTrashMessageMultiple": "¿Está seguro de que desea eliminar los siguientes archivos {0}?",
"confirmMoveTrashMessageMultipleDirectories": "¿Está seguro de que desea eliminar los {0} directorios siguientes y su contenido? ",
+ "confirmMultiPasteNative": "¿Está seguro de que desea pegar los siguientes elementos {0} ?",
+ "confirmOverwrite": "Ya existe un archivo o carpeta con el nombre \"{0}\" en la carpeta de destino. ¿Quiere reemplazarlo?",
+ "confirmPasteNative": "¿Está seguro de que desea pegar \"{0}\"?",
+ "continueButtonLabel": "Continuar",
+ "continueDetail": "La protección de solo lectura se invalidará si continúa.",
"copyBulkEdit": "Pegar {0} archivos",
"copyFile": "Copiar",
"copyFileBulkEdit": "Pegar {0}",
@@ -6208,6 +10000,7 @@
"fileNameStartsWithSlashError": "El nombre de archivo o carpeta no puede comenzar con el carácter barra. ",
"fileNameWhitespaceWarning": "Espacios en blanco iniciales o finales detectados en el nombre del archivo o carpeta.",
"focusFilesExplorer": "Enfocar Explorador de archivos",
+ "focusFilesExplorerMetadata": "Mueve el foco al contenedor de vista del Explorador de archivos.",
"globalCompareFile": "Comparar archivo activo con...",
"invalidFileNameError": "El nombre **{0}** no es válido para el archivo o la carpeta. Elija un nombre diferente.",
"irreversible": "Esta acción es irreversible.",
@@ -6215,21 +10008,33 @@
"moveFileBulkEdit": "Mover {0}",
"movingBulkEdit": "Moviendo {0} archivos",
"movingFileBulkEdit": "Moviendo {0}",
- "newFile": "Nuevo archivo",
- "newFolder": "Nueva carpeta",
- "openFileInNewWindow": "Abrir archivo activo en nueva ventana",
+ "newFile": "Nuevo archivo...",
+ "newFolder": "Nueva carpeta...",
+ "openFileInEmptyWorkspace": "Abrir editor activo en un área de trabajo vacía nueva",
+ "openFileInEmptyWorkspaceMetadata": "Abre el editor activo en una ventana nueva sin carpetas abiertas.",
"openFileToShowInNewWindow.unsupportedschema": "El editor activo debe contener un recurso que se puede abrir.",
+ "pasteButtonLabel": "&&Pegar",
"pasteFile": "Pegar",
- "rename": "Cambiar nombre",
+ "readonlyMessageFilesDelete": "Está eliminando archivos configurados para ser de solo lectura. ¿Desea continuar?",
+ "readonlyMessageFolderDelete": "Va a eliminar un archivo {0} que está configurado para ser de solo lectura. ¿Desea continuar?",
+ "readonlyMessageFolderOneDelete": "Va a eliminar una carpeta {0} que está configurada para ser de solo lectura. ¿Desea continuar?",
+ "rename": "Cambiar nombre...",
"renameBulkEdit": "Cambiar nombre de {0} a {1}",
"renamingBulkEdit": "Cambiar el nombre de {0} a {1}",
+ "replaceButtonLabel": "&&Reemplazar",
+ "resetActiveEditorReadonlyInSession": "Restablecer el editor activo de solo lectura en la sesión",
"restore": "Puede restaurar este archivo con el comando Deshacer.",
"restorePlural": "Puede restaurar estos archivos con el comando Deshacer.",
"retry": "Reintentar",
"retryButtonLabel": "&&Reintentar",
"saveAllInGroup": "Guardar todo en el grupo",
+ "setActiveEditorReadonlyInSession": "Establecer editor activo como solo lectura en la sesión",
+ "setActiveEditorWriteableInSession": "Establecer editor activo editable en sesión",
"showInExplorer": "Mostrar archivo activo en la vista Explorador",
+ "showInExplorerMetadata": "Muestra y selecciona el archivo activo en la vista del explorador.",
+ "toggleActiveEditorReadonlyInSession": "Alternar el editor activo de solo lectura en la sesión",
"toggleAutoSave": "Alternar autoguardado",
+ "toggleAutoSaveDescription": "Alternar la capacidad de guardar archivos automáticamente después de escribir",
"trashFailed": "No se pudo eliminar usando la papelera. ¿Desea eliminar de forma permanente?",
"undoBin": "Puede restaurar este archivo desde la Papelera de reciclaje.",
"undoBinFiles": "Puede restaurar estos archivos desde la Papelera de reciclaje.",
@@ -6244,6 +10049,7 @@
"closeOthers": "Cerrar otros",
"closeSaved": "Cerrar guardados",
"compareActiveWithSaved": "Comparar el archivo activo con el guardado",
+ "compareActiveWithSavedMeta": "Abre un nuevo editor de diferencias para comparar el archivo activo con la versión del disco.",
"compareSelected": "Comparar seleccionados",
"compareSource": "Seleccionar para comparar",
"compareWithSaved": "Comparar con el guardado",
@@ -6255,7 +10061,6 @@
"cut": "Cortar",
"deleteFile": "Eliminar permanentemente",
"explorerOpenWith": "Abrir con...",
- "filesCategory": "Archivo",
"miAutoSave": "A&&utoguardado",
"miCloseEditor": "&&Cerrar editor",
"miGotoFile": "Ir a &&archivo...",
@@ -6265,8 +10070,10 @@
"miSaveAll": "Guardar t&&odo",
"miSaveAs": "Guardar &&como...",
"newFile": "Nuevo archivo de texto",
+ "newFolderDescription": "Crear una nueva carpeta o directorio",
"openFile": "Abrir archivo...",
"openToSide": "Abrir en el lateral",
+ "reopenWith": "Volver a abrir el editor con...",
"revealInSideBar": "Mostrar en la vista Explorador",
"revert": "Revertir archivo",
"revertLocalChanges": "Descarta los cambios y revierte al contenido del archivo",
@@ -6275,15 +10082,16 @@
"saveFiles": "Guardar todos los archivos"
},
"vs/workbench/contrib/files/browser/fileCommands": {
- "discard": "Descartar",
"genericRevertError": "No se pudo revertir ' {0} ': {1}",
"genericSaveError": "No se pudo guardar \"{0}\": {1}",
"modifiedLabel": "{0} (en archivo) ↔ {1}",
"newFileCommand.saveLabel": "Crear archivo",
- "retry": "Reintentar"
+ "retry": "Reintentar",
+ "revert": "Revertir",
+ "revertAll": "Revertir todo"
},
"vs/workbench/contrib/files/browser/fileConstants": {
- "newUntitledFile": "Nuevo archivo sin título",
+ "newUntitledFile": "Nuevo archivo de texto sin título",
"removeFolderFromWorkspace": "Quitar carpeta del área de trabajo",
"save": "Guardar",
"saveAll": "Guardar todo",
@@ -6293,7 +10101,6 @@
"vs/workbench/contrib/files/browser/fileImportExport": {
"addFolder": "&&Agregar carpeta al área de trabajo",
"addFolders": "&&Agregar carpetas al espacio de trabajo",
- "cancel": "Cancelar",
"chooseWhereToDownload": "Elegir dónde descargar",
"confirmManyOverwrites": "Los siguientes archivos o carpetas de {0} ya existen en la carpeta de destino. ¿Desea reemplazarlos?",
"confirmOverwrite": "Ya existe un archivo o carpeta con el nombre \"{0}\" en la carpeta de destino. ¿Quiere reemplazarlo?",
@@ -6326,26 +10133,38 @@
},
"vs/workbench/contrib/files/browser/files.contribution": {
"askUser": "Se negará a guardar y pedirá que se resuelva el conflicto de guardado manualmente.",
- "associations": "Configure asociaciones de archivo para los lenguajes (por ejemplo, \"*.extension\": \"html\"). Estas tienen prioridad sobre las asociaciones predeterminadas de los lenguajes instalados.",
+ "associations": "Configure [patrones globales](https://aka.ms/vscode-glob-patterns) de asociaciones de archivos a idiomas (por ejemplo, `\"*.extension\": \"html\"`). Los patrones coincidirán en la ruta de acceso absoluta de un archivo si contienen un separador de ruta de acceso y coincidirán en el nombre del archivo de lo contrario. Estas tienen prioridad sobre las asociaciones predeterminadas de los idiomas instalados.",
"autoGuessEncoding": "Cuando se habilita, el editor intentará adivinar la codificación del juego de caracteres al abrir los archivos. Este valor también se puede configurar por idioma. Tenga en cuenta que en la búsqueda de texto no se respeta. Solo se respeta {0}.",
+ "autoOpenDroppedFile": "Controla si el Explorador debe abrir automáticamente un archivo cuando se coloca en el explorador",
"autoReveal": "Controla si el explorador debe mostrar y seleccionar automáticamente los archivos al abrirlos.",
"autoReveal.focusNoScroll": "Los archivos no se desplazarán a la vista, pero mantendrán el foco.",
"autoReveal.off": "Los archivos no se mostrarán ni seleccionarán.",
"autoReveal.on": "Los archivos se mostrarán y seleccionarán.",
+ "autoRevealExclude": "Configure rutas o [patrones glob](https://aka.ms/vscode-glob-patterns) para excluir los archivos y carpetas de ser revelados y seleccionados en el Explorador al abrirlos. Los patrones globales siempre se evalúan en relación con la ruta de la carpeta del área de trabajo, a menos que sean rutas absolutas.",
"autoSave": "Controla el [guardado automático](https://code.visualstudio.com/docs/editor/codebasics#_save-auto-save) de los editores que tienen cambios no guardados.",
"autoSaveDelay": "Controla el retraso en milisegundos después del cual un editor con cambios sin guardar se guarda automáticamente. Solo se aplica cuando '#files.autoSave#' está establecido en \"{0}\".",
+ "autoSaveWhenNoErrors": "Cuando se habilita, limitará el [guardado automático](https://code.visualstudio.com/docs/editor/codebasics#_save-auto-save) de los editores a los archivos que no tengan errores notificados en el momento en que se desencadene el guardado automático. Solo se aplica cuando {0} está habilitado.",
+ "autoSaveWorkspaceFilesOnly": "Cuando se habilita, limitará el [guardado automático](https://code.visualstudio.com/docs/editor/codebasics#_save-auto-save) de los editores a los archivos que se encuentran dentro del área de trabajo abierta. Solo se aplica cuando {0} está habilitado.",
"binaryFileEditor": "Editor de archivos binarios",
+ "candidateGuessEncodings": "Lista de codificaciones de juegos de caracteres que el editor debe intentar adivinar en el orden en que aparecen. En caso de que no se pueda determinar, se respeta {0} ",
"compressSingleChildFolders": "Controla si el explorador debe representar carpetas de forma compacta. En este tipo de formulario, las carpetas secundarias individuales se comprimirán en un elemento de árbol combinado. Es útil para estructuras de paquetes Java, por ejemplo.",
"confirmDelete": "Controla si el explorador debe pedir confirmación al borrar un archivo a través de la papelera.",
"confirmDragAndDrop": "Controla si el explorador debe pedir confirmación para mover archivos y carpetas mediante la acción de arrastrar y colocar.",
- "confirmUndo": "Controla si el explorador debe pedir confirmación al deshacer.",
+ "confirmPasteNative": "Controla si el Explorador debe pedir confirmación al pegar archivos y carpetas nativos.",
+ "confirmUndo": "Controla si el Explorador debe pedir confirmación al deshacer.",
+ "copyPathSeparator": "Carácter de separación de ruta de acceso utilizado al copiar rutas de acceso de archivo.",
+ "copyPathSeparator.auto": "Usa un carácter de separación de ruta de acceso específico del sistema operativo.",
+ "copyPathSeparator.backslash": "Usar barra diagonal inversa como carácter de separación de ruta de acceso.",
+ "copyPathSeparator.slash": "Usar la barra diagonal como carácter de separación de ruta de acceso.",
"copyRelativePathSeparator": "Carácter de separación de ruta utilizado cuando se copian rutas de archivo relativas.",
"copyRelativePathSeparator.auto": "Usa un carácter de separación de ruta de acceso específico del sistema operativo.",
"copyRelativePathSeparator.backslash": "Usar barra diagonal inversa como carácter de separación de ruta de acceso.",
"copyRelativePathSeparator.slash": "Usar la barra diagonal como carácter de separación de ruta de acceso.",
"defaultLanguage": "El identificador de idioma predeterminado que se asigna a los archivos nuevos. Si se configura en \"${activeEditorLanguage}\", se usará el identificador de idioma del editor de texto activo actualmente, si existe.",
+ "defaultPathErrorMessage": "La ruta de acceso predeterminada para los cuadros de diálogo de archivo debe ser una ruta de acceso absoluta (por ejemplo, C:\\\\myFolder o /myFolder).",
+ "disabled": "Deshabilita la nomenclatura incremental. Si existen dos archivos con el mismo nombre, se le pedirá que sobrescriba el archivo existente.",
"enableDragAndDrop": "Controla si el explorador debe permitir mover archivos y carpetas mediante la acción de arrastrar y colocar. Esta configuración solo afecta a la funcionalidad de arrastrar y colocar desde dentro del explorador.",
- "enableUndo": "Controla si el explorador debe permitir deshacer las operaciones con archivos y carpetas.",
+ "enableUndo": "Controla si el Explorador debe permitir deshacer las operaciones con archivos y carpetas.",
"enableUndo.default": "El Explorador preguntará antes de las operaciones destructivas de deshacer.",
"enableUndo.light": "El Explorador no preguntará antes de las operaciones de deshacer cuando esté enfocado.",
"enableUndo.verbose": "El Explorador le preguntará antes de todas las operaciones de deshacer.",
@@ -6355,18 +10174,21 @@
"eol.LF": "LF",
"eol.auto": "Utiliza el carácter de final de línea específico del sistema operativo.",
"everything": "Formatea todo el archivo.",
- "exclude": "Configure [patrones globales](https://code.visualstudio.com/docs/editor/codebasics#_advanced-search-options) para excluir archivos y carpetas. Por ejemplo, el explorador de archivos decide qué archivos y carpetas mostrarán u ocultarán en función de esta configuración. Consulte la configuración \"#search.exclude#\" para definir los elementos excluidos específicos de la búsqueda.",
- "excludeGitignore": "Controla si las entradas de .gitignore deben analizarse y excluirse del explorador. Similar a {0}.",
- "expandSingleFolderWorkspaces": "Controla si el explorador debe expandir áreas de trabajo de varias raíces que contengan solo una carpeta durante la inicialización.",
+ "exclude": "Configure patrones globales para excluir archivos y carpetas. Por ejemplo, el explorador de archivos decide qué archivos y carpetas se mostrarán u ocultarán en función de este valor. Consulte el valor \"#search.exclude\" para definir los elementos excluidos específicos de la búsqueda. Lea más acerca de los patrones globales [aquí](https://code.visualstudio.com/docs/editor/codebasics#_advanced-search-options).",
+ "excludeGitignore": "Controla si las entradas en .gitignore deben ser analizadas y excluidas del Explorador. Similar a {0}.",
+ "expandSingleFolderWorkspaces": "Controla si el Explorador debe expandir las áreas de trabajo multi-raíz que contienen una sola carpeta durante la inicialización",
+ "explorer.autoRevealExclude.boolean": "El patrón global con el que se harán coincidir las rutas de acceso de los archivos. Establézcalo en true o false para habilitarlo o deshabilitarlo.",
+ "explorer.autoRevealExclude.when": "Comprobación adicional de los elementos del mismo nivel de un archivo coincidente. Use $(nombreBase) como variable para el nombre de archivo que coincide.",
"explorer.decorations.badges": "Controla si las decoraciones de archivo deben usar distintivos.",
"explorer.decorations.colors": "Controla si las decoraciones de archivo deben usar colores. ",
- "explorer.incrementalNaming": "Controla qué estrategia de nomenclatura se usa cuando se da un nuevo nombre a un elemento de explorador duplicado al pegar.",
+ "explorer.incrementalNaming": "Controla qué estrategia de nomenclatura usar al asignar un nuevo nombre a un elemento duplicado del Explorador al pegar.",
"explorerConfigurationTitle": "Explorador de archivos",
"falseDescription": "Deshabilitar el patrón.",
+ "fileDialogDefaultPath": "Ruta de acceso predeterminada para los cuadros de diálogo de archivo, que reemplaza la ruta de acceso principal del usuario. Solo se usa en ausencia de una ruta de acceso específica del contexto, como el archivo o carpeta abierto más recientemente.",
"fileNesting.description": "Cada patrón de clave puede contener un único carácter `*` que coincidirá con cualquier cadena.",
- "fileNestingEnabled": "Controla si el anidamiento de archivos está habilitado en el explorador. El anidamiento de archivos permite agrupar visualmente los archivos relacionados de un directorio en un único archivo primario.",
+ "fileNestingEnabled": "Controla si el anidamiento de archivos está activado en el Explorador. El anidamiento de archivos permite que los archivos relacionados en un directorio se agrupen visualmente bajo un único archivo principal.",
"fileNestingExpand": "Controla si los anidamientos de archivos se expanden automáticamente. {0} debe estar definido para que surta efecto.",
- "fileNestingPatterns": "Controla el anidamiento de archivos en el explorador. Cada __Item__ representa un patrón primario y puede contener un único carácter “*” que coincida con cualquier cadena. Cada __Value__ representa una lista separada por comas de los patrones secundarios que se deben mostrar anidados bajo un elemento primario determinado. Los patrones secundarios pueden contener varios tokens especiales:\r\n- “${capture}”: coincide con el valor resuelto de “*” del patrón primario\r\n- “${basename}”: coincide con el nombre base del archivo primario, el “archivo” en “file.ts”\r\n- “${extname}”: coincide con la extensión del archivo primario, “ts” en “file.ts”\r\n- “${dirname}”: coincide con el nombre de directorio del archivo primario, el “src” en “src/file.ts”\r\n- “*”: coincide con cualquier cadena, solo se puede usar una vez por patrón secundario",
+ "fileNestingPatterns": "Controla el anidamiento de los archivos en el Explorador. {0} debe ser establecido para que esto tenga efecto. Each __Item__ representa un patrón principal y puede contener un único carácter \"*\" que coincide con cualquier cadena. Each __Value__ representa una lista separada por comas de los patrones secundarios que deben mostrarse anidados bajo un principal determinado. Los patrones secundarios pueden contener varios tokens especiales:\r\n- \"${captura}\": Coincide con el valor resuelto del \"*\" del patrón principal\r\n- \"${basename}\": Coincide con el nombre base del archivo principal, el \"archivo\" en \"file.ts\".\r\n- \"${extname}\": Coincide con la extensión del archivo principal, el \"ts\" en \"file.ts\".\r\n- \"${dirname}\": Coincide con el nombre del directorio del archivo principal, el \"src\" en \"src/file.ts\"\r\n- \"*\": Coincide con cualquier cadena, solo puede utilizarse una vez por patrón secundario",
"files.autoSave.afterDelay": "Un editor con cambios se guarda automáticamente después de la configuración \"#files.autoSaveDelay#\".",
"files.autoSave.off": "Un editor con cambios nunca se guarda automáticamente.",
"files.autoSave.onFocusChange": "Un editor con cambios se guarda automáticamente cuando el editor pierde el foco.",
@@ -6376,25 +10198,27 @@
"files.participants.timeout": "Tiempo de espera en milisegundos tras el cual se cancelan los participantes para crear, cambiar el nombre y borrar archivos. Use `0` para deshabilitar a los participantes.",
"files.restoreUndoStack": "Restaure la pila de deshacer cuando se vuelva a abrir un archivo.",
"files.saveConflictResolution": "Puede producirse un conflicto al guardar si un archivo se guarda en un disco que se cambió mientras por otro programa. Para evitar la pérdida de datos, se pide al usuario que compare los cambios en el editor con la versión en el disco. Esta configuración solo se debe cambiar si se producen errores de conflicto de guardado con frecuencia, y puede provocar la pérdida de datos si se utiliza sin precaución.",
- "files.simpleDialog.enable": "Habilita el cuadro de diálogo de archivo simple. El cuadro de diálogo de archivo simple reemplaza al cuadro de diálogo de archivo del sistema cuando está habilitado.",
+ "files.simpleDialog.enable": "Habilita el cuadro de diálogo de archivo simple para abrir y guardar archivos y carpetas. El cuadro de diálogo de archivo simple reemplaza al cuadro de diálogo de archivo del sistema cuando está habilitado.",
"filesConfigurationTitle": "Archivos",
- "formatOnSave": "Formatear archivo al guardar: debe haber un formateador disponible, el archivo no se debe guardar después de un retardo y no se debe cerrar el editor.",
+ "filesReadonlyExclude": "Configure las rutas o [patrones glob](https://aka.ms/vscode-glob-patterns) para excluirlas de ser marcadas como solo lectura si coinciden como resultado de la configuración `#files.readonlyInclude#`. Los patrones globales siempre se evalúan de forma relativa a la ruta de la carpeta del área de trabajo, a menos que sean rutas absolutas. Los archivos de proveedores de sistemas de archivos de solo lectura siempre serán de solo lectura, independientemente de esta configuración.",
+ "filesReadonlyFromPermissions": "Marca los archivos como de solo lectura cuando sus permisos de archivo se indican como tales. Esto se puede invalidar mediante las configuraciones \"#files.readonlyInclude#\" y \"#files.readonlyExclude#\".",
+ "filesReadonlyInclude": "Configure rutas de acceso o [patrones globales](https://aka.ms/vscode-glob-patterns) para marcar como de solo lectura. Los patrones globales siempre se evalúan en relación con la ruta de acceso de la carpeta del área de trabajo, a menos que sean rutas de acceso absolutas. Puede excluir rutas de acceso coincidentes a través del valor \"#files.readonlyExclude#\". Los archivos de proveedores de sistema de archivos de solo lectura siempre serán de solo lectura independientemente de esta configuración.",
+ "formatOnSave": "Dar formato a un archivo al guardar. Un formateador debe estar disponible y el editor no debe cerrarse. Cuando {0} se establece en \"afterDelay\", el archivo solo tendrá formato cuando se guarde explícitamente.",
"formatOnSaveMode": "Controla si la opción de formato al guardar formatea todo el archivo o solo las modificaciones. Solo se aplica cuando \"#editor.formatOnSave#\" está habilitado.",
- "hotExit": "Controla si los archivos no guardados se recuerdan entre las sesiones, lo que permite omitir el mensaje para guardar al salir del editor.",
+ "hotExit": "[Salida rápida](https://aka.ms/vscode-hot-exit) controla si los archivos no guardados se recuerdan entre las sesiones, lo que permite omitir el mensaje para guardar al salir del editor.",
"hotExit.off": "Deshabilite la salida rápida. Se mostrará un mensaje al intentar cerrar una ventana con editores que tienen cambios sin guardar.",
"hotExit.onExit": "La salida rápida se desencadenará cuando se cierre la última ventana en Windows/Linux o cuando se desencadene el comando \"workbench.action.quit\" (paleta de comandos, enlace de teclado, menú). Todas las ventanas sin carpetas abiertas se restaurarán en el próximo inicio. Se puede acceder a una lista de las ventanas abiertas previamente con archivos no guardados a través de \"Archivo > Abrir recientes > Más...\".",
"hotExit.onExitAndWindowClose": "La salida rápida se desencadenará cuando se cierre la última ventana en Windows/Linux o cuando se desencadene el comando \"workbench.action.quit\" (paleta de comandos, enlace de teclado, menú), y también para las ventanas con una carpeta abierta, con independencia de si es la última ventana. Todas las ventanas sin carpetas abiertas se restaurarán en el próximo inicio. Se puede acceder a una lista de las ventanas abiertas previamente con archivos no guardados a través de \"Archivo > Abrir recientes > Más...\".",
"hotExit.onExitAndWindowCloseBrowser": "Se desencadenará una salida rápida cuando se cierre el explorador, la ventana o la pestaña.",
"insertFinalNewline": "Si se habilita, inserte una nueva línea final al final del archivo cuando lo guarde.",
- "maxMemoryForLargeFilesMB": "Controla la memoria disponible para VS Code después de reiniciar cuando se intentan abrir archivos grandes. Tiene el mismo efecto que si se especifica \"--max-memory=NEWSIZE\" en la línea de comandos.",
"modification": "Formatea las modificaciones (requiere control de código fuente).",
"modificationIfAvailable": "Se intentará dar formato solo a las modificaciones (requiere el control de código fuente). Si no se puede usar el control de código fuente, se formateará todo el archivo.",
"openEditorsSortOrder": "Controla el criterio de ordenación de los editores en el panel Editores abiertos.",
- "openEditorsVisible": "Número máximo de editores que se muestran en el panel Abrir editores. Si se establece en 0, se oculta dicho panel.",
- "openEditorsVisibleMin": "Número mínimo de ranuras de editores que se muestran en el panel Abrir editores. Si se establece en 0, el panel Abrir editores cambiará de tamaño dinámicamente en función del número de editores.",
+ "openEditorsVisible": "Número máximo inicial de editores que se muestran en el panel Editores abiertos. Si se supera este límite, se mostrará una barra de desplazamiento y se permitirá cambiar el tamaño del panel para mostrar más elementos.",
+ "openEditorsVisibleMin": "Número mínimo de ranuras de editores que se asignan previamente en el panel Abrir editores. Si se establece en 0, el panel Abrir editores cambiará de tamaño dinámicamente en función del número de editores.",
"overwriteFileOnDisk": "Resolverá el conflicto de guardado sobrescribiendo el archivo en el disco con los cambios en el editor.",
- "simple": "Añadir la palabra \"copia\" al final del nombre potencialmente duplicado seguida de un número",
- "smart": "Agrega un número al final del nombre duplicado. Si algún número ya forma parte del nombre, intenta aumentar ese número",
+ "simple": "Agrega la palabra \"copia\" al final del nombre potencialmente duplicado seguida de un número.",
+ "smart": "Agrega un número al final del nombre duplicado. Si algún número ya forma parte del nombre, intenta aumentar ese número.",
"sortOrder": "Controla la ordenación basada en propiedades de archivos y carpetas en el explorador. Cuando '#explorer.fileNesting.enabled#' está habilitado, también controla la ordenación de los archivos anidados.",
"sortOrder.alphabetical": "Los editores se ordenan alfabéticamente por nombre de pestaña dentro de cada grupo de editores.",
"sortOrder.default": "Los archivos y carpetas se ordenan por su nombre. Las carpetas se muestran antes que los archivos.",
@@ -6410,28 +10234,33 @@
"sortOrderLexicographicOptions.lower": "Los nombres en minúscula se agrupan antes de los nombres en mayúscula.",
"sortOrderLexicographicOptions.unicode": "Los nombres se clasifican en orden Unicode.",
"sortOrderLexicographicOptions.upper": "Los nombres en mayúsculas se agrupan antes de los nombres en minúsculas.",
+ "sortOrderReverse": "Controla si se debe invertir el criterio de ordenación de archivos y carpetas.",
+ "textFileEditor": "Editor de archivos de texto",
"trimFinalNewlines": "Cuando se habilita, recorta todas las nuevas líneas después de la última nueva línea al final del archivo al guardarlo",
"trimTrailingWhitespace": "Si se habilita, se recortará el espacio final cuando se guarde un archivo.",
+ "trimTrailingWhitespaceInRegexAndStrings": "Cuando se habilita, los espacios en blanco finales se quitarán de las cadenas multilínea y las expresiones regex se quitarán al guardar o al ejecutar \"editor.action.trimTrailingWhitespace\". Esto puede hacer que los espacios en blanco no se recorten de las líneas cuando no hay información de token actualizada.",
"trueDescription": "Habilitar el patrón.",
"useTrash": "Mueve archivos y carpetas a la papelera del sistema operativo (papelera de reciclaje en Windows) al eliminar. Si desactiva esta opción, los archivos y carpetas se eliminarán permanentemente.",
- "watcherExclude": "Configure rutas de acceso o patrones globales para excluirlos de la inspección de archivos. Las rutas de acceso o los patrones globales básicos que son relativos (por ejemplo, `build/output` o `*.js`) se resolverán en una ruta de acceso absoluta mediante el área de trabajo abierta actualmente. Los patrones globales complejos deben coincidir en rutas de acceso absolutas (es decir, el prefijo con `/**` o la ruta de acceso completa y el sufijo con `/**` para que coincidan con los archivos de una ruta de acceso) para que coincidan correctamente (por ejemplo, `**/build/output/**` o `/Users/name/workspaces/project/build/output/**`). Cuando experimente que el proceso del monitor de archivos consume mucha CPU, asegúrese de excluir carpetas grandes que sean de menor interés (como carpetas de salida de compilación).",
+ "watcherExclude": "Configure las rutas o [patrones glob](https://aka.ms/vscode-glob-patterns) que se excluirán de la vigilancia de archivos. Las rutas pueden ser relativas a la carpeta vigilada o absolutas. Los patrones glob se comparan en relación a la carpeta vigilada. Si el proceso de supervisión de archivos consume mucha CPU, asegúrese de excluir las carpetas grandes que sean de menor interés (como las carpetas de salida de la compilación).",
"watcherInclude": "Configure rutas de acceso adicionales para inspeccionar los cambios dentro del área de trabajo. De forma predeterminada, todas las carpetas del área de trabajo se verán de forma recursiva, excepto las carpetas que son vínculos simbólicos. Puede agregar explícitamente rutas de acceso absolutas o relativas para admitir la visualización de carpetas que son vínculos simbólicos. Las rutas de acceso relativas se resolverán en una ruta de acceso absoluta mediante el área de trabajo abierta actualmente."
},
"vs/workbench/contrib/files/browser/views/emptyView": {
"noWorkspace": "No hay ninguna carpeta abierta"
},
"vs/workbench/contrib/files/browser/views/explorerDecorationsProvider": {
- "canNotResolve": "No se puede resolver la carpeta del área de trabajo",
+ "canNotResolve": "No se puede resolver la carpeta del área de trabajo ({0})",
"label": "Explorador",
"symbolicLlink": "Vínculo simbólico",
"unknown": "Tipo de archivo desconocido"
},
"vs/workbench/contrib/files/browser/views/explorerView": {
"collapseExplorerFolders": "Contraer carpetas en el Explorador",
- "createNewFile": "Nuevo archivo",
- "createNewFolder": "Nueva carpeta",
+ "collapseExplorerFoldersMetadata": "Plega todas las carpetas del Explorador.",
+ "createNewFile": "Nuevo archivo...",
+ "createNewFolder": "Nueva carpeta...",
"explorerSection": "Sección del explorador: {0}",
- "refreshExplorer": "Actualizar Explorador"
+ "refreshExplorer": "Actualizar Explorador",
+ "refreshExplorerMetadata": "Fuerza una actualización del Explorador."
},
"vs/workbench/contrib/files/browser/views/explorerViewer": {
"confirmMove": "¿Seguro que quiere mover \"{0}\" a \"{1}\"?",
@@ -6441,12 +10270,14 @@
"copy": "Copiar {0}",
"copying": "Copiando {0}",
"doNotAskAgain": "No volver a hacerme esta pregunta",
+ "explorerHighlightFolderBadgeTitle": "El directorio contiene coincidencias de {0} ",
"fileInputAriaLabel": "Escriba el nombre de archivo. Presione ENTRAR para confirmar o Esc para cancelar",
"move": "Mover {0}",
"moveButtonLabel": "&&Mover",
"moving": "Moviendo {0}",
"numberOfFiles": "{0} archivos",
"numberOfFolders": "{0} carpetas",
+ "searchMaxResultsWarning": "El conjunto de resultados sólo contiene un subconjunto de todas las coincidencias. Sea más específico en su búsqueda para limitar los resultados.",
"treeAriaLabel": "Explorador de archivos"
},
"vs/workbench/contrib/files/browser/views/openEditorsView": {
@@ -6454,11 +10285,11 @@
"flipLayout": "Alternar diseño vertical/horizontal del editor",
"miToggleEditorLayout": "Invertir &&diseño",
"miToggleEditorLayoutWithoutMnemonic": "Invertir diseño",
- "newUntitledFile": "Nuevo archivo sin título",
+ "newUntitledFile": "Nuevo archivo de texto sin título",
"openEditors": "Editores abiertos"
},
"vs/workbench/contrib/files/browser/workspaceWatcher": {
- "enospcError": "No se pueden ver cambios de archivo en esta carpeta de área de trabajo grande. Siga el vínculo de instrucciones para resolver este problema.",
+ "enospcError": "No se pueden inspeccionar los cambios de archivo. Siga el vínculo de instrucciones para resolver este problema.",
"eshutdownError": "El monitor de cambios de archivo se detuvo inesperadamente. Recargar la ventana puede volver a habilitar el monitor, a menos que no se puedan inspeccionar los cambios del archivo en el área de trabajo.",
"learnMore": "Instrucciones",
"reload": "Recargar"
@@ -6468,58 +10299,59 @@
"dirtyFiles": "{0} archivos no guardados"
},
"vs/workbench/contrib/files/common/files": {
+ "explorerFindProviderActive": "True cuando el árbol del explorador usa el proveedor de búsqueda del explorador.",
"explorerResourceCut": "Es true cuando un elemento del EXPLORADOR se ha cortado para cortar y pegar.",
"explorerResourceIsFolder": "Es true cuando el elemento del EXPLORADOR con foco es una carpeta.",
"explorerResourceIsRoot": "Es true cuando el elemento del EXPLORADOR con foco es una carpeta raíz.",
"explorerResourceMoveableToTrash": "Es true cuando el elemento del EXPLORADOR con foco puede enviarse a la papelera.",
- "explorerResourceReadonly": "Es true cuando el elemento del EXPLORADOR con foco es de solo lectura.",
+ "explorerResourceParentReadonly": "True cuando el elemento enfocado en el elemento primario del EXPLORADOR es de solo lectura.",
+ "explorerResourceReadonly": "Verdadero cuando el elemento enfocado en el EXPLORADOR es de solo lectura.",
"explorerViewletCompressedFirstFocus": "Es true cuando el foco está en la primera parte de un elemento compacto en la vista del EXPLORADOR.",
"explorerViewletCompressedFocus": "Es true cuando el elemento con foco en la vista del EXPLORADOR es un elemento compacto.",
"explorerViewletCompressedLastFocus": "Es true cuando el foco está en la última parte de un elemento compacto en la vista del EXPLORADOR.",
"explorerViewletFocus": "Es true cuando el foco está dentro del viewlet del EXPLORADOR.",
"explorerViewletVisible": "Es true cuando el viewlet del EXPLORADOR está visible.",
"filesExplorerFocus": "Es true cuando el foco está dentro de la vista del EXPLORADOR.",
+ "foldersViewVisible": "Verdadero cuando la vista Carpetas (el árbol de archivos dentro del contenedor de vistas del explorador) está visible.",
"openEditorsFocus": "Es true cuando el foco está dentro de la vista EDITORES ABIERTOS.",
- "openEditorsVisible": "Es true cuando la vista EDITORES ABIERTOS está visible.",
"viewHasSomeCollapsibleItem": "Es true cuando un área de trabajo de la vista del EXPLORADOR tiene un elemento secundario raíz contraíble."
},
- "vs/workbench/contrib/files/electron-sandbox/fileActions.contribution": {
+ "vs/workbench/contrib/files/electron-browser/fileActions.contribution": {
"filesCategory": "Archivo",
+ "miShare": "Compartir",
"openContainer": "Abrir carpeta contenedora",
"revealInMac": "Mostrar en Finder",
"revealInWindows": "Mostrar en el Explorador de archivos"
},
- "vs/workbench/contrib/files/electron-sandbox/files.contribution": {
- "textFileEditor": "Editor de archivos de texto"
- },
- "vs/workbench/contrib/files/electron-sandbox/textFileEditor": {
- "configureMemoryLimit": "Configurar límite de memoria",
- "fileTooLargeForHeapError": "Para abrir un archivo de este tamaño, es necesario reiniciar y habilitar {0} el uso de más memoria",
- "relaunchWithIncreasedMemoryLimit": "Reiniciar con {0} MB"
+ "vs/workbench/contrib/folding/browser/folding.contribution": {
+ "formatter.default": "Define un proveedor de rango de plegado por defecto que tiene prioridad sobre todos los demás proveedores de rango de plegado. Debe ser el identificador de una extensión que contribuya a un proveedor de rango de plegado.",
+ "null": "Todo",
+ "nullFormatterDescription": "Todos los proveedores de intervalos de plegado activos"
},
"vs/workbench/contrib/format/browser/formatActionsMultiple": {
- "cancel": "Cancelar",
"config": "Configurar el formateador predeterminado…",
"config.bad": "La extensión \"{0}\" está configurada como formateador pero no está disponible. Seleccione un formateador predeterminado diferente para continuar.",
"config.needed": "Hay varios formateadores para '{0}' archivos. Uno de ellos debe configurarse como formateador predeterminado.",
"def": "(Predeterminada)",
- "do.config": "Configurar…",
+ "do.config": "&&Configurar...",
+ "do.config.command": "Configurar…",
+ "do.config.notification": "Configurar…",
"format.placeHolder": "Seleccionar un formateador",
"formatDocument.label.multiple": "Dar formato al documento con...",
"formatSelection.label.multiple": "Aplicar formato a selección con...",
"formatter": "Formato",
"formatter.default": "Define un formateador predeterminado que tiene preferencia sobre todas las demás opciones de formateador. Debe ser el identificador de una extensión que contribuya a un formateador.",
- "miss": "La extensión '{0}' está configurada como formateador, pero no puede dar formato a archivos '{1}'",
- "miss.1": "Configurar el formateador predeterminado",
+ "miss": "Configurar el formateador predeterminado",
+ "miss.1": "La extensión '{0}' está configurada como formateador, pero no puede dar formato a archivos '{1}'",
+ "miss.2": "La extensión '{0}' está configurada como formateador, pero solo puede dar formato a '{1}' archivos como un todo, no selecciones ni partes del mismo.",
"null": "Ninguno",
"nullFormatterDescription": "NONE",
"select": "Seleccione un formateador predeterminado para los archivos \"{0}\"",
"summary": "Conflictos de formateador"
},
"vs/workbench/contrib/format/browser/formatActionsNone": {
- "cancel": "Cancelar",
"formatDocument.label.multiple": "Dar formato al documento",
- "install.formatter": "Instale el formateador...",
+ "install.formatter": "&&Instale el formateador...",
"no.provider": "No hay formateador para los archivos \"{0}\" instalados.",
"too.large": "No se puede formatear este archivo porque es demasiado grande."
},
@@ -6527,37 +10359,433 @@
"formatChanges": "Formatear las líneas modificadas"
},
"vs/workbench/contrib/inlayHints/browser/inlayHintsAccessibilty": {
- "description": "Código con información de sugerencia de incrustación",
- "isReadingLineWithInlayHints": "Si la línea actual y sus sugerencias de incrustación están centradas actualmente",
- "read.title": "Leer línea con sugerencias insertadas",
- "stop.title": "Detener lectura de sugerencias incrustación"
+ "description": "Código con información de indicación incrustada",
+ "isReadingLineWithInlayHints": "Si la línea actual y sus indicaciones incrustadas están centradas actualmente",
+ "read.title": "Leer línea con indicaciones incrustadas",
+ "stop.title": "Detener lectura de indicaciones incrustadas"
+ },
+ "vs/workbench/contrib/inlineChat/browser/inlineChat.contribution": {
+ "cancel": "Cancelar solicitud",
+ "cancelShort": "Cancelar",
+ "send.edit": "Editar código",
+ "send.generate": "Generar"
+ },
+ "vs/workbench/contrib/inlineChat/browser/inlineChatActions": {
+ "Keep": "Mantener",
+ "apply1": "Aceptar cambios",
+ "apply2": "Aceptar",
+ "arrowDown": "Cursor hacia abajo",
+ "arrowUp": "Cursor hacia arriba",
+ "cat": "Chat insertado",
+ "chat.rerun.label": "Volver a ejecutar la solicitud",
+ "close": "Cerrar",
+ "close2": "Cerrar",
+ "configure": "Configurar chat insertado",
+ "discard": "Descartar",
+ "focus": "Entrada de foco",
+ "moveToNextHunk": "Moverse al cambio siguiente",
+ "moveToPreviousHunk": "Moverse al cambio anterior",
+ "rerun": "Repetición",
+ "run": "Abrir chat en línea",
+ "showChanges": "Alternar cambios",
+ "startInlineChat": "Icono que genera el chat en línea desde la barra de herramientas del editor.",
+ "unstash": "Reanudar el último chat en línea descartado",
+ "viewInChat": "Ver en chat"
+ },
+ "vs/workbench/contrib/inlineChat/browser/inlineChatController": {
+ "askOrEditInContext": "Preguntar o editar en contexto",
+ "create.fail": "Error al iniciar el chat del editor",
+ "empty": "No hay resultados, refina la entrada e inténtalo de nuevo",
+ "err.apply": "Error al aplicar los cambios.",
+ "err.discard": "Error al descartar los cambios.",
+ "fix1": "Corrige el problema adjunto",
+ "fixN": "Corrige los problemas adjuntos",
+ "loading": "Trabajando...",
+ "placeholder": "Editar, refactorizar y generar código",
+ "responseWasEmpty": "La respuesta estaba vacía",
+ "welcome.2": "En preparación..."
+ },
+ "vs/workbench/contrib/inlineChat/browser/inlineChatSessionServiceImpl": {
+ "chat.remove.confirmation.checkbox": "No volver a preguntar",
+ "confirm": "¿Desea continuar en la vista chat?",
+ "confirm.cancel": "Cancelar",
+ "confirm.detail": "El chat en línea está diseñado para realizar cambios en el código de un solo archivo. Continúe su solicitud en la vista Chat o vuelva a formularla para el chat en línea.",
+ "confirm.title": "¿Desea continuar en la vista chat?",
+ "confirm.yes": "Continuar en la vista chat",
+ "name": "De chat insertada a chat del panel",
+ "resetChoice.label": "Restablece la opción para \"Mover chat insertado a chat del panel\""
+ },
+ "vs/workbench/contrib/inlineChat/browser/inlineChatWidget": {
+ "aria-label": "Entrada de chat insertado",
+ "feedbackThanks": "Gracias por sus comentarios",
+ "inlineChat.accessibilityHelp": "Entrada de chat insertado, use {0} para la Ayuda de accesibilidad del chat insertado.",
+ "inlineChat.accessibilityHelpNoKb": "Entrada de chat insertado, ejecute el comando Ayuda de accesibilidad del chat insertado para obtener más información.",
+ "termsDisclaimer": "Al continuar con {0} Copilot, acepta los [Términos]({2}) y la [Declaración de privacidad]({3}) de {1}"
+ },
+ "vs/workbench/contrib/inlineChat/browser/inlineChatZoneWidget": {
+ "inlineChatClosed": "Widget de chat en línea cerrado"
+ },
+ "vs/workbench/contrib/inlineChat/common/inlineChat": {
+ "accessibleDiffView": "Si el chat en línea también representa un visor de diferencias accesible para sus cambios.",
+ "accessibleDiffView.auto": "El visor de diferencias accesible se basa en la habilitación del modo de lector de pantalla.",
+ "accessibleDiffView.off": "El visor de diferencias accesible nunca está habilitado.",
+ "accessibleDiffView.on": "El visor de diferencias accesible siempre está habilitado.",
+ "editorMinimap.inlineChatInserted": "Color del marcador de minimapa para el contenido insertado del chat insertado.",
+ "editorOverviewRuler.inlineChatInserted": "Color del marcador de regla de información general para el contenido insertado en el chat insertado.",
+ "editorOverviewRuler.inlineChatRemoved": "Color del marcador de regla de información general para el contenido eliminado en el chat insertado.",
+ "enableV2": "Indica si se va a usar la siguiente versión del chat en línea.",
+ "finishOnType": "Indica si se debe finalizar una sesión de chat insertado al escribir fuera de las regiones modificadas.",
+ "holdToSpeech": "Indica si al mantener el enlace de teclado de chat insertado se habilitará automáticamente el reconocimiento de voz.",
+ "inlineChat.background": "Color de fondo del widget del editor interactivo",
+ "inlineChat.border": "Color de borde del widget del editor interactivo",
+ "inlineChat.foreground": "Color de primer plano del widget del editor interactivo",
+ "inlineChat.shadow": "Color de sombra del widget del editor interactivo",
+ "inlineChatChangeHasDiff": "Si el cambio actual admite la visualización de una diferencia",
+ "inlineChatChangeShowsDiff": "Si el cambio actual muestra una diferencia",
+ "inlineChatDiff.inserted": "Color de fondo del texto insertado en la entrada del editor interactivo",
+ "inlineChatDiff.removed": "Color de fondo del texto quitado de la entrada del editor interactivo",
+ "inlineChatEditing": "Si el usuario está editando o generando código en el chat insertado",
+ "inlineChatEmpty": "Si la entrada del editor interactivo está vacía",
+ "inlineChatFocused": "Si la entrada del editor interactivo está enfocada",
+ "inlineChatHasEditsAgent": "Si existe un agente para insertados para editores interactivos",
+ "inlineChatHasNotebookAgent": "Si existe un agente para las celdas del cuaderno",
+ "inlineChatHasNotebookInline": "Si existe un agente para las celdas del cuaderno",
+ "inlineChatHasPossible": "Si existe un proveedor para el chat en línea y si hay abierto un editor para el chat en línea",
+ "inlineChatHasProvider": "Si existe un proveedor para editores interactivos",
+ "inlineChatHasStashedSession": "Si el editor interactivo ha mantenido una sesión para una restauración rápida",
+ "inlineChatInnerCursorFirst": "Si el cursor de la entrada del editor iterante está en la primera línea",
+ "inlineChatInnerCursorLast": "Si el cursor de la entrada del editor iterante está en la última línea",
+ "inlineChatInput.background": "Color de fondo de la entrada del editor interactivo",
+ "inlineChatInput.border": "Color de borde de la entrada del editor interactivo",
+ "inlineChatInput.focusBorder": "Color de borde de la entrada del editor interactivo cuando se enfoca",
+ "inlineChatInput.placeholderForeground": "Color de primer plano del marcador de posición de entrada del editor interactivo",
+ "inlineChatOuterCursorPosition": "Si el cursor del editor externo está por encima o por debajo de la entrada del editor interactivo",
+ "inlineChatRequestInProgress": "Si una solicitud de chat en línea está actualmente en curso",
+ "inlineChatResponseFocused": "Si la respuesta del widget interactivo está centrada",
+ "inlineChatResponseTypes": "¿De qué tipo se han recibido las respuestas? Todavía no hay nada, solo mensajes o ediciones locales y de mensajes",
+ "inlineChatVisible": "Si la entrada del editor interactivo está visible",
+ "notebookAgent": "Habilite el comportamiento similar al agente para el widget de chat insertado en los cuadernos."
+ },
+ "vs/workbench/contrib/inlineChat/electron-browser/inlineChatActions": {
+ "holdForSpeech": "Suspensión para voz"
+ },
+ "vs/workbench/contrib/inlineCompletions/browser/inlineCompletionLanguageStatusBarContribution": {
+ "inlineCompletionAvailable": "Finalización en línea disponible",
+ "inlineEditAvailable": "Edición en línea disponible",
+ "inlineSuggestionLoading": "Cargando...",
+ "inlineSuggestions": "Sugerencias insertadas",
+ "inlineSuggestionsSmall": "Sugerencias insertadas",
+ "noInlineSuggestionAvailable": "No hay ninguna sugerencia insertada disponible"
},
"vs/workbench/contrib/interactive/browser/interactive.contribution": {
"interactive.activeCodeBorder": "Color del borde de la celda de código interactivo actual cuando el editor tiene el foco.",
"interactive.execute": "Ejecutar código",
- "interactive.history.focus": "Centrarse en la historia en la ventana interactiva",
+ "interactive.history.focus": "Historial de foco",
"interactive.history.next": "Siguiente valor en el historial",
"interactive.history.previous": "Valor anterior en el historial",
"interactive.inactiveCodeBorder": "Color del borde de la celda de código interactivo actual cuando el editor no tiene el foco.",
"interactive.input.clear": "Borrar el contenido del editor de entrada de la ventana interactiva",
- "interactive.input.focus": "Centrarse en el editor de entradas en la ventana interactiva",
+ "interactive.input.focus": "Editor de entrada de foco",
"interactive.open": "Abrir la ventana interactiva",
"interactiveScrollToBottom": "Desplazar al final",
"interactiveScrollToTop": "Desplazar al principio",
+ "interactiveWindow": "Ventana interactiva",
"interactiveWindow.alwaysScrollOnNewCell": "Desplazar automáticamente la ventana interactiva para mostrar la salida de la última instrucción ejecutada. Si este valor es falso, la ventana solo se desplazará si la última celda era ya aquella a la que se había desplazado.",
- "interactiveWindow.restore": "Controls whether the Interactive Window sessions/history should be restored across window reloads. Whether the state of controllers used in Interactive Windows is persisted across window reloads are controlled by extensions contributing controllers."
- },
- "vs/workbench/contrib/interactive/browser/interactiveEditor": {
- "interactiveInputPlaceHolder": "Escriba él código '{0}' aquí y presione {1} para ejecutar"
- },
- "vs/workbench/contrib/issue/electron-sandbox/issue.contribution": {
- "miOpenProcessExplorerer": "Abrir &&explorador de procesos",
- "miReportIssue": "Reportar &&problema en inglés",
- "reportIssueInEnglish": "Notificar problema..."
- },
- "vs/workbench/contrib/issue/electron-sandbox/issueActions": {
- "openProcessExplorer": "Abrir Explorador de Procesos",
- "reportPerformanceIssue": "Notificar problema de rendimiento..."
+ "interactiveWindow.executeWithShiftEnter": "Ejecute el cuadro de entrada de la ventana interactiva (REPL) con Mayús+Entrar, para que se pueda usar Entrar para crear una nueva línea.",
+ "interactiveWindow.promptToSaveOnClose": "Preguntar si se guarda la ventana interactiva cuando se cierra. Solo las nuevas ventanas interactivas se verán afectadas por este cambio de configuración.",
+ "interactiveWindow.showExecutionHint": "Muestra una sugerencia en el cuadro de entrada de ventana interactiva (REPL) para indicar cómo ejecutar código."
+ },
+ "vs/workbench/contrib/interactive/browser/replInputHintContentWidget": {
+ "ReplInputAriaLabelHelp": "Use {0} para obtener ayuda de accesibilidad. ",
+ "ReplInputAriaLabelHelpNoKb": "Ejecute el comando Abrir ayuda de accesibilidad para obtener más información. ",
+ "disableHint": " Alternar {0} en la configuración para deshabilitar esta sugerencia.",
+ "emptyHintText": "Presione {0} para ejecutar. "
+ },
+ "vs/workbench/contrib/interactiveEditor/browser/interactiveEditorActions": {
+ "accept": "Crear solicitud",
+ "actions.interactiveSession.accessibiltyHelpEditor": "Ayuda de accesibilidad del Editor de sesiones interactivas",
+ "apply1": "Aceptar cambios",
+ "apply2": "Aceptar",
+ "arrowDown": "Cursor hacia abajo",
+ "arrowUp": "Cursor hacia arriba",
+ "cancel": "Cancelar",
+ "cat": "Editor interactivo",
+ "contractMessage": "Mensaje de contrato",
+ "copyRecordings": "(Desarrollador) Escribir Exchange en el Portapapeles",
+ "discard": "Descartar",
+ "discardMenu": "Descartar...",
+ "expandMessage": "Expandir mensaje",
+ "feedback.helpful": "Útil",
+ "feedback.unhelpful": "Inútil",
+ "focus": "Entrada de foco",
+ "label": "Seguimientos de \"{0}\" y {1} ({2})",
+ "nextFromHistory": "Siguiente del historial",
+ "previousFromHistory": "Anterior desde el historial",
+ "run": "Iniciar chat de código",
+ "stop": "Detener solicitud",
+ "toggleDiff": "Activar o desactivar diferencias",
+ "toggleDiff2": "Mostrar diferencias insertadas",
+ "undo.clipboard": "Descartar al Portapapeles",
+ "undo.newfile": "Descartar en archivo nuevo",
+ "unstash": "Reanudar el último chat de código descartado",
+ "viewInChat": "Ver en chat"
+ },
+ "vs/workbench/contrib/interactiveEditor/browser/interactiveEditorController": {
+ "create.fail": "Error al iniciar el chat del editor",
+ "create.fail.detail": "Consulte el registro de errores y vuelva a intentarlo más tarde.",
+ "default.placeholder": "Hacer una pregunta",
+ "default.placeholder.history": "{0} ({1}, {2} para el historial)",
+ "empty": "No hay resultados, refina la entrada e inténtalo de nuevo",
+ "err.apply": "Error al aplicar los cambios.",
+ "err.discard": "Error al descartar los cambios.",
+ "thinking": "Pensando...",
+ "welcome.1": "El contenido generado por inteligencia artificial puede ser incorrecto"
+ },
+ "vs/workbench/contrib/interactiveEditor/browser/interactiveEditorStrategies": {
+ "lines.0": "No ha cambiado nada",
+ "lines.1": "Se modificó 1 línea",
+ "lines.N": "Líneas {0} modificadas"
+ },
+ "vs/workbench/contrib/interactiveEditor/browser/interactiveEditorWidget": {
+ "aria-label": "Entrada del editor interactivo",
+ "interactiveEditor.accessibilityHelp": "Entrada interactiva del editor, use {0} para la Ayuda de accesibilidad del editor interactivo.",
+ "interactiveSessionInput.accessibilityHelpNoKb": "Entrada interactiva del editor, ejecute el comando de ayuda de accesibilidad del editor interactivo para obtener más información.",
+ "modified": "Modificado",
+ "original": "Original"
+ },
+ "vs/workbench/contrib/interactiveEditor/common/interactiveEditor": {
+ "editMode": "Configure si los cambios diseñados en el editor interactivo se aplican directamente al documento o se obtiene una vista previa primero.",
+ "editMode.live": "Los cambios se aplican directamente al documento, pero se pueden resaltar mediante diferencias insertadas. Al finalizar una sesión, se conservarán los cambios.",
+ "editMode.livePreview": "Los cambios se aplican directamente al documento y se resaltan visualmente a través de diferencias en línea o en paralelo. Al finalizar una sesión, se conservarán los cambios.",
+ "editMode.preview": "Solo se obtiene una vista previa de los cambios y es necesario aceptarlos mediante el botón Aplicar. Al finalizar una sesión, se descartarán los cambios.",
+ "interactiveEditor.border": "Color de borde del widget del editor interactivo",
+ "interactiveEditor.regionHighlight": "Resaltado en segundo plano de la región interactiva actual. Debe ser transparente.",
+ "interactiveEditor.shadow": "Color de sombra del widget del editor interactivo",
+ "interactiveEditorDidEdit": "Si el editor interactivo ha cambiado algún código",
+ "interactiveEditorDiff": "Si el editor interactivo muestra diferencias para los cambios.",
+ "interactiveEditorDiff.inserted": "Color de fondo del texto insertado en la entrada del editor interactivo",
+ "interactiveEditorDiff.removed": "Color de fondo del texto quitado de la entrada del editor interactivo",
+ "interactiveEditorDocumentChanged": "Si el documento ha cambiado simultáneamente",
+ "interactiveEditorEmpty": "Si la entrada del editor interactivo está vacía",
+ "interactiveEditorFocused": "Si la entrada del editor interactivo está enfocada",
+ "interactiveEditorHasActiveRequest": "Si el editor interactivo tiene una solicitud activa",
+ "interactiveEditorHasProvider": "Si existe un proveedor para editores interactivos",
+ "interactiveEditorHasStashedSession": "Si el editor interactivo ha mantenido una sesión para una restauración rápida",
+ "interactiveEditorInnerCursorFirst": "Si el cursor de la entrada del editor iterante está en la primera línea",
+ "interactiveEditorInnerCursorLast": "Si el cursor de la entrada del editor iterante está en la última línea",
+ "interactiveEditorInput.background": "Color de fondo de la entrada del editor interactivo",
+ "interactiveEditorInput.border": "Color de borde de la entrada del editor interactivo",
+ "interactiveEditorInput.focusBorder": "Color de borde de la entrada del editor interactivo cuando se enfoca",
+ "interactiveEditorInput.placeholderForeground": "Color de primer plano del marcador de posición de entrada del editor interactivo",
+ "interactiveEditorLastFeedbackKind": "Último tipo de comentario que se proporcionó",
+ "interactiveEditorMarkdownMessageCropState": "Si el mensaje del editor interactivo está recortado, no recortado o expandido",
+ "interactiveEditorOuterCursorPosition": "Si el cursor del editor externo está por encima o por debajo de la entrada del editor interactivo",
+ "interactiveEditorResponseType": "¿Qué tipo fue la última respuesta de la sesión del editor interactivo actual?",
+ "interactiveEditorVisible": "Si la entrada del editor interactivo está visible"
+ },
+ "vs/workbench/contrib/interactiveSession/browser/actions/interactiveSessionActions": {
+ "actions.ineractiveSession.acceptInput": "Sesión interactiva Aceptar entrada",
+ "actions.interactiveSession.focus": "Enfocar la sesión interactiva",
+ "interactiveSession.category": "Sesión interactiva",
+ "interactiveSession.clear.label": "Borrar",
+ "interactiveSession.clearHistory.label": "Borrar el historial de entradas",
+ "interactiveSession.focusInput.label": "Entrada de foco",
+ "interactiveSession.history.label": "Mostrar historial",
+ "interactiveSession.history.pick": "Seleccione una sesión de chat para restaurar",
+ "interactiveSession.open": "Abrir editor ({0})"
+ },
+ "vs/workbench/contrib/interactiveSession/browser/actions/interactiveSessionCodeblockActions": {
+ "interactive.copyCodeBlock.label": "Copiar",
+ "interactive.insertCodeBlock.label": "Insertar en el cursor",
+ "interactive.insertIntoNewFile.label": "Insertar en nuevo archivo",
+ "interactive.runInTerminal.label": "Ejecutar en terminal"
+ },
+ "vs/workbench/contrib/interactiveSession/browser/actions/interactiveSessionCopyActions": {
+ "interactive.copyAll.label": "Copiar todo",
+ "interactive.copyItem.label": "Copiar"
+ },
+ "vs/workbench/contrib/interactiveSession/browser/actions/interactiveSessionExecuteActions": {
+ "interactive.cancel.label": "Cancelar",
+ "interactive.submit.label": "Enviar"
+ },
+ "vs/workbench/contrib/interactiveSession/browser/actions/interactiveSessionTitleActions": {
+ "interactive.voteDown.label": "Votar en contra",
+ "interactive.voteUp.label": "Votar a favor"
+ },
+ "vs/workbench/contrib/interactiveSession/browser/contrib/interactiveSessionInputEditorContrib": {
+ "interactive.input.placeholderNoCommands": "Formule su pregunta",
+ "interactive.input.placeholderWithCommands": "Formule una pregunta o escriba \"/\" para los temas"
+ },
+ "vs/workbench/contrib/interactiveSession/browser/interactiveSession.contribution": {
+ "interactiveSession": "Sesión interactiva",
+ "interactiveSession.editor.fontFamily": "Controla la familia de fuentes en sesiones interactivas.",
+ "interactiveSession.editor.fontSize": "Controla el tamaño de fuente en píxeles en sesiones interactivas.",
+ "interactiveSession.editor.fontWeight": "Controla el grosor de la fuente en las sesiones interactivas.",
+ "interactiveSession.editor.lineHeight": "Controla la altura de línea en píxeles en sesiones interactivas. Use 0 para calcular la altura de línea a partir del tamaño de fuente.",
+ "interactiveSession.editor.wordWrap": "Controla si las líneas deben ajustarse en sesiones interactivas.",
+ "interactiveSessionConfigurationTitle": "Sesión interactiva"
+ },
+ "vs/workbench/contrib/interactiveSession/browser/interactiveSessionContributionServiceImpl": {
+ "vscode.extension.contributes.interactiveSession": "Aporta un proveedor de sesiones interactivas",
+ "vscode.extension.contributes.interactiveSession.icon": "Un icono para este proveedor de Sesión interactiva.",
+ "vscode.extension.contributes.interactiveSession.id": "Identificador único para este proveedor de sesión interactiva.",
+ "vscode.extension.contributes.interactiveSession.label": "Nombre para mostrar de este proveedor de sesión interactiva.",
+ "vscode.extension.contributes.interactiveSession.when": "Una condición que debe ser verdadera para habilitar este proveedor de sesión interactiva."
+ },
+ "vs/workbench/contrib/interactiveSession/browser/interactiveSessionEditorInput": {
+ "interactiveSessionEditorName": "Sesión interactiva"
+ },
+ "vs/workbench/contrib/interactiveSession/browser/interactiveSessionInputPart": {
+ "interactiveSessionInput": "Entrada de sesión interactiva"
+ },
+ "vs/workbench/contrib/interactiveSession/browser/interactiveSessionListRenderer": {
+ "interactiveSession": "Sesión interactiva"
+ },
+ "vs/workbench/contrib/interactiveSession/browser/interactiveSessionWidget": {
+ "clear": "Borrar la sesión"
+ },
+ "vs/workbench/contrib/interactiveSession/common/interactiveSessionColors": {
+ "interactive.requestBackground": "El color de fondo de una solicitud interactiva.",
+ "interactive.requestBorder": "Color de borde de una solicitud interactiva."
+ },
+ "vs/workbench/contrib/interactiveSession/common/interactiveSessionContextKeys": {
+ "hasInteractiveSessionProvider": "Es true cuando se ha registrado algún proveedor de sesiones interactivas.",
+ "inInteractiveInput": "es true cuando el foco está en la entrada interactiva; en caso contrario, es false.",
+ "inInteractiveSession": "Es true cuando el foco está en el widget de sesión interactiva; en caso contrario, es false.",
+ "interactiveInputHasText": "Es true cuando la entrada interactiva tiene texto.",
+ "interactiveSessionRequestInProgress": "Es true cuando la solicitud actual aún está en curso.",
+ "interactiveSessionResponseHasProviderId": "Es true cuando el proveedor ha asignado un identificador a esta respuesta.",
+ "interactiveSessionResponseVote": "Cuando la respuesta ha sido votada a favor, se establece en \"up\". Cuando se ha votado en contra, se establece como \"down\". En caso contrario, será una cadena vacía."
+ },
+ "vs/workbench/contrib/interactiveSession/common/interactiveSessionServiceImpl": {
+ "emptyResponse": "El proveedor devolvió una respuesta nula"
+ },
+ "vs/workbench/contrib/interactiveSession/common/interactiveSessionViewModel": {
+ "thinking": "Pensando"
+ },
+ "vs/workbench/contrib/issue/browser/baseIssueReporterService": {
+ "acknowledge": "Confirmar reconocimiento de versión",
+ "bugDescription": "Indique los pasos necesarios para reproducir el problema. Debe incluir el resultado real y el resultado esperado. Admitimos Markdown al estilo de GitHub. Podrá editar el problema y agregar capturas de pantalla cuando veamos una vista previa en GitHub.",
+ "bugReporter": "Informe de errores",
+ "closed": "Cerrado",
+ "create": "Crear en GitHub",
+ "createInternally": "Crear internamente",
+ "createOnGitHub": "Crear en GitHub",
+ "description": "Descripción",
+ "disabledExtensions": "Las extensiones están deshabilitadas",
+ "elsewhereDescription": "La extensión '{0}' prefiere usar un informador de problemas externo. Para acceder a esa experiencia de informes de problemas, haga clic en el botón siguiente.",
+ "extension": "Extensión de VS Code",
+ "extensionPlaceholder": "P. ej. Falta texto alternativo en la imagen Léame de la extensión",
+ "featureRequest": "Solicitud de característica",
+ "featureRequestDescription": "Describa la característica que le gustaría ver. Admitimos Markdown al estilo de GitHub. Podrá editar esta información y agregar capturas de pantalla cuando veamos una vista previa en GitHub.",
+ "handlesIssuesElsewhere": "Esta extensión controla los problemas fuera de VS Code",
+ "hide": "ocultar",
+ "internalPreviewMessage": "Si los registros de depuración de Copilot contienen información confidencial:",
+ "marketplace": "Marketplace de extensiones",
+ "marketplacePlaceholder": "Por ejemplo, no se puede deshabilitar la extensión instalada",
+ "open": "Abrir",
+ "openIssueReporter": "Abrir informador de problemas externos",
+ "pasteData": "Hemos escrito los datos necesarios en su Portapapeles porque eran demasiado grandes para enviarlos. Ahora debe pegarlos.",
+ "performanceIssue": "Problema de rendimiento (inmovilización, lentitud, bloqueo)",
+ "performanceIssueDesciption": "¿Cuándo ocurrió este problema de rendimiento? ¿Se produce al inicio o después de realizar una serie específica de acciones? Admitimos Markdown al estilo de GitHub. Podrá editar el problema y agregar capturas de pantalla cuando veamos una vista previa en GitHub.",
+ "preview": "Versión preliminar en GitHub",
+ "previewOnGitHub": "Versión preliminar en GitHub",
+ "privateCreate": "Crear internamente",
+ "saveExtensionData": "Guardar datos de extensión",
+ "selectExtension": "Seleccionar extensión",
+ "selectSource": "Seleccionar origen",
+ "show": "mostrar",
+ "similarIssues": "Problemas similares",
+ "stepsToReproduce": "Pasos para reproducir",
+ "undefinedPlaceholder": "Escriba un título",
+ "unknown": "No sé",
+ "vscode": "Visual Studio Code",
+ "vscodePlaceholder": "Por ejemplo, en Workbench falta el panel de problemas"
+ },
+ "vs/workbench/contrib/issue/browser/issue.contribution": {
+ "statusUnsupported": "El argumento --status aún no se admite en exploradores."
+ },
+ "vs/workbench/contrib/issue/browser/issueFormService": {
+ "cancel": "Cancelar",
+ "confirmCloseIssueReporter": "Su entrada no se guardará. ¿Está seguro de que desea cerrar esta ventana?",
+ "issueReporterWriteToClipboard": "Los datos son demasiados para enviarlos a GitHub directamente. Los datos se copiarán en el portapapeles, péguelos en la página de problemas de GitHub que se abre.",
+ "ok": "&&Aceptar",
+ "yes": "&&Sí"
+ },
+ "vs/workbench/contrib/issue/browser/issueQuickAccess": {
+ "contributedIssuePage": "Abrir página de extensión",
+ "extensions": "Extensiones",
+ "reportExtensionMarketplace": "Marketplace de extensiones"
+ },
+ "vs/workbench/contrib/issue/browser/issueReporterPage": {
+ "acknowledgements": "Confirmo que mi versión de VS Code no está actualizada y que este problema puede cerrarse.",
+ "chooseExtension": "Extensión",
+ "completeInEnglish": "Complete el formulario en inglés.",
+ "descriptionEmptyValidation": "Se requiere una descripción.",
+ "descriptionTooShortValidation": "Proporcione una descripción más larga.",
+ "details": "Especifique los detalles.",
+ "disableExtensions": "Deshabilitar todas las extensiones y volver a cargar la ventana",
+ "disableExtensionsLabelText": "Intente reproducir el problema después de {0}. Si el problema sólo se reproduce cuando las extensiones están activas, puede que haya un problema con una extensión.",
+ "downloadExtensionData": "Descargar datos de extensión",
+ "extensionData": "La extensión no tiene datos adicionales para incluir.",
+ "extensionWithNoBugsUrl": "El notificador de problemas no puede crear un informe para esta extensión, ya que no especifica una dirección URL para notificar problemas. Consulte la página del catálogo de esta extensión para ver si hay otras instrucciones disponibles.",
+ "extensionWithNonstandardBugsUrl": "El notificador del problema no puede crear problemas para esta extensión. Visite {0} para informar de un problema.",
+ "issueSourceEmptyValidation": "Se requiere un origen del problema.",
+ "issueSourceLabel": "Para",
+ "issueTitleLabel": "Título",
+ "issueTitleRequired": "Por favor, introduzca un título.",
+ "issueTypeLabel": "Esto es un",
+ "reviewGuidanceLabel": "Antes de informar de un problema aquí, revise la guía que le proporcionamos . Complete el formulario en inglés.",
+ "sendExperiments": "Incluir información del experimento A/B",
+ "sendExtensionData": "Incluir información adicional de la extensión",
+ "sendExtensions": "Incluir mis extensiones habilitadas",
+ "sendProcessInfo": "Incluir mis procesos actualmente en ejecución",
+ "sendSystemInfo": "Incluir mi información del sistema",
+ "sendWorkspaceInfo": "Incluir los metadatos de mi área de trabajo",
+ "show": "mostrar",
+ "titleEmptyValidation": "Se requiere un título.",
+ "titleLengthValidation": "El título es demasiado largo."
+ },
+ "vs/workbench/contrib/issue/browser/issueReporterService": {
+ "undefinedPlaceholder": "Escriba un título"
+ },
+ "vs/workbench/contrib/issue/browser/issueTroubleshoot": {
+ "I cannot reproduce": "No puedo reproducir",
+ "Stop": "Detener",
+ "This is Bad": "Puedo reproducir",
+ "ask to download insiders": "Intente descargar y reproducir el problema en {0} Insiders.",
+ "ask to reproduce issue": "Intente reproducir el problema en {0} Insiders y confirme si el problema existe allí.",
+ "bad": "Puedo reproducir",
+ "detail.start": "La solución de problemas es un proceso que le ayuda a identificar la causa de un problema. La causa de un problema puede ser un error de configuración, debido a una extensión o ser {0} él mismo.\r\n\r\nDurante el proceso, la ventana se vuelve a cargar varias veces. Cada vez que deba confirmar si sigue viendo el problema.",
+ "download insiders": "Descargar {0} Insiders",
+ "empty.profile": "La solución de problemas está activa y ha restablecido temporalmente las configuraciones a los valores predeterminados. Compruebe si todavía puede reproducir el problema y continúe seleccionando entre estas opciones.",
+ "good": "No puedo reproducir",
+ "issue is in core": "La solución de problemas ha identificado que el problema es con {0}.",
+ "issue is with configuration": "La solución de problemas ha identificado que el problema se debe a las configuraciones. Para notificar el problema, exporte las configuraciones mediante el comando \"Exportar Perfil\" y comparta el archivo en el informe de problemas.",
+ "msg": "&&Solucionar problema",
+ "profile.extensions.disabled": "La solución de problemas está activa y ha deshabilitado temporalmente todas las extensiones instaladas. Compruebe si todavía puede reproducir el problema y continúe seleccionando entre estas opciones.",
+ "report anyway": "Notificar problema de todos modos",
+ "stop": "Detener",
+ "title.stop": "Tener la solución de problemas",
+ "troubleshoot issue": "Solucionar problema",
+ "troubleshootIssue": "Solucionar problema...",
+ "use insiders": "Probablemente, esto significa que el problema ya se ha solucionado y estará disponible en una próxima versión. Puede usar {0} Insiders de forma segura hasta que la nueva versión estable esté disponible."
+ },
+ "vs/workbench/contrib/issue/common/issue.contribution": {
+ "miReportIssue": "Reportar &&problema en inglés",
+ "reportIssueInEnglish": "Notificar problema..."
+ },
+ "vs/workbench/contrib/issue/electron-browser/issue.contribution": {
+ "openIssueReporter": "Abrir informador de problemas",
+ "reportPerformanceIssue": "Notificar problema de rendimiento...",
+ "tasksQuickAccessPlaceholder": "Escriba el nombre de una extensión sobre la que informar."
+ },
+ "vs/workbench/contrib/issue/electron-browser/issueReporterService": {
+ "noCurrentExperiments": "No hay experimentos en curso.",
+ "pasteData": "Hemos escrito los datos necesarios en su Portapapeles porque eran demasiado grandes para enviarlos. Ahora debe pegarlos.",
+ "saveExtensionData": "Guardar datos de extensión",
+ "undefinedPlaceholder": "Escriba un título",
+ "updateAvailable": "Hay disponible una nueva versión de {0}."
},
"vs/workbench/contrib/keybindings/browser/keybindings.contribution": {
"toggleKeybindingsLog": "Alternar la solución de problemas de los métodos abreviados de teclado"
@@ -6569,10 +10797,9 @@
"noDetection": "No se puede detectar el lenguaje del editor",
"status.autoDetectLanguage": "Aceptar lenguaje detectado: {0}"
},
- "vs/workbench/contrib/languageStatus/browser/languageStatus.contribution": {
+ "vs/workbench/contrib/languageStatus/browser/languageStatus": {
"aria.1": "{0}, {1}",
"aria.2": "{0}",
- "cat": "Ver",
"langStatus.aria": "Estado del idioma del editor: {0}",
"langStatus.name": "Estado de idioma del editor",
"name.pattern": "{0} (Estado de idioma)",
@@ -6580,6 +10807,27 @@
"reset": "Restablecer contador de interacción de estado de idioma",
"unpin": "Quitar de la barra de estado"
},
+ "vs/workbench/contrib/limitIndicator/browser/limitIndicator.contribution": {
+ "colorDecoratorsStatusItem.name": "Estado del decorador de color",
+ "colorDecoratorsStatusItem.source": "Decoradores de color",
+ "foldingRangesStatusItem.name": "Estado de plegado",
+ "foldingRangesStatusItem.source": "Plegamiento",
+ "status.button.configure": "Configurar",
+ "status.limited.details": "solo se muestran {0} por motivos de rendimiento",
+ "status.limitedColorDecorators.short": "Decoradores de color",
+ "status.limitedFoldingRanges.short": "Rangos de plegado"
+ },
+ "vs/workbench/contrib/list/browser/listResizeColumnAction": {
+ "list": "Lista",
+ "list.resizeColumn": "Cambiar tamaño de columna"
+ },
+ "vs/workbench/contrib/list/browser/tableColumnResizeQuickPick": {
+ "table.column.resizeValue.invalidRange": "Especifique un número mayor que 0 y menor o igual a 100.",
+ "table.column.resizeValue.invalidType": "Introduzca un entero.",
+ "table.column.resizeValue.placeHolder": "Por ejemplo, 20, 60, 100...",
+ "table.column.resizeValue.prompt": "Escriba un ancho en porcentaje para la columna \"{0}\".",
+ "table.column.selection": "Seleccione la columna cuyo tamaño se va a cambiar y escriba para filtrar."
+ },
"vs/workbench/contrib/localHistory/browser/localHistory": {
"localHistoryIcon": "Icono de una entrada del historial local en la vista Escala de tiempo.",
"localHistoryRestore": "Icono para restaurar el contenido de una entrada del historial local."
@@ -6606,6 +10854,7 @@
"localHistory.rename": "Cambiar nombre",
"localHistory.restore": "Restaurar contenido",
"localHistory.restoreViaPicker": "Buscar entrada para restaurar",
+ "localHistory.restoreViaPickerMenu": "Historial local: buscar entrada para restaurar...",
"localHistory.selectForCompare": "Seleccionar para comparar",
"localHistoryCompareToFileEditorLabel": "{0} ({1} • {2}) ↔ {3}",
"localHistoryCompareToPreviousEditorLabel": "{0} ({1} • {2}) ↔ {3} ({4} • {5})",
@@ -6621,34 +10870,16 @@
"vs/workbench/contrib/localHistory/browser/localHistoryTimeline": {
"localHistory": "Historial local"
},
- "vs/workbench/contrib/localHistory/electron-sandbox/localHistoryCommands": {
+ "vs/workbench/contrib/localHistory/electron-browser/localHistoryCommands": {
"openContainer": "Abrir carpeta contenedora",
"revealInMac": "Revelar en Finder",
"revealInWindows": "Mostrar en el Explorador de archivos"
},
- "vs/workbench/contrib/localization/browser/localizationsActions": {
- "available": "Disponible",
- "chooseLocale": "Seleccionar idioma para mostrar",
- "clearDisplayLanguage": "Borrar visualización de preferencia de idioma",
- "configureLocale": "Configurar idioma de pantalla",
- "installed": "Instalado"
- },
- "vs/workbench/contrib/localization/electron-sandbox/localeService": {
- "argvInvalid": "No se puede escribir el idioma para mostrar. Abra la configuración del entorno de ejecución, corrija los errores o advertencias que contiene e inténtelo de nuevo.",
- "installing": "Instalando {0} compatibilidad con idiomas...",
- "openArgv": "Abrir configuración en tiempo de ejecución",
- "restart": "&&Reiniciar",
- "restartDisplayLanguageDetail": "Presione el botón reiniciar para de reinicio {0} y establezca el idioma para mostrar en {1}.",
- "restartDisplayLanguageMessage": "Para cambiar el idioma para mostrar, {0} debe reiniciarse"
- },
- "vs/workbench/contrib/localization/electron-sandbox/localization.contribution": {
- "activateLanguagePack": "Para utilizar VS Code en {0}, VS Code necesita reiniciarse.",
- "changeAndRestart": "Cambiar el idioma y reiniciar",
- "doNotChangeAndRestart": "No cambiar el idioma",
- "doNotRestart": "No reiniciar",
- "neverAgain": "No mostrar de nuevo",
- "restart": "Reiniciar",
- "updateLocale": "¿Desea cambiar el idioma de la interfaz de usuario de VS Code a {0} y reiniciar la aplicación?",
+ "vs/workbench/contrib/localization/common/localization.contribution": {
+ "language id": "Id. de lenguaje",
+ "localizations": "Paquetes de idioma",
+ "localizations language name": "Nombre de idioma",
+ "localizations localized language name": "Nombre de idioma (localizado)",
"vscode.extension.contributes.localizations": "Contribuye a la localización del editor",
"vscode.extension.contributes.localizations.languageId": "Identificador del idioma en el que se traducen las cadenas de visualización.",
"vscode.extension.contributes.localizations.languageName": "Nombre del idioma en Inglés.",
@@ -6658,81 +10889,77 @@
"vscode.extension.contributes.localizations.translations.id.pattern": "ID debe ser ' vscode ' o en formato ' publisherId.extensionName ' para traducer VS Code o una extensión respectivamente.",
"vscode.extension.contributes.localizations.translations.path": "Una ruta de acceso relativa a un archivo que contiene traducciones para el idioma."
},
- "vs/workbench/contrib/localization/electron-sandbox/minimalTranslations": {
- "installAndRestart": "Instalar y Reiniciar",
- "installAndRestartMessage": "Instala el paquete de idioma para cambiar el idioma a {0}.",
- "searchMarketplace": "Buscar en Marketplace ",
- "showLanguagePackExtensions": "Busca paquetes de idioma en Marketplace para cambiar el idioma a {0}."
+ "vs/workbench/contrib/localization/common/localizationsActions": {
+ "available": "Disponible",
+ "chooseLocale": "Seleccionar idioma para mostrar",
+ "clearDisplayLanguage": "Borrar preferencia de idioma de visualización",
+ "configureLocale": "Configurar idioma de pantalla",
+ "configureLocaleDescription": "Cambia la configuración regional de VS Code en función de los paquetes de idioma instalados. Entre los idiomas comunes se incluyen francés, chino, español, japonés, alemán, coreano, etc.",
+ "installed": "Instalado",
+ "moreInfo": "Más información"
},
- "vs/workbench/contrib/localizations/browser/localizations.contribution": {
- "activateLanguagePack": "Para utilizar VS Code en {0}, VS Code necesita reiniciarse.",
+ "vs/workbench/contrib/localization/electron-browser/localization.contribution": {
"changeAndRestart": "Cambiar el idioma y reiniciar",
- "doNotChangeAndRestart": "No cambiar el idioma",
- "doNotRestart": "No reiniciar",
- "neverAgain": "No mostrar de nuevo",
- "restart": "Reiniciar",
- "updateLocale": "¿Desea cambiar el idioma de la interfaz de usuario de VS Code a {0} y reiniciar la aplicación?",
- "vscode.extension.contributes.localizations": "Contribuye a la localización del editor",
- "vscode.extension.contributes.localizations.languageId": "Identificador del idioma en el que se traducen las cadenas de visualización.",
- "vscode.extension.contributes.localizations.languageName": "Nombre del idioma en Inglés.",
- "vscode.extension.contributes.localizations.languageNameLocalized": "Nombre de la lengua en el idioma contribuido.",
- "vscode.extension.contributes.localizations.translations": "Lista de traducciones asociadas al idioma.",
- "vscode.extension.contributes.localizations.translations.id": "ID de VS Code o extensión a la que se ha contribuido esta traducción. ID de código vs es siempre ' vscode ' y de extensión debe ser en formato ' publisherID. extensionName '.",
- "vscode.extension.contributes.localizations.translations.id.pattern": "ID debe ser ' vscode ' o en formato ' publisherId.extensionName ' para traducer VS Code o una extensión respectivamente.",
- "vscode.extension.contributes.localizations.translations.path": "Una ruta de acceso relativa a un archivo que contiene traducciones para el idioma."
- },
- "vs/workbench/contrib/localizations/browser/localizationsActions": {
- "chooseDisplayLanguage": "Seleccionar idioma para mostrar",
- "configureLocale": "Configurar idioma de pantalla",
- "installAdditionalLanguages": "Instalar idiomas adicionales...",
- "relaunchDisplayLanguageDetail": "Presione el botón de reinicio {0} y cambie el idioma para mostrar.",
- "relaunchDisplayLanguageMessage": "Para que el cambio del idioma para mostrar surta efecto, es necesario reiniciar.",
- "restart": "&&Reiniciar"
+ "neverAgain": "No volver a mostrar",
+ "updateLocale": "¿Quiere cambiar el idioma de visualización de {0} a {1} y reiniciar?"
},
- "vs/workbench/contrib/localizations/browser/minimalTranslations": {
+ "vs/workbench/contrib/localization/electron-browser/minimalTranslations": {
"installAndRestart": "Instalar y Reiniciar",
"installAndRestartMessage": "Instala el paquete de idioma para cambiar el idioma a {0}.",
- "searchMarketplace": "Buscar en Marketplace ",
+ "searchMarketplace": "Buscar en Marketplace",
"showLanguagePackExtensions": "Busca paquetes de idioma en Marketplace para cambiar el idioma a {0}."
},
"vs/workbench/contrib/logs/common/logs.contribution": {
- "editSessionsLog": "Editar sesiones",
- "rendererLog": "Ventana",
- "show window log": "Mostrar registro de ventana",
- "telemetryLog": "Telemetría",
- "userDataSyncLog": "Sincronización de configuración"
+ "remote name": "{0} (remoto)",
+ "setDefaultLogLevel": "Establecer nivel de registro predeterminado",
+ "show window log": "Mostrar registro de ventana"
},
"vs/workbench/contrib/logs/common/logsActions": {
- "critical": "Crítico",
+ "all": "Todo",
"current": "Actual",
- "debug": "Depurar",
"default": "Predeterminado",
- "default and current": "Predeterminado y actual",
- "err": "Error",
- "info": "Información",
+ "extensionLogs": "Registros de extensión",
"log placeholder": "Seleccionar el archivo de registro",
- "off": "OFF",
+ "loggers": "Registros",
"openSessionLogFile": "Abra el archivo de registro de ventana (Sesión)...",
+ "resetLogLevel": "Establecer como nivel de registro predeterminado",
"selectLogLevel": "Seleccionar nivel de log",
+ "selectLogLevelFor": " {0}: Seleccionar nivel de registro",
+ "selectlog": "Establecer nivel de registro",
"sessions placeholder": "Seleccione sesión",
- "setLogLevel": "Establecer nivel de registro...",
- "trace": "Seguimiento",
- "warn": "Advertencia"
+ "setLogLevel": "Establecer nivel de registro..."
},
- "vs/workbench/contrib/logs/electron-sandbox/logs.contribution": {
- "mainLog": "Principal",
- "sharedLog": "Compartido"
- },
- "vs/workbench/contrib/logs/electron-sandbox/logsActions": {
+ "vs/workbench/contrib/logs/electron-browser/logsActions": {
"openExtensionLogsFolder": "Abrir carpeta de registros de extensión",
"openLogsFolder": "Abrir carpeta de registros"
},
+ "vs/workbench/contrib/markdown/browser/markdownSettingRenderer": {
+ "alreadysetBoolFalse": "\"{0}: {1}\" ya está deshabilitado",
+ "alreadysetBoolTrue": "\"{0}: {1}\" ya está habilitado",
+ "alreadysetNum": "\"{0}: {1}\" ya está establecido en {2}",
+ "alreadysetString": "\"{0}: {1}\" ya está establecido en \"{2}\"",
+ "changeSettingTitle": "Ver o cambiar la configuración",
+ "copySettingId": "Copiar id. de configuración",
+ "falseMessage": "Deshabilitar \"{0}: {1}\"",
+ "numberValue": "Establecer \"{0}: {1}\" en {2}",
+ "restorePreviousValue": "Restaurar valor de \"{0}: {1}\"",
+ "stringValue": "Establecer \"{0}: {1}\" en \"{2}\"",
+ "trueMessage": "Habilitar \"{0}: {1}\"",
+ "viewInSettings": "Ver en Configuración",
+ "viewInSettingsDetailed": "Ver \"{0}: {1}\" en Configuración"
+ },
+ "vs/workbench/contrib/markdown/common/markdownColors": {
+ "markdownAlertCautionForeground": "Color de primer plano para alertas de precaución en Markdown.",
+ "markdownAlertImportantForeground": "Color de primer plano para alertas importantes en Markdown.",
+ "markdownAlertNoteForeground": "Color de primer plano para alertas de notas en Markdown.",
+ "markdownAlertTipForeground": "Color de primer plano para alertas de sugerencia en Markdown.",
+ "markdownAlertWarningForeground": "Color de primer plano para alertas de advertencia en Markdown."
+ },
"vs/workbench/contrib/markers/browser/markers.contribution": {
"clearFiltersText": "Borrar el texto de los filtros",
"collapseAll": "Contraer todo",
"copyMarker": "Copiar",
"copyMessage": "Copiar mensaje",
- "filter": "Filtrar",
"focusProblemsFilter": "Centrarse en el filtro de problemas",
"focusProblemsList": "Centrarse en la vista de problemas",
"manyProblems": "+10Mil",
@@ -6740,19 +10967,39 @@
"miMarker": "&&Problemas",
"noProblems": "No hay problemas",
"problems": "Problemas",
+ "show active file": "Mostrar solo archivo activo",
+ "show errors": "Mostrar errores",
+ "show excluded files": "Mostrar archivos excluidos",
+ "show infos": "Mostrar informaciones",
"show multiline": "Mostrar mensaje en varias líneas",
"show singleline": "Mostrar mensaje en línea",
+ "show warnings": "Mostrar advertencias",
"status.problems": "Problemas",
+ "status.problemsVisibility": "Visibilidad de problemas",
+ "status.problemsVisibilityOff": "Los problemas están desactivados. Haga clic para abrir la configuración.",
+ "toggleActiveFileDescription": "Mostrar u ocultar problemas (errores, advertencias, información) solo del archivo activo en la vista de problemas.",
+ "toggleErrorsDescription": "Mostrar u ocultar errores en la vista de problemas.",
+ "toggleExcludedFilesDescription": "Muestra u oculta los archivos excluidos en la vista de problemas.",
+ "toggleInfosDescription": "Mostrar u oculta información en la vista de problemas.",
+ "toggleWarningsDescription": "Mostrar u oculta advertencias en la vista de problemas.",
"totalErrors": "Errores: {0}",
"totalInfos": "Información: {0}",
"totalProblems": "Total {0} Problemas",
"totalWarnings": "Advertencias: {0}",
"viewAsTable": "Ver como tabla",
- "viewAsTree": "Ver como árbol"
+ "viewAsTableDescription": "Muestra la vista de problemas como una tabla.",
+ "viewAsTree": "Ver como árbol",
+ "viewAsTreeDescription": "Muestra la vista de problemas como un árbol."
+ },
+ "vs/workbench/contrib/markers/browser/markersChatContext": {
+ "chatContext.diagnstic": "Problemas...",
+ "chatContext.diagnstic.placeholder": "Seleccionar un problema para adjuntar",
+ "markers.panel.allErrors": "Todos los problemas",
+ "markers.panel.at.ln.col.number": "[Lín. {0}, col. {1}]"
},
"vs/workbench/contrib/markers/browser/markersFileDecorations": {
"label": "Problemas",
- "markers.showOnFile": "Mostrar errores y advertencias en los archivos y carpetas.",
+ "markers.showOnFile": "Mostrar errores y advertencias en los archivos y carpetas. Sobrescrito cuando {0} está desactivado.",
"tooltip.1": "1 problema en este fichero",
"tooltip.N": "{0} problemas en este fichero"
},
@@ -6772,10 +11019,7 @@
"vs/workbench/contrib/markers/browser/markersView": {
"No problems filtered": "Mostrando {0} problemas",
"clearFilter": "Borrar filtros",
- "problems filtered": "Mostrando {0} de {1} problemas"
- },
- "vs/workbench/contrib/markers/browser/markersViewActions": {
- "filterIcon": "Icono de la configuración de filtro en la vista de marcadores.",
+ "problems filtered": "Mostrando {0} de {1} problemas",
"showing filtered problems": "Se muestran {0} de {1}"
},
"vs/workbench/contrib/markers/browser/messages": {
@@ -6813,91 +11057,628 @@
"problems.panel.configuration.showCurrentInStatus": "Al habilitarse, muestra el problema actual en la barra de estado.",
"problems.panel.configuration.title": "Vista Problemas",
"problems.panel.configuration.viewMode": "Controla el modo de vista predeterminado de la vista Problemas.",
- "problems.tree.aria.label.error.marker": "Error generado por {0}: {1} en la línea {2} y el carácter {3}.{4}",
+ "problems.tree.aria.label.error.marker": "Error: {0} en la línea {1} y el carácter {2}.{3} generado por {4}",
"problems.tree.aria.label.error.marker.nosource": "Error: {0} en la línea {1} y el carácter {2}.{3}",
- "problems.tree.aria.label.info.marker": "Información generada por {0}: {1} en la línea {2} y el carácter {3}.{4}",
+ "problems.tree.aria.label.info.marker": "Información: {0} en la línea {1} y el carácter {2}.{3} generada por {4}",
"problems.tree.aria.label.info.marker.nosource": "Información: {0} en la línea {1} y el carácter {2}.{3}",
- "problems.tree.aria.label.marker": "Problema generado por {0}: {1} en la línea {2} y el carácter {3}.{4}",
+ "problems.tree.aria.label.marker": "Problema: {0} en la línea {1} y el carácter {2}.{3} generado por {4}",
"problems.tree.aria.label.marker.nosource": "Problema: {0} en la línea {1} y el carácter {2}.{3}",
"problems.tree.aria.label.marker.relatedInformation": "Este problema tiene referencias a {0} ubicaciones.",
"problems.tree.aria.label.relatedinfo.message": "{0} en la línea {1} y el carácter {2} en {3}",
"problems.tree.aria.label.resource": "{0} problemas en el archivo {1} de la carpeta {2}",
- "problems.tree.aria.label.warning.marker": "Advertencia generada por {0}: {1} en la línea {2} y el carácter {3}.{4}",
+ "problems.tree.aria.label.warning.marker": "Advertencia: {0} en la línea {1} y el carácter {2}.{3} generada por {4}",
"problems.tree.aria.label.warning.marker.nosource": "Advertencia: {0} en la línea {1} y el carácter {2}.{3}",
"problems.view.focus.label": "Problemas de enfoque (errores, advertencias, información)",
"problems.view.toggle.label": "Alternar problemas (errores, advertencias, información)"
},
+ "vs/workbench/contrib/mcp/browser/mcp.contribution": {
+ "mcp.quickaccess.add": "Recursos del servidor MCP",
+ "mcp.quickaccess.placeholder": "Filtrar por un recurso de MCP",
+ "mcpServer": "Servidor MCP"
+ },
+ "vs/workbench/contrib/mcp/browser/mcpAddContextContribution": {
+ "mcp.addContext": "Recursos de MCP...",
+ "mcp.addContext.placeholder": "Seleccionar recurso MCP..."
+ },
+ "vs/workbench/contrib/mcp/browser/mcpCommands": {
+ "mcp.actions.resources": "Recursos",
+ "mcp.actions.sampling": "Muestreo",
+ "mcp.actions.status": "Estado",
+ "mcp.addConfiguration": "Agregar servidor...",
+ "mcp.addConfiguration.description": "Instala un nuevo protocolo de contexto de modelo en la configuración de mcp.json",
+ "mcp.addServer": "Agregar servidor",
+ "mcp.addServer.description": "Agregar una nueva configuración de servidor",
+ "mcp.autoStart": "Iniciar automáticamente servidores MCP al enviar un mensaje de chat",
+ "mcp.browseResources": "Examinar recursos...",
+ "mcp.command.browse": "Servidores MCP",
+ "mcp.command.browse.mcp": "Explorar servidores MCP",
+ "mcp.command.browse.tooltip": "Explorar servidores MCP",
+ "mcp.command.openRemoteUserMcp": "Abrir configuración de usuario remoto",
+ "mcp.command.openUserMcp": "Abrir configuración de usuario",
+ "mcp.command.openWorkspaceFolderMcp": "Abrir la configuración de MCP de la carpeta del espacio de trabajo",
+ "mcp.command.openWorkspaceMcp": "Abrir configuración de MCP del área de trabajo",
+ "mcp.command.restartServer": "Reiniciar servidor",
+ "mcp.command.show.installed": "Mostrar servidores instalados",
+ "mcp.command.showConfiguration": "Mostrar configuración",
+ "mcp.command.showOutput": "Mostrar salida",
+ "mcp.command.startServer": "Iniciar servidor",
+ "mcp.command.stopServer": "Detener servidor",
+ "mcp.config": "Mostrar configuración",
+ "mcp.configAccess": "Configuración del acceso al modelo",
+ "mcp.configureSamplingModels": "Configurar SamplingModel",
+ "mcp.configureSamplingModels.ph": "Elegir los modelos {0} a los que se puede acceder a través del muestreo de MCP",
+ "mcp.disconnect": "Desconectar cuenta",
+ "mcp.editStoredInput": "Editar entrada almacenada",
+ "mcp.err.md.multi": "Varios servidores MCP no se pudieron iniciar correctamente:\r\n\r\n{0}",
+ "mcp.err.md.single": "El servidor MCP {0} no se pudo iniciar correctamente.",
+ "mcp.list": "Enumerar servidores",
+ "mcp.newTools": "Nuevas herramientas disponibles ({0})",
+ "mcp.newTools.md.multi": "Los servidores MCP se han actualizado y pueden tener nuevas herramientas disponibles:\r\n\r\n{0}",
+ "mcp.newTools.md.single": "El servidor MCP {0} se ha actualizado y puede tener nuevas herramientas disponibles.",
+ "mcp.options": "Opciones del servidor",
+ "mcp.resetCachedTools": "Restablecer herramientas almacenadas en caché",
+ "mcp.resetTrust": "Restablecer confianza",
+ "mcp.resources": "Examinar recursos",
+ "mcp.restart": "Reiniciar servidor",
+ "mcp.samplingLog": "Mostrar solicitudes de muestreo",
+ "mcp.samplingLog.description": "Mostrar las solicitudes de muestreo para este servidor",
+ "mcp.samplingLog.title": "Muestreo de MCP: {0}",
+ "mcp.selectAction": "Seleccionar acción para \"{0}\"",
+ "mcp.selectServer": "Seleccionar un servidor MCP",
+ "mcp.servers": "Servidores MCP",
+ "mcp.showOutput": "Mostrar salida",
+ "mcp.showOutput.description": "Establecer los modelos que el servidor puede usar mediante el muestreo de MCP",
+ "mcp.signOut": "Cerrar sesión",
+ "mcp.skipCurrentAutostart": "Omitir inicio automático actual",
+ "mcp.start": "Iniciar servidor",
+ "mcp.startPromptingServer": "Iniciar el servidor de indicaciones",
+ "mcp.stop": "Detener servidor",
+ "mcp.toolError": "Error al cargar {0} herramienta(s)",
+ "mcp.toolRefresh": "Detectando herramientas..."
+ },
+ "vs/workbench/contrib/mcp/browser/mcpCommandsAddConfiguration": {
+ "allow": "Permitir",
+ "cancel": "Cancelar",
+ "install.error": "Error al instalar el servidor MCP {0}: {1}",
+ "install.newName": "Escriba un nombre nuevo",
+ "install.rename": "Cambiar el nombre \"{0}\"",
+ "install.show": "Mostrar configuración",
+ "install.start": "Instalar servidor",
+ "install.title": "Instalación del servidor MCP {0}",
+ "mcp.command.placeholder": "Comando que se va a ejecutar (con argumentos opcionales)",
+ "mcp.command.title": "Escribir comando",
+ "mcp.confirmPublish": "¿Instalar {0}{1} desde {2}?",
+ "mcp.docker.placeholder": "Nombre de imagen (por ejemplo, mcp/imagename)",
+ "mcp.docker.title": "Escriba el nombre de la imagen de Docker",
+ "mcp.error.openHelpUri": "Abrir la URL de ayuda",
+ "mcp.error.retry": "Probar un paquete diferente",
+ "mcp.loading.title": "Cargando detalles del paquete...",
+ "mcp.npm.placeholder": "Nombre del paquete (por ejemplo, @org/paquete)",
+ "mcp.npm.title": "Escriba el nombre del paquete NPM",
+ "mcp.nuget.placeholder": "Nombre del paquete (por ejemplo, nombre.delpaquete)",
+ "mcp.nuget.title": "Escribir el nombre del paquete NuGet",
+ "mcp.pip.placeholder": "Nombre del paquete (por ejemplo, package-name)",
+ "mcp.pip.title": "Escriba el nombre del paquete PIP",
+ "mcp.serverId.placeholder": "Identificador único para este servidor",
+ "mcp.serverId.title": "Escribir id. del servidor",
+ "mcp.serverType.command": "Comando (stdio)",
+ "mcp.serverType.command.description": "Ejecución de un comando local que implementa el protocolo MCP",
+ "mcp.serverType.copilot": "Asistido por modelos",
+ "mcp.serverType.docker": "Imagen de Docker",
+ "mcp.serverType.docker.description": "Instalación desde una imagen de Docker",
+ "mcp.serverType.http": "HTTP (HTTP o eventos enviados por el servidor)",
+ "mcp.serverType.http.description": "Conectarse a un servidor HTTP remoto que implemente el protocolo MCP",
+ "mcp.serverType.manual": "Instalación manual",
+ "mcp.serverType.npm": "Paquete NPM",
+ "mcp.serverType.npm.description": "Instalación desde un nombre de paquete NPM",
+ "mcp.serverType.nuget": "Paquete NuGet",
+ "mcp.serverType.nuget.description": "Instalar desde un nombre de paquete NuGet",
+ "mcp.serverType.pip": "Paquete PIP",
+ "mcp.serverType.pip.description": "Instalación desde un nombre de paquete PIP",
+ "mcp.serverType.placeholder": "Elegir el tipo de servidor MCP que se va a agregar",
+ "mcp.servers.browse": "Explorar servidores MCP...",
+ "mcp.servers.discovery": "Agregar desde otra aplicación...",
+ "mcp.target..remote.description": "Disponible en este equipo remoto, se ejecuta en {0}",
+ "mcp.target.placeholder": "Seleccionar el destino de configuración",
+ "mcp.target.remote": "Remoto",
+ "mcp.target.title": "Agregar servidor MCP",
+ "mcp.target.user": "Global",
+ "mcp.target.user.description": "Disponible en todas las áreas de trabajo, se ejecuta localmente",
+ "mcp.target.workspace": "Área de trabajo",
+ "mcp.target.workspace.description": "Disponible en esta área de trabajo, se ejecuta localmente",
+ "mcp.target.workspace.description.remote": "Disponible en esta área de trabajo, se ejecuta en {0}",
+ "mcp.url.placeholder": "Dirección URL del servidor MCP (por ejemplo, http://localhost:3000)",
+ "mcp.url.title": "Especificar URL del servidor"
+ },
+ "vs/workbench/contrib/mcp/browser/mcpElicitationService": {
+ "mcp.elicit.accept": "Responder",
+ "mcp.elicit.cancel": "Cancelar",
+ "mcp.elicit.enum.none": "Ninguno",
+ "mcp.elicit.enum.none.description": "Sin selección",
+ "mcp.elicit.give": "Responder",
+ "mcp.elicit.reject": "Cancelar",
+ "mcp.elicit.source": "Servidor MCP ({0})",
+ "mcp.elicit.title": "Solicitud de entrada",
+ "mcp.elicit.url.instruction": "¿Abrir esta URL?",
+ "mcp.elicit.url.instruction2": "Esto abrirá {0}",
+ "mcp.elicit.url.open": "Abrir {0}",
+ "mcp.elicit.url.open2": "Abrir URL",
+ "mcp.elicit.url.title": "Se requiere autorización",
+ "mcp.elicit.useDefault": "Valor predeterminado",
+ "mcp.elicit.validation.date": "Escriba una fecha válida (AAAA-MM-DD)",
+ "mcp.elicit.validation.dateTime": "Escriba una fecha y hora válidas",
+ "mcp.elicit.validation.email": "Especifique una dirección de correo electrónico válida.",
+ "mcp.elicit.validation.integer": "Escriba un número entero válido",
+ "mcp.elicit.validation.maxLength": "La longitud máxima es {0}",
+ "mcp.elicit.validation.maximum": "El valor máximo es {0}",
+ "mcp.elicit.validation.minLength": "La longitud mínima es {0}",
+ "mcp.elicit.validation.minimum": "El valor mínimo es {0}",
+ "mcp.elicit.validation.number": "Escriba un número válido.",
+ "mcp.elicit.validation.uri": "Indique un URI válido",
+ "msg.subtitle": "{0} (servidor MCP)",
+ "optional": "Opcional"
+ },
+ "vs/workbench/contrib/mcp/browser/mcpLanguageFeatures": {
+ "cancel": "Cancelar",
+ "clear": "Borrar",
+ "clearAll": "Borrar todo",
+ "edit": "Editar",
+ "mcp.debug": "Depurar",
+ "mcp.restart": "Reiniciar",
+ "mcp.server.more": "Más...",
+ "mcp.start": "Iniciar",
+ "mcp.stop": "Detener",
+ "mcp.variableNotFound": "No se encontró la variable '{0}'. ¿Quiso decir ${{1}}?",
+ "server.error": "Error",
+ "server.promptcount": "{0} indicaciones",
+ "server.running": "En ejecución",
+ "server.starting": "Iniciando",
+ "server.toolCount": "Herramientas de {0}"
+ },
+ "vs/workbench/contrib/mcp/browser/mcpMigration": {
+ "mcp.migration.openRemoteConfig": "Abrir configuración de MCP de usuario remoto",
+ "mcp.migration.openUserConfig": "Abrir configuración de MCP de usuario",
+ "mcp.migration.remoteConfigFound": "Los servidores MCP ya no deben configurarse en la configuración del usuario remoto. En su lugar, use la configuración de MCP dedicada.",
+ "mcp.migration.update": "Actualizar ahora",
+ "mcp.migration.userConfigFound": "Los servidores MCP ya no deben configurarse en la configuración del usuario. En su lugar, use la configuración de MCP dedicada."
+ },
+ "vs/workbench/contrib/mcp/browser/mcpPromptArgumentPick": {
+ "loading": "Cargando...",
+ "mcp.arg.activeFile": "Archivo activo",
+ "mcp.arg.activeFiles": "Archivo activo",
+ "mcp.arg.asCommand": "Ejecutar como comando",
+ "mcp.arg.asCommand.description": "Inserta la salida del comando como argumento de la indicación",
+ "mcp.arg.asText": "Insertar como texto",
+ "mcp.arg.files": "Archivos",
+ "mcp.arg.required": "Este argumento es obligatorio",
+ "mcp.arg.selectedText": "Texto seleccionado",
+ "mcp.arg.selectedText.multiLine": "{0} líneas",
+ "mcp.arg.selectedText.singleLine": "línea {0}",
+ "mcp.arg.suggestions": "Sugerencias",
+ "mcp.prompt.pick.title": "Valor de: {0}",
+ "mcp.terminal.name": "Terminal MCP",
+ "optional": "Opcional"
+ },
+ "vs/workbench/contrib/mcp/browser/mcpResourceQuickAccess": {
+ "goBack": "Volver ↩",
+ "mcp.quickaccess.attach": "Adjuntar al chat",
+ "mcp.quickaccess.placeholder": "Buscar recursos",
+ "mcp.resource.template": "Plantilla de recursos: {0}",
+ "mcp.resource.template.empty": "",
+ "mcp.resource.template.notFound": "No se encontró el recurso {0}.",
+ "mcp.resource.template.optional": "Opcional",
+ "mcp.resource.template.placeholder": "Valor de ${0} en {1}"
+ },
+ "vs/workbench/contrib/mcp/browser/mcpServerActions": {
+ "config": "Mostrar configuración",
+ "configJson": "Mostrar configuración (JSON)",
+ "install": "Instalar",
+ "install in workspace folder": "Carpeta del área de trabajo",
+ "installInRemote": "Instalar (remoto)",
+ "installInRemoteLabel": "Instalar en {0}",
+ "installInWorkspace": "Instalar en el área de trabajo",
+ "installing": "Instalando",
+ "manage": "Administrar",
+ "mcp.configAccess": "Configurar el acceso al modelo",
+ "mcp.disconnect": "Desconectar cuenta",
+ "mcp.resources": "Examinar recursos",
+ "mcp.samplingLog": "Mostrar solicitudes de muestreo",
+ "mcp.samplingLog.title": "Muestreo de MCP: {0}",
+ "mcp.signOut": "Cerrar sesión",
+ "mcp.target.title": "Elija dónde quiere instalar el servidor MCP",
+ "mcp.target.workspace": "Área de trabajo",
+ "mcpServerInstallation": "Se inició la instalación del servidor MCP {0}. Ya hay un editor abierto con más detalles sobre este servidor MCP",
+ "output": "Mostrar salida",
+ "restart": "Reiniciar servidor",
+ "start": "Iniciar servidor",
+ "stop": "Detener servidor",
+ "uninstall": "Desinstalar"
+ },
+ "vs/workbench/contrib/mcp/browser/mcpServerEditor": {
+ "Install Info": "Instalación",
+ "Marketplace Info": "Marketplace",
+ "Readme title": "Léame",
+ "Version": "Versión",
+ "arguments": "Argumentos:",
+ "command": "Comando:",
+ "configuration": "Configuración",
+ "configurationtooltip": "Detalles de configuración del servidor",
+ "details": "Detalles",
+ "detailstooltip": "Detalles de la extensión, mostrados en el archivo 'README.md' de la extensión",
+ "environmentVariables": "Variables de entorno:",
+ "headers": "Encabezados:",
+ "id": "Identificador",
+ "last updated": "Última versión",
+ "manifest": "Manifiesto",
+ "manifesttooltip": "Detalles del manifiesto de servidor",
+ "name": "Nombre de la extensión",
+ "noConfig": "No hay ninguna configuración disponible para este servidor MCP.",
+ "noManifest": "No hay ningún manifiesto disponible para este servidor MCP.",
+ "noReadme": "No hay ningún archivo LÉAME disponible.",
+ "packageName": "Paquete:",
+ "packagearguments": "Argumentos del paquete:",
+ "packages": "Paquetes",
+ "published": "Publicado",
+ "remotes": "Remoto",
+ "repository": "Repositorio",
+ "resources": "Recursos",
+ "runtimeargs": "Argumentos en tiempo de ejecución:",
+ "serverName": "Nombre:",
+ "serverType": "Tipo:",
+ "support": "Ponerse en contacto con el soporte técnico",
+ "tags": "Etiquetas",
+ "transport": "Transporte:",
+ "url": "Dirección URL:"
+ },
+ "vs/workbench/contrib/mcp/browser/mcpServerEditorInput": {
+ "extensionsInputName": "Servidor MCP: {0}",
+ "mcpServerEditorLabelIcon": "Icono del editor del servidor MCP."
+ },
+ "vs/workbench/contrib/mcp/browser/mcpServerIcons": {
+ "licenseIcon": "Icono que se muestra junto con el estado de la licencia.",
+ "mcpServer": "Icono utilizado para el servidor MCP.",
+ "mcpServerRemoteIcon": "Icono que indica que un servidor MCP está destinado al ámbito de usuario remoto.",
+ "mcpServerWorkspaceIcon": "Icono que indica que un servidor MCP está destinado al ámbito del espacio de trabajo.",
+ "starredIcon": "Icono que se muestra junto con el estado con estrella."
+ },
+ "vs/workbench/contrib/mcp/browser/mcpServersView": {
+ "mcp": "Servidores MCP",
+ "mcp servers": "Servidores MCP",
+ "mcp-installed": "Servidores MCP - Instalados",
+ "mcp.gallery.enableDialog.cancel": "Cancelar",
+ "mcp.gallery.enableDialog.enable": "Habilitar",
+ "mcp.gallery.enableDialog.setting": "Esta característica se encuentra en versión preliminar. Puede desactivarla en cualquier momento usando la configuración {0}.",
+ "mcp.gallery.enableDialog.title": "¿Quiere habilitar el Marketplace de servidores MCP?",
+ "mcp.welcome.descriptionWithLink": "Explore e instale los [servidores de protocolo de contexto de modelo (MCP)](https://code.visualstudio.com/docs/copilot/customization/mcp-servers) directamente desde VS Code para ampliar el modo agente con herramientas adicionales que permiten conectar bases de datos, invocar API y realizar tareas especializadas.",
+ "mcp.welcome.enableGalleryButton": "Habilitar el Marketplace de servidores MCP",
+ "mcp.welcome.settings.tooltip": "Abrir configuración",
+ "mcp.welcome.title": "Servidores MCP",
+ "no extensions found": "No se encontraron servidores MCP."
+ },
+ "vs/workbench/contrib/mcp/browser/mcpServerWidgets": {
+ "mcpIconStarForeground": "Color del icono de MCP con estrella.",
+ "publisher": "Publicador ({0})",
+ "remote user extension": "Servidor MCP remoto",
+ "verified publisher": "Este editor ha comprobado la propiedad de {0}",
+ "workspace extension": "Servidor MCP del área de trabajo"
+ },
+ "vs/workbench/contrib/mcp/browser/mcpWorkbenchService": {
+ "cannot be installed": "No se puede instalar el servidor MCP \"{0}\" porque no está disponible en este programa de instalación.",
+ "disabled - all not allowed": "Este servidor MCP está deshabilitado porque los servidores MCP están configurados para deshabilitarse en el Editor. Compruebe su [configuración]({0}).",
+ "disabled - some not allowed": "Este servidor MCP está deshabilitado porque está configurado para deshabilitarse en el Editor. Compruebe su [configuración]({0}).",
+ "mcp.configuration.userLocalValue": "Global en {0}",
+ "not an extension": "El objeto proporcionado no es un servidor MCP.",
+ "overwriting": "Sobrescribiendo el servidor mcp '{0}' de {1} con {2}."
+ },
+ "vs/workbench/contrib/mcp/common/discovery/extensionMcpDiscovery": {
+ "invalidData": "Se esperaba una matriz de colecciones MCP",
+ "invalidId": "Se esperaba que \"id\" fuera una cadena no vacía.",
+ "invalidLabel": "Se esperaba que \"label\" fuera una cadena no vacía.",
+ "invalidWhen": "Se esperaba que \"when\" fuera una cadena no vacía."
+ },
+ "vs/workbench/contrib/mcp/common/discovery/nativeMcpDiscoveryAbstract": {
+ "onRemoteLabel": " en {0}"
+ },
+ "vs/workbench/contrib/mcp/common/mcpConfiguration": {
+ "app.mcp.args.command": "Argumentos pasados al servidor.",
+ "app.mcp.dev": "Modo de desarrollo habilitado para el servidor. Cuando está presente, el servidor se iniciará de forma anticipada y la salida se incluirá en su salida. Las propiedades dentro del objeto `dev` pueden configurar un comportamiento adicional.",
+ "app.mcp.dev.debug": "Si se establece, depura el servidor MCP utilizando el runtime especificado al iniciarse.",
+ "app.mcp.dev.debug.debugpyPath": "Ruta al ejecutable de debugpy.",
+ "app.mcp.dev.debug.type.node": "Depure el servidor MCP utilizando Node.js.",
+ "app.mcp.dev.debug.type.python": "Depure el servidor MCP utilizando Python y debugpy.",
+ "app.mcp.dev.watch": "Patrón global o lista de patrones globales relativos a la carpeta del área de trabajo que se van a ver. El servidor MCP se reiniciará cuando cambien estos archivos.",
+ "app.mcp.env.command": "Variables de entorno pasadas al servidor.",
+ "app.mcp.envFile.command": "Ruta de acceso a un archivo que contiene variables de entorno para el servidor.",
+ "app.mcp.json.command": "Comando para ejecutar el servidor.",
+ "app.mcp.json.cwd": "Directorio de trabajo del comando del servidor. El valor predeterminado es la carpeta del área de trabajo cuando se ejecuta en un espacio de trabajo.",
+ "app.mcp.json.headers": "Encabezados adicionales enviados al servidor.",
+ "app.mcp.json.title": "Servidores de protocolo de contexto de modelo",
+ "app.mcp.json.type": "Tipo del servidor.",
+ "app.mcp.json.url": "Dirección URL del punto de conexión HTTP o SSE que se puede transmitir.",
+ "app.mcp.json.url.pattern": "La dirección URL debe comenzar con \"http://\" o \"https://\".",
+ "id": "Id.",
+ "mcp.discovery.source.claude-desktop": "Escritorio de Claude",
+ "mcp.discovery.source.claude-desktop.config": "Configuración de escritorio de Claude Desktop (`claude_desktop_config.json`)",
+ "mcp.discovery.source.cursor-global": "Cursor (global)",
+ "mcp.discovery.source.cursor-global.config": "Configuración global del cursor ('~/.cursor/mcp.json')",
+ "mcp.discovery.source.cursor-workspace": "Cursor (área de trabajo)",
+ "mcp.discovery.source.cursor-workspace.config": "Configuración del área de trabajo del cursor ('.cursor/mcp.json')",
+ "mcp.discovery.source.windsurf": "Windsurfear",
+ "mcp.discovery.source.windsurf.config": "Configuraciones de Windsurf (`~/.codeium/windsurf/mcp_config.json`)",
+ "mcpServerDefinitionProviders": "Servidores MCP",
+ "name": "Nombre",
+ "vscode.extension.contributes.mcp": "Aporta servidores de protocolo de contexto de modelo. Los usuarios de esto también deben usar \"vscode.lm.registerMcpServerDefinitionProvider\".",
+ "vscode.extension.contributes.mcp.id": "Identificador único de la colección.",
+ "vscode.extension.contributes.mcp.label": "Nombre para mostrar de la colección.",
+ "vscode.extension.contributes.mcp.when": "Condición que debe ser true para habilitar esta colección."
+ },
+ "vs/workbench/contrib/mcp/common/mcpContextKeys": {
+ "mcp.hasServersWithErrors.description": "Indica si hay servidores MCP con errores.",
+ "mcp.hasUnknownTools.description": "Indica si hay servidores MCP con herramientas desconocidas.",
+ "mcp.serverCount.description": "Clave de contexto que tiene el número de servidores MCP registrados",
+ "mcp.toolsCount.description": "Clave de contexto que tiene el número de herramientas MCP registradas"
+ },
+ "vs/workbench/contrib/mcp/common/mcpDevMode": {
+ "mcp.debug.nodeBinReq": "El servidor MCP debe iniciarse con el ejecutable \"node\" para habilitar la depuración, pero se inició con \"{0}\"",
+ "mcp.debug.pythonBinReq": "El servidor MCP debe iniciarse con el ejecutable \"python\" para habilitar la depuración, pero se inició con \"{0}\""
+ },
+ "vs/workbench/contrib/mcp/common/mcpLanguageModelToolContribution": {
+ "mcp.tool.warning": "Tenga en cuenta que los servidores MCP o el contenido de conversación malintencionado pueden intentar usar \"{0}\" de forma incorrecta a través de las herramientas.",
+ "mcp.toolset": "{0}: todas las herramientas",
+ "msg.ran": "Se ejecutó {0} ",
+ "msg.run": "Ejecutando {0}",
+ "msg.subtitle": "{0} (servidor MCP)",
+ "msg.title": "Ejecutar {0}"
+ },
+ "vs/workbench/contrib/mcp/common/mcpRegistry": {
+ "mcp.launchError": "Error al iniciar {0}: {1}",
+ "mcp.launchError.openConfig": "Abrir configuración",
+ "mcp.trust.details": "El servidor MCP {0} se actualizó. Los servidores MCP pueden agregar contexto a su sesión de chat y provocar un comportamiento inesperado. ¿Desea confiar y ejecutar este servidor?",
+ "mcp.trust.detailsMulti": "Se detectaron varios servidores MCP actualizados:\r\n\r\n{0}\r\n\r\n Los servidores MCP pueden agregar contexto a su sesión de chat y provocar un comportamiento inesperado. ¿Desea confiar y ejecutar estos servidores?",
+ "mcp.trust.no": "No confiar",
+ "mcp.trust.pick": "Seleccionar de confianza",
+ "mcp.trust.yes": "Confiar",
+ "trustFromExt": "desde {0}",
+ "trustTitleWithOrigin": "¿Confiar en el servidor MCP {0} y ejecutarlo?",
+ "trustTitleWithOriginMulti": "¿Confiar en los servidores MCP {0} y ejecutarlos?"
+ },
+ "vs/workbench/contrib/mcp/common/mcpSamplingLog": {
+ "mcp.sampling.rpd": "{0} solicitudes totales en los últimos 7 días."
+ },
+ "vs/workbench/contrib/mcp/common/mcpSamplingService": {
+ "cancel": "Cancelar",
+ "configure": "Configurar",
+ "mcp.sampling.allow.always": "Siempre",
+ "mcp.sampling.allow.inSession": "Permitir en esta sesión",
+ "mcp.sampling.allow.never": "Nunca",
+ "mcp.sampling.allow.notNow": "Ahora no",
+ "mcp.sampling.allowDuringChat.desc": "El servidor MCP \"{0}\" ha emitido una solicitud para realizar una llamada de modelo de lenguaje. ¿Quiere permitir que realice solicitudes durante el chat?",
+ "mcp.sampling.allowDuringChat.title": "¿Permitir que las herramientas MCP de \"{0}\" realicen solicitudes LLM?",
+ "mcp.sampling.allowOutsideChat.desc": "El servidor MCP \"{0}\" ha emitido una solicitud para realizar una llamada de modelo de lenguaje. ¿Quiere permitir que realice solicitudes, fuera de las llamadas durante el chat?",
+ "mcp.sampling.allowOutsideChat.title": "¿Permitir que el servidor MCP \"{0}\" realice solicitudes LLM?",
+ "mcp.sampling.needsModels": "El servidor MCP \"{0}\" desencadenó una solicitud de modelo de lenguaje, pero no tiene modelos permitidos."
+ },
+ "vs/workbench/contrib/mcp/common/mcpServer": {
+ "mcp.command.showOutput": "Mostrar salida",
+ "mcpBadSchema": "El servidor MCP \"{0}\" tiene herramientas con parámetros no válidos que se omitirán.",
+ "mcpBadSchema.show": "Mostrar",
+ "mcpBadSchema.tool": "La herramienta \"{0}\" tiene parámetros JSON no válidos:",
+ "mcpDebugPyHelp": "No se encontró el comando \"{0}\". Puede especificar la ruta a debugpy en la opción `dev.debug.debugpyPath`.",
+ "mcpServerError": "No se pudo iniciar el servidor MCP {0}: {1}",
+ "mcpServerInstall": "Instalar {0}",
+ "mcpServerNotFound": "No se ha encontrado el comando \"{0}\" necesario para ejecutar {1}.",
+ "mcpViewDocs": "Ver documentación"
+ },
+ "vs/workbench/contrib/mcp/common/mcpServerConnection": {
+ "mcpServer.starting": "Iniciando el servidor {0}",
+ "mcpServer.state": "Estado de conexión: {0}",
+ "mcpServer.stopping": "Deteniendo servidor {0}"
+ },
+ "vs/workbench/contrib/mcp/common/mcpTypes": {
+ "mcpstate.error": "Error {0}",
+ "mcpstate.running": "En ejecución",
+ "mcpstate.starting": "Iniciando",
+ "mcpstate.stopped": "Detenido"
+ },
"vs/workbench/contrib/mergeEditor/browser/commands/commands": {
"layout.column": "Diseño de la columna",
"layout.mixed": "Diseño mixto",
- "merge.acceptAllInput1": "Accept All Changes from Left",
- "merge.acceptAllInput2": "Accept All Changes from Right",
- "merge.goToNextConflict": "Ir al siguiente conflicto",
- "merge.goToPreviousConflict": "Ir al conflicto anterior",
+ "layout.showBase": "Mostrar base",
+ "layout.showBaseCenter": "Mostrar centro base",
+ "layout.showBaseTop": "Mostrar base superior",
+ "merge.acceptAllInput1": "Aceptar todos los cambios recibidos desde la izquierda",
+ "merge.acceptAllInput2": "Aceptar todos los cambios actuales desde la derecha",
+ "merge.goToNextUnhandledConflict": "Ir al siguiente conflicto no controlado",
+ "merge.goToPreviousUnhandledConflict": "Ir al conflicto no controlado anterior",
"merge.openBaseEditor": "Abrir archivo base",
"merge.toggleCurrentConflictFromLeft": "Alternar conflicto actual desde la izquierda",
"merge.toggleCurrentConflictFromRight": "Alternar conflicto actual desde la derecha",
"mergeEditor": "Editor de combinación",
+ "mergeEditor.acceptAllCombination": "Aceptar todas las combinaciones",
+ "mergeEditor.acceptMerge": "Completar la fusión mediante combinación",
+ "mergeEditor.acceptMerge.unhandledConflicts.accept": "&&Completar con conflictos",
+ "mergeEditor.acceptMerge.unhandledConflicts.detail": "El archivo contiene conflictos no controlados.",
+ "mergeEditor.acceptMerge.unhandledConflicts.message": "¿Desea completar la combinación de {0}?",
"mergeEditor.compareInput1WithBase": "Comparar la entrada 1 con la base",
"mergeEditor.compareInput2WithBase": "Comparar la entrada 2 con la base",
"mergeEditor.compareWithBase": "Comparar con línea base",
+ "mergeEditor.resetChoice": "Restablecer opción para \"Cerrar con conflictos\"",
+ "mergeEditor.resetResultToBaseAndAutoMerge": "Restablecer resultado",
+ "mergeEditor.resetResultToBaseAndAutoMerge.short": "Restablecer",
+ "mergeEditor.toggleBetweenInputs": "Alternar entre las entradas de Editor de combinación",
"openfile": "Abrir archivo",
+ "showNonConflictingChanges": "Mostrar cambios que no están en conflicto",
"title": "Abrir el Editor de combinación"
},
"vs/workbench/contrib/mergeEditor/browser/commands/devCommands": {
"merge.dev.copyState": "Copiar estado del editor de mezcla como JSON",
- "merge.dev.openState": "Abrir estado del editor de mezcla desde JSON",
- "mergeEditor.enterJSON": "Escribir JSON",
+ "merge.dev.loadContentsFromFolder": "Cargar estado del editor de combinación desde la carpeta",
+ "merge.dev.saveContentsToFolder": "Guardar estado del editor de combinación en la carpeta",
+ "mergeEditor": "Editor de combinación (desarrollo)",
"mergeEditor.name": "Editor de combinación",
"mergeEditor.noActiveMergeEditor": "No hay ningún editor de combinación activo",
- "mergeEditor.successfullyCopiedMergeEditorContents": "Estado del editor de mezcla copiado correctamente"
+ "mergeEditor.selectFolderToSaveTo": "Seleccionar la carpeta en la que desea guardar",
+ "mergeEditor.successfullyCopiedMergeEditorContents": "Estado del editor de mezcla copiado correctamente",
+ "mergeEditor.successfullySavedMergeEditorContentsToFolder": "El estado del editor de combinación se guardó correctamente en la carpeta"
},
"vs/workbench/contrib/mergeEditor/browser/mergeEditor.contribution": {
+ "diffAlgorithm.advanced": "Usa el algoritmo de diferenciación avanzada.",
+ "diffAlgorithm.legacy": "Usa el algoritmo de diferenciación heredado.",
"name": "Editor de combinación"
},
+ "vs/workbench/contrib/mergeEditor/browser/mergeEditorAccessibilityHelp": {
+ "msg1": "Está en un editor de mezcla.",
+ "msg2": "Navegue entre conflictos de combinación mediante los comandos Ir al siguiente conflicto no controlado{0} e Ir al anterior conflicto no controlado{1}.",
+ "msg3": "Ejecute el comando Editor de combinación: aceptar todos los cambios recibidos desde la izquierda{0} y Editor de combinación: aceptar todos los cambios actuales desde la derecha{1}",
+ "msg4": "Complete la combinación{0}.",
+ "msg5": "Alternar entre las entradas del editor de combinación, los cambios entrantes y los cambios actuales {0}."
+ },
"vs/workbench/contrib/mergeEditor/browser/mergeEditorInput": {
- "name": "Combinando: {0}",
- "unhandledConflicts.cancel": "Cancelar",
- "unhandledConflicts.detail1": "Los conflictos de combinación en este editor permanecerán sin controlar.",
- "unhandledConflicts.detailN": "Los conflictos de combinación en {0} editores permanecerán sin control.",
- "unhandledConflicts.discard": "Descartar cambios de fusión mediante combinación",
- "unhandledConflicts.ignore": "Continuar con conflictos",
- "unhandledConflicts.msg": "¿Quiere continuar con conflictos no controlados?",
- "unhandledConflicts.saveAndIgnore": "Guardar y continuar con conflictos"
+ "mergeEditor.input1": "Entrada izquierda actual",
+ "mergeEditor.input2": "Entrada derecha actual",
+ "mergeEditor.result": "Resultado de la fusión mediante combinación",
+ "name": "Combinando: {0}"
+ },
+ "vs/workbench/contrib/mergeEditor/browser/mergeEditorInputModel": {
+ "acceptMerge": "&&Aceptar combinación",
+ "detail1": "El resultado de la combinación se perderá si no lo guarda.",
+ "detail1Conflicts": "El archivo contiene conflictos no controlados. El resultado de la combinación se perderá si no lo guarda.",
+ "detailN": "Los resultados de la combinación se perderán si no los guarda.",
+ "detailNConflicts": "Los archivos contienen conflictos no controlados. Los resultados de la combinación se perderán si no los guarda.",
+ "discard": "&&No guardar",
+ "merge-editor.source": "Antes de resolver los conflictos en el Editor de combinación",
+ "message1": "¿Desea mantener el resultado de la combinación de {0}?",
+ "messageN": "¿Desea mantener el resultado de la combinación de los archivos {0}?",
+ "noMoreWarn": "No volver a hacerme esta pregunta",
+ "save": "&&Guardar",
+ "saveTempFile.detail": "Esto escribirá el resultado de la combinación en el archivo original y cerrará el editor de combinación.",
+ "saveTempFile.message": "¿Desea aceptar el resultado de la combinación?",
+ "saveWithConflict": "&&Guardar con conflictos",
+ "workspace.close": "&&Cerrar",
+ "workspace.closeWithConflicts": "&&Cerrar con conflictos",
+ "workspace.detail1.handled": "Los cambios se perderán si no los guarda.",
+ "workspace.detail1.unhandled": "El archivo contiene conflictos no controlados. Los cambios se perderán si no los guarda.",
+ "workspace.detail1.unhandled.nonDirty": "El archivo contiene conflictos no controlados.",
+ "workspace.detailN.handled": "Los cambios se perderán si no los guarda.",
+ "workspace.detailN.unhandled": "Los archivos contienen conflictos no controlados. Los cambios se perderán si no los guarda.",
+ "workspace.detailN.unhandled.nonDirty": "Los archivos contienen conflictos no controlados.",
+ "workspace.doNotSave": "&&No guardar",
+ "workspace.message1": "¿Quiere guardar los cambios efectuados en {0}?",
+ "workspace.message1.nonDirty": "¿Desea cerrar el editor de combinación para {0}?",
+ "workspace.messageN": "¿Desea guardar los cambios realizados en {0} archivos?",
+ "workspace.messageN.nonDirty": "¿Desea cerrar {0} editores de combinación?",
+ "workspace.save": "&&Guardar",
+ "workspace.saveWithConflict": "&&Guardar con conflictos"
+ },
+ "vs/workbench/contrib/mergeEditor/browser/mergeMarkers/mergeMarkersController": {
+ "conflictingLine": "1 Líneas en conflicto",
+ "conflictingLines": "{0} Líneas en conflicto"
+ },
+ "vs/workbench/contrib/mergeEditor/browser/model/mergeEditorModel": {
+ "setInputHandled": "Establecer entrada controlada",
+ "undoMarkAsHandled": "Deshacer marca como controlada"
},
"vs/workbench/contrib/mergeEditor/browser/view/colors": {
"mergeEditor.change.background": "Color de fondo de los cambios.",
"mergeEditor.change.word.background": "El color de primer plano de la palabra cambia.",
+ "mergeEditor.changeBase.background": "Color de fondo de los cambios en la base.",
+ "mergeEditor.changeBase.word.background": "Color de fondo de los cambios de palabra en la base.",
"mergeEditor.conflict.handled.minimapOverViewRuler": "Color de primer plano para los cambios en la entrada 1.",
"mergeEditor.conflict.handledFocused.border": "Color de borde de los conflictos con tiempo de concentración controlados.",
"mergeEditor.conflict.handledUnfocused.border": "Color de borde de los conflictos controlados sin tiempo de concentración.",
+ "mergeEditor.conflict.input1.background": "Color de fondo de las decoraciones en la entrada 1.",
+ "mergeEditor.conflict.input2.background": "Color de fondo de las decoraciones en la entrada 2.",
"mergeEditor.conflict.unhandled.minimapOverViewRuler": "Color de primer plano para los cambios en la entrada 1.",
"mergeEditor.conflict.unhandledFocused.border": "Color de borde de los conflictos centrados no controlados.",
- "mergeEditor.conflict.unhandledUnfocused.border": "Color de borde de conflictos no controlados sin tiempo de concentración."
+ "mergeEditor.conflict.unhandledUnfocused.border": "Color de borde de conflictos no controlados sin tiempo de concentración.",
+ "mergeEditor.conflictingLines.background": "El fondo del texto \"Líneas en conflicto\"."
+ },
+ "vs/workbench/contrib/mergeEditor/browser/view/conflictActions": {
+ "accept": "Aceptar {0}",
+ "acceptBoth": "Aceptar combinación",
+ "acceptBoth0First": "Aceptar la combinación ({0} primero)",
+ "acceptBothTooltip": "Aceptar una combinación automática de ambos lados en el documento de resultados.",
+ "acceptTooltip": "Aceptar {0} en el documento de resultados.",
+ "append": "Anexar {0}",
+ "appendTooltip": "Anexe {0} al documento de resultados.",
+ "combine": "Aceptar combinación",
+ "ignore": "Omitir",
+ "manualResolution": "Resolución manual",
+ "manualResolutionTooltip": "Este conflicto se ha resuelto manualmente.",
+ "markAsHandledTooltip": "No aceptar este lado del conflicto.",
+ "noChangesAccepted": "No se acepta ningún cambio",
+ "noChangesAcceptedTooltip": "La resolución actual de este conflicto es igual al antecesor común de los cambios de derecha e izquierda.",
+ "remove": "Quitar {0}",
+ "removeTooltip": "Quitar {0} del documento de resultados.",
+ "resetToBase": "Restablecer a la base",
+ "resetToBaseTooltip": "Restablecer este conflicto al antecesor común de los cambios a la derecha e izquierda."
+ },
+ "vs/workbench/contrib/mergeEditor/browser/view/editors/baseCodeEditorView": {
+ "base": "Base",
+ "compareWith": "Comparación con {0}",
+ "compareWithTooltip": "Las diferencias se resaltan con un color de fondo."
},
"vs/workbench/contrib/mergeEditor/browser/view/editors/inputCodeEditorView": {
- "accept": "Aceptar",
+ "accept.conflicting": "Aceptar (el resultado tiene modificaciones)",
+ "accept.excluded": "Aceptar",
+ "accept.first": "Deshacer aceptar",
+ "accept.second": "Deshacer Aceptar (actualmente segundo)",
+ "input1": "Entrada 1",
+ "input2": "Entrada 2",
"mergeEditor.accept": "Aceptar {0}",
"mergeEditor.acceptBoth": "Aceptar ambos",
"mergeEditor.markAsHandled": "Marcar como controlado",
"mergeEditor.swap": "Intercambiar"
},
"vs/workbench/contrib/mergeEditor/browser/view/editors/resultCodeEditorView": {
+ "allConflictHandled": "Todos los conflictos controlados, la combinación se puede completar ahora.",
+ "goToNextConflict": "Ir al siguiente conflicto",
"mergeEditor.remainingConflict": "{0} conflictos restantes",
- "mergeEditor.remainingConflicts": "{0} conflicto restante"
+ "mergeEditor.remainingConflicts": "{0} conflicto restante",
+ "result": "Resultado"
},
"vs/workbench/contrib/mergeEditor/browser/view/mergeEditor": {
- "editor.mergeEditor.label": "Merge Editor",
- "input1": "Entrada 1",
- "input2": "Entrada 2",
- "mergeEditor": "Editor de combinación de texto",
- "result": "Resultado"
+ "mergeEditor": "Editor de combinación de texto"
+ },
+ "vs/workbench/contrib/mergeEditor/browser/view/viewModel": {
+ "noConflictMessage": "Actualmente no hay ningún conflicto centrado que se pueda alternar."
},
"vs/workbench/contrib/mergeEditor/common/mergeEditor": {
"baseUri": "El identificador uri de la base de un editor de combinación",
"editorLayout": "Modo de diseño de un editor de combinación",
"is": "El editor es un editor de combinación",
- "resultUri": "El identificador uri del resultado de un editor de combinación"
+ "isr": "El editor es el editor de resultados de un editor de mezcla.",
+ "resultUri": "El identificador uri del resultado de un editor de combinación",
+ "showBase": "Si el editor de combinación muestra la versión base",
+ "showBaseAtTop": "Si la base debe mostrarse en la parte superior",
+ "showNonConflictingChanges": "Si el editor de combinación muestra cambios que no están en conflicto"
+ },
+ "vs/workbench/contrib/mergeEditor/electron-browser/devCommands": {
+ "merge.dev.openSelectionInTemporaryMergeEditor": "Abrir selección en el Editor de combinación temporal",
+ "merge.dev.openState": "Abrir estado del editor de mezcla desde JSON",
+ "mergeEditor": "Editor de combinación (desarrollo)",
+ "mergeEditor.enterJSON": "Escribir JSON"
+ },
+ "vs/workbench/contrib/multiDiffEditor/browser/actions": {
+ "ExpandAllDiffs": "Expandir todas las diferencias",
+ "collapseAllDiffs": "Contraer todas las diferencias",
+ "goToFile": "Abrir archivo",
+ "goToNextChange": "Ir al cambio siguiente",
+ "goToPreviousChange": "Ir al cambio anterior"
+ },
+ "vs/workbench/contrib/multiDiffEditor/browser/icons.contribution": {
+ "multiDiffEditorLabelIcon": "Icono de la etiqueta del editor de diferencias múltiples."
+ },
+ "vs/workbench/contrib/multiDiffEditor/browser/multiDiffEditor.contribution": {
+ "name": "Multi editor de diferencias"
+ },
+ "vs/workbench/contrib/multiDiffEditor/browser/multiDiffEditorInput": {
+ "name": "Multi editor de diferencias",
+ "nameWithFiles": "{0} (archivos {1})",
+ "nameWithOneFile": "{0} (1 archivo)"
+ },
+ "vs/workbench/contrib/multiDiffEditor/browser/scmMultiDiffSourceResolver": {
+ "openChanges": "Abrir cambios"
},
"vs/workbench/contrib/notebook/browser/contrib/cellCommands/cellCommands": {
"notebookActions.changeCellToCode": "Cambiar la celda a código",
@@ -6914,22 +11695,41 @@
"notebookActions.expandCellOutput": "Expandir los resultados de la celda",
"notebookActions.joinCellAbove": "Unir con la celda anterior",
"notebookActions.joinCellBelow": "Unir con la celda siguiente",
+ "notebookActions.joinSelectedCells": "Combinar celdas seleccionadas",
"notebookActions.moveCellDown": "Bajar celda",
"notebookActions.moveCellUp": "Subir celda",
"notebookActions.splitCell": "Dividir celda",
- "notebookActions.toggleOutputs": "Alternar salidas"
+ "notebookActions.toggleOutputs": "Alternar salidas",
+ "notebookActions.toggleScrolling": "Alternar salida de celda de desplazamiento"
+ },
+ "vs/workbench/contrib/notebook/browser/contrib/cellDiagnostics/cellDiagnosticsActions": {
+ "cellCommands.quickFix.noneMessage": "No hay acciones de código disponibles",
+ "notebookActions.cellFailureActions": "Mostrar acciones de error de celda",
+ "notebookActions.chatExplainCellError": "Explicar error de celda",
+ "notebookActions.chatFixCellError": "Corregir error de celda"
+ },
+ "vs/workbench/contrib/notebook/browser/contrib/cellDiagnostics/diagnosticCellStatusBarContrib": {
+ "notebook.cell.status.diagnostic": "Acciones rápidas {0}"
},
"vs/workbench/contrib/notebook/browser/contrib/cellStatusBar/executionStatusBarItemController": {
"notebook.cell.status.executing": "En ejecución",
"notebook.cell.status.failed": "Error",
"notebook.cell.status.pending": "Pendiente",
- "notebook.cell.status.success": "Correcto"
+ "notebook.cell.status.success": "Correcto",
+ "notebook.cell.statusBar.timerTooltip": "**Última ejecución** {0}\r\n\r\n**Tiempo de ejecución** {1}\r\n\r\n**Tiempo de sobrecarga** {2}\r\n\r\n**Tiempos de representación**\r\n\r\n{3}",
+ "notebook.cell.statusBar.timerTooltip.reportIssueFootnote": "Usa los vínculos anteriores para presentar un problema mediante el informador del problema.",
+ "notebook.cell.statusBar.timerVerbose": "Última ejecución: {0}, Duración: {1}"
},
"vs/workbench/contrib/notebook/browser/contrib/cellStatusBar/statusBarProviders": {
"notebook.cell.status.autoDetectLanguage": "Aceptar lenguaje detectado: {0}",
- "notebook.cell.status.language": "Seleccionar el modo de lenguaje de celda"
+ "notebook.cell.status.language": "Seleccionar el modo de lenguaje de celda",
+ "notebook.cell.status.searchLanguageExtensions": "Idioma de celda desconocido. Haga clic para buscar extensiones de '{0}'"
+ },
+ "vs/workbench/contrib/notebook/browser/contrib/chat/notebookChatUtils": {
+ "notebookOutputCellLabel": "{0} • Celda {1} • Salida {2}"
},
"vs/workbench/contrib/notebook/browser/contrib/clipboard/notebookClipboard": {
+ "notebook.cell.output.selectAll": "Seleccionar todo",
"notebookActions.copy": "Copiar celda",
"notebookActions.cut": "Cortar celda",
"notebookActions.paste": "Pegar celda",
@@ -6937,25 +11737,19 @@
"toggleNotebookClipboardLog": "Alternar solución de problemas del Portapapeles del bloc de notas"
},
"vs/workbench/contrib/notebook/browser/contrib/editorStatusBar/editorStatusBar": {
- "current1": "Seleccionado actualmente",
- "current2": "{0} - Seleccionado actualmente",
- "installSuggestedKernel": "Instalar extensiones sugeridas",
"kernel.select.label": "Seleccionar el kernel",
"notebook.activeCellStatusName": "Selecciones del editor del Bloc de notas",
+ "notebook.indentation": "Sangría del cuaderno",
"notebook.info": "Información del kernel del bloc de notas",
"notebook.multiActiveCellIndicator": "Celda {0} ({1} seleccionado)",
"notebook.select": "Selección del kernel del bloc de notas",
"notebook.singleActiveCellIndicator": "Celda {0} de {1}",
- "notebookActions.selectKernel": "Seleccionar kernel del cuaderno",
- "notebookActions.selectKernel.args": "Argumentos del kernel del bloc de notas",
- "otherKernelKinds": "Otro",
- "prompt.placeholder.change": "Cambiar el kernel para \"{0}\"",
- "prompt.placeholder.select": "Seleccionar el kernel para '{0}'",
- "searchForKernels": "Buscar extensiones de kernel en Marketplace",
- "suggestedKernels": "Sugerencias",
+ "selectNotebookIndentation": "Seleccione la sangría",
"tooltop": "{0} (Sugerencia)"
},
"vs/workbench/contrib/notebook/browser/contrib/find/notebookFind": {
+ "notebook.findNext.fromWidget": "Buscar siguiente",
+ "notebook.findPrevious.fromWidget": "Buscar anterior",
"notebookActions.findInNotebook": "Buscar en el Bloc de notas",
"notebookActions.hideFind": "Ocultar Buscar en el Bloc de notas"
},
@@ -6969,9 +11763,10 @@
"label.replaceAllButton": "Reemplazar todo",
"label.replaceButton": "Reemplazar",
"label.toggleReplaceButton": "Alternar reemplazar",
+ "label.toggleSelectionFind": "Buscar en selección",
"notebook.find.filter.filterAction": "Buscar filtros",
"notebook.find.filter.findInCodeInput": "Origen de celda de código",
- "notebook.find.filter.findInCodeOutput": "Salida de celda",
+ "notebook.find.filter.findInCodeOutput": "Salida de celda de código",
"notebook.find.filter.findInMarkupInput": "Origen de Markdown",
"notebook.find.filter.findInMarkupPreview": "Markdown representado",
"placeholder.find": "Buscar",
@@ -6985,6 +11780,7 @@
"vs/workbench/contrib/notebook/browser/contrib/format/formatting": {
"format.title": "Dar formato al Bloc de notas",
"formatCell.label": "Aplicar formato a celda",
+ "formatCells.label": "Aplicar formato a las celdas",
"label": "Dar formato al Bloc de notas"
},
"vs/workbench/contrib/notebook/browser/contrib/gettingStarted/notebookGettingStarted": {
@@ -6993,6 +11789,13 @@
"vs/workbench/contrib/notebook/browser/contrib/layout/layoutActions": {
"notebook.toggleCellToolbarPosition": "Alternar la posición de la barra de herramientas de celdas"
},
+ "vs/workbench/contrib/notebook/browser/contrib/multicursor/notebookMulticursor": {
+ "addFindMatchToSelection": "Agregar selección hasta la siguiente coincidencia de búsqueda",
+ "deleteLeftMultiSelection": "Eliminar izquierda",
+ "deleteRightMultiSelection": "Eliminar derecho",
+ "exitMultiSelection": "Salir del modo de cursor múltiple",
+ "selectAllFindMatches": "Seleccionar todas las repeticiones de coincidencia de búsqueda"
+ },
"vs/workbench/contrib/notebook/browser/contrib/navigation/arrow": {
"cursorMoveDown": "Situar el foco sobre Editor de celda siguiente",
"cursorMoveUp": "Situar el foco sobre Editor de celda anterior",
@@ -7004,21 +11807,90 @@
"focusLastCell": "Enfocar la última celda",
"focusOutput": "Foco en la salida de la celda activa",
"focusOutputOut": "Foco fuera de la salida de la celda activa",
+ "notebook.cell.webviewHandledEvents": "Pulsaciones de teclas que debe controlar el elemento prioritario en la salida de la celda.",
"notebook.navigation.allowNavigateToSurroundingCells": "Cuando se activa el cursor puede navegar a la celda siguiente o anterior cuando el cursor actual en el editor de celdas está en la primera o la última línea.",
"notebookActions.centerActiveCell": "Centrar celda activa"
},
+ "vs/workbench/contrib/notebook/browser/contrib/notebookVariables/notebookInlineVariables": {
+ "clearAllInlineValues": "Borrar todos los valores insertados"
+ },
+ "vs/workbench/contrib/notebook/browser/contrib/notebookVariables/notebookVariableCommands": {
+ "copyWorkspaceVariableValue": "Copiar valor",
+ "executeNotebookVariableProvider": "Ejecutar proveedor de variables de cuaderno"
+ },
+ "vs/workbench/contrib/notebook/browser/contrib/notebookVariables/notebookVariables": {
+ "notebookVariables": "Variables del cuaderno"
+ },
+ "vs/workbench/contrib/notebook/browser/contrib/notebookVariables/notebookVariablesDataSource": {
+ "notebook.indexedChildrenLimitReached": "Se alcanzó el límite de pantalla"
+ },
+ "vs/workbench/contrib/notebook/browser/contrib/notebookVariables/notebookVariablesTree": {
+ "notebook.ReplVariables": "REPL Variables",
+ "notebook.notebookVariables": "Variables del cuaderno",
+ "notebookVariableAriaLabel": "Variable {0}, valor {1}"
+ },
"vs/workbench/contrib/notebook/browser/contrib/outline/notebookOutline": {
- "breadcrumbs.showCodeCells": "Cuando se habilita, las rutas de navegación de bloc de notas contienen celdas de código.",
- "empty": "celda vacía",
- "outline.showCodeCells": "Cuando se habilita, el esquema del bloc de notas muestra celdas de código."
+ "breadcrumbs.showCodeCells": "Cuando se habilita, las rutas de navegación del cuaderno contienen celdas de código.",
+ "filter": "Filtrar entradas",
+ "notebook.gotoSymbols.showAllSymbols": "Cuando se habilita, la selección rápida ir a símbolo mostrará símbolos de código completos del bloc de notas, así como encabezados de Markdown.",
+ "outline.showCodeCellSymbols": "Cuando está habilitado, el contorno del cuaderno muestra símbolos de celda de código. Se basa en la habilitación de `#notebook.outline.showCodeCells#`.",
+ "outline.showCodeCells": "Cuando está habilitado, el contorno del cuaderno muestra las celdas de código.",
+ "outline.showMarkdownHeadersOnly": "Cuando está habilitado, el contorno del cuaderno solo mostrará las celdas de Markdown que contengan un encabezado.",
+ "toggleCodeCellSymbols": "Símbolos de celda de código",
+ "toggleCodeCells": "Celdas de código",
+ "toggleShowMarkdownHeadersOnly": "Solo encabezados de Markdown"
},
"vs/workbench/contrib/notebook/browser/contrib/profile/notebookProfile": {
"setProfileTitle": "Establecer el perfil"
},
+ "vs/workbench/contrib/notebook/browser/contrib/saveParticipants/saveParticipants": {
+ "codeAction.apply": "Aplicando la acción de código \"{0}\".",
+ "codeaction.get2": "Obteniendo acciones de código de \"{0}\" ([configure]({1})).",
+ "formatNotebook": "Dar formato al bloc de notas",
+ "insertFinalNewLine": "Insertar nueva línea final",
+ "notebookFormatSave.formatting": "Formateando",
+ "notebookSaveParticipants.cellCodeActions": "Ejecutando acciones de código \"Cell\"",
+ "notebookSaveParticipants.formatCodeActions": "Ejecución de acciones de código \"Format\"",
+ "notebookSaveParticipants.notebookCodeActions": "Ejecutar acciones de código \"Bloc de notas\"",
+ "trimNotebookNewlines": "Recortar líneas nuevas finales",
+ "trimNotebookWhitespace": "Recortar espacio final de bloc de notas"
+ },
"vs/workbench/contrib/notebook/browser/contrib/troubleshoot/layout": {
"workbench.notebook.clearNotebookEdtitorTypeCache": "Borrar caché de tipos de editor de blocs de notas",
"workbench.notebook.inspectLayout": "Inspeccionar el diseño del Bloc de notas",
- "workbench.notebook.toggleLayoutTroubleshoot": "Alternar solución de problemas de diseño"
+ "workbench.notebook.toggleLayoutTroubleshoot": "Alternar solución de problemas de diseño de cuaderno"
+ },
+ "vs/workbench/contrib/notebook/browser/controller/cellOperations": {
+ "notebookActions.joinSelectedCells": "No se pueden combinar celdas de diferentes tipos",
+ "notebookActions.joinSelectedCells.label": "Unir celdas del bloc de notas"
+ },
+ "vs/workbench/contrib/notebook/browser/controller/cellOutputActions": {
+ "imageFiles": "Archivos de imagen",
+ "notebookActions.copyOutput": "Copiar salida de celda",
+ "notebookActions.openOutputInEditor": "Abrir salida de celda en editor de texto",
+ "notebookActions.openOutputInNotebookOutputEditor": "Abrir en vista previa de salida",
+ "notebookActions.saveOutputImage": "Guardar imagen",
+ "notebookActions.showAllOutput": "Mostrar salidas vacías"
+ },
+ "vs/workbench/contrib/notebook/browser/controller/chat/cellChatActions": {
+ "notebook.apply1": "Aceptar y ejecutar",
+ "notebook.apply2": "Aceptar y Ejecutar",
+ "notebook.apply3": "Aceptar los cambios y ejecutar la celda",
+ "notebookActions.menu.insertCode.ontoolbar": "Generar",
+ "notebookActions.menu.insertCode.tooltip": "Iniciar chat para generar código",
+ "notebookActions.menu.insertCodeCellWithChat": "Generar",
+ "notebookActions.menu.insertCodeCellWithChat.tooltip": "Iniciar chat para generar código"
+ },
+ "vs/workbench/contrib/notebook/browser/controller/chat/notebook.chat.contribution": {
+ "chatContext.notebook.kernelVariable": "Variable de kernel...",
+ "chatContext.notebook.kernelVariable.placeholder": "Seleccionar una variable del núcleo",
+ "noKernelVariables": "No se encontraron variables de kernel",
+ "notebookActions.addOutputToChat": "Agregar salida de celda al chat",
+ "pickKernelVariableLabel": "Selección de una variable del kernel",
+ "selectKernelVariablePlaceholder": "Seleccionar una variable del núcleo"
+ },
+ "vs/workbench/contrib/notebook/browser/controller/chat/notebookChatContext": {
+ "notebookChatAgentRegistered": "Si se ha registrado un agente de chat para el cuaderno"
},
"vs/workbench/contrib/notebook/browser/controller/coreActions": {
"miShare": "Compartir",
@@ -7029,17 +11901,28 @@
"vs/workbench/contrib/notebook/browser/controller/editActions": {
"autoDetect": "Detección automática",
"changeLanguage": "Cambiar el lenguaje de la celda",
- "clearAllCellsOutputs": "Borrar resultados de todas las celdas",
+ "clearAllCellsOutputs": "Borrar todas las salidas",
"clearCellOutputs": "Borrar salidas de celdas",
+ "commentSelectedCells": "Comentar celdas seleccionadas",
+ "confirmDeleteButton": "Eliminar",
+ "confirmDeleteButtonMessage": "Esta celda se está ejecutando, ¿está seguro de que desea eliminarla?",
"detectLanguage": "Aceptar lenguaje detectado para celda",
+ "doNotAskAgain": "No volver a hacerme esta pregunta",
+ "indentConvert": "convertir archivo",
+ "indentView": "cambiar vista",
"languageDescription": "({0}): lenguaje actual",
"languageDescriptionConfigured": "({0})",
"languagesPicks": "idiomas (identificador)",
"noDetection": "No se puede detectar el lenguaje de la celda",
+ "noNotebookEditor": "No hay ningún editor de cuadernos activo en este momento",
+ "noWritableCodeEditor": "El editor del cuaderno activo es de solo lectura.",
"notebookActions.deleteCell": "Eliminar celda",
"notebookActions.editCell": "Editar celda",
"notebookActions.quitEdit": "Detener edición de celda",
- "pickLanguageToConfigure": "Seleccionar el modo de lenguaje"
+ "notebookActions.quitEditAllCells": "Detener la edición de todas las celdas",
+ "pickAction": "Seleccionar acción",
+ "pickLanguageToConfigure": "Seleccionar el modo de lenguaje",
+ "selectNotebookIndentation": "Seleccione la sangría"
},
"vs/workbench/contrib/notebook/browser/controller/executeActions": {
"notebookActions.cancel": "Detener la ejecución de la celda",
@@ -7051,10 +11934,11 @@
"notebookActions.executeAndSelectBelow": "Ejecutar celda del Bloc de notas y seleccionar a continuación",
"notebookActions.executeBelow": "Ejecutar la celda y abajo",
"notebookActions.executeNotebook": "Ejecutar todo",
+ "notebookActions.interruptNotebook": "Interrumpir",
"notebookActions.renderMarkdown": "Representar todas las celdas de Markdown",
"revealLastFailedCell": "Ir a la celda con errores más recientes",
- "revealLastFailedCellShort": "Ir a",
- "revealRunningCell": "Go to Running Cell",
+ "revealLastFailedCellShort": "Ir a la celda con errores más recientes",
+ "revealRunningCell": "Ir a la celda en ejecución",
"revealRunningCellShort": "Ir a"
},
"vs/workbench/contrib/notebook/browser/controller/foldingController": {
@@ -7081,16 +11965,48 @@
},
"vs/workbench/contrib/notebook/browser/controller/layoutActions": {
"customizeNotebook": "Personalizar blocs de notas...",
+ "mitoggleNotebookStickyScroll": "&&Alternar desplazamiento con inmovilización del bloc de notas",
"notebook.placeholder": "Archivo de configuración para guardar en",
"notebook.saveMimeTypeOrder": "Guardar orden de visualización de mimetype",
- "notebook.showLineNumbers": "Mostrar los números de línea del bloc de notas",
+ "notebook.showLineNumbers": "Números de línea del bloc de notas",
"notebook.toggleBreadcrumb": "Alternar rutas de navegación",
"notebook.toggleCellToolbarPosition": "Alternar la posición de la barra de herramientas de celdas",
"notebook.toggleLineNumbers": "Alternar los números de línea del bloc de notas",
+ "notebookStickyScroll": "Alternar desplazamiento con inmovilización del bloc de notas",
"saveTarget.machine": "Configuración de usuario",
"saveTarget.workspace": "Configuración del área de trabajo",
+ "toggleStickyScroll": "Alternar desplazamiento con inmovilización del bloc de notas",
"workbench.notebook.layout.configure.label": "Personalizar el diseño del Bloc de notas",
- "workbench.notebook.layout.select.label": "Seleccionar entre los diseños del Bloc de notas"
+ "workbench.notebook.layout.select.label": "Seleccionar entre los diseños del Bloc de notas",
+ "workbench.notebook.layout.webview.reset.label": "Restablecer vista web del bloc de notas"
+ },
+ "vs/workbench/contrib/notebook/browser/controller/notebookIndentationActions": {
+ "changeTabDisplaySize": "Cambiar tamaño de visualización de tabulación",
+ "convertIndentation": "Convertir sangría",
+ "convertIndentationToSpaces": "Convertir sangría en espacios",
+ "convertIndentationToTabs": "Convertir sangría en tabulaciones",
+ "indentUsingSpaces": "Aplicar sangría con espacios",
+ "indentUsingTabs": "Aplicar sangría con tabulaciones",
+ "selectTabWidth": "Seleccionar tamaño de tabulación para el archivo actual"
+ },
+ "vs/workbench/contrib/notebook/browser/controller/sectionActions": {
+ "expandSection": "Expandir sección",
+ "foldSection": "Plegar sección",
+ "miexpandSection": "&&Expandir sección",
+ "mifoldSection": "&&Plegar sección",
+ "mirunCell": "&&Ejecutar celda",
+ "mirunCellsInSection": "&&Ejecutar celdas en la sección",
+ "runCell": "Ejecutar celda",
+ "runCellsInSection": "Ejecutar celdas en la sección"
+ },
+ "vs/workbench/contrib/notebook/browser/controller/variablesActions": {
+ "notebookActions.openVariablesView": "Variables"
+ },
+ "vs/workbench/contrib/notebook/browser/diff/diffComponents": {
+ "hiddenCell": "{0} celda oculta",
+ "hiddenCells": "{0} celdas ocultas",
+ "hideUnchangedCells": "Ocultar celdas sin modificar",
+ "showUnchangedCells": "Mostrar celdas sin modificar"
},
"vs/workbench/contrib/notebook/browser/diff/diffElementOutputs": {
"builtinRenderInfo": "integrada",
@@ -7102,81 +12018,142 @@
"promptChooseMimeTypeInSecure.placeHolder": "Seleccione el tipo de mime que se va a representar para la salida actual. Los tipos de mime enriquecidos solo están disponibles cuando el bloc de notas es de confianza"
},
"vs/workbench/contrib/notebook/browser/diff/notebookDiffActions": {
+ "goToCell": "Ir a la celda",
+ "hideUnchangedCells": "Ocultar celdas sin modificar",
+ "ignoreTrimWhitespace.label": "Mostrar las diferencias de espacios en blanco iniciales/finales",
+ "notebook.diff.action.next.title": "Mostrar el cambio siguiente",
+ "notebook.diff.action.previous.title": "Mostrar el cambio anterior",
"notebook.diff.cell.revertInput": "Revertir la entrada",
"notebook.diff.cell.revertMetadata": "Revertir metadatos",
"notebook.diff.cell.revertOutputs": "Revertir resultados",
"notebook.diff.cell.switchOutputRenderingStyleToText": "Cambiar la representación de salida",
+ "notebook.diff.cell.toggleCollapseUnchangedRegions": "Alternar contraer regiones sin cambios",
"notebook.diff.ignoreMetadata": "Ocultar las diferencias de los metadatos",
"notebook.diff.ignoreOutputs": "Ocultar las diferencias de los resultados",
+ "notebook.diff.inline.toggle.title": "Alternar vista insertada",
+ "notebook.diff.openFile": "Abrir archivo",
+ "notebook.diff.revertMetadata": "Revertir metadatos de Notebook",
"notebook.diff.showMetadata": "Mostrar las diferencias de los metadatos",
"notebook.diff.showOutputs": "Mostrar las diferencias de los resultados",
- "notebook.diff.switchToText": "Abrir el editor de diferencias de texto"
+ "notebook.diff.switchToText": "Abrir el editor de diferencias de texto",
+ "notebook.diff.toggleInline": "Habilite el comando para alternar el editor de diferencias en línea del bloc de notas experimental.",
+ "showUnchangedCells": "Mostrar celdas sin modificar"
},
- "vs/workbench/contrib/notebook/browser/diff/notebookTextDiffEditor": {
+ "vs/workbench/contrib/notebook/browser/diff/notebookDiffEditor": {
"notebookTreeAriaLabel": "Diferencia de texto del bloc de notas"
},
- "vs/workbench/contrib/notebook/browser/extensionPoint": {
- "contributes.notebook.provider": "Aporta el proveedor de documentos del Bloc de notas.",
- "contributes.notebook.provider.displayName": "Nombre legible del Bloc de notas.",
- "contributes.notebook.provider.selector": "Conjunto de globs para los que está destinado el Bloc de notas.",
- "contributes.notebook.provider.selector.filenamePattern": "Glob para el que está habilitado el bloc de notas.",
- "contributes.notebook.provider.viewType": "Tipo de bloc de notas.",
- "contributes.notebook.renderer": "Aporta el proveedor del representador de resultados del Bloc de notas.",
- "contributes.notebook.renderer.displayName": "Nombre legible del representador de salida del bloc de notas.",
- "contributes.notebook.renderer.entrypoint": "Archivo que se cargará en la vista web para representar la extensión.",
- "contributes.notebook.renderer.entrypoint.extends": "Representador existente que este extiende.",
- "contributes.notebook.renderer.hardDependencies": "Lista de dependencias del kernel que requiere el representador. Si alguna de las dependencias está presente en el \"NotebookKernel. preloads\", se puede usar el representador.",
- "contributes.notebook.renderer.optionalDependencies": "Lista de dependencias de kernel ligeras que puede usar el representador. Si alguna de las dependencias está presente en \"NotebookKernel. preloads\", el representador se preferirá a los representadores que no interactúen con el kernel.",
- "contributes.notebook.renderer.requiresMessaging": "Define cómo y si el representador necesita comunicarse con un host de extensiónes, a través de `createRendererMessaging`. Los representadores con requisitos de mensajería más estrictos puede que no funcionen en todos los entornos.",
- "contributes.notebook.renderer.requiresMessaging.always": "Se requiere mensajería. El representador solo se usará cuando forme parte de una extensión que se pueda ejecutar en un host de extensión.",
- "contributes.notebook.renderer.requiresMessaging.never": "El representador no requiere mensajería.",
- "contributes.notebook.renderer.requiresMessaging.optional": "El representador funciona mejor con la mensajería disponible, pero no es necesaria.",
- "contributes.notebook.renderer.viewType": "Identificador único del representador de salida del bloc de notas.",
- "contributes.notebook.selector": "Conjunto de globs para los que está destinado el cuaderno.",
- "contributes.notebook.selector.provider.excludeFileNamePattern": "Glob para el que el bloc de notas está deshabilitado.",
- "contributes.priority": "Controla si el editor personalizado se habilita automáticamente cuando el usuario abre un archivo. Los usuarios pueden invalidar esto con el valor \"workbench.editorAssociations\".",
- "contributes.priority.default": "El editor se usa automáticamente cuando el usuario abre un recurso, siempre que no se hayan registrado otros editores personalizados predeterminados para dicho recurso.",
- "contributes.priority.option": "El editor no se usa automáticamente cuando el usuario abre un recurso, pero un usuario puede cambiar al editor mediante el comando \"Reopen With\"."
+ "vs/workbench/contrib/notebook/browser/diff/notebookDiffEditorBrowser": {
+ "notebook.diffEditor.allCollapsed": "Si todas las celdas del editor de diferencias del cuaderno están contraídas",
+ "notebook.diffEditor.hasUnchangedCells": "Si hay celdas sin cambios en el editor de diferencias del cuaderno",
+ "notebook.diffEditor.item.kind": "Tipo de elemento en el editor de diferencias del cuaderno, celda, metadatos o salida",
+ "notebook.diffEditor.item.state": "El estado de diferencias del elemento en el editor de diferencias del cuaderno, eliminar, insertar, modificar o no modificar",
+ "notebook.diffEditor.unchangedCellsAreHidden": "Si las celdas sin cambios en el editor de diferencias del cuaderno están ocultas"
+ },
+ "vs/workbench/contrib/notebook/browser/diff/notebookDiffList": {
+ "notebook.diff.hiddenCells.expandAll": "Haga doble clic para mostrar"
+ },
+ "vs/workbench/contrib/notebook/browser/diff/notebookMultiDiffEditor": {
+ "notebookCellLabel": "Celda {0}",
+ "notebookCellMetadataLabel": "Metadatos",
+ "notebookCellOutputLabel": "Salida"
},
"vs/workbench/contrib/notebook/browser/notebook.contribution": {
"insertToolbarLocation.betweenCells": "Barra de herramientas que aparece al mantener el mouse entre las celdas.",
"insertToolbarLocation.both": "Ambas barras de herramientas.",
"insertToolbarLocation.hidden": "Las acciones de inserción no aparecen en ningún lugar.",
"insertToolbarLocation.notebookToolbar": "Barra de herramientas situada en la parte superior del editor del Bloc de notas.",
+ "notebook.VariablesView.description": "Habilitar la vista de variables experimentales del bloc de notas en el panel de depuración.",
+ "notebook.backup.sizeLimit": "Límite del tamaño de salida del cuaderno en kilobytes (KB) donde ya no se hará una copia de seguridad de los archivos del cuaderno para la recarga activa. Usa 0 para un número ilimitado.",
+ "notebook.cellExecutionTimeVerbosity.default.description": "La duración de la ejecución de celda es visible, con información avanzada al mantener el puntero sobre la información en pantalla.",
+ "notebook.cellExecutionTimeVerbosity.description": "Controla el nivel de detalle del tiempo de ejecución de la celda en la barra de estado de la celda.",
+ "notebook.cellExecutionTimeVerbosity.verbose.description": "La marca de tiempo y la duración de la última ejecución de la celda son visibles, con información avanzada al mantener el puntero sobre la información en pantalla.",
+ "notebook.cellFailureDiagnostics": "Muestra los diagnósticos disponibles para los errores de celda.",
+ "notebook.cellGenerate": "Habilite la acción de generación experimental para crear una celda de código con el chat en línea habilitado.",
"notebook.cellToolbarLocation.description": "Indica si la barra de herramientas de celdas debe mostrarse u ocultarse.",
"notebook.cellToolbarLocation.viewType": "Configurar la posición de la barra de herramientas de celdas para tipos de archivo específicos",
"notebook.cellToolbarVisibility.description": "Indica si la barra de herramientas de celda debe aparecer al pasar el cursor o hacer clic.",
"notebook.compactView.description": "Controlar si el editor del bloc de notas debe representarse en un formato compacto. Por ejemplo, cuando se activa, disminuirá el ancho del margen izquierdo.",
+ "notebook.confirmDeleteRunningCell": "Controlar si se requiere un mensaje de confirmación para eliminar una celda en ejecución.",
"notebook.consolidatedOutputButton.description": "Controla si la acción de los resultados se debe representar en la barra de herramientas de salida.",
"notebook.consolidatedRunButton.description": "Controla si se muestran acciones adicionales en una lista desplegable junto al botón ejecutar.",
+ "notebook.diff.enableOverviewRuler.description": "Indica si se debe representar la regla de información general en el editor de diferencias para el cuaderno.",
"notebook.diff.enablePreview.description": "Indica si se va a usar el editor de diferencias de texto mejorado para el bloc de notas.",
+ "notebook.disableOutputFilePathLinks": "Controla si se deben deshabilitar los vínculos de ruta de acceso de archivo en la salida de las celdas del bloc de notas.",
"notebook.displayOrder.description": "Lista de prioridades para los tipos de mimo de salida",
"notebook.dragAndDrop.description": "Controla si el editor del bloc de notas debe permitir mover celdas mediante arrastrar y colocar.",
"notebook.editorOptions.experimentalCustomization": "Configuración de los editores de código utilizados en los blocs de notas. Se puede usar para personalizar la mayoría de las opciones del editor*.",
- "notebook.focusIndicator.description": "Controla dónde se representa el indicador de foco, ya sea a lo largo de los bordes de la celda o en el medianil izquierdo",
+ "notebook.findFilters": "Personalice el comportamiento buscar widget para buscar en celdas del bloc de notas. Cuando el origen de marcado y la vista previa de marcado están habilitados, el widget buscará el código fuente o la vista previa en función del estado actual de la celda.",
+ "notebook.focusIndicator.description": "Controla dónde se representa el indicador de foco, ya sea a lo largo de los bordes de la celda o en el medianil izquierdo.",
+ "notebook.formatOnCellExecution": "Dé formato a una celda del bloc de notas tras la ejecución. Un formateador debe estar disponible.",
+ "notebook.formatOnSave": "Dar formato a un bloc de notas al guardar. Un formateador debe estar disponible y el editor no debe cerrarse. Cuando {0} se establece en \"afterDelay\", el archivo solo tendrá formato cuando se guarde explícitamente.",
"notebook.globalToolbar.description": "Controla si se debe representar una barra de herramientas global dentro del editor de bloc de notas.",
"notebook.globalToolbarShowLabel": "Controla si las acciones de la barra de herramientas del Bloc de notas deben representar la etiqueta o no.",
+ "notebook.inlineValues.auto": "Mostrar valores insertados solo cuando se registre un proveedor de valores insertados.",
+ "notebook.inlineValues.description": "Controla si se deben mostrar los valores insertados en las celdas de código del bloc de notas después de la ejecución de celdas. Los valores permanecerán hasta que la celda se edite, se vuelva a ejecutar o se borre explícitamente mediante el botón de la barra de herramientas Borrar todas las salidas o el comando \"Cuaderno: borrar valores insertados\".",
+ "notebook.inlineValues.off": "No mostrar nunca los valores insertados.",
+ "notebook.inlineValues.on": "Mostrar siempre los valores insertados, con una reserva regex si no hay registrado ningún proveedor de valores insertados. Nota: si se usa la reserva, puede haber un impacto en el rendimiento en las celdas más grandes.",
+ "notebook.insertFinalNewline": "Cuando esté habilitada, inserte una nueva línea final al final de las celdas de código al guardar un cuaderno.",
"notebook.insertToolbarPosition.description": "Controlar dónde deberían aparecer las acciones de inserción de celda.",
"notebook.interactiveWindow.collapseCodeCells": "Controla si las celdas de código de la ventana interactiva están contraídas de forma predeterminada.",
+ "notebook.markdown.lineHeight": "Controla el alto de línea en píxeles de las celdas de markdown de los blocs de notas. Cuando se establece en {0}, se usará {1}",
+ "notebook.markup.fontFamily": "Controla la familia de fuentes del marcado representado en los blocs de notas. Si se deja en blanco, se revertirá a la familia de fuentes predeterminada del área de trabajo.",
"notebook.markup.fontSize": "Controla el tamaño de fuente en píxeles de la revisión representada en los blocs de notas. Cuando se establece en {0}, se usa el 120 % de {1}.",
- "notebook.outputFontFamily": "Familia de fuentes del texto de salida de las celdas del bloc de notas. Cuando se establece en vacío, se usa {0}.",
- "notebook.outputFontSize": "Tamaño de fuente del texto de salida de las celdas del bloc de notas. Cuando se establece en {0}, se usa {1}.",
- "notebook.outputLineHeight": "Alto de línea del texto de salida para las celdas del bloc de notas.\r\n : los valores entre 0 y 8 se usarán como multiplicador con el tamaño de fuente.\r\n : los valores mayores o iguales que 8 se usarán como valores efectivos.",
+ "notebook.minimalErrorRendering": "Controlar si se va a representar la salida de error en un estilo mínimo.",
+ "notebook.multiCursor.enabled": "Experimental. Habilita un conjunto limitado de controles de varios cursores en varias celdas del editor del bloc de notas. Actualmente se admiten las acciones principales del editor (escritura, cortar, copiar, pegar y composición) y un subconjunto limitado de comandos del editor.",
+ "notebook.outputFontFamily": "Familia de fuentes del texto de salida dentro de las celdas del bloc de notas. Cuando se establece en vacío, se usa el {0}.",
+ "notebook.outputFontSize": "Tamaño de fuente del texto de salida dentro de las celdas del bloc de notas. Cuando se establece en 0, se usa {0}.",
+ "notebook.outputLineHeight": "Alto de línea del texto de salida dentro de las celdas del bloc de notas.\r\n - Cuando se establece en 0, se usa el alto de línea del editor.\r\n - Los valores entre 0 y 8 se usarán como multiplicador con el tamaño de fuente.\r\n - Los valores mayores o iguales que 8 se usarán como valores efectivos.",
+ "notebook.outputScrolling": "Presentar inicialmente las salidas del bloc de notas en una región desplazable cuando no supere el límite.",
+ "notebook.outputWordWrap": "Controla si las líneas de la salida deben encapsularse.",
+ "notebook.remoteSaving": "Habilita el guardado incremental de cuadernos entre procesos y conexiones remotas. Cuando está habilitado, solo se envían al host de extensiones los cambios realizados en el bloc de notas, lo que mejora el rendimiento en el caso de blocs de notas de gran tamaño y conexiones de red lentas.",
+ "notebook.scrolling.revealNextCellOnExecute.description": "Distancia de desplazamiento al mostrar la siguiente celda al ejecutar {0}.",
+ "notebook.scrolling.revealNextCellOnExecute.firstLine.description": "Desplácese para mostrar la primera línea de la celda siguiente.",
+ "notebook.scrolling.revealNextCellOnExecute.fullCell.description": "Desplácese para mostrar completamente la celda siguiente.",
+ "notebook.scrolling.revealNextCellOnExecute.none.description": "No desplazarse.",
"notebook.showCellStatusbar.description": "Indica si se debe mostrar la barra de estado de la celda.",
- "notebook.showCellStatusbar.hidden.description": "La barra de estado de la celda siempre está oculta.",
- "notebook.showCellStatusbar.visible.description": "La barra de estado de la celda siempre está visible.",
- "notebook.showCellStatusbar.visibleAfterExecute.description": "La barra de estado de la celda se oculta hasta que se ha ejecutado la celda. A continuación, se hace visible para mostrar el estado de ejecución.",
+ "notebook.showCellStatusbar.hidden.description": "La barra de estado de la celda está siempre oculta.",
+ "notebook.showCellStatusbar.visible.description": "La barra de estado de la celda está siempre visible.",
+ "notebook.showCellStatusbar.visibleAfterExecute.description": "La barra de estado de la celda permanece oculta hasta que se ejecuta la celda. Después se hace visible para mostrar el estado de ejecución.",
"notebook.showFoldingControls.description": "Controla cuándo se muestra la flecha de plegado del encabezado de Markdown.",
- "notebook.textOutputLineLimit": "Controla el número de líneas de texto que se representan en una salida de texto.",
+ "notebook.stickyScrollEnabled.description": "Experimental. Controlar si se van a representar los encabezados de desplazamiento con inmovilización del bloc de notas en el editor del bloc de notas.",
+ "notebook.stickyScrollMode.description": "Controla si las líneas de desplazamiento permanente anidadas aparecen apiladas o con sangría.",
+ "notebook.stickyScrollMode.flat": "Las líneas de desplazamiento permanente anidadas aparecen planas.",
+ "notebook.stickyScrollMode.indented": "Las líneas de desplazamiento permanente anidadas aparecen con sangría.",
+ "notebook.textOutputLineLimit": "Controla cuántas líneas de texto se muestran en una salida de texto. Si {0} está habilitado, esta configuración se usa para determinar el alto de desplazamiento de la salida.",
"notebook.undoRedoPerCell.description": "Indica si se debe utilizar una pila para deshacer o rehacer separada para cada celda.",
"notebookConfigurationTitle": "Bloc de notas",
+ "notebookFormatter.default": "Define un formateador de bloc de notas predeterminado que tiene prioridad sobre todos los demás valores de formateador. Debe ser el identificador de una extensión que contribuya a un formateador.",
"showFoldingControls.always": "Los controles plegables siempre están visibles.",
"showFoldingControls.mouseover": "Los controles plegables sólo son visibles al pasar el mouse.",
"showFoldingControls.never": "No mostrar nunca los controles de plegado y reducir el tamaño del medianil."
},
+ "vs/workbench/contrib/notebook/browser/notebookAccessibilityHelp": {
+ "notebook.cell.edit": "El comando Editar celda{0} se centrará en la entrada de celda.",
+ "notebook.cell.executeAndFocusContainer": "El comando Ejecutar celda{0} ejecuta la celda que tiene el foco actualmente.",
+ "notebook.cell.focusInOutput": "El comando Foco de salida ({0}) establecerá el foco en la salida de la celda.",
+ "notebook.cell.insertCodeCellBelowAndFocusContainer": "Los comandos Insertar celda encima{0} e Inferior{1} crearán nuevas celdas de código vacías.",
+ "notebook.cell.quitEdit": "El comando Salir de edición{0} establecerá el foco en el contenedor de celdas. Es posible que la tecla predeterminada (Escape) deba presionarse dos veces antes de salir del cursor virtual si está activa.",
+ "notebook.cellNavigation": "Las flechas arriba y abajo también moverán el foco entre las celdas mientras se centran en el contenedor de celdas externas.",
+ "notebook.changeCellType": "Los comandos Cambiar celda a Código o Markdown se usan para cambiar entre tipos de celda.",
+ "notebook.focusNextEditor": "El comando Situar el foco sobre Editor de celda siguiente ({0}) establecerá el foco en el editor de la celda siguiente.",
+ "notebook.focusPreviousEditor": "El comando Foco del Editor de celdas anterior{0} establecerá el foco en el editor de la celda anterior.",
+ "notebook.overview": "La vista del cuaderno es una colección de celdas de código y markdown. Las celdas de código se pueden ejecutar y producirán resultados directamente debajo de la celda."
+ },
+ "vs/workbench/contrib/notebook/browser/notebookAccessibilityProvider": {
+ "notebookTreeAriaLabel": "Cuaderno",
+ "notebookTreeAriaLabelHelp": "{0}\r\nUsar {1} para obtener ayuda de accesibilidad",
+ "notebookTreeAriaLabelHelpNoKb": "{0}\r\nEjecute el comando Abrir ayuda de accesibilidad para obtener más información",
+ "replHistoryTreeAriaLabel": "Historial del editor REPL"
+ },
"vs/workbench/contrib/notebook/browser/notebookEditor": {
"fail.noEditor": "No se puede abrir el recurso con el tipo de editor del bloc de notas '{0}'. Compruebe si tiene instalada y habilitada la extensión correcta.",
- "notebookOpenInTextEditor": "Abrir en el Editor de texto"
+ "fail.noEditor.extensionMissing": "No se puede abrir el recurso con el tipo de editor del bloc de notas '{0}'. Compruebe si tiene instalada y habilitada la extensión correcta.",
+ "notebookOpenAsText": "Abrir como texto",
+ "notebookOpenEnableMissingViewType": "Habilitar extensión para “{0}”",
+ "notebookOpenInTextEditor": "Abrir en el Editor de texto",
+ "notebookOpenInstallMissingViewType": "Instalar extensión para '{0}'",
+ "notebookTooLargeForHeapErrorWithSize": "El bloc de notas no se muestra en el editor del bloc de notas porque es muy grande ({0}).",
+ "notebookTooLargeForHeapErrorWithoutSize": "El bloc de notas no se muestra en el editor del bloc de notas porque es muy grande."
},
"vs/workbench/contrib/notebook/browser/notebookEditorWidget": {
"focusedCellBackground": "Color de fondo de una celda cuando la celda tiene el foco.",
@@ -7195,22 +12172,52 @@
"notebook.outputContainerBorderColor": "Color del borde del contenedor de resultado del cuaderno.",
"notebook.selectedCellBorder": "Color del borde superior e inferior de la celda cuando la celda está seleccionada pero no tiene el foco.",
"notebook.symbolHighlightBackground": "Color de fondo de la celda resaltada",
+ "notebookEditorOverviewRuler.runningCellForeground": "Color de la decoración de celda en ejecución en la regla de información general del editor del bloc de notas.",
"notebookScrollbarSliderActiveBackground": "Color de fondo del control deslizante de la barra de desplazamiento del bloc de notas al hacer clic en él.",
"notebookScrollbarSliderBackground": "Color de fondo del control deslizante de la barra de desplazamiento del bloc de notas.",
"notebookScrollbarSliderHoverBackground": "Color de fondo del control deslizante de la barra de desplazamiento del bloc de notas al pasar el puntero.",
"notebookStatusErrorIcon.foreground": "Color del icono de error de las celdas del Bloc de notas en la barra de estado de la celda.",
"notebookStatusRunningIcon.foreground": "Color del icono en ejecución de las celdas del Bloc de notas en la barra de estado de la celda.",
"notebookStatusSuccessIcon.foreground": "Color del icono de error de las celdas del Bloc de notas en la barra de estado de la celda.",
- "notebookTreeAriaLabel": "Cuaderno",
"selectedCellBackground": "Color de fondo de una celda cuando esta se selecciona."
},
- "vs/workbench/contrib/notebook/browser/notebookExecutionServiceImpl": {
- "notebookRunTrust": "Al ejecutar una celda del bloc de notas se ejecutará el código desde esta área de trabajo."
+ "vs/workbench/contrib/notebook/browser/notebookExtensionPoint": {
+ "Notebook id": "Id.",
+ "Notebook mimetypes": "Tipos de MIME",
+ "Notebook name": "Nombre",
+ "Notebook renderer name": "Nombre",
+ "contributes.notebook.provider": "Aporta el proveedor de documentos del Bloc de notas.",
+ "contributes.notebook.provider.displayName": "Nombre legible del Bloc de notas.",
+ "contributes.notebook.provider.selector": "Conjunto de globs para los que está destinado el Bloc de notas.",
+ "contributes.notebook.provider.selector.filenamePattern": "Glob para el que está habilitado el bloc de notas.",
+ "contributes.notebook.provider.viewType": "Tipo de bloc de notas.",
+ "contributes.notebook.renderer": "Aporta el proveedor del representador de resultados del Bloc de notas.",
+ "contributes.notebook.renderer.displayName": "Nombre legible del representador de salida del bloc de notas.",
+ "contributes.notebook.renderer.entrypoint": "Archivo que se cargará en la vista web para representar la extensión.",
+ "contributes.notebook.renderer.entrypoint.extends": "Representador existente que este extiende.",
+ "contributes.notebook.renderer.hardDependencies": "Lista de dependencias del kernel que requiere el representador. Si alguna de las dependencias está presente en el \"NotebookKernel. preloads\", se puede usar el representador.",
+ "contributes.notebook.renderer.optionalDependencies": "Lista de dependencias de kernel ligeras que puede usar el representador. Si alguna de las dependencias está presente en \"NotebookKernel. preloads\", el representador se preferirá a los representadores que no interactúen con el kernel.",
+ "contributes.notebook.renderer.requiresMessaging": "Define cómo y si el representador necesita comunicarse con un host de extensiónes, a través de `createRendererMessaging`. Los representadores con requisitos de mensajería más estrictos puede que no funcionen en todos los entornos.",
+ "contributes.notebook.renderer.requiresMessaging.always": "Se requiere mensajería. El representador solo se usará cuando forme parte de una extensión que se pueda ejecutar en un host de extensión.",
+ "contributes.notebook.renderer.requiresMessaging.never": "El representador no requiere mensajería.",
+ "contributes.notebook.renderer.requiresMessaging.optional": "El representador funciona mejor con la mensajería disponible, pero no es necesaria.",
+ "contributes.notebook.renderer.viewType": "Identificador único del representador de salida del bloc de notas.",
+ "contributes.notebook.selector": "Conjunto de globs para los que está destinado el cuaderno.",
+ "contributes.notebook.selector.provider.excludeFileNamePattern": "Glob para el que el bloc de notas está deshabilitado.",
+ "contributes.preload.entrypoint": "Ruta de acceso al archivo cargado en la vista web.",
+ "contributes.preload.localResourceRoots": "Rutas de acceso a recursos adicionales que deben permitirse en la vista web.",
+ "contributes.preload.provider": "Contribuye con las cargas previas del cuaderno.",
+ "contributes.preload.provider.viewType": "Tipo de bloc de notas.",
+ "contributes.priority": "Controla si el editor personalizado se habilita automáticamente cuando el usuario abre un archivo. Los usuarios pueden invalidar esto con el valor \"workbench.editorAssociations\".",
+ "contributes.priority.default": "El editor se usa automáticamente cuando el usuario abre un recurso, siempre que no se hayan registrado otros editores personalizados predeterminados para dicho recurso.",
+ "contributes.priority.option": "El editor no se usa automáticamente cuando el usuario abre un recurso, pero un usuario puede cambiar al editor mediante el comando \"Reopen With\".",
+ "notebookRenderer": "Representadores de cuaderno",
+ "notebooks": "Cuadernos"
},
"vs/workbench/contrib/notebook/browser/notebookIcons": {
"clearIcon": "Icono para borrar las salidas de celda en los editores del bloc de notas.",
"collapsedIcon": "Icono para anotar una sección contraída en los editores del bloc de notas.",
- "configureKernel": "Icono de configuración en el widget de configuración del kernel en los editores de blocs de notas.",
+ "copyIcon": "Icono para copiar contenido en el Portapapeles",
"deleteCellIcon": "Icono para eliminar una celda en los editores del bloc de notas.",
"editIcon": "Icono para editar una celda en los editores del bloc de notas.",
"errorStateIcon": "Icono para indicar un estado de error en los editores del bloc de notas.",
@@ -7223,26 +12230,50 @@
"mimetypeIcon": "Icono de un tipo MIME en los editores del bloc de notas.",
"moveDownIcon": "Icono para desplazar una celda hacia abajo en los editores del bloc de notas.",
"moveUpIcon": "Icono para desplazar una celda hacia arriba en los editores del bloc de notas.",
+ "nextChangeIcon": "Icono de la acción de cambio siguiente en el editor de diferencias.",
"openAsTextIcon": "Icono para abrir el bloc de notas en un editor de texto.",
"pendingStateIcon": "Icono para indicar un estado pendiente en los editores de blocs de notas.",
+ "previousChangeIcon": "Icono de la acción de cambio anterior en el editor de diferencias.",
"renderOutputIcon": "Icono para representar la salida en el editor de diferencias.",
"revertIcon": "Icono para revertir en los editores del bloc de notas.",
+ "saveIcon": "Icono para guardar contenido en el disco",
"selectKernelIcon": "Icono de configuración para seleccionar un kernel en los editores del bloc de notas.",
"splitCellIcon": "Icono para dividir una celda en los editores del bloc de notas.",
"stopEditIcon": "Icono para detener la edición de una celda en los editores del bloc de notas.",
"stopIcon": "Icono para detener una ejecución en los editores del bloc de notas.",
"successStateIcon": "Icono para indicar un estado correcto en los editores del bloc de notas.",
- "unfoldIcon": "Icono para desplegar una celda en los editores del bloc de notas."
+ "toggleWhitespace": "Icono de la acción de alternar espacio en blanco en el editor de diferencias.",
+ "variablesViewIcon": "Vea el icono de la vista de variables."
+ },
+ "vs/workbench/contrib/notebook/browser/outputEditor/notebookOutputEditor": {
+ "empty": "La celda no tiene resultados",
+ "noRenderer.2": "No se ha encontrado ningún representador para la salida. Tiene los siguientes tipos MIME: {0}",
+ "notebookOutputEditor": "Editor de salida del cuaderno"
+ },
+ "vs/workbench/contrib/notebook/browser/outputEditor/notebookOutputEditorInput": {
+ "notebookOutputEditorInput": "Vista previa de salida del cuaderno"
+ },
+ "vs/workbench/contrib/notebook/browser/services/notebookExecutionServiceImpl": {
+ "notebookRunTrust": "Al ejecutar una celda del bloc de notas se ejecutará el código desde esta área de trabajo."
+ },
+ "vs/workbench/contrib/notebook/browser/services/notebookKernelHistoryServiceImpl": {
+ "workbench.notebook.clearNotebookKernelsMRUCache": "Borrar caché MRU de los kernel de bloc de notas"
},
"vs/workbench/contrib/notebook/browser/services/notebookKeymapServiceImpl": {
"disableOtherKeymapsConfirmation": "¿Quiere deshabilitar otras asignaciones de teclas ({0}) para evitar conflictos entre enlaces de teclado?",
"no": "No",
"yes": "Sí"
},
+ "vs/workbench/contrib/notebook/browser/services/notebookLoggingServiceImpl": {
+ "renderChannelName": "Cuaderno"
+ },
+ "vs/workbench/contrib/notebook/browser/services/notebookServiceImpl": {
+ "notebookOpenInstallMissingViewType": "Instalar extensión para '{0}'"
+ },
"vs/workbench/contrib/notebook/browser/view/cellParts/cellEditorOptions": {
"notebook.cell.toggleLineNumbers.title": "Mostrar números de línea de celda",
"notebook.lineNumbers": "Controla la visualización de los números de línea en el editor de celdas.",
- "notebook.showLineNumbers": "Mostrar los números de línea del bloc de notas",
+ "notebook.showLineNumbers": "Números de línea del bloc de notas",
"notebook.toggleLineNumbers": "Alternar los números de línea del bloc de notas"
},
"vs/workbench/contrib/notebook/browser/view/cellParts/cellOutput": {
@@ -7257,11 +12288,11 @@
},
"vs/workbench/contrib/notebook/browser/view/cellParts/codeCell": {
"cellExpandInputButtonLabel": "Expandir la entrada de la celda ({0})",
- "cellExpandInputButtonLabelWithDoubleClick": "Doble clic para expandir la entrada de celda ({0})"
+ "cellExpandInputButtonLabelWithDoubleClick": "Haga doble clic para expandir la entrada de celda ({0})"
},
"vs/workbench/contrib/notebook/browser/view/cellParts/codeCellExecutionIcon": {
"notebook.cell.status.executing": "En ejecución",
- "notebook.cell.status.failed": "Error",
+ "notebook.cell.status.failure": "Error",
"notebook.cell.status.pending": "Pendiente",
"notebook.cell.status.success": "Correcto"
},
@@ -7270,31 +12301,61 @@
},
"vs/workbench/contrib/notebook/browser/view/cellParts/collapsedCellOutput": {
"cellExpandOutputButtonLabel": "Expandir la salida de la celda (${0})",
- "cellExpandOutputButtonLabelWithDoubleClick": "Doble clic para expandir la salida de celda ({0})",
+ "cellExpandOutputButtonLabelWithDoubleClick": "Haga doble clic para expandir la salida de celda ({0})",
"cellOutputsCollapsedMsg": "Las salidas están contraídas"
},
"vs/workbench/contrib/notebook/browser/view/cellParts/foldedCellHint": {
"hiddenCellsLabel": "1 celda oculta",
"hiddenCellsLabelPlural": "{0} celdas ocultas"
},
- "vs/workbench/contrib/notebook/browser/view/cellParts/markdownCell": {
+ "vs/workbench/contrib/notebook/browser/view/cellParts/markupCell": {
"cellExpandInputButtonLabel": "Expandir la entrada de la celda ({0})",
- "cellExpandInputButtonLabelWithDoubleClick": "Doble clic para expandir la entrada de celda ({0})"
+ "cellExpandInputButtonLabelWithDoubleClick": "Haga doble clic para expandir la entrada de celda ({0})"
},
"vs/workbench/contrib/notebook/browser/view/renderers/backLayerWebView": {
- "notebook.emptyMarkdownPlaceholder": "Celda de Markdown vacía; haga doble clic o presione Entrar para editarla.",
- "notebook.error.rendererNotFound": "No se encontró ningún representador para \"$0\""
+ "notebook.emptyMarkdownPlaceholder": "Celda de Markdown vacía, haga doble clic o presione Entrar para editar.",
+ "notebook.error.rendererFallbacksExhausted": "No se pudo representar el contenido de '$0'",
+ "notebook.error.rendererNotFound": "No se encontró ningún representador para '$0'",
+ "webview title": "Contenido de vista web del bloc de notas"
},
"vs/workbench/contrib/notebook/browser/view/renderers/cellRenderer": {
"cellExecutionOrderCountLabel": "Orden de ejecución"
},
- "vs/workbench/contrib/notebook/browser/viewParts/notebookKernelActionViewItem": {
- "select": "Seleccionar el kernel"
+ "vs/workbench/contrib/notebook/browser/viewModel/notebookOutlineEntryFactory": {
+ "empty": "celda vacía"
+ },
+ "vs/workbench/contrib/notebook/browser/viewParts/notebookKernelQuickPickStrategy": {
+ "current1": "Seleccionado actualmente",
+ "current2": "{0} - Seleccionado actualmente",
+ "installSuggestedKernel": "Instalar o habilitar extensiones sugeridas",
+ "kernels.detecting": "Detectando Kernels",
+ "kernels.selectedKernelAndKernelDetectionRunning": "Kernel seleccionado: {0} (tareas de detección de kernel en ejecución)",
+ "learnMoreTooltip": "Más información",
+ "prompt.placeholder.change": "Cambiar el kernel para \"{0}\"",
+ "prompt.placeholder.select": "Seleccionar el kernel para '{0}'",
+ "searchForKernels": "Buscar extensiones de kernel en Marketplace",
+ "select": "Seleccionar el kernel",
+ "selectAnotherKernel": "Seleccionar otro kernel",
+ "selectAnotherKernel.more": "Seleccionar otro kernel...",
+ "selectKernel.placeholder": "Escriba para elegir un origen de kernel",
+ "selectKernelFromExtension": "Seleccionar kernel de {0}"
+ },
+ "vs/workbench/contrib/notebook/browser/viewParts/notebookKernelView": {
+ "notebookActions.selectKernel": "Seleccionar kernel del cuaderno",
+ "notebookActions.selectKernel.args": "Argumentos del kernel del bloc de notas"
+ },
+ "vs/workbench/contrib/notebook/browser/viewParts/notebookViewZones": {
+ "workbench.notebook.developer.addViewZones": "Alternar zonas de vista del cuaderno de notas"
},
- "vs/workbench/contrib/notebook/common/notebookEditorModel": {
- "notebook.staleSaveError": "El contenido del archivo ha cambiado en el disco. ¿Quiere abrir la versión actualizada o sobrescribir el archivo con los cambios?",
- "notebook.staleSaveError.overwrite.": "Sobrescribir",
- "notebook.staleSaveError.revert": "Revertir"
+ "vs/workbench/contrib/notebook/common/notebookEditorInput": {
+ "vetoAutoExtHostRestart": "Un bloc de notas proporcionado por la extensión para '{0}' aún está abierto y, de lo contrario, se cerraría.",
+ "vetoExtHostRestart": "No se pudo guardar un bloc de notas proporcionado por la extensión para '{0}'."
+ },
+ "vs/workbench/contrib/offline/browser/offline.contribution": {
+ "offline": "La red parece estar sin conexión, es posible que algunas características no estén disponibles.",
+ "statusBarOfflineBackground": "Color de fondo de la barra de estado cuando el área de trabajo está sin conexión. La barra de estado se muestra en la parte inferior de la ventana",
+ "statusBarOfflineBorder": "Color del borde de la barra de estado que separa la barra lateral y el editor cuando el área de trabajo está sin conexión. La barra de estado se muestra en la parte inferior de la ventana",
+ "statusBarOfflineForeground": "Color de primer plano de la barra de estado cuando el área de trabajo está sin conexión. La barra de estado se muestra en la parte inferior de la ventana"
},
"vs/workbench/contrib/outline/browser/outline.contribution": {
"filteredTypes.array": "Cuando está habilitado, el contorno muestra símbolos de tipo \"array\".",
@@ -7324,75 +12385,96 @@
"filteredTypes.typeParameter": "Cuando está habilitado, el contorno muestra símbolos de tipo \"typeParameter\".",
"filteredTypes.variable": "Cuando está habilitado, el contorno muestra símbolos de tipo \"variable\".",
"name": "Esquema",
- "outline.problem.colors": "Use colores para los errores y las advertencias.",
- "outline.problems.badges": "Use distintivos para los errores y las advertencias.",
- "outline.showIcons": "Representar elementos del esquema con iconos.",
- "outline.showProblem": "Muestre errores y advertencias en los elementos del esquema.",
+ "outline.initialState": "Controla si los elementos del Esquema están colapsados o expandidos.",
+ "outline.initialState.collapsed": "Contraer todos los elementos.",
+ "outline.initialState.expanded": "Expandir todos los elementos.",
+ "outline.problem.colors": "Use colores para errores y advertencias en los elementos de esquema. Sobrescrito cuando {0} está desactivado.",
+ "outline.problems.badges": "Use distintivos para errores y advertencias en los elementos de esquema. Sobrescrito cuando {0} está desactivado.",
+ "outline.showIcons": "Representar elementos de esquema con iconos.",
+ "outline.showProblem": "Mostrar errores y advertencias en los elementos de esquema. Sobrescrito cuando {0} está desactivado.",
"outlineConfigurationTitle": "Esquema",
"outlineViewIcon": "Vea el icono de la vista Esquema."
},
- "vs/workbench/contrib/outline/browser/outlinePane": {
+ "vs/workbench/contrib/outline/browser/outlineActions": {
"collapse": "Contraer todo",
+ "expand": "Expandir todo",
"filterOnType": "Filtrar por tipo",
"followCur": "Seguir el Cursor",
- "loading": "Cargando símbolos del documento para \"{0}\"...",
- "no-editor": "El editor activo no puede proporcionar información de esquema.",
- "no-symbols": "No se encontró ningún símbolo en el documento \"{0}\".",
"sortByKind": "Ordenar por: Categoría",
"sortByName": "Ordenar por: Nombre",
"sortByPosition": "Ordenar por: posición"
},
- "vs/workbench/contrib/output/browser/logViewer": {
- "logViewerAriaLabel": "Visor de registros"
+ "vs/workbench/contrib/outline/browser/outlinePane": {
+ "loading": "Cargando símbolos del documento para \"{0}\"...",
+ "no-editor": "El editor activo no puede proporcionar información de esquema.",
+ "no-symbols": "No se encontró ningún símbolo en el documento \"{0}\"."
},
"vs/workbench/contrib/output/browser/output.contribution": {
+ "addCompoundLog": "Agregar registro compuesto...",
+ "clearFiltersText": "Borrar texto de filtros",
"clearOutput.label": "Borrar salida",
- "logViewer": "Visor de registros",
+ "exportLogs": "Exportar registros...",
+ "extensionLogs": "Registros de extensión",
+ "importLog": "Importar registro...",
+ "importLogFile": "Importar archivo de registro",
+ "logFile": "Id. del archivo de registro que se va a abrir, por ejemplo \"window\". Actualmente, la mejor manera de obtenerlo es comprobar los comandos \"workbench.action.output.show.\".",
+ "logFiles": "Archivos de registro",
+ "logLevel.label": "Establecer nivel de registro...",
+ "logLevelDefault.label": "Establecer como predeterminado",
"miToggleOutput": "&&Salida",
- "openActiveLogOutputFile": "Abrir el archivo de salida del registro",
- "openLogFile": "Abrir archivo de log...",
+ "nocustumoutput": "No hay salidas personalizadas que quitar.",
+ "openActiveOutputFile": "Abrir salida en el editor",
+ "openActiveOutputFileInNewWindow": "Abrir salida en nueva ventana",
+ "openLogFile": "Abrir registro...",
"output": "Salida",
"output.smartScroll.enabled": "Habilite/desactive la función de desplazamiento inteligente en la vista de salida. El desplazamiento inteligente le permite bloquear el desplazamiento automáticamente al hacer clic en la vista de salida y se desbloquea al hacer clic en la última línea.",
- "outputCleared": "Se ha borrado la salida",
"outputScrollOff": "Desactivar desplazamiento automático",
"outputScrollOn": "Activar desplazamiento automático",
"outputViewIcon": "Vea el icono de la vista de salida.",
+ "removeLog": "Quitar salida...",
+ "saveActiveOutputAs": "Guardar salida como...",
+ "selectOutput": "Seleccionar canal de salida",
"selectlog": "Seleccionar registro",
- "selectlogFile": "Seleccionar el archivo de registro",
+ "selectlogFile": "Seleccionar archivo de registro",
"showLogs": "Mostrar registros...",
- "switchToOutput.label": "Cambiar a salida",
- "toggleAutoScroll": "Alternar desplazamiento automático"
+ "showOutputChannels": "Mostrar canales de salida...",
+ "switchBetweenOutputs.label": "Salida del conmutador",
+ "switchToOutput.label": "Salida del conmutador",
+ "toggleAutoScroll": "Alternar desplazamiento automático",
+ "toggleTraceDescription": "Mostrar u ocultar {0} mensajes en la salida",
+ "userLogs": "Registros de usuario"
+ },
+ "vs/workbench/contrib/output/browser/outputServices": {
+ "saveLog.dialogTitle": "Guardar salida como"
},
"vs/workbench/contrib/output/browser/outputView": {
"channel": "Canal de output para '{0}' ",
- "logChannel": "Registro ({0})",
"output": "Salida",
"output model title": "{0} - Output",
- "outputChannels": "Canales de salida",
- "outputViewAriaLabel": "Panel de salida",
- "outputViewWithInputAriaLabel": "{0}, panel de salida"
+ "outputView.filter.placeholder": "Filtro",
+ "outputViewAriaLabel": "Panel de salida"
},
"vs/workbench/contrib/performance/browser/performance.contribution": {
+ "cycles": "Ciclos del servicio de impresión",
+ "emitter": "Perfiles del emisor de impresión",
+ "insta.trace": "Seguimientos del servicio de impresión",
"show.label": "Rendimiento de inicio"
},
"vs/workbench/contrib/performance/browser/perfviewEditor": {
"name": "Rendimiento de inicio"
},
- "vs/workbench/contrib/performance/electron-sandbox/startupProfiler": {
+ "vs/workbench/contrib/performance/electron-browser/performance.contribution": {
+ "experimental.rendererProfiling": "Cuando está habilitado, los representadores lentos se generan automáticamente."
+ },
+ "vs/workbench/contrib/performance/electron-browser/startupProfiler": {
"prof.detail": "Cree una incidencia y adjunte manualmente los archivos siguientes:\r\n{0}",
"prof.detail.restart": "Se necesita un reinicio final para continuar utilizando '{0}'. De nuevo, gracias por su aportación.",
"prof.message": "Los perfiles se crearon correctamente.",
- "prof.restart": "&&Reiniciar",
+ "prof.restart": "Reiniciar",
"prof.restart.button": "&&Reiniciar",
"prof.restartAndFileIssue": "&&Crear problema y reiniciar",
"prof.thanks": "Gracias por ayudarnos."
},
- "vs/workbench/contrib/preferences/browser/keybindingWidgets": {
- "defineKeybinding.chordsTo": "presión simultánea para",
- "defineKeybinding.existing": "{0} comandos tienen este enlace de teclado",
- "defineKeybinding.initial": "Presione la combinación de teclas deseada y ENTRAR",
- "defineKeybinding.oneExists": "1 comando existente tiene esta combinación de teclas"
- },
"vs/workbench/contrib/preferences/browser/keybindingsEditor": {
"SearchKeybindings.FullTextSearchPlaceholder": "Escribir para buscar en enlaces de teclado",
"SearchKeybindings.KeybindingsSearchPlaceholder": "Claves de grabación. Pulse Escape para salir",
@@ -7409,9 +12491,12 @@
"editKeybindingLabelWithKey": "Cambiar enlace de teclado {0}",
"editWhen": "Cambiar expresión When",
"error": "Error \"{0}\" al editar el enlace de teclado. Abra el archivo \"keybindings.json\" y compruebe si tiene errores.",
+ "extension label": "Extensión ({0})",
+ "foundResults": "{0} resultados",
"keybinding": "Enlace de teclado",
"keybindingsLabel": "Enlaces de teclado",
- "noKeybinding": "No se ha asignado ningún enlace de teclado.",
+ "keyboard shortcuts aria label": "utilice la Barra espaciadora o Entrar para cambiar la combinación de teclas.",
+ "noKeybinding": "No hay teclas asignadas",
"noWhen": "No, cuando hay contexto.",
"recordKeysLabel": "Claves de grabación",
"recording": "Claves de grabación",
@@ -7423,25 +12508,44 @@
"sortByPrecedeneLabel": "Ordenar por precedencia (el más alto primero)",
"source": "ORIGEN",
"title": "{0} ({1})",
- "when": "Cuando",
- "whenContextInputAriaLabel": "Escribir en el contexto. Pulse Entrar para confirmar o Escape para cancelar."
+ "when": "Cuando"
},
"vs/workbench/contrib/preferences/browser/keybindingsEditorContribution": {
"defineKeybinding.kbLayoutErrorMessage": "La distribución del teclado actual no permite reproducir esta combinación de teclas.",
"defineKeybinding.kbLayoutLocalAndUSMessage": "**{0}** para su distribución de teclado actual (**{1}** para EE. UU. estándar).",
- "defineKeybinding.kbLayoutLocalMessage": "**{0}** para su distribución de teclado actual.",
- "defineKeybinding.start": "Definir enlace de teclado"
+ "defineKeybinding.kbLayoutLocalMessage": "**{0}** para su distribución de teclado actual."
},
- "vs/workbench/contrib/preferences/browser/preferences.contribution": {
- "Keyboard Shortcuts": "Métodos abreviados de teclado",
- "clear": "Borrar resultados de la búsqueda",
- "clearHistory": "Borrar historial de búsqueda de métodos abreviados de teclado",
- "filterUntrusted": "Mostrar la configuración del área de trabajo de no confianza",
- "keybindingsEditor": "Editor de enlaces de teclado",
+ "vs/workbench/contrib/preferences/browser/keybindingWidgets": {
+ "defineKeybinding.chordsTo": "presión simultánea para",
+ "defineKeybinding.existing": "{0} comandos tienen este enlace de teclado",
+ "defineKeybinding.initial": "Presione la combinación de teclas deseada y ENTRAR",
+ "defineKeybinding.oneExists": "1 comando existente tiene esta combinación de teclas"
+ },
+ "vs/workbench/contrib/preferences/browser/keyboardLayoutPicker": {
+ "autoDetect": "Detección automática",
+ "configureKeyboardLayout": "Configurar distribución del teclado",
+ "displayLanguage": "Define la distribución del teclado usada en VS Code en el entorno del explorador.",
+ "doc": "Abra VS Code y ejecute \"Desarrollador: inspeccionar asignaciones de claves (JSON)\" desde la paleta de comandos.",
+ "fail.createSettings": "No se puede crear '{0}' ({1}).",
+ "keyboard.chooseLayout": "Cambiar la distribución del teclado",
+ "keyboardLayout": "Diseño: {0}",
+ "layoutPicks": "Distribuciones del teclado ({0})",
+ "pickKeyboardLayout": "Seleccionar distribución del teclado",
+ "status.workbench.keyboardLayout": "Distribución del teclado"
+ },
+ "vs/workbench/contrib/preferences/browser/preferences.contribution": {
+ "clear": "Borrar resultados de la búsqueda",
+ "clearHistory": "Borrar historial de búsqueda de métodos abreviados de teclado",
+ "defineKeybinding.start": "Definir enlace de teclado",
+ "filterUntrusted": "Mostrar la configuración del área de trabajo de no confianza",
+ "keybindingsEditor": "Editor de enlaces de teclado",
+ "keyboardShortcuts": "Métodos abreviados de teclado",
"miOpenOnlineSettings": "&&Configuración de los servicios en línea",
"miOpenSettings": "&&Configuración",
+ "miOpenTelemetrySettings": "&&Configuración de telemetría",
"miPreferences": "&&Preferencias",
- "openCurrentProfileSettingsJson": "Abrir configuración de perfil actual (JSON)",
+ "openAccessibilitySettings": "Abrir configuración de accesibilidad",
+ "openApplicationSettingsJson": "Abrir la configuración de la aplicación (JSON)",
"openDefaultKeybindingsFile": "Abrir métodos abreviados de teclado predeterminados (JSON)",
"openFolderSettings": "Abrir Configuración de carpeta",
"openFolderSettingsFile": "Abrir configuración de carpetas (JSON)",
@@ -7457,6 +12561,7 @@
"openWorkspaceSettings": "Abrir configuración del área de trabajo",
"openWorkspaceSettingsFile": "Abrir configuración del área de trabajo (JSON)",
"preferences": "Preferencias",
+ "preferencesEditor": "Editor de preferencias",
"settings": "Configuración",
"settings.clearResults": "Borrar los resultados de búsqueda de configuración",
"settings.focusFile": "Archivo de configuración de enfoque",
@@ -7466,42 +12571,51 @@
"settings.focusSettingsList": "Lista de ajustes de enfoque",
"settings.focusSettingsTOC": "Enfocar la tabla de contenido de configuración",
"settings.showContextMenu": "Mostrar menú contextual de configuración",
+ "settings.toggleAiSearch": "Alternar búsqueda de configuración de IA",
"settingsEditor2": "Editor de configuración 2",
- "showDefaultKeybindings": "Mostrar enlaces de teclado predeterminados",
+ "showDefaultKeybindings": "Mostrar enlaces de teclado del sistema",
"showExtensionKeybindings": "Mostrar enlaces de teclado de la extensión",
- "showTelemtrySettings": "Configuración de telemetría",
- "showUserKeybindings": "Mostrar enlaces de teclado del usuario"
+ "showUserKeybindings": "Mostrar enlaces de teclado del usuario",
+ "workbench.action.openSettingsJson.description": "Abre el archivo JSON que contiene la configuración actual del perfil de usuario."
},
"vs/workbench/contrib/preferences/browser/preferencesActions": {
"configureLanguageBasedSettings": "Configurar opciones específicas del lenguaje...",
"languageDescriptionConfigured": "({0})",
"pickLanguage": "Seleccionar lenguaje"
},
+ "vs/workbench/contrib/preferences/browser/preferencesEditor": {
+ "FullTextSearchPlaceholder": "Buscar en {0}",
+ "preferencesTabSwitcherBarAriaLabel": "Conmutador de pestañas de preferencias"
+ },
"vs/workbench/contrib/preferences/browser/preferencesIcons": {
"keybindingsAddIcon": "Icono de la acción de agregar en la interfaz de usuario de enlaces de teclado.",
"keybindingsEditIcon": "Icono de la acción de editar en la interfaz de usuario de enlaces de teclado.",
"keybindingsRecordKeysIcon": "Icono de la acción de \"registrar claves\" en la interfaz de usuario de enlaces de teclado.",
"keybindingsSortIcon": "Icono de alternancia de \"ordenar por prioridad\" en la interfaz de usuario de enlaces de teclado.",
+ "preferencesAiResults": "Icono para mostrar los resultados de IA en la interfaz de configuración.",
"preferencesClearInput": "Icono para borrar la entrada en la interfaz de usuario de Configuración y enlaces de teclado.",
"preferencesDiscardIcon": "Icono de la acción de descartar en la interfaz de usuario Configuración.",
"preferencesOpenSettings": "Icono para abrir los comandos de configuración.",
- "settingsAddIcon": "Icono de la acción de agregar en la interfaz de usuario Configuración.",
"settingsEditIcon": "Icono de la acción de edición en la interfaz de usuario Configuración.",
"settingsFilter": "Icono del botón que sugiere filtros para la interfaz de usuario de configuración.",
- "settingsGroupCollapsedIcon": "Icono de una sección contraída en el Editor de configuraciones de JSON dividido.",
- "settingsGroupExpandedIcon": "Icono de una sección expandida en el Editor de configuraciones de JSON dividido.",
"settingsMoreActionIcon": "Icono para la acción de \"más acciones\" en la interfaz de usuario Configuración.",
"settingsRemoveIcon": "Icono de la acción de quitar en la interfaz de usuario Configuración.",
"settingsScopeDropDownIcon": "Icono del botón de lista desplegable de carpeta en el Editor de configuraciones de JSON dividido."
},
"vs/workbench/contrib/preferences/browser/preferencesRenderers": {
+ "allProfileSettingWhileInNonDefaultProfileSetting": "Esta configuración no se puede aplicar porque está configurada para aplicarse en todos los perfiles mediante la configuración {0}. En su lugar, se usará el valor del perfil predeterminado.",
"copyDefaultValue": "Copiar en Configuración",
"defaultProfileSettingWhileNonDefaultActive": "Esta configuración no se puede aplicar mientras esté activo un perfil no predeterminado. Se aplicará cuando el perfil predeterminado esté activo.",
"editTtile": "Editar",
"manage workspace trust": "Administrar confianza en el área de trabajo",
+ "mcp.renderer.openRemoteConfig": "Abrir configuración de MCP de usuario remoto",
+ "mcp.renderer.openUserConfig": "Abrir configuración de MCP de usuario",
+ "mcp.renderer.remoteConfigFound": "Los servidores MCP no deben configurarse en la configuración de usuario remoto. En su lugar, use la configuración de MCP dedicada.",
+ "mcp.renderer.userConfigFound": "Los servidores MCP no deben configurarse en la configuración del usuario. En su lugar, use la configuración de MCP dedicada.",
"replaceDefaultValue": "Reemplazar en Configuración",
"unknown configuration setting": "Parámetro de configuración desconocido",
- "unsupportedApplicationSetting": "Esta configuración tiene un ámbito de aplicación y solo se puede establecer en el archivo de configuración de usuario.",
+ "unsupportLanguageOverrideSetting": "Esta configuración no se puede aplicar porque no está registrada como configuración de invalidación del lenguaje de programación.",
+ "unsupportedApplicationSetting": "Esta configuración tiene un ámbito de aplicación y solo se puede establecer en el archivo de configuración del perfil predeterminado.",
"unsupportedMachineSetting": "Esta configuración solo se puede aplicar en la configuración de usuario en la ventana local o en la configuración remota en la ventana remota.",
"unsupportedPolicySetting": "Esta configuración no se puede aplicar porque está configurada en la directiva del sistema.",
"unsupportedProperty": "Propiedad no admitida",
@@ -7523,13 +12637,20 @@
"filterInput": "Configuración de filtro",
"lastSyncedLabel": "Ultima sincronización: {0}",
"moreThanOneResult": "{0} Configuraciones encontradas",
+ "moreThanOneResultWithAiAvailable": "Se ha encontrado {0} configuraciones. Resultados de IA disponibles",
+ "noAiResults": "No hay resultados de IA disponibles en este momento.",
"noResults": "No se encontró ninguna configuración",
+ "noResultsWithAiAvailable": "No se encontró la configuración. Resultados de IA disponibles",
"oneResult": "1 configuración encontrada",
+ "oneResultWithAiAvailable": "Se ha encontrado 1 configuración. Resultados de IA disponibles",
"settings": "Configuración",
"settings require trust": "Confianza en el área de trabajo",
- "turnOnSyncButton": "Activar sincronización de configuración"
+ "showAiResultsDisabled": "No hay resultados de IA disponibles en este momento...",
+ "showAiResultsEnabled": "Mostrar resultados recomendados por IA",
+ "turnOnSyncButton": "Configuración de copia de seguridad y sincronización"
},
"vs/workbench/contrib/preferences/browser/settingsEditorSettingIndicators": {
+ "advancedLabel": "Avanzado",
"alsoConfiguredElsewhere": "También modificado en otro lugar",
"alsoConfiguredIn": "Modificado también en",
"alsoModifiedInScopes": "La configuración también se ha modificado en los siguientes ámbitos:",
@@ -7538,32 +12659,47 @@
"applicationSettingDescriptionAccessible": "Valor de configuración retenido al cambiar de perfil",
"configuredElsewhere": "Modificado en otro lugar",
"configuredIn": "Modificado en",
- "defaultOverriddenDetails": "Valor de configuración predeterminado invalidado por {0}",
+ "defaultOverriddenDetails": "Valor de configuración predeterminado invalidado por `{0}`",
"defaultOverriddenDetailsAriaLabel": "{0} invalida el valor predeterminado",
"defaultOverriddenLabel": "Valor predeterminado cambiado",
"defaultOverriddenLanguagesList": "Existen valores predeterminados específicos del idioma para {0}",
+ "experimentalLabel": "Experimental",
"extensionSyncIgnoredLabel": "No sincronizado",
"hasDefaultOverridesForLanguages": "Los idiomas siguientes tienen invalidaciones predeterminadas:",
+ "manageWorkspaceTrust": "Administrar confianza en el área de trabajo",
"modifiedInScopeForLanguage": "El ámbito {0} para {1}",
"modifiedInScopeForLanguageMidSentence": "el ámbito {0} para {1}",
"modifiedInScopes": "La configuración se ha modificado en los siguientes ámbitos:",
+ "multipleDefaultOverriddenDetailsAriaLabel": "{0} invalida el valor predeterminado",
+ "multipledefaultOverriddenDetails": "{0} ha establecido un valor predeterminado",
+ "policyDescription": "Esta configuración la administra la organización y su valor real no se puede cambiar.",
+ "policyDescriptionAccessible": "Administrado por la directiva de la organización; valor de configuración no aplicado",
+ "policyFilterLink": "Ver configuración de directiva",
+ "policyLabelText": "Administrado por la organización",
+ "previewLabel": "Versión preliminar",
"remote": "Remoto",
"syncIgnoredAriaLabel": "Configuración omitida durante la sincronización",
"syncIgnoredTitle": "Esta configuración se omite durante la sincronización",
+ "trustLabel": "El valor de configuración solo se puede aplicar en un área de trabajo de confianza.",
"user": "Usuario",
- "workspace": "Área de trabajo"
+ "workspace": "Área de trabajo",
+ "workspaceUntrustedAriaLabel": "Área de trabajo que no es de confianza; valor de configuración no aplicado",
+ "workspaceUntrustedLabel": "Requiere confianza del área de trabajo"
},
"vs/workbench/contrib/preferences/browser/settingsLayout": {
+ "accessibility": "Accesibilidad",
+ "accessibility.signals": "Señales de accesibilidad",
"appearance": "Apariencia",
"application": "Aplicación",
- "audioCues": "Indicaciones de audio",
"breadcrumbs": "Rutas de navegación",
+ "chat": "Chat",
"comments": "Comentarios",
"commonlyUsed": "Más utilizada",
"cursor": "Cursor",
"debug": "Depurar",
"diffEditor": "Editor de diferencias",
"editorManagement": "Administración de editores",
+ "experimental": "Experimental",
"extensions": "Extensiones",
"features": "Características",
"fileExplorer": "Explorador",
@@ -7571,10 +12707,14 @@
"find": "Buscar",
"font": "Fuente",
"formatting": "Formato",
+ "issueReporter": "Notificador de problemas",
"keyboard": "Teclado",
+ "mergeEditor": "Editor de combinación",
"minimap": "Minimapa",
+ "multiDiffEditor": "Editor de diferencias de varios archivos",
"newWindow": "Nueva ventana",
"notebook": "Bloc de notas",
+ "other": "Otro",
"output": "Salida",
"problems": "Problemas",
"proxy": "Proxy",
@@ -7599,51 +12739,67 @@
"zenMode": "Modo zen"
},
"vs/workbench/contrib/preferences/browser/settingsSearchMenu": {
+ "advancedSettingsSearch": "Avanzado",
+ "advancedSettingsSearchTooltip": "Mostrar configuración avanzada",
+ "experimental": "Experimental",
+ "experimentalSettingsSearchTooltip": "Mostrar configuración experimental",
"extSettingsSearch": "Id. de extensión...",
"extSettingsSearchTooltip": "Agregar filtro de id. de extensión",
"featureSettingsSearch": "Característica...",
"featureSettingsSearchTooltip": "Agregar filtro de características",
+ "idSettingsSearch": "Estableciendo id....",
+ "idSettingsSearchTooltip": "Agregar filtro de id. de configuración",
"langSettingsSearch": "Lengua...",
"langSettingsSearchTooltip": "Agregar filtro de id. de idioma",
"modifiedSettingsSearch": "Modificado",
"modifiedSettingsSearchTooltip": "Agregar o quitar filtro de configuración modificado",
"onlineSettingsSearch": "Servicios en línea",
"onlineSettingsSearchTooltip": "Mostrar la configuración de los servicios en línea",
- "policySettingsSearch": "Servicios de directivas",
- "policySettingsSearchTooltip": "Mostrar la configuración de los servicios de directivas",
+ "policySettingsSearch": "Directivas de la organización",
+ "policySettingsSearchTooltip": "Mostrar configuración de directiva de la organización",
+ "previewSettings": "Versión preliminar",
+ "previewSettingsSearchTooltip": "Mostrar configuración de vista previa",
+ "stableSettings": "Estable",
+ "stableSettingsSearchTooltip": "Mostrar configuración estable",
"tagSettingsSearch": "Etiqueta...",
"tagSettingsSearchTooltip": "Agregar un filtro de etiquetas"
},
"vs/workbench/contrib/preferences/browser/settingsTree": {
+ "applyToAllProfiles": "Aplicar configuración a todos los perfiles",
"copySettingAsJSONLabel": "Copiar configuración como JSON",
+ "copySettingAsURLLabel": "Copiar configuración como dirección URL",
"copySettingIdLabel": "Copiar identificador de configuración",
+ "dismiss": "Descartar",
"editInSettingsJson": "Editar en settings.json",
"editLanguageSettingLabel": "Editar la configuración de {0}",
"extensions": "Extensiones",
- "manageWorkspaceTrust": "Administrar confianza en el área de trabajo",
"modified": "La configuración se ha configurado en el ámbito actual.",
"newExtensionsButtonLabel": "Mostrar extensiones coincidentes",
- "policyLabel": "Esta configuración la administra su organización.",
"resetSettingLabel": "Restablecer la configuración",
"settings": "Configuración",
"settings.Default": "predeterminada",
"settings.Modified": "Modificado.",
"settingsContextMenuTitle": "Más acciones... ",
+ "showExtension": "Mostrar extensión",
"stopSyncingSetting": "Sincronizar esta configuración",
- "trustLabel": "Esta configuración sólo puede aplicarse en un área de trabajo de confianza",
- "validationError": "Error de validación.",
- "viewPolicySettings": "Ver configuración de directiva"
+ "validationError": "Error de validación."
},
"vs/workbench/contrib/preferences/browser/settingsWidgets": {
"addItem": "Agregar elemento",
"addPattern": "Agregar patrón",
"cancelButton": "Cancelar",
"editExcludeItem": "Editar elemento de exclusión",
+ "editIncludeItem": "Editar Incluir elemento",
"editItem": "Editar elemento",
+ "excludeIncludeSource": ". Valor predeterminado proporcionado por `{0}`",
"excludePatternHintLabel": "Excluir archivos que coincidan con \"{0}\"",
"excludePatternInputPlaceholder": "Excluir el patrón...",
"excludeSiblingHintLabel": "Excluir archivos que coincidan con \"{0}\", solo cuando haya presente un archivo que coincida con \"{1}\"",
"excludeSiblingInputPlaceholder": "Cuando el patrón está presente...",
+ "includePatternHintLabel": "Incluir archivos que coincidan con \"{0}\"",
+ "includePatternInputPlaceholder": "Incluir patrón...",
+ "includeSiblingHintLabel": "Incluir archivos que coincidan con \"{0}\" solo cuando haya presente un archivo que coincida con \"{1}\"",
+ "includeSiblingInputPlaceholder": "Cuando el patrón está presente...",
"itemInputPlaceholder": "Elemento...",
"listSiblingHintLabel": "Elemento de lista \"{0}\" con elemento relacionado \"${1}\"",
"listSiblingInputPlaceholder": "Elemento relacionado...",
@@ -7651,10 +12807,12 @@
"objectKeyHeader": "Elemento",
"objectKeyInputPlaceholder": "Clave",
"objectPairHintLabel": "La propiedad \"{0}\" está establecida en \"{1}\".",
+ "objectPairHintLabelWithSource": "La propiedad \"{0}\" está establecida en \"{1}\" por \"{2}\".",
"objectValueHeader": "Valor",
"objectValueInputPlaceholder": "Valor",
"okButton": "Aceptar",
"removeExcludeItem": "Quitar elemento de exclusión",
+ "removeIncludeItem": "Quitar Incluir elemento",
"removeItem": "Quitar elemento",
"resetItem": "Restablecer elemento"
},
@@ -7662,10 +12820,15 @@
"groupRowAriaLabel": "{0}, grupo",
"settingsTOC": "Tabla de contenido de configuración"
},
+ "vs/workbench/contrib/preferences/common/preferences": {
+ "advancedIndicatorDescription": "Configuración avanzada: esta opción está pensada para escenarios y configuraciones avanzadas. Modifíquela solo si sabe lo que hace.",
+ "experimentalIndicatorDescription": "Configuración experimental: esta configuración controla una nueva característica que se está desarrollando activamente y que puede ser inestable. Está sujeta a cambios o eliminaciones.",
+ "previewIndicatorDescription": "Configuración de vista previa: esta configuración controla una nueva característica que aún está en refinamiento pero lista para usarse. Los comentarios son bienvenidos."
+ },
"vs/workbench/contrib/preferences/common/preferencesContribution": {
"enableNaturalLanguageSettingsSearch": "Controla si se va a habilitar el modo de búsqueda en lenguaje natural para la configuración. Un servicio en línea de Microsoft proporciona este tipo de búsqueda.",
- "settingsSearchTocBehavior": "Controla el comportamiento de la tabla de contenido del editor de configuración durante las búsquedas.",
- "settingsSearchTocBehavior.filter": "Filtre la tabla de contenido solamente por las categorías que tengan valores coincidentes. Al hacer clic en una categoría, los resultados se filtran por esta.",
+ "settingsSearchTocBehavior": "Controla el comportamiento de la tabla de contenido del editor de Configuración durante las búsquedas. Si se cambia esta configuración en el editor de configuración, la configuración surtirá efecto después de modificar la consulta de búsqueda.",
+ "settingsSearchTocBehavior.filter": "Filtre la tabla de contenido solo por categorías que tengan una configuración coincidente. Al hacer clic en una categoría, se filtrarán los resultados por esa categoría.",
"settingsSearchTocBehavior.hide": "Oculte la tabla de contenido durante la búsqueda.",
"splitSettingsEditorLabel": "Dividir el Editor de configuraciones"
},
@@ -7686,28 +12849,45 @@
"settingsDropdownForeground": "Primer plano de lista desplegable del editor de configuración.",
"settingsDropdownListBorder": "Borde de la lista desplegable del editor de configuración. Esto rodea las opciones y separa las opciones de la descripción.",
"settingsHeaderBorder": "Color del borde del contenedor de encabezados.",
+ "settingsHeaderHoverForeground": "El color de primer plano de un encabezado de sección o título activo.",
"settingsSashBorder": "Color del borde del marco de la vista dividida del Editor de configuraciones.",
"textInputBoxBackground": "Fondo del cuadro de entrada de texto del editor de configuración.",
"textInputBoxBorder": "Borde del cuadro de entrada de texto del editor de configuración.",
"textInputBoxForeground": "Configuración del cuadro de entrada de texto del editor en primer plano."
},
- "vs/workbench/contrib/profiles/common/profilesActions": {
- "confiirmation message": "Esto reemplazará la configuración actual. ¿Está seguro de que quiere continuar?",
- "export profile": "Exportar configuración como perfil...",
- "export profile dialog": "Guardar perfil",
- "export success": "{0}: exportado correctamente.",
- "import profile": "Importar configuración de un perfil...",
- "import profile dialog": "Importar perfil",
- "import profile placeholder": "Proporcione la dirección URL del perfil o seleccione el archivo de perfil que quiere importar.",
- "import profile quick pick title": "Importar la configuración de un perfil",
- "import profile title": "Importar la configuración de un perfil",
- "select from file": "Importar desde el archivo de perfil",
- "select from url": "Importar desde dirección URL"
+ "vs/workbench/contrib/processExplorer/browser/processExplorer.contribution": {
+ "miOpenProcessExplorerer": "Abrir &&explorador de procesos",
+ "openProcessExplorer": "Abrir Explorador de procesos",
+ "promptOpenWith.processExplorer.displayName": "Explorador de procesos"
+ },
+ "vs/workbench/contrib/processExplorer/browser/processExplorer.web.contribution": {
+ "processExplorer": "Explorador de procesos"
+ },
+ "vs/workbench/contrib/processExplorer/browser/processExplorerControl": {
+ "copy": "Copiar",
+ "copyAll": "Copiar todo",
+ "debug": "Depurar",
+ "forceKillProcess": "Forzar la terminación del proceso",
+ "killProcess": "Terminar proceso",
+ "processCpu": "CPU (%)",
+ "processExplorer": "Explorador de procesos",
+ "processMemory": "Memoria (MB)",
+ "processName": "Nombre del proceso",
+ "processPid": "PID"
+ },
+ "vs/workbench/contrib/processExplorer/browser/processExplorerEditorInput": {
+ "processExplorerEditorLabelIcon": "Icono de la etiqueta del editor del explorador de procesos.",
+ "processExplorerInputName": "Explorador de procesos"
+ },
+ "vs/workbench/contrib/processExplorer/electron-browser/processExplorer.contribution": {
+ "processExplorer": "Explorador de procesos"
},
"vs/workbench/contrib/quickaccess/browser/commandsQuickAccess": {
"clearButtonLabel": "&&Borrar",
"clearCommandHistory": "Borrar historial de comandos",
"commandWithCategory": "{0}: {1}",
+ "commandsQuickAccess.askInChat": "Preguntar en el chat: {0}",
+ "commandsQuickAccess.configureAskInChatSetting": "Configurar la visibilidad",
"configure keybinding": "Configurar el enlace de teclado",
"confirmClearDetail": "Esta acción es irreversible.",
"confirmClearMessage": "¿Desea borrar el historial de los comandos abiertos recientemente?",
@@ -7724,13 +12904,13 @@
"miGotoLine": "Ir a la &&línea o columna...",
"miOpenView": "&&Abrir vista...",
"miShowAllCommands": "Mostrar todos los comandos",
+ "more": "Más",
"viewQuickAccess": "Abrir vista",
"viewQuickAccessPlaceholder": "Escriba el nombre de una vista, canal de salida o terminal para abrirlo."
},
"vs/workbench/contrib/quickaccess/browser/viewQuickAccess": {
"channels": "Salida",
"debugConsoles": "Consola de depuración",
- "logChannel": "Registro ({0})",
"noViewResults": "No hay ninguna vista coincidente.",
"openView": "Abrir vista",
"panels": "Panel",
@@ -7746,19 +12926,13 @@
"relaunchSettingMessage": "Ha cambiado un ajuste que requiere un reinicio para ser efectivo.",
"relaunchSettingMessageWeb": "Un valor ha cambiado y se requiere una recarga para que surta efecto.",
"restart": "&&Reiniciar",
+ "restartExtensionHost.reason": "Cambiando carpetas del área de trabajo",
"restartWeb": "&&Recargar"
},
"vs/workbench/contrib/remote/browser/explorerViewItems": {
- "remote.explorer.switch": "Cambiar a remoto",
- "remotes": "Cambiar a remoto"
+ "switchRemote.label": "Cambiar a remoto"
},
"vs/workbench/contrib/remote/browser/remote": {
- "RemoteHelpInformationExtPoint": "Contribuye con información de ayuda para Remote",
- "RemoteHelpInformationExtPoint.documentation": "La dirección URL, o un comando que la devuelve, a la página de documentación del proyecto",
- "RemoteHelpInformationExtPoint.feedback": "La dirección URL, o un comando que la devuelve, al notificador de comentarios del proyecto",
- "RemoteHelpInformationExtPoint.getStarted": "La dirección URL, o un comando que la devuelve, a la página de introducción del proyecto",
- "RemoteHelpInformationExtPoint.issues": "La dirección URL, o un comando que la devuelve, a la lista de problemas del proyecto",
- "cancel": "Cancelar",
"connectionLost": "Conexión perdida",
"pickRemoteExtension": "Seleccione una dirección URL para abrir",
"reconnectNow": "Volver a conectar ahora",
@@ -7767,25 +12941,39 @@
"reconnectionWaitMany": "Intentando volver a conectar en {0} segundos...",
"reconnectionWaitOne": "Intentando volver a conectar en {0} segundo...",
"reloadWindow": "Recargar ventana",
+ "reloadWindow.dialog": "&&Volver a cargar ventana",
"remote.explorer": "Explorador remoto",
"remote.help": "Ayuda y comentarios",
"remote.help.documentation": "Leer documentación",
- "remote.help.feedback": "Proporcionar comentarios",
"remote.help.getStarted": "Iniciar",
"remote.help.issues": "Revisar problemas",
"remote.help.report": "Notificar problema",
"remotehelp": "Ayuda remota"
},
+ "vs/workbench/contrib/remote/browser/remoteConnectionHealth": {
+ "allow": "&&Permitir",
+ "learnMore": "&&Más información",
+ "remember": "No volver a mostrar",
+ "unsupportedGlibcBannerLearnMore": "Más información",
+ "unsupportedGlibcWarning": "Está a punto de conectarse a una versión del sistema operativo que no es compatible con {0}.",
+ "unsupportedGlibcWarning.banner": "Está conectado a una versión del sistema operativo que no es compatible con {0}."
+ },
"vs/workbench/contrib/remote/browser/remoteExplorer": {
"1forwardedPort": "1 puerto reenviado",
"nForwardedPorts": "{0} puertos reenviados",
+ "noRemoteNoPorts": "No hay puertos reenviados. Reenvíe un puerto para acceder a los servicios que se ejecutan localmente a través de Internet.\r\n[Reenviar un puerto]({0})",
"ports": "Puertos",
+ "remote.autoForwardPortsSource.fallback": "Se han reenviado automáticamente más de 20 puertos. El reenvío automático de puertos basado en \"proceso\" se ha cambiado a \"híbrido\" en la configuración. Es posible que ya no se detecten algunos puertos.",
+ "remote.autoForwardPortsSource.fallback.showPortSourceSetting": "Mostrar configuración",
+ "remote.autoForwardPortsSource.fallback.switchBack": "Deshacer",
"remote.forwardedPorts.statusbarTextNone": "No se ha reenviado ningún puerto",
"remote.forwardedPorts.statusbarTooltip": "Puertos reenviados: {0}",
- "remote.tunnelsView.automaticForward": "La aplicación que se está ejecutando en el puerto {0} está disponible.",
+ "remote.tunnelsView.automaticForward": "La aplicación {0} que se ejecuta en el puerto {1} está disponible. ",
"remote.tunnelsView.elevationButton": "Usar el puerto {0} como sudo...",
"remote.tunnelsView.elevationMessage": "Debe ejecutarse como superusuario para usar el puerto {0} de forma local. ",
- "remote.tunnelsView.notificationLink2": "[Ver todos los puertos reenviados] ({0})",
+ "remote.tunnelsView.makePublic": "Convertir en público",
+ "remote.tunnelsView.notificationLink2": "[Ver todos los puertos reenviados]({0})",
+ "remoteNoPorts": "No hay puertos reenviados. Reenvíe un puerto para acceder a los servicios que se ejecutan localmente.\r\n[Reenviar un puerto]({0})",
"status.forwardedPorts": "Puertos reenviados"
},
"vs/workbench/contrib/remote/browser/remoteIcons": {
@@ -7814,17 +13002,29 @@
"host.open": "Abriendo remoto...",
"host.reconnecting": "Reconectando con {0}...",
"host.tooltip": "Editando en {0}",
- "installRemotes": "Instalar extensiones remotas adicionales...",
"miCloseRemote": "Cerrar conexión re&&mota",
+ "networkStatusHighLatencyTooltip": "Parece que la red tiene una latencia alta ({0} ms última vez, {1} ms promedio); algunas características pueden responder con lentitud.",
+ "networkStatusOfflineTooltip": "La red parece estar sin conexión, es posible que algunas características no estén disponibles.",
"noHost.tooltip": "Abrir una ventana remota",
"reloadWindow": "Recargar ventana",
"remote.category": "Remoto",
"remote.close": "Cerrar conexión remota",
"remote.install": "Instalar extensiones de desarrollo remoto",
+ "remote.showExtensionRecommendations": "Cuando esta opción está habilitada, las recomendaciones de extensiones remotas se mostrarán en el menú Indicador remoto.",
"remote.showMenu": "Mostrar menú remoto",
+ "remote.startActions.help": "Más información",
+ "remote.startActions.install": "Instalar",
+ "remote.startActions.installingExtension": "Instalando extensión... ",
+ "remoteActions": "Seleccionar una opción para abrir una ventana remota",
"remoteHost": "Host remoto",
+ "retry": "Reintentar",
+ "unknownSetupError": "Error al configurar la dirección URL {0}. ¿Quiere volver a intentarlo?",
"workspace.tooltip": "Editando en {0}",
- "workspace.tooltip2": "Algunas [características no están disponibles] ({0}) para los recursos que se encuentran en un sistema de archivos virtual."
+ "workspace.tooltip2": "Algunas [características no están disponibles]({0}) para los recursos que se encuentran en un sistema de archivos virtual."
+ },
+ "vs/workbench/contrib/remote/browser/remoteStartEntry": {
+ "remote.category": "Remoto",
+ "remote.showWebStartEntryActions": "Mostrar entrada de inicio remoto para web"
},
"vs/workbench/contrib/remote/browser/tunnelFactory": {
"tunnelPrivacy.private": "Privado",
@@ -7847,6 +13047,7 @@
"remote.tunnel.copyAddressPlaceholdter": "Elegir un puerto de reenvio",
"remote.tunnel.forward": "Reenviar un puerto",
"remote.tunnel.forwardError": "No se puede reenviar {0}:{1}. Es posible que el host no esté disponible o que el puerto remoto ya se haya reenviado.",
+ "remote.tunnel.forwardErrorProvided": "No se puede reenviar {0}:{1}. {2}",
"remote.tunnel.forwardItem": "Puerto delantero",
"remote.tunnel.forwardPrompt": "Número de puerto o dirección (p. ej. 3000 o 10.10.10.10:2000).",
"remote.tunnel.label": "Establecer etiqueta de puerto",
@@ -7869,10 +13070,10 @@
"remote.tunnelsView.labelPlaceholder": "Etiqueta de puerto",
"remote.tunnelsView.portNumberToHigh": "El número de puerto debe estar entre ≥ 0 y < {0}.",
"remote.tunnelsView.portNumberValid": "El puerto reenviado debería ser un número o host:puerto.",
- "tunnel.addressColumn.label": "Dirección local",
- "tunnel.addressColumn.tooltip": "Dirección en la que el puerto reenviado está disponible de forma local.",
+ "remote.tunnelsView.portShouldBeNumber": "El puerto local debería ser un número.",
+ "tunnel.addressColumn.label": "Dirección reenviada",
+ "tunnel.addressColumn.tooltip": "Dirección en la que el puerto reenviado está disponible.",
"tunnel.focusContext": "Indica si la vista Puertos tiene el foco.",
- "tunnel.forwardedPortsViewEnabled": "Indica si la vista Puertos está habilitada.",
"tunnel.iconColumn.notRunning": "No hay ningún proceso en ejecución.",
"tunnel.iconColumn.running": "El puerto tiene un proceso en ejecución.",
"tunnel.originColumn.label": "Origen",
@@ -7891,17 +13092,21 @@
"tunnelView.runningProcess.inacessable": "Información del proceso no disponible"
},
"vs/workbench/contrib/remote/common/remote.contribution": {
- "invalidWorkspaceCancel": "&&Cancelar",
- "invalidWorkspaceDetail": "El área de trabajo no existe. Seleccione otra área de trabajo para abrirla.",
+ "invalidWorkspaceDetail": "Seleccione otra área de trabajo para abrirla.",
"invalidWorkspaceMessage": "El área de trabajo no existe",
"invalidWorkspacePrimary": "&&Abrir área de trabajo...",
"pauseSocketWriting": "Conexión: pausar escritura de socket",
"remote": "Remoto",
- "remote.autoForwardPorts": "Cuando se habilita, se detectan los nuevos procesos en ejecución y se reenvían automáticamente los puertos en los que atienden. Si deshabilita esta configuración, no impedirá que se reenvíen todos los puertos. Aunque esté deshabilitada, las extensiones aún podrán hacer que se reenvíen los puertos y, al abrir algunas direcciones URL, esto provocará el reenvío de puertos.",
- "remote.autoForwardPortsSource": "Establece el origen desde el que se reenvían los puertos de forma automática cuando {0} es true. En los equipos remotos con Windows y Mac, la opción de \"proceso\" no tiene ningún efecto y se usa \"salida\". Para que surta efecto, es necesario recargar.",
+ "remote.autoForwardPortFallback": "El número de puertos reenviados automáticamente que desencadenarán el cambio de \"proceso\" a \"híbrido\" al reenviar automáticamente puertos y \"remote.autoForwardPortsSource\" está establecido en \"proceso\" de forma predeterminada. Establézcalo en '0' para deshabilitar la reserva. Cuando \"remote.autoForwardPortsFallback\" no se ha configurado, pero \"remote.autoForwardPortsSource\", \"remote.autoForwardPortsFallback\" se tratará como si estuviera establecido en \"0\".",
+ "remote.autoForwardPorts": "Cuando se habilita, se detectan los nuevos procesos en ejecución y se reenvían automáticamente los puertos en los que atienden. Si deshabilita esta configuración, no impedirá que se reenvíen todos los puertos. Aunque esté deshabilitada, las extensiones aún podrán hacer que se reenvíen los puertos y, al abrir algunas direcciones URL, esto provocará el reenvío de puertos. Consulte también {0}.",
+ "remote.autoForwardPortsSource": "Establece el origen desde el que se reenvían automáticamente los puertos cuando {0} es verdadero. Cuando {0} es false, {1} se usará para buscar información sobre los puertos que ya se han reenviado. En los equipos remotos con Windows y macOS, la opciones de \"proceso\" e \"híbrido\" no tiene ningún efecto y se usa \"salida\".",
+ "remote.autoForwardPortsSource.hybrid": "Los puertos se reenviarán automáticamente cuando se detecten al leer la salida de depuración y del terminal. No todos los procesos que usan puertos se imprimirán en la consola integrada de depuración o del terminal, por lo que faltarán algunos puertos. Los puertos constarán como \"no reenviados\" mientras esperan a que finalicen los procesos que escuchan en ese puerto.",
"remote.autoForwardPortsSource.output": "Los puertos se reenviarán automáticamente cuando se detecten al leer la salida de depuración y del terminal. No todos los procesos que usan puertos se imprimirán en la consola integrada de depuración o del terminal, por lo que faltarán algunos puertos. No se anulará el reenvío de los puertos reenviados en función de la salida hasta que se realice una recarga o hasta que el usuario cierre el puerto en la vista Puertos.",
"remote.autoForwardPortsSource.process": "Los puertos se reenviarán automáticamente cuando se detecten al inspeccionar los procesos que se hayan iniciado e incluyan un puerto.",
+ "remote.defaultExtensionsIfInstalledLocally.invalidFormat": "El identificador de extensión debe tener el formato \"publisher.name\".",
+ "remote.defaultExtensionsIfInstalledLocally.markdownDescription": "Lista de extensiones que se instalarán al conectarse a un remoto cuando ya estén instaladas localmente.",
"remote.extensionKind": "Reemplace el tipo de extensión. Las extensiones \"ui\"' se instalan y ejecutan en el equipo local, mientras que las extensiones \"workspace\" se ejecutan en el espacio remoto. Al invalidar el tipo predeterminado de una extensión mediante esta configuración, debe especificar si esa extensión debe instalarse y habilitarse localmente o remotamente.",
+ "remote.forwardOnClick": "Controla si las direcciones URL locales con un puerto se reenviarán cuando se abran desde el terminal y la consola de depuración.",
"remote.localPortHost": "Especifica el nombre de host local que se usará para el reenvío de puertos.",
"remote.portsAttributes": "Establezca las propiedades que se aplican cuando se reenvía un número de puerto específico. Por ejemplo:\r\n\r\n```\r\n\"3000\": {\r\n \"label\": \"Application\"\r\n},\r\n\"40000-55000\": {\r\n \"onAutoForward\": \"ignore\"\r\n},\r\n\".+\\\\/server.js\": {\r\n \"onAutoForward\": \"openPreview\"\r\n}\r\n```",
"remote.portsAttributes.defaults": "Establezca las propiedades predeterminadas que se aplican a todos los puertos que no obtienen propiedades de la configuración {0}. Por ejemplo:\r\n\r\n```\r\n{\r\n \"onAutoForward\": \"ignore\"\r\n}\r\n```",
@@ -7920,41 +13125,125 @@
"remote.portsAttributes.requireLocalPort": "Cuando el valor es true, se muestra un cuadro de diálogo modal si el puerto local elegido no se usa para reenvío.",
"remote.portsAttributes.silent": "No muestra ninguna notificación y no realiza ninguna acción cuando se reenvía el puerto de forma automática.",
"remote.restoreForwardedPorts": "Restaura los puertos reenviados en un área de trabajo.",
- "remoteExtensionLog": "Servidor remoto",
- "remotePtyHostLog": "Host Pty remoto",
"triggerReconnect": "Conexión: desencadenar reconexión",
"ui": "Tipo de extensión de interfaz de usuario. En una ventana remota, estas extensiones solo están habilitadas cuando están disponibles en el equipo local.",
"workspace": "Tipo de extensión de área de trabajo. En una ventana remota, estas extensiones solo están habilitadas cuando están disponibles en el espacio remoto."
},
- "vs/workbench/contrib/remote/electron-sandbox/remote.contribution": {
- "remote": "Remota",
- "remote.downloadExtensionsLocally": "Cuando las extensiones habilitadas se descargan localmente e instalan en el control remoto."
+ "vs/workbench/contrib/remote/electron-browser/remote.contribution": {
+ "remote": "Remoto",
+ "remote.actions.closeUnusedPorts": "Cerrar puertos reenviados no utilizados",
+ "remote.category": "Remoto",
+ "remote.downloadExtensionsLocally": "Cuando las extensiones habilitadas se descargan localmente e instalan en el control remoto.",
+ "wslFeatureInstalled": "Si la plataforma tiene instalada la característica WSL"
+ },
+ "vs/workbench/contrib/remoteCodingAgents/browser/remoteCodingAgents.contribution": {
+ "remoteCodingAgentsExtPoint": "Aporta integraciones de agentes de codificación remota al widget de chat.",
+ "remoteCodingAgentsExtPoint.command": "Identificador del comando que se ejecutará. El comando se debe declarar en la sección \"comandos\".",
+ "remoteCodingAgentsExtPoint.description": "Descripción del agente remoto para su uso en menús e información sobre herramientas.",
+ "remoteCodingAgentsExtPoint.displayName": "Un nombre fácil de usar para este elemento que se usa para mostrarse en los menús.",
+ "remoteCodingAgentsExtPoint.followUpRegex": "La última aparición del patrón en una conversación de chat existente se envía a la extensión colaboradora para facilitar las respuestas de seguimiento.",
+ "remoteCodingAgentsExtPoint.id": "Identificador único de este elemento.",
+ "remoteCodingAgentsExtPoint.when": "Condición que se debe cumplir para mostrar este elemento."
+ },
+ "vs/workbench/contrib/remoteTunnel/electron-browser/remoteTunnel.contribution": {
+ "accountPreference.placeholder": "Iniciar sesión en una cuenta para habilitar el acceso remoto",
+ "action.copyToClipboard": "Copiar Vínculo con exploradores al Portapapeles",
+ "action.doNotShowAgain": "No volver a mostrar",
+ "action.showExtension": "Mostrar extensión",
+ "enable": "&&Habilitar",
+ "initialize.progress.title": "[Buscando túnel remoto](comando:{0})",
+ "manage.placeholder": "Seleccione un comando para invocar",
+ "manage.showLog": "Mostrar registro",
+ "manage.title.attached": "Acceso a túnel remoto habilitado para {0} (iniciado externamente)",
+ "manage.title.off": "Acceso a túnel remoto no habilitado",
+ "manage.title.orunning": "Acceso a túnel remoto habilitado para {0}",
+ "manage.tunnelName": "Cambiar nombre de túnel",
+ "others": "Otros",
+ "progress.turnOn.failed": "No se puede activar el acceso al túnel remoto. Compruebe el registro de servicio de túnel remoto para obtener más detalles.",
+ "progress.turnOn.final": "Ahora puedes acceder a esta máquina desde cualquier lugar a través del túnel seguro [{0}](comando:{4}). Para conectarte a través de un equipo diferente, usa el vínculo [{1}]({2}) generado o usa la extensión [{6}]({7}) en el escritorio o la web. Puedes [configurar](comando:{3}) o [desactivar](comando:{5}) este acceso a través del menú cuentas de VS Code.",
+ "recommend.remoteExtension": "El túnel \"{0}\" está disponible para el acceso remoto. La extensión {1} se puede usar para conectarse a él.",
+ "remoteTunnel.actions.configure": "Configurar nombre de túnel...",
+ "remoteTunnel.actions.copyToClipboard": "Copiar EL URI del explorador en el Portapapeles",
+ "remoteTunnel.actions.learnMore": "Introducción a Tunnel",
+ "remoteTunnel.actions.manage.connecting": "El acceso a túnel remoto se está conectando",
+ "remoteTunnel.actions.manage.on.v2": "El acceso a túnel remoto está activado",
+ "remoteTunnel.actions.showLog": "Mostrar registro de servicio de túnel remoto",
+ "remoteTunnel.actions.turnOff": "Desactivar el acceso a túnel remoto...",
+ "remoteTunnel.actions.turnOn": "Activar el acceso a túnel remoto...",
+ "remoteTunnel.category": "Remoto Tunnels",
+ "remoteTunnel.serviceInstallFailed": "Error en la instalación como servicio. Hemos vuelto a ejecutar el túnel para esta sesión. Consulte el [registro de errores](command:{0}) para obtener más detalles.",
+ "remoteTunnel.turnOff.confirm": "¿Desea desactivar el acceso a túnel remoto?",
+ "remoteTunnel.turnOffAttached.confirm": "¿Desea desactivar el acceso a túnel remoto? Esto también detendrá el servicio que se inició externamente.",
+ "remoteTunnelAccess.machineName": "Nombre con el que se registra el acceso al túnel remoto. Si no se establece, se usa el nombre de host.",
+ "remoteTunnelAccess.machineNameRegex": "El nombre solo debe constar de letras, números, guiones bajos y guiones. No debe comenzar con un guión.",
+ "remoteTunnelAccess.preventSleep": "Impedir que el equipo entre en modo suspensión cuando el acceso al túnel remoto está activado.",
+ "sign in using account": "Iniciar sesión con {0}",
+ "signed in": "Sesión iniciada",
+ "startTunnel.progress.title": "[Iniciando túnel remoto](command:{0})",
+ "tunnel.enable.placeholder": "Seleccione cómo desea habilitar el acceso",
+ "tunnel.enable.service": "Instalar como servicio",
+ "tunnel.enable.service.description": "Ejecutar cuando inicie sesión",
+ "tunnel.enable.session": "Activar para esta sesión",
+ "tunnel.enable.session.description": "Ejecutar cuando {0} esté abierto",
+ "tunnel.preview": "Los túneles remotos están actualmente en versión preliminar. Informe de cualquier problema con el comando \"Ayuda: notificar problema\"."
+ },
+ "vs/workbench/contrib/replNotebook/browser/repl.contribution": {
+ "repl.execute": "Ejecutar entrada REPL",
+ "repl.focusLastReplOutput": "Enfocar la Ejecución de REPL más reciente",
+ "repl.input.focus": "Editor de entrada de foco"
+ },
+ "vs/workbench/contrib/replNotebook/browser/replEditor": {
+ "replEditorInput": "Entrada REPL"
+ },
+ "vs/workbench/contrib/replNotebook/browser/replEditorAccessibilityHelp": {
+ "replEditor.accessibilityView": "Ejecute el comando{0} Abrir vista de accesibilidad mientras navega por el historial para obtener una vista accesible de la salida del elemento.",
+ "replEditor.autoFocusRepl": "La configuración \"accessibility.replEditor.autoFocusReplExecution\" controla si el foco se moverá automáticamente a REPL después de ejecutar el código.",
+ "replEditor.cellNavigation": "El comando{0} Salir de edición moverá el foco al contenedor de celdas, donde las flechas arriba y abajo también moverán el foco entre las celdas del historial.",
+ "replEditor.configReadExecution": "La configuración \"accessibility.replEditor.readLastExecutionOutput\" controla si la salida se leerá automáticamente cuando se complete la ejecución.",
+ "replEditor.execute": "El comando Ejecutar{0} evaluará la expresión en el cuadro de entrada.",
+ "replEditor.focusCellEditor": "El comando{0} Editar celda moverá el foco al editor de solo lectura para la entrada de la celda.",
+ "replEditor.focusInOutput": "El comando de Salida de foco{0} establecerá el foco en la salida cuando se centre en un elemento ejecutado previamente.",
+ "replEditor.focusLastItemAdded": "El comando{0} Enfocar último ejecutado moverá el foco al último elemento ejecutado en el historial de REPL.",
+ "replEditor.focusReplInput": "El comando{0} Editor de entrada de foco devolverá el foco a este editor.",
+ "replEditor.focusReplInputFromHistory": "El comando de Editor de entrada de foco{0} moverá el foco al cuadro de entrada REPL.",
+ "replEditor.historyOverview": "Está en un historial de REPL, que es una lista de celdas que se han ejecutado en REPL. Cada celda tiene una entrada, una salida y el contenedor de celdas.",
+ "replEditor.inputAccessibilityView": "Al ejecutar el comando{0} Abrir vista de accesibilidad desde este cuadro de entrada, la salida de la última ejecución se mostrará en la vista de accesibilidad.",
+ "replEditor.inputOverview": "Se encuentra en un cuadro de Entrada del editor de REPL que aceptará el código que se va a ejecutar en REPL."
+ },
+ "vs/workbench/contrib/replNotebook/browser/replEditorInput": {
+ "replEditorLabelIcon": "Icono de la etiqueta del editor REPL."
},
"vs/workbench/contrib/sash/browser/sash.contribution": {
"sashHoverDelay": "Controla el retraso, en milisegundos, en la obtención de comentarios mediante movimiento del mouse del área de arrastre entre vistas o editores.",
"sashSize": "Controla el tamaño del área de comentarios en píxeles del área de arrastre entre las vistas/editores. Establézcalo en un valor mayor si cree que es difícil cambiar el tamaño de las vistas con el mouse."
},
"vs/workbench/contrib/scm/browser/activity": {
+ "scmActiveResourceHasChanges": "Si el recurso activo tiene cambios",
+ "scmActiveResourceRepository": "Repositorio del recurso activo",
"scmPendingChangesBadge": "{0} cambios pendientes",
- "status.scm": "Control de código fuente"
+ "status.scm": "Control de código fuente",
+ "status.scm.provider": "Proveedor de control del código fuente"
},
- "vs/workbench/contrib/scm/browser/dirtydiffDecorator": {
- "change": "{0} de {1} cambio",
- "changes": "{0} de {1} cambios",
- "editorGutterAddedBackground": "Color de fondo del medianil del editor para las líneas agregadas.",
- "editorGutterDeletedBackground": "Color de fondo del medianil del editor para las líneas eliminadas.",
- "editorGutterModifiedBackground": "Color de fondo del medianil del editor para las líneas modificadas.",
+ "vs/workbench/contrib/scm/browser/menus": {
+ "miShare": "Compartir"
+ },
+ "vs/workbench/contrib/scm/browser/quickDiffDecorator": {
+ "diffAdded": "Líneas agregadas",
+ "diffDeleted": "Líneas quitadas",
+ "diffModified": "Líneas cambiadas"
+ },
+ "vs/workbench/contrib/scm/browser/quickDiffWidget": {
+ "change": "{0}: {1} de {2} cambio",
+ "changes": "{0}: {1} de {2} cambios",
"label.close": "Cerrar",
"miGotoNextChange": "&&Cambio siguiente",
- "miGotoPreviousChange": "Cambio &&anterior",
- "minimapGutterAddedBackground": "Color de fondo del canal del minimapa para las líneas que se agregan.",
- "minimapGutterDeletedBackground": "Color de fondo del medianil del minimapa para las líneas que se eliminan.",
- "minimapGutterModifiedBackground": "Color de fondo del canal del minimapa para las líneas que se modifican.",
+ "miGotoPreviousChange": "&&Cambio anterior",
"move to next change": "Ir al cambio siguiente",
"move to previous change": "Ir al cambio anterior",
- "overviewRulerAddedForeground": "Color de marcador de regla de información general para contenido agregado.",
- "overviewRulerDeletedForeground": "Color de marcador de regla de información general para contenido eliminado.",
- "overviewRulerModifiedForeground": "Color de marcador de regla de información general para contenido modificado.",
+ "multiChange": "{0} de {1} cambio",
+ "multiChanges": "{0} de {1} cambios",
+ "quickDiff.base.switch": "Cambiar de base de diferencias rápidas",
+ "remotes": "Cambiar de base de diferencias rápidas",
"show next change": "Mostrar el cambio siguiente",
"show previous change": "Mostrar el cambio anterior"
},
@@ -7970,16 +13259,22 @@
"diffGutterWidth": "Controla el ancho (px) de las decoraciones de diferencias en el medianil (elementos agregados y modificados).",
"inputFontFamily": "Controla la fuente del mensaje de entrada. Utilice \"default\" para la familia de fuentes de la interfaz de usuario del área de trabajo, \"editor\" para el valor de \"#editor.fontFamily#\" o una familia de fuentes personalizada.",
"inputFontSize": "Controla el tamaño de fuente del mensaje de entrada en píxeles.",
+ "inputMaxLines": "Controla el número máximo de líneas a las que crecerá automáticamente la entrada.",
+ "inputMinLines": "Controla el número mínimo de líneas desde las que crecerá automáticamente la entrada.",
"manageWorkspaceTrustAction": "Administrar la confianza del área de trabajo",
"miViewSCM": "&&Control de código fuente",
+ "no history items": "El proveedor de control de código fuente seleccionado no tiene ningún elemento del historial de control de código fuente.",
"no open repo": "No hay proveedores de control de código fuente registrados.",
"no open repo in an untrusted workspace": "Ninguno de los proveedores de control de código fuente registrados funciona en modo restringido.",
- "open in terminal": "Abrir en terminal",
- "providersVisible": "Controla cuántos repositorios están visibles en la sección Repositorios de control de código fuente. Establézcalo en \"0\" para poder cambiar manualmente el tamaño de la vista.",
+ "open in external terminal": "Abrir en terminal externo",
+ "open in integrated terminal": "Abrir en terminal integrado",
+ "providersVisible": "Controla cuántos repositorios están visibles en la sección Repositorios de control de código fuente. Establézcalo en 0 para poder cambiar manualmente el tamaño de la vista.",
+ "quickDiffDecoration": "Decoraciones de diferencias",
"repositoriesSortOrder": "Controla el criterio de ordenación de los repositorios en la vista de repositorios de control de código fuente.",
"scm accept": "Control de código fuente: aceptar entrada",
"scm view next commit": "Control de código fuente: ver confirmación siguiente",
"scm view previous commit": "Control de código fuente: ver confirmación anterior",
+ "scm.compactFolders": "Controla si la vista de control de código fuente debe representar carpetas de forma compacta. En este tipo de formulario, las carpetas secundarias individuales se comprimirán en un elemento de árbol combinado.",
"scm.countBadge": "Controla la notificación de recuento del icono de control de código fuente en la barra de actividades.",
"scm.countBadge.all": "Muestra la suma de todas las notificaciones de recuento de proveedores de control de código fuente.",
"scm.countBadge.focused": "Muestre la insignia de recuento del proveedor de control de código fuente enfocado.",
@@ -8005,32 +13300,138 @@
"scm.diffDecorationsIgnoreTrimWhitespace.false": "No omita los espacios en blanco iniciales y finales.",
"scm.diffDecorationsIgnoreTrimWhitespace.inherit": "Heredar de 'diffEditor.ignoreTrimWhitespace'.",
"scm.diffDecorationsIgnoreTrimWhitespace.true": "Omita los espacios en blanco iniciales y finales.",
- "scm.providerCountBadge": "Controla la insignia de recuento de proveedores de control de código fuente. Estos proveedores solo se muestran cuando hay más de un proveedor.",
+ "scm.graph.badges": "Controla qué distintivos se muestran en la vista Gráfico de control de código fuente. Los distintivos se muestran en el lado derecho del gráfico que indica los nombres de los grupos de elementos del historial.",
+ "scm.graph.badges.all": "Muestra distintivos de todos los grupos de elementos del historial en la vista Gráfico de control de código fuente.",
+ "scm.graph.badges.filter": "Mostrar solo los distintivos de los grupos de elementos de historial usados como filtro en la vista Gráfico de control de código fuente.",
+ "scm.graph.pageOnScroll": "Controla si la vista Gráfico de control de código fuente cargará la siguiente página de elementos al desplazarse hasta el final de la lista.",
+ "scm.graph.pageSize": "El número de elementos que se mostrarán en la vista Gráfico de control de código fuente de forma predeterminada y al cargar más elementos.",
+ "scm.graph.showIncomingChanges": "Controla si se muestran los cambios entrantes en la vista de gráfico de Control de código fuente.",
+ "scm.graph.showOutgoingChanges": "Controla si se muestran los cambios salientes en la vista de gráfico de Control de código fuente.",
+ "scm.providerCountBadge": "Controla los distintivos de recuento en los encabezados del proveedor de control de código fuente. Estos encabezados aparecen en la vista Control de código fuente cuando hay más de un proveedor o cuando la configuración de {0} está habilitada y en la vista Repositorios de control de código fuente.",
"scm.providerCountBadge.auto": "Muestre las insignias de recuento de proveedores de control de código fuente si hay cambios.",
"scm.providerCountBadge.hidden": "Oculte las insignias de recuento de proveedores de control de código fuente.",
"scm.providerCountBadge.visible": "Muestre las insignias de recuento de proveedores de control de código fuente.",
+ "scm.repositories.explorer": "Controla si se muestran los artefactos del repositorio en la vista Repositorios de control de código fuente. Esta función es experimental y solo funciona cuando {0} está establecido en '{1}'.",
+ "scm.repositories.selectionMode": "Controla el modo de selección de los repositorios en la vista de repositorios de control de código fuente.",
+ "scm.repositories.selectionMode.multiple": "Se pueden seleccionar varios repositorios al mismo tiempo.",
+ "scm.repositories.selectionMode.single": "Solo se puede seleccionar un repositorio a la vez.",
"scm.repositoriesSortOrder.discoveryTime": "Los repositorios de la vista Repositorios de control de código fuente se ordenan por hora de detección. Los repositorios de la vista Control de código fuente se ordenan en el orden en que se seleccionaron.",
"scm.repositoriesSortOrder.name": "Los repositorios de los repositorios de control de código fuente y las vistas de control de código fuente se ordenan por nombre de repositorio.",
"scm.repositoriesSortOrder.path": "Los repositorios de los repositorios de control de código fuente y las vistas de control de código fuente se ordenan por ruta de acceso del repositorio.",
+ "scm.workingSets.default": "Controla el conjunto de trabajo predeterminado que se va a usar al cambiar a un grupo de elementos del historial de control de código fuente que no tiene un conjunto de trabajo.",
+ "scm.workingSets.default.current": "Use el espacio de trabajo actual al cambiar a un grupo de elementos del historial de control de código fuente que no tenga un espacio de trabajo.",
+ "scm.workingSets.default.empty": "Use un espacio de trabajo vacío al cambiar a un grupo de elementos del historial de control de código fuente que no tenga un espacio de trabajo.",
+ "scm.workingSets.enabled": "Controla si se almacenan los conjuntos de trabajo del editor al cambiar entre grupos de elementos del historial de control de código fuente.",
+ "scmActiveRepositoryAutoDescription": "El repositorio activo se actualiza en función del editor activo",
+ "scmActiveRepositoryPlaceHolder": "Seleccione el repositorio activo y escriba para filtrar todos los repositorios",
+ "scmChanges": "Cambios",
"scmConfigurationTitle": "Control de código fuente",
+ "scmEditorResolveMergeConflict": "Resolver conflictos con IA",
+ "scmGraph": "Graph",
+ "scmRepositories": "Repositorios",
"showActionButton": "Controla si se puede mostrar un botón de acción en la vista Control de código fuente.",
+ "showInputActionButton": "Controla si se puede mostrar un botón de acción en la entrada Control de código fuente.",
"source control": "Control de código fuente",
+ "source control graph": "Gráfico de control de código fuente",
"source control repositories": "Repositorios de control de código fuente",
+ "source control view": "Control de código fuente",
"sourceControlViewIcon": "Vea el icono de la vista Control de código fuente."
},
+ "vs/workbench/contrib/scm/browser/scmAccessibilityHelp": {
+ "disabled": "deshabilitado",
+ "enabled": "habilitado",
+ "scm-graph-msg1": "Use el comando \"Control de código fuente: centrarse en la vista del gráfico de control de código fuente\" para abrir la vista Gráfico de control de código fuente.",
+ "scm-graph-msg2": "La vista Gráfico de control de código fuente muestra un historial de gráficos del repositorio. Si el área de trabajo contiene más de un repositorio, se mostrarán los elementos de historial del repositorio activo.",
+ "scm-graph-msg3": "Una vez abierta la vista Gráfico de control de código fuente, puede:",
+ "scm-graph-msg4": " - Use las teclas de dirección arriba y abajo para desplazarse por la lista de elementos del historial.",
+ "scm-graph-msg5": " - Use la tecla Espacio para abrir los detalles del elemento de historial en el editor de diferencias de varios archivos.",
+ "scm-msg1": "Use el comando \"Control de código fuente: centrarse en la vista Control de código fuente\" para abrir la vista Control de código fuente.",
+ "scm-msg2": "La vista Control de código fuente muestra los grupos de recursos y recursos del repositorio. Si el área de trabajo contiene más de un repositorio, enumerará los grupos de recursos y los recursos de los repositorios seleccionados en la vista Repositorios de control de código fuente.",
+ "scm-msg3": "Una vez abierta la vista Control de código fuente, puede:",
+ "scm-msg4": " - Use las teclas de dirección arriba y abajo para navegar por la lista de repositorios, grupos de recursos y recursos.",
+ "scm-msg5": " - Use la tecla Espacio para expandir o contraer un grupo de recursos.",
+ "scm-repositories-msg1": "Use el comando \"Control de código fuente: centrarse en la vista Repositorios de control de código fuente\" para abrir la vista Repositorios de control de código fuente.",
+ "scm-repositories-msg2": "La vista Repositorios de control de código fuente muestra todos los repositorios del área de trabajo y solo se muestra cuando el área de trabajo contiene más de un repositorio.",
+ "scm-repositories-msg3": "Una vez abierta la vista Repositorios de control de código fuente, puede:",
+ "scm-repositories-msg4": " - Use las teclas de dirección arriba o abajo para navegar por la lista de repositorios.",
+ "scm-repositories-msg5": " - Use las teclas Entrar o Espacio para seleccionar un repositorio.",
+ "scm-repositories-msg6": " - Use Mayús + Arriba/Abajo claves para seleccionar varios repositorios.",
+ "state-msg1": "Repositorios visibles: {0}",
+ "state-msg2": "Repositorio: {0}",
+ "state-msg3": "Referencia de elemento de historial: {0}",
+ "state-msg4": "Mensaje de confirmación: {0}",
+ "state-msg5": "Botón de acción: {0}, {1}",
+ "state-msg6": "Grupos de recursos: {0}"
+ },
+ "vs/workbench/contrib/scm/browser/scmHistory": {
+ "incomingChanges": "Cambios entrantes",
+ "outgoingChanges": "Cambios salientes",
+ "scmGraph.HistoryItemHoverAdditionsForeground": "Color de primer plano para la adición de elementos del historial al pasar el puntero por encima.",
+ "scmGraph.HistoryItemHoverDeletionsForeground": "Color de primer plano para la eliminación de elementos del historial al pasar el ratón por encima.",
+ "scmGraphForeground1": "Color de primer plano del gráfico de control de código fuente (1).",
+ "scmGraphForeground2": "Color de primer plano del gráfico de control de código fuente (2).",
+ "scmGraphForeground3": "Color de primer plano del gráfico de control de código fuente (3).",
+ "scmGraphForeground4": "Color de primer plano del gráfico de control de código fuente (4).",
+ "scmGraphForeground5": "Color de primer plano del gráfico de control de código fuente (5).",
+ "scmGraphHistoryItemBaseRefColor": "Color de referencia base del elemento de historial.",
+ "scmGraphHistoryItemHoverDefaultLabelBackground": "Color de fondo de la etiqueta predeterminada de mantener el puntero sobre el elemento de historial.",
+ "scmGraphHistoryItemHoverDefaultLabelForeground": "Color de primer plano de la etiqueta predeterminada de mantener el puntero sobre el elemento de historial.",
+ "scmGraphHistoryItemHoverLabelForeground": "Color de primer plano para la etiqueta de elementos del historial al pasar el puntero por encima.",
+ "scmGraphHistoryItemRefColor": "Color de referencia del elemento de historial.",
+ "scmGraphHistoryItemRemoteRefColor": "Color de referencia remota del elemento de historial."
+ },
+ "vs/workbench/contrib/scm/browser/scmHistoryChatContext": {
+ "chat.action.scmHistoryItemContext": "Agregar al chat",
+ "chat.action.scmHistoryItemSummarize": "Explicar los cambios",
+ "chatContext.scmHistoryItems": "Control de código fuente...",
+ "chatContext.scmHistoryItems.placeholder": "Seleccionar un cambio",
+ "files": "archivo(s)"
+ },
+ "vs/workbench/contrib/scm/browser/scmHistoryViewPane": {
+ "activeRepository": "Mostrar el gráfico de control de código fuente del repositorio activo",
+ "all": "Todo",
+ "allHistoryItemRefs": "Todas las referencias de elementos del historial",
+ "auto": "Automático",
+ "currentHistoryItemRef": "Referencias de elementos del historial actuales",
+ "goToCurrentHistoryItem": "Ir al elemento del historial actual",
+ "incomingChanges": "Cambios entrantes",
+ "items": "{0} elementos",
+ "loadMore": "{0} Cargar más...",
+ "openChanges": "Abrir cambios",
+ "openFile": "Abrir archivo",
+ "outgoingChanges": "Cambios salientes",
+ "referencePicker": "Selector de referencia de elementos de historial",
+ "refreshGraph": "Actualizar",
+ "repositoryPicker": "Selector de repositorio",
+ "scm history": "Historial de control de código fuente",
+ "scmGraphHistoryItemRef": "Seleccione una o varias referencias de elemento de historial para ver, escriba para filtrar",
+ "scmGraphRepository": "Seleccione el repositorio que desea ver y escriba para filtrar todos los repositorios.",
+ "scmGraphViewOutdated": "Actualice el gráfico mediante la acción de actualización ($(refresh)).",
+ "setListViewMode": "Ver como lista",
+ "setTreeViewMode": "Ver como árbol"
+ },
"vs/workbench/contrib/scm/browser/scmRepositoriesViewPane": {
"scm": "Repositorios de control de código fuente"
},
"vs/workbench/contrib/scm/browser/scmViewPane": {
"collapse all": "Contraer todos los repositorios",
"expand all": "Expandir todos los repositorios",
- "input": "Entrada de control de código fuente",
+ "label.close": "Cerrar",
"repositories": "Repositorios",
+ "repositoryMultiSelectionMode": "Seleccionar varios repositorios",
+ "repositorySingleSelectionMode": "Seleccione un único repositorio",
"repositorySortByDiscoveryTime": "Ordenar por hora de detección",
"repositorySortByName": "Ordenar por nombre",
"repositorySortByPath": "Ordenar por ruta de acceso",
"scm": "Administración del control de código fuente",
- "scm.providerBorder": "Borde separador del proveedor de SCM.",
+ "scmInput": "Entrada de control de código fuente",
+ "scmInput.accessibilityHelp": "{0}, use {1} para abrir la Ayuda de accesibilidad del control de código fuente.",
+ "scmInput.accessibilityHelpNoKb": "{0}, ejecute el comando Abrir ayuda de accesibilidad para obtener más información.",
+ "scmInputCancelAction": "Cancelar",
+ "scmInputGenerateCommitMessage": "Generar el mensaje de confirmación",
+ "scmInputMoreActions": "Más acciones...",
+ "scmInputRow.accessibilityHelp": "Entrada de control de código fuente, use {0} para abrir la Ayuda de accesibilidad del control de código fuente.",
+ "scmInputRow.accessibilityHelpNoKb": "Entrada de control de código fuente, ejecute el comando Abrir ayuda de accesibilidad para obtener más información.",
"setListViewMode": "Ver como lista",
"setTreeViewMode": "Ver como árbol",
"sortAction": "Ver y ordenar",
@@ -8038,14 +13439,41 @@
"sortChangesByPath": "Ordenar cambios por ruta de acceso",
"sortChangesByStatus": "Ordenar cambios por estado"
},
- "vs/workbench/contrib/scm/browser/scmViewPaneContainer": {
- "source control": "Control de código fuente"
+ "vs/workbench/contrib/scm/browser/scmViewService": {
+ "auto": "Automático"
+ },
+ "vs/workbench/contrib/scm/common/quickDiff": {
+ "editorGutterAddedBackground": "Color de fondo del medianil del editor para las líneas agregadas.",
+ "editorGutterAddedSecondaryBackground": "Color de fondo secundario del medianil del editor para las líneas que se agregan.",
+ "editorGutterDeletedBackground": "Color de fondo del medianil del editor para las líneas eliminadas.",
+ "editorGutterDeletedSecondaryBackground": "Color de fondo secundario del medianil del editor para las líneas que se eliminan.",
+ "editorGutterItemBackground": "Color de decoración del medianil del editor para el fondo del elemento de medianil. Este color debería ser opaco.",
+ "editorGutterItemGlyphForeground": "Color de decoración del medianil del editor para glifos de elementos de medianil.",
+ "editorGutterModifiedBackground": "Color de fondo del medianil del editor para las líneas modificadas.",
+ "editorGutterModifiedSecondaryBackground": "Color de fondo secundario del medianil del editor para las líneas que se modifican.",
+ "minimapGutterAddedBackground": "Color de fondo del canal del minimapa para las líneas que se agregan.",
+ "minimapGutterDeletedBackground": "Color de fondo del medianil del minimapa para las líneas que se eliminan.",
+ "minimapGutterModifiedBackground": "Color de fondo del canal del minimapa para las líneas que se modifican.",
+ "overviewRulerAddedForeground": "Color de marcador de regla de información general para contenido agregado.",
+ "overviewRulerDeletedForeground": "Color de marcador de regla de información general para contenido eliminado.",
+ "overviewRulerModifiedForeground": "Color de marcador de regla de información general para contenido modificado."
+ },
+ "vs/workbench/contrib/scrollLocking/browser/scrollLocking": {
+ "holdLockedScrolling": "Mantener bloqueado el desplazamiento entre editores",
+ "miHoldLockedScrolling": "Desplazamiento bloqueado",
+ "miToggleLockedScrolling": "Desplazamiento bloqueado",
+ "mouseLockScrollingEnabled": "Bloqueo de desplazamiento habilitado",
+ "mouseScrolllingLocked": "Desplazamiento bloqueado",
+ "synchronizeScrolling": "Sincronizar editores de desplazamiento",
+ "toggleLockedScrolling": "Alternar desplazamiento bloqueado entre editores"
},
"vs/workbench/contrib/search/browser/anythingQuickAccess": {
+ "chat": "Abrir chat rápido",
"closeEditor": "Quitar de abiertos recientemente",
"fileAndSymbolResultsSeparator": "resultados de archivos y símbolos",
"filePickAriaLabelDirty": "Cambios no guardados de {0}",
"fileResultsSeparator": "resultados de archivos",
+ "helpPickAriaLabel": "{0}, {1}",
"noAnythingResults": "No hay ningún resultado coincidente.",
"openToBottom": "Abrir en la parte inferior",
"openToSide": "Abrir en el lateral",
@@ -8056,68 +13484,74 @@
"onlySearchInOpenEditors": "Buscar solo en los editores abiertos",
"useExcludesAndIgnoreFilesDescription": "Usar la Configuración de Exclusión e Ignorar Archivos"
},
+ "vs/workbench/contrib/search/browser/quickTextSearch/textSearchQuickAccess": {
+ "QuickSearchMore": "Más",
+ "QuickSearchOpenInFile": "Abrir archivo",
+ "QuickSearchSeeMoreFiles": "Ver más archivos",
+ "enterSearchTerm": "Escriba un término para buscar en los archivos.",
+ "goToSearch": "Abrir en la vista de búsqueda",
+ "noAnythingResults": "No hay ningún resultado que coincida",
+ "showMore": "Abrir en la vista de búsqueda"
+ },
"vs/workbench/contrib/search/browser/replaceService": {
"fileReplaceChanges": "{0} ↔ {1} (Reemplazar vista previa) ",
"searchReplace.source": "Buscar y reemplazar"
},
"vs/workbench/contrib/search/browser/search.contribution": {
- "CancelSearchAction.label": "Cancelar búsqueda",
- "ClearSearchResultsAction.label": "Borrar resultados de la búsqueda",
- "CollapseDeepestExpandedLevelAction.label": "Contraer todo",
- "ExpandAllAction.label": "Expandir todo",
- "RefreshAction.label": "Actualizar",
"anythingQuickAccess": "Ir al archivo",
"anythingQuickAccessPlaceholder": "Buscar archivos por nombre (añadir {0} para ir a la línea o {1} para ir al símbolo)",
- "clearSearchHistoryLabel": "Borrar historial de búsqueda",
- "copyAllLabel": "Copiar todo",
- "copyMatchLabel": "Copiar",
- "copyPathLabel": "Copiar ruta de acceso",
- "exclude": "Configure [patrones globales](https://code.visualstudio.com/docs/editor/codebasics#_advanced-search-options) para excluir archivos y carpetas en búsquedas de texto completo y abrir los patrones de uso rápido. Hereda todos los patrones globales de la configuración \"#files.exclude\".",
+ "exclude": "Configure [patrones globales](https://code.visualstudio.com/docs/editor/codebasics#_advanced-search-options) para excluir archivos y carpetas en búsquedas de texto completo y búsqueda de archivos en apertura rápida. Para excluir archivos de la lista abierta recientemente en apertura rápida, los patrones deben ser absolutos (por ejemplo, '**/node_modules/**'). Hereda todos los patrones globales de la configuración '#files.exclude#'.",
"exclude.boolean": "El patrón global con el que se harán coincidir las rutas de acceso de los archivos. Establézcalo en true o false para habilitarlo o deshabilitarlo.",
"exclude.when": "Comprobación adicional en los elementos del mismo nivel de un archivo coincidente. Usa \\$(basename) como variable para el nombre de archivo coincidente.",
"filterSortOrder": "Controla el orden de clasificación del historial del editor en apertura rápida al filtrar.",
"filterSortOrder.default": "Las entradas de historial se ordenan por pertinencia en función del valor de filtro utilizado. Las entradas más pertinentes aparecen primero.",
"filterSortOrder.recency": "Las entradas de historial se ordenan por uso reciente. Las entradas abiertas más recientemente aparecen primero.",
- "findInFiles": "Buscar en archivos",
- "findInFiles.args": "Conjunto de opciones para la búsqueda",
- "findInFiles.description": "Abrir una búsqueda del área de trabajo",
- "findInFolder": "Buscar en carpeta...",
- "findInWorkspace": "Buscar en área de trabajo...",
- "focusSearchListCommandLabel": "Lista de objetivos",
"maintainFileSearchCacheDeprecated": "La caché de búsqueda se mantiene en el host de extensiones, el cual nunca se cierra, por lo que esta configuración ya no es necesaria.",
- "miFindInFiles": "Buscar &&en archivos",
- "miGotoSymbolInWorkspace": "Ir al símbolo en el área &&de trabajo...",
- "miReplaceInFiles": "Reemplazar &&en archivos",
"miViewSearch": "&&Buscar",
- "name": "Buscar",
- "revealInSideBar": "Mostrar en la vista Explorador",
+ "scm.defaultViewMode.list": "Muestra los resultados de la búsqueda como una lista.",
+ "scm.defaultViewMode.tree": "Muestra los resultados de la búsqueda como un árbol.",
"search": "Buscar",
- "search.actionsPosition": "Controla el posicionamiento de la actionbar en las filas en la vista de búsqueda.",
- "search.actionsPositionAuto": "Posicione el actionbar a la derecha cuando la vista de búsqueda es estrecha, e inmediatamente después del contenido cuando la vista de búsqueda es amplia.",
+ "search.actionsPosition": "Controla el posicionamiento de la barra de acciones en las filas de la vista de búsqueda.",
+ "search.actionsPositionAuto": "Posicione la barra de acciones a la derecha cuando la vista de búsqueda sea estrecha e inmediatamente después del contenido cuando la vista de búsqueda sea ancha.",
"search.actionsPositionRight": "Posicionar siempre el actionbar a la derecha.",
"search.collapseAllResults": "Controla si los resultados de la búsqueda estarán contraídos o expandidos.",
"search.collapseResults.auto": "Los archivos con menos de 10 resultados se expanden. El resto están colapsados.",
+ "search.decorations.badges": "Controla si las decoraciones de archivo deben usar distintivos.",
+ "search.decorations.colors": "Controla si las decoraciones de archivo deben usar colores.",
+ "search.defaultViewMode": "Controla el modo de vista de resultados de búsqueda predeterminado.",
+ "search.experimental.closedNotebookResults": "Muestra resultados de contenido enriquecido del editor de blocs de notas para blocs de notas cerrados. Actualice los resultados de la búsqueda después de cambiar esta configuración.",
"search.followSymlinks": "Controla si debe seguir enlaces simbólicos durante la búsqueda.",
"search.globalFindClipboard": "Controla si la vista de búsqueda debe leer o modificar el portapapeles de búsqueda compartido en macOS.",
"search.location": "Controla si la búsqueda se muestra como una vista en la barra lateral o como un panel en el área de paneles para disponer de más espacio horizontal.",
"search.location.deprecationMessage": "Este ajuste está obsoleto. En su lugar, puede arrastrar el icono de búsqueda a una nueva ubicación.",
"search.maintainFileSearchCache": "Cuando está habilitado, el proceso de servicio de búsqueda se mantendrá habilitado en lugar de cerrarse después de una hora de inactividad. Esto mantendrá la caché de búsqueda de archivos en la memoria.",
"search.maxResults": "Controla el número máximo de resultados de búsqueda; se puede establecer en \"null\" (vacío) para devolver resultados ilimitados.",
- "search.mode": "Controla dónde se producen las nuevas operaciones “Buscar en archivos” y “Buscar en carpeta”: en la vista de búsqueda o en un editor de búsqueda",
+ "search.mode": "Controla dónde se producen las nuevas operaciones `Buscar en archivos` y `Buscar en carpeta`: en la vista de búsqueda o en un editor de búsqueda.",
"search.mode.newEditor": "Busca en un editor de búsqueda nuevo.",
"search.mode.reuseEditor": "Busca en un editor de búsqueda existente si está presente; de lo contrario, en un editor de búsqueda nuevo.",
"search.mode.view": "Busca en la vista de búsqueda, ya sea en el panel o en las barras laterales.",
+ "search.quickAccess.preserveInput": "Controla si debe restaurarse la última entrada escrita en la búsqueda rápida al abrirla la próxima vez.",
"search.quickOpen.includeHistory": "Indica si se incluyen resultados de archivos abiertos recientemente en los resultados de archivos de Quick Open.",
"search.quickOpen.includeSymbols": "Indica si se incluyen resultados de una búsqueda global de símbolos en los resultados de archivos de Quick Open.",
+ "search.ripgrep.maxThreads": "Número de subprocesos que se usarán para la búsqueda. Cuando se establece en 0, el motor determina automáticamente este valor.",
"search.searchEditor.defaultNumberOfContextLines": "Número predeterminado de líneas de contexto circundantes que se van a usar al crear editores de búsqueda. Si se utiliza \"#search. searchEditor.reusePriorSearchConfiguration#\", se puede establecer en \"null\" (vacío) para usar la configuración del editor de búsqueda anterior.",
"search.searchEditor.doubleClickBehaviour": "Configure el efecto de hacer doble clic en un resultado en un editor de búsqueda.",
"search.searchEditor.doubleClickBehaviour.goToLocation": "Al hacer doble clic, se abre el resultado en el grupo de editor activo.",
- "search.searchEditor.doubleClickBehaviour.openLocationToSide": "Al hacer doble clic se abre el resultado en el grupo del editor a un lado, creando uno si aún no existe.",
- "search.searchEditor.doubleClickBehaviour.selectWord": "Al hacer doble clic, se selecciona la palabra bajo el cursor.",
+ "search.searchEditor.doubleClickBehaviour.openLocationToSide": "Al hacer doble clic, se abre el resultado en el grupo de editores, creando uno si aún no existe.",
+ "search.searchEditor.doubleClickBehaviour.selectWord": "Al hacer doble clic, se selecciona la palabra debajo del cursor.",
+ "search.searchEditor.focusResultsOnSearch": "Cuando se desencadene una búsqueda, centre los resultados del Editor de búsqueda en lugar de la entrada del Editor de búsqueda.",
"search.searchEditor.reusePriorSearchConfiguration": "Cuando está habilitado, los nuevos editores de búsqueda reutilizarán los elementos de inclusión, los elementos de exclusión y las marcas del editor de búsqueda abierto anteriormente.",
+ "search.searchEditor.singleClickBehaviour": "Configure el efecto de hacer solo clic en un resultado en un editor de búsqueda.",
+ "search.searchEditor.singleClickBehaviour.default": "Un solo clic no hace nada.",
+ "search.searchEditor.singleClickBehaviour.peekDefinition": "Al hacer clic con un solo clic, se abre una ventana de ver la definición sin salir.",
"search.searchOnType": "Busque todos los archivos a medida que escribe.",
"search.searchOnTypeDebouncePeriod": "Cuando {0} está habilitado, controla el tiempo de espera en milisegundos entre un carácter que se escribe y el inicio de la búsqueda. No tiene ningún efecto cuando {0} está deshabilitado.",
- "search.seedOnFocus": "Actualiza la consulta de búsqueda al texto seleccionado del editor al enfocar la vista de búsqueda. Esto ocurre al hacer clic o al desencadenar el comando \"workbench.views.search.focus\".",
+ "search.searchView.keywordSuggestions": "Activa las sugerencias de palabras clave en la vista de búsqueda.",
+ "search.searchView.semanticSearchBehavior": "Controla el comportamiento de los resultados de búsqueda semántica que se muestran en la vista de búsqueda.",
+ "search.searchView.semanticSearchBehavior.auto": "Solicitar resultados semánticos automáticamente en cada búsqueda.",
+ "search.searchView.semanticSearchBehavior.manual": "Solicitar únicamente resultados de búsqueda semántica de forma manual.",
+ "search.searchView.semanticSearchBehavior.runOnEmpty": "Solicitar resultados semánticos automáticamente solo cuando no haya resultados de la búsqueda de texto.",
+ "search.seedOnFocus": "Actualice la consulta de búsqueda al texto seleccionado del editor al enfocar la vista de búsqueda. Esto ocurre al hacer clic o al desencadenar el comando `workbench.views.search.focus`.",
"search.seedWithNearestWord": "Habilite la búsqueda de propagación a partir de la palabra más cercana al cursor cuando el editor activo no tiene ninguna selección.",
"search.showLineNumbers": "Controla si deben mostrarse los números de línea en los resultados de la búsqueda.",
"search.smartCase": "Buscar sin distinción de mayúsculas y minúsculas si el patrón es todo en minúsculas; de lo contrario, buscar con distinción de mayúsculas y minúsculas.",
@@ -8131,24 +13565,91 @@
"searchSortOrder.filesOnly": "Los resultados estan ordenados alfabéticamente por nombres de archivo, ignorando el orden de las carpetas.",
"searchSortOrder.modified": "Los resultados se ordenan por la última fecha de modificación del archivo, en orden descendente.",
"searchSortOrder.type": "Los resultados se ordenan por extensiones de archivo, en orden alfabético.",
- "showTriggerActions": "Ir al símbolo en el área de trabajo...",
"symbolsQuickAccess": "Ir al símbolo en el área de trabajo",
"symbolsQuickAccessPlaceholder": "Escriba el nombre de un símbolo que desea abrir.",
- "useGlobalIgnoreFiles": "Controle si se deben usar los archivos globales `.gitignore` y `.ignore` al buscar archivos. Requiere que se habilite '#search.useIgnoreFiles#'.",
+ "textSearchPickerHelp": "Buscar texto",
+ "textSearchPickerPlaceholder": "Busque texto en los archivos del área de trabajo.",
+ "useGlobalIgnoreFiles": "Controla si se debe usar el archivo gitignore global (por ejemplo, de `$HOME/.config/git/ignore`) al buscar archivos. {0} debe haberse habilitado.",
"useIgnoreFiles": "Controla si se deben usar los archivos \".gitignore\" e \".ignore\" al buscar archivos.",
"usePCRE2Deprecated": "En desuso. Se usará PCRE2 automáticamente al utilizar características de regex que solo se admiten en PCRE2.",
- "useParentIgnoreFiles": "Controle si se deben usar los archivos globales \".gitignore\" e \".ignore\" en los directorios primarios al buscar archivos. Requiere que se habilite \"#search.useIgnoreFiles#\".",
+ "useParentIgnoreFiles": "Controle si se deben usar los archivos globales \".gitignore\" e \".ignore\" en los directorios primarios al buscar archivos. {0} debe haberse habilitado.",
"useRipgrep": "Esta opción están en desuso y ahora se utiliza \"search.usePCRE2\".",
"useRipgrepDeprecated": "En desuso. Considere la utilización de \"search.usePCRE2\" para admitir la característica de expresiones regulares avanzadas."
},
- "vs/workbench/contrib/search/browser/searchActions": {
+ "vs/workbench/contrib/search/browser/searchActionsBase": {
+ "search": "Buscar"
+ },
+ "vs/workbench/contrib/search/browser/searchActionsCopy": {
+ "copyAllLabel": "Copiar todo",
+ "copyMatchLabel": "Copiar",
+ "copyPathLabel": "Copiar ruta de acceso",
+ "getSearchResultsLabel": "Obtener resultados de la búsqueda"
+ },
+ "vs/workbench/contrib/search/browser/searchActionsFind": {
+ "excludeFileTypeFromSearch": "Excluir el tipo de archivo de la búsqueda",
+ "excludeFolderFromSearch": "Excluir la carpeta de la búsqueda",
+ "findInFiles": "Buscar en archivos",
+ "findInFiles.args": "Conjunto de opciones para la búsqueda",
+ "findInFiles.description": "Abrir una búsqueda del área de trabajo",
+ "findInFolder": "Buscar en carpeta...",
+ "findInWorkspace": "Buscar en área de trabajo...",
+ "includeFileTypeInSearch": "Incluir tipo de archivo en la búsqueda",
+ "miFindInFiles": "Buscar &&en archivos",
+ "restrictResultsToFolder": "Restringir la búsqueda a la carpeta",
+ "revealInSideBar": "Mostrar en la vista Explorador",
+ "search.expandRecursively": "Expandir recursivamente"
+ },
+ "vs/workbench/contrib/search/browser/searchActionsNav": {
+ "AddCursorsAtSearchResults.label": "Agregar cursores en los resultados de búsqueda",
+ "CloseReplaceWidget.label": "Cerrar widget de reemplazo",
+ "FocusNextInputAction.label": "Enfocar siguiente entrada",
"FocusNextSearchResult.label": "Centrarse en el siguiente resultado de la búsqueda",
+ "FocusPreviousInputAction.label": "Enfocar entrada anterior",
"FocusPreviousSearchResult.label": "Centrarse en el anterior resultado de la búsqueda",
+ "FocusSearchFromResults.label": "Enfocar búsqueda de resultados",
+ "OpenMatch.label": "Abrir coincidencia",
+ "OpenMatchToSide.label": "Abrir coincidencia con el lado",
+ "ToggleCaseSensitiveCommandId.label": "Alternar distinción entre mayúsculas y minúsculas",
+ "TogglePreserveCaseId.label": "Alternar conservar mayúsculas y minúsculas",
+ "ToggleQueryDetailsAction.label": "Alternar detalles de consulta",
+ "ToggleRegexCommandId.label": "Alternar regex",
+ "ToggleWholeWordCommandId.label": "Alternar palabra completa",
+ "focusSearchListCommandLabel": "Lista de objetivos",
+ "replaceInFiles": "Reemplazar en Files",
+ "toggleTabs": "Alternar búsqueda en tipo"
+ },
+ "vs/workbench/contrib/search/browser/searchActionsRemoveReplace": {
"RemoveAction.label": "Descartar",
"file.replaceAll.label": "Reemplazar todo",
- "match.replace.label": "Reemplazar",
- "replaceInFiles": "Reemplazar en archivos",
- "toggleTabs": "Alternar búsqueda en tipo"
+ "match.replace.label": "Reemplazar"
+ },
+ "vs/workbench/contrib/search/browser/searchActionsSymbol": {
+ "miGotoSymbolInWorkspace": "Ir al símbolo en el área &&de trabajo...",
+ "showTriggerActions": "Ir al símbolo en el área de trabajo..."
+ },
+ "vs/workbench/contrib/search/browser/searchActionsTextQuickAccess": {
+ "quickTextSearch": "Búsqueda rápida"
+ },
+ "vs/workbench/contrib/search/browser/searchActionsTopBar": {
+ "CancelSearchAction.label": "Cancelar búsqueda",
+ "ClearSearchResultsAction.label": "Borrar resultados de la búsqueda",
+ "CollapseDeepestExpandedLevelAction.label": "Contraer todo",
+ "ExpandAllAction.label": "Expandir todo",
+ "RefreshAction.label": "Actualizar",
+ "SearchWithAIAction.label": "Búsqueda con IA",
+ "ViewAsListAction.label": "Ver como Lista",
+ "ViewAsTreeAction.label": "Ver como árbol",
+ "clearSearchHistoryLabel": "Borrar historial de búsqueda"
+ },
+ "vs/workbench/contrib/search/browser/searchChatContext": {
+ "chatContext.attach.files.placeholder": "Buscar archivos o carpetas por nombre",
+ "chatContext.folder": "Archivos y carpetas...",
+ "chatContext.searchResults": "Resultados de la búsqueda",
+ "select.symb": "Seleccionar un símbolo",
+ "symbols": "Símbolos..."
+ },
+ "vs/workbench/contrib/search/browser/searchFindInput": {
+ "searchFindInputNotebookFilter.label": "Filtros de búsqueda de blocs de notas"
},
"vs/workbench/contrib/search/browser/searchIcons": {
"searchClearIcon": "Icono para borrar los resultados en la vista de búsqueda.",
@@ -8157,12 +13658,18 @@
"searchExpandAllIcon": "Icono para expandir los resultados en la vista de búsqueda.",
"searchHideReplaceIcon": "Icono para contraer la sección de reemplazo en la vista de búsqueda.",
"searchNewEditorIcon": "Icono de la acción para abrir un nuevo editor de búsqueda.",
+ "searchOpenInFile": "Icono de la acción para ir al archivo del resultado de la búsqueda actual.",
"searchRefreshIcon": "Icono para actualizar en la vista de búsqueda.",
"searchRemoveIcon": "Icono para quitar el resultado de una búsqueda.",
"searchReplaceAllIcon": "Icono para reemplazar todo en la vista de búsqueda.",
"searchReplaceIcon": "Icono de reemplazo en la vista de búsqueda.",
+ "searchSeeMoreIcon": "Icono para ver más contexto en la vista de búsqueda.",
+ "searchShowAsList": "Icono para ver los resultados como una lista en la vista de búsqueda.",
+ "searchShowAsTree": "Icono para ver los resultados como un árbol en la vista de búsqueda.",
"searchShowContextIcon": "Icono para alternar el contexto en el editor de búsqueda.",
"searchShowReplaceIcon": "Icono para expandir la sección de reemplazo en la vista de búsqueda.",
+ "searchSparkleEmpty": "Icono para ocultar los resultados de IA en la búsqueda.",
+ "searchSparkleFilled": "Icono para mostrar los resultados de IA en la búsqueda.",
"searchStopIcon": "Icono para detener en la vista de búsqueda.",
"searchViewIcon": "Vea el icono de la vista de búsqueda."
},
@@ -8176,29 +13683,31 @@
"lineNumStr": "Desde la línea {0}",
"numLinesStr": "{0} líneas más",
"otherFilesAriaLabel": "{0} coincidencias fuera del área de trabajo, resultado de la búsqueda",
- "replacePreviewResultAria": "Reemplazar el termino {0} con {1} en la columna con posición {2} en la línea de texto {3}",
+ "replacePreviewResultAria": "\"{0}\" en la columna {1} reemplaza {2} por {3}",
"search": "Buscar",
"searchFileMatch": "{0} archivo encontrado",
"searchFileMatches": "{0} archivos encontrados",
+ "searchFolderMatch.aiText.label": "Resultados asistidos por IA",
"searchFolderMatch.other.label": "Otros archivos",
+ "searchFolderMatch.plainText.label": "Resultados del texto",
"searchMatch": "{0} coincidencia encontrada",
"searchMatches": "{0} coincidencias encontradas",
- "searchResultAria": "Encontró el término {0} en la columna de posición {1} en la línea con el texto {2}."
+ "searchResultAria": "\"{0}\" en la columna {1} encontró {2}"
},
"vs/workbench/contrib/search/browser/searchView": {
- "ariaSearchResultsClearStatus": "Los resultados de la búsqueda se han borrado",
"ariaSearchResultsStatus": "La búsqueda devolvió {0} resultados en {1} archivos",
"disableOpenEditors": "Buscar en todo el área de trabajo",
"emptySearch": "Búsqueda vacía",
"excludes.enable": "habilitar",
"forTerm": " - Buscar: {0}",
+ "keywordSuggestion.message": "Buscar en su lugar: ",
"moreSearch": "Alternar detalles de la búsqueda",
"noOpenEditorResultsExcludes": "No se han encontrado resultados en los editores abiertos, a excepción de \"{0}\" - ",
- "noOpenEditorResultsFound": "No se han encontrado resultados en los editores abiertos. Revise la configuración para ver las exclusiones configuradas y comprobar sus archivos gitignore -",
+ "noOpenEditorResultsFound": "No se han encontrado resultados en los editores abiertos. Revise las exclusiones configuradas y comprobar sus archivos gitignore - ",
"noOpenEditorResultsIncludes": "No se han encontrado resultados en los editores abiertos que coincidan con \"{0}\" - ",
"noOpenEditorResultsIncludesExcludes": "No se han encontrado resultados en los editores abiertos que coincidan con \"{0}\", a excepción de \"{1}\" - ",
"noResultsExcludes": "No se encontraron resultados con exclusión de '{0}' - ",
- "noResultsFound": "No se encontraron resultados. Revise la configuración para configurar exclusiones y verificar sus archivos gitignore -",
+ "noResultsFound": "No se encontraron resultados. Revise las exclusiones configuradas y comprobar sus archivos gitignore - ",
"noResultsIncludes": "No se encontraron resultados en '{0}' - ",
"noResultsIncludesExcludes": "No se encontraron resultados en '{0}' con exclusión de '{1}' - ",
"onlyOpenEditors": "buscar solo en archivos abiertos",
@@ -8206,7 +13715,6 @@
"openFolder": "Abrir carpeta",
"openInEditor.message": "Abrir en el editor",
"openInEditor.tooltip": "Copiar los resultados de búsqueda actuales en un editor",
- "openSettings.learnMore": "Más información",
"openSettings.message": "Abrir configuración",
"placeholder.excludes": "por ejemplo, *.ts, src/**/exclude",
"placeholder.includes": "por ejemplo, *.ts, src/**/include",
@@ -8239,7 +13747,9 @@
"searchPathNotFoundError": "No se encuentra la ruta de búsqueda: {0}",
"searchScope.excludes": "archivos para excluir",
"searchScope.includes": "archivos para incluir",
+ "searchWithAIButtonTooltip": "Búsqueda con IA",
"searchWithoutFolder": "No ha abierto ni especificado una carpeta. Solo se buscan actualmente los archivos abiertos -",
+ "triggerAISearch.tooltip": "Búsqueda con IA.",
"useExcludesAndIgnoreFilesDescription": "Usar la Configuración de Exclusión e Ignorar Archivos",
"useIgnoresAndExcludesDisabled": "la configuración de exclusión y los archivos de omisiones están deshabilitados"
},
@@ -8276,7 +13786,7 @@
"search.action.focusFilesToInclude": "Enfocar archivos del editor de búsqueda para incluir",
"search.action.focusQueryEditorWidget": "Foco en la entrada del editor de búsqueda",
"search.openNewEditor": "Abrir nuevo Editor de búsqueda",
- "search.openNewEditorToSide": "Abrir nuevo editor de búsqueda en el lateral",
+ "search.openNewEditorToSide": "Abrir el nuevo Editor de Búsqueda en el lateral",
"search.openNewSearchEditor": "Nuevo editor de búsqueda",
"search.openResultsInEditor": "Abrir resultados en el editor",
"search.openSearchEditor": "Abrir editor de búsqueda",
@@ -8292,6 +13802,7 @@
"searchEditor.deleteResultBlock": "Eliminar resultados del archivo"
},
"vs/workbench/contrib/searchEditor/browser/searchEditorInput": {
+ "searchEditorLabelIcon": "Icono de la etiqueta del editor de búsqueda.",
"searchTitle": "Buscar",
"searchTitle.withQuery": "Buscar: {0}"
},
@@ -8304,30 +13815,20 @@
"oneResult": "1 resultado",
"searchMaxResultsWarning": "El conjunto de resultados sólo contiene un subconjunto de todas las coincidencias. Sea más específico en su búsqueda para limitar los resultados."
},
- "vs/workbench/contrib/sessionSync/browser/sessionSync.contribution": {
- "apply edit session warning": "La aplicación de la sesión de edición puede sobrescribir los cambios no confirmados existentes. ¿Desea continuar?",
- "apply failed": "No se pudo aplicar la sesión de edición.",
- "applying edit session": "Aplicando la sesión de edición...",
- "client too old": "Actualice a una versión más reciente de {0} para aplicar esta sesión de edición.",
- "continue edit session": "Continuar con la edición de la sesión...",
- "continue edit session in local folder": "Abrir en carpeta local",
- "continueEditSession.openLocalFolder.title": "Seleccione una carpeta local para continuar con la sesión de edición en",
- "continueEditSessionExtPoint": "Aporta opciones para continuar con la sesión de edición actual en un entorno diferente",
- "continueEditSessionExtPoint.command": "Identificador del comando que se va a ejecutar. El comando debe declararse en la sección \"commands\" y devolver un URI que represente un entorno diferente en el que se pueda continuar con la sesión de edición actual.",
- "continueEditSessionExtPoint.group": "Grupo al que pertenece este elemento.",
- "continueEditSessionExtPoint.when": "Condición que se debe cumplir para mostrar este elemento.",
- "continueEditSessionItem.openInLocalFolder": "Abrir en carpeta local",
- "continueEditSessionPick.placeholder": "Elija cómo desea seguir trabajando",
- "continueEditSessionPick.title": "Continuar con la edición de la sesión...",
- "editSessionsEnabled": "Controla si se muestran las acciones habilitadas para la nube para almacenar y reanudar los cambios no confirmados al cambiar entre web, escritorio o dispositivos.",
- "no edit session": "No hay ninguna sesión de edición para aplicar.",
- "no edit session content for ref": "No se pudo aplicar el contenido de la sesión de edición para el identificador {0}.",
- "no edits to store": "Se omitió el almacenamiento de la sesión de edición porque no hay ninguna edición para almacenar.",
- "payload failed": "No se puede almacenar la sesión de edición.",
- "payload too large": "La sesión de edición supera el límite de tamaño y no se puede almacenar.",
- "resume latest": "Reanudar la última sesión de edición",
- "store current": "Almacenar sesión de edición actual",
- "storing edit session": "Almacenando sesión de edición..."
+ "vs/workbench/contrib/share/browser/share.contribution": {
+ "close": "Cerrar",
+ "experimental.share.enabled": "Controla si se debe representar la acción Compartir junto al centro de comandos cuando {0} es {1}.",
+ "generating link": "Generando vínculo...",
+ "open link": "Abrir vínculo",
+ "share": "Compartir...",
+ "shareSuccess": "Vínculo copiado en el portapapeles",
+ "shareTextSuccess": "Se ha copiado texto al portapapeles"
+ },
+ "vs/workbench/contrib/share/browser/shareService": {
+ "shareProviderCount": "Número de proveedores de recursos compartidos disponibles",
+ "toggle.share": "Compartir",
+ "toggle.shareDescription": "Alternar visibilidad de la acción Compartir en la barra de título",
+ "type to filter": "Elegir cómo compartir {0}"
},
"vs/workbench/contrib/snippets/browser/commands/abstractSnippetsActions": {
"snippets": "Fragmentos de código"
@@ -8336,22 +13837,23 @@
"bad_name1": "Nombre de archivo no válido",
"bad_name2": "\"{0}\" no es un nombre de archivo válido",
"bad_name3": "\"{0}\" ya existe",
+ "detail.label": "({0}) {1}",
"global.1": "({0})",
"global.scope": "(global)",
"group.global": "Fragmentos existentes",
- "miOpenSnippets": "&&Fragmentos de código del usuario",
+ "miOpenSnippets": "&Fragmentos de código",
"name": "Escriba el nombre del archivo de fragmento de código",
"new.folder": "Nuevo archivo de fragmentos para \"{0}\"...",
"new.global": "Nuevo archivo de fragmentos globales...",
"new.global.sep": "Nuevos fragmentos de código",
"new.global_scope": "GLOBAL",
"new.workspace_scope": "área de trabajo de {0}",
- "openSnippet.label": "Configurar fragmentos de usuario ",
+ "openSnippet.label": "Configurar fragmentos de código",
"openSnippet.pickLanguage": "Seleccione Archivo de fragmentos o Crear fragmentos de código",
- "userSnippets": "Fragmentos de código de usuario"
+ "userSnippets": "Fragmentos de código"
},
"vs/workbench/contrib/snippets/browser/commands/fileTemplateSnippets": {
- "label": "Rellenar desde un fragmento de código",
+ "label": "Rellenar archivo con fragmento de código",
"placeholder": "Seleccionar un fragmento de código"
},
"vs/workbench/contrib/snippets/browser/commands/insertSnippet": {
@@ -8361,7 +13863,8 @@
"label": "Rodear con fragmento de código..."
},
"vs/workbench/contrib/snippets/browser/snippetCodeActionProvider": {
- "codeAction": "Rodear con: {0}",
+ "codeAction": "{0}",
+ "more": "Más...",
"overflow.start.title": "Comenzar con un fragmento de código",
"title": "Empezar con: {0}"
},
@@ -8379,7 +13882,7 @@
"sep.workspaceSnippet": "Fragmentos de código de área de trabajo"
},
"vs/workbench/contrib/snippets/browser/snippets.contribution": {
- "editor.snippets.codeActions.enabled": "Controla si los fragmentos de código para rodear o los fragmentos de código de plantilla de archivo se muestran como acciones de código.",
+ "editor.snippets.codeActions.enabled": "Controla si los fragmentos de plantilla de archivo o surround-with-snippets se muestran como Acciones de código.",
"snippetSchema.json": "Configuración de fragmento de código del usuario",
"snippetSchema.json.body": "El contenido del fragmento. Utilice \"$1\", \"${1:defaultText}\" para definir las posiciones del cursor, utilice \"$0\" para la posición del cursor final. Inserte valores de variable con \"${varName}\" y \"${varName:defaultText}\", por ejemplo, \"Este es el archivo: $TM_FILENAME\".",
"snippetSchema.json.default": "Fragmento de código vacío",
@@ -8404,10 +13907,41 @@
"vscode.extension.contributes.snippets-language": "Identificador del lenguaje al que se aporta este fragmento de código.",
"vscode.extension.contributes.snippets-path": "Ruta de acceso del archivo de fragmentos de código. La ruta es relativa a la carpeta de extensión y normalmente empieza por \"./snippets/\"."
},
- "vs/workbench/contrib/surveys/browser/ces.contribution": {
- "cesSurveyQuestion": "¿Tiene un momento para ayudar al equipo de VS Code? Cuéntenos su experiencia con VS Code hasta el momento.",
- "giveFeedback": "Enviar comentarios",
- "remindLater": "Recordármelo más tarde"
+ "vs/workbench/contrib/speech/browser/speechService": {
+ "speechProviderDescription": "Una descripción de este proveedor de voz, que se muestra en la interfaz de usuario.",
+ "speechProviderName": "Nombre único para este proveedor de voz.",
+ "vscode.extension.contributes.speechProvider": "Aporta un proveedor de voz"
+ },
+ "vs/workbench/contrib/speech/common/speechService": {
+ "hasSpeechProvider": "Un proveedor de voz está registrado en el servicio de voz.",
+ "speechLanguage.da-DK": "Danés (Dinamarca)",
+ "speechLanguage.de-DE": "Alemán (Alemania)",
+ "speechLanguage.en-AU": "Inglés (Australia)",
+ "speechLanguage.en-CA": "Inglés (Canadá)",
+ "speechLanguage.en-GB": "Inglés (Reino Unido)",
+ "speechLanguage.en-IE": "Inglés (Irlanda)",
+ "speechLanguage.en-IN": "Inglés (India)",
+ "speechLanguage.en-NZ": "Inglés (Nueva Zelanda)",
+ "speechLanguage.en-US": "Inglés (Estados Unidos)",
+ "speechLanguage.es-ES": "Español (España)",
+ "speechLanguage.es-MX": "Español (México)",
+ "speechLanguage.fr-CA": "Francés (Canadá)",
+ "speechLanguage.fr-FR": "Francés (Francia)",
+ "speechLanguage.hi-IN": "Hindi (India)",
+ "speechLanguage.it-IT": "Italiano (Italia)",
+ "speechLanguage.ja-JP": "Japonés (Japón)",
+ "speechLanguage.ko-KR": "Coreano (Corea del Sur)",
+ "speechLanguage.nl-NL": "Neerlandés (Países Bajos)",
+ "speechLanguage.pt-BR": "Portugués (Brasil)",
+ "speechLanguage.pt-PT": "Portugués (Portugal)",
+ "speechLanguage.ru-RU": "Ruso (Rusia)",
+ "speechLanguage.sv-SE": "Sueco (Suecia)",
+ "speechLanguage.tr-TR": "Turco (Türkiye)",
+ "speechLanguage.zh-CN": "Chino (simplificado, China)",
+ "speechLanguage.zh-HK": "Chino (tradicional, Hong Kong)",
+ "speechLanguage.zh-TW": "Chino (tradicional, Taiwán)",
+ "speechToTextInProgress": "Hay una sesión de conversión de voz en texto en curso.",
+ "textToSpeechInProgress": "Hay una sesión de texto a voz en curso."
},
"vs/workbench/contrib/surveys/browser/languageSurveys.contribution": {
"helpUs": "Ayúdenos a mejorar nuestro soporte para {0}",
@@ -8421,13 +13955,6 @@
"surveyQuestion": "¿Le importaría realizar una breve encuesta de opinión?",
"takeSurvey": "Realizar encuesta"
},
- "vs/workbench/contrib/tags/electron-browser/workspaceTagsService": {
- "workspaceFound": "Esta carpeta contiene un archivo de área de trabajo \"{0}\". ¿Desea abrirlo? [Más información] ({1}) acerca de los archivos del área de trabajo.",
- "openWorkspace": "Abrir área de trabajo",
- "workspacesFound": "Esta carpeta contiene varios archivos de área de trabajo. ¿Desea abrir uno? [Más información]({0}) acerca de los archivos de área de trabajo.",
- "selectWorkspace": "Seleccione el área de trabajo",
- "selectToOpen": "Seleccione el área de trabajo para abrir"
- },
"vs/workbench/contrib/tasks/browser/abstractTaskService": {
"ConfigureTaskRunnerAction.label": "Configurar tarea",
"TaskServer.folderIgnored": "La carpeta {0} se pasa por alto puesto que utiliza la versión 0.1.0 de las tareas",
@@ -8443,18 +13970,23 @@
"TaskService.fetchingBuildTasks": "Obteniendo tareas de compilación...",
"TaskService.fetchingTestTasks": "Capturando tareas de prueba...",
"TaskService.ignoredFolder": "Las siguientes carpetas del área de trabajo se omitirán porque utilizan la versión 0.1.0 de la tarea: {0}",
+ "TaskService.instanceToTerminate": "Seleccione una instancia para finalizar",
"TaskService.noBuildTask": "No se encontraron tareas de compilación para ejecutar. Configurar tareas de compilación...",
"TaskService.noBuildTask1": "No se ha definido ninguna tarea de compilación. Marque una tarea con \"isBuildCommand\" en el archivo tasks.json.",
"TaskService.noBuildTask2": "No se ha definido ninguna tarea de compilación. Marque una tarea con un grupo \"build\" en el archivo tasks.json. ",
- "TaskService.noConfiguration": "Error: La detección de tareas de {0} no aportó ninguna tarea para la configuración siguiente:\r\n{1}\r\nLa tarea se ignorará.\r\n",
+ "TaskService.noConfiguration": "Error: la detección de tareas {0} no ha contribuido a una tarea para la siguiente configuración:\r\n{1}\r\nEsta tarea se ignorará.",
"TaskService.noEntryToRun": "Configurar una tarea",
+ "TaskService.noInstanceRunning": "No hay ninguna instancia en ejecución en este momento",
+ "TaskService.noRunningTasks": "No hay tareas en ejecución para reiniciar",
"TaskService.noTaskIsRunning": "Ninguna tarea se está ejecutando",
"TaskService.noTaskRunning": "Ninguna tarea se está ejecutando actualmente",
"TaskService.noTaskToRestart": "No hay tareas para reiniciar",
+ "TaskService.noTasks": "No hay tareas persistentes para volver a conectar.",
"TaskService.noTestTask1": "No se ha definido ninguna tarea de prueba. Marque una tarea con \"isTestCommand\" en el archivo tasks.json.",
"TaskService.noTestTask2": "No se ha definido ninguna tarea de prueba. Marque una tarea con \"test\" en el archivo tasks.json.",
"TaskService.noTestTaskTerminal": "No se encontraron tareas de prueba para ejecutar. Configurar tareas...",
"TaskService.notAgain": "No mostrar de nuevo",
+ "TaskService.notConnecting": "Definición de las tareas conectadas al valor configurado {0}, las tareas ya se reconectaron {1}",
"TaskService.openJsonFile": "Abrir archivo tasks.json",
"TaskService.pickBuildTask": "Seleccione la tarea de compilación para ejecutar",
"TaskService.pickBuildTaskForLabel": "Seleccionar la tarea de compilación (no hay tarea de compilación predeterminada definida)",
@@ -8464,19 +13996,24 @@
"TaskService.pickShowTask": "Seleccione la tarea de la que desea ver la salida",
"TaskService.pickTask": "Seleccione una tarea para configurar",
"TaskService.pickTestTask": "Seleccione la tarea de prueba para ejecutar",
- "TaskService.providerUnavailable": "Advertencia: {0} las tareas no están disponibles en el entorno actual.\r\n",
+ "TaskService.providerUnavailable": "Advertencia: {0} las tareas no están disponibles en el entorno actual.",
+ "TaskService.reconnected": "Se volvió a conectar a las tareas en ejecución.",
+ "TaskService.reconnecting": "Volviendo a conectarse a las tareas en ejecución...",
+ "TaskService.reconnectingTasks": "Volviendo a conectarse a {0} tareas...",
"TaskService.requestTrust": "El listado y la ejecución de tareas requiere que algunos de los archivos de esta área de trabajo se ejecuten como código.",
+ "TaskService.skippingReconnection": "El tipo de inicio no es de recarga de ventana, configuración conectada y eliminación de tareas persistentes",
"TaskService.taskToRestart": "Seleccione la tarea para reiniciar",
"TaskService.taskToTerminate": "Seleccione una tarea para finalizar",
"TaskService.template": "Seleccione una plantilla de tarea",
"TaskService.terminateAllRunningTasks": "Todas las tareas en ejecución",
+ "TaskSystem.InstancePolicy.warn": "Se ha alcanzado el límite de instancias para esta tarea.",
"TaskSystem.active": "Ya hay una tarea en ejecución. Finalícela antes de ejecutar otra tarea.",
- "TaskSystem.activeSame.noBackground": "La tarea \"{0}\" ya está activa.",
"TaskSystem.configurationErrors": "Error: La configuración de la tarea proporcionada tiene errores de validación y no se puede usar. Corrija los errores primero.",
- "TaskSystem.invalidTaskJson": "Error: El contenido del archivo tasks.json tiene errores de sintaxis. Corríjalo antes de ejecutar una tarea.\r\n",
- "TaskSystem.invalidTaskJsonOther": "Error: El contenido JSON de las tareas de {0} tiene errores de sintaxis. Corríjalo antes de ejecutar una tarea.\r\n",
+ "TaskSystem.invalidTaskJson": "Error: el contenido del archivo tasks.json tiene errores de sintaxis. Corríjalos antes de ejecutar una tarea.",
+ "TaskSystem.invalidTaskJsonOther": "Error: el contenido del archivo JSON de tareas en {0} tiene errores de sintaxis. Corríjalos antes de ejecutar una tarea.",
"TaskSystem.restartFailed": "No se pudo terminar y reiniciar la tarea {0}",
"TaskSystem.saveBeforeRun.prompt.title": "¿Quiere guardar todos los editores?",
+ "TaskSystem.taskNoLongerExists": "La tarea {0} ya no existe o se ha modificado. No se puede reiniciar.",
"TaskSystem.unknownError": "Error durante la ejecución de una tarea. Consulte el registro de tareas para obtener más detalles.",
"TaskSystem.versionSettings": "Solo se permiten tareas versión 2.0.0 en la configuración del usuario.",
"TaskSystem.versionWorkspaceFile": "Solo se permiten tareas de versión 2.0.0 en los archivos de configuración del área de trabajo.",
@@ -8490,44 +14027,55 @@
"customizeParseErrors": "La configuración actual de tareas contiene errores. Antes de personalizar una tarea, corrija los errores.",
"detail": "¿Quiere guardar todos los editores antes de ejecutar la tarea?",
"detected": "tareas detectadas",
- "moreThanOneBuildTask": "Hay muchas tareas de compilación definidas en tasks.json. Ejecutando la primera.\r\n",
+ "moreThanOneBuildTask": "Hay muchas tareas de compilación definidas en tasks.json. Ejecutando la primera.",
"recentlyUsed": "tareas usadas recientemente",
- "restartTask": "Reiniciar tarea",
"runTask.arg": "Filtra las tareas que se muestran en la selección rápida",
"runTask.label": "Etiqueta de la tarea o un término por el que se va a filtrar",
- "runTask.task": "The task's label or a term to filter by",
+ "runTask.task": "Etiqueta de la tarea o un término por el que se va a filtrar",
"runTask.type": "Tipo de tarea aportada",
- "saveBeforeRun.dontSave": "No guardar",
- "saveBeforeRun.save": "Guardar",
+ "saveBeforeRun.dontSave": "&&No guardar",
+ "saveBeforeRun.save": "&&Guardar",
+ "savePersistentTask": "Guardando tareas persistentes: {0}",
"selectProblemMatcher": "Seleccione qué tipo de errores y advertencias deben buscarse durante el examen de la salida de la tarea",
"showOutput": "Mostrar salida",
+ "task.longRunningTaskCompleted": "Tarea finalizada en {0}.",
+ "task.longRunningTaskCompletedWithLabel": "La tarea \"{0}\" finalizó en {1}.",
+ "task.longRunningTaskDurationMinutes": "{0} m",
+ "task.longRunningTaskDurationMinutesSeconds": "{0} min {1} s",
+ "task.longRunningTaskDurationSeconds": "{0} s",
+ "taskEvent": "Tipo de evento de tarea: {0}",
"taskQuickPick.userSettings": "Usuario",
- "taskService.ignoreingFolder": "Ignorando las configuraciones de tareas de la carpeta del área de trabajo {0}. La compatibilidad con tareas del área de trabajo de varias carpetas requiere que todas las carpetas usen la versión de tarea 2.0.0\r\n",
+ "taskService.getSavedTasks": "Capturando tareas del almacenamiento de tareas.",
+ "taskService.getSavedTasks.error": "Error al capturar una tarea del almacenamiento de tareas: {0}.",
+ "taskService.getSavedTasks.reading": "Lectura de las tareas del almacenamiento de tareas, {0}, {1}, {2}",
+ "taskService.getSavedTasks.resolved": "Tarea resuelta {0}",
+ "taskService.getSavedTasks.unresolved": "No se puede resolver la tarea {0} ",
+ "taskService.gettingCachedTasks": "Devolver tareas almacenadas en caché {0}",
+ "taskService.ignoringFolder": "Omitiendo las configuraciones de tareas para la carpeta del área de trabajo {0}. La compatibilidad con tareas del área de trabajo de varias carpetas requiere que todas las carpetas usen la versión de tarea 2.0.0.",
"taskService.openDiff": "Abrir comparación",
"taskService.openDiffs": "Abrir comparaciones",
+ "taskService.removePersistentTask": "Quitando tarea persistente {0}",
+ "taskService.setPersistentTask": "Estableciendo tarea persistente {0}",
"taskService.upgradeVersion": "Se ha eliminado la versión 0.1.0 de las tareas obsoletas. Sus tareas han sido actualizadas a la versión 2.0.0. Abra la comparación para revisar la actualización.",
"taskService.upgradeVersionPlural": "Se ha eliminado la versión 0.1.0 de las tareas obsoletas. Sus tareas han sido actualizadas a la versión 2.0.0. Abra las comparaciones para revisar la actualización.",
"taskServiceOutputPrompt": "Hay errores de tarea. Consulte la salida para obtener más información.",
+ "taskServiceOutputPromptChat": "Hay errores en las tareas. Use el chat para corregirlos o consulte el resultado para obtener más detalles.",
"tasks": "Tareas",
"tasksJsonComment": "\t// Consulte https://go.microsoft.com/fwlink/?LinkId=733558 \r\n\t// para ver la documentación sobre el formato tasks.json",
- "terminateTask": "Finalizar tarea",
+ "troubleshootWithChat": "Corregir con IA",
"unexpectedTaskType": "El proveedor de tareas \"{0}\" ha proporcionado inesperadamente una tarea de tipo \"{1}\".\r\n"
},
"vs/workbench/contrib/tasks/browser/runAutomaticTasks": {
- "allow": "Permitir y ejecutar",
- "disallow": "No permitir",
- "openTask": "Abrir archivo",
- "openTasks": "Abrir archivos",
- "tasks.run.allowAutomatic": "Esta área de trabajo tiene las tareas ({0}) definidas ({1}) que se ejecutan automáticamente al abrir el área de trabajo. ¿Quiere permitir que las tareas automáticas se ejecuten al abrir esta área de trabajo?",
- "workbench.action.tasks.allowAutomaticTasks": "Permitir tareas automáticas en la carpeta",
- "workbench.action.tasks.disallowAutomaticTasks": "No permitir tareas automáticas en carpeta",
- "workbench.action.tasks.manageAutomaticRunning": "Administrar tareas automáticas en carpetas"
+ "workbench.action.tasks.allowAutomaticTasks": "Permitir tareas automáticas",
+ "workbench.action.tasks.disallowAutomaticTasks": "No permitir tareas automáticas",
+ "workbench.action.tasks.manageAutomaticRunning": "Administrar tareas automáticas"
},
"vs/workbench/contrib/tasks/browser/task.contribution": {
"BuildAction.label": "Ejecutar tarea de compilación",
"ConfigureDefaultBuildTask.label": "Configurar tarea de compilación predeterminada",
"ConfigureDefaultTestTask.label": "Configurar tarea de prueba predeterminada",
"ReRunTaskAction.label": "Volver a ejecutar la última tarea",
+ "RerunAllRunningTasksAction.label": "Volver a ejecutar todas las tareas en ejecución",
"RestartTaskAction.label": "Reiniciar la tarea en ejecución",
"RunTaskAction.label": "Ejecutar tarea",
"ShowLogAction.label": "Mostrar registro de tareas",
@@ -8538,19 +14086,19 @@
"miBuildTask": "Ejecutar &&tarea de compilación...",
"miConfigureBuildTask": "Configurar &&tarea de compilación predeterminada...",
"miConfigureTask": "&&Configurar tareas...",
- "miRestartTask": "R&&reiniciar tarea en ejecución...",
+ "miRestartTask": "R&&einiciar tarea en ejecución...",
"miRunTask": "&&Ejecutar tarea...",
"miRunningTask": "Mostrar &&tareas en ejecución...",
"miTerminateTask": "&&Finalizar tarea...",
"numberOfRunningTasks": "{0} tareas en ejecución",
"runningTasks": "Mostrar tareas en ejecución",
"status.runningTasks": "Tareas en ejecución",
+ "task.NotifyWindowOnTaskCompletion": "Controla el tiempo mínimo de ejecución de la tarea en milisegundos antes de mostrar una notificación del sistema operativo cuando la tarea termina y la ventana no está en primer plano. Establézcalo en -1 para deshabilitar las notificaciones. Establézcalo en 0 para mostrar siempre las notificaciones. Esto incluye un distintivo de ventana, así como notificaciones del sistema.",
"task.SaveBeforeRun.prompt": "Pregunta si deben guardarse los editores antes de la ejecución.",
- "task.allowAutomaticTasks": "Habilitar las tareas automáticas en la carpeta.",
- "task.allowAutomaticTasks.auto": "Solicitar permiso para cada carpeta",
+ "task.allowAutomaticTasks": "Habilitar tareas automáticas: tenga en cuenta que las tareas no se ejecutarán en un área de trabajo que no sea de confianza.",
"task.allowAutomaticTasks.off": "Nunca",
+ "task.allowAutomaticTasks.on": "Siempre",
"task.autoDetect": "Controla la habilitación de \"provideTasks\" para toda la extensión del proveedor de tareas. Si el comando Tasks: Run Task es lento, la deshabilitación de la detección automática para los proveedores de tareas puede ayudar. Las extensiones individuales también pueden proporcionar ajustes que deshabiliten la detección automática.",
- "task.experimental.reconnection": "On window reload, reconnect to running watch/background tasks. Note that this is experimental, so you could encounter issues.",
"task.problemMatchers.neverPrompt": "Configura si se debe mostrar el símbolo del sistema del emparejador del problema al ejecutar una tarea. Establézcalo en \"true\" para que no se pregunte nunca, o use un diccionario de tipos de tarea para desactivar la solicitud solo para tipos de tarea específicos.",
"task.problemMatchers.neverPrompt.array": "Objeto que contiene pares de tareas de tipo booleano para no solicitar nunca la activación del buscador de coincidencias de problemas.",
"task.problemMatchers.neverPrompt.boolean": "Establece el comportamiento de la solicitud del buscador de coincidencias de problemas para todas las tareas.",
@@ -8558,24 +14106,25 @@
"task.quickOpen.history": "Controla el número de elementos recientes a los que se hace un seguimiento en el cuadro de diálogo de apertura rápida de la tarea.",
"task.quickOpen.showAll": "Hace que el comando Tareas: Ejecutar tarea use el comportamiento \"Mostrar todo\" más lento en lugar del selector de dos niveles más rápido, en el que las tareas se agrupan por proveedor.",
"task.quickOpen.skip": "Controla si la selección rápida de la tarea se omite cuando solo hay una tarea para elegir.",
+ "task.reconnection": "Al volver a cargar la ventana, vuelva a conectarse a las tareas que tengan buscadores de coincidencias de problemas.",
"task.saveBeforeRun": "Guarda todos los editores con modificaciones antes de ejecutar una tarea.",
"task.saveBeforeRun.always": "Guarda siempre todos los editores antes de la ejecución.",
"task.saveBeforeRun.never": "Nunca guarda los editores antes de la ejecución.",
- "task.showDecorations": "Muestra decoraciones en puntos de interés en el búfer del terminal, como el primer problema encontrado a través de una tarea de inspección. Tenga en cuenta que esto solo surtirá efecto para tareas futuras.",
"task.slowProviderWarning": "Configura si se muestra una advertencia cuando un proveedor es lento",
"task.slowProviderWarning.array": "Matriz de tipos de tareas para no mostrar nunca la advertencia de proveedor lento.",
"task.slowProviderWarning.boolean": "Establece la advertencia acerca de la lentitud del proveedor para todas las tareas.",
+ "task.verboseLogging": "Habilite el registro detallado de las tareas.",
+ "tasks": "Tareas",
"tasksConfigurationTitle": "Tareas",
"tasksQuickAccessHelp": "Ejecutar tarea",
"tasksQuickAccessPlaceholder": "Escriba el nombre de una tarea para ejecutarla.",
- "ttask.allowAutomaticTasks.on": "Siempre",
"workbench.action.tasks.openUserTasks": "Abrir tareas de usuario",
- "workbench.action.tasks.openWorkspaceFileTasks": "Abrir tareas del área de trabajo"
+ "workbench.action.tasks.openWorkspaceFileTasks": "Abrir tareas del área de trabajo",
+ "workbench.action.tasks.rerunForActiveTerminal": "Volver a ejecutar tarea"
},
"vs/workbench/contrib/tasks/browser/taskQuickPick": {
- "TaskQuickPick.changeSettingDetails": "La detección de {0} tareas hace que los archivos de cualquier área de trabajo que abra se ejecuten como código. Activar {0} la detección de tareas es una configuración del usuario y se aplicará a cualquier espacio de trabajo que abra. ¿Desea habilitar {0} la detección de tareas para todos los espacios de trabajo?",
+ "TaskQuickPick.changeSettingDetails": "La detección de tareas de {0} hace que los archivos de cualquier área de trabajo que abra se ejecuten como código. Activar la detección de tareas de {0} es una configuración del usuario y se aplicará a cualquier espacio de trabajo que abra. \r\n\r\n ¿Desea habilitar la detección de tareas de {0} para todos los espacios de trabajo?",
"TaskQuickPick.changeSettingNo": "No",
- "TaskQuickPick.changeSettingYes": "Sí",
"TaskQuickPick.changeSettingsOptions": "La detección de tareas de $(gear) {0} está desactivada. Activar {1} la detección de tareas...",
"TaskQuickPick.goBack": "Volver ↩",
"TaskQuickPick.noTasksForType": "No se han encontrado {0} tareas. Volver ↩",
@@ -8591,6 +14140,13 @@
"taskQuickPick.showAll": "Mostrar todas las tareas...",
"taskType": "Todas las tareas de {0}"
},
+ "vs/workbench/contrib/tasks/browser/taskService": {
+ "taskService.processTaskSystem": "El sistema de tareas de proceso no es compatible en la Web."
+ },
+ "vs/workbench/contrib/tasks/browser/tasksQuickAccess": {
+ "TaskService.pickRunTask": "Seleccionar la tarea que se ejecutará",
+ "noTaskResults": "No hay ninguna tarea coincidente."
+ },
"vs/workbench/contrib/tasks/browser/taskTerminalStatus": {
"task.watchFirstError": "Inicio de errores detectados para esta ejecución",
"taskTerminalStatus.active": "Esta tarea está siendo ejecutada",
@@ -8603,10 +14159,6 @@
"taskTerminalStatus.warnings": "La tarea tiene advertencias",
"taskTerminalStatus.warningsInactive": "La tarea tiene advertencias y está esperando..."
},
- "vs/workbench/contrib/tasks/browser/tasksQuickAccess": {
- "TaskService.pickRunTask": "Seleccionar la tarea que se ejecutará",
- "noTaskResults": "No hay ninguna tarea coincidente."
- },
"vs/workbench/contrib/tasks/browser/terminalTaskSystem": {
"TerminalTaskSystem": "No se puede ejecutar un comando Shell en una unidad UNC mediante cmd.exe.",
"TerminalTaskSystem.nonWatchingMatcher": "La tarea {0} es una tarea en segundo plano, pero utiliza un buscador de coincidencias de problemas sin un patrón en segundo plano",
@@ -8615,46 +14167,14 @@
"closeTerminal": "Pulse cualquier tecla para cerrar el terminal",
"dependencyCycle": "Hay un ciclo de dependencia. Vea la tarea \"{0}\".",
"dependencyFailed": "No se pudo resolver la tarea dependiente '{0}' en la carpeta del área de trabajo '{1}'",
+ "rerunTask": "Volver a ejecutar tarea",
"reuseTerminal": "Las tareas reutilizarán el terminal, presione cualquier tecla para cerrarlo.",
"task.executing": "Ejecutando tarea: {0}",
+ "task.executing.shell-integration": "Ejecutando tarea: {0}",
+ "task.executing.shellIntegration": "Ejecutando tarea: {0}",
"task.executingInFolder": "Ejecutando tarea en la carpeta {0}: {1}",
"unknownProblemMatcher": "No se puede resolver el buscador de coincidencias de problemas {0} y se ignorará"
},
- "vs/workbench/contrib/tasks/common/jsonSchemaCommon": {
- "JsonSchema.args": "Argumentos adicionales que se pasan al comando.",
- "JsonSchema.background": "Indica si la tarea ejecutada se mantiene y está en ejecución en segundo plano.",
- "JsonSchema.command": "El comando que se ejecutará. No puede ser un programa externo o un comando shell.",
- "JsonSchema.echoCommand": "Controla si el comando ejecutado se muestra en la salida. El valor predeterminado es false.",
- "JsonSchema.matchers": "Buscadores de coincidencias de problemas que se van a usar. Puede ser una definición de cadena o de buscador de coincidencias de problemas, o bien una matriz de cadenas y de buscadores de coincidencias de problemas.",
- "JsonSchema.options": "Opciones de comando adicionales",
- "JsonSchema.options.cwd": "Directorio de trabajo actual del script o el programa ejecutado. Si se omite, se usa la raíz del área de trabajo actual de Code.",
- "JsonSchema.options.env": "Entorno del shell o el programa ejecutado. Si se omite, se usa el entorno del proceso primario.",
- "JsonSchema.promptOnClose": "Indica si se pregunta al usuario cuando VS Code se cierra con una tarea en ejecución en segundo plano.",
- "JsonSchema.shell.args": "Argumentos de shell.",
- "JsonSchema.shell.executable": "Shell que se va a usar.",
- "JsonSchema.shellConfiguration": "Configura el shell que se usará.",
- "JsonSchema.showOutput": "Controla si la salida de la tarea en ejecución se muestra o no. Si se omite, se usa \"always\".",
- "JsonSchema.suppressTaskName": "Controla si el nombre de la tarea se agrega como argumento al comando. El valor predeterminado es false.",
- "JsonSchema.taskSelector": "Prefijo para indicar que un argumento es una tarea.",
- "JsonSchema.tasks": "Configuraciones de tarea. Suele enriquecerse una tarea ya definida en el ejecutor de tareas externo.",
- "JsonSchema.tasks.args": "Argumentos pasados al comando cuando se invocó la tarea.",
- "JsonSchema.tasks.background": "Si la tarea ejecutada se mantiene activa y se ejecuta en segundo plano.",
- "JsonSchema.tasks.build": "Asigna esta tarea al comando de compilación predeterminado de Code.",
- "JsonSchema.tasks.linux": "Configuración de comando específico de Linux",
- "JsonSchema.tasks.mac": "Configuración de comando específico de Mac",
- "JsonSchema.tasks.matcherError": "Buscador de coincidencia de problemas no reconocido. ¿Está instalada la extensión que aporta este buscador?",
- "JsonSchema.tasks.matchers": "Los buscadores de coincidencias de problemas que se van a utilizar. Puede ser una cadena o una definición de buscador de coincidencias de problemas o una matriz de cadenas y buscadores de coincidencias de problemas.",
- "JsonSchema.tasks.promptOnClose": "Si se pregunta al usuario cuando VS Code se cierra con una tarea en ejecución.",
- "JsonSchema.tasks.showOutput": "Controla si la salida de la tarea en ejecución se muestra o no. Si se omite, se usa el valor definido globalmente.",
- "JsonSchema.tasks.suppressTaskName": "Controla si el nombre de la tarea se agrega como argumento al comando. Si se omite, se usa el valor definido globalmente.",
- "JsonSchema.tasks.taskName": "El nombre de la tarea",
- "JsonSchema.tasks.test": "Asigna esta tarea al comando de prueba predeterminado de Code.",
- "JsonSchema.tasks.watching": "Indica si la tarea ejecutada se mantiene activa e inspecciona el sistema de archivos.",
- "JsonSchema.tasks.watching.deprecation": "En desuso. Utilice isBackground en su lugar.",
- "JsonSchema.tasks.windows": "Configuración de comando específico de Windows",
- "JsonSchema.watching": "Indica si la tarea ejecutada se mantiene activa e inspecciona el sistema de archivos.",
- "JsonSchema.watching.deprecation": "En desuso. Utilice isBackground en su lugar."
- },
"vs/workbench/contrib/tasks/common/jsonSchema_v1": {
"JsonSchema._runner": "El ejecutor se ha graduado. Use la propiedad del ejecutor oficial correctamente",
"JsonSchema.linux": "Configuración de comandos específicos de Linux",
@@ -8703,6 +14223,12 @@
"JsonSchema.tasks.identifier": "Un identificador definido por el usuario para hacer referencia a la tarea en launch.json o una cláusula dependsOn.",
"JsonSchema.tasks.identifier.deprecated": "Los identificadores definidos por el usuario están en desuso. Para una tarea personalizada, utilice el nombre como referencia y, para tareas proporcionadas por extensiones, utilice el identificador de tarea que tienen definido.",
"JsonSchema.tasks.instanceLimit": "El número de instancias de la tarea que se pueden ejecutar simultáneamente.",
+ "JsonSchema.tasks.instancePolicy": "Directiva que aplicar cuando se alcanza el límite de instancias.",
+ "JsonSchema.tasks.instancePolicy.prompt": "Pregunta qué instancia desea finalizar.",
+ "JsonSchema.tasks.instancePolicy.silent": "No realiza ninguna acción.",
+ "JsonSchema.tasks.instancePolicy.terminateNewest": "Finaliza la instancia más reciente.",
+ "JsonSchema.tasks.instancePolicy.terminateOldest": "Finaliza la instancia más antigua.",
+ "JsonSchema.tasks.instancePolicy.warn": "No hace nada más que advertir que se ha alcanzado el límite de instancias.",
"JsonSchema.tasks.isBuildCommand.deprecated": "La propiedad isBuildCommand está en desuso. Utilice la propiedad group en su lugar. Vea también las notas de la versión 1.14.",
"JsonSchema.tasks.isShellCommand.deprecated": "La propiedad isShellCommand está en desuso. En su lugar, utilice la propiedad type de la tarea y la propiedad shell de las opciones. Vea también las notas de versión 1.14. ",
"JsonSchema.tasks.isTestCommand.deprecated": "La propiedad isTestCommand está en desuso. Utilice la propiedad group en su lugar. Vea también las notas de la versión 1.14.",
@@ -8715,6 +14241,7 @@
"JsonSchema.tasks.presentation.focus": "Controla si el panel recibe el foco. El valor predeterminado es falso. Si se establece a verdadero, el panel además se revela.",
"JsonSchema.tasks.presentation.group": "Controla si la tarea se ejecuta en un grupo de terminales específico usando paneles de división.",
"JsonSchema.tasks.presentation.instance": "Controla si el panel se comparte entre tareas, está dedicado a esta tarea, o se crea uno nuevo por cada ejecución.",
+ "JsonSchema.tasks.presentation.preserveTerminalName": "Controla si se debe conservar el nombre de la tarea en el terminal tras completarla.",
"JsonSchema.tasks.presentation.reveal": "Controla si el terminal que ejecuta la tarea se muestra o no. Puede ser reemplazado por la opción \"revealProblems\". El valor predeterminado es \"always\".",
"JsonSchema.tasks.presentation.reveal.always": "Revela siempre el terminal cuando se ejecuta esta tarea.",
"JsonSchema.tasks.presentation.reveal.never": "No revela nunca el teminal cuando se ejecuta la tarea.",
@@ -8742,6 +14269,41 @@
"JsonSchema.version": "El número de versión de la configuración.",
"JsonSchema.windows": "Configuración de comandos específicos de Windows"
},
+ "vs/workbench/contrib/tasks/common/jsonSchemaCommon": {
+ "JsonSchema.args": "Argumentos adicionales que se pasan al comando.",
+ "JsonSchema.background": "Indica si la tarea ejecutada se mantiene y está en ejecución en segundo plano.",
+ "JsonSchema.command": "El comando que se ejecutará. No puede ser un programa externo o un comando shell.",
+ "JsonSchema.echoCommand": "Controla si el comando ejecutado se muestra en la salida. El valor predeterminado es false.",
+ "JsonSchema.matchers": "Buscadores de coincidencias de problemas que se van a usar. Puede ser una definición de cadena o de buscador de coincidencias de problemas, o bien una matriz de cadenas y de buscadores de coincidencias de problemas.",
+ "JsonSchema.options": "Opciones de comando adicionales",
+ "JsonSchema.options.cwd": "Directorio de trabajo actual del script o el programa ejecutado. Si se omite, se usa la raíz del área de trabajo actual de Code.",
+ "JsonSchema.options.env": "Entorno del shell o el programa ejecutado. Si se omite, se usa el entorno del proceso primario.",
+ "JsonSchema.promptOnClose": "Indica si se pregunta al usuario cuando VS Code se cierra con una tarea en ejecución en segundo plano.",
+ "JsonSchema.shell.args": "Argumentos de shell.",
+ "JsonSchema.shell.executable": "Shell que se va a usar.",
+ "JsonSchema.shellConfiguration": "Configura el shell que se usará.",
+ "JsonSchema.showOutput": "Controla si la salida de la tarea en ejecución se muestra o no. Si se omite, se usa \"always\".",
+ "JsonSchema.suppressTaskName": "Controla si el nombre de la tarea se agrega como argumento al comando. El valor predeterminado es false.",
+ "JsonSchema.taskSelector": "Prefijo para indicar que un argumento es una tarea.",
+ "JsonSchema.tasks": "Configuraciones de tarea. Suele enriquecerse una tarea ya definida en el ejecutor de tareas externo.",
+ "JsonSchema.tasks.args": "Argumentos pasados al comando cuando se invocó la tarea.",
+ "JsonSchema.tasks.background": "Si la tarea ejecutada se mantiene activa y se ejecuta en segundo plano.",
+ "JsonSchema.tasks.build": "Asigna esta tarea al comando de compilación predeterminado de Code.",
+ "JsonSchema.tasks.linux": "Configuración de comando específico de Linux",
+ "JsonSchema.tasks.mac": "Configuración de comando específico de Mac",
+ "JsonSchema.tasks.matcherError": "Buscador de coincidencia de problemas no reconocido. ¿Está instalada la extensión que aporta este buscador?",
+ "JsonSchema.tasks.matchers": "Los buscadores de coincidencias de problemas que se van a utilizar. Puede ser una cadena o una definición de buscador de coincidencias de problemas o una matriz de cadenas y buscadores de coincidencias de problemas.",
+ "JsonSchema.tasks.promptOnClose": "Si se pregunta al usuario cuando VS Code se cierra con una tarea en ejecución.",
+ "JsonSchema.tasks.showOutput": "Controla si la salida de la tarea en ejecución se muestra o no. Si se omite, se usa el valor definido globalmente.",
+ "JsonSchema.tasks.suppressTaskName": "Controla si el nombre de la tarea se agrega como argumento al comando. Si se omite, se usa el valor definido globalmente.",
+ "JsonSchema.tasks.taskName": "El nombre de la tarea",
+ "JsonSchema.tasks.test": "Asigna esta tarea al comando de prueba predeterminado de Code.",
+ "JsonSchema.tasks.watching": "Indica si la tarea ejecutada se mantiene activa e inspecciona el sistema de archivos.",
+ "JsonSchema.tasks.watching.deprecation": "En desuso. Utilice isBackground en su lugar.",
+ "JsonSchema.tasks.windows": "Configuración de comando específico de Windows",
+ "JsonSchema.watching": "Indica si la tarea ejecutada se mantiene activa e inspecciona el sistema de archivos.",
+ "JsonSchema.watching.deprecation": "En desuso. Utilice isBackground en su lugar."
+ },
"vs/workbench/contrib/tasks/common/problemMatcher": {
"LegacyProblemMatcherSchema.watchedBegin": "Expresión regular que señala que una tarea inspeccionada comienza a ejecutarse desencadenada a través de la inspección de archivos.",
"LegacyProblemMatcherSchema.watchedBegin.deprecated": "Esta propiedad está en desuso. Use la propiedad watching.",
@@ -8767,22 +14329,23 @@
"ProblemMatcherParser.unknownSeverity": "Información: Gravedad {0} desconocida. Los valores válidos son error, advertencia e información.\r\n",
"ProblemMatcherSchema.applyTo": "Controla si un problema notificado en un documento de texto se aplica solamente a los documentos abiertos, cerrados o a todos los documentos.",
"ProblemMatcherSchema.background": "Patrones para hacer seguimiento del comienzo y el final en un comprobador activo de la tarea en segundo plano.",
- "ProblemMatcherSchema.background.activeOnStart": "Si se establece en true, el monitor en segundo plano está en modo activo cuando se inicia la tarea. Esto es lo mismo que emitir una línea que coincida con beginsPattern",
+ "ProblemMatcherSchema.background.activeOnStart": "Si se establece en true, el monitor en segundo plano se inicia en modo activo. Esto es lo mismo que generar una línea que coincida con beginsPattern cuando se inicia la tarea.",
"ProblemMatcherSchema.background.beginsPattern": "Si se encuentran coincidencias en la salida, se señala el inicio de una tarea en segundo plano.",
"ProblemMatcherSchema.background.endsPattern": "Si se encuentran coincidencias en la salida, se señala el fin de una tarea en segundo plano.",
"ProblemMatcherSchema.base": "Nombre de un buscador de coincidencias de problemas base que se va a usar.",
- "ProblemMatcherSchema.fileLocation": "Define cómo deben interpretarse los nombres de archivo notificados en un patrón de problema. Un elemento fileLocation relativo puede ser una matriz, donde el segundo elemento de la matriz es la ruta de acceso a la ubicación relativa del archivo.",
+ "ProblemMatcherSchema.fileLocation": "Define cómo se deben interpretar los nombres de archivo notificados en un patrón de problemas. Un fileLocation relativo puede ser una matriz, donde el segundo elemento de la matriz es la ruta de acceso de la ubicación del archivo relativo. El modo fileLocation de búsqueda realiza una búsqueda profunda (y, posiblemente, pesada) del sistema de archivos dentro de los directorios especificados por las propiedades inclusión/exclusión del segundo elemento (o el directorio del área de trabajo actual si no se especifica).",
"ProblemMatcherSchema.owner": "Propietario del problema dentro de Code. Se puede omitir si se especifica \"base\". Si se omite y no se especifica \"base\", el valor predeterminado es \"external\".",
"ProblemMatcherSchema.severity": "Gravedad predeterminada para los problemas de capturas. Se usa si el patrón no define un grupo de coincidencias para \"severity\".",
"ProblemMatcherSchema.source": "Una cadena legible que describe la fuente de este diagnóstico, por ejemplo \"typescript\" o \"super lint\".",
"ProblemMatcherSchema.watching": "Patrones para hacer un seguimiento del comienzo y el final de un patrón de supervisión.",
- "ProblemMatcherSchema.watching.activeOnStart": "Si se establece en true, el monitor está en modo activo cuando la tarea empieza. Esto es equivalente a emitir una línea que coincide con beginPattern",
+ "ProblemMatcherSchema.watching.activeOnStart": "Si se establece en true, el monitor se inicia en modo activo. Esto es lo mismo que generar una línea que coincida con beginsPattern cuando se inicia la tarea.",
"ProblemMatcherSchema.watching.beginsPattern": "Si se encuentran coincidencias en la salida, se señala el inicio de una tarea de inspección.",
"ProblemMatcherSchema.watching.deprecated": "Esta propiedad está en desuso. Use la propiedad en segundo plano.",
"ProblemMatcherSchema.watching.endsPattern": "Si se encuentran coincidencias en la salida, se señala el fin de una tarea de inspección",
"ProblemPatternExtPoint": "Aporta patrones de problemas",
"ProblemPatternParser.invalidRegexp": "Error: La cadena {0} no es una expresión regular válida.\r\n",
"ProblemPatternParser.loopProperty.notLast": "La propiedad loop solo se admite en el buscador de coincidencias de la última línea.",
+ "ProblemPatternParser.problemPattern.emptyPattern": "El patrón del problema no es válido. Debe contener al menos un patrón.",
"ProblemPatternParser.problemPattern.kindProperty.notFirst": "El patrón de problema no es válido. El tipo de propiedad debe proporcionarse solo en el primer elemento.",
"ProblemPatternParser.problemPattern.missingLocation": "El patrón de problema no es válido. Debe tener el tipo \"file\" o un grupo de coincidencias de línea o ubicación.",
"ProblemPatternParser.problemPattern.missingProperty": "El patrón de problema no es válido. Debe tener al menos un archivo y un mensaje.",
@@ -8836,11 +14399,20 @@
"TaskDefinitionExtPoint": "Aporta tipos de tarea",
"TaskTypeConfiguration.noType": "La configuración del tipo de tarea no tiene la propiedad \"taskType\" requerida."
},
+ "vs/workbench/contrib/tasks/common/tasks": {
+ "TaskDefinition.missingRequiredProperty": "Error: al identificador de tarea '{0}' le está faltando la propiedad requerida '{1}'. El identificador de tarea será ignorado. ",
+ "rerunTaskIcon": "Icono de vista de la tarea de volver a ejecutar.",
+ "taskTerminalActive": "Si el terminal activo es un terminal de tareas.",
+ "tasks.taskRunningContext": "Indica si una tarea se está ejecutando actualmente.",
+ "tasksCategory": "Tareas"
+ },
"vs/workbench/contrib/tasks/common/taskService": {
"tasks.customExecutionSupported": "Indica si se admiten las tareas CustomExecution. Se puede usar en la cláusula when de una contribución \"taskDefinition\".",
"tasks.processExecutionSupported": "Indica si se admiten las tareas ProcessExecution. Se puede usar en la cláusula when de una contribución \"taskDefinition\".",
+ "tasks.serverlessWebContext": "True cuando se encuentra en la web sin ninguna autoridad remota.",
"tasks.shellExecutionSupported": "Indica si se admiten las tareas ShellExecution. Se puede usar en la cláusula when de una contribución \"taskDefinition\".",
- "tasks.taskCommandsRegistered": "Si los comandos de tarea se han registrado aún"
+ "tasks.taskCommandsRegistered": "Si los comandos de tarea se han registrado aún",
+ "tasks.tasksAvailable": "Si hay tareas disponibles en el área de trabajo."
},
"vs/workbench/contrib/tasks/common/taskTemplates": {
"Maven": "Ejecuta los comandos comunes de Maven.",
@@ -8848,114 +14420,68 @@
"externalCommand": "Ejemplo para ejecutar un comando arbitrario externo",
"msbuild": "Ejecuta el destino de compilación"
},
- "vs/workbench/contrib/tasks/common/tasks": {
- "TaskDefinition.missingRequiredProperty": "Error: al identificador de tarea '{0}' le está faltando la propiedad requerida '{1}'. El identificador de tarea será ignorado. ",
- "tasks.taskRunningContext": "Indica si una tarea se está ejecutando actualmente.",
- "tasksCategory": "Tareas"
- },
- "vs/workbench/contrib/tasks/electron-sandbox/taskService": {
+ "vs/workbench/contrib/tasks/electron-browser/taskService": {
"TaskSystem.exitAnyways": "&&Salir de todos modos",
"TaskSystem.noProcess": "La tarea iniciada ya no existe. Si la tarea generó procesos en segundo plano al salir de VS Code, puede dar lugar a procesos huérfanos. Para evitarlo, inicie el último proceso en segundo plano con una marca de espera.",
"TaskSystem.runningTask": "Hay una tarea en ejecución. ¿Quiere finalizarla?",
"TaskSystem.terminateTask": "&&Finalizar tarea"
},
+ "vs/workbench/contrib/telemetry/browser/telemetry.contribution": {
+ "showTelemetry": "Mostrar telemetría"
+ },
"vs/workbench/contrib/terminal/browser/baseTerminalBackend": {
- "nonResponsivePtyHost": "La conexión al proceso de host pty del terminal no responde, puede que los terminales dejen de funcionar.",
- "restartPtyHost": "Reiniciar host pty"
+ "nonResponsivePtyHost": "La conexión al proceso de host pty del terminal no responde, puede que los terminales dejen de funcionar. Haga clic para reiniciar el host pty manualmente.",
+ "ptyHostStatus": "Estado del host pty",
+ "ptyHostStatus.ariaLabel": "El host pty no responde",
+ "ptyHostStatus.short": "Host Pty"
},
"vs/workbench/contrib/terminal/browser/environmentVariableInfo": {
- "extensionEnvironmentContributionChanges": "Las extensiones quieren realizar los cambios siguientes en el entorno del terminal:",
- "extensionEnvironmentContributionInfo": "Las extensiones han realizado cambios en el entorno de este terminal.",
- "extensionEnvironmentContributionRemoval": "Las extensiones quieren quitar estos cambios existentes del entorno del terminal:",
- "relaunchTerminalLabel": "Reiniciar el terminal"
- },
- "vs/workbench/contrib/terminal/browser/links/terminalLink": {
- "focusFolder": "Enfocar carpeta en el explorador",
- "openFile": "Abrir archivo en el editor",
- "openFolder": "Abrir carpeta en ventana nueva"
- },
- "vs/workbench/contrib/terminal/browser/links/terminalLinkDetectorAdapter": {
- "focusFolder": "Enfocar carpeta en el explorador",
- "followLink": "Seguir vínculo",
- "openFile": "Abrir archivo en el editor",
- "openFolder": "Abrir carpeta en ventana nueva",
- "searchWorkspace": "Buscar área de trabajo"
- },
- "vs/workbench/contrib/terminal/browser/links/terminalLinkManager": {
- "followForwardedLink": "Seguir el vínculo con el puerto reenviado",
- "followLink": "Seguir vínculo",
- "followLinkUrl": "Vínculo",
- "terminalLinkHandler.followLinkAlt": "alt + clic",
- "terminalLinkHandler.followLinkAlt.mac": "opción + clic",
- "terminalLinkHandler.followLinkCmd": "cmd + clic",
- "terminalLinkHandler.followLinkCtrl": "ctrl + clic"
- },
- "vs/workbench/contrib/terminal/browser/links/terminalLinkQuickpick": {
- "terminal.integrated.localFileLinks": "Archivo local",
- "terminal.integrated.openDetectedLink": "Seleccionar el vínculo que desea abrir",
- "terminal.integrated.searchLinks": "Búsqueda de áreas de trabajo",
- "terminal.integrated.showMoreLinks": "Mostrar más vínculos",
- "terminal.integrated.urlLinks": "Dirección URL"
+ "ScopedEnvironmentContributionInfo": "área de trabajo",
+ "extensionEnvironmentContributionInfoActive": "Las siguientes extensiones han contribuido al entorno de este terminal:",
+ "extensionEnvironmentContributionInfoStale": "Las siguientes extensiones quieren reiniciar el terminal para contribuir a su entorno:",
+ "relaunchTerminalLabel": "Reiniciar el terminal",
+ "showEnvironmentContributions": "Mostrar contribuciones del entorno"
},
"vs/workbench/contrib/terminal/browser/terminal.contribution": {
"miToggleIntegratedTerminal": "&&Terminal",
- "tasksQuickAccessHelp": "Mostrar todos los terminales abiertos",
- "tasksQuickAccessPlaceholder": "Escriba el nombre de un terminal para abrirlo.",
"terminal": "Terminal"
},
"vs/workbench/contrib/terminal/browser/terminalActions": {
"emptyTerminalNameInfo": "Si no se proporciona ningún nombre, se restablecerá al valor predeterminado.",
+ "newWithProfile.location": "Dónde debe crearse el terminal",
+ "newWithProfile.location.editor": "Crear el terminal en el editor",
+ "newWithProfile.location.view": "Crear terminales en la vista de terminal",
"noUnattachedTerminals": "No hay ningún terminal desasociado al que asociarse",
- "quickAccessTerminal": "Cambiar terminal activo",
"showTerminalTabs": "Mostrar pestañas",
"terminalLaunchHelp": "Abrir la Ayuda",
"workbench.action.terminal.attachToSession": "Asociar a la sesión",
"workbench.action.terminal.clear": "Borrar",
- "workbench.action.terminal.clearCommandHistory": "Borrar historial de comandos",
"workbench.action.terminal.clearSelection": "Borrar selección",
- "workbench.action.terminal.copyLastCommand": "Copiar último comando",
- "workbench.action.terminal.copySelection": "Copiar selección",
- "workbench.action.terminal.copySelectionAsHtml": "Copiar la selección como HTML",
"workbench.action.terminal.createTerminalEditor": "Crear nuevo terminal en el área del editor",
"workbench.action.terminal.createTerminalEditorSide": "Crear nuevo terminal a un lado en el área del editor",
"workbench.action.terminal.detachSession": "Desasociar sesión",
- "workbench.action.terminal.findNext": "Buscar siguiente",
- "workbench.action.terminal.findPrevious": "Buscar anterior",
"workbench.action.terminal.focus.tabsView": "Colocar foco sobre la vista de pestañas del terminal",
- "workbench.action.terminal.focusFind": "Foco en la búsqueda",
"workbench.action.terminal.focusNext": "Enfocar siguiente grupo de terminales",
"workbench.action.terminal.focusNextPane": "Enfocar siguiente terminal en el grupo de terminales",
"workbench.action.terminal.focusPrevious": "Enfocar grupo de terminales anterior",
"workbench.action.terminal.focusPreviousPane": "Enfocar terminal anterior en el grupo de terminales",
- "workbench.action.terminal.goToRecentDirectory": "Ir al directorio reciente...",
- "workbench.action.terminal.hideFind": "Ocultar la búsqueda",
- "workbench.action.terminal.join": "Unirse a terminales",
+ "workbench.action.terminal.join": "Unirse a terminales...",
"workbench.action.terminal.join.insufficientTerminals": "Terminales insuficientes para la acción de unión",
"workbench.action.terminal.join.onlySplits": "Todos los terminales ya están unidos",
"workbench.action.terminal.joinInstance": "Unir terminales",
"workbench.action.terminal.kill": "Terminar la instancia del terminal activo",
"workbench.action.terminal.killAll": "Eliminar todos los terminales",
"workbench.action.terminal.killEditor": "Terminar el terminal activo en el área del editor",
- "workbench.action.terminal.navigationModeExit": "Salir del modo de navegación",
- "workbench.action.terminal.navigationModeFocusNext": "Enfocar la siguiente línea (modo de navegación)",
- "workbench.action.terminal.navigationModeFocusNextPage": "Enfocar la página siguiente (modo de navegación)",
- "workbench.action.terminal.navigationModeFocusPrevious": "Enfocar la línea anterior (modo de navegación)",
- "workbench.action.terminal.navigationModeFocusPreviousPage": "Enfocar la página anterior (modo de navegación)",
"workbench.action.terminal.new": "Crear nueva terminal",
"workbench.action.terminal.newInActiveWorkspace": "Crear nuevo terminal (en el área de trabajo activa)",
- "workbench.action.terminal.newWithCwd": "Crear un nuevo terminal integrado comenzando en un directorio de trabajo personalizado",
"workbench.action.terminal.newWithCwd.cwd": "El directorio en el que iniciar el terminal",
"workbench.action.terminal.newWithProfile": "Crear nuevo terminal (con perfil)",
"workbench.action.terminal.newWithProfile.profileName": "Nombre del perfil que se va a crear",
"workbench.action.terminal.newWorkspacePlaceholder": "Seleccione el directorio de trabajo actual para el nuevo terminal",
- "workbench.action.terminal.openDetectedLink": "Abrir vínculo detectado...",
- "workbench.action.terminal.openLastLocalFileLink": "Abrir vínculo del último archivo local",
- "workbench.action.terminal.openLastUrlLink": "Abrir vínculo de la última dirección URL",
"workbench.action.terminal.openSettings": "Configurar valores del terminal",
- "workbench.action.terminal.paste": "Pegar en el terminal activo",
- "workbench.action.terminal.pasteSelection": "Pegar la selección en el terminal activo",
+ "workbench.action.terminal.overriddenCwdDescription": "(Invalidado) {0}",
"workbench.action.terminal.relaunch": "Reiniciar el terminal activo",
- "workbench.action.terminal.renameWithArg": "Cambiar el nombre del terminal actualmente activo",
+ "workbench.action.terminal.rename.prompt": "Introducir nombre del terminal",
"workbench.action.terminal.renameWithArg.name": "El nuevo nombre de la terminal.",
"workbench.action.terminal.renameWithArg.noName": "No se ha proporcionado ningún argumento de nombre",
"workbench.action.terminal.resizePaneDown": "Reducir tamaño de terminal",
@@ -8964,46 +14490,24 @@
"workbench.action.terminal.resizePaneUp": "Aumentar tamaño de terminal",
"workbench.action.terminal.runActiveFile": "Ejecutar el archivo activo en la terminal activa",
"workbench.action.terminal.runActiveFile.noFile": "Solo se pueden ejecutar en la terminal los archivos en disco",
- "workbench.action.terminal.runRecentCommand": "Ejecutar comando reciente...",
"workbench.action.terminal.runSelectedText": "Ejecutar texto seleccionado en el terminal activo",
"workbench.action.terminal.scrollDown": "Desplazar hacia abajo (línea)",
"workbench.action.terminal.scrollDownPage": "Desplazar hacia abajo (página)",
"workbench.action.terminal.scrollToBottom": "Desplazar al final",
- "workbench.action.terminal.scrollToNextCommand": "Desplazar al comando siguiente",
- "workbench.action.terminal.scrollToPreviousCommand": "Desplazar al comando anterior",
"workbench.action.terminal.scrollToTop": "Desplazar al principio",
"workbench.action.terminal.scrollUp": "Desplazar hacia arriba (línea)",
"workbench.action.terminal.scrollUpPage": "Desplazar hacia arriba (página)",
- "workbench.action.terminal.searchWorkspace": "Buscar en área de trabajo",
"workbench.action.terminal.selectAll": "Seleccionar todo",
"workbench.action.terminal.selectDefaultShell": "Seleccionar perfil predeterminado",
"workbench.action.terminal.selectToNextCommand": "Seleccionar hasta el comando siguiente",
- "workbench.action.terminal.selectToNextLine": "Seleccione la línea siguiente",
+ "workbench.action.terminal.selectToNextLine": "Seleccionar hasta línea siguiente",
"workbench.action.terminal.selectToPreviousCommand": "Seleccionar hasta el comando anterior",
- "workbench.action.terminal.selectToPreviousLine": "Seleccione la línea anterior",
- "workbench.action.terminal.sendSequence": "Enviar secuencia personalizada a Terminal",
+ "workbench.action.terminal.selectToPreviousLine": "Seleccionar hasta la línea anterior",
"workbench.action.terminal.setFixedDimensions": "Establecer dimensiones fijas",
- "workbench.action.terminal.showEnvironmentInformation": "Mostrar información del entorno",
- "workbench.action.terminal.showTabs": "Mostrar pestañas",
- "workbench.action.terminal.sizeToContentWidth": "Alternar el tamaño al ancho del contenido",
"workbench.action.terminal.splitInActiveWorkspace": "Dividir Terminal (En el área de trabajo activa)",
- "workbench.action.terminal.switchTerminal": "Cambiar terminal",
- "workbench.action.terminal.toggleEscapeSequenceLogging": "Alternar registro de la secuencia de escape",
- "workbench.action.terminal.toggleFindCaseSensitive": "Alternar la búsqueda con distinción de mayúsculas y minúsculas",
- "workbench.action.terminal.toggleFindRegex": "Alternar la búsqueda mediante regex",
- "workbench.action.terminal.toggleFindWholeWord": "Alternar la búsqueda con toda la palabra",
- "workbench.action.terminal.writeDataToTerminal": "Escribir datos en el terminal",
- "workbench.action.terminal.writeDataToTerminal.prompt": "Escriba los datos para escribir directamente en el terminal, omitiendo el pty"
- },
- "vs/workbench/contrib/terminal/browser/terminalConfigHelper": {
- "install": "Instalar",
- "useWslExtension.title": "Se recomienda la extensión \"{0}\" para abrir un terminal en WSL."
- },
- "vs/workbench/contrib/terminal/browser/terminalDecorationsProvider": {
- "label": "Terminal"
+ "workbench.action.terminal.switchTerminal": "Cambiar terminal"
},
"vs/workbench/contrib/terminal/browser/terminalEditorInput": {
- "cancel": "Cancelar",
"confirmDirtyTerminal.button": "&&Finalizar",
"confirmDirtyTerminal.detail": "Si se cierra, finalizarán los procesos en ejecución en este terminal.",
"confirmDirtyTerminal.message": "¿Quiere terminar los procesos en ejecución?",
@@ -9014,122 +14518,129 @@
"killTerminalIcon": "Icono para terminar una instancia de terminal.",
"newTerminalIcon": "Icono para crear una instancia de terminal.",
"renameTerminalIcon": "Icono para cambiar de nombre en el menú rápido del terminal.",
+ "terminalCommandHistoryFuzzySearch": "Icono para alternar la búsqueda aproximada del historial de comandos.",
+ "terminalCommandHistoryOpenFile": "Icono para abrir un archivo de historial de shell.",
+ "terminalCommandHistoryOutput": "Icono para ver la salida de un comando de terminal.",
+ "terminalCommandHistoryRemove": "Icono para quitar un comando de terminal del historial de comandos.",
+ "terminalDecorationError": "Icono de una decoración terminal de un comando que produjo un error.",
+ "terminalDecorationIncomplete": "Icono de una decoración terminal de un comando que estaba incompleto.",
+ "terminalDecorationMark": "Icono de una marca de decoración de terminal.",
+ "terminalDecorationSuccess": "Icono de una decoración terminal de un comando correcto.",
"terminalViewIcon": "Vea el icono de la vista de terminal."
},
"vs/workbench/contrib/terminal/browser/terminalInstance": {
"bellStatus": "Campana",
+ "changeColor": "Seleccionar un color para el terminal",
"configureTerminalSettings": "Configurar valores del terminal",
- "confirmMoveTrashMessageFilesAndDirectories": "¿Está seguro de que desea pegar {0} líneas de texto en el terminal?",
"disconnectStatus": "Se perdió la conexión con el proceso",
- "doNotAskAgain": "No volver a hacerme esta pregunta",
"keybindingHandling": "Algunos enlaces de teclado no van al terminal de forma predeterminada y los administra {0} en su lugar.",
"launchFailed.errorMessage": "Error del proceso del terminal al iniciarse: {0}.",
"launchFailed.exitCodeAndCommandLine": "Error del proceso del terminal \"{0}\" al iniciarse (código de salida: {1}).",
"launchFailed.exitCodeOnly": "Error del proceso del terminal al iniciarse (código de salida: {0}).",
"launchFailed.exitCodeOnlyShellIntegration": "Deshabilitar la integración del shell en la configuración de usuario puede ser de ayuda.",
- "multiLinePasteButton": "&&Pegar",
- "preview": "Vista previa:",
- "removeCommand": "Quitar del historial de comandos",
- "selectRecentCommand": "Seleccione un comando para ejecutar (mantenga presionada la tecla ALT para editar el comando)",
- "selectRecentCommandMac": "Seleccione un comando para ejecutar (mantenga presionada la tecla Opción para editar el comando)",
- "selectRecentDirectory": "Seleccione un directorio al que ir (mantenga presionada la tecla Alt para editar el comando).",
- "selectRecentDirectoryMac": "Seleccione un directorio al que ir (mantenga presionada la tecla Opción para editar el comando).",
"setTerminalDimensionsColumn": "Establecer dimensiones fijas: columna",
"setTerminalDimensionsRow": "Establecer dimensiones fijas: fila",
- "shellFileHistoryCategory": "Historial de {0}",
"shellIntegration.learnMore": "Más información sobre la integración del shell",
"shellIntegration.openSettings": "Abrir la configuración de usuario",
- "terminal.contiguousSearch": "Usar búsqueda contigua",
- "terminal.fuzzySearch": "Usar búsqueda aproximada",
"terminal.integrated.a11yPromptLabel": "Entrada de terminal",
- "terminal.integrated.a11yTooMuchOutput": "Demasiada salida para anunciarla. Vaya a las filas manualmente para leerlas.",
- "terminal.integrated.copySelection.noSelection": "El terminal no tiene ninguna selección para copiar",
+ "terminal.integrated.useAccessibleBuffer": "Usar el búfer accesible {0} para revisar manualmente la salida",
+ "terminal.integrated.useAccessibleBufferNoKb": "Usa el comando Terminal: Enfocar búfer accesible para revisar manualmente la salida",
"terminal.requestTrust": "La creación de un proceso de terminal requiere la ejecución de código",
- "terminalNavigationMode": "Use {0} y {1} para navegar por el búfer de terminal",
+ "terminalHelpAriaLabel": "Use {0} para obtener ayuda de accesibilidad del terminal.",
+ "terminalScreenReaderMode": "Ejecutar el comando: alternar el modo de accesibilidad del lector de pantalla para obtener una experiencia optimizada del lector de pantalla",
"terminalStaleTextBoxAriaLabel": "El entorno del terminal {0} está obsoleto. Ejecute el comando \"Mostrar información del entorno\" para obtener más información",
"terminalTextBoxAriaLabel": "Terminal {0}",
"terminalTextBoxAriaLabelNumberAndTitle": "Terminal {0}, {1}",
- "terminalTypeLocal": "Local",
- "terminalTypeTask": "Tarea",
"terminated.exitCodeAndCommandLine": "El proceso del terminal \"{0}\" finalizó con el código de salida {1}.",
"terminated.exitCodeOnly": "El proceso del terminal finalizó con el código de salida {0}.",
- "viewCommandOutput": "Ver salida de comando",
- "workbench.action.terminal.rename.prompt": "Introducir nombre del terminal",
"workspaceNotTrustedCreateTerminal": "No se puede iniciar un proceso de terminal en un área de trabajo que no es de confianza",
"workspaceNotTrustedCreateTerminalCwd": "No se puede iniciar un proceso de terminal en un área de trabajo que no es de confianza con cwd {0} y userHome {1}"
},
- "vs/workbench/contrib/terminal/browser/terminalMainContribution": {
- "ptyHost": "Pty Host"
- },
"vs/workbench/contrib/terminal/browser/terminalMenus": {
"defaultTerminalProfile": "{0} (valor predeterminado)",
+ "launchProfile": "Perfil de inicio...",
+ "miNewInNewWindow": "Nueva &&ventana del terminal",
"miNewTerminal": "&&Nuevo terminal",
"miRunActiveFile": "Ejecutar &&archivo activo",
"miRunSelectedText": "Ejecutar &&texto seleccionado",
"miSplitTerminal": "&&Dividir terminal",
- "splitTerminal": "Dividir terminal",
- "terminal.new": "Nuevo terminal",
+ "split.profile": "Dividir terminal con perfil",
+ "workbench.action.tasks.configureTaskRunner": "Configurar tareas...",
+ "workbench.action.tasks.runTask": "Ejecutar tarea...",
"workbench.action.terminal.changeColor": "Cambiar color...",
"workbench.action.terminal.changeIcon": "Cambiar icono...",
"workbench.action.terminal.clear": "Borrar",
+ "workbench.action.terminal.clearLong": "Borrar terminal",
"workbench.action.terminal.copySelection.short": "Copiar",
"workbench.action.terminal.copySelectionAsHtml": "Copiar como HTML",
"workbench.action.terminal.joinInstance": "Unir terminales",
- "workbench.action.terminal.new.short": "Nuevo terminal",
- "workbench.action.terminal.newWithProfile.short": "Nuevo terminal con perfil",
+ "workbench.action.terminal.newWithProfile.short": "Nuevo terminal con perfil...",
"workbench.action.terminal.openSettings": "Configurar valores del terminal",
"workbench.action.terminal.paste.short": "Pegar",
"workbench.action.terminal.renameInstance": "Cambiar nombre...",
+ "workbench.action.terminal.runActiveFile": "Ejecutar el archivo activo",
+ "workbench.action.terminal.runSelectedText": "Ejecutar el texto seleccionado",
"workbench.action.terminal.selectAll": "Seleccionar todo",
"workbench.action.terminal.selectDefaultProfile": "Seleccionar perfil predeterminado",
- "workbench.action.terminal.showsTabs": "Mostrar pestañas",
- "workbench.action.terminal.sizeToContentWidthInstance": "Alternar el tamaño al ancho del contenido",
+ "workbench.action.terminal.startVoice": "Iniciar dictado",
+ "workbench.action.terminal.startVoiceEditor": "Iniciar dictado",
+ "workbench.action.terminal.stopVoice": "Detener dictado",
+ "workbench.action.terminal.stopVoiceEditor": "Detener dictado",
"workbench.action.terminal.switchTerminal": "Cambiar terminal"
},
"vs/workbench/contrib/terminal/browser/terminalProcessManager": {
+ "killportfailure": "No se pudo terminar la escucha del proceso en el puerto {0}. El comando se cerró con el error {1}",
"ptyHostRelaunch": "Reiniciando el terminal porque se perdió la conexión con el proceso del shell..."
},
"vs/workbench/contrib/terminal/browser/terminalProfileQuickpick": {
"ICreateContributedTerminalProfileOptions": "contribuido",
+ "cancel": "Cancelar",
"createQuickLaunchProfile": "Configurar un perfil de terminal",
"enterTerminalProfileName": "Escribir el nombre del perfil de terminal",
"terminal.integrated.chooseDefaultProfile": "Seleccionar el perfil de terminal predeterminado",
"terminal.integrated.selectProfileToCreate": "Seleccionar el perfil de terminal que se va a crear",
"terminalProfileAlreadyExists": "Ya existe un perfil de terminal con ese nombre.",
"terminalProfiles": "perfiles",
- "terminalProfiles.detected": "detectado"
- },
- "vs/workbench/contrib/terminal/browser/terminalProfileResolverService": {
- "migrateToProfile": "Migrar",
- "terminalProfileMigration": "El terminal usa la configuración de Shell/shellArgs en desuso, ¿quiere migrarlo a un perfil?"
- },
- "vs/workbench/contrib/terminal/browser/terminalQuickAccess": {
- "renameTerminal": "Cambiar nombre del terminal",
- "workbench.action.terminal.newWithProfilePlus": "Crear nuevo terminal con perfil",
- "workbench.action.terminal.newplus": "Crear nueva terminal"
+ "terminalProfiles.detected": "detectado",
+ "unsafePathWarning": "Este perfil de terminal usa una ruta de acceso potencialmente no segura que otro usuario podría modificar: {0}. ¿Está seguro de que desea usarlo?",
+ "yes": "Sí"
},
"vs/workbench/contrib/terminal/browser/terminalService": {
"localTerminalRemote": "Este shell se está ejecutando en la máquina {1}local{0}, NO en la máquina remota conectada.",
"localTerminalVirtualWorkspace": "Este shell está abierto en una carpeta {0}local{1}, NO en la carpeta virtual",
"terminalService.terminalCloseConfirmationPlural": "¿Desea finalizar las {0} sesiones de terminal activas?",
"terminalService.terminalCloseConfirmationSingular": "¿Desea finalizar la sesión de terminal activa?",
- "terminate": "Finalizar"
+ "terminate": "&&Finalizar"
},
"vs/workbench/contrib/terminal/browser/terminalTabbedView": {
"hideTabs": "Ocultar pestañas",
"moveTabsLeft": "Mover pestañas a la izquierda",
"moveTabsRight": "Mover pestañas a la derecha"
},
+ "vs/workbench/contrib/terminal/browser/terminalTabsChatEntry": {
+ "terminal.tabs.chatEntryAriaLabelPlural": "Mostrar {0} terminales de chat ocultos",
+ "terminal.tabs.chatEntryAriaLabelSingle": "Mostrar 1 terminal de chat ocultos",
+ "terminal.tabs.chatEntryLabelPlural": "{0} terminales ocultos",
+ "terminal.tabs.chatEntryLabelSingle": "{0} terminal oculto",
+ "terminal.tabs.chatEntryTooltip": "Ver terminales de chat ocultos"
+ },
"vs/workbench/contrib/terminal/browser/terminalTabsList": {
+ "label": "Terminal",
"splitTerminalAriaLabel": "Terminal {0} {1}, dividir {2} de {3}",
"terminal.tabs": "Pestañas del terminal",
"terminalAriaLabel": "Terminal {0} {1}",
"terminalInputAriaLabel": "Escriba el nombre del terminal. Presione Entrar para confirmar o Esc para cancelar."
},
"vs/workbench/contrib/terminal/browser/terminalTooltip": {
- "launchFailed.exitCodeOnlyShellIntegration": "No se pudo iniciar el proceso de terminal. Deshabilitar la integración del shell con terminal.integrated.shellIntegration.enabled puede ayudar.",
- "shellIntegration.activationFailed": "No se pudo activar la integración del shell",
- "shellIntegration.enabled": "Integración de shell activada"
+ "hideDetails": "Ocultar detalles",
+ "shellIntegration": "Integración de shell",
+ "shellIntegration.basic": "Básico",
+ "shellIntegration.injectionFailed": "No se pudo activar la inserción",
+ "shellIntegration.no": "No",
+ "shellIntegration.rich": "Enriquecido",
+ "shellProcessTooltip.commandLine": "Línea de comandos: {0}",
+ "shellProcessTooltip.processId": "Id. del proceso ({0}): {1}",
+ "showDetails": "Mostrar detalles"
},
"vs/workbench/contrib/terminal/browser/terminalView": {
"terminal.monospaceOnly": "El terminal solo admite fuentes monoespaciales. Reinicie VS Code si se trata de una fuente recién instalada.",
@@ -9138,41 +14649,48 @@
"terminals": "Abrir terminales."
},
"vs/workbench/contrib/terminal/browser/xterm/decorationAddon": {
- "changeDefaultIcon": "Cambiar icono predeterminado",
- "changeErrorIcon": "Cambiar icono de error",
- "changeSuccessIcon": "Icono de cambio correcto",
"gutter": "Decoraciones de comandos de medianil",
+ "no": "No",
"overviewRuler": "Decoración de comandos de regla general",
- "terminal.configureCommandDecorations": "Configurar decoraciones de comandos",
+ "rerun": "Deseas ejecutar el comando: {0}",
+ "terminal.attachToChat": "Adjuntar al chat",
"terminal.copyCommand": "Copiar comando",
+ "terminal.copyCommandAndOutput": "Copiar comando y salida",
"terminal.copyOutput": "Copiar salida",
"terminal.copyOutputAsHtml": "Copiar salida como HTML",
"terminal.learnShellIntegration": "Más información sobre la integración de Shell",
"terminal.rerunCommand": "Volver a ejecutar el comando",
+ "toggleVisibility": "Alternar visibilidad",
+ "workbench.action.terminal.goToRecentDirectory": "Ir al directorio reciente...",
+ "workbench.action.terminal.runRecentCommand": "Ejecutar comando reciente",
+ "workbench.action.terminal.toggleVisibility": "Alternar visibilidad",
+ "yes": "Sí"
+ },
+ "vs/workbench/contrib/terminal/browser/xterm/decorationStyles": {
+ "terminalCommandDecoration.running": "En ejecución",
+ "terminalCommandDecoration.unknown": "Desconocido",
"terminalPromptCommandFailed": "El comando se ejecutó {0} y no se pudo ejecutar",
+ "terminalPromptCommandFailed.duration": "El comando ejecutó {0}, tardó {1} y falló",
"terminalPromptCommandFailedWithExitCode": "El comando se ejecutó {0} y no se pudo ejecutar (código de salida {1})",
- "terminalPromptCommandSuccess": "Comando ejecutado {0}",
- "terminalPromptContextMenu": "Mostrar acciones de comando",
- "toggleVisibility": "Alternar visibilidad"
+ "terminalPromptCommandFailedWithExitCode.duration": "El comando ejecutó {0}, tardó {1} y falló (código de salida {2})",
+ "terminalPromptCommandSuccess": "Comando ejecutado {0} ahora",
+ "terminalPromptCommandSuccess.": "Comando ejecutado {0} ",
+ "terminalPromptCommandSuccess.duration": "El comando ejecutó {0} y tardó {1}",
+ "terminalPromptContextMenu": "Mostrar acciones de comando"
},
"vs/workbench/contrib/terminal/browser/xterm/xtermTerminal": {
- "dontShowAgain": "No mostrar de nuevo",
- "no": "No",
- "terminal.slowRendering": "La aceleración de GPU del terminal parece ser lenta en su equipo. ¿Le gustaría cambiar para deshabilitarlo, lo cual podría mejorar el rendimiento? [Obtenga más información sobre la configuración del terminal](https://code.visualstudio.com/docs/editor/integrated-terminal#_changing-how-the-terminal-is-rendered).",
- "yes": "Sí"
+ "terminal.integrated.copySelection.noSelection": "El terminal no tiene ninguna selección para copiar"
},
"vs/workbench/contrib/terminal/common/terminal": {
- "terminalCategory": "Terminal",
"vscode.extension.contributes.terminal": "Aporta funcionalidad de terminal.",
+ "vscode.extension.contributes.terminal.completionProviders": "Define los proveedores de finalización del terminal que se registrarán cuando se active la extensión.",
+ "vscode.extension.contributes.terminal.completionProviders.description": "Descripción de lo que hace el proveedor de finalización. Se mostrará en la interfaz de usuario de configuración.",
"vscode.extension.contributes.terminal.profiles": "Define los otros perfiles de terminal que puede crear el usuario.",
"vscode.extension.contributes.terminal.profiles.id": "El identificador del proveedor de perfiles de terminal.",
"vscode.extension.contributes.terminal.profiles.title": "Título de este perfil de terminal.",
- "vscode.extension.contributes.terminal.types": "Define los tipos de terminal adicionales que el usuario puede crear.",
- "vscode.extension.contributes.terminal.types.command": "Comando que se va a ejecutar cuando el usuario cree este tipo de terminal.",
"vscode.extension.contributes.terminal.types.icon": "Un codicon, un URI o URI claros y oscuros para asociar a este tipo de terminal.",
"vscode.extension.contributes.terminal.types.icon.dark": "Ruta de icono cuando se usa un tema oscuro",
- "vscode.extension.contributes.terminal.types.icon.light": "Ruta del icono cuando se usa un tema ligero",
- "vscode.extension.contributes.terminal.types.title": "Título para este tipo de terminal."
+ "vscode.extension.contributes.terminal.types.icon.light": "Ruta del icono cuando se usa un tema ligero"
},
"vs/workbench/contrib/terminal/common/terminalColorRegistry": {
"terminal.ansiColor": "color ANSI ' {0} ' en el terminal.",
@@ -9184,6 +14702,8 @@
"terminal.findMatchHighlightBackground": "Color de las otras coincidencias de búsqueda en el terminal. El color no debe ser opaco para no ocultar el contenido del terminal subyacente.",
"terminal.findMatchHighlightBorder": "Color de borde de las otras coincidencias de búsqueda en el terminal.",
"terminal.foreground": "El color de primer plano del terminal.",
+ "terminal.hoverHighlightBackground": "Destacar debajo de la palabra para la que se muestra un mensaje al mantener el mouse. El color no debe ser opaco para no ocultar decoraciones subyacentes.",
+ "terminal.inactiveSelectionBackground": "Color de fondo de selección del terminal cuando no tiene foco.",
"terminal.selectionBackground": "Color de fondo de selección del terminal.",
"terminal.selectionForeground": "Color de primer plano de la selección del terminal. Cuando sea null, se conservará el primer plano de la selección y se aplicará la característica de relación de contraste mínimo.",
"terminal.tab.activeBorder": "Borde en el lateral de la pestaña Terminal del panel. El valor predeterminado es tab.activeBorder.",
@@ -9192,40 +14712,52 @@
"terminalCommandDecoration.successBackground": "Color de fondo de decoración del comando del terminal para comandos correctos.",
"terminalCursor.background": "Color de fondo del cursor del terminal. Permite personalizar el color de un carácter solapado por un cursor de bloque.",
"terminalCursor.foreground": "Color de primer plano del cursor del terminal.",
+ "terminalInitialHintForeground": "Color de primer plano de la sugerencia inicial del terminal.",
+ "terminalOverviewRuler.border": "Color del borde izquierdo de la regla de información general.",
"terminalOverviewRuler.cursorForeground": "El color del cursor de la regla de información general.",
"terminalOverviewRuler.findMatchHighlightForeground": "Color del marcador de regla de información general para buscar coincidencias en el terminal."
},
"vs/workbench/contrib/terminal/common/terminalConfiguration": {
- "cwd": "el directorio de trabajo actual del terminal",
+ "cwd": "el directorio de trabajo actual del terminal.",
"cwdFolder": "el directorio de trabajo actual del terminal, que se muestra para las áreas de trabajo de múltiples raíces o en una única área de trabajo raíz cuando el valor difiere del directorio de trabajo inicial. En Windows, esto solo se mostrará cuando la integración de shell esté habilitada.",
- "local": "indica un terminal local en un área de trabajo remota",
+ "enableFileLinks.notRemote": "Habilitar solo cuando no está en un área de trabajo remota.",
+ "enableFileLinks.off": "Siempre desactivado.",
+ "enableFileLinks.on": "Siempre activado.",
+ "hideOnStartup.always": "Ocultar siempre el terminal, incluso cuando haya sesiones persistentes restauradas.",
+ "hideOnStartup.never": "No ocultar nunca la vista de terminal al iniciar.",
+ "hideOnStartup.whenEmpty": "Ocultar el terminal solo cuando no haya sesiones persistentes restauradas.",
+ "local": "indica un terminal local en un área de trabajo remota.",
"openDefaultSettingsJson": "abrir el archivo JSON de configuración predeterminada",
"openDefaultSettingsJson.capitalized": "Abrir la configuración predeterminada (JSON)",
- "process": "el nombre del proceso de terminal",
- "separator": "un separador condicional (\" - \") que solo se muestra cuando está rodeado por variables con valores o texto estático.",
- "sequence": "el nombre proporcionado al terminal por el proceso",
- "task": "indica que este terminal está asociado a una tarea",
+ "process": "el nombre del proceso del terminal.",
+ "progress": "el estado de progreso informado por la secuencia `OSC 9;4`.",
+ "separator": "separador {0} condicional que solo se muestra cuando está rodeado por variables con valores o texto estático.",
+ "sequence": "el nombre proporcionado al terminal por el proceso.",
+ "shellCommand": "el comando que se ejecuta según la integración del shell. Esto también requiere una confianza alta en la línea de comandos detectada, que puede que no funcione en algunos marcos de indicaciones.",
+ "shellPromptInput": "la entrada de la indicación completa del shell según la integración del shell.",
+ "shellType": "el tipo de shell detectado.",
+ "task": "indica que este terminal está asociado a una tarea.",
"terminal.integrated.allowChords": "Indica si se permiten o no los enlaces de teclado de presión simultánea en el terminal. Tenga en cuenta que cuando es true y la pulsación de tecla da como resultado una presión simultánea, se omitirá {0}, establecer este valor en false resulta particularmente útil cuando quiere que ctrl+k vaya al shell (no a VS Code).",
"terminal.integrated.allowMnemonics": "Indica si se va a permitir que las teclas de acceso de la barra de menús (por ejemplo, Alt+F) desencadenen la apertura de dicha barra. Tenga en cuenta que esto hará que todas las pulsaciones de teclas Alt omitan el shell cuando el valor es true. Esta acción no hace nada en macOS.",
+ "terminal.integrated.allowedLinkSchemes": "Matriz de cadenas que contiene los esquemas URI para los que el terminal puede abrir vínculos. De forma predeterminada, solo se permite un pequeño subconjunto de esquemas posibles por razones de seguridad.",
"terminal.integrated.altClickMovesCursor": "Si se habilita, al hacer Alt/opción + clic se cambiará la posición del cursor de mensaje debajo del mouse cuando {0} esté establecido en {1} (valor predeterminado). En función del shell, puede que esto no funcione de forma confiable.",
- "terminal.integrated.autoReplies": "Un conjunto de mensajes a los que se responderá automáticamente cuando se encuentre en el terminal. Siempre que el mensaje sea lo suficientemente específico, esto puede ayudar a automatizar las respuestas comunes.\r\n\r\nNotas:\r\n\r\n: use {0} para responder automáticamente a la solicitud de finalización del trabajo por lotes en Windows.\r\n: el mensaje incluye secuencias de escape para que la respuesta no se produzca con texto con estilo.\r\n: cada respuesta solo puede producirse una vez cada segundo.\r\n: use {1} en la respuesta para indicar la tecla Entrar.\r\n: para anular la configuración de una clave predeterminada, establezca el valor en NULL.\r\n: reinicie VS Code si no se aplica el nuevo.",
- "terminal.integrated.autoReplies.reply": "Respuesta que se enviará al proceso.",
"terminal.integrated.bellDuration": "Número de milisegundos que se mostrará la campana en una pestaña del terminal cuando se desencadene.",
"terminal.integrated.commandsToSkipShell": "Conjunto de identificadores de comando cuyos enlaces de teclado no se enviarán al shell, sino que siempre se controlarán con VS Code. Esto permite que los enlaces de teclado que normalmente consumiría el shell actúen igual que cuando el terminal no tiene el foco; por ejemplo, \"Ctrl+P\" para iniciar Quick Open.\r\n\r\n \r\n\r\n Muchos comandos se omiten de forma predeterminada. Para reemplazar un valor predeterminado y pasar mejor al shell el enlace de teclado de dicho comando, agregue el comando precedido por el carácter \"-\". Por ejemplo, agregue \"-workbench.action.quickOpen\" para que \"Ctrl+P\" llegue al shell.\r\n\r\n \r\n\r\n La siguiente lista de comandos omitidos predeterminados se trunca cuando se visualiza en el editor de configuraciones. Para ver la lista completa, {1} y busque el primer comando de la lista siguiente.\r\n\r\n \r\n\r\nComandos omitidos predeterminados:\r\n\r\n{0}",
- "terminal.integrated.confirmOnExit": "Controla si se debe confirmar cuándo se cierra la ventana si hay sesiones de terminal activas.",
+ "terminal.integrated.confirmOnExit": "Controla si se confirma cuándo se cierra la ventana si hay sesiones de terminal activas. Los terminales en segundo plano como los iniciados por algunas extensiones no desencadenarán la confirmación.",
"terminal.integrated.confirmOnExit.always": "Confirmar siempre si hay terminales.",
"terminal.integrated.confirmOnExit.hasChildProcesses": "Confirme si hay algún terminal que tenga procesos secundarios.",
"terminal.integrated.confirmOnExit.never": "No confirmar nunca.",
- "terminal.integrated.confirmOnKill": "Controla si se debe confirmar la terminación de los terminales cuando tengan procesos secundarios. Cuando se establece en el editor, los terminales del área del editor se marcarán como modificados cuando tengan procesos secundarios. Tenga en cuenta que es posible que la detección de procesos secundarios no funcione bien para shells como Git Bash, que no ejecutan sus procesos como procesos secundarios del shell.",
+ "terminal.integrated.confirmOnKill": "Controla si se debe confirmar la terminación de los terminales cuando tengan procesos secundarios. Cuando se establece en el editor, los terminales del área del editor se marcarán como modificados cuando tengan procesos secundarios. Tenga en cuenta que es posible que la detección de procesos secundarios no funcione bien para shells como Git Bash, que no ejecutan sus procesos como procesos secundarios del shell. Los terminales en segundo plano como los iniciados por algunas extensiones no desencadenarán la confirmación.",
"terminal.integrated.confirmOnKill.always": "Confirma si el terminal está en el editor o en el panel.",
"terminal.integrated.confirmOnKill.editor": "Confirme si el terminal está en el editor.",
"terminal.integrated.confirmOnKill.never": "No confirmar nunca.",
"terminal.integrated.confirmOnKill.panel": "Confirme si el terminal está en el panel.",
"terminal.integrated.copyOnSelection": "Controla si el texto seleccionado en el terminal se copiará en el Portapapeles.",
"terminal.integrated.cursorBlinking": "Controla si el cursor del terminal parpadea.",
- "terminal.integrated.cursorStyle": "Controla el estilo de cursor del terminal.",
+ "terminal.integrated.cursorStyle": "Controla el estilo del cursor del terminal cuando el terminal tiene el foco.",
+ "terminal.integrated.cursorStyleInactive": "Controla el estilo del cursor del terminal cuando el terminal no tiene el foco.",
"terminal.integrated.cursorWidth": "Controla el ancho del cursor cuando {0} se establece en {1}.",
- "terminal.integrated.customGlyphs": "Indica si se deben dibujar glifos personalizados para los caracteres de dibujo de elementos de bloque y cuadros en lugar de usar la fuente, lo que normalmente produce una mejor representación con líneas continuas. Tenga en cuenta que esto no funciona con el representador DOM",
+ "terminal.integrated.customGlyphs": "Indica si se deben dibujar glifos personalizados para los caracteres de dibujo de elementos de bloque y cuadros en lugar de usar la fuente, lo que normalmente produce una mejor representación con líneas continuas. Ten en cuenta que esto no funciona cuando {0} está deshabilitado.",
"terminal.integrated.cwd": "Una ruta de acceso de inicio explícita en la que se iniciará el terminal; se usa como el directorio de trabajo actual (cwd) para el proceso de shell. Puede resultar especialmente útil en una configuración de área de trabajo si la raíz de directorio no es un cwd práctico.",
"terminal.integrated.defaultLocation": "Controla dónde aparecerán los terminales recién creados.",
"terminal.integrated.defaultLocation.editor": "Crear terminales en el editor",
@@ -9234,70 +14766,81 @@
"terminal.integrated.detectLocale.auto": "Establezca la variable de entorno \"$LANG\" si la variable no existe o no termina en \"'.UTF-8'\".",
"terminal.integrated.detectLocale.off": "No establezca la variable de entorno \"$LANG\".",
"terminal.integrated.detectLocale.on": "Establezca siempre la variable de entorno \"$LANG\".",
+ "terminal.integrated.developer.devMode": "Active el modo para desarrolladores para el terminal. Esto muestra información adicional de depuración y visualizaciones para las secuencias de integración de shell.",
+ "terminal.integrated.developer.ptyHost.latency": "Latencia simulada en milisegundos aplicada a todas las llamadas realizadas al host pty. Esto es útil para probar el comportamiento del terminal en condiciones de mucha latencia.",
+ "terminal.integrated.developer.ptyHost.startupDelay": "Retraso de inicio simulado en milisegundos para el proceso del host pty. Esto es útil para probar la inicialización del terminal en condiciones de arranque lento.",
"terminal.integrated.drawBoldTextInBrightColors": "Controla si el texto en negrita del terminal usará siempre la variante de color de ANSI \"bright\".",
- "terminal.integrated.enableBell": "Controla si el timbre de la terminal está habilitado, esto se muestra como un timbre visual junto al nombre del terminal.",
- "terminal.integrated.enableFileLinks": "Indica si se van a habilitar los vínculos de archivo en el terminal. Los vínculos pueden ser lentos al funcionar en una unidad de red en particular, ya que cada vínculo de archivo se comprueba en el sistema de archivos. Si se cambia, solo tendrá efecto en los nuevos terminales.",
- "terminal.integrated.enableMultiLinePasteWarning": "Muestra un cuadro de diálogo de advertencia al pegar varias líneas en el terminal. El cuadro de diálogo no muestra cuando:\r\n\r\n- El modo de pegado entre corchetes está habilitado (el shell admite pegar varias líneas de forma nativa)\r\n- La línea de lectura del shell controla el pegado (en el caso de pwsh)",
+ "terminal.integrated.enableBell": "Esto está en desuso. En su lugar, use las configuraciones \"terminal.integrated.enableVisualBell\" y \"accessibility.signals.terminalBell\".",
+ "terminal.integrated.enableFileLinks": "Indica si se deben habilitar los vínculos de archivo en los terminales. Los vínculos pueden ser lentos cuando se trabaja en una unidad de red en particular porque cada vínculo de archivo se comprueba en el sistema de archivos. Cambiar esto solo surtirá efecto en los terminales nuevos.",
+ "terminal.integrated.enableImages": "Habilita la compatibilidad con imágenes en el terminal. Esto solo funcionará cuando {0} esté habilitado. Los protocolos de imagen en línea de Sixel e iTerm se admiten en Linux y macOS. Esto solo funcionará en Windows para las versiones de ConPTY >= v2 que se envían con Windows, consulte también {1}. Actualmente, las imágenes no se restaurarán entre recargas o reconectaciones de ventana.",
+ "terminal.integrated.enableMultiLinePasteWarning": "Controla si se muestra un cuadro de diálogo de advertencia al pegar varias líneas en el terminal.",
+ "terminal.integrated.enableMultiLinePasteWarning.always": "Mostrar siempre la advertencia si el texto contiene una nueva línea.",
+ "terminal.integrated.enableMultiLinePasteWarning.auto": "Habilitar la advertencia, pero no mostrarla cuando:\r\n\r\n- El modo de pegado entre corchetes esté habilitado (el shell admite pegar varias líneas de forma nativa)\r\n- La línea de lectura del shell controle el pegado (en el caso de pwsh)",
+ "terminal.integrated.enableMultiLinePasteWarning.never": "No mostrar nunca la advertencia.",
"terminal.integrated.enablePersistentSessions": "Conservar las sesiones de terminal o el historial del área de trabajo entre recargas de ventana.",
+ "terminal.integrated.enableVisualBell": "Controla si la campana de terminal está habilitada. Se muestra junto al nombre del terminal.",
"terminal.integrated.env.linux": "Objeto con variables de entorno que se agregarán al proceso de VS Code que el terminal va a usar en Linux. Establézcalo en \"null\" para eliminar la variable de entorno.",
"terminal.integrated.env.osx": "Objeto con variables de entorno que se agregarán al proceso de VS Code que el terminal va a usar en macOS. Establézcalo en \"null\" para eliminar la variable de entorno.",
"terminal.integrated.env.windows": "Objeto con variables de entorno que se agregarán al proceso de VS Code que el terminal va a usar en Windows. Establézcalo en \"null\" para eliminar la variable de entorno.",
- "terminal.integrated.environmentChangesIndicator": "Indica si se va a mostrar el indicador de cambios del entorno en cada terminal, que explica si las extensiones han realizado o quieren realizar cambios en el entorno del terminal.",
- "terminal.integrated.environmentChangesIndicator.off": "Deshabilite el indicador.",
- "terminal.integrated.environmentChangesIndicator.on": "Habilite el indicador.",
- "terminal.integrated.environmentChangesIndicator.warnonly": "Mostrar solo el indicador de advertencia cuando el entorno de un terminal está \"obsoleto\", no el indicador de información que muestra que una extensión ha modificado el entorno de un terminal.",
- "terminal.integrated.environmentChangesRelaunch": "Indica si se deben reiniciar los terminales de forma automática en caso de que la extensión quiera contribuir a su entorno y aún no se haya interactuado con ellos.",
+ "terminal.integrated.environmentChangesRelaunch": "Indica si se deben reiniciar los terminales de forma automática en caso de que las extensiones quieran contribuir a su entorno y aún no se haya interactuado con ellos.",
"terminal.integrated.fastScrollSensitivity": "Desplazamiento del multiplicador de velocidad al presionar \"Alt\".",
- "terminal.integrated.fontFamily": "Controla la familia de fuentes del terminal, que está establecida de forma predeterminada en el valor de {0}.",
+ "terminal.integrated.focusAfterRun": "Controla si el terminal, el búfer accesible o ninguno de los dos se enfocará después de ejecutar \"Terminal: Ejecutar texto seleccionado en el terminal activo\".",
+ "terminal.integrated.focusAfterRun.accessible-buffer": "Enfocar siempre el búfer accesible",
+ "terminal.integrated.focusAfterRun.none": "No hacer nada.",
+ "terminal.integrated.focusAfterRun.terminal": "Enfocar siempre el terminal",
+ "terminal.integrated.fontFamily": "Controla la familia de fuentes del terminal. De forma predeterminada, el valor es {0}.",
+ "terminal.integrated.fontLigatures.enabled": "Controla si las ligaduras de fuentes están habilitadas en el terminal. Las ligaduras solo funcionarán si el {0} configurado las admite.",
+ "terminal.integrated.fontLigatures.fallbackLigatures": "Cuando {0} está habilitado y no se puede analizar el {1} concreto, este es el conjunto de secuencias de caracteres que siempre se dibujarán juntas. Esto permite el uso de un conjunto fijo de ligaduras incluso cuando no se admite la fuente.",
+ "terminal.integrated.fontLigatures.featureSettings": "Controla la configuración de las características de la fuente que se usan cuando las ligaduras están activadas, en el formato de la propiedad CSS `font-feature-settings`. Algunos ejemplos que pueden ser válidos según la fuente:",
"terminal.integrated.fontSize": "Controla el tamaño de la fuente en píxeles del terminal.",
"terminal.integrated.fontWeight": "Grosor de fuente que se va a usar en el terminal para texto que no esté en negrita. Acepta las palabras clave \"normal\" y \"bold\" o números entre 1 y 1000.",
"terminal.integrated.fontWeightBold": "Grosor de fuente que se va a usar en el terminal para texto en negrita. Acepta las palabras clave \"normal\" y \"bold\" o números entre 1 y 1000.",
"terminal.integrated.fontWeightError": "Solo se permiten las palabras clave \"normal\" y \"negrita\" o los números entre 1 y 1000.",
"terminal.integrated.gpuAcceleration": "Controla si el terminal va a aprovechar la GPU para su proceso de representación.",
"terminal.integrated.gpuAcceleration.auto": "Deje que VS Code detecte qué representador ofrecerá la mejor experiencia.",
- "terminal.integrated.gpuAcceleration.canvas": "Use el representador de lienzo de reserva del terminal el cual usa un contexto 2D en lugar de webgl que puede funcionar mejor en algunos sistemas. Tenga en cuenta que algunas características están limitadas en el representador de lienzo como la selección opaca.",
"terminal.integrated.gpuAcceleration.off": "Deshabilite la aceleración de GPU en el terminal. El terminal se representará mucho más lento cuando la aceleración de GPU esté desactivada, aunque debería funcionar de forma confiable en todos los sistemas.",
"terminal.integrated.gpuAcceleration.on": "Habilite la aceleración de GPU en el terminal.",
- "terminal.integrated.letterSpacing": "Controla el espaciado de letras del terminal. Es un valor entero que representa la cantidad de píxeles adicionales que se van a agregar entre los caracteres.",
- "terminal.integrated.lineHeight": "Controla el alto de línea del terminal. Este número se multiplica por el tamaño de fuente del terminal para obtener el alto de línea real en píxeles.",
- "terminal.integrated.localEchoEnabled": "Cuándo se debe habilitar el eco local. Esto invalidará {0}",
- "terminal.integrated.localEchoEnabled.auto": "Habilitado solo para áreas de trabajo remotas",
- "terminal.integrated.localEchoEnabled.off": "Siempre deshabilitado",
- "terminal.integrated.localEchoEnabled.on": "Siempre habilitado",
- "terminal.integrated.localEchoExcludePrograms": "El eco local se deshabilitará cuando se encuentre cualquiera de estos nombres de programa en el título del terminal.",
- "terminal.integrated.localEchoLatencyThreshold": "Duración del retraso de red, en milisegundos, donde las ediciones locales se mostrarán en el terminal sin esperar al reconocimiento del servidor. Si es \"0\", el eco local siempre estará activado y si es \"-1\" se deshabilitará.",
- "terminal.integrated.localEchoStyle": "Estilo del terminal del texto con eco local; es un estilo de fuente o un color RGB.",
+ "terminal.integrated.hideOnLastClosed": "Indica si se oculta la vista del terminal cuando se cierra el último terminal. Esto solo ocurrirá cuando el terminal sea la única vista visible en el contenedor de vistas.",
+ "terminal.integrated.hideOnStartup": "Indica si se oculta la vista de terminal al iniciar, evitando la creación de un terminal cuando no hay sesiones persistentes.",
+ "terminal.integrated.ignoreBracketedPasteMode": "Controla si el terminal omitirá el modo de pegado entre corchetes aunque el terminal se ponga en el modo, omitiendo las secuencias {0} y {1} al pegar. Esto es útil cuando el shell no respeta el modo que puede ocurrir en los shells secundarios, por ejemplo.",
+ "terminal.integrated.letterSpacing": "Controla el espaciado entre letras del terminal. Se trata de un valor entero que representa el número de píxeles adicionales que se van a agregar entre caracteres.",
+ "terminal.integrated.lineHeight": "Controla el alto de línea del terminal. Este número se multiplica por el tamaño de la fuente del terminal para obtener la altura de línea real en píxeles.",
"terminal.integrated.macOptionClickForcesSelection": "Controla si debe forzarse la selección al usar Opción + clic en macOS. Forzará una selección (de línea) normal y no permitirá el uso del modo de selección de columnas. Esto permite copiar y pegar con la selección de terminal normal, por ejemplo, cuando el modo de mouse está habilitado en tmux.",
"terminal.integrated.macOptionIsMeta": "Controla si la tecla de opción debe tratarse como la tecla meta del terminal en macOS.",
+ "terminal.integrated.middleClickBehavior": "Controla cómo reacciona el terminal cuando se hace clic con el botón derecho.",
+ "terminal.integrated.middleClickBehavior.default": "Plataforma predeterminada para enfocar el terminal. En Linux, también pegará la selección.",
+ "terminal.integrated.middleClickBehavior.paste": "Pegar en el clic central.",
"terminal.integrated.minimumContrastRatio": "Cuando se establezca, el color de primer plano de cada celda cambiará para intentar cumplir la relación de contraste especificada. Tenga en cuenta que esto no se aplicará a los caracteres `powerline` según N.º 146406. Valores de ejemplo:\r\n\r\n- 1: No hacer nada y usar los colores del tema estándar.\r\n- 4.5: [Cumplimiento de AA de WCAG (mínimo)](https://www.w3.org/TR/UNDERSTANDING-WCAG20/visual-audio-contrast-contrast.html) (valor predeterminado).\r\n- 7: [Cumplimiento de AA de WCAG(mejorado)](https://www.w3.org/TR/UNDERSTANDING-WCAG20/visual-audio-contrast7.html).\r\n- 21: Blanco sobre negro o negro sobre blanco.",
"terminal.integrated.mouseWheelScrollSensitivity": "Multiplicador que se va a usar en los eventos de desplazamiento de la rueda del mouse \"deltaY\".",
- "terminal.integrated.persistentSessionReviveProcess": "Cuando el proceso del terminal debe cerrarse (por ejemplo, al cerrar una ventana o una aplicación), determina cuándo se debe restaurar el contenido o el historial de la sesión de terminal anterior y los procesos se vuelven a crear la próxima vez que se abra el área de trabajo.\r\n\r\nAdvertencias:\r\n\r\n- La restauración del directorio de trabajo actual del proceso depende de si es compatible con el shell.\r\n-El tiempo para conservar la sesión durante el apagado es limitado, por lo que se puede anular al usar conexiones remotas de alta latencia.",
+ "terminal.integrated.persistentSessionReviveProcess": "Cuando el proceso de la terminal debe cerrarse (por ejemplo, al cerrar una ventana o una aplicación), esto determina cuándo debe restaurarse el contenido/la historia de la sesión anterior de la terminal y los procesos deben volver a crearse cuando se abra de nuevo el espacio de trabajo.\r\n\r\nAdvertencias:\r\n\r\n- La restauración del directorio de trabajo actual del proceso depende de si está soportado por el shell.\r\n- El tiempo para persistir la sesión durante el cierre es limitado, por lo que puede ser abortado cuando se utilizan conexiones remotas de alta latencia.",
"terminal.integrated.persistentSessionReviveProcess.never": "No restaurar nunca los búferes de terminal ni volver a crear el proceso.",
"terminal.integrated.persistentSessionReviveProcess.onExit": "Reactive los procesos después de cerrar la última ventana en Windows o Linux o cuando se desencadene el comando \"workbench.action.quit\" (paleta de comandos, enlace de teclado, menú).",
"terminal.integrated.persistentSessionReviveProcess.onExitAndWindowClose": "Reactive los procesos después de cerrar la última ventana en Windows o Linux o cuando se desencadene el comando \"workbench.action.quit\" (paleta de comandos, enlace de teclado, menú) o cuando se cierre la ventana.",
+ "terminal.integrated.rescaleOverlappingGlyphs": "Indica si se deben reescalar los glifos horizontalmente que son de una sola celda pero que tienen glifos que se superponen a las celdas siguientes. Esto suele ocurrir con caracteres de ancho ambiguos (por ejemplo, los caracteres numéricos romanos U+2160+) que no se presentan en fuentes monoespaciadas. Los glifos de emoji nunca se escalan de nuevo.",
"terminal.integrated.rightClickBehavior": "Controla cómo reacciona el terminal cuando se hace clic con el botón derecho.",
"terminal.integrated.rightClickBehavior.copyPaste": "Copia cuando hay una selección; de lo contrario, pega.",
"terminal.integrated.rightClickBehavior.default": "Muestra el menú contextual.",
"terminal.integrated.rightClickBehavior.nothing": "No hacer nada y pasar el evento al terminal.",
"terminal.integrated.rightClickBehavior.paste": "Pega al hacer clic con el botón derecho.",
"terminal.integrated.rightClickBehavior.selectWord": "Selecciona la palabra bajo el cursor y muestra el menú contextual.",
- "terminal.integrated.scrollback": "Controla la cantidad máxima de líneas que mantiene el terminal en su búfer.",
+ "terminal.integrated.scrollback": "Controla el número máximo de líneas que el terminal mantiene en su búfer. Asignamos memoria previamente en función de este valor para garantizar una experiencia sin problemas. Por lo tanto, a medida que el valor aumenta, también lo hará la cantidad de memoria.",
"terminal.integrated.sendKeybindingsToShell": "Envía la mayoría de los enlaces de teclado al terminal en lugar del área de trabajo y reemplaza {0}, que se puede usar como alternativa para el ajuste.",
- "terminal.integrated.shellIntegration.decorationIcon": "Controla el icono que se usará para los comandos omitidos o vacíos. Establézcalo en {0} para ocultar el icono o deshabilitar las decoraciones con {1}.",
- "terminal.integrated.shellIntegration.decorationIconError": "Controla el icono que se usará para cada comando de los terminales con la integración de shell habilitada que tienen un código de salida asociado. Establézcalo en {0} para ocultar el icono o deshabilitar las decoraciones con {1}.",
- "terminal.integrated.shellIntegration.decorationIconSuccess": "Controla el icono que se usará para cada comando de los terminales con la integración de shell habilitada que no tienen un código de salida asociado. Establézcalo en {0} para ocultar el icono o deshabilitar las decoraciones con {1}.",
"terminal.integrated.shellIntegration.decorationsEnabled": "Cuando la integración de shell está habilitada, agrega una decoración para cada comando.",
"terminal.integrated.shellIntegration.decorationsEnabled.both": "Mostrar decoraciones en el medianil (izquierda) y regla de información general (derecha)",
"terminal.integrated.shellIntegration.decorationsEnabled.gutter": "Mostrar decoraciones de medianil a la izquierda del terminal",
"terminal.integrated.shellIntegration.decorationsEnabled.never": "No mostrar decoraciones",
"terminal.integrated.shellIntegration.decorationsEnabled.overviewRuler": "Mostrar decoraciones de regla general a la derecha del terminal",
- "terminal.integrated.shellIntegration.enabled": "Determina si la integración del shell se inserta automáticamente para admitir características como el seguimiento mejorado de comandos y la detección del directorio de trabajo actual. \r\n\r\nLa integración de Shell funciona insertando el shell con un script de inicio. El script proporciona información de VS Code sobre lo que sucede en el terminal.\r\n\r\nShells admitidos:\r\n\r\n- Linux/macOS: bash, pwsh, zsh\r\n - Windows: pwsh\r\n\r\nEsta configuración solo se aplica cuando se crean terminales, por lo que deberá reiniciar los terminales para que surta efecto.\r\n\r\n Tenga en cuenta que es posible que la inserción de scripts no funcione si tiene argumentos personalizados definidos en el perfil de terminal, un [bash complejo 'PROMPT_COMMAND'](https://code.visualstudio.com/docs/editor/integrated-terminal#_complex-bash-promptcommand) u otra configuración no admitida.. Para deshabilitar las decoraciones, consulte {0}",
- "terminal.integrated.shellIntegration.history": "Controla el número de comandos utilizados recientemente que se mantendrán en el historial de la paleta de comandos. Establezca el valor a 0 para desactivar el historial de comandos.",
+ "terminal.integrated.shellIntegration.enabled": "Determina si la integración del shell se inserta automáticamente para admitir características como el seguimiento mejorado de comandos y la detección actual del directorio de trabajo. \r\n\r\nLa integración del shell funciona insertando el shell con un script de inicio. El script proporciona VS Code información sobre lo que sucede en el terminal.\r\n\r\nShells admitidos:\r\n\r\nLinux/macOS: bash, fish, pwsh, zsh\r\n - Windows: pwsh, git bash\r\n\r\nEsta configuración solo se aplica cuando se crean terminales, por lo que deberá reiniciar los terminales para que surtan efecto.\r\n\r\n Tenga en cuenta que es posible que la inserción de scripts no funcione si tiene argumentos personalizados definidos en el perfil de terminal, ha habilitado {1}, tiene un [bash complejo 'PROMPT_COMMAND'](https://code.visualstudio.com/docs/editor/integrated-terminal#_complex-bash-promptcommand) u otra configuración no admitida. Para deshabilitar las decoraciones, consulte {0}",
+ "terminal.integrated.shellIntegration.environmentReporting": "Controla si se debe informar del entorno de shell, habilitando su uso en características como {0}. Esto puede ralentizar la impresión del mensaje del shell.",
+ "terminal.integrated.shellIntegration.quickFixEnabled": "Cuando la integración de shell está activada, permite correcciones rápidas para los comandos del terminal que aparecen como un icono de bombilla o destello a la izquierda de la indicación.",
+ "terminal.integrated.shellIntegration.timeout": "Configura la duración en milisegundos que se esperará a la integración del shell tras el inicio antes de declarar que no está disponible. Establézcalo en {0} para esperar el tiempo mínimo (500 ms), el valor predeterminado {1} significa que el tiempo de espera varía según si la inyección de integración del shell está habilitada y si se trata de una ventana remota. Considere establecerlo en un valor bajo si ha deshabilitado intencionadamente la integración del shell, o un valor alto si el shell tarda mucho en iniciarse.",
"terminal.integrated.showExitAlert": "Controla si se va a mostrar la alerta \"El proceso del terminal finalizó con el código de salida\" cuando el código de salida es distinto de cero.",
+ "terminal.integrated.smoothScrolling": "Controla si el terminal se desplazará con una animación.",
"terminal.integrated.splitCwd": "Controla el directorio de trabajo con el que comienza un terminal dividido.",
"terminal.integrated.splitCwd.inherited": "En macOS y Linux, un nuevo terminal dividido usará el directorio de trabajo del terminal principal. En Windows, este se comporta igual que el inicial.",
"terminal.integrated.splitCwd.initial": "Un nuevo terminal dividido usará el directorio de trabajo con el que comenzó el terminal principal.",
"terminal.integrated.splitCwd.workspaceRoot": "Un nuevo terminal dividido usará la raíz del área de trabajo como directorio de trabajo. En un área de trabajo con varias raíces, se ofrece la opción de elegir la carpeta raíz que se va a usar.",
+ "terminal.integrated.tabStopWidth": "Número de celdas en una tabulación.",
"terminal.integrated.tabs.defaultColor": "Identificador de color del tema que se va a asociar a los iconos de terminal de forma predeterminada.",
"terminal.integrated.tabs.defaultIcon": "Id. de codicon que se va a asociar a los iconos de terminal de forma predeterminada.",
"terminal.integrated.tabs.enableAnimation": "Permite controlar si el estado de las pestañas de terminal admite animación (por ejemplo, las tareas en curso).",
@@ -9312,40 +14855,46 @@
"terminal.integrated.tabs.location": "Controla la ubicación de las pestañas del terminal, a la izquierda o a la derecha de los terminales reales.",
"terminal.integrated.tabs.location.left": "Mostrar la vista de pestañas del terminal a la izquierda del terminal",
"terminal.integrated.tabs.location.right": "Mostrar la vista de pestañas del terminal a la derecha del terminal",
- "terminal.integrated.tabs.separator": "Separador usado por {0} y {0}.",
+ "terminal.integrated.tabs.separator": "Separador usado por {0} y {1}.",
"terminal.integrated.tabs.showActions": "Controla si se muestran los botones de división y eliminación de terminales junto al botón de nuevo terminal.",
"terminal.integrated.tabs.showActions.always": "Mostrar siempre las acciones",
"terminal.integrated.tabs.showActions.never": "No mostrar nunca las acciones",
"terminal.integrated.tabs.showActions.singleTerminal": "Mostrar el terminal activo cuando sea el único terminal abierto",
"terminal.integrated.tabs.showActions.singleTerminalOrNarrow": "Mostrar el terminal activo cuando sea el único terminal abierto o cuando la vista de pestañas esté en su estado sin texto reducido",
- "terminal.integrated.tabs.showActiveTerminal": "Muestra la información del terminal activo en la vista, cosa que resulta particularmente útil cuando el título dentro de las pestañas no está visible.",
+ "terminal.integrated.tabs.showActiveTerminal": "Muestra la información del terminal activo en la vista. Esto es especialmente útil cuando el título de las pestañas no está visible.",
"terminal.integrated.tabs.showActiveTerminal.always": "Mostrar siempre el terminal activo",
"terminal.integrated.tabs.showActiveTerminal.never": "No mostrar nunca el terminal activo",
"terminal.integrated.tabs.showActiveTerminal.singleTerminal": "Mostrar el terminal activo cuando sea el único terminal abierto",
"terminal.integrated.tabs.showActiveTerminal.singleTerminalOrNarrow": "Mostrar el terminal activo cuando sea el único terminal abierto o cuando la vista de pestañas esté en su estado sin texto reducido",
"terminal.integrated.unicodeVersion": "Controla la versión de Unicode que debe utilizarse cuando se evalúa el ancho de los caracteres del terminal. Si observa que los emojis u otros caracteres anchos no ocupan la cantidad de espacio adecuada o que al usar Retroceso se elimina demasiado o muy poco, puede que quiera intentar ajustar esta configuración.",
- "terminal.integrated.unicodeVersion.eleven": "Versión 11 de Unicode; esta versión ofrece una mejor compatibilidad con los sistemas modernos que usan versiones modernas de Unicode.",
- "terminal.integrated.unicodeVersion.six": "Versión 6 de Unicode; esta es una versión anterior que debe funcionar mejor en sistemas anteriores.",
+ "terminal.integrated.unicodeVersion.eleven": "Versión 11 de Unicode. Esta versión proporciona una mejor compatibilidad con sistemas modernos que usan versiones modernas de Unicode.",
+ "terminal.integrated.unicodeVersion.six": "Versión 6 de Unicode. Esta es una versión anterior que debería funcionar mejor en sistemas anteriores.",
"terminal.integrated.windowsEnableConpty": "Indica si se debe usar ConPTY para la comunicación en procesos de terminales de Windows (requiere Windows 10, número de compilación 18309 y posteriores). Si es false, se usará Winpty.",
- "terminal.integrated.wordSeparators": "Cadena que contiene todos los caracteres que se van a considerar separadores de palabras por doble clic para seleccionar la característica de palabra.",
+ "terminal.integrated.windowsUseConptyDll": "Si se va a usar el conpty.dll experimental (v1.22.250204002) incluido con VS Code, en lugar del empaquetado con Windows.",
+ "terminal.integrated.wordSeparators": "Cadena que contiene todos los caracteres que se van a considerar separadores de palabras al hacer doble clic para seleccionar una palabra y en la detección de vínculos de reserva \"palabra\". Puesto que se usa para la detección de vínculos, incluir caracteres como \":\" que se usan al detectar vínculos hará que se omita la parte de línea y columna de vínculos como \"file:10:5\"",
"terminalDescription": "Controla la descripción del terminal, que aparece a la derecha del título. Las variables se sustituyen en función del contexto:",
"terminalIntegratedConfigurationTitle": "Terminal integrado",
"terminalTitle": "Controla el título del terminal. Las variables se sustituyen en función del contexto:",
- "workspaceFolder": "la versión de trabajo en la que se inició el terminal"
+ "workspaceFolder": "el área de trabajo en la que se inició el terminal.",
+ "workspaceFolderName": "el `nombre` del área de trabajo en la que se inició el terminal."
},
"vs/workbench/contrib/terminal/common/terminalContextKey": {
"inTerminalRunCommandPickerContextKey": "Indica si el selector de comandos de ejecución de terminal está abierto actualmente.",
"isSplitTerminalContextKey": "Indica si el terminal de la pestaña que tiene el foco es un terminal dividido.",
+ "splitPaneActive": "Indica si el terminal activo es un panel dividido.",
"terminalAltBufferActive": "Indica si el búfer alternativo del terminal está activo.",
"terminalCountContextKey": "Número actual de terminales.",
"terminalEditorFocusContextKey": "Indica si un terminal en el área del editor tiene foco.",
"terminalFocusContextKey": "Indica si el terminal recibe el foco.",
+ "terminalFocusInAnyContextKey": "Indica si algún terminal es prioritario, incluidos los terminales desasociados que se usan en otra interfaz de usuario.",
"terminalProcessSupportedContextKey": "Indica si los procesos de terminal pueden iniciarse en el área de trabajo actual.",
"terminalShellIntegrationEnabled": "Si la integración de shell está habilitada en el terminal activo",
- "terminalShellTypeContextKey": "El tipo de shell del terminal activo. Se establece en el último valor conocido cuando no existe ningún terminal.",
+ "terminalShellTypeContextKey": "Tipo de shell del terminal activo, que se establece si se puede detectar el tipo.",
+ "terminalSuggestWidgetVisible": "Indica si el widget de sugerencias del terminal está visible.",
"terminalTabsFocusContextKey": "Indica si el foco está sobre el widget de pestañas del terminal",
"terminalTabsSingularSelectedContextKey": "Indica si hay un terminal seleccionado en la lista de pestañas de terminal.",
"terminalTextSelectedContextKey": "Indica si el texto está seleccionado en el terminal activo",
+ "terminalTextSelectedInFocusedContextKey": "Indica si el texto está seleccionado en un terminal prioritario.",
"terminalViewShowing": "Si se muestra la vista del terminal"
},
"vs/workbench/contrib/terminal/common/terminalStrings": {
@@ -9353,79 +14902,753 @@
"doNotShowAgain": "No volver a mostrar",
"killTerminal": "Terminar el terminal",
"killTerminal.short": "Finalizar",
+ "local": "Local",
+ "moveIntoNewWindow": "Mover terminal a nueva ventana",
"moveToEditor": "Mover el terminal al área del editor",
+ "newInNewWindow": "Nueva ventana del terminal",
"previousSessionCategory": "sesión anterior",
"splitTerminal": "Dividir terminal",
"splitTerminal.short": "Dividir",
+ "task": "Tarea",
"terminal": "Terminal",
+ "terminal.new": "Nuevo terminal",
+ "terminalCategory": "Terminal",
"unsplitTerminal": "Cancelar división del terminal",
"workbench.action.terminal.changeColor": "Cambiar color...",
"workbench.action.terminal.changeIcon": "Cambiar icono...",
"workbench.action.terminal.focus": "Enfocar terminal",
+ "workbench.action.terminal.focusAndHideAccessibleBuffer": "Enfocar terminal y ocultar búfer accesible",
+ "workbench.action.terminal.focusHover": "Mantener el puntero sobre el foco",
+ "workbench.action.terminal.focusInstance": "Enfocar terminal",
"workbench.action.terminal.moveToTerminalPanel": "Mover Terminal al Panel",
+ "workbench.action.terminal.newWithCwd": "Crear un nuevo terminal integrado comenzando en un directorio de trabajo personalizado",
"workbench.action.terminal.rename": "Cambiar nombre...",
+ "workbench.action.terminal.renameWithArg": "Cambiar el nombre del terminal actualmente activo",
+ "workbench.action.terminal.revealCommand": "Revelar comando en terminal",
+ "workbench.action.terminal.scrollToNextCommand": "Desplazar al comando siguiente",
+ "workbench.action.terminal.scrollToPreviousCommand": "Desplazar al comando anterior",
"workbench.action.terminal.sizeToContentWidthInstance": "Alternar el tamaño al ancho del contenido"
},
- "vs/workbench/contrib/terminal/electron-sandbox/terminalRemote": {
+ "vs/workbench/contrib/terminal/electron-browser/terminalRemote": {
"workbench.action.terminal.newLocal": "Crear nuevo terminal integrado (local)"
},
+ "vs/workbench/contrib/terminalContrib/accessibility/browser/terminal.accessibility.contribution": {
+ "workbench.action.terminal.accessibleBufferGoToNextCommand": "Búfer accesible Ir al comando siguiente",
+ "workbench.action.terminal.accessibleBufferGoToPreviousCommand": "Búfer accesible Ir al comando anterior",
+ "workbench.action.terminal.focusAccessibleBuffer": "Vista de terminal accesible de foco",
+ "workbench.action.terminal.scrollToBottomAccessibleView": "Desplazarse a la vista accesible inferior",
+ "workbench.action.terminal.scrollToTopAccessibleView": "Desplazarse a la vista accesible superior"
+ },
+ "vs/workbench/contrib/terminalContrib/accessibility/browser/terminalAccessibilityHelp": {
+ "commandPromptMigration": "Considera la posibilidad de usar PowerShell en lugar del símbolo del sistema para obtener una experiencia mejorada",
+ "focusAccessibleTerminalView": "El comando Foco en la vista de terminal accesible permite a los lectores de pantalla leer el contenido del terminal.",
+ "focusAfterRun": "Configure qué se pone en foco después de ejecutar el texto seleccionado en el terminal con '{0}'.",
+ "focusViewOnExecution": "Habilite \"terminal.integrated.accessibleViewFocusOnCommandExecution\" para enfocar automáticamente la vista accesible del terminal cuando se ejecute un comando en el terminal.",
+ "goToNextCommand": "Comando Ir al siguiente en la vista accesible",
+ "goToPreviousCommand": "Comando Ir al anterior en la vista accesible",
+ "goToRecentDirectory": "Vaya a Directorio reciente",
+ "goToSymbol": "Ir al símbolo",
+ "newWithProfile": "El comando Crear nuevo terminal (con perfil) permite crear terminales fácilmente con un perfil específico.",
+ "noShellIntegration": "La integración de SSO no está habilitada. Es posible que algunas características de accesibilidad no estén disponibles.",
+ "openDetectedLink": "El comando Abrir vínculo detectado permite a los lectores de pantalla abrir fácilmente los vínculos que se encuentran en el terminal.",
+ "preserveCursor": "Personalice el comportamiento del cursor al alternar entre el terminal y la vista accesible con \"terminal.integrated.accessibleViewPreserveCursorPosition\".",
+ "runRecentCommand": "Ejecute el comando Reciente",
+ "shellIntegration": "El terminal tiene una característica llamada integración de shell que ofrece una experiencia mejorada y proporciona comandos útiles para los lectores de pantalla como:",
+ "suggest": "Cuando el widget de sugerencias del terminal está enfocado:",
+ "suggestCommands": "- Acepte la sugerencia y configure las opciones de sugerencia.",
+ "suggestCommandsMore": "- Alternar entre el widget y el terminal y alternar el foco de detalles para obtener más información sobre la sugerencia.",
+ "suggestConfigure": "- Configure las opciones de sugerencia ",
+ "suggestLearnMore": "- Más información sobre la sugerencia.",
+ "suggestTrigger": "El comando de finalización de solicitud de terminal se puede invocar manualmente, pero también aparece al escribir."
+ },
+ "vs/workbench/contrib/terminalContrib/accessibility/common/terminalAccessibilityConfiguration": {
+ "terminal.integrated.accessibleViewFocusOnCommandExecution": "Enfocar la vista accesible del terminal cuando se ejecute un comando.",
+ "terminal.integrated.accessibleViewPreserveCursorPosition": "Conserve la posición del cursor al volver a abrir la vista accesible del terminal en lugar de establecerla en la parte inferior del búfer."
+ },
+ "vs/workbench/contrib/terminalContrib/autoReplies/common/terminalAutoRepliesConfiguration": {
+ "terminal.integrated.autoReplies": "Un conjunto de mensajes a los que, cuando se encuentre en el terminal, se responderá automáticamente. Siempre que el mensaje sea lo suficientemente específico, esto puede ayudar a automatizar las respuestas comunes.\r\n\r\nNotas:\r\n\r\n: use {0} para responder automáticamente al mensaje de finalización del trabajo por lotes en Windows.\r\n: el mensaje incluye secuencias de escape para que la respuesta no se produzca con texto con estilo.\r\n: cada respuesta solo puede producirse una vez cada segundo.\r\n: use {1} en la respuesta para indicar la tecla Entrar.\r\n: para anular una clave predeterminada, establezca el valor en NULL.\r\n: reinicie VS Code si no se aplican nuevos.",
+ "terminal.integrated.autoReplies.reply": "Respuesta que se enviará al proceso."
+ },
+ "vs/workbench/contrib/terminalContrib/chat/browser/terminal.initialHint.contribution": {
+ "disableHint": " Alternar {0} en la configuración para deshabilitar esta sugerencia.",
+ "disableInitialHint": "Deshabilitar sugerencia inicial",
+ "emptyHintText": "Abrir el chat {0}. ",
+ "hintTextDismiss": "Empiece a escribir para descartar.",
+ "inlineChatHint": "[[Abrir chat]] o empieza a escribir para descartar."
+ },
+ "vs/workbench/contrib/terminalContrib/chat/browser/terminalChat": {
+ "chatAgentRegisteredContextKey": "Si un agente de chat está registrado para la ubicación del terminal.",
+ "chatFocusedContextKey": "Indica si la vista de chat tiene el foco.",
+ "chatInputHasTextContextKey": "Si la entrada de chat tiene texto.",
+ "chatRequestActiveContextKey": "Indica si hay una solicitud de chat activa.",
+ "chatResponseContainsCodeBlockContextKey": "Indica si la respuesta del chat contiene un bloque de código.",
+ "chatResponseContainsMultipleCodeBlocksContextKey": "Si la respuesta del chat contiene varios bloques de código.",
+ "chatVisibleContextKey": "Indica si la vista de chat es visible.",
+ "terminalHasChatTerminals": "Indica si hay terminales de chat.",
+ "terminalHasHiddenChatTerminals": "Indica si hay terminales de chat ocultos."
+ },
+ "vs/workbench/contrib/terminalContrib/chat/browser/terminalChatAccessibilityHelp": {
+ "chat.signals": "Las señales de accesibilidad se pueden cambiar a través de la configuración con un prefijo de signals.chat. De forma predeterminada, si una solicitud tarda más de 4 segundos, escuchará un sonido que indica que el progreso todavía se está produciendo.",
+ "inlineChat.access": "Se puede activar con el comando Terminal: Iniciar chat ({0}), que centrará el cuadro de entrada.",
+ "inlineChat.focusInput": "Llegue al cuadro de entrada desde la respuesta ({0}).",
+ "inlineChat.focusInputNoKb": "Llegue a la respuesta desde el cuadro de entrada mediante mayús+tabulación o al asignar un enlace de teclado para el comando: Enfocar entrada de terminal.",
+ "inlineChat.focusResponse": "Llegue a la respuesta desde el cuadro de entrada ({0}).",
+ "inlineChat.focusResponseNoKb": "Llegue a la respuesta desde el cuadro de entrada mediante tabulación o al asignar un enlace de teclado para el comando: Enfocar respuesta de terminal.",
+ "inlineChat.input": "El cuadro de entrada es donde el usuario puede escribir y realizar la solicitud ({0}). El widget se cerrará y todo el contenido se descartará cuando se presione la tecla Escape y el terminal volverá a centrarse.",
+ "inlineChat.inputNoKb": "El cuadro de entrada es donde el usuario puede escribir una solicitud y puede realizar la solicitud mediante tabulación en el botón Realizar solicitud, que actualmente no se puede desencadenar a través de enlaces de teclado. El widget se cerrará y todo el contenido se descartará cuando se presione la tecla Escape y el terminal recuperará el foco.",
+ "inlineChat.insertCommand": "Con el foco en el editor de comandos del cuadro de entrada, la acción Terminal: Insertar comando de chat ({0}).",
+ "inlineChat.insertCommandNoKb": "Inserte un comando mediante tabulación en el botón, ya que la acción no se puede desencadenar actualmente mediante un enlace de teclado.",
+ "inlineChat.inspectResponseMessage": "La respuesta se puede inspeccionar en la vista accesible ({0}).",
+ "inlineChat.inspectResponseNoKb": "Con el cuadro de entrada centrado, inspeccione la respuesta en la vista accesible mediante el comando Abrir vista accesible, que actualmente no se puede desencadenar mediante un enlace de teclado.",
+ "inlineChat.overview": "El chat insertado se produce dentro de un terminal. Es útil para sugerir comandos de terminal. Tenga en cuenta que el código generado por IA puede ser incorrecto.",
+ "inlineChat.runCommand": "Con el foco en el cuadro de entrada o en el editor de comandos, la acción Terminal: ejecutar comando de chat ({0}).",
+ "inlineChat.runCommandNoKb": "Ejecute un comando al tabular el botón, ya que la acción no se puede desencadenar actualmente mediante un enlace de teclado.",
+ "inlineChat.toolbar": "Utilice el tabulador para acceder a partes condicionales como comandos, estado, respuestas a mensajes y mucho más."
+ },
+ "vs/workbench/contrib/terminalContrib/chat/browser/terminalChatActions": {
+ "chat.rerun.label": "Volver a ejecutar la solicitud",
+ "chatTerminal.lastCommand": "Último: {0}",
+ "closeChat": "Cerrar",
+ "insert": "Insertar",
+ "insertCommand": "Insertar comando de chat",
+ "insertFirst": "Insertar primero",
+ "insertFirstCommand": "Insertar primer comando de chat",
+ "run": "Ejecutar",
+ "runCommand": "Ejecutar comando de chat",
+ "runFirst": "Ejecutar primero",
+ "runFirstCommand": "Ejecutar el primer comando de chat",
+ "selectChatTerminal": "Seleccionar un terminal de chat para mostrar y centrar",
+ "showChatTerminals.title": "Terminales de chat",
+ "startChat": "Abrir chat en línea",
+ "terminalCategory": "Terminal",
+ "terminalCategory2": "Terminal",
+ "viewHiddenChatTerminals": "Ver terminales de chat ocultos",
+ "viewInChat": "Ver en chat"
+ },
+ "vs/workbench/contrib/terminalContrib/chat/browser/terminalChatWidget": {
+ "askAboutCommands": "Preguntar acerca de los comandos"
+ },
+ "vs/workbench/contrib/terminalContrib/chat/common/terminalInitialHintConfiguration": {
+ "terminal.integrated.initialHint": "Controla si el primer terminal sin entrada mostrará una sugerencia sobre las acciones disponibles cuando se centra."
+ },
+ "vs/workbench/contrib/terminalContrib/chatAgentTools/browser/runInTerminalHelpers": {
+ "allowSession": "Permitir todos los comandos de esta sesión",
+ "allowSessionTooltip": "Permita que esta herramienta se ejecute en esta sesión sin confirmación.",
+ "autoApprove.baseCommand": "Permitir siempre los comandos: {0}",
+ "autoApprove.baseCommandSingle": "Permitir siempre el comando: {0}",
+ "autoApprove.configure": "Configurar aprobación automática...",
+ "autoApprove.exactCommand": "Permitir siempre la línea de comandos exacta"
+ },
+ "vs/workbench/contrib/terminalContrib/chatAgentTools/browser/terminal.chatAgentTools.contribution": {
+ "addTerminalSelection": "Agregar selección de terminal al chat",
+ "terminalSelection": "Selección de terminal",
+ "toolset.shell": "Run commands in the terminal"
+ },
+ "vs/workbench/contrib/terminalContrib/chatAgentTools/browser/tools/commandLineAnalyzer/commandLineAutoApproveAnalyzer": {
+ "autoApprove.global": "Aprobado automáticamente por configuración {0}",
+ "autoApprove.rule": "Aprobado automáticamente por regla {0}",
+ "autoApprove.rules": "Aprobado automáticamente por las reglas {0}",
+ "autoApprove.session": "Aprobado automáticamente para esta sesión",
+ "autoApprove.session.disable": "Deshabilitar",
+ "autoApproveDenied.rule": "Aprobación automática denegada por regla {0}",
+ "autoApproveDenied.rules": "Aprobación automática denegada por las reglas {0}",
+ "ruleTooltip": "Ver regla en la configuración",
+ "ruleTooltip.global": "Ver configuración",
+ "runInTerminal.promptInjectionDisclaimer": "El contenido web puede contener código malintencionado o intentar ataques de inyección de indicaciones."
+ },
+ "vs/workbench/contrib/terminalContrib/chatAgentTools/browser/tools/commandLineAnalyzer/commandLineFileWriteAnalyzer": {
+ "runInTerminal.fileWriteBlockedDisclaimer": "Se detectaron operaciones de escritura de archivos que no se pueden aprobar automáticamente: {0}",
+ "runInTerminal.fileWriteDisclaimer": "Operaciones de escritura de archivos detectadas: {0}"
+ },
+ "vs/workbench/contrib/terminalContrib/chatAgentTools/browser/tools/getTerminalLastCommandTool": {
+ "getTerminalLastCommand.past": "Se obtuvo el último comando de terminal",
+ "getTerminalLastCommand.progressive": "Obteniendo el último comando de terminal",
+ "terminalLastCommandTool.displayName": "Obtener último comando de terminal"
+ },
+ "vs/workbench/contrib/terminalContrib/chatAgentTools/browser/tools/getTerminalOutputTool": {
+ "bg.past": "Se comprobó la salida del terminal en segundo plano",
+ "bg.progressive": "Comprobando la salida del terminal en segundo plano",
+ "getTerminalOutputTool.displayName": "Obtener salida de terminal"
+ },
+ "vs/workbench/contrib/terminalContrib/chatAgentTools/browser/tools/getTerminalSelectionTool": {
+ "getTerminalSelection.past": "Leer selección de terminal",
+ "getTerminalSelection.progressive": "Leyendo selección de terminal",
+ "terminalSelectionTool.displayName": "Obtener selección de terminal"
+ },
+ "vs/workbench/contrib/terminalContrib/chatAgentTools/browser/tools/monitoring/outputMonitor": {
+ "poll.terminal.accept": "Sí",
+ "poll.terminal.acceptRun": "Permitir",
+ "poll.terminal.confirmRequired": "El terminal está a la espera de una entrada.",
+ "poll.terminal.confirmRunDetail": "{0}\r\n ¿Desea enviar '{1}'{2} seguido de 'Entrar' al terminal?",
+ "poll.terminal.enterInput": "Enfocar terminal",
+ "poll.terminal.inputRequest": "El terminal está a la espera de una entrada.",
+ "poll.terminal.polling": "Esto seguirá sondeando la salida para determinar cuándo el terminal pasa a estar inactivo durante un máximo de 2 minutos.",
+ "poll.terminal.reject": "No",
+ "poll.terminal.rejectRun": "Enfocar terminal",
+ "poll.terminal.requireInput": "{0}\r\nProporcione la entrada necesaria para el terminal.\r\n\r\n",
+ "poll.terminal.waiting": "¿Quiere continuar esperando a `{0}`?"
+ },
+ "vs/workbench/contrib/terminalContrib/chatAgentTools/browser/tools/runInTerminalConfirmationTool": {
+ "confirmTerminalCommandTool.displayName": "Comando Confirmar terminal",
+ "confirmTerminalCommandTool.userDescription": "Herramienta para confirmar comandos en el terminal"
+ },
+ "vs/workbench/contrib/terminalContrib/chatAgentTools/browser/tools/runInTerminalTool": {
+ "runInTerminal": "¿Ejecutar el comando `{0}`?",
+ "runInTerminal.background": "¿Ejecutar el comando `{0}`? (terminal de fondo)",
+ "runInTerminalTool.displayName": "Ejecutar en Terminal",
+ "runInTerminalTool.userDescription": "Run commands in the terminal"
+ },
+ "vs/workbench/contrib/terminalContrib/chatAgentTools/browser/tools/task/createAndRunTaskTool": {
+ "allowTaskCreationExecution": "¿Permitir la creación y ejecución de tareas?",
+ "alreadyRunning": "La tarea \"{0}\" ya se está ejecutando.",
+ "copilotChat.fetchingTask": "Resolviendo la tarea",
+ "copilotChat.noTerminal": "Se inició la tarea, pero no se encontró ningún terminal para: \"{0}\"",
+ "copilotChat.runningTask": "Ejecutando tarea `{0}`",
+ "copilotChat.taskNotFound": "No se encontró la tarea: \"{0}\"",
+ "createAndRunTask.displayName": "Crear y ejecutar tarea",
+ "createAndRunTask.userDescription": "Creación y ejecución de una tarea en el área de trabajo",
+ "createTask": "Se creará una tarea \"{0}\" con el comando \"{1}\"{2}.",
+ "createdTask": "Tarea `{0}` creada",
+ "createdTaskPast": "Tarea `{0}` creada",
+ "taskExists": "La tarea \"{0}\" ya existe.",
+ "taskExistsPast": "La tarea \"{0}\" ya existe."
+ },
+ "vs/workbench/contrib/terminalContrib/chatAgentTools/browser/tools/task/getTaskOutputTool": {
+ "copilotChat.checkedTerminalOutput": "Salida comprobada para la tarea \"{0}\"",
+ "copilotChat.checkingTerminalOutput": "Comprobando la salida de la tarea \"{0}\"",
+ "copilotChat.taskAlreadyRunning": "La tarea \"{0}\" ya se está ejecutando.",
+ "copilotChat.taskNotFound": "No se encontró la tarea: \"{0}\"",
+ "copilotChat.terminalNotFound": "No se encontró el terminal para la tarea \"{0}\"",
+ "getTaskOutputTool.displayName": "Obtener el resultado de la tarea"
+ },
+ "vs/workbench/contrib/terminalContrib/chatAgentTools/browser/tools/task/runTaskTool": {
+ "chat.allowTaskRunMsg": "¿Permitir ejecutar la tarea \"{0}\"?",
+ "chat.allowTaskRunTitle": "¿Permitir la ejecución de tareas?",
+ "chat.noTerminal": "Se inició la tarea, pero no se encontró ningún terminal para: \"{0}\"",
+ "chat.ranTask": "Se ejecutó \"{0}\"",
+ "chat.runningTask": "Ejecutando \"{0}\"",
+ "chat.startedTask": "Se inició \"{0}\"",
+ "chat.taskAlreadyActive": "La tarea ya se está ejecutando.",
+ "chat.taskAlreadyRunning": "La tarea \"{0}\" ya se está ejecutando.",
+ "chat.taskIsAlreadyRunning": "\"{0}\" ya se está ejecutando.",
+ "chat.taskNotFound": "No se encontró la tarea: \"{0}\"",
+ "chat.taskWasAlreadyRunning": "\"{0}\" ya se estaba ejecutando.",
+ "runInTerminalTool.displayName": "Ejecutar tarea",
+ "runInTerminalTool.userDescription": "Run tasks in the workspace"
+ },
+ "vs/workbench/contrib/terminalContrib/chatAgentTools/browser/tools/task/taskHelpers": {
+ "copilotChat.taskFailedWithExitCode": "La tarea `{0}` ha fallado con el código de salida {1}."
+ },
+ "vs/workbench/contrib/terminalContrib/chatAgentTools/common/terminalChatAgentToolsConfiguration": {
+ "autoApprove.defaults": "Tenga en cuenta que hay un conjunto predeterminado de reglas para permitir y también denegar comandos. Considere la posibilidad de establecer {0} en {1} para ignorar todas las reglas predeterminadas para asegurarse de que no haya conflictos con sus propias reglas. Hágalo bajo su propia responsabilidad, ya que las reglas de denegación predeterminadas están diseñadas para protegerle frente a la ejecución de comandos peligrosos.",
+ "autoApprove.deprecated": "Use {0} en su lugar",
+ "autoApprove.description.commandLine": "Se puede usar un objeto para buscar coincidencias con la línea de comandos completa en lugar de hacer coincidir subcomandancias y comandos insertados, por ejemplo {0}. Para que se apruebe automáticamente, _tanto_ el subcomando como la línea de comandos no deben ser denegados explícitamente; entonces, _o_ se debe aprobar todos los subcomandos o la línea de comandos.",
+ "autoApprove.description.examples.binTest": "Permitir todos los comandos que coincidan con la ruta de acceso {0} ({1}, {2}, etc.)",
+ "autoApprove.description.examples.description": "Descripción",
+ "autoApprove.description.examples.mkdir": "Permitir todos los comandos que empiezan por {0}",
+ "autoApprove.description.examples.npmRunBuild": "Permitir todos los comandos que empiezan por {0}",
+ "autoApprove.description.examples.ps1": "Requerir aprobación explícita para cualquier _command line_ que contenga {0} independientemente del uso de mayúsculas y minúsculas",
+ "autoApprove.description.examples.regexAll": "Permitir todos los comandos (los comandos denegados siguen necesitando aprobación)",
+ "autoApprove.description.examples.regexCase": "permitirá {0} comandos independientemente del uso de mayúsculas y minúsculas",
+ "autoApprove.description.examples.regexGit": "Permitir {0} y todos los comandos que empiezan por {1}",
+ "autoApprove.description.examples.rm": "Requerir aprobación explícita para todos los comandos que empiezan por {0}",
+ "autoApprove.description.examples.rmUnset": "Quitar el valor predeterminado {0} de {1}",
+ "autoApprove.description.examples.title": "Ejemplos:",
+ "autoApprove.description.examples.value": "Valor",
+ "autoApprove.description.intro": "Una lista de comandos o expresiones regulares que controlan si los comandos de la herramienta Ejecutar en terminal requieren aprobación explícita. Estos se compararán con el inicio de un comando. Se puede proporcionar una expresión regular ajustando la cadena en {0} caracteres seguidos de marcas opcionales como {1} para no distinguir mayúsculas de minúsculas.",
+ "autoApprove.description.subCommands": "Tenga en cuenta que estos comandos y expresiones regulares se evalúan para cada _sub-command_ dentro de la _command line_ completa, por lo que {0}, por ejemplo, necesitará {1} y {2} para que coincidan con una entrada de {3} y no deben coincidir con una entrada de {4} para aprobar automáticamente. También se deben detectar comandos insertados como {5} (sustitución de procesos).",
+ "autoApprove.description.values": "Se establece en {0} para aprobar automáticamente los comandos, {1} para requerir siempre la aprobación explícita o {2} para anular el valor.",
+ "autoApprove.false": "Requiere aprobación explícita para el patrón.",
+ "autoApprove.key": "El inicio de un comando para comparar. Se puede proporcionar una expresión regular ajustando la cadena con caracteres \"/\".",
+ "autoApprove.matchCommandLine": "Si se debe hacer coincidir con la línea de comandos completa, en lugar de dividir por subcomandos y comandos insertados.",
+ "autoApprove.matchCommandLine.false": "Hacer coincidir con subcomandes y comandos insertados, por ejemplo. \"foo &bar\" necesitará que coincidan \"foo\" y \"bar\".",
+ "autoApprove.matchCommandLine.true": "Hacer coincidir con la línea de comandos completa, por ejemplo. \"foo &bar\".",
+ "autoApprove.null": "Ignora el patrón, ya que es útil para deshacer la configuración del mismo patrón establecido en un ámbito superior.",
+ "autoApprove.true": "Aprobar automáticamente el patrón.",
+ "autoApproveMode.description": "Controla si se permite la aprobación automática en la herramienta de ejecución de terminal.",
+ "autoReplyToPrompts.key": "Si se debe responder automáticamente a las indicaciones en el terminal, como “¿Confirmar? s/n”. Esta es una función experimental y puede que no funcione en todos los casos.",
+ "blockFileWrites.all": "Bloquear todas las escrituras de archivos detectadas.",
+ "blockFileWrites.description": "Controla si las operaciones detectadas de escritura de archivos se bloquean en la ejecución de la herramienta de terminal. Cuando se detecten, se requerirá aprobación explícita, independientemente de si el comando normalmente se aprobaría automáticamente. Ten en cuenta que no se pueden detectar todos los métodos posibles de escritura de archivos y esto es lo que se detecta actualmente:\r\n\r\n- Redireccionamiento de archivos (detectado a través de la gramática que establece el árbol de PowerShell o Bash)",
+ "blockFileWrites.never": "Permitir todas las escrituras de archivos detectadas.",
+ "blockFileWrites.outsideWorkspace": "Bloquea las escrituras de archivos detectadas fuera del área de trabajo. Esto depende de que la función de integración del shell funcione correctamente para determinar el directorio de trabajo actual del terminal.",
+ "ignoreDefaultAutoApproveRules.description": "Indica si se deben ignorar las reglas integradas de aprobación automática predeterminadas que usa la herramienta ejecutar en el terminal, tal y como se define en {0}. Al activar esta configuración, la herramienta que se ejecute en el terminal ignorará cualquier regla del conjunto predeterminado, pero seguirá las reglas definidas en la configuración de usuario, remota y del área de trabajo. Use esta configuración bajo su responsabilidad: las reglas predeterminadas de aprobación automática están diseñadas para protegerle de la ejecución de comandos peligrosos.",
+ "outputLocation.description": "Lugar donde se mostrará la salida de la sesión de ejecución en la herramienta de terminal.",
+ "outputLocation.none": "No mostrar el terminal automáticamente.",
+ "outputLocation.terminal": "Mostrar el terminal al ejecutar el comando.",
+ "shellIntegrationTimeout.deprecated": "Use {0} en su lugar",
+ "shellIntegrationTimeout.description": "Configura la duración en milisegundos que se esperará a que se detecte la integración del shell cuando la herramienta de ejecutar en terminal inicie un nuevo terminal. Establézcalo en '0' para esperar el tiempo mínimo; el valor predeterminado `-1` significa que el tiempo de espera es variable según el valor de {0} y si es una ventana remota. Un valor alto puede ser útil si su shell se inicia muy lentamente, y un valor bajo si no está utilizando intencionadamente la integración del shell.",
+ "terminalChatAgentProfile.linux": "Perfil de terminal que se usará en Linux para ejecutar el agente de chat en la herramienta de terminal.",
+ "terminalChatAgentProfile.osx": "Perfil de terminal que se usará en macOS para ejecutar el agente de chat en la herramienta de terminal.",
+ "terminalChatAgentProfile.path": "Una ruta de acceso a un ejecutable de shell.",
+ "terminalChatAgentProfile.windows": "Perfil de terminal que se usará en Windows para ejecutar el agente de chat en la herramienta de terminal."
+ },
+ "vs/workbench/contrib/terminalContrib/clipboard/browser/terminal.clipboard.contribution": {
+ "workbench.action.terminal.copyAndClearSelection": "Copiar y borrar selección",
+ "workbench.action.terminal.copyLastCommand": "Copiar último comando",
+ "workbench.action.terminal.copyLastCommandAndOutput": "Copiar último comando y salida",
+ "workbench.action.terminal.copyLastCommandOutput": "Copiar la salida del último comando",
+ "workbench.action.terminal.copySelection": "Copiar selección",
+ "workbench.action.terminal.copySelectionAsHtml": "Copiar la selección como HTML",
+ "workbench.action.terminal.paste": "Pegar en el terminal activo",
+ "workbench.action.terminal.pasteSelection": "Pegar la selección en el terminal activo"
+ },
+ "vs/workbench/contrib/terminalContrib/clipboard/browser/terminalClipboard": {
+ "confirmMoveTrashMessageFilesAndDirectories": "¿Está seguro de que desea pegar {0} líneas de texto en el terminal?",
+ "doNotAskAgain": "No volver a hacerme esta pregunta",
+ "multiLinePasteButton": "&&Pegar",
+ "multiLinePasteButton.oneLine": "Pegar como &&una línea",
+ "preview": "Vista previa:"
+ },
+ "vs/workbench/contrib/terminalContrib/commandGuide/browser/terminal.commandGuide.contribution": {
+ "terminalCommandGuide.foreground": "Color de primer plano de la guía de comandos del terminal que aparece a la izquierda de un comando y su salida al mantener el puntero."
+ },
+ "vs/workbench/contrib/terminalContrib/commandGuide/common/terminalCommandGuideConfiguration": {
+ "showCommandGuide": "Indica si se muestra la guía de comandos al mantener el puntero sobre un comando en el terminal."
+ },
+ "vs/workbench/contrib/terminalContrib/developer/browser/terminal.developer.contribution": {
+ "workbench.action.terminal.recordSession": "Grabar sesión de terminal",
+ "workbench.action.terminal.recordSession.recording": "Grabando sesión de terminal...",
+ "workbench.action.terminal.restartPtyHost": "Reiniciar host pty",
+ "workbench.action.terminal.showTextureAtlas": "Mostrar atlas de textura terminal",
+ "workbench.action.terminal.writeDataToTerminal": "Escribir datos en el terminal",
+ "workbench.action.terminal.writeDataToTerminal.prompt": "Escriba los datos para escribir directamente en el terminal, omitiendo el pty"
+ },
+ "vs/workbench/contrib/terminalContrib/environmentChanges/browser/terminal.environmentChanges.contribution": {
+ "ScopedEnvironmentContributionInfo": "área de trabajo",
+ "envChanges": "Cambios en el entorno del terminal",
+ "extension": "Extensión: {0}",
+ "workbench.action.terminal.showEnvironmentContributions": "Mostrar contribuciones del entorno"
+ },
+ "vs/workbench/contrib/terminalContrib/find/browser/terminal.find.contribution": {
+ "workbench.action.terminal.findNext": "Buscar siguiente",
+ "workbench.action.terminal.findPrevious": "Buscar anterior",
+ "workbench.action.terminal.focusFind": "Foco en la búsqueda",
+ "workbench.action.terminal.hideFind": "Ocultar la búsqueda",
+ "workbench.action.terminal.searchWorkspace": "Buscar en área de trabajo",
+ "workbench.action.terminal.toggleFindCaseSensitive": "Alternar la búsqueda con distinción de mayúsculas y minúsculas",
+ "workbench.action.terminal.toggleFindRegex": "Alternar la búsqueda mediante regex",
+ "workbench.action.terminal.toggleFindWholeWord": "Alternar la búsqueda con toda la palabra"
+ },
+ "vs/workbench/contrib/terminalContrib/history/browser/terminal.history.contribution": {
+ "goToRecentDirectory.metadata": "Va a una carpeta reciente",
+ "workbench.action.terminal.clearPreviousSessionHistory": "Borrar historial de sesión anterior",
+ "workbench.action.terminal.goToRecentDirectory": "Ir al directorio reciente...",
+ "workbench.action.terminal.runRecentCommand": "Ejecutar comando reciente..."
+ },
+ "vs/workbench/contrib/terminalContrib/history/browser/terminalRunRecentQuickPick": {
+ "openShellHistoryFile": "Abrir archivo",
+ "removeCommand": "Quitar del historial de comandos",
+ "selectRecentCommand": "Seleccione un comando para ejecutar (mantenga presionada la tecla ALT para editar el comando)",
+ "selectRecentCommandMac": "Seleccione un comando para ejecutar (mantenga presionada la tecla Opción para editar el comando)",
+ "selectRecentDirectory": "Seleccione un directorio al que ir (mantenga presionada la tecla Alt para editar el comando).",
+ "selectRecentDirectoryMac": "Seleccione un directorio al que ir (mantenga presionada la tecla Opción para editar el comando).",
+ "shellFileHistoryCategory": "Historial de {0}",
+ "viewCommandOutput": "Ver salida de comando"
+ },
+ "vs/workbench/contrib/terminalContrib/history/common/terminal.history": {
+ "terminal.integrated.shellIntegration.history": "Controla el número de comandos utilizados recientemente que se mantendrán en el historial de la paleta de comandos. Establezca el valor a 0 para desactivar el historial de comandos."
+ },
+ "vs/workbench/contrib/terminalContrib/links/browser/terminal.links.contribution": {
+ "workbench.action.terminal.openDetectedLink": "Abrir vínculo detectado...",
+ "workbench.action.terminal.openLastLocalFileLink": "Abrir vínculo del último archivo local",
+ "workbench.action.terminal.openLastUrlLink": "Abrir vínculo de la última dirección URL",
+ "workbench.action.terminal.openLastUrlLink.description": "Abre el último vínculo de DIRECCIÓN URL o URI detectado en el terminal"
+ },
+ "vs/workbench/contrib/terminalContrib/links/browser/terminalLinkDetectorAdapter": {
+ "focusFolder": "Enfocar carpeta en el explorador",
+ "followLink": "Seguir vínculo",
+ "openFile": "Abrir archivo en el editor",
+ "openFolder": "Abrir carpeta en ventana nueva",
+ "searchWorkspace": "Buscar área de trabajo"
+ },
+ "vs/workbench/contrib/terminalContrib/links/browser/terminalLinkManager": {
+ "allow": "Permitir {0}",
+ "followForwardedLink": "Seguir el vínculo con el puerto reenviado",
+ "followLink": "Seguir vínculo",
+ "followLinkUrl": "Vínculo",
+ "scheme": "Los URI de apertura pueden no ser seguros. ¿Desea permitir la apertura de vínculos con el esquema {0}?",
+ "terminalLinkHandler.followLinkAlt": "alt + clic",
+ "terminalLinkHandler.followLinkAlt.mac": "opción + clic",
+ "terminalLinkHandler.followLinkCmd": "cmd + clic",
+ "terminalLinkHandler.followLinkCtrl": "ctrl + clic"
+ },
+ "vs/workbench/contrib/terminalContrib/links/browser/terminalLinkQuickpick": {
+ "terminal.integrated.localFileLinks": "Archivo",
+ "terminal.integrated.localFolderLinks": "Carpeta",
+ "terminal.integrated.openDetectedLink": "Seleccione el vínculo que desea abrir, escriba para filtrar todos los vínculos",
+ "terminal.integrated.searchLinks": "Búsqueda de áreas de trabajo",
+ "terminal.integrated.urlLinks": "Dirección URL"
+ },
+ "vs/workbench/contrib/terminalContrib/quickAccess/browser/terminal.quickAccess.contribution": {
+ "quickAccessTerminal": "Cambiar terminal activo",
+ "tasksQuickAccessHelp": "Mostrar todos los terminales abiertos",
+ "tasksQuickAccessPlaceholder": "Escriba el nombre de un terminal para abrirlo."
+ },
+ "vs/workbench/contrib/terminalContrib/quickAccess/browser/terminalQuickAccess": {
+ "renameTerminal": "Cambiar nombre del terminal",
+ "workbench.action.terminal.newWithProfilePlus": "Crear nuevo terminal con perfil...",
+ "workbench.action.terminal.newplus": "Crear nueva terminal"
+ },
+ "vs/workbench/contrib/terminalContrib/quickFix/browser/quickFixAddon": {
+ "codeAction.widget.id.quickfix": "Corrección rápida",
+ "quickFix.command": "Ejecutar: {0}",
+ "quickFix.opener": "Abrir: {0}"
+ },
+ "vs/workbench/contrib/terminalContrib/quickFix/browser/terminal.quickFix.contribution": {
+ "workbench.action.terminal.showQuickFixes": "Mostrar correcciones rápidas del terminal"
+ },
+ "vs/workbench/contrib/terminalContrib/quickFix/browser/terminalQuickFixBuiltinActions": {
+ "terminal.createPR": "Crear PR {0}",
+ "terminal.freePort": "Puerto libre {0}"
+ },
+ "vs/workbench/contrib/terminalContrib/quickFix/browser/terminalQuickFixService": {
+ "vscode.extension.contributes.terminalQuickFixes": "Aporta correcciones rápidas del terminal.",
+ "vscode.extension.contributes.terminalQuickFixes.commandExitResult": "Resultado de salida del comando en el que se va a hacer coincidir",
+ "vscode.extension.contributes.terminalQuickFixes.commandLineMatcher": "Expresión regular o cadena con la que se va a probar la línea de comandos",
+ "vscode.extension.contributes.terminalQuickFixes.id": "Identificador del proveedor de corrección rápida",
+ "vscode.extension.contributes.terminalQuickFixes.kind": "Tipo de corrección rápida resultante. Esto cambia la forma en que se presenta la corrección rápida. Tiene como valor predeterminado {0}.",
+ "vscode.extension.contributes.terminalQuickFixes.outputMatcher": "Expresión regular o cadena con la que coincidir una sola línea de la salida, que proporciona grupos a los que se hace referencia en terminalCommand y uri.\r\n\r\n Por ejemplo:\r\n\r\n 'lineMatcher: /git push --set-upstream origin (?[^s]+)/;'\r\n\r\nterminalCommand: 'git push --set-upstream origin ${group:branchName}';'\r\n"
+ },
+ "vs/workbench/contrib/terminalContrib/sendSequence/browser/terminal.sendSequence.contribution": {
+ "sendSequence": "Enviar secuencia",
+ "sendSequence.text.desc": "Secuencia de texto que se enviará al terminal",
+ "workbench.action.terminal.sendSequence.prompt": "Introduzca la secuencia que se enviará al terminal"
+ },
+ "vs/workbench/contrib/terminalContrib/sendSignal/browser/terminal.sendSignal.contribution": {
+ "SIGCONT": "Continuar proceso",
+ "SIGHUP": "Desconectar",
+ "SIGINT": "Interrumpir el proceso (Ctrl+C)",
+ "SIGKILL": "Forzar la terminación del proceso",
+ "SIGQUIT": "Finalizar el proceso",
+ "SIGSTOP": "Detener proceso",
+ "SIGTERM": "Finalizar el proceso de forma controlada",
+ "SIGUSR1": "Señal definida por el usuario 1",
+ "SIGUSR2": "Señal definida por el usuario 2",
+ "enterSignal": "Introduzca el nombre de la señal (por ejemplo, SIGTERM, SIGKILL)",
+ "manualSignal": "Introducir la señal manualmente",
+ "selectSignal": "Seleccionar la señal para enviar al proceso terminal",
+ "sendSignal": "Enviar señal",
+ "sendSignal.signal.desc": "La señal que se enviará al proceso del terminal (por ejemplo, 'SIGTERM', 'SIGINT', 'SIGKILL')"
+ },
+ "vs/workbench/contrib/terminalContrib/stickyScroll/browser/terminal.stickyScroll.contribution": {
+ "miStickyScroll": "&&Desplazamiento con inmovilización",
+ "stickyScroll": "Desplazamiento con inmovilización",
+ "workbench.action.terminal.toggleStickyScroll": "Alternar desplazamiento con inmovilización"
+ },
+ "vs/workbench/contrib/terminalContrib/stickyScroll/browser/terminalStickyScrollColorRegistry": {
+ "terminalStickyScroll.background": "Color de fondo de la superposición del desplazamiento con inmovilización en el terminal.",
+ "terminalStickyScroll.border": "Orden de la superposición del desplazamiento con inmovilización en el terminal.",
+ "terminalStickyScrollHover.background": "Color de fondo de la superposición del desplazamiento con inmovilización en el terminal cuando se pasa el ratón por encima."
+ },
+ "vs/workbench/contrib/terminalContrib/stickyScroll/browser/terminalStickyScrollOverlay": {
+ "labelWithKeybinding": "{0} ({1})",
+ "stickyScrollHoverTitle": "Ir al comando"
+ },
+ "vs/workbench/contrib/terminalContrib/stickyScroll/common/terminalStickyScrollConfiguration": {
+ "stickyScroll.enabled": "Muestra el comando actual en la parte superior del terminal. Esta característica requiere que se activen [shell integration]({0}). Vea {1}.",
+ "stickyScroll.maxLineCount": "Define el número máximo de líneas rápidas que se mostrarán. Las líneas de desplazamiento con inmovilización nunca superarán el 40% de la ventanilla independientemente de esta configuración."
+ },
+ "vs/workbench/contrib/terminalContrib/suggest/browser/terminal.suggest.contribution": {
+ "workbench.action.terminal.acceptSelectedSuggestion": "Insertar",
+ "workbench.action.terminal.acceptSelectedSuggestionEnter": "Aceptar sugerencia seleccionada (Entrar)",
+ "workbench.action.terminal.configureSuggestSettings": "Configurar",
+ "workbench.action.terminal.hideSuggestWidget": "Ocultar widget de sugerencias",
+ "workbench.action.terminal.hideSuggestWidgetAndNavigateHistory": "Ocultar widget de sugerencias e historial de navegación",
+ "workbench.action.terminal.learnMore": "Obtener más información",
+ "workbench.action.terminal.resetSuggestWidgetSize": "Restablecer tamaño del widget de sugerencias",
+ "workbench.action.terminal.selectNextPageSuggestion": "Seleccionar la sugerencia de página siguiente",
+ "workbench.action.terminal.selectNextSuggestion": "Seleccionar la sugerencia siguiente",
+ "workbench.action.terminal.selectPrevPageSuggestion": "Seleccionar la sugerencia de página anterior",
+ "workbench.action.terminal.selectPrevSuggestion": "Seleccionar la sugerencia anterior",
+ "workbench.action.terminal.suggestToggleDetails": "Sugerir detalles de alternancia",
+ "workbench.action.terminal.suggestToggleDetailsFocus": "Sugerir alternar foco de sugerencias",
+ "workbench.action.terminal.suggestToggleExplainMode": "Sugerir alternar modos de explicación",
+ "workbench.action.terminal.triggerSuggest": "Desencadenar sugerencia"
+ },
+ "vs/workbench/contrib/terminalContrib/suggest/browser/terminalSuggestAddon": {
+ "alias": "Alias",
+ "argument": "Argumento",
+ "branch": "Rama",
+ "commit": "Confirmar",
+ "file": "Archivo",
+ "flag": "Marca",
+ "folder": "Carpeta",
+ "inlineSuggestion": "Sugerencia insertada",
+ "inlineSuggestionAlwaysOnTop": "Sugerencia insertada",
+ "method": "Método",
+ "option": "Opción",
+ "optionValue": "Valor de opción",
+ "pullRequest": "Solicitud de cambios",
+ "pullRequestDone": "Solicitud de cambios (listo)",
+ "remote": "Remoto",
+ "stash": "Alijo",
+ "symbolicLinkFile": "Archivo de vínculo simbólico",
+ "symbolicLinkFolder": "Carpeta de vínculo simbólico",
+ "tag": "Etiqueta"
+ },
+ "vs/workbench/contrib/terminalContrib/suggest/browser/terminalSymbolIcons": {
+ "terminalSymbolAliasIcon": "Icono de alias en el widget de sugerencias del terminal.",
+ "terminalSymbolArgumentIcon": "Icono de argumentos en el widget de sugerencias del terminal.",
+ "terminalSymbolBranchIcon": "Icono para las ramas en el widget de sugerencias de terminal.",
+ "terminalSymbolCommitIcon": "Icono de confirmaciones en el widget de sugerencias de terminal.",
+ "terminalSymbolFileIcon": "Icono de archivos en el widget de sugerencias del terminal.",
+ "terminalSymbolFlagIcon": "Icono de marcas en el widget de sugerencias de terminal.",
+ "terminalSymbolFolderIcon": "Icono de carpetas en el widget de sugerencias de terminal.",
+ "terminalSymbolIcon.aliasForeground": "Color de primer plano de un icono de alias. Estos iconos aparecerán en el widget de sugerencias de terminal.",
+ "terminalSymbolIcon.argumentForeground": "Color de primer plano de un icono de argumento. Estos iconos aparecerán en el widget de sugerencias de terminal.",
+ "terminalSymbolIcon.branchForeground": "Color de primer plano de un icono de rama. Estos iconos aparecerán en el widget de sugerencias de terminal.",
+ "terminalSymbolIcon.commitForeground": "Color de primer plano de un icono de confirmación. Estos iconos aparecerán en el widget de sugerencias de terminal.",
+ "terminalSymbolIcon.enumMemberForeground": "Color de primer plano de un icono de miembro de enumeración. Estos iconos aparecerán en el widget de sugerencias de terminal.",
+ "terminalSymbolIcon.fileForeground": "Color de primer plano de un icono de archivo. Estos iconos aparecerán en el widget de sugerencias de terminal.",
+ "terminalSymbolIcon.flagForeground": "Color de primer plano de un icono de marca. Estos iconos aparecerán en el widget de sugerencias de terminal.",
+ "terminalSymbolIcon.folderForeground": "Color de primer plano de un icono de carpeta. Estos iconos aparecerán en el widget de sugerencias de terminal.",
+ "terminalSymbolIcon.inlineSuggestionForeground": "Color de primer plano de un icono de sugerencia en línea. Estos iconos aparecerán en el widget de sugerencias de terminal.",
+ "terminalSymbolIcon.methodForeground": "Color de primer plano de un icono de método. Estos iconos aparecerán en el widget de sugerencias de terminal.",
+ "terminalSymbolIcon.optionForeground": "Color de primer plano de un icono de opción. Estos iconos aparecerán en el widget de sugerencias de terminal.",
+ "terminalSymbolIcon.pullRequestDoneForeground": "Color de primer plano de un icono de solicitud de cambios completada. Estos iconos aparecerán en el widget de sugerencias de terminal.",
+ "terminalSymbolIcon.pullRequestForeground": "Color de primer plano de un icono de solicitud de cambios. Estos iconos aparecerán en el widget de sugerencias de terminal.",
+ "terminalSymbolIcon.remoteForeground": "Color de primer plano de un icono de elemento remoto. Estos iconos aparecerán en el widget de sugerencias de terminal.",
+ "terminalSymbolIcon.stashForeground": "Color de primer plano de un icono de guardar provisionalmente. Estos iconos aparecerán en el widget de sugerencias de terminal.",
+ "terminalSymbolIcon.symbolTextForeground": "Color de primer plano de una sugerencia de texto no cifrado. Estos iconos aparecerán en el widget de sugerencias del terminal.",
+ "terminalSymbolIcon.symbolicLinkFileForeground": "Color de primer plano de un icono de archivo de vínculo simbólico. Estos iconos aparecerán en el widget de sugerencias de terminal.",
+ "terminalSymbolIcon.symbolicLinkFolderForeground": "Color de primer plano de un icono de carpeta de vínculo simbólico. Estos iconos aparecerán en el widget de sugerencias de terminal.",
+ "terminalSymbolIcon.tagForeground": "Color de primer plano de un icono de etiqueta. Estos iconos aparecerán en el widget de sugerencias de terminal.",
+ "terminalSymbolInlineSuggestionIcon": "Icono de sugerencias en línea en el widget de sugerencias de terminal.",
+ "terminalSymbolMethodIcon": "Icono de métodos en el widget de sugerencias del terminal.",
+ "terminalSymbolOptionIcon": "Icono de opciones en el widget de sugerencias de terminal.",
+ "terminalSymbolOptionValue": "Icono de miembros de enumeración en el widget de sugerencias de terminal.",
+ "terminalSymbolPullRequestDoneIcon": "Icono de las solicitudes de cambios completadas en el widget de sugerencias del terminal.",
+ "terminalSymbolPullRequestIcon": "Icono de las solicitudes de cambios en el widget de sugerencias del terminal.",
+ "terminalSymbolRemoteIcon": "Icono para los elementos remotos en el widget de sugerencias de terminal.",
+ "terminalSymbolStashIcon": "Icono para guardar provisionalmente en el widget de sugerencias de terminal.",
+ "terminalSymbolSymboTextIcon": "Icono de sugerencias de texto sin formato en el widget de sugerencias del terminal.",
+ "terminalSymbolSymbolicLinkFileIcon": "Icono de archivos de vínculo simbólico en el widget de sugerencias del terminal.",
+ "terminalSymbolSymbolicLinkFolderIcon": "Icono de carpetas de vínculo simbólico en el widget de sugerencias del terminal.",
+ "terminalSymbolTagIcon": "Icono de etiquetas en el widget de sugerencias de terminal."
+ },
+ "vs/workbench/contrib/terminalContrib/suggest/common/terminalSuggestConfiguration": {
+ "runOnEnter.always": "Ejecutar siempre en \"Entrar\".",
+ "runOnEnter.exactMatch": "Se ejecuta en \"Entrar\" cuando la sugerencia se escribe en su totalidad.",
+ "runOnEnter.exactMatchIgnoreExtension": "Se ejecuta en \"Entrar\" cuando se escribe la sugerencia en su totalidad o cuando se escribe un archivo sin su extensión incluida.",
+ "runOnEnter.never": "Nunca se ejecute en \"Entrar\".",
+ "suggest.cdPath": "Controla si se debe habilitar $CDPATH compatibilidad que expone elementos secundarios de las carpetas de la variable $CDPATH independientemente del directorio de trabajo actual. se espera que $CDPATH estén separados por punto y coma en Windows y separados por dos puntos en otras plataformas.",
+ "suggest.cdPath.absolute": "Habilite la característica y use rutas de acceso absolutas. Esto es útil cuando el shell no admite de forma nativa \"$CDPATH\".",
+ "suggest.cdPath.off": "Deshabilite la característica.",
+ "suggest.cdPath.relative": "Habilite la característica y use rutas de acceso relativas.",
+ "suggest.enabled": "Habilita las sugerencias de IntelliSense de terminal (versión preliminar) para los shells admitidos ({0}) cuando {1} se establece en {2}.",
+ "suggest.inlineSuggestion": "Controla si se debe detectar la sugerencia insertada del shell y cómo se puntúa.",
+ "suggest.inlineSuggestion.alwaysOnTop": "Habilite la característica y coloque siempre la sugerencia en línea en la parte superior.",
+ "suggest.inlineSuggestion.alwaysOnTopExceptExactMatch": "Habilite la característica y ordene la sugerencia en línea sin forzarla a estar en la parte superior. Esto significa que las coincidencias exactas estarán por encima de la sugerencia incorporada.",
+ "suggest.inlineSuggestion.off": "Deshabilite la característica.",
+ "suggest.insertTrailingSpace": "Controla si se insertará automáticamente un espacio tras aceptar una sugerencia y se volverán a mostrar sugerencias. Nunca se añade un espacio al final en carpetas ni en carpetas con vínculos simbólicos.",
+ "suggest.provider.lsp.description": "Mostrar sugerencias de servidores de lenguaje.",
+ "suggest.provider.title": "Mostrar sugerencias de {0}.",
+ "suggest.providers": "Los proveedores están habilitados de forma predeterminada. Para omitirlos, establezca el identificador del proveedor en 'false'.",
+ "suggest.providersEnabledByDefault": "Controla qué sugerencias se mostrarán automáticamente al escribir. Los proveedores de sugerencias están habilitados de manera predeterminada.",
+ "suggest.quickSuggestions": "Controla si las sugerencias deben mostrarse automáticamente al escribir. Tenga en cuenta también la configuración de {0} que controla si los caracteres especiales desencadenan las sugerencias.",
+ "suggest.quickSuggestions.arguments": "Habilite sugerencias rápidas para argumentos, cualquier cosa después de la primera palabra de una entrada de la línea de comandos.",
+ "suggest.quickSuggestions.commands": "Habilite sugerencias rápidas para comandos, la primera palabra de una entrada de la línea de comandos.",
+ "suggest.quickSuggestions.unknown": "Habilite sugerencias rápidas cuando no esté claro cuál es la mejor sugerencia, si se trata de archivos y carpetas se sugerirá como reserva.",
+ "suggest.runOnEnter": "Controla si las sugerencias deben ejecutarse inmediatamente cuando se usa \"Entrar\" (no \"Tab\") para aceptar el resultado.",
+ "suggest.showStatusBar": "Controla si se debe mostrar la barra de estado de sugerencias de terminal.",
+ "suggest.suggestOnTriggerCharacters": "Controla si deben aparecer sugerencias de forma automática al escribir caracteres desencadenadores.",
+ "suggest.upArrowNavigatesHistory": "Determina si la tecla de flecha arriba navega por el historial de comandos cuando el foco está en la primera sugerencia y aún no se ha producido la navegación. Cuando se establece en false, la flecha arriba moverá el foco a la última sugerencia en su lugar.",
+ "terminal.integrated.selectionMode": "Controla cómo funciona la selección de sugerencias en el terminal integrado.",
+ "terminal.integrated.selectionMode.always": "Seleccione siempre una sugerencia cuando se desencadene IntelliSense automáticamente. Se puede usar \"Entrar\" o \"Tab\" para aceptar la primera sugerencia.",
+ "terminal.integrated.selectionMode.never": "Nunca seleccione una sugerencia cuando desencadene IntelliSense automáticamente. Se debe navegar por la lista a través de \"Abajo\" para poder usar \"Entrar\" o \"Tabulador\" para aceptar la sugerencia activa.",
+ "terminal.integrated.selectionMode.partial": "Seleccione parcialmente una sugerencia al desencadenar IntelliSense automáticamente. \"Tab\" se puede usar para aceptar la primera sugerencia, solo después de navegar por las sugerencias a través de \"Abajo\", \"Entrar\" también aceptará la sugerencia activa.",
+ "terminalSuggestProvidersConfigurationTitle": "Proveedores de sugerencias de terminal",
+ "terminalWindowsExecutableSuggestionSetting": "Conjunto de extensiones ejecutables de comandos de Windows que se incluirán como sugerencias en el terminal.\r\n\r\nMuchos ejecutables se incluyen de forma predeterminada, se enumeran a continuación:\r\n\r\n{0}.\r\n\r\nPara excluir una extensión, establézcala en 'false'\r\n\r\n. Para incluir uno que no esté en la lista, agréguelo y establézcalo en 'true'."
+ },
+ "vs/workbench/contrib/terminalContrib/typeAhead/common/terminalTypeAheadConfiguration": {
+ "terminal.integrated.localEchoEnabled": "Cuándo se debe habilitar el eco local. Esto invalidará {0}",
+ "terminal.integrated.localEchoEnabled.auto": "Habilitado solo para áreas de trabajo remotas",
+ "terminal.integrated.localEchoEnabled.off": "Siempre deshabilitado",
+ "terminal.integrated.localEchoEnabled.on": "Siempre habilitado",
+ "terminal.integrated.localEchoExcludePrograms": "El eco local se deshabilitará cuando se encuentre cualquiera de estos nombres de programa en el título del terminal.",
+ "terminal.integrated.localEchoLatencyThreshold": "Duración del retraso de red, en milisegundos, donde las ediciones locales se mostrarán en el terminal sin esperar al reconocimiento del servidor. Si es \"0\", el eco local siempre estará activado y si es \"-1\" se deshabilitará.",
+ "terminal.integrated.localEchoStyle": "Estilo del terminal del texto con eco local; es un estilo de fuente o un color RGB."
+ },
+ "vs/workbench/contrib/terminalContrib/voice/browser/terminalVoice": {
+ "terminalVoiceTextInserted": "{0} insertado"
+ },
+ "vs/workbench/contrib/terminalContrib/voice/browser/terminalVoiceActions": {
+ "enableExtension": "Habilitar extensión",
+ "installExtension": "Instalar extensión",
+ "terminal.voice.detail": "El soporte con micrófonos requiere esta extensión.",
+ "terminal.voice.enableSpeechExtension": "¿Desea habilitar la extensión de voz?",
+ "terminal.voice.installSpeechExtension": "¿Desea instalar la extensión \"Voz de VS Code\" de \"Microsoft\"?",
+ "workbench.action.terminal.startDictation": "Iniciar dictado en terminal",
+ "workbench.action.terminal.stopDictation": "Detener dictado en el terminal"
+ },
+ "vs/workbench/contrib/terminalContrib/wslRecommendation/browser/terminal.wslRecommendation.contribution": {
+ "install": "Instalar",
+ "useWslExtension.title": "Se recomienda la extensión \"{0}\" para abrir un terminal en WSL."
+ },
+ "vs/workbench/contrib/terminalContrib/zoom/browser/terminal.zoom.contribution": {
+ "fontZoomIn": "Aumentar tamaño de fuente",
+ "fontZoomOut": "Disminuir tamaño de fuente",
+ "fontZoomReset": "Restablecer tamaño de fuente"
+ },
+ "vs/workbench/contrib/terminalContrib/zoom/common/terminal.zoom": {
+ "terminal.integrated.mouseWheelZoom": "Acercar la fuente del terminal al usar la rueda del mouse y mantener pulsado \"Ctrl\".",
+ "terminal.integrated.mouseWheelZoom.mac": "Acercar la fuente del terminal al usar la rueda del mouse y mantener pulsado \"Cmd\"."
+ },
+ "vs/workbench/contrib/testing/browser/codeCoverageDecorations": {
+ "coverage.branchCovered": "La ramificación {0} en {1} se ejecutó {2} veces.",
+ "coverage.branchCoveredYes": "La ramificación {0} en {1} se ejecutó.",
+ "coverage.branchNotCovered": "No se ha cubierto la ramificación {0} en {1}.",
+ "coverage.branches": "{0} de {1} ramas en {2} se han cubierto.",
+ "coverage.declExecutedCount": "'{0}' se ejecutó {1} veces.",
+ "coverage.declExecutedNo": "No se ejecutó \"{0}\".",
+ "coverage.declExecutedYes": "Se ejecutó \"{0}\"",
+ "coverage.hideInline": "Ocultar cobertura insertada",
+ "coverage.toggleInline": "Alternar cobertura insertada",
+ "testing.coverageForTestAvailable": "{0} pruebas ejecutaron código en este archivo",
+ "testing.filterActionLabel": "Cobertura de filtro para probar",
+ "testing.goToNextMissedLine": "Ir a la siguiente línea descubierta",
+ "testing.goToNextMissedLineDesc": "Vaya a la siguiente línea que no esté cubierta por pruebas.",
+ "testing.goToPreviousMissedLine": "Ir a la anterior línea descubierta",
+ "testing.goToPreviousMissedLineDesc": "Vaya a la anterior línea que no esté cubierta por pruebas.",
+ "testing.hideCoverageInExplorer": "Ocultar la cobertura en el Explorador",
+ "testing.hideInlineCoverage": "Ocultar cobertura insertada",
+ "testing.rerun": "Volver a ejecutar",
+ "testing.showInlineCoverage": "Mostrar cobertura en línea",
+ "testing.toggleCoverageInExplorerDesc": "Alternar la visualización de la cobertura de pruebas en la vista del Explorador de archivos.",
+ "testing.toggleCoverageInExplorerTitle": "Alternar la cobertura en el Explorador",
+ "testing.toggleInlineCoverage": "Alternar vista en línea",
+ "testing.toggleToolbarDesc": "Alterne la barra de cobertura rápida en el editor.",
+ "testing.toggleToolbarTitle": "Barra de herramientas de cobertura de pruebas"
+ },
+ "vs/workbench/contrib/testing/browser/codeCoverageDisplayUtils": {
+ "changePerTestFilter": "Haga clic para ver la cobertura de una sola prueba",
+ "testing.allTests": "Todas las pruebas",
+ "testing.coverageForTest": "Mostrando \"{0}\"",
+ "testing.percentCoverage": "Cobertura de {0}",
+ "testing.pickTest": "Elija una prueba para mostrar la cobertura de"
+ },
"vs/workbench/contrib/testing/browser/icons": {
"filterIcon": "Icono de la acción \"Filtrar\" en la vista de pruebas.",
"hiddenIcon": "Icono que aparece junto a las pruebas ocultas, cuando se hayan mostrado.",
"testViewIcon": "Vea el icono de la vista de pruebas.",
"testingCancelIcon": "Icono para cancelar las series de pruebas en curso.",
"testingCancelRefreshTests": "Icono en el botón para cancelar la actualización de pruebas.",
+ "testingCoverage": "Icono que representa la cobertura de pruebas",
+ "testingCoverageIcon": "Icono de la acción \"Ejecutar prueba con cobertura\".",
"testingDebugAllIcon": "Icono de la acción \"depurar todas las pruebas\".",
"testingDebugIcon": "Icono de la acción para \"depurar prueba\".",
"testingErrorIcon": "Icono que se muestra para las pruebas que tienen un error.",
"testingFailedIcon": "Icono que se muestra para las pruebas con errores.",
+ "testingMissingBranch": "Icono que representa un bloque descubierto sin un rango",
"testingPassedIcon": "Icono que se muestra para las pruebas superadas.",
"testingQueuedIcon": "Icono que se muestra para las pruebas puestas en cola.",
"testingRefreshTests": "Icono en el botón para actualizar las pruebas.",
+ "testingRerunIcon": "Icono de la acción \"volver a ejecutar pruebas\".",
+ "testingResultsIcon": "Iconos para los resultados de pruebas.",
"testingRunAllIcon": "Icono de la acción \"ejecutar todas las pruebas\".",
+ "testingRunAllWithCoverageIcon": "Icono de la acción \"Ejecutar todas las pruebas con cobertura\".",
"testingRunIcon": "Icono de la acción \"ejecutar prueba\".",
"testingShowAsList": "Icono que se muestra cuando el explorador de pruebas está deshabilitado como árbol.",
"testingShowAsTree": "Icono que se muestra cuando el explorador de pruebas está deshabilitado como lista.",
"testingSkippedIcon": "Icono que se muestra para las pruebas que se omiten.",
+ "testingTurnContinuousRunIsOn": "Icono cuando la ejecución continua está activada para una prueba ite,.",
+ "testingTurnContinuousRunOff": "Icono para desactivar las ejecuciones de pruebas continuas.",
+ "testingTurnContinuousRunOn": "Icono para activar las ejecuciones de pruebas continuas.",
"testingUnsetIcon": "Icono que se muestra para las pruebas con un estado no establecido.",
- "testingUpdateProfiles": "Icono que se muestra para actualizar los perfiles de prueba."
+ "testingUpdateProfiles": "Icono que se muestra para actualizar los perfiles de prueba.",
+ "testingWasCovered": "Icono que representa que se ha cubierto un elemento"
+ },
+ "vs/workbench/contrib/testing/browser/testCoverageBars": {
+ "branchCoverage": "{0}/{1} ramas cubiertas ({2})",
+ "functionCoverage": "{0}/{1} funciones cubiertas ({2})",
+ "statementCoverage": "{0}/{1} instrucciones cubiertas ({2})"
+ },
+ "vs/workbench/contrib/testing/browser/testCoverageView": {
+ "filteredToTest": "Mostrando cobertura para \"{0}\"",
+ "functionsWithoutCoverage": "{0} declaraciones sin cobertura...",
+ "loadingCoverageDetails": "Cargando detalles de cobertura...",
+ "testCoverageItemLabel": "{0} cobertura: {0}%",
+ "testCoverageTreeLabel": "Explorador de cobertura de pruebas",
+ "testing.changeCoverageFilter": "Filtrar cobertura por prueba",
+ "testing.changeCoverageSort": "Cambiar criterio de ordenación",
+ "testing.coverageCollapseAll": "Contraer toda la cobertura",
+ "testing.coverageSortByCoverage": "Ordenar por cobertura",
+ "testing.coverageSortByCoverageDescription": "Los archivos y las declaraciones se ordenan por cobertura total",
+ "testing.coverageSortByLocation": "Ordenar por ubicación",
+ "testing.coverageSortByLocationDescription": "Los archivos se ordenan alfabéticamente, las declaraciones se ordenan por posición",
+ "testing.coverageSortByName": "Ordenar por nombre",
+ "testing.coverageSortByNameDescription": "Los archivos y las declaraciones se ordenan alfabéticamente",
+ "testing.coverageSortPlaceholder": "Ordenar la vista Cobertura de pruebas..."
},
"vs/workbench/contrib/testing/browser/testExplorerActions": {
"configureProfile": "Seleccionar un perfil para actualizar",
+ "coverageSelectedTests": "Ejecutar pruebas con cobertura",
"debug test": "Depurar prueba",
"debugAllTests": "Depurar todas las pruebas",
"debugSelectedTests": "Depurar pruebas",
"discoveringTests": "Detectando pruebas",
+ "getExplorerSelection": "Obtener selección del explorador",
+ "getSelectedProfiles": "Obtener perfiles seleccionados",
"hideTest": "Ocultar prueba",
+ "noCoverageTestProvider": "No se encontraron pruebas con ejecutores de cobertura en esta área de trabajo. Puede que tenga que instalar una extensión del proveedor de pruebas",
"noDebugTestProvider": "No se encontró ninguna prueba depurable en esta área de trabajo. Puede que tenga que instalar una extensión del proveedor de pruebas",
+ "noRelatedCode": "No se encontró ningún código relacionado.",
+ "noTestFound": "No se encontraron pruebas relacionadas.",
"noTestProvider": "No se encontró ninguna prueba en esta área de trabajo. Puede que tenga que instalar una extensión del proveedor de pruebas",
+ "noTests": "No se encontraron pruebas en el archivo o carpeta seleccionados",
+ "noTestsAtCursor": "No se encontraron pruebas aquí",
+ "noTestsInFile": "No se encontraron pruebas en este archivo",
+ "relatedCode": "Código relacionado",
+ "relatedTests": "Pruebas relacionadas",
"run test": "Ejecutar prueba",
+ "run with cover test": "Ejecutar prueba con cobertura",
"runAllTests": "Ejecutar todas las pruebas",
+ "runAllWithCoverage": "Ejecutar todas las pruebas con cobertura",
"runSelectedTests": "Ejecutar pruebas",
"testing.cancelRun": "Cancelar serie de pruebas",
"testing.cancelTestRefresh": "Cancelar actualización de prueba",
+ "testing.clearCoverage": "Borrar cobertura",
"testing.clearResults": "Borrar todos los resultados",
"testing.collapseAll": "Contraer todas las pruebas",
"testing.configureProfile": "Configurar perfiles de prueba",
+ "testing.coverageAtCursor": "Ejecutar prueba en el cursor con cobertura",
+ "testing.coverageCurrentFile": "Ejecutar pruebas con cobertura en el archivo actual",
+ "testing.coverageLastRun": "Volver a ejecutar la última ejecución con cobertura",
"testing.debugAtCursor": "Depurar prueba en el cursor",
"testing.debugCurrentFile": "Depurar las pruebas en el archivo actual",
"testing.debugFailTests": "Depurar las pruebas con errores",
+ "testing.debugFailedFromLastRun": "Depuración de pruebas con errores desde la última ejecución",
"testing.debugLastRun": "Depurar la última ejecución",
"testing.editFocusedTest": "Ir a la prueba",
+ "testing.goToRelatedCode": "Ir al código relacionado",
+ "testing.goToRelatedTest": "Ir a prueba relacionada",
+ "testing.noCoverage": "No hay información de cobertura disponible en la última serie de pruebas.",
+ "testing.noProfiles": "No se encontraron perfiles habilitados para la ejecución continua de prueba",
+ "testing.openCoverage": "Abrir cobertura",
"testing.openOutputPeek": "Ver salida",
+ "testing.peekToRelatedCode": "Ver código relacionado",
+ "testing.peekToRelatedTest": "Ver prueba relacionada",
"testing.reRunFailTests": "Volver a ejecutar las pruebas con errores",
+ "testing.reRunFailedFromLastRun": "Volver a ejecutar pruebas con errores desde la última ejecución",
"testing.reRunLastRun": "Volver a realizar la última ejecución",
"testing.refreshTests": "Actualizar pruebas",
"testing.runAtCursor": "Ejecutar prueba en el cursor",
"testing.runCurrentFile": "Ejecutar pruebas en el archivo actual",
"testing.runUsing": "Ejecutar usando el perfil...",
"testing.searchForTestExtension": "Buscar la extensión de prueba",
+ "testing.selectContinuousProfiles": "Seleccionar perfiles para ejecutar cuando cambien los archivos:",
"testing.selectDefaultTestProfiles": "Seleccionar perfil predeterminado",
"testing.showMostRecentOutput": "Mostrar salida",
"testing.sortByDuration": "Ordenar por duración",
"testing.sortByLocation": "Ordenar por ubicación",
"testing.sortByStatus": "Ordenar por estado",
+ "testing.startContinuous": "Iniciar ejecución continua",
+ "testing.startContinuousRunUsing": "Iniciar ejecución continua con...",
+ "testing.stopContinuous": "Detener ejecución continua",
+ "testing.toggleContinuousRunOff": "Desactivar ejecución continua",
+ "testing.toggleContinuousRunOn": "Activar la ejecución continua",
"testing.toggleInlineTestOutput": "Alternar salida de prueba insertada",
+ "testing.toggleResultsViewLayout": "Alternar la posición del árbol",
"testing.viewAsList": "Ver como lista",
"testing.viewAsTree": "Ver como árbol",
"unhideAllTests": "Mostrar todas las pruebas",
@@ -9436,7 +15659,9 @@
"noTestProvidersRegistered": "Aún no se ha encontrado ninguna prueba en esta área de trabajo.",
"searchForAdditionalTestExtensions": "Instalar extensiones de prueba adicionales...",
"test": "Pruebas",
- "testExplorer": "Explorador de pruebas"
+ "testCoverage": "Cobertura de prueba",
+ "testExplorer": "Explorador de pruebas",
+ "testResultsPanelName": "Resultados de la prueba"
},
"vs/workbench/contrib/testing/browser/testingConfigurationUi": {
"testConfigurationUi.pick": "Elegir un perfil de prueba para usar",
@@ -9444,6 +15669,7 @@
},
"vs/workbench/contrib/testing/browser/testingDecorations": {
"actual.title": "Real",
+ "coverage test": "Ejecutar con cobertura",
"debug all test": "Depurar todas las pruebas",
"debug test": "Depurar prueba",
"expected.title": "Esperado",
@@ -9451,19 +15677,24 @@
"peekTestOutout": "Ver el código sin salir de la salida de prueba",
"reveal test": "Mostrar en el Explorador de pruebas",
"run all test": "Ejecutar todas las pruebas",
+ "run all test with coverage": "Ejecutar todas las pruebas con cobertura",
"run test": "Ejecutar prueba",
+ "selectTestToRun": "Seleccionar una prueba para ejecutar",
+ "testOverflowItems": "{0} pruebas más...",
+ "testing.cancelRun": "Cancelar serie de pruebas",
"testing.gutterMsg.contextMenu": "Haga clic para ver las opciones de prueba",
+ "testing.gutterMsg.coverage": "Haga clic para ejecutar pruebas con cobertura, haga clic con el botón secundario para ver más opciones",
"testing.gutterMsg.debug": "Haga clic para depurar las pruebas; haga clic con el botón derecho para ver más opciones",
"testing.gutterMsg.run": "Hacer clic para ejecutar las pruebas, hacer clic con el botón derecho para ver más opciones",
"testing.runUsing": "Ejecutar usando el perfil..."
},
"vs/workbench/contrib/testing/browser/testingExplorerFilter": {
- "filter": "Filtrar",
"testExplorerFilter": "Filtro (por ejemplo, text, !exclude, @etiqueta)",
"testExplorerFilterLabel": "Filtrar texto para las pruebas en el explorador",
"testing.filters.currentFile": "Mostrar solo en archivo activo",
"testing.filters.fuzzyMatch": "Coincidencia aproximada",
"testing.filters.menu": "Más filtros...",
+ "testing.filters.openedFiles": "Mostrar solo en archivos abiertos",
"testing.filters.removeTestExclusions": "Mostrar todas las pruebas",
"testing.filters.showExcludedTests": "Mostrar pruebas ocultas",
"testing.filters.showOnlyExecuted": "Mostrar solo las pruebas ejecutadas",
@@ -9472,86 +15703,139 @@
"vs/workbench/contrib/testing/browser/testingExplorerView": {
"configureTestProfiles": "Configurar perfiles de prueba",
"defaultTestProfile": "{0} (valor predeterminado)",
+ "noResults": "Todavía no hay resultados de la prueba.",
"selectDefaultConfigs": "Seleccionar perfil predeterminado",
"testExplorer": "Explorador de pruebas",
"testing.treeElementLabelDuration": "{0}, en {1}",
+ "testing.treeElementLabelOutdated": "{0}, resultado obsoleto",
+ "testingContinuousBadge": "Se están buscando cambios en las pruebas",
+ "testingCountBadgeFailed": "{0} pruebas no superadas",
+ "testingCountBadgePassed": "{0} pruebas superadas",
+ "testingCountBadgeSkipped": "{0} pruebas omitidas",
"testingFindExtension": "Mostrar pruebas de áreas de trabajo",
- "testingNoTest": "Mostrar pruebas del área de trabajo"
+ "testingNoTest": "Mostrar pruebas del área de trabajo",
+ "testingSelectConfig": "Seleccionar configuración..."
},
"vs/workbench/contrib/testing/browser/testingOutputPeek": {
"close": "Cerrar",
+ "testOutputTitle": "Salida de prueba",
+ "testing.collapsePeekStack": "Contraer marcos de pila",
+ "testing.goToNextMessage": "Ir al siguiente error de prueba",
+ "testing.goToNextMessage.description": "Muestra el siguiente mensaje de error en el archivo",
+ "testing.goToPreviousMessage": "Ir al error anterior de la prueba",
+ "testing.goToPreviousMessage.description": "Muestra el mensaje anterior de error en el archivo.",
+ "testing.markdownPeekError": "No se pudo abrir la vista previa de Markdown: {0}.\r\n\r\nAsegúrese de que la extensión Markdown está habilitada.",
+ "testing.openMessageInEditor": "Abrir en el editor",
+ "testing.toggleTestingPeekHistory": "Alternar historial de pruebas en Inspección",
+ "testing.toggleTestingPeekHistory.description": "Muestra u oculta el historial de series de pruebas en la vista de inspección"
+ },
+ "vs/workbench/contrib/testing/browser/testingViewPaneContainer": {
+ "testing": "Pruebas"
+ },
+ "vs/workbench/contrib/testing/browser/testResultsView/testResultsOutput": {
+ "caseNoOutput": "El caso de prueba no notificó ningún resultado.",
+ "runNoOutput": "La ejecución de la prueba no registró ninguna salida",
+ "runNoOutputForPast": "La salida de pruebas solo está disponible para nuevas series de pruebas.",
+ "testingOutputActual": "Resultado real",
+ "testingOutputExpected": "Resultado esperado"
+ },
+ "vs/workbench/contrib/testing/browser/testResultsView/testResultsTree": {
+ "closeTestCoverage": "Cerrar cobertura de prueba",
"debug test": "Depurar prueba",
"messageMoreLines1": "+ 1 línea más",
"messageMoreLinesN": "+ {0} líneas más",
+ "nOlderResults": "{0} resultados anteriores",
+ "oneOlderResult": "1 resultado anterior",
+ "openTestCoverage": "Ver cobertura de prueba",
"run test": "Ejecutar prueba",
- "testUnnamedTask": "Tarea sin nombre",
- "testing.debugLastRun": "Ejecución de la prueba de depuración",
- "testing.goToFile": "Ir al archivo",
- "testing.goToNextMessage": "Ir al siguiente error de prueba",
- "testing.goToPreviousMessage": "Ir al error anterior de la prueba",
- "testing.openMessageInEditor": "Abrir en el editor",
- "testing.reRunLastRun": "Volver a ejecutar la prueba",
+ "testing.cancelRun": "Cancelar serie de pruebas",
+ "testing.debugFailedFromLastRun": "Depurar pruebas con errores",
+ "testing.debugLastRun": "Depurar la última ejecución",
+ "testing.debugTest": "Depurar prueba",
+ "testing.goToError": "Ir al error",
+ "testing.goToTest": "Ir a la prueba",
+ "testing.reRunFailedFromLastRun": "Volver a ejecutar las pruebas con errores",
+ "testing.reRunLastRun": "Volver a realizar la última ejecución",
+ "testing.reRunTest": "Volver a ejecutar la prueba",
"testing.revealInExplorer": "Mostrar en el Explorador de pruebas",
"testing.showResultOutput": "Mostrar salida de resultado",
- "testing.toggleTestingPeekHistory": "Alternar historial de pruebas en Inspección",
- "testingOutputActual": "Resultado real",
- "testingOutputExpected": "Resultado esperado",
"testingPeekLabel": "Mensajes de los resultados de las pruebas"
},
- "vs/workbench/contrib/testing/browser/testingOutputTerminalService": {
- "runFinished": "La prueba terminó en {0} ",
- "runNoOutout": "La ejecución de la prueba no registró ninguna salida",
- "testNoRunYet": "\r\nTodavía no se han hecho pruebas.\r\n",
- "testOutputTerminalTitle": "Salida de prueba",
- "testOutputTerminalTitleWithDate": "Salida de la prueba en {0}"
- },
- "vs/workbench/contrib/testing/browser/testingProgressUiService": {
- "testProgress.completed": "{0}/{1} pruebas superadas ({2} %)",
- "testProgress.running": "Pruebas en ejecución, {0}/{1} superadas ({2} %)",
- "testProgress.runningInitial": "Ejecutando pruebas...",
- "testProgressWithSkip.completed": "{0}/{1} pruebas superadas ({2} %, {3} omitidas)",
- "testProgressWithSkip.running": "Pruebas en ejecución, {0}/{1} pruebas superadas ({2} %, {3} omitidas)"
- },
- "vs/workbench/contrib/testing/browser/testingViewPaneContainer": {
- "testing": "Pruebas"
+ "vs/workbench/contrib/testing/browser/testResultsView/testResultsViewContent": {
+ "testFollowup.more": "+{0} más...",
+ "testing.callStack.debug": "Depurar prueba",
+ "testing.callStack.run": "Volver a ejecutar la prueba"
},
"vs/workbench/contrib/testing/browser/theme": {
+ "testing.coverCountBadgeBackground": "Fondo del distintivo que indica el recuento de ejecuciones",
+ "testing.coverCountBadgeForeground": "Primer plano del distintivo que indica el recuento de ejecuciones",
+ "testing.coveredBackground": "Color de fondo del texto que se ha cubierto.",
+ "testing.coveredBorder": "Color de borde del texto que se ha cubierto.",
+ "testing.coveredGutterBackground": "Color de medianil de las regiones donde se cubre el código.",
"testing.iconErrored": "Color del icono que indica \"con errores\" en el explorador de pruebas.",
+ "testing.iconErrored.retired": "Color retirado del icono que indica \"con errores\" en el explorador de pruebas.",
"testing.iconFailed": "Color del icono que indica \"error\" en el explorador de pruebas.",
+ "testing.iconFailed.retired": "Color retirado del icono que indica \"error\" en el explorador de pruebas.",
"testing.iconPassed": "Color del icono que indica \"superadas\" en el explorador de pruebas.",
+ "testing.iconPassed.retired": "Color retirado del icono que indica \"superado\" en el explorador de pruebas.",
"testing.iconQueued": "Color del icono que indica \"en cola\" en el explorador de pruebas.",
+ "testing.iconQueued.retired": "Color retirado del icono que indica \"en cola\" en el explorador de pruebas.",
"testing.iconSkipped": "Color del icono que indica \"omitidas\" en el explorador de pruebas.",
+ "testing.iconSkipped.retired": "Color retirado para el icono \"Omitido\" en el explorador de pruebas.",
"testing.iconUnset": "Color del icono que indica \"sin establecer\" en el explorador de pruebas.",
- "testing.message.error.decorationForeground": "Color del texto de los mensajes de error de las pruebas que se muestran insertados en el editor.",
+ "testing.iconUnset.retired": "Color retirado del icono que indica \"sin establecer\" en el explorador de pruebas.",
+ "testing.message.error.badgeBackground": "Color de fondo de los mensajes de error de prueba que se muestran insertados en el editor.",
+ "testing.message.error.badgeBorder": "Color de borde de los mensajes de error de prueba que se muestran insertados en el editor.",
+ "testing.message.error.badgeForeground": "Color del texto de los mensajes de error de las pruebas que se muestran insertados en el editor.",
"testing.message.error.marginBackground": "Color del margen junto a los mensajes de error que se muestran insertados en el editor.",
"testing.message.info.decorationForeground": "Color del texto de los mensajes de información de las pruebas que se muestran insertados en el editor.",
"testing.message.info.marginBackground": "Color del margen junto a los mensajes de información que se muestran insertados en el editor.",
+ "testing.messagePeekBorder": "Color de los bordes de la vista de inspección y la flecha al inspeccionar un mensaje registrado.",
+ "testing.messagePeekHeaderBackground": "Color de los bordes de la vista de inspección y la flecha al inspeccionar un mensaje registrado.",
"testing.peekBorder": "Color de los bordes y la flecha de la vista de inspección.",
- "testing.runAction": "Color de los iconos para \"ejecutar\" en el editor."
+ "testing.runAction": "Color de los iconos para \"ejecutar\" en el editor.",
+ "testing.uncoveredBackground": "Color de fondo del texto que no estaba cubierto.",
+ "testing.uncoveredBorder": "Color de borde del texto que no estaba cubierto.",
+ "testing.uncoveredBranchBackground": "Fondo del widget que se muestra para una rama desvelada.",
+ "testing.uncoveredGutterBackground": "Color de medianil de las regiones en las que no se cubre el código."
},
"vs/workbench/contrib/testing/common/configuration": {
"testConfigurationTitle": "Pruebas",
- "testing.alwaysRevealTestOnStateChange": "Mostrar siempre la prueba ejecutada cuando \"#testing.followRunningTest#\" está activado. Si esta configuración está desactivada, solo se revelarán las pruebas con errores.",
- "testing.autoRun.delay": "Tiempo que se debe esperar, en milisegundos, después de que una prueba se haya marcado como obsoleta y empezar una nueva ejecución.",
- "testing.autoRun.mode": "Controla las pruebas que se ejecutan automáticamente.",
- "testing.autoRun.mode.allInWorkspace": "Ejecuta automáticamente todas las pruebas detectadas si la ejecución automática está activada. Vuelve a ejecutar pruebas individuales cuando se modifican.",
- "testing.autoRun.mode.onlyPreviouslyRun": "Vuelve a ejecutar pruebas individuales cuando se modifican. No se ejecutará automáticamente ninguna prueba que no se haya ejecutado ya.",
+ "testing.ShowCoverageInExplorer": "Indica si la cobertura de pruebas debe estar inactiva en la vista Explorador de archivos.",
+ "testing.alwaysRevealTestOnStateChange": "Mostrar siempre la prueba ejecutada cuando {0} se ha activado. Si esta configuración está desactivada, solo se revelarán las pruebas con errores.",
"testing.automaticallyOpenPeekView": "Configura cuándo se abre la vista de inspección de errores de forma automática.",
"testing.automaticallyOpenPeekView.failureAnywhere": "Abrir automáticamente, sin importar dónde se produce el error.",
"testing.automaticallyOpenPeekView.failureInVisibleDocument": "Abrir automáticamente cuando una prueba genera error en un documento visible.",
"testing.automaticallyOpenPeekView.never": "Nunca abrir automáticamente.",
- "testing.automaticallyOpenPeekViewDuringAutoRun": "Controla si la vista de inspección debe abrirse de forma automática durante el modo de ejecución automática.",
+ "testing.automaticallyOpenPeekViewDuringContinuousRun": "Controla si la vista de inspección debe abrirse de forma automática durante el modo de ejecución continua.",
+ "testing.countBadge": "Controla la notificación de recuento del icono de Pruebas en la barra de actividades.",
+ "testing.countBadge.failed": "Mostrar el número de pruebas con errores",
+ "testing.countBadge.off": "Deshabilitar el distintivo de recuento de pruebas",
+ "testing.countBadge.passed": "Mostrar el número de pruebas superadas",
+ "testing.countBadge.skipped": "Mostrar el número de pruebas omitidas",
+ "testing.coverageBarThresholds": "Configura los colores usados para los porcentajes en las barras de cobertura de pruebas.",
+ "testing.coverageToolbarEnabled": "Controla si la barra de herramientas de cobertura se muestra en el editor.",
"testing.defaultGutterClickAction": "Controla la acción que se realiza cuando se hace clic con el botón izquierdo en una decoración de prueba en el medianil.",
"testing.defaultGutterClickAction.contextMenu": "Abra el menú contextual para ver más opciones.",
+ "testing.defaultGutterClickAction.coverage": "Ejecute la prueba con cobertura.",
"testing.defaultGutterClickAction.debug": "Depure la prueba.",
"testing.defaultGutterClickAction.run": "Ejecute la prueba.",
- "testing.followRunningTest": "Controla si la prueba en ejecución debe ser seguida en la vista del explorador de pruebas",
+ "testing.displayedCoveragePercent": "Configura el porcentaje que se muestra de forma predeterminada para la cobertura de pruebas.",
+ "testing.displayedCoveragePercent.minimum": "Mínimo de cobertura de instrucciones, funciones y ramas.",
+ "testing.displayedCoveragePercent.statement": "Cobertura de instrucción.",
+ "testing.displayedCoveragePercent.totalCoverage": "Cálculo de la cobertura combinada de instrucciones, funciones y ramas.",
+ "testing.followRunningTest": "Controla si la prueba en ejecución debe ser seguida en la vista del explorador de pruebas.",
"testing.gutterEnabled": "Controla si se muestran las decoraciones de prueba en el medianil del editor.",
"testing.openTesting": "Controla cuándo debe abrirse la vista de pruebas.",
- "testing.openTesting.neverOpen": "No abrir nunca automáticamente la vista de pruebas",
- "testing.openTesting.openOnTestFailure": "Abrir la vista de pruebas en caso de error de prueba",
- "testing.openTesting.openOnTestStart": "Abrir la vista de pruebas cuando se inicien las pruebas",
- "testing.saveBeforeTest": "Controla si se guardan todos los editores con modificaciones antes de ejecutar una prueba."
+ "testing.openTesting.neverOpen": "No abrir nunca automáticamente las vistas de pruebas",
+ "testing.openTesting.openExplorerOnTestStart": "Abrir el explorador de pruebas cuando se inicien las pruebas",
+ "testing.openTesting.openOnTestFailure": "Abrir la vista de resultados en caso de error de prueba",
+ "testing.openTesting.openOnTestStart": "Abrir la vista de resultados de pruebas cuando se inicien las pruebas",
+ "testing.resultsView.layout": "Controla el diseño de la vista de resultados de pruebas.",
+ "testing.resultsView.layout.treeLeft": "Muestra el árbol de ejecución de pruebas a la izquierda y los detalles a la derecha.",
+ "testing.resultsView.layout.treeRight": "Muestra el árbol de ejecución de pruebas a la derecha y los detalles a la izquierda.",
+ "testing.saveBeforeTest": "Controla si se guardan todos los editores con modificaciones antes de ejecutar una prueba.",
+ "testing.showAllMessages": "Controla si se muestran los mensajes de todas las series de pruebas."
},
"vs/workbench/contrib/testing/common/constants": {
"testGroup.coverage": "Cobertura",
@@ -9566,65 +15850,123 @@
"testState.unset": "Aún no se ha ejecutado",
"testing.treeElementLabel": "{0} ({1})"
},
- "vs/workbench/contrib/testing/common/testResult": {
- "runFinished": "Prueba realizada en {0}"
- },
- "vs/workbench/contrib/testing/common/testServiceImpl": {
- "testError": "Error al intentar ejecutar las pruebas: {0}",
- "testTrust": "La ejecución de las pruebas puede ejecutar el código en su espacio de trabajo."
+ "vs/workbench/contrib/testing/common/testingChatAgentTool": {
+ "runTestTool.confirm.all": "El modelo quiere ejecutar todas las pruebas.",
+ "runTestTool.confirm.invocation": "Ejecutando pruebas...",
+ "runTestTool.confirm.message": "El modelo quiere ejecutar pruebas en {0}.",
+ "runTestTool.confirm.title": "¿Permitir la serie de pruebas?",
+ "runTestTool.invoke.cancelled": "Se canceló la serie de pruebas.",
+ "runTestTool.invoke.filesProgress": "Detectando pruebas...",
+ "runTestTool.invoke.filterProgress": "Filtrando pruebas...",
+ "runTestTool.invoke.progress": "Iniciando la serie de pruebas...",
+ "runTestTool.noRunStarted": "No se inició ninguna serie de pruebas. Esto puede ser un problema con la serie de pruebas o la extensión.",
+ "runTestTool.noTests": "No se encontraron pruebas en los archivos",
+ "runTestTool.userDescription": "Run unit tests (optionally with coverage)"
+ },
+ "vs/workbench/contrib/testing/common/testingContentProvider": {
+ "runNoOutout": "La ejecución de la prueba no registró ninguna salida"
},
"vs/workbench/contrib/testing/common/testingContextKeys": {
+ "testing.activeEditorHasTests": "Indica si hay pruebas presentes en el editor actual",
+ "testing.canGoToRelatedCode": "Si un controlador implementa una funcionalidad para buscar código relacionado con una prueba",
+ "testing.canGoToRelatedTest": "Si un controlador implementa una funcionalidad para buscar pruebas relacionadas con el código",
"testing.canRefresh": "Indica si algún controlador de pruebas tiene un controlador de actualización adjunto.",
"testing.controllerId": "Identificador de controladora del elemento de prueba actual",
+ "testing.coverageToolbarEnabled": "Indica si la barra de herramientas de cobertura está habilitada",
+ "testing.cursorInsideTestRange": "Si el cursor está actualmente dentro de un rango de prueba",
"testing.hasConfigurableConfig": "Indica si se puede configurar una configuración de prueba",
"testing.hasCoverableTests": "Indica si algún controlador de pruebas ha registrado una configuración de cobertura",
+ "testing.hasCoverageInFile": "Indica que se ha informado de la cobertura en el editor actual.",
"testing.hasDebuggableTests": "Indica si algún controlador de pruebas ha registrado una configuración de depuración",
+ "testing.hasInlineCoverageDetails": "Indica si la cobertura detallada por línea está disponible para su visualización en línea",
"testing.hasNonDefaultConfig": "Indica si algún controlador de pruebas ha registrado una configuración no predeterminada",
+ "testing.hasPerTestCoverage": "Indica si la cobertura por prueba está disponible",
"testing.hasRunnableTests": "Indica si algún controlador de pruebas ha registrado una configuración de ejecución",
+ "testing.inlineCoverageEnabled": "Indica si se muestra la cobertura insertada",
+ "testing.isContinuousModeOn": "Indica si el modo de prueba continua está activado.",
+ "testing.isCoverageFilteredToTest": "Indica si la cobertura se ha filtrado a una sola prueba",
+ "testing.isParentRunningContinuously": "Indica si el elemento primario de una prueba se está ejecutando continuamente, establecido en el contexto de menú de los elementos de prueba",
"testing.isRefreshing": "Indica si algún controlador de pruebas está actualizando las pruebas actualmente.",
+ "testing.isTestCoverageOpen": "Indica si un informe de cobertura de pruebas está abierto",
+ "testing.peekHasStack": "Si el mensaje que se muestra en una vista de inspección tiene un seguimiento de la pila",
"testing.peekItemType": "Tipo de elemento en la vista de salida. Puede ser una \"prueba\", un \"mensaje\", una \"tarea\" o un \"resultado\".",
+ "testing.profile.context.group": "Tipo de menú en el que existe el submenú Configurar perfil de pruebas. \"run\", \"debug\" o \"coverage\"",
+ "testing.supportsContinuousRun": "Indica si se admite la ejecución continua de prueba",
"testing.testId": "Identificador del elemento de prueba actual, que se establece al crear o abrir menús en los elementos de prueba",
"testing.testItemHasUri": "Booleano que indica si el elemento de prueba tiene un URI definido",
- "testing.testItemIsHidden": "Booleano que indica si el elemento de prueba está oculto"
+ "testing.testItemIsHidden": "Booleano que indica si el elemento de prueba está oculto",
+ "testing.testMessage": "Valor establecido en 'testMessage.contextValue', disponible en editor/contenido y pruebas/mensaje/contexto",
+ "testing.testResultOutdated": "Valor disponible en editor/contenido y pruebas/mensaje/contexto cuando el resultado está obsoleto",
+ "testing.testResultState": "Valor disponible prueba/elemento/resultado que indica el estado del elemento."
+ },
+ "vs/workbench/contrib/testing/common/testingProgressMessages": {
+ "testProgress.completed": "{0}/{1} pruebas superadas ({2} %)",
+ "testProgress.running": "Pruebas en ejecución, {0}/{1} superadas ({2} %)",
+ "testProgress.runningInitial": "Ejecutando pruebas...",
+ "testProgressWithSkip.completed": "{0}/{1} pruebas superadas ({2} %, {3} omitidas)",
+ "testProgressWithSkip.running": "Pruebas en ejecución, {0}/{1} pruebas superadas ({2} %, {3} omitidas)"
+ },
+ "vs/workbench/contrib/testing/common/testResult": {
+ "runFinished": "Prueba realizada en {0}",
+ "testUnnamedTask": "Tarea sin nombre"
+ },
+ "vs/workbench/contrib/testing/common/testServiceImpl": {
+ "testError": "Error al intentar ejecutar las pruebas: {0}",
+ "testTrust": "La ejecución de las pruebas puede ejecutar el código en su espacio de trabajo."
+ },
+ "vs/workbench/contrib/testing/common/testTypes": {
+ "testing.runProfileBitset.coverage": "Cobertura",
+ "testing.runProfileBitset.debug": "Depurar",
+ "testing.runProfileBitset.run": "Ejecutar"
},
"vs/workbench/contrib/themes/browser/themes.contribution": {
+ "browseColorThemeInMarketPlace.label": "Examinar temas de color en Marketplace",
"browseColorThemes": "Examinar temas de color adicionales...",
"browseProductIconThemes": "Examinar temas de icono de producto adicionales...",
+ "cannotToggle": "No se puede alternar entre temas claros y oscuros cuando \"{0}\" está habilitado en Configuración.",
"defaultProductIconThemeLabel": "Predeterminado",
"fileIconThemeCategory": "temas de icono de archivo",
"generateColorTheme.label": "Generar el tema de color desde la configuración actual",
+ "goToSetting": "Abrir configuración",
"installColorThemes": "Instalar temas de color adicionales...",
- "installIconThemes": "Instalar temas de icono de archivo adicionles...",
+ "installExtension.button.ok": "Aceptar",
+ "installExtension.confirm": "Esto instalará la extensión \"{0}\" publicada por \"{1}\". ¿Desea continuar?",
+ "installIconThemes": "Instalar temas de icono de archivo adicionales...",
"installProductIconThemes": "Instalar temas de icono de producto adicionales...",
"installing extensions": "Instalando la extensión {0}...",
"manage extension": "Administrar extensión",
"manageExtensionIcon": "Icono de la acción \"Administrar\" en la selección rápida de temas.",
- "miSelectColorTheme": "&&Tema de color",
- "miSelectIconTheme": "Tema de &&icono de archivo",
- "miSelectProductIconTheme": "&&Tema del icono del producto",
+ "miSelectTheme": "&&Temas",
"noIconThemeDesc": "Deshabilitar iconos de archivo",
"noIconThemeLabel": "NONE",
"productIconThemeCategory": "temas de icono de producto",
+ "search.error": "Error al buscar temas: {0}",
"selectIconTheme.label": "Tema de icono de archivo",
"selectProductIconTheme.label": "Tema del icono del producto",
"selectTheme.label": "Tema de color",
+ "themes": "Temas",
"themes.category.dark": "temas oscuros",
"themes.category.hc": "temas de alto contraste",
"themes.category.light": "temas claros",
+ "themes.configure.switchingDisabled": "Detectar modo de color del sistema deshabilitado. Haga clic para configurar.",
+ "themes.configure.switchingEnabled": "Detectar modo de color del sistema habilitado. Haga clic para configurar.",
"themes.selectIconTheme": "Seleccionar tema de icono de archivo (teclas arriba o abajo para vista previa)",
"themes.selectIconTheme.label": "Tema de icono de archivo",
"themes.selectMarketplaceTheme": "Escriba para buscar más. Seleccione para instalar. Teclas arriba y abajo para la vista previa",
"themes.selectProductIconTheme": "Seleccionar tema de icono de producto (teclas arriba/abajo para vista previa)",
"themes.selectProductIconTheme.label": "Tema del icono del producto",
- "themes.selectTheme": "Seleccione el tema de color (flecha arriba/abajo para vista previa)",
+ "themes.selectTheme.darkHC": "Seleccionar tema de color para modo oscuro con contraste alto",
+ "themes.selectTheme.darkScheme": "Seleccionar tema de color para el modo oscuro del sistema",
+ "themes.selectTheme.default": "Seleccionar tema de color (detectar modo de color del sistema deshabilitado)",
+ "themes.selectTheme.lightHC": "Seleccionar tema de color para modo claro con contraste alto",
+ "themes.selectTheme.lightScheme": "Seleccionar tema de color para el modo claro del sistema",
"toggleLightDarkThemes.label": "Alternar entre temas claros y oscuros"
},
"vs/workbench/contrib/timeline/browser/timeline.contribution": {
"files.openTimeline": "Abrir línea de tiempo",
"filterTimeline": "Filtrar escala de tiempo",
- "timeline.excludeSources": "Una matriz de fuentes de Escala de tiempo que deben excluirse de la vista Escala de tiempo.",
- "timeline.pageOnScroll": "Experimental. Controla si la vista Escala de tiempo cargará la página siguiente de elementos cuando se desplace al final de la lista.",
- "timeline.pageSize": "El número de elementos que se va a mostrar en la vista Escala de tiempo de forma predeterminada y cuando se cargan más elementos. Si se establece en \"null\" (valor predeterminado), se elige automáticamente un tamaño de página basado en el área visible de la vista Escala de tiempo.",
+ "timeline.pageOnScroll": "Controla si la vista Escala de tiempo cargará la página siguiente de elementos cuando se desplace al final de la lista.",
+ "timeline.pageSize": "El número de elementos que se va a mostrar en la vista Escala de tiempo de forma predeterminada y cuando se cargan más elementos. Si se establece en \"null\", se elige automáticamente un tamaño de página basado en el área visible de la vista Escala de tiempo.",
"timelineConfigurationTitle": "línea de tiempo",
"timelineFilter": "Icono de la acción de escala de tiempo de filtro.",
"timelineOpenIcon": "Icono de la acción de abrir la escala de tiempo.",
@@ -9638,7 +15980,11 @@
"timeline.loadMore": "Cargar más",
"timeline.loading": "Cargando la línea de tiempo para {0}...",
"timeline.loadingMore": "Cargando...",
+ "timeline.noLocalHistoryYet": "El Historial local realizará un seguimiento de los cambios recientes a medida que los guarde a menos que el archivo esté excluido o sea demasiado grande.",
+ "timeline.noSCM": "No se configuró el control de código fuente.",
"timeline.noTimelineInfo": "No se proporcionó información de escala de tiempo.",
+ "timeline.noTimelineInfoFromEnabledSources": "No se proporcionó información de escala de tiempo filtrada.",
+ "timeline.noTimelineSourcesEnabled": "Se filtraron todos los orígenes de escala de tiempo.",
"timeline.toggleFollowActiveEditorCommand.follow": "Anclar la escala de tiempo actual",
"timeline.toggleFollowActiveEditorCommand.unfollow": "Desanclar la escala de tiempo actual",
"timelinePin": "Icono de la acción de anclar la escala de tiempo.",
@@ -9671,23 +16017,25 @@
},
"vs/workbench/contrib/update/browser/releaseNotesEditor": {
"releaseNotesInputName": "Notas de la versión: {0}",
+ "showOnUpdate": "Mostrar notas de la versión después de una actualización",
"unassigned": "sin asignar"
},
"vs/workbench/contrib/update/browser/update": {
"DownloadingUpdate": "Descargando actualización...",
- "cancel": "Cancelar",
"checkForUpdates": "Buscar actualizaciones...",
- "checkingForUpdates": "Buscando actualizaciones...",
+ "checkingForUpdates": "Buscando actualizaciones de {0}...",
+ "checkingForUpdates2": "Buscando actualizaciones...",
"download update": "Descargar actualización",
"download update_1": "Descargar actualización (1)",
- "downloading": "Descargando...",
+ "downloading": "Descargando {0} actualización...",
"installUpdate": "Instalar la actualización ",
"installUpdate...": "Instalar actualización... (1)",
"installingUpdate": "Instalando actualización...",
"later": "Más tarde",
+ "learn more": "Más información",
"noUpdatesAvailable": "Actualmente, no hay actualizaciones disponibles.",
"read the release notes": "{0} v{1}. ¿Quiere leer las notas de la versión?",
- "relaunchDetailInsiders": "Presione el botón de recarga para cambiar a la versión de Insider de VS Code.",
+ "relaunchDetailInsiders": "Presione el botón de recarga para cambiar a la versión Insiders de VS Code.",
"relaunchDetailStable": "Presione el botón de recarga para cambiar a la versión de Stable de VS Code.",
"relaunchMessage": "Para aplicar los cambios de la versión es necesario recargar",
"releaseNotes": "Notas de la versión",
@@ -9695,27 +16043,35 @@
"restartToUpdate": "Reiniciar para actualizar (1)",
"selectSyncService.detail": "La versión Insiders de VS Code sincronizará sus configuraciones, combinaciones de teclas, extensiones, fragmentos y estado de la interfaz de usuario utilizando el servicio de sincronización de configuraciones insiders predeterminado.",
"selectSyncService.message": "Elegir el servicio de sincronización de la configuración que se va a usar después de cambiar la versión",
- "showReleaseNotes": "Mostrar las notas de la versión",
- "switchToInsiders": "Cambiar a la versión de participantes...",
+ "showUpdateReleaseNotes": "Mostrar notas de la versión de actualización",
+ "switchToInsiders": "Cambiar a la versión Insiders...",
"switchToStable": "Cambiar a la versión estable...",
"thereIsUpdateAvailable": "Hay una actualización disponible.",
"update service": "Servicio de Actualización",
+ "update service disabled": "Las actualizaciones están deshabilitadas porque está ejecutando la instalación de ámbito de usuario de {0} como administrador.",
"update.noReleaseNotesOnline": "Esta versión de {0} no tiene notas de la versión en línea.",
"updateAvailable": "Hay una actualización disponible: {0} {1}",
"updateAvailableAfterRestart": "Reinicie {0} para aplicar la última actualización.",
"updateIsReady": "Nueva actualización de {0} disponible.",
"updateNow": "Actualizar ahora",
- "updating": "Actualizando...",
- "use insiders": "Insiders",
- "use stable": "Estable (actual)"
+ "updating": "Actualizando {0}...",
+ "use insiders": "&&Insiders",
+ "use stable": "&&Estable (actual)"
},
"vs/workbench/contrib/update/browser/update.contribution": {
"applyUpdate": "Aplicar actualización...",
+ "checkForUpdates": "Buscar actualizaciones...",
+ "developerCategory": "Desarrollador",
"downloadUpdate": "Descargar actualización",
"installUpdate": "Instalar la actualización",
- "miReleaseNotes": "&&Notas de la versión",
+ "mshowReleaseNotes": "Mostrar &¬as de la versión",
+ "openDownloadPage": "Descargar {0}",
"pickUpdate": "Aplicar actualización",
+ "releaseNotesFromFileNone": "No se puede abrir el archivo actual como notas de la versión",
"restartToUpdate": "Reiniciar para actualizar",
+ "showReleaseNotes": "Mostrar las notas de la versión",
+ "showReleaseNotesCurrentFile": "Abrir archivo actual como notas de la versión",
+ "update.noReleaseNotesOnline": "Esta versión de {0} no tiene notas de la versión en línea.",
"updateButton": "&&Actualizar"
},
"vs/workbench/contrib/url/browser/trustedDomains": {
@@ -9727,10 +16083,9 @@
"trustedDomain.trustSubDomain": "Confiar en {0} y en todos sus subdominios"
},
"vs/workbench/contrib/url/browser/trustedDomainsValidator": {
- "cancel": "Cancelar",
- "configureTrustedDomains": "Configurar dominios de confianza",
- "copy": "Copiar",
- "open": "Abrir",
+ "configureTrustedDomains": "Configurar &&dominios de confianza",
+ "copy": "&&Copiar",
+ "open": "&&Abrir",
"openExternalLinkAt": "¿Desea que {0} abra el sitio web externo?"
},
"vs/workbench/contrib/url/browser/url.contribution": {
@@ -9739,124 +16094,198 @@
"workbench.trustedDomains.promptInTrustedWorkspace": "Cuando está habilitado, aparecen solicitudes del dominio de confianza al abrir los vínculos en las áreas de trabajo de confianza."
},
"vs/workbench/contrib/userDataProfile/browser/userDataProfile": {
- "currentProfile": "El perfil de configuración actual es {0}",
- "manageProfiles": "{0} ({1})",
- "profileTooltip": "{0}: {1}",
- "settingsProfilesIcon": "Icono de perfiles de configuración.",
- "statusBarItemSettingsProfileBackground": "Color de fondo de la entrada del perfil de configuración en la barra de estado.",
- "statusBarItemSettingsProfileForeground": "Color de primer plano de la entrada del perfil de configuración en la barra de estado.",
- "workbench.experimental.settingsProfiles.enabled": "Controla si se va a habilitar la característica en vista previa de perfiles de configuración."
- },
- "vs/workbench/contrib/userDataProfile/common/userDataProfileActions": {
- "cleanup profile": "Perfiles de configuración de limpieza",
- "confiirmation message": "Esto reemplazará la configuración actual. ¿Está seguro de que quiere continuar?",
- "create and enter empty profile": "Crear un perfil vacío...",
- "create empty profile": "Crear un perfil de configuración vacío...",
- "create profile": "Crear...",
- "create settings profile": "{0}: Crear...",
+ "New Profile Window": "Nueva ventana con perfil",
+ "change profile": "Cambiar al perfil {0}",
+ "create profile": "Nuevo perfil...",
"current": "Actual",
- "delete profile": "Eliminar...",
- "edit settings profile": "Cambiar nombre del perfil de configuración...",
- "export profile": "Exportar...",
- "export profile dialog": "Guardar perfil",
- "export success": "{0}: exportado correctamente.",
- "import profile": "Importar...",
- "import profile dialog": "Importar perfil",
- "import profile placeholder": "Proporcione la dirección URL del perfil o seleccione el archivo de perfil que quiere importar.",
- "import profile quick pick title": "Importar la configuración de un perfil",
- "import profile title": "Importar la configuración de un perfil",
- "name": "Nombre del perfil",
- "pick profile": "Seleccionar perfil de configuración",
- "pick profile to delete": "Seleccionar perfiles de configuración para eliminar",
- "pick profile to rename": "Seleccionar el perfil de configuración al que cambiar el nombre",
- "rename profile": "Cambiar nombre...",
- "save profile as": "Crear a partir del perfil de configuración actual...",
- "select from file": "Importar desde el archivo de perfil",
- "select from url": "Importar desde dirección URL",
- "switch profile": "Cambiar..."
+ "delete profile": "Eliminar perfil...",
+ "delete specific profile": "Eliminar perfil...",
+ "export profile": "Exportar perfil...",
+ "export profile in share": "Exportar perfil ({0})...",
+ "manage profiles": "Perfiles",
+ "miOpenProfiles": "&&Perfiles",
+ "new window with profile": "Nueva ventana con perfil",
+ "newWindowWithProfile": "Nueva ventana con perfil...",
+ "open": "Abrir perfil {0}",
+ "open profile": "Abrir nueva ventana con el perfil {0}",
+ "open profiles": "Abrir perfiles (UI)",
+ "openShort": "{0}",
+ "pick profile": "Seleccionar perfil",
+ "pick profile to delete": "Seleccionar perfiles para eliminar",
+ "profiles": "Perfil ({0})",
+ "save profile as": "Guardar perfil actual como...",
+ "selectProfile": "Seleccionar perfil",
+ "switchProfile": "Cambiar perfil...",
+ "userdataprofilesEditor": "Editor de perfiles"
+ },
+ "vs/workbench/contrib/userDataProfile/browser/userDataProfileActions": {
+ "cleanup profile": "Limpiar perfiles",
+ "create temporary profile": "Nueva ventana con un perfil temporal",
+ "reset workspaces": "Restablecer asociaciones de perfiles del área de trabajo"
+ },
+ "vs/workbench/contrib/userDataProfile/browser/userDataProfilesEditor": {
+ "activeProfile": "Activo",
+ "addButton": "Agregar carpeta",
+ "addFolder": "Agregar carpeta",
+ "addFolderTitle": "Seleccionar carpetas para agregar",
+ "change profile": "Cambiar perfil",
+ "changeIcon": "Haga clic para cambiar el icono",
+ "contents": "Contenidos",
+ "contents source description": "Configurar el origen de contenido para este perfil\r\n",
+ "copy description": "Copiar",
+ "copy from default": "{0} (copia)",
+ "copy from description": "Seleccione el origen del perfil desde el que desea copiar el contenido",
+ "copy from profile description": "Copiar {0} desde el perfil {1}",
+ "copy info": "- *{0}:* copiar contenido del perfil {1}\r\n",
+ "copy profile from": "Copiar perfil desde",
+ "create from": "Copiar desde",
+ "current description": "Usar {0} del perfil {1}",
+ "default": "Predeterminada",
+ "default description": "Usar {0} desde el perfil predeterminado",
+ "default info": "º- *Predeterminado:* Usar contenido del perfil predeterminado\r\n",
+ "default profile contents description": "Examinar el contenido de este perfil\r\n",
+ "defaultProfileIcon": "No se puede cambiar el icono del perfil predeterminado",
+ "defaultProfileName": "No se puede cambiar el nombre del perfil predeterminado",
+ "deleteTrustedUri": "Eliminar ruta de acceso",
+ "editIcon": "Icono de editar carpeta en el editor de perfiles.",
+ "empty profile": "Ninguno",
+ "enable for current window": "Usar este perfil para la ventana actual",
+ "enable for new windows": "Usar este perfil como predeterminado para las nuevas ventanas",
+ "extensions": "Extensiones",
+ "folders_workspaces": "Carpetas y áreas de trabajo",
+ "folders_workspaces_description": "Las siguientes carpetas y áreas de trabajo usan este perfil",
+ "from existing profiles": "Perfiles existentes",
+ "from template": "Desde plantilla",
+ "from templates": "Plantillas del perfil",
+ "hostColumnLabel": "Host",
+ "icon": "Icono de perfil",
+ "icon-description": "Icono de perfil que se mostrará en la barra de actividad",
+ "icon-label": "Icono",
+ "import from file": "Seleccionar archivo...",
+ "import from url": "Importar desde la dirección URL",
+ "import profile dialog": "Seleccionar archivo de plantilla de perfil",
+ "import profile placeholder": "Proporcionar dirección URL de plantilla de perfil",
+ "import profile quick pick title": "Importar desde plantilla de perfil...",
+ "importProfile": "Importar perfil...",
+ "keybindings": "Métodos abreviados de teclado",
+ "localAuthority": "Local",
+ "mcp": "Servidores MCP",
+ "name": "Nombre",
+ "name required": "El nombre del perfil es obligatorio y debe ser un valor que no esté vacío.",
+ "new from template": "Nuevo perfil de plantilla",
+ "newProfile": "Nuevo perfil",
+ "no_folder_description": "No hay carpetas ni áreas de trabajo que usen este perfil",
+ "none": "Ninguno",
+ "none description": "Crear vacío {0}",
+ "none info": "- *Ninguno:* Crear contenido vacío\r\n",
+ "open": "Abrir en nueva ventana",
+ "options": "Origen",
+ "pathColumnLabel": "Ruta de acceso",
+ "profileExists": "Ya existe un perfil con el nombre {0}.",
+ "profileName": "Nombre de perfil",
+ "profiles": "Perfiles",
+ "profilesSashBorder": "El color del borde de la vista dividida del editor de perfiles.",
+ "removeIcon": "Icono de quitar carpeta en el editor de perfiles.",
+ "settings": "Configuración",
+ "snippets": "Fragmentos de código",
+ "tasks": "Tareas",
+ "trustedFolderAriaLabel": "{0}, de confianza",
+ "trustedFolderWithHostAriaLabel": "{0} en {1}, de confianza",
+ "trustedFoldersAndWorkspaces": "Carpetas y áreas de trabajo de confianza",
+ "use for curren window": "Usar para la ventana actual",
+ "use for new windows": "Usar para nuevas ventanas",
+ "userDataProfiles": "Perfiles"
+ },
+ "vs/workbench/contrib/userDataProfile/browser/userDataProfilesEditorModel": {
+ "active": "Usar este perfil para la ventana actual",
+ "applyToAllProfiles": "Aplicar extensión a todos los perfiles",
+ "cancel": "Cancelar",
+ "copy from": "{0} (copiar)",
+ "copyFromProfile": "Duplicar...",
+ "create": "Crear",
+ "delete": "Eliminar",
+ "deleteProfile": "¿Está seguro de que desea eliminar el perfil \"{0}\"?",
+ "discard": "Descartar y crear",
+ "export": "Exportar...",
+ "import in desktop": "Crear en {0}",
+ "invalid configurations": "El perfil debe contener al menos una configuración.",
+ "name required": "El nombre del perfil es obligatorio y debe ser un valor que no esté vacío.",
+ "new profile exists": "Ya se está creando un nuevo perfil. ¿Desea descartarlo y crear uno nuevo?",
+ "open": "Abrir en el lateral",
+ "open new window": "Abrir nueva ventana con este perfil",
+ "preview": "Vista previa",
+ "profileExists": "Ya existe un perfil con el nombre {0}.",
+ "replace": "Reemplazar",
+ "untitled": "Sin título"
},
"vs/workbench/contrib/userDataSync/browser/userDataSync": {
- "Theirs": "Suya",
- "Yours": "Suyo",
- "accept failed": "Error al aceptar los cambios. Consulte [los registros] ({0}) para obtener más detalles.",
- "accept merges title": "Aceptar fusión mediante combinación",
- "ask to turn on in global": "La sincronización de configuración está desactivada (1)",
+ "accept failed": "Error al aceptar los cambios. Consulte [los registros]({0}) para obtener más detalles.",
"auth failed": "Error al activar la sincronización de configuración: error de autenticación.",
- "cancel": "Cancelar",
- "change later": "Siempre puede cambiar esto más adelante.",
+ "cancel turning on sync": "Cancelar",
+ "complete merges title": "Completar la fusión mediante combinación",
"configure": "Configurar...",
- "configure and turn on sync detail": "Inicie sesión para sincronizar los datos entre los dispositivos.",
- "configure sync": "{0}: Configurar...",
+ "configure and turn on sync detail": "Inicie sesión para realizar la copia de seguridad y sincronizar los datos entre los dispositivos.",
+ "configure sync": "Configurar…",
"configure sync placeholder": "Elija lo que quiere sincronizar",
+ "configure sync title": "{0}: Configurar...",
"conflicts detected": "No se puede sincronizar debido a conflictos en {0}. Resuélvalos para continuar.",
"default": "Predeterminado",
+ "download sync activity complete": "La actividad de sincronización de configuración se descargó correctamente.",
"error reset required": "La sincronización de configuración está deshabilitada porque los datos de la nube son anteriores a los del cliente. Elimine los datos de la nube antes de activar la sincronización.",
"error reset required while starting sync": "No se puede activar la sincronización de configuración porque los datos de la nube son anteriores a los del cliente. Elimine los datos de la nube antes de activar la sincronización.",
"error upgrade required": "La sincronización de configuración está deshabilitada porque la versión actual ({0}, {1}) no es compatible con el servicio de sincronización. Actualice antes de activar la sincronización.",
"error upgrade required while starting sync": "La sincronización de configuración no se puede activar porque la versión actual ({0}, {1}) no es compatible con el servicio de sincronización. Actualícela antes de activar la sincronización.",
"errorInvalidConfiguration": "No se puede sincronizar {0} porque el contenido del archivo no es válido. Abra el archivo y corríjalo.",
- "global activity turn on sync": "Activar sincronización de configuración...",
+ "global activity turn on sync": "Configuración de copia de seguridad y sincronización...",
"has conflicts": "{0}: conflictos detectados",
- "insiders": "Participantes",
- "learn more": "Más información",
- "localResourceName": "{0} (local)",
+ "insiders": "Insiders",
+ "method not found": "La sincronización de configuración está deshabilitada porque el cliente está realizando solicitudes no válidas. Informe de una incidencia con los registros.",
"no authentication providers": "No hay disponible ningún proveedor de autenticación.",
"open file": "Abrir {0} archivo",
"operationId": "Id. de operación: {0}",
- "per platform": "para cada plataforma",
- "remoteResourceName": "{0} (remoto)",
"replace local": "Reemplazar Local",
"replace remote": "Reemplazar remoto",
+ "report issue": "Notificar incidencia",
"reset": "Borrar datos en la nube...",
- "resolveConflicts_global": "{0}: mostrar conflictos de configuración (1)",
- "resolveKeybindingsConflicts_global": "{0}: mostrar conflictos de los enlaces de teclado (1)",
- "resolveSnippetsConflicts_global": "{0}: mostrar conflictos de los fragmentos de código del usuario ({1})",
- "resolveTasksConflicts_global": "{0}: Mostrar conflictos de tareas de usuario (1)",
+ "resolveConflicts_global": "Mostrar conflictos ({0})",
"service changed and turned off": "La sincronización de la configuración se ha desactivado porque {0} usa ahora un servicio independiente. Vuelva a activar la sincronización.",
"service switched to insiders": "La sincronización de la configuración se ha cambiado a un servicio de Insiders",
"service switched to stable": "La sincronización de la configuración se ha cambiado a un servicio estable",
"session expired": "Se desactivó la sincronización de configuración porque la sesión actual expiró; vuelva a iniciar sesión para activar la sincronización.",
- "settings sync is off": "La sincronización de configuración está desactivada",
"show conflicts": "Mostrar conflictos",
"show sync log title": "{0}: mostrar registro",
"show sync log toolrip": "Mostrar registro",
- "show synced data": "{0}: mostrar datos sincronizados",
+ "show sync logs": "Mostrar registro",
+ "show synced data": "Mostrar datos sincronizados",
"show synced data action": "Mostrar datos sincronizados",
- "showConflicts": "{0}: mostrar conflictos de configuración",
- "showKeybindingsConflicts": "{0}: mostrar conflictos de los enlaces de teclado",
- "showSnippetsConflicts": "{0}: mostrar conflictos de fragmentos de código de usuario",
- "showTasksConflicts": "{0}: Mostrar conflictos de tareas de usuario",
"sign in accounts": "Iniciar sesión en la configuración de sincronización (1)",
- "sign in and turn on": "Iniciar sesión y activar",
+ "sign in and turn on": "Iniciar sesión",
"sign in global": "Iniciar sesión en la configuración de sincronización",
"sign in to sync": "Iniciar sesión en la configuración de sincronización",
"stable": "Estable",
- "stop sync": "{0}: desactivar",
+ "stop sync": "Desactivar",
"switchSyncService.description": "Asegúrese de que usa el mismo servicio de sincronización de configuración al realizar la sincronización con varios entornos",
"switchSyncService.title": "{0}: seleccionar servicio",
"sync is on": "La sincronización de configuración está activa",
- "sync now": "{0}: sincronizar ahora",
- "sync settings": "{0}: mostrar configuración",
+ "sync now": "Sincronizar ahora",
+ "sync settings": "Mostrar configuración",
"synced with time": "{0} se ha sincronizado",
"syncing": "sincronizándose",
"too large": "Se ha deshabilitado la sincronización de {0} porque el tamaño del archivo de {1} que se va a sincronizar es mayor que {2}. Abra el archivo y reduzca el tamaño y habilite la sincronización",
"too large while starting sync": "La sincronización de la configuración no se puede activar porque el tamaño del archivo de {0} que se va a sincronizar es mayor que {1}. Abra el archivo, reduzca el tamaño y active la sincronización",
+ "too many profiles": "Se deshabilitó la sincronización de perfiles porque hay demasiados perfiles para sincronizar. La sincronización de configuración admite la sincronización de un máximo de 20 perfiles. Reduzca el número de perfiles y habilite la sincronización.",
"turn off": "&&Desactivar",
- "turn off failed": "Error al desactivar la sincronización de configuración. Consulte [los registros] ({0}) para obtener más detalles.",
+ "turn off failed": "Error al desactivar la sincronización de configuración. Consulte [los registros]({0}) para obtener más detalles.",
"turn off sync confirmation": "¿Desea desactivar la sincronización?",
"turn off sync detail": "La configuración, los enlaces de teclado, las extensiones, los fragmentos de código y el estado de la interfaz de usuario ya no se sincronizarán.",
"turn off sync everywhere": "Desactive la sincronización en todos sus dispositivos y borre los datos de la nube.",
"turn on failed": "Error al activar la sincronización de los ajustes. {0}",
- "turn on failed with user data sync error": "Error al activar la sincronización de configuración. Consulte [los registros] ({0}) para obtener más detalles.",
- "turn on settings sync": "Activar sincronización de configuración",
+ "turn on failed with user data sync error": "Error al activar la sincronización de configuración. Consulte [los registros]({0}) para obtener más detalles.",
"turn on sync": "Activar sincronización de configuración...",
- "turn on sync with category": "{0}: activar...",
"turned off": "La sincronización de la configuración se ha desactivado desde otro dispositivo; vuelva a activar la sincronización.",
- "turnin on sync": "Activando la sincronización de configuración...",
+ "turning on sync": "Activando la sincronización de configuración...",
"turning on syncing": "Activando la sincronización de configuración...",
- "turnon sync after initialization message": "Se inicializaron la configuración, los enlaces de teclado, las extensiones, los fragmentos y estado de la interfaz de usuario, pero no se están sincronizando. ¿Desea activar la sincronización de la configuración?",
- "using separate service": "Settings sync now uses a separate service, more information is available in the [Settings Sync Documentation](https://aka.ms/vscode-settings-sync-help#_syncing-stable-versus-insiders).",
- "workbench.action.showSyncRemoteBackup": "Mostrar datos sincronizados",
+ "using separate service": "La sincronización de la configuración usa ahora un servicio independiente; hay más información disponible en la [documentación de sincronización de la configuración](https://aka.ms/vscode-settings-sync-help#_syncing-stable-versus-insiders).",
"workbench.actions.syncData.reset": "Borrar datos en la nube..."
},
"vs/workbench/contrib/userDataSync/browser/userDataSync.contribution": {
@@ -9869,38 +16298,24 @@
"settings sync": "Sincronización de configuración. Identificador de operación: {0}",
"show sync logs": "Mostrar registro"
},
- "vs/workbench/contrib/userDataSync/browser/userDataSyncMergesView": {
- "accept local": "Aceptar local",
- "accept merges": "Aceptar fusiones mediante \"merge\"",
- "accept remote": "Aceptar remoto",
- "accepted": "Aceptado",
- "cancel": "Cancelar",
- "conflict": "Conflictos detectados",
- "conflicts detected": "Conflictos detectados",
- "explanation": "Recorra cada una de las entradas y fusione mediante \"merge\" para habilitar la sincronización.",
- "label": "UserDataSyncResources",
- "leftResourceName": "{0} (remoto)",
- "merges": "{0} (fusiones mediante \"merge\")",
- "preview": "{0} (versión preliminar)",
- "resolve": "No se puede fusionar mediante \"merge\" debido a conflictos. Resuélvalos para continuar.",
- "rightResourceName": "{0} (local)",
- "sideBySideDescription": "Sincronización de configuración",
- "sideBySideLabels": "{0} ↔ {1}",
- "turn on sync": "Activar sincronización de configuración",
- "turning on": "Activando...",
+ "vs/workbench/contrib/userDataSync/browser/userDataSyncConflictsView": {
+ "Theirs": "De otros",
+ "Yours": "Personal",
+ "explanation": "Revise cada entrada y combine para resolver conflictos.",
+ "localResourceName": "{0} (local)",
+ "remoteResourceName": "{0} (remoto)",
"workbench.actions.sync.acceptLocal": "Aceptar local",
"workbench.actions.sync.acceptRemote": "Aceptar remoto",
- "workbench.actions.sync.discard": "Descartar",
- "workbench.actions.sync.merge": "Fusionar mediante \"merge\"",
- "workbench.actions.sync.showChanges": "Abrir cambios"
+ "workbench.actions.sync.openConflicts": "Mostrar conflictos"
},
"vs/workbench/contrib/userDataSync/browser/userDataSyncViews": {
"confirm replace": "¿Desea reemplazar su {0} actual por el seleccionado?",
+ "conflicts": "Conflictos",
"current": "Actual",
+ "downloaded sync activity title": "Actividad de sincronización (desarrollador)",
"last sync states": "Últimos remotos sincronizados",
"leftResourceName": "{0} (remoto)",
"local sync activity title": "Actividad de sincronización (local)",
- "merges": "Fusiones mediante \"merge\"",
"no machines": "Ninguna máquina",
"not found": "no se encontró la máquina con el id.: {0}",
"placeholder": "Escriba el nombre de la máquina",
@@ -9908,6 +16323,7 @@
"remoteToLocalDiff": "{0} ↔ {1}",
"reset": "Restablecer datos sincronizados",
"rightResourceName": "{0} (local)",
+ "select sync activity file": "Seleccionar carpeta o archivo de actividad de sincronización",
"sideBySideLabels": "{0} ↔ {1}",
"sync logs": "Registros",
"synced machines": "Máquinas sincronizadas",
@@ -9918,24 +16334,21 @@
"valid message": "El nombre de la máquina debe ser único y no estar vacío",
"workbench.actions.sync.compareWithLocal": "Comparar con local",
"workbench.actions.sync.editMachineName": "Editar nombre",
+ "workbench.actions.sync.loadActivity": "Cargar actividad de sincronización",
"workbench.actions.sync.replaceCurrent": "Restaurar",
"workbench.actions.sync.resolveResourceRef": "Mostrar datos de sicronización JSON sin formato",
"workbench.actions.sync.turnOffSyncOnMachine": "Desactivar la sincronización de configuración"
},
- "vs/workbench/contrib/userDataSync/electron-sandbox/userDataSync.contribution": {
+ "vs/workbench/contrib/userDataSync/electron-browser/userDataSync.contribution": {
"Open Backup folder": "Abrir carpeta de copias de seguridad locales",
- "no backups": "La carpeta de copias de seguridad local no existe"
- },
- "vs/workbench/contrib/views/browser/treeView": {
- "no-dataprovider": "No hay ningún proveedor de datos registrado que pueda proporcionar datos de la vista.",
- "refresh": "Actualizar",
- "collapseAll": "Contraer todo",
- "command-error": "Error al ejecutar el comando {1}: {0}. Probablemente esté provocado por la extensión que contribuye a {1}."
+ "download sync activity complete": "La actividad de sincronización de configuración se descargó correctamente.",
+ "no backups": "La carpeta de copias de seguridad local no existe",
+ "open": "Abrir carpeta"
},
"vs/workbench/contrib/watermark/browser/watermark": {
"tips.enabled": "Si esta opción está habilitada, se muestran sugerencias de referencia cuando no hay ningún editor abierto.",
"watermark.findInFiles": "Buscar en archivos",
- "watermark.newUntitledFile": "Nuevo archivo sin título",
+ "watermark.newUntitledFile": "Nuevo archivo de texto sin título",
"watermark.openFile": "Abrir archivo",
"watermark.openFileFolder": "Abrir archivo o carpeta",
"watermark.openFolder": "Abrir carpeta",
@@ -9949,291 +16362,49 @@
},
"vs/workbench/contrib/webview/browser/webview.contribution": {
"copy": "Copiar",
- "cut": "Cortar",
- "paste": "Pegar"
- },
- "vs/workbench/contrib/webview/browser/webviewElement": {
- "fatalErrorMessage": "Error al cargar la vista web: {0}"
- },
- "vs/workbench/contrib/webview/electron-sandbox/webviewCommands": {
- "iframeWebviewAlert": "Uso de herramientas de desarrollo estándar para depurar la vista previa basada en IFrame",
- "openToolsLabel": "Abrir herramientas de desarrollo de vistas web"
- },
- "vs/workbench/contrib/webviewPanel/browser/webviewCommands": {
- "editor.action.webvieweditor.findNext": "Buscar siguiente",
- "editor.action.webvieweditor.findPrevious": "Buscar anterior",
- "editor.action.webvieweditor.hideFind": "Detener la búsqueda",
- "editor.action.webvieweditor.showFind": "Mostrar hallazgo",
- "refreshWebviewLabel": "Recargar vistas web"
- },
- "vs/workbench/contrib/webviewPanel/browser/webviewPanel.contribution": {
- "webview.editor.label": "Editor de vistas web"
- },
- "vs/workbench/contrib/welcome/common/newFile.contribution": {
- "Built-In": "Integrado",
- "Create": "Crear",
- "change keybinding": "Configurar el enlace de teclado",
- "createNew": "Crear nuevo...",
- "file": "Archivo",
- "miNewFile2": "Archivo de texto",
- "notebook": "Bloc de notas",
- "welcome.newFile": "Nuevo archivo..."
- },
- "vs/workbench/contrib/welcome/common/viewsWelcomeContribution": {
- "ViewsWelcomeExtensionPoint.proposedAPI": "La contribución viewsWelcome en \"{0}\" requiere \"enabledApiProposals: [\"contribViewsWelcome\"]\" para usar la propiedad propuesta \"group\"."
- },
- "vs/workbench/contrib/welcome/common/viewsWelcomeExtensionPoint": {
- "contributes.viewsWelcome": "Contenido de bienvenida de vistas aportadas. El contenido de bienvenida se representará en vistas en forma de árbol siempre que no tengan contenido significativo para mostrar, por ejemplo, el Explorador de archivos cuando no haya ninguna carpeta abierta. Dicho contenido es útil como documentación del producto para impulsar a los usuarios a utilizar ciertas características antes de que estén disponibles. Un buen ejemplo sería un botón \"Clonar repositorio\" en la vista de bienvenida del Explorador de archivos.",
- "contributes.viewsWelcome.view": "Contenido de bienvenida contribuido para una visión específica.",
- "contributes.viewsWelcome.view.contents": "Contenido de bienvenida que se mostrará. El formato del contenido es un subconjunto de Markdown, con soporte solo para vínculos.",
- "contributes.viewsWelcome.view.enablement": "Condición en la que deben habilitarse los vínculos de comandos y los botones de contenido de bienvenida.",
- "contributes.viewsWelcome.view.group": "Grupo al que pertenece este contenido de bienvenida. API propuesta.",
- "contributes.viewsWelcome.view.view": "Identificador de la vista de destino para este contenido de bienvenida. Solo se admiten vistas en forma de árbol.",
- "contributes.viewsWelcome.view.when": "Condición en la que se debe mostrar el contenido de bienvenida."
- },
- "vs/workbench/contrib/welcome/gettingStarted/browser/gettingStarted": {
- "allDone": "Marcar como Listo",
- "checkboxTitle": "Cuando se activa esta opción, esta página se mostrará al iniciar.",
- "close": "Ocultar",
- "footer": "{0} recopila datos de uso. Lea nuestra {1} y aprenda a {2}.",
- "getStarted": "Iniciar",
- "gettingStarted.allStepsComplete": "Todos los {0} pasos completados.",
- "gettingStarted.editingEvolved": "Edición mejorada",
- "gettingStarted.someStepsComplete": "{0} de {1} pasos completados",
- "imageShowing": "Imagen que muestra {0}",
- "new": "Nuevo",
- "newItems": "Actualizado",
- "nextOne": "Sección siguiente",
- "optOut": "dejar de participar",
- "pickWalkthroughs": "Abrir tutorial...",
- "privacy statement": "declaración de privacidad",
- "recent": "Reciente",
- "show more recents": "Mostrar todas las carpetas recientes {0}",
- "showAll": "Más...",
- "start": "Inicio",
- "walkthroughs": "Tutoriales",
- "welcomeAriaLabel": "Información general sobre cómo ponerse al día con el editor.",
- "welcomePage.openFolderWithPath": "Abrir la carpeta {0} con la ruta de acceso {1}",
- "welcomePage.showOnStartup": "Mostrar página principal al inicio"
- },
- "vs/workbench/contrib/welcome/gettingStarted/browser/gettingStarted.contribution": {
- "getStarted": "Iniciar",
- "help": "Ayuda",
- "miGetStarted": "Iniciar",
- "pickWalkthroughs": "Abrir tutorial...",
- "welcome.goBack": "Volver",
- "welcome.markStepComplete": "Marcar paso completado",
- "welcome.markStepInomplete": "Marcar Paso incompleto",
- "welcome.showAllWalkthroughs": "Abrir tutorial...",
- "workbench.welcomePage.preferReducedMotion": "Cuando está habilitado, reduce el movimiento en la página principal.",
- "workbench.welcomePage.walkthroughs.openOnInstall": "Cuando se habilita, se abre el tutorial de la extensión al momento de su instalación.",
- "workspacePlatform": "La plataforma del área de trabajo actual, que en los contextos remotos o sin servidor puede ser diferente de la plataforma de la interfaz de usuario"
- },
- "vs/workbench/contrib/welcome/gettingStarted/browser/gettingStartedColors": {
- "welcomePage.background": "Color de fondo para la página de bienvenida.",
- "welcomePage.progress.background": "Color de primer plano de las barras de progreso de la página principal.",
- "welcomePage.progress.foreground": "Color de fondo de las barras de progreso de la página principal.",
- "welcomePage.tileBackground": "Color de fondo de los iconos de la página de introducción.",
- "welcomePage.tileHoverBackground": "Color de fondo del puntero para los iconos en la introducción.",
- "welcomePage.tileShadow": "Color de sombra de los botones de categoría del tutorial en la página principal."
- },
- "vs/workbench/contrib/welcome/gettingStarted/browser/gettingStartedExtensionPoint": {
- "pathDeprecated": "En desuso. En su lugar, use `image` o `markdown`",
- "title": "Título",
- "walkthroughs": "Contribuya con tutoriales para ayudar a los usuarios a empezar a usar su extensión.",
- "walkthroughs.description": "Descripción del tutorial.",
- "walkthroughs.featuredFor": "Los tutoriales que coinciden con uno de estos patrones globales aparecen como \"destacados\" en las áreas de trabajo con los archivos especificados. Por ejemplo, un tutorial para proyectos de TypeScript podría especificar \"tsconfig.json\" aquí.",
- "walkthroughs.id": "Identificador único para este tutorial.",
- "walkthroughs.steps": "Pasos que deben completarse como parte de este tutorial.",
- "walkthroughs.steps.button.deprecated.interpolated": "En desuso. Usar en su lugar vínculos de markdown en la descripción, es decir, {0}, {1} o {2}",
- "walkthroughs.steps.completionEvents": "Eventos que deberían desencadenar la comprobación de este paso. Si está vacío o no está definido, el paso se marcará cuando se haga clic en cualquiera de los botones o vínculos del paso. Si el paso no tiene botones ni vínculos, se comprobará cuando se seleccione.",
- "walkthroughs.steps.completionEvents.extensionInstalled": "Marcar el paso cuando se instale una extensión con el ID. especificado. Si la extensión ya está instalada, el paso se iniciará marcado.",
- "walkthroughs.steps.completionEvents.onCommand": "Marcar el paso cuando se ejecute un comando determinado en cualquier parte de VS Code.",
- "walkthroughs.steps.completionEvents.onContext": "Marcar el paso cuando una expresión de clave de contexto sea true.",
- "walkthroughs.steps.completionEvents.onLink": "Marcar el paso cuando un vínculo determinado se abra mediante un paso del tutorial.",
- "walkthroughs.steps.completionEvents.onSettingChanged": "Marcar el paso cuando se cambie una determinada configuración",
- "walkthroughs.steps.completionEvents.onView": "Marcar el paso al abrir una vista determinada",
- "walkthroughs.steps.completionEvents.stepSelected": "Marcar el paso en cuanto esté seleccionado.",
- "walkthroughs.steps.description.interpolated": "Descripción del paso. Admite texto ``preformado``, __cursiva__ y **negrita**. Use vínculos de estilo markdown para comandos o vínculos externos: {0}, {1} o {2}. Los vínculos en su propia línea se representarán como botones.",
- "walkthroughs.steps.doneOn": "Señal para marcar el paso como completo.",
- "walkthroughs.steps.doneOn.deprecation": "doneOn está en desuso. De forma predeterminada, los pasos se marcarán cuando se haga clic en sus botones. Para más configuraciones, use completionEvents",
- "walkthroughs.steps.id": "Identificador único de este paso. Se usa para realizar un seguimiento de los pasos que se han completado.",
- "walkthroughs.steps.media": "Elementos multimedia que se mostrarán junto con este paso, ya sea una imagen o contenido de markdown.",
- "walkthroughs.steps.media.altText": "Texto alternativo que se muestra cuando la imagen no puede cargarse o en los lectores de pantalla.",
- "walkthroughs.steps.media.image.path.dark.string": "Ruta de acceso a la imagen para temas oscuros, relativa al directorio de extensión.",
- "walkthroughs.steps.media.image.path.hc.string": "Ruta de acceso a la imagen para temas de alto contraste, relativa al directorio de extensión.",
- "walkthroughs.steps.media.image.path.light.string": "Ruta de acceso a la imagen para temas claros, relativa al directorio de extensión.",
- "walkthroughs.steps.media.image.path.string": "Ruta de acceso a una imagen u objeto compuestos por rutas de acceso a imágenes claras, oscuras y de alto contraste, relativa al directorio de extensión. En función del contexto, la imagen se mostrará en tamaño de 400px a 800px de ancho, con límites similares en el alto. Para admitir pantallas HIDPI, la imagen se representará con un escalado de 1,5 x; por ejemplo, una imagen de ancho de 900 píxeles físicos se mostrará con el ancho de 600 píxeles lógicos.",
- "walkthroughs.steps.media.image.path.svg": "Trazado para un SVG, los tokens de color se admiten en variables para admitir temas que coincida con el área de trabajo.",
- "walkthroughs.steps.media.markdown.path": "Ruta de acceso al documento de markdown, relativa al directorio de extensión.",
- "walkthroughs.steps.oneOn.command": "Marque el paso como listo cuando se ejecute el comando especificado.",
- "walkthroughs.steps.title": "Título del paso.",
- "walkthroughs.steps.when": "Expresión clave de contexto para controlar la visibilidad de este paso.",
- "walkthroughs.title": "Título del tutorial",
- "walkthroughs.when": "Expresión clave de contexto para controlar la visibilidad de este tutorial."
- },
- "vs/workbench/contrib/welcome/gettingStarted/browser/gettingStartedIcons": {
- "gettingStartedChecked": "Se usa para representar los pasos del tutorial que se han completado",
- "gettingStartedUnchecked": "Se usa para representar los pasos del tutorial que no se han completado"
- },
- "vs/workbench/contrib/welcome/gettingStarted/browser/gettingStartedInput": {
- "getStarted": "Iniciar"
- },
- "vs/workbench/contrib/welcome/gettingStarted/browser/gettingStartedService": {
- "builtin": "Integrado"
- },
- "vs/workbench/contrib/welcome/gettingStarted/common/gettingStartedContent": {
- "browseLangExts": "Examinar extensiones de lenguaje",
- "browsePopular": "Examinar extensiones web conocidas",
- "browseRecommended": "Examinar extensiones recomendadas",
- "cloneRepo": "Clonar repositorio",
- "commandPalette": "Abrir paleta de comandos",
- "enableSync": "Habilitar sincronización de configuración",
- "enableTrust": "habilitar confianza",
- "getting-started-beginner-icon": "Icono que se usa para la categoría de principiante de la página principal.",
- "getting-started-intermediate-icon": "Icono que se usa para la categoría de usuario intermedio de la página principal.",
- "getting-started-setup-icon": "Icono que se usa para la categoría de configuración de la página principal.",
- "gettingStarted.beginner.description": "Vaya directamente a VS Code y obtenga información general sobre las características imprescindibles.",
- "gettingStarted.beginner.title": "Conozca los aspectos básicos",
- "gettingStarted.commandPalette.description.interpolated": "Los comandos son la manera de realizar cualquier tarea en VS Code. **Practique** buscando los más frecuentes para ahorrar tiempo.\r\n{0}\r\n__Pruebe a buscar \"alternancia de vista\".__",
- "gettingStarted.commandPalette.title": "Un acceso directo para acceder a todo",
- "gettingStarted.debug.description.interpolated": "Agilice los bucles de edición, creación, prueba y depuración mediante la configuración de un lanzamiento.\r\n{0}",
- "gettingStarted.debug.title": "Vea su código en acción",
- "gettingStarted.extensions.description.interpolated": "Las extensiones son recursos esenciales de VS Code. Abarcan desde prácticas soluciones de productividad, pasando por características listas para usar ampliables hasta la adición de capacidades completamente nuevas.\r\n{0}",
- "gettingStarted.extensions.title": "Extensibilidad sin límites",
- "gettingStarted.extensionsWeb.description.interpolated": "Las extensiones son VS Code de inicio/apagado. Un número creciente vuelve a estar disponible en la Web.\r\n{0}",
- "gettingStarted.findLanguageExts.description.interpolated": "Código más inteligente con resaltado de sintaxis, finalización de código, linting y depuración. Aunque muchos lenguajes están integrados, se pueden agregar muchos más como extensiones.\r\n{0}",
- "gettingStarted.findLanguageExts.title": "Compatibilidad enriquecida para todos los lenguajes",
- "gettingStarted.installGit.description.interpolated": "Instala Git para realizar un seguimiento de los cambios en los proyectos.\r\n{0}",
- "gettingStarted.installGit.title": "Instala GIT",
- "gettingStarted.intermediate.description": "Optimice su flujo de trabajo de desarrollo con estas sugerencias y trucos.",
- "gettingStarted.intermediate.title": "Aumente su productividad",
- "gettingStarted.menuBar.description.interpolated": "La barra de menús completa está disponible en el menú desplegable para hacer espacio para el código. Active o desactive su aparición para obtener un acceso más rápido. \r\n{0}",
- "gettingStarted.menuBar.title": "Solo la cantidad indicada de interfaz de usuario",
- "gettingStarted.newFile.description": "Abra un nuevo archivo, bloc de notas o editor personalizado sin título.",
- "gettingStarted.newFile.title": "Nuevo archivo...",
- "gettingStarted.notebook.title": "Personalizar blocs de notas",
- "gettingStarted.notebookProfile.description": "Ajuste los blocs de notas de la forma que prefiera",
- "gettingStarted.notebookProfile.title": "Seleccionar el diseño de los blocs de notas",
- "gettingStarted.openFile.description": "Abrir un archivo para empezar a trabajar",
- "gettingStarted.openFile.title": "Abrir archivo...",
- "gettingStarted.openFolder.description": "Abrir una carpeta para empezar a trabajar",
- "gettingStarted.openFolder.title": "Abrir carpeta...",
- "gettingStarted.openMac.description": "Abrir un archivo o una carpeta para empezar a trabajar",
- "gettingStarted.openMac.title": "Abrir...",
- "gettingStarted.pickColor.description.interpolated": "La paleta de colores derecha le ayuda a centrarse en el código, es fácil de ver y simplemente resulta más divertida de usar.\r\n{0}",
- "gettingStarted.pickColor.title": "Elija el aspecto que desee",
- "gettingStarted.playground.description.interpolated": "¿Quiere codificar de forma más rápida y más inteligente? Practique las eficaces características de edición de código en el sitio de pruebas interactivo.\r\n{0}",
- "gettingStarted.playground.title": "Redefinir sus habilidades de edición",
- "gettingStarted.quickOpen.description.interpolated": "Navegue entre los distintos archivos en un instante con una sola pulsación de tecla. Sugerencia: Para abrir varios archivos, presione la tecla de flecha derecha.\r\n{0}",
- "gettingStarted.quickOpen.title": "Navegar rápidamente entre los archivos",
- "gettingStarted.scm.description.interpolated": "Ya no tendrá que buscar más comandos de Git. Los flujos de trabajo de Git y GitHub están integrados sin problemas.\r\n{0}",
- "gettingStarted.scm.title": "Realice un seguimiento del código con Git",
- "gettingStarted.scmClone.description.interpolated": "Configure el control de versiones integrado para su proyecto, para realizar un seguimiento de los cambios y colaborar con otros usuarios.\r\n{0}",
- "gettingStarted.scmSetup.description.interpolated": "Configure el control de versiones integrado para su proyecto, para realizar un seguimiento de los cambios y colaborar con otros usuarios.\r\n{0}",
- "gettingStarted.settings.description.interpolated": "Retoque a su gusto todos los aspectos de VS Code y sus extensiones. La configuración de uso habitual se muestra primero para comenzar.\r\n{0}",
- "gettingStarted.settings.title": "Ajustar la configuración",
- "gettingStarted.settingsSync.description.interpolated": "Mantenga actualizadas sus personalizaciones esenciales de VS Code y con una copia de seguridad en todos los dispositivos.\r\n{0}",
- "gettingStarted.settingsSync.title": "Sincronizar desde y hacia otros dispositivos",
- "gettingStarted.setup.OpenFolder.description.interpolated": "Ya hemos empezado a codificar. Abra una carpeta de proyecto para pasar los archivos a VS Code.\r\n{0}",
- "gettingStarted.setup.OpenFolder.title": "Abrir el código",
- "gettingStarted.setup.OpenFolderWeb.description.interpolated": "Ya está todo listo para empezar a codificar. Puede abrir un proyecto local o un repositorio remoto para obtener los archivos en VS Code.\r\n{0}\r\n{1}",
- "gettingStarted.setup.description": "Descubra las mejores personalizaciones para configurar VS Code a su manera.",
- "gettingStarted.setup.title": "Introducción a VS Code",
- "gettingStarted.setupWeb.description": "Descubra las mejores personalizaciones para configurar VS Code en la Web a su manera.",
- "gettingStarted.setupWeb.title": "Introducción a la VS Code en la Web",
- "gettingStarted.shortcuts.description.interpolated": "Una vez que haya descubierto sus comandos favoritos, cree métodos abreviados de teclado personalizados para obtener acceso instantáneo.\r\n{0}",
- "gettingStarted.shortcuts.title": "Personalizar los accesos directos",
- "gettingStarted.splitview.description.interpolated": "Para sacar el máximo provecho de su pantalla, abra los archivos uno al lado del otro, de forma vertical y horizontal.\r\n{0}",
- "gettingStarted.splitview.title": "Edición en paralelo",
- "gettingStarted.tasks.description.interpolated": "Cree tareas para sus flujos de trabajo comunes y disfrute de la experiencia integrada en la ejecución de scripts y la comprobación automática de resultados.\r\n{0}",
- "gettingStarted.tasks.title": "Automatizar sus tareas de proyecto",
- "gettingStarted.terminal.description.interpolated": "Ejecute los comandos shell de forma rápida y supervise la salida de compilación junto a su código.\r\n{0}",
- "gettingStarted.terminal.title": "Cómodo terminal integrado",
- "gettingStarted.topLevelGitClone.description": "Clonar un repositorio remoto en una carpeta local",
- "gettingStarted.topLevelGitClone.title": "Clonar el repositorio Git...",
- "gettingStarted.topLevelGitOpen.description": "Conectarse a un repositorio remoto o una solicitud de incorporación de cambios para examinar, buscar, editar y confirmar",
- "gettingStarted.topLevelGitOpen.title": "Abrir repositorio...",
- "gettingStarted.topLevelShowWalkthroughs.description": "Ver un tutorial en el editor o una extensión",
- "gettingStarted.topLevelShowWalkthroughs.title": "Abrir un tutorial...",
- "gettingStarted.videoTutorial.description.interpolated": "Vea el primero de una serie de tutoriales de vídeo breves y prácticos sobre las características clave de VS Code.\r\n{0}",
- "gettingStarted.videoTutorial.title": "Relájese y aprenda",
- "gettingStarted.workspaceTrust.description.interpolated": "{0} le permite decidir si las carpetas de proyecto deben **permitir o restringir** la ejecución de código automática __(requerido para extensiones, depuración, etc.)__.\r\nAbrir un archivo o carpeta le pedirá que conceda confianza. Siempre podrá {1} más tarde.",
- "gettingStarted.workspaceTrust.title": "Examinar y editar código de forma segura",
- "initRepo": "Inicializar repositorio de Git",
- "installGit": "Instala GIT",
- "keyboardShortcuts": "Métodos abreviados de teclado",
- "openEditorPlayground": "Abrir área de juegos del editor",
- "openFolder": "Abrir carpeta",
- "openRepository": "Abrir repositorio",
- "openSCM": "Abrir control de código fuente",
- "pickFolder": "Seleccionar una carpeta",
- "quickOpen": "Quick Open para archivo",
- "runProject": "Ejecute su proyecto",
- "runTasks": "Ejecutar tareas detectadas automáticamente",
- "showTerminal": "Mostrar panel del terminal",
- "splitEditor": "Dividir editor",
- "titleID": "Examinar temas de color",
- "toggleMenuBar": "Alternar barra de menús",
- "tweakSettings": "Retocar mi configuración",
- "watch": "Ver tutorial",
- "workspaceTrust": "Confianza en el área de trabajo"
- },
- "vs/workbench/contrib/welcome/gettingStarted/common/media/example_markdown_media": {
- "HighContrast": "Contraste alto",
- "dark": "Oscuro",
- "light": "Claro",
- "seeMore": "Ver más temas..."
- },
- "vs/workbench/contrib/welcome/gettingStarted/common/media/notebookProfile": {
- "colab": "Colab",
- "default": "Predeterminado",
- "jupyter": "Jupyter"
- },
- "vs/workbench/contrib/welcome/overlay/browser/welcomeOverlay": {
- "hideWelcomeOverlay": "Ocultar información general de la interfaz",
- "welcomeOverlay": "Información general de la interfaz de usuario",
- "welcomeOverlay.commandPalette": "Encontrar y ejecutar todos los comandos",
- "welcomeOverlay.debug": "Iniciar y depurar",
- "welcomeOverlay.explorer": "Explorador de archivos",
- "welcomeOverlay.extensions": "Administrar extensiones",
- "welcomeOverlay.git": "Administración de código fuente",
- "welcomeOverlay.notifications": "Mostrar notificaciones",
- "welcomeOverlay.problems": "Ver errores y advertencias",
- "welcomeOverlay.search": "Buscar en todos los archivos",
- "welcomeOverlay.terminal": "Alternar terminal integrado"
+ "cut": "Cortar",
+ "paste": "Pegar"
},
- "vs/workbench/contrib/welcome/page/browser/welcomePage.contribution": {
- "workbench.startupEditor": "Controla qué editor se muestra al inicio, si no se restaura ninguno de la sesión anterior.",
- "workbench.startupEditor.newUntitledFile": "Abra un archivo nuevo sin título (solo se aplica al abrir una ventana vacía).",
- "workbench.startupEditor.none": "Iniciar sin un editor.",
- "workbench.startupEditor.readme": "Abra el archivo Léame cuando abra una carpeta que contenga uno, en caso contrario, vuelva a \"welcomePage\". Nota: esta situación solo se observa en la configuración global y se omitirá si se establece en una configuración de área de trabajo o carpeta.",
- "workbench.startupEditor.welcomePage": "Abre la página principal, con contenido de ayuda para empezar a usar VS Code y las extensiones.",
- "workbench.startupEditor.welcomePageInEmptyWorkbench": "Abrir la página principal cuando se abra un área de trabajo vacía."
+ "vs/workbench/contrib/webview/browser/webviewElement": {
+ "fatalErrorMessage": "Error al cargar la vista web: {0}"
},
- "vs/workbench/contrib/welcome/walkThrough/browser/editor/editorWalkThrough": {
- "editorWalkThrough": "Área de juegos del editor interactivo",
- "editorWalkThrough.title": "Área de juegos del editor"
+ "vs/workbench/contrib/webview/electron-browser/webviewCommands": {
+ "iframeWebviewAlert": "Uso de herramientas de desarrollo estándar para depurar la vista previa basada en IFrame",
+ "openToolsDescription": "Abre Herramientas de desarrollo para vistas web activas",
+ "openToolsLabel": "Abrir herramientas de desarrollo de vistas web"
},
- "vs/workbench/contrib/welcome/walkThrough/browser/walkThrough.contribution": {
- "miPlayground": "Editor Playgrou&&nd",
- "walkThrough.editor.label": "Área de juegos"
+ "vs/workbench/contrib/webviewPanel/browser/webviewCommands": {
+ "editor.action.webvieweditor.findNext": "Buscar siguiente",
+ "editor.action.webvieweditor.findPrevious": "Buscar anterior",
+ "editor.action.webvieweditor.hideFind": "Detener la búsqueda",
+ "editor.action.webvieweditor.showFind": "Mostrar hallazgo",
+ "refreshWebviewLabel": "Recargar vistas web"
},
- "vs/workbench/contrib/welcome/walkThrough/browser/walkThroughPart": {
- "walkThrough.embeddedEditorBackground": "Color de fondo de los editores incrustrados en la área de juegos",
- "walkThrough.gitNotFound": "Parece que GIT no está instalado en el sistema.",
- "walkThrough.unboundCommand": "sin enlazar"
+ "vs/workbench/contrib/webviewPanel/browser/webviewEditor": {
+ "context.activeWebviewId": "El valor viewType del panel de vista web activo."
+ },
+ "vs/workbench/contrib/webviewPanel/browser/webviewPanel.contribution": {
+ "webview.editor.label": "Editor de vistas web"
+ },
+ "vs/workbench/contrib/welcomeDialog/browser/welcomeDialog.contribution": {
+ "workbench.welcome.dialog": "Cuando está habilitado, se muestra un widget de bienvenida en el editor"
+ },
+ "vs/workbench/contrib/welcomeDialog/browser/welcomeWidget": {
+ "dialogClose": "Cerrar cuadro de diálogo"
},
"vs/workbench/contrib/welcomeGettingStarted/browser/gettingStarted": {
+ "acessibleViewHint": "Inspeccione esto en la vista accesible ({0}).\r\n",
+ "acessibleViewHintNoKbOpen": "Inspeccione esto en la vista accesible mediante el comando Abrir vista accesible, que actualmente no se puede desencadenar mediante el enlace de teclado.\r\n",
"allDone": "Marcar como Listo",
"checkboxTitle": "Cuando se activa esta opción, esta página se mostrará al iniciar.",
"close": "Ocultar",
+ "closeAriaLabel": "Ocultar",
"footer": "{0} recopila datos de uso. Lea nuestra {1} y aprenda a {2}.",
- "getStarted": "Iniciar",
"gettingStarted.allStepsComplete": "Todos los {0} pasos completados.",
"gettingStarted.editingEvolved": "Edición mejorada",
"gettingStarted.keyboardTip": "Sugerencia: Usar método abreviado de teclado ",
"gettingStarted.someStepsComplete": "{0} de {1} pasos completados",
+ "goBack": "Volver",
"imageShowing": "Imagen que muestra {0}",
"new": "Nuevo",
"newItems": "Actualizado",
@@ -10247,40 +16418,51 @@
"show more recents": "Mostrar todas las carpetas recientes {0}",
"showAll": "Más...",
"start": "Inicio",
+ "stepDone": "Casilla de verificación para el paso {0}: Completado",
+ "stepNotDone": "Casilla de verificación para el paso {0}: No completado",
"toStart": "iniciar.",
+ "videoAltText": "Vídeo para {0}",
+ "videoShowing": "Vídeo que muestra {0}",
"walkthroughs": "Tutoriales",
+ "welcome": "Bienvenido",
"welcomeAriaLabel": "Información general sobre cómo ponerse al día con el editor.",
"welcomePage.openFolderWithPath": "Abrir la carpeta {0} con la ruta de acceso {1}",
"welcomePage.showOnStartup": "Mostrar página principal al inicio"
},
"vs/workbench/contrib/welcomeGettingStarted/browser/gettingStarted.contribution": {
"deprecationMessage": "En desuso, use el elemento global `workbench.reduceMotion`.",
- "getStarted": "Comenzar",
- "help": "Ayuda",
- "miGetStarted": "Iniciar",
- "pickWalkthroughs": "Abrir tutorial...",
+ "miWelcome": "Bienvenido",
+ "minWelcomeDescription": "Abre un tutorial para ayudarle a empezar a trabajar en VS Code.",
+ "pickWalkthroughs": "Seleccione un tutorial para abrir",
+ "welcome": "Bienvenido",
"welcome.goBack": "Volver",
"welcome.markStepComplete": "Marcar paso completado",
"welcome.markStepInomplete": "Marcar Paso incompleto",
"welcome.showAllWalkthroughs": "Abrir tutorial...",
"workbench.startupEditor": "Controla qué editor se muestra al inicio, si no se restaura ninguno de la sesión anterior.",
- "workbench.startupEditor.newUntitledFile": "Abra un archivo nuevo sin título (solo se aplica al abrir una ventana vacía).",
+ "workbench.startupEditor.newUntitledFile": "Abra un nuevo archivo de texto sin título (solo se aplica al abrir una ventana vacía).",
"workbench.startupEditor.none": "Iniciar sin un editor.",
"workbench.startupEditor.readme": "Abra el archivo Léame cuando abra una carpeta que contenga uno, en caso contrario, vuelva a “welcomePage”. Nota: esta situación solo se observa en la configuración global y se omitirá si se establece en una configuración de área de trabajo o carpeta.",
+ "workbench.startupEditor.terminal": "Abra un nuevo terminal en el área del editor.",
"workbench.startupEditor.welcomePage": "Abre la página principal, con contenido de ayuda para empezar a usar VS Code y las extensiones.",
"workbench.startupEditor.welcomePageInEmptyWorkbench": "Abrir la página principal cuando se abra un área de trabajo vacía.",
"workbench.welcomePage.preferReducedMotion": "Cuando está habilitado, reduce el movimiento en la página principal.",
- "workbench.welcomePage.videoTutorials": "Cuando está habilitada, la página de introducción tiene vínculos adicionales a tutoriales en vídeo.",
"workbench.welcomePage.walkthroughs.openOnInstall": "Cuando se habilita, se abre el tutorial de la extensión al momento de su instalación.",
"workspacePlatform": "La plataforma del área de trabajo actual, que en los contextos remotos o sin servidor puede ser diferente de la plataforma de la interfaz de usuario"
},
+ "vs/workbench/contrib/welcomeGettingStarted/browser/gettingStartedAccessibleView": {
+ "gettingStarted.description": "Descripción: {0}",
+ "gettingStarted.step": "{0}\r\n{1}",
+ "gettingStarted.title": "Título: {0}"
+ },
"vs/workbench/contrib/welcomeGettingStarted/browser/gettingStartedColors": {
+ "walkthrough.stepTitle.foreground": "Color de primer plano del encabezado de cada paso del tutorial",
"welcomePage.background": "Color de fondo para la página de bienvenida.",
"welcomePage.progress.background": "Color de primer plano de las barras de progreso de la página principal.",
"welcomePage.progress.foreground": "Color de fondo de las barras de progreso de la página principal.",
- "welcomePage.tileBackground": "Color de fondo de los iconos de la página de introducción.",
- "welcomePage.tileHoverBackground": "Color de fondo del puntero para los iconos en la introducción.",
- "welcomePage.tileShadow": "Color de sombra de los botones de categoría del tutorial en la página principal."
+ "welcomePage.tileBackground": "Color de fondo para los mosaicos de la página principal.",
+ "welcomePage.tileBorder": "Color del borde de los mosaicos de la página principal.",
+ "welcomePage.tileHoverBackground": "Mantenga el color de fondo para los mosaicos de la página principal."
},
"vs/workbench/contrib/welcomeGettingStarted/browser/gettingStartedExtensionPoint": {
"pathDeprecated": "En desuso. En su lugar, use `image` o `markdown`",
@@ -10288,6 +16470,7 @@
"walkthroughs": "Contribuya con tutoriales para ayudar a los usuarios a empezar a usar su extensión.",
"walkthroughs.description": "Descripción del tutorial.",
"walkthroughs.featuredFor": "Los tutoriales que coinciden con uno de estos patrones globales aparecen como \"destacados\" en las áreas de trabajo con los archivos especificados. Por ejemplo, un tutorial para proyectos de TypeScript podría especificar \"tsconfig.json\" aquí.",
+ "walkthroughs.icon": "Ruta de acceso relativa al icono del tutorial. La ruta de acceso es relativa a la ubicación de la extensión. Si no se especifica, el icono tiene como valor predeterminado el icono de extensión si está disponible.",
"walkthroughs.id": "Identificador único para este tutorial.",
"walkthroughs.steps": "Pasos que deben completarse como parte de este tutorial.",
"walkthroughs.steps.button.deprecated.interpolated": "En desuso. Usar en su lugar vínculos de markdown en la descripción, es decir, {0}, {1} o {2}",
@@ -10323,44 +16506,76 @@
"gettingStartedUnchecked": "Se usa para representar los pasos del tutorial que no se han completado"
},
"vs/workbench/contrib/welcomeGettingStarted/browser/gettingStartedInput": {
- "getStarted": "Iniciar"
+ "getStarted": "Bienvenido",
+ "walkthroughPageTitle": "Tutorial: {0}"
},
"vs/workbench/contrib/welcomeGettingStarted/browser/gettingStartedService": {
"builtin": "Integrado",
"developer": "Desarrollador",
+ "resetGettingStartedProgressDescription": "Restablezca el progreso de todos los pasos del tutorial en la página principal para que aparezcan como si se ven por primera vez, lo que proporciona un nuevo comienzo a la experiencia de introducción.",
"resetWelcomePageWalkthroughProgress": "Restablecer el progreso del tutorial de la página principal"
},
+ "vs/workbench/contrib/welcomeGettingStarted/browser/startupPage": {
+ "startupPage.markdownPreviewError": "No se pudo abrir la vista previa de Markdown: {0}.\r\n\r\nAsegúrese de que la extensión Markdown está habilitada.",
+ "welcome.displayName": "Página de bienvenida"
+ },
"vs/workbench/contrib/welcomeGettingStarted/common/gettingStartedContent": {
"browseLangExts": "Examinar extensiones de lenguaje",
- "browsePopular": "Examinar extensiones web conocidas",
- "browseRecommended": "Examinar extensiones recomendadas",
+ "browsePopular": "Examinar extensiones populares",
+ "browsePopularWeb": "Examinar extensiones web conocidas",
"cloneRepo": "Clonar repositorio",
"commandPalette": "Abrir paleta de comandos",
- "enableSync": "Habilitar sincronización de configuración",
+ "enableSync": "Configuración de copia de seguridad y sincronización",
"enableTrust": "habilitar confianza",
"getting-started-beginner-icon": "Icono que se usa para la categoría de principiante de la página principal.",
- "getting-started-intermediate-icon": "Icono que se usa para la categoría de usuario intermedio de la página principal.",
"getting-started-setup-icon": "Icono que se usa para la categoría de configuración de la página principal.",
- "gettingStarted.beginner.description": "Vaya directamente a VS Code y obtenga información general sobre las características imprescindibles.",
+ "gettingStarted.accessibilityHelp.description.interpolated": "El cuadro de diálogo de ayuda de accesibilidad proporciona información sobre lo que se puede esperar de una característica y los comandos o enlaces de teclado para operarlos.\r\n Con el foco en un editor, terminal, cuaderno, respuesta de chat, comentario o consola de depuración, se puede abrir el diálogo correspondiente con el comando Abrir ayuda de accesibilidad.\r\n{0}",
+ "gettingStarted.accessibilityHelp.title": "Use el cuadro de diálogo de ayuda de accesibilidad para obtener información sobre las características",
+ "gettingStarted.accessibilitySettings.description.interpolated": "La configuración de accesibilidad se puede configurar mediante la ejecución del comando Abrir configuración de accesibilidad.\r\n{0}",
+ "gettingStarted.accessibilitySettings.title": "Configurar opciones de accesibilidad",
+ "gettingStarted.accessibilitySignals.description.interpolated": "Los sonidos y anuncios de accesibilidad se reproducen en el área de trabajo para diferentes eventos.\r\n Pueden detectarse y configurarse usando los comandos Enumerar sonidos de señal y Enumerar anuncios de señal.\r\n{0}\r\n{1}",
+ "gettingStarted.accessibilitySignals.title": "Ajuste las señales de accesibilidad que quiere recibir a través de audio o un dispositivo braille",
+ "gettingStarted.accessibleView.description.interpolated": "La vista accesible está disponible para el terminal, las opciones de mantener el puntero, las notificaciones, los comentarios, la salida del bloc de notas, las respuestas de chat, las finalizaciones en línea y la salida de la consola de depuración.\r\n Con el foco en cualquiera de esas características, se puede abrir con el comando Abrir vista accesible.\r\n{0}",
+ "gettingStarted.accessibleView.title": "Los usuarios del lector de pantalla pueden inspeccionar el contenido línea por línea, carácter por carácter en la vista accesible.",
+ "gettingStarted.beginner.description": "Obtenga información general sobre las características más esenciales",
"gettingStarted.beginner.title": "Conozca los aspectos básicos",
- "gettingStarted.commandPalette.description.interpolated": "Los comandos son la manera de realizar cualquier tarea en VS Code. **Practique** buscando los más frecuentes para ahorrar tiempo.\r\n{0}\r\n__Pruebe a buscar \"alternancia de vista\".__",
- "gettingStarted.commandPalette.title": "Un acceso directo para acceder a todo",
+ "gettingStarted.beginner.walkthroughPageTitle": "Características esenciales",
+ "gettingStarted.codeFolding.description.interpolated": "Pliegue o despliegue una sección de código con el comando Alternar plegado.\r\n{0}\r\n Pliegue o despliegue recursivamente con el comando Alternar plegado de manera recursiva\r\n{1}\r\n",
+ "gettingStarted.codeFolding.title": "Use el plegado de código para contraer bloques de código y céntrese en el código que le interesa.",
+ "gettingStarted.commandPalette.description.interpolated": "Ejecute comandos sin tener que ponerse en contacto con el mouse para realizar ninguna tarea en VS Code.\r\n{0}",
+ "gettingStarted.commandPalette.title": "Desbloquear la productividad con la paleta de comandos ",
+ "gettingStarted.commandPaletteAccessibility.description.interpolated": "Ejecute comandos sin tener que usar el mouse para realizar cualquier tarea en VS Code.\r\n{0}",
+ "gettingStarted.commandPaletteAccessibility.title": "Desbloquear la productividad con la paleta de comandos ",
+ "gettingStarted.copilotSetup.description": "Puede usar [Copilot]({0}) para generar código en varios archivos, corregir errores, hacer preguntas sobre el código y mucho más con lenguaje natural.",
+ "gettingStarted.copilotSetup.terms": "Al continuar con {0} Copilot, acepta los [Términos]({2}) y la [Declaración de privacidad]({3}) de {1}",
+ "gettingStarted.copilotSetup.title": "Uso gratuito de las características de IA con Copilot",
"gettingStarted.debug.description.interpolated": "Agilice los bucles de edición, creación, prueba y depuración mediante la configuración de un lanzamiento.\r\n{0}",
"gettingStarted.debug.title": "Vea su código en acción",
+ "gettingStarted.dictation.description.interpolated": "El dictado le permite escribir código y texto con la voz. Se puede activar con el comando Voz: iniciar dictado en Editor.\r\n{0}\r\n Para dictar en el terminal, use los comandos Voz: iniciar dictado en terminal y Voz: detener dictado en terminal.\r\n{1}\r\n{2}",
+ "gettingStarted.dictation.title": "Use el dictado para escribir código y texto en el editor y en el terminal",
"gettingStarted.extensions.description.interpolated": "Las extensiones son recursos esenciales de VS Code. Abarcan desde prácticas soluciones de productividad, pasando por características listas para usar ampliables hasta la adición de capacidades completamente nuevas.\r\n{0}",
- "gettingStarted.extensions.title": "Extensibilidad sin límites",
+ "gettingStarted.extensions.title": "Código con extensiones",
"gettingStarted.extensionsWeb.description.interpolated": "Las extensiones son VS Code de inicio/apagado. Un número creciente vuelve a estar disponible en la Web.\r\n{0}",
- "gettingStarted.findLanguageExts.description.interpolated": "Código más inteligente con resaltado de sintaxis, finalización de código, linting y depuración. Aunque muchos lenguajes están integrados, se pueden agregar muchos más como extensiones.\r\n{0}",
+ "gettingStarted.findLanguageExts.description.interpolated": "Programe de forma más inteligente con resaltado de sintaxis, sugerencias insertadas, linting y depuración. Aunque muchos lenguajes están integrados, se pueden agregar muchos más como extensiones.\r\n{0}",
"gettingStarted.findLanguageExts.title": "Compatibilidad enriquecida para todos los lenguajes",
- "gettingStarted.installGit.description.interpolated": "Instala Git para realizar un seguimiento de los cambios en los proyectos.\r\n{0}",
+ "gettingStarted.goToSymbol.description.interpolated": "El comando Ir a símbolo es útil para navegar entre puntos de referencia importantes de un documento.\r\n{0}",
+ "gettingStarted.goToSymbol.title": "Navegar a los símbolos de un archivo",
+ "gettingStarted.hover.description.interpolated": "Mientras el foco está en el editor sobre una variable o símbolo, se pueden enfocar a las opciones de mantener el puntero con el comando Mostrar o Abrir opciones de mantener el puntero.\r\n{0}",
+ "gettingStarted.hover.title": "Obtener acceso a las opciones de mantener el puntero en el editor para obtener más información sobre una variable o un símbolo",
+ "gettingStarted.installGit.description.interpolated": "Instala Git para realizar un seguimiento de los cambios en los proyectos.\r\n{0}\r\n{1}Ventana para volver a cargar{2} después de la instalación para completar la instalación de Git.",
"gettingStarted.installGit.title": "Instala GIT",
- "gettingStarted.intermediate.description": "Optimice su flujo de trabajo de desarrollo con estas sugerencias y trucos.",
- "gettingStarted.intermediate.title": "Aumente su productividad",
- "gettingStarted.menuBar.description.interpolated": "La barra de menús completa está disponible en el menú desplegable para hacer espacio para el código. Active o desactive su aparición para obtener un acceso más rápido. \r\n{0}",
+ "gettingStarted.intellisense.description.interpolated": "Las sugerencias de IntelliSense se pueden abrir con el comando Desencadenar Intellisense.\r\n{0}\r\n Las sugerencias de Intellisense en línea pueden desencadenarse con Desencadenar sugerencias insertada\r\n{1}\r\n La configuración útil incluye editor.inlineCompletionsAccessibilityVerbose y editor.screenReaderAnnounceInlineSuggestion.",
+ "gettingStarted.intellisense.title": "Uso de IntelliSense para mejorar la eficacia de codificación",
+ "gettingStarted.keyboardShortcuts.description.interpolated": "Una vez que haya descubierto sus comandos favoritos, cree métodos abreviados de teclado personalizados para obtener acceso instantáneo.\r\n{0}",
+ "gettingStarted.keyboardShortcuts.title": "Personalizar los métodos abreviados de teclado",
+ "gettingStarted.menuBar.description.interpolated": "La barra de menús completa está disponible en el menú desplegable para dejar espacio para el código. Alterne su apariencia para obtener un acceso más rápido. \r\n{0}",
"gettingStarted.menuBar.title": "Solo la cantidad indicada de interfaz de usuario",
- "gettingStarted.newFile.description": "Abra un nuevo archivo, bloc de notas o editor personalizado sin título.",
+ "gettingStarted.newFile.description": "Abra un nuevo archivo de texto sin título, un bloc de notas o un editor personalizado.",
"gettingStarted.newFile.title": "Nuevo archivo...",
+ "gettingStarted.newWorkspaceChat.description": "Chatear para crear una nueva área de trabajo",
+ "gettingStarted.newWorkspaceChat.title": "Generar nueva área de trabajo...",
"gettingStarted.notebook.title": "Personalizar blocs de notas",
+ "gettingStarted.notebook.walkthroughPageTitle": "Cuadernos",
"gettingStarted.notebookProfile.description": "Ajuste los blocs de notas de la forma que prefiera",
"gettingStarted.notebookProfile.title": "Seleccionar el diseño de los blocs de notas",
"gettingStarted.openFile.description": "Abrir un archivo para empezar a trabajar",
@@ -10369,63 +16584,80 @@
"gettingStarted.openFolder.title": "Abrir carpeta...",
"gettingStarted.openMac.description": "Abrir un archivo o una carpeta para empezar a trabajar",
"gettingStarted.openMac.title": "Abrir...",
- "gettingStarted.pickColor.description.interpolated": "La paleta de colores derecha le ayuda a centrarse en el código, es fácil de ver y simplemente resulta más divertida de usar.\r\n{0}",
- "gettingStarted.pickColor.title": "Elija el aspecto que desee",
- "gettingStarted.playground.description.interpolated": "¿Quiere codificar de forma más rápida y más inteligente? Practique las eficaces características de edición de código en el sitio de pruebas interactivo.\r\n{0}",
- "gettingStarted.playground.title": "Redefinir sus habilidades de edición",
+ "gettingStarted.pickColor.description.interpolated": "El tema adecuado le ayuda a centrarse en el código, es fácil de ver y simplemente es más divertido de usar.\r\n{0}",
+ "gettingStarted.pickColor.title": "Elegir el tema",
"gettingStarted.quickOpen.description.interpolated": "Navegue entre los distintos archivos en un instante con una sola pulsación de tecla. Sugerencia: Para abrir varios archivos, presione la tecla de flecha derecha.\r\n{0}",
"gettingStarted.quickOpen.title": "Navegar rápidamente entre los archivos",
"gettingStarted.scm.description.interpolated": "Ya no tendrá que buscar más comandos de Git. Los flujos de trabajo de Git y GitHub están integrados sin problemas.\r\n{0}",
"gettingStarted.scm.title": "Realice un seguimiento del código con Git",
"gettingStarted.scmClone.description.interpolated": "Configure el control de versiones integrado para su proyecto, para realizar un seguimiento de los cambios y colaborar con otros usuarios.\r\n{0}",
"gettingStarted.scmSetup.description.interpolated": "Configure el control de versiones integrado para su proyecto, para realizar un seguimiento de los cambios y colaborar con otros usuarios.\r\n{0}",
- "gettingStarted.settings.description.interpolated": "Retoque a su gusto todos los aspectos de VS Code y sus extensiones. La configuración de uso habitual se muestra primero para comenzar.\r\n{0}",
"gettingStarted.settings.title": "Ajustar la configuración",
- "gettingStarted.settingsSync.description.interpolated": "Mantenga actualizadas sus personalizaciones esenciales de VS Code y con una copia de seguridad en todos los dispositivos.\r\n{0}",
- "gettingStarted.settingsSync.title": "Sincronizar desde y hacia otros dispositivos",
- "gettingStarted.setup.OpenFolder.description.interpolated": "Ya hemos empezado a codificar. Abra una carpeta de proyecto para pasar los archivos a VS Code.\r\n{0}",
+ "gettingStarted.settingsAndSync.description.interpolated": "Personalice todos los aspectos de las personalizaciones de VS Code y [sync](command:workbench.userDataSync.actions.turnOn) en todos los dispositivos.\r\n{0}",
+ "gettingStarted.settingsSync.description.interpolated": "Mantenga sus personalizaciones esenciales de copia de seguridad y actualizadas en todos sus dispositivos.\r\n{0}",
+ "gettingStarted.settingsSync.title": "Sincronizar configuración entre dispositivos",
"gettingStarted.setup.OpenFolder.title": "Abrir el código",
"gettingStarted.setup.OpenFolderWeb.description.interpolated": "Ya está todo listo para empezar a codificar. Puede abrir un proyecto local o un repositorio remoto para obtener los archivos en VS Code.\r\n{0}\r\n{1}",
- "gettingStarted.setup.description": "Descubra las mejores personalizaciones para configurar VS Code a su manera.",
+ "gettingStarted.setup.description": "Personalice el editor, conozca los conceptos básicos y empiece a codificar",
"gettingStarted.setup.title": "Introducción a VS Code",
- "gettingStarted.setupWeb.description": "Descubra las mejores personalizaciones para configurar VS Code en la Web a su manera.",
- "gettingStarted.setupWeb.title": "Introducción a la VS Code en la Web",
+ "gettingStarted.setup.walkthroughPageTitle": "Instalar VS Code",
+ "gettingStarted.setupAccessibility.description": "Obtenga información sobre las herramientas y los accesos directos que hacen que VS Code sean accesibles. Tenga en cuenta que algunas acciones no se pueden accionar desde el contexto del tutorial.",
+ "gettingStarted.setupAccessibility.title": "Introducción a las características de accesibilidad",
+ "gettingStarted.setupAccessibility.walkthroughPageTitle": "Configuración de accesibilidad de VS Code",
+ "gettingStarted.setupWeb.description": "Personalice el editor, conozca los conceptos básicos y empiece a codificar",
+ "gettingStarted.setupWeb.title": "Introducción a VS Code para la Web",
+ "gettingStarted.setupWeb.walkthroughPageTitle": "Instalar VS Code Web",
"gettingStarted.shortcuts.description.interpolated": "Una vez que haya descubierto sus comandos favoritos, cree métodos abreviados de teclado personalizados para obtener acceso instantáneo.\r\n{0}",
"gettingStarted.shortcuts.title": "Personalizar los accesos directos",
- "gettingStarted.splitview.description.interpolated": "Para sacar el máximo provecho de su pantalla, abra los archivos uno al lado del otro, de forma vertical y horizontal.\r\n{0}",
- "gettingStarted.splitview.title": "Edición en paralelo",
"gettingStarted.tasks.description.interpolated": "Cree tareas para sus flujos de trabajo comunes y disfrute de la experiencia integrada en la ejecución de scripts y la comprobación automática de resultados.\r\n{0}",
"gettingStarted.tasks.title": "Automatizar sus tareas de proyecto",
"gettingStarted.terminal.description.interpolated": "Ejecute los comandos shell de forma rápida y supervise la salida de compilación junto a su código.\r\n{0}",
- "gettingStarted.terminal.title": "Cómodo terminal integrado",
+ "gettingStarted.terminal.title": "Terminal integrado",
"gettingStarted.topLevelGitClone.description": "Clonar un repositorio remoto en una carpeta local",
"gettingStarted.topLevelGitClone.title": "Clonar el repositorio Git...",
"gettingStarted.topLevelGitOpen.description": "Conectarse a un repositorio remoto o una solicitud de incorporación de cambios para examinar, buscar, editar y confirmar",
"gettingStarted.topLevelGitOpen.title": "Abrir repositorio...",
- "gettingStarted.topLevelShowWalkthroughs.description": "Ver un tutorial en el editor o una extensión",
- "gettingStarted.topLevelShowWalkthroughs.title": "Abrir un tutorial...",
- "gettingStarted.topLevelVideoTutorials.description": "Vea nuestra serie de breves y prácticos tutoriales en vídeo sobre las características principales de VS Code.",
- "gettingStarted.topLevelVideoTutorials.title": "Ver tutoriales en vídeo",
+ "gettingStarted.topLevelOpenTunnel.description": "Conectarse a una máquina remota a través de un Tunnel",
+ "gettingStarted.topLevelOpenTunnel.title": "Abrir túnel...",
+ "gettingStarted.topLevelRemoteOpen.description": "Conéctese a áreas de trabajo de desarrollo remoto.",
+ "gettingStarted.topLevelRemoteOpen.title": "Conectarse a...",
+ "gettingStarted.verbositySettings.description.interpolated": "La configuración de nivel de detalle del lector de pantalla existe para las características del área de trabajo, de modo que, una vez que un usuario esté familiarizado con una característica, puede evitar oír sugerencias sobre cómo operarla. Por ejemplo, las características para las que existe un cuadro de diálogo de ayuda de accesibilidad indicarán cómo abrir el cuadro de diálogo hasta que se deshabilite la configuración de detalle para esa característica.\r\n Para configurar estos y otros valores de accesibilidad, ejecute el comando Abrir configuración de accesibilidad.\r\n{0}",
+ "gettingStarted.verbositySettings.title": "Controlar el nivel de detalle de las etiquetas aria",
"gettingStarted.videoTutorial.description.interpolated": "Vea el primero de una serie de tutoriales de vídeo breves y prácticos sobre las características clave de VS Code.\r\n{0}",
- "gettingStarted.videoTutorial.title": "Relájese y aprenda",
+ "gettingStarted.videoTutorial.title": "Ver tutoriales en vídeo",
"gettingStarted.workspaceTrust.description.interpolated": "{0} le permite decidir si las carpetas de proyecto deben **permitir o restringir** la ejecución de código automática __(requerido para extensiones, depuración, etc.)__.\r\nAbrir un archivo o carpeta le pedirá que conceda confianza. Siempre podrá {1} más tarde.",
"gettingStarted.workspaceTrust.title": "Examinar y editar código de forma segura",
"initRepo": "Inicializar repositorio de Git",
"installGit": "Instala GIT",
"keyboardShortcuts": "Métodos abreviados de teclado",
- "openEditorPlayground": "Abrir área de juegos del editor",
+ "listSignalAnnouncements": "Enumerar anuncios de señal",
+ "listSignalSounds": "Enumerar sonidos de señal",
+ "openAccessibilityHelp": "Abrir la ayuda de accesibilidad",
+ "openAccessibilitySettings": "Abrir configuración de accesibilidad",
+ "openAccessibleView": "Abrir Vista accesible",
"openFolder": "Abrir carpeta",
+ "openGoToSymbol": "Ir a símbolo",
"openRepository": "Abrir repositorio",
"openSCM": "Abrir control de código fuente",
- "pickFolder": "Seleccionar una carpeta",
+ "openVerbositySettings": "Abrir configuración de accesibilidad",
"quickOpen": "Quick Open para archivo",
"runProject": "Ejecute su proyecto",
"runTasks": "Ejecutar tareas detectadas automáticamente",
- "showTerminal": "Mostrar panel del terminal",
- "splitEditor": "Dividir editor",
+ "settings": "{0} Copilot puede mostrar sugerencias de [código público]({1}) y usar los datos para mejorar el producto. Puede cambiar esta [configuración]({2}) en cualquier momento.",
+ "setupCopilotButton.chatWithCopilot": "Iniciar chat",
+ "setupCopilotButton.setup": "Usar características de IA",
+ "showOrFocusHover": "Mostrar o centrarse al mantener el puntero",
+ "showTerminal": "Abrir terminal",
+ "terminalStartDictation": "Terminal: iniciar dictado en terminal",
+ "terminalStopDictation": "Terminal: detener dictado en terminal",
"titleID": "Examinar temas de color",
+ "toggleDictation": "Voz: iniciar dictado en Editor",
+ "toggleFold": "Alternar plegado",
+ "toggleFoldRecursively": "Alternar plegado de forma recursiva",
"toggleMenuBar": "Alternar barra de menús",
- "tweakSettings": "Retocar mi configuración",
+ "triggerInlineSuggestion": "Desencadenar sugerencia alineada",
+ "triggerIntellisense": "Desencadenar IntelliSense",
+ "tweakSettings": "Abrir configuración",
"watch": "Ver tutorial",
"workspaceTrust": "Confianza en el área de trabajo"
},
@@ -10437,10 +16669,16 @@
"vs/workbench/contrib/welcomeGettingStarted/common/media/theme_picker": {
"HighContrast": "Contraste alto oscuro",
"HighContrastLight": "Contraste alto claro",
- "dark": "Oscuro",
- "light": "Claro",
+ "dark": "Moderno oscuro",
+ "light": "Moderno claro",
"seeMore": "Ver más temas..."
},
+ "vs/workbench/contrib/welcomeGettingStarted/common/media/theme_picker_small": {
+ "HighContrast": "Contraste alto oscuro",
+ "HighContrastLight": "Contraste alto claro",
+ "dark": "Moderno oscuro",
+ "light": "Moderno claro"
+ },
"vs/workbench/contrib/welcomeOverlay/browser/welcomeOverlay": {
"hideWelcomeOverlay": "Ocultar información general de la interfaz",
"welcomeOverlay": "Información general de la interfaz de usuario",
@@ -10452,15 +16690,8 @@
"welcomeOverlay.notifications": "Mostrar notificaciones",
"welcomeOverlay.problems": "Ver errores y advertencias",
"welcomeOverlay.search": "Buscar en todos los archivos",
- "welcomeOverlay.terminal": "Alternar terminal integrado"
- },
- "vs/workbench/contrib/welcomePage/browser/welcomePage.contribution": {
- "workbench.startupEditor": "Controla qué editor se muestra al inicio, si no se restaura ninguno de la sesión anterior.",
- "workbench.startupEditor.newUntitledFile": "Abra un archivo nuevo sin título (solo se aplica al abrir una ventana vacía).",
- "workbench.startupEditor.none": "Iniciar sin un editor.",
- "workbench.startupEditor.readme": "Abra el archivo Léame cuando abra una carpeta que contenga uno, en caso contrario, vuelva a \"welcomePage\". Nota: esta situación solo se observa en la configuración global y se omitirá si se establece en una configuración de área de trabajo o carpeta.",
- "workbench.startupEditor.welcomePage": "Abre la página principal, con contenido de ayuda para empezar a usar VS Code y las extensiones.",
- "workbench.startupEditor.welcomePageInEmptyWorkbench": "Abrir la página principal cuando se abra un área de trabajo vacía."
+ "welcomeOverlay.terminal": "Alternar terminal integrado",
+ "welcomeOverlayBackground": "Color de fondo welcomeOverlay."
},
"vs/workbench/contrib/welcomeViews/common/newFile.contribution": {
"Built-In": "Integrado",
@@ -10468,9 +16699,10 @@
"change keybinding": "Configurar el enlace de teclado",
"file": "Archivo",
"miNewFile2": "Archivo de texto",
- "miNewFileWithName": "Nuevo archivo ({0})",
+ "miNewFileWithName": "Crear archivo nuevo ({0})",
+ "newFilePlaceholder": "Seleccione el tipo de archivo o escriba el nombre de archivo...",
+ "newFileTitle": "Nuevo archivo...",
"notebook": "Bloc de notas",
- "selectFileType": "Seleccionar un tipo de archivo...",
"welcome.newFile": "Nuevo archivo..."
},
"vs/workbench/contrib/welcomeViews/common/viewsWelcomeContribution": {
@@ -10487,43 +16719,46 @@
},
"vs/workbench/contrib/welcomeWalkthrough/browser/editor/editorWalkThrough": {
"editorWalkThrough": "Área de juegos del editor interactivo",
- "editorWalkThrough.title": "Área de juegos del editor"
+ "editorWalkThrough.title": "Área de juegos del editor",
+ "editorWalkThroughMetadata": "Abre un área de juegos interactiva para aprender sobre el editor."
},
"vs/workbench/contrib/welcomeWalkthrough/browser/walkThrough.contribution": {
"miPlayground": "Área de jueg&&os del editor",
"walkThrough.editor.label": "Área de juegos"
},
"vs/workbench/contrib/welcomeWalkthrough/browser/walkThroughPart": {
- "walkThrough.embeddedEditorBackground": "Color de fondo de los editores incrustrados en la área de juegos",
"walkThrough.gitNotFound": "Parece que GIT no está instalado en el sistema.",
"walkThrough.unboundCommand": "sin enlazar"
},
+ "vs/workbench/contrib/welcomeWalkthrough/common/walkThroughUtils": {
+ "walkThrough.embeddedEditorBackground": "Color de fondo de los editores incrustrados en la área de juegos"
+ },
"vs/workbench/contrib/workspace/browser/workspace.contribution": {
- "addWorkspaceFolderDetail": "Está agregando archivos a un área de trabajo de confianza que actualmente no son de confianza. ¿Confía en los autores de estos nuevos archivos?",
+ "addWorkspaceFolderDetail": "Está agregando archivos que actualmente no son de confianza a un área de trabajo de confianza. ¿Confía en los autores de estos nuevos archivos?",
"addWorkspaceFolderMessage": "¿Confía en los autores de los archivos de esta carpeta?",
- "cancel": "Cancelar",
"cancelWorkspaceTrustButton": "Cancelar",
"checkboxString": "Confiar en los autores de todos los archivos de la carpeta principal \"{0}\"",
- "configureWorkspaceTrust": "Configurar confianza del área de trabajo",
+ "configureWorkspaceTrustSettings": "Configurar las opciones de confianza del área de trabajo",
"dontTrustFolderOptionDescription": "Examinar la carpeta en modo restringido",
- "dontTrustOption": "No, no confío en los autores",
+ "dontTrustOption": "&&No, no confío en los autores",
"dontTrustWorkspaceOptionDescription": "Navegar por el área de trabajo en modo restringido",
"folderStartupTrustDetails": "{0} proporciona funciones que pueden ejecutar automáticamente los archivos de esta carpeta.",
"folderTrust": "¿Confía en los autores de los archivos de esta carpeta?",
- "grantFolderTrustButton": "Carpeta de confianza y continuar",
- "grantWorkspaceTrustButton": "Área de trabajo de confianza y continuar",
+ "grantFolderTrustButton": "&&Confiar en la carpeta y continuar",
+ "grantWorkspaceTrustButton": "&&Confiar en área de trabajo y continuar",
"immediateTrustRequestLearnMore": "Si no confía en los autores de estos archivos, no le recomendamos que continúe, ya que los archivos pueden ser maliciosos. Consulte [nuestros documentos](https://aka.ms/vscode-workspace-trust) para obtener más información.",
"immediateTrustRequestMessage": "Una característica que intenta usar puede suponer un riesgo para la seguridad si no confía en el origen de los archivos o de las carpetas que tiene abiertos actualmente.",
"manageWorkspaceTrust": "Administrar confianza del área de trabajo",
- "manageWorkspaceTrustButton": "Administrar",
- "newWindow": "Abrir en modo restringido",
+ "manageWorkspaceTrustButton": "&&Administrar",
+ "newWindow": "Abrir en &&modo restringido",
"no": "No",
- "open": "Abrir",
- "openLooseFileLearnMore": "Si no confía en los autores de estos archivos, le recomendamos que los abra en modo restringido, ya que los archivos pueden ser maliciosos. Consulte [nuestros documentos](https://aka.ms/vscode-workspace-trust) para obtener más información.",
- "openLooseFileMesssage": "¿Confía en los autores de estos archivos?",
+ "open": "&&Abrir",
+ "openLooseFileLearnMore": "Si no quieres abrir archivos que no son de confianza, le recomendamos que los abra en modo restringido, ya que los archivos pueden ser maliciosos. Consulte [nuestros documentos](https://aka.ms/vscode-workspace-trust) para obtener más información.",
"openLooseFileWindowDetails": "Está intentando abrir archivos que no son de confianza en una ventana de confianza.",
+ "openLooseFileWindowMesssage": "¿Desea permitir archivos que no son de confianza en esta ventana?",
"openLooseFileWorkspaceCheckbox": "Recordar esta decisión para todas las áreas de trabajo",
"openLooseFileWorkspaceDetails": "Está intentando abrir archivos que no son de confianza en un espacio de trabajo de confianza.",
+ "openLooseFileWorkspaceMesssage": "¿Desea permitir archivos que no son de confianza en esta área de trabajo?",
"restrictedModeBannerAriaLabelFolder": "El modo restringido está destinado a la navegación segura por el código. Confíe en esta carpeta para habilitar todas las funciones. Utilice las teclas de navegación para acceder a las acciones de los banners.",
"restrictedModeBannerAriaLabelWindow": "El modo restringido está destinado a la navegación segura por el código. Confíe en esta ventana para habilitar todas las funciones. Utilice las teclas de navegación para acceder a las acciones del banner.",
"restrictedModeBannerAriaLabelWorkspace": "El modo restringido está pensado para la navegación segura por el código. Confíe en esta área de trabajo para habilitar todas las funciones. Utilice las teclas de navegación para acceder a las acciones del banner.",
@@ -10532,21 +16767,18 @@
"restrictedModeBannerMessageFolder": "El modo restringido está destinado a la navegación segura por el código. Confíe en esta carpeta para habilitar todas las funciones.",
"restrictedModeBannerMessageWindow": "El modo restringido está destinado a la navegación segura por el código. Confíe en esta ventana para habilitar todas las funciones.",
"restrictedModeBannerMessageWorkspace": "El modo restringido está pensado para la navegación segura por el código. Confíe en esta",
- "securityConfigurationTitle": "Seguridad",
"startupTrustRequestLearnMore": "Si no confía en los autores de estos archivos, le recomendamos que continúe en modo restringido, ya que los archivos pueden ser maliciosos. Consulte [nuestros documentos](https://aka.ms/vscode-workspace-trust) para obtener más información.",
"status.WorkspaceTrust": "Confianza en el área de trabajo",
- "status.ariaTrustedFolder": "Esta carpeta es de confianza.",
- "status.ariaTrustedWindow": "Esta ventana es de confianza.",
- "status.ariaTrustedWorkspace": "Este espacio de trabajo es de confianza.",
"status.ariaUntrustedFolder": "Modo restringido: algunas funciones están desactivadas porque esta carpeta no es de confianza.",
"status.ariaUntrustedWindow": "Modo restringido: algunas funciones están desactivadas porque esta ventana no es de confianza.",
"status.ariaUntrustedWorkspace": "Modo restringido: Algunas funciones están desactivadas porque esta área de trabajo no es de confianza.",
- "status.tooltipUntrustedFolder2": "Ejecutándose en modo restringido\r\n\r\nAlgunas [características están deshabilitadas] ({0}) porque esta [carpeta no es de confianza] ({1}).",
- "status.tooltipUntrustedWindow2": "Ejecutándose en modo restringido\r\n\r\nAlgunas [características están deshabilitadas] ({0}) porque esta [ventana no es de confianza] ({1}).",
- "status.tooltipUntrustedWorkspace2": "Ejecutándose en modo restringido\r\n\r\nAlgunas [características están deshabilitadas] ({0}) porque esta [área de trabajo no es de confianza] ({1}).",
+ "status.tooltipUntrustedFolder2": "Ejecutándose en modo restringido\r\n\r\nAlgunas [características están deshabilitadas]({0}) porque esta [carpeta no es de confianza]({1}).",
+ "status.tooltipUntrustedWindow2": "Ejecutándose en modo restringido\r\n\r\nAlgunas [características están deshabilitadas]({0}) porque esta [ventana no es de confianza]({1}).",
+ "status.tooltipUntrustedWorkspace2": "Ejecutándose en modo restringido\r\n\r\nAlgunas [características están deshabilitadas]({0}) porque esta [área de trabajo no es de confianza]({1}).",
"trustFolderOptionDescription": "Carpeta de confianza y habilitar todas las funciones",
- "trustOption": "Sí, confío en los autores",
+ "trustOption": "&&Sí, confío en los autores",
"trustWorkspaceOptionDescription": "Área de trabajo de confianza y habilitación de todas las funciones",
+ "untrusted": "Modo restringido",
"workspace.trust.banner.always": "Mostrar la pancarta cada vez que se abra un área de trabajo que no sea de confianza.",
"workspace.trust.banner.description": "Controla cuándo se muestra la pancarta del modo restringido.",
"workspace.trust.banner.never": "No mostrar la pancarta cuando un área de trabajo que no sea de confianza esté abierta.",
@@ -10564,8 +16796,7 @@
"workspaceStartupTrustDetails": "{0} proporciona funciones que pueden ejecutar automáticamente los archivos en esta área de trabajo.",
"workspaceTrust": "¿Confía en los autores de los archivos de esta área de trabajo?",
"workspaceTrustEditor": "Editor de confianza del área de trabajo",
- "workspacesCategory": "Áreas de trabajo",
- "yes": "Sí"
+ "workspacesCategory": "Áreas de trabajo"
},
"vs/workbench/contrib/workspace/browser/workspaceTrustEditor": {
"addButton": "Agregar carpeta",
@@ -10577,6 +16808,7 @@
"folderPickerIcon": "Icono de la carpeta de selección en el editor de confianza del área de trabajo.",
"hostColumnLabel": "Host",
"invalidTrust": "No puedes fiarte de las carpetas individuales de un repositorio.",
+ "keyboardShortcut": "Método abreviado de teclado: {0}",
"localAuthority": "Local",
"no untrustedSettings": "La configuración del área de trabajo que requiere confianza no se aplica",
"noTrustedFoldersDescriptions": "Aún no ha otorgado confianza a ninguna carpeta o archivo de área de trabajo.",
@@ -10594,7 +16826,7 @@
"trustUri": "Carpeta de confianza",
"trustedDebugging": "La depuración está habilitada",
"trustedDescription": "Todas las características están habilitadas porque se ha concedido confianza al área de trabajo.",
- "trustedExtensions": "Todas las extensiones están habilitadas",
+ "trustedExtensions": "Todas las extensiones habilitadas están activadas",
"trustedFolder": "En una carpeta de confianza",
"trustedFolderAriaLabel": "{0}, de confianza",
"trustedFolderSubtitle": "Confía en los autores de los archivos de la carpeta actual. Todas las funciones están habilitadas:",
@@ -10615,7 +16847,7 @@
"untrustedDebugging": "La depuración está deshabilitada",
"untrustedDescription": "{0} está en un modo restringido, concebido para la exploración de código seguro.",
"untrustedExtensions": "[{0} extensiones]({1}) están desactivadas o tienen una funcionalidad limitada",
- "untrustedFolderReason": "Esta carpeta se vuelve de confianza a través de las entradas en negrita en las carpetas de confianza de abajo.",
+ "untrustedFolderReason": "Esta carpeta es de confianza a través de las entradas en negrita de las carpetas de confianza siguientes.",
"untrustedFolderSubtitle": "No se confía en los autores de los archivos de la carpeta actual. Las siguientes funciones están desactivadas:",
"untrustedHeader": "Está en modo restringido",
"untrustedSettings": "[{0}configuración del área de trabajo]({1}) no se aplica",
@@ -10632,53 +16864,90 @@
"workspaceTrustedCtx": "Si el espacio de trabajo actual tiene la confianza del usuario."
},
"vs/workbench/contrib/workspaces/browser/workspaces.contribution": {
+ "alreadyOpen": "Esta área de trabajo ya está abierta.",
+ "foundWorkspace": "Esta carpeta contiene un archivo de área de trabajo \"{0}\". ¿Desea abrirlo? [Más información]({1}) acerca de los archivos del área de trabajo.",
+ "foundWorkspaces": "Esta carpeta contiene varios archivos de área de trabajo. ¿Desea abrir uno? [Más información]({0}) acerca de los archivos de área de trabajo.",
"openWorkspace": "Abrir área de trabajo",
"selectToOpen": "Seleccione el área de trabajo para abrir",
- "selectWorkspace": "Seleccione el área de trabajo",
- "workspaceFound": "Esta carpeta contiene un archivo de área de trabajo \"{0}\". ¿Desea abrirlo? [Más información] ({1}) acerca de los archivos del área de trabajo.",
- "workspacesFound": "Esta carpeta contiene varios archivos de área de trabajo. ¿Desea abrir uno? [Más información]({0}) acerca de los archivos de área de trabajo."
+ "selectWorkspace": "Seleccione el área de trabajo"
+ },
+ "vs/workbench/services/accounts/common/defaultAccount": {
+ "sign in": "Iniciar sesión"
},
"vs/workbench/services/actions/common/menusExtensionPoint": {
+ "command name": "Id.",
+ "command title": "Título",
+ "commands": "Comandos",
"comment.actions": "El menú contextual de comentarios aportados, representado como botones debajo del editor de comentarios",
+ "comment.commentContext": "Menú contextual de comentarios aportados, representado como un menú contextual en un comentario individual en la vista de inspección del hilo de comentarios.",
"comment.title": "El menú de título de comentario aportado",
"commentThread.actions": "El menú contextual del subproceso de comentario aportado, representado como botones debajo del editor de comentarios",
+ "commentThread.editorActions": "Acciones del editor de comentarios aportadas",
"commentThread.title": "El menú del título del subproceso de comentarios aportado",
- "dup": "El comando `{0}` aparece varias veces en la sección 'commands'.",
+ "commentThread.titleContext": "Menú contextual de inspección del título del hilo de comentarios aportados, representado como un menú contextual en el título de inspección del hilo de comentarios.",
+ "commentsView.threadActions": "Menú contextual del hilo de comentarios aportadas en la vista de comentarios",
+ "dup0": "El comando \"{0}\" ya está registrado",
+ "dup1": "El comando \"{0}\" ya está registrado por {1} ({2})",
"dupe.command": "El elemento de menú hace referencia al mismo comando que el comando predeterminado y el comando alternativo",
+ "editorLineNumberContext": "Menú contextual del número de línea del editor aportado",
"file.newFile": "La selección rápida de 'Archivo nuevo...' que se muestra en la página principal y en el menú Archivo.",
"inlineCompletions.actions": "Acciones que se muestran al mantener el puntero sobre una finalización insertada",
"interactive.cell.title": "Menú de título de la celda interactiva aportada",
"interactive.toolbar": "Menú de la barra de herramientas interactiva aportada",
+ "issue.reporter": "Menú del informador de incidencias aportadas",
+ "keyboard shortcuts": "Métodos abreviados de teclado",
+ "menuContexts": "Contextos de menú",
+ "menus.artifactContext": "El menú contextual del artefacto de Control de código fuente",
+ "menus.artifactGroupContext": "El menú contextual del grupo de artefactos de Control de código fuente",
"menus.changeTitle": "El menú de cambio en línea del control de código fuente",
+ "menus.chatMultiDiffContext": "El menú contextual de diferencias múltiples de chat.",
+ "menus.chatSessions": "El menú Sesiones de chat.",
+ "menus.chatSessionsNewSession": "Menú para nuevas sesiones de chat.",
+ "menus.chatTextEditor": "Submenú Chat en el menú contextual del editor de texto.",
"menus.commandPalette": "La paleta de comandos",
"menus.debugCallstackContext": "El menú contextual de la vista de la pila de llamadas de depuración",
+ "menus.debugCreateConfiguation": "El menú de configuración de creación de depuración",
"menus.debugToolBar": "Menú de la barra de herramientas de depuración",
"menus.debugVariablesContext": "El menú contextual de la vista de variables de depuración",
+ "menus.debugWatchContext": "El menú contextual de la vista de depuración",
+ "menus.diffEditorGutterToolBarMenus": "Barra de herramientas de medianil en el editor de diferencias",
"menus.editorContext": "El menú conextual del editor",
"menus.editorContextCopyAs": "Submenú 'Copiar como' en el menú contextual del editor",
"menus.editorContextShare": "Submenú 'Compartir ' en el menú contextual del editor",
"menus.editorTabContext": "Menú contextual de pestañas del editor",
"menus.editorTitle": "El menú de título del editor",
+ "menus.editorTitleContextShare": "Submenú \"Compartir\" dentro del menú contextual del título del editor",
"menus.editorTitleRun": "Ejecutar submenú dentro del menú de títulos del editor",
"menus.explorerContext": "El menú contextual del explorador de archivos",
+ "menus.explorerContextShare": "Submenú \"Compartir\" en el menú contextual del Explorador de archivos",
"menus.extensionContext": "Menú contextual de la extensión",
+ "menus.historyItemContext": "El menú contextual del elemento de historial de control de código fuente",
+ "menus.historyItemRefContext": "El menú contextual de referencia del elemento de historial de control de código fuente",
"menus.home": "Menú contextual del indicador de inicio (solo web)",
+ "menus.input": "Menú del cuadro de entrada control de código fuente",
+ "menus.mergeEditorResult": "Barra de herramientas de resultados del editor de combinaciones",
+ "menus.multiDiffEditorResource": "Barra de herramientas de recursos en el editor de diferencias múltiples",
+ "menus.notebookVariablesContext": "Menú contextual de la vista de variables del cuaderno",
"menus.opy": "Submenú 'Copiar como' en el menú de edición de nivel superior",
"menus.resourceFolderContext": "El menú contextual de la carpeta de recursos del control de código fuente",
"menus.resourceGroupContext": "El menú contextual del grupo de recursos de Control de código fuente",
"menus.resourceStateContext": "El menú contextual de estado de recursos de Control de código fuente",
+ "menus.scmHistoryTitle": "Menú de título historial de control de código fuente",
"menus.scmSourceControl": "El menú de control de código fuente",
+ "menus.scmSourceControlInline": "El menú del repositorio de control de código fuente",
+ "menus.scmSourceControlTitle": "El menú del título de Repositorios de control de código fuente",
"menus.scmTitle": "El menú del título Control de código fuente",
"menus.share": "Submenú Compartir que se muestra en el menú Archivo de nivel superior.",
"menus.statusBarRemoteIndicator": "Menú de indicador remoto en la barra de estado",
+ "menus.terminalContext": "El menú contextual del terminal",
+ "menus.terminalTabContext": "El menú contextual de las pestañas del terminal",
"menus.touchBar": "Barra táctil (sólo macOS)",
- "merge.toolbar": "Botón destacado en el editor de combinación",
+ "merge.toolbar": "El botón destacado de un editor superpone su contenido",
"missing.altCommand": "El elemento de menú hace referencia a un comando alternativo `{0}` que no está definido en la sección 'commands'.",
"missing.command": "El elemento de menú hace referencia a un comando `{0}` que no está definido en la sección 'commands'.",
"missing.submenu": "El elemento de menú hace referencia a un submenú `{0}` que no está definido en la sección `submenus`.",
"nonempty": "se esperaba un valor no vacío.",
"notebook.cell.execute": "El menú de ejecución de la celda del cuaderno aportado",
- "notebook.cell.executePrimary": "Botón de ejecución de celda del bloc de notas principal aportado",
"notebook.cell.title": "El menú de título de la celda del cuaderno aportado",
"notebook.kernelSource": "Menú de orígenes del kernel del cuaderno aportado",
"notebook.toolbar": "El menú de la barra de herramientas del cuaderno aportado",
@@ -10691,13 +16960,19 @@
"requirearray": "los elementos de submenú deben ser una matriz",
"requirestring": "la propiedad “{0}” es obligatoria y debe ser de tipo “string”",
"requirestrings": "Las propiedades `{0}` y `{1}` son obligatorias y deben ser de tipo `string`",
+ "searchPanel.aiResultsCommands": "Comandos que contribuirán al menú representado como botones junto al título de búsqueda de IA",
"submenuId.duplicate.id": "El submenú `{0}` ya estaba registrado previamente.",
"submenuId.invalid.id": "`{0}` no es un identificador de submenú válido",
"submenuId.invalid.label": "`{0}` no es una etiqueta de submenú válida",
"submenuItem.duplicate": "El submenú `{0}` ya se ha aportado al menú `{1}`.",
"testing.item.context": "Menú del elemento de prueba aportado",
"testing.item.gutter.title": "Menú de decoración de un medianil para un elemento de prueba",
+ "testing.item.result.title": "Menú de un elemento de la Vista de resultados de pruebas o de la Vista de inspección.",
+ "testing.message.content.title": "Menú contextual para el mensaje en el árbol de resultados",
+ "testing.message.context.title": "Un botón prominente superpuesto al contenido del editor donde se muestra el mensaje",
+ "testing.profiles.context.title": "El menú para configurar los perfiles de pruebas.",
"unsupported.submenureference": "El elemento de menú hace referencia a un submenú para un menú que no es compatible con los submenús.",
+ "view.containerTitle": "Menú de título del contenedor de vistas aportadas",
"view.itemContext": "El menú contextual del elemento de vista contribuida",
"view.timelineContext": "El menú contextual del elemento de vista de línea de tiempo",
"view.timelineTitle": "El menú de título de la vista de línea de tiempo",
@@ -10705,9 +16980,10 @@
"view.tunnelOriginInline": "Menú insertado de origen del elemento de la vista Puertos",
"view.tunnelPortInline": "Menú insertado de puerto del elemento de la vista Puertos",
"view.viewTitle": "El menú de título de vista contribuida",
+ "viewContainerTitle.when": "La contribución del menú {0} debe comprobar {1} en su cláusula {2}.",
"vscode.extension.contributes.commandType.category": "(Opcional) La cadena de categoría por la que se agrupa el comando en la interfaz de usuario",
"vscode.extension.contributes.commandType.command": "Identificador del comando que se va a ejecutar",
- "vscode.extension.contributes.commandType.icon": "(Opcional) Icono que se utiliza para representar el comando en la interfaz de usuario. Una ruta de archivo, un objeto con rutas de archivo para temas oscuros y claros o referencias a un icono de tema, como `\\$(zap)`",
+ "vscode.extension.contributes.commandType.icon": "(Opcional) Icono que se utiliza para representar el comando en la interfaz de usuario. Una ruta de archivo, un objeto con rutas de archivo para temas oscuros y claros o referencias a un icono de tema, como \"\\$(zap)\"",
"vscode.extension.contributes.commandType.icon.dark": "Ruta de icono cuando se usa un tema oscuro",
"vscode.extension.contributes.commandType.icon.light": "Ruta del icono cuando se usa un tema ligero",
"vscode.extension.contributes.commandType.precondition": "(Opcional) Condición que se debe cumplir para habilitar el comando en la interfaz de usuario (menú y enlaces de teclado). No impide ejecutar el comando por otros medios, como `executeCommand`-api.",
@@ -10720,7 +16996,7 @@
"vscode.extension.contributes.menuItem.submenu": "Identificador del submenú que se mostrará en este elemento.",
"vscode.extension.contributes.menuItem.when": "Condición que se debe cumplir para mostrar este elemento",
"vscode.extension.contributes.menus": "Contribuye con elementos de menú al editor",
- "vscode.extension.contributes.submenu.icon": "(Opcional) Icono que se utiliza para representar el submenú en la interfaz de usuario. Una ruta de archivo, un objeto con rutas de archivo para temas oscuros y claros o referencias a un icono de tema, como `\\$(zap)`",
+ "vscode.extension.contributes.submenu.icon": "(Opcional) Icono que se utiliza para representar el submenú en la interfaz de usuario. Una ruta de archivo, un objeto con rutas de archivo para temas oscuros y claros o referencias a un icono de tema, como \"\\$(zap)\"",
"vscode.extension.contributes.submenu.icon.dark": "Ruta de icono cuando se usa un tema oscuro",
"vscode.extension.contributes.submenu.icon.light": "Ruta del icono cuando se usa un tema ligero",
"vscode.extension.contributes.submenu.id": "Identificador del menú que se va a mostrar como submenú.",
@@ -10728,38 +17004,78 @@
"vscode.extension.contributes.submenus": "Aporta elementos del submenú al editor.",
"webview.context": "El menú contextual de vista web"
},
- "vs/workbench/services/authentication/browser/authenticationService": {
+ "vs/workbench/services/activity/common/activity": {
+ "activityErrorBadge.background": "Color de fondo del distintivo de actividad de error",
+ "activityErrorBadge.foreground": "Color de primer plano del distintivo de actividad de error",
+ "activityWarningBadge.background": "Color de fondo del distintivo de actividad de advertencia",
+ "activityWarningBadge.foreground": "Color de primer plano del distintivo de actividad de advertencia"
+ },
+ "vs/workbench/services/assignment/common/assignmentService": {
+ "workbench.enableExperiments": "Captura experimentos que se van a ejecutar desde un servicio en línea de Microsoft."
+ },
+ "vs/workbench/services/authentication/browser/authenticationExtensionsService": {
"accessRequest": "Conceder acceso a {0} para {1}... (1)",
- "allow": "Permitir",
- "authentication.Placeholder": "Aún no se ha solicitado ninguna cuenta...",
- "authentication.id": "Identificador del proveedor de autenticación.",
- "authentication.idConflict": "El identificador de autenticación \"{0}\" ya se ha registrado.",
- "authentication.label": "Nombre en lenguaje natural del proveedor de autenticación.",
- "authentication.missingId": "Una contribución de autenticación debe especificar un identificador.",
- "authentication.missingLabel": "Una contribución de autenticación debe especificar una etiqueta.",
- "authenticationExtensionPoint": "Contribuye a la autenticación",
- "cancel": "Cancelar",
+ "allow": "&&Permitir",
"confirmAuthenticationAccess": "La extensión \"{0}\" está intentando acceder a la información de autenticación de la cuenta de {1} \"{2}\".",
- "deny": "Denegar",
+ "deny": "&&Denegar",
"getSessionPlateholder": "Seleccione una cuenta para que la use \"{0}\" o Esc para cancelar",
- "loading": "Cargando...",
"selectAccount": "La extensión \"{0}\" quiere acceder a una cuenta de {1}",
"sign in": "Inicio de sesión solicitado",
"signInRequest": "Iniciar sesión con {0} para usar {1} (1)",
"useOtherAccount": "Iniciar sesión en otra cuenta"
},
- "vs/workbench/services/bulkEdit/browser/bulkEditService": {
- "summary.0": "No se realizaron ediciones",
- "summary.nm": "{0} ediciones de texto en {1} archivos",
- "summary.n0": "{0} ediciones de texto en un archivo",
- "workspaceEdit": "Edición del área de trabajo",
- "nothing": "No se realizaron ediciones"
+ "vs/workbench/services/authentication/browser/authenticationMcpService": {
+ "accessRequest": "Conceder acceso a {0} para {1}... (1)",
+ "allow": "&&Permitir",
+ "confirmAuthenticationAccess": "El servidor MCP \"{0}\" quiere acceder a la cuenta {1} \"{2}\".",
+ "deny": "&&Denegar",
+ "getSessionPlateholder": "Seleccione una cuenta para que la use \"{0}\" o Esc para cancelar",
+ "selectAccount": "El servidor MCP \"{0}\" quiere acceder a una cuenta {1}",
+ "sign in": "Inicio de sesión solicitado",
+ "signInRequest": "Iniciar sesión con {0} para usar {1} (1)",
+ "useOtherAccount": "Iniciar sesión en otra cuenta"
+ },
+ "vs/workbench/services/authentication/browser/authenticationService": {
+ "authentication.authorizationServerGlobs": "Una lista de globs que coinciden con los servidores de autorización que admite este proveedor.",
+ "authentication.authorizationServerGlobsDescription": "Una lista de globs que coinciden con los servidores de autorización que admite este proveedor.",
+ "authentication.id": "Identificador del proveedor de autenticación.",
+ "authentication.idConflict": "El identificador de autenticación \"{0}\" ya se ha registrado.",
+ "authentication.label": "Nombre en lenguaje natural del proveedor de autenticación.",
+ "authentication.missingId": "Una contribución de autenticación debe especificar un identificador.",
+ "authentication.missingLabel": "Una contribución de autenticación debe especificar una etiqueta.",
+ "authenticationExtensionPoint": "Contribuye a la autenticación"
+ },
+ "vs/workbench/services/auxiliaryWindow/browser/auxiliaryWindowService": {
+ "lifecycleVeto": "Es posible que los cambios realizados no se guarden. Seleccione \"Cancelar\" e inténtelo de nuevo.",
+ "retry": "&&Reintentar",
+ "unableToOpenWindow": "El explorador ha bloqueado la apertura de una nueva ventana. Presione \"Reintentar\" para volver a intentarlo.",
+ "unableToOpenWindowDetail": "Permita los elementos emergentes de este sitio web en su [configuración del explorador]({0}).",
+ "unableToOpenWindowError": "No se puede abrir una nueva ventana."
+ },
+ "vs/workbench/services/auxiliaryWindow/electron-browser/auxiliaryWindowService": {
+ "backupErrorDetails": "Pruebe a guardar o revertir primero los editores con cambios sin guardar e inténtelo de nuevo."
+ },
+ "vs/workbench/services/chat/common/chatEntitlementService": {
+ "learnMore": "Más información",
+ "ok": "Aceptar",
+ "retry": "Reintentar",
+ "signUpInvalidResponseError": "Contenido de respuesta no válido.",
+ "signUpNoResponseContentsError": "La respuesta no tiene contenido.",
+ "signUpNoResponseError": "No se recibió ninguna respuesta.",
+ "signUpUnexpectedStatusError": "Código de estado inesperado {0}.",
+ "unknownSignUpError": "Error al registrarse en el plan GitHub Copilot Free. ¿Quiere volver a intentarlo?",
+ "unprocessableSignUpError": "Error al registrarse en el plan GitHub Copilot Free."
+ },
+ "vs/workbench/services/clipboard/browser/clipboardService": {
+ "clipboardError": "No se puede leer desde el portapapeles del explorador. Asegúrese de que ha concedido acceso a este sitio web para leer desde el portapapeles.",
+ "learnMore": "Más información",
+ "retry": "Reintentar"
},
"vs/workbench/services/configuration/browser/configurationService": {
"configurationDefaults.description": "Valores predeterminados de contribución para las configuraciones",
- "experimental": "Experimentos"
+ "setting description": "Configure las opciones que se aplicarán a todos los perfiles."
},
- "vs/workbench/services/configuration/common/configurationEditingService": {
+ "vs/workbench/services/configuration/common/configurationEditing": {
"errorConfigurationFileDirty": "No se puede escribir en la configuración de usuario porque el archivo tiene cambios sin guardar. Guarde primero el archivo de configuración de usuario e inténtelo de nuevo.",
"errorConfigurationFileDirtyFolder": "No se puede escribir en la configuración de carpeta porque el archivo tiene cambios sin guardar. Guarde primero el archivo de configuración de la carpeta \"{0}\" y vuelva a intentarlo.",
"errorConfigurationFileDirtyWorkspace": "No se puede escribir en la configuración de área de trabajo porque el archivo tiene cambios sin guardar. Guarde primero el archivo de configuración de área de trabajo e inténtelo de nuevo.",
@@ -10772,6 +17088,7 @@
"errorInvalidFolderConfiguration": "No se puede escribir en Configuración de carpeta porque {0} no admite el ámbito del recurso de carpeta.",
"errorInvalidFolderTarget": "No se puede escribir en Configuración de carpeta porque no se ha proporcionado ningún recurso.",
"errorInvalidLaunchConfiguration": "No se puede escribir en el archivo de configuración de inicio. Ábralo para corregir los posibles errores o advertencias que tenga y vuelva a intentarlo.",
+ "errorInvalidMCPConfiguration": "No se puede escribir en el archivo de configuración de MCP. Por favor, ábralo para corregir sus errores/advertencias e inténtelo de nuevo.",
"errorInvalidRemoteConfiguration": "No se puede escribir en la configuración del usuario remoto. Abra la configuración del usuario remoto para corregir errores/advertencias en él e inténtelo de nuevo.",
"errorInvalidResourceLanguageConfiguration": "No se puede escribir en la configuración de idioma porque {0} no es una configuración de idioma de recursos.",
"errorInvalidTaskConfiguration": "No se puede escribir en el archivo de configuración de tareas. Por favor, ábralo para corregir sus errores/advertencias e inténtelo de nuevo.",
@@ -10781,6 +17098,8 @@
"errorInvalidWorkspaceTarget": "No se puede escribir a la configuración del área de trabajo porque {0} no soporta a un área de trabajo con multi carpetas.",
"errorLaunchConfigurationFileDirty": "No se puede escribir en el archivo de configuración de inicio porque el archivo tiene cambios sin guardar. Guárdelo primero e inténtelo de nuevo.",
"errorLaunchConfigurationFileModifiedSince": "No se puede escribir en el archivo de configuración de inicio porque el contenido del archivo es más reciente.",
+ "errorMCPConfigurationFileDirty": "No se puede escribir en el archivo de configuración de MCP porque el archivo tiene cambios sin guardar. Guárdelo primero e inténtelo de nuevo.",
+ "errorMCPConfigurationFileModifiedSince": "No se puede escribir en el archivo de configuración MCP porque el contenido del archivo es más reciente.",
"errorNoWorkspaceOpened": "No se puede escribir en {0} porque no hay ninguna área de trabajo abierta. Abra un área de trabajo y vuelva a intentarlo.",
"errorPolicyConfiguration": "No se puede escribir {0} porque está configurado en la directiva del sistema.",
"errorRemoteConfigurationFileDirty": "No se puede escribir en la configuración de usuario remoto porque el archivo tiene cambios sin guardar. Guarde primero el archivo de configuración de usuario remoto e inténtelo de nuevo.",
@@ -10790,8 +17109,10 @@
"errorUnknown": "No se puede escribir en {0} debido a un error interno.",
"errorUnknownKey": "No se puede escribir en {0} porque {1} no es una configuración registrada.",
"folderTarget": "Configuración de Carpeta",
+ "fsError": "Error al escribir en {0}. {1}",
"open": "Abrir configuración",
"openLaunchConfiguration": "Abrir configuración de inicio",
+ "openMcpConfiguration": "Abrir configuración de MCP",
"openTasksConfiguration": "Abrir configuración de tareas",
"remoteUserTarget": "Configuración de usuario remoto",
"saveAndRetry": "Guardar y reintentar",
@@ -10799,7 +17120,6 @@
"workspaceTarget": "Configuración de área de trabajo"
},
"vs/workbench/services/configuration/common/jsonEditingService": {
- "errorFileDirty": "No se puede escribir en el archivo porque el archivo tiene cambios sin guardar. Guarde el archivo e inténtelo de nuevo.",
"errorInvalidFile": "No se puede escribir en el archivo. Abra el archivo para corregir los errores o advertencias y vuelva a intentarlo."
},
"vs/workbench/services/configurationResolver/browser/baseConfigurationResolverService": {
@@ -10832,6 +17152,7 @@
},
"vs/workbench/services/configurationResolver/common/variableResolver": {
"canNotFindFolder": "No se puede resolver la variable \"{0}\". No existe la carpeta \"{1}\".",
+ "canNotResolveColumnNumber": "No se puede resolver la variable {0}. Asegúrese de tener una columna seleccionada en el editor activo.",
"canNotResolveFile": "No se puede resolver la variable \"{0}\". Abra un editor.",
"canNotResolveFolderForFile": "La variable {0} no encuentra la carpeta de área de trabajo de \"{1}\".",
"canNotResolveLineNumber": "No se puede resolver la variable \"{0}\". Asegúrese de tener una línea seleccionada en el editor activo.",
@@ -10852,7 +17173,6 @@
},
"vs/workbench/services/dialogs/browser/abstractFileDialogService": {
"allFiles": "Todos los archivos",
- "cancel": "Cancelar",
"dontSave": "&&No guardar",
"filterName.workspace": "Área de trabajo",
"noExt": "Sin extensión",
@@ -10868,21 +17188,35 @@
"saveChangesMessages": "¿Desea guardar los cambios en los siguientes {0} archivos?",
"saveFileAs.title": "Guardar como"
},
+ "vs/workbench/services/dialogs/browser/fileDialogService": {
+ "learnMore": "&&Más información",
+ "openFiles": "Abrir &&archivos...",
+ "openRemote": "&&Abrir archivo remoto...",
+ "pickFolderAndOpen": "No se pueden abrir las carpetas. Intente agregar una carpeta al área de trabajo en su lugar.",
+ "pickWorkspaceAndOpen": "No se pueden abrir las áreas de trabajo. Intente agregar una carpeta al área de trabajo en su lugar.",
+ "unsupportedBrowserDetail": "El explorador no admite la apertura de carpetas locales.\r\nPuede abrir archivos únicos o un repositorio remoto.",
+ "unsupportedBrowserMessage": "No se admite la apertura de carpetas locales"
+ },
"vs/workbench/services/dialogs/browser/simpleFileDialog": {
"openLocalFile": "Abrir archivo local...",
"openLocalFileFolder": "Abrir Local...",
"openLocalFolder": "Abrir carpeta local...",
- "remoteFileDialog.badPath": "La ruta no existe.",
+ "remoteFileDialog.badPath": "La ruta de acceso no existe. Use ~ para ir al directorio principal.",
"remoteFileDialog.cancel": "Cancelar",
+ "remoteFileDialog.hideDotFiles": "Ocultar archivos de puntos",
"remoteFileDialog.invalidPath": "Escriba una ruta de acceso válida.",
"remoteFileDialog.local": "Ver Local",
"remoteFileDialog.notConnectedToRemote": "El proveedor del sistema de archivos para {0} no está disponible.",
+ "remoteFileDialog.placeholder": "Ruta de acceso a la carpeta",
+ "remoteFileDialog.showDotFiles": "Mostrar archivos de puntos",
"remoteFileDialog.validateBadFilename": "Escriba un nombre de archivo válido.",
+ "remoteFileDialog.validateCreateDirectory": "La carpeta {0} no existe. ¿Desea crearla?",
"remoteFileDialog.validateExisting": "{0} ya existe. ¿Está seguro de que desea sobrescribirlo?",
"remoteFileDialog.validateFileOnly": "Seleccione un archivo.",
"remoteFileDialog.validateFolder": "La carpeta ya existe. Utilice un nuevo nombre de archivo.",
"remoteFileDialog.validateFolderOnly": "Seleccione una carpeta.",
"remoteFileDialog.validateNonexistentDir": "Escriba una ruta de acceso que exista.",
+ "remoteFileDialog.validateReadonlyFolder": "Esta carpeta no se puede usar como destino para guardar. Elija otra carpeta",
"remoteFileDialog.windowsDriveLetter": "Comience la ruta de acceso con una letra de unidad.",
"saveLocalFile": "Guardar archivo local..."
},
@@ -10898,27 +17232,28 @@
"promptOpenWith.updateDefaultPlaceHolder": "Seleccionar el nuevo editor predeterminado para '{0}'"
},
"vs/workbench/services/editor/common/editorResolverService": {
- "editor.editorAssociations": "Configurar patrones globales para editores (por ejemplo, `\"*.hex\": \"hexEditor.hexEdit\"`). Estos tienen prioridad sobre el comportamiento predeterminado."
+ "editor.editorAssociations": "Configure [patrones globales](https://aka.ms/vscode-glob-patterns) en editores (por ejemplo, '\"*.hex\": \"hexEditor.hexedit\"'). Tienen prioridad sobre el comportamiento predeterminado."
},
"vs/workbench/services/extensionManagement/browser/extensionBisect": {
+ "I cannot reproduce": "No puedo reproducir",
+ "This is Bad": "Puedo reproducir",
"bisect": "La extensión Bisect está activa y ha deshabilitado {0} extensiones. Compruebe si aún puede reproducir el problema y, a continuación, seleccione una de estas opciones.",
"bisect.plural": "La extensión Bisect está activa y ha deshabilitado {0} extensiones. Compruebe si aún puede reproducir el problema y, a continuación, seleccione una de estas opciones.",
"bisect.singular": "La extensión Bisect está activa y ha deshabilitado 1 extensión. Compruebe si aún puede reproducir el problema y, a continuación, seleccione una de estas opciones.",
+ "continue": "Continuar",
"detail.start": "La extensión Bisect usará la búsqueda binaria para encontrar una extensión que causa un problema. Durante el proceso, la ventana se recarga repetidamente (~{0} veces) y cada vez deberá confirmar si sigue encontrando problemas.",
- "done": "Continuar",
"done.detail": "La extensión Bisect se ha completado y ha identificado {0} como la extensión que causa el problema.",
"done.detail2": "La bisección de extensiones se ha completado, pero no se ha identificado ninguna extensión. Puede que sea un problema con {0}.",
"done.disbale": "Mantener la extensión deshabilitada",
"done.msg": "Extensión Bisect",
- "help": "Ayuda",
"msg.next": "Extensión Bisect",
"msg.start": "Extensión Bisect",
- "msg2": "Iniciar extensión Bisect",
- "next.bad": "Esto no está bien",
- "next.cancel": "Cancelar",
- "next.good": "Ahora bien",
- "next.stop": "Detener Bisect",
- "report": "Informar del problema y continuar",
+ "msg2": "&&Iniciar extensión Bisect",
+ "next.bad": "Puedo &&reproducir",
+ "next.cancel": "&&Cancelar Bisect",
+ "next.good": "No pue&&do reproducir",
+ "next.stop": "&&Detener Bisect",
+ "report": "&&Informar del problema y continuar",
"title.isBad": "Continuar con la extensión Bisect",
"title.start": "Iniciar extensión Bisect",
"title.stop": "Detener la extensión Bisect"
@@ -10926,47 +17261,93 @@
"vs/workbench/services/extensionManagement/browser/extensionEnablementService": {
"Reload": "Recargar y habilitar las extensiones",
"cannot change disablement environment": "No se puede cambiar la activación de la extensión {0} porque está deshabilitada en el entorno",
+ "cannot change disallowed extension enablement": "No se puede cambiar la habilitación de {0} extensión porque no está permitida",
"cannot change enablement dependency": "No se puede habilitar la extensión '{0}' porque depende de la extensión '{1}' que no se puede habilitar",
"cannot change enablement environment": "No se puede cambiar la activación de la extensión {0} porque está habilitada en el entorno",
"cannot change enablement extension kind": "No se puede cambiar la habilitación de la extensión {0} debido a su tipo de extensión",
+ "cannot change enablement malicious": "No se puede cambiar la habilitación de la extensión {0} porque es maliciosa",
"cannot change enablement virtual workspace": "No se puede cambiar la habilitación de la extensión {0} porque no admite espacios de trabajo virtuales",
+ "cannot change invalid extension enablement": "No se puede cambiar la habilitación de la extensión {0} porque no es válida",
"cannot disable auth extension": "No se puede cambiar la habilitación de la extensión {0} porque la sincronización de la configuración depende de ella.",
"cannot disable auth extension in workspace": "No se puede cambiar la habilitación de la extensión {0} en el área de trabajo porque aporta proveedores de autenticación.",
"cannot disable language pack extension": "No se puede cambiar la habilitación de la extensión {0} porque aporta paquetes de idioma.",
"extensionsDisabled": "Todas las extensiones instaladas están deshabilitadas temporalmente.",
"noWorkspace": "No hay ningún área de trabajo."
},
+ "vs/workbench/services/extensionManagement/browser/webExtensionsScannerService": {
+ "not a web extension": "No se puede agregar \"{0}\" porque esta no es una extensión web.",
+ "openInstalledWebExtensionsResource": "Abrir el recurso de extensiones web instaladas"
+ },
+ "vs/workbench/services/extensionManagement/common/extensionFeaturesManagemetService": {
+ "accessExtensionFeature": "Acceso a la característica '{0}'.",
+ "accessExtensionFeatureMessage": "La extensión '{0}' desea tener acceso a la característica '{1}'.",
+ "allow": "Permitir",
+ "disallow": "No permitir"
+ },
+ "vs/workbench/services/extensionManagement/common/extensionManagementServerService": {
+ "browser": "Explorador",
+ "remote": "Remoto"
+ },
"vs/workbench/services/extensionManagement/common/extensionManagementService": {
"Manifest is not found": "Error al instalar la extensión {0}: no se encuentra el manifiesto.",
"VS Code for Web": "{0} para la Web",
- "cancel": "Cancelar",
+ "allUnverifed": "Todos los publicadores están [**no** comprobados]({0}).",
"cannot be installed": "No se puede instalar la extensión \"{0}\" porque no está disponible en este programa de instalación.",
+ "cannot be installed in server": "No se puede instalar la extensión '{0}' porque no está disponible en el programa de instalación de '{1}'.",
+ "checkAllTrustedPublishersTitle": "¿Confía en el editor \"{0}\" y {1} otros?",
+ "checkTrustedPublisherTitle": "¿Confía en el editor \"{0}\"?",
+ "checkTwoTrustedPublishersTitle": "¿Confía en los publicadores \"{0}\" y \"{1}\"?",
+ "extension published by message": "La extensión {0} está publicada por {1}.",
"extensionInstallWorkspaceTrustButton": "Área de trabajo e instalación de confianza",
"extensionInstallWorkspaceTrustContinueButton": "Instalar",
"extensionInstallWorkspaceTrustManageButton": "Más información",
"extensionInstallWorkspaceTrustMessage": "Habilitar esta extensión requiere un área de trabajo de confianza.",
- "install": "Instalar",
- "install and do no sync": "Instalar (no sincronizar)",
- "install anyways": "Instalar de todos modos",
+ "firstTimeInstallingMessage": "Esta es la primera vez que instala extensiones de estos publicadores.",
+ "install": "&&Instalar",
+ "install and do no sync": "Instalar (no &&sincronizar)",
+ "install anyways": "&&Instalar de todos modos",
"install extension": "Instalar extensión",
"install extensions": "Instalar extensiones",
"install multiple extensions": "¿Quiere instalar y sincronizar las extensiones en los dispositivos?",
"install single extension": "¿Quiere instalar y sincronizar la extensión \"{0}\" en los dispositivos?",
+ "learnMore": "&&Más información",
"limited support": "'{0}' tiene funcionalidad limitada en {1}.",
+ "main.notFound": "No se puede activar, ya que no se encuentra el {0} de mayúsculas y minúsculas",
+ "manifest is not found": "No se encuentra el manifiesto.",
+ "message1": "La extensión {0} está publicada por {1}. Esta es la primera extensión que está instalando desde este publicador.",
+ "message2": "{0} no tiene control sobre el comportamiento de las extensiones de terceros, incluida la forma en que administran sus datos personales. Continuar solo si confía en el publicador.",
+ "message3": "Al instalar esta extensión, también se instalarán [extensions]({0}) publicadas por {1} y {2}.",
+ "message4": "{0} no tiene control sobre el comportamiento de las extensiones de terceros, incluida la forma en que administran sus datos personales. Continuar solo si confía en los publicadores.",
+ "multiInstallMessage": "Esta es la primera vez que instala extensiones de editores {0} y {1}.",
"multipleDependentsError": "No se puede desinstalar la extensión \"{0}\". Las extensiones \"{1}\" y \"{2}\", entre otras, dependen de esta.",
"non web extensions": "'{0}' contiene extensiones que no se admiten en {1}.",
"non web extensions detail": "Contiene extensiones que no se admiten.",
- "showExtensions": "Mostrar extensiones",
+ "showExtensions": "&&Mostrar extensiones",
"singleDependentError": "No se puede desinstalar la extensión '{0}'. La extensión '{1}' depende de esta.",
- "twoDependentsError": "No se puede desinstalar la extensión '{0}'. Las extensiones '{1}' y '{2}' dependen de esta."
+ "singleUntrustedPublisher": "Al instalar esta extensión, también se instalarán [extensions]({0}) publicadas por {1}.",
+ "trust and install": "Editor de confianza & &&instalar",
+ "trust publishers and install": "Confiar en publicadores e &&instalar",
+ "twoDependentsError": "No se puede desinstalar la extensión '{0}'. Las extensiones '{1}' y '{2}' dependen de esta.",
+ "unverifiedPublisherWithName": "{0} se ha comprobado [**no**]({1}).",
+ "unverifiedPublishers": "{0} y {1} se han comprobado [**no**]({2}).",
+ "verifiedPublisherWithName": "{0} ha comprobado la propiedad de {1}."
+ },
+ "vs/workbench/services/extensionManagement/common/extensionsIcons": {
+ "extensionDefault": "Icono usado para la extensión predeterminada de la vista y el editor de extensiones.",
+ "extensionIconVerifiedForeground": "Color del icono para el publicador comprobado de la extensión.",
+ "verifiedPublisher": "Icono usado para el publicador de extensiones comprobado en la vista y el editor de extensiones."
+ },
+ "vs/workbench/services/extensionManagement/electron-browser/extensionGalleryManifestService": {
+ "extensionGalleryManifestService.accountChange": "{0} ahora está configurado en un Marketplace diferente. Reinicie para aplicar los cambios.",
+ "restart": "&&Reiniciar"
},
- "vs/workbench/services/extensionManagement/electron-sandbox/extensionManagementServerService": {
- "local": "LOCAL",
+ "vs/workbench/services/extensionManagement/electron-browser/extensionManagementServerService": {
+ "local": "Local",
"remote": "Remoto"
},
- "vs/workbench/services/extensionManagement/electron-sandbox/remoteExtensionManagementService": {
+ "vs/workbench/services/extensionManagement/electron-browser/remoteExtensionManagementService": {
+ "incompatibleAPI": "No se puede instalar la extensión '{0}'. {1}",
"notFoundCompatibleDependency": "No se puede instalar la extensión \"{0}\" porque no es compatible con la versión actual de {1} (versión {2}).",
- "notFoundCompatiblePrereleaseDependency": "No se puede instalar la versión preliminar de la extensión \"{0}\" porque no es compatible con la versión actual de {1} (versión {2}).",
"notFoundReleaseExtension": "No se puede instalar la versión de lanzamiento de la extensión '{0}' porque no tiene ninguna versión de lanzamiento."
},
"vs/workbench/services/extensionRecommendations/common/workspaceExtensionsConfig": {
@@ -10976,33 +17357,36 @@
"workspace folder": "Carpeta del área de trabajo"
},
"vs/workbench/services/extensions/browser/extensionUrlHandler": {
- "Installing": "Instalando la extensión \"{0}\"...",
- "confirmUrl": "¿Permitir que una extensión abra este URI?",
- "enableAndHandle": "La extensión '{0}' está deshabilitada. ¿Desea habilitar la extensión y abrir la dirección URL?",
- "enableAndReload": "&&Habilitar y abrir",
+ "confirmUrl": "¿Permitir que una extensión \"{0}\" abra este URI?",
"extensions": "Extensiones",
- "install and open": "&&Instalar y abrir",
- "installAndHandle": "La extensión '{0}' no está instalada. ¿Desea instalar la extensión y abrir esta dirección URL?",
+ "installDetail": "Esta extensión quiere abrir un identificador URI:",
"manage": "Administrar URI de extensión autorizados...",
"no": "No hay ningún URI de extensión autorizado actualmente.",
"open": "&&Abrir",
+ "openUri": "Abrir URI",
"reloadAndHandle": "La extensión \"{0}\" no se ha cargado. ¿Desea volver a cargar la ventana para cargar la extensión y abrir la URL?",
"reloadAndOpen": "&&Volver a cargar ventana y abrir",
- "rememberConfirmUrl": "No volver a preguntarme por esta extensión."
- },
- "vs/workbench/services/extensions/browser/webWorkerExtensionHost": {
- "name": "Host de extensiones de trabajo"
+ "rememberConfirmUrl": "No volver a preguntarme sobre esta extensión"
},
"vs/workbench/services/extensions/common/abstractExtensionService": {
+ "activation": "Eventos de activación",
+ "disconnectRemote": "Desconectar agente remoto",
"extensionService.autoRestart": "El host de extensión remota finalizó inesperadamente. Reiniciar...",
"extensionService.crash": "El host de extensión remota finalizó inesperadamente 3 veces en los últimos 5 minutos.",
+ "extensionStopVetoError": "{0} (Error: {1})",
+ "extensionStopVetoMessage": "Confirme el reinicio de las extensiones.",
"extensionTestError": "No se encontró ningún host de extensiones que pueda iniciar el ejecutor de pruebas en {0}.",
"looping": "Las siguientes extensiones contienen bucles de dependencias y se han deshabilitado: {0}",
- "restart": "Reiniciar el host de extensión remota"
+ "proceedAnyways": "Reiniciar de todos modos",
+ "restart": "Reiniciar el host de extensión remota",
+ "stopExtensionHosts": "Deteniendo hosts de extensión"
},
"vs/workbench/services/extensions/common/extensionHostManager": {
"measureExtHostLatency": "Medir la latencia del host de extensión"
},
+ "vs/workbench/services/extensions/common/extensionsProposedApi": {
+ "enabledProposedAPIs": "Propuestas de API"
+ },
"vs/workbench/services/extensions/common/extensionsRegistry": {
"extensionKind": "Define el tipo de extensión. Las extensiones \"ui\" se instalan y ejecutan en la máquina local, mientras que las extensiones \"workspace\" se ejecutan en la remota.",
"extensionKind.empty": "Defina una extensión que no se pueda ejecutar en un contexto remoto, ni en el equipo local o el remoto.",
@@ -11014,6 +17398,7 @@
"ui": "Tipo de extensión de interfaz de usuario. En una ventana remota, estas extensiones solo están habilitadas cuando están disponibles en el equipo local.",
"vscode.extension.activationEvents": "Eventos de activación de la extensión VS Code.",
"vscode.extension.activationEvents.onAuthenticationRequest": "Evento de activación que se emite cada vez que se solicitan sesiones desde el proveedor de autenticación especificado.",
+ "vscode.extension.activationEvents.onChatParticipant": "Evento de activación emitido cuando se invoca al participante de chat especificado.",
"vscode.extension.activationEvents.onCommand": "Un evento de activación emitido cada vez que se invoca el comando especificado.",
"vscode.extension.activationEvents.onCustomEditor": "Un evento de activación emitido cada vez que el editor personalizado especificado se vuelve visible.",
"vscode.extension.activationEvents.onDebug": "Un evento de activación emitido cada vez que un usuario está a punto de iniciar la depuración o cada vez que está a punto de configurar las opciones de depuración.",
@@ -11021,22 +17406,31 @@
"vscode.extension.activationEvents.onDebugDynamicConfigurations": "Se emite un evento de activación cada vez que debe crearse una lista de todas las configuraciones de depuración (y debe llamarse a todos los métodos provideDebugConfigurations para el ámbito \"dinámico\").",
"vscode.extension.activationEvents.onDebugInitialConfigurations": "Un evento de activación emitido cada vez que se necesite crear un \"launch.json\" (y se necesite llamar a todos los métodos provideDebugConfigurations).",
"vscode.extension.activationEvents.onDebugResolve": "Un evento de activación emitido cada vez que esté a punto de ser iniciada una sesión de depuración con el tipo específico (y se necesite llamar al método resolveDebugConfiguration correspondiente).",
+ "vscode.extension.activationEvents.onEditSession": "Evento de activación emitido cada vez que se tiene acceso a una sesión de edición con el esquema especificado.",
"vscode.extension.activationEvents.onFileSystem": "Un evento de activación emitido cada vez que se accede a un archivo o carpeta con el esquema dado.",
- "vscode.extension.activationEvents.onIdentity": "Un evento de activación emitido siempre con la identidad de usuario especificada.",
+ "vscode.extension.activationEvents.onIssueReporterOpened": "Evento de activación emitido cuando se abre el informador del problema.",
"vscode.extension.activationEvents.onLanguage": "Un evento de activación emitido cada vez que se abre un archivo que se resuelve en el idioma especificado.",
+ "vscode.extension.activationEvents.onLanguageModelChatProvider": "Un evento de activación que se emite cuando se solicita un proveedor de modelos de chat para el proveedor dado.",
+ "vscode.extension.activationEvents.onLanguageModelTool": "Evento de activación emitido cuando se invoca la herramienta de modelo de lenguaje especificada.",
+ "vscode.extension.activationEvents.onMcpCollection": "Evento de activación emitido cuando se solicita una herramienta desde el servidor MCP.",
"vscode.extension.activationEvents.onNotebook": "Un evento de activación emitido cada vez que se abre el documento de bloc de notas especificado.",
"vscode.extension.activationEvents.onOpenExternalUri": "Se emite un evento de activación siempre que se abra un URI externo (como un vínculo http o https).",
"vscode.extension.activationEvents.onRenderer": "Un evento de activación que se emite cada vez que se usa un representador de salida del bloc de notas.",
"vscode.extension.activationEvents.onSearch": "Un evento de activación emitido cada vez que se inicia una búsqueda en la carpeta con el esquema dado.",
"vscode.extension.activationEvents.onStartupFinished": "Se emitió un evento de activación después de finalizar el inicio (después de que todas las extensiones activadas con \"*\" hayan terminado de activarse).",
"vscode.extension.activationEvents.onTaskType": "Un evento de activación emitido cada vez que las tareas de un tipo determinado deben enumerarse o resolverse.",
+ "vscode.extension.activationEvents.onTerminal": "Un evento de activación emitido cuando se abre un terminal del tipo de shell especificado.",
"vscode.extension.activationEvents.onTerminalProfile": "Se emite un evento de activación cuando se inicia un perfil de terminal específico.",
+ "vscode.extension.activationEvents.onTerminalQuickFixRequest": "Evento de activación emitido cuando un comando coincide con el selector asociado a este id.",
+ "vscode.extension.activationEvents.onTerminalShellIntegration": "Un evento de activación emitido cuando se activa la integración del shell de terminal para el tipo de shell especificado.",
"vscode.extension.activationEvents.onUri": "Se emite un evento de activación siempre cuando se abre un identificador URI de todo el sistema dirigido hacia esta extensión.",
"vscode.extension.activationEvents.onView": "Un evento de activación emitido cada vez que se expande la vista especificada.",
"vscode.extension.activationEvents.onWalkthrough": "Evento de activación emitido cuando se abre un tutorial especificado.",
"vscode.extension.activationEvents.onWebviewPanel": "Evento de activación emitido cuando se carga una vista web de un determinado viewType",
"vscode.extension.activationEvents.star": "Un evento de activación emitido al inicio de VS Code. Para garantizar una buena experiencia para el usuario final, use este evento de activación en su extensión solo cuando no le sirva ninguna otra combinación de eventos de activación en su caso.",
"vscode.extension.activationEvents.workspaceContains": "Un evento de activación emitido cada vez que se abre una carpeta que contiene al menos un archivo que coincide con el patrón global especificado.",
+ "vscode.extension.api": "Describa la API proporcionada por esta extensión. Para obtener más información, visite: https://code.visualstudio.com/api/advanced-topics/remote-extensions#handling-dependencies-with-remote-extensions",
+ "vscode.extension.api.none": "Abandonar totalmente la capacidad de exportar cualquier API. Esto permite que otras extensiones que dependen de esta extensión se ejecuten en un proceso de host de extensiones independiente o en un equipo remoto.",
"vscode.extension.badges": "Matriz de distintivos que se muestran en la barra lateral de la página de extensiones de Marketplace.",
"vscode.extension.badges.description": "Descripción del distintivo.",
"vscode.extension.badges.href": "Vínculo del distintivo.",
@@ -11071,8 +17465,10 @@
"vscode.extension.galleryBanner.color": "Color del banner en el encabezado de página de VS Code Marketplace.",
"vscode.extension.galleryBanner.theme": "Tema de color de la fuente que se usa en el banner.",
"vscode.extension.icon": "Ruta de acceso a un icono de 128 x 128 píxeles.",
+ "vscode.extension.l10n": "Ruta de acceso relativa a una carpeta que contiene archivos de localización (bundle.l10n.*.json). Debe especificarse si usa la vscode.l10n API.",
"vscode.extension.markdown": "Controla el motor de renderizado de Markdown utilizado en el Marketplace. Github (por defecto) o estándar.",
"vscode.extension.preview": "Establece la extensión que debe marcarse como versión preliminar en Marketplace.",
+ "vscode.extension.pricing": "Información de precios de la extensión. Puede ser Gratis (predeterminado) o Prueba. Para obtener más información, visite: https://code.visualstudio.com/api/working-with-extensions/publishing-extension#extension-pricing-label",
"vscode.extension.publisher": "El publicador de la extensión VS Code.",
"vscode.extension.qna": "Controla el vínculo de preguntas y respuestas en Marketplace. Configúrelo en Marketplace para habilitar el sitio de preguntas y respuestas predeterminado. Establezca una cadena para proporcionar la URL de un sitio de preguntas y respuestas personalizado. Establézcalo en falso para deshabilitar las preguntas y respuestas.",
"vscode.extension.scripts.prepublish": "Script que se ejecuta antes de publicar el paquete como extensión VS Code.",
@@ -11081,18 +17477,24 @@
},
"vs/workbench/services/extensions/common/extensionsUtil": {
"extensionUnderDevelopment": "Cargando la extensión de desarrollo en {0}",
- "overwritingExtension": "Sobrescribiendo la extensión {0} con {1}."
- },
- "vs/workbench/services/extensions/common/remoteExtensionHost": {
- "remote extension host Log": "Host de extensión remota"
+ "overwritingExtension": "Sobrescribiendo la extensión {0} con {1}.",
+ "overwritingWithWorkspaceExtension": "Sobrescribiendo {0} con la extensión del área de trabajo {1}."
},
- "vs/workbench/services/extensions/electron-sandbox/cachedExtensionScanner": {
+ "vs/workbench/services/extensions/electron-browser/cachedExtensionScanner": {
"extensionCache.invalid": "Las extensiones han sido modificadas en disco. Por favor, vuelva a cargar la ventana.",
+ "extensionUnderDevelopment.invalid": "No se pudo cargar la extensión '{0}' en desarrollo porque no es válida: {1}",
+ "extensionsUnderDevelopment.invalid": "No se pudieron cargar las extensiones {0} en desarrollo porque no son válidas: {1}",
+ "reloadWindow": "Recargar ventana"
+ },
+ "vs/workbench/services/extensions/electron-browser/localProcessExtensionHost": {
+ "extensionHost.startupFail": "El host de extensiones no se inició en 10 segundos, lo cual puede ser un problema.",
+ "extensionHost.startupFailDebug": "El host de extensiones no se inició en 10 segundos, puede que se detenga en la primera línea y necesita un depurador para continuar.",
+ "join.extensionDevelopment": "Finalizando sesión de depuración de extensión",
"reloadWindow": "Recargar ventana"
},
- "vs/workbench/services/extensions/electron-sandbox/electronExtensionService": {
- "devTools": "Abrir herramientas de desarrollo",
- "enable": "Habilitar y cargar",
+ "vs/workbench/services/extensions/electron-browser/nativeExtensionService": {
+ "devTools": "Abrir Herramientas de desarrollo",
+ "enable": "Habilitar y recargar",
"enableResolver": "Se requiere la extensión \"{0}\" para abrir la ventana remota.\r\n¿Quiere habilitarla?",
"extensionService.autoRestart": "El host de extensiones finalizó inesperadamente. Reiniciar...",
"extensionService.crash": "El host de extensiones finalizó inesperadamente 3 veces en los últimos 5 minutos.",
@@ -11100,89 +17502,28 @@
"getEnvironmentFailure": "No se pudo capturar un entorno remoto",
"install": "Instalar y recargar",
"installResolver": "La extensión \"{0}\" es necesaria para abrir la ventana remota.\r\n¿Desea instalar la extensión?",
- "looping": "Las siguientes extensiones contienen bucles de dependencias y se han deshabilitado: {0}",
- "relaunch": "Reiniciar VS Code",
+ "learnMore": "Más información",
+ "relaunch": "Reiniciar Visual Studio Code",
"resolverExtensionNotFound": "\"{0}\" no se encuentra en el Marketplace",
"restart": "Reiniciar el host de extensiones",
- "restartExtensionHost": "Reiniciar el host de extensiones"
- },
- "vs/workbench/services/extensions/electron-sandbox/localProcessExtensionHost": {
- "extension host Log": "Host de extensión",
- "extensionHost.error": "Error del host de extensiones: {0}",
- "extensionHost.startupFail": "El host de extensiones no se inició en 10 segundos, lo cual puede ser un problema.",
- "extensionHost.startupFailDebug": "El host de extensiones no se inició en 10 segundos, puede que se detenga en la primera línea y necesita un depurador para continuar.",
- "join.extensionDevelopment": "Finalizando sesión de depuración de extensión",
- "reloadWindow": "Recargar ventana"
+ "restartExtensionHost": "Reiniciar el host de extensiones",
+ "restartExtensionHost.reason": "Una solicitud explícita",
+ "startBisect": "Iniciar extensión Bisect"
},
"vs/workbench/services/files/electron-browser/diskFileSystemProvider": {
- "binFailed": "No se pudo mover \"{0}\" a la papelera de reciclaje",
- "trashFailed": "No se pudo mover '{0}' a la papelera"
- },
- "vs/workbench/services/gettingStarted/common/gettingStartedContent": {
- "getting-started-setup-icon": "Icono que se usa para la categoría de configuración de la introducción.",
- "getting-started-beginner-icon": "Icono que se usa para la categoría de principiante de la introducción.",
- "getting-started-codespaces-icon": "Icono que se usa para la categoría de codespaces de la introducción.",
- "gettingStarted.newFile.title": "Nuevo archivo",
- "gettingStarted.newFile.description": "Comenzar con un archivo vacío nuevo",
- "gettingStarted.openMac.title": "Abrir...",
- "gettingStarted.openMac.description": "Abrir un archivo o una carpeta para empezar a trabajar",
- "gettingStarted.openFile.title": "Abrir archivo...",
- "gettingStarted.openFile.description": "Abrir un archivo para empezar a trabajar",
- "gettingStarted.openFolder.title": "Abrir carpeta...",
- "gettingStarted.openFolder.description": "Abrir una carpeta para empezar a trabajar",
- "gettingStarted.cloneRepo.title": "Clonar el repositorio GIT...",
- "gettingStarted.cloneRepo.description": "Clonar un repositorio GIT",
- "gettingStarted.topLevelCommandPalette.title": "Ejecutar un comando...",
- "gettingStarted.topLevelCommandPalette.description": "Usa la paleta de comandos para ver y ejecutar todos los comandos de vscode.",
- "gettingStarted.codespaces.title": "Introducción a Codespaces",
- "gettingStarted.codespaces.description": "Póngase en marcha con su entorno de código instantáneo.",
- "gettingStarted.runProject.title": "Compile y ejecute la aplicación",
- "gettingStarted.runProject.description": "Compile, ejecute y depure el código en la nube, directamente desde el explorador.",
- "gettingStarted.runProject.button": "Iniciar depuración (F5)",
- "gettingStarted.forwardPorts.title": "Acceda a la aplicación en ejecución",
- "gettingStarted.forwardPorts.description": "Los puertos que se ejecutan en su codespace se reenvían automáticamente a la Web para que pueda abrirlos en el explorador.",
- "gettingStarted.forwardPorts.button": "Mostrar panel de puertos",
- "gettingStarted.pullRequests.title": "Solicitudes \"pull request\" a su alcance",
- "gettingStarted.pullRequests.description": "Vincule el flujo de trabajo de GitHub con su código para poder revisar solicitudes de incorporación de cambios \"pull request\", agregar comentarios, fusionar ramas mediante combinación con \"merge\" y mucho más.",
- "gettingStarted.pullRequests.button": "Abrir vista de GitHub",
- "gettingStarted.remoteTerminal.title": "Ejecutar las tareas en el terminal integrado",
- "gettingStarted.remoteTerminal.description": "Realice tareas rápidas de la línea de comandos con el terminal integrado.",
- "gettingStarted.remoteTerminal.button": "Enfocar terminal",
- "gettingStarted.openVSC.title": "Desarrolle en VS Code de forma remota",
- "gettingStarted.openVSC.description": "Acceda a la eficacia del entorno de desarrollo de nube desde su instancia de VS Code local. Instale la extensión GitHub Codespaces y conecte su cuenta de GitHub para configurarla.",
- "gettingStarted.openVSC.button": "Abrir en VS Code",
- "gettingStarted.setup.title": "Configuración rápida",
- "gettingStarted.setup.description": "Amplíe y personalice VS Code a su gusto.",
- "gettingStarted.pickColor.title": "Personalice el aspecto con los temas",
- "gettingStarted.pickColor.description": "Seleccione un tema de color que coincida con su gusto y su estado de ánimo durante la codificación.",
- "gettingStarted.pickColor.button": "Seleccionar un tema",
- "gettingStarted.findLanguageExts.title": "Código en cualquier lenguaje, sin cambiar de editor",
- "gettingStarted.findLanguageExts.description": "VS Code admite más de 50 lenguajes de programación. Mientras que muchos de ellos están integrados, otros pueden instalarse fácilmente como extensiones con un solo clic.",
- "gettingStarted.findLanguageExts.button": "Examinar extensiones de lenguaje",
- "gettingStarted.settingsSync.title": "Sincronice su configuración favorita",
- "gettingStarted.settingsSync.description": "No pierda nunca la configuración perfecta de VS Code. La sincronización de configuración realizará una copia de seguridad y compartirá los valores, los enlaces de teclado y las extensiones entre distintas instancias de VS Code.",
- "gettingStarted.settingsSync.button": "Habilitar sincronización de configuración",
- "gettingStarted.setup.OpenFolder.title": "Abra su proyecto",
- "gettingStarted.setup.OpenFolder.description": "Abra una carpeta de proyecto para empezar.",
- "gettingStarted.setup.OpenFolder.button": "Seleccionar una carpeta",
- "gettingStarted.setup.OpenFolder.description2": "Abra una carpeta para empezar.",
- "gettingStarted.beginner.title": "Conozca los aspectos básicos",
- "gettingStarted.beginner.description": "Ahorre tiempo con estos accesos directos y características imprescindibles.",
- "gettingStarted.commandPalette.title": "Encontrar y ejecutar los comandos",
- "gettingStarted.commandPalette.description": "La forma más sencilla de encontrar todo lo que VS Code puede hacer. Si busca alguna característica o acceso directo, consulte aquí primero.",
- "gettingStarted.commandPalette.button": "Abrir paleta de comandos",
- "gettingStarted.terminal.title": "Ejecutar las tareas en el terminal integrado",
- "gettingStarted.terminal.description": "Ejecute los comandos shell de forma rápida y supervise la salida de compilación junto a su código.",
- "gettingStarted.terminal.button": "Abrir terminal",
- "gettingStarted.extensions.title": "Extensibilidad sin límites",
- "gettingStarted.extensions.description": "Las extensiones son recursos esenciales de VS Code. Abarcan desde prácticas soluciones de productividad, pasando por características listas para usar ampliables hasta la adición de capacidades completamente nuevas.",
- "gettingStarted.extensions.button": "Examinar extensiones recomendadas",
- "gettingStarted.settings.title": "Todo es configurable",
- "gettingStarted.settings.description": "Optimice cada una de las partes de la apariencia de VS Code de acuerdo con sus preferencias. Habilitar la sincronización de configuración le permite compartir sus retoques personales entre distintas máquinas.",
- "gettingStarted.settings.button": "Retocar mi configuración",
- "gettingStarted.videoTutorial.title": "Relájese y aprenda",
- "gettingStarted.videoTutorial.description": "Vea el primero de una serie de tutoriales de vídeo breves y prácticos sobre las características clave de VS Code.",
- "gettingStarted.videoTutorial.button": "Ver tutorial"
+ "fileWatcher": "Monitor de archivos"
+ },
+ "vs/workbench/services/files/electron-browser/elevatedFileService": {
+ "fileNotTrusted": "El área de trabajo no es de confianza.",
+ "fileNotTrustedMessagePosix": "Va a guardar \"{0}\" como superusuario.",
+ "fileNotTrustedMessageWindows": "Está a punto de guardar \"{0}\" como administrador."
+ },
+ "vs/workbench/services/filesConfiguration/common/filesConfigurationService": {
+ "configuredReadonly": "El editor es de solo lectura porque el archivo se estableció como de solo lectura a través de la configuración. [Haga clic aquí](command:{0}) para configurar o [alternar para esta sesión](command:{1}).",
+ "fileLocked": "El editor es de solo lectura debido a los permisos de archivo. [Haga clic aquí](command:{0}) para establecer la opción de escritura de todos modos.",
+ "fileReadonly": "El editor es de solo lectura porque el archivo es de solo lectura.",
+ "providerReadonly": "El editor es de solo lectura porque el sistema de archivos del archivo es de solo lectura.",
+ "sessionReadonly": "El editor es de solo lectura porque el archivo se ha establecido como de solo lectura en esta sesión. [Haga clic aquí](command:{0}) para establecer que se pueda escribir."
},
"vs/workbench/services/history/browser/historyService": {
"canNavigateBack": "Si es posible retroceder al navegar en el historial del editor",
@@ -11195,20 +17536,51 @@
"canNavigateToLastNavigationLocation": "Si es posible navegar a la última ubicación de navegación del editor",
"canReopenClosedEditor": "Si es posible volver a abrir el último editor cerrado"
},
- "vs/workbench/services/integrity/electron-sandbox/integrityService": {
+ "vs/workbench/services/host/browser/browserHostService": {
+ "retry": "&&Reintentar",
+ "unableToOpenExternal": "El explorador ha bloqueado la apertura de una nueva pestaña o ventana. Presione \"Reintentar\" para volver a intentarlo.",
+ "unableToOpenExternalWorkspace": "El explorador ha bloqueado la apertura de una nueva pestaña o ventana para ''{0}''. Presione \"Reintentar\" para volver a intentarlo.",
+ "unableToOpenWindowDetail": "Permita los elementos emergentes de este sitio web en su [configuración del explorador]({0})."
+ },
+ "vs/workbench/services/hover/browser/hoverWidget": {
+ "hoverhint": "Mantenga presionada la tecla {0} para pasar el mouse"
+ },
+ "vs/workbench/services/integrity/electron-browser/integrityService": {
"integrity.dontShowAgain": "No mostrar de nuevo",
"integrity.moreInformation": "Más información",
"integrity.prompt": "La instalación de {0} parece estar dañada. Vuelva a instalar."
},
+ "vs/workbench/services/issue/browser/issueTroubleshoot": {
+ "I cannot reproduce": "No puedo reproducir",
+ "Stop": "Detener",
+ "This is Bad": "Puedo reproducir",
+ "ask to download insiders": "Intente descargar y reproducir el problema en {0} participantes de Insider.",
+ "ask to reproduce issue": "Intente reproducir el problema en {0} participantes de Insider y confirme si el problema existe allí.",
+ "bad": "Puedo reproducir",
+ "detail.start": "La solución de problemas es un proceso que le ayuda a identificar la causa de un problema. La causa de un problema puede ser un error de configuración, debido a una extensión o ser {0} él mismo.\r\n\r\nDurante el proceso, la ventana se vuelve a cargar varias veces. Cada vez que deba confirmar si sigue viendo el problema.",
+ "download insiders": "Descargar {0} participantes de Insider",
+ "empty.profile": "La solución de problemas está activa y ha restablecido temporalmente las configuraciones a los valores predeterminados. Compruebe si todavía puede reproducir el problema y continúe seleccionando entre estas opciones.",
+ "good": "No puedo reproducir",
+ "issue is in core": "La solución de problemas ha identificado que el problema es con {0}.",
+ "issue is with configuration": "La solución de problemas ha identificado que el problema se debe a las configuraciones. Para notificar el problema, exporte las configuraciones mediante el comando \"Exportar Perfil\" y comparta el archivo en el informe de problemas.",
+ "msg": "&&Solucionar problema",
+ "profile.extensions.disabled": "La solución de problemas está activa y ha deshabilitado temporalmente todas las extensiones instaladas. Compruebe si todavía puede reproducir el problema y continúe seleccionando entre estas opciones.",
+ "report anyway": "Notificar problema de todos modos",
+ "stop": "Detener",
+ "title.stop": "Tener la solución de problemas",
+ "troubleshoot issue": "Solucionar problema",
+ "troubleshootIssue": "Solucionar problema...",
+ "use insiders": "Probablemente, esto significa que el problema ya se ha solucionado y estará disponible en una próxima versión. Puede usar {0} participantes de Insider de forma segura hasta que la nueva versión estable esté disponible."
+ },
"vs/workbench/services/keybinding/browser/keybindingService": {
- "dispatch": "Controla la lógica de distribución de las pulsaciones de teclas para usar `code` (recomendado) o `keyCode`.",
"invalid.keybindings": "Valor de \"contributes.{0}\" no válido: {1}",
+ "keybindings.commandsIsArray": "Tipo incorrecto. Se esperaba \"{0}\". El campo \"command\" no es compatible con la ejecución de varios comandos. Use el comando \"runCommands\" para pasar varios comandos para ejecutarlo.",
"keybindings.json.args": "Argumentos que se pasan al comando para ejecutar.",
"keybindings.json.command": "Nombre del comando que se va a ejecutar",
"keybindings.json.key": "Tecla o secuencia de teclas (separadas por un espacio)",
+ "keybindings.json.removalCommand": "Nombre del comando para el que se quitará el método abreviado de teclado",
"keybindings.json.title": "Configuración de enlaces de teclado",
"keybindings.json.when": "Condición cuando la tecla está activa.",
- "keyboardConfigurationTitle": "Teclado",
"nonempty": "se esperaba un valor no vacío.",
"optstring": "la propiedad \"{0}\" se puede omitir o debe ser de tipo \"string\"",
"requirestring": "la propiedad \"{0}\" es obligatoria y debe ser de tipo \"string\"",
@@ -11222,6 +17594,10 @@
"vscode.extension.contributes.keybindings.when": "Condición cuando la tecla está activa.",
"vscode.extension.contributes.keybindings.win": "Tecla o secuencia de teclas específica de Windows."
},
+ "vs/workbench/services/keybinding/browser/keyboardLayoutService": {
+ "keyboard.layout.config": "Controla la distribución del teclado que se usa en la Web.",
+ "keyboardConfigurationTitle": "Teclado"
+ },
"vs/workbench/services/keybinding/common/keybindingEditing": {
"emptyKeybindingsHeader": "Coloque sus atajos de teclado en este archivo para sobreescribir los valores predeterminados",
"errorInvalidConfiguration": "No se puede escribir en el archivo de configuración KeyBindings. Tiene un objeto que no es de tipo Array. Abra el archivo para corregirlo y vuelva a intentarlo.",
@@ -11244,8 +17620,13 @@
"workspaceNameVerbose": "{0} (área de trabajo)"
},
"vs/workbench/services/language/common/languageService": {
+ "file extensions": "Extensiones de archivo",
+ "grammar": "Gramática",
"invalid": "Elemento \"contributes.{0}\" no válido. Se esperaba una matriz.",
"invalid.empty": "Valor vacío para \"contributes.{0}\"",
+ "language id": "ID.",
+ "language name": "Nombre",
+ "languages": "Lenguajes de programación",
"opt.aliases": "la propiedad `{0}` se puede omitir y debe ser de tipo \"string[]\"",
"opt.configuration": "la propiedad `{0}` se puede omitir y debe ser de tipo \"string\"",
"opt.extensions": "la propiedad `{0}` se puede omitir y debe ser de tipo \"string[]\"",
@@ -11254,6 +17635,7 @@
"opt.icon": "la propiedad \"{0}\" se puede omitir y debe ser de tipo \"object\" con las propiedades \"{1}\" y \"{2}\" de tipo \"string\"",
"opt.mimetypes": "la propiedad `{0}` se puede omitir y debe ser de tipo \"string[]\"",
"require.id": "la propiedad \"{0}\" es obligatoria y debe ser de tipo \"string\"",
+ "snippets": "Fragmentos de código",
"vscode.extension.contributes.languages": "Aporta declaraciones de lenguaje.",
"vscode.extension.contributes.languages.aliases": "Alias de nombre para el lenguaje.",
"vscode.extension.contributes.languages.configuration": "Ruta de acceso relativa a un archivo que contiene opciones de configuración para el lenguaje.",
@@ -11267,41 +17649,37 @@
"vscode.extension.contributes.languages.id": "Identificador del lenguaje.",
"vscode.extension.contributes.languages.mimetypes": "Tipos MIME asociados al lenguaje."
},
- "vs/workbench/services/lifecycle/electron-sandbox/lifecycleService": {
- "errorClose": "Error inesperado al intentar cerrar la ventana ({0}).",
- "errorLoad": "Error inesperado al intentar cambiar el área de trabajo de la ventana ({0}).",
- "errorQuit": "Error inesperado al intentar salir de la aplicación ({0}).",
- "errorReload": "Error inesperado al intentar recargar la ventana ({0})."
+ "vs/workbench/services/lifecycle/browser/lifecycleService": {
+ "lifecycleVeto": "Es posible que los cambios realizados no se guarden. Seleccione \"Cancelar\" e inténtelo de nuevo."
},
- "vs/workbench/services/mode/common/workbenchLanguageService": {
- "invalid": "Elemento \"contributes.{0}\" no válido. Se esperaba una matriz.",
- "invalid.empty": "Valor vacío para \"contributes.{0}\"",
- "opt.aliases": "la propiedad `{0}` se puede omitir y debe ser de tipo \"string[]\"",
- "opt.configuration": "la propiedad `{0}` se puede omitir y debe ser de tipo \"string\"",
- "opt.extensions": "la propiedad `{0}` se puede omitir y debe ser de tipo \"string[]\"",
- "opt.filenames": "la propiedad `{0}` se puede omitir y debe ser de tipo \"string[]\"",
- "opt.firstLine": "la propiedad `{0}` se puede omitir y debe ser de tipo \"string\"",
- "opt.mimetypes": "la propiedad `{0}` se puede omitir y debe ser de tipo \"string[]\"",
- "require.id": "la propiedad \"{0}\" es obligatoria y debe ser de tipo \"string\"",
- "vscode.extension.contributes.languages": "Aporta declaraciones de lenguaje.",
- "vscode.extension.contributes.languages.aliases": "Alias de nombre para el lenguaje.",
- "vscode.extension.contributes.languages.configuration": "Ruta de acceso relativa a un archivo que contiene opciones de configuración para el lenguaje.",
- "vscode.extension.contributes.languages.extensions": "Extensiones de archivo asociadas al lenguaje.",
- "vscode.extension.contributes.languages.filenamePatterns": "Patrones globales de nombre de archivo asociados al lenguaje.",
- "vscode.extension.contributes.languages.filenames": "Nombres de archivo asociados al lenguaje.",
- "vscode.extension.contributes.languages.firstLine": "Expresión regular que coincide con la primera línea de un archivo del lenguaje.",
- "vscode.extension.contributes.languages.id": "Identificador del lenguaje.",
- "vscode.extension.contributes.languages.mimetypes": "Tipos MIME asociados al lenguaje."
+ "vs/workbench/services/localization/browser/localeService": {
+ "clearDisplayLanguageDetail": "Presione el botón Recargar para actualizar la página y usar el idioma del explorador.",
+ "clearDisplayLanguageMessage": "Para cambiar el idioma para mostrar, debe recargarse {0}",
+ "relaunchDisplayLanguageDetail": "Presione el botón Recargar para actualizar la página y establecer el idioma para mostrar en {0}.",
+ "relaunchDisplayLanguageMessage": "Para cambiar el idioma para mostrar, debe recargarse {0}",
+ "reload": "&&Recargar"
+ },
+ "vs/workbench/services/localization/electron-browser/localeService": {
+ "argvInvalid": "No se puede escribir el idioma para mostrar. Abra la configuración del entorno de ejecución, corrija los errores o advertencias que contiene e inténtelo de nuevo.",
+ "installing": "Instalando {0} compatibilidad con idiomas...",
+ "openArgv": "Abrir parámetros de ejecución",
+ "restart": "&&Reiniciar",
+ "restartDisplayLanguageDetail1": "Para cambiar el idioma de visualización a {0}, es necesario reiniciar {1}.",
+ "restartDisplayLanguageMessage1": "¿Reiniciar {0} para cambiar a {1}?"
+ },
+ "vs/workbench/services/log/common/logConstants": {
+ "window": "Ventana"
},
"vs/workbench/services/notification/common/notificationService": {
"neverShowAgain": "No mostrar de nuevo"
},
"vs/workbench/services/preferences/browser/keybindingsEditorInput": {
+ "keybindingsEditorLabelIcon": "Icono de la etiqueta del editor de enlaces de teclado.",
"keybindingsInputName": "Métodos abreviados de teclado"
},
"vs/workbench/services/preferences/browser/keybindingsEditorModel": {
"cat.title": "{0}: {1}",
- "default": "Predeterminado",
+ "default": "Sistema",
"extension": "Extensión",
"meta": "meta",
"option": "Opción",
@@ -11314,7 +17692,10 @@
"openFolderFirst": "Abra primero una carpeta o área de trabajo para crear la configuración correspondiente."
},
"vs/workbench/services/preferences/common/preferencesEditorInput": {
- "settingsEditor2InputName": "Configuración"
+ "preferencesEditorInputName": "Preferencias",
+ "preferencesEditorLabelIcon": "Icono de la etiqueta del editor de preferencias.",
+ "settingsEditor2InputName": "Configuración",
+ "settingsEditorLabelIcon": "Icono de la etiqueta del editor de configuración."
},
"vs/workbench/services/preferences/common/preferencesModels": {
"commonlyUsed": "Más utilizada",
@@ -11322,6 +17703,7 @@
},
"vs/workbench/services/preferences/common/preferencesValidation": {
"invalidTypeError": "La configuración tiene un tipo no válido, se esperaba {0}. Corríjalo en JSON.",
+ "regexParsingError": "Error al analizar la siguiente expresión regular con y sin la marca u:",
"validations.arrayIncorrectType": "Tipo incorrecto. Se esperaba una matriz.",
"validations.booleanIncorrectType": "Tipo incorrecto. Se esperaba \"booleano\".",
"validations.colorFormat": "Formato de color no válido. Use #RGB, #RGBA, #RRGGBB o #RRGGBBAA.",
@@ -11350,14 +17732,6 @@
"validations.uriMissing": "Se espera el URI.",
"validations.uriSchemeMissing": "Se espera el URI con un esquema."
},
- "vs/workbench/services/profiles/common/profile": {
- "profile": "Perfil de configuración",
- "settings profiles": "Perfil de configuración"
- },
- "vs/workbench/services/profiles/common/profileService": {
- "applied profile": "{0}: se aplicó correctamente.",
- "profiles.applying": "{0}: aplicando..."
- },
"vs/workbench/services/progress/browser/progressService": {
"cancel": "Cancelar",
"dismiss": "Descartar",
@@ -11366,32 +17740,102 @@
"progress.title3": "[{0}] {1}: {2}",
"status.progress": "Mensaje de progreso"
},
+ "vs/workbench/services/remote/browser/remoteAgentService": {
+ "connectionError": "Se ha producido un error inesperado que requiere recargar esta página.",
+ "connectionErrorDetail": "El área de trabajo no se pudo conectar al servidor (error: {0})",
+ "reload": "&&Recargar"
+ },
"vs/workbench/services/remote/common/remoteExplorerService": {
+ "RemoteHelpInformationExtPoint": "Contribuye con información de ayuda para Remote",
+ "RemoteHelpInformationExtPoint.documentation": "La dirección URL, o un comando que la devuelve, a la página de documentación del proyecto",
+ "RemoteHelpInformationExtPoint.feedback": "La dirección URL, o un comando que la devuelve, al notificador de comentarios del proyecto",
+ "RemoteHelpInformationExtPoint.feedback.deprecated": "Use {0} en su lugar.",
+ "RemoteHelpInformationExtPoint.getStarted": "Dirección URL, o un comando que devuelve la dirección URL, a la página de Introducción del proyecto, o un id. de tutorial que aporta la extensión del proyecto.",
+ "RemoteHelpInformationExtPoint.issues": "La dirección URL, o un comando que la devuelve, a la lista de problemas del proyecto",
+ "RemoteHelpInformationExtPoint.reportIssue": "Dirección URL, o un comando que la devuelve, al notificador de problemas del proyecto.",
+ "getStartedWalkthrough.id": "Id. de un tutorial de introducción que se va a abrir."
+ },
+ "vs/workbench/services/remote/common/tunnelModel": {
"remote.localPortMismatch.single": "El puerto local {0} no pudo ser utilizado para la retransmisión al puerto remoto. {1}.\r\n\r\nEsto suele ocurrir cuando ya hay otro proceso que utiliza el puerto local.{0}.\r\n\r\nSe ha utilizado el número de puerto {2} en su lugar.",
+ "tunnel.forwardedPortsViewEnabled": "Indica si la vista Puertos está habilitada.",
"tunnel.source.auto": "Reenviado automáticamente",
"tunnel.source.user": "Reenviado por el usuario",
"tunnel.staticallyForwarded": "Reenviado de forma estática"
},
- "vs/workbench/services/remote/electron-sandbox/remoteAgentService": {
+ "vs/workbench/services/remote/electron-browser/remoteAgentService": {
"connectionError": "Error al conectar con el servidor de host de la extensión remota (Error: {0})",
- "devTools": "Abrir herramientas de desarrollo",
+ "devTools": "Abrir Herramientas de desarrollo",
"directUrl": "Abrir en el explorador"
},
+ "vs/workbench/services/request/browser/requestService": {
+ "network": "Red"
+ },
+ "vs/workbench/services/request/electron-browser/requestService": {
+ "network": "Red"
+ },
+ "vs/workbench/services/search/browser/searchService": {
+ "errorSearchFile": "No se puede buscar con el buscador de archivos de Rol de trabajo",
+ "errorSearchText": "No se puede buscar con el buscador de texto de Rol de trabajo"
+ },
"vs/workbench/services/search/common/queryBuilder": {
"search.noWorkspaceWithName": "La carpeta del área de trabajo no existe: {0}"
},
- "vs/workbench/services/sessionSync/browser/sessionSyncWorkbenchService": {
- "account preference": "Iniciar sesión para usar Editar sesiones",
- "choose account placeholder": "Seleccione una cuenta con la que iniciar sesión",
- "others": "Otros",
- "reset auth": "Cerrar sesión",
- "sign in using account": "Iniciar sesión con {0}",
- "signed in": "Sesión iniciada"
+ "vs/workbench/services/secrets/electron-browser/secretStorageService": {
+ "encryptionNotAvailableJustTroubleshootingGuide": "No se pudo identificar el conjunto de claves del sistema operativo para almacenar los datos relacionados con el cifrado en el entorno de escritorio actual.",
+ "isGnome": "Está ejecutando este proceso en un entorno de tipo GNOME, pero el conjunto de claves del sistema operativo no está disponible para el cifrado. Asegúrese de que tiene instalado el elemento gnome-keyring u otra implementación compatible con libsecret y que se esté ejecutando.",
+ "isKwallet": "Está ejecutando este proceso en un entorno de KDE, pero el conjunto de claves del sistema operativo no está disponible para el cifrado. Asegúrese de que el elemento kwallet está en ejecución.",
+ "troubleshootingButton": "Abrir la guía de solución de problemas",
+ "usePlainText": "Usar el cifrado más débil",
+ "usePlainTextExtraSentence": "Abra la guía de solución de problemas para solucionar este problema o use un cifrado más débil que no use el conjunto de claves del sistema operativo."
+ },
+ "vs/workbench/services/suggest/browser/simpleSuggestWidget": {
+ "ariaCurrenttSuggestionReadDetails": "{0}, documentos: {1}",
+ "label": "{0}, {1}",
+ "label.desc": "{0}, {1} {2}",
+ "label.detail": "{0}{1} {2}",
+ "label.full": "{0}{1}, {2} {3}",
+ "simpleSuggestWidgetFirstSuggestionFocused": "Si se centra la primera sugerencia simple",
+ "simpleSuggestWidgetHasFocusedSuggestion": "Si se centra cualquier sugerencia simple",
+ "simpleSuggestWidgetHasNavigated": "Si se ha navegado hacia abajo en el widget de sugerencias simples",
+ "suggest": "Sugerir",
+ "suggestWidget.loading": "Cargando...",
+ "suggestWidget.noSuggestions": "No hay sugerencias."
+ },
+ "vs/workbench/services/suggest/browser/simpleSuggestWidgetDetails": {
+ "details.close": "Cerrar",
+ "loading": "Cargando..."
+ },
+ "vs/workbench/services/textfile/browser/textFileService": {
+ "confirmMakeWriteable": "'{0}' está marcado como de solo lectura. ¿Desea guardar de todos modos?",
+ "confirmMakeWriteableDetail": "Las rutas de acceso se pueden configurar como de solo lectura a través de la configuración.",
+ "confirmOverwrite": "'{0}' ya existe. ¿Desea reemplazarla?",
+ "deleted": "Eliminado",
+ "fileBinaryError": "El archivo parece ser binario y no se puede abrir como texto",
+ "makeWriteableButtonLabel": "&Guardar de todos modos",
+ "overwriteIrreversible": "Ya existe un archivo o carpeta con el nombre \"{0}\" en la carpeta \"{1}\". Reemplazarlo sobrescribirá su contenido actual.",
+ "readonly": "Solo lectura",
+ "readonlyAndDeleted": "Eliminado, solo lectura",
+ "replaceButtonLabel": "&&Reemplazar",
+ "textFileCreate.source": "Archivo creado",
+ "textFileModelDecorations": "Decoraciones de modelo de archivo de texto",
+ "textFileOverwrite.source": "Archivo reemplazado"
+ },
+ "vs/workbench/services/textfile/common/textFileEditorModel": {
+ "saveParticipants": "Guardando \"{0}\"",
+ "saveTextFile": "Escribiendo en el archivo...",
+ "textFileCreate.source": "Codificación de archivo cambiada"
},
- "vs/workbench/services/sessionSync/common/sessionSync": {
- "session sync": "Editar sesiones"
+ "vs/workbench/services/textfile/common/textFileEditorModelManager": {
+ "genericSaveError": "No se pudo guardar \"{0}\": {1}"
+ },
+ "vs/workbench/services/textfile/common/textFileSaveParticipant": {
+ "saveParticipants1": "Ejecutando acciones de código y formateadores...",
+ "skip": "Omitir"
},
- "vs/workbench/services/textMate/browser/abstractTextMateService": {
+ "vs/workbench/services/textfile/electron-browser/nativeTextFileService": {
+ "join.textFiles": "Guardando archivos de texto"
+ },
+ "vs/workbench/services/textMate/browser/textMateTokenizationFeatureImpl": {
"alreadyDebugging": "Ya se está registrando.",
"invalid.embeddedLanguages": "Valor no válido en \"contributes.{0}.embeddedLanguages\". Debe ser una asignación de objeto del nombre del ámbito al lenguaje. Valor proporcionado: {1}",
"invalid.injectTo": "Valor no válido en `contributes.{0}.injectTo`. Debe ser una matriz de nombres de ámbito de lenguaje. Valor proporcionado: {1}",
@@ -11415,30 +17859,6 @@
"vscode.extension.contributes.grammars.tokenTypes": "Asignación de nombre de ámbito a tipos de token.",
"vscode.extension.contributes.grammars.unbalancedBracketScopes": "Define qué nombres de ámbito no contienen corchetes equilibrados."
},
- "vs/workbench/services/textfile/browser/textFileService": {
- "confirmOverwrite": "'{0}' ya existe. ¿Desea reemplazarla?",
- "deleted": "Eliminado",
- "fileBinaryError": "El archivo parece ser binario y no se puede abrir como texto",
- "irreversible": "Ya existe un archivo o carpeta con el nombre \"{0}\" en la carpeta \"{1}\". Reemplazarlo sobrescribirá su contenido actual.",
- "readonly": "Solo lectura",
- "readonlyAndDeleted": "Eliminado, solo lectura",
- "replaceButtonLabel": "&&Reemplazar",
- "textFileCreate.source": "Archivo creado",
- "textFileModelDecorations": "Decoraciones de modelo de archivo de texto",
- "textFileOverwrite.source": "Archivo reemplazado"
- },
- "vs/workbench/services/textfile/common/textFileEditorModel": {
- "textFileCreate.source": "Codificación de archivo cambiada"
- },
- "vs/workbench/services/textfile/common/textFileEditorModelManager": {
- "genericSaveError": "No se pudo guardar \"{0}\": {1}"
- },
- "vs/workbench/services/textfile/common/textFileSaveParticipant": {
- "saveParticipants": "Guardando \"{0}\""
- },
- "vs/workbench/services/textfile/electron-sandbox/nativeTextFileService": {
- "join.textFiles": "Guardando archivos de texto"
- },
"vs/workbench/services/themes/browser/fileIconThemeData": {
"error.cannotparseicontheme": "Problemas al analizar el archivo de iconos de archivos: {0}",
"error.invalidformat": "Formato no válido del archivo de temas de iconos de archivos: se esperaba un objeto."
@@ -11451,7 +17871,7 @@
"error.fontStyle": "Estilo de fuente no válido en la fuente \"{0}\". Ignorando el valor.",
"error.fontWeight": "Espesor de fuente no válido en la fuente \"{0}\". Ignorando el valor.",
"error.icon.font": "Omitiendo la definición de icono \"{0}\". Fuente desconocida.",
- "error.icon.fontCharacter": "Omitiendo la definición de icono \"{0}\". fontCharacter desconocido.",
+ "error.icon.fontCharacter": "Omitiendo '{0}' de definición de icono: debe definirse",
"error.invalidformat": "Formato no válido del archivo de temas de iconos de productos: se esperaba un objeto.",
"error.missingProperties": "Formato no válido para el archivo de tema de iconos de producto: debe contener elementos iconDefinitions y fuentes.",
"error.noFontSrc": "No hay ningún origen de fuente válido en la fuente “{0}”. Se omitirá la definición de fuente.",
@@ -11461,6 +17881,7 @@
"error.cannotloadtheme": "No se puede cargar {0}: {1}"
},
"vs/workbench/services/themes/common/colorExtensionPoint": {
+ "colors": "Colores",
"contributes.color": "Contribuye a la extensión definida para los colores de los temas",
"contributes.color.description": "Descripción del color temático",
"contributes.color.id": "El identificador de los colores de los temas",
@@ -11469,6 +17890,11 @@
"contributes.defaults.highContrast": "El color predeterminado para los temas oscuros de contraste alto. Un valor de color en hexadecimal (#RRGGBB[AA]) o el identificador de un color tematizable que proporciona el valor predeterminado. Si no se proporciona, el color “oscuro” se usa como predeterminado para los temas oscuros de contraste alto.",
"contributes.defaults.highContrastLight": "El color predeterminado para los temas de luz de contraste alto. Un valor de color en hexadecimal (#RRGGBB[AA]) o el identificador de un color tematizable que proporciona el valor predeterminado. Si no se proporciona, el color “claro” se usa como valor predeterminado para los temas de luz de contraste alto.",
"contributes.defaults.light": "El color predeterminado para los temas claros. Un valor de color en hexadecimal (#RRGGBB [AA]) o el identificador de un color para los temas que proporciona el valor predeterminado.",
+ "defaultDark": "Oscuro por defecto",
+ "defaultHC": "Contraste alto por defecto",
+ "defaultLight": "Claro por defecto",
+ "description": "Descripción",
+ "id": "Id.",
"invalid.colorConfiguration": "'configuration.colors' debe ser una matriz",
"invalid.default.colorType": "{0} debe ser un valor de color en hexadecimal (#RRGGBB [AA] o #RGB [A]) o el identificador de un color para los temas que puede ser el valor predeterminado.",
"invalid.defaults": "Se debe definir “configuration.colors.defaults” y contener “claro” y “oscuro”.",
@@ -11517,7 +17943,7 @@
"schema.folderNamesExpanded": "Asocia los nombres de carpeta a iconos para las carpetas expandidas. La clave de objeto es el nombre de la carpeta, sin incluir ningún segmento de la ruta de acceso. No se permiten patrones ni comodines. La comparación de nombres de carpeta no distingue mayúsculas y minúsculas.",
"schema.font-format": "El formato de la fuente.",
"schema.font-path": "La ruta de acceso de la fuente, relativa al archivo actual de temas de iconos de archivos.",
- "schema.font-size": "El tamaño predeterminado de la fuente. Consulte https://developer.mozilla.org/es/docs/Web/CSS/font-size para ver los valores válidos.",
+ "schema.font-size": "Tamaño predeterminado de la fuente. Se recomienda encarecidamente usar un valor de porcentaje, por ejemplo: 125 %.",
"schema.font-style": "El estilo de la fuente. Consulte https://developer.mozilla.org/en-US/docs/Web/CSS/font-style para ver los valores válidos.",
"schema.font-weight": "El peso de la fuente. Consulte https://developer.mozilla.org/en-US/docs/Web/CSS/font-weight para ver los valores válidos.",
"schema.fontCharacter": "Cuando se usa una fuente de glifo: el carácter de la fuente que se va a usar.",
@@ -11531,15 +17957,19 @@
"schema.iconDefinitions": "Descripción de todos los iconos que se pueden usar al asociar archivos a iconos.",
"schema.iconPath": "Cuando se usa SVG o PNG: la ruta de acceso a la imagen. La ruta es relativa al archivo del conjunto de iconos.",
"schema.id": "El identificador de la fuente.",
- "schema.id.formatError": "El identificador solo debe contener letras, números, caracteres de subrayado y signos menos.",
"schema.languageId": "La identificación de la definición del icono para la asociación.",
"schema.languageIds": "Asocia lenguajes a los iconos. La clave de objeto es el identificador de lenguaje definido en el punto de aportación de lenguaje.",
"schema.light": "Asociaciones opcionales para iconos de archivo en temas de colores claros.",
+ "schema.rootFolder": "El icono de carpeta para las carpetas raíz contraídas y, si no se establece rootFolderExpanded, también para las carpetas raíz expandidas.",
+ "schema.rootFolderExpanded": "Icono de carpeta para carpetas raíz expandidas. El icono de carpeta raíz expandida es opcional. Si no se establece, se mostrará el icono definido para la carpeta raíz.",
+ "schema.rootFolderNameExpanded": "La identificación de la definición de icono para la asociación.",
+ "schema.rootFolderNames": "Asocia los nombres de carpeta raíz a los iconos. La clave de objeto es el nombre de la carpeta raíz. No se permiten patrones ni comodines. La coincidencia de nombres de carpeta raíz no distingue mayúsculas de minúsculas.",
+ "schema.rootFolderNamesExpanded": "Asocia los nombres de carpeta raíz a los iconos de las carpetas raíz expandidas. La clave de objeto es el nombre de la carpeta raíz. No se permiten patrones ni comodines. La coincidencia de nombres de carpeta raíz no distingue mayúsculas de minúsculas.",
"schema.showLanguageModeIcons": "Configura si se deben usar los iconos de idioma predeterminados si el tema no define un icono para un idioma.",
"schema.src": "La ubicación de la fuente."
},
"vs/workbench/services/themes/common/iconExtensionPoint": {
- "contributes.icon.default": "Valor predeterminado del icono. Es una referencia a un objeto ThemeIcon existente o un icono en una fuente de icono.",
+ "contributes.icon.default": "Valor predeterminado del icono. Una referencia a un ThemeIcon existente o un icono en una fuente de icono.",
"contributes.icon.default.fontCharacter": "Carácter para el icono en la fuente del icono.",
"contributes.icon.default.fontPath": "La ruta de la fuente del icono que lo define.",
"contributes.icon.description": "Descripción del icono con temas",
@@ -11560,16 +17990,15 @@
"schema.font-weight": "El peso de la fuente. Consulte https://developer.mozilla.org/en-US/docs/Web/CSS/font-weight para ver los valores válidos.",
"schema.iconDefinitions": "Asociación del nombre de icono a un carácter de fuente.",
"schema.id": "El identificador de la fuente.",
- "schema.id.formatError": "El identificador solo debe contener letras, números, caracteres de subrayado y signos menos.",
"schema.src": "La ubicación de la fuente."
},
"vs/workbench/services/themes/common/themeConfiguration": {
- "autoDetectHighContrast": "Si está habilitado, cambiará automáticamente al tema de alto contraste si el sistema operativo está usando un tema de alto contraste. El tema de alto contraste que se utilizará se especifica mediante `#{0}#` y `#{1}#`",
- "colorTheme": "Especifica el tema de color utilizado en el área de trabajo.",
+ "autoDetectHighContrast": "Si está habilitado, cambiará automáticamente al tema de alto contraste si el sistema operativo está usando un tema de alto contraste. El tema de contraste alto que se va a usar se especifica mediante {0} y {1}.",
+ "colorTheme": "Especifica el tema de color que se usa en el área de trabajo cuando {0} no está habilitado.",
"colorThemeError": "El tema es desconocido o no está instalado.",
"defaultProductIconThemeDesc": "Predeterminada",
"defaultProductIconThemeLabel": "Predeterminado",
- "detectColorScheme": "Si está establecido, se cambia automáticamente al tema de color preferido en función de la apariencia del sistema operativo. Si la apariencia del sistema operativo es oscura, se usa el tema especificado en \"#{0}#\"; si es clara, en \"#{1}#\".",
+ "detectColorScheme": "Si se habilita, seleccionará automáticamente un tema de color basado en el modo de color del sistema. Si el modo de color del sistema es oscuro, se usa {0}; de lo contrario, {1}.",
"editorColors": "Invalida el estilo de fuente y los colores de sintaxis del editor del tema de color seleccionado.",
"editorColors.comments": "Establece los colores y estilos para los comentarios",
"editorColors.functions": "Establece los colores y estilos para las declaraciones y referencias de funciones.",
@@ -11577,7 +18006,7 @@
"editorColors.numbers": "Establece los colores y estilos para literales numéricos.",
"editorColors.semanticHighlighting": "Si el resaltado semántico debe estar habilitado para este tema.",
"editorColors.semanticHighlighting.deprecationMessage": "Use \"habilitado\" en el valor \"editor.semanticTokenColorCustomizations\" en su lugar.",
- "editorColors.semanticHighlighting.deprecationMessageMarkdown": "Use \"enabled\" en el valor \"`#editor.semanticTokenColorCustomizations#\" en su lugar.",
+ "editorColors.semanticHighlighting.deprecationMessageMarkdown": "Use \"enabled\" en el valor {0} en su lugar.",
"editorColors.semanticHighlighting.enabled": "Indica si el resaltado semántico está habilitado o deshabilitado para este tema.",
"editorColors.semanticHighlighting.rules": "Reglas de estilo del token semántico para este tema.",
"editorColors.strings": "Establece los colores y estilos para los literales de cadena.",
@@ -11588,20 +18017,24 @@
"iconThemeError": "El tema de icono de archivo es desconocido o no está instalado.",
"noIconThemeDesc": "Sin iconos de archivo",
"noIconThemeLabel": "Ninguno",
- "preferredDarkColorTheme": "Especifica el tema de color preferido para la apariencia oscura del sistema operativo cuando \"#{0}#\" está habilitado.",
- "preferredHCDarkColorTheme": "Especifica el tema de color preferido utilizado en modo oscuro de alto contraste cuando `#{0}#` está habilitado.",
- "preferredHCLightColorTheme": "Especifica el tema de color preferido que se usa en el modo claro de contraste alto cuando `#{0}#` está habilitado.",
- "preferredLightColorTheme": "Especifica el tema de color preferido para la apariencia clara del sistema operativo cuando \"#{0}#\" está habilitado.",
+ "preferredDarkColorTheme": "Especifica el tema de color cuando el modo de color del sistema es oscuro y {0} está habilitado.",
+ "preferredHCDarkColorTheme": "Especifica el tema de color cuando está en modo oscuro de alto contraste y {0} está habilitado.",
+ "preferredHCLightColorTheme": "Especifica el tema de color cuando está en modo claro de alto contraste y {0} está habilitado.",
+ "preferredLightColorTheme": "Especifica el tema de color cuando el modo de color del sistema es claro y {0} está habilitado.",
"productIconTheme": "Especifica el tema del icono del producto usado.",
"productIconThemeError": "El tema del icono del producto se desconoce o no está instalado.",
"semanticTokenColors": "Invalida los estilos y el color de token semántico del editor del tema de color seleccionado.",
"workbenchColors": "Reemplaza los colores del tema de color actual"
},
"vs/workbench/services/themes/common/themeExtensionPoints": {
+ "color themes": "Temas de color",
+ "file icon themes": "Temas de icono de archivo",
"invalid.path.1": "Se esperaba que \"contributes.{0}.path\" ({1}) se incluyera en la carpeta de la extensión ({2}). Esto puede hacer que la extensión no sea portátil.",
+ "product icon themes": "Temas de icono de producto",
"reqarray": "El punto de extensión \"{0}\" debe ser una matriz.",
"reqid": "Se esperaba una cadena en `contributes.{0}.id`. Valor proporcionado: {1}",
"reqpath": "Se esperaba una cadena en 'contributes.{0}.path'. Valor proporcionado: {1}",
+ "themes": "Temas",
"vscode.extension.contributes.iconThemes": "Aporta temas de icono de archivo.",
"vscode.extension.contributes.iconThemes.id": "Id. del tema del icono de archivo tal como se utiliza en la configuración del usuario.",
"vscode.extension.contributes.iconThemes.label": "Etiqueta del tema del icono de archivo como se muestra en la interfaz de usuario.",
@@ -11642,87 +18075,191 @@
"invalid.semanticTokenTypeConfiguration": "\"configuration.semanticTokenType\" debe ser una matriz",
"invalid.superType.format": "\"configuration.{0}.superType\" debe seguir el patrón letterOrDigit[-_letterOrDigit]*"
},
+ "vs/workbench/services/themes/electron-browser/themes.contribution": {
+ "window.systemColorTheme": "Establece el modo de color para los elementos nativos de la interfaz de usuario, como cuadros de diálogo nativos, menús y barra de título. Incluso si el sistema operativo está configurado en modo de color claro, puede seleccionar un tema de color del sistema oscuro para la ventana. También puede configurar para ajustar automáticamente en función de la configuración {0}.\r\n\r\nNota: Esta configuración se omite cuando {1} está habilitado.",
+ "window.systemColorTheme.auto": "Usar colores de widget nativos claros para temas de color claro y oscuros para temas de color oscuro.",
+ "window.systemColorTheme.dark": "Usar colores de widget nativos oscuros.",
+ "window.systemColorTheme.default": "Los colores del widget nativo coinciden con los colores del sistema.",
+ "window.systemColorTheme.light": "Usar colores de widget nativos claros."
+ },
+ "vs/workbench/services/userDataProfile/browser/extensionsResource": {
+ "all profiles and disabled": "Todos los perfiles",
+ "exclude": "Seleccionar {0} extensión",
+ "extensions": "Extensiones",
+ "installingExtension": "Instalando extensión {0}..."
+ },
+ "vs/workbench/services/userDataProfile/browser/globalStateResource": {
+ "globalState": "Estado de la interfaz de usuario"
+ },
+ "vs/workbench/services/userDataProfile/browser/keybindingsResource": {
+ "keybindings": "Métodos abreviados de teclado"
+ },
+ "vs/workbench/services/userDataProfile/browser/mcpProfileResource": {
+ "mcp": "Servidores MCP"
+ },
+ "vs/workbench/services/userDataProfile/browser/settingsResource": {
+ "settings": "Configuración"
+ },
+ "vs/workbench/services/userDataProfile/browser/snippetsResource": {
+ "exclude": "Seleccionar {0} de fragmento de código",
+ "snippets": "Fragmentos de código"
+ },
+ "vs/workbench/services/userDataProfile/browser/tasksResource": {
+ "tasks": "Tareas"
+ },
+ "vs/workbench/services/userDataProfile/browser/userDataProfileImportExportService": {
+ "applying global state": "Aplicando estado de IU...",
+ "close": "Cerrar",
+ "copy": "&&Copiar vínculo",
+ "create from profile": "Crear perfil: {0}",
+ "create keybindings": "Creando métodos abreviados de teclado...",
+ "create snippets": "Creando fragmentos de código...",
+ "create tasks": "Creando tareas...",
+ "creating settings": "Creando configuración...",
+ "export profile dialog": "Guardar perfil",
+ "export profile name": "Asigne un nombre al perfil",
+ "export profile title": "Exportar perfil",
+ "export success": "El perfil '{0}' se exportó correctamente.",
+ "file": "archivo",
+ "from default": "Del perfil predeterminado",
+ "installing extensions": "Instalando extensiones...",
+ "invalid profile content": "Este perfil no es válido.",
+ "local": "Local",
+ "open": "&&Abrir vínculo",
+ "open in": "&&Abrir en {0}",
+ "overwrite": "&&Reemplazar",
+ "profile already exists": "El perfil con el nombre '{0}' ya existe. ¿Quiere reemplazar su contenido?",
+ "profile name required": "Se debe proporcionar un nombre de perfil.",
+ "profiles.exporting": "{0}: Exportando...",
+ "progress extensions": "Aplicando extensiones...",
+ "progress global state": "Aplicando estado...",
+ "progress keybindings": "Aplicando métodos abreviados de teclado...",
+ "progress settings": "Aplicando configuración...",
+ "progress snippets": "Aplicando fragmentos de código...",
+ "progress tasks": "Aplicando tareas...",
+ "select": "Seleccionar {0}",
+ "select profile": "Seleccionar perfil",
+ "select profile content handler": "Exporte el perfil \"{0}\" como...",
+ "switching profile": "Cambiando de perfil...",
+ "troubleshoot issue": "Solucionar problema",
+ "troubleshoot profile progress": "Configurando perfil de solución de problemas: {0}"
+ },
"vs/workbench/services/userDataProfile/browser/userDataProfileManagement": {
- "cannotDeleteDefaultProfile": "No se puede eliminar el perfil de configuración predeterminado",
- "cannotRenameDefaultProfile": "No se puede cambiar el nombre del perfil de configuración predeterminado",
+ "cannotDeleteDefaultProfile": "No se puede eliminar el perfil predeterminado",
+ "cannotRenameDefaultProfile": "No se puede cambiar el nombre del perfil predeterminado",
"reload button": "&&Recargar",
- "reload message": "Cambiar un perfil de configuración requiere volver a cargar VS Code.",
- "reload message when removed": "Se ha quitado el perfil de configuración actual. Vuelva a cargar para volver al perfil de configuración predeterminado"
+ "reload message": "Cambiar un perfil requiere volver a cargar VS Code.",
+ "reload message when removed": "Se ha quitado el perfil actual. Vuelva a cargar para volver al perfil predeterminado.",
+ "reload message when switched": "El área de trabajo actual se ha quitado del perfil actual. Vuelva a cargar para volver al perfil actualizado.",
+ "reload message when updated": "Se ha actualizado el perfil actual. Vuelva a cargar para volver al perfil actualizado.",
+ "switch profile": "Cambiando a un perfil"
},
"vs/workbench/services/userDataProfile/common/userDataProfile": {
- "profile": "Perfil de configuración",
- "settings profiles": "Perfiles de configuración"
+ "defaultProfileIcon": "Icono del perfil predeterminado.",
+ "profile": "Perfil",
+ "profiles": "Perfiles"
},
- "vs/workbench/services/userDataProfile/common/userDataProfileImportExportService": {
- "applied profile": "{0}: se aplicó correctamente.",
- "imported profile": "{0}: importado correctamente.",
- "name": "Nombre del perfil",
- "profiles.applying": "{0}: aplicando...",
- "profiles.importing": "{0}: importando...",
- "save profile as": "Crear a partir del perfil actual..."
+ "vs/workbench/services/userDataProfile/common/userDataProfileIcons": {
+ "settingsViewBarIcon": "Icono de configuración en la barra de vistas."
},
"vs/workbench/services/userDataSync/browser/userDataSyncWorkbenchService": {
- "cancel": "Cancelar",
+ "and": " y ",
"choose account placeholder": "Seleccione una cuenta con la que iniciar sesión",
- "conflicts detected": "Conflictos detectados",
- "first time sync detail": "Parece que la última vez se sincronizó desde otra máquina.\r\n¿Quiere fusionar mediante \"merge\" o reemplazar con sus datos en la nube?",
+ "conflicts detected": "Conflictos detectados en {0}",
+ "download sync activity dialog open label": "Guardar",
+ "download sync activity dialog title": "Seleccionar carpeta en la que descargar la actividad de sincronización de configuración",
"last used": "Último uso con sincronización",
- "merge": "Combinar",
- "merge Manually": "Fusionar manualmente mediante \"merge\"...",
- "merge or replace": "Fusionar mediante \"merge\" o reemplazar",
- "no": "&&No",
+ "no": "No",
"no account": "No hay ninguna cuenta disponible.",
"no authentication providers": "No se puede activar la sincronización de la configuración porque no hay ningún proveedor de autenticación disponible.",
+ "no authentication providers during signin": "No se puede iniciar sesión porque no hay proveedores de autenticación disponibles.",
"others": "Otros",
- "replace local": "Reemplazar Local",
+ "replace local": "Aceptar &&remoto",
+ "replace local single": "Aceptar {0} &&remoto",
+ "replace remote": "Aceptar &&local",
+ "replace remote single": "Aceptar {0} &&local",
"reset": "Esto borrará los datos en la nube y detendrá la sincronización en todos sus dispositivos.",
"reset title": "Borrar",
"resetButton": "&&Restablecer",
- "resolve": "No se puede fusionar mediante \"merge\" debido a conflictos. Fusione mediante \"merge\" manualmente para continuar...",
+ "resolve": "Resuelva los conflictos para activar...",
+ "resolving conflicts": "Resolviendo conflictos...",
"settings sync": "Sincronización de configuración",
- "show log": "mostrar registro",
- "sign in": "Iniciar sesión",
+ "show conflicts": "&&Mostrar conflictos",
"sign in using account": "Iniciar sesión con {0}",
"signed in": "Sesión iniciada",
- "successive auth failures": "La sincronización de la configuración está suspendida debido a errores de autorización sucesivos. Vuelva a iniciar sesión para continuar con la sincronización",
"sync in progress": "La sincronización de la configuración se está activando. ¿Quiere cancelarla?",
"sync turned on": "Se activó {0}",
- "syncing resource": "Sincronizando {0}...",
+ "syncing...": "Activando...",
"turning on": "Activando...",
"yes": "&&Sí"
},
"vs/workbench/services/userDataSync/common/userDataSync": {
+ "download sync activity title": "Descargar actividad de sincronización de configuración",
"extensions": "Extensiones",
"keybindings": "Métodos abreviados de teclado",
+ "mcp": "Servidores MCP",
+ "profiles": "Perfiles",
+ "prompts": "Indicaciones e instrucciones",
"settings": "Configuración",
- "snippets": "Fragmentos de usuario",
+ "snippets": "Fragmentos de código",
"sync category": "Sincronización de configuración",
"syncViewIcon": "Vea el icono de la vista de sincronización de la configuración.",
- "tasks": "Tareas de usuario",
- "ui state label": "Estado de la interfaz de usuario"
+ "tasks": "Tareas",
+ "ui state label": "Estado de la interfaz de usuario",
+ "workspace state label": "Estado del área de trabajo"
},
"vs/workbench/services/views/browser/viewDescriptorService": {
- "cachedViewContainerPositions": "Ver personalizaciones de ubicaciones de contenedor",
- "cachedViewPositions": "Ver personalizaciones de ubicaciones",
"hideView": "Ocultar “{0}”",
- "resetViewLocation": "Restablecer ubicación"
+ "hideViewDescription": "Oculta la vista {0} si está visible y el contenedor de vistas en el que se encuentra está visible",
+ "resetViewLocation": "Restablecer ubicación",
+ "toggleVisibilityDescription": "Alterna la visibilidad de la vista {0} si el contenedor de vistas en el que se encuentra está visible",
+ "user": "Contenedor de vista de usuario"
+ },
+ "vs/workbench/services/views/browser/viewsService": {
+ "editor": "Editor de texto",
+ "focus view": "Foco en vista {0}",
+ "open view": "Abre la vista {0}",
+ "preserveFocus": "Indica si se debe conservar el foco existente al abrir la vista.",
+ "resetViewLocation": "Restablecer ubicación",
+ "show view": "Mostrar {0}",
+ "toggle view": "Alternar {0}"
},
- "vs/workbench/services/views/common/viewContainerModel": {
- "globalViewsStateStorageId": "Personalizaciones de visibilidad de vistas en el contenedor de vistas de {0}"
+ "vs/workbench/services/views/test/browser/viewContainerModel.test": {
+ "Test View 1": "Vista de pruebas 1",
+ "Test View 2": "Vista de pruebas 2",
+ "Test View 3": "Vista de pruebas 3",
+ "Test View 4": "Vista de pruebas 4",
+ "Test View 5": "Vista de pruebas 5",
+ "test": "prueba"
+ },
+ "vs/workbench/services/views/test/browser/viewDescriptorService.test": {
+ "Test View 1": "Vista de pruebas 1",
+ "Test View 2": "Vista de pruebas 2",
+ "Test View 3": "Vista de pruebas 3",
+ "Test View 4": "Vista de pruebas 4",
+ "test": "prueba"
+ },
+ "vs/workbench/services/voiceRecognition/electron-sandbox/workbenchVoiceRecognitionService": {
+ "voiceTranscription": "Transcripción de voz",
+ "voiceTranscriptionError": "Error en la transcripción de voz: {0}",
+ "voiceTranscriptionGettingReady": "Preparando el micrófono...",
+ "voiceTranscriptionRecording": "Grabando desde el micrófono..."
},
"vs/workbench/services/workingCopy/common/fileWorkingCopyManager": {
+ "confirmMakeWriteable": "'{0}' está marcado como de solo lectura. ¿Desea guardar de todos modos?",
+ "confirmMakeWriteableDetail": "Las rutas de acceso se pueden configurar como de solo lectura a través de la configuración.",
"confirmOverwrite": "'{0}' ya existe. ¿Desea reemplazarla?",
"deleted": "Eliminado",
"fileWorkingCopyCreate.source": "Archivo creado",
"fileWorkingCopyDecorations": "Decoraciones de copia de trabajo de archivo",
"fileWorkingCopyReplace.source": "Archivo reemplazado",
- "irreversible": "Ya existe un archivo o carpeta con el nombre \"{0}\" en la carpeta \"{1}\". Reemplazarlo sobrescribirá su contenido actual.",
+ "makeWriteableButtonLabel": "&&Guardar de todos modos",
+ "overwriteIrreversible": "Ya existe un archivo o carpeta con el nombre \"{0}\" en la carpeta \"{1}\". Reemplazarlo sobrescribirá su contenido actual.",
"readonly": "Solo lectura",
"readonlyAndDeleted": "Eliminado, solo lectura",
"replaceButtonLabel": "&&Reemplazar"
},
"vs/workbench/services/workingCopy/common/storedFileWorkingCopy": {
- "discard": "Descartar",
"genericSaveError": "No se pudo guardar \"{0}\": {1}",
"overwrite": "Sobrescribir",
"overwriteElevated": "Sobrescribir como Administrador...",
@@ -11733,55 +18270,62 @@
"readonlySaveErrorAdmin": "No se pudo guardar \"{0}\": el archivo es de solo lectura. Seleccione la opción de sobrescribir como administrador para reintentarlo como administrador.",
"readonlySaveErrorSudo": "No se pudo guardar '{0}': El archivo es de sólo lectura. Seleccione 'Sobrescribir como Sudo' para reintentar como superusuario.",
"retry": "Reintentar",
+ "revert": "Revertir",
"saveAs": "Guardar como...",
"saveElevated": "Reintentar como Administrador...",
"saveElevatedSudo": "Reintentar como Sudo...",
+ "saveParticipants": "Guardando \"{0}\"",
+ "saveTextFile": "Escribiendo en el archivo...",
"staleSaveError": "Error al guardar \"{0}\": El contenido del archivo es más nuevo. ¿Desea sobrescribir el archivo con sus cambios?"
},
"vs/workbench/services/workingCopy/common/storedFileWorkingCopyManager": {
"join.fileWorkingCopyManager": "Guardando copias de trabajo"
},
"vs/workbench/services/workingCopy/common/storedFileWorkingCopySaveParticipant": {
- "saveParticipants": "Guardando \"{0}\""
+ "saveParticipants1": "Ejecutando acciones de código y formateadores...",
+ "skip": "Omitir"
},
"vs/workbench/services/workingCopy/common/workingCopyHistoryService": {
"default.source": "Archivo guardado",
+ "join.workingCopyHistory": "Guardando historial local",
"moved.source": "Archivo movido",
"renamed.source": "Se ha cambiado el nombre del archivo"
},
"vs/workbench/services/workingCopy/common/workingCopyHistoryTracker": {
"undoRedo.source": "Deshacer / Rehacer"
},
- "vs/workbench/services/workingCopy/electron-sandbox/workingCopyBackupService": {
- "join.workingCopyBackups": "Copias de seguridad de las copias de trabajo"
+ "vs/workbench/services/workingCopy/electron-browser/workingCopyBackupService": {
+ "join.workingCopyBackups": "Copias de seguridad en funcionamiento"
},
- "vs/workbench/services/workingCopy/electron-sandbox/workingCopyBackupTracker": {
+ "vs/workbench/services/workingCopy/electron-browser/workingCopyBackupTracker": {
"backupBeforeShutdownDetail": "Haga clic en \"Cancelar\" para dejar de esperar y guardar o revertir los editores con cambios sin guardar.",
"backupBeforeShutdownMessage": "La copia de seguridad de editores con cambios no guardados está tardando un poco más de lo esperado...",
"backupErrorDetails": "Pruebe a guardar o revertir primero los editores con cambios sin guardar e inténtelo de nuevo.",
- "backupTrackerBackupFailed": "No se han podido guardar los siguientes editores con cambios sin guardar en la ubicación de copia de seguridad.",
+ "backupTrackerBackupFailed": "Los siguientes editores con cambios no guardados no se pudieron guardar en la ubicación de copia de seguridad.",
"backupTrackerConfirmFailed": "No se han podido guardar ni revertir los siguientes editores con cambios sin guardar.",
"discardBackupsBeforeShutdown": "Descartar las copias de seguridad está tardando un poco más de lo esperado...",
+ "ok": "&&Aceptar",
"revertBeforeShutdown": "La reversión de editores con cambios no guardados está tardando un poco más de lo esperado...",
- "saveBeforeShutdown": "Guardar los editores con cambios sin guardar está tardando un poco más de lo esperado..."
- },
- "vs/workbench/services/workingCopy/electron-sandbox/workingCopyHistoryService": {
- "join.workingCopyHistory": "Guardando historial local"
+ "saveBeforeShutdown": "Guardar los editores con cambios sin guardar está tardando un poco más de lo esperado...",
+ "shutdownForceClose": "Cerrar de todos modos",
+ "shutdownForceQuit": "Salir de todos modos",
+ "shutdownForceReload": "Recargar de todos modos"
},
"vs/workbench/services/workspaces/browser/abstractWorkspaceEditingService": {
"errorInvalidTaskConfiguration": "No se puede escribir en el archivo de configuración del área de trabajo. Por favor, abra el archivo para corregir sus errores/advertencias e inténtelo de nuevo.",
- "errorWorkspaceConfigurationFileDirty": "No se puede escribir en el archivo de configuración del área de trabajo porque el archivo tiene cambios sin guardar. Guárdelo e inténtelo de nuevo.",
"openWorkspaceConfigurationFile": "Configuración del área de trabajo abierta",
"save": "Guardar",
"saveWorkspace": "Guardar área de trabajo"
},
"vs/workbench/services/workspaces/browser/workspaceTrustEditorInput": {
- "workspaceTrustEditorInputName": "Confianza en el área de trabajo"
+ "workspaceTrustEditorInputName": "Confianza en el área de trabajo",
+ "workspaceTrustEditorLabelIcon": "Icono de la etiqueta del editor de confianza del área de trabajo."
},
- "vs/workbench/services/workspaces/electron-sandbox/workspaceEditingService": {
- "cancel": "Cancelar",
- "doNotSave": "No guardar",
- "save": "Guardar",
+ "vs/workbench/services/workspaces/electron-browser/workspaceEditingService": {
+ "doNotAskAgain": "Descartar siempre las áreas de trabajo sin título sin preguntar",
+ "doNotSave": "&&No guardar",
+ "restartExtensionHost.reason": "Apertura de un área de trabajo multiraíz",
+ "save": "&&Guardar",
"saveWorkspaceDetail": "Guarde el área de trabajo si tiene pensado volverla a abrir.",
"saveWorkspaceMessage": "¿Quiere guardar la configuración del área de trabajo como un archivo?",
"workspaceOpenedDetail": "El área de trabajo ya está abierta en otra ventana. Por favor, cierre primero la ventana y vuelta a intentarlo de nuevo.",
diff --git a/i18n/vscode-language-pack-fr/package.json b/i18n/vscode-language-pack-fr/package.json
index 6244f72779..d7b12a38e2 100644
--- a/i18n/vscode-language-pack-fr/package.json
+++ b/i18n/vscode-language-pack-fr/package.json
@@ -2,7 +2,7 @@
"name": "vscode-language-pack-fr",
"displayName": "French Language Pack for Visual Studio Code",
"description": "Language pack extension for French",
- "version": "1.70.0",
+ "version": "1.108.0",
"publisher": "MS-CEINTL",
"repository": {
"type": "git",
@@ -10,12 +10,15 @@
},
"license": "SEE MIT LICENSE IN LICENSE.md",
"engines": {
- "vscode": "^1.70.0"
+ "vscode": "^1.108.0"
},
"icon": "languagepack.png",
"categories": [
"Language Packs"
],
+ "keywords": [
+ "français"
+ ],
"contributes": {
"localizations": [
{
@@ -27,601 +30,369 @@
"id": "vscode",
"path": "./translations/main.i18n.json"
},
+ {
+ "id": "ms-vscode.js-debug",
+ "path": "./translations/extensions/ms-vscode.js-debug.i18n.json"
+ },
{
"id": "vscode.bat",
- "path": "./translations/extensions/bat.i18n.json"
+ "path": "./translations/extensions/vscode.bat.i18n.json"
+ },
+ {
+ "id": "vscode.builtin-notebook-renderers",
+ "path": "./translations/extensions/vscode.builtin-notebook-renderers.i18n.json"
},
{
"id": "vscode.clojure",
- "path": "./translations/extensions/clojure.i18n.json"
+ "path": "./translations/extensions/vscode.clojure.i18n.json"
},
{
"id": "vscode.coffeescript",
- "path": "./translations/extensions/coffeescript.i18n.json"
+ "path": "./translations/extensions/vscode.coffeescript.i18n.json"
},
{
"id": "vscode.configuration-editing",
- "path": "./translations/extensions/configuration-editing.i18n.json"
+ "path": "./translations/extensions/vscode.configuration-editing.i18n.json"
},
{
"id": "vscode.cpp",
- "path": "./translations/extensions/cpp.i18n.json"
+ "path": "./translations/extensions/vscode.cpp.i18n.json"
},
{
"id": "vscode.csharp",
- "path": "./translations/extensions/csharp.i18n.json"
+ "path": "./translations/extensions/vscode.csharp.i18n.json"
},
{
"id": "vscode.css-language-features",
- "path": "./translations/extensions/css-language-features.i18n.json"
+ "path": "./translations/extensions/vscode.css-language-features.i18n.json"
},
{
"id": "vscode.css",
- "path": "./translations/extensions/css.i18n.json"
+ "path": "./translations/extensions/vscode.css.i18n.json"
},
{
"id": "vscode.dart",
- "path": "./translations/extensions/dart.i18n.json"
+ "path": "./translations/extensions/vscode.dart.i18n.json"
},
{
"id": "vscode.debug-auto-launch",
- "path": "./translations/extensions/debug-auto-launch.i18n.json"
+ "path": "./translations/extensions/vscode.debug-auto-launch.i18n.json"
},
{
"id": "vscode.debug-server-ready",
- "path": "./translations/extensions/debug-server-ready.i18n.json"
+ "path": "./translations/extensions/vscode.debug-server-ready.i18n.json"
},
{
"id": "vscode.diff",
- "path": "./translations/extensions/diff.i18n.json"
+ "path": "./translations/extensions/vscode.diff.i18n.json"
},
{
"id": "vscode.docker",
- "path": "./translations/extensions/docker.i18n.json"
+ "path": "./translations/extensions/vscode.docker.i18n.json"
+ },
+ {
+ "id": "vscode.dotenv",
+ "path": "./translations/extensions/vscode.dotenv.i18n.json"
},
{
"id": "vscode.emmet",
- "path": "./translations/extensions/emmet.i18n.json"
+ "path": "./translations/extensions/vscode.emmet.i18n.json"
},
{
"id": "vscode.extension-editing",
- "path": "./translations/extensions/extension-editing.i18n.json"
+ "path": "./translations/extensions/vscode.extension-editing.i18n.json"
},
{
"id": "vscode.fsharp",
- "path": "./translations/extensions/fsharp.i18n.json"
+ "path": "./translations/extensions/vscode.fsharp.i18n.json"
},
{
"id": "vscode.git-base",
- "path": "./translations/extensions/git-base.i18n.json"
- },
- {
- "id": "vscode.git-ui",
- "path": "./translations/extensions/git-ui.i18n.json"
+ "path": "./translations/extensions/vscode.git-base.i18n.json"
},
{
"id": "vscode.git",
- "path": "./translations/extensions/git.i18n.json"
+ "path": "./translations/extensions/vscode.git.i18n.json"
},
{
"id": "vscode.github-authentication",
- "path": "./translations/extensions/github-authentication.i18n.json"
- },
- {
- "id": "vscode.github-browser",
- "path": "./translations/extensions/github-browser.i18n.json"
+ "path": "./translations/extensions/vscode.github-authentication.i18n.json"
},
{
"id": "vscode.github",
- "path": "./translations/extensions/github.i18n.json"
+ "path": "./translations/extensions/vscode.github.i18n.json"
},
{
"id": "vscode.go",
- "path": "./translations/extensions/go.i18n.json"
+ "path": "./translations/extensions/vscode.go.i18n.json"
},
{
"id": "vscode.groovy",
- "path": "./translations/extensions/groovy.i18n.json"
+ "path": "./translations/extensions/vscode.groovy.i18n.json"
},
{
"id": "vscode.grunt",
- "path": "./translations/extensions/grunt.i18n.json"
+ "path": "./translations/extensions/vscode.grunt.i18n.json"
},
{
"id": "vscode.gulp",
- "path": "./translations/extensions/gulp.i18n.json"
+ "path": "./translations/extensions/vscode.gulp.i18n.json"
},
{
"id": "vscode.handlebars",
- "path": "./translations/extensions/handlebars.i18n.json"
+ "path": "./translations/extensions/vscode.handlebars.i18n.json"
},
{
"id": "vscode.hlsl",
- "path": "./translations/extensions/hlsl.i18n.json"
+ "path": "./translations/extensions/vscode.hlsl.i18n.json"
},
{
"id": "vscode.html-language-features",
- "path": "./translations/extensions/html-language-features.i18n.json"
+ "path": "./translations/extensions/vscode.html-language-features.i18n.json"
},
{
"id": "vscode.html",
- "path": "./translations/extensions/html.i18n.json"
- },
- {
- "id": "vscode.image-preview",
- "path": "./translations/extensions/image-preview.i18n.json"
+ "path": "./translations/extensions/vscode.html.i18n.json"
},
{
"id": "vscode.ini",
- "path": "./translations/extensions/ini.i18n.json"
+ "path": "./translations/extensions/vscode.ini.i18n.json"
},
{
"id": "vscode.ipynb",
- "path": "./translations/extensions/ipynb.i18n.json"
+ "path": "./translations/extensions/vscode.ipynb.i18n.json"
},
{
"id": "vscode.jake",
- "path": "./translations/extensions/jake.i18n.json"
+ "path": "./translations/extensions/vscode.jake.i18n.json"
},
{
"id": "vscode.java",
- "path": "./translations/extensions/java.i18n.json"
+ "path": "./translations/extensions/vscode.java.i18n.json"
},
{
"id": "vscode.javascript",
- "path": "./translations/extensions/javascript.i18n.json"
+ "path": "./translations/extensions/vscode.javascript.i18n.json"
},
{
"id": "vscode.json-language-features",
- "path": "./translations/extensions/json-language-features.i18n.json"
+ "path": "./translations/extensions/vscode.json-language-features.i18n.json"
},
{
"id": "vscode.json",
- "path": "./translations/extensions/json.i18n.json"
+ "path": "./translations/extensions/vscode.json.i18n.json"
},
{
"id": "vscode.julia",
- "path": "./translations/extensions/julia.i18n.json"
+ "path": "./translations/extensions/vscode.julia.i18n.json"
},
{
"id": "vscode.latex",
- "path": "./translations/extensions/latex.i18n.json"
+ "path": "./translations/extensions/vscode.latex.i18n.json"
},
{
"id": "vscode.less",
- "path": "./translations/extensions/less.i18n.json"
+ "path": "./translations/extensions/vscode.less.i18n.json"
},
{
"id": "vscode.log",
- "path": "./translations/extensions/log.i18n.json"
+ "path": "./translations/extensions/vscode.log.i18n.json"
},
{
"id": "vscode.lua",
- "path": "./translations/extensions/lua.i18n.json"
+ "path": "./translations/extensions/vscode.lua.i18n.json"
},
{
"id": "vscode.make",
- "path": "./translations/extensions/make.i18n.json"
- },
- {
- "id": "vscode.markdown-basics",
- "path": "./translations/extensions/markdown-basics.i18n.json"
+ "path": "./translations/extensions/vscode.make.i18n.json"
},
{
"id": "vscode.markdown-language-features",
- "path": "./translations/extensions/markdown-language-features.i18n.json"
+ "path": "./translations/extensions/vscode.markdown-language-features.i18n.json"
},
{
"id": "vscode.markdown-math",
- "path": "./translations/extensions/markdown-math.i18n.json"
- },
- {
- "id": "vscode.markdown-notebook-math",
- "path": "./translations/extensions/markdown-notebook-math.i18n.json"
- },
- {
- "id": "vscode.merge-conflict",
- "path": "./translations/extensions/merge-conflict.i18n.json"
- },
- {
- "id": "vscode.microsoft-authentication",
- "path": "./translations/extensions/microsoft-authentication.i18n.json"
+ "path": "./translations/extensions/vscode.markdown-math.i18n.json"
},
{
- "id": "vscode.ms-vscode.github-browser",
- "path": "./translations/extensions/ms-vscode.github-browser.i18n.json"
- },
- {
- "id": "vscode.ms-vscode.js-debug",
- "path": "./translations/extensions/ms-vscode.js-debug.i18n.json"
- },
- {
- "id": "vscode.ms-vscode.node-debug",
- "path": "./translations/extensions/ms-vscode.node-debug.i18n.json"
+ "id": "vscode.markdown",
+ "path": "./translations/extensions/vscode.markdown.i18n.json"
},
{
- "id": "vscode.ms-vscode.node-debug2",
- "path": "./translations/extensions/ms-vscode.node-debug2.i18n.json"
+ "id": "vscode.media-preview",
+ "path": "./translations/extensions/vscode.media-preview.i18n.json"
},
{
- "id": "vscode.ms-vscode.remotehub",
- "path": "./translations/extensions/ms-vscode.remotehub.i18n.json"
+ "id": "vscode.merge-conflict",
+ "path": "./translations/extensions/vscode.merge-conflict.i18n.json"
},
{
- "id": "vscode.notebook-markdown-extensions",
- "path": "./translations/extensions/notebook-markdown-extensions.i18n.json"
+ "id": "vscode.mermaid-chat-features",
+ "path": "./translations/extensions/vscode.mermaid-chat-features.i18n.json"
},
{
- "id": "vscode.notebook-renderers",
- "path": "./translations/extensions/notebook-renderers.i18n.json"
+ "id": "vscode.microsoft-authentication",
+ "path": "./translations/extensions/vscode.microsoft-authentication.i18n.json"
},
{
"id": "vscode.npm",
- "path": "./translations/extensions/npm.i18n.json"
+ "path": "./translations/extensions/vscode.npm.i18n.json"
},
{
"id": "vscode.objective-c",
- "path": "./translations/extensions/objective-c.i18n.json"
+ "path": "./translations/extensions/vscode.objective-c.i18n.json"
},
{
"id": "vscode.perl",
- "path": "./translations/extensions/perl.i18n.json"
+ "path": "./translations/extensions/vscode.perl.i18n.json"
},
{
"id": "vscode.php-language-features",
- "path": "./translations/extensions/php-language-features.i18n.json"
+ "path": "./translations/extensions/vscode.php-language-features.i18n.json"
},
{
"id": "vscode.php",
- "path": "./translations/extensions/php.i18n.json"
+ "path": "./translations/extensions/vscode.php.i18n.json"
},
{
"id": "vscode.powershell",
- "path": "./translations/extensions/powershell.i18n.json"
+ "path": "./translations/extensions/vscode.powershell.i18n.json"
+ },
+ {
+ "id": "vscode.prompt",
+ "path": "./translations/extensions/vscode.prompt.i18n.json"
},
{
"id": "vscode.pug",
- "path": "./translations/extensions/pug.i18n.json"
+ "path": "./translations/extensions/vscode.pug.i18n.json"
},
{
"id": "vscode.python",
- "path": "./translations/extensions/python.i18n.json"
+ "path": "./translations/extensions/vscode.python.i18n.json"
},
{
"id": "vscode.r",
- "path": "./translations/extensions/r.i18n.json"
+ "path": "./translations/extensions/vscode.r.i18n.json"
},
{
"id": "vscode.razor",
- "path": "./translations/extensions/razor.i18n.json"
+ "path": "./translations/extensions/vscode.razor.i18n.json"
},
{
"id": "vscode.references-view",
- "path": "./translations/extensions/references-view.i18n.json"
+ "path": "./translations/extensions/vscode.references-view.i18n.json"
},
{
"id": "vscode.restructuredtext",
- "path": "./translations/extensions/restructuredtext.i18n.json"
+ "path": "./translations/extensions/vscode.restructuredtext.i18n.json"
},
{
"id": "vscode.ruby",
- "path": "./translations/extensions/ruby.i18n.json"
+ "path": "./translations/extensions/vscode.ruby.i18n.json"
},
{
"id": "vscode.rust",
- "path": "./translations/extensions/rust.i18n.json"
+ "path": "./translations/extensions/vscode.rust.i18n.json"
},
{
"id": "vscode.scss",
- "path": "./translations/extensions/scss.i18n.json"
+ "path": "./translations/extensions/vscode.scss.i18n.json"
},
{
"id": "vscode.search-result",
- "path": "./translations/extensions/search-result.i18n.json"
+ "path": "./translations/extensions/vscode.search-result.i18n.json"
},
{
"id": "vscode.shaderlab",
- "path": "./translations/extensions/shaderlab.i18n.json"
+ "path": "./translations/extensions/vscode.shaderlab.i18n.json"
},
{
"id": "vscode.shellscript",
- "path": "./translations/extensions/shellscript.i18n.json"
+ "path": "./translations/extensions/vscode.shellscript.i18n.json"
},
{
"id": "vscode.simple-browser",
- "path": "./translations/extensions/simple-browser.i18n.json"
+ "path": "./translations/extensions/vscode.simple-browser.i18n.json"
},
{
"id": "vscode.sql",
- "path": "./translations/extensions/sql.i18n.json"
+ "path": "./translations/extensions/vscode.sql.i18n.json"
},
{
"id": "vscode.swift",
- "path": "./translations/extensions/swift.i18n.json"
+ "path": "./translations/extensions/vscode.swift.i18n.json"
},
{
- "id": "vscode.testing-editor-contributions",
- "path": "./translations/extensions/testing-editor-contributions.i18n.json"
+ "id": "vscode.terminal-suggest",
+ "path": "./translations/extensions/vscode.terminal-suggest.i18n.json"
},
{
"id": "vscode.theme-abyss",
- "path": "./translations/extensions/theme-abyss.i18n.json"
+ "path": "./translations/extensions/vscode.theme-abyss.i18n.json"
},
{
"id": "vscode.theme-defaults",
- "path": "./translations/extensions/theme-defaults.i18n.json"
+ "path": "./translations/extensions/vscode.theme-defaults.i18n.json"
},
{
"id": "vscode.theme-kimbie-dark",
- "path": "./translations/extensions/theme-kimbie-dark.i18n.json"
+ "path": "./translations/extensions/vscode.theme-kimbie-dark.i18n.json"
},
{
"id": "vscode.theme-monokai-dimmed",
- "path": "./translations/extensions/theme-monokai-dimmed.i18n.json"
+ "path": "./translations/extensions/vscode.theme-monokai-dimmed.i18n.json"
},
{
"id": "vscode.theme-monokai",
- "path": "./translations/extensions/theme-monokai.i18n.json"
+ "path": "./translations/extensions/vscode.theme-monokai.i18n.json"
},
{
"id": "vscode.theme-quietlight",
- "path": "./translations/extensions/theme-quietlight.i18n.json"
+ "path": "./translations/extensions/vscode.theme-quietlight.i18n.json"
},
{
"id": "vscode.theme-red",
- "path": "./translations/extensions/theme-red.i18n.json"
- },
- {
- "id": "vscode.theme-seti",
- "path": "./translations/extensions/theme-seti.i18n.json"
+ "path": "./translations/extensions/vscode.theme-red.i18n.json"
},
{
"id": "vscode.theme-solarized-dark",
- "path": "./translations/extensions/theme-solarized-dark.i18n.json"
+ "path": "./translations/extensions/vscode.theme-solarized-dark.i18n.json"
},
{
"id": "vscode.theme-solarized-light",
- "path": "./translations/extensions/theme-solarized-light.i18n.json"
+ "path": "./translations/extensions/vscode.theme-solarized-light.i18n.json"
},
{
"id": "vscode.theme-tomorrow-night-blue",
- "path": "./translations/extensions/theme-tomorrow-night-blue.i18n.json"
+ "path": "./translations/extensions/vscode.theme-tomorrow-night-blue.i18n.json"
},
{
- "id": "vscode.typescript-basics",
- "path": "./translations/extensions/typescript-basics.i18n.json"
+ "id": "vscode.tunnel-forwarding",
+ "path": "./translations/extensions/vscode.tunnel-forwarding.i18n.json"
},
{
"id": "vscode.typescript-language-features",
- "path": "./translations/extensions/typescript-language-features.i18n.json"
- },
- {
- "id": "vscode.vb",
- "path": "./translations/extensions/vb.i18n.json"
- },
- {
- "id": "vscode.vscode-chrome-debug-core",
- "path": "./translations/extensions/vscode-chrome-debug-core.i18n.json"
- },
- {
- "id": "ms-vscode.node-debug",
- "path": "./translations/extensions/vscode-node-debug.i18n.json"
- },
- {
- "id": "ms-vscode.node-debug2",
- "path": "./translations/extensions/vscode-node-debug2.i18n.json"
+ "path": "./translations/extensions/vscode.typescript-language-features.i18n.json"
},
{
- "id": "vscode.vscode.bat",
- "path": "./translations/extensions/vscode.bat.i18n.json"
- },
- {
- "id": "vscode.vscode.clojure",
- "path": "./translations/extensions/vscode.clojure.i18n.json"
- },
- {
- "id": "vscode.vscode.coffeescript",
- "path": "./translations/extensions/vscode.coffeescript.i18n.json"
- },
- {
- "id": "vscode.vscode.cpp",
- "path": "./translations/extensions/vscode.cpp.i18n.json"
- },
- {
- "id": "vscode.vscode.csharp",
- "path": "./translations/extensions/vscode.csharp.i18n.json"
- },
- {
- "id": "vscode.vscode.css",
- "path": "./translations/extensions/vscode.css.i18n.json"
- },
- {
- "id": "vscode.vscode.docker",
- "path": "./translations/extensions/vscode.docker.i18n.json"
- },
- {
- "id": "vscode.vscode.fsharp",
- "path": "./translations/extensions/vscode.fsharp.i18n.json"
- },
- {
- "id": "vscode.vscode.go",
- "path": "./translations/extensions/vscode.go.i18n.json"
- },
- {
- "id": "vscode.vscode.groovy",
- "path": "./translations/extensions/vscode.groovy.i18n.json"
- },
- {
- "id": "vscode.vscode.handlebars",
- "path": "./translations/extensions/vscode.handlebars.i18n.json"
- },
- {
- "id": "vscode.vscode.hlsl",
- "path": "./translations/extensions/vscode.hlsl.i18n.json"
- },
- {
- "id": "vscode.vscode.html",
- "path": "./translations/extensions/vscode.html.i18n.json"
- },
- {
- "id": "vscode.vscode.ini",
- "path": "./translations/extensions/vscode.ini.i18n.json"
- },
- {
- "id": "vscode.vscode.java",
- "path": "./translations/extensions/vscode.java.i18n.json"
- },
- {
- "id": "vscode.vscode.javascript",
- "path": "./translations/extensions/vscode.javascript.i18n.json"
- },
- {
- "id": "vscode.vscode.json",
- "path": "./translations/extensions/vscode.json.i18n.json"
- },
- {
- "id": "vscode.vscode.less",
- "path": "./translations/extensions/vscode.less.i18n.json"
- },
- {
- "id": "vscode.vscode.log",
- "path": "./translations/extensions/vscode.log.i18n.json"
- },
- {
- "id": "vscode.vscode.lua",
- "path": "./translations/extensions/vscode.lua.i18n.json"
- },
- {
- "id": "vscode.vscode.make",
- "path": "./translations/extensions/vscode.make.i18n.json"
- },
- {
- "id": "vscode.vscode.markdown",
- "path": "./translations/extensions/vscode.markdown.i18n.json"
- },
- {
- "id": "vscode.vscode.objective-c",
- "path": "./translations/extensions/vscode.objective-c.i18n.json"
- },
- {
- "id": "vscode.vscode.perl",
- "path": "./translations/extensions/vscode.perl.i18n.json"
- },
- {
- "id": "vscode.vscode.php",
- "path": "./translations/extensions/vscode.php.i18n.json"
- },
- {
- "id": "vscode.vscode.powershell",
- "path": "./translations/extensions/vscode.powershell.i18n.json"
- },
- {
- "id": "vscode.vscode.pug",
- "path": "./translations/extensions/vscode.pug.i18n.json"
- },
- {
- "id": "vscode.vscode.r",
- "path": "./translations/extensions/vscode.r.i18n.json"
- },
- {
- "id": "vscode.vscode.razor",
- "path": "./translations/extensions/vscode.razor.i18n.json"
- },
- {
- "id": "vscode.vscode.ruby",
- "path": "./translations/extensions/vscode.ruby.i18n.json"
- },
- {
- "id": "vscode.vscode.rust",
- "path": "./translations/extensions/vscode.rust.i18n.json"
- },
- {
- "id": "vscode.vscode.scss",
- "path": "./translations/extensions/vscode.scss.i18n.json"
- },
- {
- "id": "vscode.vscode.shaderlab",
- "path": "./translations/extensions/vscode.shaderlab.i18n.json"
- },
- {
- "id": "vscode.vscode.shellscript",
- "path": "./translations/extensions/vscode.shellscript.i18n.json"
- },
- {
- "id": "vscode.vscode.sql",
- "path": "./translations/extensions/vscode.sql.i18n.json"
- },
- {
- "id": "vscode.vscode.swift",
- "path": "./translations/extensions/vscode.swift.i18n.json"
- },
- {
- "id": "vscode.vscode.theme-abyss",
- "path": "./translations/extensions/vscode.theme-abyss.i18n.json"
- },
- {
- "id": "vscode.vscode.theme-defaults",
- "path": "./translations/extensions/vscode.theme-defaults.i18n.json"
- },
- {
- "id": "vscode.vscode.theme-kimbie-dark",
- "path": "./translations/extensions/vscode.theme-kimbie-dark.i18n.json"
- },
- {
- "id": "vscode.vscode.theme-monokai-dimmed",
- "path": "./translations/extensions/vscode.theme-monokai-dimmed.i18n.json"
- },
- {
- "id": "vscode.vscode.theme-monokai",
- "path": "./translations/extensions/vscode.theme-monokai.i18n.json"
- },
- {
- "id": "vscode.vscode.theme-quietlight",
- "path": "./translations/extensions/vscode.theme-quietlight.i18n.json"
- },
- {
- "id": "vscode.vscode.theme-red",
- "path": "./translations/extensions/vscode.theme-red.i18n.json"
- },
- {
- "id": "vscode.vscode.theme-solarized-dark",
- "path": "./translations/extensions/vscode.theme-solarized-dark.i18n.json"
- },
- {
- "id": "vscode.vscode.theme-solarized-light",
- "path": "./translations/extensions/vscode.theme-solarized-light.i18n.json"
- },
- {
- "id": "vscode.vscode.theme-tomorrow-night-blue",
- "path": "./translations/extensions/vscode.theme-tomorrow-night-blue.i18n.json"
- },
- {
- "id": "vscode.vscode.typescript",
+ "id": "vscode.typescript",
"path": "./translations/extensions/vscode.typescript.i18n.json"
},
{
- "id": "vscode.vscode.vb",
+ "id": "vscode.vb",
"path": "./translations/extensions/vscode.vb.i18n.json"
},
{
- "id": "vscode.vscode.vscode-theme-seti",
+ "id": "vscode.vscode-theme-seti",
"path": "./translations/extensions/vscode.vscode-theme-seti.i18n.json"
},
- {
- "id": "vscode.vscode.xml",
- "path": "./translations/extensions/vscode.xml.i18n.json"
- },
- {
- "id": "vscode.vscode.yaml",
- "path": "./translations/extensions/vscode.yaml.i18n.json"
- },
{
"id": "vscode.xml",
- "path": "./translations/extensions/xml.i18n.json"
+ "path": "./translations/extensions/vscode.xml.i18n.json"
},
{
"id": "vscode.yaml",
- "path": "./translations/extensions/yaml.i18n.json"
+ "path": "./translations/extensions/vscode.yaml.i18n.json"
}
]
}
diff --git a/i18n/vscode-language-pack-fr/translations/extensions/bat.i18n.json b/i18n/vscode-language-pack-fr/translations/extensions/bat.i18n.json
deleted file mode 100644
index eb8b6e5933..0000000000
--- a/i18n/vscode-language-pack-fr/translations/extensions/bat.i18n.json
+++ /dev/null
@@ -1,16 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "package": {
- "description": "Fournit des extraits de code, la coloration syntaxique, la correspondance des crochets et le repli dans les fichiers de commandes Windows.",
- "displayName": "Bases du langage Windows Bat"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-fr/translations/extensions/clojure.i18n.json b/i18n/vscode-language-pack-fr/translations/extensions/clojure.i18n.json
deleted file mode 100644
index eac0349f90..0000000000
--- a/i18n/vscode-language-pack-fr/translations/extensions/clojure.i18n.json
+++ /dev/null
@@ -1,16 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "package": {
- "description": "Fournit la coloration syntaxique et la correspondance des crochets dans les fichiers Clojure.",
- "displayName": "Bases du langage Clojure"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-fr/translations/extensions/coffeescript.i18n.json b/i18n/vscode-language-pack-fr/translations/extensions/coffeescript.i18n.json
deleted file mode 100644
index cb7a0d9b48..0000000000
--- a/i18n/vscode-language-pack-fr/translations/extensions/coffeescript.i18n.json
+++ /dev/null
@@ -1,16 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "package": {
- "description": "Fournit des extraits de code, la coloration syntaxique, la correspondance des crochets et le repli dans les fichiers CoffeeScript.",
- "displayName": "Bases du langage CoffeeScript"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-fr/translations/extensions/configuration-editing.i18n.json b/i18n/vscode-language-pack-fr/translations/extensions/configuration-editing.i18n.json
deleted file mode 100644
index d19c9d2b7a..0000000000
--- a/i18n/vscode-language-pack-fr/translations/extensions/configuration-editing.i18n.json
+++ /dev/null
@@ -1,70 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "dist/configurationEditingMain": {
- "cwd": "Répertoire de travail actif de l'exécuteur de tâches au démarrage",
- "defaultBuildTask": "Nom de la tâche de build par défaut. S'il y en a plusieurs, une recherche rapide s'affiche pour choisir la tâche de build.",
- "extensionInstallFolder": "Chemin d’accès où une extension est installée.",
- "file": "Fichier ouvert actif",
- "fileBasename": "Nom de base du fichier ouvert actif",
- "fileBasenameNoExtension": "Nom de base du fichier ouvert actif, sans extension de fichier",
- "fileDirname": "Nom de répertoire du fichier ouvert actif",
- "fileExtname": "Extension du fichier ouvert actif",
- "lineNumber": "Numéro de la ligne sélectionnée dans le fichier actif",
- "pathSeparator": "Caractère utilisé par le système d’exploitation pour séparer les composants dans les chemins d’accès aux fichiers",
- "relativeFile": "Fichier ouvert actif relatif à ${workspaceFolder}",
- "relativeFileDirname": "Valeur dirname du fichier actuellement ouvert, relative à ${workspaceFolder}",
- "selectedText": "Texte sélectionné dans le fichier actif",
- "workspaceFolder": "Chemin du dossier ouvert dans VS Code",
- "workspaceFolderBasename": "Nom du dossier ouvert dans VS Code, sans barres obliques (/)"
- },
- "dist/extensionsProposals": {
- "exampleExtension": "Exemple"
- },
- "dist/settingsDocumentHelper": {
- "activeEditor": "Utiliser le langage de l'éditeur de texte actuellement actif le cas échéant",
- "activeEditorLong": "chemin complet du fichier (par ex., /Users/Development/myFolder/myFileFolder/myFile.txt)",
- "activeEditorMedium": "chemin de fichier relatif au dossier de l'espace de travail (par ex., myFolder/myFileFolder/myFile.txt)",
- "activeEditorShort": "le nom du fichier (ex: monfichier.txt)",
- "activeFolderLong": "chemin complet du dossier contenant le fichier (par ex., /Users/Development/myFolder/myFileFolder)",
- "activeFolderMedium": "chemin du dossier contenant le fichier, relatif au dossier de l'espace de travail (par ex., myFolder/myFileFolder)",
- "activeFolderShort": "nom du dossier contenant le fichier (par ex., myFileFolder)",
- "appName": "exemple : VS Code",
- "assocDescriptionFile": "Mappez au langage ayant l'identificateur spécifié tous les fichiers dont le nom correspond au modèle Glob.",
- "assocDescriptionPath": "Mappez au langage ayant l'identificateur spécifié tous les fichiers dont le chemin correspond au modèle Glob de chemin absolu.",
- "assocLabelFile": "Fichiers avec extension",
- "assocLabelPath": "Fichiers avec chemin",
- "derivedDescription": "Faites correspondre les fichiers ayant des frères portant le même nom, mais avec une extension distincte.",
- "derivedLabel": "Fichiers avec frères par nom",
- "dirty": "un indicateur pour quand l’éditeur actif a des modifications non enregistrées.",
- "fileDescription": "Faites correspondre tous les fichiers ayant une extension de fichier spécifique.",
- "fileLabel": "Fichiers par extension",
- "filesDescription": "Faites correspondre tous les fichiers, indépendamment de leurs extensions.",
- "filesLabel": "Fichiers avec plusieurs extensions",
- "folderDescription": "Faites correspondre un dossier portant un nom spécifique, indépendamment de son emplacement.",
- "folderLabel": "Dossier par nom (tous les emplacements)",
- "folderName": "nom du dossier de l'espace de travail auquel le fichier appartient (ex: monDossier)",
- "folderPath": "chemin d’accès du dossier de l'espace de travail auquel le fichier appartient (ex: /Users/Development/myFolder)",
- "remoteName": "par ex., SSH",
- "rootName": "nom de l’espace de travail (ex: monDossier ou monEspaceDeTravail)",
- "rootPath": "chemin d’accès de l’espace de travail (ex: /Users/Development/myWorkspace)",
- "separator": "séparateur conditionnel (' - ') qui s'affiche uniquement quand il est entouré de variables avec des valeurs",
- "siblingsDescription": "Faites correspondre les fichiers ayant des frères portant le même nom, mais avec une extension distincte.",
- "topFolderDescription": "Faites correspondre un dossier de premier niveau portant un nom spécifique.",
- "topFolderLabel": "Dossier par nom (premier niveau)",
- "topFoldersDescription": "Faites correspondre plusieurs dossiers de premier niveau.",
- "topFoldersLabel": "Dossiers avec plusieurs noms (premier niveau)"
- },
- "package": {
- "description": "Fournit des fonctionnalités (IntelliSense avancé, correction automatique) dans les fichiers de configuration comme les fichiers de paramètres, de lancement et de recommandation d'extension.",
- "displayName": "Configuration de l'édition"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-fr/translations/extensions/cpp.i18n.json b/i18n/vscode-language-pack-fr/translations/extensions/cpp.i18n.json
deleted file mode 100644
index 7b4e3496a3..0000000000
--- a/i18n/vscode-language-pack-fr/translations/extensions/cpp.i18n.json
+++ /dev/null
@@ -1,16 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "package": {
- "description": "Fournit des extraits de code, la coloration syntaxique, la correspondance des crochets et le repli dans les fichiers C/C++.",
- "displayName": "Concepts de base du langage C/C++"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-fr/translations/extensions/csharp.i18n.json b/i18n/vscode-language-pack-fr/translations/extensions/csharp.i18n.json
deleted file mode 100644
index e01b4366da..0000000000
--- a/i18n/vscode-language-pack-fr/translations/extensions/csharp.i18n.json
+++ /dev/null
@@ -1,16 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "package": {
- "description": "Fournit les extraits de code, la coloration syntaxique, la correspondance des parenthèses et le repliement dans les fichiers C#.",
- "displayName": "Bases du langage C#"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-fr/translations/extensions/css-language-features.i18n.json b/i18n/vscode-language-pack-fr/translations/extensions/css-language-features.i18n.json
deleted file mode 100644
index e0d1d9efd5..0000000000
--- a/i18n/vscode-language-pack-fr/translations/extensions/css-language-features.i18n.json
+++ /dev/null
@@ -1,128 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "client\\dist\\node/cssClient": {
- "cssserver.name": "Serveur de langage CSS",
- "folding.end": "Fin de la zone de pliage",
- "folding.start": "Début de la zone de pliage"
- },
- "package": {
- "css.colorDecorators.enable.deprecationMessage": "Le paramètre 'css.colorDecorators.enable' a été déprécié en faveur de 'editor.colorDecorators'.",
- "css.completion.completePropertyWithSemicolon.desc": "Insère un point-virgule à la fin de la ligne au moment de la complétion des propriétés CSS.",
- "css.completion.triggerPropertyValueCompletion.desc": "Par défaut, VS Code déclenche la complétion de la valeur de propriété après la sélection d'une propriété CSS. Utilisez ce paramètre pour désactiver ce comportement.",
- "css.customData.desc": "Liste de chemins d’accès relatifs vers des fichiers JSON respectant le [format de données personnalisé](https://github.com/microsoft/vscode-css-languageservice/blob/master/docs/customData.md).\r\n\r\nVS Code charge des données personnalisées au démarrage pour améliorer la prise en charge de CSS : les propriétés, directives @, pseudo-classes et pseudo-éléments CSS personnalisés que vous spécifiez dans les fichiers JSON.\r\n\r\nLes chemins de fichiers sont relatifs à l’espace de travail, et seuls les paramètres de dossier d’espace de travail sont pris en compte.",
- "css.format.braceStyle.desc": "Placez des accolades sur la même ligne que les règles (« Réduire ») ou placez des accolades sur une ligne (« Développer »).",
- "css.format.enable.desc": "Activez/désactivez le formateur CSS par défaut.",
- "css.format.maxPreserveNewLines.desc": "Nombre maximal de sauts de ligne à conserver dans un bloc lorsque « #css.format.preserveNewLines# » est activé.",
- "css.format.newlineBetweenRules.desc": "Séparez les ensembles de règles par une ligne vide.",
- "css.format.newlineBetweenSelectors.desc": "Séparez les sélecteurs par une nouvelle ligne.",
- "css.format.preserveNewLines.desc": "Indique si les sauts de ligne existants avant les éléments doivent être conservés.",
- "css.format.spaceAroundSelectorSeparator.desc": "Assurez-vous qu’un caractère d’espace autour des séparateurs de sélecteurs '>', « + », « ~ » (par exemple, « a > b »).",
- "css.hover.documentation": "Affiche la documentation relative aux balises et aux attributs CSS quand le curseur pointe dessus.",
- "css.hover.references": "Affiche les références MDN pour CSS en cas de pointage du curseur.",
- "css.lint.argumentsInColorFunction.desc": "Nombre de paramètres non valide.",
- "css.lint.boxModel.desc": "Ne pas utiliser `width` ou `height` lorsque vous utilisez `padding` ou `border`.",
- "css.lint.compatibleVendorPrefixes.desc": "Quand vous utilisez un préfixe spécifique au fournisseur assurez-vous d’inclure toutes les autres propriétés spécifiques au fournisseur.",
- "css.lint.duplicateProperties.desc": "Ne pas utiliser les définitions de style en doublon.",
- "css.lint.emptyRules.desc": "Ne pas utiliser d'ensembles de règles vides",
- "css.lint.float.desc": "Évitez d’utiliser `float`. Les floats conduisent à un CSS fragile qui est facile à casser, si un des aspects de la mise en page change.",
- "css.lint.fontFaceProperties.desc": "La règle '@font-face' doit définir les propriétés 'src' et 'font-family'.",
- "css.lint.hexColorLength.desc": "Les couleurs hexadécimales doivent contenir trois ou six chiffres hexadécimaux.",
- "css.lint.idSelector.desc": "Les sélecteurs ne doivent pas contenir d'ID, car ces règles sont trop fortement couplées au code HTML.",
- "css.lint.ieHack.desc": "Les hacks IE sont uniquement nécessaires pour prendre en charge IE7 et antérieur.",
- "css.lint.importStatement.desc": "Les instructions Import ne se chargent pas en parallèle.",
- "css.lint.important.desc": "Evitez d'utiliser `!important`. Cela indique que la spécificité de l'intégralité du code CSS est incorrecte et qu'il doit être refactorisé.",
- "css.lint.propertyIgnoredDueToDisplay.desc": "La propriété est ignorée en raison du display. Par exemple, avec 'display: inline', les propriétés `width`, `height`, `margin-top`, `margin-bottom`, et `float` n’ont aucun effet.",
- "css.lint.universalSelector.desc": "Le sélecteur universel (`*`) est connu pour être lent.",
- "css.lint.unknownAtRules.desc": "Règle-at inconnue.",
- "css.lint.unknownProperties.desc": "Propriété inconnue.",
- "css.lint.unknownVendorSpecificProperties.desc": "Propriété spécifique à un fournisseur inconnue.",
- "css.lint.validProperties.desc": "Liste de propriétés non validées par la règle 'unknownProperties'.",
- "css.lint.vendorPrefix.desc": "Quand vous utilisez un préfixe spécifique au fournisseur, incluez également la propriété standard.",
- "css.lint.zeroUnits.desc": "Aucune unité nécessaire pour zéro.",
- "css.title": "CSS",
- "css.trace.server.desc": "Trace la communication entre VS Code et le serveur de langage CSS.",
- "css.validate.desc": "Active ou désactive toutes les validations",
- "css.validate.title": "Contrôle la validation CSS et la gravité des problèmes.",
- "description": "Fournit une prise en charge riche de langage pour les fichiers CSS, LESS et SCSS",
- "displayName": "Fonctionnalités de langage CSS",
- "less.colorDecorators.enable.deprecationMessage": "Le paramètre 'less.colorDecorators.enable' a été déprécié en faveur de 'editor.colorDecorators'.",
- "less.completion.completePropertyWithSemicolon.desc": "Insère un point-virgule à la fin de la ligne au moment de la complétion des propriétés CSS.",
- "less.completion.triggerPropertyValueCompletion.desc": "Par défaut, VS Code déclenche la complétion de la valeur de propriété après la sélection d'une propriété CSS. Utilisez ce paramètre pour désactiver ce comportement.",
- "less.format.braceStyle.desc": "Placez des accolades sur la même ligne que les règles (« Réduire ») ou placez des accolades sur une ligne (« Développer »).",
- "less.format.enable.desc": "Activez/désactivez le formateur LESS par défaut.",
- "less.format.maxPreserveNewLines.desc": "Nombre maximal de sauts de ligne à conserver dans un bloc lorsque « #less.format.preserveNewLines# » est activé.",
- "less.format.newlineBetweenRules.desc": "Séparez les ensembles de règles par une ligne vide.",
- "less.format.newlineBetweenSelectors.desc": "Séparez les sélecteurs par une nouvelle ligne.",
- "less.format.preserveNewLines.desc": "Indique si les sauts de ligne existants avant les éléments doivent être conservés.",
- "less.format.spaceAroundSelectorSeparator.desc": "Assurez-vous qu’un caractère d’espace autour des séparateurs de sélecteurs '>', « + », « ~ » (par exemple, « a > b »).",
- "less.hover.documentation": "Affiche la documentation relative aux balises et aux attributs LESS quand le curseur pointe dessus.",
- "less.hover.references": "Affiche les références MDN pour LESS en cas de pointage du curseur.",
- "less.lint.argumentsInColorFunction.desc": "Nombre de paramètres non valide.",
- "less.lint.boxModel.desc": "Ne pas utiliser `width` ou `height` lorsque vous utilisez `padding` ou `border`.",
- "less.lint.compatibleVendorPrefixes.desc": "Quand vous utilisez un préfixe spécifique au fournisseur assurez-vous d’inclure toutes les autres propriétés spécifiques au fournisseur.",
- "less.lint.duplicateProperties.desc": "Ne pas utiliser les définitions de style en doublon.",
- "less.lint.emptyRules.desc": "Ne pas utiliser d'ensembles de règles vides",
- "less.lint.float.desc": "Évitez d’utiliser `float`. Les floats conduisent à un CSS fragile qui est facile à casser, si un des aspects de la mise en page change.",
- "less.lint.fontFaceProperties.desc": "La règle '@font-face' doit définir les propriétés 'src' et 'font-family'.",
- "less.lint.hexColorLength.desc": "Les couleurs hexadécimales doivent contenir trois ou six chiffres hexadécimaux.",
- "less.lint.idSelector.desc": "Les sélecteurs ne doivent pas contenir d'ID, car ces règles sont trop fortement couplées au code HTML.",
- "less.lint.ieHack.desc": "Les hacks IE sont uniquement nécessaires pour prendre en charge IE7 et antérieur.",
- "less.lint.importStatement.desc": "Les instructions Import ne se chargent pas en parallèle.",
- "less.lint.important.desc": "Evitez d'utiliser `!important`. Cela indique que la spécificité de l'intégralité du code CSS est incorrecte et qu'il doit être refactorisé.",
- "less.lint.propertyIgnoredDueToDisplay.desc": "La propriété est ignorée en raison du display. Par exemple, avec 'display: inline', les propriétés `width`, `height`, `margin-top`, `margin-bottom`, et `float` n’ont aucun effet.",
- "less.lint.universalSelector.desc": "Le sélecteur universel (`*`) est connu pour être lent.",
- "less.lint.unknownAtRules.desc": "Règle-at inconnue.",
- "less.lint.unknownProperties.desc": "Propriété inconnue.",
- "less.lint.unknownVendorSpecificProperties.desc": "Propriété spécifique à un fournisseur inconnue.",
- "less.lint.validProperties.desc": "Liste de propriétés non validées par la règle 'unknownProperties'.",
- "less.lint.vendorPrefix.desc": "Quand vous utilisez un préfixe spécifique au fournisseur, incluez également la propriété standard.",
- "less.lint.zeroUnits.desc": "Aucune unité nécessaire pour zéro.",
- "less.title": "LESS",
- "less.validate.desc": "Active ou désactive toutes les validations",
- "less.validate.title": "Contrôle la validation LESS et la gravité des problèmes.",
- "scss.colorDecorators.enable.deprecationMessage": "Le paramètre 'scss.colorDecorators.enable' a été déprécié en faveur de 'editor.colorDecorators'.",
- "scss.completion.completePropertyWithSemicolon.desc": "Insère un point-virgule à la fin de la ligne au moment de la complétion des propriétés CSS.",
- "scss.completion.triggerPropertyValueCompletion.desc": "Par défaut, VS Code déclenche la complétion de la valeur de propriété après la sélection d'une propriété CSS. Utilisez ce paramètre pour désactiver ce comportement.",
- "scss.format.braceStyle.desc": "Placez des accolades sur la même ligne que les règles (« Réduire ») ou placez des accolades sur une ligne (« Développer »).",
- "scss.format.enable.desc": "Activez/désactivez le formateur SCSS par défaut.",
- "scss.format.maxPreserveNewLines.desc": "Nombre maximal de sauts de ligne à conserver dans un bloc lorsque « #scss.format.preserveNewLines# » est activé.",
- "scss.format.newlineBetweenRules.desc": "Séparez les ensembles de règles par une ligne vide.",
- "scss.format.newlineBetweenSelectors.desc": "Séparez les sélecteurs par une nouvelle ligne.",
- "scss.format.preserveNewLines.desc": "Indique si les sauts de ligne existants avant les éléments doivent être conservés.",
- "scss.format.spaceAroundSelectorSeparator.desc": "Assurez-vous qu’un caractère d’espace autour des séparateurs de sélecteurs '>', « + », « ~ » (par exemple, « a > b »).",
- "scss.hover.documentation": "Affiche la documentation relative aux balises et aux attributs SCSS quand le curseur pointe dessus.",
- "scss.hover.references": "Affiche les références MDN pour SCSS en cas de pointage du curseur.",
- "scss.lint.argumentsInColorFunction.desc": "Nombre de paramètres non valide.",
- "scss.lint.boxModel.desc": "Ne pas utiliser `width` ou `height` lorsque vous utilisez `padding` ou `border`.",
- "scss.lint.compatibleVendorPrefixes.desc": "Quand vous utilisez un préfixe spécifique au fournisseur assurez-vous d’inclure toutes les autres propriétés spécifiques au fournisseur.",
- "scss.lint.duplicateProperties.desc": "Ne pas utiliser les définitions de style en doublon.",
- "scss.lint.emptyRules.desc": "Ne pas utiliser d'ensembles de règles vides",
- "scss.lint.float.desc": "Évitez d’utiliser `float`. Les floats conduisent à un CSS fragile qui est facile à casser, si un des aspects de la mise en page change.",
- "scss.lint.fontFaceProperties.desc": "La règle '@font-face' doit définir les propriétés 'src' et 'font-family'.",
- "scss.lint.hexColorLength.desc": "Les couleurs hexadécimales doivent contenir trois ou six chiffres hexadécimaux.",
- "scss.lint.idSelector.desc": "Les sélecteurs ne doivent pas contenir d'ID, car ces règles sont trop fortement couplées au code HTML.",
- "scss.lint.ieHack.desc": "Les hacks IE sont uniquement nécessaires pour prendre en charge IE7 et antérieur.",
- "scss.lint.importStatement.desc": "Les instructions Import ne se chargent pas en parallèle.",
- "scss.lint.important.desc": "Evitez d'utiliser `!important`. Cela indique que la spécificité de l'intégralité du code CSS est incorrecte et qu'il doit être refactorisé.",
- "scss.lint.propertyIgnoredDueToDisplay.desc": "La propriété est ignorée en raison du display. Par exemple, avec 'display: inline', les propriétés `width`, `height`, `margin-top`, `margin-bottom`, et `float` n’ont aucun effet.",
- "scss.lint.universalSelector.desc": "Le sélecteur universel (`*`) est connu pour être lent.",
- "scss.lint.unknownAtRules.desc": "Règle-at inconnue.",
- "scss.lint.unknownProperties.desc": "Propriété inconnue.",
- "scss.lint.unknownVendorSpecificProperties.desc": "Propriété spécifique à un fournisseur inconnue.",
- "scss.lint.validProperties.desc": "Liste de propriétés non validées par la règle 'unknownProperties'.",
- "scss.lint.vendorPrefix.desc": "Quand vous utilisez un préfixe spécifique au fournisseur, incluez également la propriété standard.",
- "scss.lint.zeroUnits.desc": "Aucune unité nécessaire pour zéro.",
- "scss.title": "SCSS (Sass)",
- "scss.validate.desc": "Active ou désactive toutes les validations",
- "scss.validate.title": "Contrôle la validation SCSS et la gravité des problèmes."
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-fr/translations/extensions/css.i18n.json b/i18n/vscode-language-pack-fr/translations/extensions/css.i18n.json
deleted file mode 100644
index d6c2a6e76a..0000000000
--- a/i18n/vscode-language-pack-fr/translations/extensions/css.i18n.json
+++ /dev/null
@@ -1,16 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "package": {
- "description": "Fournit la coloration syntaxique et la correspondance des parenthèses dans les fichiers CSS, LESS et SCSS.",
- "displayName": "Concepts de base du langage CSS"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-fr/translations/extensions/debug-auto-launch.i18n.json b/i18n/vscode-language-pack-fr/translations/extensions/debug-auto-launch.i18n.json
deleted file mode 100644
index 1683b2bd45..0000000000
--- a/i18n/vscode-language-pack-fr/translations/extensions/debug-auto-launch.i18n.json
+++ /dev/null
@@ -1,38 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "dist/extension": {
- "debug.javascript.autoAttach.always.description": "Effectue l'attachement automatique à chaque processus Node.js lancé dans le terminal",
- "debug.javascript.autoAttach.always.label": "Toujours",
- "debug.javascript.autoAttach.disabled.description": "L'attachement automatique est désactivé et n'apparaît pas dans la barre d'état",
- "debug.javascript.autoAttach.disabled.label": "Désactivé",
- "debug.javascript.autoAttach.onlyWithFlag.description": "Effectue l'attachement automatique uniquement quand l'indicateur '--inspect' est spécifié",
- "debug.javascript.autoAttach.onlyWithFlag.label": "Uniquement avec indicateur",
- "debug.javascript.autoAttach.smart.description": "Effectue l'attachement automatique durant l'exécution de scripts qui ne se trouvent pas dans un dossier node_modules",
- "debug.javascript.autoAttach.smart.label": "Intelligent",
- "scope.global": "Activer/désactiver l'attachement automatique sur cette machine",
- "scope.workspace": "Activer/désactiver l'attachement automatique dans cet espace de travail",
- "status.name.auto.attach": "Joindre automatique le débogage",
- "status.text.auto.attach.always": "Attachement automatique : toujours",
- "status.text.auto.attach.disabled": "Attachement automatique : désactivé",
- "status.text.auto.attach.smart": "Attachement automatique : intelligent",
- "status.text.auto.attach.withFlag": "Attachement automatique : avec indicateur",
- "status.tooltip.auto.attach": "Attacher automatiquement à node.js les processus en mode débogage",
- "tempDisable.disable": "Désactiver temporairement l'attachement automatique dans cette session",
- "tempDisable.enable": "Réactiver l'attachement automatique",
- "tempDisable.suffix": "Attachement automatique : désactivé"
- },
- "package": {
- "description": "Assistance pour la fonctionnalité d'attachement automatique quand les extensions de débogage de nœud ne sont pas actives. ",
- "displayName": "Attachement automatique du débogage de nœud",
- "toggle.auto.attach": "Activer/désactiver l'Attachement automatique"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-fr/translations/extensions/debug-server-ready.i18n.json b/i18n/vscode-language-pack-fr/translations/extensions/debug-server-ready.i18n.json
deleted file mode 100644
index 4d5d2fa4b0..0000000000
--- a/i18n/vscode-language-pack-fr/translations/extensions/debug-server-ready.i18n.json
+++ /dev/null
@@ -1,29 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "dist/extension": {
- "server.ready.nocapture.error": "L'URI de format ('{0}') utilise un espace réservé de remplacement, mais le modèle n'a rien capturé.",
- "server.ready.placeholder.error": "L'URI de mise en forme ('{0}') doit contenir exactement un espace réservé de remplacement."
- },
- "package": {
- "debug.server.ready.action.debugWithChrome.description": "Démarrez le débogage avec le 'Débogueur pour Chrome'.",
- "debug.server.ready.action.description": "Utilisation de l'URI quand le serveur est prêt.",
- "debug.server.ready.action.openExternally.description": "Ouvrez l'URI en externe avec l'application par défaut.",
- "debug.server.ready.action.startDebugging.description": "Exécutez une autre configuration de lancement.",
- "debug.server.ready.debugConfigName.description": "Nom de la configuration de lancement à exécuter.",
- "debug.server.ready.pattern.description": "Le serveur est prêt si ce modèle apparaît dans la console de débogage. Le premier groupe de captures doit inclure un URI ou un numéro de port.",
- "debug.server.ready.serverReadyAction.description": "Traiter un URI quand un programme de serveur en cours de débogage est prêt (indiqué par l'envoi d'une sortie sous la forme 'écoute sur le port 3000' ou 'Écoute en cours sur : https://localhost:5001' dans la console de débogage.)",
- "debug.server.ready.uriFormat.description": "Chaîne de format utilisée pour construire l'URI à partir d'un numéro de port. Le premier '%s' est remplacé par le numéro de port.",
- "debug.server.ready.webRoot.description": "Valeur passée à la configuration de débogage pour le 'Débogueur pour Chrome'.",
- "description": "Ouvrez l'URI dans le navigateur si le serveur en cours de débogage est prêt.",
- "displayName": "Action de serveur prêt"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-fr/translations/extensions/docker.i18n.json b/i18n/vscode-language-pack-fr/translations/extensions/docker.i18n.json
deleted file mode 100644
index beb5b3828a..0000000000
--- a/i18n/vscode-language-pack-fr/translations/extensions/docker.i18n.json
+++ /dev/null
@@ -1,16 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "package": {
- "description": "Fournit la coloration syntaxique et la correspondance des crochets dans les fichiers Docker.",
- "displayName": "Bases du langage Docker"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-fr/translations/extensions/emmet.i18n.json b/i18n/vscode-language-pack-fr/translations/extensions/emmet.i18n.json
deleted file mode 100644
index 36d2b1b87d..0000000000
--- a/i18n/vscode-language-pack-fr/translations/extensions/emmet.i18n.json
+++ /dev/null
@@ -1,79 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "dist\\node/abbreviationActions": {
- "wrapWithAbbreviationPrompt": "Entrer une abréviation"
- },
- "package": {
- "command.balanceIn": "Equilibrer (vers l'intérieur)",
- "command.balanceOut": "Equilibrer (vers l'extérieur)",
- "command.decrementNumberByOne": "Décrémenter de 1",
- "command.decrementNumberByOneTenth": "Décrémenter de 0,1",
- "command.decrementNumberByTen": "Décrémenter de 10",
- "command.evaluateMathExpression": "Évaluer l'expression mathématique",
- "command.incrementNumberByOne": "Incrémenter de 1",
- "command.incrementNumberByOneTenth": "Incrémenter de 0,1",
- "command.incrementNumberByTen": "Incrémenter de 10",
- "command.matchTag": "Aller à la paire correspondante",
- "command.mergeLines": "Fusionner les lignes",
- "command.nextEditPoint": "Aller au Point d’édition suivant",
- "command.prevEditPoint": "Aller au Point d'édition précédent",
- "command.reflectCSSValue": "Reflèter la valeur CSS",
- "command.removeTag": "Supprimer une étiquette",
- "command.selectNextItem": "Sélectionner l’élément suivant",
- "command.selectPrevItem": "Sélectionner l'élément précédent",
- "command.showEmmetCommands": "Afficher les commandes Emmet",
- "command.splitJoinTag": "Séparer / joindre la balise",
- "command.toggleComment": "Activer/désactiver le commentaire",
- "command.updateImageSize": "Mettre à jour la taille de l’image",
- "command.updateTag": "Mettre à jour la balise",
- "command.wrapWithAbbreviation": "Envelopper avec une abréviation",
- "description": "Prise en charge d'Emmet pour VS Code",
- "emmetExclude": "Un tableau des langages pour lesquels les abréviations Emmet ne devraient pas être développées.",
- "emmetExtensionsPath": "Tableau de chemins d’accès, où chaque chemin peut pointer vers un fichier Emmet syntaxProfiles et/ou d’extrait de code.\r\nEn cas de conflit, les profils/extraits de code des chemins plus récents remplacent ceux des chemins plus anciens.\r\nConsultez https://code.visualstudio.com/docs/editor/emmet pour plus d’informations et pour obtenir un exemple de fichier d’extrait.",
- "emmetExtensionsPathItem": "Chemin d’accès des fichiers Emmet syntaxProfiles et/ou des extraits de code.",
- "emmetIncludeLanguages": "Activer les abréviations Emmet dans les langages qui ne sont pas pris en charge par défaut. Ajoutez ici un mappage entre le langage en question et le langage pris en charge par Emmet.\r\n Exemple : `{\"vue-html\": \"html\", \"javascript\": \"javascriptreact\"}`",
- "emmetOptimizeStylesheetParsing": "Quand la valeur est 'false', la totalité du fichier est analysé, ce qui permet de déterminer si la position actuelle est valide pour le développement des abréviations Emmet. Quand la valeur est 'true', seul le contenu autour de la position actuelle dans les fichiers CSS/SCSS/Less est analysé.",
- "emmetPreferences": "Préférences utilisées pour modifier le comportement de certaines actions et résolveurs d'Emmet.",
- "emmetPreferencesAllowCompactBoolean": "Si la valeur est `true`, une notation compacte des attributs booléens est produite.",
- "emmetPreferencesBemElementSeparator": "Séparateur d’éléments utilisé pour les classes lorsque le filtre BEM est utilisé.",
- "emmetPreferencesBemModifierSeparator": "Séparateur de modificateur utilisé pour les classes lorsque le filtre BEM est utilisé.",
- "emmetPreferencesCssAfter": "Symbole à placer à la fin de la propriété CSS pendant le développement des abréviations CSS.",
- "emmetPreferencesCssBetween": "Symbole à placer entre la propriété CSS et sa valeur pendant le développement des abréviations CSS.",
- "emmetPreferencesCssColorShort": "Si la valeur est définie sur `true`, les valeurs de couleur telles que `#f` seront développées en `#fff` plutôt que `#ffffff`.",
- "emmetPreferencesCssFuzzySearchMinScore": "La note minimale (de 0 à 1) que la correspondance de l'abréviation (fuzzy-matched) devrait atteindre. Des valeurs plus faibles peuvent produire de nombreuses correspondances de faux-positifs, des valeurs plus élevées peuvent réduire les correspondances possibles.",
- "emmetPreferencesCssMozProperties": "Les propriétés css séparées par des virgules qui ont un préfixe 'moz' vendor lorsqu’elles sont utilisées dans une abréviation emmet qui commence par '-'. Mettre une chaîne vide pour éviter le préfixe 'moz'.",
- "emmetPreferencesCssMsProperties": "Les propriétés css séparées par des virgules qui ont un préfixe 'ms' vendor lorsqu’elles sont utilisées dans une abréviation emmet qui commence par '-'. Mettre une chaîne vide pour éviter le préfixe 'ms'.",
- "emmetPreferencesCssOProperties": "Les propriétés css séparées par des virgules qui ont un préfixe 'o' vendor lorsqu’elles sont utilisées dans une abréviation emmet qui commence par '-'. Mettre une chaîne vide pour éviter le préfixe 'o'.",
- "emmetPreferencesCssWebkitProperties": "Les propriétés css séparées par des virgules qui ont un préfixe 'webkit' vendor lorsqu’elles sont utilisées dans une abréviation emmet qui commence par '-'. Mettre une chaîne vide pour éviter le préfixe 'webkit'.",
- "emmetPreferencesFilterCommentAfter": "Une définition de commentaire qui doit être placée après l’élément correspondant quand un filtre de commentaire est appliqué.",
- "emmetPreferencesFilterCommentBefore": "Une définition de commentaire qui doit être placée avant l’élément correspondant quand le filtre de commentaire est appliqué.",
- "emmetPreferencesFilterCommentTrigger": "Une liste de noms d’attributs qui devraient exister en abrégé pour que le filtre de commentaire soit appliqué. Les éléments de la liste doivent être séparés par des virgules.",
- "emmetPreferencesFloatUnit": "Unité par défaut pour les valeurs de nombres à virgule flottante.",
- "emmetPreferencesFormatForceIndentTags": "Un tableau de noms de balises qui devraient toujours être indentées.",
- "emmetPreferencesFormatNoIndentTags": "Un tableau de noms de balises qui ne devraient jamais être indentées.",
- "emmetPreferencesIntUnit": "Unité par défaut pour les valeurs de nombres entiers.",
- "emmetPreferencesOutputInlineBreak": "Nombre des éléments inclus frères nécessaires pour que les sauts de ligne soient placés entre ces éléments. Si la valeur est '0', les éléments inclus sont toujours développés sur une seule ligne.",
- "emmetPreferencesOutputReverseAttributes": "Si la valeur est true, inverse les directions de fusion des attributs au moment de la résolution des extraits.",
- "emmetPreferencesOutputSelfClosingStyle": "Style des balises de fermeture automatique : html (` `), xml (` `) ou xhtml (` `).",
- "emmetPreferencesSassAfter": "Symbole à placer à la fin de la propriété CSS pendant le développement des abréviations CSS dans les fichiers Sass.",
- "emmetPreferencesSassBetween": "Symbole à placer entre la propriété CSS et sa valeur pendant le développement des abréviations CSS dans les fichiers Sass.",
- "emmetPreferencesStylusAfter": "Symbole à placer à la fin de la propriété CSS pendant le développement des abréviations CSS dans les fichiers Stylus.",
- "emmetPreferencesStylusBetween": "Symbole à placer entre la propriété CSS et sa valeur pendant le développement des abréviations CSS dans les fichiers Stylus.",
- "emmetShowAbbreviationSuggestions": "Affiche les abréviations Emmet possibles comme suggestions. Non applicable dans les feuilles de style ou quand emmet.showExpandedAbbreviation a la valeur \"never\".",
- "emmetShowExpandedAbbreviation": "Affiche les abréviations Emmet développées en tant que suggestions.\r\nL'option \"inMarkupAndStylesheetFilesOnly\" s'applique aux syntaxes html, haml, jade, slim, xml, xsl, css, scss, sass, less et stylus.\r\nL'option \"always\" s'applique à toutes les parties du fichier indépendamment de la balise/du css.",
- "emmetShowSuggestionsAsSnippets": "Si la valeur est 'true', les suggestions Emmet s'affichent sous forme d'extraits, ce qui vous permet de les ordonner conformément au paramètre '#editor.snippetSuggestions#'.",
- "emmetSyntaxProfiles": "Définissez le profil pour la syntaxe spécifiée ou utilisez votre propre profil avec des règles spécifiques.",
- "emmetTriggerExpansionOnTab": "Lorsqu’activé, les abréviations Emmet sont développées lorsque vous appuyez sur TAB.",
- "emmetUseInlineCompletions": "Si `true`, Emmet utilisera les complétions en ligne pour suggérer des extensions. Pour éviter que le fournisseur d'éléments de complétion non en ligne s'affiche aussi souvent lorsque ce paramètre est `true`, réglez `#editor.quickSuggestions#` sur `inline` ou `off` pour l'élément `autre`.",
- "emmetVariables": "Variables à utiliser dans les extraits de code Emmet."
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-fr/translations/extensions/extension-editing.i18n.json b/i18n/vscode-language-pack-fr/translations/extensions/extension-editing.i18n.json
deleted file mode 100644
index dd0f6c65ac..0000000000
--- a/i18n/vscode-language-pack-fr/translations/extensions/extension-editing.i18n.json
+++ /dev/null
@@ -1,30 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "dist/extensionLinter": {
- "apiProposalNotListed": "Impossible d’utiliser cette proposition, car pour cette extension, le produit définit un ensemble fixe de propositions d’API. Vous pouvez tester votre extension, mais avant de publier, vous DEVEZ contacter l’équipe VS Code.",
- "dataUrlsNotValid": "Les URL de données ne sont pas une source d'images valide.",
- "embeddedSvgsNotValid": "Les SVG incorporés ne sont pas une source d'images valide.",
- "httpsRequired": "Les images doivent utiliser le protocole HTTPS.",
- "relativeBadgeUrlRequiresHttpsRepository": "Les URL de badge relatives nécessitent un dépôt avec le protocole HTTPS dans package.json.",
- "relativeIconUrlRequiresHttpsRepository": "Une icône nécessite un référentiel avec le protocole HTTPS spécifié dans ce package.json.",
- "relativeUrlRequiresHttpsRepository": "Les URL d'image relatives nécessitent un dépôt avec le protocole HTTPS dans package.json.",
- "svgsNotValid": "Les SVG ne sont pas une source d'images valide."
- },
- "dist/packageDocumentHelper": {
- "languageSpecificEditorSettings": "Paramètres d'éditeur spécifiques au langage",
- "languageSpecificEditorSettingsDescription": "Remplacer les paramètres de l'éditeur pour le langage"
- },
- "package": {
- "description": "Fournit des fonctions de linting pour la création d’extensions.",
- "displayName": "Création d’extension"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-fr/translations/extensions/fsharp.i18n.json b/i18n/vscode-language-pack-fr/translations/extensions/fsharp.i18n.json
deleted file mode 100644
index dc94fb8396..0000000000
--- a/i18n/vscode-language-pack-fr/translations/extensions/fsharp.i18n.json
+++ /dev/null
@@ -1,16 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "package": {
- "description": "Fournit des extraits de code, la coloration syntaxique, la correspondance des crochets et le repli dans les fichiers F#.",
- "displayName": "Bases du langage F#"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-fr/translations/extensions/git-base.i18n.json b/i18n/vscode-language-pack-fr/translations/extensions/git-base.i18n.json
deleted file mode 100644
index 63803634e8..0000000000
--- a/i18n/vscode-language-pack-fr/translations/extensions/git-base.i18n.json
+++ /dev/null
@@ -1,30 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "dist/remoteSource": {
- "branch name": "Nom de la branche",
- "error": "{0} Erreur : {1}",
- "none found": "Dépôts distants introuvables.",
- "pick url": "Choisissez l'URL à partir de laquelle effectuer le clonage.",
- "provide url": "Indiquer l'URL du dépôt",
- "provide url or pick": "Indiquez l'URL du dépôt, ou choisissez une source de dépôt.",
- "recently opened": "récemment ouvert",
- "remote sources": "sources distantes",
- "type to filter": "Nom du dépôt",
- "type to search": "Nom du dépôt (tapez pour effectuer une recherche)",
- "url": "URL"
- },
- "package": {
- "command.api.getRemoteSources": "Obtenir les sources distantes",
- "description": "Contributions et sélecteurs statiques Git.",
- "displayName": "Git Base"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-fr/translations/extensions/git-ui.i18n.json b/i18n/vscode-language-pack-fr/translations/extensions/git-ui.i18n.json
deleted file mode 100644
index 9bfa883742..0000000000
--- a/i18n/vscode-language-pack-fr/translations/extensions/git-ui.i18n.json
+++ /dev/null
@@ -1,16 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "package": {
- "displayName": "Interface utilisateur Git",
- "description": "Intégration de l'interface utilisateur Git SCM"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-fr/translations/extensions/git.i18n.json b/i18n/vscode-language-pack-fr/translations/extensions/git.i18n.json
deleted file mode 100644
index f0b594b075..0000000000
--- a/i18n/vscode-language-pack-fr/translations/extensions/git.i18n.json
+++ /dev/null
@@ -1,577 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "dist/actionButton": {
- "scm button commit and push title": "Validation{0} et envoi (push)",
- "scm button commit and push tooltip": "Valider et envoyer (push) les modifications",
- "scm button commit and sync title": "Validation {0} et synchronisation",
- "scm button commit and sync tooltip": "Valider et synchroniser les modifications",
- "scm button commit title": "Validation {0}",
- "scm button commit to new branch and push tooltip": "Valider dans une nouvelle branche et envoyer (push) des modifications",
- "scm button commit to new branch and sync tooltip": "Valider dans une nouvelle branche et synchroniser des modifications",
- "scm button commit to new branch tooltip": "Valider les modifications apportées à la nouvelle branche",
- "scm button commit tooltip": "Valider les modifications",
- "scm button committing and pushing tooltip": "Validation et envoi (push) des modifications...",
- "scm button committing and synching tooltip": "Validation et synchronisation des modifications...",
- "scm button committing to new branch and pushing tooltip": "Validation dans une nouvelle branche et envoi (push) des modifications...",
- "scm button committing to new branch and synching tooltip": "Validation dans une nouvelle branche et synchronisation des modifications...",
- "scm button committing to new branch tooltip": "Validation des modifications apportées à la nouvelle branche...",
- "scm button committing tooltip": "Validation des modifications...",
- "scm button continue title": "{0} Continue",
- "scm button continue tooltip": "Continue Rebase",
- "scm button continuing tooltip": "Continuing Rebase...",
- "scm button publish branch": "Publier Branch",
- "scm button publish branch running": "Publication de Branch...",
- "scm button sync description": "{0}Synchroniser les modifications {1}{2}",
- "scm publish branch action button title": "{0} Publier Branch",
- "scm secondary button commit": "Valider",
- "syncing changes": "Synchronisation des modifications..."
- },
- "dist/askpass-main": {
- "missOrInvalid": "Informations d'identification manquantes ou non valides."
- },
- "dist/autofetch": {
- "no": "Non",
- "not now": "Me demander plus tard",
- "suggest auto fetch": "Voulez-vous que Code exécute [périodiquement 'git fetch']({0}) ?",
- "yes": "Oui"
- },
- "dist/commands": {
- "HEAD not available": "La version HEAD de '{0}' n'est pas disponible.",
- "Theirs": "Les leurs",
- "Yours": "Vôtres",
- "add": "Ajouter à l'espace de travail",
- "add remote": "Ajoutez une nouvelle machine distante...",
- "addFrom": "Ajouter un dépôt distant à partir d'une URL",
- "addfrom": "Ajouter un dépôt distant à partir de {0}",
- "addremote": "Ajouter un dépôt distant",
- "always": "Toujours",
- "are you sure": "Ceci va créer un dépôt Git dans '{0}'. Êtes-vous sûr de vouloir continuer ?",
- "auth failed": "Échec de l'authentification auprès de git remote.",
- "auth failed specific": "Échec de l'authentification auprès de git remote :\r\n\r\n{0}",
- "branch already exists": "Une branche nommée '{0}' existe déjà",
- "branch name": "Nom de la branche",
- "branch name does not match sanitized": "La nouvelle branche sera « {0} »",
- "branch name format invalid": "Le nom de la branche doit correspondre à la regex : {0}",
- "cant push": "impossible de pousser les références vers la branche distante. Exécutez d'abord 'Récupérer' pour intégrer vos modifications.",
- "checkout detached": "Extraire en mode détaché...",
- "choose": "Choisir un dossier...",
- "clean repo": "Nettoyez l'arborescence de travail de votre dépôt avant l'extraction.",
- "clonefrom": "Cloner à partir de {0}",
- "cloning": "Clonage du dépôt Git '{0}'...",
- "commit": "Commiter les changements indexés",
- "commit anyway": "Créer un commit vide",
- "commit changes": "Commiter quand même",
- "commit hash": "Commiter le code de hachage",
- "commit message": "Message de validation",
- "commit to branch": "Valider dans une nouvelle branche",
- "commitMessageWithHeadLabel2": "Message (commit sur '{0}')",
- "confirm branch protection commit": "Vous essayez de valider sur une branche protégée et vous n’êtes peut-être pas autorisé à envoyer (push) vos validations vers la branche distante.\r\n\r\nComment voulez-vous procéder ?",
- "confirm delete": "Voulez-vous vraiment supprimer {0} ?\r\nAttention ! Cette action est irréversible.\r\nCe fichier sera définitivement perdu si vous l’effectuez.",
- "confirm delete multiple": "Voulez-vous vraiment supprimer {0} fichiers ?\r\nAttention ! Cette action est irréversible.\r\nCes fichiers seront définitivement perdus si vous l’effectuez.",
- "confirm discard": "Voulez-vous vraiment abandonner les changements apportés à {0} ?",
- "confirm discard all": "Voulez-vous vraiment abandonner tous les changements apportés à {0} fichiers ?\r\nAttention ! Cette action est irréversible.\r\nVotre plage de travail actuelle sera définitivement perdue si vous l’effectuez.",
- "confirm discard all 2": "{0}\r\n\r\nCette opération est IRRÉVERSIBLE, votre plage de travail actuelle sera DÉFINITIVEMENT PERDUE.",
- "confirm discard all single": "Voulez-vous vraiment abandonner les changements apportés à {0} ?",
- "confirm discard multiple": "Voulez-vous vraiment abandonner les changements apportés à {0} fichiers ?",
- "confirm empty commit": "Are you sure you want to create an empty commit?",
- "confirm force delete branch": "La branche '{0}' n'est pas complètement fusionnée. Supprimer quand même ?",
- "confirm force push": "Vous êtes sur le point de forcer l’envoi des changements que vous avez apportés. Cette action peut être délétère et peut remplacer par inadvertance les changements apportés par d’autres utilisateurs.\r\n\r\nVoulez-vous vraiment continuer ?",
- "confirm no verify commit": "Vous êtes sur le point de valider vos changements sans vérification. Cela signifie que les crochets pre-commit vont être ignorés, ce qui n’est peut-être pas souhaitable.\r\n\r\nVoulez-vous vraiment continuer ?",
- "confirm publish branch": "La branche '{0}' n'a pas de branche distante. Voulez-vous publier cette branche ?",
- "confirm restore": "Êtes-vous sûr de vouloir restaurer {0} ?",
- "confirm restore multiple": "Êtes-vous sûr de vouloir restaurer les fichiers {0} ?",
- "confirm stage file with merge conflicts": "Voulez-vous vraiment créer {0} avec des conflits de fusion ?",
- "confirm stage files with merge conflicts": "Voulez-vous vraiment créer {0} fichiers avec des conflits de fusion ?",
- "create branch": "Créez une branche...",
- "create branch from": "Créez une branche à partir de...",
- "create repo": "Initialiser le dépôt",
- "current": "Actuelle",
- "default": "Par défaut",
- "delete": "Supprimer le fichier",
- "delete branch": "Supprimer la branche",
- "delete file": "Supprimer le fichier",
- "delete files": "Supprimer les fichiers",
- "deleted by them": "Ils ont supprimé le fichier '{0}', et nous l'avons modifié.\r\n\r\nQue voulez-vous faire ?",
- "deleted by us": "Nous avons supprimé le fichier '{0}', et ils l'ont supprimé.\r\n\r\nQue voulez-vous faire ?",
- "discard": "Ignorer les modifications",
- "discardAll": "Ignorer les {0} fichiers",
- "discardAll multiple": "Abandonner 1 fichier",
- "drop all stashes": "Voulez-vous vraiment supprimer TOUS les stashes ? Des stashs {0} seront soumis à un nettoyage et PEUVENT ÊTRE IMPOSSIBLES À RÉCUPÉRER.",
- "drop one stash": "Voulez-vous vraiment supprimer TOUS les stashes ? Il y a 1 stash qui va faire l’objet d’un nettoyage et PEUT ÊTRE IMPOSSIBLE À RÉCUPÉRER.",
- "empty commit": "L’opération de validation a été annulée en raison d’un message de validation vide.",
- "force": "Forcer l'extraction",
- "force push not allowed": "Force push n’est pas autorisé, veuillez l’activer avec le paramètre 'git.allowForcePush'.",
- "git error": "Erreur Git",
- "git error details": "Git : {0}",
- "git.timeline.openDiffCommand": "Comparaison de plans",
- "git.title.diff": "{0} ↔ {1}",
- "git.title.diffRefs": "{0} ({1}) ↔ {0} ({2})",
- "git.title.index": "{0} (index)",
- "git.title.ref": "{0} ({1})",
- "git.title.workingTree": "{0} (Arborescence de travail)",
- "init": "Choisir le dossier d’espace de travail dans lequel initialiser le dépôt git",
- "init repo": "Initialiser le dépôt",
- "invalid branch name": "Nom de branche non valide",
- "keep ours": "Conserver notre version",
- "keep theirs": "Conserver leur version",
- "learn more": "En savoir plus",
- "local changes": "Vos changements locaux vont être remplacés par l'extraction.",
- "merge commit": "Le dernier commit était un commit de fusion. Voulez-vous vraiment l'annuler ?",
- "merge conflicts": "Il existe des conflits de fusion. Corrigez-les avant la validation.",
- "missing user info": "Assurez-vous de configurer votre 'user.name' et 'user.email' dans git.",
- "never": "Jamais",
- "never again": "OK, Ne plus afficher",
- "never ask again": "OK, Ne plus me demander à nouveau",
- "no changes": "Il n'existe aucun changement à valider.",
- "no changes stash": "Aucune modification à remiser (stash).",
- "no more": "Impossible d’annuler car HEAD ne pointe vers aucune validation.",
- "no rebase": "Pas de rebase en cours.",
- "no remotes added": "Votre dépôt n'a pas de dépôt distant.",
- "no remotes to fetch": "Ce dépôt n'a aucun dépôt distant configuré pour rappatrier.",
- "no remotes to publish": "Votre dépôt n'a aucun dépôt distant configuré pour une publication.",
- "no remotes to pull": "Votre dépôt n'a aucun dépôt distant configuré pour un Pull.",
- "no remotes to push": "Votre dépôt n'a aucun dépôt distant configuré pour un Push.",
- "no staged changes": "Il n’existe aucun changement indexé à valider.\r\n\r\nVoulez-vous indexer tous vos changements et les valider directement ?",
- "no stashes": "Aucune remise (stash) à restaurer dans ce dépôt.",
- "no tags": "Ce dépôt n'a pas d'étiquette.",
- "no verify commit not allowed": "Les commits sans vérification ne sont pas autorisés. Activez-les à l'aide du paramètre 'git.allowNoVerifyCommit'.",
- "nobranch": "Vous devez extraire une branche dont vous souhaitez effectuer le Push vers un emplacement distant.",
- "ok": "OK",
- "open git log": "Ouvrir le journal Git",
- "open repo": "Ouvrir le dépôt",
- "openrepo": "Ouvrir",
- "openreponew": "Ouvrir dans une nouvelle fenêtre",
- "pick branch pull": "Sélectionner une branche à partir de laquelle tirer (pull)",
- "pick provider": "Choisissez un fournisseur sur lequel publier la branche '{0}' :",
- "pick remote": "Choisissez un dépôt distant où publier la branche '{0}' :",
- "pick remote pull repo": "Choisir un dépôt distant duquel extraire la branche",
- "pick stash to apply": "Choisir une remise (stash) à appliquer",
- "pick stash to drop": "Choisir un remisage (stash) à supprimer",
- "pick stash to pop": "Choisir une remise (stash) à appliquer et supprimer",
- "proposeopen": "Voulez-vous ouvrir le dépôt cloné ?",
- "proposeopen init": "Voulez-vous ouvrir le dépôt initialisé ?",
- "proposeopen2": "Voulez-vous ouvrir le dépôt cloné ou l'ajouter à l'espace de travail actuel ?",
- "proposeopen2 init": "Souhaitez-vous ouvrir le dépôt initialisé, ou l’ajouter à l’espace de travail actuel ?",
- "provide branch name": "Fournissez un nouveau nom de branche",
- "provide commit hash": "Indiquez le code de hachage du commit",
- "provide commit message": "Indiquez un message de validation",
- "provide remote name": "Fournissez un nom de dépôt distant",
- "provide stash message": "Spécifier éventuellement un message pour la remise (stash)",
- "provide tag message": "Spécifiez un message pour annoter la balise",
- "provide tag name": "Spécifiez un nom de balise",
- "publish to": "Publier sur {0}",
- "remote already exists": "Le dépôt distant '{0}' existe déjà.",
- "remote branch at": "Branche distante à {0}",
- "remote name": "Nom du dépôt distant",
- "remote name format invalid": "Format non valide du nom de dépôt distant",
- "remove remote": "Choisir un dépôt distant à supprimer",
- "repourl": "URL de dépôt",
- "restore file": "Restaurer le fichier",
- "restore files": "Restaurer les fichiers",
- "save and commit": "Tout enregistrer et valider",
- "save and stash": "Tout enregistrer et faire un stash",
- "select a branch to merge from": "Sélectionner une branche à fusionner",
- "select a branch to rebase onto": "Sélectionner une branche où rebaser",
- "select a ref to checkout": "Sélectionner une référence à extraire",
- "select a ref to checkout detached": "Sélectionnez une référence à extraire en mode détaché",
- "select a ref to create a new branch from": "Sélectionner une référence à partir de laquelle créer la branche '{0}'",
- "select a tag to delete": "Sélectionner une étiquette à supprimer",
- "select branch to delete": "Sélectionner une branche à supprimer",
- "select log level": "Sélectionner le niveau de journalisation (log)",
- "selectFolder": "Sélectionner l'emplacement du dépôt",
- "show command output": "Afficher la sortie de commande",
- "stash": "Faire un stash quand même",
- "stash merge conflicts": "Il y a eu des conflits de fusion en appliquant la remise (stash).",
- "stash message": "Message pour la remise (stash)",
- "stashcheckout": "Faire un stash et extraire",
- "sure drop": "Voulez-vous vraiment annuler le stash : {0} ?",
- "sync is unpredictable": "Cette action permet d’extraire et d’envoyer (push) les validations à partir de et vers « {0}/{1} ».",
- "tag at": "Balise sur {0}",
- "tag message": "Message",
- "tag name": "Nom de la balise",
- "there are untracked files": "{0} fichiers non suivis seront SUPPRIMÉS DU DISQUE s'ils sont ignorés.",
- "there are untracked files single": "Le fichier non suivi suivant sera SUPPRIMÉ DU DISQUE s'il est ignoré : {0}.",
- "undo commit": "Annuler le commit de fusion",
- "unsaved files": "Il y a {0} fichiers non sauvegardés.\r\n\r\nSouhaitez-vous sauvegarder avant de commiter ?",
- "unsaved files single": "Le fichier suivant a des changements non enregistrés qui ne seront pas inclus dans la validation si vous continuez : {0}.\r\n\r\nVoulez-vous l'enregistrer avant la validation ?",
- "unsaved stash files": "{0} fichiers n’ont pas été enregistrés.\r\n\r\nVoulez-vous les enregistrer avant de faire un stash ?",
- "unsaved stash files single": "Le fichier suivant contient des changements non enregistrés qui ne seront pas inclus dans le stash si vous continuez{0}: .\r\n\r\nVoulez-vous l’enregistrer avant de faire un stash ?",
- "warn untracked": "Cette action SUPPRIME {0} fichiers non suivis !\r\nCette action est IRRÉVERSIBLE !\r\nCes fichiers seront DÉFINITIVEMENT PERDUS.",
- "yes": "Oui",
- "yes discard tracked": "Ignorer 1 fichier suivi",
- "yes discard tracked multiple": "Ignorer {0} fichiers suivis",
- "yes never again": "Oui, Ne plus afficher"
- },
- "dist/log": {
- "gitLogLevel": "Niveau de journal : {0}"
- },
- "dist/main": {
- "downloadgit": "Télécharger Git",
- "git20": "Il semble que git {0} soit installé. Code fonctionne mieux avec git >= 2",
- "git2526": "Il existe des problèmes connus avec la version installée de Git {0}. Effectuez une mise à jour vers Git >= 2.27 pour permettre aux fonctionnalités Git de s'exécuter correctement.",
- "neverShowAgain": "Ne plus afficher",
- "notfound": "Git non trouvé. Installez-le et configurez-le en utilisant le paramètre 'git.path'.",
- "skipped": "Git ignoré trouvé dans : {0}",
- "updateGit": "Mettre à jour Git",
- "using git": "Utilisation de git {0} à partir de {1}",
- "validating": "Validation du git trouvé dans : {0}"
- },
- "dist/model": {
- "no repositories": "Aucun dépôt disponible",
- "not supported": "Chemins d’accès absolus non supportés dans le paramètre 'git.scanRepositories'.",
- "pick repo": "Choisir un dépôt",
- "repoOnHomeDriveRootWarning": "Impossible d’ouvrir automatiquement le dépôt Git à '{0}'. Pour ouvrir ce dépôt Git, ouvrez-le directement en tant que dossier dans VS Code.",
- "too many submodules": "Le dépôt '{0}' a {1} sous-modules qui ne vont pas être ouverts automatiquement. Vous pouvez ouvrir chacun individuellement en ouvrant un fichier à l'intérieur."
- },
- "dist/postCommitCommands": {
- "scm secondary button commit and push": "Valider et envoyer (push)",
- "scm secondary button commit and sync": "Validation et synchronisation"
- },
- "dist/repository": {
- "add known": "Voulez-vous ajouter '{0}' à .gitignore ?",
- "added by them": "Conflit : ajout de leur part",
- "added by us": "Conflit : ajout de notre part",
- "always pull": "Toujours tirer (pull)",
- "both added": "Conflit : ajout de leur part et de notre part",
- "both deleted": "Conflit : suppression de leur part et de notre part",
- "both modified": "Conflit : modification de leur part et de notre part",
- "changes": "Changements",
- "commit": "Valider",
- "commit in rebase": "Il n’est pas possible de changer le message de validation au milieu d’un rebasage. Terminez l'opération de rebasage et utilisez le rebasage interactif à la place.",
- "commitMessage": "Message ({0} à valider)",
- "commitMessageCountdown": "{0} caractères restants sur la ligne actuelle",
- "commitMessageWarning": "{0} caractères sur {1} sur la ligne actuelle",
- "commitMessageWhitespacesOnlyWarning": "Le message de validation actuel contient uniquement des espaces",
- "commitMessageWithHeadLabel": "Message ({0} à valider sur '{1}')",
- "deleted": "Supprimé",
- "deleted by them": "Conflit : suppression de leur part",
- "deleted by us": "Conflit : suppression de notre part",
- "dont pull": "Ne pas tirer (pull)",
- "git.title.deleted": "{0} (supprimé)",
- "git.title.index": "{0} (Index)",
- "git.title.ours": "{0} (à nous)",
- "git.title.theirs": "{0} (à eux)",
- "git.title.untracked": "{0} (non suivi)",
- "git.title.workingTree": "{0} (arborescence de travail)",
- "huge": "Le dépôt Git dans '{0}' a trop de modifications actives, seul un sous-ensemble de fonctionnalités Git sera activé.",
- "ignored": "Ignoré",
- "index added": "Index ajouté",
- "index copied": "Index copié",
- "index deleted": "Index supprimé",
- "index modified": "Index modifié",
- "index renamed": "Index renommé",
- "intent to add": "Intention à ajouter",
- "merge changes": "Fusionner les changements",
- "modified": "Modifié le",
- "neveragain": "Ne plus afficher",
- "no": "Non",
- "ok": "OK",
- "open": "Ouvrir",
- "open.merge": "Ouvrir la fusion",
- "pull": "Tirer (pull)",
- "pull branch maybe rebased": "Il semble que la branche actuelle '{0}' ait été rebasée. Voulez-vous vraiment effectuer un tirage (pull) dans celle-ci ?",
- "pull maybe rebased": "Il semble que la branche actuelle ait été rebasée. Voulez-vous vraiment effectuer un tirage (pull) dans celle-ci ?",
- "pull n": "Tirer (pull) {0} commits de {1}/{2}",
- "pull push n": "Tirer (pull) {0} et envoyer (push) {1} commits entre {2}/{3}",
- "push n": "Envoyer (push) {0} commits à {1}/{2}",
- "push success": "Envoi (push) réussi.",
- "staged changes": "Changements indexés",
- "sync changes": "Synchroniser les changements",
- "sync is unpredictable": "Synchronisation. L'annulation peut endommager gravement le dépôt",
- "tooManyChangesWarning": "Trop de modifications ont été détectées. Seules les premières modifications {0} s’affichent ci-dessous.",
- "untracked": "Non suivi",
- "untracked changes": "Changements non suivis",
- "yes": "Oui"
- },
- "dist/statusbar": {
- "checkout": "Extraire la branche/l'étiquette...",
- "publish branch": "Publier la branche",
- "publish to": "Publier sur {0}",
- "publish to...": "Publier sur...",
- "rebasing": "Rebase en cours",
- "syncing changes": "Synchronisation des modifications..."
- },
- "dist/timelineProvider": {
- "git.timeline.email": "Adresse e-mail",
- "git.timeline.openComparison": "Comparaison de plans",
- "git.timeline.source": "Historique git",
- "git.timeline.stagedChanges": "Modifications en zone de transit",
- "git.timeline.uncommitedChanges": "Changements non commités",
- "git.timeline.you": "Vous"
- },
- "package": {
- "colors.added": "Couleur des ressources ajoutées.",
- "colors.conflict": "Couleur pour les ressources avec des conflits.",
- "colors.deleted": "Couleur des ressources supprimées.",
- "colors.ignored": "Couleur des ressources ignorées.",
- "colors.modified": "Couleur pour les ressources modifiées.",
- "colors.renamed": "Couleur des ressources renommées ou copiées.",
- "colors.stageDeleted": "Couleur des ressources supprimées qui ont été indexées.",
- "colors.stageModified": "Couleur des ressources modifiées qui ont été indexées.",
- "colors.submodule": "Couleur pour les ressources de sous-module.",
- "colors.untracked": "Couleur pour les ressources non tracées.",
- "command.addRemote": "Ajouter un dépôt distant...",
- "command.api.getRemoteSources": "Obtenir les sources distantes",
- "command.api.getRepositories": "Obtenir les dépôts",
- "command.api.getRepositoryState": "Obtenir l’état du dépôt",
- "command.branch": "Créer une branche...",
- "command.branchFrom": "Créer une branche à partir de...",
- "command.checkout": "Basculer sur...",
- "command.checkoutDetached": "Extraire vers (mode détaché)...",
- "command.cherryPick": "Faire un cherry-pick...",
- "command.clean": "Ignorer les modifications",
- "command.cleanAll": "Ignorer toutes les modifications",
- "command.cleanAllTracked": "Ignorer tous les changements suivis",
- "command.cleanAllUntracked": "Ignorer tous les changements non suivis",
- "command.clone": "Cloner",
- "command.cloneRecursive": "Cloner (récursif)",
- "command.close": "Fermer le dépôt",
- "command.closeAllDiffEditors": "Fermer tous les éditeurs de différences",
- "command.commit": "Valider",
- "command.commitAll": "Valider tout",
- "command.commitAllAmend": "Tout Valider (Modifier)",
- "command.commitAllAmendNoVerify": "Tout commiter (modifier, aucune vérification)",
- "command.commitAllNoVerify": "Tout commiter (aucune vérification)",
- "command.commitAllSigned": "Valider tout (signé)",
- "command.commitAllSignedNoVerify": "Tout commiter (signé, aucune vérification)",
- "command.commitEmpty": "Commit vide",
- "command.commitEmptyNoVerify": "Commiter le contenu vide (aucune vérification)",
- "command.commitMessageAccept": "Accepter le message de validation",
- "command.commitMessageDiscard": "Ignorer le message de validation",
- "command.commitNoVerify": "Commiter (aucune vérification)",
- "command.commitStaged": "Valider le contenu en zone de transit",
- "command.commitStagedAmend": "Valider les modifications en attente (modifier)",
- "command.commitStagedAmendNoVerify": "Commiter l'index (modifier, aucune vérification)",
- "command.commitStagedNoVerify": "Commiter l'index (aucune vérification)",
- "command.commitStagedSigned": "Valider les modifications en attente (signé)",
- "command.commitStagedSignedNoVerify": "Commiter l'index (signé, aucune vérification)",
- "command.createTag": "Créer une balise",
- "command.deleteBranch": "Supprimer la branche...",
- "command.deleteTag": "Supprimer l'étiquette",
- "command.fetch": "Récupérer",
- "command.fetchAll": "Récupérer depuis tous les Remotes",
- "command.fetchPrune": "Récupérer (élaguer)",
- "command.git.acceptMerge": "Accepter la fusion",
- "command.ignore": "Ajouter à .gitignore",
- "command.init": "Initialiser le dépôt",
- "command.merge": "Fusionner la branche...",
- "command.openAllChanges": "Ouvrir tous les changements",
- "command.openChange": "Ouvrir les modifications",
- "command.openFile": "Ouvrir un fichier",
- "command.openHEADFile": "Ouvrir le fichier (HEAD)",
- "command.openRepository": "Ouvrir le dépôt",
- "command.publish": "Publier la branche...",
- "command.pull": "Pull",
- "command.pullFrom": "Extraire de...",
- "command.pullRebase": "Pull (rebaser)",
- "command.push": "Push",
- "command.pushFollowTags": "Pousser (suivre des balises)",
- "command.pushFollowTagsForce": "Pousser (suivre des balises, forcer)",
- "command.pushForce": "Pousser (forcer)",
- "command.pushTags": "Envoyer (push) des étiquettes",
- "command.pushTo": "Transfert (Push) vers...",
- "command.pushToForce": "Transfert (Push) vers... (Force)",
- "command.rebase": "Rebaser la branche...",
- "command.rebaseAbort": "Abandonner le rebasage",
- "command.refresh": "Actualiser",
- "command.removeRemote": "Supprimer le dépôt distant",
- "command.rename": "Renommer",
- "command.renameBranch": "Renommer la branche...",
- "command.restoreCommitTemplate": "Restaurer le modèle de commit",
- "command.revealFileInOS.linux": "Ouvrir le dossier contenant",
- "command.revealFileInOS.mac": "Afficher dans le Finder",
- "command.revealFileInOS.windows": "Afficher dans l'Explorateur de fichiers",
- "command.revealInExplorer": "Afficher en mode Explorateur",
- "command.revertChange": "Restaurer la modification",
- "command.revertSelectedRanges": "Restaurer les portées sélectionnées",
- "command.setLogLevel": "Définir le niveau de journalisation (log) ...",
- "command.showOutput": "Afficher la sortie Git",
- "command.stage": "Mettre en attente les modifications",
- "command.stageAll": "Mettre en attente toutes les modifications",
- "command.stageAllMerge": "Indexer toutes les fusions de changements",
- "command.stageAllTracked": "Indexer tous les changements suivis",
- "command.stageAllUntracked": "Indexer tous les changements non suivis",
- "command.stageChange": "Mettre en attente la modification",
- "command.stageSelectedRanges": "Mettre en attente les plages sélectionnées",
- "command.stash": "Remiser (stash)",
- "command.stashApply": "Appliquer la remise (Stash)...",
- "command.stashApplyLatest": "Appliquer la dernière remise (Stash)",
- "command.stashDrop": "Supprimer le remisage (stash)...",
- "command.stashDropAll": "Supprimer tous les stashes...",
- "command.stashIncludeUntracked": "Remiser (Inclure les non-tracés)",
- "command.stashPop": "Appliquer et supprimer la remise...",
- "command.stashPopLatest": "Appliquer et supprimer la dernière remise",
- "command.sync": "Synchroniser",
- "command.syncRebase": "Synchroniser (Rebase)",
- "command.timelineCompareWithSelected": "Comparer avec la sélection",
- "command.timelineCopyCommitId": "Copier l'ID de commit",
- "command.timelineCopyCommitMessage": "Copiez le message de commit.",
- "command.timelineOpenDiff": "Ouvrir les modifications",
- "command.timelineSelectForCompare": "Sélectionner pour comparaison",
- "command.undoCommit": "Annuler la dernière validation",
- "command.unstage": "Annuler la mise en attente des modifications",
- "command.unstageAll": "Annuler la mise en attente de toutes les modifications",
- "command.unstageSelectedRanges": "Annuler la mise en attente des plages sélectionnées",
- "config.allowForcePush": "Contrôle si force push (avec ou sans lease) est activé.",
- "config.allowNoVerifyCommit": "Détermine si les commits sans exécution des crochets pre-commit et commit-msg sont autorisés.",
- "config.alwaysShowStagedChangesResourceGroup": "Toujours afficher le groupe de ressources des changements en zone de transit (Staged).",
- "config.alwaysSignOff": "Contrôle le flag signoff pour toutes les modifications.",
- "config.autoRepositoryDetection": "Configure le moment où les dépôts doivent être détectés automatiquement.",
- "config.autoRepositoryDetection.false": "Désactivez l’analyse de dépôt automatique.",
- "config.autoRepositoryDetection.openEditors": "Rechercher dans les dossiers parents de fichiers ouverts.",
- "config.autoRepositoryDetection.subFolders": "Rechercher dans les sous-dossiers du dossier actuellement ouvert.",
- "config.autoRepositoryDetection.true": "Recherchez dans les deux sous-dossiers du dossier ouvert en cours et dans les dossiers parents de fichiers ouverts.",
- "config.autoStash": "Remisez (stash) les changements avant de les tirer et de les restaurer après un tirage réussi.",
- "config.autofetch": "Quand la valeur est true, les commits sont automatiquement récupérés (fetch) à partir du dépôt distant par défaut du dépôt Git actuel. Quand la valeur est 'all', les commits sont récupérés à partir de tous les dépôts distants.",
- "config.autofetchPeriod": "Durée en secondes entre chaque récupération git automatique quand `git.autofetch` est activé.",
- "config.autorefresh": "Détermine si l'actualisation automatique est activée.",
- "config.branchPrefix": "Préfixe utilisé lors de la création d’une branche.",
- "config.branchProtection": "Liste des branches protégées. Par défaut, une invite s’affiche avant que les modifications ne soient validées dans une branche protégée. L’invite peut être contrôlée à l’aide du paramètre `#git.branchProtectionPrompt#`.",
- "config.branchProtectionPrompt": "Contrôle si une invite est envoyée avant la validation des modifications dans une branche protégée.",
- "config.branchProtectionPrompt.alwaysCommit": "Toujours valider les modifications apportées à la branche protégée.",
- "config.branchProtectionPrompt.alwaysCommitToNewBranch": "Toujours valider les changements dans une nouvelle branche.",
- "config.branchProtectionPrompt.alwaysPrompt": "Toujours demander avant la validation des modifications dans une branche protégée.",
- "config.branchRandomNameDictionary": "Liste des dictionnaires utilisés pour le nom de branche généré de manière aléatoire. Chaque valeur représente le dictionnaire utilisé pour générer le segment du nom de la branche. Dictionnaires pris en charge : « adjectifs », « animaux », « couleurs » et « nombres ».",
- "config.branchRandomNameDictionary.adjectives": "Adjectif aléatoire",
- "config.branchRandomNameDictionary.animals": "Nom d’animal aléatoire",
- "config.branchRandomNameDictionary.colors": "Nom de couleur aléatoire",
- "config.branchRandomNameDictionary.numbers": "Nombre aléatoire compris entre 100 et 999",
- "config.branchRandomNameEnable": "Contrôle si un nom aléatoire est généré lors de la création d’une branche.",
- "config.branchSortOrder": "Contrôle l'ordre de tri des branches.",
- "config.branchValidationRegex": "Expression régulière pour valider les nouveaux noms de branche.",
- "config.branchWhitespaceChar": "Caractère permettant de remplacer les espaces dans les nouveaux noms de branche et de séparer les segments d’un nom de branche généré de manière aléatoire.",
- "config.checkoutType": "Contrôle le type des références Git listées au moment de l'exécution de Extraire vers...",
- "config.checkoutType.local": "Branches locales",
- "config.checkoutType.remote": "Branches distantes",
- "config.checkoutType.tags": "Étiquettes",
- "config.closeDiffOnOperation": "Contrôle si l’éditeur de différences doit être fermé automatiquement lorsque les modifications sont remises en cache, validées, ignorées, intermédiaires ou non.",
- "config.commandsToLog": "Liste des commandes git (par exemple, commit, push) pour lesquelles 'stdout' serait journalisé dans le [git output](command:git.showOutput). Si un crochet côté client est configuré pour la commande git, le « stdout » du crochet côté client est également enregistré dans le [git output](command:git.showOutput).",
- "config.confirmEmptyCommits": "Confirmez toujours la création de commits vides pour la commande 'Git: Commit Empty'.",
- "config.confirmForcePush": "Détermine s’il faut demander confirmation avant de forcer le push.",
- "config.confirmNoVerifyCommit": "Contrôle s’il faut demander une confirmation avant la validation sans vérification.",
- "config.confirmSync": "Confirmez avant de synchroniser des dépôts git.",
- "config.countBadge": "Contrôle le badge de compte Git.",
- "config.countBadge.all": "Compter tous les changements.",
- "config.countBadge.off": "Désactivez le compteur.",
- "config.countBadge.tracked": "Compter uniquement les changements suivis.",
- "config.decorations.enabled": "Contrôle si Git contribue aux couleurs et aux badges de l'Explorateur et de la vue Éditeurs ouverts.",
- "config.defaultCloneDirectory": "Emplacement par défaut où cloner un dépôt git.",
- "config.detectSubmodules": "Contrôle s’il faut détecter automatiquement les sous-modules git.",
- "config.detectSubmodulesLimit": "Contrôle la limite de sous-modules git détectés.",
- "config.discardAllScope": "Contrôle les modifications ignorées par la commande 'Ignorer toutes les modifications'. 'all' ignore toutes les modifications. 'tracked' ignore uniquement les fichiers suivis. 'prompt' affiche un message d'invite chaque fois que l’action est exécutée.",
- "config.enableCommitSigning": "Active la signature de commit avec GPG ou X.509.",
- "config.enableSmartCommit": "Validez toutes les modifications en l'absence de modifications en attente.",
- "config.enableStatusBarSync": "Contrôle si la commande Git Sync apparaît dans la barre d'état.",
- "config.enabled": "Indique si git est activé.",
- "config.experimental.installGuide": "Améliorations expérimentales du flux d’installation git",
- "config.fetchOnPull": "Si activé, récupère toutes les branches au tirage. Sinon, récupère seulement la branche actuelle.",
- "config.followTagsWhenSync": "Suit l'envoi (push) de toutes les étiquettes au moment de l'exécution de la commande de synchronisation.",
- "config.ignoreLegacyWarning": "Ignore l'avertissement Git hérité.",
- "config.ignoreLimitWarning": "Ignore l'avertissement en cas de changements trop nombreux dans un dépôt.",
- "config.ignoreMissingGitWarning": "Ignore l'avertissement quand Git est manquant.",
- "config.ignoreRebaseWarning": "Ignore l'avertissement quand il semble que la branche ait été rebasée au moment du tirage (pull).",
- "config.ignoreSubmodules": "Ignore les modifications apportées aux sous-modules dans l'arborescence de fichiers.",
- "config.ignoreWindowsGit27Warning": "Ignore l'avertissement lorsque Git 2.25 - 2.26 est installé sur Windows.",
- "config.ignoredRepositories": "Liste des dépôts git à ignorer.",
- "config.inputValidation": "Contrôle quand afficher la validation de la saisie du message de commit.",
- "config.inputValidationLength": "Contrôle le taille de la longueur de message de commit pour afficher un avertissement.",
- "config.inputValidationSubjectLength": "Contrôle le seuil de longueur de l'objet du message de validation pour afficher un avertissement. Annulez pour hériter la valeur de 'config.inputValidationLength'.",
- "config.logLevel": "Spécifie la quantité d’informations (le cas échéant) à journaliser sur le [git output](command:git.showOutput).",
- "config.logLevel.critical": "Journaliser uniquement les informations critiques",
- "config.logLevel.debug": "Journaliser uniquement le débogage, les informations, l’avertissement, l’erreur et les informations critiques",
- "config.logLevel.error": "Journaliser uniquement les informations d’erreur et critiques",
- "config.logLevel.info": "Journaliser uniquement les informations d’avertissement, d’erreur et les informations critiques",
- "config.logLevel.off": "Ne rien journaliser",
- "config.logLevel.trace": "Journaliser toutes les informations",
- "config.logLevel.warn": "Journaliser uniquement les informations d’avertissement, d’erreur et critiques",
- "config.mergeEditor": "Ouvrez l’éditeur de fusion pour les fichiers actuellement en conflit.",
- "config.openAfterClone": "Détermine s'il est nécessaire d'ouvrir un dépôt automatiquement après le clonage.",
- "config.openAfterClone.always": "Effectue toujours l'ouverture dans la fenêtre active.",
- "config.openAfterClone.alwaysNewWindow": "Effectue toujours l'ouverture dans une nouvelle fenêtre.",
- "config.openAfterClone.prompt": "Demande toujours l'action à effectuer.",
- "config.openAfterClone.whenNoFolderOpen": "Effectue uniquement l'ouverture dans la fenêtre active quand aucun dossier n'est ouvert.",
- "config.openDiffOnClick": "Contrôle si l'éditeur de diff doit être ouvert quand l'utilisateur clique sur un changement. Sinon, l'éditeur normal est ouvert.",
- "config.path": "Chemin et nom de fichier de l'exécutable git. Exemple : 'C:\\Program Files\\Git\\bin\\git.exe' (Windows). Il peut s'agir également d'un tableau de valeurs de chaîne contenant plusieurs chemins de recherche.",
- "config.postCommitCommand": "Exécute une commande git après un commit réussi.",
- "config.postCommitCommand.none": "N'exécutez pas de commande après une validation.",
- "config.postCommitCommand.push": "Exécutez 'Git Push' après une validation réussie.",
- "config.postCommitCommand.sync": "Exécutez 'Git Sync' après une validation réussie.",
- "config.promptToSaveFilesBeforeCommit": "Contrôle si Git doit vérifier les fichiers non sauvegardés avant d'effectuer le commit.",
- "config.promptToSaveFilesBeforeCommit.always": "Vérifiez les fichiers non enregistrés.",
- "config.promptToSaveFilesBeforeCommit.never": "Désactivez la vérification.",
- "config.promptToSaveFilesBeforeCommit.staged": "Vérifiez uniquement les fichiers organisés non enregistrés.",
- "config.promptToSaveFilesBeforeStash": "Contrôle si Git doit rechercher les fichiers non enregistrés avant de faire un stash des changements.",
- "config.promptToSaveFilesBeforeStash.always": "Vérifiez les fichiers non enregistrés.",
- "config.promptToSaveFilesBeforeStash.never": "Désactive cette vérification.",
- "config.promptToSaveFilesBeforeStash.staged": "Vérifiez uniquement les fichiers organisés non enregistrés.",
- "config.pruneOnFetch": "Effectue un élagage au moment de la récupération.",
- "config.pullTags": "Récupérez toutes les balises pendant le tirage.",
- "config.rebaseWhenSync": "Forcez git à utiliser rebase pendant l'exécution de la commande sync.",
- "config.repositoryScanIgnoredFolders": "Liste des dossiers ignorés lors de la recherche de référentiels Git lorsque `#git.autoRepositoryDetection#` est défini sur `true` ou `subFolders`.",
- "config.repositoryScanMaxDepth": "Contrôle la profondeur utilisée lors de l’analyse des dossiers d’espace de travail pour les dépôts Git quand '#git.autoRepositoryDetection#' a la valeur 'true' ou 'subFolders'. Peut être défini sur « -1 » pour aucune limite.",
- "config.requireGitUserConfig": "Contrôle si une configuration utilisateur Git explicite est nécessaire ou si elle peut être devinée par Git quand elle est manquante.",
- "config.scanRepositories": "Liste des chemins d’accès pour rechercher des dépôts git.",
- "config.showActionButton": "Contrôle si un bouton d’action est affiché dans la vue Contrôle de code source.",
- "config.showActionButton.commit": "Afficher un bouton d’action pour valider les modifications lorsque la branche locale a modifié des fichiers prêts à être validés.",
- "config.showActionButton.publish": "Afficher un bouton d’action pour publier la branche locale lorsqu’elle n’a pas de branche distante de suivi.",
- "config.showActionButton.sync": "Afficher un bouton d’action pour synchroniser les modifications lorsque la branche locale est en avance ou derrière la branche distante.",
- "config.showCommitInput": "Détermine si l'entrée de commit doit être affichée dans le panneau de contrôle de code source Git.",
- "config.showInlineOpenFileAction": "Contrôle s’il faut afficher une action Ouvrir le fichier dans l’affichage des modifications de Git.",
- "config.showProgress": "Contrôle si les actions git doivent afficher la progression.",
- "config.showPushSuccessNotification": "Contrôle s’il faut afficher une notification en cas de réussite d'un envoi (push).",
- "config.smartCommitChanges": "Contrôle les modifications organisées automatiquement par Smart Commit.",
- "config.smartCommitChanges.all": "Organise automatiquement toutes les modifications.",
- "config.smartCommitChanges.tracked": "Organise automatiquement les modifications suivies uniquement.",
- "config.statusLimit": "Contrôle comment limiter le nombre de modifications qui peuvent être analysées à partir de la commande d’état Git. Peut être défini sur 0 sans limite.",
- "config.suggestSmartCommit": "Propose d'activer Smart Commit (valide toutes les modifications en l'absence de modifications organisées).",
- "config.supportCancellation": "Contrôle si une notification apparaît lors de l'exécution de l'action Sync, qui permet à l'utilisateur d'annuler l'opération.",
- "config.terminalAuthentication": "Détermine si VS Code doit être activé en tant que gestionnaire d'authentification pour les processus git générés dans le terminal intégré. Remarque : Les terminaux doivent redémarrer pour permettre la prise en compte des changements apportés à ce paramètre.",
- "config.terminalGitEditor": "Détermine si VS Code doit être activé en tant qu’éditeur Git pour les processus git générés dans le terminal intégré. Remarque : Les terminaux doivent redémarrer pour permettre la prise en compte des changements apportés à ce paramètre.",
- "config.timeline.date": "Contrôle la date à utiliser pour les éléments de la vue Chronologie.",
- "config.timeline.date.authored": "Utiliser la date de création",
- "config.timeline.date.committed": "Utiliser la date de commit",
- "config.timeline.showAuthor": "Contrôle si l'auteur du commit doit être affiché dans la vue Chronologie.",
- "config.timeline.showUncommitted": "Contrôle s’il faut afficher les modifications non validées dans l’affichage Chronologie.",
- "config.untrackedChanges": "Contrôle le comportement des changements non suivis.",
- "config.untrackedChanges.hidden": "Les changements non suivis sont masqués et exclus de plusieurs actions.",
- "config.untrackedChanges.mixed": "Tous les changements, suivis et non suivis, apparaissent ensemble et se comportent de la même manière.",
- "config.untrackedChanges.separate": "Les changements non suivis apparaissent séparément dans la vue Contrôle de code source. Ils sont également exclus de plusieurs actions.",
- "config.useCommitInputAsStashMessage": "Détermine s'il est nécessaire d'utiliser le message de la zone d'entrée de commit en tant que message de stash par défaut.",
- "config.useEditorAsCommitInput": "Contrôle si un éditeur de texte intégral est utilisé pour créer des messages de validation, chaque fois qu’aucun message n’est fourni dans la zone d’entrée de validation.",
- "config.useForcePushWithLease": "Contrôles si force push utilise la variante force-with-lease plus sûr.",
- "config.useIntegratedAskPass": "Contrôle si GIT_ASKPASS doit être remplacé pour utiliser la version intégrée.",
- "config.verboseCommit": "Activez la sortie détaillée quand '#git.useEditorAsCommitInput#' est activé.",
- "description": "Intégration Git SCM",
- "displayName": "Git",
- "submenu.branch": "Branche",
- "submenu.changes": "Changements",
- "submenu.commit": "Valider",
- "submenu.commit.amend": "Modifier",
- "submenu.commit.signoff": "Fermer la session",
- "submenu.explorer": "Git",
- "submenu.pullpush": "Tirer (pull), envoyer (push)",
- "submenu.remotes": "À distance",
- "submenu.stash": "Remiser (stash)",
- "submenu.tags": "Étiquettes",
- "view.workbench.cloneRepository": "Vous pouvez cloner un dépôt localement.\r\n[Cloner un dépôt](command:git.clone 'Cloner un dépôt une fois l’extension Git activée')",
- "view.workbench.learnMore": "Pour en savoir plus sur l'utilisation de Git et du contrôle de code source dans VS Code, [lisez notre documentation](https://aka.ms/vscode-scm).",
- "view.workbench.scm.disabled": "Si vous voulez utiliser des fonctionnalités git, activez git dans vos [paramètres](command:workbench.action.openSettings?%5B%22git.enabled%22%5D).\r\nPour en savoir plus sur l'utilisation de Git et du contrôle de code source dans VS Code, [lisez notre documentation](https://aka.ms/vscode-scm).",
- "view.workbench.scm.empty": "Pour utiliser des fonctionnalités git, vous pouvez ouvrir un dossier contenant un dépôt git ou le cloner à partir d'une URL.\r\n[Ouvrir un dossier](command:vscode.openFolder)\r\n[Cloner le dépôt](command:git.clone)\r\nPour en savoir plus sur la façon d'utiliser git et le contrôle de code source dans VS Code [lisez nos documents](https://aka.ms/vscode-scm).",
- "view.workbench.scm.emptyWorkspace": "L'espace de travail actuellement ouvert n'a aucun dossier contenant des dépôts git.\r\n[Ajouter un dossier à l'espace de travail](command:workbench.action.addRootFolder)\r\nPour en savoir plus sur la façon d'utiliser git et le contrôle de code source dans VS Code [lisez nos documents](https://aka.ms/vscode-scm).",
- "view.workbench.scm.folder": "Le dossier actif ne contient aucun dépôt git. Vous pouvez initialiser un dépôt pour activer les fonctionnalités de contrôle de code source basées sur git.\r\n[Initialiser un dépôt](command:git.init?%5Btrue%5D)\r\nPour en savoir plus sur l’utilisation de git et le contrôle de code source dans VSCode, [consultez notre documentation](https://aka.ms/vscode-scm).",
- "view.workbench.scm.missing": "Installez Git, un système de contrôle de code source populaire, pour suivre les modifications du code et collaborer avec d’autres personnes. En savoir plus sur notre [Git guides](https://aka.ms/vscode-scm).",
- "view.workbench.scm.missing.linux": "Le contrôle de code source dépend de Git en cours d’installation.\r\n[Download Git for Linux](https://git-scm.com/download/linux)\r\nAprès l’installation, [reload](command:workbench.action.reloadWindow) (ou [troubleshoot](command:git.showOutput)). Des fournisseurs de contrôle de code source supplémentaires peuvent être installés [from the Marketplace](command:workbench.extensions.search?%22%40category%3A%5C%22scm%20providers%5C%22%22).",
- "view.workbench.scm.missing.mac": "[Download Git for macOS](https://git-scm.com/download/mac)\r\nAprès l’installation, [reload](command:workbench.action.reloadWindow) (ou [troubleshoot](command:git.showOutput)). Des fournisseurs de contrôle de code source supplémentaires peuvent être installés [from the Marketplace](command:workbench.extensions.search?%22%40category%3A%5C%22scm%20providers%5C%22%22).",
- "view.workbench.scm.missing.windows": "[Download Git for Windows](https://git-scm.com/download/win)\r\nAprès l’installation, [reload](command:workbench.action.reloadWindow) (ou [troubleshoot](command:git.showOutput)). Des fournisseurs de contrôle de code source supplémentaires peuvent être installés [from the Marketplace](command:workbench.extensions.search?%22%40category%3A%5C%22scm%20providers%5C%22%22).",
- "view.workbench.scm.workspace": "L’espace de travail actif n’a aucun dossier contenant des dépôts git. Vous pouvez initialiser un dépôt dans un dossier pour activer les fonctionnalités de contrôle de code source basées sur git.\r\n[Initialiser un dépôt](command:git.init)\r\nPour en savoir plus sur l’utilisation de git et le contrôle de code source dans VS Code, [consultez notre documentation](https://aka.ms/vscode-scm)."
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-fr/translations/extensions/github-authentication.i18n.json b/i18n/vscode-language-pack-fr/translations/extensions/github-authentication.i18n.json
deleted file mode 100644
index 0ff96bbdbd..0000000000
--- a/i18n/vscode-language-pack-fr/translations/extensions/github-authentication.i18n.json
+++ /dev/null
@@ -1,27 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "dist/githubServer": {
- "code.detail": "Pour terminer l’authentification, accédez à GitHub et collez le code unique ci-dessus.",
- "code.title": "Votre code : {0}",
- "no": "Non",
- "otherReasonMessage": "Vous n’avez pas encore terminé d’autoriser cette extension à utiliser GitHub. Voulez-vous continuer à essayer ?",
- "progress": "Ouvrez [{0}]({0}) dans un nouvel onglet et collez votre code à usage unique : {1}",
- "signingIn": "Connexion à github.com...",
- "signingInAnotherWay": "Connexion à github.com...",
- "userCancelledMessage": "Vous ne parvenez pas à vous connecter ? Voulez-vous essayer une autre méthode ?",
- "yes": "Oui"
- },
- "package": {
- "description": "Fournisseur d'authentification GitHub",
- "displayName": "Authentification GitHub"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-fr/translations/extensions/github-browser.i18n.json b/i18n/vscode-language-pack-fr/translations/extensions/github-browser.i18n.json
deleted file mode 100644
index 13bb67926f..0000000000
--- a/i18n/vscode-language-pack-fr/translations/extensions/github-browser.i18n.json
+++ /dev/null
@@ -1,19 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "package": {
- "displayName": "Navigateur GitHub",
- "description": "Parcourir à distance un dépôt GitHub"
- },
- "dist/scm": {
- "no changes": "Il n'existe aucun changement à valider."
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-fr/translations/extensions/github.i18n.json b/i18n/vscode-language-pack-fr/translations/extensions/github.i18n.json
deleted file mode 100644
index 07b874d219..0000000000
--- a/i18n/vscode-language-pack-fr/translations/extensions/github.i18n.json
+++ /dev/null
@@ -1,46 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "dist/publish": {
- "ignore": "Sélectionnez les fichiers à inclure dans le dépôt.",
- "openingithub": "Ouvrir dans GitHub",
- "pick folder": "Choisir un dossier à publier sur GitHub",
- "publishing_done": "Publication réussie du dépôt '{0}' sur GitHub.",
- "publishing_firstcommit": "Création du premier commit",
- "publishing_private": "Publication sur un dépôt GitHub privé",
- "publishing_public": "Publication sur un dépôt GitHub public",
- "publishing_uploading": "Chargement des fichiers"
- },
- "dist/pushErrorHandler": {
- "create a fork": "Créer une duplication (fork)",
- "create fork": "Créer une duplication (fork) GitHub",
- "createghpr": "Création d'une demande de tirage (pull request) GitHub...",
- "createpr": "Créer une demande de tirage (PR)",
- "donepr": "La demande de tirage (PR) '{0}/{1}#{2}' a été correctement créée sur GitHub.",
- "fork": "Vous n'avez pas les autorisations nécessaires pour effectuer un envoi (push) vers '{0}/{1}' sur GitHub. Voulez-vous créer une duplication (fork) pour y effectuer l'envoi à la place ?",
- "forking": "Création d'une duplication (fork) '{0}/{1}'...",
- "forking_done": "La duplication (fork) '{0}' a été correctement créée sur GitHub.",
- "forking_pushing": "Envoi (push) des changements...",
- "no": "Non",
- "no pr template": "Aucun modèle",
- "openingithub": "Ouvrir dans GitHub",
- "openpr": "Ouvrir la demande de tirage (PR)",
- "select pr template": "Sélectionner le modèle de demande de tirage (pull request)"
- },
- "package": {
- "config.gitAuthentication": "Détermine si l'authentification GitHub automatique doit être activée pour les commandes Git dans VS Code.",
- "config.gitProtocol": "Contrôle le protocole utilisé pour cloner un référentiel GitHub",
- "description": "Fonctionnalités GitHub pour VS Code",
- "displayName": "GitHub",
- "welcome.publishFolder": "Vous pouvez également publier directement ce dossier sur un dépôt GitHub. Une fois la publication effectuée, vous avez accès aux fonctionnalités de contrôle de code source gérées par git et GitHub.\r\n[$(github) Publier sur GitHub](command:github.publish)",
- "welcome.publishWorkspaceFolder": "Vous pouvez également publier directement un dossier d’espace de travail sur un dépôt GitHub. Une fois la publication effectuée, vous avez accès aux fonctionnalités de contrôle de code source gérées par git et GitHub.\r\n[$(github) Publier sur GitHub](command:github.publish)"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-fr/translations/extensions/go.i18n.json b/i18n/vscode-language-pack-fr/translations/extensions/go.i18n.json
deleted file mode 100644
index f28444be4f..0000000000
--- a/i18n/vscode-language-pack-fr/translations/extensions/go.i18n.json
+++ /dev/null
@@ -1,16 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "package": {
- "description": "Fournit la coloration syntaxique et la correspondance de parenthèses dans les fichiers Go.",
- "displayName": "Bases du langage Go"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-fr/translations/extensions/groovy.i18n.json b/i18n/vscode-language-pack-fr/translations/extensions/groovy.i18n.json
deleted file mode 100644
index 76ee28eeb5..0000000000
--- a/i18n/vscode-language-pack-fr/translations/extensions/groovy.i18n.json
+++ /dev/null
@@ -1,16 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "package": {
- "description": "Fournit des extraits de code, la coloration syntaxique et la correspondance des crochets dans les fichiers Groovy.",
- "displayName": "Concepts de base du langage Groovy"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-fr/translations/extensions/grunt.i18n.json b/i18n/vscode-language-pack-fr/translations/extensions/grunt.i18n.json
deleted file mode 100644
index 4bd20e1bcf..0000000000
--- a/i18n/vscode-language-pack-fr/translations/extensions/grunt.i18n.json
+++ /dev/null
@@ -1,25 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "dist/main": {
- "execFailed": "L'auto détection de Grunt pour le dossier {0} a échoué avec l’erreur : {1}",
- "gruntShowOutput": "Accéder à la sortie",
- "gruntTaskDetectError": "Problème de recherche de tâches Grunt. Consultez la sortie pour plus d'informations."
- },
- "package": {
- "config.grunt.autoDetect": "Contrôle l’activation de la détection des tâches Grunt. La détection des tâches Grunt peut entraîner l’exécution de fichiers dans un espace de travail ouvert.",
- "description": "Extension pour ajouter des fonctionnalités Grunt à VS Code.",
- "displayName": "Prise en charge de Grunt pour VS Code",
- "grunt.taskDefinition.args.description": "Arguments de ligne de commande à passer à la tâche grunt",
- "grunt.taskDefinition.file.description": "Le fichier Grunt qui fournit la tâche. Peut être oublié.",
- "grunt.taskDefinition.type.description": "La tâche Grunt à personnaliser."
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-fr/translations/extensions/gulp.i18n.json b/i18n/vscode-language-pack-fr/translations/extensions/gulp.i18n.json
deleted file mode 100644
index 3bc30a0ef3..0000000000
--- a/i18n/vscode-language-pack-fr/translations/extensions/gulp.i18n.json
+++ /dev/null
@@ -1,24 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "dist/main": {
- "execFailed": "L'auto détection de gulp pour le dossier {0} a échoué avec l’erreur : {1}",
- "gulpShowOutput": "Accéder à la sortie",
- "gulpTaskDetectError": "Problème de recherche des tâches gulp. Consultez la sortie pour plus d'informations."
- },
- "package": {
- "config.gulp.autoDetect": "Contrôle l’activation de la détection des tâches Gulp. La détection des tâches Gulp peut entraîner l’exécution de fichiers dans un espace de travail ouvert.",
- "description": "Extension qui ajoute des fonctionnalités Gulp à VS Code.",
- "displayName": "Prise en charge de Gulp pour VS Code",
- "gulp.taskDefinition.file.description": "Le fichier Gulp qui fournit la tâche. Peut être oublié.",
- "gulp.taskDefinition.type.description": "La tâche Gulp à personnaliser."
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-fr/translations/extensions/handlebars.i18n.json b/i18n/vscode-language-pack-fr/translations/extensions/handlebars.i18n.json
deleted file mode 100644
index 31762f339e..0000000000
--- a/i18n/vscode-language-pack-fr/translations/extensions/handlebars.i18n.json
+++ /dev/null
@@ -1,16 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "package": {
- "description": "Fournit la coloration syntaxique et la correspondance des crochets dans les fichiers Handlebars.",
- "displayName": "Bases du langage Handlebars"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-fr/translations/extensions/hlsl.i18n.json b/i18n/vscode-language-pack-fr/translations/extensions/hlsl.i18n.json
deleted file mode 100644
index 05f5ed9e98..0000000000
--- a/i18n/vscode-language-pack-fr/translations/extensions/hlsl.i18n.json
+++ /dev/null
@@ -1,16 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "package": {
- "description": "Fournit la coloration syntaxique et la correspondance des crochets dans les fichiers HLSL.",
- "displayName": "Concepts de base du langage HLSL"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-fr/translations/extensions/html-language-features.i18n.json b/i18n/vscode-language-pack-fr/translations/extensions/html-language-features.i18n.json
deleted file mode 100644
index dba5202c29..0000000000
--- a/i18n/vscode-language-pack-fr/translations/extensions/html-language-features.i18n.json
+++ /dev/null
@@ -1,59 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "client\\dist\\node/htmlClient": {
- "configureButton": "Configurer",
- "folding.end": "Fin de la région repliable",
- "folding.html": "Point de départ HTML5 simple",
- "folding.start": "Début de la région repliable",
- "htmlserver.name": "Serveur de langage HTML",
- "linkedEditingQuestion": "VS Code dispose désormais d'une prise en charge intégrée des étiquettes de renommage automatique. Voulez-vous l'activer ?"
- },
- "package": {
- "description": "Fournit une prise en charge de langage complète pour les fichiers HTML et Handlebar",
- "displayName": "Fonctionnalités de langage HTML",
- "html.autoClosingTags": "Activez/désactivez la fermeture automatique des balises HTML.",
- "html.autoCreateQuotes": "Activez/désactivez la création automatique de guillemets pour l’attribution d’attribut HTML. Le type de guillemets peut être configuré par « #html.completion.attributeDefaultValue# ».",
- "html.completion.attributeDefaultValue": "Contrôle la valeur par défaut des attributs une fois l’achèvement accepté",
- "html.completion.attributeDefaultValue.doublequotes": "La valeur de l'attribut est fixée à \"\".",
- "html.completion.attributeDefaultValue.empty": "La valeur de l'attribut n'est pas définie.",
- "html.completion.attributeDefaultValue.singlequotes": "La valeur de l'attribut est fixée à ''.",
- "html.customData.desc": "Liste de chemins de fichiers relatifs pointant vers des fichiers JSON respectant le [format de données personnalisé](https://github.com/microsoft/vscode-html-languageservice/blob/master/docs/customData.md).\r\n\r\nVS Code charge des données personnalisées au démarrage pour améliorer la prise en charge des balises, attributs et valeurs d’attribut HTML personnalisés que vous spécifiez dans les fichiers JSON.\r\n\r\nLes chemins de fichiers sont relatifs à l’espace de travail, et seuls les paramètres de dossier d’espace de travail sont pris en compte.",
- "html.format.contentUnformatted.desc": "Liste des balises, séparés par des virgules, où le contenu ne devrait pas être reformaté. `null` par défaut pour la balise `pre`.",
- "html.format.enable.desc": "Activer/désactiver le formateur HTML par défaut.",
- "html.format.extraLiners.desc": "Liste des balises, séparées par des virgules, qui devraient avoir un saut de ligne supplémentaire devant eux. `null` par défaut pour `\"head, body, /html\"`.",
- "html.format.indentHandlebars.desc": "Mettez en forme et indenter `{{#foo}}`, ainsi que `{{/foo}}`.",
- "html.format.indentInnerHtml.desc": "Mettez en retrait les sections '' et ''.",
- "html.format.maxPreserveNewLines.desc": "Nombre maximal de sauts de ligne à être conservés dans un segment unique. Utiliser `null` pour illimité.",
- "html.format.preserveNewLines.desc": "Contrôle si les sauts de ligne existants avant des éléments doivent être préservés. Fonctionne uniquement avant des éléments, pas à l’intérieur de balises ou dans le texte.",
- "html.format.templating.desc": "Privilégie les balises de langage de templating django, erb, handlebars et php.",
- "html.format.unformatted.desc": "Liste des balises, séparées par des virgules, qui ne devrait pas être reformatées. `null` par défaut toutes les balises répertoriées dans https://www.w3.org/TR/html5/dom.html#phrasing-content.",
- "html.format.unformattedContentDelimiter.desc": "Garde ensemble le contenu du texte dans cette chaîne.",
- "html.format.wrapAttributes.alignedmultiple": "Entourer lorsque la longueur de ligne est dépassée, aligner verticalement les attributs.",
- "html.format.wrapAttributes.auto": "Retour automatique à la ligne des attributs uniquement en cas de dépassement de la longueur de la ligne.",
- "html.format.wrapAttributes.desc": "Retour à la ligne des attributs.",
- "html.format.wrapAttributes.force": "Retour automatique à la ligne de chaque attribut, sauf le premier.",
- "html.format.wrapAttributes.forcealign": "Retour automatique à la ligne de chaque attribut, sauf le premier, avec maintien de l'alignement.",
- "html.format.wrapAttributes.forcemultiline": "Retour automatique à la ligne de chaque attribut.",
- "html.format.wrapAttributes.preserve": "Conserve le retour à la ligne des attributs.",
- "html.format.wrapAttributes.preservealigned": "Conservez le wrapping des attributs, mais alignez-les.",
- "html.format.wrapAttributesIndentSize.desc": "Mettez en retrait les attributs encapsulés après N caractères. Utilisez 'null' pour utiliser la taille de retrait par défaut. Ignoré si '#html.format.wrapAttributes#' a la valeur 'aligned'.",
- "html.format.wrapLineLength.desc": "Nombre maximal de caractères par ligne (0 = désactiver).",
- "html.hover.documentation": "Affiche la documentation relative aux balises et aux attributs quand le curseur passe sur l'élément.",
- "html.hover.references": "Affiche les références à MDN quand le curseur passe sur l'élément.",
- "html.mirrorCursorOnMatchingTag": "Activez/désactivez le curseur de mise en miroir sur la balise HTML correspondante.",
- "html.mirrorCursorOnMatchingTagDeprecationMessage": "Déprécié au profit de 'editor.linkedEditing'",
- "html.suggest.html5.desc": "Contrôle si la prise en charge intégrée du langage HTML propose des balises, des propriétés et des valeurs HTML5.",
- "html.trace.server.desc": "Trace la communication entre VS Code et le serveur de langage HTML.",
- "html.validate.scripts": "Contrôle si la prise en charge intégrée du langage HTML valide les scripts incorporés.",
- "html.validate.styles": "Contrôle si la prise en charge intégrée du langage HTML valide les styles incorporés."
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-fr/translations/extensions/html.i18n.json b/i18n/vscode-language-pack-fr/translations/extensions/html.i18n.json
deleted file mode 100644
index ebe99427ce..0000000000
--- a/i18n/vscode-language-pack-fr/translations/extensions/html.i18n.json
+++ /dev/null
@@ -1,16 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "package": {
- "description": "Fournit la coloration syntaxique, la mise en correspondance des crochets et les extraits dans les fichiers HTML.",
- "displayName": "Notions de base du langage HTML"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-fr/translations/extensions/image-preview.i18n.json b/i18n/vscode-language-pack-fr/translations/extensions/image-preview.i18n.json
deleted file mode 100644
index 4f07da2797..0000000000
--- a/i18n/vscode-language-pack-fr/translations/extensions/image-preview.i18n.json
+++ /dev/null
@@ -1,39 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "dist/binarySizeStatusBarEntry": {
- "sizeB": "{0} o",
- "sizeGB": "{0} Go",
- "sizeKB": "{0} Ko",
- "sizeMB": "{0} Mo",
- "sizeStatusBar.name": "Taille binaire de l'image",
- "sizeTB": "{0} To"
- },
- "dist/preview": {
- "preview.imageLoadError": "Une erreur s'est produite au chargement de l'image.",
- "preview.imageLoadErrorLink": "Ouvrir le fichier dans l'éditeur de texte/binaire standard de VS Code ?"
- },
- "dist/sizeStatusBarEntry": {
- "sizeStatusBar.name": "Taille de l'image"
- },
- "dist/zoomStatusBarEntry": {
- "zoomStatusBar.name": "Zoom de l'image",
- "zoomStatusBar.placeholder": "Sélectionner le niveau de zoom",
- "zoomStatusBar.wholeImageLabel": "Image entière"
- },
- "package": {
- "command.zoomIn": "Zoom avant",
- "command.zoomOut": "Zoom arrière",
- "customEditors.displayName": "Aperçu de l'image",
- "description": "Fournit l'aperçu d'image intégré de VS Code",
- "displayName": "Aperçu de l'image"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-fr/translations/extensions/ini.i18n.json b/i18n/vscode-language-pack-fr/translations/extensions/ini.i18n.json
deleted file mode 100644
index 0da727ea2c..0000000000
--- a/i18n/vscode-language-pack-fr/translations/extensions/ini.i18n.json
+++ /dev/null
@@ -1,16 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "package": {
- "description": "Fournit la coloration syntaxique et la correspondance des crochets dans les fichiers Ini.",
- "displayName": "Bases du langage Ini"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-fr/translations/extensions/ipynb.i18n.json b/i18n/vscode-language-pack-fr/translations/extensions/ipynb.i18n.json
deleted file mode 100644
index 83305a08c9..0000000000
--- a/i18n/vscode-language-pack-fr/translations/extensions/ipynb.i18n.json
+++ /dev/null
@@ -1,16 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "package": {
- "description": "Fournit une prise en charge de base pour l’ouverture et la lecture des fichiers de bloc-notes .ipynb de Jupyter",
- "displayName": "prise en charge de ipynb"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-fr/translations/extensions/jake.i18n.json b/i18n/vscode-language-pack-fr/translations/extensions/jake.i18n.json
deleted file mode 100644
index 8140a53fc2..0000000000
--- a/i18n/vscode-language-pack-fr/translations/extensions/jake.i18n.json
+++ /dev/null
@@ -1,24 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "dist/main": {
- "execFailed": "L'auto détection de Jake pour le dossier {0} a échoué avec l’erreur : {1}",
- "jakeShowOutput": "Accéder à la sortie",
- "jakeTaskDetectError": "Problème de recherche des tâches jake. Consultez la sortie pour plus d'informations."
- },
- "package": {
- "config.jake.autoDetect": "Contrôle l’activation de la détection des tâches Jake. La détection des tâches Jake peut entraîner l’exécution de fichiers dans un espace de travail ouvert.",
- "description": "Extension pour ajouter des fonctionnalités Jake à VS Code.",
- "displayName": "Prise en charge de Jake pour VS Code",
- "jake.taskDefinition.file.description": "Le fichier Jake qui fournit la tâche. Peut être oublié.",
- "jake.taskDefinition.type.description": "La tâche Jake à personnaliser."
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-fr/translations/extensions/java.i18n.json b/i18n/vscode-language-pack-fr/translations/extensions/java.i18n.json
deleted file mode 100644
index 4fe823b597..0000000000
--- a/i18n/vscode-language-pack-fr/translations/extensions/java.i18n.json
+++ /dev/null
@@ -1,16 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "package": {
- "description": "Fournit des extraits de code, la coloration syntaxique, la correspondance des crochets et le repli dans les fichiers Java.",
- "displayName": "Concepts de base du langage Java"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-fr/translations/extensions/javascript.i18n.json b/i18n/vscode-language-pack-fr/translations/extensions/javascript.i18n.json
deleted file mode 100644
index eb18f66f03..0000000000
--- a/i18n/vscode-language-pack-fr/translations/extensions/javascript.i18n.json
+++ /dev/null
@@ -1,16 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "package": {
- "description": "Fournit des extraits de code, la coloration syntaxique, la correspondance des crochets et le repli dans les fichiers JavaScript.",
- "displayName": "Concepts de base du langage JavaScript"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-fr/translations/extensions/json-language-features.i18n.json b/i18n/vscode-language-pack-fr/translations/extensions/json-language-features.i18n.json
deleted file mode 100644
index 00fe43c2d7..0000000000
--- a/i18n/vscode-language-pack-fr/translations/extensions/json-language-features.i18n.json
+++ /dev/null
@@ -1,73 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "client\\dist\\node/jsonClient": {
- "json.clearCache.completed": "Cache de schéma JSON effacé.",
- "json.resolveError": "JSON : erreur de résolution de schéma",
- "json.schemaResolutionDisabledMessage": "Le téléchargement des schémas est désactivé. Cliquez pour configurer.",
- "json.schemaResolutionErrorMessage": "Impossible de résoudre le schéma. Cliquez pour réessayer.",
- "jsonserver.name": "Serveur de langage JSON",
- "schemaDownloadDisabled": "Le téléchargement des schémas est désactivé via le paramètre '{0}'",
- "untitled.schema": "Impossible de charger {0}"
- },
- "client\\dist\\node/languageStatus": {
- "documentColorsStatusItem.name": "État du symbole de couleur JSON",
- "documentSymbolsStatusItem.name": "État du plan JSON",
- "foldingRangesStatusItem.name": "État du pliage JSON",
- "openExtension": "Ouvrir l'extension",
- "openSettings": "Ouvrir les paramètres",
- "pending.detail": "Chargement des informations JSON",
- "schema.noSchema": "Aucun schéma configuré pour ce fichier",
- "schema.showdocs": "En savoir plus sur la configuration du schéma JSON...",
- "schemaFromFolderSettings": "Configuré dans les paramètres de l’espace de travail",
- "schemaFromUserSettings": "Configuré dans les paramètres utilisateur",
- "schemaFromextension": "Configuré par l’extension : {0}",
- "schemaPicker.title": "Schémas JSON utilisés pour {0}",
- "status.button.configure": "Configurer",
- "status.error": "Impossible de calculer les schémas utilisés",
- "status.limitedDocumentColors.details": "seuls les éléments décoratifs de couleurs {0} sont affichés.",
- "status.limitedDocumentColors.short": "Symboles de couleur limités",
- "status.limitedDocumentSymbols.details": "uniquement {0} symboles de document affichés",
- "status.limitedDocumentSymbols.short": "Contour limité",
- "status.limitedFoldingRanges.details": "uniquement {0} plages pliables affichées",
- "status.limitedFoldingRanges.short": "Plages de pliage limitées",
- "status.multipleSchema": "plusieurs schémas JSON configurés",
- "status.noSchema": "aucun schéma JSON configuré",
- "status.noSchema.short": "Aucune validation de schéma",
- "status.notJSON": "N’est pas un éditeur JSON.",
- "status.openSchemasLink": "Afficher les schémas",
- "status.singleSchema": "Schéma JSON configuré",
- "status.withSchema.short": "Schéma validé",
- "status.withSchemas.short": "Schéma validé",
- "statusItem.name": "Statut de validation JSON"
- },
- "package": {
- "description": "Fournit une prise en charge de langage pour les fichiers JSON",
- "displayName": "Fonctionnalités de langage JSON",
- "json.clickToRetry": "Cliquez pour réessayer.",
- "json.colorDecorators.enable.deprecationMessage": "Le paramètre 'json.colorDecorators.enable' a été déprécié en faveur de 'editor.colorDecorators'.",
- "json.colorDecorators.enable.desc": "Active ou désactive les éléments décoratifs de couleurs",
- "json.command.clearCache": "Effacer le cache de schéma",
- "json.enableSchemaDownload.desc": "Quand ils sont activés, les schémas JSON peuvent être récupérés (fetch) à partir des emplacements http et https.",
- "json.format.enable.desc": "Activer/désactiver le formateur JSON par défaut",
- "json.format.keepLines.desc": "Conservez toutes les nouvelles lignes existantes lors de la mise en forme.",
- "json.maxItemsComputed.desc": "Nombre maximal de symboles de plan et de régions de pliage calculé (limité pour des raisons de performances).",
- "json.maxItemsExceededInformation.desc": "Affiche une notification en cas de dépassement du nombre maximal de symboles de plan et de zones de pliage.",
- "json.schemaResolutionErrorMessage": "Impossible de résoudre le schéma.",
- "json.schemas.desc": "Associe les schémas aux fichiers JSON dans le projet actif.",
- "json.schemas.fileMatch.desc": "Tableau de modèles de fichiers pour la recherche de correspondances durant la résolution de fichiers JSON en schémas. Le caractère '*' peut être utilisé en tant que caractère générique. Les modèles d'exclusion peuvent également être définis et commencer par '!'. Un fichier correspond quand il existe au moins un modèle correspondant et que le dernier modèle correspondant n'est pas un modèle d'exclusion.",
- "json.schemas.fileMatch.item.desc": "Modèle de fichier pouvant contenir '*' à mapper durant la résolution de fichiers JSON en schémas.",
- "json.schemas.schema.desc": "Définition de schéma pour l'URL indiquée. Le schéma doit être fourni uniquement pour éviter les accès à l'URL du schéma.",
- "json.schemas.url.desc": "URL de schéma ou chemin relatif d'un schéma dans le répertoire actuel",
- "json.tracing.desc": "Trace la communication entre VS Code et le serveur de langage JSON.",
- "json.validate.enable.desc": "Activez/désactivez la validation JSON."
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-fr/translations/extensions/json.i18n.json b/i18n/vscode-language-pack-fr/translations/extensions/json.i18n.json
deleted file mode 100644
index 2ef23b6bb6..0000000000
--- a/i18n/vscode-language-pack-fr/translations/extensions/json.i18n.json
+++ /dev/null
@@ -1,16 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "package": {
- "description": "Fournit la coloration syntaxique et la mise en correspondance des crochets dans les fichiers JSON.",
- "displayName": "Bases du langage JSON"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-fr/translations/extensions/less.i18n.json b/i18n/vscode-language-pack-fr/translations/extensions/less.i18n.json
deleted file mode 100644
index 105de7caa4..0000000000
--- a/i18n/vscode-language-pack-fr/translations/extensions/less.i18n.json
+++ /dev/null
@@ -1,16 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "package": {
- "description": "Fournit la coloration syntaxique, la correspondance des parenthèses et le pliage dans les fichiers Less.",
- "displayName": "Bases du langage Less"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-fr/translations/extensions/log.i18n.json b/i18n/vscode-language-pack-fr/translations/extensions/log.i18n.json
deleted file mode 100644
index 0e3d4c0ad2..0000000000
--- a/i18n/vscode-language-pack-fr/translations/extensions/log.i18n.json
+++ /dev/null
@@ -1,16 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "package": {
- "description": "Fournit la coloration syntaxique pour les fichiers avec une extension .log.",
- "displayName": "LOG"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-fr/translations/extensions/lua.i18n.json b/i18n/vscode-language-pack-fr/translations/extensions/lua.i18n.json
deleted file mode 100644
index 3d74fa75ed..0000000000
--- a/i18n/vscode-language-pack-fr/translations/extensions/lua.i18n.json
+++ /dev/null
@@ -1,16 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "package": {
- "description": "Fournit la coloration syntaxique et la correspondance des crochets dans les fichiers Lua.",
- "displayName": "Concepts de base du langage Lua"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-fr/translations/extensions/make.i18n.json b/i18n/vscode-language-pack-fr/translations/extensions/make.i18n.json
deleted file mode 100644
index 13546bdd05..0000000000
--- a/i18n/vscode-language-pack-fr/translations/extensions/make.i18n.json
+++ /dev/null
@@ -1,16 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "package": {
- "description": "Fournit la coloration syntaxique et la correspondance des crochets dans les fichiers Make.",
- "displayName": "Bases du langage Make"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-fr/translations/extensions/markdown-basics.i18n.json b/i18n/vscode-language-pack-fr/translations/extensions/markdown-basics.i18n.json
deleted file mode 100644
index 0eff4217eb..0000000000
--- a/i18n/vscode-language-pack-fr/translations/extensions/markdown-basics.i18n.json
+++ /dev/null
@@ -1,16 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "package": {
- "description": "Fournit des extraits de code et la coloration syntaxique pour Markdown.",
- "displayName": "Concepts de base du langage Markdown"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-fr/translations/extensions/markdown-language-features.i18n.json b/i18n/vscode-language-pack-fr/translations/extensions/markdown-language-features.i18n.json
deleted file mode 100644
index a600d0e410..0000000000
--- a/i18n/vscode-language-pack-fr/translations/extensions/markdown-language-features.i18n.json
+++ /dev/null
@@ -1,90 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "dist/client": {
- "markdownServer.name": "Serveur de langage Markdown"
- },
- "dist/languageFeatures/diagnostics": {
- "ignoreLinksQuickFix.title": "Excluez '{0}' de la validation de lien."
- },
- "dist/languageFeatures/fileReferences": {
- "error.noResource": "Échec de la recherche des références de fichiers. Aucune ressource fournie.",
- "progress.title": "Recherche des références de fichiers"
- },
- "dist/preview/documentRenderer": {
- "preview.notFound": "{0} est introuvable",
- "preview.securityMessage.label": "Avertissement de sécurité de contenu désactivé",
- "preview.securityMessage.text": "Du contenu a été désactivé dans ce document",
- "preview.securityMessage.title": "Le contenu potentiellement dangereux ou non sécurisé a été désactivé dans l'aperçu Markdown. Changez les paramètres de sécurité de l'aperçu Markdown pour autoriser le contenu non sécurisé ou activer les scripts"
- },
- "dist/preview/preview": {
- "lockedPreviewTitle": "[Aperçu] {0}",
- "onPreviewStyleLoadError": "Impossible de charger 'markdown.styles' : {0}",
- "preview.clickOpenFailed": "Impossible d'ouvrir {0}",
- "previewTitle": "Prévisualiser {0}"
- },
- "dist/preview/security": {
- "disable.description": "Autorisez tout le contenu et l’exécution des scripts. Non recommandé",
- "disable.title": "Désactiver",
- "disableSecurityWarning.title": "Désactiver l'aperçu d'avertissements de sécurité pour cet espace de travail",
- "enableSecurityWarning.title": "Activer l'aperçu d'avertissements de sécurité pour cet espace de travail",
- "insecureContent.description": "Activer le chargement de contenu sur http",
- "insecureContent.title": "Autoriser le contenu non sécurisé",
- "insecureLocalContent.description": "Activer le chargement de contenu http servi par localhost",
- "insecureLocalContent.title": "Autoriser le contenu local non sécurisé",
- "moreInfo.title": "Informations",
- "preview.showPreviewSecuritySelector.title": "Sélectionner les paramètres de sécurité pour les aperçus Markdown dans cet espace de travail",
- "strict.description": "Charger uniquement le contenu sécurisé.",
- "strict.title": "Strict",
- "toggleSecurityWarning.description": "N'affecte pas le niveau de sécurité de contenu"
- },
- "package": {
- "configuration.markdown.editor.drop.enabled": "Enable/disable dropping into the markdown editor to insert shift. Requires enabling `#editor.dropIntoEditor.enabled#`.",
- "configuration.markdown.editor.pasteLinks.enabled": "Activer/désactiver le collage de fichiers dans un éditeur Markdown insère des liens Markdown. Cela nécessite l’activation de « #editor.experimental.pasteActions.enabled# ».",
- "configuration.markdown.experimental.validate.enabled.description": "Activez/désactivez tous les rapports d’erreurs dans les fichiers Markdown.",
- "configuration.markdown.experimental.validate.fileLinks.enabled.description": "Validez les liens vers d’autres fichiers dans les fichiers Markdown, par exemple `[link](/path/to/file.md)`. Cette opération vérifie que les fichiers cibles existent. Nécessite l’activation de `#markdown.experimental.validate.enabled#`.",
- "configuration.markdown.experimental.validate.fileLinks.markdownFragmentLinks.description": "Validez la partie fragment des liens vers des en-têtes dans d’autres fichiers dans les fichiers Markdown, par exemple '[link](/path/to/file.md#header)'. Hérite la valeur de paramètre de '#markdown.experimental.validate.fragmentLinks.enabled#' par défaut.",
- "configuration.markdown.experimental.validate.fragmentLinks.enabled.description": "Validez les liens de fragment vers les en-têtes dans le fichier Markdown actuel, par exemple `[link](#header)`. Nécessite l’activation de `#markdown.experimental.validate.enabled#`.",
- "configuration.markdown.experimental.validate.ignoreLinks.description": "Configurez les liens qui ne doivent pas être validés. Par exemple, « /about » ne valide pas le lien «[about](/about) », tandis que le glob « /assets/**/*.svg » vous permet d’ignorer la validation de tout lien vers les fichiers « .svg » sous le répertoire « assets ».",
- "configuration.markdown.experimental.validate.referenceLinks.enabled.description": "Validez les liens de référence dans les fichiers Markdown, par exemple `[link][ref]`. Nécessite l’activation de `#markdown.experimental.validate.enabled#`.",
- "configuration.markdown.links.openLocation.beside": "Ouvrez les liens à côté de l'éditeur actif.",
- "configuration.markdown.links.openLocation.currentGroup": "Ouvrez les liens dans le groupe d'éditeurs actif.",
- "configuration.markdown.links.openLocation.description": "Contrôle l'emplacement où doivent s'ouvrir les liens dans les fichiers Markdown.",
- "configuration.markdown.preview.openMarkdownLinks.description": "Contrôle la façon dont les liens vers d'autres fichiers Markdown doivent s'ouvrir dans l'aperçu Markdown.",
- "configuration.markdown.preview.openMarkdownLinks.inEditor": "Tente d'ouvrir les liens dans l'éditeur.",
- "configuration.markdown.preview.openMarkdownLinks.inPreview": "Tente d'ouvrir les liens dans l'aperçu Markdown.",
- "configuration.markdown.suggest.paths.enabled.description": "Activer/désactiver les suggestions de chemin d’accès pour les liens Markdown",
- "description": "Fournit une prise en charge riche de langage pour Markdown",
- "displayName": "Fonctionnalités de langage Markdown",
- "markdown.findAllFileReferences": "Rechercher les références de fichiers",
- "markdown.preview.breaks.desc": "Définit la façon dont les sauts de ligne sont affichés dans l'aperçu Markdown. Si vous affectez la valeur 'true', un est créé pour les nouvelles lignes à l'intérieur des paragraphes.",
- "markdown.preview.doubleClickToSwitchToEditor.desc": "Double-cliquez dans l'aperçu Markdown pour passer à l'éditeur.",
- "markdown.preview.fontFamily.desc": "Contrôle la famille de polices utilisée dans l'aperçu Markdown.",
- "markdown.preview.fontSize.desc": "Contrôle la taille de police en pixels utilisée dans l'aperçu Markdown.",
- "markdown.preview.lineHeight.desc": "Contrôle la hauteur de ligne utilisée dans l'aperçu Markdown. Ce nombre est relatif à la taille de police.",
- "markdown.preview.linkify": "Active ou désactive la conversion de texte de type URL en liens dans l'aperçu Markdown.",
- "markdown.preview.markEditorSelection.desc": "Marque la sélection actuelle de l'éditeur dans l'aperçu Markdown.",
- "markdown.preview.refresh.title": "Actualiser l'aperçu",
- "markdown.preview.scrollEditorWithPreview.desc": "Quand un aperçu Markdown défile, la vue de l'éditeur est mise à jour.",
- "markdown.preview.scrollPreviewWithEditor.desc": "Quand la fenêtre de l'éditeur Markdown défile, la vue de l'aperçu est mise à jour.",
- "markdown.preview.title": "Ouvrir l'aperçu",
- "markdown.preview.toggleLock.title": "Activer/désactiver le verrouillage de l'aperçu",
- "markdown.preview.typographer": "Active ou désactive certains remplacements indépendants du langage ainsi que l'amélioration de la présentation des guillemets dans l'aperçu Markdown.",
- "markdown.previewSide.title": "Ouvrir l'aperçu sur le côté",
- "markdown.showLockedPreviewToSide.title": "Ouvrir l'aperçu verrrouillé sur le côté",
- "markdown.showPreviewSecuritySelector.title": "Changer les paramètres de sécurité de l'aperçu",
- "markdown.showSource.title": "Afficher la source",
- "markdown.styles.dec": "Liste d'URL ou de chemins locaux de feuilles de style CSS à utiliser dans l'aperçu Markdown. Les chemins relatifs sont interprétés par rapport au dossier ouvert dans l'Explorateur. Si aucun dossier n'est ouvert, ils sont interprétés par rapport à l'emplacement du fichier Markdown. Tous les signes '\\' doivent être écrits sous la forme '\\\\'.",
- "markdown.trace.extension.desc": "Active la journalisation du débogage pour l'extension Markdown.",
- "markdown.trace.server.desc": "Trace la communication entre VS Code et le serveur de langage Markdown.",
- "workspaceTrust": "Requis pour le chargement des styles configurés dans l’espace de travail."
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-fr/translations/extensions/markdown-math.i18n.json b/i18n/vscode-language-pack-fr/translations/extensions/markdown-math.i18n.json
deleted file mode 100644
index f20a16b5a8..0000000000
--- a/i18n/vscode-language-pack-fr/translations/extensions/markdown-math.i18n.json
+++ /dev/null
@@ -1,17 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "package": {
- "config.markdown.math.enabled": "Activer/désactiver le rendu des maths dans l’aperçu intégrée du Markdown.",
- "description": "Ajoute la prise en charge mathématique à Markdown dans les blocs-notes.",
- "displayName": "Mathématiques Markdown"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-fr/translations/extensions/markdown-notebook-math.i18n.json b/i18n/vscode-language-pack-fr/translations/extensions/markdown-notebook-math.i18n.json
deleted file mode 100644
index 1a3a638cbf..0000000000
--- a/i18n/vscode-language-pack-fr/translations/extensions/markdown-notebook-math.i18n.json
+++ /dev/null
@@ -1,16 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "package": {
- "displayName": "Markdown Notebook math",
- "description": "Fournit une prise en charge riche de langage pour Markdown"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-fr/translations/extensions/merge-conflict.i18n.json b/i18n/vscode-language-pack-fr/translations/extensions/merge-conflict.i18n.json
deleted file mode 100644
index ad12a24272..0000000000
--- a/i18n/vscode-language-pack-fr/translations/extensions/merge-conflict.i18n.json
+++ /dev/null
@@ -1,35 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "package": {
- "command.accept.all-both": "Accepter les deux",
- "command.accept.all-current": "Accepter les modifications actuelles",
- "command.accept.all-incoming": "Accepter toutes les modifications entrantes",
- "command.accept.both": "Accepter les deux",
- "command.accept.current": "Accepter les modifications actuelles",
- "command.accept.incoming": "Accepter les modifications entrantes",
- "command.accept.selection": "Accepter la sélection",
- "command.category": "Conflit de fusion",
- "command.compare": "Conflit de comparaison des modifications actuelles",
- "command.next": "Conflit suivant",
- "command.previous": "Conflit précédent",
- "config.autoNavigateNextConflictEnabled": "Détermine s'il faut automatiquement passer au conflit de fusion suivant après la résolution d'un conflit de fusion.",
- "config.codeLensEnabled": "Créer un CodeLens pour les blocs de conflit de fusion dans l’éditeur.",
- "config.decoratorsEnabled": "Créer des décorateurs pour les blocs de conflit de fusion dans l’éditeur.",
- "config.diffViewPosition": "Contrôle si la vue Diff doit être ouverte pendant la comparaison des changements dans les conflits de fusion.",
- "config.diffViewPosition.below": "Ouvrez la vue Diff sous le groupe d'éditeurs actuel.",
- "config.diffViewPosition.beside": "Ouvrez la vue Diff à côté du groupe d'éditeurs actuel.",
- "config.diffViewPosition.current": "Ouvrez la vue Diff dans le groupe d'éditeurs actuel.",
- "config.title": "Conflit de fusion",
- "description": "Mise en surbrillance et commandes pour les conflits de fusion inline.",
- "displayName": "Conflit de fusion"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-fr/translations/extensions/microsoft-authentication.i18n.json b/i18n/vscode-language-pack-fr/translations/extensions/microsoft-authentication.i18n.json
deleted file mode 100644
index 8649a168ef..0000000000
--- a/i18n/vscode-language-pack-fr/translations/extensions/microsoft-authentication.i18n.json
+++ /dev/null
@@ -1,24 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "dist/AADHelper": {
- "pasteCodePlaceholder": "Paste authorization code here...",
- "pasteCodePrompt": "Provide the authorization code to complete the sign in flow.",
- "pasteCodeTitle": "Microsoft Authentication",
- "signOut": "Vous avez été déconnecté en raison de l'échec de la lecture des informations d'authentification stockées."
- },
- "package": {
- "description": "Fournisseur d'authentification Microsoft",
- "displayName": "Compte Microsoft",
- "signIn": "Se connecter",
- "signOut": "Se déconnecter"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-fr/translations/extensions/ms-vscode.github-browser.i18n.json b/i18n/vscode-language-pack-fr/translations/extensions/ms-vscode.github-browser.i18n.json
deleted file mode 100644
index 41b13c790e..0000000000
--- a/i18n/vscode-language-pack-fr/translations/extensions/ms-vscode.github-browser.i18n.json
+++ /dev/null
@@ -1,16 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "package": {
- "displayName": "Navigateur GitHub",
- "description": "Parcourir à distance un dépôt GitHub"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-fr/translations/extensions/ms-vscode.js-debug.i18n.json b/i18n/vscode-language-pack-fr/translations/extensions/ms-vscode.js-debug.i18n.json
index c8048c8dbe..fd5c77622c 100644
--- a/i18n/vscode-language-pack-fr/translations/extensions/ms-vscode.js-debug.i18n.json
+++ b/i18n/vscode-language-pack-fr/translations/extensions/ms-vscode.js-debug.i18n.json
@@ -8,281 +8,14 @@
],
"version": "1.0.0",
"contents": {
- "/src/adapter/breakpoints/userDefinedBreakpoint": {
- "breakpoint.provisionalBreakpoint": "Point d'arrêt indépendant"
- },
- "/src/adapter/console/queryObjectsMessage": {
- "queryObject.couldNotQuery": "Impossible d'interroger l'objet fourni",
- "queryObject.errorPreview": "Impossible de générer l'aperçu : {0}",
- "queryObject.invalidObject": "Seuls les objets peuvent être interrogés"
- },
- "/src/adapter/console/textualMessage": {
- "console.assert": "Échec d'assertion"
- },
- "/src/adapter/customBreakpoints": {
- "breakpoint.animationFrameFired": "Frame d'animation déclenché",
- "breakpoint.cancelAnimationFrame": "Annuler le frame d'animation",
- "breakpoint.closeAudioContext": "Fermer AudioContext",
- "breakpoint.createAudioContext": "Créer AudioContext",
- "breakpoint.createCanvasContext": "Créer un contexte de canevas",
- "breakpoint.cspViolation": "Script bloqué par la stratégie de sécurité de contenu",
- "breakpoint.cspViolationNamed": "Violation de la stratégie CSP \"{0}\"",
- "breakpoint.cspViolationNamedDetails": "Interruption d'exécution liée à un point d'arrêt d'instrumentation en raison d'une violation de la stratégie de sécurité de contenu. Directive \"{0}\"",
- "breakpoint.eventListenerNamed": "Interruption d'exécution liée au point d'arrêt de détecteur d'événements \"{0}\". Déclenchement activé sur \"{1}\"",
- "breakpoint.instrumentationNamed": "Interruption d'exécution liée au point d'arrêt d'instrumentation \"{0}\"",
- "breakpoint.requestAnimationFrame": "Demander le frame d'animation",
- "breakpoint.resumeAudioContext": "Reprendre AudioContext",
- "breakpoint.scriptFirstStatement": "Première instruction du script",
- "breakpoint.setInnerHtml": "Définir innerHTML",
- "breakpoint.setIntervalFired": "setInterval déclenché",
- "breakpoint.setTimeoutFired": "setTimeout déclenché",
- "breakpoint.suspendAudioContext": "Interrompre AudioContext",
- "breakpoint.webglErrorFired": "Erreur WebGL déclenchée",
- "breakpoint.webglErrorNamed": "Erreur WebGL \"{0}\"",
- "breakpoint.webglErrorNamedDetails": "Interruption d'exécution liée à un point d'arrêt d'instrumentation en raison d'une erreur WebGL. Erreur \"{0}\"",
- "breakpoint.webglWarningFired": "Avertissement WebGL déclenché"
- },
- "/src/adapter/debugAdapter": {
- "breakpoint.caughtExceptions": "Exceptions interceptées",
- "breakpoint.caughtExceptions.description": "S'arrête sur toutes les erreurs levées, même si elles sont interceptées plus tard.",
- "breakpoint.uncaughtExceptions": "Exceptions non interceptées",
- "error.cannotPrettyPrint": "Impossible d'effectuer une impression en mode Pretty",
- "error.sourceContentDidFail": "Impossible de récupérer le contenu source",
- "error.sourceNotFound": "Source introuvable",
- "error.variableNotFound": "Variable introuvable"
- },
- "/src/adapter/profiling/basicCpuProfiler": {
- "profile.cpu.description": "Génère un fichier .cpuprofile que vous pouvez ouvrir dans Chrome DevTools",
- "profile.cpu.label": "Profil du processeur"
- },
- "/src/adapter/profiling/basicHeapProfiler": {
- "profile.heap.description": "Génère un fichier .heapprofile que vous pouvez ouvrir dans les outils de développement de Chrome.",
- "profile.heap.label": "Profil de segment de mémoire"
- },
- "/src/adapter/profiling/heapDumpProfiler": {
- "profile.heap.description": "Génère un fichier .heapsnapshot que vous pouvez ouvrir dans Chrome DevTools",
- "profile.heap.label": "Instantané du tas"
- },
- "/src/adapter/sources": {
- "source.skipFiles": "Ignoré par skipFiles"
- },
- "/src/adapter/stackTrace": {
- "scope.block": "Bloc",
- "scope.catch": "Bloc Catch",
- "scope.closure": "Fermeture",
- "scope.closureNamed": "Fermeture ({0})",
- "scope.eval": "Eval",
- "scope.global": "Global",
- "scope.local": "Local",
- "scope.module": "Module",
- "scope.returnValue": "Valeur retournée",
- "scope.script": "Script",
- "scope.with": "Bloc With",
- "smartStepSkipLabel": "Ignoré par smartStep",
- "source.skipFiles": "Ignoré par skipFiles"
- },
- "/src/adapter/threads": {
- "error.evaluateDidFail": "Impossible d'évaluer",
- "error.evaluateOnAsyncStackFrame": "Impossible d'évaluer le frame de pile asynchrone",
- "error.pauseDidFail": "Impossible d'interrompre",
- "error.restartFrameAsync": "Impossible de redémarrer le frame asynchrone",
- "error.resumeDidFail": "Impossible de reprendre",
- "error.stackFrameNotFound": "Frame de pile introuvable",
- "error.stepInDidFail": "Impossible d'effectuer un pas à pas détaillé",
- "error.stepOutDidFail": "Impossible d'effectuer un pas à pas sortant",
- "error.stepOverDidFail": "Impossible d'effectuer le pas à pas suivant",
- "error.threadNotPaused": "Le thread n'est pas interrompu",
- "error.threadNotPausedOnException": "Le thread n'est pas interrompu en cas d'exception",
- "error.unknownRestartError": "Le cadre n’a pas pu être redémarré",
- "pause.DomBreakpoint": "Interruption d'exécution liée à un point d'arrêt DOM",
- "pause.assert": "Interruption d'exécution liée à une assertion",
- "pause.breakpoint": "Interruption d'exécution liée à un point d'arrêt",
- "pause.debugCommand": "Interruption d'exécution liée à un appel de debug()",
- "pause.default": "Interruption d'exécution",
- "pause.eventListener": "Interruption d'exécution liée à un détecteur d'événements",
- "pause.exception": "Interruption d'exécution liée à une exception",
- "pause.instrumentation": "Interruption d'exécution liée à un point d'arrêt d'instrumentation",
- "pause.oom": "Interruption d'exécution avant une exception pour mémoire insuffisante",
- "pause.promiseRejection": "En pause sur un rejet de promesse",
- "pause.xhr": "Interruption d'exécution liée à XMLHttpRequest ou fetch",
- "reason.description.restart": "En pause sur une entrée de frame",
- "warnings.handleSourceMapPause.didNotWait": "AVERTISSEMENT : Le traitement des mappages de sources de {0} a pris plus de {1} ms. Nous avons donc poursuivi l'exécution sans attendre que tous les points d'arrêt du script soient définis."
- },
- "/src/adapter/variableStore": {
- "error.customValueDescriptionGeneratorFailed": "{0} (description impossible : {1})",
- "error.emptyExpression": "Impossible de définir une valeur vide",
- "error.invalidExpression": "Expression non valide",
- "error.setVariableDidFail": "Impossible de définir la valeur de la variable",
- "error.unknown": "Erreur inconnue",
- "error.variableNotFound": "Variable introuvable"
- },
- "/src/binder": {
- "breakpoint.provisionalBreakpoint": "Point d'arrêt indépendant"
- },
- "/src/dap/errors": {
- "NVM_HOME.not.found.message": "L'attribut 'runtimeVersion' nécessite Node.js version manager 'nvm-windows' ou 'nvs'.",
- "NVS_HOME.not.found.message": "L'attribut 'runtimeVersion' nécessite l'installation du gestionnaire de versions Node.js 'nvs' ou 'nvm'.",
- "VSND2011": "Impossible de lancer la cible de débogage dans le terminal ({0}).",
- "VSND2029": "Impossible de charger les variables d'environnement à partir du fichier ({0}).",
- "asyncScopesNotAvailable": "Variables non disponibles dans les piles asynchrones",
- "breakpointSyntaxError": "Erreur de syntaxe au moment de la définition du point d'arrêt avec la condition {0} sur la ligne {1} : {2}",
- "browserVersionNotFound": "Impossible de localiser {0} version {1}. Versions découvertes automatiquement disponibles : {2}. Vous pouvez définir \"runtimeExecutable\" en fonction de l'une de ces versions dans votre fichier launch.json, ou fournir le chemin absolu de l'exécutable du navigateur.",
- "error.browserAttachError": "Impossible d'attacher le navigateur",
- "error.browserLaunchError": "Impossible de lancer le navigateur : \"{0}\"",
- "error.threadNotFound": "Page cible introuvable. Vous devrez peut-être mettre à jour votre \"urlFilter\" pour qu'il corresponde à la page à déboguer.",
- "invalidHitCondition": "Condition d'accès non valide \"{0}\". Expression attendue telle que \"> 42\" ou \"== 2\".",
- "noBrowserInstallFound": "Impossible de localiser une installation du navigateur sur votre système. Essayez de l'installer ou de fournir le chemin absolu du navigateur dans le « runtimeExecutable » de votre launch.json.",
- "noUwpPipeFound": "Impossible de se connecter à un canal Webview UWP. Vérifiez que votre webview est hébergé en mode débogage et que le « pipeName » indiqué dans votre fichier « launch.json » est correct.",
- "profile.error.concurrent": "Arrêtez le profilage en cours d'exécution avant d'en démarrer un nouveau.",
- "profile.error.generic": "Une erreur s'est produite au moment du profilage de la cible.",
- "runtime.node.notfound": "Le fichier binaire Node.js \"{0}\" : {1} est introuvable. Vérifiez que Node.js est installé et qu'il se trouve dans PATH, ou définissez \"runtimeExecutable\" dans votre fichier launch.json",
- "runtime.node.outdated": "La version de Node dans \"{0}\" est obsolète (version {1}). Nous avons besoin au moins de Node 8.x.",
- "runtime.version.not.found.message": "Node.js version '{0}' n'est pas installé à l'aide du gestionnaire de versions {1}.",
- "sourcemapParseError": "Impossible de lire le mappage de source pour {0} : {1}",
- "uwpPipeNotAvailable": "Le débogage de l’affichage web UWP n’est pas disponible sur votre plateforme."
- },
- "/src/debugServer": {
- "breakpoint.provisionalBreakpoint": "Point d'arrêt indépendant"
- },
- "/src/targets/browser/browserAttacher": {
- "attach.cannotConnect": "Connexion impossible à la cible sur {0} : {1}",
- "chrome.targets.placeholder": "Sélectionner un onglet"
- },
- "/src/targets/node/nodeAttacher": {
- "node.attach.restart.message": "Perte de la connexion à l'élément débogué. Reconnexion dans {0} ms\r\n"
- },
- "/src/targets/node/nodeBinaryProvider": {
- "outOfDate": "{0} Voulez-vous quand même essayer d'effectuer le débogage ?",
- "runtime.node.notfound.enoent": "le chemin n'existe pas",
- "runtime.node.notfound.spawnErr": "erreur durant l'obtention de la version : {0}",
- "warning.16bpIssue": "Certains points d’arrêt ne fonctionneront sans doute pas dans votre version de Node.js. Nous vous recommandons d’effectuer la mise à niveau pour le bogue, les performances et les correctifs de sécurité les plus récents. Si vous souhaitez en savoir plus, veuillez consulter le site https://aka.ms/AAcsvqm",
- "warning.8outdated": "Vous exécutez une version obsolète de Node.js. Nous vous recommandons d’effectuer la mise à jour afin de bénéficier des correctifs de bogues, de performance et de sécurité les plus récents.",
- "yes": "Oui"
- },
- "/src/ui/autoAttach": {
- "details": "Détails"
- },
- "/src/ui/companionBrowserLaunch": {
- "cannotDebugInBrowser": "Nous ne pouvons pas lancer un navigateur en mode débogage à partir d'ici. Ouvrez cet espace de travail dans VS Code sur votre poste de travail pour activer le débogage."
- },
- "/src/ui/configuration/chromiumDebugConfigurationProvider": {
- "chrome.launch.name": "Lancer Chrome en utilisant localhost",
- "existingBrowser.alert": "Il semble qu'un navigateur s'exécute déjà à partir de {0}. Fermez-le avant toute tentative de débogage. Sinon, VS Code risque de ne pas pouvoir s'y connecter.",
- "existingBrowser.debugAnyway": "Déboguer quand même",
- "existingBrowser.location.default": "ancienne session de débogage",
- "existingBrowser.location.userDataDir": "userDataDir configuré"
- },
- "/src/ui/configuration/edgeDebugConfigurationProvider": {
- "chrome.launch.name": "Démarrer Microsoft Edge à l’utilisation de localhost"
- },
- "/src/ui/configuration/nodeDebugConfigurationProvider": {
- "debug.terminal.label": "Terminal de débogage de JavaScript",
- "node.launch.currentFile": "Exécuter le fichier actif",
- "node.launch.script": "Exécuter le script : {0}"
- },
- "/src/ui/configuration/nodeDebugConfigurationResolver": {
- "cwd.notFound": "Le `cwd` {0} configuré n'existe pas.",
- "mern.starter.explanation": "Configuration de lancement du projet '{0}' créée.",
- "node.launch.config.name": "Lancer le programme",
- "outFiles.explanation": "Ajustez le ou les modèles glob dans l'attribut 'outFiles' pour qu'ils couvrent le fichier JavaScript généré.",
- "program.guessed.from.package.json.explanation": "Configuration de lancement créée en fonction de 'package.json'.",
- "program.not.found.message": "Programme à déboguer introuvable"
- },
- "/src/ui/debugLinkUI": {
- "debugLink.invalidUrl": "L'URL fournie n'est pas valide",
- "debugLink.savePrompt": "Voulez-vous enregistrer une configuration dans votre fichier launch.json pour y accéder facilement plus tard ?",
- "never": "Jamais",
- "no": "Non",
- "yes": "Oui"
- },
- "/src/ui/debugNpmScript": {
- "debug.npm.noScripts": "Aucun script npm dans votre package.json",
- "debug.npm.noWorkspaceFolder": "Vous devez ouvrir un dossier d'espace de travail pour déboguer les scripts npm.",
- "debug.npm.notFound.open": "Modifier package.json",
- "debug.npm.parseError": "Impossible de lire {0} : {1}"
- },
- "/src/ui/debugTerminalUI": {
- "terminal.cwdpick": "Sélectionner le répertoire de travail actuel pour le nouveau terminal"
- },
- "/src/ui/diagnosticsUI": {
- "inspectSessionEnded": "Il semble que votre session de débogage s’est déjà terminée. Recommencez le débogage, puis exécutez la commande « Debug: Diagnose Breakpoint Problems ».",
- "never": "Jamais",
- "notNow": "Pas maintenant",
- "selectInspectSession": "Sélectionnez la session que vous souhaitez inspecter :",
- "yes": "Oui"
- },
- "/src/ui/disableSourceMapUI": {
- "always": "Toujours",
- "disableSourceMapUi.msg": "Il s'agit d'un chemin de fichier manquant référencé par un mappage de source. Voulez-vous déboguer la version compilée à la place ?",
- "no": "Non",
- "yes": "Oui"
- },
- "/src/ui/edgeDevToolOpener": {
- "selectEdgeToolSession": "Sélectionnez la page dans laquelle vous voulez ouvrir les outils du développeur"
- },
- "/src/ui/linkedBreakpointLocationUI": {
- "ignore": "Ignorer",
- "readMore": "En savoir plus"
- },
- "/src/ui/longPredictionUI": {
- "longPredictionWarning.disable": "Ne plus afficher",
- "longPredictionWarning.message": "La configuration de vos points d'arrêt prend un certain temps. Pour accélérer l'opération, mettez à jour 'outFiles' dans launch.json.",
- "longPredictionWarning.noFolder": "Aucun dossier d'espace de travail ouvert.",
- "longPredictionWarning.open": "Ouvrir launch.json"
- },
- "/src/ui/processPicker": {
- "cannot.enable.debug.mode.error": "Attacher au processus : impossible d'activer le mode de débogage pour le processus '{0}' ({1}).",
- "pickNodeProcess": "Sélectionner le processus node.js auquel s'attacher",
- "process.id.error": "Attacher au processus : '{0}' ne ressemble pas à un ID de processus.",
- "process.id.port.signal": "ID de processus : {0}, port de débogage : {1} ({2})",
- "process.id.signal": "ID de processus : {0} ({1})",
- "process.picker.error": "Le sélecteur de processus a échoué ({0})"
- },
- "/src/ui/profiling/breakpointTerminationCondition": {
- "breakpointTerminationWarnConfirm": "OK",
- "breakpointTerminationWarnSlow": "Effectuer un profilage avec des points d'arrêt activés peut changer le niveau de performance de votre code. Il peut être utile de valider vos constats avec les conditions d'arrêt \"durée\" ou \"manuel\".",
- "profile.termination.breakpoint.description": "Exécuter jusqu'à ce qu'un point d'arrêt spécifique soit atteint",
- "profile.termination.breakpoint.label": "Choisir un point d'arrêt"
- },
- "/src/ui/profiling/durationTerminationCondition": {
- "profile.termination.duration.description": "Exécuter pendant un délai spécifique",
- "profile.termination.duration.inputTitle": "Durée du profilage",
- "profile.termination.duration.invalidFormat": "Entrez un nombre",
- "profile.termination.duration.invalidLength": "Entrez un nombre supérieur à 1",
- "profile.termination.duration.label": "Durée",
- "profile.termination.duration.placeholder": "Durée du profilage en secondes, par exemple \"5\""
- },
- "/src/ui/profiling/manualTerminationCondition": {
- "profile.termination.duration.description": "Exécuter jusqu'à l'arrêt manuel",
- "profile.termination.duration.label": "Manuel"
- },
- "/src/ui/profiling/uiProfileManager": {
- "no": "Non",
- "profile.alreadyRunning": "Une session de profilage est déjà en cours d'exécution. Voulez-vous l'arrêter et démarrer une nouvelle session ?",
- "profile.sessionState": "Profilage",
- "profile.status.default": "$(loading~spin) Cliquez pour arrêter le profilage.",
- "profile.status.multiSession": "$(loading~spin) Cliquez pour arrêter le profilage ({0}sessions).",
- "profile.status.single": "$(loading~spin) Cliquez pour arrêter le profilage ({0}).",
- "profile.termination.title": "Durée d'exécution du profilage :",
- "profile.type.title": "Type de profil :",
- "yes": "Oui"
- },
- "/src/ui/profiling/uiProfileSession": {
- "profile.saving": "Enregistrement",
- "progress.profile.start": "Démarrage du profil...",
- "progress.profile.stop": "Arrêt du profil..."
- },
- "/src/ui/terminalLinkHandler": {
- "cantOpenChromeOnWeb": "Nous ne pouvons pas lancer un navigateur en mode débogage à partir d'ici. Si vous souhaitez déboguer cette page web, ouvrez cet espace de travail à partir de VS Code sur votre poste de travail.",
- "terminalLinkHover.debug": "Déboguer l'URL"
- },
- "/src/vsDebugServer": {
- "session.rootSessionName": "Adaptateur de débogage JavaScript"
- },
"package": {
- "add.browser.breakpoint": "Ajouter un point d'arrêt de navigateur",
+ "add.eventListener.breakpoint": "Activer/désactiver les points d’arrêt de l’écouteur d’événements",
+ "add.xhr.breakpoint": "Ajouter un point d’arrêt XHR/récupération (fetch)",
"attach.node.process": "Attacher au processus Node",
"base.cascadeTerminateToConfigurations.label": "Liste de sessions de débogage qui, à la fin de cette session de débogage, sont également arrêtées.",
+ "base.enableDWARF.label": "Indique si le débogueur essaiera de lire les symboles de débogage DE LA MACHINE À PARTIR de WebAssembly, ce qui peut entraîner une utilisation intensive des ressources. Nécessite l’extension ’ms-vscode.wasm-dwarf-debugging’ pour fonctionner.",
+ "breakpoint.xhr.any": "N’importe quel XHR/récupération (fetch)",
+ "breakpoint.xhr.contains": "Arrêter lorsque l’URL contient :",
"browser.address.description": "Adresse IP ou nom d'hôte écouté par le navigateur débogué.",
"browser.attach.port.description": "Port à utiliser pour le débogage à distance du navigateur, indiqué sous la forme '--remote-debugging-port' au lancement du navigateur.",
"browser.baseUrl.description": "URL de base pour résoudre baseUrl pour les chemins. baseURL est tronqué en cas de mappage des URL aux fichiers sur le disque. La valeur par défaut est le domaine de l'URL de lancement.",
@@ -294,7 +27,9 @@
"browser.env.description": "Dictionnaire facultatif des paires clés/valeur de l'environnement pour le navigateur.",
"browser.file.description": "Fichier html local à ouvrir dans le navigateur",
"browser.includeDefaultArgs.description": "Indique si les arguments de lancement de navigateur par défaut (pour désactiver les fonctionnalités qui peuvent compliquer le débogage) sont inclus dans le lancement.",
+ "browser.includeLaunchArgs.description": "Avancé : indique si des arguments de lancement/débogage par défaut sont définis sur le navigateur. Le débogueur suppose que le navigateur utilise le débogage de canal comme celui fourni avec '--remote-debugging-pipe'.",
"browser.inspectUri.description": "Format à utiliser pour réécrire inspectUri : il s’agit d’une chaîne de modèle qui interpole les clés dans `{curlyBraces}`. Clés disponibles :\r\n - `url.*` est l’adresse analysée de l’application en cours d’exécution. Par exemple `{url.port}`, `{url.hostname}`\r\n - `port` est le port de débogage que Chrome écoute.\r\n - `browserInspectUri` est l’URI d’inspecteur sur le navigateur démarré\r\n - `browserInspectUriPath` est le segment du chemin d’accès correspondant à l’URI d’inspecteur sur le navigateur démarré. Par exemple : \"/devtools/browser/e9ec0098-306e-472a-8133-5e42488929c2\".\r\n - `wsProtocol` est le protocole WebSocket conseillé. Sa valeur est `wss` si l’URL d’origine est `https`, sinon `ws`.\r\n",
+ "browser.killBehavior.description": "Configure la façon dont les processus du navigateur sont tués à l’arrêt de la session avec `cleanUp: wholeBrowser`. Valeurs possibles :\r\n\r\n- forceful (par défaut) : détruit de force l’arborescence des processus. Envoie SIGKILL sur POSIX, ou `taskkill.exe /F` sur Windows.\r\n- polite : détruit élégamment l’arborescence des processus. Il est possible que des processus au comportement anormal continuent de s’exécuter après ce type d’arrêt. Envoie SIGTERM sur POSIX ou `taskkill.exe` sans l’indicateur `/F` (force) sur Windows.\r\n- none : aucun arrêt n’est effectué.",
"browser.launch.port.description": "Port d'écoute du navigateur. La valeur par défaut est \"0\", ce qui entraîne le débogage du navigateur via des canaux. Cette méthode, généralement plus sécurisée, est recommandée, sauf si vous devez effectuer un attachement au navigateur à partir d'un autre outil.",
"browser.pathMapping.description": "Mappage des URL/chemins de dossiers locaux pour résoudre les scripts dans le navigateur en scripts sur le disque",
"browser.perScriptSourcemaps.description": "Indique si les scripts sont chargés individuellement avec des mappages de source uniques contenant le nom de base du fichier source. Ce paramètre peut être défini pour optimiser la gestion des mappages de source en présence d'un grand nombre de petits scripts. Si la valeur est \"auto\", nous détectons les cas connus le cas échéant.",
@@ -305,8 +40,8 @@
"browser.runtimeExecutable.description": "'canary', 'stable', 'custom' ou chemin de l'exécutable du navigateur. 'Custom' désigne un wrapper personnalisé, une génération personnalisée ou une variable d'environnement CHROME_PATH.",
"browser.runtimeExecutable.edge.description": "Indiquez 'canary', 'stable', ''dev'', 'custom' ou le chemin de l'exécutable du navigateur. Custom signifie wrapper personnalisé, build personnalisée ou variable d'environnement EDGE_PATH.",
"browser.server.description": "Configure un serveur web pour le démarrage. Prend la même configuration que la tâche de lancement 'node'.",
- "browser.skipFiles.description": "Groupe de noms de fichiers ou de dossiers, ou globs de chemin, à ignorer durant le débogage.",
- "browser.smartStep.description": "Exécutez un pas à pas automatique parmi les lignes non mappées des fichiers de mappage de source. Il peut s'agir, par exemple, du code produit automatiquement par TypeScript durant la génération du code JavaScript pour async/await ou d'autres fonctionnalités.",
+ "browser.skipFiles.description": "Tableau de noms de fichiers ou de dossiers, ou globs de chemin d’accès, à ignorer lors du débogage. Les modèles et les négations en étoile sont autorisés, par exemple `[\"**/node_modules/**\", \"!**/node_modules/my-module/**\"]`",
+ "browser.smartStep.description": "Exécutez un pas à pas automatique parmi les lignes non mappées des fichiers de mappage de source. Il peut s'agir, par exemple, du code produit automatiquement par TypeScript durant la compilation d'async/await ou d'autres fonctionnalités.",
"browser.sourceMapPathOverrides.description": "Ensemble de mappages pour la réécriture des emplacements des fichiers sources à partir des indications du mappage de source vers les emplacements appropriés sur le disque. Pour plus d'informations, consultez le README.",
"browser.sourceMapRenames.description": "Indique si vous devez utiliser le mappage « names » dans les mappages sources. Cela nécessite une demande de contenu source, ce qui peut s’avérer lent avec certains débogueurs.",
"browser.sourceMaps.description": "Utilisez des mappages de sources JavaScript (le cas échéant).",
@@ -322,7 +57,7 @@
"chrome.label": "Application web (Chrome)",
"chrome.launch.description": "Lancer Chrome pour déboguer une URL",
"chrome.launch.label": "Chrome : lancer",
- "commands.callersAdd.label": "Exclure l'appelant",
+ "commands.callersAdd.label": "Exclure l’appelant",
"commands.callersAdd.paletteLabel": "Exclure l’appelant de la mise en pause à l’emplacement actuel",
"commands.callersGoToCaller.label": "Accéder à l’emplacement de l’appelant",
"commands.callersGoToTarget.label": "Accéder à l’emplacement cible",
@@ -330,6 +65,12 @@
"commands.callersRemoveAll.label": "Supprimer tous les appelants exclus",
"commands.disableSourceMapStepping.label": "Désactiver l’exécution pas à pas mappé source",
"commands.enableSourceMapStepping.label": "Activer l’exécution pas à pas mappé source",
+ "commands.networkClear.label": "Effacer le journal réseau",
+ "commands.networkCopyURI.label": "Copier l’URL de requête",
+ "commands.networkOpenBody.label": "Ouvrir le corps de réponse",
+ "commands.networkOpenBodyInHexEditor.label": "Ouvrir le corps de réponse dans l’Éditeur hexadécimal",
+ "commands.networkReplayXHR.label": "Relire la requête",
+ "commands.networkViewRequest.label": "Afficher la requête en tant que cURL",
"configuration.autoAttachMode": "Configure les processus à attacher et déboguer automatiquement quand '#debug.node.autoAttach#' est activé. Un processus Node lancé avec l'indicateur '--inspect' est toujours attaché, quel que soit ce paramètre.",
"configuration.autoAttachMode.always": "Effectue l'attachement automatique à chaque processus Node.js lancé dans le terminal.",
"configuration.autoAttachMode.disabled": "L'attachement automatique est désactivé et n'est pas affiché dans la barre d’état.",
@@ -340,6 +81,7 @@
"configuration.breakOnConditionalError": "Indique s’il faut arrêter lorsque les points d’arrêt conditionnels génèrent une erreur.",
"configuration.debugByLinkOptions": "Options utilisées pendant le débogage de liens ouverts sur lesquels l'utilisateur a cliqué à partir du terminal de débogage. Peut être défini sur \"false\" pour désactiver ce comportement.",
"configuration.defaultRuntimeExecutables": "Il s'agit du 'runtimeExecutable' par défaut utilisé pour les configurations de lancement, en l'absence d'indications. Vous pouvez l'utiliser pour configurer des chemins personnalisés vers Node.js ou des installations de navigateur.",
+ "configuration.enableNetworkView": "Active la vue de réseau expérimentale pour les cibles qui la prennent en charge.",
"configuration.npmScriptLensLocation": "Indique où CodeLens doit être affiché pour \"Exécuter\" et \"Déboguer\" dans vos scripts npm. Les options sont : \"tous\" les scripts, \"en haut\" de la section de script ou \"jamais\".",
"configuration.pickAndAttachOptions": "Options par défaut utilisées pour le débogage d'un processus via la commande Déboguer : attacher au processus Node.js",
"configuration.resourceRequestOptions": "Options de requête à utiliser durant le chargement des ressources, telles que les mappages de sources, dans le débogueur. Vous devrez peut-être configurer ce paramètre si vos mappages de sources nécessitent une authentification ou s’ils utilisent un certificat autosigné. Les options sont utilisées pour créer une requête à l’aide de la bibliothèque [`got`](https://github.com/sindresorhus/got).\r\n\r\nUn moyen courant de désactiver la vérification de certificat est de passer `{ \"https\": { \"rejectUnauthorized\": false } }`.",
@@ -371,6 +113,7 @@
"edge.port.description": "Au moment du débogage des vues web, port écouté par le débogueur de vue web. La découverte s'effectue automatiquement, si aucune valeur n'est définie.",
"edge.useWebView.attach.description": "Objet contenant le 'pipeName' d’un canal de débogage pour un Webview2 hébergé par UWP. Il s’agit de « MyTestSharedMemory » lors de la création du canal « \\\\.\\pipe\\LOCAL\\MyTestSharedMemory »",
"edge.useWebView.launch.description": "Quand la valeur est 'true', le débogueur traite l'exécutable de runtime comme une application hôte qui contient une vue web vous permettant de déboguer le contenu du script de vue web.",
+ "edit.xhr.breakpoint": "Modifier le point d’arrêt XHR/récupération (fetch)",
"enableContentValidation.description": "Définit si nous devons vérifier que les contenus des fichiers sur le disque correspondent à ceux chargés dans le runtime. Cette opération est utile dans de nombreux scénarios, voire obligatoire dans certains. Des problèmes peuvent toutefois se produire, notamment si vous avez une transformation côté serveur de scripts.",
"errors.timeout": "{0} : expiration du délai d'attente au bout de {1} ms",
"extension.description": "Extension pour déboguer les programmes Node.js et Chrome.",
@@ -382,6 +125,8 @@
"extensionHost.launch.rendererDebugOptions": "Options de lancement de Chrome utilisées lors de l'attachement au processus renderer, avec 'debugWebviews' ou 'debugWebWorkerHost'.",
"extensionHost.launch.runtimeExecutable.description": "Chemin absolu de VS Code.",
"extensionHost.launch.stopOnEntry.description": "Arrêtez automatiquement l'hôte d'extension après le lancement.",
+ "extensionHost.launch.testConfiguration": "Chemin d’accès à un fichier de configuration de test pour [test CLI](https://code.visualstudio.com/api/working-with-extensions/testing-extension#quick-setup-the-test-cli).",
+ "extensionHost.launch.testConfigurationLabel": "Configuration unique à exécuter à partir du fichier. Sans spécification, vous pouvez être invité à choisir.",
"extensionHost.snippet.launch.description": "Lancer une extension VS Code en mode débogage",
"extensionHost.snippet.launch.label": "Développement d'extension VS Code",
"getDiagnosticLogs.label": "Enregistrer les journaux de débogage JS de diagnostic",
@@ -397,11 +142,13 @@
"node.attach.processId.description": "ID du processus à attacher.",
"node.attach.restart.description": "Tentative de reconnexion au programme, si nous perdons la connexion. Si la valeur est true, nous effectuons une tentative une fois par seconde, indéfiniment. Vous pouvez personnaliser l'intervalle et le nombre maximal de tentatives en spécifiant à la place 'delay' et 'maxAttempts' dans un objet.",
"node.attachSimplePort.description": "Si l'option correspondante est définie, l'attachement au processus s'effectue par le biais du port indiqué. En règle générale, cela n'est plus nécessaire pour les programmes Node.js. Le débogage des processus enfants n'est alors plus possible, mais ce choix peut être utile dans des scénarios plus rares, tels que les lancements de Deno et Docker. Si l'option est définie avec la valeur 0, un port aléatoire est choisi et --inspect-brk est automatiquement ajouté aux arguments de lancement.",
- "node.console.title": "Console de débogage Node",
+ "node.console.title": "Console de débogage de nœud",
"node.disableOptimisticBPs.description": "Ne définissez pas de points d'arrêt dans un fichier tant qu'un mappage de source n'a pas été chargé pour ce fichier.",
- "node.killBehavior.description": "Configure la façon dont le processus de débogage est tué à l’arrêt de la session. Valeurs possibles :\r\n\r\n- forceful (par défaut) : détruit de force l’arborescence des processus. Envoie SIGKILL sur POSIX, ou `taskkill.exe /F` sur Windows.\r\n- polite : détruit élégamment l’arborescence des processus. Il est possible que des processus au comportement anormal continuent de s’exécuter après ce type d’arrêt. Envoie SIGTERM sur POSIX ou `taskkill.exe` sans l’indicateur `/F` (force) sur Windows.\r\n- none : aucun arrêt n’est effectué.",
+ "node.enableTurboSourcemaps.description": "Configure s’il faut utiliser un nouveau mécanisme plus rapide pour la découverte de mappage de source",
+ "node.experimentalNetworking.description": "Activez l’inspection expérimentale dans Node.js. Quand la valeur est `auto` est activée pour les versions de Node.js qui la prennent en charge. Elle peut être définie sur « activé » ou « désactivé » pour l’activer ou la désactiver explicitement.",
+ "node.killBehavior.description": "Configure la façon dont le processus de débogage est tué à l’arrêt de la session. Valeurs possibles : \r\n\r\n- forceful (par défaut) : détruit de force l’arborescence des processus. Envoie SIGKILL sur POSIX, ou `taskkill.exe /F` sur Windows.\r\n- polite : détruit élégamment l’arborescence des processus. Il est possible que des processus au comportement anormal continuent de s’exécuter après ce type d’arrêt. Envoie SIGTERM sur POSIX ou `taskkill.exe` sans l’indicateur `/F` (force) sur Windows.\r\n- none : aucun arrêt n’est effectué.",
"node.label": "Node.js",
- "node.launch.args.description": "Command line arguments passed to the program.\r\n\r\nCan be an array of strings or a single string. When the program is launched in a terminal, setting this property to a single string will result in the arguments not being escaped for the shell.",
+ "node.launch.args.description": "Arguments de ligne de commande passés au programme.\r\n\r\nPeut être un tableau de chaînes ou une chaîne unique. Lorsque le programme est lancé dans un terminal, la définition de cette propriété sur une seule chaîne empêche l’échappement des arguments pour l’interpréteur de commandes.",
"node.launch.autoAttachChildProcesses.description": "Attacher le débogueur aux nouveaux processus enfants automatiquement.",
"node.launch.config.name": "Lancer",
"node.launch.console.description": "Où lancer la cible de débogage.",
@@ -428,6 +175,7 @@
"node.port.description": "Port de débogage auquel effectuer l'attachement. La valeur par défaut est 9 229.",
"node.processattach.config.name": "Attacher au processus",
"node.profileStartup.description": "Si la valeur est « true », le profilage commence dès le lancement du processus",
+ "node.remote.host.header.description": "En-tête de l’hôte explicite à utiliser lors de la connexion au WebSocket de l’inspecteur. Si aucune valeur n’est spécifiée, l’en-tête de l’hôte est défini sur « localhost ». Cela est utile lorsque l’inspecteur s’exécute derrière un proxy qui accepte uniquement un en-tête de l’hôte particulier.",
"node.remoteRoot.description": "Chemin absolu du répertoire distant contenant le programme.",
"node.resolveSourceMapLocations.description": "Liste de modèles de minimatch pour les emplacements (dossiers et URL) dans lesquels les mappages de sources peuvent être utilisés pour résoudre les fichiers locaux. Peuvent être utilisés pour éviter un arrêt incorrect dans le code externe mappé à la source. Les modèles peuvent être préfixés avec \"!\" pour les exclure. Peuvent être définis sur un tableau vide ou la valeur null pour éviter toute restriction.",
"node.showAsyncStacks.description": "Affiche les appels asynchrones ayant conduit à la pile des appels actuelle.",
@@ -460,10 +208,11 @@
"openEdgeDevTools.label": "Ouvrir les outils du développeur du navigateur",
"outFiles.description": "Si les mappages de sources sont activés, ces modèles Glob spécifient les fichiers JavaScript générés. Si un modèle commence par '!', les fichiers sont exclus. En l'absence de spécification, le code généré est censé se trouver dans le même répertoire que sa source.",
"pretty.print.script": "Impression automatique pour le débogage",
- "profile.start": "Exécuter le Profileur de performances",
- "profile.stop": "Arrêter le Profileur de performances",
- "remove.browser.breakpoint": "Supprimer un point d'arrêt de navigateur",
- "remove.browser.breakpoint.all": "Supprimer tous les points d'arrêt du navigateur",
+ "profile.start": "Exécuter le profil du niveau de performance",
+ "profile.stop": "Arrêter le profil du niveau de performance",
+ "remove.eventListener.breakpoint.all": "Supprimer tous les points d’arrêt de l’écouteur d’événements",
+ "remove.xhr.breakpoint": "Supprimer le point d’arrêt XHR/récupération (fetch)",
+ "remove.xhr.breakpoint.all": "Supprimer tous les points d’arrêt XHR/récupération (fetch)",
"requestCDPProxy.label": "Demander un proxy CDP pour une session de débogage",
"skipFiles.description": "Tableau de modèles glob pour les fichiers à ignorer pendant le débogage. Le modèle '/**' correspond à tous les modules Node.js internes.",
"smartStep.description": "Exécutez pas à pas de façon automatique le code généré qui ne peut être mappé à la source d'origine.",
@@ -481,6 +230,230 @@
"trace.logFile.description": "Configure l'emplacement sur le disque où sont écrits les journaux.",
"trace.stdio.description": "Indique s'il faut retourner les données de trace de l'application ou du navigateur qui a été lancé.",
"workspaceTrust.description": "L’approbation est requise pour déboguer le code dans cet espace de travail."
+ },
+ "bundle": {
+ "A profiling session is already running, would you like to stop it and start a new session?": "Une session de profilage est déjà en cours d'exécution. Voulez-vous l'arrêter et démarrer une nouvelle session ?",
+ "Add XHR Breakpoint": "Ajouter un point d’arrêt XHR",
+ "Add new URL...": "Ajouter une nouvelle URL...",
+ "Adjust glob pattern(s) in the 'outFiles' attribute so that they cover the generated JavaScript.": "Ajustez le ou les modèles glob dans l'attribut 'outFiles' pour qu'ils couvrent le fichier JavaScript généré.",
+ "Always": "Toujours",
+ "Always in this Workspace": "Toujours dans cet espace de travail",
+ "An error occurred taking a profile from the target.": "Une erreur s'est produite au moment du profilage de la cible.",
+ "Animation Frame Fired": "Frame d’animation déclenché",
+ "Any XHR or fetch": "Tout XHR ou récupération (fetch)",
+ "Assertion failed": "Échec d’assertion",
+ "Attach to process: '{0}' doesn't look like a process id.": "Attacher au processus : '{0}' ne ressemble pas à un ID de processus.",
+ "Attach to process: cannot enable debug mode for process '{0}' ({1}).": "Attacher au processus : impossible d'activer le mode de débogage pour le processus '{0}' ({1}).",
+ "Attribute 'runtimeVersion' requires Node.js version manager 'nvm-windows' or 'nvs'.": "L'attribut 'runtimeVersion' nécessite Node.js version manager 'nvm-windows' ou 'nvs'.",
+ "Attribute 'runtimeVersion' requires Node.js version manager 'nvs', 'nvm' or 'fnm' to be installed.": "L'attribut 'runtimeVersion' nécessite l'installation du gestionnaire de version Node.js 'nvs', 'nvm' ou 'fnm'.",
+ "Attribute 'runtimeVersion' with a flavor/architecture requires 'nvs' to be installed.": "L’attribut 'runtimeVersion' avec une saveur/architecture nécessite l’installation de 'nvs'.",
+ "Bidder Bidding Phase Start": "Début de la phase d’exécution de l’essai",
+ "Bidder Reporting Phase Start": "Début de la phase de création de rapports vendeur",
+ "Block": "Bloquer",
+ "Break when URL Contains": "Arrêter lorsque l’URL contient",
+ "Breaks on all throw errors, even if they're caught later.": "S'arrête sur toutes les erreurs levées, même si elles sont interceptées plus tard.",
+ "Breaks only on errors or promise rejections that are not handled.": "S'interrompt uniquement en cas d'erreur ou de rejet de la promesse qui n'est pas géré.",
+ "Browser connection failed, will retry: {0}": "Échec de la connexion au navigateur. Nouvelle tentative : {0}",
+ "CPU Profile": "Profil du processeur",
+ "CPU profile saved as \"{0}\" in your workspace folder": "Profil d’UC enregistré en tant que « {0} » dans le dossier de votre espace de travail",
+ "CSP violation \"{0}\"": "Violation de la stratégie CSP « {0} »",
+ "Can't find Node.js binary \"{0}\": {1}. Make sure Node.js is installed and in your PATH, or set the \"runtimeExecutable\" in your launch.json": "Le fichier binaire Node.js \"{0}\" : {1} est introuvable. Vérifiez que Node.js est installé et qu'il se trouve dans PATH, ou définissez \"runtimeExecutable\" dans votre fichier launch.json",
+ "Can't load environment variables from file ({0}).": "Impossible de charger les variables d'environnement à partir du fichier ({0}).",
+ "Cancel Animation Frame": "Annuler le frame d’animation",
+ "Cannot connect to the target at {0}: {1}": "Connexion impossible à la cible sur {0} : {1}",
+ "Cannot find `{0}` installed in {1}": "Impossible de trouver « {0} » installé dans {1}",
+ "Cannot find a program to debug": "Programme à déboguer introuvable",
+ "Cannot find test configuration with label `{0}`, got: {1}": "Configuration de test introuvable avec l’étiquette « {0} », obtenu : {1}",
+ "Cannot launch debug target in terminal ({0}).": "Impossible de lancer la cible de débogage dans le terminal ({0}).",
+ "Cannot restart asynchronous frame": "Impossible de redémarrer le frame asynchrone",
+ "Cannot set an empty value": "Impossible de définir une valeur vide",
+ "Catch Block": "Bloc Catch",
+ "Caught Exceptions": "Exceptions interceptées",
+ "Close AudioContext": "Fermer AudioContext",
+ "Closure": "Fermeture",
+ "Closure ({0})": "Fermeture ({0})",
+ "Console profile started": "Profil de console démarré",
+ "Could not connect to any UWP Webview pipe. Make sure your webview is hosted in debug mode, and that the `pipeName` in your `launch.json` is correct.": "Impossible de se connecter à un canal Webview UWP. Vérifiez que votre webview est hébergé en mode débogage et que le « pipeName » indiqué dans votre fichier « launch.json » est correct.",
+ "Could not find a location for the variable": "Désolé... Nous n’avons pas pu trouver un emplacement pour la variable",
+ "Could not query the provided object": "Impossible d'interroger l'objet fourni",
+ "Could not read source map for {0}: {1}": "Impossible de lire le mappage de source pour {0} : {1}",
+ "Could not read {0}: {1}": "Impossible de lire {0} : {1}",
+ "Create AudioContext": "Créer AudioContext",
+ "Create canvas context": "Créer un contexte de canevas",
+ "Debug Anyway": "Déboguer quand même",
+ "Debug URL": "Déboguer l’URL",
+ "Details": "Détails",
+ "Don't show again": "Ne plus afficher",
+ "Duration": "Durée",
+ "Duration of Profile": "Durée du profilage",
+ "Edit XHR Breakpoint": "Modifier le point d’arrêt XHR",
+ "Edit package.json": "Modifier package.json",
+ "Enables Node.js [auto attach]({0}) debugging in \"{1}\" mode/{Locked='[auto attach]({0})'}the 2nd placeholder is the setting value": "Active le débogage Node.js [auto attach]({0}) en mode \"{1}\"",
+ "Enter a URL or a pattern to match": "Entrer une URL ou un modèle à mettre en correspondance",
+ "Eval": "Eval",
+ "Frame could not be restarted": "Le cadre n’a pas pu être redémarré",
+ "Generates a .cpuprofile file you can open in VS Code or the Edge/Chrome devtools": "Génère un fichier .cpuprofile que vous pouvez ouvrir dans VS Code ou les outils de développement Edge/Chrome",
+ "Generates a .heapprofile file you can open in VS Code or the Edge/Chrome devtools": "Génère un fichier .heapprofile que vous pouvez ouvrir dans VS Code ou les outils de développement Edge/Chrome.",
+ "Generates a .heapsnapshot file you can open in VS Code or the Edge/Chrome devtools": "Génère un fichier .heapsnapshot que vous pouvez ouvrir dans VS Code ou les outils de développement Edge/Chrome",
+ "Global": "Mondial",
+ "Globals": "Globals",
+ "Got it!": "OK !",
+ "Heap Profile": "Profil de segment de mémoire",
+ "Heap Snapshot": "Instantané du tas",
+ "How long to run the profile": "Durée d'exécution du profilage",
+ "Ignore": "Ignorer",
+ "Installation complete! The extension will be used after you restart your debug session.": "Installation terminée ! L’extension sera utilisée après le redémarrage de votre session de débogage.",
+ "Installing the DWARF debugger...": "Installation du débogueur DWARF...",
+ "Invalid expression": "Expression non valide",
+ "Invalid hit condition \"{0}\". Expected an expression like \"> 42\" or \"== 2\".": "Condition d'accès non valide \"{0}\". Expression attendue telle que \"> 42\" ou \"== 2\".",
+ "It looks like a browser is already running from {0}. Please close it before trying to debug, otherwise VS Code may not be able to connect to it.": "Il semble qu'un navigateur s'exécute déjà à partir de {0}. Fermez-le avant toute tentative de débogage. Sinon, VS Code risque de ne pas pouvoir s'y connecter.",
+ "It looks like your debug session has already ended. Try debugging again, then run the \"Debug: Diagnose Breakpoint Problems\" command.": "Il semble que votre session de débogage s’est déjà terminée. Recommencez le débogage, puis exécutez la commande « Debug: Diagnose Breakpoint Problems ».",
+ "It's taking a while to configure your breakpoints. You can speed this up by updating the 'outFiles' in your launch.json.": "La configuration de vos points d'arrêt prend un certain temps. Pour accélérer l'opération, mettez à jour 'outFiles' dans launch.json.",
+ "JavaScript Debug Terminal": "Terminal de débogage de JavaScript",
+ "JavaScript debug adapter": "Adaptateur de débogage JavaScript",
+ "Launch Chrome against localhost": "Lancer Chrome en utilisant localhost",
+ "Launch Edge against localhost": "Démarrer Microsoft Edge à l’utilisation de localhost",
+ "Launch Program": "Lancer le programme",
+ "Launch configuration created based on 'package.json'.": "Configuration de lancement créée en fonction de 'package.json'.",
+ "Launch configuration for '{0}' project created.": "Configuration de lancement du projet '{0}' créée.",
+ "Local": "Local",
+ "Locals": "Variables locales",
+ "Lost connection to debugee, reconnecting in {0}ms\r\n": "Perte de la connexion à l'élément débogué. Reconnexion dans {0} ms\r\n",
+ "Manual": "Manuelle",
+ "Missing source information. Did you set \"originalUrl\" or \"source\"?": "Informations sur la source manquantes. Avez-vous défini « originalUrl » ou « source » ?",
+ "Module": "Module",
+ "Networking not available.": "La mise en réseau n’est pas disponible.",
+ "Never": "Jamais",
+ "No": "Non",
+ "No npm scripts found in the workspace folder.": "Aucun script npm trouvé dans le dossier de l'espace de travail.",
+ "No npm scripts found in your package.json": "Aucun script npm dans votre package.json",
+ "No package.json files found in your workspace.": "Aucun fichier package.json n’a été trouvé dans votre espace de travail.",
+ "No workspace folder open.": "Aucun dossier d'espace de travail ouvert.",
+ "Node Attributes": "Attributs de nœud",
+ "Node.js version '{0}' not installed using version manager {1}.": "Node.js version '{0}' n'est pas installé à l'aide du gestionnaire de versions {1}.",
+ "Not Now": "Pas maintenant",
+ "Only objects can be queried": "Seuls les objets peuvent être interrogés",
+ "Open launch.json": "Ouvrir launch.json",
+ "Output has been truncated to the first {0} characters. Run `{1}` to copy the full output.": "La sortie a été tronquée pour les {0} premiers caractères. Exécutez '{1}' pour copier la sortie complète.",
+ "Parameters": "Paramètres",
+ "Paused": "En pause",
+ "Paused before Out Of Memory exception": "Interruption d'exécution avant une exception pour mémoire insuffisante",
+ "Paused on Content Security Policy violation instrumentation breakpoint, directive \"{0}\"": "Interruption d'exécution liée à un point d'arrêt d'instrumentation en raison d'une violation de la stratégie de sécurité de contenu. Directive \"{0}\"",
+ "Paused on DOM breakpoint": "Interruption d'exécution liée à un point d'arrêt DOM",
+ "Paused on WebGL Error instrumentation breakpoint, error \"{0}\"": "Interruption d'exécution liée à un point d'arrêt d'instrumentation en raison d'une erreur WebGL. Erreur \"{0}\"",
+ "Paused on XMLHttpRequest or fetch": "Interruption d'exécution liée à XMLHttpRequest ou fetch",
+ "Paused on assert": "Interruption d’exécution liée à une assertion",
+ "Paused on breakpoint": "Interruption d’exécution liée à un point d’arrêt",
+ "Paused on debug() call": "Interruption d'exécution liée à un appel de debug()",
+ "Paused on debugger statement": "En pause sur une instruction du débogueur",
+ "Paused on event listener": "Interruption d'exécution liée à un détecteur d'événements",
+ "Paused on event listener breakpoint \"{0}\", triggered on \"{1}\"": "Interruption d'exécution liée au point d'arrêt de détecteur d'événements \"{0}\". Déclenchement activé sur \"{1}\"",
+ "Paused on exception": "Interruption d’exécution liée à une exception",
+ "Paused on frame entry": "En pause sur une entrée de frame",
+ "Paused on instrumentation breakpoint": "Interruption d'exécution liée à un point d'arrêt d'instrumentation",
+ "Paused on instrumentation breakpoint \"{0}\"": "Interruption d'exécution liée au point d'arrêt d'instrumentation \"{0}\"",
+ "Paused on {0}": "En pause sur {0}",
+ "Pick Breakpoint": "Choisir un point d’arrêt",
+ "Pick the node.js process to attach to": "Sélectionner le processus node.js auquel s'attacher",
+ "Please enter a number": "Entrez un nombre",
+ "Please enter a number greater than 1": "Entrez un nombre supérieur à 1",
+ "Please stop the running profile before starting a new one.": "Arrêtez le profilage en cours d'exécution avant d'en démarrer un nouveau.",
+ "Process picker failed ({0})": "Le sélecteur de processus a échoué ({0})",
+ "Profile duration in seconds, e.g \"5\"": "Durée du profilage en secondes, par exemple \"5\"",
+ "Profiling": "Profilage",
+ "Profiling with breakpoints enabled can change the performance of your code. It can be useful to validate your findings with the \"duration\" or \"manual\" termination conditions.": "Effectuer un profilage avec des points d'arrêt activés peut changer le niveau de performance de votre code. Il peut être utile de valider vos constats avec les conditions d'arrêt \"durée\" ou \"manuel\".",
+ "Read More": "En savoir plus",
+ "Request Animation Frame": "Demander le frame d’animation",
+ "Resume AudioContext": "Reprendre AudioContext",
+ "Return value": "Valeur retournée",
+ "Run Current File": "Exécuter le fichier actif",
+ "Run Node.js tool": "Exécutez l'outil Node.js",
+ "Run Script: {0}": "Exécuter le script : {0}",
+ "Run Script: {0} ({1})": "Exécuter le script : {0} ({1})",
+ "Run for a specific amount of time": "Exécuter pendant un délai spécifique",
+ "Run until a specific breakpoint is hit": "Exécuter jusqu'à ce qu'un point d'arrêt spécifique soit atteint",
+ "Run until manually stopped": "Exécuter jusqu'à l'arrêt manuel",
+ "Runs a Node.js command-line installed in the workspace node_modules.": "Exécute une ligne de commande Node.js installée dans l'espace de travail node_modules.",
+ "Saving": "Enregistrement",
+ "Script": "Script",
+ "Script Blocked by Content Security Policy": "Script bloqué par la stratégie de sécurité de contenu",
+ "Script First Statement": "Première instruction du script",
+ "Select a tab": "Sélectionner un onglet",
+ "Select a tool to run": "Sélectionnez un outil à exécuter",
+ "Select current working directory for new terminal": "Sélectionner le répertoire de travail actuel pour le nouveau terminal",
+ "Select test configuration to run": "Sélectionner la configuration de test à exécuter",
+ "Select the page where you want to open the devtools": "Sélectionnez la page dans laquelle vous voulez ouvrir les outils du développeur",
+ "Select the session you want to inspect:": "Sélectionnez la session que vous souhaitez inspecter :",
+ "Seller Reporting Phase Start": "Début de la phase de création de rapports vendeur",
+ "Seller Scoring Phase Start": "Début de la phase de notation du vendeur",
+ "Set innerHTML": "Définir innerHTML",
+ "Skipped by skipFiles": "Ignoré par skipFiles",
+ "Skipped by smartStep": "Ignoré par smartStep",
+ "Some breakpoints might not work in your version of Node.js. We recommend upgrading for the latest bug, performance, and security fixes. Details: https://aka.ms/AAcsvqm": "Certains points d’arrêt ne fonctionneront sans doute pas dans votre version de Node.js. Nous vous recommandons d’effectuer la mise à niveau pour le bogue, les performances et les correctifs de sécurité les plus récents. Si vous souhaitez en savoir plus, veuillez consulter le site https://aka.ms/AAcsvqm",
+ "Source not a source map": "La source n’est pas un mappage de source",
+ "Source not found": "Source introuvable",
+ "Stack frame not found": "Frame de pile introuvable",
+ "Starting profile...": "Démarrage du profil...",
+ "Stopping profile...": "Arrêt du profil...",
+ "Suspend AudioContext": "Interrompre AudioContext",
+ "Syntax error setting breakpoint with condition {0} on line {1}: {2}": "Erreur de syntaxe au moment de la définition du point d'arrêt avec la condition {0} sur la ligne {1} : {2}",
+ "Target page not found. You may need to update your \"urlFilter\" to match the page you want to debug.": "Page cible introuvable. Vous devrez peut-être mettre à jour votre \"urlFilter\" pour qu'il corresponde à la page à déboguer.",
+ "The Node version in \"{0}\" is outdated (version {1}), we require at least Node 8.x.": "La version de Node dans \"{0}\" est obsolète (version {1}). Nous avons besoin au moins de Node 8.x.",
+ "The URL provided is invalid": "L'URL fournie n'est pas valide",
+ "The browser process exited with code {0} before connecting to the debug server. Make sure the `runtimeExecutable` is configured correctly and that it can run without errors.": "Le processus du navigateur s’est arrêté avec du code {0} avant de se connecter au serveur de débogage. Assurez-vous que le `runtimeExecutable` est configuré correctement et qu’il peut s’exécuter sans erreur.",
+ "The configured `cwd` {0} does not exist.": "Le `cwd` {0} configuré n'existe pas.",
+ "The configured `cwd` {0} is not a folder.": "Le {0} « cwd » configuré n’est pas un dossier.",
+ "This is a missing file path referenced by a sourcemap. Would you like to debug the compiled version instead?": "Il s'agit d'un chemin de fichier manquant référencé par un mappage de source. Voulez-vous déboguer la version compilée à la place ?",
+ "Thread is not paused": "Le thread n'est pas interrompu",
+ "Thread is not paused on exception": "Le thread n'est pas interrompu en cas d'exception",
+ "Thread not found": "Thread introuvable",
+ "Type of profile": "Type de profil",
+ "URL contains \"{0}\"": "L’URL contient « {0} »",
+ "UWP webview debugging is not available on your platform.": "Le débogage de l’affichage web UWP n’est pas disponible sur votre plateforme.",
+ "Unable to attach to browser": "Impossible d'attacher le navigateur",
+ "Unable to evaluate": "Nous n’avons pas pu évaluer",
+ "Unable to evaluate on async stack frame": "Impossible d'évaluer le frame de pile asynchrone",
+ "Unable to find an installation of the browser on your system. Try installing it, or providing an absolute path to the browser in the \"runtimeExecutable\" in your launch.json.": "Impossible de localiser une installation du navigateur sur votre système. Essayez de l'installer ou de fournir le chemin absolu du navigateur dans le « runtimeExecutable » de votre launch.json.",
+ "Unable to find {0} version {1}. Available auto-discovered versions are: {2}. You can set the \"runtimeExecutable\" in your launch.json to one of these, or provide an absolute path to the browser executable.": "Impossible de localiser {0} version {1}. Versions découvertes automatiquement disponibles : {2}. Vous pouvez définir \"runtimeExecutable\" en fonction de l'une de ces versions dans votre fichier launch.json, ou fournir le chemin absolu de l'exécutable du navigateur.",
+ "Unable to launch browser: \"{0}\"": "Impossible de lancer le navigateur : \"{0}\"",
+ "Unable to pause": "Impossible d’interrompre",
+ "Unable to pretty print": "Impossible d'effectuer une impression en mode Pretty",
+ "Unable to resume": "Impossible de reprendre",
+ "Unable to retrieve source content": "Impossible de récupérer le contenu source",
+ "Unable to set variable value": "Impossible de définir la valeur de la variable",
+ "Unable to step in": "Impossible d'effectuer un pas à pas détaillé",
+ "Unable to step next": "Impossible d'effectuer le pas à pas suivant",
+ "Unable to step out": "Impossible d'effectuer un pas à pas sortant",
+ "Unbound breakpoint": "Point d’arrêt indépendant",
+ "Uncaught Exceptions": "Exceptions non interceptées",
+ "Unknown error": "Erreur inconnue",
+ "VS Code can provide better debugging experience for WebAssembly via \"DWARF Debugging\" extension. Would you like to install it?/\"DWARF Debugging\" is the extension name and should not be localized.": "VS Code pouvez améliorer l’expérience de débogage pour WebAssembly par le biais de l’extension « Débogage de DWARF ». Voulez-vous l’installer ?",
+ "Variable not found": "Variable introuvable",
+ "Variables not available in async stacks": "Variables non disponibles dans les piles asynchrones",
+ "WARNING: Processing source-maps of {0} took longer than {1} ms so we continued execution without waiting for all the breakpoints for the script to be set.": "AVERTISSEMENT : Le traitement des mappages de sources de {0} a pris plus de {1} ms. Nous avons donc poursuivi l'exécution sans attendre que tous les points d'arrêt du script soient définis.",
+ "We can't launch a browser in debug mode from here. If you want to debug this webpage, open this workspace from VS Code on your desktop.": "Nous ne pouvons pas lancer un navigateur en mode débogage à partir d'ici. Si vous souhaitez déboguer cette page web, ouvrez cet espace de travail à partir de VS Code sur votre poste de travail.",
+ "We can't launch a browser in debug mode from here. Open this workspace in VS Code on your desktop to enable debugging.": "Nous ne pouvons pas lancer un navigateur en mode débogage à partir d'ici. Ouvrez cet espace de travail dans VS Code sur votre poste de travail pour activer le débogage.",
+ "WebGL Error Fired": "Erreur WebGL déclenchée",
+ "WebGL Warning Fired": "Avertissement WebGL déclenché",
+ "With Block": "Bloc With",
+ "Would you like to save a configuration in your launch.json for easy access later?": "Voulez-vous enregistrer une configuration dans votre fichier launch.json pour y accéder facilement plus tard ?",
+ "XHR/Fetch URLs": "URL XHR/récupération (fetch)",
+ "Yes": "Oui",
+ "You may install the `{}` module via npm for enhanced WebAssembly debugging": "Vous pouvez installer le module `{}` par le biais de npm pour le débogage WebAssembly amélioré",
+ "You need to open a workspace folder to debug npm scripts.": "Vous devez ouvrir un dossier d'espace de travail pour déboguer les scripts npm.",
+ "You're running an outdated version of Node.js. We recommend upgrading for the latest bug, performance, and security fixes.": "Vous exécutez une version obsolète de Node.js. Nous vous recommandons d’effectuer la mise à jour afin de bénéficier des correctifs de bogues, de performance et de sécurité les plus récents.",
+ "an old debug session": "ancienne session de débogage",
+ "breakpoint.provisionalBreakpoint": "breakpoint.provisionalBreakpoint",
+ "path does not exist": "le chemin n'existe pas",
+ "process id: {0} ({1})": "ID de processus : {0} ({1})",
+ "process id: {0}, debug port: {1} ({2})": "ID de processus : {0}, port de débogage : {1} ({2})",
+ "setInterval fired": "setInterval déclenché",
+ "setTimeout fired": "setTimeout déclenché",
+ "the configured userDataDir": "userDataDir configuré",
+ "{0} (couldn't describe: {1})": "{0} (description impossible : {1})",
+ "{0} Click to Stop Profiling": "{0} Cliquez pour arrêter le profilage",
+ "{0} Click to Stop Profiling ({1} sessions)": "{0} Cliquez pour arrêter le profilage ({1} sessions)",
+ "{0} Click to Stop Profiling ({1})": "{0} Cliquez pour arrêter le profilage ({1})"
}
}
}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-fr/translations/extensions/ms-vscode.node-debug.i18n.json b/i18n/vscode-language-pack-fr/translations/extensions/ms-vscode.node-debug.i18n.json
deleted file mode 100644
index 318bfb4e19..0000000000
--- a/i18n/vscode-language-pack-fr/translations/extensions/ms-vscode.node-debug.i18n.json
+++ /dev/null
@@ -1,183 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "dist/node/extension/autoAttach": {
- "process.with.pid.label": "Attaché automatiquement ({0})"
- },
- "dist/node/extension/cluster": {
- "child.process.with.pid.label": "Processus fils {0}"
- },
- "dist/node/extension/configurationProvider": {
- "NVM_DIR.not.found.message": "L'attribut 'runtimeVersion' nécessite Node.js version manager 'nvm' ou 'nvs'.",
- "NVM_HOME.not.found.message": "L'attribut 'runtimeVersion' nécessite Node.js version manager 'nvm-windows' ou 'nvs'.",
- "NVS_HOME.not.found.message": "L'attribut 'runtimeVersion' nécessite Node.js version manager 'nvs'.",
- "mern.starter.explanation": "Configuration de lancement du projet '{0}' créée.",
- "node.launch.config.name": "Lancer le programme",
- "outFiles.explanation": "Ajustez le ou les modèles glob dans l'attribut 'outFiles' pour qu'ils couvrent le fichier JavaScript généré.",
- "program.guessed.from.package.json.explanation": "Configuration de lancement créée en fonction de 'package.json'.",
- "program.not.found.message": "Programme à déboguer introuvable",
- "runtime.version.not.found.message": "Node.js version '{0}' non installé pour '{1}'.",
- "useWslDeprecationWarning.doNotShowAgain": "Ne plus afficher",
- "useWslDeprecationWarning.title": "L'attribut 'useWSL' est obsolète. Veuillez utiliser l'extension 'Remote WSL' à la place. Cliquez [ici]({0}) pour en savoir plus."
- },
- "dist/node/extension/processPicker": {
- "cannot.enable.debug.mode.error": "Attacher au processus : impossible d'activer le mode de débogage pour le processus '{0}' ({1}).",
- "pickNodeProcess": "Sélectionner le processus node.js auquel s'attacher",
- "pid.error": "Attacher au processus : impossible de mettre le processus '{0}' en mode débogage.",
- "process.id.error": "Attacher au processus : '{0}' ne ressemble pas à un ID de processus.",
- "process.id.port": "ID de processus : {0}, port de débogage : {1}",
- "process.id.port.legacy": "ID de processus : {0}, port de débogage : {1} (protocole hérité)",
- "process.id.port.signal": "ID de processus : {0}, port de débogage : {1} ({2})",
- "process.id.signal": "ID de processus : {0} ({1})",
- "process.picker.error": "Le sélecteur de processus a échoué ({0})"
- },
- "dist/node/extension/protocolDetection": {
- "protocol.switch.legacy.detected": "Débogage avec un protocole hérité car il a été détecté.",
- "protocol.switch.legacy.version": "Débogage à l'aide du protocole hérité, car Node.js {0} a été détecté.",
- "protocol.switch.unknown.error": "Débogage avec un protocole Inspector en raison de l'impossibilité de déterminer la version de Node.js ({0})"
- },
- "dist/node/nodeDebug": {
- "VSND2001": "Le runtime '{0}' est introuvable dans PATH. Vérifiez que '{0}' est installé.",
- "VSND2002": "Impossible de lancer le programme '{0}'. Essayez éventuellement de configurer les mappages de sources.",
- "VSND2003": "Impossible de lancer le programme '{0}'. La définition de l'attribut '{1}' peut éventuellement permettre de résoudre le problème.",
- "VSND2009": "Impossible de lancer le programme '{0}', car le code JavaScript correspondant est introuvable.",
- "VSND2010": "Impossible de se connecter au processus de runtime (raison : {0}).",
- "VSND2011": "Impossible de lancer la cible de débogage dans le terminal ({0}).",
- "VSND2015": "La requête '{_request}' a été annulée, car Node.js a cessé de répondre.",
- "VSND2016": "Node.js n'a pas répondu à la requête '{_request}' dans un délai raisonnable.",
- "VSND2017": "Impossible de lancer la cible de débogage ({0}).",
- "VSND2018": "Aucune pile des appels disponible ({_command} : {_error}).",
- "VSND2019": "Module interne {0} introuvable.",
- "VSND2022": "Aucune pile des appels car le programme est en pause hors de JavaScript.",
- "VSND2023": "Aucune pile des appels disponible.",
- "VSND2028": "Type de console inconnu '{0}'.",
- "VSND2029": "Impossible de charger les variables d'environnement à partir du fichier ({0}).",
- "VSND2033": "Impossible de se connecter au runtime; Assurez-vous que ce runtime est en mode débogage 'legacy'.",
- "VSND2034": "Impossible de se connecter au runtime via le protocole 'legacy'; essayez d’utiliser le protocole 'inspector'.",
- "anonymous.function": "(fonction anonyme)",
- "attribute.path.not.absolute": "L'attribut '{0}' n'est pas absolu ('{1}'). Ajoutez le préfixe '{2}' pour le rendre absolu.",
- "attribute.path.not.exist": "L'attribut '{0}' n'existe pas ('{1}').",
- "attribute.wls.not.exist": "Installation du sous-système Windows pour Linux introuvable",
- "eval.invalid.expression": "expression non valide : {0}",
- "eval.not.available": "Non disponible",
- "exception.paused.promise.rejection": "En pause sur un rejet de promesse",
- "exception.promise.rejection": "Rejet de promesse",
- "exception.promise.rejection.text": "Rejet de promesse ({0})",
- "exceptions.all": "Toutes les exceptions",
- "exceptions.rejects": "Rejets de promesse",
- "exceptions.uncaught": "Exceptions interceptées",
- "file.on.disk.changed": "Non vérifié, car le fichier sur disque a changé. Redémarrez la session de débogage.",
- "more.information": "Informations",
- "node.console.title": "Console de débogage de nœud",
- "origin.core.module": "module de base en lecture seule",
- "origin.from.node": "contenu en lecture seule en provenance de Node.js",
- "origin.from.remote.node": "contenu en lecture seule à partir du code Node.js distant",
- "origin.inlined.source.map": "contenu inlined en lecture seule à partir du mappage de source",
- "program.path.case.mismatch.warning": "Le chemin du programme utilise un nom de fichier contenant des caractères avec des casses différentes, ce qui peut empêcher d'atteindre les points d'arrêt.",
- "reason.description.breakpoint": "En pause sur un point d'arrêt",
- "reason.description.debugger_statement": "En pause sur une instruction du débogueur",
- "reason.description.entry": "En pause sur une entrée",
- "reason.description.exception": "En pause sur une exception",
- "reason.description.restart": "En pause sur une entrée de frame",
- "reason.description.step": "En pause sur une étape",
- "reason.description.user_request": "En pause sur une requête utilisateur",
- "scope.block": "Bloquer",
- "scope.catch": "Catch",
- "scope.closure": "Fermeture",
- "scope.exception": "Exception",
- "scope.global": "GLOBAL",
- "scope.local": "LOCAL",
- "scope.local.with.count": "Local ({0} sur {1})",
- "scope.script": "Script",
- "scope.unknown": "Type de portée inconnu : {0}",
- "scope.with": "avec",
- "setVariable.error": "Valeur de paramètre non prise en charge",
- "source.not.found": "Impossible de récupérer le contenu.",
- "source.skipFiles": "ignoré en raison de 'skipFiles'",
- "source.smartstep": "ignoré en raison de 'smartStep'",
- "sourcemapping.fail.message": "Point d'arrêt ignoré, car le code généré est introuvable. Problème de mappage de source ?"
- },
- "dist/node/nodeV8Protocol": {
- "not.connected": "non connecté au runtime",
- "runtime.timeout": "dépassement du délai d'expiration après {0} ms",
- "runtime.unresponsive": "annulé, car Node.js a cessé de répondre"
- },
- "package": {
- "attach.node.process": "Attacher au processus Node (hérité)",
- "debug.node.showUseWslIsDeprecatedWarning.description": "Contrôle s'il faut afficher un avertissement quand l'attribut 'useWSL' est utilisé.",
- "extension.description": "Prise en charge du débogage Node.js (versions < 8.0)",
- "launch.args.description": "Arguments de ligne de commande passés au programme.",
- "node.address.description": "Adresse TCP/IP du processus à déboguer (pour Node.js >= 5.0 uniquement). La valeur par défaut est 'localhost'.",
- "node.attach.config.name": "Attacher",
- "node.attach.processId.description": "ID du processus à attacher.",
- "node.disableOptimisticBPs.description": "Ne définissez pas de points d'arrêt dans un fichier tant qu'un mappage de source n'a pas été chargé pour ce fichier.",
- "node.label": "Node.js (hérité)",
- "node.launch.autoAttachChildProcesses.description": "Attacher le débogueur aux nouveaux processus enfants automatiquement.",
- "node.launch.config.name": "Lancer",
- "node.launch.console.description": "Où lancer la cible de débogage.",
- "node.launch.console.externalTerminal.description": "Terminal externe pouvant être configuré via des paramètres utilisateur",
- "node.launch.console.integratedTerminal.description": "terminal intégré de VS Code",
- "node.launch.console.internalConsole.description": "console de débogage de VS Code (qui ne prend pas en charge la lecture de l'entrée d'un programme)",
- "node.launch.cwd.description": "Chemin absolu du répertoire de travail du programme débogué.",
- "node.launch.env.description": "Variables d'environnement passées au programme. La valeur 'null' supprime la variable de l'environnement.",
- "node.launch.envFile.description": "Chemin absolu d'un fichier contenant des définitions de variables d'environnement.",
- "node.launch.externalConsole.deprecationMessage": "Attribut 'externalConsole' déconseillé, utilisez 'console' à la place.",
- "node.launch.outputCapture.description": "Emplacement de capture des messages de sortie : API de débogage ou flux stdout/stderr.",
- "node.launch.program.description": "Chemin absolu du programme. La valeur générée est déterminée en fonction du fichier package.json et des fichiers ouverts. Modifiez cet attribut.",
- "node.launch.runtimeArgs.description": "Arguments facultatifs passés à l'exécutable du runtime.",
- "node.launch.runtimeExecutable.description": "Runtime à utiliser. Chemin absolu ou nom d'un runtime disponible dans PATH. En cas d'omission, 'node' est choisi par défaut.",
- "node.launch.runtimeVersion.description": "Version de 'node' que le runtime utilise. Requiert 'nvm'.",
- "node.launch.useWSL.deprecation": "'useWSL' est déprécié et sa prise en charge va être supprimée. Utilisez l'extension 'Remote - WSL' à la place.",
- "node.launch.useWSL.description": "Utilisez le sous-système Windows pour Linux.",
- "node.localRoot.description": "Chemin du répertoire local contenant le programme.",
- "node.port.description": "Port de débogage auquel effectuer l'attachement. La valeur par défaut est 5858.",
- "node.processattach.config.name": "Attacher au processus",
- "node.protocol.auto.description": "Essaie de détecter automatiquement le meilleur protocole, en sélectionnant 'inspector' pour lancer Node 8.0+",
- "node.protocol.description": "Protocole de débogage Node.js à utiliser.",
- "node.protocol.inspector.description": "Nouveau protocole pris en charge par les versions de Node.js >= 6.3",
- "node.protocol.legacy.description": "Ancien protocole pris en charge par les versions de Node.js < 8.0",
- "node.remoteRoot.description": "Chemin absolu du répertoire distant contenant le programme.",
- "node.restart.description": "Redémarrez la session une fois l'exécution de Node.js effectuée.",
- "node.showAsyncStacks.description": "Affiche les appels asynchrones ayant conduit à la pile des appels actuelle. Protocole 'inspector' uniquement.",
- "node.snippet.attach.description": "Attacher à un programme node en cours d'exécution",
- "node.snippet.attach.label": "Node.js : attacher",
- "node.snippet.attachProcess.description": "Ouvrir le sélecteur de processus pour sélectionner le processus node auquel s'attacher",
- "node.snippet.attachProcess.label": "Node.js : attacher au processus",
- "node.snippet.electron.description": "Déboguer le processus principal Electron",
- "node.snippet.electron.label": "Node.js : processus principal Electron",
- "node.snippet.gulp.description": "Déboguer une tâche gulp (un gulp local doit être installé dans votre projet)",
- "node.snippet.gulp.label": "Node.js : tâche Gulp",
- "node.snippet.launch.description": "Lancer un programme node en mode débogage",
- "node.snippet.launch.label": "Node.js : lancer un programme",
- "node.snippet.mocha.description": "Déboguer les tests mocha",
- "node.snippet.mocha.label": "Node.js : tests mocha",
- "node.snippet.nodemon.description": "Utiliser nodemon pour relancer une session de débogage quand la source change",
- "node.snippet.nodemon.label": "Node.js : configurer nodemon",
- "node.snippet.npm.description": "Lancer un programme node avec un script npm 'debug'",
- "node.snippet.npm.label": "Node.js : lancer via NPM",
- "node.snippet.remoteattach.description": "Attacher au port de débogage d'un programme node distant",
- "node.snippet.remoteattach.label": "Node.js : attacher au programme distant",
- "node.snippet.yo.description": "Déboguer le générateur yeoman (installer en exécutant 'npm link' dans le dossier de projet)",
- "node.snippet.yo.label": "Node.js : générateur Yeoman",
- "node.sourceMapPathOverrides.description": "Ensemble de mappages pour la réécriture des emplacements des fichiers sources à partir de ce que le mappage de source stipule, vers les emplacements sur le disque.",
- "node.sourceMaps.description": "Utilisez des mappages de sources JavaScript (le cas échéant).",
- "node.stopOnEntry.description": "Arrêtez automatiquement le programme après le lancement.",
- "node.timeout.description": "Réessayez de vous connecter à Node.js pendant le nombre de millisecondes spécifié. La valeur par défaut est 10 000 ms.",
- "open.loaded.script": "Ouvrir le script chargé",
- "outDir.deprecationMessage": "Attribut 'outDir' déprécié. Utilisez 'outFiles' à la place.",
- "outFiles.description": "Si les mappages de sources sont activés, ces modèles Glob spécifient les fichiers JavaScript générés. Si un modèle commence par '!', les fichiers sont exclus. En l'absence de spécification, le code généré est censé se trouver dans le même répertoire que sa source. Exemple : '[\"${workspaceFolder}/out/**/*.js\"]'",
- "skipFiles.description": "Tableau de modèles glob pour les fichiers à ignorer pendant le débogage. Le modèle '/**' correspond à tous les modules Node.js internes.",
- "smartStep.description": "Exécutez pas à pas de façon automatique le code généré qui ne peut être mappé à la source d'origine.",
- "start.with.stop.on.entry": "Démarrer le débogage et arrêter à l'entrée (hérité)",
- "toggle.skipping.this.file": "Ignorer/Ne pas ignorer ce fichier",
- "trace.description": "Produire une sortie de diagnostique. Au lieu d'affecter la valeur true, vous pouvez lister un ou plusieurs sélecteurs séparés par des virgules. Le sélecteur 'verbose' permet d'activer une sortie très détaillée."
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-fr/translations/extensions/ms-vscode.node-debug2.i18n.json b/i18n/vscode-language-pack-fr/translations/extensions/ms-vscode.node-debug2.i18n.json
deleted file mode 100644
index fa7329c83d..0000000000
--- a/i18n/vscode-language-pack-fr/translations/extensions/ms-vscode.node-debug2.i18n.json
+++ /dev/null
@@ -1,138 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "node_modules\\vscode-chrome-debug-core\\out/src/chrome/breakpoints": {
- "bp.fail.noscript": "Le script correspondant à la demande de point d'arrêt est introuvable",
- "bp.fail.unbound": "Point d'arrêt défini mais pas encore lié",
- "invalidHitCondition": "Condition d'atteinte non valide : {0}",
- "setBPTimedOut": "La demande de définition de points d'arrêt a expiré",
- "validateBP.notFound": "Point d'arrêt ignoré, car le chemin cible est introuvable",
- "validateBP.sourcemapFail": "Point d'arrêt ignoré, car le code généré est introuvable. Problème de mappage de source ?"
- },
- "node_modules\\vscode-chrome-debug-core\\out/src/chrome/chromeDebugAdapter": {
- "exceptions.all": "Toutes les exceptions",
- "exceptions.promise_rejects": "Rejets de promesse",
- "exceptions.uncaught": "Exceptions interceptées"
- },
- "node_modules\\vscode-chrome-debug-core\\out/src/chrome/chromeTargetDiscoveryStrategy": {
- "attach.cannotConnect": "Connexion impossible à la cible : {0}",
- "attach.devToolsAttached": "Impossible d'effectuer un attachement à cette cible à laquelle Chrome DevTools est peut-être attaché : {0}",
- "attach.invalidResponse": "La réponse de la cible semble non valide. Erreur : {0}. Réponse : {1}",
- "attach.invalidResponseArray": "La réponse de la cible semble non valide : {0}",
- "attach.noMatchingTarget": "Aucune cible valide ne correspond : {0}. Pages disponibles : {1}",
- "attach.responseButNoTargets": "Réponse reçue de la part de l'application cible, mais les pages cibles sont introuvables"
- },
- "node_modules\\vscode-chrome-debug-core\\out/src/chrome/stackFrames": {
- "scope.exception": "Exception",
- "skipReason": "(ignoré par '{0}')"
- },
- "node_modules\\vscode-chrome-debug-core\\out/src/chrome/stoppedEvent": {
- "reason.description.breakpoint": "En pause sur un point d'arrêt",
- "reason.description.caughtException": "En pause sur une exception interceptée",
- "reason.description.debugger_statement": "En pause sur une instruction du débogueur",
- "reason.description.entry": "En pause sur une entrée",
- "reason.description.exception": "En pause sur une exception",
- "reason.description.promiseRejection": "En pause sur un rejet de promesse",
- "reason.description.restart": "En pause sur une entrée de frame",
- "reason.description.step": "En pause sur une étape",
- "reason.description.uncaughtException": "En pause sur une exception non interceptée",
- "reason.description.user_request": "En pause sur une requête utilisateur"
- },
- "node_modules\\vscode-chrome-debug-core\\out/src/errors": {
- "VSND2010": "Connexion impossible au processus de runtime. Expiration du délai après {0} ms - (raison : {1}).",
- "VSND2023": "Aucune pile des appels disponible.",
- "attribute.path.not.absolute": "L'attribut '{0}' n'est pas absolu ('{1}'). Ajoutez le préfixe '{2}' pour le rendre absolu.",
- "attribute.path.not.exist": "L'attribut '{0}' n'existe pas ('{1}').",
- "eval.not.available": "Non disponible",
- "failed.to.read.port": "Impossible de lire le fichier {dataDirPath}, {error}",
- "more.information": "Plus d'informations",
- "not.connected": "non connecté au runtime",
- "port.file.contents.invalid": "Le fichier à l'emplacement « {dataDirPath} » ne contenait pas de données de port valides, le contenu était « {dataDirContents} »",
- "restartFrame.cannot": "Impossible de redémarrer l'image",
- "setVariable.error": "Valeur de paramètre non prise en charge",
- "source.not.found": "Impossible de récupérer le contenu."
- },
- "node_modules\\vscode-chrome-debug-core\\out/src/transformers/baseSourceMapTransformer": {
- "origin.inlined.source.map": "contenu inlined en lecture seule à partir du mappage de source"
- },
- "node_modules\\vscode-chrome-debug-core\\out/src/transformers/remotePathTransformer": {
- "localRootAndRemoteRoot": "Vous devez spécifier localRoot et remoteRoot."
- },
- "out/src/errors": {
- "VSND2001": "Le runtime '{0}' est introuvable dans PATH. Est-ce que '{0}' est installé ?",
- "VSND2002": "Impossible de lancer le programme '{0}'. Essayez éventuellement de configurer les mappages de sources.",
- "VSND2003": "Impossible de lancer le programme '{0}'. La définition de l'attribut '{1}' peut éventuellement permettre de résoudre le problème.",
- "VSND2009": "Impossible de lancer le programme '{0}', car le code JavaScript correspondant est introuvable.",
- "VSND2011": "Impossible de lancer la cible de débogage dans le terminal ({0}).",
- "VSND2017": "Impossible de lancer la cible de débogage ({0}).",
- "VSND2028": "Type de console inconnu '{0}'.",
- "VSND2029": "Impossible de charger les variables d'environnement à partir du fichier ({0}).",
- "VSND2035": "Impossible de déboguer l'extension ({0})."
- },
- "out/src/nodeDebugAdapter": {
- "VSND2001": "Le runtime '{0}' est introuvable dans PATH. Vérifiez que '{0}' est installé.",
- "attribute.path.not.absolute": "L'attribut '{0}' n'est pas absolu ('{1}'). Ajoutez le préfixe '{2}' pour le rendre absolu.",
- "attribute.path.not.exist": "L'attribut '{0}' n'existe pas ('{1}').",
- "attribute.wsl.not.exist": "L'installation du sous-système Windows pour Linux est introuvable.",
- "more.information": "Plus d'informations",
- "node.console.title": "Console de débogage de nœud",
- "origin.core.module": "module de base en lecture seule",
- "origin.from.node": "contenu en lecture seule en provenance de Node.js",
- "program.path.case.mismatch.warning": "Le chemin du programme utilise un nom de fichier contenant des caractères avec des casses différentes, ce qui peut empêcher d'atteindre les points d'arrêt."
- },
- "package": {
- "extension.description": "Prise en charge du débogage de Node.js",
- "extensionHost.label": "Développement d'extension VS Code",
- "extensionHost.launch.config.name": "Lancer l'extension",
- "extensionHost.launch.env.description": "Variables d'environnement passées à l'hôte d'extension.",
- "extensionHost.launch.runtimeExecutable.description": "Chemin absolu de VS Code.",
- "extensionHost.launch.stopOnEntry.description": "Arrêtez automatiquement l'hôte d'extension après le lancement.",
- "extensionHost.snippet.launch.description": "Lancer une extension VS Code en mode débogage",
- "extensionHost.snippet.launch.label": "Développement d'extension VS Code",
- "node.address.description": "Adresse TCP/IP du port de débogage. La valeur par défaut est 'localhost'.",
- "node.attach.config.name": "Attacher",
- "node.attach.localRoot.description": "Racine source locale qui correspond à 'remoteRoot'.",
- "node.attach.processId.description": "ID du processus à attacher.",
- "node.attach.remoteRoot.description": "Racine source de l'hôte distant.",
- "node.diagnosticLogging.deprecationMessage": "'diagnosticLogging' est déprécié. Utilisez 'trace' à la place.",
- "node.diagnosticLogging.description": "Quand la valeur est true, l'adaptateur journalise ses propres informations de diagnostic dans la console",
- "node.disableOptimisticBPs.description": "Ne définissez pas de points d'arrêt dans un fichier tant qu'un mappage de source n'a pas été chargé pour ce fichier.",
- "node.enableSourceMapCaching.description": "Quand des mappages de sources sont téléchargés à partir d'une URL, mettez-les en cache sur le disque.",
- "node.label": "Node.js v6.3+ via le protocole Inspector",
- "node.launch.args.description": "Arguments de ligne de commande passés au programme.",
- "node.launch.config.name": "Lancer",
- "node.launch.console.description": "Où lancer la cible de débogage : console interne, terminal intégré ou terminal externe.",
- "node.launch.cwd.description": "Chemin absolu du répertoire de travail du programme débogué.",
- "node.launch.env.description": "Variables d'environnement passées au programme. La valeur 'null' supprime la variable de l'environnement.",
- "node.launch.envFile.description": "Chemin absolu d'un fichier contenant des définitions de variables d'environnement.",
- "node.launch.outputCapture.description": "Emplacement de capture des messages de sortie : API de débogage ou flux stdout/stderr.",
- "node.launch.program.description": "Chemin absolu du programme.",
- "node.launch.runtimeArgs.description": "Arguments facultatifs passés à l'exécutable du runtime.",
- "node.launch.runtimeExecutable.description": "Runtime à utiliser. Chemin absolu ou nom d'un runtime disponible dans PATH. En cas d'omission, 'node' est choisi par défaut.",
- "node.outFiles.description": "Si les mappages de sources sont activés, ces modèles Glob spécifient les fichiers JavaScript générés. Si un modèle commence par '!', les fichiers sont exclus. En l'absence de spécification, le code généré est censé se trouver dans le même répertoire que sa source.",
- "node.port.description": "Port de débogage auquel effectuer l'attachement. La valeur par défaut est 9 229.",
- "node.processattach.config.name": "Attacher au processus",
- "node.restart.description": "Redémarrez la session une fois l'exécution de Node.js effectuée.",
- "node.showAsyncStacks.description": "Affiche les appels asynchrones ayant conduit à la pile des appels actuelle.",
- "node.skipFiles.description": "Groupe de noms de fichiers ou de dossiers, ou modèles Glob, à ignorer durant le débogage.",
- "node.smartStep.description": "Exécutez pas à pas de façon automatique le code généré qui ne peut être mappé à la source d'origine.",
- "node.sourceMapPathOverrides.description": "Ensemble de mappages pour la réécriture des emplacements des fichiers sources à partir des indications du mappage de source vers les emplacements appropriés sur le disque. Pour plus d'informations, consultez le README.",
- "node.sourceMaps.description": "Utilisez des mappages de sources JavaScript (le cas échéant).",
- "node.stopOnEntry.description": "Arrêtez automatiquement le programme après le lancement.",
- "node.timeout.description": "Réessayez de vous connecter à Node.js pendant le nombre de millisecondes spécifié. La valeur par défaut est 10 000 ms.",
- "node.trace.description": "Quand la valeur est 'true', le débogueur journalise les informations de traçage dans un fichier. Quand la valeur est 'verbose', il affiche également les journaux dans la console.",
- "node.verboseDiagnosticLogging.deprecationMessage": "'verboseDiagnosticLogging' est déprécié. Utilisez 'trace' à la place.",
- "node.verboseDiagnosticLogging.description": "Quand la valeur est true, l'adaptateur journalise l'ensemble du trafic lié au client et à la cible (ainsi que les informations journalisées par 'diagnosticLogging')",
- "outDir.deprecationMessage": "Attribut 'outDir' déprécié. Utilisez 'outFiles' à la place.",
- "toggle.skipping.this.file": "Ignorer/Ne pas ignorer ce fichier",
- "workspaceTrust": "L’approbation est requise pour déboguer le code dans cet espace de travail."
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-fr/translations/extensions/ms-vscode.remotehub.i18n.json b/i18n/vscode-language-pack-fr/translations/extensions/ms-vscode.remotehub.i18n.json
deleted file mode 100644
index 1b5ffbdd1b..0000000000
--- a/i18n/vscode-language-pack-fr/translations/extensions/ms-vscode.remotehub.i18n.json
+++ /dev/null
@@ -1,81 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "package": {
- "colors.added": "Color for added resources",
- "colors.conflict": "Color for resources with conflicts",
- "colors.deleted": "Color for deleted resources",
- "colors.incomingAdded": "Color for incoming added resources",
- "colors.incomingDeleted": "Color for incoming deleted resources",
- "colors.incomingModified": "Color for incoming modified resources",
- "colors.incomingRenamed": "Color for incoming renamed resources",
- "colors.modified": "Color for modified resources",
- "colors.possibleConflict": "Color for resources with possible conflicts",
- "command.timeline.compareWithSelected": "Compare with Selected",
- "command.timeline.copyCommitId": "Copy Commit ID",
- "command.timeline.copyCommitMessage": "Copy Commit Message",
- "command.timeline.openDiff": "Open Changes",
- "command.timeline.openOnGitHub": "Open on GitHub",
- "command.timeline.selectForCompare": "Select for Compare",
- "commands.addRepositoryToWorkspace": "Add Remote Repository to Workspace...",
- "commands.clone": "Clone Repository Locally...",
- "commands.commit": "Commit",
- "commands.continueOn": "Continue on...",
- "commands.createBranch": "Create New Branch...",
- "commands.createBranchFrom": "Create New Branch from...",
- "commands.createDraftPullRequest": "Create a Draft Pull Request",
- "commands.createPullRequest": "Create a Pull Request",
- "commands.deleteAllLocalRepositoryData": "Delete All Local Repository Data",
- "commands.deleteLocalRepositoryData": "Delete Local Repository Data...",
- "commands.discardAllChanges": "Discard All Changes",
- "commands.discardChanges": "Discard Changes",
- "commands.enableIndexing": "Enable Search Indexing",
- "commands.exportPatch": "Export Changes...",
- "commands.fetch": "Fetch",
- "commands.keepChanges": "Keep Changes",
- "commands.openChanges": "Open Changes",
- "commands.openFile": "Open File",
- "commands.openInCodespaces": "Open in Codespaces...",
- "commands.openOnDesktop": "Reopen on the Desktop",
- "commands.openOnRemote": "Open on GitHub",
- "commands.openOnWeb": "Reopen on the Web",
- "commands.openRepository": "Open Remote Repository...",
- "commands.pull": "Pull",
- "commands.stageAllChanges": "Stage All Changes",
- "commands.stageChanges": "Stage Changes",
- "commands.switchToBranch": "Switch to Branch...",
- "commands.sync": "Sync (Pull & Push)",
- "commands.unstageAllChanges": "Unstage All Changes",
- "commands.unstageChanges": "Unstage Changes",
- "config.autoFetch.enabled": "Specifies whether to periodically fetch from the upstream repository",
- "config.autoFetch.interval": "Specifies the interval, in seconds, to periodically fetch from the upstream repository",
- "config.search.download.corsProxy": "Specifies the proxy to use when downloading repository indicies from a browser context",
- "config.search.download.enabled": "Specifies whether text search should download an index of the repository in order to provide more accurate search results",
- "config.search.download.repoLimit": "Specifies the maximum number of search indicies cached per repo. Each reference requires a separate search index",
- "config.search.download.sizeLimit": "Specifies the size (in MB) of search index cache. The search cache is located in the extension's global storage folder",
- "config.staging.enabled": "Specifies whether to enable the staging of changes before committing",
- "config.staging.smart": "Specifies whether to automatically stage all changes, if there are none, before committing",
- "description": "Remotely browse and edit a GitHub repository",
- "displayName": "Remote Repositories (RemoteHub)",
- "displayNameInsiders": "RemoteHub (Insiders)",
- "submenu.branch": "Branch",
- "submenu.changes": "Changes",
- "submenu.commit": "Commit",
- "submenu.export": "Export",
- "submenu.pullRequest": "Pull Request",
- "viewsWelcome.debug": "Run and Debug are not available in this environment. To run and debug, you will need to continue in another Visual Studio Code setup.",
- "viewsWelcome.debug.continueOn": "[Continue on...](command:remoteHub.continueOn 'Continue working on this remote repository elsewhere')",
- "viewsWelcome.explorer": "Or, you can remotely open a repository or pull request directly from Visual Studio Code without cloning.\r\n[Open Remote Repository](command:remoteHub.openRepository 'Open a remote repository (e.g. from GitHub)')",
- "viewsWelcome.explorer.web": "Or, you can remotely open a repository or pull request directly from Visual Studio Code.\r\n[Open Remote Repository](command:remoteHub.openRepository 'Open a remote repository (e.g. from GitHub)')",
- "viewsWelcome.terminal": "Terminals are not available in this environment. To use the terminal, you will need to continue in another Visual Studio Code setup.",
- "viewsWelcome.terminal.continueOn": "[Continue on...](command:remoteHub.continueOn 'Continue working on this remote repository elsewhere')"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-fr/translations/extensions/notebook-markdown-extensions.i18n.json b/i18n/vscode-language-pack-fr/translations/extensions/notebook-markdown-extensions.i18n.json
deleted file mode 100644
index f14f1be59c..0000000000
--- a/i18n/vscode-language-pack-fr/translations/extensions/notebook-markdown-extensions.i18n.json
+++ /dev/null
@@ -1,16 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "package": {
- "description": "Fournit une prise en charge riche de langage pour Markdown",
- "displayName": "Markdown Notebook math"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-fr/translations/extensions/npm.i18n.json b/i18n/vscode-language-pack-fr/translations/extensions/npm.i18n.json
deleted file mode 100644
index 01bf29d680..0000000000
--- a/i18n/vscode-language-pack-fr/translations/extensions/npm.i18n.json
+++ /dev/null
@@ -1,77 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "dist/commands": {
- "noScriptFound": "Un script npm valide est introuvable à la sélection."
- },
- "dist/features/bowerJSONContribution": {
- "json.bower.default": "Fichier bower.json par défaut",
- "json.bower.error.repoaccess": "Échec de la requête destinée au dépôt bower : {0}",
- "json.bower.latest.version": "Plus récent"
- },
- "dist/features/packageJSONContribution": {
- "json.npm.error.repoaccess": "Échec de la requête destinée au dépôt NPM : {0}",
- "json.npm.latestversion": "Dernière version du package",
- "json.npm.majorversion": "Correspond à la version majeure la plus récente (1.x.x)",
- "json.npm.minorversion": "Correspond à la version mineure la plus récente (1.2.x)",
- "json.npm.version.hover": "Dernière version : {0}",
- "json.package.default": "Fichier package.json par défaut"
- },
- "dist/npmScriptLens": {
- "codelens.debug": "Déboguer"
- },
- "dist/npmView": {
- "autoDetectIsOff": "Le paramètre \"npm.autoDetect\" est \"off\".",
- "noScripts": "Aucun script trouvé."
- },
- "dist/scriptHover": {
- "debugScript": "Script de débogage",
- "debugScript.tooltip": "Exécute le script avec le débogueur",
- "runScript": "Exécuter le script",
- "runScript.tooltip": "Exécuter le script comme tâche"
- },
- "dist/tasks": {
- "npm.multiplePMWarning": "Utilisation de {0} comme gestionnaire de package favori. Plusieurs fichiers de verrouillage ont été trouvés pour {1}. Pour résoudre ce problème, supprimez les fichiers de verrouillage qui ne correspondent pas à votre gestionnaire de package préféré ou remplacez le paramètre « npm.packageManager » par une valeur autre que « auto ».",
- "npm.multiplePMWarning.doNotShow": "Ne plus afficher",
- "npm.multiplePMWarning.learnMore": "En savoir plus",
- "npm.parseError": "Détection de tâche npm : échec de l'analyse du fichier {0}"
- },
- "package": {
- "command.debug": "Déboguer",
- "command.openScript": "Ouvrir ",
- "command.packageManager": "Obtenir le Gestionnaire de package configuré",
- "command.refresh": "Actualiser",
- "command.run": "Exécuter",
- "command.runInstall": "Exécuter Install",
- "command.runScriptFromFolder": "Exécuter le script NPM dans un dossier...",
- "command.runSelectedScript": "Exécuter le script",
- "config.npm.autoDetect": "Contrôle si les scripts npm doivent être détectés automatiquement.",
- "config.npm.enableRunFromFolder": "Activez l'exécution de scripts NPM contenus dans un dossier du menu contextuel Explorer.",
- "config.npm.enableScriptExplorer": "Activez une vue explorateur pour les scripts npm en l'absence d'un fichier 'package.json' de haut niveau.",
- "config.npm.exclude": "Configurer les profils glob pour les dossiers qui doivent être exclus de la détection de script automatique.",
- "config.npm.fetchOnlinePackageInfo": "Récupérez des données à partir de https://registry.npmjs.org et https://registry.bower.io pour l'auto-complétion et obtenir des informations concernant les fonctionnalités de pointage sur les dépendances npm.",
- "config.npm.packageManager": "Gestionnaire de package utilisé pour exécuter des scripts.",
- "config.npm.packageManager.auto": "Détectez automatiquement le gestionnaire de package à utiliser pour l'exécution des scripts en fonction des fichiers de verrouillage et des gestionnaires de packages installés.",
- "config.npm.packageManager.npm": "Utilisez npm en tant que gestionnaire de package pour l'exécution des scripts.",
- "config.npm.packageManager.pnpm": "Utilisez pnpm en tant que gestionnaire de package pour l'exécution des scripts.",
- "config.npm.packageManager.yarn": "Utilisez YARN en tant que gestionnaire de package pour l'exécution des scripts.",
- "config.npm.runSilent": "Exécutez les commandes npm avec l'option `--silent`.",
- "config.npm.scriptExplorerAction": "Action de clic par défaut utilisée dans l'explorateur de scripts npm : 'open' ou 'run'. La valeur par défaut est 'open'.",
- "config.npm.scriptExplorerExclude": "Tableau d’expressions régulières qui indiquent quels scripts doivent être exclus de la vue Scripts NPM.",
- "description": "Extension pour ajouter une prise en charge des tâches pour les scripts npm.",
- "displayName": "Prise en charge de Npm pour VS Code",
- "npm.parseError": "Détection de tâche npm : échec de l'analyse du fichier {0}",
- "taskdef.path": "Chemin de dossier du fichier package.json qui fournit le script. Peut être ignoré.",
- "taskdef.script": "Le script npm à personnaliser.",
- "view.name": "Scripts npm",
- "workspaceTrust": "Cette extension exécute des tâches qui nécessitent une approbation pour s’exécuter."
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-fr/translations/extensions/objective-c.i18n.json b/i18n/vscode-language-pack-fr/translations/extensions/objective-c.i18n.json
deleted file mode 100644
index 4889f0202f..0000000000
--- a/i18n/vscode-language-pack-fr/translations/extensions/objective-c.i18n.json
+++ /dev/null
@@ -1,16 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "package": {
- "description": "Fournit la coloration syntaxique et la correspondance des crochets dans les fichiers Objective-C.",
- "displayName": "Concepts de base du langage Objective-C"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-fr/translations/extensions/perl.i18n.json b/i18n/vscode-language-pack-fr/translations/extensions/perl.i18n.json
deleted file mode 100644
index 5fd415ea91..0000000000
--- a/i18n/vscode-language-pack-fr/translations/extensions/perl.i18n.json
+++ /dev/null
@@ -1,16 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "package": {
- "description": "Fournit la coloration syntaxique et la correspondance des crochets dans les fichiers Perl.",
- "displayName": "Concepts de base du langage Perl"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-fr/translations/extensions/php-language-features.i18n.json b/i18n/vscode-language-pack-fr/translations/extensions/php-language-features.i18n.json
deleted file mode 100644
index 2d05e6d74f..0000000000
--- a/i18n/vscode-language-pack-fr/translations/extensions/php-language-features.i18n.json
+++ /dev/null
@@ -1,31 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "dist/features/validationProvider": {
- "goToSetting": "Ouvrir les paramètres",
- "noExecutable": "Impossible d'effectuer la validation, car aucun exécutable PHP n'est défini. Utilisez le paramètre 'php.validate.executablePath' pour configurer l'exécutable PHP.",
- "noPhp": "Validation impossible car aucune installation PHP n’a été trouvée. Utilisez le paramètre « php.validate.executablePath » pour configurer l’exécutable PHP.",
- "unknownReason": "Échec de l'exécution de php avec le chemin : {0}. Raison inconnue.",
- "wrongExecutable": "Impossible d'effectuer la validation, car {0} n'est pas un exécutable PHP valide. Utilisez le paramètre 'php.validate.executablePath' pour configurer l'exécutable PHP."
- },
- "package": {
- "command.untrustValidationExecutable": "Interdire l'exécutable de validation PHP (défini comme paramètre d'espace de travail)",
- "commands.categroy.php": "PHP",
- "configuration.suggest.basic": "Contrôle si les suggestions de langage PHP intégrées sont activées. Le support suggère les globales et variables PHP.",
- "configuration.title": "PHP",
- "configuration.validate.enable": "Activez/désactivez la validation PHP intégrée.",
- "configuration.validate.executablePath": "Pointe vers l'exécutable PHP.",
- "configuration.validate.run": "Spécifie si linter est exécuté au moment de l'enregistrement ou de la saisie.",
- "description": "Fournit une prise en charge de langage riche pour les fichiers PHP.",
- "displayName": "Fonctionnalités de langage PHP",
- "workspaceTrust": "L’extension nécessite l’approbation d’espace de travail lorsque le paramètre « php.validate.executablePath » charge une version de PHP dans l’espace de travail."
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-fr/translations/extensions/php.i18n.json b/i18n/vscode-language-pack-fr/translations/extensions/php.i18n.json
deleted file mode 100644
index 8ef55e8446..0000000000
--- a/i18n/vscode-language-pack-fr/translations/extensions/php.i18n.json
+++ /dev/null
@@ -1,16 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "package": {
- "description": "Fournit la coloration syntaxique et la correspondance des parenthèses dans les fichiers PHP.",
- "displayName": "Concepts de base du langage PHP"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-fr/translations/extensions/powershell.i18n.json b/i18n/vscode-language-pack-fr/translations/extensions/powershell.i18n.json
deleted file mode 100644
index 127d3c83dd..0000000000
--- a/i18n/vscode-language-pack-fr/translations/extensions/powershell.i18n.json
+++ /dev/null
@@ -1,16 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "package": {
- "description": "Fournit des extraits de code, la coloration syntaxique, la correspondance des crochets et le repli dans les fichiers PowerShell.",
- "displayName": "Concepts de base du langage PowerShell"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-fr/translations/extensions/pug.i18n.json b/i18n/vscode-language-pack-fr/translations/extensions/pug.i18n.json
deleted file mode 100644
index 1d7f18c7eb..0000000000
--- a/i18n/vscode-language-pack-fr/translations/extensions/pug.i18n.json
+++ /dev/null
@@ -1,16 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "package": {
- "description": "Fournit la coloration syntaxique et la correspondance des crochets dans les fichiers Pug.",
- "displayName": "Bases du langage Pug"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-fr/translations/extensions/r.i18n.json b/i18n/vscode-language-pack-fr/translations/extensions/r.i18n.json
deleted file mode 100644
index 2592ea0b78..0000000000
--- a/i18n/vscode-language-pack-fr/translations/extensions/r.i18n.json
+++ /dev/null
@@ -1,16 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "package": {
- "description": "Fournit la coloration syntaxique et la correspondance des crochets dans les fichiers R.",
- "displayName": "Concepts de base du langage R"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-fr/translations/extensions/razor.i18n.json b/i18n/vscode-language-pack-fr/translations/extensions/razor.i18n.json
deleted file mode 100644
index 5436c74b5d..0000000000
--- a/i18n/vscode-language-pack-fr/translations/extensions/razor.i18n.json
+++ /dev/null
@@ -1,16 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "package": {
- "description": "Fournit la coloration syntaxique, la correspondance des crochets et le repli dans les fichiers Razor.",
- "displayName": "Bases du langage Razor"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-fr/translations/extensions/references-view.i18n.json b/i18n/vscode-language-pack-fr/translations/extensions/references-view.i18n.json
deleted file mode 100644
index 0791d7a05d..0000000000
--- a/i18n/vscode-language-pack-fr/translations/extensions/references-view.i18n.json
+++ /dev/null
@@ -1,73 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "dist/calls/model": {
- "noresult": "Aucun résultat.",
- "open": "Ouvrir l’appel",
- "title.callers": "Appelants de",
- "title.calls": "Appels de {0}"
- },
- "dist/references/index": {
- "title": "Références"
- },
- "dist/references/model": {
- "noresult": "Aucun résultat.",
- "open": "Ouvrir la référence",
- "result.1": "{0} résultat dans {1} fichier",
- "result.1n": "{0} résultat dans {1} fichiers",
- "result.n1": "{0} résultats dans {1} fichier",
- "result.nm": "{0} résultats dans {1} fichiers"
- },
- "dist/tree": {
- "noresult": "Aucun résultat.",
- "noresult2": "Aucun résultat. Réessayez d’exécuter une recherche précédente :",
- "placeholder": "Sélectionner la recherche de référence précédente",
- "title": "Références",
- "title.rerun": "Réexécuter"
- },
- "dist/types/model": {
- "noresult": "Aucun résultat.",
- "title.openType": "Type d’ouverture",
- "title.sub": "Sous-types de",
- "title.sup": "Supertypes de"
- },
- "package": {
- "cmd.category.references": "Références",
- "cmd.references-view.clear": "Effacer",
- "cmd.references-view.clearHistory": "Effacer l'historique",
- "cmd.references-view.copy": "Copier",
- "cmd.references-view.copyAll": "Copier tout",
- "cmd.references-view.copyPath": "Copier le chemin",
- "cmd.references-view.findImplementations": "Rechercher toutes les implémentations",
- "cmd.references-view.findReferences": "Rechercher toutes les références",
- "cmd.references-view.next": "Accéder au résultat suivant",
- "cmd.references-view.pickFromHistory": "Afficher l'historique",
- "cmd.references-view.prev": "Accéder à la référence précédente",
- "cmd.references-view.refind": "Réexécuter",
- "cmd.references-view.refresh": "Actualiser",
- "cmd.references-view.removeCallItem": "Ignorer",
- "cmd.references-view.removeReferenceItem": "Ignorer",
- "cmd.references-view.removeTypeItem": "Ignorer",
- "cmd.references-view.showCallHierarchy": "Afficher la hiérarchie des appels",
- "cmd.references-view.showIncomingCalls": "Afficher les appels entrants",
- "cmd.references-view.showOutgoingCalls": "Afficher les appels sortants",
- "cmd.references-view.showSubtypes": "Afficher les sous-types",
- "cmd.references-view.showSupertypes": "Afficher les supertypes",
- "cmd.references-view.showTypeHierarchy": "Afficher la hiérarchie de type",
- "config.references.preferredLocation": "Contrôle si « Peek References » ou « Find References » est appelé lors de la sélection de références filtre du code",
- "config.references.preferredLocation.peek": "Afficher les références dans l’éditeur d’aperçu.",
- "config.references.preferredLocation.view": "Afficher les références dans un affichage distinct.",
- "container.title": "Références",
- "description": "Référencer les résultats de la recherche sous forme d’affichage stable distinct dans la barre latérale",
- "displayName": "Mode Recherche de référence",
- "view.title": "Résultats"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-fr/translations/extensions/ruby.i18n.json b/i18n/vscode-language-pack-fr/translations/extensions/ruby.i18n.json
deleted file mode 100644
index b79c9afc22..0000000000
--- a/i18n/vscode-language-pack-fr/translations/extensions/ruby.i18n.json
+++ /dev/null
@@ -1,16 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "package": {
- "description": "Fournit la coloration syntaxique et la correspondance des crochets dans les fichiers Ruby.",
- "displayName": "Concepts de base du langage Ruby"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-fr/translations/extensions/rust.i18n.json b/i18n/vscode-language-pack-fr/translations/extensions/rust.i18n.json
deleted file mode 100644
index 395355c807..0000000000
--- a/i18n/vscode-language-pack-fr/translations/extensions/rust.i18n.json
+++ /dev/null
@@ -1,16 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "package": {
- "description": "Fournit la coloration syntaxique et la correspondance des crochets dans les fichiers Rust.",
- "displayName": "Bases du langage Rust"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-fr/translations/extensions/scss.i18n.json b/i18n/vscode-language-pack-fr/translations/extensions/scss.i18n.json
deleted file mode 100644
index f1351ab18e..0000000000
--- a/i18n/vscode-language-pack-fr/translations/extensions/scss.i18n.json
+++ /dev/null
@@ -1,16 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "package": {
- "description": "Fournit la coloration syntaxique, la correspondance des crochets et le repli dans les fichiers SCSS.",
- "displayName": "Bases du langage SCSS"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-fr/translations/extensions/search-result.i18n.json b/i18n/vscode-language-pack-fr/translations/extensions/search-result.i18n.json
deleted file mode 100644
index 1b895d030e..0000000000
--- a/i18n/vscode-language-pack-fr/translations/extensions/search-result.i18n.json
+++ /dev/null
@@ -1,16 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "package": {
- "description": "Fournit la mise en surbrillance de la syntaxe et des fonctionnalités de langue pour les résultats de recherche avec onglets.",
- "displayName": "Résultat de recherche"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-fr/translations/extensions/shaderlab.i18n.json b/i18n/vscode-language-pack-fr/translations/extensions/shaderlab.i18n.json
deleted file mode 100644
index a1f30cbc2d..0000000000
--- a/i18n/vscode-language-pack-fr/translations/extensions/shaderlab.i18n.json
+++ /dev/null
@@ -1,16 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "package": {
- "description": "Fournit la coloration syntaxique et la correspondance des crochets dans les fichiers Shaderlab.",
- "displayName": "Concepts de base du langage Shaderlab"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-fr/translations/extensions/shellscript.i18n.json b/i18n/vscode-language-pack-fr/translations/extensions/shellscript.i18n.json
deleted file mode 100644
index 54b2b87832..0000000000
--- a/i18n/vscode-language-pack-fr/translations/extensions/shellscript.i18n.json
+++ /dev/null
@@ -1,16 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "package": {
- "description": "Fournit la coloration syntaxique et la correspondance des crochets dans les fichiers Shell Script.",
- "displayName": "Bases du langage Shell Script"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-fr/translations/extensions/simple-browser.i18n.json b/i18n/vscode-language-pack-fr/translations/extensions/simple-browser.i18n.json
deleted file mode 100644
index 87483f0e1d..0000000000
--- a/i18n/vscode-language-pack-fr/translations/extensions/simple-browser.i18n.json
+++ /dev/null
@@ -1,30 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "dist/extension": {
- "openTitle": "Ouvrir dans le navigateur simple",
- "simpleBrowser.show.placeholder": "https://example.com",
- "simpleBrowser.show.prompt": "Entrez l'URL à visiter"
- },
- "dist/simpleBrowserView": {
- "control.back.title": "Précédent",
- "control.forward.title": "Suivant",
- "control.openExternal.title": "Ouvrir dans le navigateur",
- "control.reload.title": "Recharger",
- "view.iframe-focused": "Verrouillage du focus",
- "view.title": "Navigateur simple"
- },
- "package": {
- "configuration.focusLockIndicator.enabled.description": "Activez/désactivez l'indicateur flottant qui s'affiche quand il a le focus dans le navigateur simple.",
- "description": "Vue web intégrée très élémentaire pour l'affichage du contenu web.",
- "displayName": "Navigateur simple"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-fr/translations/extensions/sql.i18n.json b/i18n/vscode-language-pack-fr/translations/extensions/sql.i18n.json
deleted file mode 100644
index deeb8eb955..0000000000
--- a/i18n/vscode-language-pack-fr/translations/extensions/sql.i18n.json
+++ /dev/null
@@ -1,16 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "package": {
- "description": "Fournit la coloration syntaxique et la correspondance des crochets dans les fichiers SQL.",
- "displayName": "Concepts de base du langage SQL"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-fr/translations/extensions/swift.i18n.json b/i18n/vscode-language-pack-fr/translations/extensions/swift.i18n.json
deleted file mode 100644
index c759117473..0000000000
--- a/i18n/vscode-language-pack-fr/translations/extensions/swift.i18n.json
+++ /dev/null
@@ -1,16 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "package": {
- "description": "Fournit des extraits de code, la coloration syntaxique et la correspondance des crochets dans les fichiers Swift.",
- "displayName": "Bases du langage Swift"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-fr/translations/extensions/testing-editor-contributions.i18n.json b/i18n/vscode-language-pack-fr/translations/extensions/testing-editor-contributions.i18n.json
deleted file mode 100644
index 77362173ea..0000000000
--- a/i18n/vscode-language-pack-fr/translations/extensions/testing-editor-contributions.i18n.json
+++ /dev/null
@@ -1,27 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "package": {
- "action.debug": "Déboguer",
- "action.run": "Exécuter les tests",
- "config.enableCodeLens": "Indique si CodeLens doit être visible sur les cas de test et les suites de tests.",
- "config.enableProblemDiagnostics": "Indique si les tests non réussis doivent être signalés dans la vue 'problèmes', et s'ils doivent être affichés en tant qu'erreurs dans l'éditeur.",
- "description": "Fournit l'expérience utilisateur de l'éditeur pour les tests et les résultats des tests.",
- "displayName": "Contributions de l'éditeur de tests",
- "state.failed": "Échec",
- "state.passed": "Réussite",
- "state.passedWithDuration": "Réussite en {0}",
- "tooltip.debug": "Déboguer {0}",
- "tooltip.run": "Exécuter {0}",
- "tooltip.runState": "{0}/{1} tests réussis",
- "tooltip.runStateWithDuration": "{0}/{1} tests réussis en {2}"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-fr/translations/extensions/theme-abyss.i18n.json b/i18n/vscode-language-pack-fr/translations/extensions/theme-abyss.i18n.json
deleted file mode 100644
index e2e6a36c87..0000000000
--- a/i18n/vscode-language-pack-fr/translations/extensions/theme-abyss.i18n.json
+++ /dev/null
@@ -1,17 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "package": {
- "description": "Thème Abyss pour Visual Studio Code",
- "displayName": "Thème Abyss",
- "themeLabel": "Abysse"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-fr/translations/extensions/theme-defaults.i18n.json b/i18n/vscode-language-pack-fr/translations/extensions/theme-defaults.i18n.json
deleted file mode 100644
index 5e380a1fe1..0000000000
--- a/i18n/vscode-language-pack-fr/translations/extensions/theme-defaults.i18n.json
+++ /dev/null
@@ -1,23 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "package": {
- "darkColorThemeLabel": "Sombre (Visual Studio)",
- "darkPlusColorThemeLabel": "Sombre+ (sombre par défaut)",
- "description": "Thèmes clair et sombre par défaut de Visual Studio",
- "displayName": "Thèmes par défaut",
- "hcColorThemeLabel": "Contraste élevé sombre",
- "lightColorThemeLabel": "Clair (Visual Studio)",
- "lightHcColorThemeLabel": "Contraste élevé clair",
- "lightPlusColorThemeLabel": "Clair+ (clair par défaut)",
- "minimalIconThemeLabel": "Minimal (Visual Studio Code)"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-fr/translations/extensions/theme-kimbie-dark.i18n.json b/i18n/vscode-language-pack-fr/translations/extensions/theme-kimbie-dark.i18n.json
deleted file mode 100644
index c4eb6e5c2b..0000000000
--- a/i18n/vscode-language-pack-fr/translations/extensions/theme-kimbie-dark.i18n.json
+++ /dev/null
@@ -1,17 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "package": {
- "description": "Thème Kimble dark pour Visual Studio Code",
- "displayName": "Thème Kimble Dark",
- "themeLabel": "Kimbie sombre"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-fr/translations/extensions/theme-monokai-dimmed.i18n.json b/i18n/vscode-language-pack-fr/translations/extensions/theme-monokai-dimmed.i18n.json
deleted file mode 100644
index f83713cddf..0000000000
--- a/i18n/vscode-language-pack-fr/translations/extensions/theme-monokai-dimmed.i18n.json
+++ /dev/null
@@ -1,17 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "package": {
- "description": "Thème Monokai Dimmed pour Visual Studio Code",
- "displayName": "Thème Monokai Dimmed",
- "themeLabel": "Monokai estompé"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-fr/translations/extensions/theme-monokai.i18n.json b/i18n/vscode-language-pack-fr/translations/extensions/theme-monokai.i18n.json
deleted file mode 100644
index a026fa980e..0000000000
--- a/i18n/vscode-language-pack-fr/translations/extensions/theme-monokai.i18n.json
+++ /dev/null
@@ -1,17 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "package": {
- "description": "Thème Monokai pour Visual Studio Code",
- "displayName": "Thème Monokai",
- "themeLabel": "Monokai"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-fr/translations/extensions/theme-quietlight.i18n.json b/i18n/vscode-language-pack-fr/translations/extensions/theme-quietlight.i18n.json
deleted file mode 100644
index ac7e329479..0000000000
--- a/i18n/vscode-language-pack-fr/translations/extensions/theme-quietlight.i18n.json
+++ /dev/null
@@ -1,17 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "package": {
- "description": "Thème Quiet Light pour Visual Studio Code",
- "displayName": "Thème Quiet Light",
- "themeLabel": "Quiet clair"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-fr/translations/extensions/theme-red.i18n.json b/i18n/vscode-language-pack-fr/translations/extensions/theme-red.i18n.json
deleted file mode 100644
index 887b478f2a..0000000000
--- a/i18n/vscode-language-pack-fr/translations/extensions/theme-red.i18n.json
+++ /dev/null
@@ -1,17 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "package": {
- "description": "Thème Red pour Visual Studio Code",
- "displayName": "Thème Red",
- "themeLabel": "Rouge"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-fr/translations/extensions/theme-seti.i18n.json b/i18n/vscode-language-pack-fr/translations/extensions/theme-seti.i18n.json
deleted file mode 100644
index 0096b3bb41..0000000000
--- a/i18n/vscode-language-pack-fr/translations/extensions/theme-seti.i18n.json
+++ /dev/null
@@ -1,17 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "package": {
- "description": "Un thème pour les icônes de fichiers fait avec les icônes de fichiers Seti UI",
- "displayName": "Thème Seti pour les icônes de fichiers",
- "themeLabel": "Seti (Visual Studio Code)"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-fr/translations/extensions/theme-solarized-dark.i18n.json b/i18n/vscode-language-pack-fr/translations/extensions/theme-solarized-dark.i18n.json
deleted file mode 100644
index 4b7124bc5a..0000000000
--- a/i18n/vscode-language-pack-fr/translations/extensions/theme-solarized-dark.i18n.json
+++ /dev/null
@@ -1,17 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "package": {
- "description": "Thème Solarized Dark pour Visual Studio Code",
- "displayName": "Thème Solarized Dark",
- "themeLabel": "Solaire sombre"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-fr/translations/extensions/theme-solarized-light.i18n.json b/i18n/vscode-language-pack-fr/translations/extensions/theme-solarized-light.i18n.json
deleted file mode 100644
index 30b5c4f093..0000000000
--- a/i18n/vscode-language-pack-fr/translations/extensions/theme-solarized-light.i18n.json
+++ /dev/null
@@ -1,17 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "package": {
- "description": "Thème Solarized Light pour Visual Studio Code",
- "displayName": "Thème Solarized Light",
- "themeLabel": "Solaire clair"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-fr/translations/extensions/theme-tomorrow-night-blue.i18n.json b/i18n/vscode-language-pack-fr/translations/extensions/theme-tomorrow-night-blue.i18n.json
deleted file mode 100644
index 776e521b9b..0000000000
--- a/i18n/vscode-language-pack-fr/translations/extensions/theme-tomorrow-night-blue.i18n.json
+++ /dev/null
@@ -1,17 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "package": {
- "description": "Thème Tomorrow Night Blue pour Visual Studio Code",
- "displayName": "Thème Tomorrow Night Blue",
- "themeLabel": "Tomorrow Night Blue"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-fr/translations/extensions/typescript-basics.i18n.json b/i18n/vscode-language-pack-fr/translations/extensions/typescript-basics.i18n.json
deleted file mode 100644
index b350de1dea..0000000000
--- a/i18n/vscode-language-pack-fr/translations/extensions/typescript-basics.i18n.json
+++ /dev/null
@@ -1,16 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "package": {
- "description": "Fournit des extraits de code, la coloration syntaxique, la correspondance des crochets et le repli dans les fichiers TypeScript.",
- "displayName": "Bases du langage TypeScript"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-fr/translations/extensions/typescript-language-features.i18n.json b/i18n/vscode-language-pack-fr/translations/extensions/typescript-language-features.i18n.json
deleted file mode 100644
index 70a5db8040..0000000000
--- a/i18n/vscode-language-pack-fr/translations/extensions/typescript-language-features.i18n.json
+++ /dev/null
@@ -1,328 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "dist/languageFeatures/codeLens/baseCodeLensProvider": {
- "referenceErrorLabel": "Impossible de déterminer les références"
- },
- "dist/languageFeatures/codeLens/implementationsCodeLens": {
- "manyImplementationLabel": "{0} implémentations",
- "oneImplementationLabel": "1 implémentation"
- },
- "dist/languageFeatures/codeLens/referencesCodeLens": {
- "manyReferenceLabel": "{0} références",
- "oneReferenceLabel": "1 référence"
- },
- "dist/languageFeatures/completions": {
- "acquiringTypingsDetail": "Acquisition des définitions typings pour IntelliSense.",
- "acquiringTypingsLabel": "Acquisition des typings...",
- "selectCodeAction": "Sélectionner l'action de code à appliquer"
- },
- "dist/languageFeatures/directiveCommentCompletions": {
- "ts-check": "Active la vérification sémantique dans un fichier JavaScript. Doit se trouver au début d'un fichier.",
- "ts-expect-error": "Supprime les erreurs @ts-check sur la ligne suivante d'un fichier, en supposant qu'il y a au moins une erreur.",
- "ts-ignore": "Supprime les erreurs @ts-check sur la ligne suivante d'un fichier.",
- "ts-nocheck": "Désactive la vérification sémantique dans un fichier JavaScript. Doit se trouver au début d'un fichier."
- },
- "dist/languageFeatures/fileReferences": {
- "error.noResource": "Échec de la recherche des références de fichiers. Aucune ressource fournie.",
- "error.unknownFile": "Échec de la recherche des références de fichiers. Type de fichier inconnu.",
- "error.unsupportedLanguage": "Échec de la recherche des références de fichiers. Type de fichier non pris en charge.",
- "error.unsupportedVersion": "Échec de la recherche des références de fichiers. Nécessite TypeScript 4.2+.",
- "progress.title": "Recherche des références de fichiers"
- },
- "dist/languageFeatures/fixAll": {
- "autoFix.label": "Résoudre tous les problèmes JS/TS pouvant être résolus",
- "autoFix.missingImports.label": "Ajouter toutes les importations manquantes",
- "autoFix.unused.label": "Supprimer tout code inutilisé"
- },
- "dist/languageFeatures/jsDocCompletions": {
- "typescript.jsDocCompletionItem.documentation": "Commentaire JSDoc"
- },
- "dist/languageFeatures/organizeImports": {
- "organizeImportsAction.title": "Organiser les importations",
- "sortImportsAction.title": "Trier les importations"
- },
- "dist/languageFeatures/quickFix": {
- "fixAllInFileLabel": "{0} (Corriger tout dans le fichier)"
- },
- "dist/languageFeatures/refactor": {
- "extractConstant.disabled.reason": "Impossible d'extraire la sélection actuelle",
- "extractConstant.disabled.title": "Extraire en constante",
- "extractFunction.disabled.reason": "Impossible d'extraire la sélection actuelle",
- "extractFunction.disabled.title": "Extraire en fonction",
- "refactor.documentation.title": "En savoir plus sur les refactorisations JS/TS",
- "refactoringFailed": "Impossible d'appliquer la refactorisation"
- },
- "dist/languageFeatures/rename": {
- "fileRenameFail": "Une erreur s'est produite pendant le renommage du fichier"
- },
- "dist/languageFeatures/sourceDefinition": {
- "error.noReferences": "Aucune définition trouvée.",
- "error.noResource": "Échec de l’aller à la définition source. Aucune ressource fournie.",
- "error.unknownFile": "Échec de l’aller à la définition source. Type de fichier inconnu.",
- "error.unsupportedLanguage": "Échec de l’aller à la définition source. Type de fichier non pris en charge.",
- "error.unsupportedVersion": "Échec de l’aller à la définition source. Nécessite TypeScript 4.7+.",
- "progress.title": "Recherche des définitions sources"
- },
- "dist/languageFeatures/tsconfig": {
- "documentLink.tooltip": "Suivre le lien",
- "openTsconfigExtendsModuleFail": "Échec de la résolution de {0} en tant que module"
- },
- "dist/languageFeatures/updatePathsOnRename": {
- "accept.title": "Oui",
- "always.title": "Toujours mettre à jour automatiquement les importations",
- "moreFile": "...1 fichier supplémentaire non affiché",
- "moreFiles": "...{0} fichiers supplémentaires non affichés",
- "never.title": "Ne jamais mettre à jour automatiquement les importations",
- "prompt": "Mettre à jour les importations de '{0}' ?",
- "promptMoreThanOne": "Mettre à jour les importations des fichiers {0} suivants ?",
- "reject.title": "Non",
- "renameProgress.title": "Recherche de mises à jour des importations JS/TS"
- },
- "dist/task/taskProvider": {
- "badTsConfig": "La tâche Typescript dans tasks.json contient \"\\\\\". Les tâches Typescript tsconfig doivent utiliser \"/\"",
- "buildAndWatchTscLabel": "espion - {0}",
- "buildTscLabel": "build - {0}"
- },
- "dist/tsServer/serverProcess.electron": {
- "noServerFound": "Le chemin {0} ne pointe pas vers une installation tsserver valide. Utilisation par défaut de la version TypeScript groupée."
- },
- "dist/tsServer/versionManager": {
- "allow": "Autoriser",
- "dismiss": "Ignorer",
- "learnMore": "En savoir plus sur la gestion des versions TypeScript",
- "promptUseWorkspaceTsdk": "Cet espace de travail contient une version TypeScript. Voulez-vous utiliser la version TypeScript de l'espace de travail pour les fonctionnalités de langage TypeScript et JavaScript ?",
- "selectTsVersion": "Sélectionner la version TypeScript utilisée pour les fonctionnalités de langage JavaScript et TypeScript",
- "suppress prompt": "Jamais dans cet espace de travail",
- "useVSCodeVersionOption": "Utiliser la version de VS Code",
- "useWorkspaceVersionOption": "Utiliser la version de l'espace de travail"
- },
- "dist/typescriptServiceClient": {
- "noServerFound": "Le chemin {0} ne pointe pas vers une installation tsserver valide. Utilisation par défaut de la version TypeScript groupée.",
- "openTsServerLog.openFileFailedFailed": "Impossible d'ouvrir le fichier journal du serveur TS",
- "serverDied": "Le service de langage TypeScript s'est subitement arrêté 5 fois au cours des 5 dernières minutes.",
- "serverDiedAfterStart": "Le service de langage TypeScript s'est subitement arrêté 5 fois juste après avoir démarré. Il n'y aura pas d'autres redémarrages.",
- "serverDiedOnce": "Le service de langage TypeScript est mort de manière inattendue.",
- "serverDiedReportIssue": "Signaler un problème",
- "serverExitedWithError": "Le serveur de langage TypeScript a rencontré une erreur. Le message d'erreur est : {0}",
- "serverLoading.progress": "Initialisation des fonctionnalités de langage JS/TS",
- "typescript.openTsServerLog.enableAndReloadOption": "Activer la journalisation et redémarrer le serveur TS",
- "typescript.openTsServerLog.loggingNotEnabled": "La journalisation du serveur TS est désactivée. Définissez 'typescript.tsserver.log' et redémarrez le serveur TS pour activer la journalisation",
- "typescript.openTsServerLog.noLogFile": "Le serveur TS n'a pas démarré la journalisation.",
- "usingOldTsVersion.detail": "L’espace de travail utilise une ancienne version de TypeScript ({0}).\r\n\r\nAvant de signaler un problème, mettez à jour l’espace de travail pour utiliser la dernière version de TypeScript stable pour vous assurer que le bogue n’a pas déjà été corrigé.",
- "usingOldTsVersion.title": "Veuillez mettre à jour votre version de TypeScript"
- },
- "dist/ui/intellisenseStatus": {
- "pending.detail": "Chargement de l’état IntelliSense",
- "resolved.command.title.createJsconfig": "Créer jsconfig",
- "resolved.command.title.createTsconfig": "Créer tsconfig",
- "resolved.command.title.open": "Ouvrir le fichier de configuration",
- "resolved.detail.noJsConfig": "Aucun jsconfig",
- "resolved.detail.noOpenedFolders": "Aucun dossier ouvert",
- "resolved.detail.noTsConfig": "Aucun tsconfig",
- "resolved.detail.notInOpenedFolder": "Le fichier ne fait pas partie des dossiers ouverts",
- "statusItem.name": "État intelliSense JS/TS",
- "syntaxOnly.command.title.learnMore": "En savoir plus",
- "syntaxOnly.detail": "IntelliSense à l’échelle du projet non disponible",
- "syntaxOnly.text": "Mode partiel"
- },
- "dist/ui/versionStatus": {
- "versionStatus.command": "Sélectionner la version",
- "versionStatus.detail": "TypeScript Version",
- "versionStatus.name": "TypeScript Version"
- },
- "dist/utils/api": {
- "invalidVersion": "La version n'est pas valide"
- },
- "dist/utils/logger": {
- "channelName": "TypeScript"
- },
- "dist/utils/tsconfig": {
- "typescript.configureJsconfigQuickPick": "Configurer jsconfig.json",
- "typescript.configureTsconfigQuickPick": "Configurer tsconfig.json",
- "typescript.noJavaScriptProjectConfig": "Le fichier ne fait pas partie d’un projet JavaScript. Affichez les [tsconfig.json documentation]({0}) pour en savoir plus.",
- "typescript.noTypeScriptProjectConfig": "Le fichier ne fait pas partie d’un projet TypeScript. Affichez les [tsconfig.json documentation]({0}) pour en savoir plus.",
- "typescript.projectConfigCouldNotGetInfo": "Impossible de déterminer le projet TypeScript ou JavaScript",
- "typescript.projectConfigNoWorkspace": "Ouvrez un dossier dans VS Code pour utiliser un projet TypeScript ou JavaScript",
- "typescript.projectConfigUnsupportedFile": "Impossible de déterminer le projet TypeScript ou JavaScript. Type de fichier non pris en charge"
- },
- "package": {
- "codeActions.refactor.extract.constant.description": "Extrayez l'expression vers une constante.",
- "codeActions.refactor.extract.constant.title": "Extraire la constante",
- "codeActions.refactor.extract.function.description": "Extrayez l'expression vers une méthode ou une fonction.",
- "codeActions.refactor.extract.function.title": "Extraire la fonction",
- "codeActions.refactor.extract.interface.description": "Extraire le type vers une interface.",
- "codeActions.refactor.extract.interface.title": "Extraire l'interface",
- "codeActions.refactor.extract.type.description": "Extrayez le type vers un alias de type.",
- "codeActions.refactor.extract.type.title": "Extraire le type",
- "codeActions.refactor.move.newFile.description": "Déplacez l'expression dans un nouveau fichier.",
- "codeActions.refactor.move.newFile.title": "Déplacer vers un nouveau fichier",
- "codeActions.refactor.rewrite.arrow.braces.description": "Ajoutez ou supprimez des accolades dans une fonction arrow.",
- "codeActions.refactor.rewrite.arrow.braces.title": "Réécrire les accolades arrow",
- "codeActions.refactor.rewrite.export.description": "Convertissez l'exportation par défaut en exportation nommée, et vice versa.",
- "codeActions.refactor.rewrite.export.title": "Convertir l'exportation",
- "codeActions.refactor.rewrite.import.description": "Convertissez les importations nommées en importations d'espace de noms, et vice versa.",
- "codeActions.refactor.rewrite.import.title": "Convertir l'importation",
- "codeActions.refactor.rewrite.parameters.toDestructured.title": "Convertir les paramètres en objet déstructuré",
- "codeActions.refactor.rewrite.property.generateAccessors.description": "Générer les accesseurs 'get' et 'set'",
- "codeActions.refactor.rewrite.property.generateAccessors.title": "Générer des accesseurs",
- "codeActions.source.organizeImports.title": "Organiser les importations",
- "configuration.implicitProjectConfig.checkJs": "Active/désactive la vérification sémantique des fichiers JavaScript. Les fichiers 'jsconfig.json' ou 'tsconfig.json existants remplacent ce paramètre.",
- "configuration.implicitProjectConfig.experimentalDecorators": "Active/désactive 'experimentalDecorators' dans les fichiers JavaScript qui ne font pas partie d'un projet. Les fichiers 'jsconfig.json' ou 'tsconfig.json existants remplacent ce paramètre.",
- "configuration.implicitProjectConfig.module": "Définit le système de module pour le programme. Voir plus : https://www.typescriptlang.org/tsconfig#module.",
- "configuration.implicitProjectConfig.strictFunctionTypes": "Active/désactive les [types de fonction stricts](https://www.typescriptlang.org/tsconfig#strictFunctionTypes) dans les fichiers JavaScript et TypeScript qui ne font pas partie d'un projet. Les fichiers 'jsconfig.json' ou 'tsconfig.json existants remplacent ce paramètre.",
- "configuration.implicitProjectConfig.strictNullChecks": "Active/désactive les [vérifications de valeur null strictes](https://www.typescriptlang.org/tsconfig#strictNullChecks) dans les fichiers JavaScript et TypeScript qui ne font pas partie d'un projet. Les fichiers 'jsconfig.json' ou 'tsconfig.json existants remplacent ce paramètre.",
- "configuration.implicitProjectConfig.target": "Définissez la version du langage JavaScript cible pour les déclarations JavaScript émises et incluez les déclarations de bibliothèque. Afficher plus : https://www.typescriptlang.org/tsconfig#target.",
- "configuration.inlayHints.parameterNames.suppressWhenArgumentMatchesName": "Supprime les indicateurs de nom de paramètre sur les arguments dont le texte est identique au nom du paramètre.",
- "configuration.inlayHints.variableTypes.suppressWhenTypeMatchesName": "Suppression des indications de type sur les variables dont le nom est identique au nom du type. Nécessite l'utilisation de TypeScript 4.8+ dans l'espace de travail.",
- "configuration.javascript.checkJs.checkJs.deprecation": "Ce paramètre est déprécié au profit de 'js/ts.implicitProjectConfig.checkJs'.",
- "configuration.javascript.checkJs.experimentalDecorators.deprecation": "Ce paramètre est déprécié au profit de 'js/ts.implicitProjectConfig.experimentalDecorators'.",
- "configuration.suggest.autoImports": "Active/désactive les suggestions d'importation automatique.",
- "configuration.suggest.classMemberSnippets.enabled": "Activer/désactiver les complétions de snippet pour les membres de la classe. Nécessite l'utilisation de TypeScript 4.5+ dans l'espace de travail.",
- "configuration.suggest.completeFunctionCalls": "Fonctions complètes avec leur signature de paramètre.",
- "configuration.suggest.completeJSDocs": "Activez/désactivez la suggestion pour commenter JSDoc.",
- "configuration.suggest.includeAutomaticOptionalChainCompletions": "Activez/désactivez l'affichage des complétions sur des valeurs potentiellement indéfinies qui insèrent un appel de chaîne facultatif. Nécessite TS 3.7+ et l'activation des vérifications de valeur null stricte.",
- "configuration.suggest.includeCompletionsForImportStatements": "Active/désactive les complétions basées sur l'importation automatique pour les instructions d'importation partiellement tapées. Nécessite l'utilisation de TypeScript 4.3+ dans l'espace de travail.",
- "configuration.suggest.includeCompletionsWithSnippetText": "Active/désactive les complétions d'extraits à partir de TS Server. Nécessite l'utilisation de TypeScript 4.3+ dans l'espace de travail.",
- "configuration.suggest.jsdoc.generateReturns": "Activez/désactivez la génération d'annotations '@returns' pour les modèles JSDoc. Nécessite l'utilisation de TypeScript 4.2+ dans l'espace de travail.",
- "configuration.suggest.names": "Activez/désactivez l'inclusion de noms uniques à partir du fichier dans les suggestions JavaScript. Notez que les suggestions de nom sont toujours désactivées dans le code JavaScript qui fait l'objet d'une vérification sémantique à l'aide de '@ts-check' ou 'checkJs'.",
- "configuration.suggest.objectLiteralMethodSnippets.enabled": "Activez/désactivez les saisies semi-automatiques d’extraits de code pour les méthodes dans les littéraux d’objet. Nécessite l’utilisation de TypeScript 4.7+ dans l’espace de travail",
- "configuration.suggest.paths": "Activer/désactiver des suggestions pour les chemins dans les instructions d'import et les appels require.",
- "configuration.surveys.enabled": "Activer/désactiver des enquêtes ponctuelles qui nous aident à améliorer le support JavaScript et TypeScript de VS Code.",
- "configuration.tsserver.experimental.enableProjectDiagnostics": "(Expérimental) Permet de signaler les erreurs à l'échelle du projet.",
- "configuration.tsserver.maxTsServerMemory": "Quantité maximale de mémoire (en Mo) à allouer au processus du serveur TypeScript.",
- "configuration.tsserver.useSeparateSyntaxServer": "Activez/désactivez la génération dynamique d'un serveur TypeScript distinct capable de répondre plus rapidement aux opérations de syntaxe, comme le calcul du pliage ou le calcul des symboles de document. Nécessite l'utilisation de TypeScript 3.4.0 ou supérieur dans l'espace de travail.",
- "configuration.tsserver.useSeparateSyntaxServer.deprecation": "Ce paramètre a été déconseillé en faveur de « typescript.tsserver.useSyntaxServer » .",
- "configuration.tsserver.useSyntaxServer": "Contrôle si TypeScript lance un serveur dédié pour gérer plus rapidement les opérations liées à la syntaxe, comme le repli du code de calcul.",
- "configuration.tsserver.useSyntaxServer.always": "Utilisez un serveur de Syntaxe plus léger pour gérer toutes les opérations IntelliSense. Ce serveur de Syntaxe ne peut fournir que IntelliSense pour les fichiers ouverts.",
- "configuration.tsserver.useSyntaxServer.auto": "Générez un serveur complet et un poids plus léger dédié aux opérations de Syntaxe. Le serveur de Syntaxe est utilisé pour accélérer les opérations de syntaxe et fournir IntelliSense quand les projets sont en cours de chargement.",
- "configuration.tsserver.useSyntaxServer.never": "N’utilisez pas un serveur de Syntaxe dédié. Utilisez un seul serveur pour gérer toutes les opérations IntelliSense.",
- "configuration.tsserver.watchOptions": "Configurez les stratégies de surveillance qui doivent être utilisées pour effectuer le suivi des fichiers et répertoires. Nécessite l'utilisation de TypeScript 3.8+ dans l'espace de travail.",
- "configuration.tsserver.watchOptions.fallbackPolling": "Quand vous utilisez des événements de système de fichiers, cette option spécifie la stratégie de sondage qui est utilisée quand le système n'a plus d'observateurs de fichiers natifs et/ou ne prend pas en charge les observateurs de fichiers natifs.",
- "configuration.tsserver.watchOptions.fallbackPolling.dynamicPriorityPolling ": "Utilisez une file d'attente dynamique où les fichiers modifiés moins souvent sont vérifiés moins souvent.",
- "configuration.tsserver.watchOptions.fallbackPolling.fixedPollingInterval": "Recherchez les changements dans chaque fichier plusieurs fois par seconde à intervalle fixe.",
- "configuration.tsserver.watchOptions.fallbackPolling.priorityPollingInterval": "Recherchez les changements dans chaque fichier plusieurs fois par seconde, mais utilisez la méthode heuristique pour vérifier certains types de fichier moins souvent que d'autres.",
- "configuration.tsserver.watchOptions.synchronousWatchDirectory": "Désactivez la surveillance différée sur les répertoires. La surveillance différée est utile quand de nombreux changements de fichier sont susceptibles de se produire en même temps (par ex., un changement dans node_modules lié à l'exécution de npm install), mais vous pouvez aussi la désactiver avec cet indicateur pour des configurations moins courantes.",
- "configuration.tsserver.watchOptions.watchDirectory": "Stratégie de surveillance d'arborescences de répertoires complètes sous des systèmes sans fonctionnalité de surveillance récursive des fichiers.",
- "configuration.tsserver.watchOptions.watchDirectory.dynamicPriorityPolling": "Utilisez une file d'attente dynamique où les répertoires modifiés moins souvent sont vérifiés moins souvent.",
- "configuration.tsserver.watchOptions.watchDirectory.fixedChunkSizePolling": "Interroge les répertoires par blocs à intervalles réguliers. Nécessite l'utilisation de TypeScript 4.3+ dans l'espace de travail.",
- "configuration.tsserver.watchOptions.watchDirectory.fixedPollingInterval": "Recherchez les changements dans chaque répertoire plusieurs fois par seconde à intervalle fixe.",
- "configuration.tsserver.watchOptions.watchDirectory.useFsEvents": "Essayez d'utiliser les événements natifs du système d'exploitation/système de fichiers pour les changements de répertoire.",
- "configuration.tsserver.watchOptions.watchFile": "Stratégie de surveillance des fichiers individuels.",
- "configuration.tsserver.watchOptions.watchFile.dynamicPriorityPolling": "Utilisez une file d'attente dynamique où les fichiers modifiés moins souvent sont vérifiés moins souvent.",
- "configuration.tsserver.watchOptions.watchFile.fixedChunkSizePolling": "Interroge les fichiers par blocs à intervalles réguliers. Nécessite l'utilisation de TypeScript 4.3+ dans l'espace de travail.",
- "configuration.tsserver.watchOptions.watchFile.fixedPollingInterval": "Recherchez les changements dans chaque fichier plusieurs fois par seconde à intervalle fixe.",
- "configuration.tsserver.watchOptions.watchFile.priorityPollingInterval": "Recherchez les changements dans chaque fichier plusieurs fois par seconde, mais utilisez une méthode heuristique pour vérifier certains types de fichiers moins souvent que d'autres.",
- "configuration.tsserver.watchOptions.watchFile.useFsEvents": "Essayez d'utiliser les événements natifs du système d'exploitation/système de fichiers pour les changements de fichier.",
- "configuration.tsserver.watchOptions.watchFile.useFsEventsOnParentDirectory": "Essayez d'utiliser les événements natifs du système d'exploitation/système de fichiers pour écouter les changements des répertoires qui contiennent un fichier. Peut utiliser moins d'observateurs de fichiers, mais risque d'être moins précis.",
- "configuration.typescript": "TypeScript",
- "description": "Fournit une prise en charge riche de langage pour JavaScript et TypeScript.",
- "displayName": "Fonctionnalités de langage TypeScript et JavaScript",
- "format.insertSpaceAfterCommaDelimiter": "Définit le traitement des espaces après une virgule de délimitation.",
- "format.insertSpaceAfterConstructor": "Définit le traitement des espaces après le mot clé du constructeur.",
- "format.insertSpaceAfterFunctionKeywordForAnonymousFunctions": "Définit le traitement des espaces après le mot clé function pour les fonctions anonymes.",
- "format.insertSpaceAfterKeywordsInControlFlowStatements": "Définit la gestion des espaces après les mots clés dans une instruction de flux de contrôle.",
- "format.insertSpaceAfterOpeningAndBeforeClosingEmptyBraces": "Définit le traitement des espaces après l'ouverture et avant la fermeture d'accolades vides.",
- "format.insertSpaceAfterOpeningAndBeforeClosingJsxExpressionBraces": "Définit le traitement des espaces après l'ouverture et avant la fermeture des accolades d'expression JSX.",
- "format.insertSpaceAfterOpeningAndBeforeClosingNonemptyBraces": "Définit le traitement des espaces après l'ouverture et avant la fermeture des accolades non vides.",
- "format.insertSpaceAfterOpeningAndBeforeClosingNonemptyBrackets": "Définit l’espace après ouverture et avant la fermeture de crochets non vides.",
- "format.insertSpaceAfterOpeningAndBeforeClosingNonemptyParenthesis": "Définit l’espace après ouverture et avant la fermeture de parenthèses non vides.",
- "format.insertSpaceAfterOpeningAndBeforeClosingTemplateStringBraces": "Définit le traitement des espaces après l'ouverture et avant la fermeture des accolades de chaîne de modèle.",
- "format.insertSpaceAfterSemicolonInForStatements": " Définit le traitement des espaces après un point-virgule dans une instruction for.",
- "format.insertSpaceAfterTypeAssertion": "Définit le traitement des espaces après les assertions de type dans TypeScript.",
- "format.insertSpaceBeforeAndAfterBinaryOperators": "Définit le traitement des espaces après un opérateur binaire.",
- "format.insertSpaceBeforeFunctionParenthesis": "Définit le traitement des espaces avant les parenthèses d'arguments de la fonction.",
- "format.placeOpenBraceOnNewLineForControlBlocks": "Définit si une accolade ouvrante dans un bloc de contrôle est placée ou non sur une nouvelle ligne.",
- "format.placeOpenBraceOnNewLineForFunctions": "Définit si une accolade ouvrante dans une fonction est placée ou non sur une nouvelle ligne.",
- "format.semicolons": "Définit la gestion des points-virgules facultatifs. Nécessite l'utilisation de TypeScript 3.7 ou plus récent dans l'espace de travail.",
- "format.semicolons.ignore": "N'insérez ou n'enlevez aucun point-virgule.",
- "format.semicolons.insert": "Insérez des points-virgules à la fin des instructions.",
- "format.semicolons.remove": "Supprimez les points-virgules inutiles.",
- "goToProjectConfig.title": "Accéder à la configuration du projet",
- "inlayHints.parameterNames.all": "Active les indicateurs de noms de paramètres pour les arguments littéraux et non littéraux.",
- "inlayHints.parameterNames.literals": "Active les indicateurs de noms de paramètres uniquement pour les arguments littéraux.",
- "inlayHints.parameterNames.none": "Désactiver les indicateurs de nom de paramètre.",
- "javascript.format.enable": "Activez/désactivez le formateur JavaScript par défaut.",
- "javascript.preferences.jsxAttributeCompletionStyle.auto": "Insérez « ={} » ou « =\"\" » après les noms d’attributs en fonction du type d’accessoire. Consultez « javascript.preferences.quoteStyle » pour contrôler le type de guillemets utilisé pour les attributs de chaîne.",
- "javascript.referencesCodeLens.enabled": "Activez/désactivez les références CodeLens dans les fichiers JavaScript.",
- "javascript.referencesCodeLens.showOnAllFunctions": "Activez/désactivez les références CodeLens sur toutes les fonctions des fichiers JavaScript.",
- "javascript.suggestionActions.enabled": "Active/désactive les diagnostics de suggestion pour les fichiers JavaScript dans l'éditeur.",
- "javascript.validate.enable": "Activez/désactivez la validation JavaScript.",
- "reloadProjects.title": "Recharger le projet",
- "taskDefinition.tsconfig.description": "Fichier tsconfig qui définit la build TS.",
- "typescript.autoClosingTags": "Active/désactive la fermeture automatique des balises JSX.",
- "typescript.check.npmIsInstalled": "Check if npm is installed for [Automatic Type Acquisition](https://code.visualstudio.com/docs/nodejs/working-with-javascript#_typings-and-automatic-type-acquisition).",
- "typescript.disableAutomaticTypeAcquisition": "Désactive l’[acquisition automatique de type](https://code.visualstudio.com/docs/nodejs/working-with-javascript#_typings-and-automatic-type-acquisition). L’acquisition automatique de type récupère les packages `@types` par le biais de npm afin d’améliorer IntelliSense pour les bibliothèques externes.",
- "typescript.enablePromptUseWorkspaceTsdk": "Permet d'inviter les utilisateurs à se servir de la version TypeScript configurée dans l'espace de travail pour IntelliSense.",
- "typescript.findAllFileReferences": "Rechercher les références de fichiers",
- "typescript.format.enable": "Activez/désactivez le formateur TypeScript par défaut.",
- "typescript.goToSourceDefinition": "Atteindre la définition source",
- "typescript.implementationsCodeLens.enabled": "Activer/désactiver les implémentations CodeLens. Ce CodeLens affiche l'implémenteur d’une interface.",
- "typescript.locale": "Définit la locale utilisée pour signaler les erreurs JavaScript et TypeScript. Par défaut, la locale de VS Code est utilisée.",
- "typescript.npm": "Specifies the path to the npm executable used for [Automatic Type Acquisition](https://code.visualstudio.com/docs/nodejs/working-with-javascript#_typings-and-automatic-type-acquisition).",
- "typescript.openTsServerLog.title": "Ouvrir le journal du serveur TS",
- "typescript.preferences.autoImportFileExcludePatterns": "Spécifiez des modèles Glob de fichiers à exclure des importations automatiques. Nécessite l’utilisation de TypeScript 4.8 ou d’une version plus récente dans l’espace de travail.",
- "typescript.preferences.importModuleSpecifier": "Style de chemin préféré pour les importations automatiques.",
- "typescript.preferences.importModuleSpecifier.nonRelative": "Préfère une importation non relative basée sur le 'baseUrl' ou les 'paths' configurés dans votre 'jsconfig.json' / 'tsconfig.json'.",
- "typescript.preferences.importModuleSpecifier.projectRelative": "Préfère une importation non relative uniquement si le chemin d'importation relatif omet le répertoire du package ou du projet. Nécessite l'utilisation de TypeScript 4.2+ dans l'espace de travail.",
- "typescript.preferences.importModuleSpecifier.relative": "Préfère un chemin relatif par rapport à l'emplacement du fichier importé.",
- "typescript.preferences.importModuleSpecifier.shortest": "Préfère une importation non relative uniquement si celle-ci comporte moins de segments de chemin qu'une importation relative.",
- "typescript.preferences.importModuleSpecifierEnding": "Chemin d’accès préféré se terminant par les importations automatiques. Nécessite l’utilisation de TypeScript 4.5+ dans l’espace de travail.",
- "typescript.preferences.importModuleSpecifierEnding.auto": "Utilisez les paramètres de projet pour sélectionner une valeur par défaut.",
- "typescript.preferences.importModuleSpecifierEnding.index": "Raccourcissez './component/index.js' en './component/index'.",
- "typescript.preferences.importModuleSpecifierEnding.js": "Ne pas raccourcir les terminaisons de chemin; inclure l’extension '.js'.",
- "typescript.preferences.importModuleSpecifierEnding.minimal": "Raccourcissez './component/index.js' en './component'.",
- "typescript.preferences.includePackageJsonAutoImports": "Activer/désactiver la recherche dans les dépendances 'package.json' pour les importations automatiques disponibles.",
- "typescript.preferences.includePackageJsonAutoImports.auto": "Rechercher dans les dépendances en fonction de l'impact estimé des performances.",
- "typescript.preferences.includePackageJsonAutoImports.off": "Ne jamais rechercher dans les dépendances.",
- "typescript.preferences.includePackageJsonAutoImports.on": "Toujours rechercher dans les dépendances.",
- "typescript.preferences.jsxAttributeCompletionStyle": "Style préféré pour les saisies semi-automatiques d’attribut JSX.",
- "typescript.preferences.jsxAttributeCompletionStyle.auto": "Insérez « ={} » ou « =\"\" » après les noms d’attributs en fonction du type d’accessoire. Consultez « typescript.preferences.quoteStyle » pour contrôler le type de guillemets utilisé pour les attributs de chaîne.",
- "typescript.preferences.jsxAttributeCompletionStyle.braces": "Insérez '={}' après les noms d’attributs.",
- "typescript.preferences.jsxAttributeCompletionStyle.none": "Insérez uniquement des noms d’attributs.",
- "typescript.preferences.quoteStyle": "Style de devis préféré à utiliser pour les correctifs rapides.",
- "typescript.preferences.quoteStyle.auto": "Déduire le type de guillemet à partir du code existant",
- "typescript.preferences.quoteStyle.double": "Toujours utiliser des guillemets doubles : « {0} »",
- "typescript.preferences.quoteStyle.single": "Toujours utiliser des guillemets simples : « {0} »",
- "typescript.preferences.renameShorthandProperties.deprecationMessage": "Le paramètre 'typescript.preferences.renameShorthandProperties' a été déprécié au profit de 'typescript.preferences.useAliasesForRenames'",
- "typescript.preferences.useAliasesForRenames": "Activez/désactivez l'introduction d'alias pour les propriétés de raccourci d'objet durant les renommages. Nécessite l'utilisation de TypeScript 3.4 (ou version ultérieure) dans l'espace de travail.",
- "typescript.problemMatchers.tsc.label": "Problèmes liés à TypeScript",
- "typescript.problemMatchers.tscWatch.label": "Problèmes liés à TypeScript (mode espion)",
- "typescript.referencesCodeLens.enabled": "Activez/désactivez les références CodeLens dans les fichiers TypeScript.",
- "typescript.referencesCodeLens.showOnAllFunctions": "Activez/désactivez les références CodeLens sur toutes les fonctions des fichiers TypeScript.",
- "typescript.reportStyleChecksAsWarnings": "Rapporter les vérifications de style en tant qu’avertissements.",
- "typescript.restartTsServer": "Redémarrer le serveur TS",
- "typescript.selectTypeScriptVersion.title": "Sélectionner la version de TypeScript...",
- "typescript.suggest.enabled": "Activer/désactiver les suggestions d'autocomplétion.",
- "typescript.suggestionActions.enabled": "Active/désactive les diagnostics de suggestion pour les fichiers TypeScript dans l'éditeur.",
- "typescript.tsc.autoDetect": "Contrôle la détection automatique des tâches tsc.",
- "typescript.tsc.autoDetect.build": "Créer uniquement des tâches de compilation à exécution unique.",
- "typescript.tsc.autoDetect.off": "Désactivez cette fonctionnalité.",
- "typescript.tsc.autoDetect.on": "Créer les tâches build et watch.",
- "typescript.tsc.autoDetect.watch": "Créer uniquement des tâches compile et watch.",
- "typescript.tsdk.desc": "Indique le chemin de dossier des fichiers tsserver et `lib*.d.ts` dans une installation de TypeScript à utiliser pour IntelliSense. Exemple : `./node_modules/typescript/lib`.\r\n\r\n- Si elle est spécifiée sous forme de paramètre utilisateur, la version de TypeScript dans `typescript.tsdk` remplace automatiquement la version de TypeScript intégrée.\r\n- Si elle est spécifiée sous forme de paramètre d’espace de travail, `typescript.tsdk` vous permet d’utiliser cette version d’espace de travail de TypeScript pour IntelliSense avec la commande `TypeScript: Select TypeScript version`.\r\n\r\nConsultez la [documentation de TypeScript](https://code.visualstudio.com/docs/typescript/typescript-compiling#_using-newer-typescript-versions) pour plus d’informations sur la gestion des versions de TypeScript.",
- "typescript.tsserver.enableTracing": "Active le traçage des performances du serveur TS dans un répertoire. Ces fichiers de trace permettent de diagnostiquer les problèmes de performances du serveur TS. Le journal peut contenir des chemins de fichiers, du code source et d'autres informations potentiellement sensibles de votre projet.",
- "typescript.tsserver.log": "Active la journalisation du serveur TS dans un fichier. Ce journal peut être utilisé pour diagnostiquer les problèmes du serveur TS. Il peut contenir des chemins de fichier, du code source et d'autres informations potentiellement sensibles de votre projet.",
- "typescript.tsserver.pluginPaths": "Chemins supplémentaires pour découvrir les plug-ins Service de langage Typescript.",
- "typescript.tsserver.pluginPaths.item": "Un chemin absolu ou un chemin relatif. Le chemin d’accès relatif sera résolu en fonction des dossiers de l’espace de travail.",
- "typescript.tsserver.trace": "Active le traçage des messages envoyés au serveur TS. Cette trace peut être utilisée pour diagnostiquer les problèmes du serveur TS. Elle peut contenir des chemins de fichier, du code source et d'autres informations potentiellement sensibles de votre projet.",
- "typescript.updateImportsOnFileMove.enabled": "Active/désactive la mise à jour automatique des chemins d’importation quand vous renommez ou déplacez un fichier dans VS Code.",
- "typescript.updateImportsOnFileMove.enabled.always": "Toujours mettre à jour les chemins automatiquement.",
- "typescript.updateImportsOnFileMove.enabled.never": "Ne jamais renommer les chemins et ne pas demander.",
- "typescript.updateImportsOnFileMove.enabled.prompt": "Demander à chaque renommage.",
- "typescript.validate.enable": "Activez/désactivez la validation TypeScript.",
- "typescript.workspaceSymbols.scope": "Détermine quels sont les fichiers recherchés par [atteindre le symbole dans l'espace de travail](https://code.visualstudio.com/docs/editor/editingevolved#_open-symbol-by-name).",
- "typescript.workspaceSymbols.scope.allOpenProjects": "Recherche des symboles dans tous les projets JavaScript ou TypeScript ouverts. Nécessite l'utilisation de TypeScript 3.9 (ou version ultérieure) dans l'espace de travail.",
- "typescript.workspaceSymbols.scope.currentProject": "Recherche uniquement les symboles dans le projet JavaScript ou TypeScript actif.",
- "virtualWorkspaces": "Dans les espaces de travail virtuels, la résolution et la recherche de références dans les fichiers ne sont pas prises en charge.",
- "workspaceTrust": "L’extension nécessite l’approbation d’espace de travail lorsque la version de l’espace de travail est utilisée car elle exécute le code spécifié par l’espace de travail."
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-fr/translations/extensions/vb.i18n.json b/i18n/vscode-language-pack-fr/translations/extensions/vb.i18n.json
deleted file mode 100644
index 534ef10405..0000000000
--- a/i18n/vscode-language-pack-fr/translations/extensions/vb.i18n.json
+++ /dev/null
@@ -1,16 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "package": {
- "description": "Fournit des extraits de code, la coloration syntaxique, la correspondance des crochets et le repli dans les fichiers Visual Basic.",
- "displayName": "Concepts de base du langage Visual Basic"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-fr/translations/extensions/vscode-chrome-debug-core.i18n.json b/i18n/vscode-language-pack-fr/translations/extensions/vscode-chrome-debug-core.i18n.json
deleted file mode 100644
index dbf5730991..0000000000
--- a/i18n/vscode-language-pack-fr/translations/extensions/vscode-chrome-debug-core.i18n.json
+++ /dev/null
@@ -1,69 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "errors": {
- "eval.not.available": "Non disponible",
- "not.connected": "non connecté au runtime",
- "restartFrame.cannot": "Impossible de redémarrer le frame",
- "attribute.path.not.exist": "L'attribut '{0}' n'existe pas ('{1}').",
- "attribute.path.not.absolute": "L'attribut '{0}' n'est pas absolu ('{1}'). Ajoutez le préfixe '{2}' pour le rendre absolu.",
- "more.information": "Informations",
- "setVariable.error": "Valeur de paramètre non prise en charge",
- "source.not.found": "Impossible de récupérer le contenu.",
- "VSND2010": "Connexion impossible au processus de runtime. Expiration du délai après {0} ms - (raison : {1}).",
- "VSND2023": "Aucune pile des appels disponible.",
- "failed.to.read.port": "Impossible de lire le fichier {dataDirPath}, {error}",
- "port.file.contents.invalid": "Le fichier à l'emplacement « {dataDirPath} » ne contenait pas de données de port valides, le contenu était « {dataDirContents} »"
- },
- "chrome/breakpoints": {
- "setBPTimedOut": "La demande de définition de points d'arrêt a expiré",
- "bp.fail.unbound": "Point d'arrêt défini mais pas encore lié",
- "bp.fail.noscript": "Le script correspondant à la demande de point d'arrêt est introuvable",
- "validateBP.sourcemapFail": "Point d'arrêt ignoré, car le code généré est introuvable. Problème de mappage de source ?",
- "validateBP.notFound": "Point d'arrêt ignoré, car le chemin cible est introuvable",
- "invalidHitCondition": "Condition d'atteinte non valide : {0}"
- },
- "chrome/chromeDebugAdapter": {
- "exceptions.all": "Toutes les exceptions",
- "exceptions.uncaught": "Exceptions non interceptées",
- "exceptions.promise_rejects": "Rejets de promesses"
- },
- "chrome/chromeTargetDiscoveryStrategy": {
- "attach.responseButNoTargets": "Réponse reçue de la part de l'application cible, mais les pages cibles sont introuvables",
- "attach.cannotConnect": "Connexion impossible à la cible : {0}",
- "attach.invalidResponse": "La réponse de la cible semble non valide. Erreur : {0}. Réponse : {1}",
- "attach.invalidResponseArray": "La réponse de la cible semble non valide : {0}",
- "attach.noMatchingTarget": "Aucune cible valide ne correspond : {0}. Pages disponibles : {1}",
- "attach.devToolsAttached": "Impossible d'effectuer un attachement à cette cible à laquelle Chrome DevTools est peut-être attaché : {0}"
- },
- "chrome/stackFrames": {
- "skipReason": "(ignoré par '{0}')",
- "scope.exception": "Exception"
- },
- "chrome/stoppedEvent": {
- "reason.description.step": "En pause sur une étape",
- "reason.description.breakpoint": "En pause sur un point d'arrêt",
- "reason.description.exception": "En pause sur une exception",
- "reason.description.uncaughtException": "En pause sur une exception non interceptée",
- "reason.description.caughtException": "En pause sur une exception interceptée",
- "reason.description.user_request": "En pause sur une requête utilisateur",
- "reason.description.entry": "En pause sur une entrée",
- "reason.description.debugger_statement": "En pause sur une instruction du débogueur",
- "reason.description.restart": "En pause sur une entrée de frame",
- "reason.description.promiseRejection": "En pause sur un rejet de promesse"
- },
- "transformers/baseSourceMapTransformer": {
- "origin.inlined.source.map": "contenu inlined en lecture seule à partir du mappage de source"
- },
- "transformers/remotePathTransformer": {
- "localRootAndRemoteRoot": "Vous devez spécifier localRoot et remoteRoot."
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-fr/translations/extensions/vscode-node-debug.i18n.json b/i18n/vscode-language-pack-fr/translations/extensions/vscode-node-debug.i18n.json
deleted file mode 100644
index 3eabb2fcc7..0000000000
--- a/i18n/vscode-language-pack-fr/translations/extensions/vscode-node-debug.i18n.json
+++ /dev/null
@@ -1,185 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "package": {
- "extension.description": "Prise en charge du débogage Node.js (versions < 8.0)",
- "node.label": "Node.js",
- "open.loaded.script": "Ouvrir le script chargé",
- "attach.node.process": "Attacher au processus Node",
- "toggle.skipping.this.file": "Ignorer/Ne pas ignorer ce fichier",
- "start.with.stop.on.entry": "Démarrez le débogage et s'arrêter à l’entrée",
- "smartStep.description": "Exécutez pas à pas de façon automatique le code généré qui ne peut être mappé à la source d'origine.",
- "skipFiles.description": "Tableau de modèles glob pour les fichiers à ignorer pendant le débogage. Le modèle '/**' correspond à tous les modules Node.js internes.",
- "outFiles.description": "Si les mappages de sources sont activés, ces modèles Glob spécifient les fichiers JavaScript générés. Si un modèle commence par '!', les fichiers sont exclus. En l'absence de spécification, le code généré est censé se trouver dans le même répertoire que sa source. Exemple : '[\"${workspaceFolder}/out/**/*.js\"]'",
- "outDir.deprecationMessage": "Attribut 'outDir' déprécié. Utilisez 'outFiles' à la place.",
- "trace.description": "Produire une sortie de diagnostique. Au lieu d'affecter la valeur true, vous pouvez lister un ou plusieurs sélecteurs séparés par des virgules. Le sélecteur 'verbose' permet d'activer une sortie très détaillée.",
- "launch.args.description": "Arguments de ligne de commande passés au programme.",
- "debug.node.showUseWslIsDeprecatedWarning.description": "Contrôle s'il faut afficher un avertissement quand l'attribut 'useWSL' est utilisé.",
- "debug.node.useV3.description": "[Expérimental] Contrôle s'il faut déléguer les configurations de lancement de type \"node\" à l'extension js-debug.",
- "debug.extensionHost.useV3.description": "[Expérimental] Contrôle s'il faut déléguer les configurations de lancement de type \"extensionHost\" à l'extension js-debug.",
- "node.protocol.description": "Protocole de débogage Node.js à utiliser.",
- "node.protocol.auto.description": "Essaie de détecter automatiquement le meilleur protocole, en sélectionnant 'inspector' pour lancer Node 8.0+",
- "node.protocol.inspector.description": "Nouveau protocole pris en charge par les versions de Node.js >= 6.3",
- "node.protocol.legacy.description": "Ancien protocole pris en charge par les versions de Node.js < 8.0",
- "node.sourceMaps.description": "Utilisez des mappages de sources JavaScript (le cas échéant).",
- "node.stopOnEntry.description": "Arrêtez automatiquement le programme après le lancement.",
- "node.port.description": "Port de débogage auquel effectuer l'attachement. La valeur par défaut est 5858.",
- "node.address.description": "Adresse TCP/IP du processus à déboguer (pour Node.js >= 5.0 uniquement). La valeur par défaut est 'localhost'.",
- "node.timeout.description": "Réessayez de vous connecter à Node.js pendant le nombre de millisecondes spécifié. La valeur par défaut est 10 000 ms.",
- "node.restart.description": "Redémarrez la session une fois l'exécution de Node.js effectuée.",
- "node.localRoot.description": "Chemin du répertoire local contenant le programme.",
- "node.remoteRoot.description": "Chemin absolu du répertoire distant contenant le programme.",
- "node.showAsyncStacks.description": "Affiche les appels asynchrones ayant conduit à la pile des appels actuelle. Protocole 'inspector' uniquement.",
- "node.sourceMapPathOverrides.description": "Ensemble de mappages pour la réécriture des emplacements des fichiers sources à partir de ce que le mappage de source stipule, vers les emplacements sur le disque.",
- "node.disableOptimisticBPs.description": "Ne définissez pas de points d'arrêt dans un fichier tant qu'un mappage de source n'a pas été chargé pour ce fichier.",
- "node.launch.program.description": "Chemin absolu du programme. La valeur générée est déterminée en fonction du fichier package.json et des fichiers ouverts. Modifiez cet attribut.",
- "node.launch.externalConsole.deprecationMessage": "Attribut 'externalConsole' déconseillé, utilisez 'console' à la place.",
- "node.launch.console.description": "Où lancer la cible de débogage.",
- "node.launch.console.internalConsole.description": "console de débogage de VS Code (qui ne prend pas en charge la lecture de l'entrée d'un programme)",
- "node.launch.console.integratedTerminal.description": "terminal intégré de VS Code",
- "node.launch.console.externalTerminal.description": "Terminal externe pouvant être configuré via des paramètres utilisateur",
- "node.launch.cwd.description": "Chemin absolu du répertoire de travail du programme débogué.",
- "node.launch.runtimeExecutable.description": "Runtime à utiliser. Chemin absolu ou nom d'un runtime disponible dans PATH. En cas d'omission, 'node' est choisi par défaut.",
- "node.launch.runtimeArgs.description": "Arguments facultatifs passés à l'exécutable du runtime.",
- "node.launch.runtimeVersion.description": "Version de 'node' que le runtime utilise. Requiert 'nvm'.",
- "node.launch.env.description": "Variables d'environnement passées au programme. La valeur 'null' supprime la variable de l'environnement.",
- "node.launch.envFile.description": "Chemin absolu d'un fichier contenant des définitions de variables d'environnement.",
- "node.launch.useWSL.description": "Utilisez le sous-système Windows pour Linux.",
- "node.launch.useWSL.deprecation": "'useWSL' est déprécié et sa prise en charge va être supprimée. Utilisez l'extension 'Remote - WSL' à la place.",
- "node.launch.outputCapture.description": "Emplacement de capture des messages de sortie : API de débogage ou flux stdout/stderr.",
- "node.launch.autoAttachChildProcesses.description": "Attacher le débogueur aux nouveaux processus enfants automatiquement.",
- "node.launch.config.name": "Lancer",
- "node.attach.processId.description": "ID du processus à attacher.",
- "node.attach.config.name": "Attacher",
- "node.processattach.config.name": "Attacher au processus",
- "node.snippet.launch.label": "Node.js : lancer un programme",
- "node.snippet.launch.description": "Lancer un programme node en mode débogage",
- "node.snippet.npm.label": "Node.js : lancer via NPM",
- "node.snippet.npm.description": "Lancer un programme node avec un script npm 'debug'",
- "node.snippet.attach.label": "Node.js : attacher",
- "node.snippet.attach.description": "Attacher à un programme node en cours d'exécution",
- "node.snippet.remoteattach.label": "Node.js : attacher au programme distant",
- "node.snippet.remoteattach.description": "Attacher au port de débogage d'un programme node distant",
- "node.snippet.attachProcess.label": "Node.js : attacher au processus",
- "node.snippet.attachProcess.description": "Ouvrir le sélecteur de processus pour sélectionner le processus node auquel s'attacher",
- "node.snippet.nodemon.label": "Node.js : configurer nodemon",
- "node.snippet.nodemon.description": "Utiliser nodemon pour relancer une session de débogage quand la source change",
- "node.snippet.mocha.label": "Node.js : tests mocha",
- "node.snippet.mocha.description": "Déboguer les tests mocha",
- "node.snippet.yo.label": "Node.js : générateur Yeoman",
- "node.snippet.yo.description": "Déboguer le générateur yeoman (installer en exécutant 'npm link' dans le dossier de projet)",
- "node.snippet.gulp.label": "Node.js : tâche Gulp",
- "node.snippet.gulp.description": "Déboguer une tâche gulp (un gulp local doit être installé dans votre projet)",
- "node.snippet.electron.label": "Node.js : processus principal Electron",
- "node.snippet.electron.description": "Déboguer le processus principal Electron"
- },
- "dist/node/nodeDebug": {
- "setVariable.error": "Valeur de paramètre non prise en charge",
- "exception.paused.promise.rejection": "En pause sur un rejet de promesse",
- "exception.promise.rejection.text": "Rejet de promesse ({0})",
- "exception.promise.rejection": "Rejet de promesse",
- "reason.description.step": "En pause sur une étape",
- "reason.description.breakpoint": "En pause sur un point d'arrêt",
- "reason.description.exception": "En pause sur une exception",
- "reason.description.user_request": "En pause sur une requête utilisateur",
- "reason.description.entry": "En pause sur une entrée",
- "reason.description.debugger_statement": "En pause sur une instruction du débogueur",
- "reason.description.restart": "En pause sur une entrée de frame",
- "exceptions.all": "Toutes les exceptions",
- "exceptions.uncaught": "Exceptions interceptées",
- "exceptions.rejects": "Rejets de promesse",
- "VSND2028": "Type de console inconnu '{0}'.",
- "attribute.wls.not.exist": "Installation du sous-système Windows pour Linux introuvable",
- "VSND2001": "Le runtime '{0}' est introuvable dans PATH. Vérifiez que '{0}' est installé.",
- "program.path.case.mismatch.warning": "Le chemin du programme utilise un nom de fichier contenant des caractères avec des casses différentes, ce qui peut empêcher d'atteindre les points d'arrêt.",
- "VSND2002": "Impossible de lancer le programme '{0}'. Essayez éventuellement de configurer les mappages de sources.",
- "VSND2009": "Impossible de lancer le programme '{0}', car le code JavaScript correspondant est introuvable.",
- "VSND2003": "Impossible de lancer le programme '{0}'. La définition de l'attribut '{1}' peut éventuellement permettre de résoudre le problème.",
- "VSND2029": "Impossible de charger les variables d'environnement à partir du fichier ({0}).",
- "node.console.title": "Console de débogage de nœud",
- "VSND2011": "Impossible de lancer la cible de débogage dans le terminal ({0}).",
- "VSND2017": "Impossible de lancer la cible de débogage ({0}).",
- "VSND2010": "Impossible de se connecter au processus de runtime (raison : {0}).",
- "VSND2033": "Impossible de se connecter au runtime; Assurez-vous que ce runtime est en mode débogage 'legacy'.",
- "VSND2034": "Impossible de se connecter au runtime via le protocole 'legacy'; essayez d’utiliser le protocole 'inspector'.",
- "file.on.disk.changed": "Non vérifié, car le fichier sur disque a changé. Redémarrez la session de débogage.",
- "VSND2019": "Module interne {0} introuvable.",
- "sourcemapping.fail.message": "Point d'arrêt ignoré, car le code généré est introuvable. Problème de mappage de source ?",
- "VSND2022": "Aucune pile des appels car le programme est en pause hors de JavaScript.",
- "VSND2023": "Aucune pile des appels disponible.",
- "VSND2018": "Aucune pile des appels disponible ({_command} : {_error}).",
- "origin.from.node": "contenu en lecture seule en provenance de Node.js",
- "origin.from.remote.node": "contenu en lecture seule à partir du code Node.js distant",
- "origin.core.module": "module de base en lecture seule",
- "source.skipFiles": "ignoré en raison de 'skipFiles'",
- "source.smartstep": "ignoré en raison de 'smartStep'",
- "origin.inlined.source.map": "contenu inlined en lecture seule à partir du mappage de source",
- "anonymous.function": "(fonction anonyme)",
- "scope.local.with.count": "Local ({0} sur {1})",
- "scope.unknown": "Type de portée inconnu : {0}",
- "scope.exception": "Exception",
- "eval.not.available": "Non disponible",
- "eval.invalid.expression": "expression non valide : {0}",
- "source.not.found": "Impossible de récupérer le contenu.",
- "attribute.path.not.exist": "L'attribut '{0}' n'existe pas ('{1}').",
- "attribute.path.not.absolute": "L'attribut '{0}' n'est pas absolu ('{1}'). Ajoutez le préfixe '{2}' pour le rendre absolu.",
- "more.information": "Informations",
- "VSND2015": "La requête '{_request}' a été annulée, car Node.js a cessé de répondre.",
- "VSND2016": "Node.js n'a pas répondu à la requête '{_request}' dans un délai raisonnable.",
- "scope.global": "GLOBAL",
- "scope.local": "LOCAL",
- "scope.with": "avec",
- "scope.closure": "Fermeture",
- "scope.catch": "Catch",
- "scope.block": "Bloquer",
- "scope.script": "Script"
- },
- "dist/node/nodeV8Protocol": {
- "not.connected": "non connecté au runtime",
- "runtime.unresponsive": "annulé, car Node.js a cessé de répondre",
- "runtime.timeout": "dépassement du délai d'expiration après {0} ms"
- },
- "dist/node/extension/autoAttach": {
- "process.with.pid.label": "Attaché automatiquement ({0})"
- },
- "dist/node/extension/cluster": {
- "child.process.with.pid.label": "Processus fils {0}"
- },
- "dist/node/extension/configurationProvider": {
- "program.not.found.message": "Programme à déboguer introuvable",
- "useWslDeprecationWarning.title": "L'attribut 'useWSL' est obsolète. Veuillez utiliser l'extension 'Remote WSL' à la place. Cliquez [ici]({0}) pour en savoir plus.",
- "useWslDeprecationWarning.doNotShowAgain": "Ne plus afficher",
- "NVS_HOME.not.found.message": "L'attribut 'runtimeVersion' nécessite Node.js version manager 'nvs'.",
- "NVM_HOME.not.found.message": "L'attribut 'runtimeVersion' nécessite Node.js version manager 'nvm-windows' ou 'nvs'.",
- "NVM_DIR.not.found.message": "L'attribut 'runtimeVersion' nécessite Node.js version manager 'nvm' ou 'nvs'.",
- "runtime.version.not.found.message": "Node.js version '{0}' non installé pour '{1}'.",
- "node.launch.config.name": "Lancer le programme",
- "mern.starter.explanation": "Configuration de lancement du projet '{0}' créée.",
- "program.guessed.from.package.json.explanation": "Configuration de lancement créée en fonction de 'package.json'.",
- "outFiles.explanation": "Ajustez le ou les modèles glob dans l'attribut 'outFiles' pour qu'ils couvrent le fichier JavaScript généré."
- },
- "dist/node/extension/processPicker": {
- "pid.error": "Attacher au processus : impossible de mettre le processus '{0}' en mode débogage.",
- "process.id.error": "Attacher au processus : '{0}' ne ressemble pas à un ID de processus.",
- "pickNodeProcess": "Sélectionner le processus node.js auquel s'attacher",
- "process.picker.error": "Le sélecteur de processus a échoué ({0})",
- "process.id.port": "ID de processus : {0}, port de débogage : {1}",
- "process.id.port.legacy": "ID de processus : {0}, port de débogage : {1} (protocole hérité)",
- "process.id.port.signal": "ID de processus : {0}, port de débogage : {1} ({2})",
- "process.id.signal": "ID de processus : {0} ({1})",
- "cannot.enable.debug.mode.error": "Attacher au processus : impossible d'activer le mode de débogage pour le processus '{0}' ({1})."
- },
- "dist/node/extension/protocolDetection": {
- "protocol.switch.legacy.detected": "Débogage avec un protocole hérité car il a été détecté.",
- "protocol.switch.unknown.error": "Débogage avec un protocole Inspector en raison de l'impossibilité de déterminer la version de Node.js ({0})",
- "protocol.switch.legacy.version": "Débogage à l'aide du protocole hérité, car Node.js {0} a été détecté."
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-fr/translations/extensions/vscode-node-debug2.i18n.json b/i18n/vscode-language-pack-fr/translations/extensions/vscode-node-debug2.i18n.json
deleted file mode 100644
index 0d29bc9ef0..0000000000
--- a/i18n/vscode-language-pack-fr/translations/extensions/vscode-node-debug2.i18n.json
+++ /dev/null
@@ -1,80 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "package": {
- "extension.description": "Prise en charge du débogage de Node.js",
- "node.label": "Node.js v6.3+ via le protocole Inspector",
- "node.sourceMaps.description": "Utilisez des mappages de sources JavaScript (le cas échéant).",
- "outDir.deprecationMessage": "Attribut 'outDir' déprécié. Utilisez 'outFiles' à la place.",
- "node.outFiles.description": "Si les mappages de sources sont activés, ces modèles Glob spécifient les fichiers JavaScript générés. Si un modèle commence par '!', les fichiers sont exclus. En l'absence de spécification, le code généré est censé se trouver dans le même répertoire que sa source.",
- "node.stopOnEntry.description": "Arrêtez automatiquement le programme après le lancement.",
- "node.port.description": "Port de débogage auquel effectuer l'attachement. La valeur par défaut est 9 229.",
- "node.address.description": "Adresse TCP/IP du port de débogage. La valeur par défaut est 'localhost'.",
- "node.timeout.description": "Réessayez de vous connecter à Node.js pendant le nombre de millisecondes spécifié. La valeur par défaut est 10 000 ms.",
- "node.smartStep.description": "Exécutez pas à pas de façon automatique le code généré qui ne peut être mappé à la source d'origine.",
- "node.enableSourceMapCaching.description": "Quand des mappages de sources sont téléchargés à partir d'une URL, mettez-les en cache sur le disque.",
- "node.diagnosticLogging.description": "Quand la valeur est true, l'adaptateur journalise ses propres informations de diagnostic dans la console",
- "node.diagnosticLogging.deprecationMessage": "'diagnosticLogging' est déprécié. Utilisez 'trace' à la place.",
- "node.verboseDiagnosticLogging.description": "Quand la valeur est true, l'adaptateur journalise l'ensemble du trafic lié au client et à la cible (ainsi que les informations journalisées par 'diagnosticLogging')",
- "node.verboseDiagnosticLogging.deprecationMessage": "'verboseDiagnosticLogging' est déprécié. Utilisez 'trace' à la place.",
- "node.trace.description": "Quand la valeur est 'true', le débogueur journalise les informations de traçage dans un fichier. Quand la valeur est 'verbose', il affiche également les journaux dans la console.",
- "node.sourceMapPathOverrides.description": "Ensemble de mappages pour la réécriture des emplacements des fichiers sources à partir des indications du mappage de source vers les emplacements appropriés sur le disque. Pour plus d'informations, consultez le README.",
- "node.skipFiles.description": "Groupe de noms de fichiers ou de dossiers, ou modèles Glob, à ignorer durant le débogage.",
- "node.restart.description": "Redémarrez la session une fois l'exécution de Node.js effectuée.",
- "node.showAsyncStacks.description": "Affiche les appels asynchrones ayant conduit à la pile des appels actuelle.",
- "node.disableOptimisticBPs.description": "Ne définissez pas de points d'arrêt dans un fichier tant qu'un mappage de source n'a pas été chargé pour ce fichier.",
- "node.launch.program.description": "Chemin absolu du programme.",
- "node.launch.console.description": "Où lancer la cible de débogage : console interne, terminal intégré ou terminal externe.",
- "node.launch.args.description": "Arguments de ligne de commande passés au programme.",
- "node.launch.cwd.description": "Chemin absolu du répertoire de travail du programme débogué.",
- "node.launch.runtimeExecutable.description": "Runtime à utiliser. Chemin absolu ou nom d'un runtime disponible dans PATH. En cas d'omission, 'node' est choisi par défaut.",
- "node.launch.runtimeArgs.description": "Arguments facultatifs passés à l'exécutable du runtime.",
- "node.launch.env.description": "Variables d'environnement passées au programme. La valeur 'null' supprime la variable de l'environnement.",
- "node.launch.envFile.description": "Chemin absolu d'un fichier contenant des définitions de variables d'environnement.",
- "node.launch.outputCapture.description": "Emplacement de capture des messages de sortie : API de débogage ou flux stdout/stderr.",
- "node.launch.config.name": "Lancer",
- "node.attach.processId.description": "ID du processus à attacher.",
- "node.attach.localRoot.description": "Racine source locale qui correspond à 'remoteRoot'.",
- "node.attach.remoteRoot.description": "Racine source de l'hôte distant.",
- "node.attach.config.name": "Attacher",
- "node.processattach.config.name": "Attacher au processus",
- "toggle.skipping.this.file": "Ignorer/Ne pas ignorer ce fichier",
- "extensionHost.label": "Développement d'extension VS Code",
- "extensionHost.launch.runtimeExecutable.description": "Chemin absolu de VS Code.",
- "extensionHost.launch.stopOnEntry.description": "Arrêtez automatiquement l'hôte d'extension après le lancement.",
- "extensionHost.launch.env.description": "Variables d'environnement passées à l'hôte d'extension.",
- "extensionHost.snippet.launch.label": "Développement d'extension VS Code",
- "extensionHost.snippet.launch.description": "Lancer une extension VS Code en mode débogage",
- "extensionHost.launch.config.name": "Lancer l'extension"
- },
- "out/src/errors": {
- "VSND2001": "Le runtime '{0}' est introuvable dans PATH. Est-ce que '{0}' est installé ?",
- "VSND2011": "Impossible de lancer la cible de débogage dans le terminal ({0}).",
- "VSND2017": "Impossible de lancer la cible de débogage ({0}).",
- "VSND2035": "Impossible de déboguer l'extension ({0}).",
- "VSND2028": "Type de console inconnu '{0}'.",
- "VSND2002": "Impossible de lancer le programme '{0}'. Essayez éventuellement de configurer les mappages de sources.",
- "VSND2003": "Impossible de lancer le programme '{0}'. La définition de l'attribut '{1}' peut éventuellement permettre de résoudre le problème.",
- "VSND2009": "Impossible de lancer le programme '{0}', car le code JavaScript correspondant est introuvable.",
- "VSND2029": "Impossible de charger les variables d'environnement à partir du fichier ({0})."
- },
- "out/src/nodeDebugAdapter": {
- "attribute.wsl.not.exist": "L'installation du sous-système Windows pour Linux est introuvable.",
- "program.path.case.mismatch.warning": "Le chemin du programme utilise un nom de fichier contenant des caractères avec des casses différentes, ce qui peut empêcher d'atteindre les points d'arrêt.",
- "node.console.title": "Console de débogage Node",
- "attribute.path.not.exist": "L'attribut '{0}' n'existe pas ('{1}').",
- "attribute.path.not.absolute": "L'attribut '{0}' n'est pas absolu ('{1}'). Ajoutez le préfixe '{2}' pour le rendre absolu.",
- "VSND2001": "Le runtime '{0}' est introuvable dans PATH. Vérifiez que '{0}' est installé.",
- "more.information": "Informations",
- "origin.from.node": "contenu en lecture seule en provenance de Node.js",
- "origin.core.module": "module de base en lecture seule"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-fr/translations/extensions/vscode.bat.i18n.json b/i18n/vscode-language-pack-fr/translations/extensions/vscode.bat.i18n.json
index 3fbaa03b92..eb8b6e5933 100644
--- a/i18n/vscode-language-pack-fr/translations/extensions/vscode.bat.i18n.json
+++ b/i18n/vscode-language-pack-fr/translations/extensions/vscode.bat.i18n.json
@@ -9,8 +9,8 @@
"version": "1.0.0",
"contents": {
"package": {
- "displayName": "Bases du langage Windows Bat",
- "description": "Fournit des extraits de code, la coloration syntaxique, la correspondance des crochets et le repli dans les fichiers de commandes Windows."
+ "description": "Fournit des extraits de code, la coloration syntaxique, la correspondance des crochets et le repli dans les fichiers de commandes Windows.",
+ "displayName": "Bases du langage Windows Bat"
}
}
}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-fr/translations/extensions/notebook-renderers.i18n.json b/i18n/vscode-language-pack-fr/translations/extensions/vscode.builtin-notebook-renderers.i18n.json
similarity index 100%
rename from i18n/vscode-language-pack-fr/translations/extensions/notebook-renderers.i18n.json
rename to i18n/vscode-language-pack-fr/translations/extensions/vscode.builtin-notebook-renderers.i18n.json
diff --git a/i18n/vscode-language-pack-fr/translations/extensions/vscode.clojure.i18n.json b/i18n/vscode-language-pack-fr/translations/extensions/vscode.clojure.i18n.json
index a1a9cc9204..eac0349f90 100644
--- a/i18n/vscode-language-pack-fr/translations/extensions/vscode.clojure.i18n.json
+++ b/i18n/vscode-language-pack-fr/translations/extensions/vscode.clojure.i18n.json
@@ -9,8 +9,8 @@
"version": "1.0.0",
"contents": {
"package": {
- "displayName": "Bases du langage Clojure",
- "description": "Fournit la coloration syntaxique et la correspondance des crochets dans les fichiers Clojure."
+ "description": "Fournit la coloration syntaxique et la correspondance des crochets dans les fichiers Clojure.",
+ "displayName": "Bases du langage Clojure"
}
}
}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-fr/translations/extensions/vscode.coffeescript.i18n.json b/i18n/vscode-language-pack-fr/translations/extensions/vscode.coffeescript.i18n.json
index ac4f07012c..cb7a0d9b48 100644
--- a/i18n/vscode-language-pack-fr/translations/extensions/vscode.coffeescript.i18n.json
+++ b/i18n/vscode-language-pack-fr/translations/extensions/vscode.coffeescript.i18n.json
@@ -9,8 +9,8 @@
"version": "1.0.0",
"contents": {
"package": {
- "displayName": "Bases du langage CoffeeScript",
- "description": "Fournit des extraits de code, la coloration syntaxique, la correspondance des crochets et le repli dans les fichiers CoffeeScript."
+ "description": "Fournit des extraits de code, la coloration syntaxique, la correspondance des crochets et le repli dans les fichiers CoffeeScript.",
+ "displayName": "Bases du langage CoffeeScript"
}
}
}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-fr/translations/extensions/vscode.configuration-editing.i18n.json b/i18n/vscode-language-pack-fr/translations/extensions/vscode.configuration-editing.i18n.json
new file mode 100644
index 0000000000..5702488c14
--- /dev/null
+++ b/i18n/vscode-language-pack-fr/translations/extensions/vscode.configuration-editing.i18n.json
@@ -0,0 +1,77 @@
+{
+ "": [
+ "--------------------------------------------------------------------------------------------",
+ "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."
+ ],
+ "version": "1.0.0",
+ "contents": {
+ "bundle": {
+ "Example": "Exemple",
+ "Files by Extension": "Fichiers par extension",
+ "Files with Extension": "Fichiers avec extension",
+ "Files with Multiple Extensions": "Fichiers avec plusieurs extensions",
+ "Files with Path": "Fichiers avec chemin",
+ "Files with Siblings by Name": "Fichiers avec frères par nom",
+ "Folder by Name (Any Location)": "Dossier par nom (tous les emplacements)",
+ "Folder by Name (Top Level)": "Dossier par nom (premier niveau)",
+ "Folders with Multiple Names (Top Level)": "Dossiers avec plusieurs noms (premier niveau)",
+ "GitHub": "GitHub",
+ "Map all files matching the absolute path glob pattern in their path to the language with the given identifier.": "Mappez au langage ayant l'identificateur spécifié tous les fichiers dont le chemin correspond au modèle Glob de chemin absolu.",
+ "Map all files matching the glob pattern in their filename to the language with the given identifier.": "Mappez au langage ayant l'identificateur spécifié tous les fichiers dont le nom correspond au modèle Glob.",
+ "Match a folder with a specific name in any location.": "Faites correspondre un dossier portant un nom spécifique, indépendamment de son emplacement.",
+ "Match a top level folder with a specific name.": "Faites correspondre un dossier de premier niveau portant un nom spécifique.",
+ "Match all files of a specific file extension.": "Faites correspondre tous les fichiers ayant une extension de fichier spécifique.",
+ "Match all files with any of the file extensions.": "Faites correspondre tous les fichiers, indépendamment de leurs extensions.",
+ "Match files that have siblings with the same name but a different extension.": "Faites correspondre les fichiers ayant des frères portant le même nom, mais avec une extension distincte.",
+ "Match multiple top level folders.": "Faites correspondre plusieurs dossiers de premier niveau.",
+ "The character used by the operating system to separate components in file paths. Is also aliased to '/'.": "Caractère utilisé par le système d’exploitation pour séparer les composants dans les chemins d’accès aux fichiers. Est également défini sur l’alias « / ».",
+ "The current opened file": "Fichier ouvert actif",
+ "The current opened file relative to ${workspaceFolder}": "Fichier ouvert actif relatif à ${workspaceFolder}",
+ "The current opened file workspace folder name without any slashes (/)": "Le nom du dossier de l'espace de travail du fichier actuellement ouvert sans aucune barre oblique (/)",
+ "The current opened file's basename": "Nom de base du fichier ouvert actif",
+ "The current opened file's basename with no file extension": "Nom de base du fichier ouvert actif, sans extension de fichier",
+ "The current opened file's dirname": "Nom de répertoire du fichier ouvert actif",
+ "The current opened file's dirname relative to ${workspaceFolder}": "Valeur dirname du fichier actuellement ouvert, relative à ${workspaceFolder}",
+ "The current opened file's extension": "Extension du fichier ouvert actif",
+ "The current opened file's folder name": "Le nom du dossier du fichier actuellement ouvert",
+ "The current selected line number in the active file": "Numéro de la ligne sélectionnée dans le fichier actif",
+ "The current selected text in the active file": "Texte sélectionné dans le fichier actif",
+ "The file extension of the editor (e.g. txt)": "Extension de fichier de l’éditeur (par exemple, txt)",
+ "The file name of the editor without its directory or extension (e.g. myFile)": "Nom de fichier de l’éditeur sans son répertoire ou extension (par exemple, myFile)",
+ "The name of the default build task. If there is not a single default build task then a quick pick is shown to choose the build task.": "Nom de la tâche de build par défaut. S'il y en a plusieurs, une recherche rapide s'affiche pour choisir la tâche de build.",
+ "The name of the folder opened in VS Code without any slashes (/)": "Nom du dossier ouvert dans VS Code, sans barres obliques (/)",
+ "The nth parent folder name of the editor": "Nom du nième dossier parent de l’éditeur",
+ "The parent folder name of the editor (e.g. myFileFolder)": "Nom du dossier parent de l’éditeur (par exemple, myFileFolder)",
+ "The path of the folder opened in VS Code": "Chemin du dossier ouvert dans VS Code",
+ "The path where an extension is installed.": "Chemin d’accès où une extension est installée.",
+ "The task runner's current working directory on startup": "Répertoire de travail actif de l'exécuteur de tâches au démarrage",
+ "Use the language of the currently active text editor if any": "Utiliser le langage de l'éditeur de texte actuellement actif le cas échéant",
+ "a conditional separator (' - ') that only shows when surrounded by variables with values": "séparateur conditionnel (' - ') qui s'affiche uniquement quand il est entouré de variables avec des valeurs",
+ "an indicator for when the active editor has unsaved changes": "un indicateur pour quand l’éditeur actif a des modifications non enregistrées.",
+ "e.g. SSH": "par ex., SSH",
+ "e.g. VS Code": "exemple : VS Code",
+ "file path of the workspace (e.g. /Users/Development/myWorkspace)": "chemin d’accès de l’espace de travail (ex: /Users/Development/myWorkspace)",
+ "file path of the workspace folder the file is contained in (e.g. /Users/Development/myFolder)": "chemin d’accès du dossier de l'espace de travail auquel le fichier appartient (ex: /Users/Development/myFolder)",
+ "gist": "Gist",
+ "name of the workspace folder the file is contained in (e.g. myFolder)": "nom du dossier de l'espace de travail auquel le fichier appartient (ex: monDossier)",
+ "name of the workspace with optional remote name and workspace indicator if applicable (e.g. myFolder, myRemoteFolder [SSH] or myWorkspace (Workspace))": "nom de l’espace de travail avec un nom distant facultatif et un indicateur d’espace de travail le cas échéant (par exemple, myFolder, myRemoteFolder [SSH] ou myWorkspace (espace de travail))",
+ "shortened name of the workspace without suffixes (e.g. myFolder or myWorkspace)": "nom raccourci de l’espace de travail sans suffixes (par exemple, myFolder ou myWorkspace)",
+ "the file name (e.g. myFile.txt)": "le nom du fichier (ex: monfichier.txt)",
+ "the full path of the file (e.g. /Users/Development/myFolder/myFileFolder/myFile.txt)": "chemin complet du fichier (par ex., /Users/Development/myFolder/myFileFolder/myFile.txt)",
+ "the full path of the folder the file is contained in (e.g. /Users/Development/myFolder/myFileFolder)": "chemin complet du dossier contenant le fichier (par ex., /Users/Development/myFolder/myFileFolder)",
+ "the name of the active branch in the active repository (e.g. main)": "nom de la branche active dans le référentiel actif (par exemple, principal)",
+ "the name of the active repository (e.g. vscode)": "nom du référentiel actif (par exemple, vscode)",
+ "the name of the folder the file is contained in (e.g. myFileFolder)": "nom du dossier contenant le fichier (par ex., myFileFolder)",
+ "the path of the file relative to the workspace folder (e.g. myFolder/myFileFolder/myFile.txt)": "chemin de fichier relatif au dossier de l'espace de travail (par ex., myFolder/myFileFolder/myFile.txt)",
+ "the path of the folder the file is contained in, relative to the workspace folder (e.g. myFolder/myFileFolder)": "chemin du dossier contenant le fichier, relatif au dossier de l'espace de travail (par ex., myFolder/myFileFolder)",
+ "the state of the active editor (e.g. modified).": "l’état de l’éditeur actif (par exemple, modifié)."
+ },
+ "package": {
+ "description": "Fournit des fonctionnalités (IntelliSense avancé, correction automatique) dans les fichiers de configuration comme les fichiers de paramètres, de lancement et de recommandation d'extension.",
+ "displayName": "Configuration de l'édition"
+ }
+ }
+}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-fr/translations/extensions/vscode.cpp.i18n.json b/i18n/vscode-language-pack-fr/translations/extensions/vscode.cpp.i18n.json
index a717afde8b..7b4e3496a3 100644
--- a/i18n/vscode-language-pack-fr/translations/extensions/vscode.cpp.i18n.json
+++ b/i18n/vscode-language-pack-fr/translations/extensions/vscode.cpp.i18n.json
@@ -9,8 +9,8 @@
"version": "1.0.0",
"contents": {
"package": {
- "displayName": "Concepts de base du langage C/C++",
- "description": "Fournit des extraits de code, la coloration syntaxique, la correspondance des crochets et le repli dans les fichiers C/C++."
+ "description": "Fournit des extraits de code, la coloration syntaxique, la correspondance des crochets et le repli dans les fichiers C/C++.",
+ "displayName": "Concepts de base du langage C/C++"
}
}
}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-fr/translations/extensions/vscode.csharp.i18n.json b/i18n/vscode-language-pack-fr/translations/extensions/vscode.csharp.i18n.json
index d87d2f0558..e01b4366da 100644
--- a/i18n/vscode-language-pack-fr/translations/extensions/vscode.csharp.i18n.json
+++ b/i18n/vscode-language-pack-fr/translations/extensions/vscode.csharp.i18n.json
@@ -9,8 +9,8 @@
"version": "1.0.0",
"contents": {
"package": {
- "displayName": "Bases du langage C#",
- "description": "Fournit les extraits de code, la coloration syntaxique, la correspondance des parenthèses et le repliement dans les fichiers C#."
+ "description": "Fournit les extraits de code, la coloration syntaxique, la correspondance des parenthèses et le repliement dans les fichiers C#.",
+ "displayName": "Bases du langage C#"
}
}
}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-fr/translations/extensions/vscode.css-language-features.i18n.json b/i18n/vscode-language-pack-fr/translations/extensions/vscode.css-language-features.i18n.json
new file mode 100644
index 0000000000..31dc689b98
--- /dev/null
+++ b/i18n/vscode-language-pack-fr/translations/extensions/vscode.css-language-features.i18n.json
@@ -0,0 +1,368 @@
+{
+ "": [
+ "--------------------------------------------------------------------------------------------",
+ "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."
+ ],
+ "version": "1.0.0",
+ "contents": {
+ "bundle": {
+ "\"store\" a boolean test for later evaluation in a guard or if().": "« stocker » un test booléen pour une évaluation ultérieure dans un guard ou if().",
+ "'from' expected": "« from » attendu.",
+ "'in' expected": "'in' attendu",
+ "'through' or 'to' expected": "« through » ou « to » attendu",
+ "'{0}'": "'{0}'",
+ "( expected": "( attendue",
+ ") expected": ") attendue",
+ "": "",
+ "@font-face": "@font-face",
+ "@font-face rule must define 'src' and 'font-family' properties": "La règle @font-face doit définir les propriétés 'src' et 'font-family'",
+ "@keyframes {0}": "@keyframes {0}",
+ "A list of properties that are not validated against the `unknownProperties` rule.": "Liste de propriétés non validées par la règle 'unknownProperties'.",
+ "Adds quotes to a string.": "Ajoute des guillemets à une chaîne.",
+ "Also define the standard property '{0}' for compatibility": "Définir également la propriété standard '{0}' pour la compatibilité",
+ "Always define standard rule '@keyframes' when defining keyframes.": "Toujours définir la règle standard '@keyframes' lors de la définition d’images clés.",
+ "Always include all vendor specific properties: Missing: {0}": "Toujours inclure toutes les propriétés spécifiques au fournisseur : propriétés manquantes : {0}",
+ "Always include all vendor specific rules: Missing: {0}": "Toujours inclure toutes les règles spécifiques au fournisseur : manquantes : {0}",
+ "Appends a single value onto the end of a list.": "Ajoute une valeur unique à la fin d’une liste.",
+ "Appends selectors to one another without spaces in between.": "Ajoute les sélecteurs les uns aux autres sans espaces entre les deux.",
+ "Avoid using !important. It is an indication that the specificity of the entire CSS has gotten out of control and needs to be refactored.": "Evitez d'utiliser !important. Cela indique que la spécificité de l’intégralité du code CSS est incorrecte et qu’il doit être refactorisé.",
+ "Avoid using 'float'. Floats lead to fragile CSS that is easy to break if one aspect of the layout changes.": "Évitez d’utiliser « float ». Les floats conduisent à un CSS fragile qui est facile à rompre, si un des aspects de la mise en page change.",
+ "CSS Language Server": "Serveur de langage CSS",
+ "CSS fix is outdated and can't be applied to the document.": "Le correctif CSS est obsolète et ne peut pas être appliqué au document.",
+ "Causes one or more rules to be emitted at the root of the document.": "Entraîne l’émission d’une ou de plusieurs règles à la racine du document.",
+ "Changes one or more properties of a color.": "Modifie une ou plusieurs propriétés d’une couleur.",
+ "Changes the alpha component for a color.": "Modifie le composant alpha d’une couleur.",
+ "Changes the hue of a color.": "Modifie la teinte d’une couleur.",
+ "Combines several lists into a single multidimensional list.": "Regroupe plusieurs listes en une seule liste multidimensionnelle.",
+ "Converts a color into the format understood by IE filters.": "Convertit une couleur au format compris par les filtres Internet Explorer.",
+ "Converts a color to grayscale.": "Convertit une couleur en nuances de gris.",
+ "Converts a string to lower case.": "Convertit une chaîne en minuscules.",
+ "Converts a string to upper case.": "Convertit une chaîne en majuscules.",
+ "Converts a unitless number to a percentage.": "Convertit un nombre sans unité en pourcentage.",
+ "Creates a Color from hue, saturation, and lightness values.": "Crée une couleur à partir des valeurs de teinte, de saturation et de clarté.",
+ "Creates a Color from hue, saturation, lightness, and alpha values.": "Crée une couleur à partir de la teinte, de la saturation, de la clarté et des valeurs alpha.",
+ "Creates a Color from hue, white, and black values.": "Crée une couleur à partir de valeurs de teinte, de blanc et de noir.",
+ "Creates a Color from lightness, a, and b values.": "Crée une couleur à partir des valeurs de clarté et a et b.",
+ "Creates a Color from lightness, chroma, and hue values.": "Crée une couleur à partir des valeurs de clarté, de chrome et de teinte.",
+ "Creates a Color from red, green, and blue values.": "Crée une couleur à partir des valeurs rouge, verte et bleue.",
+ "Creates a Color from red, green, blue, and alpha values.": "Crée une couleur à partir des valeurs rouge, verte, bleue et alpha.",
+ "Creates a Color from the hue, saturation, and lightness values of another Color.": "Crée une couleur à partir des valeurs de teinte, de saturation et de clarté d’une autre couleur.",
+ "Creates a Color from the hue, white, and black values of another Color.": "Crée une couleur à partir des valeurs de teinte, de blanc et de noir d’une autre couleur.",
+ "Creates a Color from the lightness, a, and b values of another Color.": "Crée une couleur à partir des valeurs de clarté, a et b d’une autre couleur.",
+ "Creates a Color from the lightness, chroma, and hue values of another Color.": "Crée une couleur à partir des valeurs de clarté, de chrome et de teinte d’une autre couleur.",
+ "Creates a Color from the red, green, and blue values of another Color.": "Crée une couleur à partir des valeurs rouge, verte et bleue d’une autre couleur.",
+ "Creates a Color in a specific color space from red, green, and blue values.": "Crée une couleur dans un espace de couleurs spécifique à partir des valeurs rouge, vert et bleu.",
+ "Creates a Color in a specific color space from the red, green, and blue values of another Color.": "Crée une couleur dans un espace de couleur spécifique à partir des valeurs rouge, verte et bleue d’une autre couleur.",
+ "Defines complex operations that can be re-used throughout stylesheets.": "Définit des opérations complexes qui peuvent être réutilisées dans des feuilles de style.",
+ "Defines styles that can be re-used throughout the stylesheet with `@include`.": "Définit les styles qui peuvent être réutilisés dans l’ensemble de la feuille de style avec « @include ».",
+ "Do not use duplicate style definitions": "Ne pas utiliser les définitions de style en doublon",
+ "Do not use empty rulesets": "Ne pas utiliser d'ensembles de règles vides",
+ "Do not use width or height when using padding or border": "Ne pas utiliser width ou height lorsque vous utilisez padding ou border",
+ "Dynamically calls a Sass function.": "Appelle dynamiquement une fonction Sass.",
+ "Each loop that sets `$var` to each item in the list or map, then outputs the styles it contains using that value of `$var`.": "Chaque boucle qui définit `$var` à chaque élément de la liste ou de la carte, puis génère les styles qu’elle contient à l’aide de la valeur `$var`.",
+ "Exposes the details of Sass’s inner workings.": "Expose les détails du fonctionnement interne de Sass.",
+ "Extends $extendee with $extender within $selector.": "Étend $extendee avec $extender dans $selector.",
+ "Extracts a substring from $string.": "Extrait une sous-chaîne de $string.",
+ "Failed to apply CSS fix to the document. Please consider opening an issue with steps to reproduce.": "Échec de l’application du correctif CSS au document. Nous vous recommandons d’ouvrir un problème avec des étapes à reproduire.",
+ "Finds the maximum of several numbers.": "Recherche le maximum de plusieurs nombres.",
+ "Finds the minimum of several numbers.": "Recherche le minimum de plusieurs nombres.",
+ "Fluidly scales one or more properties of a color.": "Met à l’échelle de manière fluide une ou plusieurs propriétés d’une couleur.",
+ "Folding Region End": "Fin de la zone de pliage",
+ "Folding Region Start": "Début de la région repliable",
+ "For loop that repeatedly outputs a set of styles for each `$var` in the `from/through` or `from/to` clause.": "Pour une boucle qui génère à plusieurs reprises un ensemble de styles pour chaque `$var` dans la clause `from/through` ou `fromto`.",
+ "Generates new colors based on existing ones, making it easy to build color themes.": "Génère de nouvelles couleurs basées sur celles existantes, ce qui facilite la génération de thèmes de couleurs.",
+ "Gets the blue component of a color.": "Obtient le composant bleu d’une couleur.",
+ "Gets the green component of a color.": "Obtient le composant vert d’une couleur.",
+ "Gets the hue component of a color.": "Obtient la teinte rouge d’une couleur.",
+ "Gets the lightness component of a color.": "Obtient le composant de clarté d’une couleur.",
+ "Gets the opacity component of a color.": "Obtient le composant d’opacité d’une couleur.",
+ "Gets the red component of a color.": "Obtient le composant rouge d’une couleur.",
+ "Gets the saturation component of a color.": "Obtient le composant saturation d’une couleur.",
+ "Hex colors must consist of three, four, six or eight hex numbers": "Les couleurs hexadécimales doivent être constituées de trois, quatre, six ou huit nombres hexadécimaux",
+ "IE hacks are only necessary when supporting IE7 and older": "Les hacks IE sont uniquement nécessaires pour prendre en charge IE7 et les versions antérieures",
+ "Import statements do not load in parallel": "Les instructions Import ne se chargent pas en parallèle",
+ "Includes the body if the expression does not evaluate to `false` or `null`.": "Inclut le corps si l’expression n’a pas la valeur 'false' ou 'null'.",
+ "Includes the styles defined by another mixin into the current rule.": "Inclut les styles définis par un autre mixin dans la règle actuelle.",
+ "Increases or decreases one or more components of a color.": "Augmente ou diminue un ou plusieurs composants d’une couleur.",
+ "Inherits the styles of another selector.": "Hérite des styles d’un autre sélecteur.",
+ "Insert url() Function": "Insérer une fonction url()",
+ "Insert url() Functions": "Insérer des fonctions url()",
+ "Inserts $insert into $string at $index.": "Insère $insert dans $string à $index.",
+ "Invalid number of parameters": "Nombre de paramètres non valide",
+ "Joins together two lists into one.": "Regroupe deux listes en une seule.",
+ "Lets you access and modify values in lists.": "Vous permet d’accéder aux valeurs des listes et de les modifier.",
+ "Loads a Sass stylesheet and makes its mixins, functions, and variables available when this stylesheet is loaded with the @use rule.": "Charge une feuille de style Sass et rend ses mixins, fonctions et variables disponibles lorsque cette feuille de style est chargée avec la règle @use.",
+ "Loads mixins, functions, and variables from other Sass stylesheets as 'modules', and combines CSS from multiple stylesheets together.": "Charge les mixins, les fonctions et les variables d’autres feuilles de style Sass sous forme de 'modules' et associe les CSS de plusieurs feuilles de style.",
+ "Makes a color darker.": "Rend une couleur plus foncée.",
+ "Makes a color less saturated.": "Rend une couleur moins saturée.",
+ "Makes a color lighter.": "Rend une couleur plus claire.",
+ "Makes a color more opaque.": "Rend une couleur plus opaque.",
+ "Makes a color more saturated.": "Rend une couleur plus saturée.",
+ "Makes a color more transparent.": "Rend une couleur plus transparente.",
+ "Makes it easy to combine, search, or split apart strings.": "Facilite la combinaison, la recherche ou le fractionnement de chaînes.",
+ "Makes it possible to look up the value associated with a key in a map, and much more.": "Permet de rechercher la valeur associée à une clé dans une carte, etc.",
+ "Merges two maps together into a new map.": "Fusionne deux cartes dans une nouvelle carte.",
+ "Mix two colors together in a polar color space.": "Mélangez deux couleurs dans un espace de couleurs polaire.",
+ "Mix two colors together in a rectangular color space.": "Mélangez deux couleurs dans un espace de couleurs rectangulaire.",
+ "Mixes two colors together.": "Mélange deux couleurs.",
+ "Nests selector beneath one another like they would be nested in the stylesheet.": "Imbrique les sélecteurs les uns sous les autres comme s’ils étaient imbriqués dans la feuille de style.",
+ "No unit for zero needed": "Aucune unité nécessaire pour zéro",
+ "Parses a selector into the format returned by &.": "Analyse un sélecteur dans le format retourné par &.",
+ "Prints the value of an expression to the standard error output stream. Useful for debugging complicated Sass files.": "Imprime la valeur d’une expression dans le flux de sortie d’erreur standard. Utile pour déboguer des fichiers Sass complexes.",
+ "Prints the value of an expression to the standard error output stream. Useful for libraries that need to warn users of deprecations or recovering from minor mixin usage mistakes. Warnings can be turned off with the `--quiet` command-line option or the `:quiet` Sass option.": "Imprime la valeur d’une expression dans le flux de sortie d’erreur standard. Utile pour les bibliothèques qui doivent avertir les utilisateurs des désapprobations ou de la récupération suite à des erreurs mineures d’utilisation de mixin. Les avertissements peuvent être désactivés avec l’option de ligne de commande '--quiet' ou l’option Sass ':quiet'.",
+ "Property is ignored due to the display.": "La propriété est ignorée en raison de l’affichage.",
+ "Property is ignored due to the display. With 'display: block', vertical-align should not be used.": "La propriété est ignorée en raison de l’affichage. Avec 'display: block', l’alignement vertical ne doit pas être utilisé.",
+ "Provides access to Sass’s powerful selector engine.": "Donne accès au moteur sélecteur puissant de Sass.",
+ "Provides functions that operate on numbers.": "Fournit des fonctions qui agissent sur des nombres.",
+ "Removes quotes from a string.": "Supprime les guillemets d’une chaîne.",
+ "Rename to '{0}'": "Renommer en « {0} »",
+ "Replaces $original with $replacement within $selector.": "Remplace $original par $replacement dans $selector.",
+ "Replaces the nth item in a list.": "Remplace le nième élément d’une liste.",
+ "Returns a list of all keys in a map.": "Retourne une liste de toutes les clés d’un mappage.",
+ "Returns a list of all values in a map.": "Retourne une liste de toutes les valeurs d’un mappage.",
+ "Returns a new map with keys removed.": "Retourne une nouvelle carte avec les clés supprimées.",
+ "Returns a random number.": "Retourne un nombre aléatoire.",
+ "Returns a specific item in a list.": "Retourne un élément spécifique dans une liste.",
+ "Returns the absolute value of a number.": "Retourne la valeur absolue d'un nombre.",
+ "Returns the complement of a color.": "Renvoie le complément d’une couleur.",
+ "Returns the index of the first occurance of $substring in $string.": "Retourne l’index de la première occurrence de $substring dans $string.",
+ "Returns the inverse of a color.": "Renvoie l’inverse d’une couleur.",
+ "Returns the keywords passed to a function that takes variable arguments.": "Retourne les mots clés passés à une fonction qui accepte les arguments de variables.",
+ "Returns the length of a list.": "Retourne la longueur d’une liste.",
+ "Returns the number of characters in a string.": "Retourne le nombre de caractères dans une chaîne.",
+ "Returns the position of a value within a list.": "Retourne la position d’une valeur dans une liste.",
+ "Returns the separator of a list.": "Retourne le séparateur d’une liste.",
+ "Returns the simple selectors that comprise a compound selector.": "Retourne les sélecteurs simples qui contiennent un sélecteur composé.",
+ "Returns the string representation of a value as it would be represented in Sass.": "Renvoie la représentation sous forme de chaîne d’une valeur telle qu’elle serait représentée dans Sass.",
+ "Returns the type of a value.": "Renvoie le type d’une valeur.",
+ "Returns the unit(s) associated with a number.": "Retourne la ou les unités associées à un nombre.",
+ "Returns the value in a map associated with a given key.": "Renvoie la valeur dans un mappage associé à une clé donnée.",
+ "Returns whether $super matches all the elements $sub does, and possibly more.": "Indique si $super correspond à tous les éléments. $sub y correspond, et peut-être bien plus encore.",
+ "Returns whether a feature exists in the current Sass runtime.": "Retourne une valeur indiquant si une fonctionnalité existe dans le runtime Sass actuel.",
+ "Returns whether a function with the given name exists.": "Indique en retour si une fonction portant le nom donné existe.",
+ "Returns whether a map has a value associated with a given key.": "Retourne une valeur associée à une clé donnée pour un mappage.",
+ "Returns whether a mixin with the given name exists.": "Indique si un mixin portant le nom donné existe.",
+ "Returns whether a number has units.": "Indique si un nombre a des unités.",
+ "Returns whether a variable with the given name exists in the current scope.": "Renvoie une valeur indiquant si une variable portant le nom donné existe dans l’étendue actuelle.",
+ "Returns whether a variable with the given name exists in the global scope.": "Retourne une valeur indiquant si une variable portant le nom donné existe dans l’étendue globale.",
+ "Returns whether two numbers can be added, subtracted, or compared.": "Indique en retour si deux nombres peuvent être ajoutés, soustraits ou comparés.",
+ "Rounds a number down to the previous whole number.": "Arrondit un nombre au nombre entier précédent.",
+ "Rounds a number to the nearest whole number.": "Arrondit un nombre par défaut à l’entier le plus proche.",
+ "Rounds a number up to the next whole number.": "Arrondit un nombre au nombre entier suivant.",
+ "Sass documentation": "Documentation Sass",
+ "Selector Specificity": "Spécifique du sélecteur",
+ "Selectors should not contain IDs because these rules are too tightly coupled with the HTML.": "Les sélecteurs ne doivent pas contenir d'ID, car ces règles sont trop fortement couplées au code HTML.",
+ "The universal selector (*) is known to be slow": "Le sélecteur universel (`*`) est connu pour être lent",
+ "Throws the value of an expression as a fatal error with stack trace. Useful for validating arguments to mixins and functions.": "Élimine la valeur d’une expression en tant qu’erreur irrécupérable avec une trace. Utile pour valider des arguments dans des mixins et des fonctions.",
+ "URI expected": "URI attendu",
+ "URL encodes a string": "L’URL encode une chaîne",
+ "Unifies two selectors to produce a selector that matches elements matched by both.": "Unifie deux sélecteurs pour produire un sélecteur qui correspond aux éléments mis en correspondance par les deux.",
+ "Unknown at-rule.": "Règle-at inconnue.",
+ "Unknown property.": "Propriété inconnue.",
+ "Unknown property: '{0}'": "Propriété inconnue : '{0}'",
+ "Unknown vendor specific property.": "Propriété spécifique à un fournisseur inconnue.",
+ "When using a vendor-specific prefix also include the standard property": "Quand vous utilisez un préfixe spécifique au fournisseur, incluez également la propriété standard",
+ "When using a vendor-specific prefix make sure to also include all other vendor-specific properties": "Quand vous utilisez un préfixe spécifique au fournisseur, veillez à inclure également toutes les autres propriétés spécifiques au fournisseur",
+ "While loop that takes an expression and repeatedly outputs the nested styles until the statement evaluates to `false`.": "Pendant que la boucle prend une expression et génère à plusieurs reprises les styles imbriqués jusqu’à ce que l’instruction ait la valeur `false`.",
+ "[ expected": "[ attendue",
+ "] expected": "] attendue",
+ "absolute value of a number": "valeur absolue d’un nombre",
+ "arccosine - inverse of cosine function": "arc cosinus – inverse de la fonction cosinus",
+ "arcsine - inverse of sine function": "arc sinus : inverse de la fonction sinus",
+ "arctangent - inverse of tangent function": "arc tangente : inverse de la fonction tangente",
+ "argument from '{0}'": "argument de « {0} »",
+ "at-rule or selector expected": "règle-at ou sélecteur attendu",
+ "at-rule unknown": "règle-at inconnue",
+ "bind the evaluation of a ruleset to each member of a list.": "lier l’évaluation d’un ensemble de règles à chaque membre d’une liste.",
+ "calculates square root of a number": "calcule la racine carrée d'un nombre",
+ "colon expected": "couleur attendue",
+ "comma expected": "virgule attendue",
+ "condition expected": "condition attendue",
+ "converts numbers from one type into another": "convertit des nombres d’un type en un autre",
+ "converts to a %, e.g. 0.5 > 50%": "convertit en %, par exemple 0,5 > 50 %",
+ "cosine function": "fonction cosinus",
+ "creates a #AARRGGBB": "crée une valeur #AARRGGBB",
+ "creates a color": "crée une couleur",
+ "css.builtin.lab": "css.builtin.lab",
+ "dot expected": "point attendu",
+ "escape string content": "contenu de chaîne d’échappement",
+ "expression expected": "expression attendue",
+ "first argument modulus second argument": "premier argument modulo second argument",
+ "first argument raised to the power of the second argument": "premier argument élevé à la puissance du deuxième argument",
+ "generate a list spanning a range of values": "générer une liste couvrant une plage de valeurs",
+ "identifier expected": "Identificateur attendu",
+ "identifier or variable expected": "identificateur ou variable attendu",
+ "identifier or wildcard expected": "identificateur ou caractère générique attendu",
+ "inline-block is ignored due to the float. If 'float' has a value other than 'none', the box is floated and 'display' is treated as 'block'": "inline-block est ignoré en raison du float. Si « float » a une valeur autre que « none », la zone est rendue flottante et « display » est traité comme « block »",
+ "inlines a resource and falls back to `url()`": "place une ressource dans du code (inline) et revient à « url() »",
+ "media query expected": "requête de média attendue",
+ "number expected": "nombre attendu",
+ "operator expected": "opérateur attendu",
+ "page directive or declaraton expected": "directive de page ou déclaration attendue",
+ "parses a string to a color": "analyse une chaîne en une couleur",
+ "percentage expected": "pourcentage attendu",
+ "property value expected": "valeur de propriété attendue",
+ "remove or change the unit of a dimension": "supprimer ou modifier l’unité d’une dimension",
+ "return `@color` 10% points darker": "renvoyer les points 10 % plus sombres de '@color'",
+ "return `@color` 10% points less saturated": "renvoyer « @color » 10 % de points moins saturés",
+ "return `@color` 10% points less transparent": "retourner `@color` 10 % de points moins transparents",
+ "return `@color` 10% points lighter": "renvoie les points 10 % plus clairs de « @color »",
+ "return `@color` 10% points more saturated": "renvoyer « @color » 10 % de points plus saturés",
+ "return `@color` 10% points more transparent": "renvoyer `@color` 10 % de points plus transparents",
+ "return `@color` with 50% transparency": "retourner '@color' avec 50 % de transparence",
+ "return `@color` with a 10 degree larger in hue": "retourne `@color` avec une teinte plus grande de 10 degrés",
+ "return `@darkcolor` if `@color1 is> 43% luma` otherwise return `@lightcolor`, see notes": "retourne `@darkcolor` si `@color1 est> 43 % luma`, sinon renvoie `@lightcolor`, consultez les notes",
+ "return a mix of `@color1` and `@color2`": "retourne un mélange de `@color1` et `@color2`",
+ "returns a grey, 100% desaturated color": "renvoie une couleur grise 100 % désaturée",
+ "returns a value at the specified position in the list": "renvoie une valeur à la position spécifiée dans la liste",
+ "returns one of two values depending on a condition.": "renvoie l’une des deux valeurs en fonction d’une condition.",
+ "returns pi": "renvoie pi",
+ "returns the `alpha` channel of `@color`": "retourne le canal `alpha` de `@color`",
+ "returns the `blue` channel of `@color`": "renvoie le canal « blue » de « @color »",
+ "returns the `green` channel of `@color`": "retourne le canal `green` de `@color`",
+ "returns the `hue` channel of `@color` in the HSL space": "renvoie le canal « hue » de « @color » dans l’espace TSL",
+ "returns the `hue` channel of `@color` in the HSV space": "renvoie le canal `teinte` de '@color' dans l’espace HSV",
+ "returns the `lightness` channel of `@color` in the HSL space": "renvoie le canal `lightness` de `@color` dans l’espace HSL",
+ "returns the `luma` value (perceptual brightness) of `@color`": "renvoie la valeur « luma » (luminosité perceptuelle) de « @color »",
+ "returns the `red` channel of `@color`": "retourne le canal `red` de `@color`",
+ "returns the `saturation` channel of `@color` in the HSL space": "renvoie le canal 'saturation' de '@color' dans l’espace HSL",
+ "returns the `saturation` channel of `@color` in the HSV space": "renvoie le canal `saturation` de `@color` dans l’espace HSL",
+ "returns the `value` channel of `@color` in the HSV space": "renvoie le canal 'value' de '@color' dans l’espace HSV",
+ "returns the lowest of one or more values": "retourne la valeur la plus faible d’une ou plusieurs valeurs",
+ "returns the number of elements in a value list": "retourne le nombre d’éléments dans une liste de valeurs",
+ "rounds a number to a number of places": "arrondit un nombre à un certain nombre d’emplacements",
+ "rounds down to an integer": "arrondit par défaut à un entier",
+ "rounds up to an integer": "arrondit par excès à un entier",
+ "selector expected": "sélecteur attendu",
+ "semi-colon expected": "point-virgule attendu",
+ "sine function": "fonction sinus",
+ "string literal expected": "littéral de chaîne attendu",
+ "string replace": "remplacement de chaîne",
+ "tangent function": "fonction tangente",
+ "term expected": "terme attendu",
+ "unknown keyword": "mot clé inconnu",
+ "uri or string expected": "URI ou chaîne attendue",
+ "variable name expected": "nom de variable attendu",
+ "variable value expected": "valeur de variable attendue",
+ "whitespace expected": "espace blanc attendu",
+ "wildcard expected": "caractère générique attendu",
+ "{ expected": "{ attendue",
+ "{0}, '{1}'": "{0}, '{1}'",
+ "} expected": "} attendue"
+ },
+ "package": {
+ "css.colorDecorators.enable.deprecationMessage": "Le paramètre 'css.colorDecorators.enable' a été déprécié en faveur de 'editor.colorDecorators'.",
+ "css.completion.completePropertyWithSemicolon.desc": "Insère un point-virgule à la fin de la ligne au moment de la complétion des propriétés CSS.",
+ "css.completion.triggerPropertyValueCompletion.desc": "Par défaut, VS Code déclenche la complétion de la valeur de propriété après la sélection d'une propriété CSS. Utilisez ce paramètre pour désactiver ce comportement.",
+ "css.customData.desc": "Liste de chemins d’accès relatifs vers des fichiers JSON respectant le [format de données personnalisé](https://github.com/microsoft/vscode-css-languageservice/blob/master/docs/customData.md).\r\n\r\nVS Code charge des données personnalisées au démarrage pour améliorer sa prise en charge CSS des propriétés (variables), des règles at, des pseudo-classes et des pseudo-éléments CSS personnalisés que vous spécifiez dans les fichiers JSON.\r\n\r\nLes chemins de fichiers sont relatifs à l’espace de travail, et seuls les paramètres de dossier d’espace de travail sont pris en compte.",
+ "css.format.braceStyle.desc": "Placez des accolades sur la même ligne que les règles (« Réduire ») ou placez des accolades sur une ligne (« Développer »).",
+ "css.format.enable.desc": "Activez/désactivez le formateur CSS par défaut.",
+ "css.format.maxPreserveNewLines.desc": "Nombre maximal de sauts de ligne à conserver dans un bloc lorsque « #css.format.preserveNewLines# » est activé.",
+ "css.format.newlineBetweenRules.desc": "Séparez les ensembles de règles par une ligne vide.",
+ "css.format.newlineBetweenSelectors.desc": "Séparez les sélecteurs par une nouvelle ligne.",
+ "css.format.preserveNewLines.desc": "Indique si les sauts de ligne existants avant les règles et les déclarations doivent être conservés.",
+ "css.format.spaceAroundSelectorSeparator.desc": "Assurez-vous qu’un caractère d’espace autour des séparateurs de sélecteurs '>', « + », « ~ » (par exemple, « a > b »).",
+ "css.hover.documentation": "Afficher la documentation sur les propriétés et les valeurs dans les pointages CSS.",
+ "css.hover.references": "Affiche les références MDN pour CSS en cas de pointage du curseur.",
+ "css.lint.argumentsInColorFunction.desc": "Nombre de paramètres non valide.",
+ "css.lint.boxModel.desc": "Ne pas utiliser `width` ou `height` lorsque vous utilisez `padding` ou `border`.",
+ "css.lint.compatibleVendorPrefixes.desc": "Quand vous utilisez un préfixe spécifique au fournisseur assurez-vous d’inclure toutes les autres propriétés spécifiques au fournisseur.",
+ "css.lint.duplicateProperties.desc": "Ne pas utiliser les définitions de style en doublon.",
+ "css.lint.emptyRules.desc": "Ne pas utiliser d'ensembles de règles vides",
+ "css.lint.float.desc": "Évitez d’utiliser `float`. Les floats conduisent à un CSS fragile qui est facile à casser, si un des aspects de la mise en page change.",
+ "css.lint.fontFaceProperties.desc": "La règle '@font-face' doit définir les propriétés 'src' et 'font-family'.",
+ "css.lint.hexColorLength.desc": "Les couleurs hexadécimale doivent être constituées de 3, 4, 6 ou 8 chiffres hexadécimaux.",
+ "css.lint.idSelector.desc": "Les sélecteurs ne doivent pas contenir d'ID, car ces règles sont trop fortement couplées au code HTML.",
+ "css.lint.ieHack.desc": "Les hacks IE sont uniquement nécessaires pour prendre en charge IE7 et antérieur.",
+ "css.lint.importStatement.desc": "Les instructions Import ne se chargent pas en parallèle.",
+ "css.lint.important.desc": "Evitez d'utiliser `!important`. Cela indique que la spécificité de l'intégralité du code CSS est incorrecte et qu'il doit être refactorisé.",
+ "css.lint.propertyIgnoredDueToDisplay.desc": "La propriété est ignorée en raison du display. Par exemple, avec 'display: inline', les propriétés `width`, `height`, `margin-top`, `margin-bottom`, et `float` n’ont aucun effet.",
+ "css.lint.universalSelector.desc": "Le sélecteur universel (`*`) est connu pour être lent.",
+ "css.lint.unknownAtRules.desc": "Règle-at inconnue.",
+ "css.lint.unknownProperties.desc": "Propriété inconnue.",
+ "css.lint.unknownVendorSpecificProperties.desc": "Propriété spécifique à un fournisseur inconnue.",
+ "css.lint.validProperties.desc": "Liste de propriétés non validées par la règle 'unknownProperties'.",
+ "css.lint.vendorPrefix.desc": "Quand vous utilisez un préfixe spécifique au fournisseur, incluez également la propriété standard.",
+ "css.lint.zeroUnits.desc": "Aucune unité nécessaire pour zéro.",
+ "css.title": "CSS",
+ "css.trace.server.desc": "Trace la communication entre VS Code et le serveur de langage CSS.",
+ "css.validate.desc": "Active ou désactive toutes les validations",
+ "css.validate.title": "Contrôle la validation CSS et la gravité des problèmes.",
+ "description": "Fournit une prise en charge riche de langage pour les fichiers CSS, LESS et SCSS",
+ "displayName": "Fonctionnalités de langage CSS",
+ "less.colorDecorators.enable.deprecationMessage": "Le paramètre 'less.colorDecorators.enable' a été déprécié en faveur de 'editor.colorDecorators'.",
+ "less.completion.completePropertyWithSemicolon.desc": "Insère un point-virgule à la fin de la ligne au moment de la complétion des propriétés CSS.",
+ "less.completion.triggerPropertyValueCompletion.desc": "Par défaut, VS Code déclenche la complétion de la valeur de propriété après la sélection d'une propriété CSS. Utilisez ce paramètre pour désactiver ce comportement.",
+ "less.format.braceStyle.desc": "Placez des accolades sur la même ligne que les règles (« Réduire ») ou placez des accolades sur une ligne (« Développer »).",
+ "less.format.enable.desc": "Activez/désactivez le formateur LESS par défaut.",
+ "less.format.maxPreserveNewLines.desc": "Nombre maximal de sauts de ligne à conserver dans un bloc lorsque « #less.format.preserveNewLines# » est activé.",
+ "less.format.newlineBetweenRules.desc": "Séparez les ensembles de règles par une ligne vide.",
+ "less.format.newlineBetweenSelectors.desc": "Séparez les sélecteurs par une nouvelle ligne.",
+ "less.format.preserveNewLines.desc": "Indique si les sauts de ligne existants avant les règles et les déclarations doivent être conservés.",
+ "less.format.spaceAroundSelectorSeparator.desc": "Assurez-vous qu’un caractère d’espace autour des séparateurs de sélecteurs '>', « + », « ~ » (par exemple, « a > b »).",
+ "less.hover.documentation": "Afficher la documentation sur les propriétés et les valeurs dans les pointages LESS.",
+ "less.hover.references": "Affiche les références MDN pour LESS en cas de pointage du curseur.",
+ "less.lint.argumentsInColorFunction.desc": "Nombre de paramètres non valide.",
+ "less.lint.boxModel.desc": "Ne pas utiliser `width` ou `height` lorsque vous utilisez `padding` ou `border`.",
+ "less.lint.compatibleVendorPrefixes.desc": "Quand vous utilisez un préfixe spécifique au fournisseur assurez-vous d’inclure toutes les autres propriétés spécifiques au fournisseur.",
+ "less.lint.duplicateProperties.desc": "Ne pas utiliser les définitions de style en doublon.",
+ "less.lint.emptyRules.desc": "Ne pas utiliser d'ensembles de règles vides",
+ "less.lint.float.desc": "Évitez d’utiliser `float`. Les floats conduisent à un CSS fragile qui est facile à casser, si un des aspects de la mise en page change.",
+ "less.lint.fontFaceProperties.desc": "La règle '@font-face' doit définir les propriétés 'src' et 'font-family'.",
+ "less.lint.hexColorLength.desc": "Les couleurs hexadécimale doivent être constituées de 3, 4, 6 ou 8 chiffres hexadécimaux.",
+ "less.lint.idSelector.desc": "Les sélecteurs ne doivent pas contenir d'ID, car ces règles sont trop fortement couplées au code HTML.",
+ "less.lint.ieHack.desc": "Les hacks IE sont uniquement nécessaires pour prendre en charge IE7 et antérieur.",
+ "less.lint.importStatement.desc": "Les instructions Import ne se chargent pas en parallèle.",
+ "less.lint.important.desc": "Evitez d'utiliser `!important`. Cela indique que la spécificité de l'intégralité du code CSS est incorrecte et qu'il doit être refactorisé.",
+ "less.lint.propertyIgnoredDueToDisplay.desc": "La propriété est ignorée en raison du display. Par exemple, avec 'display: inline', les propriétés `width`, `height`, `margin-top`, `margin-bottom`, et `float` n’ont aucun effet.",
+ "less.lint.universalSelector.desc": "Le sélecteur universel (`*`) est connu pour être lent.",
+ "less.lint.unknownAtRules.desc": "Règle-at inconnue.",
+ "less.lint.unknownProperties.desc": "Propriété inconnue.",
+ "less.lint.unknownVendorSpecificProperties.desc": "Propriété spécifique à un fournisseur inconnue.",
+ "less.lint.validProperties.desc": "Liste de propriétés non validées par la règle 'unknownProperties'.",
+ "less.lint.vendorPrefix.desc": "Quand vous utilisez un préfixe spécifique au fournisseur, incluez également la propriété standard.",
+ "less.lint.zeroUnits.desc": "Aucune unité nécessaire pour zéro.",
+ "less.title": "LESS",
+ "less.validate.desc": "Active ou désactive toutes les validations",
+ "less.validate.title": "Contrôle la validation LESS et la gravité des problèmes.",
+ "scss.colorDecorators.enable.deprecationMessage": "Le paramètre 'scss.colorDecorators.enable' a été déprécié en faveur de 'editor.colorDecorators'.",
+ "scss.completion.completePropertyWithSemicolon.desc": "Insère un point-virgule à la fin de la ligne au moment de la complétion des propriétés CSS.",
+ "scss.completion.triggerPropertyValueCompletion.desc": "Par défaut, VS Code déclenche la complétion de la valeur de propriété après la sélection d'une propriété CSS. Utilisez ce paramètre pour désactiver ce comportement.",
+ "scss.format.braceStyle.desc": "Placez des accolades sur la même ligne que les règles (« Réduire ») ou placez des accolades sur une ligne (« Développer »).",
+ "scss.format.enable.desc": "Activez/désactivez le formateur SCSS par défaut.",
+ "scss.format.maxPreserveNewLines.desc": "Nombre maximal de sauts de ligne à conserver dans un bloc lorsque « #scss.format.preserveNewLines# » est activé.",
+ "scss.format.newlineBetweenRules.desc": "Séparez les ensembles de règles par une ligne vide.",
+ "scss.format.newlineBetweenSelectors.desc": "Séparez les sélecteurs par une nouvelle ligne.",
+ "scss.format.preserveNewLines.desc": "Indique si les sauts de ligne existants avant les règles et les déclarations doivent être conservés.",
+ "scss.format.spaceAroundSelectorSeparator.desc": "Assurez-vous qu’un caractère d’espace autour des séparateurs de sélecteurs '>', « + », « ~ » (par exemple, « a > b »).",
+ "scss.hover.documentation": "Afficher la documentation sur les propriétés et les valeurs dans les pointages SCSS.",
+ "scss.hover.references": "Affiche les références MDN pour SCSS en cas de pointage du curseur.",
+ "scss.lint.argumentsInColorFunction.desc": "Nombre de paramètres non valide.",
+ "scss.lint.boxModel.desc": "Ne pas utiliser `width` ou `height` lorsque vous utilisez `padding` ou `border`.",
+ "scss.lint.compatibleVendorPrefixes.desc": "Quand vous utilisez un préfixe spécifique au fournisseur assurez-vous d’inclure toutes les autres propriétés spécifiques au fournisseur.",
+ "scss.lint.duplicateProperties.desc": "Ne pas utiliser les définitions de style en doublon.",
+ "scss.lint.emptyRules.desc": "Ne pas utiliser d'ensembles de règles vides",
+ "scss.lint.float.desc": "Évitez d’utiliser `float`. Les floats conduisent à un CSS fragile qui est facile à casser, si un des aspects de la mise en page change.",
+ "scss.lint.fontFaceProperties.desc": "La règle '@font-face' doit définir les propriétés 'src' et 'font-family'.",
+ "scss.lint.hexColorLength.desc": "Les couleurs hexadécimale doivent être constituées de 3, 4, 6 ou 8 chiffres hexadécimaux.",
+ "scss.lint.idSelector.desc": "Les sélecteurs ne doivent pas contenir d'ID, car ces règles sont trop fortement couplées au code HTML.",
+ "scss.lint.ieHack.desc": "Les hacks IE sont uniquement nécessaires pour prendre en charge IE7 et antérieur.",
+ "scss.lint.importStatement.desc": "Les instructions Import ne se chargent pas en parallèle.",
+ "scss.lint.important.desc": "Evitez d'utiliser `!important`. Cela indique que la spécificité de l'intégralité du code CSS est incorrecte et qu'il doit être refactorisé.",
+ "scss.lint.propertyIgnoredDueToDisplay.desc": "La propriété est ignorée en raison du display. Par exemple, avec 'display: inline', les propriétés `width`, `height`, `margin-top`, `margin-bottom`, et `float` n’ont aucun effet.",
+ "scss.lint.universalSelector.desc": "Le sélecteur universel (`*`) est connu pour être lent.",
+ "scss.lint.unknownAtRules.desc": "Règle at-rule inconnue.",
+ "scss.lint.unknownProperties.desc": "Propriété inconnue.",
+ "scss.lint.unknownVendorSpecificProperties.desc": "Propriété spécifique à un fournisseur inconnue.",
+ "scss.lint.validProperties.desc": "Liste de propriétés non validées par la règle 'unknownProperties'.",
+ "scss.lint.vendorPrefix.desc": "Quand vous utilisez un préfixe spécifique au fournisseur, incluez également la propriété standard.",
+ "scss.lint.zeroUnits.desc": "Aucune unité nécessaire pour zéro.",
+ "scss.title": "SCSS (Sass)",
+ "scss.validate.desc": "Active ou désactive toutes les validations",
+ "scss.validate.title": "Contrôle la validation SCSS et la gravité des problèmes."
+ }
+ }
+}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-fr/translations/extensions/vscode.css.i18n.json b/i18n/vscode-language-pack-fr/translations/extensions/vscode.css.i18n.json
index d83984dfe4..d6c2a6e76a 100644
--- a/i18n/vscode-language-pack-fr/translations/extensions/vscode.css.i18n.json
+++ b/i18n/vscode-language-pack-fr/translations/extensions/vscode.css.i18n.json
@@ -9,8 +9,8 @@
"version": "1.0.0",
"contents": {
"package": {
- "displayName": "Concepts de base du langage CSS",
- "description": "Fournit la coloration syntaxique et la correspondance des parenthèses dans les fichiers CSS, LESS et SCSS."
+ "description": "Fournit la coloration syntaxique et la correspondance des parenthèses dans les fichiers CSS, LESS et SCSS.",
+ "displayName": "Concepts de base du langage CSS"
}
}
}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-fr/translations/extensions/dart.i18n.json b/i18n/vscode-language-pack-fr/translations/extensions/vscode.dart.i18n.json
similarity index 100%
rename from i18n/vscode-language-pack-fr/translations/extensions/dart.i18n.json
rename to i18n/vscode-language-pack-fr/translations/extensions/vscode.dart.i18n.json
diff --git a/i18n/vscode-language-pack-fr/translations/extensions/vscode.debug-auto-launch.i18n.json b/i18n/vscode-language-pack-fr/translations/extensions/vscode.debug-auto-launch.i18n.json
new file mode 100644
index 0000000000..bf716d1ecd
--- /dev/null
+++ b/i18n/vscode-language-pack-fr/translations/extensions/vscode.debug-auto-launch.i18n.json
@@ -0,0 +1,38 @@
+{
+ "": [
+ "--------------------------------------------------------------------------------------------",
+ "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."
+ ],
+ "version": "1.0.0",
+ "contents": {
+ "bundle": {
+ "Always": "Toujours",
+ "Auto Attach: Always": "Attachement automatique : toujours",
+ "Auto Attach: Disabled": "Attachement automatique : désactivé",
+ "Auto Attach: Smart": "Attachement automatique : intelligent",
+ "Auto Attach: With Flag": "Attachement automatique : avec indicateur",
+ "Auto attach is disabled and not shown in status bar": "L'attachement automatique est désactivé et n'apparaît pas dans la barre d'état",
+ "Auto attach to every Node.js process launched in the terminal": "Effectue l'attachement automatique à chaque processus Node.js lancé dans le terminal",
+ "Auto attach when running scripts that aren't in a node_modules folder": "Effectue l'attachement automatique durant l'exécution de scripts qui ne se trouvent pas dans un dossier node_modules",
+ "Automatically attach to node.js processes in debug mode": "Attacher automatiquement à node.js les processus en mode débogage",
+ "Debug Auto Attach": "Joindre automatique le débogage",
+ "Disabled": "Désactivé",
+ "Only With Flag": "Uniquement avec indicateur",
+ "Only auto attach when the `--inspect` flag is given": "Effectue l'attachement automatique uniquement quand l'indicateur '--inspect' est spécifié",
+ "Re-enable auto attach": "Réactiver l'attachement automatique",
+ "Smart": "Intelligent",
+ "Temporarily disable auto attach in this session": "Désactiver temporairement l'attachement automatique dans cette session",
+ "Toggle Auto Attach": "Activer/désactiver l'Attachement automatique",
+ "Toggle auto attach in this workspace": "Activer/désactiver l'attachement automatique dans cet espace de travail",
+ "Toggle auto attach on this machine": "Activer/désactiver l'attachement automatique sur cette machine"
+ },
+ "package": {
+ "description": "Assistance pour la fonctionnalité d'attachement automatique quand les extensions de débogage de nœud ne sont pas actives. ",
+ "displayName": "Attachement automatique du débogage de nœud",
+ "toggle.auto.attach": "Activer/désactiver l'Attachement automatique"
+ }
+ }
+}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-fr/translations/extensions/vscode.debug-server-ready.i18n.json b/i18n/vscode-language-pack-fr/translations/extensions/vscode.debug-server-ready.i18n.json
new file mode 100644
index 0000000000..ce2526bdc7
--- /dev/null
+++ b/i18n/vscode-language-pack-fr/translations/extensions/vscode.debug-server-ready.i18n.json
@@ -0,0 +1,31 @@
+{
+ "": [
+ "--------------------------------------------------------------------------------------------",
+ "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."
+ ],
+ "version": "1.0.0",
+ "contents": {
+ "bundle": {
+ "Format uri ('{0}') must contain exactly one substitution placeholder.": "L'URI de mise en forme ('{0}') doit contenir exactement un espace réservé de remplacement.",
+ "Format uri ('{0}') uses a substitution placeholder but pattern did not capture anything.": "L'URI de format ('{0}') utilise un espace réservé de remplacement, mais le modèle n'a rien capturé."
+ },
+ "package": {
+ "debug.server.ready.action.debugWithChrome.description": "Démarrez le débogage avec le 'Débogueur pour Chrome'.",
+ "debug.server.ready.action.description": "Utilisation de l'URI quand le serveur est prêt.",
+ "debug.server.ready.action.openExternally.description": "Ouvrez l'URI en externe avec l'application par défaut.",
+ "debug.server.ready.action.startDebugging.description": "Exécutez une autre configuration de lancement.",
+ "debug.server.ready.debugConfig.description": "La configuration de débogage à exécuter.",
+ "debug.server.ready.debugConfigName.description": "Nom de la configuration de lancement à exécuter.",
+ "debug.server.ready.killOnServerStop.description": "Arrêter la session enfant lorsque la session parente s’est arrêtée.",
+ "debug.server.ready.pattern.description": "Le serveur est prêt si ce modèle apparaît dans la console de débogage. Le premier groupe de captures doit inclure un URI ou un numéro de port.",
+ "debug.server.ready.serverReadyAction.description": "Traiter un URI quand un programme de serveur en cours de débogage est prêt (indiqué par l'envoi d'une sortie sous la forme 'écoute sur le port 3000' ou 'Écoute en cours sur : https://localhost:5001' dans la console de débogage.)",
+ "debug.server.ready.uriFormat.description": "Chaîne de format utilisée pour construire l'URI à partir d'un numéro de port. Le premier '%s' est remplacé par le numéro de port.",
+ "debug.server.ready.webRoot.description": "Valeur passée à la configuration de débogage pour le 'Débogueur pour Chrome'.",
+ "description": "Ouvrez l'URI dans le navigateur si le serveur en cours de débogage est prêt.",
+ "displayName": "Action de serveur prêt"
+ }
+ }
+}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-fr/translations/extensions/diff.i18n.json b/i18n/vscode-language-pack-fr/translations/extensions/vscode.diff.i18n.json
similarity index 100%
rename from i18n/vscode-language-pack-fr/translations/extensions/diff.i18n.json
rename to i18n/vscode-language-pack-fr/translations/extensions/vscode.diff.i18n.json
diff --git a/i18n/vscode-language-pack-fr/translations/extensions/vscode.docker.i18n.json b/i18n/vscode-language-pack-fr/translations/extensions/vscode.docker.i18n.json
index 5b805e467c..beb5b3828a 100644
--- a/i18n/vscode-language-pack-fr/translations/extensions/vscode.docker.i18n.json
+++ b/i18n/vscode-language-pack-fr/translations/extensions/vscode.docker.i18n.json
@@ -9,8 +9,8 @@
"version": "1.0.0",
"contents": {
"package": {
- "displayName": "Bases du langage Docker",
- "description": "Fournit la coloration syntaxique et la correspondance des crochets dans les fichiers Docker."
+ "description": "Fournit la coloration syntaxique et la correspondance des crochets dans les fichiers Docker.",
+ "displayName": "Bases du langage Docker"
}
}
}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-fr/translations/extensions/vscode.dotenv.i18n.json b/i18n/vscode-language-pack-fr/translations/extensions/vscode.dotenv.i18n.json
new file mode 100644
index 0000000000..ee04a55c2b
--- /dev/null
+++ b/i18n/vscode-language-pack-fr/translations/extensions/vscode.dotenv.i18n.json
@@ -0,0 +1,16 @@
+{
+ "": [
+ "--------------------------------------------------------------------------------------------",
+ "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."
+ ],
+ "version": "1.0.0",
+ "contents": {
+ "package": {
+ "description": "Fournit la mise en surbrillance de la syntaxe et la mise en correspondance des crochets dans les fichiers dotenv.",
+ "displayName": "Concepts de base du langage Dotenv"
+ }
+ }
+}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-fr/translations/extensions/vscode.emmet.i18n.json b/i18n/vscode-language-pack-fr/translations/extensions/vscode.emmet.i18n.json
new file mode 100644
index 0000000000..dee57121e8
--- /dev/null
+++ b/i18n/vscode-language-pack-fr/translations/extensions/vscode.emmet.i18n.json
@@ -0,0 +1,83 @@
+{
+ "": [
+ "--------------------------------------------------------------------------------------------",
+ "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."
+ ],
+ "version": "1.0.0",
+ "contents": {
+ "bundle": {
+ "Emmet Abbreviation": "Abréviation Emmet",
+ "Enter Abbreviation": "Entrer une abréviation",
+ "Invalid emmet.variables field. See https://code.visualstudio.com/docs/editor/emmet#_emmet-configuration for a valid example.": "Champ emmet.variables non valide. Consultez https://code.visualstudio.com/docs/editor/emmet#_emmet-configuration pour obtenir un exemple valide.",
+ "Invalid snippets file. See https://code.visualstudio.com/docs/editor/emmet#_using-custom-emmet-snippets for a valid example.": "Fichier d’extraits de code non valide. Consultez https://code.visualstudio.com/docs/editor/emmet#_using-custom-emmet-snippets pour obtenir un exemple valide.",
+ "Invalid syntax profile. See https://code.visualstudio.com/docs/editor/emmet#_emmet-configuration for a valid example.": "Profil de syntaxe non valide. Consultez https://code.visualstudio.com/docs/editor/emmet#_emmet-configuration pour obtenir un exemple valide."
+ },
+ "package": {
+ "command.balanceIn": "Equilibrer (vers l'intérieur)",
+ "command.balanceOut": "Equilibrer (vers l'extérieur)",
+ "command.decrementNumberByOne": "Décrémenter de 1",
+ "command.decrementNumberByOneTenth": "Décrémenter de 0,1",
+ "command.decrementNumberByTen": "Décrémenter de 10",
+ "command.evaluateMathExpression": "Évaluer l'expression mathématique",
+ "command.incrementNumberByOne": "Incrémenter de 1",
+ "command.incrementNumberByOneTenth": "Incrémenter de 0,1",
+ "command.incrementNumberByTen": "Incrémenter de 10",
+ "command.matchTag": "Aller à la paire correspondante",
+ "command.mergeLines": "Fusionner les lignes",
+ "command.nextEditPoint": "Aller au Point d’édition suivant",
+ "command.prevEditPoint": "Aller au Point d'édition précédent",
+ "command.reflectCSSValue": "Reflèter la valeur CSS",
+ "command.removeTag": "Supprimer une étiquette",
+ "command.selectNextItem": "Sélectionner l’élément suivant",
+ "command.selectPrevItem": "Sélectionner l'élément précédent",
+ "command.showEmmetCommands": "Afficher les commandes Emmet",
+ "command.splitJoinTag": "Séparer / joindre la balise",
+ "command.toggleComment": "Activer/désactiver le commentaire",
+ "command.updateImageSize": "Mettre à jour la taille de l’image",
+ "command.updateTag": "Mettre à jour la balise",
+ "command.wrapWithAbbreviation": "Envelopper avec une abréviation",
+ "description": "Prise en charge d'Emmet pour VS Code",
+ "emmetExclude": "Un tableau des langages pour lesquels les abréviations Emmet ne devraient pas être développées.",
+ "emmetExtensionsPath": "Tableau de chemins d’accès, où chaque chemin peut pointer vers un fichier Emmet syntaxProfiles et/ou d’extrait de code.\r\nEn cas de conflit, les profils/extraits de code des chemins plus récents remplacent ceux des chemins plus anciens.\r\nConsultez https://code.visualstudio.com/docs/editor/emmet pour plus d’informations et pour obtenir un exemple de fichier d’extrait.",
+ "emmetExtensionsPathItem": "Chemin d’accès des fichiers Emmet syntaxProfiles et/ou des extraits de code.",
+ "emmetIncludeLanguages": "Activer les abréviations Emmet dans les langages qui ne sont pas pris en charge par défaut. Ajoutez ici un mappage entre le langage en question et le langage pris en charge par Emmet.\r\n Exemple : `{\"vue-html\": \"html\", \"javascript\": \"javascriptreact\"}`",
+ "emmetOptimizeStylesheetParsing": "Quand la valeur est 'false', la totalité du fichier est analysé, ce qui permet de déterminer si la position actuelle est valide pour le développement des abréviations Emmet. Quand la valeur est 'true', seul le contenu autour de la position actuelle dans les fichiers CSS/SCSS/Less est analysé.",
+ "emmetPreferences": "Préférences utilisées pour modifier le comportement de certaines actions et résolveurs d'Emmet.",
+ "emmetPreferencesAllowCompactBoolean": "Si la valeur est `true`, une notation compacte des attributs booléens est produite.",
+ "emmetPreferencesBemElementSeparator": "Séparateur d’éléments utilisé pour les classes lorsque le filtre BEM est utilisé.",
+ "emmetPreferencesBemModifierSeparator": "Séparateur de modificateur utilisé pour les classes lorsque le filtre BEM est utilisé.",
+ "emmetPreferencesCssAfter": "Symbole à placer à la fin de la propriété CSS pendant le développement des abréviations CSS.",
+ "emmetPreferencesCssBetween": "Symbole à placer entre la propriété CSS et sa valeur pendant le développement des abréviations CSS.",
+ "emmetPreferencesCssColorShort": "Si la valeur est définie sur `true`, les valeurs de couleur telles que `#f` seront développées en `#fff` plutôt que `#ffffff`.",
+ "emmetPreferencesCssFuzzySearchMinScore": "La note minimale (de 0 à 1) que la correspondance de l'abréviation (fuzzy-matched) devrait atteindre. Des valeurs plus faibles peuvent produire de nombreuses correspondances de faux-positifs, des valeurs plus élevées peuvent réduire les correspondances possibles.",
+ "emmetPreferencesCssMozProperties": "Les propriétés css séparées par des virgules qui ont un préfixe 'moz' vendor lorsqu’elles sont utilisées dans une abréviation emmet qui commence par '-'. Mettre une chaîne vide pour éviter le préfixe 'moz'.",
+ "emmetPreferencesCssMsProperties": "Les propriétés css séparées par des virgules qui ont un préfixe 'ms' vendor lorsqu’elles sont utilisées dans une abréviation emmet qui commence par '-'. Mettre une chaîne vide pour éviter le préfixe 'ms'.",
+ "emmetPreferencesCssOProperties": "Les propriétés css séparées par des virgules qui ont un préfixe 'o' vendor lorsqu’elles sont utilisées dans une abréviation emmet qui commence par '-'. Mettre une chaîne vide pour éviter le préfixe 'o'.",
+ "emmetPreferencesCssWebkitProperties": "Les propriétés css séparées par des virgules qui ont un préfixe 'webkit' vendor lorsqu’elles sont utilisées dans une abréviation emmet qui commence par '-'. Mettre une chaîne vide pour éviter le préfixe 'webkit'.",
+ "emmetPreferencesFilterCommentAfter": "Une définition de commentaire qui doit être placée après l’élément correspondant quand un filtre de commentaire est appliqué.",
+ "emmetPreferencesFilterCommentBefore": "Une définition de commentaire qui doit être placée avant l’élément correspondant quand le filtre de commentaire est appliqué.",
+ "emmetPreferencesFilterCommentTrigger": "Une liste de noms d’attributs qui devraient exister en abrégé pour que le filtre de commentaire soit appliqué. Les éléments de la liste doivent être séparés par des virgules.",
+ "emmetPreferencesFloatUnit": "Unité par défaut pour les valeurs de nombres à virgule flottante.",
+ "emmetPreferencesFormatForceIndentTags": "Un tableau de noms de balises qui devraient toujours être indentées.",
+ "emmetPreferencesFormatNoIndentTags": "Un tableau de noms de balises qui ne devraient jamais être indentées.",
+ "emmetPreferencesIntUnit": "Unité par défaut pour les valeurs de nombres entiers.",
+ "emmetPreferencesOutputInlineBreak": "Nombre des éléments inclus frères nécessaires pour que les sauts de ligne soient placés entre ces éléments. Si la valeur est '0', les éléments inclus sont toujours développés sur une seule ligne.",
+ "emmetPreferencesOutputReverseAttributes": "Si la valeur est true, inverse les directions de fusion des attributs au moment de la résolution des extraits.",
+ "emmetPreferencesOutputSelfClosingStyle": "Style des balises de fermeture automatique : html (` `), xml (` `) ou xhtml (` `).",
+ "emmetPreferencesSassAfter": "Symbole à placer à la fin de la propriété CSS pendant le développement des abréviations CSS dans les fichiers Sass.",
+ "emmetPreferencesSassBetween": "Symbole à placer entre la propriété CSS et sa valeur pendant le développement des abréviations CSS dans les fichiers Sass.",
+ "emmetPreferencesStylusAfter": "Symbole à placer à la fin de la propriété CSS pendant le développement des abréviations CSS dans les fichiers Stylus.",
+ "emmetPreferencesStylusBetween": "Symbole à placer entre la propriété CSS et sa valeur pendant le développement des abréviations CSS dans les fichiers Stylus.",
+ "emmetShowAbbreviationSuggestions": "Affiche les abréviations Emmet possibles comme suggestions. Non applicable dans les feuilles de style ou quand emmet.showExpandedAbbreviation a la valeur \"never\".",
+ "emmetShowExpandedAbbreviation": "Affiche les abréviations Emmet développées en tant que suggestions.\r\nL'option \"inMarkupAndStylesheetFilesOnly\" s'applique aux syntaxes html, haml, jade, slim, xml, xsl, css, scss, sass, less et stylus.\r\nL'option \"always\" s'applique à toutes les parties du fichier indépendamment de la balise/du css.",
+ "emmetShowSuggestionsAsSnippets": "Si la valeur est 'true', les suggestions Emmet s'affichent sous forme d'extraits, ce qui vous permet de les ordonner conformément au paramètre '#editor.snippetSuggestions#'.",
+ "emmetSyntaxProfiles": "Définissez le profil pour la syntaxe spécifiée ou utilisez votre propre profil avec des règles spécifiques.",
+ "emmetTriggerExpansionOnTab": "Quand cette option est activée, les abréviations Emmet sont développées quand vous appuyez sur TAB, même lorsque les complétions ne s’affichent pas. Si cette option est désactivée, les complétions qui s’affichent peuvent toujours être acceptées en appuyant sur TAB.",
+ "emmetUseInlineCompletions": "Si `true`, Emmet utilisera les complétions en ligne pour suggérer des extensions. Pour éviter que le fournisseur d'éléments de complétion non en ligne s'affiche aussi souvent lorsque ce paramètre est `true`, réglez `#editor.quickSuggestions#` sur `inline` ou `off` pour l'élément `autre`.",
+ "emmetVariables": "Variables à utiliser dans les extraits de code Emmet."
+ }
+ }
+}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-fr/translations/extensions/vscode.extension-editing.i18n.json b/i18n/vscode-language-pack-fr/translations/extensions/vscode.extension-editing.i18n.json
new file mode 100644
index 0000000000..451f4a6611
--- /dev/null
+++ b/i18n/vscode-language-pack-fr/translations/extensions/vscode.extension-editing.i18n.json
@@ -0,0 +1,33 @@
+{
+ "": [
+ "--------------------------------------------------------------------------------------------",
+ "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."
+ ],
+ "version": "1.0.0",
+ "contents": {
+ "bundle": {
+ "Data URLs are not a valid image source.": "Les URL de données ne sont pas une source d'images valide.",
+ "Embedded SVGs are not a valid image source.": "Les SVG incorporés ne sont pas une source d'images valide.",
+ "Error parsing the when-clause:": "Erreur lors de l’analyse de la clause when :",
+ "Images must use the HTTPS protocol.": "Les images doivent utiliser le protocole HTTPS.",
+ "Language specific editor settings": "Paramètres d'éditeur spécifiques au langage",
+ "Override editor settings for language": "Remplacer les paramètres de l'éditeur pour le langage",
+ "Relative badge URLs require a repository with HTTPS protocol to be specified in this package.json.": "Les URL de badge relatives nécessitent un dépôt avec le protocole HTTPS dans package.json.",
+ "Relative image URLs require a repository with HTTPS protocol to be specified in the package.json.": "Les URL d'image relatives nécessitent un dépôt avec le protocole HTTPS dans package.json.",
+ "Remove activation event": "Supprimer l'événement d'activation",
+ "SVGs are not a valid image source.": "Les SVG ne sont pas une source d'images valide.",
+ "This activation event can be removed as VS Code generates these automatically from your package.json contribution declarations.": "Cet événement d’activation peut être supprimé, car VS Code les génère automatiquement à partir de vos déclarations de contribution package.json.",
+ "This activation event can be removed for extensions targeting engine version ^1.75.0 as VS Code will generate these automatically from your package.json contribution declarations.": "Cet événement d’activation peut être supprimé pour les extensions ciblant la version du moteur ^1.75.0, car VS Code les génère automatiquement à partir de vos déclarations de contribution package.json.",
+ "This activation event cannot be explicitly listed by your extension.": "Cet événement d’activation ne peut pas être répertorié explicitement par votre extension.",
+ "This proposal cannot be used because for this extension the product defines a fixed set of API proposals. You can test your extension but before publishing you MUST reach out to the VS Code team.": "Impossible d’utiliser cette proposition, car pour cette extension, le produit définit un ensemble fixe de propositions d’API. Vous pouvez tester votre extension, mais avant de publier, vous DEVEZ contacter l’équipe VS Code.",
+ "Using '*' activation is usually a bad idea as it impacts performance.": "L’utilisation de l’activation « * » est généralement une mauvaise idée, car elle affecte les performances."
+ },
+ "package": {
+ "description": "Fournit des fonctions de linting pour la création d’extensions.",
+ "displayName": "Création d’extension"
+ }
+ }
+}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-fr/translations/extensions/vscode.fsharp.i18n.json b/i18n/vscode-language-pack-fr/translations/extensions/vscode.fsharp.i18n.json
index 253af2ef08..dc94fb8396 100644
--- a/i18n/vscode-language-pack-fr/translations/extensions/vscode.fsharp.i18n.json
+++ b/i18n/vscode-language-pack-fr/translations/extensions/vscode.fsharp.i18n.json
@@ -9,8 +9,8 @@
"version": "1.0.0",
"contents": {
"package": {
- "displayName": "Bases du langage F#",
- "description": "Fournit des extraits de code, la coloration syntaxique, la correspondance des crochets et le repli dans les fichiers F#."
+ "description": "Fournit des extraits de code, la coloration syntaxique, la correspondance des crochets et le repli dans les fichiers F#.",
+ "displayName": "Bases du langage F#"
}
}
}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-fr/translations/extensions/vscode.git-base.i18n.json b/i18n/vscode-language-pack-fr/translations/extensions/vscode.git-base.i18n.json
new file mode 100644
index 0000000000..2d8740c60a
--- /dev/null
+++ b/i18n/vscode-language-pack-fr/translations/extensions/vscode.git-base.i18n.json
@@ -0,0 +1,30 @@
+{
+ "": [
+ "--------------------------------------------------------------------------------------------",
+ "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."
+ ],
+ "version": "1.0.0",
+ "contents": {
+ "bundle": {
+ "Branch name": "Nom de la branche",
+ "Choose a URL to clone from.": "Choisissez l'URL à partir de laquelle effectuer le clonage.",
+ "No remote repositories found.": "Dépôts distants introuvables.",
+ "Provide repository URL": "Indiquer l'URL du dépôt",
+ "Provide repository URL or pick a repository source.": "Indiquez l'URL du dépôt, ou choisissez une source de dépôt.",
+ "Repository name": "Nom du dépôt",
+ "Repository name (type to search)": "Nom du dépôt (tapez pour effectuer une recherche)",
+ "URL": "URL",
+ "recently opened": "récemment ouvert",
+ "remote sources": "sources distantes",
+ "{0} Error: {1}": "{0} Erreur : {1}"
+ },
+ "package": {
+ "command.api.getRemoteSources": "Obtenir les sources distantes",
+ "description": "Contributions et sélecteurs statiques Git.",
+ "displayName": "Git Base"
+ }
+ }
+}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-fr/translations/extensions/vscode.git.i18n.json b/i18n/vscode-language-pack-fr/translations/extensions/vscode.git.i18n.json
new file mode 100644
index 0000000000..11a1cbd5a4
--- /dev/null
+++ b/i18n/vscode-language-pack-fr/translations/extensions/vscode.git.i18n.json
@@ -0,0 +1,807 @@
+{
+ "": [
+ "--------------------------------------------------------------------------------------------",
+ "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."
+ ],
+ "version": "1.0.0",
+ "contents": {
+ "bundle": {
+ "\n\nAre you sure you want to discard ALL changes in {0} files?": "\n\nVoulez-vous vraiment ignorer TOUTES les modifications apportées aux {0} fichiers ?",
+ "\n\nAre you sure you want to discard changes in '{0}'?": "\n\nVoulez-vous vraiment ignorer les modifications apportées à « {0} » ?",
+ "\n and {0} more file{1}...": "\n et {0} plus de{1}fichiers...",
+ "\"{0}\" has fingerprint \"{1}\"": "«{0}» a une empreinte digitale «{1}»",
+ "$(info) Remote \"{0}\" has no tags.": "$(info) le {0} distant n’a pas d’étiquettes.",
+ "$(info) This repository has no stashes.": "$(info) Ce référentiel n’a aucun stash.",
+ "$(info) This repository has no tags.": "$(info) Ce référentiel n’a aucune étiquette.",
+ "$(info) This repository has no worktrees.": "$(info) Ce dépôt n’a aucune arborescence de travail.",
+ "A branch named \"{0}\" already exists": "Une branche nommée '{0}' existe déjà",
+ "A git repository was found in the parent folders of the workspace or the open file(s). Would you like to open the repository?": "Un dépôt Git a été trouvé dans les dossiers parents de l’espace de travail ou dans les fichiers ouverts. Voulez-vous ouvrir le référentiel ?",
+ "A worktree already exists at \"{0}\".": "Une arborescence de travail existe déjà à l'emplacement « {0} ».",
+ "Absolute paths not supported in \"git.scanRepositories\" setting.": "Chemins d’accès absolus non supportés dans le paramètre 'git.scanRepositories'.",
+ "Add Remote": "Ajouter un dépôt distant",
+ "Add a new remote...": "Ajoutez une nouvelle machine distante...",
+ "Add remote from URL": "Ajouter un dépôt distant à partir d'une URL",
+ "Add remote from {0}": "Ajouter un dépôt distant à partir de {0}",
+ "Add to Workspace": "Ajouter à l'espace de travail",
+ "All Repositories": "Tous les référentiels",
+ "Always": "Toujours",
+ "Always Pull": "Toujours tirer (pull)",
+ "Always Replace Local Tag(s)": "Toujours remplacer la ou les étiquettes locales",
+ "Are you sure you want to DELETE the following untracked file: '{0}'?{1}": "Voulez-vous vraiment supprimer le fichier non suivi suivant : '{0}' ?{1}",
+ "Are you sure you want to DELETE the {0} untracked files?{1}": "Voulez-vous vraiment SUPPRIMER les {0} fichiers non suivis ?{1}",
+ "Are you sure you want to continue connecting?": "Voulez-vous vraiment continuer à vous connecter ?",
+ "Are you sure you want to create an empty commit?": "Êtes-vous sûr d vouloir créer un commit vide ?",
+ "Are you sure you want to delete branch \"{0}\"? This action will permanently remove the branch reference from the repository.": "Voulez-vous vraiment supprimer la branche « {0} » ? Cette action supprimera définitivement la référence de la branche dans le dépôt.",
+ "Are you sure you want to delete tag \"{0}\"? This action will permanently remove the tag reference from the repository.": "Voulez-vous vraiment supprimer la balise « {0} » ? Cette action supprimera définitivement la référence de l’étiquette dans le dépôt.",
+ "Are you sure you want to discard ALL changes in {0} files?\n\nThis is IRREVERSIBLE!\nYour current working set will be FOREVER LOST if you proceed.": "Voulez-vous vraiment ignorer TOUTES les modifications apportées aux fichiers {0} ?\n\nCette opération est IRRÉVERSIBLE.\nVotre plage de travail actuelle sera DÉFINITIVEMENT perdue si vous continuez.",
+ "Are you sure you want to discard changes in '{0}'?": "Voulez-vous vraiment ignorer les modifications apportées à « {0} » ?",
+ "Are you sure you want to drop ALL stashes? There are {0} stashes that will be subject to pruning, and MAY BE IMPOSSIBLE TO RECOVER.": "Voulez-vous vraiment supprimer TOUS les stashes ? {0} stashs seront soumis à un nettoyage et PEUVENT ÊTRE IMPOSSIBLES À RÉCUPÉRER.",
+ "Are you sure you want to drop ALL stashes? There is 1 stash that will be subject to pruning, and MAY BE IMPOSSIBLE TO RECOVER.": "Voulez-vous vraiment supprimer TOUS les stashes ? Il y a 1 stash qui va faire l’objet d’un nettoyage et PEUT ÊTRE IMPOSSIBLE À RÉCUPÉRER.",
+ "Are you sure you want to drop the stash: {0}?": "Voulez-vous vraiment annuler le stash : {0} ?",
+ "Are you sure you want to restore '{0}'?": "Voulez-vous vraiment restaurer « {0} » ?",
+ "Are you sure you want to restore ALL {0} files?": "Voulez-vous vraiment restaurer TOUS les fichiers {0} ?",
+ "Are you sure you want to stage {0} files with merge conflicts?": "Voulez-vous vraiment créer {0} fichiers avec des conflits de fusion ?",
+ "Are you sure you want to stage {0} with merge conflicts?": "Voulez-vous vraiment créer {0} avec des conflits de fusion ?",
+ "Ask Me Later": "Me demander plus tard",
+ "Branch \"{0}\" already exists": "La branche « {0} » existe déjà",
+ "Branch \"{0}\" is already checked out in the current repository.": "La branche « {0} » est déjà vérifiée dans le référentiel actuel.",
+ "Branch \"{0}\" is already checked out in the current window.": "La branche « {0} » est déjà vérifiée dans la fenêtre actuelle.",
+ "Branch \"{0}\" is already checked out in the worktree at \"{1}\".": "La branche « {0} » est déjà vérifiée dans l’arborescence de travail à « {1} ».",
+ "Branch name": "Nom de la branche",
+ "Branch name needs to match regex: {0}": "Le nom de la branche doit correspondre à la regex : {0}",
+ "Branches": "Branches",
+ "Can't force push refs to remote. The tip of the remote-tracking branch has been updated since the last checkout. Try running \"Pull\" first to pull the latest changes from the remote branch first.": "Nous n’avons pas pu forcer le transfert des références vers la télécommande. Le conseil de la branche de suivi à distance a été mis à jour depuis le dernier paiement. Essayez d’abord d’exécuter « Pull » pour extraire d’abord les dernières modifications de la branche distante.",
+ "Can't push refs to remote. Try running \"Pull\" first to integrate your changes.": "Impossible de pousser les références vers la branche distante. Exécutez d'abord 'Récupérer' pour intégrer vos modifications.",
+ "Can't undo because HEAD doesn't point to any commit.": "Impossible d’annuler car HEAD ne pointe vers aucune validation.",
+ "Changes": "Changements",
+ "Checking Out Branch/Tag...": "Extraction de la branche/étiquette...",
+ "Checking Out Changes...": "Extraction des modifications...",
+ "Checkout Branch/Tag...": "Extraire la branche/l'étiquette...",
+ "Choose Folder...": "Choisir un dossier...",
+ "Choose a folder to clone {0} into": "Choisir un dossier dans lequel cloner {0}",
+ "Choose a repository": "Choisir un dépôt",
+ "Choose which repository to clone": "Choisir le référentiel à cloner",
+ "Choose which repository to publish": "Choisir le référentiel à publier",
+ "Clear whitespace characters": "Effacer les espaces blancs",
+ "Clone again": "Cloner à nouveau",
+ "Clone from URL": "URL de dépôt",
+ "Clone from {0}": "Cloner à partir de {0}",
+ "Cloning git repository \"{0}\"...": "Clonage du dépôt Git '{0}'...",
+ "Commit": "Valider",
+ "Commit & Push Changes": "Valider et envoyer (push) les modifications",
+ "Commit & Sync Changes": "Valider et synchroniser les modifications",
+ "Commit Anyway": "Commiter quand même",
+ "Commit Changes": "Valider les modifications",
+ "Commit Changes on \"{0}\"": "Valider les modifications sur « {0} »",
+ "Commit Changes to New Branch": "Valider les modifications apportées à la nouvelle branche",
+ "Commit Hash": "Commiter le code de hachage",
+ "Commit message": "Message de validation",
+ "Commit operation was cancelled due to empty commit message.": "L’opération de validation a été annulée en raison d’un message de validation vide.",
+ "Commit to New Branch & Push Changes": "Valider dans une nouvelle branche et envoyer (push) des modifications",
+ "Commit to New Branch & Synchronize Changes": "Valider dans une nouvelle branche et synchroniser les modifications",
+ "Commit to a New Branch": "Valider dans une nouvelle branche",
+ "Commits without verification are not allowed, please enable them with the \"git.allowNoVerifyCommit\" setting.": "Les validations sans vérification ne sont pas autorisées. Activez-les avec le paramètre « git.allowNoVerifyCommit ».",
+ "Committing & Pushing Changes...": "Validation et envoi (push) des modifications...",
+ "Committing & Synchronizing Changes...": "Validation et synchronisation des modifications...",
+ "Committing Changes to New Branch...": "Validation des modifications apportées à la nouvelle branche...",
+ "Committing Changes...": "Validation des modifications...",
+ "Committing to New Branch & Pushing Changes...": "Validation dans une nouvelle branche et envoi (push) des modifications...",
+ "Committing to New Branch & Synchronizing Changes...": "Validation de la nouvelle branche et synchronisation des modifications...",
+ "Conflict: Added By Them": "Conflit : ajout de leur part",
+ "Conflict: Added By Us": "Conflit : ajout de notre part",
+ "Conflict: Both Added": "Conflit : ajout de leur part et de notre part",
+ "Conflict: Both Deleted": "Conflit : suppression de leur part et de notre part",
+ "Conflict: Both Modified": "Conflit : modification de leur part et de notre part",
+ "Conflict: Deleted By Them": "Conflit : suppression de leur part",
+ "Conflict: Deleted By Us": "Conflit : suppression de notre part",
+ "Continue Merge": "Continuer la fusion",
+ "Continue Rebase": "Poursuite du rebasement",
+ "Continuing Merge...": "Poursuite de la fusion...",
+ "Continuing Rebase...": "Poursuite du rebasement...",
+ "Copy Commit Hash": "Copier un code de hachage de validation",
+ "Could not clone your repository as Git is not installed.": "Impossible de cloner votre dépôt, car Git n’est pas installé.",
+ "Create Empty Commit": "Créer un commit vide",
+ "Create New Branch": "Créer une nouvelle branche",
+ "Current": "Actuelle",
+ "Current commit message only contains whitespace characters": "Le message de validation actuel contient uniquement des espaces",
+ "Delete All {0} Files": "Supprimer les {0} fichiers",
+ "Delete Branch": "Supprimer la branche",
+ "Delete File": "Supprimer le fichier",
+ "Delete Tag": "Supprimer la balise",
+ "Deleted": "Supprimé",
+ "Discard 1 Tracked File": "Ignorer 1 fichier suivi",
+ "Discard All {0} Files": "Ignorer les {0} fichiers",
+ "Discard All {0} Tracked Files": "Ignorer les {0} fichiers suivis",
+ "Discard File": "Ignorer le fichier",
+ "Don't Pull": "Ne pas tirer (pull)",
+ "Don't Show Again": "Ne plus afficher",
+ "Download Git": "Télécharger Git",
+ "Enables the following features: {0}": "Active les fonctionnalités suivantes : {0}",
+ "Failed to authenticate to git remote.": "Échec de l'authentification auprès de git remote.",
+ "Failed to authenticate to git remote:\n\n{0}": "Échec de l'authentification auprès de git remote :\n\n{0}",
+ "Failed to delete using the Recycle Bin. Do you want to permanently delete instead?": "Impossible de supprimer en utilisant la corbeille. Voulez-vous supprimer définitivement à la place ?",
+ "Failed to delete using the Trash. Do you want to permanently delete instead?": "Impossible de supprimer en utilisant la corbeille. Voulez-vous supprimer définitivement à la place ?",
+ "Failed to open changes between \"{0}\" and \"{1}\": {2}": "Désolé, échec de l’ouverture des modifications entre « {0} » et « {1} » : {2}",
+ "File \"{0}\" was deleted by them and modified by us.\n\nWhat would you like to do?": "Ils ont supprimé le fichier '{0}', et nous l'avons modifié.\n\nQue voulez-vous faire ?",
+ "File \"{0}\" was deleted by us and modified by them.\n\nWhat would you like to do?": "Nous avons supprimé le fichier '{0}', et ils l'ont supprimé.\n\nQue voulez-vous faire ?",
+ "Force Checkout": "Forcer l'extraction",
+ "Force Delete": "Forcer la suppression",
+ "Force push is not allowed, please enable it with the \"git.allowForcePush\" setting.": "L’envoi forcé n’est pas autorisé. Activez-le avec le paramètre « git.allowForcePush ».",
+ "Git Blame Information": "Informations sur Git Blame",
+ "Git History": "Historique git",
+ "Git Local Changes (Index)": "Modifications (index) locales Git",
+ "Git Local Changes (Working Tree)": "Modifications (arborescence de travail) locales Git",
+ "Git error": "Erreur Git",
+ "Git not found. Install it or configure it using the \"git.path\" setting.": "Git non trouvé. Installez-le et configurez-le en utilisant le paramètre 'git.path'.",
+ "Git repositories were found in the parent folders of the workspace or the open file(s). Would you like to open the repositories?": "Des dépôts Git ont été trouvés dans les dossiers parents de l’espace de travail ou dans les fichiers ouverts. Voulez-vous ouvrir les référentiels ?",
+ "Git: {0}": "Git : {0}",
+ "HEAD version of \"{0}\" is not available.": "La version HEAD de '{0}' n'est pas disponible.",
+ "Hard wrap all lines": "Effectuer un hard wrap de toutes les lignes",
+ "Hard wrap line": "Effectuer un hard wrap de la ligne",
+ "Ignored": "Ignoré",
+ "Incoming": "Entrant",
+ "Incoming Changes": "Modifications entrantes",
+ "Incoming Changes (added)": "Modifications à venir (ajoutées)",
+ "Incoming Changes (deleted)": "Modifications entrantes (supprimées)",
+ "Incoming Changes (modified)": "Modifications entrantes (modifiées)",
+ "Incoming Changes (renamed)": "Modifications entrantes (renommées)",
+ "Index Added": "Index ajouté",
+ "Index Copied": "Index copié",
+ "Index Deleted": "Index supprimé",
+ "Index Modified": "Index modifié",
+ "Index Renamed": "Index renommé",
+ "Initialize Repository": "Initialiser le dépôt",
+ "Intent to Add": "Intention à ajouter",
+ "Intent to Rename": "Intention à renommer",
+ "Invalid branch name": "Nom de branche non valide",
+ "It looks like the current branch \"{0}\" might have been rebased. Are you sure you still want to pull into it?": "Il semble que la branche actuelle '{0}' ait été rebasée. Voulez-vous vraiment effectuer un tirage (pull) dans celle-ci ?",
+ "It looks like the current branch might have been rebased. Are you sure you still want to pull into it?": "Il semble que la branche actuelle ait été rebasée. Voulez-vous vraiment effectuer un tirage (pull) dans celle-ci ?",
+ "It's not possible to change the commit message in the middle of a rebase. Please complete the rebase operation and use interactive rebase instead.": "Il n’est pas possible de changer le message de validation au milieu d’un rebasage. Terminez l'opération de rebasage et utilisez le rebasage interactif à la place.",
+ "Keep Our Version": "Conserver notre version",
+ "Keep Their Version": "Conserver leur version",
+ "Learn More": "En savoir plus",
+ "Make sure you configure your \"user.name\" and \"user.email\" in git.": "Assurez-vous de configurer votre 'user.name' et 'user.email' dans git.",
+ "Manage Unsafe Repositories": "Gérer des référentiels non sécurisés",
+ "Merge Changes": "Fusionner les changements",
+ "Message": "Message",
+ "Message (commit on \"{0}\")": "Message (commit sur '{0}')",
+ "Message ({0} to commit on \"{1}\")": "Message ({0} à valider sur '{1}')",
+ "Message ({0} to commit)": "Message ({0} à valider)",
+ "Migrate Changes": "Migrer les modifications",
+ "Modified": "Modifié le",
+ "Move to Recycle Bin": "Déplacer vers la Corbeille",
+ "Move to Trash": "Déplacer vers la corbeille",
+ "Never": "Jamais",
+ "No": "Non",
+ "No hunk found at cursor position.": "Aucun hunk n’a été trouvé à la position du curseur.",
+ "No rebase in progress.": "Pas de rebase en cours.",
+ "Not Committed Yet": "Pas encore validé",
+ "Not Committed Yet (Staged)": "Pas encore validé (En attente)",
+ "OK": "OK",
+ "OK, Don't Ask Again": "OK, Ne plus me demander à nouveau",
+ "OK, Don't Show Again": "OK, Ne plus afficher",
+ "Open": "Ouvrir ",
+ "Open Commit": "Ouvrir la validation",
+ "Open Comparison": "Comparaison de plans",
+ "Open Existing Repository Clone": "Ouvrir le clone du dépôt existant",
+ "Open File": "Ouvrir un fichier",
+ "Open Git Log": "Ouvrir le journal Git",
+ "Open Merge": "Ouvrir la fusion",
+ "Open Repositories In Parent Folders": "Ouvrir les référentiels dans les dossiers parents",
+ "Open Repository": "Ouvrir le dépôt",
+ "Open Settings": "Ouvrir les paramètres",
+ "Open Worktree in Current Window": "Ouvrez l’arborescence de travail dans la fenêtre active",
+ "Open Worktree in New Window": "Ouvrez l’arborescence de travail dans une nouvelle fenêtre",
+ "Open in New Window": "Ouvrir dans une nouvelle fenêtre",
+ "Optionally provide a stash message": "Spécifier éventuellement un message pour la remise (stash)",
+ "Passphrase": "Phrase secrète",
+ "Pick a branch to pull from": "Sélectionner une branche à partir de laquelle tirer (pull)",
+ "Pick a provider to publish the branch \"{0}\" to:": "Choisissez un fournisseur sur lequel publier la branche '{0}' :",
+ "Pick a remote to publish the branch \"{0}\" to:": "Choisissez un dépôt distant où publier la branche '{0}' :",
+ "Pick a remote to pull the branch from": "Choisir un dépôt distant duquel extraire la branche",
+ "Pick a remote to remove": "Choisir un dépôt distant à supprimer",
+ "Pick a repository to mark as safe and open": "Choisir un dépôt à marquer comme sécuritaire et ouvert",
+ "Pick a repository to open": "Choisir un référentiel à ouvrir",
+ "Pick a repository to reopen": "Choisir un référentiel à rouvrir",
+ "Pick a stash to apply": "Choisir une remise (stash) à appliquer",
+ "Pick a stash to drop": "Choisir un remisage (stash) à supprimer",
+ "Pick a stash to pop": "Choisir une remise (stash) à appliquer et supprimer",
+ "Pick a stash to view": "Choisir un remisage (stash) à afficher",
+ "Pick workspace folder to initialize git repo in": "Choisir le dossier d’espace de travail dans lequel initialiser le dépôt git",
+ "Please check out a branch to push to a remote.": "Vous devez extraire une branche dont vous souhaitez effectuer le Push vers un emplacement distant.",
+ "Please clean your repository working tree before checkout.": "Nettoyez l'arborescence de travail de votre dépôt avant l'extraction.",
+ "Please provide a commit message": "Indiquez un message de validation",
+ "Please provide a message to annotate the tag": "Spécifiez un message pour annoter l’étiquette",
+ "Please provide a new branch name": "Fournissez un nouveau nom de branche",
+ "Please provide a remote name": "Fournissez un nom de dépôt distant",
+ "Please provide a tag name": "Spécifiez un nom d’étiquette",
+ "Please provide a worktree path": "Veuillez indiquer un chemin d’arborescence de travail",
+ "Please provide the commit hash": "Indiquez le code de hachage du commit",
+ "Proceed": "Continuer",
+ "Proceed with migrating changes to the current repository?": "Voulez-vous poursuivre la migration des modifications vers le dépôt actuel ?",
+ "Publish Branch": "Publier la branche",
+ "Publish Branch \"{0}\"/{Locked=\"Branch\"}Do not translate \"Branch\" as it is a git term": "Publier la Branch « {0} »",
+ "Publish Branch/{Locked=\"Branch\"}Do not translate \"Branch\" as it is a git term": "Publier Branch",
+ "Publish to {0}": "Publier sur {0}",
+ "Publish to...": "Publier sur...",
+ "Publishing Branch \"{0}\".../{Locked=\"Branch\"}Do not translate \"Branch\" as it is a git term": "Publication en cours de la Branch « {0} »...",
+ "Publishing Branch.../{Locked=\"Branch\"}Do not translate \"Branch\" as it is a git term": "Publication de Branch...",
+ "Pull": "Pull",
+ "Pull {0} and push {1} commits between {2}/{3}": "Tirer (pull) {0} et envoyer (push) {1} commits entre {2}/{3}",
+ "Pull {0} commits from {1}/{2}": "Tirer (pull) {0} commits de {1}/{2}",
+ "Push {0} commits to {1}/{2}": "Envoyer (push) {0} commits à {1}/{2}",
+ "Rebasing": "Rebase en cours",
+ "Regenerate Branch Name": "Régénérer le nom de la branche",
+ "Remote \"{0}\" already exists.": "Le dépôt distant '{0}' existe déjà.",
+ "Remote branch at {0}": "Branche distante à {0}",
+ "Remote name": "Nom du dépôt distant",
+ "Remote name format invalid": "Format non valide du nom de dépôt distant",
+ "Remote tag at {0}": "Étiquette distante au niveau de {0}",
+ "Reopen Closed Repositories": "Rouvrir les référentiels fermés",
+ "Replace Local Tag(s)": "Remplacer la ou les étiquettes locales",
+ "Restore All {0} Files": "Restaurer les {0} fichiers",
+ "Restore File": "Restaurer le fichier",
+ "Save All & Commit Changes": "Enregistrer tout et valider les modifications",
+ "Save All & Stash": "Tout enregistrer et faire un stash",
+ "Select Worktree Destination": "Sélectionner la destination de l’arborescence de travail",
+ "Select a branch or tag to checkout": "Sélectionner une branche ou une étiquette à extraire",
+ "Select a branch or tag to create the new worktree from": "Sélectionnez une branche ou une étiquette pour créer la nouvelle arborescence de travail à partir de",
+ "Select a branch or tag to merge from": "Sélectionner une branche ou une étiquette à fusionner",
+ "Select a branch to checkout in detached mode": "Sélectionner une branche à extraire en mode détaché",
+ "Select a branch to delete": "Sélectionner une branche à supprimer",
+ "Select a branch to rebase onto": "Sélectionner une branche où rebaser",
+ "Select a ref to create the branch from": "Sélectionner une référence à partir de laquelle créer la branche",
+ "Select a reference to compare with": "Sélectionnez une référence à comparer",
+ "Select a remote branch to delete": "Sélectionner une branche distante à supprimer",
+ "Select a remote tag to delete": "Sélectionner une étiquette distante à supprimer",
+ "Select a remote to delete a tag from": "Sélectionner un dépôt distant à partir duquel supprimer une étiquette",
+ "Select a remote to fetch": "Sélectionner un dépôt distant à extraire",
+ "Select a tag to delete": "Sélectionner une étiquette à supprimer",
+ "Select a worktree to delete": "Sélectionner une arborescence de travail à supprimer",
+ "Select a worktree to migrate changes from": "Sélectionnez une arborescence de travail à partir de laquelle migrer les modifications",
+ "Select as Repository Destination": "Sélectionner comme destination de dépôt",
+ "Select as Worktree Destination": "Sélectionner comme destination d’arborescence de travail",
+ "Show Changes": "Afficher les changements",
+ "Show Command Output": "Afficher la sortie de commande",
+ "Staged Changes": "Changements indexés",
+ "Stash & Checkout": "Faire un stash et extraire",
+ "Stash Anyway": "Faire un stash quand même",
+ "Stash message": "Message pour la remise (stash)",
+ "Stashed Changes": "Modifications cachées",
+ "Successfully pushed.": "Envoi (push) réussi.",
+ "Synchronize Changes": "Synchroniser les changements",
+ "Synchronizing Changes...": "Synchronisation des modifications...",
+ "Syncing. Cancelling may cause serious damages to the repository": "Synchronisation. L'annulation peut endommager gravement le dépôt",
+ "Tag at {0}": "Étiquette sur {0}",
+ "Tag name": "Nom de l’étiquette",
+ "Tags": "Balises",
+ "The \"{0}\" repository has {1} submodules which won't be opened automatically. You can still open each one individually by opening a file within.": "Le référentiel «{0}» a {1} sous-modules qui ne seront pas ouverts automatiquement. Vous pouvez toujours ouvrir chacun d’eux individuellement en ouvrant un fichier dans.",
+ "The \"{0}\" repository has {1} worktrees which won't be opened automatically. You can still open each one individually by opening a file within.": "Le référentiel « {0} » contient {1} arborescences de travail qui ne seront pas ouvertes automatiquement. Vous pouvez toujours ouvrir chacun d’eux individuellement en ouvrant un fichier dans.",
+ "The active branch cannot be deleted.": "Impossible de supprimer la branche active.",
+ "The branch \"{0}\" has no remote branch. Would you like to publish this branch?": "La branche '{0}' n'a pas de branche distante. Voulez-vous publier cette branche ?",
+ "The branch \"{0}\" is not fully merged. Delete anyway?": "La branche '{0}' n'est pas complètement fusionnée. Supprimer quand même ?",
+ "The changes are already present in the current branch.": "Les modifications sont déjà présentes dans la branche active.",
+ "The current branch is not published to the remote. Would you like to publish it to access your changes elsewhere?": "La branche active n’est pas publiée sur le référentiel distant. Voulez-vous le publier pour accéder à vos modifications ailleurs ?",
+ "The following file has unresolved diagnostics: '{0}'.\n\nHow would you like to proceed?": "Le fichier suivant a des diagnostics non résolues : '{0}'.\n\nComment voulez-vous procéder ?",
+ "The following file has unsaved changes which won't be included in the commit if you proceed: {0}.\n\nWould you like to save it before committing?": "Le fichier suivant a des changements non enregistrés qui ne seront pas inclus dans la validation si vous continuez : {0}.\n\nVoulez-vous l'enregistrer avant la validation ?",
+ "The following file has unsaved changes which won't be included in the stash if you proceed: {0}.\n\nWould you like to save it before stashing?": "Le fichier suivant contient des changements non enregistrés qui ne seront pas inclus dans le stash si vous continuez{0}: .\n\nVoulez-vous l’enregistrer avant de faire un stash ?",
+ "The git repositories in the current folder are potentially unsafe as the folders are owned by someone other than the current user.": "Les référentiels Git dans le dossier actif sont potentiellement dangereux, car les dossiers appartiennent à une autre personne que l’utilisateur actuel.",
+ "The git repository at \"{0}\" has too many active changes, only a subset of Git features will be enabled.": "Le dépôt Git dans '{0}' a trop de modifications actives, seul un sous-ensemble de fonctionnalités Git sera activé.",
+ "The git repository in the current folder is potentially unsafe as the folder is owned by someone other than the current user.": "Le référentiel Git dans le dossier actif est potentiellement dangereux, car le dossier appartient à une autre personne que l’utilisateur actuel.",
+ "The last commit was a merge commit. Are you sure you want to undo it?": "Le dernier commit était un commit de fusion. Voulez-vous vraiment l'annuler ?",
+ "The new branch will be \"{0}\"": "La nouvelle branche sera « {0} »",
+ "The remote branch of the active branch cannot be deleted.": "Impossible de supprimer la branche distante de la branche active.",
+ "The repository does not have any changes.": "Le référentiel n’a aucune modification.",
+ "The repository does not have any commits. Please make an initial commit before creating a stash.": "Le référentiel n’a pas de validation. Veuillez effectuer une validation initiale avant de créer une entrée stash.",
+ "The repository does not have any staged changes.": "Le référentiel n’a pas de changement indexé.",
+ "The repository does not have any untracked changes.": "Le référentiel n’a pas de modifications non suivies.",
+ "The selection range does not contain any changes.": "La plage de sélection ne contient aucune modification.",
+ "The source repository could not be found.": "Le référentiel source est introuvable.",
+ "The worktree contains modified or untracked files. Do you want to force delete?": "L’arborescence de travail contient des fichiers modifiés ou non suivis. Voulez-vous forcer la suppression ?",
+ "There are known issues with the installed Git \"{0}\". Please update to Git >= 2.27 for the git features to work correctly.": "Il existe des problèmes connus avec la version installée de Git {0}. Effectuez une mise à jour vers Git >= 2.27 pour permettre aux fonctionnalités Git de s'exécuter correctement.",
+ "There are merge conflicts from migrating changes. Please resolve them before committing.": "Des conflits de fusion se sont produits lors de la migration des modifications. Veuillez les résoudre avant de valider.",
+ "There are merge conflicts while applying the stash. Please resolve them before committing your changes.": "Il existe des conflits de fusion lors de l’application du stash. Veuillez les résoudre avant de valider vos modifications.",
+ "There are merge conflicts. Please resolve them before committing your changes.": "Il existe des conflits de fusion. Veuillez les résoudre avant de valider vos modifications.",
+ "There are no available repositories": "Aucun dépôt disponible",
+ "There are no available repositories matching the filter": "Aucun référentiel disponible ne correspond au filtre",
+ "There are no changes between \"{0}\" and \"{1}\".": "Désolé, il n’y a aucune modification entre « {0} » et « {1} ».",
+ "There are no changes in the selected worktree to migrate.": "Il n’y a aucune modification à migrer dans l’arborescence de travail sélectionnée.",
+ "There are no changes to commit.": "Il n'existe aucun changement à valider.",
+ "There are no changes to stash.": "Aucune modification à remiser (stash).",
+ "There are no staged changes to commit.\n\nWould you like to stage all your changes and commit them directly?": "Il n’existe aucun changement indexé à valider.\n\nVoulez-vous indexer tous vos changements et les valider directement ?",
+ "There are no staged changes to stash.": "Il n’y a aucun changement indexé à remiser.",
+ "There are no stashes in the repository.": "Aucune remise (stash) à restaurer dans ce dépôt.",
+ "There are {0} files that have unresolved diagnostics.\n\nHow would you like to proceed?": "{0} fichiers ont des diagnostics non résolus.\n\nComment voulez-vous procéder ?",
+ "There are {0} unsaved files.\n\nWould you like to save them before committing?": "Il y a {0} fichiers non sauvegardés.\n\nSouhaitez-vous sauvegarder avant de commiter ?",
+ "There are {0} unsaved files.\n\nWould you like to save them before stashing?": "{0} fichiers n’ont pas été enregistrés.\n\nVoulez-vous les enregistrer avant de faire un stash ?",
+ "There were merge conflicts while cherry picking the changes. Resolve the conflicts before committing them.": "Des conflits de fusion se sont produit lors de la sélection des modifications. Résolvez les conflits avant de les valider.",
+ "This action will pull and push commits from and to \"{0}/{1}\".": "Cette action permet d’extraire et d’envoyer (push) les validations à partir de et vers « {0}/{1} ».",
+ "This is IRREVERSIBLE!\nThese files will be FOREVER LOST if you proceed.": "Cette opération est IRRÉVERSIBLE.\nCes fichiers seront définitivement perdus si vous l’effectuez.",
+ "This is IRREVERSIBLE!\nThis file will be FOREVER LOST if you proceed.": "Cette opération est IRRÉVERSIBLE.\nCe fichier sera PERDU À JAMAIS si vous continuez.",
+ "This repository has no remotes configured to fetch from.": "Ce dépôt n'a aucun dépôt distant configuré pour rappatrier.",
+ "This will apply the worktree's changes to this repository and discard changes in the worktree.\nThis is IRREVERSIBLE!": "Cette opération appliquera les modifications de l’arborescence de travail à ce dépôt et ignorera les modifications dans l’arborescence de travail.\nCette opération est IRRÉVERSIBLE !",
+ "This will create a Git repository in \"{0}\". Are you sure you want to continue?": "Ceci va créer un dépôt Git dans '{0}'. Êtes-vous sûr de vouloir continuer ?",
+ "Too many changes were detected. Only the first {0} changes will be shown below.": "Trop de modifications ont été détectées. Seules les {0} premières modifications s’affichent ci-dessous.",
+ "Type Changed": "Type modifié",
+ "Unable to pull from remote repository due to conflicting tag(s): {0}. Would you like to resolve the conflict by replacing the local tag(s)?": "Nous n’avons pas pu extraire du référentiel distant en raison d'une ou plusieurs balises en conflit : {0}. Souhaitez-vous résoudre le conflit en remplaçant la ou les balises locales ?",
+ "Uncommitted Changes": "Changements non commités",
+ "Undo merge commit": "Annuler le commit de fusion",
+ "Untracked": "Non suivi",
+ "Untracked Changes": "Changements non suivis",
+ "Update Git": "Mettre à jour Git",
+ "View Problems": "Voir les problèmes",
+ "Workspace": "Espace de travail",
+ "Workspace: {0}": "Espace de travail : {0}",
+ "Worktree": "Arborescence de travail",
+ "Worktree path": "Chemin de l’arborescence de travail",
+ "Would you like to add \"{0}\" to .gitignore?": "Voulez-vous ajouter '{0}' à .gitignore ?",
+ "Would you like to open the initialized repository, or add it to the current workspace?": "Souhaitez-vous ouvrir le dépôt initialisé, ou l’ajouter à l’espace de travail actuel ?",
+ "Would you like to open the initialized repository?": "Voulez-vous ouvrir le dépôt initialisé ?",
+ "Would you like to open the repository, or add it to the current workspace?": "Voulez-vous ouvrir le dépôt ou l’ajouter à l’espace de travail actuel ?",
+ "Would you like to open the repository?": "Voulez-vous ouvrir le dépôt ?",
+ "Would you like to publish this repository to continue working on it elsewhere?": "Souhaitez-vous publier ce référentiel pour continuer à y travailler ailleurs ?",
+ "Would you like {0} to [periodically run \"git fetch\"]({1})?": "Voulez-vous que {0} [exécute périodiquement « git fetch »]({1}) ?",
+ "Yes": "Oui",
+ "Yes, Don't Show Again": "Oui, Ne plus afficher",
+ "You": "Vous",
+ "You are about to commit your changes without verification, this skips pre-commit hooks and can be undesirable.\n\nAre you sure to continue?": "Vous êtes sur le point de valider vos changements sans vérification. Cela signifie que les crochets pre-commit vont être ignorés, ce qui n’est peut-être pas souhaitable.\n\nVoulez-vous vraiment continuer ?",
+ "You are about to force push your changes, this can be destructive and could inadvertently overwrite changes made by others.\n\nAre you sure to continue?": "Vous êtes sur le point de forcer l’envoi des changements que vous avez apportés. Cette action peut être délétère et peut remplacer par inadvertance les changements apportés par d’autres utilisateurs.\n\nVoulez-vous vraiment continuer ?",
+ "You are trying to commit to a protected branch and you might not have permission to push your commits to the remote.\n\nHow would you like to proceed?": "Vous essayez de valider sur une branche protégée et vous n’êtes peut-être pas autorisé à envoyer (push) vos validations vers la branche distante.\n\nComment voulez-vous procéder ?",
+ "You can restore these files from the Recycle Bin.": "Vous pouvez restaurer ces fichiers à partir de la corbeille.",
+ "You can restore these files from the Trash.": "Vous pouvez restaurer ces fichiers à partir de la corbeille.",
+ "You can restore this file from the Recycle Bin.": "Vous pouvez restaurer ce fichier à partir de la corbeille.",
+ "You can restore this file from the Trash.": "Vous pouvez restaurer ce fichier à partir de la corbeille.",
+ "You cannot delete the worktree you are currently in. Please switch to the main repository first.": "Vous ne pouvez pas supprimer l’arborescence de travail dans laquelle vous vous trouvez actuellement. Veuillez d’abord basculer sur le référentiel principal.",
+ "You seem to have git \"{0}\" installed. Code works best with git >= 2": "Git «{0}» semble être installé. Le code fonctionne mieux avec git >= 2",
+ "Your local changes to the following files would be overwritten by merge:\n {0}\n\nPlease stage, commit, or stash your changes in the repository before migrating changes.": "Vos modifications locales apportées aux fichiers suivants seront remplacées par la fusion :\n {0}\n\nVeuillez effectuer un index, une validation ou un stash de vos modifications dans le dépôt avant de migrer les modifications.",
+ "Your local changes would be overwritten by checkout.": "Vos changements locaux vont être remplacés par l'extraction.",
+ "Your repository has no remotes configured to publish to.": "Votre dépôt n'a aucun dépôt distant configuré pour une publication.",
+ "Your repository has no remotes configured to pull from.": "Votre dépôt n'a aucun dépôt distant configuré pour un Pull.",
+ "Your repository has no remotes configured to push to.": "Votre dépôt n'a aucun dépôt distant configuré pour un Push.",
+ "Your repository has no remotes.": "Votre dépôt n'a pas de dépôt distant.",
+ "[main] Log level: {0}": "[main] Niveau du journal : {0}",
+ "[main] Skipped found git in: \"{0}\"": "[main] Git trouvé ignoré dans : «{0}»",
+ "[main] Using git \"{0}\" from \"{1}\"": "[main] Utilisation de git \"{0}\" de \"{1}»",
+ "[main] Validating found git in: \"{0}\"": "[main] Validation du git trouvé dans : «{0}»",
+ "branches": "branches",
+ "in {0}": "dans {0}",
+ "no": "non",
+ "now": "maintenant",
+ "remote branches": "branches distantes",
+ "tags": "étiquettes",
+ "yes": "oui",
+ "{0} (Deleted)": "{0} (supprimé)",
+ "{0} (Index)": "{0} (index)",
+ "{0} (Intent to add)": "{0} (intention à ajouter)",
+ "{0} (Ours)": "{0} (à nous)",
+ "{0} (Theirs)": "{0} (à eux)",
+ "{0} (Type changed)": "{0} (Type modifié)",
+ "{0} (Untracked)": "{0} (non suivi)",
+ "{0} (Working Tree)": "{0} (Arborescence de travail)",
+ "{0} ({1})": "{0} ({1})",
+ "{0} ({1}) ș {0} ({2})": "{0} ({1}) ș {0} ({2})",
+ "{0} Checkout detached...": "{0} Validation en mode détaché...",
+ "{0} Commit": "Validation {0}",
+ "{0} Commit & Push": "Validation{0} et envoi (push)",
+ "{0} Commit & Sync": "Validation {0} et synchronisation",
+ "{0} Commit (Amend)": "Validation {0} (Modifier)",
+ "{0} Continue": "{0} Continuer",
+ "{0} Create new branch from...": "{0}Créez une nouvelle branche à partir de...",
+ "{0} Create new branch...": "{0}Créez une nouvelle branche...",
+ "{0} Fetch all remotes": "{0} récupérer tous les fichiers distants",
+ "{0} Publish Branch/{Locked=\"Branch\"}Do not translate \"Branch\" as it is a git term": "{0} Publier Branch",
+ "{0} Sync Changes{1}{2}": "{0}Synchroniser les modifications {1}{2}",
+ "{0} characters over {1} in current line": "{0} caractères sur {1} sur la ligne actuelle",
+ "{0} day": "{0} jours",
+ "{0} day ago": "Il y a {0} jour",
+ "{0} days": "{0} jours",
+ "{0} days ago": "Il y a {0} jours",
+ "{0} deletions{1}": "{0} suppressions{1}",
+ "{0} deletion{1}": "{0} suppression{1}",
+ "{0} file changed": "{0} fichier modifié",
+ "{0} files changed": "{0} fichiers ont été modifiés",
+ "{0} hour": "{0} heure",
+ "{0} hour ago": "il y a {0} heure",
+ "{0} hours": "{0} heures",
+ "{0} hours ago": "Il y a {0} heures",
+ "{0} hr": "{0} heure",
+ "{0} hr ago": "Il y a {0} h",
+ "{0} hrs": "{0} heures",
+ "{0} hrs ago": "il y a {0} heures",
+ "{0} insertions{1}": "{0} insertions{1}",
+ "{0} insertion{1}": "{0} insertion{1}",
+ "{0} min": "{0} min",
+ "{0} min ago": "Il y a {0} min",
+ "{0} mins": "{0} min",
+ "{0} mins ago": "Il y a {0} minutes",
+ "{0} minute": "{0} minute",
+ "{0} minute ago": "il y a {0} minute",
+ "{0} minutes": "{0} minutes",
+ "{0} minutes ago": "Il y a {0} minutes",
+ "{0} mo": "{0} mois",
+ "{0} mo ago": "Il y a {0} mois",
+ "{0} month": "{0} mois",
+ "{0} month ago": "Il y a {0} mois",
+ "{0} months": "{0} mois",
+ "{0} months ago": "Il y a {0} mois",
+ "{0} mos": "{0} mois",
+ "{0} mos ago": "Il y a {0} mois",
+ "{0} sec": "{0} s",
+ "{0} sec ago": "Il y a {0} seconde",
+ "{0} second": "{0} seconde",
+ "{0} second ago": "Il y a {0} seconde",
+ "{0} seconds": "{0} secondes",
+ "{0} seconds ago": "Il y a {0} secondes",
+ "{0} secs": "{0} secondes",
+ "{0} secs ago": "Il y a {0} secondes",
+ "{0} week": "{0} semaine",
+ "{0} week ago": "il y a {0} semaine",
+ "{0} weeks": "{0} semaines",
+ "{0} weeks ago": "Il y a {0} semaines",
+ "{0} wk": "{0} semaine",
+ "{0} wk ago": "Il y a {0} semaine",
+ "{0} wks": "{0} semaines",
+ "{0} wks ago": "Il y a {0} semaines",
+ "{0} year": "{0} an",
+ "{0} year ago": "Il y a {0} an",
+ "{0} years": "{0} ans",
+ "{0} years ago": "Il y a {0} ans",
+ "{0} yr": "{0} an",
+ "{0} yr ago": "Il y a {0} an",
+ "{0} yrs": "{0} ans",
+ "{0} yrs ago": "Il y a {0} ans",
+ "{0} ș {1}": "{0} ș {1}"
+ },
+ "package": {
+ "colors.added": "Couleur des ressources ajoutées.",
+ "colors.blameEditorDecoration": "Couleur pour la décoration de l'éditeur du blâme.",
+ "colors.conflict": "Couleur pour les ressources avec des conflits.",
+ "colors.deleted": "Couleur des ressources supprimées.",
+ "colors.ignored": "Couleur des ressources ignorées.",
+ "colors.incomingAdded": "Couleur de la ressource entrante ajoutée.",
+ "colors.incomingDeleted": "Couleur de la ressource entrante supprimée.",
+ "colors.incomingModified": "Couleur de la ressource entrante modifiée.",
+ "colors.incomingRenamed": "Couleur de la ressource entrante renommée.",
+ "colors.modified": "Couleur pour les ressources modifiées.",
+ "colors.renamed": "Couleur des ressources renommées ou copiées.",
+ "colors.stageDeleted": "Couleur des ressources supprimées qui ont été indexées.",
+ "colors.stageModified": "Couleur des ressources modifiées qui ont été indexées.",
+ "colors.submodule": "Couleur pour les ressources de sous-module.",
+ "colors.untracked": "Couleur pour les ressources non tracées.",
+ "command.addRemote": "Ajouter un dépôt distant...",
+ "command.api.getRemoteSources": "Obtenir les sources distantes",
+ "command.api.getRepositories": "Obtenir les dépôts",
+ "command.api.getRepositoryState": "Obtenir l’état du dépôt",
+ "command.blameToggleEditorDecoration": "Activer/désactiver Git Blame Rédacteur Decoration",
+ "command.blameToggleStatusBarItem": "Activer/désactiver l’élément de la barre d’état Git Blame",
+ "command.branch": "Créer une branche...",
+ "command.branchFrom": "Créer une branche à partir de...",
+ "command.checkout": "Basculer sur...",
+ "command.checkoutDetached": "Extraire vers (mode détaché)...",
+ "command.cherryPick": "Faire un cherry-pick...",
+ "command.cherryPickAbort": "Abandonner la sélection",
+ "command.clean": "Ignorer les modifications",
+ "command.cleanAll": "Ignorer toutes les modifications",
+ "command.cleanAllTracked": "Ignorer tous les changements suivis",
+ "command.cleanAllUntracked": "Ignorer tous les changements non suivis",
+ "command.clone": "Cloner",
+ "command.cloneRecursive": "Cloner (récursif)",
+ "command.close": "Fermer le dépôt",
+ "command.closeAllDiffEditors": "Fermer tous les éditeurs de différences",
+ "command.closeAllUnmodifiedEditors": "Fermer tous les éditeurs non modifiés",
+ "command.closeOtherRepositories": "Fermer les autres référentiels",
+ "command.commit": "Valider",
+ "command.commitAll": "Valider tout",
+ "command.commitAllAmend": "Tout Valider (Modifier)",
+ "command.commitAllAmendNoVerify": "Tout commiter (modifier, aucune vérification)",
+ "command.commitAllNoVerify": "Tout commiter (aucune vérification)",
+ "command.commitAllSigned": "Valider tout (signé)",
+ "command.commitAllSignedNoVerify": "Tout commiter (signé, aucune vérification)",
+ "command.commitAmend": "Validation (Modifier)",
+ "command.commitAmendNoVerify": "Validation (Modifier, aucune vérification)",
+ "command.commitEmpty": "Commit vide",
+ "command.commitEmptyNoVerify": "Commiter le contenu vide (aucune vérification)",
+ "command.commitMessageAccept": "Accepter le message de validation",
+ "command.commitMessageDiscard": "Ignorer le message de validation",
+ "command.commitNoVerify": "Commiter (aucune vérification)",
+ "command.commitSigned": "Validation (désactivée)",
+ "command.commitSignedNoVerify": "Validation (désactivé, aucune vérification)",
+ "command.commitStaged": "Valider le contenu en zone de transit",
+ "command.commitStagedAmend": "Valider les modifications en attente (modifier)",
+ "command.commitStagedAmendNoVerify": "Commiter l'index (modifier, aucune vérification)",
+ "command.commitStagedNoVerify": "Commiter l'index (aucune vérification)",
+ "command.commitStagedSigned": "Valider les modifications en attente (signé)",
+ "command.commitStagedSignedNoVerify": "Commiter l'index (signé, aucune vérification)",
+ "command.compareWithWorkspace": "Comparer avec l’espace de travail",
+ "command.continueInLocalClone": "Cloner le dépôt localement et l’ouvrir sur le Bureau...",
+ "command.continueInLocalClone.qualifiedName": "Continuer à travailler dans un nouveau clone local",
+ "command.createFrom": "Créez à partir de...",
+ "command.createTag": "Créer une étiquette...",
+ "command.createWorktree": "Créer une arborescence de travail...",
+ "command.deleteBranch": "Supprimer la branche...",
+ "command.deleteRef": "Supprimer",
+ "command.deleteRemoteBranch": "Supprimer la branche distante...",
+ "command.deleteRemoteTag": "Supprimer l’étiquette distante...",
+ "command.deleteTag": "Supprimer l’étiquette...",
+ "command.deleteWorktree": "Supprimer l’arborescence de travail...",
+ "command.deleteWorktree2": "Supprimer l’arborescence de travail",
+ "command.fetch": "Récupérer",
+ "command.fetchAll": "Récupérer depuis tous les Remotes",
+ "command.fetchPrune": "Récupérer (élaguer)",
+ "command.git.acceptMerge": "Terminer la fusion",
+ "command.git.openMergeEditor": "Résoudre dans l’éditeur de fusion",
+ "command.git.runGitMerge": "Conflits de calcul avec Git",
+ "command.git.runGitMergeDiff3": "Calcul en conflit avec Git (Diff3)",
+ "command.graphCheckout": "Validation",
+ "command.graphCheckoutDetached": "Validation (en mode détaché)",
+ "command.graphCherryPick": "Faire une sélection",
+ "command.graphCompareRef": "Comparer avec...",
+ "command.graphCompareWithMergeBase": "Comparer avec la base de fusion",
+ "command.graphCompareWithRemote": "Comparer avec le distant",
+ "command.graphDeleteBranch": "Supprimer la branche",
+ "command.graphDeleteTag": "Supprimez l'étiquette",
+ "command.ignore": "Ajouter à .gitignore",
+ "command.init": "Initialiser le dépôt",
+ "command.manageUnsafeRepositories": "Gérer des référentiels non sécurisés",
+ "command.merge": "Fusionner...",
+ "command.merge2": "Fusionner",
+ "command.mergeAbort": "Abandonner la fusion",
+ "command.migrateWorktreeChanges": "Migrer les modifications de l’arborescence de travail...",
+ "command.openAllChanges": "Ouvrir tous les changements",
+ "command.openChange": "Ouvrir les modifications",
+ "command.openFile": "Ouvrir un fichier",
+ "command.openHEADFile": "Ouvrir le fichier (HEAD)",
+ "command.openRepositoriesInParentFolders": "Ouvrir les référentiels dans les dossiers parents",
+ "command.openRepository": "Ouvrir le dépôt",
+ "command.openWorktree": "Ouvrez l’arborescence de travail dans la fenêtre active",
+ "command.openWorktreeInNewWindow": "Ouvrez l’arborescence de travail dans une nouvelle fenêtre",
+ "command.publish": "Publier la branche...",
+ "command.pull": "Tirer (pull)",
+ "command.pullFrom": "Extraire de...",
+ "command.pullRebase": "Pull (rebaser)",
+ "command.push": "Push",
+ "command.pushFollowTags": "Pousser (suivre des étiquettes)",
+ "command.pushFollowTagsForce": "Pousser (suivre des étiquettes, forcer)",
+ "command.pushForce": "Pousser (forcer)",
+ "command.pushTags": "Envoyer (push) des étiquettes",
+ "command.pushTo": "Transfert (Push) vers...",
+ "command.pushToForce": "Transfert (Push) vers... (Force)",
+ "command.rebase": "Rebaser la branche...",
+ "command.rebase2": "Rebaser",
+ "command.rebaseAbort": "Abandonner le rebasage",
+ "command.refresh": "Actualiser",
+ "command.removeRemote": "Supprimer le dépôt distant",
+ "command.rename": "Renommer",
+ "command.renameBranch": "Renommer la branche...",
+ "command.reopenClosedRepositories": "Rouvrir les référentiels fermés...",
+ "command.restoreCommitTemplate": "Restaurer le modèle de commit",
+ "command.revealFileInOS.linux": "Ouvrir le dossier contenant",
+ "command.revealFileInOS.mac": "Afficher dans le Finder",
+ "command.revealFileInOS.windows": "Afficher dans l'Explorateur de fichiers",
+ "command.revealInExplorer": "Afficher en mode Explorateur",
+ "command.revertChange": "Restaurer la modification",
+ "command.revertSelectedRanges": "Restaurer les portées sélectionnées",
+ "command.showOutput": "Afficher la sortie Git",
+ "command.stage": "Mettre en attente les modifications",
+ "command.stageAll": "Mettre en attente toutes les modifications",
+ "command.stageAllMerge": "Indexer toutes les fusions de changements",
+ "command.stageAllTracked": "Indexer tous les changements suivis",
+ "command.stageAllUntracked": "Indexer tous les changements non suivis",
+ "command.stageBlock": "Bloc de phase",
+ "command.stageChange": "Mettre en attente la modification",
+ "command.stageSelectedRanges": "Mettre en attente les plages sélectionnées",
+ "command.stageSelection": "Sélection de l’index",
+ "command.stash": "Remiser (stash)",
+ "command.stashApply": "Appliquer la remise (Stash)...",
+ "command.stashApplyEditor": "Appliquer stash",
+ "command.stashApplyLatest": "Appliquer la dernière remise (Stash)",
+ "command.stashDrop": "Supprimer le remisage (stash)...",
+ "command.stashDropAll": "Supprimer tous les stashes...",
+ "command.stashDropEditor": "Supprimer le remisage (stash)",
+ "command.stashIncludeUntracked": "Remiser (Inclure les non-tracés)",
+ "command.stashPop": "Appliquer et supprimer la remise...",
+ "command.stashPopEditor": "Pop stash",
+ "command.stashPopLatest": "Appliquer et supprimer la dernière remise",
+ "command.stashStaged": "Stash intermédiaire",
+ "command.stashView": "Afficher le remisage (stash)...",
+ "command.sync": "Synchroniser",
+ "command.syncRebase": "Synchroniser (Rebase)",
+ "command.timelineCompareWithSelected": "Comparer avec la sélection",
+ "command.timelineCopyCommitId": "Copier l'ID de commit",
+ "command.timelineCopyCommitMessage": "Copiez le message de commit.",
+ "command.timelineOpenDiff": "Ouvrir les modifications",
+ "command.timelineSelectForCompare": "Sélectionner pour comparaison",
+ "command.undoCommit": "Annuler la dernière validation",
+ "command.unstage": "Annuler la mise en attente des modifications",
+ "command.unstageAll": "Annuler la mise en attente de toutes les modifications",
+ "command.unstageChange": "Annuler la modification",
+ "command.unstageSelectedRanges": "Annuler la mise en attente des plages sélectionnées",
+ "command.viewChanges": "Ouvrir les modifications",
+ "command.viewCommit": "Ouvrir la validation",
+ "command.viewStagedChanges": "Ouvrir les modifications intermédiaires",
+ "command.viewUntrackedChanges": "Ouvrir les modifications non suivies",
+ "config.allowForcePush": "Contrôle si force push (avec ou sans lease) est activé.",
+ "config.allowNoVerifyCommit": "Détermine si les commits sans exécution des crochets pre-commit et commit-msg sont autorisés.",
+ "config.alwaysShowStagedChangesResourceGroup": "Toujours afficher le groupe de ressources des changements en zone de transit (Staged).",
+ "config.alwaysSignOff": "Contrôle le flag signoff pour toutes les modifications.",
+ "config.autoRepositoryDetection": "Configure le moment où les dépôts doivent être détectés automatiquement.",
+ "config.autoRepositoryDetection.false": "Désactivez l’analyse de dépôt automatique.",
+ "config.autoRepositoryDetection.openEditors": "Rechercher dans les dossiers parents de fichiers ouverts.",
+ "config.autoRepositoryDetection.subFolders": "Rechercher dans les sous-dossiers du dossier actuellement ouvert.",
+ "config.autoRepositoryDetection.true": "Recherchez dans les deux sous-dossiers du dossier ouvert en cours et dans les dossiers parents de fichiers ouverts.",
+ "config.autoStash": "Remisez (stash) les changements avant de les tirer et de les restaurer après un tirage réussi.",
+ "config.autofetch": "Quand la valeur est true, les commits sont automatiquement récupérés (fetch) à partir du dépôt distant par défaut du dépôt Git actuel. Quand la valeur est 'all', les commits sont récupérés à partir de tous les dépôts distants.",
+ "config.autofetchPeriod": "Durée en secondes entre chaque récupération git automatique quand `git.autofetch` est activé.",
+ "config.autorefresh": "Détermine si l'actualisation automatique est activée.",
+ "config.blameEditorDecoration.enabled": "Contrôle l’affichage ou non des informations sur le blâme dans l’éditeur à l’aide des décorations de l’éditeur.",
+ "config.blameEditorDecoration.template": "Modèle de la décoration de l’éditeur d’informations sur le blâme. Variables prises en charge :\r\n\r\n* 'hash' : code de hachage de validation\r\n\r\n* 'hashShort' : N premiers caractères du hachage de validation en fonction de '#git.commitShortHashLength#'\r\n\r\n* 'subject' : première ligne du message de validation\r\n\r\n* 'authorName' : nom de l’auteur\r\n\r\n* 'authorEmail' : e-mail de l’auteur\r\n\r\n* 'authorDate' : date de l’auteur\r\n\r\n* 'authorDateAgo' : différence d’heure entre le maintenant et la date de l’auteur\r\n\r\n",
+ "config.blameStatusBarItem.enabled": "Contrôle l’affichage ou non des informations sur le blâme dans la barre d’état.",
+ "config.blameStatusBarItem.template": "Modèle de l’élément de barre d’état d’informations sur le blâme. Variables prises en charge :\r\n\r\n* 'hash' : code de hachage de validation\r\n\r\n* 'hashShort' : N premiers caractères du hachage de validation en fonction de '#git.commitShortHashLength#'\r\n\r\n* 'subject' : première ligne du message de validation\r\n\r\n* 'authorName' : nom de l’auteur\r\n\r\n* 'authorEmail' : e-mail de l’auteur\r\n\r\n* 'authorDate' : date de l’auteur\r\n\r\n* 'authorDateAgo' : différence d’heure entre le maintenant et la date de l’auteur\r\n\r\n",
+ "config.branchPrefix": "Préfixe utilisé lors de la création d’une branche.",
+ "config.branchProtection": "Liste des branches protégées. Par défaut, une invite s’affiche avant que les modifications ne soient validées dans une branche protégée. L’invite peut être contrôlée à l’aide du paramètre `#git.branchProtectionPrompt#`.",
+ "config.branchProtectionPrompt": "Contrôle si une invite est affichée avant la validation des modifications dans une branche protégée.",
+ "config.branchProtectionPrompt.alwaysCommit": "Toujours valider les modifications apportées à la branche protégée.",
+ "config.branchProtectionPrompt.alwaysCommitToNewBranch": "Toujours valider les changements dans une nouvelle branche.",
+ "config.branchProtectionPrompt.alwaysPrompt": "Toujours demander avant la validation des modifications dans une branche protégée.",
+ "config.branchRandomNameDictionary": "Liste des dictionnaires utilisés pour le nom de branche généré de manière aléatoire. Chaque valeur représente le dictionnaire utilisé pour générer le segment du nom de la branche. Dictionnaires pris en charge : « adjectifs », « animaux », « couleurs » et « nombres ».",
+ "config.branchRandomNameDictionary.adjectives": "Adjectif aléatoire",
+ "config.branchRandomNameDictionary.animals": "Nom d’animal aléatoire",
+ "config.branchRandomNameDictionary.colors": "Nom de couleur aléatoire",
+ "config.branchRandomNameDictionary.numbers": "Nombre aléatoire compris entre 100 et 999",
+ "config.branchRandomNameEnable": "Contrôle si un nom aléatoire est généré lors de la création d’une branche.",
+ "config.branchSortOrder": "Contrôle l'ordre de tri des branches.",
+ "config.branchValidationRegex": "Expression régulière pour valider les nouveaux noms de branche.",
+ "config.branchWhitespaceChar": "Caractère permettant de remplacer les espaces dans les nouveaux noms de branche et de séparer les segments d’un nom de branche généré de manière aléatoire.",
+ "config.checkoutType": "Contrôle le type de références Git répertoriées lors de l'exécution de « Checkout to... ».",
+ "config.checkoutType.local": "Branches locales",
+ "config.checkoutType.remote": "Branches distantes",
+ "config.checkoutType.tags": "Étiquettes",
+ "config.closeDiffOnOperation": "Contrôle si l’éditeur de différences doit être fermé automatiquement lorsque les modifications sont remises en cache, validées, ignorées, intermédiaires ou non.",
+ "config.commandsToLog": "Liste des commandes git (par exemple, commit, push) pour lesquelles 'stdout' serait journalisé dans le [git output](command:git.showOutput). Si un crochet côté client est configuré pour la commande git, le « stdout » du crochet côté client est également enregistré dans le [git output](command:git.showOutput).",
+ "config.commitShortHashLength": "Contrôle la longueur du hachage court de validation.",
+ "config.confirmEmptyCommits": "Confirmez toujours la création de commits vides pour la commande 'Git: Commit Empty'.",
+ "config.confirmForcePush": "Détermine s’il faut demander confirmation avant de forcer le push.",
+ "config.confirmNoVerifyCommit": "Contrôle s’il faut demander une confirmation avant la validation sans vérification.",
+ "config.confirmSync": "Confirmez avant de synchroniser les référentiels Git.",
+ "config.countBadge": "Contrôle le badge de compte Git.",
+ "config.countBadge.all": "Compter tous les changements.",
+ "config.countBadge.off": "Désactivez le compteur.",
+ "config.countBadge.tracked": "Compter uniquement les changements suivis.",
+ "config.decorations.enabled": "Contrôle si Git contribue aux couleurs et aux badges de l'Explorateur et de la vue Éditeurs ouverts.",
+ "config.defaultBranchName": "Le nom de la branche par défaut (exemple : principal, tronc, développement) lors de l'initialisation d'un nouveau dépôt Git. Lorsqu'il est défini sur vide, le nom de branche par défaut configuré dans Git sera utilisé. **Remarque :** Nécessite la version `2.28.0` de Git ou une version ultérieure.",
+ "config.defaultCloneDirectory": "L'emplacement par défaut pour cloner un référentiel Git.",
+ "config.detectSubmodules": "Contrôle s’il faut détecter automatiquement les sous-modules Git.",
+ "config.detectSubmodulesLimit": "Contrôle la limite des sous-modules Git détectés.",
+ "config.detectWorktrees": "Contrôle s’il faut détecter automatiquement les arborescences de travail Git.",
+ "config.detectWorktreesLimit": "Contrôle la limite des arborescences de travail Git détectées.",
+ "config.diagnosticsCommitHook.enabled": "Contrôle s’il faut vérifier les diagnostics non résolus avant la validation.",
+ "config.diagnosticsCommitHook.sources": "Contrôle la liste des sources (**élément**) et la gravité minimale (**valeur**) à prendre en compte avant la validation. **Remarque :** Pour ignorer les diagnostics d’une source particulière, ajoutez la source à la liste et définissez la gravité minimale sur « none ».",
+ "config.discardAllScope": "Contrôle les modifications ignorées par la commande 'Ignorer toutes les modifications'. 'all' ignore toutes les modifications. 'tracked' ignore uniquement les fichiers suivis. 'prompt' affiche un message d'invite chaque fois que l’action est exécutée.",
+ "config.discardUntrackedChangesToTrash": "Permet de contrôler si l’abandon des modifications non suivies déplace le ou les fichiers vers la Corbeille (Windows), Corbeille (macOS, Linux) au lieu de les supprimer définitivement. **Remarque :** ce paramètre n’a aucun effet lorsqu’il est connecté à un dépôt distant ou lors de l’exécution dans Linux en tant que package snap.",
+ "config.enableCommitSigning": "Active la signature de validation avec X.509 ou SSH.",
+ "config.enableSmartCommit": "Validez toutes les modifications en l'absence de modifications en attente.",
+ "config.enableStatusBarSync": "Contrôle si la commande Git Sync apparaît dans la barre d'état.",
+ "config.enabled": "Si Git est activé.",
+ "config.experimental.installGuide": "Améliorations expérimentales du flux de configuration de Git.",
+ "config.fetchOnPull": "Si activé, récupère toutes les branches au tirage. Sinon, récupère seulement la branche actuelle.",
+ "config.followTagsWhenSync": "Envoyez (push) toutes les étiquettes annotées lors de l’exécution de la commande de synchronisation.",
+ "config.ignoreLegacyWarning": "Ignore l'avertissement Git hérité.",
+ "config.ignoreLimitWarning": "Ignore l'avertissement en cas de changements trop nombreux dans un dépôt.",
+ "config.ignoreMissingGitWarning": "Ignore l'avertissement quand Git est manquant.",
+ "config.ignoreRebaseWarning": "Ignore l'avertissement quand il semble que la branche ait été rebasée au moment du tirage (pull).",
+ "config.ignoreSubmodules": "Ignore les modifications apportées aux sous-modules dans l'arborescence de fichiers.",
+ "config.ignoreWindowsGit27Warning": "Ignore l'avertissement lorsque Git 2.25 - 2.26 est installé sur Windows.",
+ "config.ignoredRepositories": "Liste des référentiels Git à ignorer.",
+ "config.inputValidation": "Contrôle s’il faut afficher les diagnostics de validation d’entrée de message de validation.",
+ "config.inputValidationLength": "Contrôle le taille de la longueur de message de commit pour afficher un avertissement.",
+ "config.inputValidationSubjectLength": "Contrôle le seuil de longueur de l’objet du message de validation pour l’affichage d’un avertissement. Annulez-le pour hériter la valeur de #git.inputValidationLength#.",
+ "config.mergeEditor": "Ouvrez l’éditeur de fusion pour les fichiers actuellement en conflit.",
+ "config.openAfterClone": "Détermine s'il est nécessaire d'ouvrir un dépôt automatiquement après le clonage.",
+ "config.openAfterClone.always": "Effectue toujours l'ouverture dans la fenêtre active.",
+ "config.openAfterClone.alwaysNewWindow": "Effectue toujours l'ouverture dans une nouvelle fenêtre.",
+ "config.openAfterClone.prompt": "Demande toujours l'action à effectuer.",
+ "config.openAfterClone.whenNoFolderOpen": "Effectue uniquement l'ouverture dans la fenêtre active quand aucun dossier n'est ouvert.",
+ "config.openDiffOnClick": "Contrôle si l'éditeur de diff doit être ouvert quand l'utilisateur clique sur un changement. Sinon, l'éditeur normal est ouvert.",
+ "config.openRepositoryInParentFolders": "Contrôlez si un référentiel dans les dossiers parents d’espaces de travail ou les fichiers ouverts doit être ouvert.",
+ "config.openRepositoryInParentFolders.always": "Toujours ouvrir un référentiel dans les dossiers parents des espaces de travail ou les fichiers ouverts.",
+ "config.openRepositoryInParentFolders.never": "N’ouvrez jamais de référentiel dans les dossiers parents d’espaces de travail ou les fichiers ouverts.",
+ "config.openRepositoryInParentFolders.prompt": "Invite avant d’ouvrir un référentiel, les dossiers parents des espaces de travail ou les fichiers ouverts.",
+ "config.optimisticUpdate": "Contrôle s’il faut mettre à jour l’état de la vue Contrôle de code source de manière optimiste après l’exécution de commandes Git.",
+ "config.path": "Chemin et nom de fichier de l'exécutable git. Exemple : 'C:\\Program Files\\Git\\bin\\git.exe' (Windows). Il peut s'agir également d'un tableau de valeurs de chaîne contenant plusieurs chemins de recherche.",
+ "config.postCommitCommand": "Exécutez une commande Git après une validation réussie.",
+ "config.postCommitCommand.none": "N'exécutez pas de commande après une validation.",
+ "config.postCommitCommand.push": "Exécutez 'git push' après une validation réussie.",
+ "config.postCommitCommand.sync": "Exécutez 'git pull' et 'git push' après une validation réussie.",
+ "config.promptToSaveFilesBeforeCommit": "Contrôle si Git doit vérifier les fichiers non sauvegardés avant d'effectuer le commit.",
+ "config.promptToSaveFilesBeforeCommit.always": "Vérifiez les fichiers non enregistrés.",
+ "config.promptToSaveFilesBeforeCommit.never": "Désactive cette vérification.",
+ "config.promptToSaveFilesBeforeCommit.staged": "Vérifiez uniquement les fichiers organisés non enregistrés.",
+ "config.promptToSaveFilesBeforeStash": "Contrôle si Git doit rechercher les fichiers non enregistrés avant de faire un stash des changements.",
+ "config.promptToSaveFilesBeforeStash.always": "Vérifiez les fichiers non enregistrés.",
+ "config.promptToSaveFilesBeforeStash.never": "Désactivez la vérification.",
+ "config.promptToSaveFilesBeforeStash.staged": "Vérifiez uniquement les fichiers organisés non enregistrés.",
+ "config.pruneOnFetch": "Effectue un élagage au moment de la récupération.",
+ "config.publishBeforeContinueOn": "Contrôle s'il faut publier l'état Git non publié lors de l'utilisation de Continue Working On à partir d'un référentiel Git.",
+ "config.publishBeforeContinueOn.always": "Publiez toujours l'état Git non publié lorsque vous utilisez Continue Working On à partir d'un référentiel Git",
+ "config.publishBeforeContinueOn.never": "Ne publiez jamais un état Git non publié lorsque vous utilisez Continue Working On à partir d'un référentiel Git",
+ "config.publishBeforeContinueOn.prompt": "Invite à publier l'état Git non publié lors de l'utilisation de Continue Working On à partir d'un référentiel Git",
+ "config.pullBeforeCheckout": "Contrôle si une branche qui n’a pas de validations sortantes est transférée rapidement avant d’être extraite.",
+ "config.pullTags": "Récupérez toutes les étiquettes pendant le tirage.",
+ "config.rebaseWhenSync": "Forcez Git à utiliser rebase lors de l’exécution de la commande sync.",
+ "config.rememberPostCommitCommand": "Mémoriser la dernière commande git qui s’est exécutée après une validation.",
+ "config.replaceTagsWhenPull": "Remplacez automatiquement les étiquettes locales par les étiquettes distantes en cas de conflit lors de l’exécution de la commande pull.",
+ "config.repositoryScanIgnoredFolders": "Liste des dossiers ignorés lors de la recherche de référentiels Git lorsque `#git.autoRepositoryDetection#` est défini sur `true` ou `subFolders`.",
+ "config.repositoryScanMaxDepth": "Contrôle la profondeur utilisée lors de l’analyse des dossiers d’espace de travail pour les dépôts Git quand '#git.autoRepositoryDetection#' a la valeur 'true' ou 'subFolders'. Peut être défini sur « -1 » pour aucune limite.",
+ "config.requireGitUserConfig": "Contrôle si une configuration utilisateur Git explicite est nécessaire ou si elle peut être devinée par Git quand elle est manquante.",
+ "config.scanRepositories": "Liste des chemins dans lesquels rechercher les référentiels Git. L'emplacement par défaut pour cloner un référentiel Git.",
+ "config.showActionButton": "Contrôle si un bouton d’action est affiché dans la vue Contrôle de code source.",
+ "config.showActionButton.commit": "Afficher un bouton d’action pour valider les modifications lorsque la branche locale a modifié des fichiers prêts à être validés.",
+ "config.showActionButton.publish": "Afficher un bouton d’action pour publier la branche locale lorsqu’elle n’a pas de branche distante de suivi.",
+ "config.showActionButton.sync": "Afficher un bouton d’action pour synchroniser les modifications lorsque la branche locale est en avance ou derrière la branche distante.",
+ "config.showCommitInput": "Détermine si l'entrée de commit doit être affichée dans le panneau de contrôle de code source Git.",
+ "config.showInlineOpenFileAction": "Contrôle s’il faut afficher une action Ouvrir le fichier dans l’affichage des modifications de Git.",
+ "config.showProgress": "Contrôle si les actions Git doivent afficher la progression.",
+ "config.showPushSuccessNotification": "Contrôle s’il faut afficher une notification en cas de réussite d'un envoi (push).",
+ "config.showReferenceDetails": "Contrôle s’il faut afficher les détails de la dernière validation pour les références Git dans les sélecteurs d’extraction, de branche et de balise.",
+ "config.similarityThreshold": "Contrôle le seuil de l'indice de similarité (le nombre d'ajouts/suppressions par rapport à la taille du fichier) pour que les modifications apportées à une paire de fichiers ajoutés/supprimés soient considérées comme un changement de nom. **Remarque :** Nécessite la version `2.18.0` de Git ou une version ultérieure.",
+ "config.smartCommitChanges": "Contrôle les modifications organisées automatiquement par Smart Commit.",
+ "config.smartCommitChanges.all": "Organise automatiquement toutes les modifications.",
+ "config.smartCommitChanges.tracked": "Organise automatiquement les modifications suivies uniquement.",
+ "config.statusLimit": "Contrôle comment limiter le nombre de modifications qui peuvent être analysées à partir de la commande d’état Git. Peut être défini sur 0 sans limite.",
+ "config.suggestSmartCommit": "Propose d'activer Smart Commit (valide toutes les modifications en l'absence de modifications organisées).",
+ "config.supportCancellation": "Contrôle si une notification apparaît lors de l'exécution de l'action Sync, qui permet à l'utilisateur d'annuler l'opération.",
+ "config.terminalAuthentication": "Détermine si VS Code doit être activé en tant que gestionnaire d’authentification pour les processus git générés dans le terminal intégré. Remarque : Les terminaux doivent redémarrer pour permettre la prise en compte des changements apportés à ce paramètre.",
+ "config.terminalGitEditor": "Détermine si VS Code doit être activé en tant qu’éditeur Git pour les processus git générés dans le terminal intégré. Remarque : Les terminaux doivent redémarrer pour permettre la prise en compte des changements apportés à ce paramètre.",
+ "config.timeline.date": "Contrôle la date à utiliser pour les éléments de la vue Chronologie.",
+ "config.timeline.date.authored": "Utiliser la date de création",
+ "config.timeline.date.committed": "Utiliser la date de commit",
+ "config.timeline.showAuthor": "Contrôle si l'auteur du commit doit être affiché dans la vue Chronologie.",
+ "config.timeline.showUncommitted": "Contrôle s’il faut afficher les modifications non validées dans l’affichage Chronologie.",
+ "config.untrackedChanges": "Contrôle le comportement des changements non suivis.",
+ "config.untrackedChanges.hidden": "Les changements non suivis sont masqués et exclus de plusieurs actions.",
+ "config.untrackedChanges.mixed": "Tous les changements, suivis et non suivis, apparaissent ensemble et se comportent de la même manière.",
+ "config.untrackedChanges.separate": "Les changements non suivis apparaissent séparément dans la vue Contrôle de code source. Ils sont également exclus de plusieurs actions.",
+ "config.useCommitInputAsStashMessage": "Détermine s'il est nécessaire d'utiliser le message de la zone d'entrée de commit en tant que message de stash par défaut.",
+ "config.useEditorAsCommitInput": "Contrôle si un éditeur de texte intégral est utilisé pour créer des messages de validation, chaque fois qu’aucun message n’est fourni dans la zone d’entrée de validation.",
+ "config.useForcePushIfIncludes": "Contrôle si la poussée forcée utilise la variante force-if-includes la plus sûre. Remarque : ce paramètre nécessite que le paramètre « #git.useForcePushWithLease# » soit activé et que la version de Git « 2.30.0 » ou ultérieure.",
+ "config.useForcePushWithLease": "Contrôles si force push utilise la variante force-with-lease plus sûr.",
+ "config.useIntegratedAskPass": "Contrôle si GIT_ASKPASS doit être remplacé pour utiliser la version intégrée.",
+ "config.verboseCommit": "Activez la sortie détaillée quand '#git.useEditorAsCommitInput#' est activé.",
+ "description": "Intégration Git SCM",
+ "displayName": "Git",
+ "submenu.branch": "Branche",
+ "submenu.changes": "Changements",
+ "submenu.commit": "Valider",
+ "submenu.commit.amend": "Modifier",
+ "submenu.commit.signoff": "Fermer la session",
+ "submenu.explorer": "Git",
+ "submenu.pullpush": "Tirer (pull), envoyer (push)",
+ "submenu.remotes": "À distance",
+ "submenu.stash": "Remiser (stash)",
+ "submenu.tags": "Étiquettes",
+ "submenu.worktrees": "Arborescences de travail",
+ "view.workbench.cloneRepository": "Vous pouvez cloner un référentiel localement.\r\n[Clone Repository](command:git.clone 'Cloner un dépôt une fois l'extension Git activée')",
+ "view.workbench.learnMore": "Pour en savoir plus sur l'utilisation de Git et du contrôle de code source dans VS Code [lisez notre documentation](https://aka.ms/vscode-scm).",
+ "view.workbench.scm.closedRepositories": "Des référentiels Git précédemment fermés ont été trouvés.\r\n[Reopen Closed Repositories](command:git.reopenClosedRepositories)\r\nPour en savoir plus sur l'utilisation de Git et du contrôle de code source dans VS Code [lisez notre documentation](https://aka.ms/vscode-scm).",
+ "view.workbench.scm.closedRepository": "Un dépôt Git précédemment fermé a été trouvé.\r\n[Rouvrir le référentiel fermé](command:git.reopenClosedRepositories)\r\nPour en savoir plus sur l'utilisation de Git et du contrôle de code source dans VS Code [lisez notre documentation](https://aka.ms/vscode-scm).",
+ "view.workbench.scm.disabled": "Si vous souhaitez utiliser les fonctionnalités de Git, veuillez activer Git dans vos [paramètres](command:workbench.action.openSettings?%5B%22git.enabled%22%5D).\r\nPour en savoir plus sur l'utilisation de Git et du contrôle de code source dans VS Code [lisez notre documentation](https://aka.ms/vscode-scm).",
+ "view.workbench.scm.empty": "Pour utiliser les fonctionnalités de Git, vous pouvez ouvrir un dossier contenant un référentiel Git ou le cloner à partir d'une URL.\r\n[Open Folder](command:vscode.openFolder)\r\n[Clone Repository](command:git.cloneRecursive)\r\nPour en savoir plus sur l'utilisation de Git et du contrôle de code source dans VS Code [lisez notre documentation](https://aka.ms/vscode-scm).",
+ "view.workbench.scm.emptyWorkspace": "L'espace de travail actuellement ouvert ne contient aucun dossier contenant des référentiels Git.\r\n[Ajouter un dossier à l'espace de travail](command:workbench.action.addRootFolder)\r\nPour en savoir plus sur l'utilisation de Git et du contrôle de code source dans VS Code [lisez notre documentation](https://aka.ms/vscode-scm).",
+ "view.workbench.scm.folder": "Le dossier actuellement ouvert n'a pas de référentiel Git. Vous pouvez initialiser un référentiel qui activera les fonctionnalités de contrôle de source optimisées par Git.\r\n[Initialize Repository](command:git.init?%5Btrue%5D)\r\nPour en savoir plus sur l'utilisation de Git et du contrôle de code source dans VS Code [lisez notre documentation](https://aka.ms/vscode-scm).",
+ "view.workbench.scm.missing": "Installez Git, un système de contrôle de code source populaire, pour suivre les modifications du code et collaborer avec d’autres personnes. En savoir plus sur notre [Git guides](https://aka.ms/vscode-scm).",
+ "view.workbench.scm.missing.linux": "Le contrôle de code source dépend de Git en cours d’installation.\r\n[Download Git for Linux](https://git-scm.com/download/linux)\r\nAprès l’installation, [reload](command:workbench.action.reloadWindow) (ou [troubleshoot](command:git.showOutput)). Des fournisseurs de contrôle de code source supplémentaires peuvent être installés [from the Marketplace](command:workbench.extensions.search?%22%40category%3A%5C%22scm%20providers%5C%22%22).",
+ "view.workbench.scm.missing.mac": "[Download Git for macOS](https://git-scm.com/download/mac)\r\nAprès l’installation, [reload](command:workbench.action.reloadWindow) (ou [troubleshoot](command:git.showOutput)). Des fournisseurs de contrôle de code source supplémentaires peuvent être installés [from the Marketplace](command:workbench.extensions.search?%22%40category%3A%5C%22scm%20providers%5C%22%22).",
+ "view.workbench.scm.missing.windows": "[Download Git for Windows](https://git-scm.com/download/win)\r\nAprès l’installation, [reload](command:workbench.action.reloadWindow) (ou [troubleshoot](command:git.showOutput)). Des fournisseurs de contrôle de code source supplémentaires peuvent être installés [from the Marketplace](command:workbench.extensions.search?%22%40category%3A%5C%22scm%20providers%5C%22%22).",
+ "view.workbench.scm.repositoriesInParentFolders": "Des référentiels Git ont été trouvés dans les dossiers parents de l'espace de travail ou dans le(s) fichier(s) ouvert(s).\r\n[Open Repository](command:git.openRepositoriesInParentFolders)\r\nUtilisez le paramètre [git.openRepositoryInParentFolders](command:workbench.action.openSettings?%5B%22git.openRepositoryInParentFolders%22%5D) pour contrôler si les référentiels Git dans les dossiers parents de l'espace de travail ou les fichiers ouverts sont ouverts. Pour en savoir plus, [lisez nos documents](https://aka.ms/vscode-git-repository-in-parent-folders).",
+ "view.workbench.scm.repositoryInParentFolders": "Un référentiel Git a été trouvé dans les dossiers parents de l'espace de travail ou dans le(s) fichier(s) ouvert(s).\r\n[Open Repository](command:git.openRepositoriesInParentFolders)\r\nUtilisez le paramètre [git.openRepositoryInParentFolders](command:workbench.action.openSettings?%5B%22git.openRepositoryInParentFolders%22%5D) pour contrôler si les référentiels Git dans les dossiers parents des espaces de travail ou les fichiers ouverts sont ouverts. Pour en savoir plus, [lisez nos documents](https://aka.ms/vscode-git-repository-in-parent-folders).",
+ "view.workbench.scm.scanFolderForRepositories": "Analyse du dossier pour les référentiels Git en cours...",
+ "view.workbench.scm.scanWorkspaceForRepositories": "Analyse de l'espace de travail pour les référentiels Git...",
+ "view.workbench.scm.unsafeRepositories": "Les référentiels Git détectés sont potentiellement dangereux car les dossiers appartiennent à une personne autre que l'utilisateur actuel.\r\n[Manage Unsafe Repositories](command:git.manageUnsafeRepositories)\r\nPour en savoir plus sur les référentiels non sécurisés [lisez notre documentation](https://aka.ms/vscode-git-unsafe-repository).",
+ "view.workbench.scm.unsafeRepository": "Le référentiel Git détecté est potentiellement dangereux car le dossier appartient à une personne autre que l'utilisateur actuel.\r\n[Manage Unsafe Repositories](command:git.manageUnsafeRepositories)\r\nPour en savoir plus sur les référentiels non sécurisés [lisez notre documentation](https://aka.ms/vscode-git-unsafe-repository).",
+ "view.workbench.scm.workspace": "L'espace de travail actuellement ouvert ne contient aucun dossier contenant des référentiels Git. Vous pouvez initialiser un référentiel sur un dossier qui activera les fonctionnalités de contrôle de source optimisées par Git.\r\n[Initialize Repository](command:git.init)\r\nPour en savoir plus sur l'utilisation de Git et du contrôle de code source dans VS Code [lisez notre documentation](https://aka.ms/vscode-scm)."
+ }
+ }
+}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-fr/translations/extensions/vscode.github-authentication.i18n.json b/i18n/vscode-language-pack-fr/translations/extensions/vscode.github-authentication.i18n.json
new file mode 100644
index 0000000000..5415d62ceb
--- /dev/null
+++ b/i18n/vscode-language-pack-fr/translations/extensions/vscode.github-authentication.i18n.json
@@ -0,0 +1,47 @@
+{
+ "": [
+ "--------------------------------------------------------------------------------------------",
+ "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."
+ ],
+ "version": "1.0.0",
+ "contents": {
+ "bundle": {
+ "A reload is required for the fetch setting change to take effect.": "Un rechargement est nécessaire pour que la modification du paramètre de récupération prenne effet.",
+ "Apple": "Apple",
+ "Continue to GitHub": "Continuer vers GitHub",
+ "Continue to GitHub to create a Personal Access Token (PAT)": "Continuer vers GitHub pour créer un Jeton d’accès personnel (PAT)",
+ "Copy & Continue to {0}": "Copier et continuer vers {0}",
+ "GitHub": "GitHub",
+ "GitHub Authentication - Reload required": "Authentification GitHub – Rechargement requis",
+ "GitHub Enterprise Server URI is not a valid URI: {0}": "L’URI du serveur GitHub Enterprise n’est pas un URI valide : {0}",
+ "Google": "Google",
+ "Having trouble logging in? Would you like to try a different way? ({0})": "Vous ne parvenez pas à vous connecter ? Voulez-vous essayer une autre méthode ? ({0})",
+ "No": "Non",
+ "Open [{0}]({0}) in a new tab and paste your one-time code: {1}/The [{0}]({0}) will be a url and the {1} will be a code, e.g. 123-456{Locked=\"[{0}]({0})\"}": "Ouvrez [{0}]({0}) dans un nouvel onglet et collez votre code à usage unique : {1}",
+ "Reload Window": "Recharger la fenêtre",
+ "Sign in failed: {0}": "Échec de la connexion : {0}",
+ "Sign out failed: {0}": "Échec de la déconnexion : {0}",
+ "Signing in to {0}.../The {0} will be a url, e.g. github.com": "Connexion à {0}...",
+ "To finish authenticating, navigate to GitHub and paste in the above one-time code.": "Pour terminer l’authentification, accédez à GitHub et collez le code unique ci-dessus.",
+ "To finish authenticating, navigate to GitHub to create a PAT then paste the PAT into the input box.": "Pour terminer l’authentification, accédez à GitHub pour créer un PAT, puis collez le PAT dans la zone d’entrée.",
+ "Yes": "Oui",
+ "You have not yet finished authorizing this extension to use GitHub. Would you like to try a different way? ({0})": "Vous n’avez pas encore terminé d’autoriser cette extension à utiliser GitHub. Voulez-vous essayer un autre moyen ? ({0})",
+ "Your Code: {0}/The {0} will be a code, e.g. 123-456": "Votre code : {0}",
+ "device code": "Code de l’appareil",
+ "local server": "serveur local",
+ "personal access token": "jeton d’accès personnel",
+ "url handler": "Gestionnaire d'URL"
+ },
+ "package": {
+ "config.github-authentication.preferDeviceCodeFlow.description": "Lorsque la valeur est True, privilégier le flux de code de l’appareil pour l’authentification plutôt que les autres flux disponibles. Cela est utile dans des environnements comme WSL où les flux du serveur local ou du ou de la gestionnaire d’URL peuvent ne pas fonctionner comme prévu.",
+ "config.github-authentication.useElectronFetch.description": "Lorsque la valeur est true, utilise la fonction de récupération intégrée d’Electron pour les requêtes HTTP. Lorsque la valeur est false, utilise la fonction de récupération globale de Node.js. Ce paramètre s’applique uniquement lors de l’exécution dans l’environnement Electron. **Remarque :** Un redémarrage est nécessaire pour que ce paramètre prenne effet.",
+ "config.github-enterprise.title": "Authentification GHE.com et serveur GitHub Enterprise",
+ "config.github-enterprise.uri.description": "URI de votre instance GHE.com ou GitHub Enterprise Server.\r\n\r\nExemples:\r\n* GHE.com : 'https://octocat.ghe.com`\r\n* serveur GitHub Enterprise : 'https://github.octocat.com`\r\n\r\n> **Remarque :** _not_ doit être défini sur un URI GitHub.com. Si votre compte existe sur GitHub.com ou s’il s’agit d’un GitHub Enterprise utilisateur géré, vous n’avez pas besoin d’une configuration supplémentaire et pouvez simplement vous connecter à GitHub.",
+ "description": "Fournisseur d'authentification GitHub",
+ "displayName": "Authentification GitHub"
+ }
+ }
+}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-fr/translations/extensions/vscode.github.i18n.json b/i18n/vscode-language-pack-fr/translations/extensions/vscode.github.i18n.json
new file mode 100644
index 0000000000..d1205aa363
--- /dev/null
+++ b/i18n/vscode-language-pack-fr/translations/extensions/vscode.github.i18n.json
@@ -0,0 +1,65 @@
+{
+ "": [
+ "--------------------------------------------------------------------------------------------",
+ "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."
+ ],
+ "version": "1.0.0",
+ "contents": {
+ "bundle": {
+ "Checkout on vscode.dev": "Extraire sur vscode.dev",
+ "Commit Changes": "Valider les modifications",
+ "Copy Anyway": "Copier quand même",
+ "Copy vscode.dev Link": "Copier le lien vscode.dev",
+ "Create Fork": "Créer une duplication (fork)",
+ "Create GitHub fork": "Créer une duplication (fork) GitHub",
+ "Create PR": "Créer une demande de tirage (PR)",
+ "Creating GitHub Pull Request...": "Création d'une demande de tirage (pull request) GitHub...",
+ "Creating first commit": "Création du premier commit",
+ "Forking \"{0}/{1}\"...": "Création d'une duplication (fork) '{0}/{1}'...",
+ "Learn More": "En savoir plus",
+ "Log level: {0}": "Niveau de consignation : {0}",
+ "No": "Non",
+ "No GitHub remotes found that contain this commit.": "Aucun dépôt GitHub distant contenant cette validation n’a été trouvé.",
+ "No template": "Aucun modèle",
+ "Open PR": "Ouvrir la demande de tirage (PR)",
+ "Open on GitHub": "Ouvrir dans GitHub",
+ "Pick a folder to publish to GitHub": "Choisir un dossier à publier sur GitHub",
+ "Publish Branch & Copy Link": "Publier la branche et copier le lien",
+ "Publishing to a private GitHub repository": "Publication sur un dépôt GitHub privé",
+ "Publishing to a public GitHub repository": "Publication sur un dépôt GitHub public",
+ "Pull Changes & Copy Link": "Extraire les modifications et copier le lien",
+ "Push Commits & Copy Link": "Validations Push et copier le lien",
+ "Pushing changes...": "Envoi (push) des changements...",
+ "Select the Pull Request template": "Sélectionner le modèle de demande de tirage (pull request)",
+ "Select which files should be included in the repository.": "Sélectionnez les fichiers à inclure dans le dépôt.",
+ "Successfully published the \"{0}\" repository to GitHub.": "Publication réussie du dépôt '{0}' sur GitHub.",
+ "The PR \"{0}/{1}#{2}\" was successfully created on GitHub.": "La demande de tirage (PR) '{0}/{1}#{2}' a été correctement créée sur GitHub.",
+ "The current branch has unpublished commits. Would you like to push your commits before copying a link?": "La branche active a des validations non publiées. Voulez-vous envoyer (push) vos validations avant de copier un lien ?",
+ "The current branch is not published to the remote. Would you like to publish your branch before copying a link?": "La branche active n’est pas publiée sur le référentiel distant. Voulez-vous publier votre branche avant de copier un lien ?",
+ "The current branch is not up to date. Would you like to pull before copying a link?": "La branche actuelle n’est pas à jour. Voulez-vous tirer (pull) avant de copier un lien ?",
+ "The current file has uncommitted changes. Please commit your changes before copying a link.": "Le fichier actif contient des modifications non validées. Validez vos modifications avant de copier un lien.",
+ "The fork \"{0}\" was successfully created on GitHub.": "La duplication (fork) '{0}' a été correctement créée sur GitHub.",
+ "Uploading files": "Chargement des fichiers",
+ "You don't have permissions to push to \"{0}/{1}\" on GitHub. Would you like to create a fork and push to it instead?": "Vous n’avez pas les autorisations nécessaires pour effectuer un envoi (push) vers « {0}/{1} » sur GitHub. Voulez-vous créer une duplication (fork) pour y effectuer l’envoi à la place ?",
+ "Your push to \"{0}/{1}\" was rejected by GitHub because push protection is enabled and one or more secrets were detected.": "Votre envoi (push) vers «{0}/{1}» a été rejeté par GitHub, car la protection push est activée et un ou plusieurs secrets ont été détectés.",
+ "{0} Open on GitHub": "{0} Open sur GitHub"
+ },
+ "package": {
+ "command.copyVscodeDevLink": "Copier le lien vscode.dev",
+ "command.openOnGitHub": "Ouvrir dans GitHub",
+ "command.openOnVscodeDev": "Ouvrir dans vscode.dev",
+ "command.publish": "Publier sur GitHub",
+ "config.branchProtection": "Contrôle s’il faut interroger les règles de référentiel pour les référentiels GitHub",
+ "config.gitAuthentication": "Détermine si l'authentification GitHub automatique doit être activée pour les commandes Git dans VS Code.",
+ "config.gitProtocol": "Contrôle le protocole utilisé pour cloner un référentiel GitHub",
+ "config.showAvatar": "Contrôle s’il faut afficher l’avatar GitHub de l’auteur de validation dans différents survols (par exemple : Git blame, Timeline, Source Control Graph, etc.)",
+ "description": "Fonctionnalités GitHub pour VS Code",
+ "displayName": "GitHub",
+ "welcome.publishFolder": "Vous pouvez publier directement ce dossier sur un dépôt GitHub. Une fois publié, vous aurez accès aux fonctionnalités de contrôle de code source optimisées par Git et GitHub.\r\n[$(github) Publier sur GitHub](command:github.publish)",
+ "welcome.publishWorkspaceFolder": "Vous pouvez publier directement un dossier d’espace de travail dans un dépôt GitHub. Une fois publié, vous aurez accès aux fonctionnalités de contrôle de code source optimisées par Git et GitHub.\r\n[$(github) Publier sur GitHub](command:github.publish)"
+ }
+ }
+}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-fr/translations/extensions/vscode.go.i18n.json b/i18n/vscode-language-pack-fr/translations/extensions/vscode.go.i18n.json
index 4d0bde168f..f28444be4f 100644
--- a/i18n/vscode-language-pack-fr/translations/extensions/vscode.go.i18n.json
+++ b/i18n/vscode-language-pack-fr/translations/extensions/vscode.go.i18n.json
@@ -9,8 +9,8 @@
"version": "1.0.0",
"contents": {
"package": {
- "displayName": "Bases du langage Go",
- "description": "Fournit la coloration syntaxique et la correspondance de parenthèses dans les fichiers Go."
+ "description": "Fournit la coloration syntaxique et la correspondance de parenthèses dans les fichiers Go.",
+ "displayName": "Bases du langage Go"
}
}
}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-fr/translations/extensions/vscode.groovy.i18n.json b/i18n/vscode-language-pack-fr/translations/extensions/vscode.groovy.i18n.json
index fe5aa11094..76ee28eeb5 100644
--- a/i18n/vscode-language-pack-fr/translations/extensions/vscode.groovy.i18n.json
+++ b/i18n/vscode-language-pack-fr/translations/extensions/vscode.groovy.i18n.json
@@ -9,8 +9,8 @@
"version": "1.0.0",
"contents": {
"package": {
- "displayName": "Concepts de base du langage Groovy",
- "description": "Fournit des extraits de code, la coloration syntaxique et la correspondance des crochets dans les fichiers Groovy."
+ "description": "Fournit des extraits de code, la coloration syntaxique et la correspondance des crochets dans les fichiers Groovy.",
+ "displayName": "Concepts de base du langage Groovy"
}
}
}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-fr/translations/extensions/vscode.grunt.i18n.json b/i18n/vscode-language-pack-fr/translations/extensions/vscode.grunt.i18n.json
new file mode 100644
index 0000000000..04492cf1d7
--- /dev/null
+++ b/i18n/vscode-language-pack-fr/translations/extensions/vscode.grunt.i18n.json
@@ -0,0 +1,25 @@
+{
+ "": [
+ "--------------------------------------------------------------------------------------------",
+ "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."
+ ],
+ "version": "1.0.0",
+ "contents": {
+ "bundle": {
+ "Auto detecting Grunt for folder {0} failed with error: {1}', this.workspaceFolder.name, err.error ? err.error.toString() : 'unknown": "Échec de la détection automatique de Grunt pour le dossier {0} avec l’erreur : {1}', this.workspaceFolder.name, err.error ? err.error.toString() : 'inconnu",
+ "Go to output": "Accéder à la sortie",
+ "Problem finding grunt tasks. See the output for more information.": "Problème de recherche de tâches Grunt. Consultez la sortie pour plus d'informations."
+ },
+ "package": {
+ "config.grunt.autoDetect": "Contrôle l’activation de la détection des tâches Grunt. La détection des tâches Grunt peut entraîner l’exécution de fichiers dans un espace de travail ouvert.",
+ "description": "Extension pour ajouter des fonctionnalités Grunt à VS Code.",
+ "displayName": "Prise en charge de Grunt pour VS Code",
+ "grunt.taskDefinition.args.description": "Arguments de ligne de commande à passer à la tâche grunt",
+ "grunt.taskDefinition.file.description": "Le fichier Grunt qui fournit la tâche. Peut être oublié.",
+ "grunt.taskDefinition.type.description": "La tâche Grunt à personnaliser."
+ }
+ }
+}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-fr/translations/extensions/vscode.gulp.i18n.json b/i18n/vscode-language-pack-fr/translations/extensions/vscode.gulp.i18n.json
new file mode 100644
index 0000000000..4c5509fc41
--- /dev/null
+++ b/i18n/vscode-language-pack-fr/translations/extensions/vscode.gulp.i18n.json
@@ -0,0 +1,24 @@
+{
+ "": [
+ "--------------------------------------------------------------------------------------------",
+ "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."
+ ],
+ "version": "1.0.0",
+ "contents": {
+ "bundle": {
+ "Auto detecting gulp for folder {0} failed with error: {1}', this.workspaceFolder.name, err.error ? err.error.toString() : 'unknown": "La détection automatique de gulp pour le dossier {0} a échoué avec l’erreur : {1}', this.workspaceFolder.name, err.error ? err.error.toString() : 'inconnu",
+ "Go to output": "Accéder à la sortie",
+ "Problem finding gulp tasks. See the output for more information.": "Problème de recherche des tâches gulp. Consultez la sortie pour plus d'informations."
+ },
+ "package": {
+ "config.gulp.autoDetect": "Contrôle l’activation de la détection des tâches Gulp. La détection des tâches Gulp peut entraîner l’exécution de fichiers dans un espace de travail ouvert.",
+ "description": "Extension qui ajoute des fonctionnalités Gulp à VS Code.",
+ "displayName": "Prise en charge de Gulp pour VS Code",
+ "gulp.taskDefinition.file.description": "Le fichier Gulp qui fournit la tâche. Peut être oublié.",
+ "gulp.taskDefinition.type.description": "La tâche Gulp à personnaliser."
+ }
+ }
+}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-fr/translations/extensions/vscode.handlebars.i18n.json b/i18n/vscode-language-pack-fr/translations/extensions/vscode.handlebars.i18n.json
index 7d0ae82328..31762f339e 100644
--- a/i18n/vscode-language-pack-fr/translations/extensions/vscode.handlebars.i18n.json
+++ b/i18n/vscode-language-pack-fr/translations/extensions/vscode.handlebars.i18n.json
@@ -9,8 +9,8 @@
"version": "1.0.0",
"contents": {
"package": {
- "displayName": "Bases du langage Handlebars",
- "description": "Fournit la coloration syntaxique et la correspondance des crochets dans les fichiers Handlebars."
+ "description": "Fournit la coloration syntaxique et la correspondance des crochets dans les fichiers Handlebars.",
+ "displayName": "Bases du langage Handlebars"
}
}
}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-fr/translations/extensions/vscode.hlsl.i18n.json b/i18n/vscode-language-pack-fr/translations/extensions/vscode.hlsl.i18n.json
index 080a2c7128..05f5ed9e98 100644
--- a/i18n/vscode-language-pack-fr/translations/extensions/vscode.hlsl.i18n.json
+++ b/i18n/vscode-language-pack-fr/translations/extensions/vscode.hlsl.i18n.json
@@ -9,8 +9,8 @@
"version": "1.0.0",
"contents": {
"package": {
- "displayName": "Concepts de base du langage HLSL",
- "description": "Fournit la coloration syntaxique et la correspondance des crochets dans les fichiers HLSL."
+ "description": "Fournit la coloration syntaxique et la correspondance des crochets dans les fichiers HLSL.",
+ "displayName": "Concepts de base du langage HLSL"
}
}
}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-fr/translations/extensions/vscode.html-language-features.i18n.json b/i18n/vscode-language-pack-fr/translations/extensions/vscode.html-language-features.i18n.json
new file mode 100644
index 0000000000..26e1f21ee5
--- /dev/null
+++ b/i18n/vscode-language-pack-fr/translations/extensions/vscode.html-language-features.i18n.json
@@ -0,0 +1,304 @@
+{
+ "": [
+ "--------------------------------------------------------------------------------------------",
+ "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."
+ ],
+ "version": "1.0.0",
+ "contents": {
+ "bundle": {
+ "\"store\" a boolean test for later evaluation in a guard or if().": "« stocker » un test booléen pour une évaluation ultérieure dans un guard ou if().",
+ "'from' expected": "« from » attendu.",
+ "'in' expected": "'in' attendu",
+ "'through' or 'to' expected": "« through » ou « to » attendu",
+ "'{0}'": "'{0}'",
+ "( expected": "( attendue",
+ ") expected": ") attendue",
+ "": "",
+ "@font-face": "@font-face",
+ "@font-face rule must define 'src' and 'font-family' properties": "La règle @font-face doit définir les propriétés 'src' et 'font-family'",
+ "@keyframes {0}": "@keyframes {0}",
+ "A list of properties that are not validated against the `unknownProperties` rule.": "Liste de propriétés non validées par la règle 'unknownProperties'.",
+ "Adds quotes to a string.": "Ajoute des guillemets à une chaîne.",
+ "Also define the standard property '{0}' for compatibility": "Définir également la propriété standard '{0}' pour la compatibilité",
+ "Always define standard rule '@keyframes' when defining keyframes.": "Toujours définir la règle standard '@keyframes' lors de la définition d’images clés.",
+ "Always include all vendor specific properties: Missing: {0}": "Toujours inclure toutes les propriétés spécifiques au fournisseur : propriétés manquantes : {0}",
+ "Always include all vendor specific rules: Missing: {0}": "Toujours inclure toutes les règles spécifiques au fournisseur : manquantes : {0}",
+ "Appends a single value onto the end of a list.": "Ajoute une valeur unique à la fin d’une liste.",
+ "Appends selectors to one another without spaces in between.": "Ajoute les sélecteurs les uns aux autres sans espaces entre les deux.",
+ "Avoid using !important. It is an indication that the specificity of the entire CSS has gotten out of control and needs to be refactored.": "Évitez d'utiliser !important. Cela indique que la spécificité de l’intégralité du code CSS est incorrecte et qu’il doit être refactorisé.",
+ "Avoid using 'float'. Floats lead to fragile CSS that is easy to break if one aspect of the layout changes.": "Évitez d’utiliser « float ». Les floats conduisent à un CSS fragile qui est facile à rompre, si un des aspects de la mise en page change.",
+ "Causes one or more rules to be emitted at the root of the document.": "Entraîne l’émission d’une ou de plusieurs règles à la racine du document.",
+ "Changes one or more properties of a color.": "Modifie une ou plusieurs propriétés d’une couleur.",
+ "Changes the alpha component for a color.": "Modifie le composant alpha d’une couleur.",
+ "Changes the hue of a color.": "Modifie la teinte d’une couleur.",
+ "Character entity representing '{0}'": "Entité de caractère représentant « {0} »",
+ "Character entity representing '{0}', unicode equivalent '{1}'": "Entité de caractère représentant « {0} », équivalent Unicode « {1} »",
+ "Closing bracket expected.": "Crochet fermant attendu.",
+ "Closing bracket missing.": "Crochet fermant manquant.",
+ "Combines several lists into a single multidimensional list.": "Regroupe plusieurs listes en une seule liste multidimensionnelle.",
+ "Configure": "Configurer",
+ "Converts a color into the format understood by IE filters.": "Convertit une couleur au format compris par les filtres Internet Explorer.",
+ "Converts a color to grayscale.": "Convertit une couleur en nuances de gris.",
+ "Converts a string to lower case.": "Convertit une chaîne en minuscules.",
+ "Converts a string to upper case.": "Convertit une chaîne en majuscules.",
+ "Converts a unitless number to a percentage.": "Convertit un nombre sans unité en pourcentage.",
+ "Creates a Color from hue, saturation, and lightness values.": "Crée une couleur à partir des valeurs de teinte, de saturation et de clarté.",
+ "Creates a Color from hue, saturation, lightness, and alpha values.": "Crée une couleur à partir de la teinte, de la saturation, de la clarté et des valeurs alpha.",
+ "Creates a Color from hue, white, and black values.": "Crée une couleur à partir de valeurs de teinte, de blanc et de noir.",
+ "Creates a Color from lightness, a, and b values.": "Crée une couleur à partir des valeurs de clarté et a et b.",
+ "Creates a Color from lightness, chroma, and hue values.": "Crée une couleur à partir des valeurs de clarté, de chrome et de teinte.",
+ "Creates a Color from red, green, and blue values.": "Crée une couleur à partir des valeurs rouge, verte et bleue.",
+ "Creates a Color from red, green, blue, and alpha values.": "Crée une couleur à partir des valeurs rouge, verte, bleue et alpha.",
+ "Creates a Color from the hue, saturation, and lightness values of another Color.": "Crée une couleur à partir des valeurs de teinte, de saturation et de clarté d’une autre couleur.",
+ "Creates a Color from the hue, white, and black values of another Color.": "Crée une couleur à partir des valeurs de teinte, de blanc et de noir d’une autre couleur.",
+ "Creates a Color from the lightness, a, and b values of another Color.": "Crée une couleur à partir des valeurs de clarté, a et b d’une autre couleur.",
+ "Creates a Color from the lightness, chroma, and hue values of another Color.": "Crée une couleur à partir des valeurs de clarté, de chrome et de teinte d’une autre couleur.",
+ "Creates a Color from the red, green, and blue values of another Color.": "Crée une couleur à partir des valeurs rouge, verte et bleue d’une autre couleur.",
+ "Creates a Color in a specific color space from red, green, and blue values.": "Crée une couleur dans un espace de couleurs spécifique à partir des valeurs rouge, vert et bleu.",
+ "Creates a Color in a specific color space from the red, green, and blue values of another Color.": "Crée une couleur dans un espace de couleur spécifique à partir des valeurs rouge, verte et bleue d’une autre couleur.",
+ "Defines complex operations that can be re-used throughout stylesheets.": "Définit des opérations complexes qui peuvent être réutilisées dans des feuilles de style.",
+ "Defines styles that can be re-used throughout the stylesheet with `@include`.": "Définit les styles qui peuvent être réutilisés dans l’ensemble de la feuille de style avec « @include ».",
+ "Do not use duplicate style definitions": "Ne pas utiliser les définitions de style en doublon",
+ "Do not use empty rulesets": "Ne pas utiliser d’ensembles de règles vides",
+ "Do not use width or height when using padding or border": "Ne pas utiliser width ou height lorsque vous utilisez padding ou border",
+ "Dynamically calls a Sass function.": "Appelle dynamiquement une fonction Sass.",
+ "Each loop that sets `$var` to each item in the list or map, then outputs the styles it contains using that value of `$var`.": "Chaque boucle qui définit `$var` à chaque élément de la liste ou du mappage, puis génère les styles contenus à l’aide de la valeur `$var`.",
+ "End tag name expected.": "Nom de balise de fin attendu.",
+ "Exposes the details of Sass’s inner workings.": "Expose les détails du fonctionnement interne de Sass.",
+ "Extends $extendee with $extender within $selector.": "Étend $extendee avec $extender dans $selector.",
+ "Extracts a substring from $string.": "Extrait une sous-chaîne de $string.",
+ "Finds the maximum of several numbers.": "Recherche le maximum de plusieurs nombres.",
+ "Finds the minimum of several numbers.": "Recherche le minimum de plusieurs nombres.",
+ "Fluidly scales one or more properties of a color.": "Met à l’échelle de manière fluide une ou plusieurs propriétés d’une couleur.",
+ "Folding Region End": "Fin de la zone de pliage",
+ "Folding Region Start": "Début de la région repliable",
+ "For loop that repeatedly outputs a set of styles for each `$var` in the `from/through` or `from/to` clause.": "Pour une boucle qui génère à plusieurs reprises un ensemble de styles pour chaque `$var` dans la clause `from/through` ou `fromto`.",
+ "Generates new colors based on existing ones, making it easy to build color themes.": "Génère de nouvelles couleurs basées sur celles existantes, ce qui facilite la génération de thèmes de couleurs.",
+ "Gets the blue component of a color.": "Obtient le composant bleu d’une couleur.",
+ "Gets the green component of a color.": "Obtient le composant vert d’une couleur.",
+ "Gets the hue component of a color.": "Obtient la teinte d’une couleur.",
+ "Gets the lightness component of a color.": "Obtient le composant de clarté d’une couleur.",
+ "Gets the opacity component of a color.": "Obtient le composant d’opacité d’une couleur.",
+ "Gets the red component of a color.": "Obtient le composant rouge d’une couleur.",
+ "Gets the saturation component of a color.": "Obtient le composant de saturation d’une couleur.",
+ "HTML Language Server": "Serveur de langage HTML",
+ "Hex colors must consist of three, four, six or eight hex numbers": "Les couleurs hexadécimales doivent être constituées de trois, quatre, six ou huit nombres hexadécimaux",
+ "IE hacks are only necessary when supporting IE7 and older": "Les hacks IE sont uniquement nécessaires pour prendre en charge IE7 et les versions antérieures",
+ "Import statements do not load in parallel": "Les instructions Import ne se chargent pas en parallèle",
+ "Includes the body if the expression does not evaluate to `false` or `null`.": "Inclut le corps si l’expression n’a pas la valeur « false » ou « null ».",
+ "Includes the styles defined by another mixin into the current rule.": "Inclut les styles définis par un autre mixin dans la règle actuelle.",
+ "Increases or decreases one or more components of a color.": "Augmente ou diminue un ou plusieurs composants d’une couleur.",
+ "Inherits the styles of another selector.": "Hérite des styles d’un autre sélecteur.",
+ "Inserts $insert into $string at $index.": "Insère $insert dans $string à $index.",
+ "Invalid number of parameters": "Nombre de paramètres non valide",
+ "Joins together two lists into one.": "Regroupe deux listes en une seule.",
+ "Lets you access and modify values in lists.": "Vous permet d’accéder aux valeurs des listes et de les modifier.",
+ "Loads a Sass stylesheet and makes its mixins, functions, and variables available when this stylesheet is loaded with the @use rule.": "Charge une feuille de style Sass et rend ses mixins, fonctions et variables disponibles lorsque cette feuille de style est chargée avec la règle @use.",
+ "Loads mixins, functions, and variables from other Sass stylesheets as 'modules', and combines CSS from multiple stylesheets together.": "Charge les mixins, les fonctions et les variables d’autres feuilles de style Sass sous forme de 'modules' et associe les CSS de plusieurs feuilles de style.",
+ "Makes a color darker.": "Rend une couleur plus foncée.",
+ "Makes a color less saturated.": "Rend une couleur moins saturée.",
+ "Makes a color lighter.": "Rend une couleur plus claire.",
+ "Makes a color more opaque.": "Rend une couleur plus opaque.",
+ "Makes a color more saturated.": "Rend une couleur plus saturée.",
+ "Makes a color more transparent.": "Rend une couleur plus transparente.",
+ "Makes it easy to combine, search, or split apart strings.": "Facilite la combinaison, la recherche ou le fractionnement de chaînes.",
+ "Makes it possible to look up the value associated with a key in a map, and much more.": "Permet de rechercher la valeur associée à une clé dans une carte, et bien plus encore.",
+ "Merges two maps together into a new map.": "Fusionne deux cartes dans une nouvelle carte.",
+ "Mix two colors together in a polar color space.": "Mélangez deux couleurs dans un espace de couleurs polaire.",
+ "Mix two colors together in a rectangular color space.": "Mélangez deux couleurs dans un espace de couleurs rectangulaire.",
+ "Mixes two colors together.": "Mélange deux couleurs.",
+ "Nests selector beneath one another like they would be nested in the stylesheet.": "Imbrique les sélecteurs les uns sous les autres comme s’ils étaient imbriqués dans la feuille de style.",
+ "No unit for zero needed": "Aucune unité nécessaire pour zéro",
+ "Parses a selector into the format returned by &.": "Analyse un sélecteur dans le format retourné par &.",
+ "Prints the value of an expression to the standard error output stream. Useful for debugging complicated Sass files.": "Imprime la valeur d’une expression dans le flux de sortie d’erreur standard. Utile pour déboguer des fichiers Sass complexes.",
+ "Prints the value of an expression to the standard error output stream. Useful for libraries that need to warn users of deprecations or recovering from minor mixin usage mistakes. Warnings can be turned off with the `--quiet` command-line option or the `:quiet` Sass option.": "Imprime la valeur d’une expression dans le flux de sortie d’erreur standard. Utile pour les bibliothèques qui doivent avertir les utilisateurs des désapprobations ou de la récupération suite à des erreurs mineures d’utilisation de mixin. Les avertissements peuvent être désactivés avec l’option de ligne de commande « --quiet » ou l’option Sass « :quiet ».",
+ "Property is ignored due to the display.": "La propriété est ignorée en raison de l’affichage.",
+ "Property is ignored due to the display. With 'display: block', vertical-align should not be used.": "La propriété est ignorée en raison de l’affichage. Avec « display: block », l’alignement vertical ne doit pas être utilisé.",
+ "Provides access to Sass’s powerful selector engine.": "Donne accès au moteur sélecteur puissant de Sass.",
+ "Provides functions that operate on numbers.": "Fournit des fonctions qui agissent sur des nombres.",
+ "Removes quotes from a string.": "Supprime les guillemets d’une chaîne.",
+ "Rename to '{0}'": "Renommer en '{0}'",
+ "Replaces $original with $replacement within $selector.": "Remplace $original par $replacement dans $selector.",
+ "Replaces the nth item in a list.": "Remplace le nième élément d’une liste.",
+ "Returns a list of all keys in a map.": "Renvoie une liste de toutes les clés d’un mappage.",
+ "Returns a list of all values in a map.": "Retourne une liste de toutes les valeurs d’un mappage.",
+ "Returns a new map with keys removed.": "Retourne un nouveau mappage avec les clés supprimées.",
+ "Returns a random number.": "Retourne un nombre aléatoire.",
+ "Returns a specific item in a list.": "Retourne un élément spécifique dans une liste.",
+ "Returns the absolute value of a number.": "Retourne la valeur absolue d'un nombre.",
+ "Returns the complement of a color.": "Renvoie le complément d’une couleur.",
+ "Returns the index of the first occurance of $substring in $string.": "Retourne l’index de la première occurrence de $substring dans $string.",
+ "Returns the inverse of a color.": "Renvoie l’inverse d’une couleur.",
+ "Returns the keywords passed to a function that takes variable arguments.": "Retourne les mots clés passés à une fonction qui accepte les arguments de variables.",
+ "Returns the length of a list.": "Retourne la longueur d’une liste.",
+ "Returns the number of characters in a string.": "Retourne le nombre de caractères dans une chaîne.",
+ "Returns the position of a value within a list.": "Renvoie la position d’une valeur dans une liste.",
+ "Returns the separator of a list.": "Retourne le séparateur d’une liste.",
+ "Returns the simple selectors that comprise a compound selector.": "Retourne les sélecteurs simples qui contiennent un sélecteur composé.",
+ "Returns the string representation of a value as it would be represented in Sass.": "Renvoie la représentation sous forme de chaîne d’une valeur telle qu’elle serait représentée dans Sass.",
+ "Returns the type of a value.": "Renvoie le type d’une valeur.",
+ "Returns the unit(s) associated with a number.": "Retourne la ou les unités associées à un nombre.",
+ "Returns the value in a map associated with a given key.": "Renvoie la valeur dans un mappage associé à une clé donnée.",
+ "Returns whether $super matches all the elements $sub does, and possibly more.": "Indique si $super correspond à tous les éléments. $sub y correspond, et peut-être bien plus encore.",
+ "Returns whether a feature exists in the current Sass runtime.": "Renvoie une valeur indiquant si une fonctionnalité existe dans le runtime Sass actuel.",
+ "Returns whether a function with the given name exists.": "Indique en retour si une fonction portant le nom donné existe.",
+ "Returns whether a map has a value associated with a given key.": "Indique en retour si un mappage a une valeur associée à une clé donnée.",
+ "Returns whether a mixin with the given name exists.": "Indique si un mixin portant le nom donné existe.",
+ "Returns whether a number has units.": "Indique si un nombre a des unités.",
+ "Returns whether a variable with the given name exists in the current scope.": "Renvoie une valeur indiquant si une variable portant le nom donné existe dans l’étendue actuelle.",
+ "Returns whether a variable with the given name exists in the global scope.": "Retourne une valeur indiquant si une variable portant le nom donné existe dans l’étendue globale.",
+ "Returns whether two numbers can be added, subtracted, or compared.": "Indique en retour si deux nombres peuvent être ajoutés, soustraits ou comparés.",
+ "Rounds a number down to the previous whole number.": "Arrondit un nombre au nombre entier précédent.",
+ "Rounds a number to the nearest whole number.": "Arrondit un nombre par défaut à l’entier le plus proche.",
+ "Rounds a number up to the next whole number.": "Arrondit un nombre au nombre entier suivant.",
+ "Sass documentation": "Documentation Sass",
+ "Selector Specificity": "Spécifique du sélecteur",
+ "Selectors should not contain IDs because these rules are too tightly coupled with the HTML.": "Les sélecteurs ne doivent pas contenir d'ID, car ces règles sont trop fortement couplées au code HTML.",
+ "Simple HTML5 starting point": "Point de départ HTML5 simple",
+ "Start tag name expected.": "Nom de balise de début attendu.",
+ "Tag name must directly follow the open bracket.": "Le nom de la balise doit suivre directement le crochet ouvrant.",
+ "The universal selector (*) is known to be slow": "Le sélecteur universel (*) est connu pour être lent",
+ "Throws the value of an expression as a fatal error with stack trace. Useful for validating arguments to mixins and functions.": "Lève la valeur d’une expression en tant qu’erreur irrécupérable avec une trace. Utile pour valider des arguments dans des mixins et des fonctions.",
+ "URI expected": "URI attendu",
+ "URL encodes a string": "L’URL encode une chaîne",
+ "Unexpected character in tag.": "Caractère inattendu dans la balise.",
+ "Unifies two selectors to produce a selector that matches elements matched by both.": "Unifie deux sélecteurs pour produire un sélecteur qui correspond aux éléments mis en correspondance par les deux.",
+ "Unknown at-rule.": "Règle-at inconnue.",
+ "Unknown property.": "Propriété inconnue.",
+ "Unknown property: '{0}'": "Propriété inconnue : '{0}'",
+ "Unknown vendor specific property.": "Propriété spécifique à un fournisseur inconnue.",
+ "VS Code now has built-in support for auto-renaming tags. Do you want to enable it?": "VS Code dispose désormais d'une prise en charge intégrée des étiquettes de renommage automatique. Voulez-vous l'activer ?",
+ "When using a vendor-specific prefix also include the standard property": "Quand vous utilisez un préfixe spécifique au fournisseur, incluez également la propriété standard",
+ "When using a vendor-specific prefix make sure to also include all other vendor-specific properties": "Quand vous utilisez un préfixe spécifique au fournisseur, veillez à inclure également toutes les autres propriétés spécifiques au fournisseur.",
+ "While loop that takes an expression and repeatedly outputs the nested styles until the statement evaluates to `false`.": "Pendant que la boucle prend une expression et génère à plusieurs reprises les styles imbriqués jusqu’à ce que l’instruction ait la valeur `false`.",
+ "[ expected": "[ attendue",
+ "] expected": "] attendue",
+ "absolute value of a number": "valeur absolue d’un nombre",
+ "arccosine - inverse of cosine function": "arc cosinus : inverse de la fonction cosinus",
+ "arcsine - inverse of sine function": "arc sinus : inverse de la fonction sinus",
+ "arctangent - inverse of tangent function": "arc tangente : inverse de la fonction tangente",
+ "argument from '{0}'": "argument de « {0} »",
+ "at-rule or selector expected": "règle-at ou sélecteur attendu",
+ "at-rule unknown": "règle-at inconnue",
+ "bind the evaluation of a ruleset to each member of a list.": "Liez l’évaluation d’un ensemble de règles à chaque membre d’une liste.",
+ "calculates square root of a number": "calcule la racine carrée d’un nombre",
+ "colon expected": "signe deux-points attendu",
+ "comma expected": "virgule attendue",
+ "condition expected": "condition attendue",
+ "converts numbers from one type into another": "convertit des nombres d’un type en un autre",
+ "converts to a %, e.g. 0.5 > 50%": "convertit en %, par exemple 0,5 > 50 %",
+ "cosine function": "fonction cosinus",
+ "creates a #AARRGGBB": "crée une valeur #AARRGGBB",
+ "creates a color": "crée une couleur",
+ "css.builtin.lab": "css.builtin.lab",
+ "dot expected": "point attendu",
+ "escape string content": "contenu de chaîne d’échappement",
+ "expression expected": "expression attendue",
+ "first argument modulus second argument": "premier argument modulo second argument",
+ "first argument raised to the power of the second argument": "premier argument élevé à la puissance du deuxième argument",
+ "generate a list spanning a range of values": "générer une liste couvrant une plage de valeurs",
+ "identifier expected": "Identificateur attendu",
+ "identifier or variable expected": "identificateur ou variable attendu",
+ "identifier or wildcard expected": "identificateur ou caractère générique attendu",
+ "inline-block is ignored due to the float. If 'float' has a value other than 'none', the box is floated and 'display' is treated as 'block'": "inline-block est ignoré en raison du float. Si « float » a une valeur autre que « none », la zone est rendue flottante et « display » est traité comme « block ».",
+ "inlines a resource and falls back to `url()`": "place une ressource dans du code (inline) et revient à `url()`",
+ "media query expected": "requête de média attendue",
+ "number expected": "nombre attendu",
+ "operator expected": "opérateur attendu",
+ "page directive or declaraton expected": "directive de page ou déclaration attendue",
+ "parses a string to a color": "analyse une chaîne en une couleur",
+ "percentage expected": "pourcentage attendu",
+ "property value expected": "valeur de propriété attendue",
+ "remove or change the unit of a dimension": "supprimer ou modifier l’unité d’une dimension",
+ "return `@color` 10% points darker": "renvoyer les points 10 % plus sombres de '@color'",
+ "return `@color` 10% points less saturated": "renvoyer « @color » 10 % de points moins saturés",
+ "return `@color` 10% points less transparent": "retourner `@color` 10 % de points moins transparents",
+ "return `@color` 10% points lighter": "renvoie les points 10 % plus clairs de « @color »",
+ "return `@color` 10% points more saturated": "renvoyer « @color » 10 % de points plus saturés",
+ "return `@color` 10% points more transparent": "renvoyer `@color` 10 % de points plus transparents",
+ "return `@color` with 50% transparency": "retourner '@color' avec 50 % de transparence",
+ "return `@color` with a 10 degree larger in hue": "retourne `@color` avec une teinte plus grande de 10 degrés",
+ "return `@darkcolor` if `@color1 is> 43% luma` otherwise return `@lightcolor`, see notes": "renvoyer `@darkcolor` if `@color1 is> 43% luma` sinon, renvoyer `@lightcolor`, veuillez consulter les notes",
+ "return a mix of `@color1` and `@color2`": "retourne un mélange de `@color1` et `@color2`",
+ "returns a grey, 100% desaturated color": "renvoie une couleur grise 100 % désaturée",
+ "returns a value at the specified position in the list": "renvoie une valeur à la position spécifiée dans la liste",
+ "returns one of two values depending on a condition.": "renvoie l’une des deux valeurs en fonction d’une condition.",
+ "returns pi": "renvoie pi",
+ "returns the `alpha` channel of `@color`": "retourne le canal `alpha` de `@color`",
+ "returns the `blue` channel of `@color`": "renvoie le canal « blue » de « @color »",
+ "returns the `green` channel of `@color`": "retourne le canal `green` de `@color`",
+ "returns the `hue` channel of `@color` in the HSL space": "renvoie le canal « hue » de « @color » dans l’espace TSL",
+ "returns the `hue` channel of `@color` in the HSV space": "renvoie le canal `hue` de '@color' dans l’espace HTSV",
+ "returns the `lightness` channel of `@color` in the HSL space": "renvoie le canal `lightness` de `@color` dans l’espace TSL",
+ "returns the `luma` value (perceptual brightness) of `@color`": "renvoie la valeur « luma » (luminosité perceptuelle) de « @color »",
+ "returns the `red` channel of `@color`": "retourne le canal `red` de `@color`",
+ "returns the `saturation` channel of `@color` in the HSL space": "renvoie le canal 'saturation' de '@color' dans l’espace TSL",
+ "returns the `saturation` channel of `@color` in the HSV space": "renvoie le canal `saturation` de `@color` dans l’espace TSV",
+ "returns the `value` channel of `@color` in the HSV space": "renvoie le canal 'value' de '@color' dans l’espace TSV",
+ "returns the lowest of one or more values": "renvoie la valeur la plus faible d’une ou plusieurs valeurs",
+ "returns the number of elements in a value list": "renvoie le nombre d’éléments dans une liste de valeurs",
+ "rounds a number to a number of places": "arrondit un nombre à un certain nombre d’emplacements",
+ "rounds down to an integer": "arrondit à un entier",
+ "rounds up to an integer": "arrondit à un entier",
+ "selector expected": "sélecteur attendu",
+ "semi-colon expected": "point-virgule attendu",
+ "sine function": "fonction sinus",
+ "string literal expected": "littéral de chaîne attendu",
+ "string replace": "remplacement de chaîne",
+ "tangent function": "fonction tangente",
+ "term expected": "terme attendu",
+ "unknown keyword": "mot clé inconnu",
+ "uri or string expected": "URI ou chaîne attendu",
+ "variable name expected": "nom de variable attendu",
+ "variable value expected": "valeur de variable attendue",
+ "whitespace expected": "espace blanc attendu",
+ "wildcard expected": "caractère générique attendu",
+ "{ expected": "{ attendue",
+ "{0}, '{1}'": "{0}, '{1}'",
+ "} expected": "} attendue"
+ },
+ "package": {
+ "description": "Fournit une prise en charge de langage complète pour les fichiers HTML et Handlebar",
+ "displayName": "Fonctionnalités de langage HTML",
+ "html.autoClosingTags": "Activez/désactivez la fermeture automatique des balises HTML.",
+ "html.autoCreateQuotes": "Activez/désactivez la création automatique de guillemets pour l’attribution d’attribut HTML. Le type de guillemets peut être configuré par « #html.completion.attributeDefaultValue# ».",
+ "html.completion.attributeDefaultValue": "Contrôle la valeur par défaut des attributs une fois l’achèvement accepté",
+ "html.completion.attributeDefaultValue.doublequotes": "La valeur de l'attribut est fixée à \"\".",
+ "html.completion.attributeDefaultValue.empty": "La valeur de l'attribut n'est pas définie.",
+ "html.completion.attributeDefaultValue.singlequotes": "La valeur de l'attribut est fixée à ''.",
+ "html.customData.desc": "Liste de chemins de fichiers relatifs pointant vers des fichiers JSON respectant le [format de données personnalisé](https://github.com/microsoft/vscode-html-languageservice/blob/master/docs/customData.md).\r\n\r\nVS Code charge des données personnalisées au démarrage pour améliorer la prise en charge des balises, attributs et valeurs d’attribut HTML personnalisés que vous spécifiez dans les fichiers JSON.\r\n\r\nLes chemins de fichiers sont relatifs à l’espace de travail, et seuls les paramètres de dossier d’espace de travail sont pris en compte.",
+ "html.format.contentUnformatted.desc": "Liste des balises, séparés par des virgules, où le contenu ne devrait pas être reformaté. `null` par défaut pour la balise `pre`.",
+ "html.format.enable.desc": "Activer/désactiver le formateur HTML par défaut.",
+ "html.format.extraLiners.desc": "Liste des balises, séparées par des virgules, qui devraient avoir un saut de ligne supplémentaire devant eux. `null` par défaut pour `\"head, body, /html\"`.",
+ "html.format.indentHandlebars.desc": "Mettez en forme et indenter `{{#foo}}`, ainsi que `{{/foo}}`.",
+ "html.format.indentInnerHtml.desc": "Mettez en retrait les sections '' et ''.",
+ "html.format.maxPreserveNewLines.desc": "Nombre maximal de sauts de ligne à être conservés dans un segment unique. Utiliser `null` pour illimité.",
+ "html.format.preserveNewLines.desc": "Contrôle si les sauts de ligne existants avant des éléments doivent être préservés. Fonctionne uniquement avant des éléments, pas à l’intérieur de balises ou dans le texte.",
+ "html.format.templating.desc": "Privilégie les balises de langage de templating django, erb, handlebars et php.",
+ "html.format.unformatted.desc": "Liste des balises, séparées par des virgules, qui ne devrait pas être reformatées. `null` par défaut toutes les balises répertoriées dans https://www.w3.org/TR/html5/dom.html#phrasing-content.",
+ "html.format.unformattedContentDelimiter.desc": "Garde ensemble le contenu du texte dans cette chaîne.",
+ "html.format.wrapAttributes.alignedmultiple": "Entourer lorsque la longueur de ligne est dépassée, aligner verticalement les attributs.",
+ "html.format.wrapAttributes.auto": "Retour automatique à la ligne des attributs uniquement en cas de dépassement de la longueur de la ligne.",
+ "html.format.wrapAttributes.desc": "Retour à la ligne des attributs.",
+ "html.format.wrapAttributes.force": "Retour automatique à la ligne de chaque attribut, sauf le premier.",
+ "html.format.wrapAttributes.forcealign": "Retour automatique à la ligne de chaque attribut, sauf le premier, avec maintien de l'alignement.",
+ "html.format.wrapAttributes.forcemultiline": "Retour automatique à la ligne de chaque attribut.",
+ "html.format.wrapAttributes.preserve": "Conserve le retour à la ligne des attributs.",
+ "html.format.wrapAttributes.preservealigned": "Conservez le wrapping des attributs, mais alignez-les.",
+ "html.format.wrapAttributesIndentSize.desc": "Mettez en retrait les attributs encapsulés après N caractères. Utilisez « null » pour utiliser la taille de retrait par défaut. Ignoré si #html.format.wrapAttributes# a la valeur aligned.",
+ "html.format.wrapLineLength.desc": "Nombre maximal de caractères par ligne (0 = désactiver).",
+ "html.hover.documentation": "Affiche la documentation relative aux balises et aux attributs quand le curseur passe sur l'élément.",
+ "html.hover.references": "Affiche les références à MDN quand le curseur passe sur l'élément.",
+ "html.mirrorCursorOnMatchingTag": "Activez/désactivez le curseur de mise en miroir sur la balise HTML correspondante.",
+ "html.mirrorCursorOnMatchingTagDeprecationMessage": "Déprécié au profit de 'editor.linkedEditing'",
+ "html.suggest.hideEndTagSuggestions.desc": "Contrôle si la prise en charge intégrée du langage HTML suggère les balises de fermeture. Lorsque cette option est désactivée, les complétions de balises de fin comme ne sont pas affichées.",
+ "html.suggest.html5.desc": "Contrôle si la prise en charge intégrée du langage HTML propose des balises, des propriétés et des valeurs HTML5.",
+ "html.trace.server.desc": "Trace la communication entre VS Code et le serveur de langage HTML.",
+ "html.validate.scripts": "Contrôle si la prise en charge intégrée du langage HTML valide les scripts incorporés.",
+ "html.validate.styles": "Contrôle si la prise en charge intégrée du langage HTML valide les styles incorporés."
+ }
+ }
+}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-fr/translations/extensions/vscode.html.i18n.json b/i18n/vscode-language-pack-fr/translations/extensions/vscode.html.i18n.json
index 7c0e7fc814..ebe99427ce 100644
--- a/i18n/vscode-language-pack-fr/translations/extensions/vscode.html.i18n.json
+++ b/i18n/vscode-language-pack-fr/translations/extensions/vscode.html.i18n.json
@@ -9,8 +9,8 @@
"version": "1.0.0",
"contents": {
"package": {
- "displayName": "Notions de base du langage HTML",
- "description": "Fournit la coloration syntaxique, la mise en correspondance des crochets et les extraits dans les fichiers HTML."
+ "description": "Fournit la coloration syntaxique, la mise en correspondance des crochets et les extraits dans les fichiers HTML.",
+ "displayName": "Notions de base du langage HTML"
}
}
}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-fr/translations/extensions/vscode.ini.i18n.json b/i18n/vscode-language-pack-fr/translations/extensions/vscode.ini.i18n.json
index 9518fc78ef..0da727ea2c 100644
--- a/i18n/vscode-language-pack-fr/translations/extensions/vscode.ini.i18n.json
+++ b/i18n/vscode-language-pack-fr/translations/extensions/vscode.ini.i18n.json
@@ -9,8 +9,8 @@
"version": "1.0.0",
"contents": {
"package": {
- "displayName": "Bases du langage Ini",
- "description": "Fournit la coloration syntaxique et la correspondance des crochets dans les fichiers Ini."
+ "description": "Fournit la coloration syntaxique et la correspondance des crochets dans les fichiers Ini.",
+ "displayName": "Bases du langage Ini"
}
}
}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-fr/translations/extensions/vscode.ipynb.i18n.json b/i18n/vscode-language-pack-fr/translations/extensions/vscode.ipynb.i18n.json
new file mode 100644
index 0000000000..e1cd574eb9
--- /dev/null
+++ b/i18n/vscode-language-pack-fr/translations/extensions/vscode.ipynb.i18n.json
@@ -0,0 +1,29 @@
+{
+ "": [
+ "--------------------------------------------------------------------------------------------",
+ "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."
+ ],
+ "version": "1.0.0",
+ "contents": {
+ "bundle": {
+ "Insert Image as Attachment": "Insérer une image en pièce jointe"
+ },
+ "package": {
+ "addCellOutputToChat.title": "Ajouter la sortie de cellule à la conversation",
+ "cleanInvalidImageAttachment.title": "Nettoyer la référence de pièce jointe d’image non valide",
+ "copyCellOutput.title": "Copier la sortie de cellule",
+ "description": "Fournit une prise en charge de base pour l’ouverture et la lecture des fichiers de bloc-notes .ipynb de Jupyter",
+ "displayName": "Prise en charge de .ipynb",
+ "ipynb.experimental.serialization": "Fonctionnalité expérimentale permettant de sérialiser l’application Jupyter Notebook dans un thread de travail.",
+ "ipynb.pasteImagesAsAttachments.enabled": "Activez/désactivez le collage d’images dans la cellule Markdown des fichiers ipynb notebook. Les images collées sont insérées en tant que pièces jointes dans la cellule.",
+ "markdownAttachmentRenderer.displayName": "Convertisseur de pièce jointe ipynb Markdown-It",
+ "newUntitledIpynb.shortTitle": "Bloc-notes Jupyter",
+ "newUntitledIpynb.title": "Nouveau Jupyter Notebook",
+ "openCellOutput.title": "Ouvrir la sortie de cellule dans l’Éditeur de texte",
+ "openIpynbInNotebookEditor.title": "Ouvrir le fichier IPYNB dans l’éditeur de notebook"
+ }
+ }
+}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-fr/translations/extensions/vscode.jake.i18n.json b/i18n/vscode-language-pack-fr/translations/extensions/vscode.jake.i18n.json
new file mode 100644
index 0000000000..fd428fac2d
--- /dev/null
+++ b/i18n/vscode-language-pack-fr/translations/extensions/vscode.jake.i18n.json
@@ -0,0 +1,24 @@
+{
+ "": [
+ "--------------------------------------------------------------------------------------------",
+ "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."
+ ],
+ "version": "1.0.0",
+ "contents": {
+ "bundle": {
+ "Auto detecting Jake for folder {0} failed with error: {1}', this.workspaceFolder.name, err.error ? err.error.toString() : 'unknown": "Échec de la détection automatique de l’erreur de {0} de dossier : {1}', this.workspaceFolder.name, err.error ? err.error.toString() : 'inconnu",
+ "Go to output": "Accéder à la sortie",
+ "Problem finding jake tasks. See the output for more information.": "Problème de recherche des tâches jake. Consultez la sortie pour plus d'informations."
+ },
+ "package": {
+ "config.jake.autoDetect": "Contrôle l’activation de la détection des tâches Jake. La détection des tâches Jake peut entraîner l’exécution de fichiers dans un espace de travail ouvert.",
+ "description": "Extension pour ajouter des fonctionnalités Jake à VS Code.",
+ "displayName": "Prise en charge de Jake pour VS Code",
+ "jake.taskDefinition.file.description": "Le fichier Jake qui fournit la tâche. Peut être oublié.",
+ "jake.taskDefinition.type.description": "La tâche Jake à personnaliser."
+ }
+ }
+}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-fr/translations/extensions/vscode.java.i18n.json b/i18n/vscode-language-pack-fr/translations/extensions/vscode.java.i18n.json
index b127a24d29..4fe823b597 100644
--- a/i18n/vscode-language-pack-fr/translations/extensions/vscode.java.i18n.json
+++ b/i18n/vscode-language-pack-fr/translations/extensions/vscode.java.i18n.json
@@ -9,8 +9,8 @@
"version": "1.0.0",
"contents": {
"package": {
- "displayName": "Concepts de base du langage Java",
- "description": "Fournit des extraits de code, la coloration syntaxique, la correspondance des crochets et le repli dans les fichiers Java."
+ "description": "Fournit des extraits de code, la coloration syntaxique, la correspondance des crochets et le repli dans les fichiers Java.",
+ "displayName": "Concepts de base du langage Java"
}
}
}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-fr/translations/extensions/vscode.javascript.i18n.json b/i18n/vscode-language-pack-fr/translations/extensions/vscode.javascript.i18n.json
index 30b5648bd2..eb18f66f03 100644
--- a/i18n/vscode-language-pack-fr/translations/extensions/vscode.javascript.i18n.json
+++ b/i18n/vscode-language-pack-fr/translations/extensions/vscode.javascript.i18n.json
@@ -9,8 +9,8 @@
"version": "1.0.0",
"contents": {
"package": {
- "displayName": "Concepts de base du langage JavaScript",
- "description": "Fournit des extraits de code, la coloration syntaxique, la correspondance des crochets et le repli dans les fichiers JavaScript."
+ "description": "Fournit des extraits de code, la coloration syntaxique, la correspondance des crochets et le repli dans les fichiers JavaScript.",
+ "displayName": "Concepts de base du langage JavaScript"
}
}
}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-fr/translations/extensions/vscode.json-language-features.i18n.json b/i18n/vscode-language-pack-fr/translations/extensions/vscode.json-language-features.i18n.json
new file mode 100644
index 0000000000..adb33a5687
--- /dev/null
+++ b/i18n/vscode-language-pack-fr/translations/extensions/vscode.json-language-features.i18n.json
@@ -0,0 +1,190 @@
+{
+ "": [
+ "--------------------------------------------------------------------------------------------",
+ "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."
+ ],
+ "version": "1.0.0",
+ "contents": {
+ "bundle": {
+ "$ref '{0}' in '{1}' can not be resolved.": "$ref « {0} » dans « {1} » ne peut pas être résolu.",
+ "": "",
+ "A default value. Used by suggestions.": "Valeur par défaut. Utilisée par les suggestions.",
+ "A descriptive title of the schema.": "Titre descriptif de schéma.",
+ "A long description of the schema. Used in hover menus and suggestions.": "Description longue du schéma. Utilisé dans les menus sensitif et les suggestions.",
+ "A map of property names to either an array of property names or a schema. An array of property names means the property named in the key depends on the properties in the array being present in the object in order to be valid. If the value is a schema, then the schema is only applied to the object if the property in the key exists on the object.": "Mappage des noms de propriétés à un tableau de noms de propriétés ou à un schéma. Un tableau de noms de propriétés signifie que la propriété nommée dans la clé dépend des propriétés du tableau présent dans l’objet pour être valide. Si la valeur est un schéma, le schéma n’est appliqué à l’objet que si la propriété de la clé existe sur l’objet.",
+ "A map of property names to schemas for each property.": "Mappage des noms de propriétés aux schémas de chaque propriété.",
+ "A map of regular expressions on property names to schemas for matching properties.": "Mappage d’expressions régulières sur des noms de propriétés vers des schémas pour les propriétés correspondantes.",
+ "A number that should cleanly divide the current value (i.e. have no remainder).": "Nombre qui doit diviser correctement la valeur actuelle (à savoir aucun reste à l’issue de l’opération).",
+ "A regular expression to match the string against. It is not implicitly anchored.": "Expression régulière à mettre en correspondance avec la chaîne. Elle n’est pas implicitement ancrée.",
+ "A schema which must not match.": "Schéma qui ne doit pas correspondre.",
+ "A unique identifier for the schema.": "Identificateur unique du schéma.",
+ "An array instance is valid against \"contains\" if at least one of its elements is valid against the given schema.": "Une instance de tableau est valide par rapport à « contains » si au moins un de ses éléments est valide par rapport au schéma donné.",
+ "An array of schemas, all of which must match.": "Tableau de schémas, qui doivent tous correspondre.",
+ "An array of schemas, exactly one of which must match.": "Tableau de schémas, dont l’un doit correspondre exactement.",
+ "An array of schemas, where at least one must match.": "Tableau de schémas, où au moins un doit correspondre.",
+ "An array of strings that lists the names of all properties required on this object.": "Tableau de chaînes qui répertorie les noms de toutes les propriétés requises sur cet objet.",
+ "An instance validates successfully against this keyword if its value is equal to the value of the keyword.": "Une instance est validée avec succès par rapport à ce mot clé si sa valeur est égale à la valeur du mot clé.",
+ "Array does not contain required item.": "Le tableau ne contient pas l’élément requis.",
+ "Array has duplicate items.": "Le tableau contient des éléments dupliqués.",
+ "Array has too few items that match the contains contraint. Expected {0} or more.": "Le tableau contient trop peu d’éléments qui correspondent à la contrainte contains. Le système attendait {0} ou plus.",
+ "Array has too few items. Expected {0} or more.": "Le tableau comporte trop peu d’éléments. {0} ou plus attendus.",
+ "Array has too many items according to schema. Expected {0} or fewer.": "Le tableau contient trop d’éléments selon le schéma. Le système attendait {0} ou moins.",
+ "Array has too many items that match the contains contraint. Expected {0} or less.": "Le tableau contient trop d’éléments qui correspondent à la contrainte contains. Le système attendait {0} ou moins.",
+ "Array has too many items. Expected {0} or fewer.": "Le tableau contient trop d’éléments. Le système attendait {0} ou moins.",
+ "Colon expected": "Deux-points attendu",
+ "Comments are not permitted in JSON.": "Les commentaires ne sont pas autorisés au format JSON.",
+ "Comments from schema authors to readers or maintainers of the schema.": "Commentaires des auteurs de schéma aux lecteurs ou aux chargés de maintenance du schéma.",
+ "Configure": "Configurer",
+ "Configured by extension: {0}": "Configuré par l’extension : {0}",
+ "Configured in user settings": "Configuré dans les paramètres utilisateur",
+ "Configured in workspace settings": "Configuré dans les paramètres de l’espace de travail",
+ "Default value": "Valeur par défaut",
+ "Describes the content encoding of a string property.": "Décrit l’encodage de contenu d’une propriété de chaîne.",
+ "Describes the format expected for the value. By default, not used for validation": "Décrit le format attendu pour la valeur. Par défaut, non utilisé pour la validation",
+ "Describes the media type of a string property.": "Décrit le type de média d’une propriété de chaîne.",
+ "Downloading schemas is disabled in untrusted workspaces": "Le téléchargement des schémas est désactivé dans les espaces de travail non fiables",
+ "Downloading schemas is disabled through setting '{0}'": "Le téléchargement des schémas est désactivé via le paramètre '{0}'",
+ "Downloading schemas is disabled. Click to configure.": "Le téléchargement des schémas est désactivé. Cliquez pour configurer.",
+ "Draft-03 schemas are not supported.": "Les schémas Draft-03 ne sont pas pris en charge.",
+ "Duplicate anchor declaration: '{0}'": "Déclaration d’ancre dupliquée : « {0} »",
+ "Duplicate object key": "Clé d’objet en double",
+ "Either a schema or a boolean. If a schema, used to validate all properties not matched by 'properties', 'propertyNames', or 'patternProperties'. If false, any properties not defined by the adajacent keywords will cause this schema to fail.": "Schéma ou booléen. S'il s'agit d'un schéma, utilisé pour valider toutes les propriétés qui ne correspondent pas à « properties », « propertyNames » ou « patternProperties ». Si la valeur est false, toutes les propriétés non définies par les mots clés ada adjacents entraînent l’échec de ce schéma.",
+ "Either a string of one of the basic schema types (number, integer, null, array, object, boolean, string) or an array of strings specifying a subset of those types.": "Chaîne de l’un des types de schéma de base (nombre, entier, caractère Null, tableau, objet, booléen, chaîne) ou tableau de chaînes spécifiant un sous-ensemble de ces types.",
+ "End of file expected.": "Fin de fichier attendue.",
+ "Expected a JSON object, array or literal.": "Objet, tableau ou littéral JSON attendu.",
+ "Expected comma": "Virgule attendue",
+ "Expected comma or closing brace": "Virgule ou accolade fermante attendue",
+ "Expected comma or closing bracket": "Virgule ou crochet fermant attendu",
+ "Failed to sort the JSONC document, please consider opening an issue.": "Échec du tri du document JSONC. Envisagez d’ouvrir un problème.",
+ "For arrays, only when items is set as an array. If items are a schema, this schema validates items after the ones specified by the items schema. If false, additional items will cause validation to fail.": "Pour les tableaux, uniquement quand les éléments sont définis sous forme de tableau. Si les éléments sont un schéma, ce schéma valide les éléments après ceux spécifiés par le schéma des éléments. Si la valeur est fausse, les éléments supplémentaires entraînent l’échec de la validation.",
+ "For arrays. Can either be a schema to validate every element against or an array of schemas to validate each item against in order (the first schema will validate the first element, the second schema will validate the second element, and so on.": "Pour les tableaux. Peut être un schéma par rapport auquel valider chaque élément ou un tableau de schémas par rapport auquel valider chaque élément dans l’ordre (le premier schéma valide le premier élément, le second schéma valide le deuxième élément, et ainsi de suite).",
+ "If all of the items in the array must be unique. Defaults to false.": "Indique si tous les éléments du tableau doivent être uniques. La valeur par défaut est false.",
+ "If the instance is an object, this keyword validates if every property name in the instance validates against the provided schema.": "Si l’instance est un objet, ce mot clé vérifie si chaque nom de propriété de l’instance est validé par rapport au schéma fourni.",
+ "Incorrect type. Expected \"{0}\".": "Type incorrect. « {0} » attendu.",
+ "Incorrect type. Expected one of {0}.": "Type incorrect. L’un des {0} attendus.",
+ "Indicates that the value of the instance is managed exclusively by the owning authority.": "Indique que la valeur de l’instance est gérée exclusivement par l’autorité propriétaire.",
+ "Invalid characters in string. Control characters must be escaped.": "Caractères non valides dans la chaîne. Les caractères de contrôle doivent être placés dans une séquence d’échappement.",
+ "Invalid color format. Use #RGB, #RGBA, #RRGGBB or #RRGGBBAA.": "Format de couleur non valide. Utilisez #RGB, #RGBA, #RRGGBB ou #RRGGBBAA.",
+ "Invalid escape character in string.": "Caractère d’échappement non valide dans la chaîne.",
+ "Invalid number format.": "Format de nombre non valide.",
+ "Invalid unicode sequence in string.": "Séquence Unicode non valide dans la chaîne.",
+ "Item does not match any validation rule from the array.": "L’élément ne correspond à aucune règle de validation du tableau.",
+ "JSON Language Server": "Serveur de langage JSON",
+ "JSON Outline Status": "État du plan JSON",
+ "JSON Validation Status": "Statut de validation JSON",
+ "JSON schema cache cleared.": "Cache de schéma JSON effacé.",
+ "JSON schema configured": "Schéma JSON configuré",
+ "JSON: Schema Resolution Error": "JSON : erreur de résolution de schéma",
+ "Learn more about JSON schema configuration...": "En savoir plus sur la configuration du schéma JSON...",
+ "Loading JSON info": "Chargement des informations JSON",
+ "Makes the maximum property exclusive.": "Rend la propriété maximale exclusive.",
+ "Makes the minimum property exclusive.": "Rend la propriété minimale exclusive.",
+ "Matches a schema that is not allowed.": "Correspond à un schéma qui n’est pas autorisé.",
+ "Matches multiple schemas when only one must validate.": "Correspond à plusieurs schémas quand un seul doit être validé.",
+ "Missing property \"{0}\".": "Propriété manquante : « {0} »",
+ "New array": "Nouveau tableau",
+ "New object": "Nouvel objet",
+ "No schema configured for this file": "Aucun schéma configuré pour ce fichier",
+ "No schema validation": "Aucune validation de schéma",
+ "Not used for validation. Place subschemas here that you wish to reference inline with $ref.": "Non utilisé pour la validation. Placez ici les sous-schémas que vous souhaitez référencer inline avec $ref.",
+ "Object has fewer properties than the required number of {0}": "L’objet a moins de propriétés que le nombre requis de {0}",
+ "Object has more properties than limit of {0}.": "L’objet a un nombre de propriétés supérieur à la limite de {0}.",
+ "Object is missing property {0} required by property {1}.": "L’objet n’a pas la propriété {0} requise par la propriété {1}.",
+ "Open Extension": "Ouvrir l'extension",
+ "Open Settings": "Ouvrir les paramètres",
+ "Outline": "Structure",
+ "Problem reading content from '{0}': UTF-8 with BOM detected, only UTF 8 is allowed.": "Nous n’avons pas pu lire le contenu depuis « {0} », car UTF-8 a été détecté avec une marque d’ordre d’octet, alors que seul UTF-8 est autorisé.",
+ "Problems loading reference '{0}': {1}": "Nous n’avons pas pu charger la référence « {0} », car nous avons rencontré des problèmes : {1}",
+ "Property expected": "Propriété attendue",
+ "Property keys must be doublequoted": "Les clés de propriété doivent être entre guillemets doubles",
+ "Property {0} is not allowed.": "La propriété {0} n’est pas autorisée.",
+ "Reference a definition hosted on any location.": "Référencez une définition hébergée à n’importe quel emplacement.",
+ "Sample JSON values associated with a particular schema, for the purpose of illustrating usage.": "Exemples de valeurs JSON associées à un schéma particulier, dans le but d’illustrer l’utilisation.",
+ "Schema not found: {0}": "Schéma introuvable : {0}",
+ "Schema validated": "Schéma validé",
+ "Select the schema to use for {0}": "Sélectionner le schéma à utiliser pour {0}",
+ "Show Schemas": "Afficher les schémas",
+ "Sort JSON": "Trier JSON",
+ "String does not match the pattern of \"{0}\".": "La valeur {0} ne correspond pas au modèle « {0} ».",
+ "String is longer than the maximum length of {0}.": "La chaîne dépasse la longueur maximale de {0}.",
+ "String is not a RFC3339 date-time.": "La chaîne n’est pas un horodatage RFC3339.",
+ "String is not a RFC3339 date.": "La chaîne n’est pas une date RFC3339.",
+ "String is not a RFC3339 time.": "La chaîne n’est pas une heure RFC3339.",
+ "String is not a URI: {0}": "La chaîne n’est pas un URI : {0}",
+ "String is not a hostname.": "La chaîne n’est pas un nom d’hôte.",
+ "String is not an IPv4 address.": "La chaîne n’est pas une adresse IPv4.",
+ "String is not an IPv6 address.": "La chaîne n’est pas une adresse IPv6.",
+ "String is not an e-mail address.": "La chaîne n’est pas une adresse e-mail.",
+ "String is shorter than the minimum length of {0}.": "La chaîne est plus courte que la longueur minimale de {0}.",
+ "The \"else\" subschema is used for validation when the \"if\" subschema fails.": "Le sous-schéma « else » est utilisé pour la validation en cas d’échec du sous-schéma « if ».",
+ "The \"then\" subschema is used for validation when the \"if\" subschema succeeds.": "Le sous-schéma « then » est utilisé pour la validation quand le sous-schéma « if » réussit.",
+ "The maximum length of a string.": "Longueur maximale d’une chaîne.",
+ "The maximum number of items that can be inside an array. Inclusive.": "Nombre maximal d’éléments pouvant se trouver dans un tableau. Inclusif.",
+ "The maximum number of properties an object can have. Inclusive.": "Nombre maximal de propriétés qu’un objet peut avoir. Inclusif.",
+ "The maximum numerical value, inclusive by default.": "Valeur numérique maximale, incluse par défaut.",
+ "The minimum length of a string.": "Longueur minimale d’une chaîne.",
+ "The minimum number of items that can be inside an array. Inclusive.": "Nombre minimal d’éléments pouvant se trouver dans un tableau. Inclusif.",
+ "The minimum number of properties an object can have. Inclusive.": "Nombre minimal de propriétés qu’un objet peut avoir. Inclusif.",
+ "The minimum numerical value, inclusive by default.": "Valeur numérique minimale, inclusive par défaut.",
+ "The schema to verify this document against.": "Schéma par rapport auquel vérifier ce document.",
+ "The schema uses meta-schema features ({0}) that are not yet supported by the validator.": "Le schéma utilise des fonctionnalités de méta-schéma ({0}) qui ne sont pas encore prises en charge par le validateur.",
+ "The set of literal values that are valid.": "Ensemble de valeurs littérales valides.",
+ "The validation outcome of the \"if\" subschema controls which of the \"then\" or \"else\" keywords are evaluated.": "Le résultat de validation du sous-schéma « if » contrôle lequel des mots clés « then » ou « else » est évalué.",
+ "Trailing comma": "Virgule de fin",
+ "URI expected.": "URI attendu.",
+ "URI is expected.": "L'URI est attendu.",
+ "URI with a scheme is expected.": "Un URI avec un schéma est attendu.",
+ "Unable to compute used schemas: No document": "Impossible de calculer les schémas utilisés : aucun document",
+ "Unable to compute used schemas: {0}": "Impossible de calculer les schémas utilisés : {0}",
+ "Unable to download schemas in untrusted workspaces.": "Désolé, nous ne pouvons pas télécharger les schémas dans les espaces de travail non fiables.",
+ "Unable to load schema from '{0}'. No schema request service available": "Nous n’avons pas pu charger le schéma depuis « {0} ». Aucun service de requête de schéma disponible",
+ "Unable to load schema from '{0}': No content.": "Nous n’avons pas pu charger le schéma depuis « {0} », car aucun contenu n’était présent.",
+ "Unable to load schema from '{0}': {1}.": "Nous n’avons pas pu charger le schéma depuis « {0} » : {1}.",
+ "Unable to load {0}": "Impossible de charger {0}",
+ "Unable to parse content from '{0}': Parse error at offset {1}.": "Nous n’avons pas pu analyser le contenu depuis « {0} », car nous avons rencontré une erreur d’analyse au décalage {1}.",
+ "Unable to resolve schema. Click to retry.": "Impossible de résoudre le schéma. Cliquez pour réessayer.",
+ "Unexpected end of comment.": "Fin de commentaire inattendue.",
+ "Unexpected end of number.": "Fin de nombre inattendue.",
+ "Unexpected end of string.": "Fin de chaîne inattendue.",
+ "Value expected": "Valeur attendue",
+ "Value is above the exclusive maximum of {0}.": "La valeur est supérieure au maximum exclusif de {0}.",
+ "Value is above the maximum of {0}.": "La valeur est supérieure au maximum de {0}.",
+ "Value is below the exclusive minimum of {0}.": "La valeur est inférieure au minimum exclusif de {0}.",
+ "Value is below the minimum of {0}.": "La valeur est inférieure au minimum de {0}.",
+ "Value is deprecated": "La valeur est déconseillée",
+ "Value is not accepted. Valid values: {0}.": "La valeur n’est pas acceptée. Valeurs valides : {0}.",
+ "Value is not divisible by {0}.": "La valeur n’est pas divisible par {0}.",
+ "Value must be {0}.": "La valeur doit être {0}.",
+ "multiple JSON schemas configured": "plusieurs schémas JSON configurés",
+ "no JSON schema configured": "aucun schéma JSON configuré",
+ "only {0} document symbols shown for performance reasons": "seuls les symboles de document {0} sont affichés pour des raisons de performances",
+ "{0} is a directory, not a file": "{0} est un répertoire, et non un fichier"
+ },
+ "package": {
+ "description": "Fournit une prise en charge de langage pour les fichiers JSON",
+ "displayName": "Fonctionnalités de langage JSON",
+ "json.clickToRetry": "Cliquez pour réessayer.",
+ "json.colorDecorators.enable.deprecationMessage": "Le paramètre 'json.colorDecorators.enable' a été déprécié en faveur de 'editor.colorDecorators'.",
+ "json.colorDecorators.enable.desc": "Active ou désactive les éléments décoratifs de couleurs",
+ "json.command.clearCache": "Effacer le cache de schéma",
+ "json.command.sort": "Trier le document",
+ "json.enableSchemaDownload.desc": "Quand ils sont activés, les schémas JSON peuvent être récupérés (fetch) à partir des emplacements http et https.",
+ "json.format.enable.desc": "Activer/désactiver le formateur JSON par défaut",
+ "json.format.keepLines.desc": "Conservez toutes les nouvelles lignes existantes lors de la mise en forme.",
+ "json.maxItemsComputed.desc": "Nombre maximal de symboles de plan et de régions de pliage calculé (limité pour des raisons de performances).",
+ "json.maxItemsExceededInformation.desc": "Affiche une notification en cas de dépassement du nombre maximal de symboles de plan et de zones de pliage.",
+ "json.schemaResolutionErrorMessage": "Impossible de résoudre le schéma.",
+ "json.schemas.desc": "Associe les schémas aux fichiers JSON dans le projet actif.",
+ "json.schemas.fileMatch.desc": "Tableau de modèles de fichiers à mettre en correspondance lors de la résolution de fichiers JSON en schémas. « * » et « ** » peuvent être utilisés comme caractères génériques. Des modèles d’exclusion peuvent également être définis et commencer par « ! ». Un fichier correspond quand il existe au moins un modèle correspondant et que le dernier modèle correspondant n’est pas un modèle d’exclusion.",
+ "json.schemas.fileMatch.item.desc": "Modèle de fichier pouvant contenir « * » et « ** » à mettre en correspondance lors de la résolution de fichiers JSON en schémas. Quand le modèle commence par « ! », il définit un modèle d’exclusion.",
+ "json.schemas.schema.desc": "Définition de schéma pour l'URL indiquée. Le schéma doit être fourni uniquement pour éviter les accès à l'URL du schéma.",
+ "json.schemas.url.desc": "Une URL ou un chemin de fichier absolu vers un schéma. Il peut s'agir d'un chemin relatif (commençant par « ./ ») dans les paramètres de l'espace de travail et du dossier de l'espace de travail.",
+ "json.tracing.desc": "Trace la communication entre VS Code et le serveur de langage JSON.",
+ "json.validate.enable.desc": "Activez/désactivez la validation JSON.",
+ "json.workspaceTrust": "L’extension nécessite une confiance d’espace de travail pour charger des schémas à partir de http et https."
+ }
+ }
+}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-fr/translations/extensions/vscode.json.i18n.json b/i18n/vscode-language-pack-fr/translations/extensions/vscode.json.i18n.json
index d21b5f6b06..2ef23b6bb6 100644
--- a/i18n/vscode-language-pack-fr/translations/extensions/vscode.json.i18n.json
+++ b/i18n/vscode-language-pack-fr/translations/extensions/vscode.json.i18n.json
@@ -9,8 +9,8 @@
"version": "1.0.0",
"contents": {
"package": {
- "displayName": "Bases du langage JSON",
- "description": "Fournit la coloration syntaxique et la mise en correspondance des crochets dans les fichiers JSON."
+ "description": "Fournit la coloration syntaxique et la mise en correspondance des crochets dans les fichiers JSON.",
+ "displayName": "Bases du langage JSON"
}
}
}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-fr/translations/extensions/julia.i18n.json b/i18n/vscode-language-pack-fr/translations/extensions/vscode.julia.i18n.json
similarity index 100%
rename from i18n/vscode-language-pack-fr/translations/extensions/julia.i18n.json
rename to i18n/vscode-language-pack-fr/translations/extensions/vscode.julia.i18n.json
diff --git a/i18n/vscode-language-pack-fr/translations/extensions/latex.i18n.json b/i18n/vscode-language-pack-fr/translations/extensions/vscode.latex.i18n.json
similarity index 100%
rename from i18n/vscode-language-pack-fr/translations/extensions/latex.i18n.json
rename to i18n/vscode-language-pack-fr/translations/extensions/vscode.latex.i18n.json
diff --git a/i18n/vscode-language-pack-fr/translations/extensions/vscode.less.i18n.json b/i18n/vscode-language-pack-fr/translations/extensions/vscode.less.i18n.json
index ab65544a51..105de7caa4 100644
--- a/i18n/vscode-language-pack-fr/translations/extensions/vscode.less.i18n.json
+++ b/i18n/vscode-language-pack-fr/translations/extensions/vscode.less.i18n.json
@@ -9,8 +9,8 @@
"version": "1.0.0",
"contents": {
"package": {
- "displayName": "Bases du langage Less",
- "description": "Fournit la coloration syntaxique, la correspondance des parenthèses et le pliage dans les fichiers Less."
+ "description": "Fournit la coloration syntaxique, la correspondance des parenthèses et le pliage dans les fichiers Less.",
+ "displayName": "Bases du langage Less"
}
}
}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-fr/translations/extensions/vscode.log.i18n.json b/i18n/vscode-language-pack-fr/translations/extensions/vscode.log.i18n.json
index 8134e5ce1b..0e3d4c0ad2 100644
--- a/i18n/vscode-language-pack-fr/translations/extensions/vscode.log.i18n.json
+++ b/i18n/vscode-language-pack-fr/translations/extensions/vscode.log.i18n.json
@@ -9,8 +9,8 @@
"version": "1.0.0",
"contents": {
"package": {
- "displayName": "LOG",
- "description": "Fournit la coloration syntaxique pour les fichiers avec une extension .log."
+ "description": "Fournit la coloration syntaxique pour les fichiers avec une extension .log.",
+ "displayName": "LOG"
}
}
}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-fr/translations/extensions/vscode.lua.i18n.json b/i18n/vscode-language-pack-fr/translations/extensions/vscode.lua.i18n.json
index aac385b100..3d74fa75ed 100644
--- a/i18n/vscode-language-pack-fr/translations/extensions/vscode.lua.i18n.json
+++ b/i18n/vscode-language-pack-fr/translations/extensions/vscode.lua.i18n.json
@@ -9,8 +9,8 @@
"version": "1.0.0",
"contents": {
"package": {
- "displayName": "Concepts de base du langage Lua",
- "description": "Fournit la coloration syntaxique et la correspondance des crochets dans les fichiers Lua."
+ "description": "Fournit la coloration syntaxique et la correspondance des crochets dans les fichiers Lua.",
+ "displayName": "Concepts de base du langage Lua"
}
}
}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-fr/translations/extensions/vscode.make.i18n.json b/i18n/vscode-language-pack-fr/translations/extensions/vscode.make.i18n.json
index d2f50569b6..13546bdd05 100644
--- a/i18n/vscode-language-pack-fr/translations/extensions/vscode.make.i18n.json
+++ b/i18n/vscode-language-pack-fr/translations/extensions/vscode.make.i18n.json
@@ -9,8 +9,8 @@
"version": "1.0.0",
"contents": {
"package": {
- "displayName": "Bases du langage Make",
- "description": "Fournit la coloration syntaxique et la correspondance des crochets dans les fichiers Make."
+ "description": "Fournit la coloration syntaxique et la correspondance des crochets dans les fichiers Make.",
+ "displayName": "Bases du langage Make"
}
}
}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-fr/translations/extensions/vscode.markdown-language-features.i18n.json b/i18n/vscode-language-pack-fr/translations/extensions/vscode.markdown-language-features.i18n.json
new file mode 100644
index 0000000000..a06ada4bbe
--- /dev/null
+++ b/i18n/vscode-language-pack-fr/translations/extensions/vscode.markdown-language-features.i18n.json
@@ -0,0 +1,172 @@
+{
+ "": [
+ "--------------------------------------------------------------------------------------------",
+ "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."
+ ],
+ "version": "1.0.0",
+ "contents": {
+ "bundle": {
+ "...1 additional file not shown": "...1 fichier supplémentaire non affiché",
+ "...{0} additional files not shown": "...{0} fichiers supplémentaires non affichés",
+ "Allow all content and script execution. Not recommended": "Autorisez tout le contenu et l’exécution des scripts. Non recommandé",
+ "Allow insecure content": "Autoriser le contenu non sécurisé",
+ "Allow insecure local content": "Autoriser le contenu local non sécurisé",
+ "Always": "Toujours",
+ "An unexpected error occurred while restoring the Markdown preview.": "Une erreur inattendue s’est produite lors de la restauration de l’aperçu Markdown.",
+ "Checking for Markdown links to update": "Recherche de liaisons Markdown à mettre à jour",
+ "Content Disabled Security Warning": "Avertissement de sécurité de contenu désactivé",
+ "Could not load 'markdown.styles': {0}": "Impossible de charger 'markdown.styles' : {0}",
+ "Could not open {0}": "Impossible d'ouvrir {0}",
+ "Disable": "Désactiver",
+ "Disable preview security warning in this workspace": "Désactiver l'aperçu d'avertissements de sécurité pour cet espace de travail",
+ "Disable validation of Markdown links": "Désactiver la validation des liens Markdown",
+ "Does not affect the content security level": "N'affecte pas le niveau de sécurité de contenu",
+ "Enable": "Activez",
+ "Enable loading content over http": "Activer le chargement de contenu sur http",
+ "Enable loading content over http served from localhost": "Activer le chargement de contenu http servi par localhost",
+ "Enable preview security warnings in this workspace": "Activer l'aperçu d'avertissements de sécurité pour cet espace de travail",
+ "Enable validation of Markdown links": "Activer la validation des liens Markdown",
+ "Exclude '{0}' from link validation.": "Excluez '{0}' de la validation de lien.",
+ "Extract to link definition": "Extraire vers la définition de lien",
+ "File does not exist at path: {0}": "Le fichier n’existe pas dans le chemin d’accès : {0}",
+ "Find file references failed. No resource provided.": "Échec de la recherche des références de fichiers. Aucune ressource fournie.",
+ "Finding file references": "Recherche des références de fichiers",
+ "Follow link": "Suivre le lien",
+ "Go to link definition": "Accéder à la définition de lien",
+ "Header does not exist in file: {0}": "L’en-tête n’existe pas dans le fichier : {0}",
+ "Insert Markdown Audio": "Insérer un audio Markdown",
+ "Insert Markdown Image": "Insérer une image Markdown",
+ "Insert Markdown Images": "Insérer des images Markdown",
+ "Insert Markdown Images and Links": "Insérer des images et des liens Markdown",
+ "Insert Markdown Link": "Insérer un lien Markdown",
+ "Insert Markdown Links": "Insérer des liens Markdown",
+ "Insert Markdown Media": "Insérer un média Markdown",
+ "Insert Markdown Media and Images": "Insérer des médias et des images Markdown",
+ "Insert Markdown Media and Links": "Insérer des médias et des liens Markdown",
+ "Insert Markdown Video": "Insérer une vidéo Markdown",
+ "Insert image": "Insérer une image",
+ "Insert link": "Insérer un lien",
+ "Link definition for '{0}' already exists": "La définition de lien de « {0} » existe déjà",
+ "Link definition is unused": "La définition de lien n’est pas utilisée",
+ "Link is already a reference": "Le lien est déjà une référence",
+ "Link is also defined here": "Le lien est également défini ici",
+ "Link to '# {0}' in '{1}'": "Lien vers « # {0} » dans « {1} »",
+ "Link to '{0}'": "Lien vers « {0} »",
+ "Markdown Language Server": "Serveur de langage Markdown",
+ "Markdown link validation disabled": "Validation du lien Markdown désactivée",
+ "Markdown link validation enabled": "Validation du lien Markdown activée",
+ "Media": "Média",
+ "More Information": "Informations",
+ "Never": "Jamais",
+ "No": "Non",
+ "No header found: '{0}'": "En-tête introuvable : « {0} »",
+ "No link definition found: '{0}'": "Définition de lien introuvable : '{0}'",
+ "Not on link": "Pas sur le lien",
+ "Only load secure content": "Charger uniquement le contenu sécurisé.",
+ "Paste and update pasted links": "Coller et mettre à jour les liens collés",
+ "Potentially unsafe or insecure content has been disabled in the Markdown preview. Change the Markdown preview security setting to allow insecure content or enable scripts": "Le contenu potentiellement dangereux ou non sécurisé a été désactivé dans l'aperçu Markdown. Changez les paramètres de sécurité de l'aperçu Markdown pour autoriser le contenu non sécurisé ou activer les scripts",
+ "Preview {0}": "Prévisualiser {0}",
+ "Reference link '{0}'": "Lien de référence « {0} »",
+ "Remove duplicate link definition": "Supprimer la définition de lien en double",
+ "Remove unused link definition": "Supprimer la définition de lien inutilisée",
+ "Renaming is not supported here. Try renaming a header or link.": "Le changement de nom n’est pas pris en charge ici. Essayez de renommer un en-tête ou un lien.",
+ "Select security settings for Markdown previews in this workspace": "Sélectionner les paramètres de sécurité pour les aperçus Markdown dans cet espace de travail",
+ "Some content has been disabled in this document": "Du contenu a été désactivé dans ce document",
+ "Strict": "Strict",
+ "Update Markdown links for '{0}'?": "Voulez-vous mettre à jour les liaisons Markdown pour '{0}'?",
+ "Update Markdown links for the following {0} files?": "Mettre à jour les liens Markdown pour les fichiers {0} suivants ?",
+ "Yes": "Oui",
+ "[Preview] {0}": "[Aperçu] {0}",
+ "{0} cannot be found": "{0} est introuvable"
+ },
+ "package": {
+ "configuration.copyIntoWorkspace.mediaFiles": "Essayez de copier des fichiers image et vidéo externes dans l’espace de travail.",
+ "configuration.copyIntoWorkspace.never": "Ne pas copier les fichiers externes dans l’espace de travail.",
+ "configuration.markdown.copyFiles.destination": "Configure le chemin d’accès et le nom de fichier des fichiers créés par copier/coller ou glisser-déplacer. Il s’agit d’une carte de globs qui correspondent à un chemin d’accès de document Markdown au chemin de destination où le nouveau fichier doit être créé.\r\n\r\nLe chemin de destination peut utiliser les variables suivantes :\r\n\r\n– « ${documentDirName} » – Chemin d’accès absolu au répertoire parent du document Markdown, par exemple, « /Users/me/myProject/docs ».\r\n– « ${documentRelativeDirName} » – Chemin d’accès relatif au répertoire parent du document Markdown, par exemple « docs ». Cette valeur est identique à « ${documentDirName} » si le fichier ne fait pas partie d’un espace de travail.\r\n– « ${documentFileName} » – Nom de fichier complet du document Markdown, par exemple, « README.md ».\r\n– « ${documentBaseName} » – Nom de base du document Markdown, par exemple, « README ».\r\n– « ${documentExtName} » – Extension du document Markdown, par exemple « md ».\r\n– « ${documentFilePath} » – Chemin absolu du document Markdown, par exemple, « /Users/me/myProject/docs/README.md ».\r\n– « ${documentRelativeFilePath} » – Chemin relatif du document Markdown, par exemple « docs/README.md ». Cette valeur est identique à « ${documentFilePath} » si le fichier ne fait pas partie d’un espace de travail.\r\n– « ${documentWorkspaceFolder} » – Dossier d’espace de travail pour le document Markdown, par exemple, « /Users/me/myProject ». Cette valeur est identique à « ${documentDirName} » si le fichier ne fait pas partie d’un espace de travail.\r\n– « ${fileName} » – Nom du fichier supprimé, par exemple « image.png ».\r\n– « ${fileExtName} » – Extension du fichier supprimé, par exemple « png ».\r\n– « ${unixTime} » – Timestamp Unix actuel en millisecondes.\r\n- '${isoTime}' – Heure actuelle au format ISO 8601, par exemple '2025-06-06T08:40:32.123Z'.",
+ "configuration.markdown.copyFiles.overwriteBehavior": "Contrôle si les fichiers créés par dépôt ou collage doivent remplacer les fichiers existants.",
+ "configuration.markdown.copyFiles.overwriteBehavior.nameIncrementally": "S’il existe déjà un fichier portant le même nom, ajoutez un numéro au nom de fichier, par exemple : `image.png` devient `image-1.png`.",
+ "configuration.markdown.copyFiles.overwriteBehavior.overwrite": "Si un fichier portant le même nom existe déjà, il est écrasé.",
+ "configuration.markdown.editor.drop.copyIntoWorkspace": "Contrôle si les fichiers en dehors de l’espace de travail déposés dans un éditeur Markdown doivent être copiés dans l’espace de travail.\r\n\r\nUtilisez ` #markdown.copyFiles.destination#` pour configurer l’emplacement de création des fichiers copiés.",
+ "configuration.markdown.editor.drop.enabled": "Activez la suppression de fichiers dans un éditeur Markdown tout en maintenant la touche Maj enfoncée. Nécessite l’activation de ' #editor.dropIntoEditor.enabled#'.",
+ "configuration.markdown.editor.drop.enabled.always": "Toujours insérer des liens Markdown.",
+ "configuration.markdown.editor.drop.enabled.never": "Ne jamais créer de liens Markdown.",
+ "configuration.markdown.editor.drop.enabled.smart": "Créez intelligemment des liens Markdown par défaut lorsqu’ils ne sont pas placés dans un bloc de code ou un autre élément spécial. Utilisez le widget drop pour basculer entre le collage en texte brut ou en tant que liens Markdown.",
+ "configuration.markdown.editor.filePaste.audioSnippet": "Extrait de code utilisé lors de l’ajout de fichiers audio à Markdown. Cet extrait de code peut utiliser les variables suivantes :\r\n- « ${src} » — Chemin résolu du fichier audio.\r\n- « ${title} » — Titre utilisé pour le fichier audio. Un espace réservé d’extrait de code est automatiquement créé pour cette variable.",
+ "configuration.markdown.editor.filePaste.copyIntoWorkspace": "Contrôle si les fichiers en dehors de l’espace de travail collés dans un éditeur Markdown doivent être copiés dans l’espace de travail.\r\n\r\nUtilisez ` #markdown.copyFiles.destination#` pour configurer l’emplacement de création des fichiers copiés.",
+ "configuration.markdown.editor.filePaste.enabled": "Permet de coller des fichiers dans un éditeur Markdown pour créer des liens Markdown. Nécessite l’activation de `#editor.pasteAs.enabled#`.",
+ "configuration.markdown.editor.filePaste.enabled.always": "Toujours insérer des liens Markdown.",
+ "configuration.markdown.editor.filePaste.enabled.never": "Ne jamais créer de liens Markdown.",
+ "configuration.markdown.editor.filePaste.enabled.smart": "Créez des liens Markdown de manière intelligente par défaut lorsque vous ne les collez pas dans un bloc de code ou dans un autre élément spécial. Utilisez le widget coller pour basculer entre le collage en texte brut ou sous forme de liens Markdown.",
+ "configuration.markdown.editor.filePaste.videoSnippet": "Extrait de code utilisé lors de l’ajout de vidéos à Markdown. Cet extrait de code peut utiliser les variables suivantes :\r\n- « ${src} » — Chemin résolu du fichier vidéo.\r\n- « ${title}» — Titre utilisé pour la vidéo. Un espace réservé d’extrait de code est automatiquement créé pour cette variable.",
+ "configuration.markdown.editor.pasteUrlAsFormattedLink.enabled": "Contrôle si des liens Markdown sont créés lorsque des URL sont collées dans un éditeur Markdown. Nécessite l’activation de « #editor.pasteAs.enabled# ».",
+ "configuration.markdown.editor.updateLinksOnPaste.enabled": "Activez/désactivez une option de collage qui met à jour les liens et la référence dans le texte copié et collé entre les éditeurs Markdown.\r\n\r\nPour utiliser cette fonctionnalité, après avoir collé du texte contenant des liens pouvant être mis à jour, il vous suffit de cliquer sur le widget Coller et de sélectionner Coller et mettre à jour les liens collés.",
+ "configuration.markdown.links.openLocation.beside": "Ouvrez les liens à côté de l'éditeur actif.",
+ "configuration.markdown.links.openLocation.currentGroup": "Ouvrez les liens dans le groupe d'éditeurs actif.",
+ "configuration.markdown.links.openLocation.description": "Contrôle l'emplacement où doivent s'ouvrir les liens dans les fichiers Markdown.",
+ "configuration.markdown.occurrencesHighlight.enabled": "Activer la mise en surbrillance des occurrences de lien dans le document actif.",
+ "configuration.markdown.preferredMdPathExtensionStyle": "Contrôle si les extensions de fichier (par exemple « .md ») sont ajoutées ou non pour les liens vers les fichiers Markdown. Ce paramètre est utilisé lorsque des chemins de fichiers sont ajoutés par des outils tels que la complétion de chemins ou le renommage de fichiers.",
+ "configuration.markdown.preferredMdPathExtensionStyle.auto": "Pour les chemins existants, essayez de conserver le style d’extension de fichier. Pour les nouveaux chemins d’accès, ajoutez des extensions de fichier.",
+ "configuration.markdown.preferredMdPathExtensionStyle.includeExtension": "Préférez inclure l’extension de fichier. Par exemple, les complétions de chemin d’accès à un fichier nommé « file.md » insèrent « file.md ».",
+ "configuration.markdown.preferredMdPathExtensionStyle.removeExtension": "Préférez supprimer l’extension de fichier. Par exemple, les complétions de chemin d’accès à un fichier nommé 'file.md' insère 'file' sans '.md'.",
+ "configuration.markdown.preview.openMarkdownLinks.description": "Contrôle la façon dont les liens vers d'autres fichiers Markdown doivent s'ouvrir dans l'aperçu Markdown.",
+ "configuration.markdown.preview.openMarkdownLinks.inEditor": "Tente d'ouvrir les liens dans l'éditeur.",
+ "configuration.markdown.preview.openMarkdownLinks.inPreview": "Tente d'ouvrir les liens dans l'aperçu Markdown.",
+ "configuration.markdown.suggest.paths.enabled.description": "Activez les suggestions de chemin d’accès lors de l’écriture de liens dans des fichiers Markdown.",
+ "configuration.markdown.suggest.paths.includeWorkspaceHeaderCompletions": "Activez les suggestions des en-têtes dans d’autres fichiers Markdown dans l’espace de travail actuel. L’acceptation de l’une de ces suggestions insère le chemin complet de l’en-tête dans ce fichier, par exemple : `[texte du lien](/path/to/file.md#header)`.",
+ "configuration.markdown.suggest.paths.includeWorkspaceHeaderCompletions.never": "Désactivez les suggestions d’en-tête d’espace de travail.",
+ "configuration.markdown.suggest.paths.includeWorkspaceHeaderCompletions.onDoubleHash": "Activez les suggestions d’en-tête d’espace de travail après avoir tapé `##` dans un chemin d’accès, par exemple : `[texte du lien](##`.",
+ "configuration.markdown.suggest.paths.includeWorkspaceHeaderCompletions.onSingleOrDoubleHash": "Activez les suggestions d’en-tête d’espace de travail après avoir tapé `##` ou `#` dans un chemin d’accès, par exemple : `[texte du lien](#` ou `[texte du lien](##`.",
+ "configuration.markdown.updateLinksOnFileMove.enableForDirectories": "Activer la mise à jour des liens lorsqu’un répertoire est déplacé ou renommé dans l’espace de travail.",
+ "configuration.markdown.updateLinksOnFileMove.enabled": "Essayez de mettre à jour les liens dans les fichiers Markdown lorsqu’un fichier est renommé/déplacé dans l’espace de travail. Utilisez '#markdown.updateLinksOnFileMove.include#' pour configurer les fichiers qui déclenchent les mises à jour de lien.",
+ "configuration.markdown.updateLinksOnFileMove.enabled.always": "Toujours mettre à jour les liaisons automatiquement",
+ "configuration.markdown.updateLinksOnFileMove.enabled.never": "N’essayez jamais de mettre à jour la liaison et n’invitez pas.",
+ "configuration.markdown.updateLinksOnFileMove.enabled.prompt": "Invite à chaque déplacement de fichier",
+ "configuration.markdown.updateLinksOnFileMove.include": "Modèles Glob qui spécifie les fichiers qui déclenchent les mises à jour automatiques des liens. Pour plus d’informations sur cette fonctionnalité, consultez « #markdown.updateLinksOnFileMove.enabled# ».",
+ "configuration.markdown.updateLinksOnFileMove.include.property": "Modèle glob auquel faire correspondre les chemins d’accès aux fichiers. Affectez la valeur true pour activer le modèle.",
+ "configuration.markdown.validate.duplicateLinkDefinitions.description": "Validez les définitions dupliquées dans le fichier actif.",
+ "configuration.markdown.validate.enabled.description": "Activez tous les rapports d’erreurs dans les fichiers Markdown.",
+ "configuration.markdown.validate.fileLinks.enabled.description": "Validez les liens vers d’autres fichiers dans les fichiers Markdown, par exemple `[link](/path/to/file.md)`. Cette opération vérifie que les fichiers cibles existent. Nécessite l’activation de `#markdown.validate.enabled#`.",
+ "configuration.markdown.validate.fileLinks.markdownFragmentLinks.description": "Validez la partie fragment des liens vers des en-têtes dans d’autres fichiers dans les fichiers Markdown, par exemple : '[link](/path/to/file.md#header)'. Hérite la valeur de paramètre de '#markdown.validate.fragmentLinks.enabled#' par défaut.",
+ "configuration.markdown.validate.fragmentLinks.enabled.description": "Validez les liens de fragment vers les en-têtes dans le fichier Markdown actuel, par exemple : `[link](#header)`. Nécessite l’activation de `#markdown.validate.enabled#`.",
+ "configuration.markdown.validate.ignoredLinks.description": "Configurez les liens qui ne doivent pas être validés. Par exemple, le fait d’ajouter « /about » ne valide pas le lien «[about](/about) », tandis que le glob « /assets/**/*.svg » vous permet d’ignorer la validation de tout lien vers les fichiers « .svg » sous le répertoire « assets ».",
+ "configuration.markdown.validate.referenceLinks.enabled.description": "Validez les liens de référence dans les fichiers Markdown, par exemple : `[link][ref]`. Nécessite l’activation de `#markdown.validate.enabled#`.",
+ "configuration.markdown.validate.unusedLinkDefinitions.description": "Validez les définitions de lien inutilisées dans le fichier actif.",
+ "configuration.pasteUrlAsFormattedLink.always": "Toujours insérer des liens Markdown.",
+ "configuration.pasteUrlAsFormattedLink.never": "Ne jamais créer de liens Markdown.",
+ "configuration.pasteUrlAsFormattedLink.smart": "Créez des liens Markdown de manière intelligente par défaut lorsque vous ne les collez pas dans un bloc de code ou dans un autre élément spécial. Utilisez le widget coller pour basculer entre le collage en texte brut ou sous forme de liens Markdown.",
+ "configuration.pasteUrlAsFormattedLink.smartWithSelection": "Créez des liens Markdown de manière intelligente par défaut lorsque vous avez sélectionné du texte et ne collez pas dans un bloc de code ou dans un autre élément spécial. Utilisez le widget coller pour basculer entre le collage en texte brut ou sous forme de liens Markdown.",
+ "description": "Fournit une prise en charge riche de langage pour Markdown",
+ "displayName": "Fonctionnalités de langage Markdown",
+ "markdown.copyImage.title": "Copier l’image",
+ "markdown.editor.insertImageFromWorkspace": "Insérer une image à partir de l’espace de travail",
+ "markdown.editor.insertLinkFromWorkspace": "Insérer un lien vers un fichier dans l’espace de travail",
+ "markdown.findAllFileReferences": "Rechercher les références de fichiers",
+ "markdown.openImage.title": "Ouvrez l'image",
+ "markdown.preview.breaks.desc": "Définit la façon dont les sauts de ligne sont rendus dans l'aperçu Markdown. Le définir sur « true » crée un « » pour les nouvelles lignes à l'intérieur des paragraphes.",
+ "markdown.preview.doubleClickToSwitchToEditor.desc": "Double-cliquez dans l'aperçu Markdown pour passer à l'éditeur.",
+ "markdown.preview.fontFamily.desc": "Contrôle la famille de polices utilisée dans l'aperçu Markdown.",
+ "markdown.preview.fontSize.desc": "Contrôle la taille de police en pixels utilisée dans l'aperçu Markdown.",
+ "markdown.preview.lineHeight.desc": "Contrôle la hauteur de ligne utilisée dans l'aperçu Markdown. Ce nombre est relatif à la taille de police.",
+ "markdown.preview.linkify": "Convertissez du texte de type URL en liens dans la préversion de Markdown.",
+ "markdown.preview.markEditorSelection.desc": "Marque la sélection actuelle de l'éditeur dans l'aperçu Markdown.",
+ "markdown.preview.refresh.title": "Actualiser l'aperçu",
+ "markdown.preview.scrollEditorWithPreview.desc": "Quand un aperçu Markdown défile, la vue de l'éditeur est mise à jour.",
+ "markdown.preview.scrollPreviewWithEditor.desc": "Quand la fenêtre de l'éditeur Markdown défile, la vue de l'aperçu est mise à jour.",
+ "markdown.preview.title": "Ouvrir l'aperçu",
+ "markdown.preview.toggleLock.title": "Activer/désactiver le verrouillage de l'aperçu",
+ "markdown.preview.typographer": "Activez le remplacement indépendant du langage et l’aplanissement des guillemets dans la préversion de Markdown.",
+ "markdown.previewSide.title": "Ouvrir l'aperçu sur le côté",
+ "markdown.server.log.desc": "Contrôle le niveau de journalisation du serveur de langage Markdown.",
+ "markdown.showLockedPreviewToSide.title": "Ouvrir l'aperçu verrrouillé sur le côté",
+ "markdown.showPreviewSecuritySelector.title": "Changer les paramètres de sécurité de l'aperçu",
+ "markdown.showSource.title": "Afficher la source",
+ "markdown.styles.dec": "Liste d'URL ou de chemins locaux de feuilles de style CSS à utiliser dans l'aperçu Markdown. Les chemins relatifs sont interprétés par rapport au dossier ouvert dans l'Explorateur. Si aucun dossier n'est ouvert, ils sont interprétés par rapport à l'emplacement du fichier Markdown. Tous les signes '\\' doivent être écrits sous la forme '\\\\'.",
+ "markdown.trace.extension.desc": "Active la journalisation du débogage pour l'extension Markdown.",
+ "markdown.trace.server.desc": "Trace la communication entre VS Code et le serveur de langage Markdown.",
+ "workspaceTrust": "Requis pour le chargement des styles configurés dans l’espace de travail."
+ }
+ }
+}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-fr/translations/extensions/vscode.markdown-math.i18n.json b/i18n/vscode-language-pack-fr/translations/extensions/vscode.markdown-math.i18n.json
new file mode 100644
index 0000000000..3b6e7aecd0
--- /dev/null
+++ b/i18n/vscode-language-pack-fr/translations/extensions/vscode.markdown-math.i18n.json
@@ -0,0 +1,18 @@
+{
+ "": [
+ "--------------------------------------------------------------------------------------------",
+ "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."
+ ],
+ "version": "1.0.0",
+ "contents": {
+ "package": {
+ "config.markdown.math.enabled": "Activer/désactiver le rendu des maths dans l’aperçu intégrée du Markdown.",
+ "config.markdown.math.macros": "Collection de macros personnalisées. Chaque macro est une paire clé-valeur où la clé est un nouveau nom de commande et la valeur est l’expansion de la macro.",
+ "description": "Ajoute la prise en charge mathématique à Markdown dans les blocs-notes.",
+ "displayName": "Mathématiques Markdown"
+ }
+ }
+}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-fr/translations/extensions/vscode.markdown.i18n.json b/i18n/vscode-language-pack-fr/translations/extensions/vscode.markdown.i18n.json
index 9d07eaca4c..0eff4217eb 100644
--- a/i18n/vscode-language-pack-fr/translations/extensions/vscode.markdown.i18n.json
+++ b/i18n/vscode-language-pack-fr/translations/extensions/vscode.markdown.i18n.json
@@ -9,8 +9,8 @@
"version": "1.0.0",
"contents": {
"package": {
- "displayName": "Concepts de base du langage Markdown",
- "description": "Fournit des extraits de code et la coloration syntaxique pour Markdown."
+ "description": "Fournit des extraits de code et la coloration syntaxique pour Markdown.",
+ "displayName": "Concepts de base du langage Markdown"
}
}
}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-fr/translations/extensions/vscode.media-preview.i18n.json b/i18n/vscode-language-pack-fr/translations/extensions/vscode.media-preview.i18n.json
new file mode 100644
index 0000000000..a89ea4c8f0
--- /dev/null
+++ b/i18n/vscode-language-pack-fr/translations/extensions/vscode.media-preview.i18n.json
@@ -0,0 +1,42 @@
+{
+ "": [
+ "--------------------------------------------------------------------------------------------",
+ "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."
+ ],
+ "version": "1.0.0",
+ "contents": {
+ "bundle": {
+ "An error occurred while loading the audio file.": "Une erreur s’est produite lors du chargement du fichier audio.",
+ "An error occurred while loading the image.": "Une erreur s'est produite au chargement de l'image.",
+ "An error occurred while loading the video file.": "Une erreur s’est produite lors du chargement du fichier vidéo.",
+ "Image Binary Size": "Taille binaire de l'image",
+ "Image Size": "Taille de l'image",
+ "Image Zoom": "Zoom de l'image",
+ "Open file using VS Code's standard text/binary editor?": "Ouvrir le fichier dans l'éditeur de texte/binaire standard de VS Code ?",
+ "Select zoom level": "Sélectionner le niveau de zoom",
+ "Whole Image": "Image entière",
+ "{0}B": "{0} o",
+ "{0}GB": "{0} Go",
+ "{0}KB": "{0} Ko",
+ "{0}MB": "{0} Mo",
+ "{0}TB": "{0} To"
+ },
+ "package": {
+ "command.copyImage": "Copier",
+ "command.reopenAsPreview": "Rouvrir en tant qu’aperçu de l’image",
+ "command.reopenAsText": "Rouvrir en tant que texte source",
+ "command.zoomIn": "Zoom avant",
+ "command.zoomOut": "Zoom arrière",
+ "customEditor.audioPreview.displayName": "Aperçu audio",
+ "customEditor.imagePreview.displayName": "Aperçu de l'image",
+ "customEditor.videoPreview.displayName": "Aperçu vidéo",
+ "description": "Fournit les aperçus intégrés de VS Code pour les images, l’audio et la vidéo",
+ "displayName": "Aperçu multimédia",
+ "videoPreviewerAutoPlay": "Commencer à lire les vidéos en mode muet automatiquement.",
+ "videoPreviewerLoop": "Retentez automatiquement les vidéos en boucle."
+ }
+ }
+}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-fr/translations/extensions/vscode.merge-conflict.i18n.json b/i18n/vscode-language-pack-fr/translations/extensions/vscode.merge-conflict.i18n.json
new file mode 100644
index 0000000000..c52271a71c
--- /dev/null
+++ b/i18n/vscode-language-pack-fr/translations/extensions/vscode.merge-conflict.i18n.json
@@ -0,0 +1,49 @@
+{
+ "": [
+ "--------------------------------------------------------------------------------------------",
+ "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."
+ ],
+ "version": "1.0.0",
+ "contents": {
+ "bundle": {
+ "(Current Change)": "(Modification actuelle)",
+ "(Incoming Change)": "(Modification entrante)",
+ "Accept Both Changes": "Accepter les deux modifications",
+ "Accept Current Change": "Accepter la modification actuelle",
+ "Accept Incoming Change": "Accepter la modification entrante",
+ "Compare Changes": "Comparer les modifications",
+ "Editor cursor is not within a merge conflict": "Le curseur de l'éditeur ne se trouve pas dans un conflit de fusion",
+ "Editor cursor is within the common ancestors block, please move it to either the \"current\" or \"incoming\" block": "Le curseur de l'éditeur se trouve dans le bloc d'ancêtres commun, déplacez-le dans le bloc \"current\" ou \"incoming\"",
+ "Editor cursor is within the merge conflict splitter, please move it to either the \"current\" or \"incoming\" block": "Le curseur de l'éditeur se trouve dans le séparateur du conflit de fusion, déplacez-le dans le bloc \"actuelles\" ou \"entrantes\"",
+ "No merge conflicts found in this file": "Aucun conflit de fusion dans ce fichier",
+ "No other merge conflicts within this file": "Aucun autre conflit de fusion dans ce fichier",
+ "{0}: Current Changes ↔ Incoming Changes": "{0} : Modifications actuelles ⟷ Modifications entrantes"
+ },
+ "package": {
+ "command.accept.all-both": "Accepter les deux",
+ "command.accept.all-current": "Accepter les modifications actuelles",
+ "command.accept.all-incoming": "Accepter toutes les modifications entrantes",
+ "command.accept.both": "Accepter les deux",
+ "command.accept.current": "Accepter les modifications actuelles",
+ "command.accept.incoming": "Accepter les modifications entrantes",
+ "command.accept.selection": "Accepter la sélection",
+ "command.category": "Conflit de fusion",
+ "command.compare": "Conflit de comparaison des modifications actuelles",
+ "command.next": "Conflit suivant",
+ "command.previous": "Conflit précédent",
+ "config.autoNavigateNextConflictEnabled": "Détermine s'il faut automatiquement passer au conflit de fusion suivant après la résolution d'un conflit de fusion.",
+ "config.codeLensEnabled": "Créer un CodeLens pour les blocs de conflit de fusion dans l’éditeur.",
+ "config.decoratorsEnabled": "Créer des décorateurs pour les blocs de conflit de fusion dans l’éditeur.",
+ "config.diffViewPosition": "Contrôle si la vue Diff doit être ouverte pendant la comparaison des changements dans les conflits de fusion.",
+ "config.diffViewPosition.below": "Ouvrez la vue Diff sous le groupe d'éditeurs actuel.",
+ "config.diffViewPosition.beside": "Ouvrez la vue Diff à côté du groupe d'éditeurs actuel.",
+ "config.diffViewPosition.current": "Ouvrez la vue Diff dans le groupe d'éditeurs actuel.",
+ "config.title": "Conflit de fusion",
+ "description": "Mise en surbrillance et commandes pour les conflits de fusion inline.",
+ "displayName": "Conflit de fusion"
+ }
+ }
+}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-fr/translations/extensions/vscode.mermaid-chat-features.i18n.json b/i18n/vscode-language-pack-fr/translations/extensions/vscode.mermaid-chat-features.i18n.json
new file mode 100644
index 0000000000..3fa9572a40
--- /dev/null
+++ b/i18n/vscode-language-pack-fr/translations/extensions/vscode.mermaid-chat-features.i18n.json
@@ -0,0 +1,17 @@
+{
+ "": [
+ "--------------------------------------------------------------------------------------------",
+ "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."
+ ],
+ "version": "1.0.0",
+ "contents": {
+ "package": {
+ "config.enabled.description": "Activez un outil pour le rendu expérimental du diagramme Mermaid dans les réponses de chat.",
+ "description": "Ajoute la prise en charge des diagrammes Mermaid aux conversations intégrées.",
+ "displayName": "Fonctionnalités de conversation Mermaid"
+ }
+ }
+}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-fr/translations/extensions/vscode.microsoft-authentication.i18n.json b/i18n/vscode-language-pack-fr/translations/extensions/vscode.microsoft-authentication.i18n.json
new file mode 100644
index 0000000000..7c3536a68d
--- /dev/null
+++ b/i18n/vscode-language-pack-fr/translations/extensions/vscode.microsoft-authentication.i18n.json
@@ -0,0 +1,51 @@
+{
+ "": [
+ "--------------------------------------------------------------------------------------------",
+ "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."
+ ],
+ "version": "1.0.0",
+ "contents": {
+ "bundle": {
+ "Copy & Continue to Microsoft": "Copier et continuer vers Microsoft",
+ "Error validating custom environment setting: {0}": "Erreur lors de la validation du paramètre d’environnement personnalisé : {0}",
+ "Having trouble logging in? Would you like to try a different way? ({0})": "Vous ne parvenez pas à vous connecter ? Voulez-vous essayer une autre méthode ? ({0})",
+ "Microsoft Account configuration has been changed.": "La configuration du compte Microsoft a été modifiée.",
+ "Microsoft Authentication": "Microsoft Authentication",
+ "Microsoft Sovereign Cloud Authentication": "Authentification au cloud souverain Microsoft",
+ "No": "Non",
+ "Open [{0}]({0}) in a new tab and paste your one-time code: {1}/The [{0}]({0}) will be a url and the {1} will be a code, e.g. 123456{Locked=\"[{0}]({0})\"}": "Ouvrez [{0}]({0}) dans un nouvel onglet et collez votre code à usage unique : {1}",
+ "Open settings": "Ouvrir les paramètres",
+ "Reload": "Recharger",
+ "Signing in to Microsoft...": "Connexion à Microsoft...",
+ "The environment `{0}` is not a valid environment.": "L’environnement `{0}` n’est pas un environnement valide.",
+ "To finish authenticating, navigate to Microsoft and paste in the above one-time code.": "Pour terminer l’authentification, accédez à Microsoft et collez le code à usage unique ci-dessus.",
+ "Yes": "Oui",
+ "You have not yet finished authorizing this extension to use your Microsoft Account. Would you like to try a different way? ({0})": "Vous n'avez pas encore fini d'autoriser cette extension à utiliser votre compte Microsoft. Voulez-vous essayer un autre moyen ? ({0})",
+ "You must also specify a custom environment in order to use the custom environment auth provider.": "Vous devez également spécifier un environnement personnalisé pour pouvoir utiliser le fournisseur d’authentification d’environnement personnalisé.",
+ "Your Code: {0}/The {0} will be a code, e.g. 123-456": "Votre code : {0}"
+ },
+ "package": {
+ "description": "Fournisseur d'authentification Microsoft",
+ "displayName": "Compte Microsoft",
+ "microsoft-authentication.implementation.description": "Implémentation d’authentification à utiliser pour se connecter avec un compte Microsoft.",
+ "microsoft-authentication.implementation.enumDescriptions.msal": "Utilisez la bibliothèque d’authentification Microsoft (MSAL) pour vous connecter avec un compte Microsoft.",
+ "microsoft-authentication.implementation.enumDescriptions.msal-no-broker": "Utilisez la bibliothèque d’authentification Microsoft (MSAL) pour vous connecter avec un compte Microsoft en utilisant un navigateur. Cela est utile si vous rencontrez des problèmes avec le courtier natif.",
+ "microsoft-sovereign-cloud.customEnvironment.activeDirectoryEndpointUrl.description": "Point de terminaison Active Directory pour le cloud souverain personnalisé.",
+ "microsoft-sovereign-cloud.customEnvironment.activeDirectoryResourceId.description": "ID de ressource Active Directory pour le cloud souverain personnalisé.",
+ "microsoft-sovereign-cloud.customEnvironment.description": "Configuration personnalisée pour le cloud souverain à utiliser avec le fournisseur d’authentification Cloud souverain Microsoft. Cette option, ainsi que le paramètre `#microsoft-sovereign-cloud.environment#` sur `personnalisé` sont nécessaires pour utiliser cette fonctionnalité.",
+ "microsoft-sovereign-cloud.customEnvironment.managementEndpointUrl.description": "Point de terminaison de gestion pour le cloud souverain personnalisé.",
+ "microsoft-sovereign-cloud.customEnvironment.name.description": "Nom du cloud souverain personnalisé.",
+ "microsoft-sovereign-cloud.customEnvironment.portalUrl.description": "URL du portail pour le cloud souverain personnalisé.",
+ "microsoft-sovereign-cloud.customEnvironment.resourceManagerEndpointUrl.description": "Le point de terminaison du gestionnaire de ressources pour le Sovereign Cloud personnalisé.",
+ "microsoft-sovereign-cloud.environment.description": "Cloud souverain à utiliser pour l’authentification. Si vous sélectionnez `personnalisé`, vous devez également définir le paramètre de `#microsoft-sovereign-cloud.customEnvironment#`.",
+ "microsoft-sovereign-cloud.environment.enumDescriptions.AzureChinaCloud": "Azure - Chine",
+ "microsoft-sovereign-cloud.environment.enumDescriptions.AzureUSGovernment": "Azure US Government",
+ "microsoft-sovereign-cloud.environment.enumDescriptions.custom": "Cloud souverain Microsoft personnalisé",
+ "signIn": "Se connecter",
+ "signOut": "Se déconnecter"
+ }
+ }
+}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-fr/translations/extensions/vscode.npm.i18n.json b/i18n/vscode-language-pack-fr/translations/extensions/vscode.npm.i18n.json
new file mode 100644
index 0000000000..85883aa700
--- /dev/null
+++ b/i18n/vscode-language-pack-fr/translations/extensions/vscode.npm.i18n.json
@@ -0,0 +1,127 @@
+{
+ "": [
+ "--------------------------------------------------------------------------------------------",
+ "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."
+ ],
+ "version": "1.0.0",
+ "contents": {
+ "bundle": {
+ "Could not find a valid npm script at the selection.": "Un script npm valide est introuvable à la sélection.",
+ "Debug": "Déboguer",
+ "Debug Script": "Script de débogage",
+ "Default package.json": "Fichier package.json par défaut",
+ "Do not show again": "Ne plus afficher",
+ "Latest version: {0}": "Dernière version : {0}",
+ "Latest version: {0} published {1}": "Dernière version : {0} publiée {1}",
+ "Learn more": "En savoir plus",
+ "Matches the most recent major version (1.x.x)": "Correspond à la version majeure la plus récente (1.x.x)",
+ "Matches the most recent minor version (1.2.x)": "Correspond à la version mineure la plus récente (1.2.x)",
+ "No scripts found.": "Aucun script trouvé.",
+ "Npm task detection: failed to parse the file {0}": "Détection de tâche npm : échec de l'analyse du fichier {0}",
+ "Request to the NPM repository failed: {0}": "Échec de la requête destinée au dépôt NPM : {0}",
+ "Run Script": "Exécuter le script",
+ "Run the script as a task": "Exécuter le script comme tâche",
+ "Runs the script under the debugger": "Exécute le script avec le débogueur",
+ "The currently latest version of the package": "Dernière version du package",
+ "The setting \"npm.autoDetect\" is \"off\".": "Le paramètre \"npm.autoDetect\" est \"off\".",
+ "Using {0} as the preferred package manager. Found multiple lockfiles for {1}. To resolve this issue, delete the lockfiles that don't match your preferred package manager or change the setting \"npm.packageManager\" to a value other than \"auto\".": "Utilisation de {0} comme gestionnaire de package favori. Plusieurs fichiers de verrouillage ont été trouvés pour {1}. Pour résoudre ce problème, supprimez les fichiers de verrouillage qui ne correspondent pas à votre gestionnaire de package préféré ou remplacez le paramètre « npm.packageManager » par une valeur autre que « auto ».",
+ "in {0}": "dans {0}",
+ "now": "maintenant",
+ "{0} day": "{0} jour",
+ "{0} day ago": "Il y a {0} jours",
+ "{0} days": "{0} jours",
+ "{0} days ago": "Il y a {0} jours",
+ "{0} hour": "{0}heure",
+ "{0} hour ago": "il y a {0} heure",
+ "{0} hours": "{0} heures",
+ "{0} hours ago": "il y a {0} heures",
+ "{0} hr": "{0} heure",
+ "{0} hr ago": "Il y a {0} heure",
+ "{0} hrs": "{0} h",
+ "{0} hrs ago": "il y a {0} heures",
+ "{0} min": "{0} minute",
+ "{0} min ago": "Il y a {0} minute",
+ "{0} mins": "{0} minutes",
+ "{0} mins ago": "Il y a {0} minutes",
+ "{0} minute": "{0} minute",
+ "{0} minute ago": "Il y {0} minute",
+ "{0} minutes": "{0} minutes",
+ "{0} minutes ago": "il y a {0} minutes",
+ "{0} mo": "{0} mois",
+ "{0} mo ago": "Il y a {0} mois",
+ "{0} month": "{0} mois",
+ "{0} month ago": "Il y a {0} mois",
+ "{0} months": "{0} mois",
+ "{0} months ago": "Il y a {0} mois",
+ "{0} mos": "{0} mois",
+ "{0} mos ago": "Il y a {0} mois",
+ "{0} sec": "{0} s",
+ "{0} sec ago": "Il y a {0} seconde",
+ "{0} second": "{0} seconde",
+ "{0} second ago": "Il y a {0} seconde",
+ "{0} seconds": "{0} secondes",
+ "{0} seconds ago": "Il y a {0} secondes",
+ "{0} secs": "{0} secondes",
+ "{0} secs ago": "Il y a {0} secondes",
+ "{0} week": "{0} semaine(s)",
+ "{0} week ago": "il y a {0} semaines",
+ "{0} weeks": "{0} semaines",
+ "{0} weeks ago": "il y a {0} semaines",
+ "{0} wk": "{0} semaine",
+ "{0} wk ago": "Il y a {0} semaine",
+ "{0} wks": "{0} semaines",
+ "{0} wks ago": "Il y a {0} semaines",
+ "{0} year": "{0} an",
+ "{0} year ago": "il y a {0} an",
+ "{0} years": "{0} ans",
+ "{0} years ago": "Il y a {0} ans",
+ "{0} yr": "{0} an",
+ "{0} yr ago": "Il y a {0} an",
+ "{0} yrs": "{0} ans",
+ "{0} yrs ago": "Il y a {0} ans"
+ },
+ "package": {
+ "command.debug": "Déboguer",
+ "command.openScript": "Ouvrir",
+ "command.packageManager": "Obtenir le Gestionnaire de package configuré",
+ "command.refresh": "Actualiser",
+ "command.run": "Exécuter",
+ "command.runInstall": "Exécuter Install",
+ "command.runScriptFromFolder": "Exécuter le script NPM dans un dossier...",
+ "command.runSelectedScript": "Exécuter le script",
+ "config.npm.autoDetect": "Contrôle si les scripts npm doivent être détectés automatiquement.",
+ "config.npm.enableRunFromFolder": "Activez l'exécution de scripts NPM contenus dans un dossier du menu contextuel Explorer.",
+ "config.npm.enableScriptExplorer": "Activez une vue explorateur pour les scripts npm en l'absence d'un fichier 'package.json' de haut niveau.",
+ "config.npm.exclude": "Configurer les profils glob pour les dossiers qui doivent être exclus de la détection de script automatique.",
+ "config.npm.fetchOnlinePackageInfo": "Récupérez des données à partir de https://registry.npmjs.org et https://registry.bower.io pour l'auto-complétion et obtenir des informations concernant les fonctionnalités de pointage sur les dépendances npm.",
+ "config.npm.packageManager": "Gestionnaire de package utilisé pour installer les dépendances.",
+ "config.npm.packageManager.auto": "Détectez automatiquement le gestionnaire de package à utiliser en fonction des fichiers de verrouillage et des gestionnaires de packages installés.",
+ "config.npm.packageManager.bun": "Utilisez cine comme gestionnaire de package.",
+ "config.npm.packageManager.npm": "Utilisez npm comme gestionnaire de package.",
+ "config.npm.packageManager.pnpm": "Utilisez pnpm comme gestionnaire de package.",
+ "config.npm.packageManager.yarn": "Utilisez yarn comme gestionnaire de package.",
+ "config.npm.runSilent": "Exécutez les commandes npm avec l'option `--silent`.",
+ "config.npm.scriptExplorerAction": "Action de clic par défaut utilisée dans l’explorateur de scripts NPM : 'open' ou 'run'. La valeur par défaut est 'open'.",
+ "config.npm.scriptExplorerExclude": "Tableau d’expressions régulières qui indiquent quels scripts doivent être exclus de la vue Scripts NPM.",
+ "config.npm.scriptHover": "Affichez le pointage avec les commandes 'Exécuter' et 'Déboguer' pour les scripts.",
+ "config.npm.scriptRunner": "Exécuteur de scripts utilisé pour exécuter les scripts.",
+ "config.npm.scriptRunner.auto": "Détectez automatiquement l’exécuteur de script à utiliser en fonction des fichiers de verrouillage et des gestionnaires de package installés.",
+ "config.npm.scriptRunner.bun": "Utilisez le chignon comme exécuteur de script.",
+ "config.npm.scriptRunner.node": "Utilisez Node.js comme exécuteur de script.",
+ "config.npm.scriptRunner.npm": "Utilisez npm comme exécuteur de script.",
+ "config.npm.scriptRunner.pnpm": "Utilisez pnpm comme exécuteur de script.",
+ "config.npm.scriptRunner.yarn": "Utilisez yarn comme exécuteur de script.",
+ "description": "Extension pour ajouter une prise en charge des tâches pour les scripts npm.",
+ "displayName": "Prise en charge de Npm pour VS Code",
+ "npm.parseError": "Détection de tâche npm : échec de l'analyse du fichier {0}",
+ "taskdef.path": "Chemin de dossier du fichier package.json qui fournit le script. Peut être ignoré.",
+ "taskdef.script": "Le script npm à personnaliser.",
+ "view.name": "Scripts npm",
+ "virtualWorkspaces": "Les fonctionnalités qui nécessitent l’exécution de la commande « npm » ne sont pas disponibles dans les espaces de travail virtuels.",
+ "workspaceTrust": "Cette extension exécute des tâches qui nécessitent une approbation pour s’exécuter."
+ }
+ }
+}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-fr/translations/extensions/vscode.objective-c.i18n.json b/i18n/vscode-language-pack-fr/translations/extensions/vscode.objective-c.i18n.json
index 80f607877a..4889f0202f 100644
--- a/i18n/vscode-language-pack-fr/translations/extensions/vscode.objective-c.i18n.json
+++ b/i18n/vscode-language-pack-fr/translations/extensions/vscode.objective-c.i18n.json
@@ -9,8 +9,8 @@
"version": "1.0.0",
"contents": {
"package": {
- "displayName": "Concepts de base du langage Objective-C",
- "description": "Fournit la coloration syntaxique et la correspondance des crochets dans les fichiers Objective-C."
+ "description": "Fournit la coloration syntaxique et la correspondance des crochets dans les fichiers Objective-C.",
+ "displayName": "Concepts de base du langage Objective-C"
}
}
}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-fr/translations/extensions/vscode.perl.i18n.json b/i18n/vscode-language-pack-fr/translations/extensions/vscode.perl.i18n.json
index 0da5e92fa5..5fd415ea91 100644
--- a/i18n/vscode-language-pack-fr/translations/extensions/vscode.perl.i18n.json
+++ b/i18n/vscode-language-pack-fr/translations/extensions/vscode.perl.i18n.json
@@ -9,8 +9,8 @@
"version": "1.0.0",
"contents": {
"package": {
- "displayName": "Concepts de base du langage Perl",
- "description": "Fournit la coloration syntaxique et la correspondance des crochets dans les fichiers Perl."
+ "description": "Fournit la coloration syntaxique et la correspondance des crochets dans les fichiers Perl.",
+ "displayName": "Concepts de base du langage Perl"
}
}
}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-fr/translations/extensions/vscode.php-language-features.i18n.json b/i18n/vscode-language-pack-fr/translations/extensions/vscode.php-language-features.i18n.json
new file mode 100644
index 0000000000..a48dcced78
--- /dev/null
+++ b/i18n/vscode-language-pack-fr/translations/extensions/vscode.php-language-features.i18n.json
@@ -0,0 +1,31 @@
+{
+ "": [
+ "--------------------------------------------------------------------------------------------",
+ "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."
+ ],
+ "version": "1.0.0",
+ "contents": {
+ "bundle": {
+ "Cannot validate since a PHP installation could not be found. Use the setting 'php.validate.executablePath' to configure the PHP executable.": "Validation impossible car aucune installation PHP n’a été trouvée. Utilisez le paramètre « php.validate.executablePath » pour configurer l’exécutable PHP.",
+ "Cannot validate since no PHP executable is set. Use the setting 'php.validate.executablePath' to configure the PHP executable.": "Impossible d'effectuer la validation, car aucun exécutable PHP n'est défini. Utilisez le paramètre 'php.validate.executablePath' pour configurer l'exécutable PHP.",
+ "Cannot validate since {0} is not a valid php executable. Use the setting 'php.validate.executablePath' to configure the PHP executable.": "Impossible d'effectuer la validation, car {0} n'est pas un exécutable PHP valide. Utilisez le paramètre 'php.validate.executablePath' pour configurer l'exécutable PHP.",
+ "Failed to run php using path: {0}. Reason is unknown.": "Échec de l'exécution de php avec le chemin : {0}. Raison inconnue.",
+ "Open Settings": "Ouvrir les paramètres"
+ },
+ "package": {
+ "command.untrustValidationExecutable": "Interdire l'exécutable de validation PHP (défini comme paramètre d'espace de travail)",
+ "commands.categroy.php": "PHP",
+ "configuration.suggest.basic": "Contrôle si les suggestions de langage PHP intégrées sont activées. Le support suggère les globales et variables PHP.",
+ "configuration.title": "PHP",
+ "configuration.validate.enable": "Activez/désactivez la validation PHP intégrée.",
+ "configuration.validate.executablePath": "Pointe vers l'exécutable PHP.",
+ "configuration.validate.run": "Spécifie si linter est exécuté au moment de l'enregistrement ou de la saisie.",
+ "description": "Fournit une prise en charge de langage riche pour les fichiers PHP.",
+ "displayName": "Fonctionnalités de langage PHP",
+ "workspaceTrust": "L’extension nécessite l’approbation d’espace de travail lorsque le paramètre « php.validate.executablePath » charge une version de PHP dans l’espace de travail."
+ }
+ }
+}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-fr/translations/extensions/vscode.php.i18n.json b/i18n/vscode-language-pack-fr/translations/extensions/vscode.php.i18n.json
index bd270fc509..8ef55e8446 100644
--- a/i18n/vscode-language-pack-fr/translations/extensions/vscode.php.i18n.json
+++ b/i18n/vscode-language-pack-fr/translations/extensions/vscode.php.i18n.json
@@ -9,8 +9,8 @@
"version": "1.0.0",
"contents": {
"package": {
- "displayName": "Concepts de base du langage PHP",
- "description": "Fournit la coloration syntaxique et la correspondance des parenthèses dans les fichiers PHP."
+ "description": "Fournit la coloration syntaxique et la correspondance des parenthèses dans les fichiers PHP.",
+ "displayName": "Concepts de base du langage PHP"
}
}
}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-fr/translations/extensions/vscode.powershell.i18n.json b/i18n/vscode-language-pack-fr/translations/extensions/vscode.powershell.i18n.json
index 88f313167a..127d3c83dd 100644
--- a/i18n/vscode-language-pack-fr/translations/extensions/vscode.powershell.i18n.json
+++ b/i18n/vscode-language-pack-fr/translations/extensions/vscode.powershell.i18n.json
@@ -9,8 +9,8 @@
"version": "1.0.0",
"contents": {
"package": {
- "displayName": "Concepts de base du langage PowerShell",
- "description": "Fournit des extraits de code, la coloration syntaxique, la correspondance des crochets et le repli dans les fichiers PowerShell."
+ "description": "Fournit des extraits de code, la coloration syntaxique, la correspondance des crochets et le repli dans les fichiers PowerShell.",
+ "displayName": "Concepts de base du langage PowerShell"
}
}
}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-fr/translations/extensions/vscode.prompt.i18n.json b/i18n/vscode-language-pack-fr/translations/extensions/vscode.prompt.i18n.json
new file mode 100644
index 0000000000..9b676c2857
--- /dev/null
+++ b/i18n/vscode-language-pack-fr/translations/extensions/vscode.prompt.i18n.json
@@ -0,0 +1,16 @@
+{
+ "": [
+ "--------------------------------------------------------------------------------------------",
+ "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."
+ ],
+ "version": "1.0.0",
+ "contents": {
+ "package": {
+ "description": "Mise en surbrillance de la syntaxe pour les documents d’invite et d’instructions.",
+ "displayName": "Bases du langage d’invite"
+ }
+ }
+}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-fr/translations/extensions/vscode.pug.i18n.json b/i18n/vscode-language-pack-fr/translations/extensions/vscode.pug.i18n.json
index 77f15ee734..1d7f18c7eb 100644
--- a/i18n/vscode-language-pack-fr/translations/extensions/vscode.pug.i18n.json
+++ b/i18n/vscode-language-pack-fr/translations/extensions/vscode.pug.i18n.json
@@ -9,8 +9,8 @@
"version": "1.0.0",
"contents": {
"package": {
- "displayName": "Bases du langage Pug",
- "description": "Fournit la coloration syntaxique et la correspondance des crochets dans les fichiers Pug."
+ "description": "Fournit la coloration syntaxique et la correspondance des crochets dans les fichiers Pug.",
+ "displayName": "Bases du langage Pug"
}
}
}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-fr/translations/extensions/python.i18n.json b/i18n/vscode-language-pack-fr/translations/extensions/vscode.python.i18n.json
similarity index 100%
rename from i18n/vscode-language-pack-fr/translations/extensions/python.i18n.json
rename to i18n/vscode-language-pack-fr/translations/extensions/vscode.python.i18n.json
diff --git a/i18n/vscode-language-pack-fr/translations/extensions/vscode.r.i18n.json b/i18n/vscode-language-pack-fr/translations/extensions/vscode.r.i18n.json
index b7ea35eb5f..2592ea0b78 100644
--- a/i18n/vscode-language-pack-fr/translations/extensions/vscode.r.i18n.json
+++ b/i18n/vscode-language-pack-fr/translations/extensions/vscode.r.i18n.json
@@ -9,8 +9,8 @@
"version": "1.0.0",
"contents": {
"package": {
- "displayName": "Concepts de base du langage R",
- "description": "Fournit la coloration syntaxique et la correspondance des crochets dans les fichiers R."
+ "description": "Fournit la coloration syntaxique et la correspondance des crochets dans les fichiers R.",
+ "displayName": "Concepts de base du langage R"
}
}
}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-fr/translations/extensions/vscode.razor.i18n.json b/i18n/vscode-language-pack-fr/translations/extensions/vscode.razor.i18n.json
index 8f0d77ec8d..5436c74b5d 100644
--- a/i18n/vscode-language-pack-fr/translations/extensions/vscode.razor.i18n.json
+++ b/i18n/vscode-language-pack-fr/translations/extensions/vscode.razor.i18n.json
@@ -9,8 +9,8 @@
"version": "1.0.0",
"contents": {
"package": {
- "displayName": "Bases du langage Razor",
- "description": "Fournit la coloration syntaxique, la correspondance des crochets et le repli dans les fichiers Razor."
+ "description": "Fournit la coloration syntaxique, la correspondance des crochets et le repli dans les fichiers Razor.",
+ "displayName": "Bases du langage Razor"
}
}
}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-fr/translations/extensions/vscode.references-view.i18n.json b/i18n/vscode-language-pack-fr/translations/extensions/vscode.references-view.i18n.json
new file mode 100644
index 0000000000..86799ad107
--- /dev/null
+++ b/i18n/vscode-language-pack-fr/translations/extensions/vscode.references-view.i18n.json
@@ -0,0 +1,61 @@
+{
+ "": [
+ "--------------------------------------------------------------------------------------------",
+ "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."
+ ],
+ "version": "1.0.0",
+ "contents": {
+ "bundle": {
+ "Callers Of": "Appelants de",
+ "Calls From": "Appels de {0}",
+ "No results.": "Aucun résultat.",
+ "No results. Try running a previous search again:": "Aucun résultat. Réessayez d’exécuter une recherche précédente :",
+ "Open Call": "Ouvrir l’appel",
+ "Open Reference": "Ouvrir la référence",
+ "Open Type": "Type d’ouverture",
+ "References": "Références",
+ "Rerun": "Réexécuter",
+ "Select previous reference search": "Sélectionner la recherche de référence précédente",
+ "Subtypes Of": "Sous-types de",
+ "Supertypes Of": "Supertypes de",
+ "{0} result in {1} file": "{0} résultat dans {1} fichier",
+ "{0} result in {1} files": "{0} résultat dans {1} fichiers",
+ "{0} results in {1} file": "{0} résultats dans {1} fichier",
+ "{0} results in {1} files": "{0} résultats dans {1} fichiers"
+ },
+ "package": {
+ "cmd.category.references": "Références",
+ "cmd.references-view.clear": "Effacer",
+ "cmd.references-view.clearHistory": "Effacer l'historique",
+ "cmd.references-view.copy": "Copier",
+ "cmd.references-view.copyAll": "Copier tout",
+ "cmd.references-view.copyPath": "Copier le chemin",
+ "cmd.references-view.findImplementations": "Rechercher toutes les implémentations",
+ "cmd.references-view.findReferences": "Rechercher toutes les références",
+ "cmd.references-view.next": "Accéder au résultat suivant",
+ "cmd.references-view.pickFromHistory": "Afficher l'historique",
+ "cmd.references-view.prev": "Accéder à la référence précédente",
+ "cmd.references-view.refind": "Réexécuter",
+ "cmd.references-view.refresh": "Actualiser",
+ "cmd.references-view.removeCallItem": "Ignorer",
+ "cmd.references-view.removeReferenceItem": "Ignorer",
+ "cmd.references-view.removeTypeItem": "Ignorer",
+ "cmd.references-view.showCallHierarchy": "Afficher la hiérarchie des appels",
+ "cmd.references-view.showIncomingCalls": "Afficher les appels entrants",
+ "cmd.references-view.showOutgoingCalls": "Afficher les appels sortants",
+ "cmd.references-view.showSubtypes": "Afficher les sous-types",
+ "cmd.references-view.showSupertypes": "Afficher les supertypes",
+ "cmd.references-view.showTypeHierarchy": "Afficher la hiérarchie de type",
+ "config.references.preferredLocation": "Contrôle si « Aperçu des références » ou « Recherche de références » est appelé lors de la sélection de références CodeLens.",
+ "config.references.preferredLocation.peek": "Afficher les références dans l’éditeur d’aperçu.",
+ "config.references.preferredLocation.view": "Afficher les références dans un affichage distinct.",
+ "container.title": "Références",
+ "description": "Référencer les résultats de la recherche sous forme d’affichage stable distinct dans la barre latérale",
+ "displayName": "Mode Recherche de référence",
+ "view.title": "Résultats de la recherche de référence"
+ }
+ }
+}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-fr/translations/extensions/restructuredtext.i18n.json b/i18n/vscode-language-pack-fr/translations/extensions/vscode.restructuredtext.i18n.json
similarity index 100%
rename from i18n/vscode-language-pack-fr/translations/extensions/restructuredtext.i18n.json
rename to i18n/vscode-language-pack-fr/translations/extensions/vscode.restructuredtext.i18n.json
diff --git a/i18n/vscode-language-pack-fr/translations/extensions/vscode.ruby.i18n.json b/i18n/vscode-language-pack-fr/translations/extensions/vscode.ruby.i18n.json
index 071b33970a..b79c9afc22 100644
--- a/i18n/vscode-language-pack-fr/translations/extensions/vscode.ruby.i18n.json
+++ b/i18n/vscode-language-pack-fr/translations/extensions/vscode.ruby.i18n.json
@@ -9,8 +9,8 @@
"version": "1.0.0",
"contents": {
"package": {
- "displayName": "Concepts de base du langage Ruby",
- "description": "Fournit la coloration syntaxique et la correspondance des crochets dans les fichiers Ruby."
+ "description": "Fournit la coloration syntaxique et la correspondance des crochets dans les fichiers Ruby.",
+ "displayName": "Concepts de base du langage Ruby"
}
}
}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-fr/translations/extensions/vscode.rust.i18n.json b/i18n/vscode-language-pack-fr/translations/extensions/vscode.rust.i18n.json
index 9965385cf2..395355c807 100644
--- a/i18n/vscode-language-pack-fr/translations/extensions/vscode.rust.i18n.json
+++ b/i18n/vscode-language-pack-fr/translations/extensions/vscode.rust.i18n.json
@@ -9,8 +9,8 @@
"version": "1.0.0",
"contents": {
"package": {
- "displayName": "Bases du langage Rust",
- "description": "Fournit la coloration syntaxique et la correspondance des crochets dans les fichiers Rust."
+ "description": "Fournit la coloration syntaxique et la correspondance des crochets dans les fichiers Rust.",
+ "displayName": "Bases du langage Rust"
}
}
}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-fr/translations/extensions/vscode.scss.i18n.json b/i18n/vscode-language-pack-fr/translations/extensions/vscode.scss.i18n.json
index df512f3486..f1351ab18e 100644
--- a/i18n/vscode-language-pack-fr/translations/extensions/vscode.scss.i18n.json
+++ b/i18n/vscode-language-pack-fr/translations/extensions/vscode.scss.i18n.json
@@ -9,8 +9,8 @@
"version": "1.0.0",
"contents": {
"package": {
- "displayName": "Bases du langage SCSS",
- "description": "Fournit la coloration syntaxique, la correspondance des crochets et le repli dans les fichiers SCSS."
+ "description": "Fournit la coloration syntaxique, la correspondance des crochets et le repli dans les fichiers SCSS.",
+ "displayName": "Bases du langage SCSS"
}
}
}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-fr/translations/extensions/vscode.search-result.i18n.json b/i18n/vscode-language-pack-fr/translations/extensions/vscode.search-result.i18n.json
new file mode 100644
index 0000000000..9dd3aef2ed
--- /dev/null
+++ b/i18n/vscode-language-pack-fr/translations/extensions/vscode.search-result.i18n.json
@@ -0,0 +1,16 @@
+{
+ "": [
+ "--------------------------------------------------------------------------------------------",
+ "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."
+ ],
+ "version": "1.0.0",
+ "contents": {
+ "package": {
+ "description": "Fournit la mise en surbrillance de la syntaxe et des fonctionnalités de langage pour les résultats de recherche avec onglets.",
+ "displayName": "Résultat de recherche"
+ }
+ }
+}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-fr/translations/extensions/vscode.shaderlab.i18n.json b/i18n/vscode-language-pack-fr/translations/extensions/vscode.shaderlab.i18n.json
index e48b654b72..a1f30cbc2d 100644
--- a/i18n/vscode-language-pack-fr/translations/extensions/vscode.shaderlab.i18n.json
+++ b/i18n/vscode-language-pack-fr/translations/extensions/vscode.shaderlab.i18n.json
@@ -9,8 +9,8 @@
"version": "1.0.0",
"contents": {
"package": {
- "displayName": "Concepts de base du langage Shaderlab",
- "description": "Fournit la coloration syntaxique et la correspondance des crochets dans les fichiers Shaderlab."
+ "description": "Fournit la coloration syntaxique et la correspondance des crochets dans les fichiers Shaderlab.",
+ "displayName": "Concepts de base du langage Shaderlab"
}
}
}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-fr/translations/extensions/vscode.shellscript.i18n.json b/i18n/vscode-language-pack-fr/translations/extensions/vscode.shellscript.i18n.json
index a67b3aed2c..54b2b87832 100644
--- a/i18n/vscode-language-pack-fr/translations/extensions/vscode.shellscript.i18n.json
+++ b/i18n/vscode-language-pack-fr/translations/extensions/vscode.shellscript.i18n.json
@@ -9,8 +9,8 @@
"version": "1.0.0",
"contents": {
"package": {
- "displayName": "Bases du langage Shell Script",
- "description": "Fournit la coloration syntaxique et la correspondance des crochets dans les fichiers Shell Script."
+ "description": "Fournit la coloration syntaxique et la correspondance des crochets dans les fichiers Shell Script.",
+ "displayName": "Bases du langage Shell Script"
}
}
}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-fr/translations/extensions/vscode.simple-browser.i18n.json b/i18n/vscode-language-pack-fr/translations/extensions/vscode.simple-browser.i18n.json
new file mode 100644
index 0000000000..6b391a0a3c
--- /dev/null
+++ b/i18n/vscode-language-pack-fr/translations/extensions/vscode.simple-browser.i18n.json
@@ -0,0 +1,28 @@
+{
+ "": [
+ "--------------------------------------------------------------------------------------------",
+ "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."
+ ],
+ "version": "1.0.0",
+ "contents": {
+ "bundle": {
+ "Back": "Précédent",
+ "Enter url to visit": "Entrez l'URL à visiter",
+ "Focus Lock": "Verrouillage du focus",
+ "Forward": "Suivant",
+ "Open in browser": "Ouvrir dans le navigateur",
+ "Open in simple browser": "Ouvrir dans le navigateur simple",
+ "Reload": "Recharger",
+ "Simple Browser": "Navigateur simple",
+ "https://example.com": "https://example.com"
+ },
+ "package": {
+ "configuration.focusLockIndicator.enabled.description": "Activez/désactivez l'indicateur flottant qui s'affiche quand il a le focus dans le navigateur simple.",
+ "description": "Vue web intégrée très élémentaire pour l'affichage du contenu web.",
+ "displayName": "Navigateur simple"
+ }
+ }
+}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-fr/translations/extensions/vscode.sql.i18n.json b/i18n/vscode-language-pack-fr/translations/extensions/vscode.sql.i18n.json
index 81ec12c22e..deeb8eb955 100644
--- a/i18n/vscode-language-pack-fr/translations/extensions/vscode.sql.i18n.json
+++ b/i18n/vscode-language-pack-fr/translations/extensions/vscode.sql.i18n.json
@@ -9,8 +9,8 @@
"version": "1.0.0",
"contents": {
"package": {
- "displayName": "Concepts de base du langage SQL",
- "description": "Fournit la coloration syntaxique et la correspondance des crochets dans les fichiers SQL."
+ "description": "Fournit la coloration syntaxique et la correspondance des crochets dans les fichiers SQL.",
+ "displayName": "Concepts de base du langage SQL"
}
}
}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-fr/translations/extensions/vscode.swift.i18n.json b/i18n/vscode-language-pack-fr/translations/extensions/vscode.swift.i18n.json
index 82eb572030..c759117473 100644
--- a/i18n/vscode-language-pack-fr/translations/extensions/vscode.swift.i18n.json
+++ b/i18n/vscode-language-pack-fr/translations/extensions/vscode.swift.i18n.json
@@ -9,8 +9,8 @@
"version": "1.0.0",
"contents": {
"package": {
- "displayName": "Bases du langage Swift",
- "description": "Fournit des extraits de code, la coloration syntaxique et la correspondance des crochets dans les fichiers Swift."
+ "description": "Fournit des extraits de code, la coloration syntaxique et la correspondance des crochets dans les fichiers Swift.",
+ "displayName": "Bases du langage Swift"
}
}
}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-fr/translations/extensions/vscode.terminal-suggest.i18n.json b/i18n/vscode-language-pack-fr/translations/extensions/vscode.terminal-suggest.i18n.json
new file mode 100644
index 0000000000..eb6182424d
--- /dev/null
+++ b/i18n/vscode-language-pack-fr/translations/extensions/vscode.terminal-suggest.i18n.json
@@ -0,0 +1,18 @@
+{
+ "": [
+ "--------------------------------------------------------------------------------------------",
+ "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."
+ ],
+ "version": "1.0.0",
+ "contents": {
+ "package": {
+ "description": "Extension permettant d’ajouter des complétions de terminal pour les terminaux zsh, bash et fish.",
+ "displayName": "Suggestion de terminal pour VS Code",
+ "terminal.integrated.suggest.clearCachedGlobals": "Effacez les suggestions d'éléments globaux mises en cache",
+ "view.name": "Suggestion de terminal"
+ }
+ }
+}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-fr/translations/extensions/vscode.theme-abyss.i18n.json b/i18n/vscode-language-pack-fr/translations/extensions/vscode.theme-abyss.i18n.json
index e4f4787902..e2e6a36c87 100644
--- a/i18n/vscode-language-pack-fr/translations/extensions/vscode.theme-abyss.i18n.json
+++ b/i18n/vscode-language-pack-fr/translations/extensions/vscode.theme-abyss.i18n.json
@@ -9,8 +9,8 @@
"version": "1.0.0",
"contents": {
"package": {
- "displayName": "Thème Abyss",
"description": "Thème Abyss pour Visual Studio Code",
+ "displayName": "Thème Abyss",
"themeLabel": "Abysse"
}
}
diff --git a/i18n/vscode-language-pack-fr/translations/extensions/vscode.theme-defaults.i18n.json b/i18n/vscode-language-pack-fr/translations/extensions/vscode.theme-defaults.i18n.json
index 05f0f82528..a5eb6e5be8 100644
--- a/i18n/vscode-language-pack-fr/translations/extensions/vscode.theme-defaults.i18n.json
+++ b/i18n/vscode-language-pack-fr/translations/extensions/vscode.theme-defaults.i18n.json
@@ -9,13 +9,16 @@
"version": "1.0.0",
"contents": {
"package": {
- "displayName": "Thèmes par défaut",
- "description": "Thèmes clair et sombre par défaut de Visual Studio",
- "darkPlusColorThemeLabel": "Sombre+ (sombre par défaut)",
- "lightPlusColorThemeLabel": "Clair+ (clair par défaut)",
"darkColorThemeLabel": "Sombre (Visual Studio)",
+ "darkModernThemeLabel": "Moderne sombre",
+ "darkPlusColorThemeLabel": "Sombre+",
+ "description": "Thèmes clair et sombre par défaut de Visual Studio",
+ "displayName": "Thèmes par défaut",
+ "hcColorThemeLabel": "Contraste élevé sombre",
"lightColorThemeLabel": "Clair (Visual Studio)",
- "hcColorThemeLabel": "Contraste élevé",
+ "lightHcColorThemeLabel": "Contraste élevé clair",
+ "lightModernThemeLabel": "Moderne clair",
+ "lightPlusColorThemeLabel": "Clair+",
"minimalIconThemeLabel": "Minimal (Visual Studio Code)"
}
}
diff --git a/i18n/vscode-language-pack-fr/translations/extensions/vscode.theme-kimbie-dark.i18n.json b/i18n/vscode-language-pack-fr/translations/extensions/vscode.theme-kimbie-dark.i18n.json
index de71d7182f..c4eb6e5c2b 100644
--- a/i18n/vscode-language-pack-fr/translations/extensions/vscode.theme-kimbie-dark.i18n.json
+++ b/i18n/vscode-language-pack-fr/translations/extensions/vscode.theme-kimbie-dark.i18n.json
@@ -9,8 +9,8 @@
"version": "1.0.0",
"contents": {
"package": {
- "displayName": "Thème Kimble Dark",
"description": "Thème Kimble dark pour Visual Studio Code",
+ "displayName": "Thème Kimble Dark",
"themeLabel": "Kimbie sombre"
}
}
diff --git a/i18n/vscode-language-pack-fr/translations/extensions/vscode.theme-monokai-dimmed.i18n.json b/i18n/vscode-language-pack-fr/translations/extensions/vscode.theme-monokai-dimmed.i18n.json
index e999f128ac..f83713cddf 100644
--- a/i18n/vscode-language-pack-fr/translations/extensions/vscode.theme-monokai-dimmed.i18n.json
+++ b/i18n/vscode-language-pack-fr/translations/extensions/vscode.theme-monokai-dimmed.i18n.json
@@ -9,8 +9,8 @@
"version": "1.0.0",
"contents": {
"package": {
- "displayName": "Thème Monokai Dimmed",
"description": "Thème Monokai Dimmed pour Visual Studio Code",
+ "displayName": "Thème Monokai Dimmed",
"themeLabel": "Monokai estompé"
}
}
diff --git a/i18n/vscode-language-pack-fr/translations/extensions/vscode.theme-monokai.i18n.json b/i18n/vscode-language-pack-fr/translations/extensions/vscode.theme-monokai.i18n.json
index 4edfe1dcfb..a026fa980e 100644
--- a/i18n/vscode-language-pack-fr/translations/extensions/vscode.theme-monokai.i18n.json
+++ b/i18n/vscode-language-pack-fr/translations/extensions/vscode.theme-monokai.i18n.json
@@ -9,8 +9,8 @@
"version": "1.0.0",
"contents": {
"package": {
- "displayName": "Thème Monokai",
"description": "Thème Monokai pour Visual Studio Code",
+ "displayName": "Thème Monokai",
"themeLabel": "Monokai"
}
}
diff --git a/i18n/vscode-language-pack-fr/translations/extensions/vscode.theme-quietlight.i18n.json b/i18n/vscode-language-pack-fr/translations/extensions/vscode.theme-quietlight.i18n.json
index 9712dd0bb2..ac7e329479 100644
--- a/i18n/vscode-language-pack-fr/translations/extensions/vscode.theme-quietlight.i18n.json
+++ b/i18n/vscode-language-pack-fr/translations/extensions/vscode.theme-quietlight.i18n.json
@@ -9,8 +9,8 @@
"version": "1.0.0",
"contents": {
"package": {
- "displayName": "Thème Quiet Light",
"description": "Thème Quiet Light pour Visual Studio Code",
+ "displayName": "Thème Quiet Light",
"themeLabel": "Quiet clair"
}
}
diff --git a/i18n/vscode-language-pack-fr/translations/extensions/vscode.theme-red.i18n.json b/i18n/vscode-language-pack-fr/translations/extensions/vscode.theme-red.i18n.json
index 2b5ff1fd09..887b478f2a 100644
--- a/i18n/vscode-language-pack-fr/translations/extensions/vscode.theme-red.i18n.json
+++ b/i18n/vscode-language-pack-fr/translations/extensions/vscode.theme-red.i18n.json
@@ -9,8 +9,8 @@
"version": "1.0.0",
"contents": {
"package": {
- "displayName": "Thème Red",
"description": "Thème Red pour Visual Studio Code",
+ "displayName": "Thème Red",
"themeLabel": "Rouge"
}
}
diff --git a/i18n/vscode-language-pack-fr/translations/extensions/vscode.theme-solarized-dark.i18n.json b/i18n/vscode-language-pack-fr/translations/extensions/vscode.theme-solarized-dark.i18n.json
index 784189594a..4b7124bc5a 100644
--- a/i18n/vscode-language-pack-fr/translations/extensions/vscode.theme-solarized-dark.i18n.json
+++ b/i18n/vscode-language-pack-fr/translations/extensions/vscode.theme-solarized-dark.i18n.json
@@ -9,8 +9,8 @@
"version": "1.0.0",
"contents": {
"package": {
- "displayName": "Thème Solarized Dark",
"description": "Thème Solarized Dark pour Visual Studio Code",
+ "displayName": "Thème Solarized Dark",
"themeLabel": "Solaire sombre"
}
}
diff --git a/i18n/vscode-language-pack-fr/translations/extensions/vscode.theme-solarized-light.i18n.json b/i18n/vscode-language-pack-fr/translations/extensions/vscode.theme-solarized-light.i18n.json
index b554920184..30b5c4f093 100644
--- a/i18n/vscode-language-pack-fr/translations/extensions/vscode.theme-solarized-light.i18n.json
+++ b/i18n/vscode-language-pack-fr/translations/extensions/vscode.theme-solarized-light.i18n.json
@@ -9,8 +9,8 @@
"version": "1.0.0",
"contents": {
"package": {
- "displayName": "Thème Solarized Light",
"description": "Thème Solarized Light pour Visual Studio Code",
+ "displayName": "Thème Solarized Light",
"themeLabel": "Solaire clair"
}
}
diff --git a/i18n/vscode-language-pack-fr/translations/extensions/vscode.theme-tomorrow-night-blue.i18n.json b/i18n/vscode-language-pack-fr/translations/extensions/vscode.theme-tomorrow-night-blue.i18n.json
index cc99c84796..776e521b9b 100644
--- a/i18n/vscode-language-pack-fr/translations/extensions/vscode.theme-tomorrow-night-blue.i18n.json
+++ b/i18n/vscode-language-pack-fr/translations/extensions/vscode.theme-tomorrow-night-blue.i18n.json
@@ -9,8 +9,8 @@
"version": "1.0.0",
"contents": {
"package": {
- "displayName": "Thème Tomorrow Night Blue",
"description": "Thème Tomorrow Night Blue pour Visual Studio Code",
+ "displayName": "Thème Tomorrow Night Blue",
"themeLabel": "Tomorrow Night Blue"
}
}
diff --git a/i18n/vscode-language-pack-fr/translations/extensions/vscode.tunnel-forwarding.i18n.json b/i18n/vscode-language-pack-fr/translations/extensions/vscode.tunnel-forwarding.i18n.json
new file mode 100644
index 0000000000..1349e2f443
--- /dev/null
+++ b/i18n/vscode-language-pack-fr/translations/extensions/vscode.tunnel-forwarding.i18n.json
@@ -0,0 +1,27 @@
+{
+ "": [
+ "--------------------------------------------------------------------------------------------",
+ "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."
+ ],
+ "version": "1.0.0",
+ "contents": {
+ "bundle": {
+ "Continue": "Continuer",
+ "Don't show again": "Ne plus afficher",
+ "Port Forwarding": "Transfert de port",
+ "Private": "Privé",
+ "Public": "Public",
+ "You're about to create a publicly forwarded port. Anyone on the internet will be able to connect to the service listening on port {0}. You should only proceed if this service is secure and non-sensitive.": "Vous êtes sur le point de créer un port transféré publiquement. Toute personne sur Internet peut se connecter au service qui écoute sur le port {0}. Continuez seulement si ce service est sécurisé et non sensible."
+ },
+ "package": {
+ "category": "Transfert de port",
+ "command.restart": "Redémarrer le système de transfert",
+ "command.showLog": "Afficher le journal",
+ "description": "Permet d’accéder aux ports locaux de transfert via Internet.",
+ "displayName": "Transfert de port de tunnel local"
+ }
+ }
+}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-fr/translations/extensions/vscode.typescript-language-features.i18n.json b/i18n/vscode-language-pack-fr/translations/extensions/vscode.typescript-language-features.i18n.json
new file mode 100644
index 0000000000..4e2cb9e9d1
--- /dev/null
+++ b/i18n/vscode-language-pack-fr/translations/extensions/vscode.typescript-language-features.i18n.json
@@ -0,0 +1,367 @@
+{
+ "": [
+ "--------------------------------------------------------------------------------------------",
+ "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."
+ ],
+ "version": "1.0.0",
+ "contents": {
+ "bundle": {
+ "(loading...)/Prefix displayed for hover entries while the server is still loading": "(chargement en cours…)",
+ "...1 additional file not shown": "...1 fichier supplémentaire non affiché",
+ "...{0} additional files not shown": "...{0} fichiers supplémentaires non affichés",
+ "1 implementation": "1 implémentation",
+ "1 reference": "1 référence",
+ "Acquiring typings definitions for IntelliSense./Typings refers to the *.d.ts typings files that power our IntelliSense. It should not be localized": "Acquisition des définitions typings pour IntelliSense.",
+ "Acquiring typings.../Typings refers to the *.d.ts typings files that power our IntelliSense. It should not be localized": "Acquisition des typings...",
+ "Add all missing imports": "Ajouter toutes les importations manquantes",
+ "Add meaningful parameter name with AI": "Ajouter un nom de paramètre significatif avec l’IA",
+ "Add types to this code. Add separate interfaces when possible. Do not change the code except for adding types.": "Ajoutez des types à ce code. Ajoutez des interfaces distinctes lorsque cela est possible. Ne modifiez pas le code, sauf pour ajouter des types.",
+ "Allow": "Autoriser",
+ "Always": "Toujours",
+ "An error occurred while renaming file": "Une erreur s'est produite pendant le renommage du fichier",
+ "Analyzing '{0}' and its dependencies": "Analyse de «{0}» et de ses dépendances",
+ "Checking for update of JS/TS imports": "Recherche de mises à jour des importations JS/TS",
+ "Configure Excludes": "Configurer les exclusions",
+ "Configure JSConfig": "Configurer JSConfig",
+ "Configure TSConfig": "Configurer TSConfig",
+ "Configure jsconfig.json": "Configurer jsconfig.json",
+ "Configure tsconfig.json": "Configurer tsconfig.json",
+ "Could not apply refactoring": "Impossible d'appliquer la refactorisation",
+ "Could not detect a Node installation to run TS Server.": "Impossible de détecter une installation Node pour exécuter TS Server.",
+ "Could not determine TypeScript or JavaScript project": "Impossible de déterminer le projet TypeScript ou JavaScript",
+ "Could not determine TypeScript or JavaScript project. Unsupported file type": "Impossible de déterminer le projet TypeScript ou JavaScript. Type de fichier non pris en charge",
+ "Could not determine references": "Impossible de déterminer les références",
+ "Could not install typings files for JavaScript language features. Please ensure that NPM is installed, or configure 'typescript.npm' in your user settings. Alternatively, check the [documentation]({0}) to learn more.": "Impossible d’installer les fichiers de saisie pour les fonctionnalités du langage JavaScript. Vérifiez que NPM est installé ou configurez 'typescript.npm' dans vos paramètres utilisateur. Vous pouvez également consulter la [documentation]({0}) pour en savoir plus.",
+ "Could not load the TypeScript version at this path": "Impossible de charger la version TypeScript dans ce chemin",
+ "Could not open TS Server log file": "Impossible d'ouvrir le fichier journal du serveur TS",
+ "Disable logging": "Désactiver la journalisation",
+ "Disables semantic checking in a JavaScript file. Must be at the top of a file.": "Désactive la vérification sémantique dans un fichier JavaScript. Doit se trouver au début d'un fichier.",
+ "Dismiss": "Ignorer",
+ "Don't Show Again": "Ne plus afficher",
+ "Don't show again": "Ne plus afficher",
+ "Enable logging and restart TS server": "Activer la journalisation et redémarrer le serveur TS",
+ "Enables semantic checking in a JavaScript file. Must be at the top of a file.": "Active la vérification sémantique dans un fichier JavaScript. Doit se trouver au début d'un fichier.",
+ "Enter file path": "Entrer le chemin d’accès au fichier",
+ "Enter new file path...": "Entrez le nouveau chemin d’accès au fichier...",
+ "Extract to constant": "Extraire en constante",
+ "Extract to function": "Extraire en fonction",
+ "Failed to resolve {0} as module": "Échec de la résolution de {0} en tant que module",
+ "Fetching data for better TypeScript IntelliSense": "Récupération (fetch) des données pour l'amélioration de TypeScript IntelliSense",
+ "File is not part of a JavaScript project. View the [jsconfig.json documentation]({0}) to learn more.": "Le fichier ne fait pas partie d’un projet JavaScript. Affichez les [tsconfig.json documentation]({0}) pour en savoir plus.",
+ "File is not part of a TypeScript project. View the [tsconfig.json documentation]({0}) to learn more.": "Le fichier ne fait pas partie d’un projet TypeScript. Affichez les [tsconfig.json documentation]({0}) pour en savoir plus.",
+ "File is not part opened folders": "Le fichier ne fait pas partie des dossiers ouverts",
+ "Find file references failed. No resource provided.": "Échec de la recherche des références de fichiers. Aucune ressource fournie.",
+ "Find file references failed. Requires TypeScript 4.2+.": "Échec de la recherche des références de fichiers. Nécessite TypeScript 4.2+.",
+ "Find file references failed. Unknown file type.": "Échec de la recherche des références de fichiers. Type de fichier inconnu.",
+ "Find file references failed. Unsupported file type.": "Échec de la recherche des références de fichiers. Type de fichier non pris en charge.",
+ "Finding file references": "Recherche des références de fichiers",
+ "Finding source definitions": "Recherche des définitions sources",
+ "Fix all fixable JS/TS issues": "Résoudre tous les problèmes JS/TS pouvant être résolus",
+ "Follow link": "Suivre le lien",
+ "Go to Source Definition failed. No resource provided.": "Échec de l’aller à la définition source. Aucune ressource fournie.",
+ "Go to Source Definition failed. Requires TypeScript 4.7+.": "Échec de l’aller à la définition source. Nécessite TypeScript 4.7+.",
+ "Go to Source Definition failed. Unknown file type.": "Échec de l’aller à la définition source. Type de fichier inconnu.",
+ "Go to Source Definition failed. Unsupported file type.": "Échec de l’aller à la définition source. Type de fichier non pris en charge.",
+ "Implement missing function declaration '{0}' using AI": "Implémentez la déclaration de fonction manquante « {0} » à l’aide de l’IA",
+ "Implement the stubbed-out class members for {0} with a useful implementation.": "Implémentez les membres de classe stub pour {0} avec une implémentation utile.",
+ "Infer types using AI": "Déduire les types avec l’IA",
+ "Initializing '{0}'": "Initialisation de '{0}'",
+ "JS/TS IntelliSense Status": "État intelliSense JS/TS",
+ "JSDoc comment": "Commentaire JSDoc",
+ "Learn More": "En savoir plus",
+ "Learn more about JS/TS refactorings": "En savoir plus sur les refactorisations JS/TS",
+ "Learn more about managing TypeScript versions": "En savoir plus sur la gestion des versions TypeScript",
+ "Loading IntelliSense status": "Chargement de l’état IntelliSense",
+ "Move to File": "Déplacer vers le fichier",
+ "Never": "Jamais",
+ "Never in this Workspace": "Jamais dans cet espace de travail",
+ "No": "Non",
+ "No jsconfig": "Aucun jsconfig",
+ "No opened folders": "Aucun dossier ouvert",
+ "No source definitions found.": "Aucune définition trouvée.",
+ "No tsconfig": "Aucun tsconfig",
+ "Not now": "Pas maintenant",
+ "Open Config File": "Ouvrir le fichier config",
+ "Open on GitHub": "Ouvrir dans GitHub",
+ "Organize Imports": "Organiser des importations",
+ "Partial mode": "Mode partiel",
+ "Paste with imports": "Coller avec les importations",
+ "Please open a folder in VS Code to use a TypeScript or JavaScript project": "Ouvrez un dossier dans VS Code pour utiliser un projet TypeScript ou JavaScript",
+ "Please report an issue against Yarn PnP": "Signalez un problème avec Yarn PnP",
+ "Please update your TypeScript version": "Veuillez mettre à jour votre version de TypeScript",
+ "Project wide IntelliSense not available": "IntelliSense non disponible à l’échelle du projet",
+ "Provide a reasonable implementation of the function {0} given its type and the context it's called in.": "Fournissez une implémentation raisonnable de la fonction {0} en fonction de son type et du contexte dans lequel elle est appelée.",
+ "Remove Unused Imports": "Supprimer des importations inutilisées",
+ "Remove all unused code": "Supprimer tout code inutilisé",
+ "Rename the parameter {0} with a more meaningful name.": "Renommez le paramètre {0} avec un nom plus significatif.",
+ "Report Issue": "Signaler un problème",
+ "Report issue against Yarn PnP": "Signaler un problème avec Yarn PnP",
+ "Select Version": "Sélectionner la version",
+ "Select code action to apply": "Sélectionner l'action de code à appliquer",
+ "Select existing file...": "Sélectionner un fichier existant...",
+ "Select move destination": "Sélectionner la destination de déplacement",
+ "Select the TypeScript version used for JavaScript and TypeScript language features": "Sélectionner la version TypeScript utilisée pour les fonctionnalités de langage JavaScript et TypeScript",
+ "Sort Imports": "Trier les importations",
+ "Suppresses @ts-check errors on the next line of a file, expecting at least one to exist.": "Supprime les erreurs @ts-check sur la ligne suivante d'un fichier, en supposant qu'il y a au moins une erreur.",
+ "Suppresses @ts-check errors on the next line of a file.": "Supprime les erreurs @ts-check sur la ligne suivante d'un fichier.",
+ "TS Server has not started logging.": "Le serveur TS n'a pas démarré la journalisation.",
+ "TS Server logging is currently enabled which may impact performance.": "La journalisation du serveur TS est actuellement activée, ce qui peut avoir un impact sur les performances.",
+ "TS Server logging is off. Please set 'typescript.tsserver.log' and restart the TS server to enable logging": "La journalisation du serveur TS est désactivée. Définissez 'typescript.tsserver.log' et redémarrez le serveur TS pour activer la journalisation",
+ "The JS/TS language service crashed 5 times in the last 5 Minutes.": "Le service de langage JS/TS s’est arrêté 5 fois au cours des 5 dernières minutes.",
+ "The JS/TS language service crashed 5 times in the last 5 Minutes.\nThis may be caused by a plugin contributed by one of these extensions: {0}\nPlease try disabling these extensions before filing an issue against VS Code.": "Le service de langage JS/TS s’est arrêté 5 fois au cours des 5 dernières minutes.\nCela peut être dû à un plug-in fourni par l’une de ces extensions : {0}\nVeuillez essayer de désactiver ces extensions avant de soumettre un problème à VS Code.",
+ "The JS/TS language service crashed.": "Le service de langage JS/TS s’est bloqué.",
+ "The JS/TS language service crashed.\nThis may be caused by a plugin contributed by one of these extensions: {0}.\nPlease try disabling these extensions before filing an issue against VS Code.": "Le service de langage JS/TS s’est bloqué.\nCela peut être dû à un plug-in fourni par l’une de ces extensions : {0}.\nVeuillez essayer de désactiver ces extensions avant de soumettre un problème à VS Code.",
+ "The JS/TS language service immediately crashed 5 times. The service will not be restarted.": "Le service de langage JS/TS s’est arrêté 5 fois immédiatement. Le service ne sera pas redémarré.",
+ "The JS/TS language service immediately crashed 5 times. The service will not be restarted.\nThis may be caused by a plugin contributed by one of these extensions: {0}.\nPlease try disabling these extensions before filing an issue against VS Code.": "Le service de langage JS/TS s’est immédiatement arrêté 5 fois. Le service ne sera pas redémarré.\nCela peut être dû à un plug-in fourni par l’une de ces extensions : {0}.\nVeuillez essayer de désactiver ces extensions avant de soumettre un problème à VS Code.",
+ "The TypeScript Go extension is not installed.": "L’extension TypeScript Go n’est pas installée.",
+ "The current selection cannot be extracted": "Impossible d'extraire la sélection actuelle",
+ "The path {0} doesn't point to a valid Node installation to run TS Server. Falling back to bundled Node.": "Le chemin {0} ne pointe pas vers une installation Node valide pour exécuter TS Server. Retour au Node en pack.",
+ "The path {0} doesn't point to a valid tsserver install. Falling back to bundled TypeScript version.": "Le chemin {0} ne pointe pas vers une installation tsserver valide. Utilisation par défaut de la version TypeScript groupée.",
+ "The workspace is using a version of the TypeScript Server that has been patched by Yarn PnP. This patching is a common source of bugs.": "L’espace de travail utilise une version du serveur TypeScript qui a été corrigée par Yarn PnP. Ce correctif est une source courante de bogues.",
+ "The workspace is using an old version of TypeScript ({0}).\n\nBefore reporting an issue, please update the workspace to use TypeScript {1} or newer to make sure the bug has not already been fixed.": "L’espace de travail utilise une ancienne version de TypeScript ({0}).\n\nAvant de signaler un problème, veuillez mettre à jour l’espace de travail pour utiliser TypeScript {1} ou une version plus récente pour vérifier que le bogue n’a pas déjà été corrigé.",
+ "This workspace contains a TypeScript version. Would you like to use the workspace TypeScript version for TypeScript and JavaScript language features?": "Cet espace de travail contient une version TypeScript. Voulez-vous utiliser la version TypeScript de l'espace de travail pour les fonctionnalités de langage TypeScript et JavaScript ?",
+ "This workspace wants to use the Node installation at '{0}' to run TS Server. Would you like to use it?": "Cet espace de travail souhaite utiliser l'installation Node sur '{0}' pour exécuter TS Server. Voulez-vous l'utiliser ?",
+ "To enable project-wide JavaScript/TypeScript language features, exclude folders with many files, like: {0}": "Pour activer les fonctionnalités de langage JavaScript/TypeScript à l'échelle du projet, excluez les dossiers contenant de nombreux fichiers, par exemple : {0}",
+ "To enable project-wide JavaScript/TypeScript language features, exclude large folders with source files that you do not work on.": "Pour activer les fonctionnalités de langage JavaScript/TypeScript à l'échelle du projet, excluez les dossiers volumineux contenant des fichiers sources inutilisés.",
+ "TypeScript Server Log": "TypeScript Server Log",
+ "TypeScript Task in tasks.json contains \"\\\\\". TypeScript tasks tsconfig must use \"/\"": "La tâche Typescript dans tasks.json contient \"\\\\\". Les tâches Typescript tsconfig doivent utiliser \"/\"",
+ "TypeScript Version": "TypeScript Version",
+ "TypeScript language server exited with error. Error message is: {0}": "Le serveur de langage TypeScript a rencontré une erreur. Le message d'erreur est : {0}",
+ "TypeScript version": "Version de TypeScript",
+ "TypeScript: Configure Excludes": "TypeScript : configurer les exclusions",
+ "Update imports for '{0}'?": "Mettre à jour les importations de '{0}' ?",
+ "Update imports for the following {0} files?": "Mettre à jour les importations des fichiers {0} suivants ?",
+ "Use VS Code's Version": "Utiliser la version de VS Code",
+ "Use Workspace Version": "Utiliser la version de l'espace de travail",
+ "VS Code's tsserver was deleted by another application such as a misbehaving virus detection tool. Please reinstall VS Code.": "Le tsserver de VSCode a été supprimé par une autre application, par exemple, un outil de détection de virus mal configuré. Réinstallez VS Code.",
+ "Yes": "Oui",
+ "build - {0}": "build - {0}",
+ "destination files": "fichiers de destination",
+ "invalid version": "La version n'est pas valide",
+ "watch - {0}": "espion - {0}",
+ "{0} (Fix all in file)": "{0} (Corriger tout dans le fichier)",
+ "{0} implementations": "{0} implémentations",
+ "{0} references": "{0} références",
+ "{0} with AI": "{0} avec l’IA"
+ },
+ "package": {
+ "configuration.format": "Mise en forme",
+ "configuration.hover.maximumLength": "Nombre maximal de caractères dans un pointage. Si le pointage est plus long que celui-ci, il est tronqué. Nécessite TypeScript 5.9+.",
+ "configuration.implicitProjectConfig.checkJs": "Active/désactive la vérification sémantique des fichiers JavaScript. Les fichiers 'jsconfig.json' ou 'tsconfig.json existants remplacent ce paramètre.",
+ "configuration.implicitProjectConfig.experimentalDecorators": "Active/désactive 'experimentalDecorators' dans les fichiers JavaScript qui ne font pas partie d'un projet. Les fichiers 'jsconfig.json' ou 'tsconfig.json existants remplacent ce paramètre.",
+ "configuration.implicitProjectConfig.module": "Définit le système de module pour le programme. Voir plus : https://www.typescriptlang.org/tsconfig#module.",
+ "configuration.implicitProjectConfig.strict": "Active/désactive les [mode strict](https://www.typescriptlang.org/tsconfig#strict) dans les fichiers JavaScript et TypeScript qui ne font pas partie d'un projet. Les fichiers « jsconfig.json » ou « tsconfig.json » existants remplacent ce paramètre.",
+ "configuration.implicitProjectConfig.strictFunctionTypes": "Active/désactive les [types de fonction stricts](https://www.typescriptlang.org/tsconfig#strictFunctionTypes) dans les fichiers JavaScript et TypeScript qui ne font pas partie d'un projet. Les fichiers 'jsconfig.json' ou 'tsconfig.json existants remplacent ce paramètre.",
+ "configuration.implicitProjectConfig.strictNullChecks": "Active/désactive les [vérifications de valeur null strictes](https://www.typescriptlang.org/tsconfig#strictNullChecks) dans les fichiers JavaScript et TypeScript qui ne font pas partie d'un projet. Les fichiers 'jsconfig.json' ou 'tsconfig.json existants remplacent ce paramètre.",
+ "configuration.implicitProjectConfig.target": "Définissez la version du langage JavaScript cible pour les déclarations JavaScript émises et incluez les déclarations de bibliothèque. Afficher plus : https://www.typescriptlang.org/tsconfig#target.",
+ "configuration.inlayHints": "Hints incrustés",
+ "configuration.inlayHints.enumMemberValues.enabled": "Activer/désactiver les hints incrustés pour les valeurs de membre dans les déclarations enum :\r\n```typescript\r\n\r\nenum MyValue {\r\n\tA /* = 0 */;\r\n\tB /* = 1 */;\r\n}\r\n \r\n```",
+ "configuration.inlayHints.functionLikeReturnTypes.enabled": "Activer/désactiver les hints incrustés pour les types de retour implicites sur les signatures de fonction :\r\n```typescript\r\n\r\nfunction foo() /* :number */ {\r\n\treturn Date.now();\r\n} \r\n \r\n```",
+ "configuration.inlayHints.parameterNames.enabled": "Activer/désactiver les hints incrustés pour les noms de paramètres :\r\n```typescript\r\n\r\nparseInt(/* str: */ '123', /* radix: */ 8)\r\n \r\n```",
+ "configuration.inlayHints.parameterNames.suppressWhenArgumentMatchesName": "Supprime les indicateurs de nom de paramètre sur les arguments dont le texte est identique au nom du paramètre.",
+ "configuration.inlayHints.parameterTypes.enabled": "Activer/désactiver les hints incrustés pour les types de paramètres implicites :\r\n```typescript\r\n\r\nel.addEventListener('click', e /* :MouseEvent */ => ...)\r\n \r\n```",
+ "configuration.inlayHints.propertyDeclarationTypes.enabled": "Activer/désactiver les hints incrustés pour les types implicites sur les déclarations de propriété :\r\n```typescript\r\n\r\nclass Foo {\r\n\tprop /* :number */ = Date.now();\r\n}\r\n \r\n```",
+ "configuration.inlayHints.variableTypes.enabled": "Activer/désactiver les hints incrustés pour les types de variable implicites :\r\n```typescript\r\n\r\nconst foo /* :number */ = Date.now();\r\n \r\n```",
+ "configuration.inlayHints.variableTypes.suppressWhenTypeMatchesName": "Supprime les indications de type sur les variables dont le nom est identique au nom du type.",
+ "configuration.preferGoToSourceDefinition": "Permet à `Aller à la définition` d'éviter les fichiers de déclaration de type lorsque cela est possible en déclenchant `Aller à la définition source` à la place. Cela permet de déclencher `Aller à la définition de la source` avec le geste de la souris.",
+ "configuration.preferences": "Préférences",
+ "configuration.server": "Serveur TS",
+ "configuration.suggest": "Suggestions",
+ "configuration.suggest.autoImports": "Active/désactive les suggestions d'importation automatique.",
+ "configuration.suggest.classMemberSnippets.enabled": "Activez/désactivez les saisies semi-automatiques d’extraits de code pour les membres de classe.",
+ "configuration.suggest.completeFunctionCalls": "Fonctions complètes avec leur signature de paramètre.",
+ "configuration.suggest.completeJSDocs": "Activez/désactivez la suggestion pour commenter JSDoc.",
+ "configuration.suggest.includeAutomaticOptionalChainCompletions": "Activez/désactivez l’affichage des complétions sur des valeurs potentiellement indéfinies qui insèrent un appel de chaîne facultatif. Nécessite l’activation des vérifications de valeur null stricte.",
+ "configuration.suggest.includeCompletionsForImportStatements": "Active/désactive les complétions basées sur l’importation automatique pour les instructions d’importation partiellement tapées.",
+ "configuration.suggest.jsdoc.generateReturns": "Activez/désactivez la génération d’annotations « @returns » pour les modèles JSDoc.",
+ "configuration.suggest.names": "Activez/désactivez l'inclusion de noms uniques à partir du fichier dans les suggestions JavaScript. Notez que les suggestions de nom sont toujours désactivées dans le code JavaScript qui fait l'objet d'une vérification sémantique à l'aide de '@ts-check' ou 'checkJs'.",
+ "configuration.suggest.objectLiteralMethodSnippets.enabled": "Activer/désactiver la complétion d'extraits de code pour les méthodes dans les littéraux d'objet.",
+ "configuration.suggest.paths": "Activer/désactiver des suggestions pour les chemins dans les instructions d'import et les appels require.",
+ "configuration.tsserver.experimental.enableProjectDiagnostics": "Permet de signaler les erreurs à l'échelle du projet.",
+ "configuration.tsserver.maxTsServerMemory": "Quantité maximale de mémoire (en Mo) à allouer au processus du serveur TypeScript. Pour utiliser une limite de mémoire supérieure à 4 Go, utilisez #typescript.tsserver.nodePath# pour exécuter le serveur TS avec une installation Node personnalisée.",
+ "configuration.tsserver.nodePath": "Exécutez TS Server sur une installation Node personnalisée. Il peut s'agir d'un chemin vers un exécutable Node ou 'node' si vous voulez que VS Code détecte une installation Node.",
+ "configuration.tsserver.useSeparateSyntaxServer": "Activez/désactivez la génération dynamique d’un serveur TypeScript distinct capable de répondre plus rapidement aux opérations de syntaxe, comme le calcul du pliage ou le calcul des symboles de document.",
+ "configuration.tsserver.useSyntaxServer": "Contrôle si TypeScript lance un serveur dédié pour gérer plus rapidement les opérations liées à la syntaxe, comme le repli du code de calcul.",
+ "configuration.tsserver.useSyntaxServer.always": "Utilisez un serveur de Syntaxe plus léger pour gérer toutes les opérations IntelliSense. Ce serveur de Syntaxe ne peut fournir que IntelliSense pour les fichiers ouverts.",
+ "configuration.tsserver.useSyntaxServer.auto": "Générez un serveur complet et un poids plus léger dédié aux opérations de Syntaxe. Le serveur de Syntaxe est utilisé pour accélérer les opérations de syntaxe et fournir IntelliSense quand les projets sont en cours de chargement.",
+ "configuration.tsserver.useSyntaxServer.never": "N’utilisez pas un serveur de Syntaxe dédié. Utilisez un seul serveur pour gérer toutes les opérations IntelliSense.",
+ "configuration.tsserver.useVsCodeWatcher": "Utilisez les observateurs de fichiers de VS Code à la place de ceux de TypeScript. Nécessite l’utilisation de TypeScript 5.4+ dans l’espace de travail.",
+ "configuration.tsserver.watchOptions": "Configurez les stratégies de surveillance qui doivent être utilisées pour effectuer le suivi des fichiers et répertoires.",
+ "configuration.tsserver.watchOptions.fallbackPolling": "Quand vous utilisez des événements de système de fichiers, cette option spécifie la stratégie de sondage qui est utilisée quand le système n'a plus d'observateurs de fichiers natifs et/ou ne prend pas en charge les observateurs de fichiers natifs.",
+ "configuration.tsserver.watchOptions.fallbackPolling.dynamicPriorityPolling ": "Utilisez une file d'attente dynamique où les fichiers modifiés moins souvent sont vérifiés moins souvent.",
+ "configuration.tsserver.watchOptions.fallbackPolling.fixedPollingInterval": "Recherchez les changements dans chaque fichier plusieurs fois par seconde à intervalle fixe.",
+ "configuration.tsserver.watchOptions.fallbackPolling.priorityPollingInterval": "Recherchez les changements dans chaque fichier plusieurs fois par seconde, mais utilisez la méthode heuristique pour vérifier certains types de fichier moins souvent que d'autres.",
+ "configuration.tsserver.watchOptions.synchronousWatchDirectory": "Désactivez la surveillance différée sur les répertoires. La surveillance différée est utile quand de nombreux changements de fichier sont susceptibles de se produire en même temps (par ex., un changement dans node_modules lié à l'exécution de npm install), mais vous pouvez aussi la désactiver avec cet indicateur pour des configurations moins courantes.",
+ "configuration.tsserver.watchOptions.vscode": "Utilisez les observateurs de fichiers de VS Code à la place de ceux de TypeScript. Nécessite l’utilisation de TypeScript 5.4+ dans l’espace de travail.",
+ "configuration.tsserver.watchOptions.watchDirectory": "Stratégie de surveillance d'arborescences de répertoires complètes sous des systèmes sans fonctionnalité de surveillance récursive des fichiers.",
+ "configuration.tsserver.watchOptions.watchDirectory.dynamicPriorityPolling": "Utilisez une file d'attente dynamique où les répertoires modifiés moins souvent sont vérifiés moins souvent.",
+ "configuration.tsserver.watchOptions.watchDirectory.fixedChunkSizePolling": "Interroge les répertoires en blocs à intervalles réguliers.",
+ "configuration.tsserver.watchOptions.watchDirectory.fixedPollingInterval": "Recherchez les changements dans chaque répertoire plusieurs fois par seconde à intervalle fixe.",
+ "configuration.tsserver.watchOptions.watchDirectory.useFsEvents": "Essayez d'utiliser les événements natifs du système d'exploitation/système de fichiers pour les changements de répertoire.",
+ "configuration.tsserver.watchOptions.watchFile": "Stratégie de surveillance des fichiers individuels.",
+ "configuration.tsserver.watchOptions.watchFile.dynamicPriorityPolling": "Utilisez une file d'attente dynamique où les fichiers modifiés moins souvent sont vérifiés moins souvent.",
+ "configuration.tsserver.watchOptions.watchFile.fixedChunkSizePolling": "Interroge les fichiers en blocs à intervalles réguliers.",
+ "configuration.tsserver.watchOptions.watchFile.fixedPollingInterval": "Recherchez les changements dans chaque fichier plusieurs fois par seconde à intervalle fixe.",
+ "configuration.tsserver.watchOptions.watchFile.priorityPollingInterval": "Recherchez les changements dans chaque fichier plusieurs fois par seconde, mais utilisez une méthode heuristique pour vérifier certains types de fichiers moins souvent que d'autres.",
+ "configuration.tsserver.watchOptions.watchFile.useFsEvents": "Essayez d'utiliser les événements natifs du système d'exploitation/système de fichiers pour les changements de fichier.",
+ "configuration.tsserver.watchOptions.watchFile.useFsEventsOnParentDirectory": "Essayez d'utiliser les événements natifs du système d'exploitation/système de fichiers pour écouter les changements des répertoires qui contiennent un fichier. Peut utiliser moins d'observateurs de fichiers, mais risque d'être moins précis.",
+ "configuration.tsserver.web.projectWideIntellisense.enabled": "Activez/désactivez IntelliSense à l’échelle du projet sur le web. Nécessite l’exécution de VS Code dans un contexte approuvé.",
+ "configuration.tsserver.web.projectWideIntellisense.suppressSemanticErrors": "Supprime les erreurs sémantiques sur le web même lorsque IntelliSense à l’échelle du projet est activé. Cette option est toujours activée lorsque IntelliSense à l’échelle du projet n’est pas activé ou disponible. Voir `#typescript.tsserver.web.projectWideIntellisense.enabled#`",
+ "configuration.tsserver.web.typeAcquisition.enabled": "Activez/désactivez l'acquisition de packages sur le web. Cela active IntelliSense pour les packages importés. Nécessite `#typescript.tsserver.web.projectWideIntellisense.enabled#`. Actuellement non pris en charge pour Safari.",
+ "configuration.typescript": "TypeScript",
+ "configuration.updateImportsOnPaste": "Mettez automatiquement à jour les importations lors du collage de code. Nécessite TypeScript 5.6+.",
+ "description": "Fournit une prise en charge riche de langage pour JavaScript et TypeScript.",
+ "displayName": "Fonctionnalités de langage TypeScript et JavaScript",
+ "format.indentSwitchCase": "Mettre en retrait les clauses de cas dans les instructions switch. Nécessite l’utilisation de TypeScript 5.1+ dans l’espace de travail.",
+ "format.insertSpaceAfterCommaDelimiter": "Définit le traitement des espaces après une virgule de délimitation.",
+ "format.insertSpaceAfterConstructor": "Définit le traitement des espaces après le mot clé du constructeur.",
+ "format.insertSpaceAfterFunctionKeywordForAnonymousFunctions": "Définit le traitement des espaces après le mot clé function pour les fonctions anonymes.",
+ "format.insertSpaceAfterKeywordsInControlFlowStatements": "Définit la gestion des espaces après les mots clés dans une instruction de flux de contrôle.",
+ "format.insertSpaceAfterOpeningAndBeforeClosingEmptyBraces": "Définit le traitement des espaces après l'ouverture et avant la fermeture d'accolades vides.",
+ "format.insertSpaceAfterOpeningAndBeforeClosingJsxExpressionBraces": "Définit le traitement des espaces après l'ouverture et avant la fermeture des accolades d'expression JSX.",
+ "format.insertSpaceAfterOpeningAndBeforeClosingNonemptyBraces": "Définit le traitement des espaces après l'ouverture et avant la fermeture des accolades non vides.",
+ "format.insertSpaceAfterOpeningAndBeforeClosingNonemptyBrackets": "Définit l’espace après ouverture et avant la fermeture de crochets non vides.",
+ "format.insertSpaceAfterOpeningAndBeforeClosingNonemptyParenthesis": "Définit l’espace après ouverture et avant la fermeture de parenthèses non vides.",
+ "format.insertSpaceAfterOpeningAndBeforeClosingTemplateStringBraces": "Définit le traitement des espaces après l'ouverture et avant la fermeture des accolades de chaîne de modèle.",
+ "format.insertSpaceAfterSemicolonInForStatements": " Définit le traitement des espaces après un point-virgule dans une instruction for.",
+ "format.insertSpaceAfterTypeAssertion": "Définit le traitement des espaces après les assertions de type dans TypeScript.",
+ "format.insertSpaceBeforeAndAfterBinaryOperators": "Définit le traitement des espaces après un opérateur binaire.",
+ "format.insertSpaceBeforeFunctionParenthesis": "Définit le traitement des espaces avant les parenthèses d'arguments de la fonction.",
+ "format.placeOpenBraceOnNewLineForControlBlocks": "Définit si une accolade ouvrante dans un bloc de contrôle est placée ou non sur une nouvelle ligne.",
+ "format.placeOpenBraceOnNewLineForFunctions": "Définit si une accolade ouvrante dans une fonction est placée ou non sur une nouvelle ligne.",
+ "format.semicolons": "Définit la gestion des points-virgules facultatifs.",
+ "format.semicolons.ignore": "N'insérez ou n'enlevez aucun point-virgule.",
+ "format.semicolons.insert": "Insérez des points-virgules à la fin des instructions.",
+ "format.semicolons.remove": "Supprimez les points-virgules inutiles.",
+ "inlayHints.parameterNames.all": "Active les indicateurs de noms de paramètres pour les arguments littéraux et non littéraux.",
+ "inlayHints.parameterNames.literals": "Active les indicateurs de noms de paramètres uniquement pour les arguments littéraux.",
+ "inlayHints.parameterNames.none": "Désactiver les indicateurs de nom de paramètre.",
+ "javascript.format.enable": "Activez/désactivez le formateur JavaScript par défaut.",
+ "javascript.goToProjectConfig.title": "Accéder à la configuration du projet (jsconfig / tsconfig)",
+ "javascript.preferences.jsxAttributeCompletionStyle.auto": "Insérez `={}` or `=\"\"` après les noms d'attribut en fonction du type d'accessoire. Consultez `#javascript.preferences.quoteStyle#` pour contrôler le type de guillemets utilisés pour les attributs de chaîne.",
+ "javascript.preferences.organizeImports": "Préférences avancées qui contrôlent la façon dont les importations sont triées.",
+ "javascript.referencesCodeLens.enabled": "Activez/désactivez les références CodeLens dans les fichiers JavaScript.",
+ "javascript.referencesCodeLens.showOnAllFunctions": "Activez/désactivez les références CodeLens sur toutes les fonctions des fichiers JavaScript.",
+ "javascript.suggestionActions.enabled": "Active/désactive les diagnostics de suggestion pour les fichiers JavaScript dans l'éditeur.",
+ "javascript.validate.enable": "Activez/désactivez la validation JavaScript.",
+ "reloadProjects.title": "Recharger le projet",
+ "taskDefinition.tsconfig.description": "Fichier tsconfig qui définit la build TS.",
+ "typescript.autoClosingTags": "Active/désactive la fermeture automatique des balises JSX.",
+ "typescript.check.npmIsInstalled": "Vérifiez si npm est installé pour l’[acquisition automatique de type](https://code.visualstudio.com/docs/nodejs/working-with-javascript#_typings-and-automatic-type-acquisition).",
+ "typescript.disableAutomaticTypeAcquisition": "Désactive l’[acquisition automatique de type](https://code.visualstudio.com/docs/nodejs/working-with-javascript#_typings-and-automatic-type-acquisition). L’acquisition automatique de type récupère les packages `@types` par le biais de npm afin d’améliorer IntelliSense pour les bibliothèques externes.",
+ "typescript.enablePromptUseWorkspaceTsdk": "Permet d'inviter les utilisateurs à se servir de la version TypeScript configurée dans l'espace de travail pour IntelliSense.",
+ "typescript.findAllFileReferences": "Rechercher les références de fichiers",
+ "typescript.format.enable": "Activez/désactivez le formateur TypeScript par défaut.",
+ "typescript.goToProjectConfig.title": "Accéder à la configuration du projet (tsconfig)",
+ "typescript.goToSourceDefinition": "Atteindre la définition source",
+ "typescript.implementationsCodeLens.enabled": "Activer/désactiver les implémentations CodeLens. Ce CodeLens affiche l'implémenteur d’une interface.",
+ "typescript.implementationsCodeLens.showOnAllClassMethods": "Activez ou désactivez l’affichage des implémentations CodeLens au-dessus de toutes les méthodes de classe, et non uniquement sur les méthodes abstraites.",
+ "typescript.implementationsCodeLens.showOnInterfaceMethods": "Activez/désactivez les implémentations CodeLens sur les méthodes d’interface.",
+ "typescript.locale": "Définit la locale utilisée pour signaler les erreurs JavaScript et TypeScript. Par défaut, la locale de VS Code est utilisée.",
+ "typescript.locale.auto": "Utilisez la langue d'affichage configurée de VS Code.",
+ "typescript.npm": "Indique le chemin d’accès à l’exécutable npm utilisé pour l’[acquisition automatique de type](https://code.visualstudio.com/docs/nodejs/working-with-javascript#_typings-and-automatic-type-acquisition).",
+ "typescript.openTsServerLog.title": "Ouvrir le journal du serveur TS",
+ "typescript.preferences.autoImportFileExcludePatterns": "Spécifiez les modèles globaux de fichiers à exclure des importations automatiques. Les chemins relatifs sont résolus par rapport à la racine de l'espace de travail. Les modèles sont évalués à l'aide de la sémantique tsconfig.json [`exclude`](https://www.typescriptlang.org/tsconfig#exclude).",
+ "typescript.preferences.autoImportSpecifierExcludeRegexes": "Spécifiez des expressions régulières pour exclure les importations automatiques avec des spécificateurs d’importation correspondants. Exemples :\r\n\r\n- `^node:`\r\n- `lib/internal` (les barres obliques n'ont pas besoin d'être échappées...)\r\n- `/lib\\/internal/i` (...sauf si des barres obliques sont incluses pour les indicateurs « i » ou « u »)\r\n- `^lodash$` (autoriser uniquement les importations de sous-chemins depuis lodash)",
+ "typescript.preferences.importModuleSpecifier": "Style de chemin préféré pour les importations automatiques.",
+ "typescript.preferences.importModuleSpecifier.nonRelative": "Préfère une importation non relative basée sur le 'baseUrl' ou les 'paths' configurés dans votre 'jsconfig.json' / 'tsconfig.json'.",
+ "typescript.preferences.importModuleSpecifier.projectRelative": "Préférer une importation non relative uniquement si le chemin d’importation relatif omet le répertoire du package ou du projet.",
+ "typescript.preferences.importModuleSpecifier.relative": "Préfère un chemin relatif par rapport à l'emplacement du fichier importé.",
+ "typescript.preferences.importModuleSpecifier.shortest": "Préfère une importation non relative uniquement si celle-ci comporte moins de segments de chemin qu'une importation relative.",
+ "typescript.preferences.importModuleSpecifierEnding": "Fin de chemin par défaut des importations automatiques.",
+ "typescript.preferences.importModuleSpecifierEnding.auto": "Utilisez les paramètres de projet pour sélectionner une valeur par défaut.",
+ "typescript.preferences.importModuleSpecifierEnding.index": "Raccourcissez './component/index.js' en './component/index'.",
+ "typescript.preferences.importModuleSpecifierEnding.js": "Ne pas raccourcir les terminaisons de chemin d’accès ; inclure l’extension '.js' ou '.ts'.",
+ "typescript.preferences.importModuleSpecifierEnding.label.js": ".js / .ts",
+ "typescript.preferences.importModuleSpecifierEnding.minimal": "Raccourcissez './component/index.js' en './component'.",
+ "typescript.preferences.includePackageJsonAutoImports": "Activer/désactiver la recherche dans les dépendances 'package.json' pour les importations automatiques disponibles.",
+ "typescript.preferences.includePackageJsonAutoImports.auto": "Rechercher dans les dépendances en fonction de l'impact estimé des performances.",
+ "typescript.preferences.includePackageJsonAutoImports.off": "Ne jamais rechercher dans les dépendances.",
+ "typescript.preferences.includePackageJsonAutoImports.on": "Toujours rechercher dans les dépendances.",
+ "typescript.preferences.jsxAttributeCompletionStyle": "Style préféré pour les saisies semi-automatiques d’attribut JSX.",
+ "typescript.preferences.jsxAttributeCompletionStyle.auto": "Insérez `={}` or `=\"\"` après les noms d'attribut en fonction du type d'accessoire. Consultez `#typescript.preferences.quoteStyle#` pour contrôler le type de guillemets utilisés pour les attributs de chaîne.",
+ "typescript.preferences.jsxAttributeCompletionStyle.braces": "Insérez '={}' après les noms d’attributs.",
+ "typescript.preferences.jsxAttributeCompletionStyle.none": "Insérez uniquement des noms d’attributs.",
+ "typescript.preferences.organizeImports": "Préférences avancées qui contrôlent la façon dont les importations sont triées.",
+ "typescript.preferences.organizeImports.accentCollation": "Nécessite `organizeImports.unicodeCollation: 'unicode'`. Comparez les caractères avec des signes diacritiques comme étant inégaux au caractère de base.",
+ "typescript.preferences.organizeImports.caseFirst": "Nécessite `organizeImports.unicodeCollation: 'unicode'`, et `organizeImports.caseSensitivity` n'est pas `caseInsensitive`. Indique si les majuscules seront triées avant les minuscules.",
+ "typescript.preferences.organizeImports.caseFirst.default": "Ordre par défaut donné par `locale`.",
+ "typescript.preferences.organizeImports.caseFirst.lower": "Les minuscules viennent avant les majuscules. Par exemple` a, A, z, Z`.",
+ "typescript.preferences.organizeImports.caseFirst.upper": "Les majuscules viennent avant les minuscules. Par exemple ` A, a, B, b`.",
+ "typescript.preferences.organizeImports.caseSensitivity": "Spécifie comment les importations doivent être triées en fonction de la sensibilité à la casse. Si `auto` ou non spécifié, nous détecterons la sensibilité à la casse par fichier",
+ "typescript.preferences.organizeImports.caseSensitivity.auto": "Détectez le respect de la casse pour le tri d’importation.",
+ "typescript.preferences.organizeImports.caseSensitivity.insensitive": "Triez des importations sans respect de la casse.",
+ "typescript.preferences.organizeImports.caseSensitivity.sensitive": "Triez des importations avec respect de la casse.",
+ "typescript.preferences.organizeImports.locale": "Nécessite `organizeImports.unicodeCollation: 'unicode'`. Remplace les paramètres régionaux utilisés pour le classement. Spécifiez `auto` pour utiliser les paramètres régionaux de l’interface utilisateur.",
+ "typescript.preferences.organizeImports.numericCollation": "Nécessite `organizeImports.unicodeCollation: 'unicode'`. Triez les chaînes numériques par valeur entière.",
+ "typescript.preferences.organizeImports.typeOrder": "Spécifiez comment les importations nommées de type uniquement doivent être triées.",
+ "typescript.preferences.organizeImports.typeOrder.auto": "Détectez l’emplacement où les importations nommées de type uniquement doivent être triées.",
+ "typescript.preferences.organizeImports.typeOrder.first": "Seuls les types d'importation nommés sont triés au début de la liste d'importation. Par exemple, `importer { type A, type Y, B, Z } depuis 'module';`",
+ "typescript.preferences.organizeImports.typeOrder.inline": "Les importations nommées sont triées par nom uniquement. Par exemple, `importer { type A, B, type Y, Z } depuis 'module';`",
+ "typescript.preferences.organizeImports.typeOrder.last": "Seuls les types d'importation nommés sont triés à la fin de la liste d'importation. Par exemple, `importer { B, Z, type A, type Y } depuis 'module';`",
+ "typescript.preferences.organizeImports.unicodeCollation": "Spécifiez si les importations doivent être triées à l'aide du classement Unicode ou ordinal.",
+ "typescript.preferences.organizeImports.unicodeCollation.ordinal": "Triez des importations en tirant parti de la valeur numérique de chaque code de caractère.",
+ "typescript.preferences.organizeImports.unicodeCollation.unicode": "Triez des importations en utilisant le classement de code Unicode.",
+ "typescript.preferences.preferTypeOnlyAutoImports": "Incluez le mot clé 'type' dans les importations automatiques dès que possible. Nécessite l'utilisation de TypeScript 5.3+ dans l'espace de travail.",
+ "typescript.preferences.quoteStyle": "Style de devis préféré à utiliser pour les correctifs rapides.",
+ "typescript.preferences.quoteStyle.auto": "Déduire le type de guillemet à partir du code existant",
+ "typescript.preferences.quoteStyle.double": "Toujours utiliser des guillemets doubles : « {0} »",
+ "typescript.preferences.quoteStyle.single": "Toujours utiliser des guillemets simples : « {0} »",
+ "typescript.preferences.renameMatchingJsxTags": "Sur une balise JSX, essayez de renommer la balise correspondante au lieu de renommer le symbole. Nécessite l’utilisation de TypeScript 5.1+ dans l’espace de travail.",
+ "typescript.preferences.useAliasesForRenames": "Activez/désactivez l’introduction d’alias pour les propriétés de raccourci d’objet durant les renommages.",
+ "typescript.problemMatchers.tsc.label": "Problèmes liés à TypeScript",
+ "typescript.problemMatchers.tscWatch.label": "Problèmes liés à TypeScript (mode espion)",
+ "typescript.problemMatchers.tsgo-watch.label": "Problèmes liés à TypeScript (mode espion)",
+ "typescript.referencesCodeLens.enabled": "Activez/désactivez les références CodeLens dans les fichiers TypeScript.",
+ "typescript.referencesCodeLens.showOnAllFunctions": "Activez/désactivez les références CodeLens sur toutes les fonctions des fichiers TypeScript.",
+ "typescript.removeUnusedImports": "Supprimer des importations inutilisées",
+ "typescript.reportStyleChecksAsWarnings": "Rapporter les vérifications de style en tant qu’avertissements.",
+ "typescript.restartTsServer": "Redémarrer le serveur TS",
+ "typescript.selectTypeScriptVersion.title": "Sélectionner la version de TypeScript...",
+ "typescript.sortImports": "Trier les importations",
+ "typescript.suggest.enabled": "Activer/désactiver les suggestions de saisie semi-automatique.",
+ "typescript.suggestionActions.enabled": "Active/désactive les diagnostics de suggestion pour les fichiers TypeScript dans l'éditeur.",
+ "typescript.tsc.autoDetect": "Contrôle la détection automatique des tâches tsc.",
+ "typescript.tsc.autoDetect.build": "Créer uniquement des tâches de compilation à exécution unique.",
+ "typescript.tsc.autoDetect.off": "Désactivez cette fonctionnalité.",
+ "typescript.tsc.autoDetect.on": "Créer les tâches build et watch.",
+ "typescript.tsc.autoDetect.watch": "Créer uniquement des tâches compile et watch.",
+ "typescript.tsdk.desc": "Indique le chemin de dossier des fichiers tsserver et `lib*.d.ts` dans une installation de TypeScript à utiliser pour IntelliSense. Exemple : `./node_modules/typescript/lib`.\r\n\r\n- Si elle est spécifiée sous forme de paramètre utilisateur, la version de TypeScript dans `typescript.tsdk` remplace automatiquement la version de TypeScript intégrée.\r\n- Si elle est spécifiée sous forme de paramètre d’espace de travail, `typescript.tsdk` vous permet d’utiliser cette version d’espace de travail de TypeScript pour IntelliSense avec la commande `TypeScript: Select TypeScript version`.\r\n\r\nConsultez la [documentation de TypeScript](https://code.visualstudio.com/docs/typescript/typescript-compiling#_using-newer-typescript-versions) pour plus d’informations sur la gestion des versions de TypeScript.",
+ "typescript.tsserver.enableRegionDiagnostics": "Active les diagnostics basés sur une région dans TypeScript. Nécessite l’utilisation de TypeScript 5.6+ dans l’espace de travail.",
+ "typescript.tsserver.enableTracing": "Active le traçage des performances du serveur TS dans un répertoire. Ces fichiers de trace permettent de diagnostiquer les problèmes de performances du serveur TS. Le journal peut contenir des chemins de fichiers, du code source et d'autres informations potentiellement sensibles de votre projet.",
+ "typescript.tsserver.log": "Active la journalisation du serveur TS dans un fichier. Ce journal peut être utilisé pour diagnostiquer les problèmes du serveur TS. Il peut contenir des chemins de fichier, du code source et d'autres informations potentiellement sensibles de votre projet.",
+ "typescript.tsserver.pluginPaths": "Chemins supplémentaires pour découvrir les plug-ins Service de langage Typescript.",
+ "typescript.tsserver.pluginPaths.item": "Un chemin absolu ou un chemin relatif. Le chemin d’accès relatif sera résolu en fonction des dossiers de l’espace de travail.",
+ "typescript.tsserver.trace": "Active le traçage des messages envoyés au serveur TS. Cette trace peut être utilisée pour diagnostiquer les problèmes du serveur TS. Elle peut contenir des chemins de fichier, du code source et d'autres informations potentiellement sensibles de votre projet.",
+ "typescript.updateImportsOnFileMove.enabled": "Active/désactive la mise à jour automatique des chemins d’importation quand vous renommez ou déplacez un fichier dans VS Code.",
+ "typescript.updateImportsOnFileMove.enabled.always": "Toujours mettre à jour les chemins automatiquement.",
+ "typescript.updateImportsOnFileMove.enabled.never": "Ne jamais renommer les chemins et ne pas demander.",
+ "typescript.updateImportsOnFileMove.enabled.prompt": "Demander à chaque renommage.",
+ "typescript.useTsgo": "Désactive les fonctionnalités de langage TypeScript et JavaScript pour permettre l’utilisation de l’extension expérimentale TypeScript Go. Nécessite l’installation et la configuration de TypeScript Go. Nécessite le rechargement d’extensions après la modification de ce paramètre.",
+ "typescript.validate.enable": "Activez/désactivez la validation TypeScript.",
+ "typescript.workspaceSymbols.excludeLibrarySymbols": "Excluez les symboles provenant de fichiers de bibliothèque dans les résultats `Accéder au symbole dans l'espace de travail`. Nécessite l'utilisation de TypeScript 5.3+ dans l'espace de travail.",
+ "typescript.workspaceSymbols.scope": "Détermine quels sont les fichiers recherchés par [Atteindre le symbole dans l’espace de travail](https://code.visualstudio.com/docs/editor/editingevolved#_open-symbol-by-name).",
+ "typescript.workspaceSymbols.scope.allOpenProjects": "Recherchez des symboles dans tous les projets JavaScript ou TypeScript ouverts.",
+ "typescript.workspaceSymbols.scope.currentProject": "Recherche uniquement les symboles dans le projet JavaScript ou TypeScript actif.",
+ "virtualWorkspaces": "Dans les espaces de travail virtuels, la résolution et la recherche de références dans les fichiers ne sont pas prises en charge.",
+ "walkthroughs.nodejsWelcome.debugJsFile.altText": "Déboguez et exécutez votre code JavaScript dans Node.js avec Visual Studio Code.",
+ "walkthroughs.nodejsWelcome.debugJsFile.description": "Une fois que vous avez installé Node.js, vous pouvez exécuter des programmes JavaScript sur un terminal en entrant ``node your-file-name.js``\r\nUn autre moyen simple d’exécuter Node.js programmes consiste à utiliser le débogueur de VS Code, ce qui vous permet d’exécuter votre code, de vous mettre en pause à différents points et de vous aider à comprendre ce qui se passe pas à pas.\r\n[Start Debugging](command:javascript-walkthrough.commands.debugJsFile)",
+ "walkthroughs.nodejsWelcome.debugJsFile.title": "Exécuter et déboguer votre JavaScript",
+ "walkthroughs.nodejsWelcome.description": "Tirez le meilleur parti de l’expérience JavaScript de premier niveau de Visual Studio Code.",
+ "walkthroughs.nodejsWelcome.downloadNode.forLinux.description": "Node.js est un moyen simple d’exécuter du code JavaScript. Vous pouvez l’utiliser pour créer rapidement des applications et des serveurs en ligne de commande. Il est également fourni avec npm, un gestionnaire de package qui facilite la réutilisation et le partage de code JavaScript.\r\n[Install Node.js](https://nodejs.org/en/download/package-manager/)",
+ "walkthroughs.nodejsWelcome.downloadNode.forLinux.title": "Installer Node.js",
+ "walkthroughs.nodejsWelcome.downloadNode.forMacOrWindows.description": "Node.js est un moyen simple d’exécuter du code JavaScript. Vous pouvez l’utiliser pour créer rapidement des applications et des serveurs en ligne de commande. Il est également fourni avec npm, un gestionnaire de package qui facilite la réutilisation et le partage de code JavaScript.\r\n[Install Node.js](https://nodejs.org/en/download/)",
+ "walkthroughs.nodejsWelcome.downloadNode.forMacOrWindows.title": "Installer Node.js",
+ "walkthroughs.nodejsWelcome.learnMoreAboutJs.altText": "En savoir plus sur JavaScript et Node.js dans Visual Studio Code.",
+ "walkthroughs.nodejsWelcome.learnMoreAboutJs.description": "Vous souhaitez vous familiariser avec JavaScript, Node.js et VS Code ? N’oubliez pas d’extraire nos documents !\r\nNous avons de nombreuses ressources pour l’apprentissage des [JavaScript](https://code.visualstudio.com/docs/nodejs/working-with-javascript) et [Node.js](https://code.visualstudio.com/docs/nodejs/nodejs-tutorial).\r\n\r\n[Learn More](https://code.visualstudio.com/docs/nodejs/nodejs-tutorial)",
+ "walkthroughs.nodejsWelcome.learnMoreAboutJs.title": "Explorer davantage",
+ "walkthroughs.nodejsWelcome.makeJsFile.description": "Nous allons écrire notre premier fichier JavaScript. Nous devons créer un fichier et l’enregistrer avec l’extension ``.js`` à la fin du nom de fichier.\r\n[Créer un fichier JavaScript](command:javascript-walkthrough.commands.createJsFile)",
+ "walkthroughs.nodejsWelcome.makeJsFile.title": "Créer un fichier JavaScript",
+ "walkthroughs.nodejsWelcome.title": "Démarrage avec JavaScript et Node.js",
+ "workspaceTrust": "L’extension nécessite l’approbation d’espace de travail lorsque la version de l’espace de travail est utilisée car elle exécute le code spécifié par l’espace de travail."
+ }
+ }
+}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-fr/translations/extensions/vscode.typescript.i18n.json b/i18n/vscode-language-pack-fr/translations/extensions/vscode.typescript.i18n.json
index e1243fb2ac..b350de1dea 100644
--- a/i18n/vscode-language-pack-fr/translations/extensions/vscode.typescript.i18n.json
+++ b/i18n/vscode-language-pack-fr/translations/extensions/vscode.typescript.i18n.json
@@ -9,8 +9,8 @@
"version": "1.0.0",
"contents": {
"package": {
- "displayName": "Bases du langage TypeScript",
- "description": "Fournit des extraits de code, la coloration syntaxique, la correspondance des crochets et le repli dans les fichiers TypeScript."
+ "description": "Fournit des extraits de code, la coloration syntaxique, la correspondance des crochets et le repli dans les fichiers TypeScript.",
+ "displayName": "Bases du langage TypeScript"
}
}
}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-fr/translations/extensions/vscode.vb.i18n.json b/i18n/vscode-language-pack-fr/translations/extensions/vscode.vb.i18n.json
index dae848f15d..534ef10405 100644
--- a/i18n/vscode-language-pack-fr/translations/extensions/vscode.vb.i18n.json
+++ b/i18n/vscode-language-pack-fr/translations/extensions/vscode.vb.i18n.json
@@ -9,8 +9,8 @@
"version": "1.0.0",
"contents": {
"package": {
- "displayName": "Concepts de base du langage Visual Basic",
- "description": "Fournit des extraits de code, la coloration syntaxique, la correspondance des crochets et le repli dans les fichiers Visual Basic."
+ "description": "Fournit des extraits de code, la coloration syntaxique, la correspondance des crochets et le repli dans les fichiers Visual Basic.",
+ "displayName": "Concepts de base du langage Visual Basic"
}
}
}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-fr/translations/extensions/vscode.vscode-theme-seti.i18n.json b/i18n/vscode-language-pack-fr/translations/extensions/vscode.vscode-theme-seti.i18n.json
index 75d02b35b2..0096b3bb41 100644
--- a/i18n/vscode-language-pack-fr/translations/extensions/vscode.vscode-theme-seti.i18n.json
+++ b/i18n/vscode-language-pack-fr/translations/extensions/vscode.vscode-theme-seti.i18n.json
@@ -9,8 +9,8 @@
"version": "1.0.0",
"contents": {
"package": {
- "displayName": "Thème Seti pour les icônes de fichiers",
"description": "Un thème pour les icônes de fichiers fait avec les icônes de fichiers Seti UI",
+ "displayName": "Thème Seti pour les icônes de fichiers",
"themeLabel": "Seti (Visual Studio Code)"
}
}
diff --git a/i18n/vscode-language-pack-fr/translations/extensions/vscode.xml.i18n.json b/i18n/vscode-language-pack-fr/translations/extensions/vscode.xml.i18n.json
index b391bd4566..392d7186e6 100644
--- a/i18n/vscode-language-pack-fr/translations/extensions/vscode.xml.i18n.json
+++ b/i18n/vscode-language-pack-fr/translations/extensions/vscode.xml.i18n.json
@@ -9,8 +9,8 @@
"version": "1.0.0",
"contents": {
"package": {
- "displayName": "Concepts de base du langage XML",
- "description": "Fournit la coloration syntaxique et la correspondance des crochets dans les fichiers XML."
+ "description": "Fournit la coloration syntaxique et la correspondance des crochets dans les fichiers XML.",
+ "displayName": "Concepts de base du langage XML"
}
}
}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-fr/translations/extensions/vscode.yaml.i18n.json b/i18n/vscode-language-pack-fr/translations/extensions/vscode.yaml.i18n.json
index a10834c154..c6744c60b3 100644
--- a/i18n/vscode-language-pack-fr/translations/extensions/vscode.yaml.i18n.json
+++ b/i18n/vscode-language-pack-fr/translations/extensions/vscode.yaml.i18n.json
@@ -9,8 +9,8 @@
"version": "1.0.0",
"contents": {
"package": {
- "displayName": "Concepts de base du langage YAML",
- "description": "Fournit la coloration syntaxique et la correspondance des crochets dans les fichiers YAML."
+ "description": "Fournit la coloration syntaxique et la correspondance des crochets dans les fichiers YAML.",
+ "displayName": "Concepts de base du langage YAML"
}
}
}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-fr/translations/extensions/xml.i18n.json b/i18n/vscode-language-pack-fr/translations/extensions/xml.i18n.json
deleted file mode 100644
index 392d7186e6..0000000000
--- a/i18n/vscode-language-pack-fr/translations/extensions/xml.i18n.json
+++ /dev/null
@@ -1,16 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "package": {
- "description": "Fournit la coloration syntaxique et la correspondance des crochets dans les fichiers XML.",
- "displayName": "Concepts de base du langage XML"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-fr/translations/extensions/yaml.i18n.json b/i18n/vscode-language-pack-fr/translations/extensions/yaml.i18n.json
deleted file mode 100644
index c6744c60b3..0000000000
--- a/i18n/vscode-language-pack-fr/translations/extensions/yaml.i18n.json
+++ /dev/null
@@ -1,16 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "package": {
- "description": "Fournit la coloration syntaxique et la correspondance des crochets dans les fichiers YAML.",
- "displayName": "Concepts de base du langage YAML"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-fr/translations/main.i18n.json b/i18n/vscode-language-pack-fr/translations/main.i18n.json
index 97a9024bab..1a1a98e853 100644
--- a/i18n/vscode-language-pack-fr/translations/main.i18n.json
+++ b/i18n/vscode-language-pack-fr/translations/main.i18n.json
@@ -22,6 +22,9 @@
"dialogWarningMessage": "Avertissement",
"ok": "OK"
},
+ "vs/base/browser/ui/dropdown/dropdownActionViewItem": {
+ "moreActions": "Plus d’actions..."
+ },
"vs/base/browser/ui/findinput/findInput": {
"defaultLabel": "entrée"
},
@@ -34,14 +37,21 @@
"defaultLabel": "entrée",
"label.preserveCaseToggle": "Préserver la casse"
},
- "vs/base/browser/ui/iconLabel/iconLabelHover": {
- "iconLabel.loading": "Chargement..."
+ "vs/base/browser/ui/hover/hoverWidget": {
+ "acessibleViewHint": "Inspectez ceci dans l’affichage accessible avec {0}.",
+ "acessibleViewHintNoKbOpen": "Inspectez ceci dans l’affichage accessible via la commande Open Accessible View qui ne peut pas être déclenchée via une combinaison de touches pour l’instant."
+ },
+ "vs/base/browser/ui/icons/iconSelectBox": {
+ "iconSelect.noResults": "Aucun résultat",
+ "iconSelect.placeholder": "Icônes de recherche"
},
"vs/base/browser/ui/inputbox/inputBox": {
"alertErrorMessage": "Erreur : {0}",
"alertInfoMessage": "Info : {0}",
"alertWarningMessage": "Avertissement : {0}",
- "history.inputbox.hint": "pour l’historique"
+ "clearedInput": "Entrée effacée",
+ "history.inputbox.hint.suffix.inparens": " ({0} pour l'histoire)",
+ "history.inputbox.hint.suffix.noparens": " ou {0} pour l'histoire"
},
"vs/base/browser/ui/keybindingLabel/keybindingLabel": {
"unbound": "Indépendant"
@@ -62,7 +72,14 @@
"vs/base/browser/ui/tree/abstractTree": {
"close": "Fermer",
"filter": "Filtrer",
- "not found": "Aucun élément trouvé.",
+ "foundResults": "{0} résultats",
+ "fuzzySearch": "Correspondance approximative",
+ "not found": "Aucun résultat trouvé.",
+ "replFindNoResults": "Aucun résultat",
+ "type to filter": "Type à filtrer",
+ "type to search": "Entrer le texte à rechercher"
+ },
+ "vs/base/browser/ui/tree/asyncDataTree": {
"type to filter": "Type à filtrer",
"type to search": "Entrer le texte à rechercher"
},
@@ -126,7 +143,18 @@
"date.fromNow.years.singular": "{0} an",
"date.fromNow.years.singular.ago": "Il y a {0} an",
"date.fromNow.years.singular.ago.fullWord": "il y a {0} an",
- "date.fromNow.years.singular.fullWord": "{0} an"
+ "date.fromNow.years.singular.fullWord": "{0} an",
+ "duration.d": "{0} jours",
+ "duration.h": "{0} heures",
+ "duration.h.full": "{0} heures",
+ "duration.m": "{0} min",
+ "duration.m.full": "{0} minutes",
+ "duration.ms": "{0} ms",
+ "duration.ms.full": "{0} millisecondes",
+ "duration.s": "{0} s",
+ "duration.s.full": "{0} secondes",
+ "today": "Aujourd’hui",
+ "yesterday": "Hier"
},
"vs/base/common/errorMessage": {
"error.defaultMessage": "Une erreur inconnue s’est produite. Veuillez consulter le journal pour plus de détails.",
@@ -159,35 +187,28 @@
"windowsKey": "Windows",
"windowsKey.long": "Windows"
},
- "vs/base/common/platform": {
- "ensureLoaderPluginIsLoaded": "_"
- },
- "vs/base/node/processes": {
- "TaskRunner.UNC": "Impossible d'exécuter une commande d'interpréteur de commandes sur un lecteur UNC."
+ "vs/base/common/policy": {
+ "extensionsConfigurationTitle": "Extensions",
+ "interactiveSessionConfigurationTitle": "Conversation",
+ "telemetryConfigurationTitle": "Télémétrie",
+ "terminalIntegratedConfigurationTitle": "Terminal intégré",
+ "updateConfigurationTitle": "Mettre à jour"
},
"vs/base/node/zip": {
"incompleteExtract": "Incomplet. Entrées trouvées : {0} sur {1} ",
"invalid file": "Erreur à l'extraction de {0}. Fichier non valide.",
"notFound": "{0} introuvable dans le zip."
},
- "vs/base/parts/quickinput/browser/quickInput": {
- "custom": "Personnalisé",
- "inputModeEntry": "Appuyez sur 'Entrée' pour confirmer votre saisie, ou sur 'Échap' pour l'annuler",
- "inputModeEntryDescription": "{0} (Appuyez sur 'Entrée' pour confirmer ou sur 'Échap' pour annuler)",
- "ok": "OK",
- "quickInput.back": "Précédent",
- "quickInput.backWithKeybinding": "Précédent ({0})",
- "quickInput.checkAll": "Activer/désactiver toutes les cases à cocher",
- "quickInput.countSelected": "{0} Sélectionnés",
- "quickInput.steps": "{0}/{1}",
- "quickInput.visibleCount": "{0} résultats",
- "quickInputBox.ariaLabel": "Taper pour affiner les résultats."
+ "vs/editor/browser/controller/editContext/native/screenReaderSupport": {
+ "editor": "éditeur"
},
- "vs/base/parts/quickinput/browser/quickInputList": {
- "quickInput": "Entrée rapide"
+ "vs/editor/browser/controller/editContext/screenReaderUtils": {
+ "accessibilityModeOff": "L’éditeur n’est pas accessible pour le moment.",
+ "accessibilityOffAriaLabel": "{0} Pour activer le mode optimisé du lecteur d’écran, utilisez {1}",
+ "accessibilityOffAriaLabelNoKb": "{0} Pour activer le mode optimisé du lecteur d’écran, ouvrez la sélection rapide avec {1} et exécutez la commande Activer/Désactiver le mode d’accessibilité du lecteur d’écran, qui n’est pas déclenchable via le clavier pour le moment.",
+ "accessibilityOffAriaLabelNoKbs": "{0} Attribuez une combinaison de touches à la commande Activer/Désactiver le mode d’accessibilité du lecteur d’écran en accédant à l’éditeur de combinaisons de touches avec {1} et exécutez-la."
},
- "vs/editor/browser/controller/textAreaHandler": {
- "accessibilityOffAriaLabel": "L'éditeur n'est pas accessible pour le moment. Appuyez sur {0} pour voir les options.",
+ "vs/editor/browser/controller/editContext/textArea/textAreaEditContext": {
"editor": "éditeur"
},
"vs/editor/browser/coreCommands": {
@@ -202,22 +223,40 @@
"selectAll": "Tout sélectionner",
"undo": "Annuler"
},
- "vs/editor/browser/widget/codeEditorWidget": {
- "cursors.maximum": "Le nombre de curseurs a été limité à {0}."
+ "vs/editor/browser/gpu/viewGpuContext": {
+ "editor.dom.render": "Utiliser le rendu basé sur DOM"
},
- "vs/editor/browser/widget/diffEditorWidget": {
- "diff.tooLarge": "Impossible de comparer les fichiers car l'un d'eux est trop volumineux.",
- "diffInsertIcon": "Élément décoratif de ligne pour les insertions dans l'éditeur de différences.",
- "diffRemoveIcon": "Élément décoratif de ligne pour les suppressions dans l'éditeur de différences."
+ "vs/editor/browser/services/inlineCompletionsService": {
+ "action.inlineSuggest.cancelSnooze": "Annuler la répétition des suggestions inline",
+ "action.inlineSuggest.snooze": "Répétition des suggestions inline",
+ "inlineCompletions.snoozed": "Indique si les complétions en ligne sont actuellement répétées",
+ "snooze.placeholder": "Sélectionnez la durée de mise en veille pour les suggestions en ligne"
+ },
+ "vs/editor/browser/widget/codeEditor/codeEditorWidget": {
+ "cursors.maximum": "Le nombre de curseurs a été limité à {0}. Envisagez d’utiliser [rechercher et remplacer](https://code.visualstudio.com/docs/editor/codebasics#_find-and-replace) pour les modifications plus importantes ou augmentez la limite du nombre de curseurs multiples du paramètre.",
+ "goToSetting": "Augmenter la limite de curseurs multiples"
},
- "vs/editor/browser/widget/diffReview": {
+ "vs/editor/browser/widget/diffEditor/commands": {
+ "accessibleDiffViewer": "Visionneuse Diff accessible",
+ "collapseAllUnchangedRegions": "Réduire toutes les régions inchangées",
+ "diffEditor": "Éditeur de différences",
+ "editor.action.accessibleDiffViewer.next": "Accéder à la différence suivante",
+ "editor.action.accessibleDiffViewer.prev": "Accéder la différence précédente",
+ "exitCompareMove": "Quitter Comparer le déplacement",
+ "revert": "Restaurer",
+ "showAllUnchangedRegions": "Afficher toutes les régions inchangées",
+ "switchSide": "Changer de côté",
+ "toggleCollapseUnchangedRegions": "Activer/désactiver réduire les régions inchangées",
+ "toggleShowMovedCodeBlocks": "Activer/désactiver l’affichage des blocs de code déplacés",
+ "toggleUseInlineViewWhenSpaceIsLimited": "Activer/désactiver Utiliser la vue inline lorsque l'espace est limité"
+ },
+ "vs/editor/browser/widget/diffEditor/components/accessibleDiffViewer": {
+ "accessibleDiffViewerCloseIcon": "Icône de « Fermer » dans la visionneuse diff accessible.",
+ "accessibleDiffViewerInsertIcon": "Icône « Insérer » dans la visionneuse diff accessible.",
+ "accessibleDiffViewerRemoveIcon": "Icône « Supprimer » dans la visionneuse diff accessible.",
+ "ariaLabel": "Visionneuse diff accessible. Utilisez les flèches haut et bas pour naviguer.",
"blankLine": "vide",
"deleteLine": "- {0} ligne d'origine {1}",
- "diffReviewCloseIcon": "Icône de l'option Fermer dans la revue des différences.",
- "diffReviewInsertIcon": "Icône de l'option Insérer dans la revue des différences.",
- "diffReviewRemoveIcon": "Icône de l'option Supprimer dans la revue des différences.",
- "editor.action.diffReview.next": "Accéder à la différence suivante",
- "editor.action.diffReview.prev": "Accéder la différence précédente",
"equalLine": "{0} ligne d'origine {1} ligne modifiée {2}",
"header": "Différence {0} sur {1} : ligne d'origine {2}, {3}, ligne modifiée {4}, {5}",
"insertLine": "+ {0} ligne modifiée {1}",
@@ -227,7 +266,10 @@
"one_line_changed": "1 ligne changée",
"unchangedLine": "{0} ligne inchangée {1}"
},
- "vs/editor/browser/widget/inlineDiffMargin": {
+ "vs/editor/browser/widget/diffEditor/components/diffEditorEditors": {
+ "diff-aria-navigation-tip": " utilisez {0} pour ouvrir l’aide sur l’accessibilité."
+ },
+ "vs/editor/browser/widget/diffEditor/components/diffEditorViewZones/inlineDiffDeletedCodeMargin": {
"diff.clipboard.copyChangedLineContent.label": "Copier la ligne modifiée ({0})",
"diff.clipboard.copyChangedLinesContent.label": "Copier les lignes modifiées",
"diff.clipboard.copyChangedLinesContent.single.label": "Copier la ligne modifiée",
@@ -236,18 +278,76 @@
"diff.clipboard.copyDeletedLinesContent.single.label": "Copier la ligne supprimée",
"diff.inline.revertChange.label": "Annuler la modification"
},
+ "vs/editor/browser/widget/diffEditor/diffEditor.contribution": {
+ "Open Accessible Diff Viewer": "Ouvrir la visionneuse diff accessible",
+ "revertHunk": "Rétablir le bloc",
+ "revertSelection": "Rétablir la sélection",
+ "showMoves": "Afficher les blocs de code déplacés",
+ "useInlineViewWhenSpaceIsLimited": "Utiliser la vue inline lorsque l'espace est limité"
+ },
+ "vs/editor/browser/widget/diffEditor/features/hideUnchangedRegionsFeature": {
+ "diff.bottom": "Cliquez ou faites glisser pour afficher plus d'éléments en dessous",
+ "diff.hiddenLines.expandAll": "Double-cliquer pour déplier",
+ "diff.hiddenLines.top": "Cliquez ou faites glisser pour afficher plus d'éléments au-dessus",
+ "foldUnchanged": "Replier la région inchangée",
+ "hiddenLines": "{0} lignes masquées",
+ "showUnchangedRegion": "Afficher la région inchangée"
+ },
+ "vs/editor/browser/widget/diffEditor/features/movedBlocksLinesFeature": {
+ "codeMovedFrom": "Code déplacé à partir de la ligne {0}-{1}",
+ "codeMovedFromWithChanges": "Code déplacé avec des modifications à partir de la ligne {0}-{1}",
+ "codeMovedTo": "Code déplacé vers la ligne {0}-{1}",
+ "codeMovedToWithChanges": "Code déplacé avec des modifications vers la ligne {0}-{1}"
+ },
+ "vs/editor/browser/widget/diffEditor/features/revertButtonsFeature": {
+ "revertChange": "Rétablir la modification",
+ "revertSelectedChanges": "Rétablir les modifications sélectionnées"
+ },
+ "vs/editor/browser/widget/diffEditor/registrations.contribution": {
+ "diffEditor.move.border": "Couleur de bordure du texte déplacé dans l’éditeur de diff.",
+ "diffEditor.moveActive.border": "Couleur de bordure active du texte déplacé dans l’éditeur de différences.",
+ "diffEditor.unchangedRegionShadow": "Couleur de l’ombre autour des widgets de région inchangés.",
+ "diffInsertIcon": "Élément décoratif de ligne pour les insertions dans l'éditeur de différences.",
+ "diffRemoveIcon": "Élément décoratif de ligne pour les suppressions dans l'éditeur de différences."
+ },
+ "vs/editor/browser/widget/multiDiffEditor/colors": {
+ "multiDiffEditor.background": "Couleur d’arrière-plan de l’éditeur de différences de fichiers multiples",
+ "multiDiffEditor.border": "Couleur de bordure de l’éditeur de différences de fichiers multiples",
+ "multiDiffEditor.headerBackground": "Couleur d’arrière-plan de l’en-tête de l’éditeur de différences"
+ },
+ "vs/editor/browser/widget/multiDiffEditor/multiDiffEditorWidgetImpl": {
+ "loading": "Chargement en cours...",
+ "noChangedFiles": "Aucun fichier modifié"
+ },
"vs/editor/common/config/editorConfigurationSchema": {
"codeLens": "Contrôle si l'éditeur affiche CodeLens.",
- "detectIndentation": "Contrôle si '#editor.tabSize#' et '#editor.insertSpaces#' sont automatiquement détectés lors de l’ouverture d’un fichier en fonction de son contenu.",
+ "detectIndentation": "Contrôle si {0} et {1} sont automatiquement détectés lors de l’ouverture d’un fichier en fonction de son contenu.",
+ "diffAlgorithm.advanced": "Utilise l’algorithme de comparaison avancé.",
+ "diffAlgorithm.legacy": "Utilise l’algorithme de comparaison hérité.",
+ "editor.experimental.asyncTokenization": "Contrôle si la création de jetons doit se produire de manière asynchrone sur un worker web.",
+ "editor.experimental.asyncTokenizationLogging": "Contrôle si la création de jetons asynchrones doit être journalisée. Pour le débogage uniquement.",
+ "editor.experimental.asyncTokenizationVerification": "Contrôle si la segmentation du texte en unités lexicales asynchrones doit être vérifiée par rapport à la segmentation du texte en unités lexicales en arrière-plan héritée. Peut ralentir la segmentation du texte en unités lexicales. Pour le débogage uniquement.",
+ "editor.experimental.preferTreeSitter.css": "Contrôle si l’analyse Tree-sitter doit être activée pour css. Cette opération a la priorité sur `#editor.experimental.treeSitterTelemetry#` pour css.",
+ "editor.experimental.preferTreeSitter.ini": "Contrôle si l’analyse Tree-sitter doit être activée pour ini. Cette opération aura la priorité sur `#editor.experimental.treeSitterTelemetry#` pour ini.",
+ "editor.experimental.preferTreeSitter.regex": "Contrôle si l’analyse Tree-sitter doit être activée pour regex. Cette opération aura la priorité sur `#editor.experimental.treeSitterTelemetry#` pour regex.",
+ "editor.experimental.preferTreeSitter.typescript": "Contrôle si l’analyse Tree-sitter doit être activée pour TypeScript. Cette opération aura la priorité sur `#editor.experimental.treeSitterTelemetry#` pour TypeScript.",
+ "editor.experimental.treeSitterTelemetry": "Contrôle si l’analyse de sitter (système) d’arborescence doit être activée et la télémétrie collectée. La définition de `#editor.experimental.preferTreeSitter#` pour des langages spécifiques est prioritaire.",
"editorConfigurationTitle": "Éditeur",
+ "hideUnchangedRegions.contextLineCount": "Contrôle le nombre de lignes utilisées comme contexte lors de la comparaison des régions inchangées.",
+ "hideUnchangedRegions.enabled": "Contrôle si l'éditeur de différences affiche les régions inchangées.",
+ "hideUnchangedRegions.minimumLineCount": "Contrôle le nombre de lignes utilisées comme minimum pour les régions inchangées.",
+ "hideUnchangedRegions.revealLineCount": "Contrôle le nombre de lignes utilisées pour les régions inchangées.",
"ignoreTrimWhitespace": "Quand il est activé, l'éditeur de différences ignore les changements d'espace blanc de début ou de fin.",
- "insertSpaces": "Espaces insérés quand vous appuyez sur la touche Tab. Ce paramètre est remplacé en fonction du contenu du fichier quand '#editor.detectIndentation#' est activé.",
+ "indentSize": "Nombre d’espaces utilisés pour la mise en retrait ou `\"tabSize\"` pour utiliser la valeur de `#editor.tabSize#`. Ce paramètre est remplacé en fonction du contenu du fichier quand `#editor.detectIndentation#` est activé.",
+ "insertSpaces": "Espaces insérés quand vous appuyez sur la touche Tab. Ce paramètre est remplacé en fonction du contenu du fichier quand {0} est activé.",
"largeFileOptimizations": "Traitement spécial des fichiers volumineux pour désactiver certaines fonctionnalités utilisant beaucoup de mémoire.",
"maxComputationTime": "Délai d'expiration en millisecondes avant annulation du calcul de diff. Utilisez 0 pour supprimer le délai d'expiration.",
"maxFileSize": "Taille de fichier maximale en Mo pour laquelle calculer les différences. Utilisez 0 pour ne pas avoir de limite.",
"maxTokenizationLineLength": "Les lignes plus longues que cette valeur ne sont pas tokenisées pour des raisons de performances",
+ "renderGutterMenu": "Lorsque cette option est activée, l’éditeur de différences affiche une marge spéciale pour les actions de rétablissement et d’index.",
"renderIndicators": "Contrôle si l'éditeur de différences affiche les indicateurs +/- pour les changements ajoutés/supprimés .",
"renderMarginRevertIcon": "Lorsqu’il est activé, l’éditeur de différences affiche des flèches dans sa marge de glyphe pour rétablir les modifications.",
+ "renderSideBySideInlineBreakpoint": "Si l'éditeur de différences est moins large que cette valeur, la vue inline est utilisée.",
"schema.brackets": "Définit les symboles de type crochet qui augmentent ou diminuent le retrait.",
"schema.closeBracket": "Séquence de chaînes ou de caractères de crochets fermants.",
"schema.colorizedBracketPairs": "Définit les paires de crochets qui sont colorisées par leur niveau d’imbrication si la colorisation des paires de crochets est activée.",
@@ -256,64 +356,86 @@
"semanticHighlighting.enabled": "Contrôle si semanticHighlighting est affiché pour les langages qui le prennent en charge.",
"semanticHighlighting.false": "Coloration sémantique désactivée pour tous les thèmes de couleur.",
"semanticHighlighting.true": "Coloration sémantique activée pour tous les thèmes de couleur.",
+ "showEmptyDecorations": "Contrôle si l’éditeur de différences affiche des décorations vides pour voir où les caractères ont été insérés ou supprimés.",
+ "showMoves": "Contrôle si l’éditeur de différences doit afficher les déplacements de code détectés.",
"sideBySide": "Contrôle si l'éditeur de différences affiche les différences en mode côte à côte ou inline.",
- "stablePeek": "Garder les éditeurs d'aperçu ouverts même si l'utilisateur double-clique sur son contenu ou appuie sur la touche Échap. ",
- "tabSize": "Le nombre d'espaces auxquels une tabulation est égale. Ce paramètre est substitué basé sur le contenu du fichier lorsque `#editor.detectIndentation#` est à 'on'.",
+ "stablePeek": "Maintenir les éditeurs d'aperçu ouverts même si l'utilisateur double-clique sur son contenu ou appuie sur la touche Échap.",
+ "tabSize": "Le nombre d’espaces auxquels une tabulation est égale. Ce paramètre est substitué basé sur le contenu du fichier lorsque {0} est activé.",
"trimAutoWhitespace": "Supprimer l'espace blanc de fin inséré automatiquement.",
- "wordBasedSuggestions": "Contrôle si la saisie semi-automatique doit être calculée en fonction des mots présents dans le document.",
- "wordBasedSuggestionsMode": "Contrôle la façon dont sont calculées les complétions basées sur des mots dans les documents.",
- "wordBasedSuggestionsMode.allDocuments": "Suggère des mots dans tous les documents ouverts.",
- "wordBasedSuggestionsMode.currentDocument": "Suggère uniquement des mots dans le document actif.",
- "wordBasedSuggestionsMode.matchingDocuments": "Suggère des mots dans tous les documents ouverts du même langage.",
- "wordWrap.inherit": "Le retour automatique à la ligne dépend du paramètre '#editor.wordWrap#'.",
+ "useInlineViewWhenSpaceIsLimited": "Si cette option est activée et que la largeur de l'éditeur est trop étroite, la vue inline est utilisée.",
+ "useTrueInlineView": "Si cette option est activée et que l’éditeur utilise la vue inline, les modifications apportées aux mots sont restituées inline.",
+ "wordBasedSuggestions": "Contrôle si les complétions doivent être calculées en fonction des mots du document et à partir de quels documents elles sont calculées.",
+ "wordBasedSuggestions.allDocuments": "Suggère des mots dans tous les documents ouverts.",
+ "wordBasedSuggestions.currentDocument": "Suggère uniquement des mots dans le document actif.",
+ "wordBasedSuggestions.matchingDocuments": "Suggère des mots dans tous les documents ouverts du même langage.",
+ "wordBasedSuggestions.off": "Désactivez les suggestions basées sur Word.",
+ "wordWrap.inherit": "Le retour automatique à la ligne dépend du paramètre {0}.",
"wordWrap.off": "Le retour automatique à la ligne n'est jamais effectué.",
"wordWrap.on": "Le retour automatique à la ligne s'effectue en fonction de la largeur de la fenêtre d'affichage."
},
"vs/editor/common/config/editorOptions": {
- "acceptSuggestionOnCommitCharacter": "Contrôle si les suggestions doivent être acceptées sur les caractères de validation, et entre ce caractère. Par exemple, en JavaScript, le point-virgule ('; ') peut être un caractère de validation qui accepte une suggestion.",
+ "acceptSuggestionOnCommitCharacter": "Contrôle si les suggestions doivent être acceptées sur les caractères de validation. Par exemple, en JavaScript, le point-virgule (`;`) peut être un caractère de validation qui accepte une suggestion et tape ce caractère.",
"acceptSuggestionOnEnter": "Contrôle si les suggestions sont acceptées après appui sur 'Entrée', en plus de 'Tab'. Permet d’éviter toute ambiguïté entre l’insertion de nouvelles lignes et l'acceptation de suggestions.",
"acceptSuggestionOnEnterSmart": "Accepter uniquement une suggestion avec 'Entrée' quand elle effectue une modification textuelle.",
"accessibilityPageSize": "Contrôle le nombre de lignes de l’éditeur qu’un lecteur d’écran peut lire en une seule fois. Quand nous détectons un lecteur d’écran, nous définissons automatiquement la valeur par défaut à 500. Attention : Les valeurs supérieures à la valeur par défaut peuvent avoir un impact important sur les performances.",
- "accessibilitySupport": "Contrôle si l'éditeur doit s'exécuter dans un mode optimisé pour les lecteurs d'écran. Si la valeur est on, le retour automatique à la ligne est désactivé.",
- "accessibilitySupport.auto": "L'éditeur utilise les API de la plateforme pour détecter si un lecteur d'écran est attaché.",
- "accessibilitySupport.off": "L'éditeur n'est jamais optimisé pour une utilisation avec un lecteur d'écran.",
- "accessibilitySupport.on": "L'éditeur est optimisé en permanence pour les lecteurs d'écran. Le retour automatique à la ligne est désactivé.",
+ "accessibilitySupport": "Contrôle si l’interface utilisateur doit s’exécuter dans un mode où elle est optimisée pour les lecteurs d’écran.",
+ "accessibilitySupport.auto": "Utilisez les API de la plateforme pour détecter lorsqu'un lecteur d'écran est connecté.",
+ "accessibilitySupport.off": "Supposons qu’aucun lecteur d’écran ne soit connecté.",
+ "accessibilitySupport.on": "Optimiser pour une utilisation avec un lecteur d'écran.",
+ "allowVariableFonts": "Contrôle s’il faut autoriser l’utilisation de polices variables dans l’éditeur.",
+ "allowVariableFontsInAccessibilityMode": "Contrôle s’il faut autoriser l’utilisation de polices variables dans l’éditeur en mode d’accessibilité.",
+ "allowVariableLineHeights": "Permet d'autoriser ou non l'utilisation de hauteurs de ligne variables dans l'éditeur.",
"alternativeDeclarationCommand": "ID de commande alternatif exécuté quand le résultat de 'Atteindre la déclaration' est l'emplacement actuel.",
"alternativeDefinitionCommand": "ID de commande alternatif exécuté quand le résultat de 'Atteindre la définition' est l'emplacement actuel.",
"alternativeImplementationCommand": "ID de commande alternatif exécuté quand le résultat de 'Atteindre l'implémentation' est l'emplacement actuel.",
"alternativeReferenceCommand": "ID de commande alternatif exécuté quand le résultat de 'Atteindre la référence' est l'emplacement actuel.",
"alternativeTypeDefinitionCommand": "ID de commande alternatif exécuté quand le résultat de 'Atteindre la définition de type' est l'emplacement actuel.",
"autoClosingBrackets": "Contrôle si l’éditeur doit fermer automatiquement les parenthèses quand l’utilisateur ajoute une parenthèse ouvrante.",
+ "autoClosingComments": "Contrôle si l'éditeur doit fermer automatiquement les commentaires quand l'utilisateur ajoute un commentaire ouvrant.",
"autoClosingDelete": "Contrôle si l'éditeur doit supprimer les guillemets ou crochets fermants adjacents au moment de la suppression.",
"autoClosingOvertype": "Contrôle si l'éditeur doit taper avant les guillemets ou crochets fermants.",
"autoClosingQuotes": "Contrôle si l’éditeur doit fermer automatiquement les guillemets après que l’utilisateur ajoute un guillemet ouvrant.",
"autoIndent": "Contrôle si l'éditeur doit ajuster automatiquement le retrait quand les utilisateurs tapent, collent, déplacent ou mettent en retrait des lignes.",
+ "autoIndentOnPaste": "Contrôle si l’éditeur doit automatiquement mettre en retrait le contenu collé.",
+ "autoIndentOnPasteWithinString": "Contrôle si l’éditeur doit automatiquement mettre en retrait le contenu collé lorsqu’il est inséré dans une chaîne. Cela prend effet lorsque l’option autoIndentOnPaste est activée.",
"autoSurround": "Contrôle si l'éditeur doit automatiquement entourer les sélections quand l'utilisateur tape des guillemets ou des crochets.",
"bracketPairColorization.enabled": "Contrôle si la colorisation des paires de crochets est activée ou non. Utilisez {0} pour remplacer les couleurs de surbrillance des crochets.",
"bracketPairColorization.independentColorPoolPerBracketType": "Contrôle si chaque type de crochet possède son propre pool de couleurs indépendant.",
- "codeActions": "Active l’ampoule d’action de code dans l’éditeur.",
"codeLens": "Contrôle si l'éditeur affiche CodeLens.",
"codeLensFontFamily": "Contrôle la famille de polices pour CodeLens.",
- "codeLensFontSize": "Contrôle la taille de police en pixels pour CodeLens. Quand la valeur est '0', 90 % de '#editor.fontSize#' est utilisé.",
+ "codeLensFontSize": "Contrôle la taille de police en pixels pour CodeLens. Quand la valeur est 0, 90 % de '#editor.fontSize#' est utilisé.",
+ "colorDecoratorActivatedOn": "Contrôle la condition permettant de faire apparaître un sélecteur de couleur à partir d'un décorateur de couleur.",
"colorDecorators": "Contrôle si l'éditeur doit afficher les éléments décoratifs de couleurs inline et le sélecteur de couleurs.",
+ "colorDecoratorsLimit": "Contrôle le nombre maximal d’éléments décoratifs de couleur qui peuvent être rendus simultanément dans un éditeur.",
"columnSelection": "Autoriser l'utilisation de la souris et des touches pour sélectionner des colonnes.",
"comments.ignoreEmptyLines": "Contrôle si les lignes vides doivent être ignorées avec des actions d'activation/de désactivation, d'ajout ou de suppression des commentaires de ligne.",
"comments.insertSpace": "Contrôle si un espace est inséré pour les commentaires.",
"copyWithSyntaxHighlighting": "Contrôle si la coloration syntaxique doit être copiée dans le presse-papiers.",
"cursorBlinking": "Contrôler le style d’animation du curseur.",
+ "cursorHeight": "Détermine la hauteur du curseur lorsque `#editor.cursorStyle#` est à `line`. La hauteur maximale du curseur dépend de la hauteur de ligne.",
"cursorSmoothCaretAnimation": "Contrôle si l'animation du point d'insertion doit être activée.",
- "cursorStyle": "Contrôle le style du curseur.",
- "cursorSurroundingLines": "Contrôle le nombre minimal de lignes de début et de fin visibles autour du curseur. Également appelé 'scrollOff' ou 'scrollOffset' dans d'autres éditeurs.",
- "cursorSurroundingLinesStyle": "Contrôle quand 'cursorSurroundingLines' doit être appliqué.",
+ "cursorSmoothCaretAnimation.explicit": "L’animation de caret fluide est activée uniquement lorsque l’utilisateur déplace le curseur avec un mouvement explicite.",
+ "cursorSmoothCaretAnimation.off": "L’animation de caret fluide est désactivée.",
+ "cursorSmoothCaretAnimation.on": "L’animation de caret fluide est toujours activée.",
+ "cursorStyle": "Contrôle le style du curseur en mode d’entrée d’insertion.",
+ "cursorSurroundingLines": "Contrôle le nombre minimal de lignes de début (0 minimum) et de fin (1 minimum) visibles autour du curseur. Également appelé « scrollOff » ou « scrollOffset » dans d'autres éditeurs.",
+ "cursorSurroundingLinesStyle": "Contrôle le moment où #editor.cursorSurroundingLines# doit être appliqué.",
"cursorSurroundingLinesStyle.all": "'cursorSurroundingLines' est toujours appliqué.",
"cursorSurroundingLinesStyle.default": "'cursorSurroundingLines' est appliqué seulement s'il est déclenché via le clavier ou une API.",
"cursorWidth": "Détermine la largeur du curseur lorsque `#editor.cursorStyle#` est à `line`.",
+ "defaultColorDecorators": "Contrôle si les décorations de couleur inline doivent être affichées à l’aide du fournisseur de couleurs par défaut du document.",
"definitionLinkOpensInPeek": "Contrôle si le geste de souris Accéder à la définition ouvre toujours le widget d'aperçu.",
"deprecated": "Ce paramètre est déprécié, veuillez utiliser des paramètres distincts comme 'editor.suggest.showKeywords' ou 'editor.suggest.showSnippets' à la place.",
"dragAndDrop": "Contrôle si l’éditeur autorise le déplacement de sélections par glisser-déplacer.",
- "dropIntoEditor.enabled": "Controls whether you can drag and drop a file into a text editor by holding down `shift` (instead of opening the file in an editor).",
+ "dropIntoEditor.enabled": "Contrôle si vous pouvez glisser et déposer un fichier dans un éditeur de texte en maintenant la touche « Maj » enfoncée (au lieu d’ouvrir le fichier dans un éditeur).",
+ "dropIntoEditor.showDropSelector": "Contrôle si un widget est affiché lors de l’annulation de fichiers dans l’éditeur. Ce widget vous permet de contrôler la façon dont le fichier est annulé.",
+ "dropIntoEditor.showDropSelector.afterDrop": "Afficher le widget du sélecteur de dépôt après la suppression d’un fichier dans l’éditeur.",
+ "dropIntoEditor.showDropSelector.never": "Ne jamais afficher le widget du sélecteur de dépôt. À la place, le fournisseur de dépôt par défaut est toujours utilisé.",
+ "editContext": "Définit si l’API EditContext doit être utilisée à la place de la zone de texte pour gérer l’entrée dans l’éditeur.",
"editor.autoClosingBrackets.beforeWhitespace": "Fermer automatiquement les parenthèses uniquement lorsque le curseur est à gauche de l’espace.",
"editor.autoClosingBrackets.languageDefined": "Utilisez les configurations de langage pour déterminer quand fermer automatiquement les parenthèses.",
+ "editor.autoClosingComments.beforeWhitespace": "Fermez automatiquement les commentaires seulement si le curseur est à gauche de l'espace.",
+ "editor.autoClosingComments.languageDefined": "Utilisez les configurations de langage pour déterminer quand fermer automatiquement les commentaires.",
"editor.autoClosingDelete.auto": "Supprimez les guillemets ou crochets fermants adjacents uniquement s'ils ont été insérés automatiquement.",
"editor.autoClosingOvertype.auto": "Tapez avant les guillemets ou les crochets fermants uniquement s'ils sont automatiquement insérés.",
"editor.autoClosingQuotes.beforeWhitespace": "Fermer automatiquement les guillemets uniquement lorsque le curseur est à gauche de l’espace.",
@@ -324,24 +446,33 @@
"editor.autoIndent.keep": "L'éditeur conserve le retrait de la ligne actuelle.",
"editor.autoIndent.none": "L'éditeur n'insère pas de retrait automatiquement.",
"editor.autoSurround.brackets": "Entourez avec des crochets et non des guillemets.",
- "editor.autoSurround.languageDefined": "Utilisez les configurations de langue pour déterminer quand entourer automatiquement les sélections.",
+ "editor.autoSurround.languageDefined": "Utilisez les configurations de langage pour déterminer quand entourer automatiquement les sélections.",
"editor.autoSurround.quotes": "Entourez avec des guillemets et non des crochets.",
+ "editor.colorDecoratorActivatedOn.click": "Faire apparaître le sélecteur de couleurs en cliquant sur l’élément décoratif de couleurs",
+ "editor.colorDecoratorActivatedOn.clickAndHover": "Faire apparaître le sélecteur de couleurs au clic et au pointage de l’élément décoratif de couleurs",
+ "editor.colorDecoratorActivatedOn.hover": "Faire apparaître le sélecteur de couleurs en survolant l’élément décoratif de couleurs",
+ "editor.defaultColorDecorators.always": "Toujours afficher les éléments décoratifs de couleurs par défaut.",
+ "editor.defaultColorDecorators.auto": "Afficher les éléments décoratifs de couleurs par défaut uniquement lorsqu’aucune extension ne fournit de décorateurs de couleurs.",
+ "editor.defaultColorDecorators.never": "Ne jamais afficher les éléments décoratifs de couleurs par défaut.",
"editor.editor.gotoLocation.multipleDeclarations": "Contrôle le comportement de la commande 'Atteindre la déclaration' quand plusieurs emplacements cibles existent.",
"editor.editor.gotoLocation.multipleDefinitions": "Contrôle le comportement de la commande 'Atteindre la définition' quand plusieurs emplacements cibles existent.",
"editor.editor.gotoLocation.multipleImplemenattions": "Contrôle le comportement de la commande 'Atteindre les implémentations' quand plusieurs emplacements cibles existent.",
"editor.editor.gotoLocation.multipleReferences": "Contrôle le comportement de la commande 'Atteindre les références' quand plusieurs emplacements cibles existent.",
"editor.editor.gotoLocation.multipleTypeDefinitions": "Contrôle le comportement de la commande 'Atteindre la définition de type' quand plusieurs emplacements cibles existent.",
- "editor.experimental.stickyScroll": "Shows the nested current scopes during the scroll at the top of the editor.",
"editor.find.autoFindInSelection.always": "Toujours activer automatiquement la recherche dans la sélection.",
"editor.find.autoFindInSelection.multiline": "Activez Rechercher automatiquement dans la sélection quand plusieurs lignes de contenu sont sélectionnées.",
"editor.find.autoFindInSelection.never": "Ne jamais activer automatiquement la recherche dans la sélection (par défaut).",
+ "editor.find.history.never": "Ne stockez pas l’historique de recherche à partir du widget de recherche.",
+ "editor.find.history.workspace": "Stocker l’historique de recherche dans l’espace de travail actif",
+ "editor.find.replaceHistory.never": "Ne pas stocker l'historique à partir du widget de remplacement.",
+ "editor.find.replaceHistory.workspace": "Stocker l'historique des remplacements dans l'espace de travail actif",
"editor.find.seedSearchStringFromSelection.always": "Toujours amorcer la chaîne de recherche à partir de la sélection de l’éditeur, y compris le mot à la position du curseur.",
"editor.find.seedSearchStringFromSelection.never": "Ne lancez jamais la chaîne de recherche dans la sélection de l’éditeur.",
"editor.find.seedSearchStringFromSelection.selection": "Chaîne de recherche initiale uniquement dans la sélection de l’éditeur.",
"editor.gotoLocation.multiple.deprecated": "Ce paramètre est déprécié, utilisez des paramètres distincts comme 'editor.editor.gotoLocation.multipleDefinitions' ou 'editor.editor.gotoLocation.multipleImplementations' à la place.",
- "editor.gotoLocation.multiple.goto": "Accéder au résultat principal et activer l'accès sans aperçu pour les autres",
+ "editor.gotoLocation.multiple.goto": "Accéder au résultat principal et activer l’accès sans aperçu pour les autres",
"editor.gotoLocation.multiple.gotoAndPeek": "Accéder au résultat principal et montrer un aperçu",
- "editor.gotoLocation.multiple.peek": "Montrer l'aperçu des résultats (par défaut)",
+ "editor.gotoLocation.multiple.peek": "Montrer l’aperçu des résultats (par défaut)",
"editor.guides.bracketPairs": "Contrôle si les guides de la paire de crochets sont activés ou non.",
"editor.guides.bracketPairs.active": "Active les repères de paire de crochets uniquement pour la paire de crochets actifs.",
"editor.guides.bracketPairs.false": "Désactive les repères de paire de crochets.",
@@ -356,10 +487,20 @@
"editor.guides.highlightActiveIndentation.false": "Ne mettez pas en surbrillance le repère de retrait actif.",
"editor.guides.highlightActiveIndentation.true": "Met en surbrillance le guide de retrait actif.",
"editor.guides.indentation": "Contrôle si l’éditeur doit afficher les guides de mise en retrait.",
- "editor.inlayHints.off": "Les indicateurs d’inlay sont désactivés.",
- "editor.inlayHints.offUnlessPressed": "Les indicateurs d’inlay sont masqués par défaut et s’affichent lorsque vous maintenez la touche `Ctrl+Alt` enfoncée.",
- "editor.inlayHints.on": "Les indicateurs d’inlay sont activés.",
- "editor.inlayHints.onUnlessPressed": "Les indicateurs d’inlay sont affichés par défaut et masqués lorsque vous maintenez la touche « Ctrl+Alt » enfoncée",
+ "editor.inlayHints.off": "Les hints incrustés sont désactivés.",
+ "editor.inlayHints.offUnlessPressed": "Les hints incrustés sont masqués par défaut et s’affichent lorsque vous maintenez {0}",
+ "editor.inlayHints.on": "Les hints incrustés sont activés.",
+ "editor.inlayHints.onUnlessPressed": "Les hints incrustés sont affichés par défaut et masqués lors de la conservation {0}",
+ "editor.inlineSuggest.edits.renderSideBySide.auto": "Les suggestions plus grandes s’affichent côte à côte s’il y a suffisamment d’espace. Sinon, elles s’afficheront en dessous.",
+ "editor.inlineSuggest.edits.renderSideBySide.never": "Les suggestions plus grandes ne s’affichent jamais côte à côte et s’afficheront toujours en dessous.",
+ "editor.lightbulb.enabled.off": "Désactiver le menu d’action du code.",
+ "editor.lightbulb.enabled.on": "Afficher le menu d’action du code lorsque le curseur se trouve sur des lignes avec du code ou sur des lignes vides.",
+ "editor.lightbulb.enabled.onCode": "Afficher le menu d’action du code lorsque le curseur se trouve sur des lignes avec du code.",
+ "editor.stickyScroll.defaultModel": "Définit le modèle à utiliser pour déterminer les lignes à coller. Si le modèle hiérarchique n’existe pas, il revient au modèle de fournisseur de pliage qui revient au modèle de mise en retrait. Cette demande est respectée dans les trois cas.",
+ "editor.stickyScroll.enabled": "Affiche les étendues actives imbriqués pendant le défilement en haut de l’éditeur.",
+ "editor.stickyScroll.maxLineCount": "Définit le nombre maximal de lignes rémanentes à afficher.",
+ "editor.stickyScroll.scrollWithEditor": "Activez le défilement épinglé avec la barre de défilement horizontale de l'éditeur.",
+ "editor.suggest.matchOnWordStartOnly": "Quand le filtrage IntelliSense est activé, le premier caractère correspond à un début de mot, par exemple 'c' sur 'Console' ou 'WebContext', mais _not_ sur 'description'. Si désactivé, IntelliSense affiche plus de résultats, mais les trie toujours par qualité de correspondance.",
"editor.suggest.showClasss": "Si activé, IntelliSense montre des suggestions de type 'class'.",
"editor.suggest.showColors": "Si activé, IntelliSense montre des suggestions de type 'color'.",
"editor.suggest.showConstants": "Si activé, IntelliSense montre des suggestions de type 'constant'.",
@@ -391,25 +532,39 @@
"editor.suggest.showVariables": "Si activé, IntelliSense montre des suggestions de type 'variable'.",
"editorViewAccessibleLabel": "Contenu de l'éditeur",
"emptySelectionClipboard": "Contrôle si la copie sans sélection permet de copier la ligne actuelle.",
+ "enabled": "Active l’ampoule d’action de code dans l’éditeur.",
+ "experimentalGpuAcceleration": "Contrôle s’il faut utiliser l’accélération GPU expérimentale pour afficher l’éditeur.",
+ "experimentalGpuAcceleration.off": "Utilisez le rendu DOM normal.",
+ "experimentalGpuAcceleration.on": "Utilisez l’accélération GPU.",
+ "experimentalWhitespaceRendering": "Contrôle si les espaces blancs sont rendus avec une nouvelle méthode expérimentale.",
+ "experimentalWhitespaceRendering.font": "Utilisez une nouvelle méthode de rendu avec des caractères de police.",
+ "experimentalWhitespaceRendering.off": "Utilisez la méthode de rendu stable.",
+ "experimentalWhitespaceRendering.svg": "Utilisez une nouvelle méthode de rendu avec des SVG.",
"fastScrollSensitivity": "Multiplicateur de vitesse de défilement quand vous appuyez sur 'Alt'.",
"find.addExtraSpaceOnTop": "Contrôle si le widget Recherche doit ajouter des lignes supplémentaires en haut de l'éditeur. Quand la valeur est true, vous pouvez faire défiler au-delà de la première ligne si le widget Recherche est visible.",
"find.autoFindInSelection": "Contrôle la condition d'activation automatique de la recherche dans la sélection.",
"find.cursorMoveOnType": "Contrôle si le curseur doit sauter pour rechercher les correspondances lors de la saisie.",
+ "find.findOnType": "Contrôle si le widget de recherche doit effectuer une recherche au fur et à mesure de la saisie.",
"find.globalFindClipboard": "Détermine si le Widget Recherche devrait lire ou modifier le presse-papiers de recherche partagé sur macOS.",
+ "find.history": "Contrôle la façon dont l’historique du widget de recherche doit être stocké",
"find.loop": "Contrôle si la recherche redémarre automatiquement depuis le début (ou la fin) quand il n'existe aucune autre correspondance.",
+ "find.replaceHistory": "Contrôle la manière dont l'historique du widget de remplacement doit être stocké",
"find.seedSearchStringFromSelection": "Détermine si la chaîne de recherche dans le Widget Recherche est initialisée avec la sélection de l’éditeur.",
"folding": "Contrôle si l'éditeur a le pliage de code activé.",
"foldingHighlight": "Contrôle si l'éditeur doit mettre en évidence les plages pliées.",
"foldingImportsByDefault": "Contrôle si l’éditeur réduit automatiquement les plages d’importation.",
"foldingMaximumRegions": "Nombre maximal de régions pliables. L’augmentation de cette valeur peut réduire la réactivité de l’éditeur lorsque la source actuelle comprend un grand nombre de régions pliables.",
"foldingStrategy": "Contrôle la stratégie de calcul des plages de pliage.",
- "foldingStrategy.auto": "Utilisez une stratégie de pliage propre à la langue, si disponible, sinon utilisez la stratégie basée sur le retrait.",
+ "foldingStrategy.auto": "Utilisez une stratégie de pliage propre au langage, si disponible, sinon utilisez la stratégie basée sur le retrait.",
"foldingStrategy.indentation": "Utilisez la stratégie de pliage basée sur le retrait.",
"fontFamily": "Contrôle la famille de polices.",
"fontFeatureSettings": "Propriété CSS 'font-feature-settings' explicite. Vous pouvez passer une valeur booléenne à la place si vous devez uniquement activer/désactiver les ligatures.",
"fontLigatures": "Active/désactive les ligatures de police (fonctionnalités de police 'calt' et 'liga'). Remplacez ceci par une chaîne pour contrôler de manière précise la propriété CSS 'font-feature-settings'.",
"fontLigaturesGeneral": "Configure les ligatures de police ou les fonctionnalités de police. Il peut s'agir d'une valeur booléenne permettant d'activer/de désactiver les ligatures, ou d'une chaîne correspondant à la valeur de la propriété CSS 'font-feature-settings'.",
"fontSize": "Contrôle la taille de police en pixels.",
+ "fontVariationSettings": "Propriété CSS 'font-variation-settings' explicite. Une valeur booléenne peut être passée à la place si une seule valeur doit traduire font-weight en font-variation-settings.",
+ "fontVariations": "Active/désactive la traduction de font-weight en font-variation-settings. Remplacez ce paramètre par une chaîne pour un contrôle affiné de la propriété CSS 'font-variation-settings'.",
+ "fontVariationsGeneral": "Configure les variations de la police. Il peut s’agir d’une valeur booléenne pour activer/désactiver la traduction de font-weight en font-variation-settings ou d’une chaîne pour la valeur de la propriété CSS 'font-variation-settings'.",
"fontWeight": "Contrôle l'épaisseur de police. Accepte les mots clés \"normal\" et \"bold\", ou les nombres compris entre 1 et 1 000.",
"fontWeightErrorMessage": "Seuls les mots clés \"normal\" et \"bold\", ou les nombres compris entre 1 et 1 000 sont autorisés.",
"formatOnPaste": "Détermine si l’éditeur doit automatiquement mettre en forme le contenu collé. Un formateur doit être disponible et être capable de mettre en forme une plage dans un document.",
@@ -419,13 +574,37 @@
"hover.above": "Préférez afficher les points au-dessus de la ligne, s’il y a de l’espace.",
"hover.delay": "Contrôle le délai en millisecondes, après lequel le survol est affiché.",
"hover.enabled": "Contrôle si le pointage est affiché.",
+ "hover.enabled.off": "Le pointage est désactivé.",
+ "hover.enabled.on": "Le pointage est activé.",
+ "hover.enabled.onKeyboardModifier": "Le survol s’affiche lorsque vous maintenez la touche `{0}` ou `Alt` (le modificateur opposé à `#editor.multiCursorModifier#`)",
+ "hover.hidingDelay": "Contrôle le délai en millisecondes après lequel le survol est masqué. Nécessite que `#editor.hover.sticky#` soit activé.",
"hover.sticky": "Contrôle si le pointage doit rester visible quand la souris est déplacée au-dessus.",
- "inlayHints.enable": "Active les indicateurs inlay dans l’éditeur.",
- "inlayHints.fontFamily": "Contrôle la famille de polices des indicateurs d’inlay dans l’éditeur. Lorsqu’il est défini sur vide, le {0} est utilisé.",
- "inlayHints.fontSize": "Contrôle la taille de police des indicateurs d’inlay dans l’éditeur. Par défaut, le {0} est utilisé lorsque la valeur configurée est inférieure à {1} ou supérieure à la taille de police de l’éditeur.",
- "inlayHints.padding": "Active le remplissage autour des indicateurs d’inlay dans l’éditeur.",
+ "inertialScroll": "Rendez le défilement inertiel, principalement utile avec le pavé tactile sur Linux.",
+ "inlayHints.enable": "Active les hints incrustés dans l’éditeur.",
+ "inlayHints.fontFamily": "Contrôle la famille de polices des hints incrustés dans l’éditeur. Lorsqu’il est défini sur vide, le {0} est utilisé.",
+ "inlayHints.fontSize": "Contrôle la taille de police des hints incrustés dans l’éditeur. Par défaut, le {0} est utilisé lorsque la valeur configurée est inférieure à {1} ou supérieure à la taille de police de l’éditeur.",
+ "inlayHints.maximumLength": "Longueur globale maximale des hints incrustés, pour une seule ligne, avant qu’ils ne soient tronqués par l’éditeur. Définir sur « 0 » pour ne jamais tronquer",
+ "inlayHints.padding": "Active le remplissage autour des hints incrustés dans l’éditeur.",
"inline": "Les suggestions rapides s’affichent sous forme de texte fantôme",
+ "inlineCompletionsAccessibilityVerbose": "Contrôle si l'indicateur d'accessibilité doit être fourni aux utilisateurs du lecteur d'écran lorsqu'une complétion inline est affichée.",
+ "inlineSuggest.edits.allowCodeShifting": "Contrôle si l'affichage d'une suggestion déplace le code pour faire de la place à la suggestion en ligne.",
+ "inlineSuggest.edits.renderSideBySide": "Contrôle si les suggestions plus grandes peuvent être affichées côte à côte.",
+ "inlineSuggest.edits.showCollapsed": "Contrôle si la suggestion s’affiche comme réduite jusqu’à ce qu’elle soit sautée.",
+ "inlineSuggest.edits.showLongDistanceHint": "Détermine si les suggestions inline à longue distance sont affichées.",
+ "inlineSuggest.emptyResponseInformation": "Détermine si les informations de la requête doivent être envoyées par le fournisseur de suggestions inline.",
"inlineSuggest.enabled": "Contrôle si les suggestions en ligne doivent être affichées automatiquement dans l’éditeur.",
+ "inlineSuggest.fontFamily": "Contrôle la famille de polices des suggestions inlined.",
+ "inlineSuggest.minShowDelay": "Contrôle le délai minimal en millisecondes après lequel les suggestions en ligne sont affichées après la saisie.",
+ "inlineSuggest.showOnSuggestConflict": "Contrôle l'affichage des suggestions en ligne en cas de conflit de suggestions.",
+ "inlineSuggest.showToolbar": "Contrôle quand afficher la barre d’outils de suggestion incluse.",
+ "inlineSuggest.showToolbar.always": "Afficher la barre d’outils de suggestion en ligne chaque fois qu’une suggestion inline est affichée.",
+ "inlineSuggest.showToolbar.never": "N’affichez jamais la barre d’outils de suggestion en ligne.",
+ "inlineSuggest.showToolbar.onHover": "Afficher la barre d’outils de suggestion en ligne lorsque vous pointez sur une suggestion incluse.",
+ "inlineSuggest.suppressInSnippetMode": "Détermine si les suggestions inline sont supprimées en mode extrait.",
+ "inlineSuggest.suppressInlineSuggestions": "Supprime les complétions en ligne pour les ID d’extension spécifiés, séparés par des virgules.",
+ "inlineSuggest.suppressSuggestions": "Contrôle la façon dont les suggestions inline interagissent avec le widget de suggestion. Si cette option est activée, le widget de suggestion n’est pas affiché automatiquement lorsque des suggestions inline sont disponibles.",
+ "inlineSuggest.syntaxHighlightingEnabled": "Contrôle s’il faut afficher la mise en surbrillance de la syntaxe pour les suggestions inline dans l’éditeur.",
+ "inlineSuggest.triggerCommandOnProviderChange": "Contrôle s’il faut déclencher une commande lorsque le fournisseur de suggestions inline change.",
"letterSpacing": "Contrôle l'espacement des lettres en pixels.",
"lineHeight": "Contrôle la hauteur de ligne. \r\n - Utilisez 0 pour calculer automatiquement la hauteur de ligne à partir de la taille de police.\r\n : les valeurs comprises entre 0 et 8 sont utilisées comme multiplicateur avec la taille de police.\r\n : les valeurs supérieures ou égales à 8 seront utilisées comme valeurs effectives.",
"lineNumbers": "Contrôle l'affichage des numéros de ligne.",
@@ -433,22 +612,33 @@
"lineNumbers.off": "Les numéros de ligne ne sont pas affichés.",
"lineNumbers.on": "Les numéros de ligne sont affichés en nombre absolu.",
"lineNumbers.relative": "Les numéros de ligne sont affichés sous la forme de distance en lignes à la position du curseur.",
- "linkedEditing": "Contrôle si la modification liée est activée dans l'éditeur. En fonction du langage, les symboles associés, par exemple les balises HTML, sont mis à jour durant le processus de modification.",
+ "linkedEditing": "Contrôle si la modification liée est activée dans l’éditeur. En fonction du langage, les symboles associés, par exemple les balises HTML, sont mis à jour durant le processus de modification.",
"links": "Contrôle si l’éditeur doit détecter les liens et les rendre cliquables.",
"matchBrackets": "Mettez en surbrillance les crochets correspondants.",
"minimap.autohide": "Contrôle si la minimap est masquée automatiquement.",
+ "minimap.autohide.mouseover": "Le minimap est masqué lorsque la souris n’est pas au-dessus du minimap et affiché lorsque la souris est au-dessus du minimap.",
+ "minimap.autohide.none": "Le minimap est toujours affiché.",
+ "minimap.autohide.scroll": "Le minimap n’est affiché que lorsque l’éditeur est défilé.",
"minimap.enabled": "Contrôle si la minimap est affichée.",
+ "minimap.markSectionHeaderRegex": "Définit l’expression régulière utilisée pour rechercher les en-têtes de section dans les commentaires. Le regex doit contenir un groupe de correspondance nommé « label » (écrit sous la forme « ( ?.+) » qui encapsule l’en-tête de section, sinon il ne fonctionnera pas. Vous pouvez éventuellement inclure un autre groupe de correspondance nommé « séparateur ». Utilisez \\n dans le modèle pour faire correspondre les en-têtes multilignes.",
"minimap.maxColumn": "Limiter la largeur de la minimap pour afficher au plus un certain nombre de colonnes.",
"minimap.renderCharacters": "Afficher les caractères réels sur une ligne par opposition aux blocs de couleur.",
"minimap.scale": "Échelle du contenu dessiné dans le minimap : 1, 2 ou 3.",
+ "minimap.sectionHeaderFontSize": "Contrôle la taille de police des en-têtes de section dans le minimap.",
+ "minimap.sectionHeaderLetterSpacing": "Contrôle la quantité d’espace (en pixels) entre les caractères de l’en-tête de section. Cela permet de lire l’en-tête en petites tailles de police.",
+ "minimap.showMarkSectionHeaders": "Contrôle si les commentaires MARK : sont affichés en tant qu’en-têtes de section dans la minimap.",
+ "minimap.showRegionSectionHeaders": "Contrôle si les régions nommées sont affichées en tant qu’en-têtes de section dans la minimap.",
"minimap.showSlider": "Contrôle quand afficher le curseur du minimap.",
"minimap.side": "Contrôle le côté où afficher la minimap.",
"minimap.size": "Contrôle la taille du minimap.",
"minimap.size.fill": "Le minimap s'agrandit ou se réduit selon les besoins pour remplir la hauteur de l'éditeur (pas de défilement).",
"minimap.size.fit": "Le minimap est réduit si nécessaire pour ne jamais dépasser la taille de l'éditeur (pas de défilement).",
"minimap.size.proportional": "Le minimap a la même taille que le contenu de l'éditeur (défilement possible).",
+ "mouseMiddleClickAction": "Contrôle ce qui se passe lorsque le bouton central de la souris est cliqué dans l'éditeur.",
"mouseWheelScrollSensitivity": "Un multiplicateur à utiliser sur les `deltaX` et `deltaY` des événements de défilement de roulette de souris.",
"mouseWheelZoom": "Faire un zoom sur la police de l'éditeur quand l'utilisateur fait tourner la roulette de la souris tout en maintenant la touche 'Ctrl' enfoncée.",
+ "mouseWheelZoom.mac": "Faites un zoom sur la police de l’éditeur quand l’utilisateur fait tourner la roulette de la souris tout en maintenant la touche « Cmd » enfoncée.",
+ "multiCursorLimit": "Contrôle le nombre maximal de curseurs pouvant se trouver dans un éditeur actif à la fois.",
"multiCursorMergeOverlapping": "Fusionnez plusieurs curseurs quand ils se chevauchent.",
"multiCursorModifier": "Modificateur à utiliser pour ajouter plusieurs curseurs avec la souris. Les mouvements de la souris Atteindre la définition et Ouvrir le lien s’adaptent afin qu’ils ne soient pas en conflit avec le [modificateur multicurseur](https://code.visualstudio.com/docs/editor/codebasics#_multicursor-modificateur).",
"multiCursorModifier.alt": "Mappe vers 'Alt' dans Windows et Linux, et vers 'Option' dans macOS.",
@@ -456,29 +646,40 @@
"multiCursorPaste": "Contrôle le collage quand le nombre de lignes du texte collé correspond au nombre de curseurs.",
"multiCursorPaste.full": "Chaque curseur colle le texte en entier.",
"multiCursorPaste.spread": "Chaque curseur colle une seule ligne de texte.",
- "occurrencesHighlight": "Contrôle si l'éditeur doit mettre en surbrillance les occurrences de symboles sémantiques.",
+ "occurrencesHighlight": "Contrôle si les occurrences doivent être mises en évidence dans les fichiers ouverts.",
+ "occurrencesHighlight.multiFile": "Expérimental : met en évidence les occurrences dans tous les fichiers ouverts valides.",
+ "occurrencesHighlight.off": "Ne met pas en surbrillance les occurrences.",
+ "occurrencesHighlight.singleFile": "Met en surbrillance les occurrences uniquement dans le fichier actif.",
+ "occurrencesHighlightDelay": "Contrôle le délai en millisecondes après lequel les occurrences sont mises en surbrillance.",
"off": "Les suggestions rapides sont désactivées",
"on": "Des suggestions rapides s’affichent dans le widget de suggestion",
+ "overtypeCursorStyle": "Contrôle le style du curseur en mode d’entrée de surtype.",
+ "overtypeOnPaste": "Contrôle si le collage doit être surtype.",
"overviewRulerBorder": "Contrôle si une bordure doit être dessinée autour de la règle de la vue d'ensemble.",
"padding.bottom": "Contrôle la quantité d'espace entre le bord inférieur de l'éditeur et la dernière ligne.",
"padding.top": "Contrôle la quantité d’espace entre le bord supérieur de l’éditeur et la première ligne.",
"parameterHints.cycle": "Détermine si le menu de suggestions de paramètres se ferme ou reviens au début lorsque la fin de la liste est atteinte.",
"parameterHints.enabled": "Active une fenêtre contextuelle qui affiche de la documentation sur les paramètres et des informations sur les types à mesure que vous tapez.",
+ "pasteAs.enabled": "Contrôle si vous pouvez coller le contenu de différentes manières.",
+ "pasteAs.showPasteSelector": "Contrôle l’affichage d’un widget lors du collage de contenu dans l’éditeur. Ce widget vous permet de contrôler la manière dont le fichier est collé.",
+ "pasteAs.showPasteSelector.afterPaste": "Afficher le widget du sélecteur de collage une fois le contenu collé dans l’éditeur.",
+ "pasteAs.showPasteSelector.never": "Ne jamais afficher le widget de sélection de collage. Au lieu de cela, le comportement de collage par défaut est toujours utilisé.",
"peekWidgetDefaultFocus": "Contrôle s'il faut mettre le focus sur l'éditeur inline ou sur l'arborescence dans le widget d'aperçu.",
"peekWidgetDefaultFocus.editor": "Placer le focus sur l'éditeur à l'ouverture de l'aperçu",
"peekWidgetDefaultFocus.tree": "Focus sur l'arborescence à l'ouverture de l'aperçu",
- "quickSuggestions": "Contrôle si les suggestions doivent s’afficher automatiquement lors de la saisie. Cela peut être contrôlé pour la saisie dans des commentaires, des chaînes et d’autres codes. Vous pouvez configurer la suggestion rapide pour qu’elle s’affiche sous forme de texte fantôme ou avec le widget de suggestion. Tenez également compte du paramètre '{0}' qui contrôle si des suggestions sont déclenchées par des caractères spéciaux.",
+ "quickSuggestions": "Contrôle si les suggestions doivent s’afficher automatiquement lors de la saisie. Cela peut être contrôlé pour la saisie dans des commentaires, des chaînes et d’autres codes. Vous pouvez configurer la suggestion rapide pour qu’elle s’affiche sous forme de texte fantôme ou avec le widget de suggestion. Tenez également compte du {0}-setting qui contrôle si les suggestions sont déclenchées par des caractères spéciaux.",
"quickSuggestions.comments": "Activez les suggestions rapides dans les commentaires.",
"quickSuggestions.other": "Activez les suggestions rapides en dehors des chaînes et des commentaires.",
"quickSuggestions.strings": "Activez les suggestions rapides dans les chaînes.",
"quickSuggestionsDelay": "Contrôle le délai en millisecondes après lequel des suggestions rapides sont affichées.",
"renameOnType": "Contrôle si l'éditeur renomme automatiquement selon le type.",
- "renameOnTypeDeprecate": "Déprécié. Utilisez 'editor.linkedEditing' à la place.",
+ "renameOnTypeDeprecate": "Déprécié. Utilisez `#editor.linkedEditing#` à la place.",
"renderControlCharacters": "Contrôle si l’éditeur doit afficher les caractères de contrôle.",
"renderFinalNewline": "Affichez le dernier numéro de ligne quand le fichier se termine par un saut de ligne.",
"renderLineHighlight": "Contrôle la façon dont l’éditeur doit afficher la mise en surbrillance de la ligne actuelle.",
"renderLineHighlight.all": "Met en surbrillance la gouttière et la ligne actuelle.",
"renderLineHighlightOnlyWhenFocus": "Contrôle si l'éditeur doit afficher la mise en surbrillance de la ligne actuelle uniquement quand il a le focus.",
+ "renderRichScreenReaderContent": "Indique si le contenu enrichi pour les lecteurs d’écran doit être rendu lorsque le paramètre `#editor.editContext#` est activé.",
"renderWhitespace": "Contrôle la façon dont l’éditeur doit restituer les caractères espaces.",
"renderWhitespace.boundary": "Affiche les espaces blancs à l'exception des espaces uniques entre les mots.",
"renderWhitespace.selection": "Afficher les espaces blancs uniquement sur le texte sélectionné.",
@@ -487,14 +688,17 @@
"rulers": "Rendre les règles verticales après un certain nombre de caractères à espacement fixe. Utiliser plusieurs valeurs pour plusieurs règles. Aucune règle n'est dessinée si le tableau est vide.",
"rulers.color": "Couleur de cette règle d'éditeur.",
"rulers.size": "Nombre de caractères monospace auxquels cette règle d'éditeur effectue le rendu.",
+ "screenReaderAnnounceInlineSuggestion": "Contrôlez si les suggestions incluses sont annoncées par un lecteur d’écran.",
"scrollBeyondLastColumn": "Contrôle le nombre de caractères supplémentaires, au-delà duquel l’éditeur défile horizontalement.",
"scrollBeyondLastLine": "Contrôle si l’éditeur défile au-delà de la dernière ligne.",
+ "scrollOnMiddleClick": "Contrôle si l’éditeur défile lorsque le bouton central est enfoncé.",
"scrollPredominantAxis": "Faites défiler uniquement le long de l'axe prédominant quand le défilement est à la fois vertical et horizontal. Empêche la dérive horizontale en cas de défilement vertical sur un pavé tactile.",
"scrollbar.horizontal": "Contrôle la visibilité de la barre de défilement horizontale.",
"scrollbar.horizontal.auto": "La barre de défilement horizontale sera visible uniquement lorsque cela est nécessaire.",
"scrollbar.horizontal.fit": "La barre de défilement horizontale est toujours masquée.",
"scrollbar.horizontal.visible": "La barre de défilement horizontale est toujours visible.",
"scrollbar.horizontalScrollbarSize": "Hauteur de la barre de défilement horizontale.",
+ "scrollbar.ignoreHorizontalScrollbarInContentHeight": "Lorsqu'elle est définie, la barre de défilement horizontale n'augmentera pas la taille du contenu de l'éditeur.",
"scrollbar.scrollByPage": "Contrôle si les clics permettent de faire défiler par page ou d’accéder à la position de clic.",
"scrollbar.vertical": "Contrôle la visibilité de la barre de défilement verticale.",
"scrollbar.vertical.auto": "La barre de défilement verticale sera visible uniquement lorsque cela est nécessaire.",
@@ -502,8 +706,11 @@
"scrollbar.vertical.visible": "La barre de défilement verticale est toujours visible.",
"scrollbar.verticalScrollbarSize": "Largeur de la barre de défilement verticale.",
"selectLeadingAndTrailingWhitespace": "Indique si les espaces blancs de début et de fin doivent toujours être sélectionnés.",
+ "selectSubwords": "Indique si les sous-mots (tels que « foo » dans « fooBar » ou « foo_bar ») doivent être sélectionnés.",
"selectionClipboard": "Contrôle si le presse-papiers principal Linux doit être pris en charge.",
"selectionHighlight": "Contrôle si l'éditeur doit mettre en surbrillance les correspondances similaires à la sélection.",
+ "selectionHighlightMaxLength": "Contrôle combien de caractères peuvent être dans la sélection avant que les correspondances similaires ne soient pas mises en surbrillance. Définissez sur zéro pour un nombre illimité.",
+ "selectionHighlightMultiline": "Contrôle si l’éditeur doit mettre en surbrillance les correspondances de sélection qui s’étendent sur plusieurs lignes.",
"showDeprecated": "Contrôle les variables dépréciées barrées.",
"showFoldingControls": "Contrôle quand afficher les contrôles de pliage sur la reliure.",
"showFoldingControls.always": "Affichez toujours les contrôles de pliage.",
@@ -519,14 +726,19 @@
"stickyTabStops": "Émule le comportement des tabulations pour la sélection quand des espaces sont utilisés à des fins de mise en retrait. La sélection respecte les taquets de tabulation.",
"suggest.filterGraceful": "Détermine si le filtre et le tri des suggestions doivent prendre en compte les fautes de frappes mineures.",
"suggest.insertMode": "Contrôle si les mots sont remplacés en cas d'acceptation de la saisie semi-automatique. Notez que cela dépend des extensions adhérant à cette fonctionnalité.",
+ "suggest.insertMode.always": "Toujours sélectionner une suggestion lors du déclenchement automatique d’IntelliSense.",
"suggest.insertMode.insert": "Insérez une suggestion sans remplacer le texte à droite du curseur.",
+ "suggest.insertMode.never": "Ne jamais sélectionner une suggestion lors du déclenchement automatique d’IntelliSense.",
"suggest.insertMode.replace": "Insérez une suggestion et remplacez le texte à droite du curseur.",
+ "suggest.insertMode.whenQuickSuggestion": "Sélectionnez une suggestion uniquement lors du déclenchement d’IntelliSense au cours de la frappe.",
+ "suggest.insertMode.whenTriggerCharacter": "Sélectionnez une suggestion uniquement lors du déclenchement d’IntelliSense à partir d’un caractère déclencheur.",
"suggest.localityBonus": "Contrôle si le tri favorise les mots qui apparaissent à proximité du curseur.",
"suggest.maxVisibleSuggestions.dep": "Ce paramètre est déprécié. Le widget de suggestion peut désormais être redimensionné.",
"suggest.preview": "Contrôle si la sortie de la suggestion doit être affichée en aperçu dans l’éditeur.",
+ "suggest.selectionMode": "Contrôle si une suggestion est sélectionnée lorsque le widget s’affiche. Notez que cela ne s’applique qu’aux suggestions déclenchées automatiquement ({0} et {1}) et qu’une suggestion est toujours sélectionnée lorsqu’elle est explicitement invoquée, par exemple via `Ctrl+Espace`.",
"suggest.shareSuggestSelections": "Contrôle si les sélections de suggestion mémorisées sont partagées entre plusieurs espaces de travail et fenêtres (nécessite '#editor.suggestSelection#').",
"suggest.showIcons": "Contrôle s'il faut montrer ou masquer les icônes dans les suggestions.",
- "suggest.showInlineDetails": "Détermine si les détails du widget de suggestion sont inclus dans l'étiquette ou uniquement dans le widget de détails",
+ "suggest.showInlineDetails": "Détermine si les détails du widget de suggestion sont inclus dans l’étiquette ou uniquement dans le widget de détails.",
"suggest.showStatusBar": "Contrôle la visibilité de la barre d'état en bas du widget de suggestion.",
"suggest.snippetsPreventQuickSuggestions": "Contrôle si un extrait de code actif empêche les suggestions rapides.",
"suggestFontSize": "Taille de police pour le widget suggest. Lorsqu’elle est définie sur {0}, la valeur de {1} est utilisée.",
@@ -540,6 +752,8 @@
"tabCompletion.off": "Désactiver les complétions par tabulation.",
"tabCompletion.on": "La complétion par tabulation insérera la meilleure suggestion lorsque vous appuyez sur tab.",
"tabCompletion.onlySnippets": "Compléter les extraits de code par tabulation lorsque leur préfixe correspond. Fonctionne mieux quand les 'quickSuggestions' ne sont pas activées.",
+ "tabFocusMode": "Contrôle si l’éditeur reçoit des onglets ou les reporte au banc d’essai pour la navigation.",
+ "trimWhitespaceOnDelete": "Contrôle si l’éditeur supprime également l’espace blanc d’indentation de la ligne suivante lors de la suppression d’une nouvelle ligne.",
"unfoldOnClickAfterEndOfLine": "Contrôle si le fait de cliquer sur le contenu vide après une ligne pliée déplie la ligne.",
"unicodeHighlight.allowedCharacters": "Définit les caractères autorisés qui ne sont pas mis en surbrillance.",
"unicodeHighlight.allowedLocales": "Les caractères Unicode communs aux paramètres régionaux autorisés ne sont pas mis en surbrillance.",
@@ -552,7 +766,11 @@
"unusualLineTerminators.auto": "Les marques de fin de ligne inhabituelles sont automatiquement supprimées.",
"unusualLineTerminators.off": "Les marques de fin de ligne inhabituelles sont ignorées.",
"unusualLineTerminators.prompt": "Les marques de fin de ligne inhabituelles demandent à être supprimées.",
- "useTabStops": "L'insertion et la suppression des espaces blancs suit les taquets de tabulation.",
+ "useTabStops": "Les espaces et les onglets sont insérés et supprimés en alignement avec les taquets de tabulation.",
+ "wordBreak": "Contrôle les règles de séparateur de mots utilisées pour le texte chinois/japonais/coréen (CJC).",
+ "wordBreak.keepAll": "Les sauts de mots ne doivent pas être utilisés pour le texte chinois/japonais/coréen (CJC). Le comportement du texte non CJC est identique à celui du texte normal.",
+ "wordBreak.normal": "Utilisez la règle de saut de ligne par défaut.",
+ "wordSegmenterLocales": "Paramètres régionaux à utiliser pour la segmentation de mots lors de navigations ou d’opérations liées à un mot. Spécifiez la balise de langue BCP 47 du mot que vous souhaitez reconnaître (par exemple, ja, zh-CN, zh-Hant-TW, etc.).",
"wordSeparators": "Caractères utilisés comme séparateurs de mots durant la navigation ou les opérations basées sur les mots",
"wordWrap": "Contrôle comment les lignes doivent être limitées.",
"wordWrap.bounded": "Les lignes seront terminées au minimum du viewport et `#editor.wordWrapColumn#`.",
@@ -560,19 +778,28 @@
"wordWrap.on": "Le retour automatique à la ligne s'effectue en fonction de la largeur de la fenêtre d'affichage.",
"wordWrap.wordWrapColumn": "Les lignes seront terminées à `#editor.wordWrapColumn#`.",
"wordWrapColumn": "Contrôle la colonne de terminaison de l’éditeur lorsque `#editor.wordWrap#` est à `wordWrapColumn` ou `bounded`.",
+ "wrapOnEscapedLineFeeds": "Contrôle si le littéral `\\n` doit déclencher un wordWrap lorsque `#editor.wordWrap#` est activé.\r\n\r\nPar exemple :\r\n```c\r\nchar* str=\"hello\\nworld\"\r\n```\r\ns'affichera comme suit\r\n```c\r\nchar* str=\"hello\\n\r\n world\"\r\n```",
"wrappingIndent": "Contrôle la mise en retrait des lignes justifiées.",
"wrappingIndent.deepIndent": "Les lignes justifiées obtiennent une mise en retrait +2 vers le parent. ",
"wrappingIndent.indent": "Les lignes justifiées obtiennent une mise en retrait +1 vers le parent.",
"wrappingIndent.none": "Aucune mise en retrait. Les lignes enveloppées commencent à la colonne 1.",
"wrappingIndent.same": "Les lignes enveloppées obtiennent la même mise en retrait que le parent.",
- "wrappingStrategy": "Contrôle l'algorithme qui calcule les points de wrapping.",
+ "wrappingStrategy": "Contrôle l’algorithme qui calcule les points d’habillage. Notez qu’en mode d’accessibilité, les options avancées sont utilisées pour une expérience optimale.",
"wrappingStrategy.advanced": "Délègue le calcul des points de wrapping au navigateur. Il s'agit d'un algorithme lent qui peut provoquer le gel des grands fichiers, mais qui fonctionne correctement dans tous les cas.",
"wrappingStrategy.simple": "Suppose que tous les caractères ont la même largeur. Il s'agit d'un algorithme rapide qui fonctionne correctement pour les polices à espacement fixe et certains scripts (comme les caractères latins) où les glyphes ont la même largeur."
},
"vs/editor/common/core/editorColorRegistry": {
"caret": "Couleur du curseur de l'éditeur.",
+ "deprecatedEditorActiveIndentGuide": "'editorIndentGuide.activeBackground' est déconseillé. Utilisez 'editorIndentGuide.activeBackground1' à la place.",
"deprecatedEditorActiveLineNumber": "L’ID est déprécié. Utilisez à la place 'editorLineNumber.activeForeground'.",
+ "deprecatedEditorIndentGuides": "'editorIndentGuide.background' est déconseillé. Utilisez 'editorIndentGuide.background1' à la place.",
"editorActiveIndentGuide": "Couleur des guides d'indentation de l'éditeur actif",
+ "editorActiveIndentGuide1": "Couleur des repaires de retrait de l'éditeur actifs (1).",
+ "editorActiveIndentGuide2": "Couleur des repaires de retrait de l'éditeur actifs (2).",
+ "editorActiveIndentGuide3": "Couleur des repaires de retrait de l'éditeur actifs (3).",
+ "editorActiveIndentGuide4": "Couleur des repaires de retrait de l'éditeur actifs (4).",
+ "editorActiveIndentGuide5": "Couleur des repaires de retrait de l'éditeur actifs (5).",
+ "editorActiveIndentGuide6": "Couleur des repaires de retrait de l'éditeur actifs (6).",
"editorActiveLineNumber": "Couleur des numéros de lignes actives de l'éditeur",
"editorBracketHighlightForeground1": "Couleur de premier plan des crochets (1). Nécessite l’activation de la coloration de la paire de crochets.",
"editorBracketHighlightForeground2": "Couleur de premier plan des crochets (2). Nécessite l’activation de la coloration de la paire de crochets.",
@@ -597,18 +824,30 @@
"editorBracketPairGuide.background6": "Couleur d’arrière-plan des repères de paire de crochets inactifs (6). Nécessite l’activation des repères de paire de crochets.",
"editorCodeLensForeground": "Couleur pour les indicateurs CodeLens",
"editorCursorBackground": "La couleur de fond du curseur de l'éditeur. Permet de personnaliser la couleur d'un caractère survolé par un curseur de bloc.",
+ "editorDimmedLineNumber": "Couleur de la ligne finale de l’éditeur lorsque editor.renderFinalNewline est défini sur grisé.",
"editorGhostTextBackground": "Couleur de l’arrière-plan du texte fantôme dans l’éditeur",
"editorGhostTextBorder": "Couleur de bordure du texte fantôme dans l’éditeur.",
"editorGhostTextForeground": "Couleur de premier plan du texte fantôme dans l’éditeur.",
"editorGutter": "Couleur de fond pour la bordure de l'éditeur. La bordure contient les marges pour les symboles et les numéros de ligne.",
"editorIndentGuides": "Couleur des repères de retrait de l'éditeur.",
+ "editorIndentGuides1": "Couleur des repères de retrait de l'éditeur (1).",
+ "editorIndentGuides2": "Couleur des repères de retrait de l'éditeur (2).",
+ "editorIndentGuides3": "Couleur des repères de retrait de l'éditeur (3).",
+ "editorIndentGuides4": "Couleur des repères de retrait de l'éditeur (4).",
+ "editorIndentGuides5": "Couleur des repères de retrait de l'éditeur (5).",
+ "editorIndentGuides6": "Couleur des repères de retrait de l'éditeur (6).",
"editorLineNumbers": "Couleur des numéros de ligne de l'éditeur.",
- "editorOverviewRulerBackground": "Couleur d'arrière-plan de la règle d'aperçu de l'éditeur. Utilisée uniquement quand la minimap est activée et placée sur le côté droit de l'éditeur.",
+ "editorMultiCursorPrimaryBackground": "Couleur d’arrière-plan du curseur de l’éditeur principal lorsque plusieurs curseurs sont présents. Permet de personnaliser la couleur d'un caractère survolé par un curseur de bloc.",
+ "editorMultiCursorPrimaryForeground": "Couleur du curseur de l’éditeur principal lorsque plusieurs curseurs sont présents.",
+ "editorMultiCursorSecondaryBackground": "Couleur d’arrière-plan des curseurs de l’éditeur secondaire lorsque plusieurs curseurs sont présents. Permet de personnaliser la couleur d'un caractère survolé par un curseur de bloc.",
+ "editorMultiCursorSecondaryForeground": "Couleur des curseurs de l’éditeur secondaire lorsque plusieurs curseurs sont présents.",
+ "editorOverviewRulerBackground": "Couleur d’arrière-plan de la règle de vue d’ensemble de l’éditeur.",
"editorOverviewRulerBorder": "Couleur de la bordure de la règle d'aperçu.",
"editorRuler": "Couleur des règles de l'éditeur",
"editorUnicodeHighlight.background": "Couleur de fond utilisée pour mettre en évidence les caractères unicode",
"editorUnicodeHighlight.border": "Couleur de bordure utilisée pour mettre en surbrillance les caractères Unicode",
"editorWhitespaces": "Couleur des espaces blancs dans l'éditeur.",
+ "inactiveLineHighlight": "Couleur d’arrière-plan de la mise en surbrillance de la ligne à la position du curseur lorsque l’éditeur n’est pas actif.",
"lineHighlight": "Couleur d'arrière-plan de la mise en surbrillance de la ligne à la position du curseur.",
"lineHighlightBorderBox": "Couleur d'arrière-plan de la bordure autour de la ligne à la position du curseur.",
"overviewRuleError": "Couleur du marqueur de la règle d'aperçu pour les erreurs.",
@@ -623,6 +862,15 @@
"unnecessaryCodeOpacity": "Opacité du code source inutile (non utilisé) dans l'éditeur. Par exemple, '#000000c0' affiche le code avec une opacité de 75 %. Pour les thèmes à fort contraste, utilisez la couleur de thème 'editorUnnecessaryCode.border' pour souligner le code inutile au lieu d'utiliser la transparence."
},
"vs/editor/common/editorContextKeys": {
+ "accessibleDiffViewerVisible": "Indique si la visionneuse diff accessible est visible",
+ "comparingMovedCode": "Indique si un bloc de code déplacé est sélectionné pour être comparé",
+ "diffEditorHasChanges": "Indique si l’éditeur de différences a des modifications",
+ "diffEditorInlineMode": "Indique si le mode inline est actif",
+ "diffEditorModifiedUri": "URI du document modifié",
+ "diffEditorModifiedWritable": "Indique si la modification est accessible en écriture dans l’éditeur de différences",
+ "diffEditorOriginalUri": "URI du document d’origine",
+ "diffEditorOriginalWritable": "Indique si la modification est accessible en écriture dans l’éditeur de différences",
+ "diffEditorRenderSideBySideInlineBreakpointReached": "Indique si le point d'arrêt Render Side by Side ou inline de l'éditeur de différences est atteint",
"editorColumnSelection": "Indique si 'editor.columnSelection' est activé",
"editorFocus": "Indique si l'éditeur ou un widget de l'éditeur a le focus (par exemple, le focus se trouve sur le widget de recherche)",
"editorHasCodeActionsProvider": "Indique si l'éditeur a un fournisseur d'actions de code",
@@ -645,15 +893,81 @@
"editorHasSelection": "Indique si du texte est sélectionné dans l'éditeur",
"editorHasSignatureHelpProvider": "Indique si l'éditeur a un fournisseur d'aide sur les signatures",
"editorHasTypeDefinitionProvider": "Indique si l'éditeur a un fournisseur de définitions de type",
+ "editorHoverFocused": "Indique si le pointage de l’éditeur est ciblé",
"editorHoverVisible": "Indique si le pointage de l'éditeur est visible",
"editorLangId": "Identificateur de langage de l'éditeur",
- "editorReadonly": "Indique si l'éditeur est en lecture seule",
+ "editorReadonly": "Indique si l’éditeur est en lecture seule",
"editorTabMovesFocus": "Indique si la touche Tab permet de déplacer le focus hors de l'éditeur",
"editorTextFocus": "Indique si le texte de l'éditeur a le focus (le curseur clignote)",
"inCompositeEditor": "Indique si l'éditeur fait partie d'un éditeur plus important (par exemple Notebooks)",
"inDiffEditor": "Indique si le contexte est celui d'un éditeur de différences",
+ "inMultiDiffEditor": "Indique si le contexte est celui d'un éditeur de différences multiples",
+ "isEmbeddedDiffEditor": "Indique si le contexte est celui d’un éditeur de différences intégré",
+ "multiDiffEditorAllCollapsed": "Indique si tous les fichiers de l’éditeur de différences sont réduits",
+ "standaloneColorPickerFocused": "Indique si le sélecteur de couleurs autonome est prioritaire",
+ "standaloneColorPickerVisible": "Indique si le sélecteur de couleurs autonome est visible",
+ "stickyScrollFocused": "Indique si le défilement épinglé a le focus",
+ "stickyScrollVisible": "Indique si le défilement épinglé est visible",
"textInputFocus": "Indique si un éditeur ou une entrée de texte mis en forme a le focus (le curseur clignote)"
},
+ "vs/editor/common/languages": {
+ "Array": "tableau",
+ "Boolean": "booléen",
+ "Class": "classe",
+ "Constant": "constante",
+ "Constructor": "constructeur",
+ "Enum": "énumération",
+ "EnumMember": "membre d'énumération",
+ "Event": "événement",
+ "Field": "champ",
+ "File": "fichier",
+ "Function": "fonction",
+ "Interface": "interface",
+ "Key": "clé",
+ "Method": "méthode",
+ "Module": "module",
+ "Namespace": "espace de noms",
+ "Null": "NULL",
+ "Number": "nombre",
+ "Object": "objet",
+ "Operator": "opérateur",
+ "Package": "package",
+ "Property": "propriété",
+ "String": "chaîne",
+ "Struct": "struct",
+ "TypeParameter": "paramètre de type",
+ "Variable": "variable",
+ "suggestWidget.kind.class": "Classe",
+ "suggestWidget.kind.color": "Couleur",
+ "suggestWidget.kind.constant": "Constante",
+ "suggestWidget.kind.constructor": "Constructeur",
+ "suggestWidget.kind.customcolor": "Couleur personnalisée",
+ "suggestWidget.kind.enum": "Enum",
+ "suggestWidget.kind.enumMember": "Membre enum",
+ "suggestWidget.kind.event": "Événement",
+ "suggestWidget.kind.field": "Champ",
+ "suggestWidget.kind.file": "Fichier",
+ "suggestWidget.kind.folder": "Dossier",
+ "suggestWidget.kind.function": "Fonction",
+ "suggestWidget.kind.interface": "Interface",
+ "suggestWidget.kind.issue": "Problème",
+ "suggestWidget.kind.keyword": "Mot clé",
+ "suggestWidget.kind.method": "Méthode",
+ "suggestWidget.kind.module": "Module",
+ "suggestWidget.kind.operator": "Opérateur",
+ "suggestWidget.kind.property": "Propriété",
+ "suggestWidget.kind.reference": "Référence",
+ "suggestWidget.kind.snippet": "Extrait",
+ "suggestWidget.kind.struct": "Struct",
+ "suggestWidget.kind.text": "Texte",
+ "suggestWidget.kind.tool": "Outil",
+ "suggestWidget.kind.typeParameter": "Paramètre de type",
+ "suggestWidget.kind.unit": "Unité",
+ "suggestWidget.kind.user": "Utilisateur",
+ "suggestWidget.kind.value": "Valeur",
+ "suggestWidget.kind.variable": "Variable",
+ "symbolAriaLabel": "{0} ({1})"
+ },
"vs/editor/common/languages/modesRegistry": {
"plainText.alias": "Texte brut"
},
@@ -661,40 +975,58 @@
"edit": "Frappe en cours"
},
"vs/editor/common/standaloneStrings": {
- "accessibilityHelpMessage": "Appuyez sur Alt+F1 pour voir les options d'accessibilité.",
- "auto_off": "L'éditeur est configuré pour ne jamais être optimisé en cas d'utilisation avec un lecteur d'écran, ce qui n'est pas le cas pour le moment.",
- "auto_on": "L'éditeur est configuré pour être optimisé en cas d'utilisation avec un lecteur d'écran.",
+ "acceptSuggestAction": "Acceptez la suggestion{0} pour accepter la suggestion sélectionnée.",
+ "accessibilityHelpTitle": "Aide sur l’accessibilité",
+ "auto_off": "L’application est configurée de sorte à ne jamais être optimisée pour une utilisation avec un lecteur d’écran.",
+ "auto_on": "L'application est configurée pour être optimisée en cas d'utilisation avec un lecteur d'écran.",
"bulkEditServiceSummary": "{0} modifications dans {1} fichiers",
- "changeConfigToOnMac": "Pour configurer l'éditeur de manière à être optimisé en cas d'utilisation d'un lecteur d'écran, appuyez sur Commande+E maintenant.",
- "changeConfigToOnWinLinux": "Pour configurer l'éditeur de manière à être optimisé en cas d'utilisation d'un lecteur d'écran, appuyez sur Contrôle+E maintenant.",
- "editableDiffEditor": "dans un volet d'un éditeur de différences.",
- "editableEditor": " dans un éditeur de code",
+ "changeConfigToOnMac": "Configurez l’application pour qu’elle soit optimisée pour une utilisation avec un lecteur d’écran (Commande+E).",
+ "changeConfigToOnWinLinux": "Configurez l’application pour qu’elle soit optimisée pour une utilisation avec un lecteur d’écran (Ctrl+E).",
+ "chatEditing.navigation": "Naviguez entre les modifications dans l’éditeur avec la navigation précédente{0} et suivante{1} et accepter{2}, refuser{3} ou voir la différence{4} pour la modification actuelle. Acceptez les modifications sur tous les fichiers{5}.",
+ "chatEditorModification": "L’éditeur contient des modifications en attente qui ont été effectuées par la conversation.",
+ "chatEditorRequestInProgress": "L’éditeur attend actuellement que les modifications soient apportées par la conversation.",
+ "codeFolding": "Utilisez le pliage de code pour réduire des blocs de code et vous concentrer sur le code qui vous intéresse via la commande Toggle Folding{0}.",
+ "debug.startDebugging": "La commande Debug : Start Debugging{0} démarrera une session de débogage.",
+ "debugConsole.addToWatch": "La commande Debug:Add to Watch{0} ajoute le texte sélectionné dans la vue Espion.",
+ "debugConsole.executeSelection": "La commande Debug : Execute Selection{0} exécute le texte sélectionné dans la console de débogage.",
+ "debugConsole.setBreakpoint": "La commande Debug : Inline Breakpoint{0} définit ou annule un point d’arrêt à la position actuelle du curseur dans l’éditeur actif.",
+ "defaultWindowTitleExcludingEditorState": "activeEditorState, tel que modifié, problèmes, etc., n’est actuellement pas inclus dans le cadre du paramètre window.title par défaut. Activez-le avec accessibility.windowTitleOptimized.",
+ "defaultWindowTitleIncludesEditorState": "activeEditorState, tel que modifié, problèmes, etc., est inclus dans le cadre du paramètre window.title par défaut. Désactivez-le avec accessibility.windowTitleOptimized.",
+ "editableDiffEditor": "Vous êtes dans un volet d’un éditeur de différences.",
+ "editableEditor": "Vous êtes dans un éditeur de code.",
"editorViewAccessibleLabel": "Contenu de l'éditeur",
- "emergencyConfOn": "Remplacement du paramètre 'accessibilitySupport' par 'on'.",
+ "goToSymbol": "Accédez à Symboles{0} pour naviguer rapidement entre les symboles du fichier actif.",
"gotoLineActionLabel": "Accéder à la ligne/colonne...",
+ "gotoOffsetActionLabel": "Accéder au décalage...",
"helpQuickAccess": "Afficher tous les fournisseurs d'accès rapide",
"inspectTokens": "Développeur : Inspecter les jetons",
- "multiSelection": "{0} sélections",
- "multiSelectionRange": "{0} sélections ({1} caractères sélectionnés)",
- "noSelection": "Aucune sélection",
- "openDocMac": "Appuyez sur Commande+H maintenant pour ouvrir une fenêtre de navigateur avec plus d'informations sur l'accessibilité de l'éditeur.",
- "openDocWinLinux": "Appuyez sur Contrôle+H maintenant pour ouvrir une fenêtre de navigateur avec plus d'informations sur l'accessibilité de l'éditeur.",
- "openingDocs": "Ouverture de la page de documentation sur l'accessibilité de l'éditeur.",
- "outroMsg": "Vous pouvez masquer cette info-bulle et revenir à l'éditeur en appuyant sur Échap ou Maj+Échap.",
+ "intellisense": "Utilisez IntelliSense pour améliorer l’efficacité du codage et réduire les erreurs. Suggestions de déclencheur{0}.",
+ "listAnnouncementsCommand": "Exécutez la commande : répertorier les annonces de signal pour obtenir une vue d’ensemble des annonces et de leur état actuel.",
+ "listSignalSoundsCommand": "Exécutez la commande : répertorier les sons du signal pour obtenir une vue d’ensemble de tous les sons et de leur état actuel.",
+ "openingDocs": "Ouverture de la page de documentation Accessibilité.",
+ "quickChatCommand": "Activez le chat rapide{0} pour ouvrir ou fermer une session de chat.",
"quickCommandActionHelp": "Commandes d'affichage et d'exécution",
"quickCommandActionLabel": "Palette de commandes",
"quickOutlineActionLabel": "Accéder au symbole...",
"quickOutlineByCategoryActionLabel": "Accéder au symbole par catégorie...",
- "readonlyDiffEditor": "dans un volet en lecture seule d'un éditeur de différences.",
- "readonlyEditor": " dans un éditeur de code en lecture seule",
+ "readonlyDiffEditor": "Vous êtes dans un volet en lecture seule d’un éditeur de différences.",
+ "readonlyEditor": "Vous êtes dans un éditeur de code en lecture seule.",
+ "screenReaderModeDisabled": "Mode optimisé du lecteur d’écran désactivé.",
+ "screenReaderModeEnabled": "Mode optimisé du lecteur d’écran activé.",
"showAccessibilityHelpAction": "Afficher l'aide sur l'accessibilité",
- "singleSelection": "Ligne {0}, colonne {1}",
- "singleSelectionRange": "Ligne {0}, colonne {1} ({2} sélectionné)",
- "tabFocusModeOffMsg": "Appuyez sur Tab dans l'éditeur pour insérer le caractère de tabulation. Activez ou désactivez ce comportement en appuyant sur {0}.",
- "tabFocusModeOffMsgNoKb": "Appuyez sur Tab dans l'éditeur pour insérer le caractère de tabulation. La commande {0} ne peut pas être déclenchée par une combinaison de touches.",
- "tabFocusModeOnMsg": "Appuyez sur Tab dans l'éditeur pour déplacer le focus vers le prochain élément pouvant être désigné comme élément actif. Activez ou désactivez ce comportement en appuyant sur {0}.",
- "tabFocusModeOnMsgNoKb": "Appuyez sur Tab dans l'éditeur pour déplacer le focus vers le prochain élément pouvant être désigné comme élément actif. La commande {0} ne peut pas être déclenchée par une combinaison de touches.",
- "toggleHighContrast": "Activer/désactiver le thème à contraste élevé"
+ "showOrFocusHover": "Affichez ou orientez le pointage{0} pour lire les informations sur le symbole actuel.",
+ "startInlineChatCommand": "Démarrez la conversation en ligne{0} pour créer une session de conversation dans l’éditeur.",
+ "stickScrollKb": "Focus sur le défilement épinglé{0} pour concentrer les étendues actuellement imbriqués.",
+ "suggestActionsKb": "Activez le widget de suggestion{0} pour afficher les suggestions inline possibles.",
+ "tabFocusModeOffMsg": "Permet d’appuyer sur Tab dans l’éditeur actif pour insérer le caractère de tabulation. Activer/désactiver ce comportement{0}.",
+ "tabFocusModeOnMsg": "Appuyez sur Tab dans l’éditeur actif pour déplacer le focus vers le prochain élément pouvant être ciblé. Activer/désactiver ce comportement{0}.",
+ "toggleHighContrast": "Activer/désactiver le thème à contraste élevé",
+ "toggleSuggestionFocus": "Basculez le focus entre le widget de suggestion et l’éditeur{0} et basculez le focus sur les détails avec{1} pour en savoir plus sur la suggestion.",
+ "toolbar": "Autour du banc d’essai, lorsque le lecteur d’écran annonce que vous êtes arrivé dans une barre d’outils, utilisez des touches étroites pour parcourir les actions de la barre d’outils."
+ },
+ "vs/editor/common/viewLayout/viewLineRenderer": {
+ "overflow.chars": "{0} caractères",
+ "showMore": "Afficher plus ({0})"
},
"vs/editor/contrib/anchorSelect/browser/anchorSelect": {
"anchorSet": "Ancre définie sur {0}:{1}",
@@ -708,7 +1040,9 @@
"miGoToBracket": "Accéder au &&crochet",
"overviewRulerBracketMatchForeground": "Couleur du marqueur de la règle d'aperçu pour rechercher des parenthèses.",
"smartSelect.jumpBracket": "Atteindre le crochet",
- "smartSelect.selectToBracket": "Sélectionner jusqu'au crochet"
+ "smartSelect.removeBrackets": "Supprimer les crochets",
+ "smartSelect.selectToBracket": "Sélectionner jusqu'au crochet",
+ "smartSelect.selectToBracketDescription": "Sélectionner le texte à l’intérieur et inclure les crochets ou accolades"
},
"vs/editor/contrib/caretOperations/browser/caretOperations": {
"caret.moveLeft": "Déplacer le texte sélectionné à gauche",
@@ -728,8 +1062,10 @@
"miPaste": "Co&&ller",
"share": "Partager"
},
+ "vs/editor/contrib/codeAction/browser/codeAction": {
+ "applyCodeActionFailed": "Une erreur inconnue s'est produite à l'application de l'action du code"
+ },
"vs/editor/contrib/codeAction/browser/codeActionCommands": {
- "applyCodeActionFailed": "Une erreur inconnue s'est produite à l'application de l'action du code",
"args.schema.apply": "Contrôle quand les actions retournées sont appliquées.",
"args.schema.apply.first": "Appliquez toujours la première action de code retournée.",
"args.schema.apply.ifSingle": "Appliquez la première action de code retournée si elle est la seule.",
@@ -754,30 +1090,65 @@
"editor.action.source.noneMessage.preferred.kind": "Aucune action source par défaut disponible pour '{0}'",
"fixAll.label": "Tout corriger",
"fixAll.noneMessage": "Aucune action Tout corriger disponible",
+ "organizeImports.description": "Organisez les importations dans le fichier actif. Également appelé « Optimiser les importations » par certains outils",
"organizeImports.label": "Organiser les importations",
"quickfix.trigger.label": "Correction rapide...",
"refactor.label": "Remanier...",
- "refactor.preview.label": "Refactoriser avec l’aperçu...",
"source.label": "Action de la source"
},
- "vs/editor/contrib/codeAction/browser/codeActionMenu": {
- "CodeActionMenuVisible": "Indique si le widget de liste d’actions de code est visible",
- "label": "{0} to Refactor, {1} to Preview"
+ "vs/editor/contrib/codeAction/browser/codeActionContributions": {
+ "includeNearbyQuickFixes": "Activer/désactiver l'affichage du correctif rapide le plus proche dans une ligne lorsque vous n'êtes pas actuellement en cours de diagnostic.",
+ "showCodeActionHeaders": "Activez/désactivez l’affichage des en-têtes de groupe dans le menu d’action du code.",
+ "triggerOnFocusChange": "Activez le déclenchement de {0} lorsque {1} est défini sur {2}. Les actions de code doivent être définies sur {3} pour être déclenchées pour les modifications de fenêtre et de focus."
},
- "vs/editor/contrib/codeAction/browser/codeActionWidgetContribution": {
- "codeActionWidget": "L’activation de cette option ajuste le mode de rendu du menu d’action du code."
+ "vs/editor/contrib/codeAction/browser/codeActionController": {
+ "editingNewSelection": "Contexte : {0} à la ligne {1} et à la colonne {2}.",
+ "hideMoreActions": "Masquer désactivé",
+ "showMoreActions": "Afficher les éléments désactivés"
+ },
+ "vs/editor/contrib/codeAction/browser/codeActionMenu": {
+ "codeAction.widget.id.convert": "Réécrire",
+ "codeAction.widget.id.extract": "Extraire",
+ "codeAction.widget.id.inline": "Inline",
+ "codeAction.widget.id.more": "Plus d’actions...",
+ "codeAction.widget.id.move": "Déplacer",
+ "codeAction.widget.id.quickfix": "Correctif rapide",
+ "codeAction.widget.id.source": "Action source",
+ "codeAction.widget.id.surround": "Entourer de"
},
"vs/editor/contrib/codeAction/browser/lightBulbWidget": {
"codeAction": "Afficher les actions de code",
+ "codeActionAutoRun": "Exécuter : {0}",
"codeActionWithKb": "Afficher les actions de code ({0})",
+ "gutterLightbulbAIFixAutoFixWidget": "Icône qui génère le menu actions de code à partir de la reliure quand il n’y a pas d’espace dans l’éditeur et qu’un correctif IA et un correctif rapide sont disponibles.",
+ "gutterLightbulbAIFixWidget": "Icône qui génère le menu actions de code à partir de la reliure quand il n’y a pas d’espace dans l’éditeur et qu’un correctif IA est disponible.",
+ "gutterLightbulbAutoFixWidget": "Icône qui génère le menu actions de code à partir de la reliure quand l’éditeur n’a pas d’espace et qu’un correctif rapide est disponible.",
+ "gutterLightbulbSparkleFilledWidget": "Icône qui génère le menu actions de code à partir de la reliure quand il n’y a pas d’espace dans l’éditeur et qu’un correctif IA et un correctif rapide sont disponibles.",
+ "gutterLightbulbWidget": "Icône qui génère le menu Actions de code à partir de la reliure quand il n’y a pas d’espace dans l’éditeur.",
"preferredcodeActionWithKb": "Afficher les actions de code. Correctif rapide disponible par défaut ({0})"
},
"vs/editor/contrib/codelens/browser/codelensController": {
+ "placeHolder": "Sélectionner une commande",
"showLensOnLine": "Afficher les commandes Code Lens de la ligne actuelle"
},
- "vs/editor/contrib/colorPicker/browser/colorPickerWidget": {
+ "vs/editor/contrib/colorPicker/browser/colorPickerParts/colorPickerCloseButton": {
+ "closeIcon": "Icône pour fermer le sélecteur de couleurs"
+ },
+ "vs/editor/contrib/colorPicker/browser/colorPickerParts/colorPickerHeader": {
"clickToToggleColorOptions": "Cliquez pour activer/désactiver les options de couleur (rgb/hsl/hexadécimal)."
},
+ "vs/editor/contrib/colorPicker/browser/hoverColorPicker/hoverColorPickerParticipant": {
+ "hoverAccessibilityColorParticipant": "Il y a un sélecteur de couleurs ici."
+ },
+ "vs/editor/contrib/colorPicker/browser/standaloneColorPicker/standaloneColorPickerActions": {
+ "hideColorPicker": "Masquer le sélecteur de couleurs",
+ "hideColorPickerDescription": "Masquer le sélecteur de couleurs autonome.",
+ "insertColorWithStandaloneColorPicker": "Insérer une couleur avec un sélecteur de couleurs autonome",
+ "insertColorWithStandaloneColorPickerDescription": "Insérez des couleurs hexadécimales/rgb/hsl avec le sélecteur de couleurs autonome prioritaire.",
+ "mishowOrFocusStandaloneColorPicker": "&&Afficher ou mettre le focus sur le sélecteur de couleurs autonome",
+ "showOrFocusStandaloneColorPicker": "Afficher ou mettre le focus sur le sélecteur de couleurs autonome",
+ "showOrFocusStandaloneColorPickerDescription": "Affichez ou concentrez un sélecteur de couleurs autonome qui utilise le fournisseur de couleurs par défaut. Il affiche les couleurs hex/rgb/hsl."
+ },
"vs/editor/contrib/comment/browser/comment": {
"comment.block": "Activer/désactiver le commentaire de bloc",
"comment.line": "Activer/désactiver le commentaire de ligne",
@@ -798,24 +1169,54 @@
"context.minimap.slider.always": "Toujours",
"context.minimap.slider.mouseover": "Pointer la souris"
},
- "vs/editor/contrib/copyPaste/browser/copyPasteContribution": {
- "pasteActions": "Activez/désactivez l’exécution des modifications à partir des extensions lors du collage."
- },
"vs/editor/contrib/cursorUndo/browser/cursorUndo": {
"cursor.redo": "Restauration du curseur",
"cursor.undo": "Annulation du curseur"
},
- "vs/editor/contrib/dropIntoEditor/browser/dropIntoEditorContribution": {
- "dropProgressTitle": "Exécution des gestionnaires de dépôt..."
+ "vs/editor/contrib/dropOrPasteInto/browser/copyPasteContribution": {
+ "pasteAs": "Coller en tant que...",
+ "pasteAs.kind": "Type de la modification de collage à essayer pour les opérations de collage.\r\nS’il existe plusieurs modifications de ce type, l’éditeur affiche un sélecteur. S’il n’existe aucune modification de ce type, l’éditeur affiche un message d’erreur.",
+ "pasteAs.preferences": "Liste du type de modification de collage préféré à appliquer.\r\nLa première modification correspondant aux préférences est appliquée.",
+ "pasteAsText": "Coller au format texte"
+ },
+ "vs/editor/contrib/dropOrPasteInto/browser/copyPasteController": {
+ "noPreferences": "vide",
+ "pasteAsDefault": "Configurer l’action de collage par défaut",
+ "pasteAsError": "Nous n’avons trouvé aucune modification de collage n’a été trouvée pour « {0} »",
+ "pasteAsPickerPlaceholder": "Sélectionner l’action Coller",
+ "pasteAsProgress": "Exécution des gestionnaires de collage",
+ "pasteIntoEditorProgress": "Exécution des gestionnaires de collage. Cliquez pour annuler et effectuer un collage de base",
+ "pasteWidgetVisible": "Si le widget de collage est affiché",
+ "postPasteWidgetTitle": "Afficher les options de collage...",
+ "resolveProcess": "Résolution de la modification du collage pour '{0}'. Cliquez pour annuler"
+ },
+ "vs/editor/contrib/dropOrPasteInto/browser/defaultProviders": {
+ "defaultDropProvider.uriList.path": "Insérer un chemin d’accès",
+ "defaultDropProvider.uriList.paths": "Insérer des chemins d’accès",
+ "defaultDropProvider.uriList.relativePath": "Insérer un chemin d’accès relatif",
+ "defaultDropProvider.uriList.relativePaths": "Insérer des chemins d’accès relatifs",
+ "defaultDropProvider.uriList.uri": "Insérer un URI",
+ "defaultDropProvider.uriList.uris": "Insérer des URI",
+ "pasteHtmlLabel": "Insérer du code HTML",
+ "text.label": "Insérer du texte brut"
+ },
+ "vs/editor/contrib/dropOrPasteInto/browser/dropIntoEditorController": {
+ "dropIntoEditorProgress": "Exécution des gestionnaires de dépôt. Cliquez pour annuler",
+ "dropWidgetVisible": "Indique si le widget de suppression s’affiche",
+ "postDropWidgetTitle": "Afficher les options de suppression..."
+ },
+ "vs/editor/contrib/dropOrPasteInto/browser/postEditWidget": {
+ "applyError": "Erreur lors de l’application de la modification «{0}» :\r\n{1}",
+ "resolveError": "Erreur lors de la résolution de la modification «{0}» :\r\n{1}"
},
"vs/editor/contrib/editorState/browser/keybindingCancellation": {
"cancellableOperation": "Indique si l'éditeur exécute une opération annulable, par exemple 'Avoir un aperçu des références'"
},
"vs/editor/contrib/find/browser/findController": {
- "actions.find.isRegexOverride": "Remplace l’indicateur « Utiliser une expression régulière ».\r\nL’indicateur ne sera pas enregistré à l’avenir.\r\n0 : Ne rien faire\r\n1 : Vrai\r\n2 : Faux",
- "actions.find.matchCaseOverride": "Remplace l’indicateur « Cas mathématiques ».\r\nL’indicateur ne sera pas enregistré à l’avenir.\r\n0 : Ne rien faire\r\n1 : Vrai\r\n2 : Faux",
- "actions.find.preserveCaseOverride": "Remplace l’indicateur « Preserve Case ».\r\nL’indicateur ne sera pas enregistré à l’avenir.\r\n0 : Ne rien faire\r\n1 : Vrai\r\n2 : Faux",
- "actions.find.wholeWordOverride": "Remplace l’indicateur « Match Whole Word ».\r\nL’indicateur ne sera pas enregistré à l’avenir.\r\n0 : Ne rien faire\r\n1 : Vrai\r\n2 : Faux",
+ "findMatchAction.goToMatch": "Accéder à la correspondance...",
+ "findMatchAction.inputPlaceHolder": "Tapez un nombre pour accéder à une correspondance spécifique (entre 1 et {0})",
+ "findMatchAction.inputValidationMessage": "Veuillez entrer un nombre compris entre 1 et {0}",
+ "findMatchAction.noResults": "Aucune correspondance. Essayez de rechercher autre chose.",
"findNextMatchAction": "Rechercher suivant",
"findPreviousMatchAction": "Rechercher précédent",
"miFind": "&&Rechercher",
@@ -825,14 +1226,14 @@
"startFindAction": "Rechercher",
"startFindWithArgsAction": "Trouver avec des arguments",
"startFindWithSelectionAction": "Rechercher dans la sélection",
- "startReplace": "Remplacer"
+ "startReplace": "Remplacer",
+ "too.large.for.replaceall": "Le fichier est trop volumineux pour effectuer une opération Tout remplacer."
},
"vs/editor/contrib/find/browser/findWidget": {
"ariaSearchNoResult": "{0} trouvé pour '{1}'",
"ariaSearchNoResultEmpty": "{0} trouvé(s)",
"ariaSearchNoResultWithLineNum": "{0} trouvé pour '{1}', sur {2}",
"ariaSearchNoResultWithLineNumNoCurrentMatch": "{0} trouvé pour '{1}'",
- "ctrlEnter.keybindingChanged": "La combinaison Ctrl+Entrée permet désormais d'ajouter un saut de ligne au lieu de tout remplacer. Vous pouvez modifier le raccourci clavier de editor.action.replaceAll pour redéfinir le comportement.",
"findCollapsedIcon": "Icône permettant d'indiquer que le widget de recherche de l'éditeur est réduit.",
"findExpandedIcon": "Icône permettant d'indiquer que le widget de recherche de l'éditeur est développé.",
"findNextMatchIcon": "Icône de l'option Rechercher suivant dans le widget de recherche de l'éditeur.",
@@ -842,6 +1243,7 @@
"findSelectionIcon": "Icône de l'option Rechercher dans la sélection dans le widget de recherche de l'éditeur.",
"label.closeButton": "Fermer",
"label.find": "Rechercher",
+ "label.findDialog": "Rechercher/remplacer",
"label.matchesLocation": "{0} sur {1}",
"label.nextMatchButton": "Correspondance suivante",
"label.noResults": "Aucun résultat",
@@ -856,44 +1258,42 @@
"title.matchesCountLimit": "Seuls les {0} premiers résultats sont mis en évidence, mais toutes les opérations de recherche fonctionnent sur l’ensemble du texte."
},
"vs/editor/contrib/folding/browser/folding": {
- "createManualFoldRange.label": "Create Manual Folding Range from Selection",
- "editorGutter.foldingControlForeground": "Couleur du contrôle de pliage dans la marge de l'éditeur.",
+ "createManualFoldRange.label": "Créer une plage de pliage à partir de la sélection",
"foldAction.label": "Plier",
"foldAllAction.label": "Plier tout",
"foldAllBlockComments.label": "Replier tous les commentaires de bloc",
- "foldAllExcept.label": "Plier toutes les régions sauf celles sélectionnées",
+ "foldAllExcept.label": "Plier tout, sauf les éléments sélectionnés",
"foldAllMarkerRegions.label": "Replier toutes les régions",
- "foldBackgroundBackground": "Couleur d'arrière-plan des gammes pliées. La couleur ne doit pas être opaque pour ne pas cacher les décorations sous-jacentes.",
"foldLevelAction.label": "Niveau de pliage {0}",
"foldRecursivelyAction.label": "Plier de manière récursive",
"gotoNextFold.label": "Accéder à la plage de pliage suivante",
"gotoParentFold.label": "Atteindre le pli parent",
"gotoPreviousFold.label": "Accéder à la plage de pliage précédente",
- "maximum fold ranges": "Le nombre de régions pliables est limité à un maximum de {0}. Augmentez l’option de configuration ['Folding Maximum Regions'](command:workbench.action.openSettings?[\"editor.foldingMaximumRegions\"]) pour en activer d’autres.",
- "removeManualFoldingRanges.label": "Remove Manual Folding Ranges",
+ "removeManualFoldingRanges.label": "Supprimer les plages de pliage manuelles",
"toggleFoldAction.label": "Activer/désactiver le pliage",
+ "toggleFoldRecursivelyAction.label": "Activer/désactiver le repli récursif",
+ "toggleImportFold.label": "Activer/désactiver le pliage d’importation",
"unFoldRecursivelyAction.label": "Déplier de manière récursive",
"unfoldAction.label": "Déplier",
"unfoldAllAction.label": "Déplier tout",
- "unfoldAllExcept.label": "Déplier toutes les régions sauf celles sélectionnées",
+ "unfoldAllExcept.label": "Déplier tout, sauf les éléments sélectionnés",
"unfoldAllMarkerRegions.label": "Déplier toutes les régions"
},
"vs/editor/contrib/folding/browser/foldingDecorations": {
+ "collapsedTextColor": "Couleur du texte réduit après la première ligne d’une plage pliée.",
+ "editorGutter.foldingControlForeground": "Couleur du contrôle de pliage dans la marge de l'éditeur.",
+ "foldBackgroundBackground": "Couleur d'arrière-plan des gammes pliées. La couleur ne doit pas être opaque pour ne pas cacher les décorations sous-jacentes.",
"foldingCollapsedIcon": "Icône des plages réduites dans la marge de glyphes de l'éditeur.",
"foldingExpandedIcon": "Icône des plages développées dans la marge de glyphes de l'éditeur.",
- "foldingManualCollapedIcon": "Icon for manually collapsed ranges in the editor glyph margin.",
- "foldingManualExpandedIcon": "Icon for manually expanded ranges in the editor glyph margin."
+ "foldingManualCollapedIcon": "Icône pour les plages réduites manuellement dans la marge de glyphe de l’éditeur.",
+ "foldingManualExpandedIcon": "Icône pour les plages développées manuellement dans la marge de glyphe de l’éditeur.",
+ "linesCollapsed": "Cliquez pour développer la plage.",
+ "linesExpanded": "Cliquez pour réduire la plage."
},
"vs/editor/contrib/fontZoom/browser/fontZoom": {
- "EditorFontZoomIn.label": "Agrandissement de l'éditeur de polices de caractères",
- "EditorFontZoomOut.label": "Rétrécissement de l'éditeur de polices de caractères",
- "EditorFontZoomReset.label": "Remise à niveau du zoom de l'éditeur de polices de caractères"
- },
- "vs/editor/contrib/format/browser/format": {
- "hint11": "1 modification de format effectuée à la ligne {0}",
- "hint1n": "1 modification de format effectuée entre les lignes {0} et {1}",
- "hintn1": "{0} modifications de format effectuées à la ligne {1}",
- "hintnn": "{0} modifications de format effectuées entre les lignes {1} et {2}"
+ "EditorFontZoomIn.label": "Augmenter la taille de police de l’éditeur",
+ "EditorFontZoomOut.label": "Diminuer la taille de police de l’éditeur",
+ "EditorFontZoomReset.label": "Réinitialiser la taille de police de l’éditeur"
},
"vs/editor/contrib/format/browser/formatActions": {
"formatDocument.label": "Mettre le document en forme",
@@ -983,8 +1383,8 @@
"vs/editor/contrib/gotoSymbol/browser/referencesModel": {
"aria.fileReferences.1": "1 symbole dans {0}, chemin complet {1}",
"aria.fileReferences.N": "{0} symboles dans {1}, chemin complet {2}",
- "aria.oneReference": "symbole dans {0} sur la ligne {1}, colonne {2}",
- "aria.oneReference.preview": "symbole dans {0} à la ligne {1}, colonne {2}, {3}",
+ "aria.oneReference": "dans {0} à la ligne {1} à la colonne {2}",
+ "aria.oneReference.preview": "{0}dans {1} à la ligne {2} à la colonne {3}",
"aria.result.0": "Résultats introuvables",
"aria.result.1": "1 symbole dans {0}",
"aria.result.n1": "{0} symboles dans {1}",
@@ -995,12 +1395,64 @@
"location": "Symbole {0} sur {1}",
"location.kb": "Symbole {0} sur {1}, {2} pour le suivant"
},
- "vs/editor/contrib/hover/browser/hover": {
+ "vs/editor/contrib/gpu/browser/gpuActions": {
+ "drawGlyph.label": "Dessiner un glyphe",
+ "gpuDebug.label": "Développeur : débogage du convertisseur GPU Rédacteur",
+ "logTextureAtlasStats.label": "Statistiques de l’atlas de texture de journal",
+ "saveTextureAtlas.label": "Enregistrer l’Atlas de textures"
+ },
+ "vs/editor/contrib/hover/browser/contentHoverRendered": {
+ "hoverAccessibilityStatusBar": "Il s’agit d’une barre d’état de pointage.",
+ "hoverAccessibilityStatusBarActionWithKeybinding": "Il a une action avec l’étiquette {0} et la combinaison de touches {1}.",
+ "hoverAccessibilityStatusBarActionWithoutKeybinding": "Il a une action avec l’étiquette {0}."
+ },
+ "vs/editor/contrib/hover/browser/hoverAccessibleViews": {
+ "decreaseVerbosity": "- Le niveau de verbosité de la partie de survol ciblée peut être diminué avec la commande Decrease Hover Verbosity.",
+ "increaseVerbosity": "- Le niveau de verbosité de la partie de survol ciblée peut être augmenté avec la commande Increase Hover Verbosity."
+ },
+ "vs/editor/contrib/hover/browser/hoverActionIds": {
+ "decreaseHoverVerbosityLevel": "Diminuer le niveau de détail du pointage",
+ "increaseHoverVerbosityLevel": "Augmenter le niveau de verbosité par pointage"
+ },
+ "vs/editor/contrib/hover/browser/hoverActions": {
+ "goToBottomHover": "Pointer vers le bas",
+ "goToBottomHoverDescription": "Atteindre le bas du pointage de l’éditeur.",
+ "goToTopHover": "Atteindre le pointage supérieur",
+ "goToTopHoverDescription": "Accédez au haut du pointage de l’éditeur.",
+ "hideHover": "Masquer le pointage",
+ "pageDownHover": "Pointer vers le bas de la page",
+ "pageDownHoverDescription": "Page suivante le pointage de l’éditeur.",
+ "pageUpHover": "Pointer vers le haut de la page",
+ "pageUpHoverDescription": "Page précédente le pointage de l’éditeur.",
+ "scrollDownHover": "Faire défiler le pointage vers le bas",
+ "scrollDownHoverDescription": "Faites défiler le pointeur de l’éditeur vers le bas.",
+ "scrollLeftHover": "Faire défiler vers la gauche au pointage",
+ "scrollLeftHoverDescription": "Faites défiler vers la gauche le pointeur de l’éditeur.",
+ "scrollRightHover": "Faire défiler le pointage vers la droite",
+ "scrollRightHoverDescription": "Faites défiler vers la droite le pointeur de l’éditeur.",
+ "scrollUpHover": "Faire défiler le pointage vers le haut",
+ "scrollUpHoverDescription": "Faites défiler vers le haut le pointage de l’éditeur.",
"showDefinitionPreviewHover": "Afficher le pointeur de l'aperçu de définition",
- "showHover": "Afficher par pointage"
+ "showDefinitionPreviewHoverDescription": "Afficher l’aperçu de définition survolé dans l’éditeur.",
+ "showOrFocusHover": "Afficher ou focus sur pointer",
+ "showOrFocusHover.focus.autoFocusImmediately": "Le pointage prend automatiquement le focus lorsqu’il apparaît.",
+ "showOrFocusHover.focus.focusIfVisible": "Le pointage prend le focus uniquement s’il est déjà visible.",
+ "showOrFocusHover.focus.noAutoFocus": "Le pointage ne prend pas automatiquement le focus.",
+ "showOrFocusHoverDescription": "Affichez ou concentrez le pointeur de l’éditeur qui affiche la documentation, les références et d’autres contenus pour un symbole à la position actuelle du curseur."
+ },
+ "vs/editor/contrib/hover/browser/hoverCopyButton": {
+ "hover.copied": "Copié dans le Presse-papiers",
+ "hover.copy": "Copier"
},
"vs/editor/contrib/hover/browser/markdownHoverParticipant": {
+ "decreaseHoverVerbosity": "Icône permettant de réduire le niveau de détail du pointage.",
+ "decreaseVerbosity": "Diminuer la verbosité par pointage",
+ "decreaseVerbosityWithKb": "Diminuer la verbosité par pointage ({0})",
+ "increaseHoverVerbosity": "Icône permettant d’augmenter le niveau de détail du pointage.",
+ "increaseVerbosity": "Augmenter la verbosité par pointage",
+ "increaseVerbosityWithKb": "Augmenter la verbosité par pointage ({0})",
"modesContentHover.loading": "Chargement en cours...",
+ "stopped rendering": "Rendu suspendu pour une longue ligne pour des raisons de performances. Cela peut être configuré via 'editor.stopRenderingLineAfter'.",
"too many characters": "La tokenisation des lignes longues est ignorée pour des raisons de performances. Cela peut être configurée via 'editor.maxTokenizationLineLength'."
},
"vs/editor/contrib/hover/browser/markerHoverParticipant": {
@@ -1009,19 +1461,26 @@
"quick fixes": "Correction rapide...",
"view problem": "Voir le problème"
},
- "vs/editor/contrib/inPlaceReplace/browser/inPlaceReplace": {
- "InPlaceReplaceAction.next.label": "Remplacer par la valeur suivante",
- "InPlaceReplaceAction.previous.label": "Remplacer par la valeur précédente"
- },
"vs/editor/contrib/indentation/browser/indentation": {
+ "changeTabDisplaySize": "Modifier la taille d’affichage des tabulations",
+ "changeTabDisplaySizeDescription": "Modifier la taille d’espace équivalente à l’onglet.",
"configuredTabSize": "Taille des tabulations configurée",
+ "currentTabSize": "Taille actuelle des tabulations",
+ "defaultTabSize": "Taille des tabulations par défaut",
"detectIndentation": "Détecter la mise en retrait à partir du contenu",
+ "detectIndentationDescription": "Détectez la mise en retrait du contenu.",
"editor.reindentlines": "Remettre en retrait les lignes",
+ "editor.reindentlinesDescription": "Réinsérez les lignes de l’éditeur.",
"editor.reindentselectedlines": "Réindenter les lignes sélectionnées",
+ "editor.reindentselectedlinesDescription": "Réinsérez les lignes sélectionnées de l’éditeur.",
"indentUsingSpaces": "Mettre en retrait avec des espaces",
+ "indentUsingSpacesDescription": "Utilisez la mise en retrait avec des espaces.",
"indentUsingTabs": "Mettre en retrait avec des tabulations",
+ "indentUsingTabsDescription": "Utilisez une mise en retrait avec des onglets.",
"indentationToSpaces": "Convertir les retraits en espaces",
+ "indentationToSpacesDescription": "Convertir la mise en retrait de l’onglet en espaces.",
"indentationToTabs": "Convertir les retraits en tabulations",
+ "indentationToTabsDescription": "Convertissez la mise en retrait des espaces en onglets.",
"selectTabWidth": "Sélectionner la taille des tabulations pour le fichier actuel"
},
"vs/editor/contrib/inlayHints/browser/inlayHintsHover": {
@@ -1034,31 +1493,109 @@
"links.navigate.kb.meta": "ctrl + clic",
"links.navigate.kb.meta.mac": "cmd + clic"
},
- "vs/editor/contrib/inlineCompletions/browser/ghostTextController": {
+ "vs/editor/contrib/inlineCompletions/browser/controller/commands": {
+ "accept": "Accepter",
+ "acceptLine": "Accepter la ligne",
+ "acceptWord": "Accepter Word",
+ "action.inlineSuggest.accept": "Accepter la suggestion en ligne",
+ "action.inlineSuggest.acceptNextLine": "Accepter la ligne suivante d’une suggestion en ligne",
+ "action.inlineSuggest.acceptNextWord": "Accepter le mot suivant de la suggestion inline",
+ "action.inlineSuggest.alwaysShowToolbar": "Toujours afficher la barre d'outils",
+ "action.inlineSuggest.dev.extractRepro": "Développeur : extraire l’état de suggestion inline",
+ "action.inlineSuggest.hide": "Masquer la suggestion en ligne",
+ "action.inlineSuggest.jump": "Accéder à la modification inline suivante",
"action.inlineSuggest.showNext": "Afficher la suggestion en ligne suivante",
"action.inlineSuggest.showPrevious": "Afficher la suggestion en ligne précédente",
- "action.inlineSuggest.trigger": "Déclencher la suggestion en ligne",
+ "action.inlineSuggest.toggleShowCollapsed": "Activer/désactiver l’affichage des suggestions incluses réduit",
+ "action.inlineSuggest.trigger": "Déclencher une suggestion en ligne",
+ "inlineSuggest.trigger.args": "Options pour déclencher des suggestions inline.",
+ "inlineSuggest.trigger.description": "Déclenche une suggestion inline dans l’éditeur.",
+ "jump": "Accéder",
+ "noInlineSuggestionAvailable": "Désolé, aucune suggestion inline n’est disponible.",
+ "reject": "Reject"
+ },
+ "vs/editor/contrib/inlineCompletions/browser/controller/inlineCompletionContextKeys": {
+ "cursorAtInlineEdit": "Indique si le curseur est à une modification inline",
+ "cursorBeforeGhostText": "Indiquez si le curseur est sur le texte fantôme",
+ "cursorInIndentation": "Indique si le curseur est en retrait",
+ "editor.hasSelection": "Indique si l’éditeur a une sélection",
+ "inInlineEditsPreviewEditor": "Indique si l’éditeur de code actuel affiche un aperçu des modifications inline",
+ "inlineEditVisible": "Indique si une modification inline est visible",
"inlineSuggestionHasIndentation": "Indique si la suggestion en ligne commence par un espace blanc",
"inlineSuggestionHasIndentationLessThanTabSize": "Indique si la suggestion incluse commence par un espace blanc inférieur à ce qui serait inséré par l’onglet.",
- "inlineSuggestionVisible": "Indique si une suggestion en ligne est visible"
+ "inlineSuggestionVisible": "Indique si une suggestion en ligne est visible",
+ "suppressSuggestions": "Indique si les suggestions doivent être supprimées pour la suggestion actuelle",
+ "tabShouldAcceptInlineEdit": "Indique si l’onglet doit accepter la modification inline.",
+ "tabShouldJumpToInlineEdit": "Indique si l’onglet doit passer à une modification inline."
+ },
+ "vs/editor/contrib/inlineCompletions/browser/controller/inlineCompletionsController": {
+ "showAccessibleViewHint": "Inspecter ceci dans l’affichage accessible ({0})"
},
- "vs/editor/contrib/inlineCompletions/browser/ghostTextHoverParticipant": {
- "acceptInlineSuggestion": "Accepter",
- "inlineSuggestionFollows": "Suggestion :",
- "showNextInlineSuggestion": "Suivant",
- "showPreviousInlineSuggestion": "Précédent"
+ "vs/editor/contrib/inlineCompletions/browser/hintsWidget/hoverParticipant": {
+ "hoverAccessibilityStatusBar": "Il y a des complétions incluses ici",
+ "inlineSuggestionFollows": "Suggestion :"
+ },
+ "vs/editor/contrib/inlineCompletions/browser/hintsWidget/inlineCompletionsHintsWidget": {
+ "content": "{0} ({1})",
+ "next": "Suivant",
+ "parameterHintsNextIcon": "Icône d'affichage du prochain conseil de paramètre.",
+ "parameterHintsPreviousIcon": "Icône d'affichage du précédent conseil de paramètre.",
+ "previous": "Précédent"
+ },
+ "vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/components/gutterIndicatorMenu": {
+ "accept": "Accepter",
+ "goto": "Atteindre",
+ "reject": "Rejeter",
+ "settings": "Paramètres",
+ "showCollapsed": "Afficher les éléments réduits",
+ "showExpanded": "Afficher la vue développée",
+ "snooze": "Répéter"
+ },
+ "vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/components/gutterIndicatorView": {
+ "inlineSuggestion": "Suggestion inline"
+ },
+ "vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/theme": {
+ "inlineEdit.gutterIndicator.background": "Couleur d’arrière-plan de l’indicateur de reliure d’édition inline.",
+ "inlineEdit.gutterIndicator.primaryBackground": "Couleur d’arrière-plan de l’indicateur de reliure de modification inline principale.",
+ "inlineEdit.gutterIndicator.primaryBorder": "Couleur de bordure pour l’indicateur de modification en ligne principal.",
+ "inlineEdit.gutterIndicator.primaryForeground": "Couleur de premier plan de l’indicateur de reliure d’édition inline principale.",
+ "inlineEdit.gutterIndicator.secondaryBackground": "Couleur d’arrière-plan de l’indicateur de reliure de modification inline secondaire.",
+ "inlineEdit.gutterIndicator.secondaryBorder": "Couleur de bordure pour l’indicateur de modification en ligne secondaire.",
+ "inlineEdit.gutterIndicator.secondaryForeground": "Couleur de premier plan de l’indicateur de reliure d’édition inline secondaire.",
+ "inlineEdit.gutterIndicator.successfulBackground": "Couleur d’arrière-plan de l’indicateur de reliure de modification inline réussie.",
+ "inlineEdit.gutterIndicator.successfulBorder": "Couleur de bordure pour l’indicateur de modification en ligne réussie.",
+ "inlineEdit.gutterIndicator.successfulForeground": "Couleur de premier plan de l’indicateur de reliure de modification inline réussie.",
+ "inlineEdit.modifiedBackground": "Couleur d’arrière-plan du texte modifié dans les modifications inline.",
+ "inlineEdit.modifiedBorder": "Couleur de bordure du texte modifié dans les modifications inline.",
+ "inlineEdit.modifiedChangedLineBackground": "Couleur d’arrière-plan des lignes modifiées dans le texte modifié des modifications inline.",
+ "inlineEdit.modifiedChangedTextBackground": "Couleur de superposition du texte modifié dans le texte modifié des modifications inline.",
+ "inlineEdit.originalBackground": "Couleur d’arrière-plan du texte d’origine dans les modifications inline.",
+ "inlineEdit.originalBorder": "Couleur de bordure du texte d’origine dans les modifications inline.",
+ "inlineEdit.originalChangedLineBackground": "Couleur d’arrière-plan des lignes modifiées dans le texte d’origine des modifications inline.",
+ "inlineEdit.originalChangedTextBackground": "Couleur de superposition du texte modifié dans le texte d’origine des modifications inline.",
+ "inlineEdit.tabWillAcceptModifiedBorder": "Couleur de bordure modifiée du widget d’édition en ligne lorsque la tabulation l’accepte.",
+ "inlineEdit.tabWillAcceptOriginalBorder": "Couleur de bordure d’origine du widget d’édition en ligne sur le texte original lorsque la tabulation l’accepte."
+ },
+ "vs/editor/contrib/inPlaceReplace/browser/inPlaceReplace": {
+ "InPlaceReplaceAction.next.label": "Remplacer par la valeur suivante",
+ "InPlaceReplaceAction.previous.label": "Remplacer par la valeur précédente"
+ },
+ "vs/editor/contrib/insertFinalNewLine/browser/insertFinalNewLine": {
+ "insertFinalNewLine": "Insérer une nouvelle ligne finale"
},
"vs/editor/contrib/lineSelection/browser/lineSelection": {
"expandLineSelection": "Développer la sélection de ligne"
},
"vs/editor/contrib/linesOperations/browser/linesOperations": {
"duplicateSelection": "Dupliquer la sélection",
- "editor.transformToKebabcase": "Transformer en affaire de kebab",
+ "editor.transformToCamelcase": "Transformer en casse mixte",
+ "editor.transformToKebabcase": "Transformer en kebab case",
"editor.transformToLowercase": "Transformer en minuscule",
+ "editor.transformToPascalcase": "Transformer en casse Pascal",
"editor.transformToSnakecase": "Transformer en snake case",
"editor.transformToTitlecase": "Appliquer la casse \"1re lettre des mots en majuscule\"",
"editor.transformToUppercase": "Transformer en majuscule",
- "editor.transpose": "Transposer les caractères autour du curseur",
+ "editor.transpose": "Transposer des caractères autour du curseur",
"lines.copyDown": "Copier la ligne en bas",
"lines.copyUp": "Copier la ligne en haut",
"lines.delete": "Supprimer la ligne",
@@ -1072,6 +1609,7 @@
"lines.moveDown": "Déplacer la ligne vers le bas",
"lines.moveUp": "Déplacer la ligne vers le haut",
"lines.outdent": "Ajouter un retrait négatif à la ligne",
+ "lines.reverseLines": "Inverser les lignes",
"lines.sortAscending": "Trier les lignes dans l'ordre croissant",
"lines.sortDescending": "Trier les lignes dans l'ordre décroissant",
"lines.trimTrailingWhitespace": "Découper l'espace blanc de fin",
@@ -1142,6 +1680,8 @@
"peekViewEditorGutterBackground": "Couleur d'arrière-plan de la bordure de l'éditeur d'affichage d'aperçu.",
"peekViewEditorMatchHighlight": "Couleur de mise en surbrillance d'une correspondance dans l'éditeur de l'affichage d'aperçu.",
"peekViewEditorMatchHighlightBorder": "Bordure de mise en surbrillance d'une correspondance dans l'éditeur de l'affichage d'aperçu.",
+ "peekViewEditorStickScrollBackground": "Couleur d’arrière-plan du défilement épinglé dans l’éditeur d’affichage d’aperçu.",
+ "peekViewEditorStickyScrollGutterBackground": "Couleur d'arrière-plan de la partie gouttière du défilement épinglé dans l'éditeur de vues en aperçu.",
"peekViewResultsBackground": "Couleur d'arrière-plan de la liste des résultats de l'affichage d'aperçu.",
"peekViewResultsFileForeground": "Couleur de premier plan des noeuds de fichiers dans la liste des résultats de l'affichage d'aperçu.",
"peekViewResultsMatchForeground": "Couleur de premier plan des noeuds de lignes dans la liste des résultats de l'affichage d'aperçu.",
@@ -1152,12 +1692,19 @@
"peekViewTitleForeground": "Couleur du titre de l'affichage d'aperçu.",
"peekViewTitleInfoForeground": "Couleur des informations sur le titre de l'affichage d'aperçu."
},
+ "vs/editor/contrib/placeholderText/browser/placeholderText.contribution": {
+ "placeholderForeground": "Couleur de premier plan du texte texte de l’espace réservé dans l’éditeur."
+ },
"vs/editor/contrib/quickAccess/browser/gotoLineQuickAccess": {
- "cannotRunGotoLine": "Ouvrez d'abord un éditeur de texte pour accéder à une ligne.",
- "gotoLineColumnLabel": "Atteindre la ligne {0} et le caractère {1}.",
- "gotoLineLabel": "Accédez à la ligne {0}.",
- "gotoLineLabelEmpty": "Ligne actuelle : {0}, caractère : {1}. Tapez un numéro de ligne auquel accéder.",
- "gotoLineLabelEmptyWithLimit": "Ligne actuelle : {0}, caractère : {1}. Tapez un numéro de ligne entre 1 et {2} auquel accéder."
+ "gotoLine.ariaLabel": "Position actuelle : ligne {0}, colonne {1}. {2}",
+ "gotoLine.columnPrompt": "Appuyez sur « Entrée » pour passer à la ligne {0} ou entrez un numéro de colonne (de 1 à {1}).",
+ "gotoLine.goToPosition": "Appuyez sur Entrée pour accéder à la ligne {0} à la colonne {1}.",
+ "gotoLine.lineColumnPrompt": "Appuyez sur Entrée pour accéder à la ligne {0} ou entrez le signe deux-points pour ajouter un numéro de colonne.",
+ "gotoLine.linePrompt": "Tapez un numéro de ligne à atteindre (de 1 à {0}).",
+ "gotoLine.noEditor": "Ouvrez d’abord un éditeur de texte pour aller à une ligne ou à un décalage.",
+ "gotoLine.offsetPrompt": "Tapez une position de caractère à atteindre (de 1 à {0}).",
+ "gotoLine.offsetPromptZero": "Tapez une position de caractère à atteindre (de 0 à {0}).",
+ "gotoLineToggle": "Utiliser un décalage à base zéro"
},
"vs/editor/contrib/quickAccess/browser/gotoSymbolQuickAccess": {
"_constructor": "constructeurs ({0})",
@@ -1200,6 +1747,8 @@
"vs/editor/contrib/rename/browser/rename": {
"aria": "'{0}' renommé en '{1}'. Récapitulatif : {2}",
"enablePreview": "Activer/désactiver la possibilité d'afficher un aperçu des changements avant le renommage",
+ "focusNextRenameSuggestion": "Prioriser la prochaine suggestion de changement de nom",
+ "focusPreviousRenameSuggestion": "Prioriser la suggestion de changement de nom précédente",
"label": "Renommage de '{0}' en '{1}'",
"no result": "Aucun résultat.",
"quotableLabel": "Changement du nom de {0} en {1}",
@@ -1208,10 +1757,14 @@
"rename.label": "Renommer le symbole",
"resolveRenameLocationFailed": "Une erreur inconnue s'est produite lors de la résolution de l'emplacement de renommage"
},
- "vs/editor/contrib/rename/browser/renameInputField": {
+ "vs/editor/contrib/rename/browser/renameWidget": {
+ "cancelRenameSuggestionsButton": "Annuler",
+ "generateRenameSuggestionsButton": "Générer des suggestions de nom",
"label": "{0} pour renommer, {1} pour afficher un aperçu",
"renameAriaLabel": "Renommez l'entrée. Tapez le nouveau nom et appuyez sur Entrée pour valider.",
- "renameInputVisible": "Indique si le widget de renommage d'entrée est visible"
+ "renameInputFocused": "Indique si le widget de renommage d'entrée est prioritaire",
+ "renameInputVisible": "Indique si le widget de renommage d'entrée est visible",
+ "renameSuggestionsReceivedAria": "{0} suggestions de changement de nom reçues"
},
"vs/editor/contrib/smartSelect/browser/smartSelect": {
"miSmartSelectGrow": "Dév&&elopper la sélection",
@@ -1265,6 +1818,19 @@
"Wednesday": "Mercredi",
"WednesdayShort": "Mer"
},
+ "vs/editor/contrib/stickyScroll/browser/stickyScrollActions": {
+ "focusStickyScroll": "Mise au point sur le défilement épinglé de l’éditeur",
+ "goToFocusedStickyScrollLine.title": "Atteindre la ligne de défilement épinglé prioritaire",
+ "miStickyScroll": "&&Défilement épinglé",
+ "mifocusEditorStickyScroll": "&&Mise au point sur le défilement épinglé de l’éditeur",
+ "mitoggleStickyScroll": "&&Activer/désactiver le défilement épinglé de l’éditeur",
+ "selectEditor.title": "Sélectionner l'éditeur",
+ "selectNextStickyScrollLine.title": "Sélectionner la ligne de défilement épinglé de l’éditeur suivant",
+ "selectPreviousStickyScrollLine.title": "Sélectionner la ligne de défilement épinglé précédente",
+ "stickyScroll": "Défilement épinglé",
+ "toggleEditorStickyScroll": "Activer/désactiver le défilement épinglé de l’éditeur",
+ "toggleEditorStickyScroll.description": "Basculer/activer le défilement épinglé de l’éditeur qui affiche les étendues imbriqués en haut de la fenêtre d’affichage"
+ },
"vs/editor/contrib/suggest/browser/suggest": {
"acceptSuggestionOnEnter": "Indique si les suggestions sont insérées quand vous appuyez sur Entrée",
"suggestWidgetDetailsVisible": "Indique si les détails des suggestions sont visibles",
@@ -1279,8 +1845,8 @@
"accept.insert": "Insérer",
"accept.replace": "Remplacer",
"aria.alert.snippet": "L'acceptation de '{0}' a entraîné {1} modifications supplémentaires",
- "detail.less": "afficher plus",
- "detail.more": "afficher moins",
+ "detail.less": "Afficher plus",
+ "detail.more": "Afficher moins",
"suggest.reset.label": "Réinitialiser la taille du widget de suggestion",
"suggest.trigger.label": "Suggestions pour Trigger"
},
@@ -1295,9 +1861,10 @@
"editorSuggestWidgetSelectedForeground": "Couleur de premier plan de l’entrée sélectionnée dans le widget de suggestion.",
"editorSuggestWidgetSelectedIconForeground": "Couleur de premier plan de l’icône de l’entrée sélectionnée dans le widget de suggestion.",
"editorSuggestWidgetStatusForeground": "Couleur de premier plan du statut du widget de suggestion.",
- "label.desc": "{0}, {1}",
- "label.detail": "{0}{1}",
- "label.full": "({0}, {1}) {2}",
+ "label": "{0}, {1}",
+ "label.desc": "{0}, {1}, {2}",
+ "label.detail": "{0} {1}, {2}",
+ "label.full": "{0} {1}, {2}, {3}",
"suggest": "Suggérer",
"suggestWidget.loading": "Chargement en cours...",
"suggestWidget.noSuggestions": "Pas de suggestions."
@@ -1310,8 +1877,8 @@
"readMore": "Lire la suite",
"suggestMoreInfoIcon": "Icône d'affichage d'informations supplémentaires dans le widget de suggestion."
},
- "vs/editor/contrib/suggest/browser/suggestWidgetStatus": {
- "ddd": "{0} ({1})"
+ "vs/editor/contrib/suggest/browser/wordContextKey": {
+ "desc": "Clé de contexte true à la fin d’un mot. Notez que cette option est définie uniquement lorsque les complétions de tabulation sont activées"
},
"vs/editor/contrib/symbolIcons/browser/symbolIcons": {
"symbolIcon.arrayForeground": "Couleur de premier plan des symboles de tableau. Ces symboles apparaissent dans le plan, la barre de navigation et le widget de suggestion.",
@@ -1349,6 +1916,7 @@
"symbolIcon.variableForeground": "Couleur de premier plan des symboles de variable. Ces symboles apparaissent dans le plan, la barre de navigation et le widget de suggestion."
},
"vs/editor/contrib/toggleTabFocusMode/browser/toggleTabFocusMode": {
+ "tabMovesFocusDescriptions": "Détermine si la touche d’onglet déplace le focus autour du workbench ou insère le caractère d’onglet dans l’éditeur actuel. Il s’agit également du verrouillage des onglets, de la navigation dans les onglets ou du mode focus des onglets.",
"toggle.tabMovesFocus": "Activer/désactiver l'utilisation de la touche Tab pour déplacer le focus",
"toggle.tabMovesFocus.off": "Appuyer sur Tab insérera le caractère de tabulation",
"toggle.tabMovesFocus.on": "Appuyer sur Tab déplacera le focus vers le prochain élément pouvant être désigné comme élément actif"
@@ -1356,6 +1924,9 @@
"vs/editor/contrib/tokenization/browser/tokenization": {
"forceRetokenize": "Développeur : forcer la retokenisation"
},
+ "vs/editor/contrib/unicodeHighlighter/browser/bannerController": {
+ "closeBanner": "Fermer la bannière"
+ },
"vs/editor/contrib/unicodeHighlighter/browser/unicodeHighlighter": {
"action.unicodeHighlight.disableHighlightingInComments": "Désactiver la mise en surbrillance des caractères dans les commentaires",
"action.unicodeHighlight.disableHighlightingInStrings": "Désactiver la mise en surbrillance des caractères dans les chaînes",
@@ -1366,6 +1937,7 @@
"unicodeHighlight.adjustSettings": "Ajuster les paramètres",
"unicodeHighlight.allowCommonCharactersInLanguage": "Autoriser les caractères Unicode plus courants dans le langage \"{0}\"",
"unicodeHighlight.characterIsAmbiguous": "Le caractère {0} peut être confus avec le caractère {1}, ce qui est plus courant dans le code source.",
+ "unicodeHighlight.characterIsAmbiguousASCII": "Le caractère {0} peut être confondu avec le caractère ASCII {1}, qui est plus courant dans le code source.",
"unicodeHighlight.characterIsInvisible": "Le caractère {0} est invisible.",
"unicodeHighlight.characterIsNonBasicAscii": "Le caractère {0} n’est pas un caractère ASCII de base.",
"unicodeHighlight.configureUnicodeHighlightOptions": "Configurer les options de surlignage Unicode",
@@ -1383,42 +1955,147 @@
},
"vs/editor/contrib/unusualLineTerminators/browser/unusualLineTerminators": {
"unusualLineTerminators.detail": "Le fichier « {0} »contient un ou plusieurs caractères de fin de ligne inhabituels, par exemple le séparateur de ligne (LS) ou le séparateur de paragraphe (PS).\r\n\r\nIl est recommandé de les supprimer du fichier. Vous pouvez configurer ce comportement par le biais de `editor.unusualLineTerminators`.",
- "unusualLineTerminators.fix": "Supprimer les marques de fin de ligne inhabituelles",
+ "unusualLineTerminators.fix": "&&Supprimer les marques de fin de ligne inhabituelles",
"unusualLineTerminators.ignore": "Ignorer",
"unusualLineTerminators.message": "Marques de fin de ligne inhabituelles détectées",
"unusualLineTerminators.title": "Marques de fin de ligne inhabituelles"
},
- "vs/editor/contrib/wordHighlighter/browser/wordHighlighter": {
+ "vs/editor/contrib/wordHighlighter/browser/highlightDecorations": {
"overviewRulerWordHighlightForeground": "Couleur de marqueur de la règle d'aperçu pour la mise en surbrillance des symboles. La couleur ne doit pas être opaque pour ne pas masquer les ornements sous-jacents.",
"overviewRulerWordHighlightStrongForeground": "Couleur de marqueur de la règle d'aperçu pour la mise en surbrillance des symboles d'accès en écriture. La couleur ne doit pas être opaque pour ne pas masquer les ornements sous-jacents.",
+ "overviewRulerWordHighlightTextForeground": "Couleur de marqueur de règle d’aperçu d’une occurrence textuelle pour un symbole. La couleur ne doit pas être opaque afin de ne pas masquer les décorations sous-jacentes.",
"wordHighlight": "Couleur d'arrière-plan d'un symbole pendant l'accès en lecture, comme la lecture d'une variable. La couleur ne doit pas être opaque pour ne pas masquer les ornements sous-jacents.",
- "wordHighlight.next.label": "Aller à la prochaine mise en évidence de symbole",
- "wordHighlight.previous.label": "Aller à la mise en évidence de symbole précédente",
- "wordHighlight.trigger.label": "Déclencher la mise en évidence de symbole",
"wordHighlightBorder": "Couleur de bordure d'un symbole durant l'accès en lecture, par exemple la lecture d'une variable.",
"wordHighlightStrong": "Couleur d'arrière-plan d'un symbole pendant l'accès en écriture, comme l'écriture d'une variable. La couleur ne doit pas être opaque pour ne pas masquer les ornements sous-jacents.",
- "wordHighlightStrongBorder": "Couleur de bordure d'un symbole durant l'accès en écriture, par exemple l'écriture dans une variable."
+ "wordHighlightStrongBorder": "Couleur de bordure d'un symbole durant l'accès en écriture, par exemple l'écriture dans une variable.",
+ "wordHighlightText": "Couleur d’arrière-plan d’une occurrence textuelle d’un symbole. La couleur ne doit pas être opaque afin de ne pas masquer les décorations sous-jacentes.",
+ "wordHighlightTextBorder": "Couleur de bordure d’une occurrence textuelle pour un symbole."
+ },
+ "vs/editor/contrib/wordHighlighter/browser/wordHighlighter": {
+ "wordHighlight.next.label": "Aller à la prochaine mise en évidence de symbole",
+ "wordHighlight.previous.label": "Aller à la mise en évidence de symbole précédente",
+ "wordHighlight.trigger.label": "Déclencher la mise en évidence de symbole"
},
"vs/editor/contrib/wordOperations/browser/wordOperations": {
"deleteInsideWord": "Supprimer le mot"
},
+ "vs/platform/accessibilitySignal/browser/accessibilitySignalService": {
+ "accessibility.signals.chatEditModifiedFile": "Fichier modifié à partir des modifications de conversation",
+ "accessibility.signals.chatRequestSent": "Requête de conversation envoyée",
+ "accessibility.signals.chatUserActionRequired": "Une action est requise de la part de l’utilisateur de la conversation",
+ "accessibility.signals.clear": "Effacer",
+ "accessibility.signals.codeActionRequestTriggered": "Requête d'action de code déclenchée",
+ "accessibility.signals.editsKept": "Modifications conservées",
+ "accessibility.signals.editsUndone": "Modifications annulées",
+ "accessibility.signals.format": "Format",
+ "accessibility.signals.lineHasBreakpoint": "Point d’arrêt",
+ "accessibility.signals.lineHasError": "Erreur sur la ligne",
+ "accessibility.signals.lineHasFoldedArea": "Replié",
+ "accessibility.signals.lineHasWarning": "Avertissement sur la ligne",
+ "accessibility.signals.nextEditSuggestion": "Prochaine suggestion de modification",
+ "accessibility.signals.noInlayHints": "Aucun hint incrusté",
+ "accessibility.signals.notebookCellCompleted": "Cellule de bloc-notes terminée",
+ "accessibility.signals.notebookCellFailed": "Échec de la cellule de bloc-notes",
+ "accessibility.signals.onDebugBreak": "Point d’arrêt",
+ "accessibility.signals.positionHasError": "Erreur",
+ "accessibility.signals.positionHasWarning": "Avertissement",
+ "accessibility.signals.progress": "Progression",
+ "accessibility.signals.save": "Enregistrer",
+ "accessibility.signals.taskCompleted": "Tâche terminée",
+ "accessibility.signals.taskFailed": "Échec de la tâche",
+ "accessibility.signals.terminalBell": "Cloche de terminal",
+ "accessibility.signals.terminalCommandFailed": "Échec de la commande",
+ "accessibility.signals.terminalCommandSucceeded": "Commande réussie",
+ "accessibility.signals.terminalQuickFix": "Correctif rapide",
+ "accessibilitySignals.chatEditModifiedFile": "Modifier le fichier modifié de la conversation",
+ "accessibilitySignals.chatRequestSent": "Demande de conversation envoyée",
+ "accessibilitySignals.chatResponseReceived": "Réponse de conversation reçue",
+ "accessibilitySignals.chatUserActionRequired": "Une action est requise de la part de l’utilisateur de la conversation",
+ "accessibilitySignals.clear": "Effacer",
+ "accessibilitySignals.codeActionApplied": "Code Action Appliqué",
+ "accessibilitySignals.codeActionRequestTriggered": "Requête d'action de code déclenchée",
+ "accessibilitySignals.diffLineDeleted": "Ligne de diffusion supprimée",
+ "accessibilitySignals.diffLineInserted": "Ligne de diffusion insérée",
+ "accessibilitySignals.diffLineModified": "Ligne diff modifiée",
+ "accessibilitySignals.editsKept": "Modifications conservées",
+ "accessibilitySignals.editsUndone": "Annuler les modifications",
+ "accessibilitySignals.format": "Format",
+ "accessibilitySignals.lineHasBreakpoint.name": "Point d’arrêt sur ligne",
+ "accessibilitySignals.lineHasError.name": "Erreur sur la ligne",
+ "accessibilitySignals.lineHasFoldedArea.name": "Zone pliée sur la ligne",
+ "accessibilitySignals.lineHasInlineSuggestion.name": "Suggestion inline sur la ligne",
+ "accessibilitySignals.lineHasWarning.name": "Avertissement sur la ligne",
+ "accessibilitySignals.nextEditSuggestion.name": "Prochaine suggestion de modification dans la ligne",
+ "accessibilitySignals.noInlayHints": "Aucun hint incrusté sur la ligne",
+ "accessibilitySignals.notebookCellCompleted": "Cellule de bloc-notes terminée",
+ "accessibilitySignals.notebookCellFailed": "Échec de la cellule de bloc-notes",
+ "accessibilitySignals.onDebugBreak.name": "Débogueur arrêté sur le point d’arrêt",
+ "accessibilitySignals.positionHasError.name": "Erreur sur la position",
+ "accessibilitySignals.positionHasWarning.name": "Avertissement à la position",
+ "accessibilitySignals.progress": "Progression",
+ "accessibilitySignals.save": "Enregistrer",
+ "accessibilitySignals.taskCompleted": "Tâche terminée",
+ "accessibilitySignals.taskFailed": "Échec de la tâche",
+ "accessibilitySignals.terminalBell": "Cloche de terminal",
+ "accessibilitySignals.terminalCommandFailed": "Échec de la commande de terminal",
+ "accessibilitySignals.terminalCommandSucceeded": "Commande terminal réussie",
+ "accessibilitySignals.terminalQuickFix.name": "Correctif rapide de terminal",
+ "accessibilitySignals.voiceRecordingStarted": "Enregistrement vocal commencé",
+ "accessibilitySignals.voiceRecordingStopped": "Enregistrement vocal arrêté"
+ },
+ "vs/platform/action/common/actionCommonCategories": {
+ "developer": "Développeur",
+ "file": "fichier",
+ "help": "Aide",
+ "preferences": "Préférences",
+ "test": "Test",
+ "view": "Afficher"
+ },
+ "vs/platform/actions/browser/buttonbar": {
+ "labelWithKeybinding": "{0} ({1})",
+ "moreActions": "Plus d’actions"
+ },
+ "vs/platform/actions/browser/dropdownActionViewItemWithKeybinding": {
+ "titleAndKb": "{0} ({1})"
+ },
"vs/platform/actions/browser/menuEntryActionViewItem": {
+ "content": "{0} ({1})",
+ "content2": "Du {1} au {0}",
"titleAndKb": "{0} ({1})",
"titleAndKbAndAlt": "{0}\r\n[{1}] {2}"
},
+ "vs/platform/actions/browser/toolbar": {
+ "hide": "Masquer",
+ "resetThisMenu": "Réinitialiser le menu"
+ },
"vs/platform/actions/common/menuResetAction": {
- "cat": "Afficher",
- "title": "Réinitialiser les menus masqués"
+ "title": "Réinitialiser tous les menus"
},
"vs/platform/actions/common/menuService": {
+ "configure keybinding": "Configurer la combinaison de touches",
"hide.label": "Masquer «{0}»"
},
+ "vs/platform/actionWidget/browser/actionList": {
+ "customQuickFixWidget": "Widget d’action",
+ "customQuickFixWidget.labels": "{0}, raison désactivée : {1}",
+ "label": "{0} pour appliquer",
+ "label-preview": "{0} à Appliquer, {1} à la Préversion"
+ },
+ "vs/platform/actionWidget/browser/actionWidget": {
+ "acceptSelected.title": "Accepter l’action sélectionnée",
+ "actionBar.toggledBackground": "Couleur d'arrière-plan des éléments d'action activés dans la barre d'action.",
+ "codeActionMenuVisible": "Indique si la liste des widgets d’action est visible",
+ "hideCodeActionWidget.title": "Masquer le widget d’action",
+ "previewSelected.title": "Aperçu de l’action sélectionnée",
+ "selectNextCodeAction.title": "Sélectionner l’action suivante",
+ "selectPrevCodeAction.title": "Sélectionner l’action précédente"
+ },
"vs/platform/configuration/common/configurationRegistry": {
"config.policy.duplicate": "Impossible d’inscrire '{0}'. Le {1} de stratégie associé est déjà inscrit auprès de {2}.",
"config.property.duplicate": "Impossible d'inscrire '{0}'. Cette propriété est déjà inscrite.",
"config.property.empty": "Impossible d'inscrire une propriété vide",
"config.property.languageDefault": "Impossible d'inscrire '{0}'. Ceci correspond au modèle de propriété '\\\\[.*\\\\]$' permettant de décrire les paramètres d'éditeur spécifiques à un langage. Utilisez la contribution 'configurationDefaults'.",
- "defaultLanguageConfiguration.description": "Configurez les paramètres à remplacer pour le langage {0}.",
+ "defaultLanguageConfiguration.description": "Configurer les paramètres à remplacer pour {0}.",
"defaultLanguageConfigurationOverrides.title": "Substitutions de configuration du langage par défaut",
"overrideSettings.defaultDescription": "Configurez les paramètres d'éditeur à remplacer pour un langage.",
"overrideSettings.errorMessage": "Ce paramètre ne prend pas en charge la configuration par langage."
@@ -1426,38 +2103,77 @@
"vs/platform/contextkey/browser/contextKeyService": {
"getContextKeyInfo": "Commande qui retourne des informations sur les clés de contexte"
},
+ "vs/platform/contextkey/common/contextkey": {
+ "contextkey.parser.error.closingParenthesis": "parenthèse fermante ')'",
+ "contextkey.parser.error.emptyString": "Expression de clé de contexte vide",
+ "contextkey.parser.error.emptyString.hint": "Avez-vous oublié d’écrire une expression ? Vous pouvez également placer 'false' ou 'true' pour toujours donner la valeur false ou true, respectivement.",
+ "contextkey.parser.error.expectedButGot": "Attendu : {0}\r\nReçu : '{1}'.",
+ "contextkey.parser.error.noInAfterNot": "'in' après 'not'.",
+ "contextkey.parser.error.unexpectedEOF": "Fin d’expression inattendue",
+ "contextkey.parser.error.unexpectedEOF.hint": "Avez-vous oublié de placer une clé de contexte ?",
+ "contextkey.parser.error.unexpectedToken": "Jeton inattendu",
+ "contextkey.parser.error.unexpectedToken.hint": "Avez-vous oublié de placer && ou || avant le jeton ?",
+ "contextkey.scanner.errorForLinter": "Jeton inattendu.",
+ "contextkey.scanner.errorForLinterWithHint": "Jeton inattendu. Conseil : {0}"
+ },
"vs/platform/contextkey/common/contextkeys": {
"inputFocus": "Indique si le focus clavier se trouve dans une zone d'entrée",
"isIOS": "Indique si le système d’exploitation est Linux",
"isLinux": "Indique si le système d'exploitation est Linux",
"isMac": "Indique si le système d'exploitation est macOS",
"isMacNative": "Indique si le système d'exploitation est macOS sur une plateforme qui n'est pas un navigateur",
+ "isMobile": "Indique si la plateforme est un navigateur web mobile",
"isWeb": "Indique si la plateforme est un navigateur web",
"isWindows": "Indique si le système d'exploitation est Windows",
"productQualityType": "Type de qualité de VS Code"
},
+ "vs/platform/contextkey/common/scanner": {
+ "contextkey.scanner.hint.didYouForgetToEscapeSlash": "Avez-vous oublié d’échapper le caractère « / » (barre oblique) ? Placez deux barre obliques inverses avant d’y échapper, par ex., « \\\\/ ».",
+ "contextkey.scanner.hint.didYouForgetToOpenOrCloseQuote": "Avez-vous oublié d’ouvrir ou de fermer le devis ?",
+ "contextkey.scanner.hint.didYouMean1": "Voulez-vous dire {0}?",
+ "contextkey.scanner.hint.didYouMean2": "Voulez-vous dire {0} ou {1}?",
+ "contextkey.scanner.hint.didYouMean3": "Voulez-vous dire {0}, {1} ou {2}?"
+ },
+ "vs/platform/dialogs/browser/dialog": {
+ "aboutDetail": "Version : {0}\r\nCommit : {1}\r\nDate : {2}\r\nNavigateur : {3}"
+ },
"vs/platform/dialogs/common/dialogs": {
+ "cancelButton": "Annuler",
"moreFile": "...1 fichier supplémentaire non affiché",
- "moreFiles": "...{0} fichiers supplémentaires non affichés"
+ "moreFiles": "...{0} fichiers supplémentaires non affichés",
+ "okButton": "&&OK",
+ "yesButton": "&&Oui"
+ },
+ "vs/platform/dialogs/electron-browser/dialog": {
+ "aboutDetail": "Version : {0}\r\nValidation : {1}\r\nDate : {2}\r\nElectron : {3}\r\nElectronBuildId : {4}\r\nChromium : {5}\r\nNode.js : {6}\r\nV8 : {7}\r\nSystème d’exploitation : {8}"
},
"vs/platform/dialogs/electron-main/dialogMainService": {
"open": "Ouvrir",
"openFile": "Ouvrir un fichier",
"openFolder": "Ouvrir un dossier",
"openWorkspace": "&&Ouvrir",
- "openWorkspaceTitle": "Ouvrir l’espace de travail à partir du fichier"
+ "openWorkspaceTitle": "Ouvrir l’espace de travail à partir du fichier",
+ "selectFolder": "&&Sélectionner un dossier"
},
"vs/platform/dnd/browser/dnd": {
"fileTooLarge": "Le fichier est trop volumineux pour être ouvert en tant qu'éditeur sans titre. Chargez-le d'abord dans l'Explorateur de fichiers, puis réessayez."
},
"vs/platform/environment/node/argv": {
"add": "Ajoutez un ou plusieurs dossiers à la dernière fenêtre active.",
+ "addFile": "Ajoutez des fichiers comme contexte à la session de conversation.",
+ "addMcp": "Ajoute une définition de serveur de protocole de contexte de modèle au profil utilisateur. Accepte les entrées JSON sous la forme '{\"name\":\"server-name\",\"command\":...}'",
"category": "Filtre les extensions installées en fonction de la catégorie fournie, quand --list-extensions est utilisé.",
+ "chatMaximize": "Maximisez l’affichage de la session de chat.",
+ "chatMode": "Mode à utiliser pour la session de conversation. Options disponibles : « ask », « edit », « agent » ou l’identificateur d’un mode personnalisé. La valeur par défaut est « agent ».",
+ "cliDataDir": "Répertoire dans lequel les métadonnées CLI doivent être stockées.",
+ "cliPrompt": "requête",
"deprecated.useInstead": "Utilisez {0} à la place.",
"diff": "Comparez deux fichiers entre eux.",
- "disableExtension": "Désactivez une extension.",
- "disableExtensions": "Désactivez toutes les extensions installées.",
+ "disableChromiumSandbox": "Utilisez cette option uniquement lorsqu’il est nécessaire de lancer l’application en tant qu’utilisateur sudo sur Linux ou en cas d’exécution en tant qu’utilisateur avec élévation de privilèges dans un environnement applocker sur Windows.",
+ "disableExtension": "Désactivez l’extension fournie. Cette option n’est pas persistante et ne s’applique que lorsque la commande ouvre une nouvelle fenêtre.",
+ "disableExtensions": "Désactivez toutes les extensions installées. Cette option n’est pas persistante et n’est effective que lorsque la commande ouvre une nouvelle fenêtre.",
"disableGPU": "Désactivez l'accélération matérielle du GPU.",
+ "disableLCDText": "Désactivez le rendu de polices DESCRIPT.",
"experimentalApis": "Active les fonctionnalités de l'API proposées pour les extensions. Peut recevoir un ou plusieurs ID d'extension pour les activer individuellement.",
"extensionHomePath": "Définissez le chemin racine des extensions.",
"extensionsManagement": "Gestion des extensions",
@@ -1469,25 +2185,33 @@
"installExtension": "Installe ou met à jour une extension. L'argument est soit un identifiant d'extension, soit un chemin vers un VSIX. L'identifiant d'une extension est '${publisher}.${name}'. Utilisez l'argument '--force' pour mettre à jour la dernière version. Pour installer une version spécifique, fournissez '@${version}'. Par exemple : 'vscode.csharp@1.2.3'.",
"listExtensions": "Listez les extensions installées.",
"locale": "Paramètres régionaux à utiliser (exemple : fr-FR ou en-US).",
- "log": "Niveau de journalisation à utiliser. La valeur par défaut est 'info'. Les valeurs autorisées sont 'critical', 'error', 'warn', 'info', 'debug', 'trace', 'off.",
- "maxMemory": "Taille mémoire maximale pour une fenêtre (En Megaoctêts)",
+ "locateShellIntegrationPath": "Imprime le chemin d’accès à un script d’intégration de l’interpréteur de commandes du Terminal. Les valeurs autorisées sont « bash », « pwsh », « zsh » ou « fish ».",
+ "log": "Niveau de journalisation à utiliser. La valeur par défaut est 'info'. Les valeurs autorisées sont 'critical', 'error', 'warn', 'info', 'debug', 'trace', 'off. Vous pouvez également configurer le niveau de journal d’une extension en passant l’ID d’extension et le niveau de journal au format suivant : « ${publisher}.${name}:${logLevel} ». Par exemple : 'vscode.csharp:trace'. Peut recevoir une ou plusieurs entrées de ce type.",
+ "mcp": "Protocole de contexte de modèle",
"merge": "Effectuez une triple-fusion en fournissant des chemins d’accès pour deux versions modifiées d’un fichier, pour l’origine commune des deux versions modifiées et pour le fichier de sortie pour enregistrer les résultats de fusion.",
"newWindow": "Force l'ouverture d'une nouvelle fenêtre.",
+ "newWindowForChat": "Forcez l’ouverture d’une fenêtre vide pour la session de conversation.",
"options": "options",
"optionsUpperCase": "Options",
"paths": "chemins",
"prof-startup": "Exécuter le profileur d’UC au démarrage.",
+ "profileName": "Ouvre le dossier ou l'espace de travail fourni avec le profil donné et associe le profil à l'espace de travail. Si le profil n'existe pas, un nouveau profil vide est créé.",
+ "prompt": "Requête à utiliser comme conversation.",
+ "remove": "Supprimez le ou les dossiers de la dernière fenêtre active.",
"reuseWindow": "Forcez l'ouverture d'un fichier ou dossier dans une fenêtre déjà ouverte.",
+ "reuseWindowForChat": "Forcez l’utilisation de la dernière fenêtre active pour la session de conversation.",
"showVersions": "Affiche les versions des extensions installées, quand --list-extension est utilisé.",
"status": "Imprimer l'utilisation de processus et l'information des diagnostics.",
- "stdinUnix": "Pour lire depuis stdin, ajouter '-' (ex. 'ps aux | grep code | {0} -')",
- "stdinWindows": "Pour lire la sortie d’un autre programme, ajouter '-' (ex. 'echo Hello World | {0} -')",
+ "stdinUsage": "Pour lire depuis stdin, ajouter '-' (ex. « {0} »)",
+ "subcommands": "Sous-commandes",
"telemetry": "Affiche tous les événements de télémétrie collectés par VS Code.",
+ "transient": "Exécuter avec des répertoires de données et d’extension temporaires, comme s’ils étaient lancés pour la première fois.",
"troubleshooting": "Résolution des problèmes",
"turn sync": "Activer ou désactiver la synchronisation.",
"uninstallExtension": "Désinstalle une extension.",
"unknownCommit": "Validation inconnue",
"unknownVersion": "Version inconnue",
+ "updateExtensions": "Mettez à jour les extensions installées.",
"usage": "Utilisation",
"userDataDir": "Spécifie le répertoire de l’utilisateur dans lequel les données sont conservées. Peut être utilisé pour ouvrir plusieurs instances distinctes du Code.",
"verbose": "Affichez la sortie détaillée (implique --wait).",
@@ -1499,33 +2223,62 @@
"emptyValue": "L’option « {0} » requiert une valeur non vide. Option ignorée.",
"gotoValidation": "Les arguments en mode '--goto' doivent être au format 'FILE(:LINE(:CHARACTER))'.",
"multipleValues": "L'option '{0}' est définie plusieurs fois. Utilisation de la valeur '{1}'.",
- "unknownOption": "Avertissement : '{0}' n'est pas dans la liste des options connues, mais est quand même transféré à Electron/Chromium."
+ "unknownOption": "Avertissement : '{0}' n'est pas dans la liste des options connues, mais est quand même transféré à Electron/Chromium.",
+ "unknownSubCommandOption": "Avertissement : « {0} » ne figure pas dans la liste des options connues pour la sous-commande « {1} »"
},
"vs/platform/extensionManagement/common/abstractExtensionManagementService": {
"MarketPlaceDisabled": "La Place de marché n’est pas activée",
- "Not a Marketplace extension": "Seules les extensions de la Place de marché peuvent être réinstallées",
- "incompatible platform": "L’extension «{0}» n’est pas disponible dans {1} pour {2}.",
+ "incompatible platform": "L’extension « {0} » n’est pas disponible dans {1} pour {2}.",
+ "incompatibleAPI": "Impossible d’installer l’extension « {0} ». {1}",
+ "learn why": "Découvrez pourquoi",
"malicious extension": "Impossible d’installer l'extension '{0}' car elle a été signalée comme problématique.",
"multipleDependentsError": "Impossible de désinstaller l'extension '{0}'. '{1}', '{2}' et d'autres extensions en dépendent.",
"multipleIndirectDependentsError": "Impossible de désinstaller l'extension '{0}'. Cela inclut la désinstallation de l'extension '{1}' mais '{2}', '{3}' et d'autres extensions en dépendent.",
+ "not allowed to install": "Cette extension ne peut pas être installée car {0}",
"notFoundCompatibleDependency": "Impossible d'installer l'extension '{0}' car elle n'est pas compatible avec la version actuelle de {1} (version {2}).",
- "notFoundCompatiblePrereleaseDependency": "Impossible d'installer la version préliminaire '{0}' car elle n'est pas compatible avec la version actuelle de {1} (version {2}).",
+ "notFoundDeprecatedReplacementExtension": "Impossible d’installer l’extension « {0} », car elle est déconseillée et l’extension de remplacement « {1} » est introuvable.",
"notFoundReleaseExtension": "Impossible d’installer la version de mise en production de '{0}' extension, car elle n’a pas de version de mise en production.",
"singleDependentError": "Impossible de désinstaller l'extension '{0}'. L'extension '{1}' en dépend.",
"singleIndirectDependentError": "Impossible de désinstaller l'extension '{0}'. Cela inclut la désinstallation de l'extension '{1}' mais l'extension '{2}' en dépend.",
"twoDependentsError": "Impossible de désinstaller l'extension '{0}'. Les extensions '{1}' et '{2}' en dépendent.",
"twoIndirectDependentsError": "Impossible de désinstaller l'extension '{0}'. Cela inclut la désinstallation de l'extension '{1}' mais les extensions '{2}' et '{3}' en dépendent."
},
+ "vs/platform/extensionManagement/common/allowedExtensionsService": {
+ "extension prerelease not allowed": "les versions préliminaires de cette extension ne sont pas dans le [allowed list]({0})",
+ "prerelease versions from this publisher not allowed": "les versions préliminaires de cet éditeur ne sont pas dans le [allowed list]({1})",
+ "publisher not allowed": "les extensions de cet éditeur ne sont pas dans la [liste autorisée]({1})",
+ "specific extension not allowed": "il ne figure pas dans la [liste autorisée]({0})",
+ "specific version of extension not allowed": "la version {0} de cette extension n’est pas dans le [allowed list]({1})"
+ },
"vs/platform/extensionManagement/common/extensionManagement": {
+ "extension.publisher.allow.description": "Autorisez ou non toutes les extensions de l’éditeur.",
"extensions": "Extensions",
+ "extensions.allow.all.description": "Autorisez ou non toutes les extensions.",
+ "extensions.allow.all.disable": "Interdire toutes les extensions.",
+ "extensions.allow.all.enable": "Autoriser toutes les extensions.",
+ "extensions.allow.description": "Autorisez ou non l’extension.",
+ "extensions.allow.version.description": "Autorisez ou non des versions spécifiques de l’extension. Pour spécifier une version spécifique à la plateforme, utilisez le format 'platform@1.2.3', par exemple 'win32-x64@1.2.3'. Les plates-formes prises en charge sont `win32-x64`, `win32-arm64`, `linux-x64`, `linux-arm64`, `linux-armhf`, `alpine-x64`, `alpine-arm64`, `darwin-x64`, `darwin-arm64`",
+ "extensions.allowed": "Spécifiez une liste d’extensions autorisées. Cela permet de maintenir un environnement de développement sécurisé et cohérent en limitant l’utilisation d’extensions non autorisées. Pour plus d'informations sur la configuration de ce paramètre, veuillez consulter la section [Configurer les extensions autorisées](https://code.visualstudio.com/docs/setup/enterprise#_configure-allowed-extensions).",
+ "extensions.allowed.all": "Toutes les extensions sont autorisées.",
+ "extensions.allowed.disable.desc": "L’extension n’est pas autorisée.",
+ "extensions.allowed.disable.stable.desc": "Autoriser uniquement les versions stables de l’extension.",
+ "extensions.allowed.enable.desc": "L’extension est autorisée.",
+ "extensions.allowed.none": "Aucune extension n’est autorisée.",
+ "extensions.allowed.policy": "Spécifiez une liste d’extensions autorisées. Cela permet de maintenir un environnement de développement sécurisé et cohérent en limitant l’utilisation d’extensions non autorisées. Plus d’informations : https://code.visualstudio.com/docs/setup/enterprise#_configure-allowed-extensions",
+ "extensions.publisher.allowed.disable.desc": "Toutes les extensions de l’éditeur ne sont pas autorisées.",
+ "extensions.publisher.allowed.disable.stable.desc": "Autoriser uniquement les versions stables des extensions du serveur de publication.",
+ "extensions.publisher.allowed.enable.desc": "Toutes les extensions de l’éditeur sont autorisées.",
+ "extensionsConfigurationTitle": "Extensions",
"preferences": "Préférences"
},
- "vs/platform/extensionManagement/common/extensionManagementCLIService": {
+ "vs/platform/extensionManagement/common/extensionManagementCLI": {
"alreadyInstalled": "L'extension '{0}' est déjà installée.",
"alreadyInstalled-checkAndUpdate": "L'extension '{0}' v{1} est déjà installée. Utilisez l'option '--force' pour effectuer une mise à jour vers la dernière version, ou indiquez '@' pour installer une version spécifique, par exemple '{2}@1.2.3'.",
"builtin": "L'extension '{0}' est une extension intégrée qui ne peut pas être désinstallée",
- "cancelInstall": "Installation annulée de l'Extension '{0}'.",
"cancelVsixInstall": "Installation annulée de l'Extension '{0}'.",
+ "error while installing extensions": "Erreur lors de l’installation des extensions : {0}",
+ "errorInstallingExtension": "Erreur lors de l’installation de l’extension {0} : {1}",
+ "errorUpdatingExtension": "Nous n’avons pas pu mettre à jour l'extension {0}, car nous avons rencontré une erreur : {1}.",
"forceDowngrade": "Une version plus récente de l'extension '{0}' v{1} est déjà installée. Utilisez l'option '--force' pour passer à une version antérieure.",
"forceUninstall": "L'extension '{0}' est marquée en tant qu'extension intégrée par l'utilisateur. Utilisez l'option '--force' pour la désinstaller.",
"installation failed": "Échec d'installation des extensions : {0}",
@@ -1542,49 +2295,51 @@
"successInstall": "L'extension '{0}' v{1} a été installée.",
"successUninstall": "L'extension '{0}' a été correctement désinstallée !",
"successUninstallFromLocation": "L'extension '{0}' a été correctement désinstallée de {1} !",
+ "successUpdate": "L’extension « {0}» v {1} a été mise à jour avec succès.",
"successVsixInstall": "L'extension '{0}' a été installée.",
"uninstalling": "Désinstallation de {0}...",
+ "updateExtensionsNewVersionsAvailable": "Mise à jour des extensions : {0}",
+ "updateExtensionsNoExtensions": "Aucune extension à mettre à jour",
+ "updateExtensionsQuery": "Récupération des dernières versions pour {0} extensions",
"updateMessage": "Mise à jour de l'extension '{0}' vers la version {1}",
"useId": "Vérifiez que vous utilisez l'ID d'extension complet, y compris l'éditeur, par ex. : {0}"
},
+ "vs/platform/extensionManagement/common/extensionNls": {
+ "missingNLSKey": "Le message est introuvable pour la clé {0}."
+ },
"vs/platform/extensionManagement/common/extensionsScannerService": {
"fileReadFail": "Impossible de lire le fichier {0} : {1}.",
"jsonInvalidFormat": "Format non valide {0} : objet JSON attendu.",
"jsonParseFail": "Échec d'analyse de {0} : [{1}, {2}] {3}.",
"jsonParseInvalidType": "Fichier manifeste non valide {0} : N'est pas un objet JSON.",
- "jsonsParseReportErrors": "Échec de l'analyse de {0} : {1}.",
- "missingNLSKey": "Le message est introuvable pour la clé {0}."
- },
- "vs/platform/extensionManagement/electron-sandbox/extensionTipsService": {
- "exeRecommended": "{0} est installé sur votre système. Voulez-vous installer les extensions recommandées correspondantes ?"
+ "jsonsParseReportErrors": "Échec de l'analyse de {0} : {1}."
},
"vs/platform/extensionManagement/node/extensionManagementService": {
"cannot read": "Impossible de lire l'extension à partir de {0}",
"errorDeleting": "Impossible de supprimer le dossier existant '{0}' pendant l'installation de l'extension '{1}'. Supprimez le dossier manuellement et réessayez",
- "exitCode": "Impossible d’installer l’extension. Veuillez s’il vous plaît sortir et redémarrer VS Code avant de le réinstaller.",
"incompatible": "Impossible d'installer l'extension '{0}', car elle n'est pas compatible avec VS Code '{1}'.",
- "notInstalled": "L'extension '{0}' n'est pas installée.",
- "quitCode": "Impossible d’installer l’extension. Veuillez s’il vous plaît quitter et redémarrer VS Code avant de le réinstaller.",
- "removeError": "Erreur lors de la suppression de l’extension : {0}. Veuillez quitter et relancer VS Code avant de réessayer.",
- "renameError": "Erreur inconnue en renommant {0} en {1}",
- "restartCode": "Redémarrez VS Code avant de réinstaller {0}."
+ "invalidManifest": "Impossible d’installer l’extension « {0} » en raison d’une incompatibilité manifeste avec la Place de marché",
+ "notAllowed": "Cette extension ne peut pas être installée car {0}",
+ "restartCode": "Redémarrez VS Code avant de réinstaller {0}.",
+ "signature verification failed": "Échec de la vérification de la signature avec l’erreur «{0}».",
+ "signature verification not executed": "La vérification de signature n’a pas été exécutée."
},
"vs/platform/extensionManagement/node/extensionManagementUtil": {
"invalidManifest": "VSIX non valide : package.json n'est pas un fichier JSON."
},
"vs/platform/extensions/common/extensionValidator": {
+ "apiProposalMismatch1": "Cette extension utilise la proposition d’API « {0} » qui n’est pas compatible avec la version actuelle de VS Code.",
+ "apiProposalMismatch2": "Cette extension utilise les propositions d’API « {0} » et « {1} » qui ne sont pas compatibles avec la version actuelle de VS Code.",
"extensionDescription.activationEvents1": "la propriété '{0}' peut être omise ou doit être de type 'string[]'",
- "extensionDescription.activationEvents2": "les propriétés '{0}' et '{1}' doivent être toutes les deux spécifiées ou toutes les deux omises",
+ "extensionDescription.activationEvents2": "la propriété '{0}' doit être omise si l’extension n’a pas de propriété '{1}' ou '{2}'.",
"extensionDescription.browser1": "La propriété '{0}' peut être omise ou doit être de type 'string'",
"extensionDescription.browser2": "'browser' ({0}) est censé être inclus dans le dossier ({1}) de l'extension. Cela risque de rendre l'extension non portable.",
- "extensionDescription.browser3": "les propriétés '{0}' et '{1}' doivent être toutes les deux spécifiées ou toutes les deux omises",
"extensionDescription.engines": "la propriété '{0}' est obligatoire et doit être de type 'object'",
"extensionDescription.engines.vscode": "la propriété '{0}' est obligatoire et doit être de type 'string'",
"extensionDescription.extensionDependencies": "la propriété '{0}' peut être omise ou doit être de type 'string[]'",
"extensionDescription.extensionKind": "la propriété '{0}' ne peut être définie que si la propriété 'main' est également définie.",
"extensionDescription.main1": "la propriété '{0}' peut être omise ou doit être de type 'string'",
"extensionDescription.main2": "'main' ({0}) est censé être inclus dans le dossier ({1}) de l'extension. Cela risque de rendre l'extension non portable.",
- "extensionDescription.main3": "les propriétés '{0}' et '{1}' doivent être toutes les deux spécifiées ou toutes les deux omises",
"extensionDescription.name": "la propriété '{0}' est obligatoire et doit être de type 'string'",
"extensionDescription.publisher": "l'éditeur de propriété doit être de type 'string'.",
"extensionDescription.version": "la propriété '{0}' est obligatoire et doit être de type 'string'",
@@ -1606,12 +2361,30 @@
"fileSystemNotAllowedError": "Autorisations insuffisantes. Réessayez et autorisez l’opération.",
"fileSystemRenameError": "Renommer n’est pris en charge que pour les fichiers."
},
+ "vs/platform/files/browser/indexedDBFileSystemProvider": {
+ "dirIsNotEmpty": "L’annuaire n’est pas vide.",
+ "fileExceedsStorageQuota": "Le fichier dépasse le quota de stockage disponible",
+ "fileIsDirectory": "Le fichier est un répertoire.",
+ "fileNotDirectory": "Le fichier n’est pas un répertoire.",
+ "fileNotExists": "Le fichier n'existe pas",
+ "internal": "Une erreur interne s’est produite dans le fournisseur du système de fichiers IndexedDB. ({0})"
+ },
+ "vs/platform/files/common/files": {
+ "sizeB": "{0} o",
+ "sizeGB": "{0} Go",
+ "sizeKB": "{0} Ko",
+ "sizeMB": "{0} Mo",
+ "sizeTB": "{0} To",
+ "unknownError": "Erreur inconnue"
+ },
"vs/platform/files/common/fileService": {
+ "deleteFailedAtomicUnsupported": "Impossible de supprimer le fichier '{0}' atomiquement, car le fournisseur ne le prend pas en charge.",
"deleteFailedNonEmptyFolder": "Impossible de supprimer le dossier non vide '{0}'.",
"deleteFailedNotFound": "Impossible de supprimer le fichier inexistant « {0} »",
+ "deleteFailedTrashAndAtomicUnsupported": "Impossible de supprimer de manière atomique le fichier '{0}', car l’utilisation de la corbeille est activée.",
"deleteFailedTrashUnsupported": "Impossible de supprimer le fichier '{0}' dans la corbeille parce que le fournisseur ne prend pas en charge cette opération.",
"err.read": "Impossible de lire le fichier '{0}' ({1})",
- "err.readonly": "Impossible de modifier le fichier en lecture seule '{0}'",
+ "err.readonly": "Nous n’avons pas pu modifier le fichier en lecture seule '{0}'",
"err.write": "Impossible d'écrire le fichier '{0}' ({1})",
"fileExists": "Impossible de créer le fichier '{0}' (qui existe déjà) quand l'indicateur de remplacement n'est pas défini",
"fileIsDirectoryReadError": "Impossible de lire le fichier '{0}', car il s'agit d'un répertoire",
@@ -1622,53 +2395,50 @@
"fileTooLargeError": "Impossible de lire le fichier '{0}', car il est trop volumineux pour être ouvert",
"invalidPath": "Impossible de résoudre le fournisseur de système de fichiers avec le chemin de fichier relatif '{0}'",
"mkdirExistsError": "Impossible de créer le dossier '{0}', car il existe mais n'est pas un répertoire",
- "noProviderFound": "Aucun fournisseur de système de fichiers pour la ressource '{0}'",
+ "noProviderFound": "ENOPRO : aucun fournisseur de système de fichiers pour la ressource « {0} »",
"unableToMoveCopyError1": "Copie impossible quand la source '{0}' est identique à la cible '{1}' avec une casse de chemin différente sur un système de fichiers qui ne respecte pas la casse",
"unableToMoveCopyError2": "Déplacement/copie impossible quand la source '{0}' est le parent de la cible '{1}'.",
"unableToMoveCopyError3": "Impossible de déplacer/copier '{0}' parce que la cible '{1}' existe déjà dans la destination.",
"unableToMoveCopyError4": "Impossible de déplacer/copier '{0}' dans '{1}', car un fichier ne peut pas remplacer le dossier qui le contient.",
+ "writeFailedAtomicUnlock": "Impossible de déverrouiller le fichier '{0}', car l’écriture atomique est activée.",
+ "writeFailedAtomicUnsupported1": "Impossible d’écrire atomiquement le fichier «{0}», car le fournisseur ne le prend pas en charge.",
+ "writeFailedAtomicUnsupported2": "Impossible d'écrire atomiquement le fichier '{0}', car le fournisseur ne prend pas en charge les écritures qui ne sont pas mises en mémoire tampon.",
"writeFailedUnlockUnsupported": "Impossible de déverrouiller le fichier '{0}', car le fournisseur ne le prend pas en charge."
},
- "vs/platform/files/common/files": {
- "sizeB": "{0} o",
- "sizeGB": "{0} Go",
- "sizeKB": "{0} Ko",
- "sizeMB": "{0} Mo",
- "sizeTB": "{0} To",
- "unknownError": "Erreur inconnue"
- },
"vs/platform/files/common/io": {
- "fileTooLargeError": "Le fichier est trop volumineux pour être ouvert",
- "fileTooLargeForHeapError": "Pour ouvrir un fichier de cette taille, vous devez redémarrer et autoriser à utiliser plus de mémoire"
+ "fileTooLargeError": "Le fichier est trop volumineux pour être ouvert"
},
"vs/platform/files/electron-main/diskFileSystemProviderServer": {
- "binFailed": "Échec du déplacement de '{0}' vers la corbeille",
- "trashFailed": "Échec du déplacement de '{0}' vers la corbeille"
+ "binFailed": "Échec du déplacement de « {0} » vers la corbeille ({1})",
+ "trashFailed": "Échec du déplacement de « {0} » vers la corbeille ({1})"
},
"vs/platform/files/node/diskFileSystemProvider": {
"copyError": "Impossible de copier '{0}' dans '{1}' ({2}).",
- "fileCopyErrorExists": "Le fichier existe déjà dans la cible",
"fileCopyErrorPathCase": "'Impossible de copier le fichier dans le même chemin avec une casse de chemin différente",
"fileExists": "Le fichier existe déjà",
+ "fileMoveCopyErrorExists": "Le fichier sur la cible existe déjà et ne sera donc pas déplacé/copié, sauf si le remplacement est spécifié",
+ "fileMoveCopyErrorNotFound": "Le fichier à déplacer/copier n’existe pas",
"fileNotExists": "Le fichier n'existe pas",
"moveError": "Impossible de déplacer '{0}' dans '{1}' ({2})."
},
"vs/platform/history/browser/contextScopedHistoryWidget": {
"suggestWidgetVisible": "Indique si les suggestions sont visibles"
},
- "vs/platform/issue/electron-main/issueMainService": {
- "cancel": "&&Annuler",
- "confirmCloseIssueReporter": "Votre entrée n'est pas enregistrée. Voulez-vous vraiment fermer cette fenêtre ?",
- "issueReporter": "Rapporteur du problème",
- "issueReporterWriteToClipboard": "Il y a trop de données à envoyer directement à GitHub. Les données sont copiées dans le Presse-papiers, collez-les dans la page d'envoi de GitHub ouverte.",
- "local": "LOCAL",
- "ok": "&&OK",
- "processExplorer": "Explorateur de processus",
- "yes": "&&Oui"
+ "vs/platform/hover/browser/hoverWidget": {
+ "hoverhint": "Maintenez la touche {0} enfoncée pour pointer avec la souris"
+ },
+ "vs/platform/hover/browser/updatableHoverWidget": {
+ "iconLabel.loading": "Chargement en cours... Merci de patienter."
},
"vs/platform/keybinding/common/abstractKeybindingService": {
"first.chord": "Touche ({0}) utilisée. En attente d'une seconde touche...",
- "missing.chord": "La combinaison de touches ({0}, {1}) n’est pas une commande."
+ "missing.chord": "La combinaison de touches ({0}, {1}) n’est pas une commande.",
+ "next.chord": "({0}) a été enfoncé. En attente de la touche suivante de la pression..."
+ },
+ "vs/platform/keyboardLayout/common/keyboardConfig": {
+ "dispatch": "Contrôle la logique de distribution des appuis sur les touches pour utiliser soit 'code' (recommandé), soit 'keyCode'.",
+ "keyboardConfigurationTitle": "Clavier",
+ "mapAltGrToCtrlAlt": "Contrôle si le modificateur AltGraph+ doit être traité comme Ctrl+Alt+."
},
"vs/platform/languagePacks/common/languagePacks": {
"currentDisplayLanguage": " (En cours)"
@@ -1681,6 +2451,9 @@
"vs/platform/list/browser/listService": {
"Fast Scroll Sensitivity": "Multiplicateur de vitesse de défilement quand vous appuyez sur 'Alt'.",
"Mouse Wheel Scroll Sensitivity": "Un multiplicateur à utiliser sur les `deltaX` et `deltaY` des événements de défilement de roulette de souris.",
+ "defaultFindMatchTypeSettingKey": "Contrôle le type de correspondance utilisé lors de la recherche de listes et d’arborescences dans le banc d’essai.",
+ "defaultFindMatchTypeSettingKey.contiguous": "Utilisez des correspondances contiguës lors de la recherche.",
+ "defaultFindMatchTypeSettingKey.fuzzy": "Utilisez la correspondance approximative lors de la recherche.",
"defaultFindModeSettingKey": "Contrôle le mode de recherche par défaut pour les listes et les arborescences dans Workbench.",
"defaultFindModeSettingKey.filter": "Filtrez des éléments lors de la recherche.",
"defaultFindModeSettingKey.highlight": "Mettez en surbrillance les éléments lors de la recherche. La navigation vers le haut et le bas traverse uniquement les éléments en surbrillance.",
@@ -1690,23 +2463,53 @@
"keyboardNavigationSettingKey.filter": "La navigation au clavier Filtrer filtre et masque tous les éléments qui ne correspondent pas à l'entrée de clavier.",
"keyboardNavigationSettingKey.highlight": "La navigation de mise en surbrillance au clavier met en surbrillance les éléments qui correspondent à l'entrée de clavier. La navigation ultérieure vers le haut ou vers le bas parcourt uniquement les éléments mis en surbrillance.",
"keyboardNavigationSettingKey.simple": "La navigation au clavier Simple place le focus sur les éléments qui correspondent à l'entrée de clavier. La mise en correspondance est effectuée sur les préfixes uniquement.",
- "keyboardNavigationSettingKeyDeprecated": "Utilisez plutôt 'workbench.list.defaultFindMode'.",
+ "keyboardNavigationSettingKeyDeprecated": "Utilisez 'workbench.list.defaultFindMode' et 'workbench.list.typeNavigationMode' à la place.",
"list smoothScrolling setting": "Détermine si les listes et les arborescences ont un défilement fluide.",
+ "list.scrollByPage": "Contrôle si les clics dans la barre de défilement page par page.",
"multiSelectModifier": "Le modificateur à utiliser pour ajouter un élément dans les arbres et listes pour une sélection multiple avec la souris (par exemple dans l’Explorateur, les éditeurs ouverts et la vue scm). Les mouvements de la souris 'Ouvrir à côté' (si pris en charge) s'adapteront tels qu’ils n'entrent pas en conflit avec le modificateur multiselect.",
"multiSelectModifier.alt": "Mappe vers 'Alt' dans Windows et Linux, et vers 'Option' dans macOS.",
"multiSelectModifier.ctrlCmd": "Mappe vers 'Contrôle' dans Windows et Linux, et vers 'Commande' dans macOS.",
"openModeModifier": "Contrôle l'ouverture des éléments dans les arborescences et les listes à l'aide de la souris (si cela est pris en charge). Notez que certaines arborescences et listes peuvent choisir d'ignorer ce paramètre, s'il est non applicable.",
"render tree indent guides": "Contrôle si l'arborescence doit afficher les repères de mise en retrait.",
+ "sticky scroll": "Contrôle si le défilement épinglé est activé dans les arborescences.",
+ "sticky scroll maximum items": "Contrôle le nombre d’éléments rémanents affichés dans l’arborescence lorsque {0} est activé.",
"tree indent setting": "Contrôle la mise en retrait de l'arborescence, en pixels.",
+ "typeNavigationMode2": "Contrôle le fonctionnement de la navigation de type dans les listes et les arborescences du banc d'essai. Quand la valeur est 'trigger', la navigation de type commence une fois que la commande 'list.triggerTypeNavigation' est exécutée.",
"workbenchConfigurationTitle": "Banc d'essai"
},
+ "vs/platform/log/common/log": {
+ "debug": "Déboguer",
+ "error": "Erreur",
+ "info": "Info",
+ "off": "Desactivé",
+ "trace": "Trace",
+ "warn": "Avertissement"
+ },
"vs/platform/markers/common/markers": {
"sev.error": "Erreur",
+ "sev.errors": "Erreurs",
"sev.info": "Info",
- "sev.warning": "Avertissement"
+ "sev.infos": "Infos",
+ "sev.warning": "Avertissement",
+ "sev.warnings": "Avertissements"
+ },
+ "vs/platform/markers/common/markerService": {
+ "filtered": "Les problèmes sont suspendus car : « {0} »",
+ "filtered.network": "Les problèmes sont suspendus car : « {0} » et {1} de plus"
+ },
+ "vs/platform/mcp/common/allowedMcpServersService": {
+ "mcp servers are not allowed": "Les serveurs de protocole de contexte de modèle sont désactivés dans l’éditeur. Vérifiez vos [paramètres]({0})."
+ },
+ "vs/platform/mcp/common/mcpGalleryService": {
+ "noReadme": "Aucun fichier README disponible",
+ "readme.viewInBrowser": "Vous trouverez des informations sur ce serveur [ici]({0})"
+ },
+ "vs/platform/mcp/common/mcpManagementService": {
+ "not allowed to install": "Ce serveur MCP ne peut pas être installé, car {0}"
},
"vs/platform/menubar/electron-main/menubar": {
- "cancel": "&&Annuler",
+ "cancel": "Annuler",
+ "exit": "&&Quitter",
"mAbout": "À propos de {0}",
"mBringToFront": "Tout mettre au premier plan",
"mEdit": "&&Edition",
@@ -1741,42 +2544,125 @@
"miRestartToUpdate": "Redémarrer pour &&mettre à jour",
"miSwitchWindow": "Changer de &&fenêtre...",
"quit": "&&Quitter",
- "quitMessage": "Voulez-vous vraiment quitter ?"
+ "quitMessage": "Voulez-vous vraiment quitter ?",
+ "quitMessageMac": "Voulez-vous vraiment quitter ?"
},
"vs/platform/native/electron-main/nativeHostMainService": {
- "cancel": "&&Annuler",
+ "cancel": "Annuler",
"cantCreateBinFolder": "Impossible de désinstaller la commande shell « {0} ».",
"cantUninstall": "Impossible de désinstaller la commande shell '{0}'.",
+ "copyLink": "&&Copier le lien",
"ok": "&&OK",
+ "openExternalErrorLinkMessage": "Désolé, une erreur s’est produite lors de l’ouverture d’un lien dans votre navigateur par défaut.",
+ "openExternalProgramErrorMessage": "Désolé, une erreur est survenue lors de l'ouverture d'un programme externe.",
"sourceMissing": "Impossible de trouver le script shell dans « {0} »",
+ "trace.detail": "Signalez le problème, et attachez manuellement le fichier suivant :\r\n{0}",
+ "trace.message": "Le fichier de trace a été créé",
+ "trace.ok": "&&OK",
"warnEscalation": "{0} va maintenant demander avec « osascript » des privilèges d’administrateur pour installer la commande shell.",
"warnEscalationUninstall": "{0} va maintenant demander avec « osascript » des privilèges d’administrateur pour désinstaller la commande shell."
},
+ "vs/platform/notification/common/notification": {
+ "severityPrefix.error": "Erreur : {0}",
+ "severityPrefix.info": "Info : {0}",
+ "severityPrefix.warning": "Avertissement : {0}"
+ },
+ "vs/platform/process/electron-main/processMainService": {
+ "local": "Local"
+ },
"vs/platform/quickinput/browser/commandsQuickAccess": {
- "canNotRun": "La commande '{0}' a entraîné une erreur ({1})",
+ "canNotRun": "La commande « {0} » a entraîné une erreur",
"commandPickAriaLabelWithKeybinding": "{0}, {1}",
+ "commonlyUsed": "utilisés le plus souvent",
"morecCommands": "autres commandes",
- "recentlyUsed": "récemment utilisées"
+ "recentlyUsed": "récemment utilisées",
+ "suggested": "commandes similaires"
},
"vs/platform/quickinput/browser/helpQuickAccess": {
"helpPickAriaLabel": "{0}, {1}"
},
+ "vs/platform/quickinput/browser/quickInput": {
+ "cursorAtEndOfQuickInputBox": "Indique si le curseur de l’entrée rapide se trouve à la fin de la zone d’entrée",
+ "inQuickInput": "Indique si le focus clavier se trouve à l’intérieur du contrôle d’entrée rapide",
+ "inputModeEntry": "Appuyez sur 'Entrée' pour confirmer votre saisie, ou sur 'Échap' pour l'annuler",
+ "inputModeEntryDescription": "{0} (Appuyez sur 'Entrée' pour confirmer ou sur 'Échap' pour annuler)",
+ "ok": "OK",
+ "quickInput.back": "Précédent",
+ "quickInput.steps": "{0}/{1}",
+ "quickInputAlignment": "Alignement de l’entrée rapide",
+ "quickInputBox.ariaLabel": "Taper pour affiner les résultats.",
+ "quickInputType": "Type de l’entrée rapide actuellement visible"
+ },
+ "vs/platform/quickinput/browser/quickInputActions": {
+ "nonQuickWidget": "Utilisé dans le contexte d’une entrée rapide. Si vous modifiez une combinaison de touches pour cette commande, vous devez également modifier toutes les autres combinaisons de touches (variantes de modificateur) de cette commande.",
+ "quickInput": "Utilisé dans le contexte de tout type d’entrée rapide. Si vous modifiez une combinaison de touches pour cette commande, vous devez également modifier toutes les autres combinaisons de touches (variantes de modificateur) de cette commande.",
+ "quickInput.nextSeparatorWithQuickAccessFallback": "Si nous sommes en mode d’accès rapide, vous accédez à l’élément suivant. Si nous ne sommes pas en mode d’accès rapide, cela permet d’accéder au séparateur suivant.",
+ "quickInput.previousSeparatorWithQuickAccessFallback": "Si nous sommes en mode d’accès rapide, vous accédez à l’élément précédent. Si nous ne sommes pas en mode d’accès rapide, cela permet d’accéder au séparateur précédent.",
+ "quickPick": "Utilisé dans le contexte de la sélection rapide. Si vous modifiez une combinaison de touches pour cette commande, vous devez également modifier toutes les autres combinaisons de touches (variantes de modification) de cette commande."
+ },
+ "vs/platform/quickinput/browser/quickInputController": {
+ "custom": "Personnalisé",
+ "ok": "OK",
+ "quickInput.back": "Retour",
+ "quickInput.backWithKeybinding": "Précédent ({0})",
+ "quickInput.checkAll": "Activer/désactiver toutes les cases à cocher",
+ "quickInput.countSelected": "{0} Sélectionnés",
+ "quickInput.visibleCount": "{0} résultats"
+ },
+ "vs/platform/quickinput/browser/quickInputList": {
+ "quickInput": "Entrée rapide"
+ },
+ "vs/platform/quickinput/browser/quickInputUtils": {
+ "executeCommand": "Cliquer pour exécuter la commande '{0}'"
+ },
+ "vs/platform/quickinput/browser/quickPickPin": {
+ "pinCommand": "Épingler la commande",
+ "pinnedCommand": "Commande épinglée",
+ "terminal.commands.pinned": "épinglé"
+ },
+ "vs/platform/quickinput/browser/tree/quickInputTreeAccessibilityProvider": {
+ "quickTree": "Arborescence rapide"
+ },
+ "vs/platform/quickinput/browser/tree/quickTree": {
+ "quickInputBox.ariaLabel": "Taper pour affiner les résultats."
+ },
+ "vs/platform/remoteTunnel/common/remoteTunnel": {
+ "remoteTunnelLog": "Service de tunnel distant"
+ },
+ "vs/platform/remoteTunnel/node/remoteTunnelService": {
+ "remoteTunnelService.authorizing": "Connexion en tant que {0} ({1})",
+ "remoteTunnelService.building": "Génération de l’interface CLI à partir de sources",
+ "remoteTunnelService.openTunnel": "Ouverture du tunnel",
+ "remoteTunnelService.openTunnelWithName": "Ouverture du tunnel{0}",
+ "remoteTunnelService.serviceInstallFailed": "Échec de l’installation du tunnel en tant que service, démarrage de la session..."
+ },
"vs/platform/request/common/request": {
+ "electronFetch": "Contrôle si l'utilisation de l'implémentation fetch d'Electron au lieu de celle de Node.js doit être activée. Toutes les extensions locales obtiendront l'implémentation d'Electron pour l'API de recherche globale.",
+ "fetchAdditionalSupport": "Contrôle si l'implémentation de récupération de Node.js doit être étendue avec un support supplémentaire. Actuellement, la prise en charge du proxy ({1}) et les certificats système ({2}) sont ajoutés lorsque les paramètres correspondants sont activés. Lors du [développement à distance](https://aka.ms/vscode-remote), le paramètre {0} est désactivé, ce paramètre peut être configuré séparément dans les paramètres locaux et distants.",
"httpConfigurationTitle": "HTTP",
- "proxy": "Paramètre proxy à utiliser. S'il n'est pas défini, il est hérité des variables d'environnement 'http_proxy' et 'https_proxy'.",
- "proxyAuthorization": "Valeur à envoyer comme en-tête 'Proxy-Authorization' pour chaque demande de réseau.",
- "proxySupport": "Utilisez la prise en charge du proxy pour les extensions.",
+ "networkInterfaceCheckInterval": "Contrôle l’intervalle en secondes pour vérifier les modifications de l’interface réseau afin d’invalider le cache proxy. Définissez sur -1 pour désactiver. Lors du [développement à distance](https://aka.ms/vscode-remote), le paramètre {0} est désactivé, ce paramètre peut être configuré séparément dans les paramètres locaux et distants.",
+ "noProxy": "Spécifie les noms de domaine pour lesquels les paramètres de proxy doivent être ignorés pour les requêtes HTTP/HTTPS. Lors du [développement à distance](https://aka.ms/vscode-remote), le paramètre {0} est désactivé, ce paramètre peut être configuré séparément dans les paramètres locaux et distants.",
+ "proxy": "Le paramètre de proxy à utiliser. S’il n’est pas défini, il est hérité des variables d’environnement « http_proxy » et « https_proxy ». Lors du [développement à distance](https://aka.ms/vscode-remote), le paramètre {0} est désactivé, ce paramètre peut être configuré séparément dans les paramètres locaux et distants.",
+ "proxyAuthorization": "Valeur à envoyer comme en-tête 'Proxy-Authorization' pour chaque demande de réseau. Lors du [développement à distance](https://aka.ms/vscode-remote), le paramètre {0} est désactivé, ce paramètre peut être configuré séparément dans les paramètres locaux et distants.",
+ "proxyKerberosServicePrincipal": "Remplace le nom du service principal pour l’authentification Kerberos avec le proxy HTTP. Une valeur par défaut basée sur le nom d’hôte du proxy est utilisée lorsque ce paramètre n’est pas défini. Lors du [développement à distance](https://aka.ms/vscode-remote), le paramètre {0} est désactivé, ce paramètre peut être configuré séparément dans les paramètres locaux et distants.",
+ "proxySupport": "Utilisez la prise en charge du proxy pour les extensions. Lors du [développement à distance](https://aka.ms/vscode-remote), le paramètre {0} est désactivé, ce paramètre peut être configuré séparément dans les paramètres locaux et distants.",
"proxySupportFallback": "Activer la prise en charge du proxy pour les extensions, revenir aux options de demande quand aucun proxy n’a été trouvé.",
"proxySupportOff": "Désactivez la prise en charge de proxy pour les extensions.",
"proxySupportOn": "Activez la prise en charge de proxy pour les extensions.",
"proxySupportOverride": "Activer le support de proxy pour les extensions, remplacer les options de demande.",
- "strictSSL": "Spécifie si le certificat de serveur proxy doit être vérifié par rapport à la liste des autorités de certification fournies.",
- "systemCertificates": "Contrôle si les certificats d'autorité de certification doivent être chargés à partir de l'OS. (Sur Windows et macOS, vous devez recharger la fenêtre après la désactivation de ce paramètre.)"
+ "strictSSL": "Spécifie si le certificat de serveur proxy doit être vérifié par rapport à la liste des autorités de certification fournies. Lors du [développement à distance](https://aka.ms/vscode-remote), le paramètre {0} est désactivé, ce paramètre peut être configuré séparément dans les paramètres locaux et distants.",
+ "systemCertificates": "Contrôle si les certificats d’autorité de certification doivent être chargés à partir du système d’exploitation. Sur Windows et macOS, un rechargement de la fenêtre est nécessaire après la désactivation de cette option. Lors du [développement à distance](https://aka.ms/vscode-remote), le paramètre {0} est désactivé, ce paramètre peut être configuré séparément dans les paramètres locaux et distants.",
+ "systemCertificatesNode": "Contrôle si les certificats système doivent être chargés en utilisant le support intégré de Node.js. Rechargez la fenêtre après avoir modifié ce paramètre. Lors du [développement à distance](https://aka.ms/vscode-remote), le paramètre {0} est désactivé, ce paramètre peut être configuré séparément dans les paramètres locaux et distants.",
+ "systemCertificatesV2": "Contrôle si le chargement expérimental des certificats d’autorité de certification à partir du système d’exploitation doit être activé. Ceci utilise une approche plus générale que l’implémenation par défaut. Lors du [développement à distance](https://aka.ms/vscode-remote), le paramètre {0} est désactivé, ce paramètre peut être configuré séparément dans les paramètres locaux et distants.",
+ "useLocalProxy": "Contrôle si, dans l’hôte d’extension distante, la configuration du proxy local doit être utilisée. Ce paramètre s’applique uniquement en tant que paramètre distant pendant [remote development](https://aka.ms/vscode-remote)."
},
"vs/platform/shell/node/shellEnv": {
"resolveShellEnvError": "Impossible de résoudre votre environnement d’interpréteur de commandes : {0}",
"resolveShellEnvExitError": "Code de sortie inattendu de l’interpréteur de commandes généré (code {0}, signal {1})",
- "resolveShellEnvTimeout": "Impossible de résoudre votre environnement d'interpréteur de commandes dans un délai raisonnable. Vérifiez la configuration de votre interpréteur de commandes."
+ "resolveShellEnvTimeout": "Impossible de résoudre votre environnement d'interpréteur de commandes dans un délai raisonnable. Veuillez vérifier la configuration de votre interpréteur de commandes et redémarrer."
+ },
+ "vs/platform/telemetry/common/telemetryLogAppender": {
+ "telemetryLog": "Télémétrie{0}"
},
"vs/platform/telemetry/common/telemetryService": {
"enableTelemetryDeprecated": "Si ce paramètre est faux, aucune télémétrie ne sera envoyée quelle que soit la valeur du nouveau paramètre. Déconseillé au profit du {0} cadre.",
@@ -1784,51 +2670,41 @@
"telemetry.docsAndPrivacyStatement": "En savoir plus sur les [données que nous collectons]({0}) et notre [déclaration de confidentialité]({1}).",
"telemetry.docsStatement": "En savoir plus sur les [données que nous collectons]({0}).",
"telemetry.enableTelemetry": "Activez la collecte des données de diagnostic. Cela nous permet de mieux comprendre comment {0} fonctionne et où des améliorations doivent être apportées.",
- "telemetry.enableTelemetryMd": "Activez la collecte des données de diagnostic. Cela nous permet de mieux comprendre comment {0} fonctionne et où des améliorations doivent être apportées. [En savoir plus] ({1}) sur ce que nous recueillons et notre déclaration de confidentialité.",
+ "telemetry.enableTelemetryMd": "Activez la collecte des données de diagnostic. Cela nous permet de mieux comprendre comment {0} fonctionne et où des améliorations doivent être apportées. [En savoir plus]({1}) sur ce que nous recueillons et notre déclaration de confidentialité.",
"telemetry.errors": "Télémétrie d'erreur",
+ "telemetry.feedback.enabled": "Activez les mécanismes de commentaires tels que le système de rapport de problèmes, les sondages et autres options de commentaires.",
"telemetry.restart": "Un redémarrage complet de l'application est nécessaire pour que les modifications apportées aux rapports d'incident prennent effet.",
"telemetry.telemetryLevel.crash": "Envoie des rapports de plantage au niveau du système d'exploitation.",
"telemetry.telemetryLevel.default": "Envoie les données d'utilisation, les erreurs et les rapports d'erreur.",
"telemetry.telemetryLevel.deprecated": "****Remarque :*** Si ce paramètre est désactivé, aucune télémétrie ne sera envoyée quels que soient les autres paramètres de télémétrie. Si ce paramètre est défini sur autre chose que « off » et que la télémétrie est désactivée avec des paramètres obsolètes, aucune télémétrie ne sera envoyée.*",
"telemetry.telemetryLevel.error": "Envoie la télémétrie d'erreur générale et les rapports de plantage.",
"telemetry.telemetryLevel.off": "Désactive toutes les données de télémétrie du produit.",
+ "telemetry.telemetryLevel.policyDescription": "Contrôle le niveau de télémétrie.",
"telemetry.telemetryLevel.tableDescription": "Le tableau suivant présente les données envoyées avec chaque paramètre :",
- "telemetry.telemetryLevelMd": "Contrôle télémétrie {0}, la télémétrie d’extension interne et la télémétrie des extensions tierces participantes. Certaines extensions tierces peuvent ne pas respecter ce paramètre. Consultez la documentation de l’extension spécifique pour en être sûr. La télémétrie nous aide à mieux comprendre les performances de {0} , où des améliorations doivent être apportées et comment les fonctionnalités sont utilisées.",
+ "telemetry.telemetryLevelMd": "Contrôle la télémétrie {0}, la télémétrie d’extension interne et la télémétrie des extensions tierces participantes. Certaines extensions tierces peuvent ne pas respecter ce paramètre. Consultez la documentation de l’extension spécifique pour en être sûr. La télémétrie nous aide à mieux comprendre les performances de {0}, où des améliorations doivent être apportées et comment les fonctionnalités sont utilisées.",
"telemetry.usage": "Données d'utilisation",
"telemetryConfigurationTitle": "Télémétrie"
},
+ "vs/platform/telemetry/common/telemetryUtils": {
+ "telemetryLogName": "Télémétrie"
+ },
+ "vs/platform/terminal/common/terminalLogService": {
+ "terminalLoggerName": "Terminal"
+ },
"vs/platform/terminal/common/terminalPlatformConfiguration": {
- "terminal.integrated.automationProfile.linux": "Le profil de terminal à utiliser sous Linux pour une utilisation de terminal liée à l'automatisation, comme les tâches et le débogage. Ce paramètre sera actuellement ignoré s'il {0} est défini.",
- "terminal.integrated.automationProfile.osx": "Le profil de terminal à utiliser sur macOS pour l'utilisation du terminal liée à l'automatisation, comme les tâches et le débogage. Ce paramètre sera actuellement ignoré s'il {0} est défini.",
- "terminal.integrated.automationProfile.windows": "Le profil de terminal à utiliser pour l'utilisation du terminal liée à l'automatisation, comme les tâches et le débogage. Ce paramètre sera actuellement ignoré s'il {0} est défini.",
- "terminal.integrated.automationShell.linux": "Chemin qui, une fois défini, substitue {0} et ignore les valeurs de {1} pour permettre une utilisation du terminal basée sur l'automatisation, par exemple dans le cas des tâches et du débogage.",
- "terminal.integrated.automationShell.linux.deprecation": "Ceci est obsolète, la nouvelle méthode recommandée pour configurer votre shell d'automatisation consiste à créer un profil d'automatisation de terminal avec {0}. Cela aura actuellement la priorité sur les nouveaux paramètres de profil d'automatisation, mais cela changera à l'avenir.",
- "terminal.integrated.automationShell.osx": "Chemin qui, une fois défini, substitue {0} et ignore les valeurs de {1} pour permettre une utilisation du terminal basée sur l'automatisation, par exemple dans le cas des tâches et du débogage.",
- "terminal.integrated.automationShell.osx.deprecation": "Ceci est obsolète, la nouvelle méthode recommandée pour configurer votre shell d'automatisation consiste à créer un profil d'automatisation de terminal avec {0}. Cela aura actuellement la priorité sur les nouveaux paramètres de profil d'automatisation, mais cela changera à l'avenir.",
- "terminal.integrated.automationShell.windows": "Chemin qui, une fois défini, substitue {0} et ignore les valeurs de {1} pour permettre une utilisation du terminal basée sur l'automatisation, par exemple dans le cas des tâches et du débogage.",
- "terminal.integrated.automationShell.windows.deprecation": "Ceci est obsolète, la nouvelle méthode recommandée pour configurer votre shell d'automatisation consiste à créer un profil d'automatisation de terminal avec {0}. Cela aura actuellement la priorité sur les nouveaux paramètres de profil d'automatisation, mais cela changera à l'avenir.",
+ "terminal.integrated.automationProfile.linux": "Le profil de terminal à utiliser sous Linux pour une utilisation de terminal liée à l’automatisation, comme les tâches et le débogage.",
+ "terminal.integrated.automationProfile.osx": "Le profil de terminal à utiliser sous macOS pour une utilisation de terminal liée à l’automatisation, comme les tâches et le débogage.",
+ "terminal.integrated.automationProfile.windows": "Le profil de terminal à utiliser pour une utilisation de terminal liée à l’automatisation, comme les tâches et le débogage. Ce paramètre sera actuellement ignoré si {0} (maintenant déconseillé) est défini.",
"terminal.integrated.confirmIgnoreProcesses": "Ensemble de noms de processus à ignorer lors de l’utilisation du paramètre {0}.",
- "terminal.integrated.defaultProfile.linux": "Profil par défaut à utiliser sur Linux. Ce paramètre est ignoré si {0} ou {1} sont définis.",
- "terminal.integrated.defaultProfile.osx": "Profil par défaut à utiliser sur macOS. Ce paramètre est ignoré si {0} ou {1} sont définis.",
- "terminal.integrated.defaultProfile.windows": "Profil par défaut à utiliser sur Windows. Ce paramètre est ignoré si {0} ou {1} sont définis.",
+ "terminal.integrated.defaultProfile.linux": "Profil de terminal par défaut sur Linux.",
+ "terminal.integrated.defaultProfile.osx": "Profil de terminal par défaut sur macOS.",
+ "terminal.integrated.defaultProfile.windows": "Profil de terminal par défaut sur Windows.",
"terminal.integrated.inheritEnv": "Indique si les nouveaux interpréteurs de commandes doivent hériter leur environnement de VS Code, qui peut sourcer un interpréteur de connexion pour garantir l’initialisation de $PATH et d’autres variables de développement. Cela n’a aucun effet sur Windows.",
"terminal.integrated.persistentSessionScrollback": "Contrôle le nombre maximal de lignes qui seront restaurées lors de la reconnexion à une session terminale persistante. L’augmentation de cette opération permet de restaurer plus de lignes de scrollback au prix d’une mémoire supérieure et d’augmenter le temps nécessaire pour se connecter aux terminaux lors du démarrage. Ce paramètre nécessite un redémarrage pour prendre effet et doit être défini sur une valeur inférieure ou égale à' #terminal. Integrated. scrollback # '.",
- "terminal.integrated.profile.linux": "Profils Linux à présenter lors de la création d’un terminal via la liste déroulante du terminal. Définissez manuellement la propriété {0} avec une {1} facultative.\r\n\r\nDéfinissez un profil existant sur {2} pour masquer le profil dans la liste, par exemple : {3}.",
- "terminal.integrated.profile.osx": "Profils macOS à présenter lors de la création d’un terminal via la liste déroulante du terminal. Définissez manuellement la propriété {0} avec une {1} facultative.\r\n\r\nDéfinissez un profil existant sur {2} pour masquer le profil dans la liste, par exemple : {3}.",
- "terminal.integrated.profiles.windows": "Les profils Windows à présenter lors de la création d'un nouveau terminal via la liste déroulante des terminaux. Utilisez cette propriété pour détecter {0}automatiquement l'emplacement du shell. Vous pouvez également définir la {1}propriété manuellement avec un paramètre facultatif {2}. \r\n\r\nDéfinissez un profil existant sur {3} pour masquer le profil de la liste, par exemple : {4}.",
- "terminal.integrated.shell.linux": "Chemin de l'interpréteur de commandes utilisé par le terminal sur Linux. [En savoir plus sur la configuration de l'interpréteur de commandes](https://code.visualstudio.com/docs/editor/integrated-terminal#_profil de terminal).",
- "terminal.integrated.shell.linux.deprecation": "Déprécié, la nouvelle méthode recommandée pour configurer votre interpréteur de commandes par défaut consiste à créer un profil de terminal dans {0} et à définir son nom de profil comme valeur par défaut dans {1}. Cela prend la priorité sur les nouveaux paramètres de profil, mais ce comportement sera sujet à changement dans le futur.",
- "terminal.integrated.shell.osx": "Chemin de l'interpréteur de commandes utilisé par le terminal sur macOS. [En savoir plus sur la configuration de l'interpréteur de commandes](https://code.visualstudio.com/docs/editor/integrated-terminal#_profil de terminal).",
- "terminal.integrated.shell.osx.deprecation": "Déprécié, la nouvelle méthode recommandée pour configurer votre interpréteur de commandes par défaut consiste à créer un profil de terminal dans {0} et à définir son nom de profil comme valeur par défaut dans {1}. Cela prend la priorité sur les nouveaux paramètres de profil, mais ce comportement sera sujet à changement dans le futur.",
- "terminal.integrated.shell.windows": "Chemin de l'interpréteur de commandes utilisé par le terminal sur Windows. [En savoir plus sur la configuration de l'interpréteur de commandes](https://code.visualstudio.com/docs/editor/integrated-terminal#_profil de terminal).",
- "terminal.integrated.shell.windows.deprecation": "Déprécié, la nouvelle méthode recommandée pour configurer votre interpréteur de commandes par défaut consiste à créer un profil de terminal dans {0} et à définir son nom de profil comme valeur par défaut dans {1}. Cela prend la priorité sur les nouveaux paramètres de profil, mais ce comportement sera sujet à changement dans le futur.",
- "terminal.integrated.shellArgs.linux": "Arguments de ligne de commande à utiliser sur le terminal Linux. [En savoir plus sur la configuration de l'interpréteur de commandes](https://code.visualstudio.com/docs/editor/integrated-terminal#_profils de terminal).",
- "terminal.integrated.shellArgs.osx": "Arguments de ligne de commande à utiliser sur le terminal macOS. [En savoir plus sur la configuration de l'interpréteur de commandes](https://code.visualstudio.com/docs/editor/integrated-terminal#_profils de terminal).",
- "terminal.integrated.shellArgs.windows": "Arguments de ligne de commande à utiliser sur le terminal Windows. [En savoir plus sur la configuration de l'interpréteur de commandes](https://code.visualstudio.com/docs/editor/integrated-terminal#_profils de terminal).",
- "terminal.integrated.shellArgs.windows.string": "Arguments de ligne de commande au [format de ligne de commande](https://msdn.microsoft.com/en-au/08dfcab2-eb6e-49a4-80eb-87d4076c98c6) à utiliser sur le terminal Windows. [En savoir plus sur la configuration de l'interpréteur de commandes](https://code.visualstudio.com/docs/editor/integrated-terminal#_profil de terminal).",
+ "terminal.integrated.profile": "Ensemble de personnalisations de profil de terminal pour {0} qui permet d’ajouter, de supprimer ou de modifier le mode de lancement des terminaux. Les profils sont constitués d’un chemin d’accès obligatoire, d’arguments facultatifs et d’autres options de présentation.\r\n\r\nPour remplacer un profil existant, utilisez son nom de profil comme clé, par exemple :\r\n\r\n{1}\r\n\r\n{2}En savoir plus sur la configuration des profils{3}.",
"terminal.integrated.showLinkHover": "Indique s’il faut afficher les pointages pour les liens dans la sortie du terminal.",
"terminal.integrated.useWslProfiles": "Contrôle si les distributions WSL sont affichées ou non dans la liste déroulante de terminal",
- "terminalAutomationProfile.path": "Chemin unique d’un exécutable d’interpréteur de commandes",
+ "terminalAutomationProfile.path": "Chemin d’un exécutable d’interpréteur de commandes.",
"terminalIntegratedConfigurationTitle": "Terminal intégré",
"terminalProfile.args": "Ensemble facultatif d'arguments à utiliser avec l'exécutable d'interpréteur de commandes.",
"terminalProfile.color": "ID de couleur de thème à associer à l’icône de terminal.",
@@ -1840,16 +2716,19 @@
"terminalProfile.osxExtensionId": "ID du terminal d’extension",
"terminalProfile.osxExtensionIdentifier": "L'extension qui a contribué à ce profil.",
"terminalProfile.osxExtensionTitle": "Nom du terminal d’extension",
- "terminalProfile.overrideName": "Contrôle si le nom du profil doit remplacer ou non celui qui est détecté automatiquement.",
+ "terminalProfile.overrideName": "Remplacer ou non le titre dynamique du terminal, qui détecte le programme en cours d’exécution, par le nom statique du profil.",
"terminalProfile.path": "Chemin unique d'un exécutable d'interpréteur de commandes ou tableau des chemins utilisés en tant que solutions de secours en cas d'échec.",
"terminalProfile.windowsExtensionId": "ID du terminal d’extension",
"terminalProfile.windowsExtensionIdentifier": "L'extension qui a contribué à ce profil.",
"terminalProfile.windowsExtensionTitle": "Nom du terminal d’extension",
- "terminalProfile.windowsSource": "Source de profil qui va détecter automatiquement les chemins de l'interpréteur de commandes."
+ "terminalProfile.windowsSource": "Source de profil qui détecte automatiquement les chemins d’accès à l’interpréteur de commandes. Notez que les emplacements exécutables non standard ne sont pas pris en charge et doivent être créés manuellement dans un nouveau profil."
},
"vs/platform/terminal/common/terminalProfiles": {
"terminalAutomaticProfile": "Détecter automatiquement la valeur par défaut"
},
+ "vs/platform/terminal/node/ptyHostMain": {
+ "ptyHost": "Hôte Pty"
+ },
"vs/platform/terminal/node/ptyService": {
"terminal-history-restored": "Historique restauré"
},
@@ -1859,23 +2738,26 @@
"launchFail.executableDoesNotExist": "Le chemin de l'exécutable d'interpréteur de commandes \"{0}\" n'existe pas",
"launchFail.executableIsNotFileOrSymlink": "Le chemin d'accès de l'exécutable d'interpréteur de commandes « {0} » n'est pas celui d'un fichier de lien symbolique"
},
- "vs/platform/theme/common/colorRegistry": {
+ "vs/platform/theme/common/colors/baseColors": {
"activeContrastBorder": "Bordure supplémentaire autour des éléments actifs pour les séparer des autres et obtenir un meilleur contraste.",
- "activeLinkForeground": "Couleur des liens actifs.",
- "badgeBackground": "Couleur de fond des badges. Les badges sont de courts libellés d'information, ex. le nombre de résultats de recherche.",
- "badgeForeground": "Couleur des badges. Les badges sont de courts libellés d'information, ex. le nombre de résultats de recherche.",
- "breadcrumbsBackground": "Couleur de fond des éléments de navigation.",
- "breadcrumbsFocusForeground": "Couleur des éléments de navigation avec le focus.",
- "breadcrumbsSelectedBackground": "Couleur de fond du sélecteur d’élément de navigation.",
- "breadcrumbsSelectedForeground": "Couleur des éléments de navigation sélectionnés.",
- "buttonBackground": "Couleur d'arrière-plan du bouton.",
- "buttonBorder": "Couleur de bordure du bouton.",
- "buttonForeground": "Couleur de premier plan du bouton.",
- "buttonHoverBackground": "Couleur d'arrière-plan du bouton pendant le pointage.",
- "buttonSecondaryBackground": "Couleur d'arrière-plan du bouton secondaire.",
- "buttonSecondaryForeground": "Couleur de premier plan du bouton secondaire.",
- "buttonSecondaryHoverBackground": "Couleur d'arrière-plan du bouton secondaire au moment du pointage.",
- "buttonSeparator": "Couleur du séparateur de boutons.",
+ "contrastBorder": "Bordure supplémentaire autour des éléments pour les séparer des autres et obtenir un meilleur contraste.",
+ "descriptionForeground": "Couleur de premier plan du texte descriptif fournissant des informations supplémentaires, par exemple pour un label.",
+ "disabledForeground": "Premier plan globale pour les éléments désactivés. Cette couleur est utilisée si elle n'est pas remplacée par un composant.",
+ "errorForeground": "Couleur principale de premier plan pour les messages d'erreur. Cette couleur est utilisée uniquement si elle n'est pas redéfinie par un composant.",
+ "focusBorder": "Couleur de bordure globale des éléments ayant le focus. Cette couleur est utilisée si elle n'est pas remplacée par un composant.",
+ "foreground": "Couleur de premier plan globale. Cette couleur est utilisée si elle n'est pas remplacée par un composant.",
+ "iconForeground": "Couleur par défaut des icônes du banc d'essai.",
+ "selectionBackground": "La couleur d'arrière-plan des sélections de texte dans le banc d'essai (par ex., pour les champs d'entrée ou les zones de texte). Notez que cette couleur ne s'applique pas aux sélections dans l'éditeur et le terminal.",
+ "textBlockQuoteBackground": "Couleur d'arrière-plan des citations dans le texte.",
+ "textBlockQuoteBorder": "Couleur de bordure des citations dans le texte.",
+ "textCodeBlockBackground": "Couleur d'arrière-plan des blocs de code dans le texte.",
+ "textLinkActiveForeground": "Couleur de premier plan pour les liens dans le texte lorsqu'ils sont cliqués ou survolés.",
+ "textLinkForeground": "Couleur des liens dans le texte.",
+ "textPreformatBackground": "Couleur d'arrière-plan pour les segments de texte préformatés.",
+ "textPreformatForeground": "Couleur des segments de texte préformatés.",
+ "textSeparatorForeground": "Couleur pour les séparateurs de texte."
+ },
+ "vs/platform/theme/common/colors/chartsColors": {
"chartsBlue": "Couleur bleue utilisée dans les visualisations de graphiques.",
"chartsForeground": "Couleur de premier plan utilisée dans les graphiques.",
"chartsGreen": "Couleur verte utilisée dans les visualisations de graphiques.",
@@ -1883,13 +2765,18 @@
"chartsOrange": "Couleur orange utilisée dans les visualisations de graphiques.",
"chartsPurple": "Couleur violette utilisée dans les visualisations de graphiques.",
"chartsRed": "Couleur rouge utilisée dans les visualisations de graphiques.",
- "chartsYellow": "Couleur jaune utilisée dans les visualisations de graphiques.",
- "checkbox.background": "Couleur de fond du widget Case à cocher.",
- "checkbox.border": "Couleur de bordure du widget Case à cocher.",
- "checkbox.foreground": "Couleur de premier plan du widget Case à cocher.",
- "contrastBorder": "Bordure supplémentaire autour des éléments pour les séparer des autres et obtenir un meilleur contraste.",
- "descriptionForeground": "Couleur de premier plan du texte descriptif fournissant des informations supplémentaires, par exemple pour un label.",
+ "chartsYellow": "Couleur jaune utilisée dans les visualisations de graphiques."
+ },
+ "vs/platform/theme/common/colors/editorColors": {
+ "activeLinkForeground": "Couleur des liens actifs.",
+ "breadcrumbsBackground": "Couleur de fond des éléments de navigation.",
+ "breadcrumbsFocusForeground": "Couleur des éléments de navigation avec le focus.",
+ "breadcrumbsSelectedBackground": "Couleur de fond du sélecteur d’élément de navigation.",
+ "breadcrumbsSelectedForeground": "Couleur des éléments de navigation sélectionnés.",
"diffDiagonalFill": "Couleur du remplissage diagonal de l'éditeur de différences. Le remplissage diagonal est utilisé dans les vues de différences côte à côte.",
+ "diffEditor.unchangedCodeBackground": "Couleur d’arrière-plan du code inchangé dans l’éditeur de différences.",
+ "diffEditor.unchangedRegionBackground": "Couleur d’arrière-plan des blocs inchangés dans l’éditeur de différences.",
+ "diffEditor.unchangedRegionForeground": "Couleur de premier plan des blocs inchangés dans l’éditeur de différences.",
"diffEditorBorder": "Couleur de bordure entre les deux éditeurs de texte.",
"diffEditorInserted": "Couleur d'arrière-plan du texte inséré. La couleur ne doit pas être opaque pour ne pas masquer les ornements sous-jacents.",
"diffEditorInsertedLineGutter": "Couleur d’arrière-plan de la marge où les lignes ont été insérées",
@@ -1901,16 +2788,13 @@
"diffEditorRemovedLineGutter": "Couleur d’arrière-plan de la marge où les lignes ont été supprimées",
"diffEditorRemovedLines": "Couleur d'arrière-plan des lignes supprimées. La couleur ne doit pas être opaque pour ne pas masquer les ornements sous-jacents.",
"diffEditorRemovedOutline": "Couleur de contour du texte supprimé.",
- "disabledForeground": "Premier plan globale pour les éléments désactivés. Cette couleur est utilisée si elle n'est pas remplacée par un composant.",
- "dropdownBackground": "Arrière-plan de la liste déroulante.",
- "dropdownBorder": "Bordure de la liste déroulante.",
- "dropdownForeground": "Premier plan de la liste déroulante.",
- "dropdownListBackground": "Arrière-plan de la liste déroulante.",
"editorBackground": "Couleur d'arrière-plan de l'éditeur.",
+ "editorCompositionBorder": "Couleur de bordure d’une composition IME.",
"editorError.background": "Couleur d'arrière-plan du texte d'erreur dans l'éditeur. La couleur ne doit pas être opaque pour ne pas masquer les décorations sous-jacentes.",
"editorError.foreground": "Couleur de premier plan de la ligne ondulée marquant les erreurs dans l'éditeur.",
"editorFindMatch": "Couleur du résultat de recherche actif.",
"editorFindMatchBorder": "Couleur de bordure du résultat de recherche actif.",
+ "editorFindMatchForeground": "Couleur du texte du résultat de recherche actif.",
"editorForeground": "Couleur de premier plan par défaut de l'éditeur.",
"editorHint.foreground": "Couleur de premier plan de la ligne ondulée d'indication dans l'éditeur.",
"editorInactiveSelection": "Couleur de la sélection dans un éditeur inactif. La couleur ne doit pas être opaque pour ne pas masquer les ornements sous-jacents.",
@@ -1922,44 +2806,91 @@
"editorInlayHintForeground": "Couleur de premier plan des indicateurs inline",
"editorInlayHintForegroundParameter": "Couleur de premier plan des indicateurs inline pour les paramètres",
"editorInlayHintForegroundTypes": "Couleur de premier plan des indicateurs inline pour les types",
+ "editorLightBulbAiForeground": "La couleur utilisée pour l’icône AI de l’ampoule.",
"editorLightBulbAutoFixForeground": "Couleur utilisée pour l'icône d'ampoule suggérant des actions de correction automatique.",
"editorLightBulbForeground": "Couleur utilisée pour l'icône d'ampoule suggérant des actions.",
"editorSelectionBackground": "Couleur de la sélection de l'éditeur.",
"editorSelectionForeground": "Couleur du texte sélectionné pour le contraste élevé.",
"editorSelectionHighlight": "Couleur des régions dont le contenu est le même que celui de la sélection. La couleur ne doit pas être opaque pour ne pas masquer les ornements sous-jacents.",
"editorSelectionHighlightBorder": "Couleur de bordure des régions dont le contenu est identique à la sélection.",
- "editorStickyScrollBackground": "Sticky scroll background color for the editor",
- "editorStickyScrollHoverBackground": "Sticky scroll on hover background color for the editor",
+ "editorStickyScrollBackground": "Couleur d’arrière-plan du défilement épinglé dans l’éditeur",
+ "editorStickyScrollBorder": "Couleur de bordure du défilement épinglé dans l’éditeur",
+ "editorStickyScrollGutterBackground": "Couleur d'arrière-plan de la partie gouttière du défilement épinglé dans l'éditeur",
+ "editorStickyScrollHoverBackground": "Couleur d’arrière-plan du défilement épinglé lors du pointage pour l’éditeur",
+ "editorStickyScrollShadow": " Couleur d’ombre du défilement épinglé dans l’éditeur",
"editorWarning.background": "Couleur d'arrière-plan du texte d'avertissement dans l'éditeur. La couleur ne doit pas être opaque pour ne pas masquer les décorations sous-jacentes.",
"editorWarning.foreground": "Couleur de premier plan de la ligne ondulée marquant les avertissements dans l'éditeur.",
"editorWidgetBackground": "Couleur d'arrière-plan des gadgets de l'éditeur tels que rechercher/remplacer.",
"editorWidgetBorder": "Couleur de bordure des widgets de l'éditeur. La couleur est utilisée uniquement si le widget choisit d'avoir une bordure et si la couleur n'est pas remplacée par un widget.",
"editorWidgetForeground": "Couleur de premier plan des widgets de l'éditeur, notamment Rechercher/remplacer.",
"editorWidgetResizeBorder": "Couleur de bordure de la barre de redimensionnement des widgets de l'éditeur. La couleur est utilisée uniquement si le widget choisit une bordure de redimensionnement et si la couleur n'est pas remplacée par un widget.",
- "errorBorder": "Couleur de bordure des zones d'erreur dans l'éditeur.",
- "errorForeground": "Couleur principale de premier plan pour les messages d'erreur. Cette couleur est utilisée uniquement si elle n'est pas redéfinie par un composant.",
+ "errorBorder": "Si cette option est définie, couleur des doubles soulignements pour les erreurs dans l’éditeur.",
"findMatchHighlight": "Couleur des autres correspondances de recherche. La couleur ne doit pas être opaque pour ne pas masquer les ornements sous-jacents.",
"findMatchHighlightBorder": "Couleur de bordure des autres résultats de recherche.",
+ "findMatchHighlightForeground": "Couleur de premier plan des autres résultats de recherche.",
"findRangeHighlight": "Couleur de la plage limitant la recherche. La couleur ne doit pas être opaque pour ne pas masquer les ornements sous-jacents.",
"findRangeHighlightBorder": "Couleur de bordure de la plage limitant la recherche. La couleur ne doit pas être opaque pour ne pas masquer les ornements sous-jacents.",
- "focusBorder": "Couleur de bordure globale des éléments ayant le focus. Cette couleur est utilisée si elle n'est pas remplacée par un composant.",
- "foreground": "Couleur de premier plan globale. Cette couleur est utilisée si elle n'est pas remplacée par un composant.",
- "highlight": "Couleur de premier plan dans la liste/l'arborescence pour la surbrillance des correspondances pendant la recherche dans une liste/arborescence.",
- "hintBorder": "Couleur de bordure des zones d'indication dans l'éditeur.",
+ "hintBorder": "Si cette option est définie, couleur des doubles soulignements pour les conseils dans l’éditeur.",
"hoverBackground": "Couleur d'arrière-plan du pointage de l'éditeur.",
"hoverBorder": "Couleur de bordure du pointage de l'éditeur.",
"hoverForeground": "Couleur de premier plan du pointage de l'éditeur.",
"hoverHighlight": "Surlignage sous le mot sélectionné par pointage. La couleur ne doit pas être opaque pour ne pas masquer les ornements sous-jacents.",
- "iconForeground": "Couleur par défaut des icônes du banc d'essai.",
- "infoBorder": "Couleur de bordure des zones d'informations dans l'éditeur.",
- "inputBoxActiveOptionBorder": "Couleur de la bordure des options activées dans les champs d'entrée.",
- "inputBoxBackground": "Arrière-plan de la zone d'entrée.",
- "inputBoxBorder": "Bordure de la zone d'entrée.",
- "inputBoxForeground": "Premier plan de la zone d'entrée.",
- "inputOption.activeBackground": "Couleur de pointage d’arrière-plan des options dans les champs d’entrée.",
- "inputOption.activeForeground": "Couleur de premier plan des options activées dans les champs d'entrée.",
- "inputOption.hoverBackground": "Couleur d'arrière-plan des options activées dans les champs d'entrée.",
- "inputPlaceholderForeground": "Couleur de premier plan de la zone d'entrée pour le texte d'espace réservé.",
+ "infoBorder": "Si cette option est définie, couleur des doubles soulignements pour les informations dans l’éditeur.",
+ "mergeBorder": "Couleur de bordure des en-têtes et du séparateur dans les conflits de fusion inline.",
+ "mergeCommonContentBackground": "Arrière-plan de contenu de l'ancêtre commun dans les conflits de fusion inline. La couleur ne doit pas être opaque pour ne pas masquer les ornements sous-jacents.",
+ "mergeCommonHeaderBackground": "Arrière-plan d'en-tête de l'ancêtre commun dans les conflits de fusion inline. La couleur ne doit pas être opaque pour ne pas masquer les ornements sous-jacents.",
+ "mergeCurrentContentBackground": "Arrière-plan de contenu actuel dans les conflits de fusion inline. La couleur ne doit pas être opaque pour ne pas masquer les ornements sous-jacents.",
+ "mergeCurrentHeaderBackground": "Arrière-plan d'en-tête actuel dans les conflits de fusion inline. La couleur ne doit pas être opaque pour ne pas masquer les ornements sous-jacents.",
+ "mergeIncomingContentBackground": "Arrière-plan de contenu entrant dans les conflits de fusion inline. La couleur ne doit pas être opaque pour ne pas masquer les ornements sous-jacents.",
+ "mergeIncomingHeaderBackground": "Arrière-plan d'en-tête entrant dans les conflits de fusion inline. La couleur ne doit pas être opaque pour ne pas masquer les ornements sous-jacents.",
+ "overviewRulerCommonContentForeground": "Arrière-plan de la règle d'aperçu de l'ancêtre commun dans les conflits de fusion inline.",
+ "overviewRulerCurrentContentForeground": "Premier plan de la règle d'aperçu actuelle pour les conflits de fusion inline.",
+ "overviewRulerFindMatchForeground": "Couleur de marqueur de la règle d'aperçu pour rechercher les correspondances. La couleur ne doit pas être opaque pour ne pas masquer les ornements sous-jacents.",
+ "overviewRulerIncomingContentForeground": "Premier plan de la règle d'aperçu entrante pour les conflits de fusion inline.",
+ "overviewRulerSelectionHighlightForeground": "Couleur de marqueur de la règle d'aperçu pour la mise en surbrillance des sélections. La couleur ne doit pas être opaque pour ne pas masquer les ornements sous-jacents.",
+ "problemsErrorIconForeground": "Couleur utilisée pour l'icône d'erreur des problèmes.",
+ "problemsInfoIconForeground": "Couleur utilisée pour l'icône d'informations des problèmes.",
+ "problemsWarningIconForeground": "Couleur utilisée pour l'icône d'avertissement des problèmes.",
+ "snippetFinalTabstopHighlightBackground": "Couleur d’arrière-plan de mise en surbrillance du tabstop final d’un extrait.",
+ "snippetFinalTabstopHighlightBorder": "Mettez en surbrillance la couleur de bordure du dernier taquet de tabulation d'un extrait de code.",
+ "snippetTabstopHighlightBackground": "Couleur d’arrière-plan de mise en surbrillance d’un extrait tabstop.",
+ "snippetTabstopHighlightBorder": "Couleur de bordure de mise en surbrillance d’un extrait tabstop.",
+ "statusBarBackground": "Couleur d'arrière-plan de la barre d'état du pointage de l'éditeur.",
+ "toolbarActiveBackground": "Arrière-plan de la barre d’outils quand la souris est maintenue sur des actions",
+ "toolbarHoverBackground": "Arrière-plan de la barre d’outils lors du survol des actions à l’aide de la souris",
+ "toolbarHoverOutline": "Contour de la barre d’outils lors du survol des actions à l’aide de la souris",
+ "warningBorder": "Si cette option est définie, couleur des doubles soulignements pour les avertissements dans l’éditeur.",
+ "widgetBorder": "Couleur de bordure des widgets, comme rechercher/remplacer au sein de l'éditeur.",
+ "widgetShadow": "Couleur de l'ombre des widgets, comme rechercher/remplacer, au sein de l'éditeur."
+ },
+ "vs/platform/theme/common/colors/inputColors": {
+ "buttonBackground": "Couleur d'arrière-plan du bouton.",
+ "buttonBorder": "Couleur de bordure du bouton.",
+ "buttonForeground": "Couleur de premier plan du bouton.",
+ "buttonHoverBackground": "Couleur d'arrière-plan du bouton pendant le pointage.",
+ "buttonSecondaryBackground": "Couleur d'arrière-plan du bouton secondaire.",
+ "buttonSecondaryForeground": "Couleur de premier plan du bouton secondaire.",
+ "buttonSecondaryHoverBackground": "Couleur d'arrière-plan du bouton secondaire au moment du pointage.",
+ "buttonSeparator": "Couleur du séparateur de boutons.",
+ "checkbox.background": "Couleur de fond du widget Case à cocher.",
+ "checkbox.border": "Couleur de bordure du widget Case à cocher.",
+ "checkbox.disabled.background": "Arrière-plan d’une case à cocher désactivée.",
+ "checkbox.disabled.foreground": "Avant-plan d’une case à cocher désactivée.",
+ "checkbox.foreground": "Couleur de premier plan du widget Case à cocher.",
+ "checkbox.select.background": "Couleur d’arrière-plan du widget de case à cocher lorsque l’élément dans lequel il se trouve est sélectionné.",
+ "checkbox.select.border": "Couleur de bordure du widget de case à cocher lorsque l’élément dans lequel il se trouve est sélectionné.",
+ "dropdownBackground": "Arrière-plan de la liste déroulante.",
+ "dropdownBorder": "Bordure de la liste déroulante.",
+ "dropdownForeground": "Premier plan de la liste déroulante.",
+ "dropdownListBackground": "Arrière-plan de la liste déroulante.",
+ "inputBoxActiveOptionBorder": "Couleur de la bordure des options activées dans les champs d'entrée.",
+ "inputBoxBackground": "Arrière-plan de la zone d'entrée.",
+ "inputBoxBorder": "Bordure de la zone d'entrée.",
+ "inputBoxForeground": "Premier plan de la zone d'entrée.",
+ "inputOption.activeBackground": "Couleur de pointage d’arrière-plan des options dans les champs d’entrée.",
+ "inputOption.activeForeground": "Couleur de premier plan des options activées dans les champs d'entrée.",
+ "inputOption.hoverBackground": "Couleur d'arrière-plan des options activées dans les champs d'entrée.",
+ "inputPlaceholderForeground": "Couleur de premier plan de la zone d'entrée pour le texte d'espace réservé.",
"inputValidationErrorBackground": "Couleur d'arrière-plan de la validation d'entrée pour la gravité de l'erreur.",
"inputValidationErrorBorder": "Couleur de bordure de la validation d'entrée pour la gravité de l'erreur. ",
"inputValidationErrorForeground": "Couleur de premier plan de la validation de saisie pour la sévérité Erreur.",
@@ -1969,16 +2900,31 @@
"inputValidationWarningBackground": "Couleur d'arrière-plan de la validation d'entrée pour la gravité de l'avertissement.",
"inputValidationWarningBorder": "Couleur de bordure de la validation d'entrée pour la gravité de l'avertissement.",
"inputValidationWarningForeground": "Couleur de premier plan de la validation de la saisie pour la sévérité Avertissement.",
- "invalidItemForeground": "Couleur de premier plan de liste/arbre pour les éléments non valides, par exemple une racine non résolue dans l’Explorateur.",
"keybindingLabelBackground": "Couleur d’arrière-plan d’étiquette de combinaison de touches. L’étiquette est utilisée pour représenter un raccourci clavier.",
"keybindingLabelBorder": "Couleur de bordure de la combinaison de touches. L’étiquette est utilisée pour représenter un raccourci clavier.",
"keybindingLabelBottomBorder": "Couleur de bordure du bas d’étiquette de combinaison de touches. L’étiquette est utilisée pour représenter un raccourci clavier.",
"keybindingLabelForeground": "Couleur de premier plan d’étiquette de combinaison de touches. L’étiquette est utilisée pour représenter un raccourci clavier.",
+ "radioActiveBorder": "Couleur de bordure de l’option radio active.",
+ "radioActiveForeground": "Couleur de premier plan de l’option radio active.",
+ "radioBackground": "Couleur d’arrière-plan de l’option radio active.",
+ "radioHoverBackground": "Couleur d’arrière-plan de l’option radio active inactive lors du pointage.",
+ "radioInactiveBackground": "Couleur d’arrière-plan de l’option radio inactive.",
+ "radioInactiveBorder": "Couleur de bordure de l’option radio inactive.",
+ "radioInactiveForeground": "Couleur de premier plan de l’option radio inactive."
+ },
+ "vs/platform/theme/common/colors/listColors": {
+ "editorActionListBackground": "Couleur d'arrière-plan de la liste d'actions.",
+ "editorActionListFocusBackground": "Couleur d'arrière-plan de la liste d'actions pour l'élément focalisé.",
+ "editorActionListFocusForeground": "Couleur de premier plan de la liste d’actions pour l’élément focalisé.",
+ "editorActionListForeground": "Couleur de premier plan de la liste d'actions.",
+ "highlight": "Couleur de premier plan dans la liste/l'arborescence pour la surbrillance des correspondances pendant la recherche dans une liste/arborescence.",
+ "invalidItemForeground": "Couleur de premier plan de liste/arbre pour les éléments non valides, par exemple une racine non résolue dans l’Explorateur.",
"listActiveSelectionBackground": "Couleur d'arrière-plan de la liste/l'arborescence de l'élément sélectionné quand la liste/l'arborescence est active. Une liste/arborescence active peut être sélectionnée au clavier, elle ne l'est pas quand elle est inactive.",
"listActiveSelectionForeground": "Couleur de premier plan de la liste/l'arborescence pour l'élément sélectionné quand la liste/l'arborescence est active. Une liste/arborescence active peut être sélectionnée au clavier, elle ne l'est pas quand elle est inactive.",
"listActiveSelectionIconForeground": "Couleur de premier plan de l’icône Liste/l'arborescence pour l'élément sélectionné quand la liste/l'arborescence est active. Une liste/arborescence active peut être sélectionnée au clavier, elle ne l'est pas quand elle est inactive.",
- "listDeemphasizedForeground": "Couleur de premier plan de la liste/l'arborescence des éléments atténués.",
- "listDropBackground": "Arrière-plan de l'opération de glisser-déplacer dans une liste/arborescence pendant le déplacement d'éléments avec la souris.",
+ "listDeemphasizedForeground": "Couleur de premier plan de la liste/l’arborescence des éléments atténués.",
+ "listDropBackground": "Arrière-plan de l'opération de glisser-déplacer dans une liste/arborescence pendant le déplacement d’éléments sur d’autres éléments avec la souris.",
+ "listDropBetweenBackground": "Couleur de bordure glisser-déplacer de la liste/de l’arborescence lors du déplacement d’éléments entre des éléments lors de l’utilisation de la souris.",
"listErrorForeground": "Couleur de premier plan des éléments de la liste contenant des erreurs.",
"listFilterMatchHighlight": "Couleur d'arrière-plan de la correspondance filtrée.",
"listFilterMatchHighlightBorder": "Couleur de bordure de la correspondance filtrée.",
@@ -1999,82 +2945,77 @@
"listInactiveSelectionForeground": "Couleur de premier plan de la liste/l'arborescence pour l'élément sélectionné quand la liste/l'arborescence est inactive. Une liste/arborescence active peut être sélectionnée au clavier, elle ne l'est pas quand elle est inactive.",
"listInactiveSelectionIconForeground": "Couleur de premier plan de l’icône Liste/l'arborescence pour l'élément sélectionné quand la liste/l'arborescence est inactive. Une liste/arborescence active peut être sélectionnée au clavier, elle ne l'est pas quand elle est inactive.",
"listWarningForeground": "Couleur de premier plan des éléments de liste contenant des avertissements.",
+ "tableColumnsBorder": "Couleur de la bordure du tableau entre les colonnes.",
+ "tableOddRowsBackgroundColor": "Couleur d'arrière-plan pour les lignes de tableau impaires.",
+ "treeInactiveIndentGuidesStroke": "Couleur de trait d’arborescence pour les repères de mise en retrait qui ne sont pas actifs.",
+ "treeIndentGuidesStroke": "Couleur de trait de l'arborescence pour les repères de mise en retrait."
+ },
+ "vs/platform/theme/common/colors/menuColors": {
"menuBackground": "Couleur d'arrière-plan des éléments de menu.",
"menuBorder": "Couleur de bordure des menus.",
"menuForeground": "Couleur de premier plan des éléments de menu.",
"menuSelectionBackground": "Couleur d'arrière-plan de l'élément de menu sélectionné dans les menus.",
"menuSelectionBorder": "Couleur de bordure de l'élément de menu sélectionné dans les menus.",
"menuSelectionForeground": "Couleur de premier plan de l'élément de menu sélectionné dans les menus.",
- "menuSeparatorBackground": "Couleur d'un élément de menu séparateur dans les menus.",
- "mergeBorder": "Couleur de bordure des en-têtes et du séparateur dans les conflits de fusion inline.",
- "mergeCommonContentBackground": "Arrière-plan de contenu de l'ancêtre commun dans les conflits de fusion inline. La couleur ne doit pas être opaque pour ne pas masquer les ornements sous-jacents.",
- "mergeCommonHeaderBackground": "Arrière-plan d'en-tête de l'ancêtre commun dans les conflits de fusion inline. La couleur ne doit pas être opaque pour ne pas masquer les ornements sous-jacents.",
- "mergeCurrentContentBackground": "Arrière-plan de contenu actuel dans les conflits de fusion inline. La couleur ne doit pas être opaque pour ne pas masquer les ornements sous-jacents.",
- "mergeCurrentHeaderBackground": "Arrière-plan d'en-tête actuel dans les conflits de fusion inline. La couleur ne doit pas être opaque pour ne pas masquer les ornements sous-jacents.",
- "mergeIncomingContentBackground": "Arrière-plan de contenu entrant dans les conflits de fusion inline. La couleur ne doit pas être opaque pour ne pas masquer les ornements sous-jacents.",
- "mergeIncomingHeaderBackground": "Arrière-plan d'en-tête entrant dans les conflits de fusion inline. La couleur ne doit pas être opaque pour ne pas masquer les ornements sous-jacents.",
+ "menuSeparatorBackground": "Couleur d'un élément de menu séparateur dans les menus."
+ },
+ "vs/platform/theme/common/colors/minimapColors": {
"minimapBackground": "Couleur d'arrière-plan du minimap.",
"minimapError": "Couleur de marqueur de minimap pour les erreurs.",
"minimapFindMatchHighlight": "Couleur de marqueur de la minimap pour les correspondances.",
"minimapForegroundOpacity": "Opacité des éléments de premier plan rendus dans la minimap. Par exemple, « #000000c0 » affiche les éléments avec une opacité de 75 %.",
+ "minimapInfo": "Couleur de marqueur de minimap pour les informations.",
"minimapSelectionHighlight": "Couleur de marqueur du minimap pour la sélection de l'éditeur.",
"minimapSelectionOccurrenceHighlight": "Couleur de marqueur minimap pour les sélections répétées de l’éditeur.",
"minimapSliderActiveBackground": "Couleur d'arrière-plan du curseur de minimap pendant un clic.",
"minimapSliderBackground": "Couleur d'arrière-plan du curseur de minimap.",
"minimapSliderHoverBackground": "Couleur d'arrière-plan du curseur de minimap pendant le survol.",
- "overviewRuleWarning": "Couleur de marqueur de minimap pour les avertissements.",
- "overviewRulerCommonContentForeground": "Arrière-plan de la règle d'aperçu de l'ancêtre commun dans les conflits de fusion inline.",
- "overviewRulerCurrentContentForeground": "Premier plan de la règle d'aperçu actuelle pour les conflits de fusion inline.",
- "overviewRulerFindMatchForeground": "Couleur de marqueur de la règle d'aperçu pour rechercher les correspondances. La couleur ne doit pas être opaque pour ne pas masquer les ornements sous-jacents.",
- "overviewRulerIncomingContentForeground": "Premier plan de la règle d'aperçu entrante pour les conflits de fusion inline.",
- "overviewRulerSelectionHighlightForeground": "Couleur de marqueur de la règle d'aperçu pour la mise en surbrillance des sélections. La couleur ne doit pas être opaque pour ne pas masquer les ornements sous-jacents.",
+ "overviewRuleWarning": "Couleur de marqueur de minimap pour les avertissements."
+ },
+ "vs/platform/theme/common/colors/miscColors": {
+ "activityErrorBadge.background": "Couleur d’arrière-plan du badge d’activité d’erreur",
+ "activityErrorBadge.foreground": "Couleur de premier plan du badge d’activité d’erreur",
+ "activityWarningBadge.background": "Couleur d’arrière-plan du badge d’activité d’avertissement",
+ "activityWarningBadge.foreground": "Couleur de premier plan du badge d’activité d’avertissement",
+ "badgeBackground": "Couleur de fond des badges. Les badges sont de courts libellés d'information, ex. le nombre de résultats de recherche.",
+ "badgeForeground": "Couleur des badges. Les badges sont de courts libellés d'information, ex. le nombre de résultats de recherche.",
+ "chartAxis": "Couleur de l’axe pour le graphique.",
+ "chartGuide": "Ligne directrice pour le graphique.",
+ "chartLine": "Couleur de ligne du graphique.",
+ "progressBarBackground": "Couleur de fond pour la barre de progression qui peut s'afficher lors d'opérations longues.",
+ "sashActiveBorder": "Couleur de bordure des fenêtres coulissantes.",
+ "scrollbarBackground": "Couleur d’arrière-plan de la piste de la barre de défilement.",
+ "scrollbarShadow": "Ombre de la barre de défilement pour indiquer que la vue défile.",
+ "scrollbarSliderActiveBackground": "Couleur d’arrière-plan de la barre de défilement lorsqu'on clique dessus.",
+ "scrollbarSliderBackground": "Couleur de fond du curseur de la barre de défilement.",
+ "scrollbarSliderHoverBackground": "Couleur de fond du curseur de la barre de défilement lors du survol."
+ },
+ "vs/platform/theme/common/colors/quickpickColors": {
"pickerBackground": "Couleur d'arrière-plan du sélecteur rapide. Le widget de sélecteur rapide est le conteneur de sélecteurs comme la palette de commandes.",
"pickerForeground": "Couleur de premier plan du sélecteur rapide. Le widget de sélecteur rapide est le conteneur de sélecteurs comme la palette de commandes.",
"pickerGroupBorder": "Couleur du sélecteur rapide pour les bordures de regroupement.",
"pickerGroupForeground": "Couleur du sélecteur rapide pour les étiquettes de regroupement.",
"pickerTitleBackground": "Couleur d'arrière-plan du titre du sélecteur rapide. Le widget de sélecteur rapide est le conteneur de sélecteurs comme la palette de commandes.",
- "problemsErrorIconForeground": "Couleur utilisée pour l'icône d'erreur des problèmes.",
- "problemsInfoIconForeground": "Couleur utilisée pour l'icône d'informations des problèmes.",
- "problemsWarningIconForeground": "Couleur utilisée pour l'icône d'avertissement des problèmes.",
- "progressBarBackground": "Couleur de fond pour la barre de progression qui peut s'afficher lors d'opérations longues.",
"quickInput.list.focusBackground deprecation": "Utilisez quickInputList.focusBackground à la place",
"quickInput.listFocusBackground": "Couleur d'arrière-plan du sélecteur rapide pour l'élément ayant le focus.",
"quickInput.listFocusForeground": "Couleur de premier plan du sélecteur rapide pour l’élément ayant le focus.",
- "quickInput.listFocusIconForeground": "Couleur de premier plan de l’icône du sélecteur rapide pour l’élément ayant le focus.",
- "sashActiveBorder": "Couleur de bordure des fenêtres coulissantes.",
- "scrollbarShadow": "Ombre de la barre de défilement pour indiquer que la vue défile.",
- "scrollbarSliderActiveBackground": "Couleur d’arrière-plan de la barre de défilement lorsqu'on clique dessus.",
- "scrollbarSliderBackground": "Couleur de fond du curseur de la barre de défilement.",
- "scrollbarSliderHoverBackground": "Couleur de fond du curseur de la barre de défilement lors du survol.",
+ "quickInput.listFocusIconForeground": "Couleur de premier plan de l’icône du sélecteur rapide pour l’élément ayant le focus."
+ },
+ "vs/platform/theme/common/colors/searchColors": {
+ "search.resultsInfoForeground": "Couleur du texte dans le message d’achèvement de la viewlet de recherche.",
"searchEditor.editorFindMatchBorder": "Couleur de bordure des correspondances de requête de l'éditeur de recherche.",
- "searchEditor.queryMatch": "Couleur des correspondances de requête de l'éditeur de recherche.",
- "selectionBackground": "La couleur d'arrière-plan des sélections de texte dans le banc d'essai (par ex., pour les champs d'entrée ou les zones de texte). Notez que cette couleur ne s'applique pas aux sélections dans l'éditeur et le terminal.",
- "snippetFinalTabstopHighlightBackground": "Couleur d’arrière-plan de mise en surbrillance du tabstop final d’un extrait.",
- "snippetFinalTabstopHighlightBorder": "Mettez en surbrillance la couleur de bordure du dernier taquet de tabulation d'un extrait de code.",
- "snippetTabstopHighlightBackground": "Couleur d’arrière-plan de mise en surbrillance d’un extrait tabstop.",
- "snippetTabstopHighlightBorder": "Couleur de bordure de mise en surbrillance d’un extrait tabstop.",
- "statusBarBackground": "Couleur d'arrière-plan de la barre d'état du pointage de l'éditeur.",
- "tableColumnsBorder": "Couleur de la bordure du tableau entre les colonnes.",
- "tableOddRowsBackgroundColor": "Couleur d'arrière-plan pour les lignes de tableau impaires.",
- "textBlockQuoteBackground": "Couleur d'arrière-plan des citations dans le texte.",
- "textBlockQuoteBorder": "Couleur de bordure des citations dans le texte.",
- "textCodeBlockBackground": "Couleur d'arrière-plan des blocs de code dans le texte.",
- "textLinkActiveForeground": "Couleur de premier plan pour les liens dans le texte lorsqu'ils sont cliqués ou survolés.",
- "textLinkForeground": "Couleur des liens dans le texte.",
- "textPreformatForeground": "Couleur des segments de texte préformatés.",
- "textSeparatorForeground": "Couleur pour les séparateurs de texte.",
- "toolbarActiveBackground": "Arrière-plan de la barre d’outils quand la souris est maintenue sur des actions",
- "toolbarHoverBackground": "Arrière-plan de la barre d’outils lors du survol des actions à l’aide de la souris",
- "toolbarHoverOutline": "Contour de la barre d’outils lors du survol des actions à l’aide de la souris",
- "treeIndentGuidesStroke": "Couleur de trait de l'arborescence pour les repères de mise en retrait.",
- "warningBorder": "Couleur de bordure des zones d'avertissement dans l'éditeur.",
- "widgetShadow": "Couleur de l'ombre des widgets, comme rechercher/remplacer, au sein de l'éditeur."
+ "searchEditor.queryMatch": "Couleur des correspondances de requête de l'éditeur de recherche."
+ },
+ "vs/platform/theme/common/colorUtils": {
+ "transparecyRequired": "Cette couleur doit être transparente ou son contenu sera masqué",
+ "useDefault": "Utiliser la couleur par défaut."
},
"vs/platform/theme/common/iconRegistry": {
"iconDefinition.fontCharacter": "Caractère de police associé à la définition d'icône.",
"iconDefinition.fontId": "ID de la police à utiliser. Si aucune valeur n'est définie, la police définie en premier est utilisée.",
"nextChangeIcon": "Icône d'accès à l'emplacement suivant de l'éditeur.",
"previousChangeIcon": "Icône d'accès à l'emplacement précédent de l'éditeur.",
+ "schema.fontId.formatError": "L’ID de police doit contenir uniquement des lettres, des chiffres, des traits de soulignement et des tirets.",
"widgetClose": "Icône de l'action de fermeture dans les widgets."
},
"vs/platform/theme/common/tokenClassificationRegistry": {
@@ -2122,7 +3063,6 @@
"variable": "Style des variables."
},
"vs/platform/undoRedo/common/undoRedoService": {
- "cancel": "Annuler",
"cannotResourceRedoDueToInProgressUndoRedo": "Impossible de rétablir '{0}', car une opération d'annulation ou de rétablissement est déjà en cours d'exécution.",
"cannotResourceUndoDueToInProgressUndoRedo": "Impossible d'annuler '{0}', car une opération d'annulation ou de rétablissement est déjà en cours d'exécution.",
"cannotWorkspaceRedo": "Impossible de répéter '{0}' dans tous les fichiers. {1}",
@@ -2135,12 +3075,12 @@
"cannotWorkspaceUndoDueToInProgressUndoRedo": "Impossible d'annuler '{0}' dans tous les fichiers, car une opération d'annulation ou de rétablissement est déjà en cours d'exécution sur {1}",
"confirmDifferentSource": "Voulez-vous annuler '{0}' ?",
"confirmDifferentSource.no": "Non",
- "confirmDifferentSource.yes": "Oui",
+ "confirmDifferentSource.yes": "&&Oui",
"confirmWorkspace": "Souhaitez-vous annuler '{0}' dans tous les fichiers ?",
"externalRemoval": "Les fichiers suivants ont été fermés et modifiés sur le disque : {0}.",
"noParallelUniverses": "Les fichiers suivants ont été modifiés de manière incompatible : {0}.",
- "nok": "Annuler ce fichier",
- "ok": "Annuler dans {0} fichiers"
+ "nok": "Annuler ce &&fichier",
+ "ok": "&&Annuler dans {0} fichiers"
},
"vs/platform/update/common/update.config.contribution": {
"default": "Activez la recherche de mises à jour automatique pour que VS Code recherche les mises à jour automatiquement et régulièrement.",
@@ -2181,22 +3121,36 @@
"settingsSync.ignoredSettings": "Configurez les paramètres à ignorer pendant la synchronisation.",
"settingsSync.keybindingsPerPlatform": "Synchronisez les combinaisons de touches pour chaque plateforme."
},
+ "vs/platform/userDataSync/common/userDataSyncLog": {
+ "userDataSyncLog": "Synchronisation des paramètres"
+ },
"vs/platform/userDataSync/common/userDataSyncMachines": {
"error incompatible": "Impossible de lire les données des machines, car la version actuelle est incompatible. Mettez à jour {0}, puis réessayez."
},
- "vs/platform/windows/electron-main/window": {
- "appCrashed": "La fenêtre s'est bloquée",
- "appCrashedDetail": "Nous vous prions de nous excuser pour ce désagrément. Vous pouvez rouvrir la fenêtre pour reprendre l'action au moment où elle a été interrompue.",
- "appCrashedDetails": "La fenêtre s’est bloquée (raison : « {0} », code : « {1} »)",
+ "vs/platform/userDataSync/common/userDataSyncResourceProvider": {
+ "incompatible sync data": "Impossible d'analyser les données de synchronisation, car elles ne sont pas compatibles avec la version actuelle."
+ },
+ "vs/platform/windows/electron-main/windowImpl": {
+ "appGone": "La fenêtre s’est terminée de manière inattendue",
+ "appGoneDetailEmptyWindow": "Nous sommes désolés pour la gêne occasionnée. Vous pouvez ouvrir une nouvelle fenêtre vide pour recommencer.",
+ "appGoneDetailWorkspace": "Nous vous prions de nous excuser pour ce désagrément. Vous pouvez rouvrir la fenêtre pour reprendre l'action au moment où elle a été interrompue.",
+ "appGoneDetails": "La fenêtre s’est terminée de manière inattendue (raison : '{0}', code : '{1}')",
"appStalled": "La fenêtre ne répond pas",
"appStalledDetail": "Vous pouvez rouvrir ou fermer la fenêtre, ou continuer à patienter.",
"close": "&&Fermer",
"doNotRestoreEditors": "Ne pas restaurer les éditeurs",
"hiddenMenuBar": "Vous pouvez toujours accéder à la barre de menus en appuyant sur la touche Alt.",
+ "newWindow": "&&Nouvelle fenêtre",
"reopen": "&&Rouvrir",
"wait": "&&Continuer à attendre"
},
"vs/platform/windows/electron-main/windowsMainService": {
+ "allow": "&&Autoriser",
+ "cancel": "&&Annuler",
+ "confirmOpenDetail": "Le chemin '{0}' utilise un hôte qui n’est pas autorisé. À moins que vous ne fassiez confiance à l’hôte, vous devez appuyer sur 'Annuler'",
+ "confirmOpenMessage": "L’hôte '{0}' est introuvable dans la liste des hôtes autorisés. Voulez-vous l’autoriser quand même ?",
+ "doNotAskAgain": "Autoriser définitivement les '{0}' hôtes",
+ "learnMore": "&&En savoir plus",
"ok": "&&OK",
"pathNotExistDetail": "Désolé... Le chemin d’accès « {0} » n’existe pas sur cet ordinateur.",
"pathNotExistTitle": "Le chemin d'accès n'existe pas",
@@ -2206,11 +3160,11 @@
"vs/platform/workspace/common/workspace": {
"codeWorkspace": "Espace de travail de code"
},
- "vs/platform/workspace/common/workspaceTrust": {
- "trusted": "De confiance",
- "untrusted": "Mode restreint"
- },
"vs/platform/workspaces/electron-main/workspacesHistoryMainService": {
+ "cancel": "&&Annuler",
+ "clearButtonLabel": "&&Effacer",
+ "confirmClearDetail": "Cette action est irréversible !",
+ "confirmClearRecentsMessage": "Voulez-vous effacer tous les fichiers et espaces de travail récemment ouverts ?",
"newWindow": "Nouvelle fenêtre",
"newWindowDesc": "Ouvre une nouvelle fenêtre",
"recentFolders": "Dossiers récents",
@@ -2223,6 +3177,28 @@
"workspaceOpenedDetail": "L’espace de travail est déjà ouvert dans une autre fenêtre. Veuillez s’il vous plaît d’abord fermer cette fenêtre et puis essayez à nouveau.",
"workspaceOpenedMessage": "Impossible d’enregistrer l’espace de travail '{0}'"
},
+ "vs/server/node/remoteExtensionHostAgentCli": {
+ "remotecli": "Interface CLI distante"
+ },
+ "vs/server/node/serverEnvironmentService": {
+ "acceptLicenseTerms": "Si cette option est définie, l’utilisateur accepte les termes du contrat de licence du serveur et le serveur démarre sans invite de l’utilisateur.",
+ "connection-token": "Secret qui doit être inclus dans toutes les demandes",
+ "connection-token-file": "Chemin d’accès à un fichier qui contient le jeton de connexion",
+ "default-folder": "Dossier d’espace de travail à ouvrir lorsqu’aucune entrée n’est spécifiée dans l’URL du navigateur. Chemin d’accès relatif ou absolu résolu par rapport au répertoire de travail actuel",
+ "default-workspace": "Espace de travail à ouvrir lorsqu’aucune entrée n’est spécifiée dans l’URL du navigateur. Chemin d’accès relatif ou absolu résolu par rapport au répertoire de travail actuel",
+ "host": "Nom d’hôte ou adresse IP que le serveur doit écouter. S’il n’est pas défini, la valeur par défaut est 'localhost'.",
+ "port": "Port que le serveur doit écouter. Si la valeur 0 est passée, un port libre aléatoire est sélectionné. Si une plage au format num-num est passée, un port libre de la plage (fin incluse) est sélectionné.",
+ "reconnection-grace-time": "Remplacez la durée de grâce pour la reconnexion, exprimée en secondes. La valeur par défaut est 10 800 (3 heures).",
+ "server-base-path": "Chemin d’accès sous lequel l’interface utilisateur web et le serveur de code sont fournis. La valeur par défaut est « / ».`",
+ "serverDataDir": "Spécifie le répertoire dans lequel les données du serveur sont conservées.",
+ "socket-path": "Chemin d’accès à un fichier socket que le serveur doit écouter",
+ "start-server": "Démarrez le serveur lors de l’installation ou de la désinstallation des extensions. À utiliser en combinaison avec 'install-extension', 'install-builtin-extension' et 'uninstall-extension'.",
+ "telemetry-level": "Définit le niveau de télémétrie initial. Les niveaux valides sont : 'off', 'crash', 'error' et 'all'. Si rien n’est spécifié, le serveur envoie des données de télémétrie jusqu’à ce qu’un client se connecte, il utilise alors le paramètre de télémétrie des clients. Si la valeur est 'off', cela revient à --disable-telemetry.",
+ "without-connection-token": "Exécutez sans jeton de connexion. Utilisez cette option uniquement si la connexion est sécurisée par d’autres moyens."
+ },
+ "vs/server/node/serverServices": {
+ "remoteExtensionLog": "Serveur"
+ },
"win32/i18n/messages": {
"AddContextMenuFiles": "Ajouter l'action \"Ouvrir avec %1\" au menu contextuel de fichier de l'Explorateur Windows",
"AddContextMenuFolders": "Ajouter l'action \"Ouvrir avec %1\" au menu contextuel de répertoire de l'Explorateur Windows",
@@ -2236,369 +3212,67 @@
"OpenWithCodeContextMenu": "Ouvr&ir avec %1",
"Other": "Autre :",
"RunAfter": "Exécuter %1 après l'installation",
- "SourceFile": "Fichier source %1"
- },
- "readme.md": {
- "LanguagePackTitle": "Le module linguistique fournit une expérience d'IU localisée pour VS Code.",
- "Usage": "Utilisation",
- "displayLanguage": "Vous pouvez remplacer la langue d'IU par défaut en définissant explicitement la langue d'affichage de VS Code à l'aide de la commande Configurer la langue d'affichage.",
- "Command Palette": "Appuyez sur Ctrl+Maj+P pour faire apparaître la Palette de commandes, puis commencez à taper \"afficher\" pour filtrer le contenu et afficher la commande Configurer la langue d'affichage.",
- "ShowLocale": "Appuyez sur Entrée pour afficher une liste de langues installées en fonction des paramètres régionaux. Les paramètres régionaux actuels sont en surbrillance.",
- "SwtichUI": "Sélectionnez une autre entrée relative aux paramètres régionaux pour changer de langue d'IU.",
- "DocLink": "Pour plus d'informations, consultez \"Docs\".",
- "Contributing": "Contribution",
- "Feedback": "Pour apporter des commentaires visant à améliorer la traduction, créez une entrée sous Issues dans le dépôt \"vscode-loc\".",
- "LocPlatform": "Les chaînes de traduction sont conservées dans Microsoft Localization Platform. Les changements peuvent uniquement être effectués dans Microsoft Localization Platform avant d'être exportés vers le dépôt vscode-loc. Les demandes de tirage (pull requests) ne sont pas acceptées dans le dépôt vscode-loc.",
- "LicenseTitle": "Licence",
- "LicenseMessage": "Le code source et les chaînes sont concédés sous la licence \"MIT\".",
- "Credits": "Crédits",
- "Contributed": "Ce module linguistique a fait l'objet d'un effort de localisation communautaire. Il s'agit d'une contribution effectuée \"par la communauté, pour la communauté\". Un grand merci aux contributeurs de la communauté pour avoir rendu cela possible.",
- "TopContributors": "Top des contributeurs :",
- "Contributors": "Contributeurs :",
- "EnjoyLanguagePack": "Profitez-en !"
- },
- "win32/i18n/Default": {
- "SetupAppTitle": "Installation",
- "SetupWindowTitle": "Installation - %1",
- "UninstallAppTitle": "Désinstaller",
- "UninstallAppFullTitle": "Désinstallation de %1",
- "InformationTitle": "Informations",
- "ConfirmTitle": "Confirmer",
- "ErrorTitle": "Erreur",
- "SetupLdrStartupMessage": "%1 va être installé. Voulez-vous continuer ?",
- "LdrCannotCreateTemp": "Impossible de créer un fichier temporaire. Abandon de l'installation",
- "LdrCannotExecTemp": "Impossible d'exécuter le fichier dans le répertoire temporaire. Abandon de l'installation",
- "LastErrorMessage": "%1.%n%nErreur %2 : %3",
- "SetupFileMissing": "Il manque le fichier %1 dans le répertoire d'installation. Corrigez le problème ou procurez-vous une nouvelle copie du programme.",
- "SetupFileCorrupt": "Les fichiers d'installation sont endommagés. Procurez-vous une nouvelle copie du programme.",
- "SetupFileCorruptOrWrongVer": "Les fichiers d'installation sont endommagés, ou sont incompatibles avec cette version du programme d'installation. Corrigez le problème ou procurez-vous une nouvelle copie du programme.",
- "InvalidParameter": "Un paramètre non valide a été passé sur la ligne de commande :%n%n%1",
- "SetupAlreadyRunning": "Le programme d'installation est déjà en cours d'exécution.",
- "WindowsVersionNotSupported": "Ce programme ne prend pas en charge la version de Windows en cours d'exécution sur votre ordinateur.",
- "WindowsServicePackRequired": "Ce programme nécessite %1 Service Pack %2 ou une version ultérieure.",
- "NotOnThisPlatform": "Ce programme ne peut pas s'exécuter sur %1.",
- "OnlyOnThisPlatform": "Ce programme doit s'exécuter sur %1.",
- "OnlyOnTheseArchitectures": "Ce programme ne peut être installé que sur les versions de Windows conçues pour les architectures de processeur suivantes :%n%n%1",
- "MissingWOW64APIs": "La version de Windows que vous exécutez n'inclut pas les fonctionnalités dont le programme d'installation a besoin pour effectuer une installation 64 bits. Pour corriger ce problème, installez le Service Pack %1.",
- "WinVersionTooLowError": "Ce programme nécessite %1 version %2 ou une version ultérieure.",
- "WinVersionTooHighError": "Ce programme ne peut pas être installé sur %1 version %2 ou une version ultérieure.",
- "AdminPrivilegesRequired": "Vous devez être connecté en tant qu'administrateur durant l'installation de ce programme.",
- "PowerUserPrivilegesRequired": "Vous devez être connecté en tant qu'administrateur ou en tant que membre du groupe Utilisateurs avec pouvoir durant l'installation de ce programme.",
- "SetupAppRunningError": "Le programme d'installation a détecté que %1 est en cours d'exécution.%n%nFermez toutes ses instances, puis cliquez sur OK pour continuer, ou sur Annuler pour quitter.",
- "UninstallAppRunningError": "Le programme de désinstallation a détecté que %1 est en cours d'exécution.%n%nFermez toutes ses instances, puis cliquez sur OK pour continuer, ou sur Annuler pour quitter.",
- "ErrorCreatingDir": "Le programme d'installation n'a pas pu créer le répertoire \"%1\"",
- "ErrorTooManyFilesInDir": "Impossible de créer un fichier dans le répertoire \"%1\", car il contient trop de fichiers",
- "ExitSetupTitle": "Quitter le programme d'installation",
- "ExitSetupMessage": "L'installation est incomplète. Si vous quittez maintenant, le programme ne sera pas installé.%n%nVous pouvez réexécuter le programme d'installation plus tard pour achever l'installation.%n%nQuitter le programme d'installation ?",
- "AboutSetupMenuItem": "À propos du programme d'&installation...",
- "AboutSetupTitle": "À propos du programme d'installation",
- "AboutSetupMessage": "%1 version %2%n%3%n%nPage d'accueil %1 :%n%4",
- "ButtonBack": "< &Précédent",
- "ButtonNext": "&Suivant >",
- "ButtonInstall": "Install&er",
- "ButtonOK": "OK",
- "ButtonCancel": "Annuler",
- "ButtonYes": "Ou&i",
- "ButtonYesToAll": "Oui pour to&ut",
- "ButtonNo": "&Non",
- "ButtonNoToAll": "Non pour t&out",
- "ButtonFinish": "&Terminer",
- "ButtonBrowse": "Par&courir...",
- "ButtonWizardBrowse": "Pa&rcourir...",
- "ButtonNewFolder": "Créer un &dossier",
- "SelectLanguageTitle": "Sélectionner la langue d'installation",
- "SelectLanguageLabel": "Sélectionnez la langue à utiliser durant l'installation :",
- "ClickNext": "Cliquez sur Suivant pour continuer, ou sur Annuler pour quitter le programme d'installation.",
- "BrowseDialogTitle": "Rechercher un dossier",
- "BrowseDialogLabel": "Sélectionnez un dossier dans la liste ci-dessous, puis cliquez sur OK.",
- "NewFolderName": "Nouveau dossier",
- "WelcomeLabel1": "Bienvenue dans l'Assistant Installation de [name]",
- "WelcomeLabel2": "[name/ver] va être installé sur votre ordinateur.%n%nIl est recommandé de fermer toutes les autres applications avant de continuer.",
- "WizardPassword": "Mot de passe",
- "PasswordLabel1": "Cette installation est protégée par un mot de passe.",
- "PasswordLabel3": "Indiquez le mot de passe, puis cliquez sur Suivant pour continuer. Les mots de passe respectent la casse.",
- "PasswordEditLabel": "Mot de &passe :",
- "IncorrectPassword": "Le mot de passe que vous avez entré n'est pas correct. Réessayez.",
- "WizardLicense": "Contrat de licence",
- "LicenseLabel": "Veuillez lire les informations importantes suivantes avant de continuer.",
- "LicenseLabel3": "Lisez le contrat de licence suivant. Vous devez accepter les termes de ce contrat avant de poursuivre l'installation.",
- "LicenseAccepted": "J'&accepte le contrat",
- "LicenseNotAccepted": "Je &n'accepte pas le contrat",
- "WizardInfoBefore": "Informations",
- "InfoBeforeLabel": "Veuillez lire les informations importantes suivantes avant de continuer.",
- "InfoBeforeClickLabel": "Une fois que vous êtes prêt à poursuivre l'installation, cliquez sur Suivant.",
- "WizardInfoAfter": "Informations",
- "InfoAfterLabel": "Veuillez lire les informations importantes suivantes avant de continuer.",
- "InfoAfterClickLabel": "Une fois que vous êtes prêt à poursuivre l'installation, cliquez sur Suivant.",
- "WizardUserInfo": "Informations de l'utilisateur",
- "UserInfoDesc": "Veuillez saisir les informations vous concernant.",
- "UserInfoName": "Nom d'&utilisateur :",
- "UserInfoOrg": "&Organisation :",
- "UserInfoSerial": "Numéro de sér&ie :",
- "UserInfoNameRequired": "Vous devez entrer un nom.",
- "WizardSelectDir": "Sélectionner l'emplacement de destination",
- "SelectDirDesc": "Où [name] doit-il être installé ?",
- "SelectDirLabel3": "Le programme d'installation va installer [name] dans le dossier suivant.",
- "SelectDirBrowseLabel": "Pour continuer, cliquez sur Suivant. Si vous souhaitez sélectionner un autre dossier, cliquez sur Parcourir.",
- "DiskSpaceMBLabel": "Au moins [mb] Mo d'espace disque libre est nécessaire.",
- "CannotInstallToNetworkDrive": "Le programme d'installation ne peut pas effectuer l'installation sur un lecteur réseau.",
- "CannotInstallToUNCPath": "Le programme d'installation ne peut pas effectuer l'installation sur un chemin UNC.",
- "InvalidPath": "Vous devez entrer un chemin complet avec une lettre de lecteur, par exemple :%n%nC:\\APP%n%nou un chemin UNC au format :%n%n\\\\server\\share",
- "InvalidDrive": "Le lecteur ou le partage UNC sélectionné n'existe pas ou n'est pas accessible. Sélectionnez-en un autre.",
- "DiskSpaceWarningTitle": "Espace disque insuffisant",
- "DiskSpaceWarning": "Le programme d'installation nécessite au moins %1 Ko d'espace libre pour effectuer l'installation. Toutefois, le lecteur sélectionné n'a que %2 Ko d'espace disponible.%n%nVoulez-vous quand même continuer ?",
- "DirNameTooLong": "Le nom ou le chemin du dossier est trop long.",
- "InvalidDirName": "Le nom de dossier est non valide.",
- "BadDirName32": "Les noms de dossiers ne peuvent pas contenir les caractères suivants :%n%n%1",
- "DirExistsTitle": "Le dossier existe",
- "DirExists": "Le dossier :%n%n%1%n%nexiste déjà. Voulez-vous quand même effectuer l'installation dans ce dossier ?",
- "DirDoesntExistTitle": "Le dossier n'existe pas",
- "DirDoesntExist": "Le dossier :%n%n%1%n%nn'existe pas. Voulez-vous créer ce dossier ?",
- "WizardSelectComponents": "Sélectionner les composants",
- "SelectComponentsDesc": "Quels composants doivent être installés ?",
- "SelectComponentsLabel2": "Sélectionnez les composants à installer. Effacez les composants que vous ne souhaitez pas installer. Une fois que vous êtes prêt à continuer, cliquez sur Suivant.",
- "FullInstallation": "Installation complète",
- "CompactInstallation": "Compacter l'installation",
- "CustomInstallation": "Installation personnalisée",
- "NoUninstallWarningTitle": "Composants existants",
- "NoUninstallWarning": "Le programme d'installation a détecté que les composants suivants sont déjà installés sur votre ordinateur :%n%n%1%n%nSi vous désélectionnez ces composants, cela n'entraînera pas leur désinstallation.%n%nVoulez-vous quand même continuer ?",
- "ComponentSize1": "%1 Ko",
- "ComponentSize2": "%1 Mo",
- "ComponentsDiskSpaceMBLabel": "La sélection actuelle nécessite au moins [mb] Mo d'espace disque.",
- "WizardSelectTasks": "Sélectionner les tâches supplémentaires",
- "SelectTasksDesc": "Quelles tâches supplémentaires doivent être effectuées ?",
- "SelectTasksLabel2": "Sélectionnez les tâches supplémentaires que le programme d'installation doit effectuer durant l'installation de [name], puis cliquez sur Suivant.",
- "WizardSelectProgramGroup": "Sélectionner le dossier Menu Démarrer",
- "SelectStartMenuFolderDesc": "Où le programme d'installation doit-il placer les raccourcis du programme ?",
- "SelectStartMenuFolderLabel3": "Le programme d'installation va créer les raccourcis du programme dans le dossier Menu Démarrer suivant.",
- "SelectStartMenuFolderBrowseLabel": "Pour continuer, cliquez sur Suivant. Si vous souhaitez sélectionner un autre dossier, cliquez sur Parcourir.",
- "MustEnterGroupName": "Vous devez entrer un nom de dossier.",
- "GroupNameTooLong": "Le nom ou le chemin du dossier est trop long.",
- "InvalidGroupName": "Le nom de dossier est non valide.",
- "BadGroupName": "Le nom de dossier ne peut pas contenir les caractères suivants :%n%n%1",
- "NoProgramGroupCheck2": "Ne pas créer de &dossier Menu Démarrer",
- "WizardReady": "Prêt à installer",
- "ReadyLabel1": "Le programme d'installation est prêt à installer [name] sur votre ordinateur.",
- "ReadyLabel2a": "Cliquez sur Installer pour poursuivre l'installation, ou sur Précédent pour vérifier ou changer des paramètres.",
- "ReadyLabel2b": "Cliquez sur Installer pour poursuivre l'installation.",
- "ReadyMemoUserInfo": "Informations de l'utilisateur :",
- "ReadyMemoDir": "Emplacement de destination :",
- "ReadyMemoType": "Type d'installation :",
- "ReadyMemoComponents": "Composants sélectionnés :",
- "ReadyMemoGroup": "Dossier Menu Démarrer :",
- "ReadyMemoTasks": "Tâches supplémentaires :",
- "WizardPreparing": "Préparation de l'installation",
- "PreparingDesc": "Le programme d'installation se prépare à installer [name] sur votre ordinateur.",
- "PreviousInstallNotCompleted": "La précédente installation ou suppression d'un programme n'a pas été achevée. Vous devez redémarrer l'ordinateur pour finir cette installation.%n%nAprès le redémarrage de votre ordinateur, réexécutez le programme d'installation pour achever l'installation de [name].",
- "CannotContinue": "Le programme d'installation ne peut pas continuer. Cliquez sur Annuler pour quitter.",
- "ApplicationsFound": "Les applications suivantes utilisent des fichiers qui doivent être mis à jour par le programme d'installation. Il est recommandé d'autoriser le programme d'installation à fermer automatiquement ces applications.",
- "ApplicationsFound2": "Les applications suivantes utilisent des fichiers qui doivent être mis à jour par le programme d'installation. Il est recommandé d'autoriser le programme d'installation à fermer automatiquement ces applications. Une fois l'installation achevée, le programme d'installation va tenter de redémarrer les applications.",
- "CloseApplications": "&Fermer automatiquement les applications",
- "DontCloseApplications": "&Ne pas fermer les applications",
- "ErrorCloseApplications": "Le programme d'installation n'a pas pu fermer automatiquement toutes les applications. Avant de continuer, il est recommandé de fermer toutes les applications utilisant des fichiers qui doivent être mis à jour par le programme d'installation.",
- "WizardInstalling": "Installation",
- "InstallingLabel": "Patientez pendant que le programme d'installation installe [name] sur votre ordinateur.",
- "FinishedHeadingLabel": "Fin de l'Assistant Installation de [name]",
- "FinishedLabelNoIcons": "Le programme d'installation a fini d'installer [name] sur votre ordinateur.",
- "FinishedLabel": "Le programme d'installation a terminé d'installer [name] sur votre ordinateur. L'application peut être lancée en sélectionnant les icônes installées.",
- "ClickFinish": "Cliquez sur Terminer pour quitter le programme d'installation.",
- "FinishedRestartLabel": "Pour achever l'installation de [name], le programme d'installation doit redémarrer l'ordinateur. Voulez-vous effectuer le redémarrage maintenant ?",
- "FinishedRestartMessage": "Pour achever l'installation de [name], le programme d'installation doit redémarrer l'ordinateur.%n%nVoulez-vous effectuer le redémarrage maintenant ?",
- "ShowReadmeCheck": "Oui, je souhaite consulter le fichier README",
- "YesRadio": "&Oui, redémarrer l'ordinateur maintenant",
- "NoRadio": "&Non, je vais redémarrer l'ordinateur plus tard",
- "RunEntryExec": "Exécuter %1",
- "RunEntryShellExec": "Afficher %1",
- "ChangeDiskTitle": "Le programme d'installation a besoin du disque suivant",
- "SelectDiskLabel2": "Insérez le disque %1, puis cliquez sur OK.%n%nSi les fichiers de ce disque se trouvent dans un autre dossier que celui qui est affiché ci-dessous, entrez le chemin approprié, ou cliquez sur Parcourir.",
- "PathLabel": "&Chemin :",
- "FileNotInDir2": "Le fichier \"%1\" est introuvable dans \"%2\". Insérez le disque approprié, ou sélectionnez un autre dossier.",
- "SelectDirectoryLabel": "Spécifiez l'emplacement du disque suivant.",
- "SetupAborted": "L'installation n'est pas finie.%n%nCorrigez le problème, puis réexécutez le programme d'installation.",
- "EntryAbortRetryIgnore": "Cliquez sur Réessayer pour réessayer, sur Ignorer pour continuer quand même, ou sur Abandonner pour annuler l'installation.",
- "StatusClosingApplications": "Fermeture des applications...",
- "StatusCreateDirs": "Création des répertoires...",
- "StatusExtractFiles": "Extraction des fichiers...",
- "StatusCreateIcons": "Création des raccourcis...",
- "StatusCreateIniEntries": "Création des entrées INI...",
- "StatusCreateRegistryEntries": "Création des entrées de Registre...",
- "StatusRegisterFiles": "Inscription des fichiers...",
- "StatusSavingUninstall": "Enregistrement des informations de désinstallation...",
- "StatusRunProgram": "Achèvement de l'installation...",
- "StatusRestartingApplications": "Redémarrage des applications...",
- "StatusRollback": "Restauration des changements...",
- "ErrorInternal2": "Erreur interne : %1",
- "ErrorFunctionFailedNoCode": "Échec de %1",
- "ErrorFunctionFailed": "Échec de %1. Code %2",
- "ErrorFunctionFailedWithMessage": "Échec de %1. Code %2.%n%3",
- "ErrorExecutingProgram": "Impossible d'exécuter le fichier :%n%1",
- "ErrorRegOpenKey": "Erreur d'ouverture de la clé de Registre :%n%1\\%2",
- "ErrorRegCreateKey": "Erreur de création de la clé de Registre :%n%1\\%2",
- "ErrorRegWriteKey": "Erreur d'écriture dans la clé de Registre :%n%1\\%2",
- "ErrorIniEntry": "Erreur durant la création de l'entrée INI dans le fichier \"%1\".",
- "FileAbortRetryIgnore": "Cliquez sur Réessayer pour réessayer, sur Ignorer pour ignorer ce fichier (déconseillé), ou sur Abandonner pour annuler l'installation.",
- "FileAbortRetryIgnore2": "Cliquez sur Réessayer pour réessayer, sur Ignorer pour continuer quand même (déconseillé), ou sur Abandonner pour annuler l'installation.",
- "SourceIsCorrupted": "Le fichier source est endommagé",
- "SourceDoesntExist": "Le fichier source \"%1\" n'existe pas",
- "ExistingFileReadOnly": "Le fichier existant est marqué en lecture seule.%n%nCliquez sur Réessayer pour supprimer l'attribut de lecture seule et réessayer, sur Ignorer pour ignorer ce fichier, ou sur Abandonner pour annuler l'installation.",
- "ErrorReadingExistingDest": "Une erreur s'est produite durant la lecture du fichier existant :",
- "FileExists": "Le fichier existe déjà.%n%nVoulez-vous que le programme d'installation le remplace ?",
- "ExistingFileNewer": "Le fichier existant est plus récent que celui que le programme d'installation tente d'installer. Il est recommandé de conserver le fichier existant.%n%nVoulez-vous conserver le fichier existant ?",
- "ErrorChangingAttr": "Une erreur s'est produite durant le changement des attributs du fichier existant :",
- "ErrorCreatingTemp": "Une erreur s'est produite durant la création d'un fichier dans le répertoire de destination :",
- "ErrorReadingSource": "Une erreur s'est produite durant la lecture du fichier source :",
- "ErrorCopying": "Une erreur s'est produite durant la copie d'un fichier :",
- "ErrorReplacingExistingFile": "Une erreur s'est produite durant le remplacement du fichier existant :",
- "ErrorRestartReplace": "Échec de RestartReplace :",
- "ErrorRenamingTemp": "Une erreur s'est produite durant le changement de nom d'un fichier dans le répertoire de destination :",
- "ErrorRegisterServer": "Impossible d'inscrire le fichier DLL/OCX : %1",
- "ErrorRegSvr32Failed": "Échec de RegSvr32. Code de sortie %1",
- "ErrorRegisterTypeLib": "Impossible d'inscrire la bibliothèque de types : %1",
- "ErrorOpeningReadme": "Une erreur s'est produite durant l'ouverture du fichier README.",
- "ErrorRestartingComputer": "Le programme d'installation n'a pas pu redémarrer l'ordinateur. Faites-le manuellement.",
- "UninstallNotFound": "Le fichier \"%1\" n'existe pas. Impossible d'effectuer la désinstallation.",
- "UninstallOpenError": "Impossible d'ouvrir le fichier \"%1\". Impossible d'effectuer la désinstallation",
- "UninstallUnsupportedVer": "Le format du fichier journal de désinstallation \"%1\" n'est pas reconnu par cette version du programme de désinstallation. Impossible d'effectuer la désinstallation",
- "UninstallUnknownEntry": "Une entrée inconnue (%1) a été détectée dans le journal de désinstallation",
- "ConfirmUninstall": "Voulez-vous vraiment supprimer complètement %1 ? Les extensions et les paramètres ne sont pas supprimés.",
- "UninstallOnlyOnWin64": "Cette installation ne peut être désinstallée que sur Windows 64 bits.",
- "OnlyAdminCanUninstall": "Cette installation ne peut être désinstallée que par un utilisateur ayant des privilèges d'administrateur.",
- "UninstallStatusLabel": "Patientez pendant la suppression de %1 de l'ordinateur.",
- "UninstalledAll": "%1 a été correctement supprimé de l'ordinateur.",
- "UninstalledMost": "La désinstallation de %1 est finie.%n%nCertains éléments n'ont pas pu être supprimés. Vous pouvez les supprimer manuellement.",
- "UninstalledAndNeedsRestart": "Pour achever la désinstallation de %1, vous devez redémarrer l'ordinateur.%n%nVoulez-vous redémarrer maintenant ?",
- "UninstallDataCorrupted": "Le fichier \"%1\" est endommagé. Désinstallation impossible",
- "ConfirmDeleteSharedFileTitle": "Supprimer le fichier partagé ?",
- "ConfirmDeleteSharedFile2": "Le système indique que le fichier partagé suivant n'est plus utilisé par les programmes. Voulez-vous que le programme de désinstallation supprime ce fichier partagé ?%n%nSi ce fichier est supprimé alors qu'il est toujours utilisé par des programmes, ces derniers risquent de ne plus fonctionner correctement. En cas de doute, choisissez Non. Cela ne pose pas de problème de laisser le fichier sur le système.",
- "SharedFileNameLabel": "Nom du fichier :",
- "SharedFileLocationLabel": "Emplacement :",
- "WizardUninstalling": "État de la désinstallation",
- "StatusUninstalling": "Désinstallation de %1...",
- "ShutdownBlockReasonInstallingApp": "Installation de %1.",
- "ShutdownBlockReasonUninstallingApp": "Désinstallation de %1.",
- "NameAndVersion": "%1 version %2",
- "AdditionalIcons": "Icônes supplémentaires :",
- "CreateDesktopIcon": "Créer une icône de &Bureau",
- "CreateQuickLaunchIcon": "Créer un &icône de lancement rapide",
- "ProgramOnTheWeb": "%1 sur le web",
- "UninstallProgram": "Désinstaller %1",
- "LaunchProgram": "Lancer %1",
- "AssocFileExtension": "Asso&cier %1 à l'extension de fichier %2",
- "AssocingFileExtension": "Association de %1 à l'extension de fichier %2...",
- "AutoStartProgramGroupDescription": "Démarrage :",
- "AutoStartProgram": "Démarrer automatiquement %1",
- "AddonHostProgramNotFound": "%1 est introuvable dans le dossier que vous avez sélectionné.%n%nVoulez-vous quand même continuer ?"
- },
- "vscode/vscode/": {
- "FinishedLabel": "Le programme d'installation a fini d'installer [name] sur votre ordinateur. Vous pouvez lancer l'application en sélectionnant les raccourcis installés.",
- "ConfirmUninstall": "Voulez-vous vraiment supprimer complètement %1 et tous ses composants ?",
- "AdditionalIcons": "Icônes supplémentaires :",
- "CreateDesktopIcon": "Créer une icône de &Bureau",
- "CreateQuickLaunchIcon": "Créer un &icône de lancement rapide",
- "AddContextMenuFiles": "Ajouter l'action \"Ouvrir avec %1\" au menu contextuel de fichier de l'Explorateur Windows",
- "AddContextMenuFolders": "Ajouter l'action \"Ouvrir avec %1\" au menu contextuel de répertoire de l'Explorateur Windows",
- "AssociateWithFiles": "Inscrire %1 en tant qu'éditeur pour les types de fichier pris en charge",
- "AddToPath": "Ajouter à PATH (nécessite un redémarrage de l'interpréteur de commande)",
- "RunAfter": "Exécuter %1 après l'installation",
- "Other": "Autre :",
"SourceFile": "Fichier source %1",
- "OpenWithCodeContextMenu": "Ouvr&ir avec %1"
+ "UpdatingVisualStudioCode": "Mise à jour de Visual Studio Code..."
},
"vs/code/electron-main/app": {
"cancel": "&&Non",
"confirmOpenDetail": "Si vous n'avez pas lancé cette requête, cela signifie peut-être que votre système a fait l'objet d'une tentative d'attaque. Si vous n'avez pas effectué d'action explicite pour lancer cette requête, appuyez sur Non",
- "confirmOpenMessage": "Une application externe souhaite ouvrir '{0}' dans {1}. Voulez-vous ouvrir ce fichier ou dossier ?",
- "open": "&&Oui",
- "trace.detail": "Signalez le problème, et attachez manuellement le fichier suivant :\r\n{0}",
- "trace.message": "Trace créée avec succès.",
- "trace.ok": "&&OK"
+ "confirmOpenMessageFileOrFolder": "Une application externe souhaite ouvrir '{0}' dans {1}. Voulez-vous ouvrir ce fichier ou dossier ?",
+ "confirmOpenMessageFolder": "Une application externe souhaite ouvrir '{0}' dans {1}. Voulez-vous ouvrir ce dossier ?",
+ "confirmOpenMessageWorkspace": "Une application externe souhaite ouvrir '{0}' dans {1}. Voulez-vous ouvrir ce fichier d’espace de travail ?",
+ "doNotAskAgainLocal": "Autoriser l'ouverture de chemins locaux sans demander",
+ "doNotAskAgainRemote": "Autoriser l'ouverture de chemins distants sans demander",
+ "open": "&&Oui"
},
"vs/code/electron-main/main": {
"close": "&&Fermer",
- "secondInstanceAdmin": "Une seconde instance de {0} est déjà en cours d'exécution en tant qu'administrateur.",
+ "mainLog": "Principal",
+ "secondInstanceAdmin": "Une autre instance de {0} est déjà en cours d’exécution en tant qu’administrateur.",
"secondInstanceAdminDetail": "Veuillez s'il vous plaît fermer l'autre instance et réessayer à nouveau.",
"secondInstanceNoResponse": "Une autre instance de {0} est déjà en cours d'exécution mais ne répond pas",
"secondInstanceNoResponseDetail": "Veuillez s'il vous plaît fermer toutes les autres instances et réessayer à nouveau.",
"startupDataDirError": "Impossible d'écrire les données utilisateur du programme.",
- "startupUserDataAndExtensionsDirErrorDetail": "{0}\r\n\r\nVérifiez que les répertoires suivants sont accessibles en mode d’écriture :\r\n\r\n{1}"
- },
- "vs/code/electron-sandbox/issue/issueReporterMain": {
- "bugDescription": "Partagez les étapes nécessaires pour reproduire fidèlement le problème. Veuillez inclure les résultats réels et prévus. Nous prenons en charge la syntaxe GitHub Markdown. Vous pourrez éditer votre problème et ajouter des captures d'écran lorsque nous le prévisualiserons sur GitHub.",
- "bugReporter": "Rapport de bogue",
- "closed": "Fermé",
- "createOnGitHub": "Créer sur GitHub",
- "description": "Description",
- "disabledExtensions": "Les extensions sont désactivées",
- "extension": "Une extension",
- "featureRequest": "Demande de fonctionnalité",
- "featureRequestDescription": "Veuillez décrire la fonctionnalité que vous voulez voir. Nous supportons la syntaxe GitHub Markdown. Vous pourrez modifier votre problème et ajouter des captures d’écran lorsque nous la prévisualiserons sur GitHub.",
- "hide": "masquer",
- "loadingData": "Chargement des données...",
- "marketplace": "Place de marché des extensions",
- "noCurrentExperiments": "Aucune expérience active.",
- "noSimilarIssues": "Aucun problème similaire trouvé",
- "open": "Ouvrir",
- "pasteData": "Nous avons écrit les données nécessaires dans votre presse-papiers, car elles étaient trop volumineuses à envoyer. Veuillez les coller.",
- "performanceIssue": "Problème de performance",
- "performanceIssueDesciption": "Quand ce problème de performance s'est-il produit ? Se produit-il au démarrage ou après une série d'actions spécifiques ? Nous prenons en charge la syntaxe Markdown de GitHub. Vous pourrez éditer votre problème et ajouter des captures d'écran lorsque nous le prévisualiserons sur GitHub.",
- "previewOnGitHub": "Aperçu sur GitHub",
- "rateLimited": "Limite de requête GitHub dépassée. Veuillez patienter.",
- "selectSource": "Sélectionner la source",
- "show": "afficher",
- "similarIssues": "Problèmes similaires",
- "stepsToReproduce": "Étapes à suivre pour reproduire",
- "unknown": "Je ne sais pas",
- "vscode": "Visual Studio Code"
+ "startupUserDataAndExtensionsDirErrorDetail": "{0}\r\n\r\nVérifiez que les répertoires suivants sont accessibles en mode d’écriture :\r\n\r\n{1}",
+ "statusWarning": "Avertissement : l’argument --status ne peut être utilisé que s’il {0} est déjà en cours d’exécution. Ré-exécutez-le après le démarrage de {0}."
},
- "vs/code/electron-sandbox/issue/issueReporterPage": {
- "chooseExtension": "Extension",
- "completeInEnglish": "Remplissez le formulaire en anglais.",
- "descriptionEmptyValidation": "Une description est obligatoire.",
- "details": "Entrez les détails.",
- "disableExtensions": "en désactivant toutes les extensions et en rechargeant la fenêtre",
- "disableExtensionsLabelText": "Essayez de reproduire le problème au bout de {0}. Si le problème se reproduit uniquement quand les extensions sont actives, il s'agit probablement d'un problème d'extension.",
- "extensionWithNoBugsUrl": "Le rapporteur de problèmes ne peut pas créer de problèmes pour cette extension, car elle ne spécifie pas d'URL pour signaler les problèmes. Consultez la page de la Place de marché de cette extension pour voir si d'autres instructions sont disponibles.",
- "extensionWithNonstandardBugsUrl": "Le rapporteur de problèmes ne peut pas créer de problèmes pour cette extension. Accédez à {0} pour signaler un problème.",
- "issueSourceEmptyValidation": "Une source de problème est obligatoire.",
- "issueSourceLabel": "Fichier sur",
- "issueTitleLabel": "Titre",
- "issueTitleRequired": "Veuillez s’il vous plaît entrer un titre.",
- "issueTypeLabel": "Ceci est un(e)",
- "sendExperiments": "Inclure les informations d'expérience A/B",
- "sendExtensions": "Inclure mes extensions activées",
- "sendProcessInfo": "Inclure mes processus en cours d’exécution",
- "sendSystemInfo": "Inclure des informations sur mon système",
- "sendWorkspaceInfo": "Inclure des métadonnées sur mon espace de travail",
- "show": "afficher",
- "titleEmptyValidation": "Un titre est obligatoire.",
- "titleLengthValidation": "Le titre est trop long."
+ "vs/code/electron-utility/sharedProcess/sharedProcessMain": {
+ "networkk": "Réseau",
+ "sharedLog": "Partagé"
},
- "vs/code/electron-sandbox/processExplorer/processExplorerMain": {
- "copy": "Copier",
- "copyAll": "Tout copier",
- "cpu": "Processeur (%)",
- "debug": "Déboguer",
- "forceKillProcess": "Forcer l'arrêt du processus",
- "killProcess": "Tuer le processus",
- "memory": "Mémoire (Mo)",
- "name": "Nom de processus",
- "pid": "PID"
+ "vs/code/node/cliProcessMain": {
+ "cli": "CLI"
},
"vs/workbench/api/browser/mainThreadAuthentication": {
- "accountLastUsedDate": "Dernière utilisation de ce compte {0}",
- "allow": "Autoriser",
+ "addClientRegistrationDetails": "Ajouter les détails de l’inscription du client",
+ "allow": "&&Autoriser",
"cancel": "Annuler",
+ "clientIdPlaceholder": "ID client OAuth (azye39d...)",
+ "clientIdPrompt": "Entrez un ID client existant qui a été inscrit avec les URI de redirection suivants : http://127.0.0.1:33418, https://vscode.dev/redirect",
+ "clientIdRequired": "L'ID client est obligatoire",
+ "clientSecretPlaceholder": "Clé secrète client OAuth (wer32o50f...) ou laissez-la vide",
+ "clientSecretPrompt": "(facultatif) Entrez une clé secrète client existante associée à l’ID client « {0} » ou laissez ce champ vide",
"confirmLogin": "L'extension '{0}' veut se connecter en utilisant {1}.",
"confirmRelogin": "L'extension « {0} » vous demande de vous reconnecter en utilisant {1}.",
- "manageExtensions": "Choisir les extensions qui peuvent accéder à ce compte",
- "manageTrustedExtensions": "Gérer les extensions approuvées",
- "manageTrustedExtensions.cancel": "Annuler",
- "noTrustedExtensions": "Ce compte n'a été utilisé par aucune extension.",
- "notUsed": "N'a pas utilisé ce compte",
- "signOut": "Se déconnecter",
- "signOutMessage": "Le compte « {0} » a été utilisé par \r\n\r\n{1}\r\n\r\nVoulez-vous vous déconnecter de ces extensions ?",
- "signOutMessageSimple": "Se déconnecter de '{0}' ?",
- "signedOut": "Déconnexion réussie."
+ "copyAndContinue": "Copier et continuer",
+ "dcrCopyUrlsAndProceed": "Copier les URI et continuer",
+ "dcrFailedToCopy": "Échec de la copie des URI de redirection dans le presse-papiers.",
+ "dcrNotSupported": "Inscription de client dynamique non prise en charge",
+ "dcrNotSupportedDetail": "Le serveur d’autorisation « {0} » ne prend pas en charge l’inscription automatique du client. Voulez-vous continuer en fournissant manuellement une inscription de client (ID client) ?\r\n\r\nRemarque : lors de l’inscription de votre application OAuth, veillez à inclure les URI de redirection suivants :\r\n{1}",
+ "deviceCodeDetail": "Votre code : {0}\r\n\r\nPour terminer l’authentification, accédez à {1} et entrez le code ci-dessus.",
+ "deviceCodeTitle": "Authentification du code de l’appareil",
+ "failedToOpenUri": "Échec de l'ouverture de {0}.",
+ "incorrectAccount": "Compte incorrect détecté",
+ "incorrectAccountDetail": "Le compte choisi, {0}, ne correspond pas au compte demandé, {1}.",
+ "keep": "Conserver {0}",
+ "learnMore": "En savoir plus",
+ "loginWith": "Se connecter avec {0}",
+ "no": "Non",
+ "yes": "Oui"
+ },
+ "vs/workbench/api/browser/mainThreadChatSessions": {
+ "chatEditorContributionName": "{0}",
+ "interruptActiveResponse": "Voulez-vous vraiment interrompre la session active ?"
},
"vs/workbench/api/browser/mainThreadCLICommands": {
"cannot be installed": "Impossible d'installer l'extension '{0}', car elle est déclarée comme n'étant pas à exécuter dans cette configuration."
@@ -2607,7 +3281,11 @@
"commentsViewIcon": "Icône de vue des commentaires."
},
"vs/workbench/api/browser/mainThreadCustomEditors": {
- "defaultEditLabel": "Modifier"
+ "defaultEditLabel": "Modifier",
+ "vetoExtHostRestart": "Un éditeur d’extension fourni pour '{0}' est toujours ouvert et se fermerait dans le cas contraire."
+ },
+ "vs/workbench/api/browser/mainThreadEditSessionIdentityParticipant": {
+ "timeout.onWillCreateEditSessionIdentity": "Événement onNumCreateEditSessionIdentity abandonné après 10 000 ms"
},
"vs/workbench/api/browser/mainThreadExtensionService": {
"disabledDep": "Impossible d’activer l’extension « {0} », car elle dépend de l’extension « {1} » qui est désactivée. Voulez-vous activer l’extension et recharger la fenêtre ?",
@@ -2618,8 +3296,8 @@
"notSupportedInWorkspace": "Impossible d’activer l’extension « {0} » car elle dépend de l’extension « {1} » qui n’est pas prise en charge dans l’espace de travail actif",
"reload": "Recharger la fenêtre",
"reload window": "Impossible d'activer l'extension '{0}', car elle dépend de l'extension '{1}' qui n'est pas chargée. Voulez-vous recharger la fenêtre pour charger l'extension ?",
- "restrictedMode": "Impossible d’activer l’extension « {0} » car elle dépend de l’extension « {1} » qui n’est pas prise en charge dans le mode restreint",
- "uninstalledDep": "Impossible d'activer l'extension '{0}', car elle dépend de l'extension '{1}' qui n'est pas installée. Voulez-vous installer l'extension et recharger la fenêtre ?",
+ "restrictedMode": "Impossible d’activer l’extension « {0} » car elle dépend de l’extension « {1} » qui n’est pas prise en charge dans le mode Restreint",
+ "uninstalledDep": "Impossible d’activer l’extension « {0} », car elle dépend de l’extension « {1} » de « {2} », qui n’est pas installée. Voulez-vous installer l’extension et recharger la fenêtre ?",
"unknownDep": "Impossible d'activer l'extension '{0}', car elle dépend d'une extension '{1}' inconnue."
},
"vs/workbench/api/browser/mainThreadFileSystemEventService": {
@@ -2639,15 +3317,36 @@
"msg-delete": "Exécution des participants de 'Suppression de fichier'...",
"msg-rename": "Exécution des participants de 'Renommage de fichier'...",
"msg-write": "Exécution des participants « Écriture de fichier »...",
- "ok": "OK",
- "preview": "Afficher l'aperçu"
+ "ok": "&&OK",
+ "preview": "Afficher &&l’aperçu"
+ },
+ "vs/workbench/api/browser/mainThreadLanguageModels": {
+ "confirmLanguageModelAccess": "L’extension «{0}» souhaite accéder aux modèles de langage fournis par {1}.",
+ "languageModelsAccountId": "Modèles de langage"
+ },
+ "vs/workbench/api/browser/mainThreadMcp": {
+ "allow": "&&Autoriser",
+ "confirmLogin": "La définition du serveur MCP « {0} » souhaite que vous vous authentifiiez auprès de {1}.",
+ "confirmRelogin": "La définition du serveur MCP « {0} » souhaite que vous vous authentifiiez auprès de {1}.",
+ "incorrectAccount": "Compte incorrect détecté",
+ "incorrectAccountDetail": "Le compte choisi, {0}, ne correspond pas au compte demandé, {1}.",
+ "keep": "Conserver {0}",
+ "loginWith": "Se connecter avec {0}",
+ "mcpAuthSessionRemoved": "Session d’authentification pour {0} supprimée, arrêt du serveur"
},
"vs/workbench/api/browser/mainThreadMessageService": {
"cancel": "Annuler",
"defaultSource": "Extension",
- "extensionSource": "{0} (extension)",
"manageExtension": "Gérer l'extension",
- "ok": "OK"
+ "ok": "&&OK"
+ },
+ "vs/workbench/api/browser/mainThreadNotebookSaveParticipant": {
+ "timeout.onWillSave": "Événement onWillSaveNotebookDocument abandonné après 1 750 ms"
+ },
+ "vs/workbench/api/browser/mainThreadOutputService": {
+ "status.showOutput": "Afficher la sortie",
+ "status.showOutputAria": "Afficher {0} canal de sortie",
+ "status.showOutputTooltip": "Afficher {0} canal de sortie"
},
"vs/workbench/api/browser/mainThreadProgress": {
"manageExtension": "Gérer l'extension"
@@ -2676,7 +3375,22 @@
"folderStatusMessageRemoveMultipleFolders": "L'extension '{0}' a supprimé {1} dossiers de l’espace de travail",
"folderStatusMessageRemoveSingleFolder": "L'extension '{0}' a supprimé 1 dossier de l’espace de travail"
},
+ "vs/workbench/api/browser/statusBarExtensionPoint": {
+ "accessibilityInformation": "Définit le rôle et l’étiquette aria à utiliser lorsque l’entrée de la barre d’état est mise en évidence.",
+ "accessibilityInformation.label": "Étiquette aria de l’entrée de barre d’état. Correspond par défaut au texte de l’entrée.",
+ "accessibilityInformation.role": "Rôle de l’entrée de barre d’état qui définit la façon dont un lecteur d’écran interagit avec lui. Vous trouverez plus d’informations sur les rôles Aria ici https://w3c.github.io/aria/#widget_roles",
+ "alignment": "Alignement de l’entrée de la barre d’état.",
+ "command": "Commande à exécuter lorsque vous cliquez sur une entrée de la barre d’état.",
+ "id": "Identificateur de l’entrée de la barre d’état. Doit être unique dans l’extension. Une même valeur doit être utilisée lors de l’appel de l’API « vscode.window.createStatusBarItem(id, } »",
+ "invalid": "Contribution d’élément de barre d’état non valide.",
+ "name": "Nom de l’entrée, par exemple « Indicateur de langage Python », « Statut Git », etc. Faites en sorte que le nom soit court, mais suffisamment descriptif pour que les utilisateurs puissent comprendre ce que représente l’élément de la barre d’état.",
+ "priority": "Priorité de l’entrée de la barre d’état. Une valeur supérieure signifie que l’élément doit être affiché plus à gauche.",
+ "text": "Texte à afficher pour l’entrée. Vous pouvez incorporer des icônes dans le texte en utilisant la syntaxe « $() », par exemple « Hello $(globe)! »",
+ "tooltip": "Le texte de l’infobulle pour l’entrée.",
+ "vscode.extension.contributes.statusBarItems": "Ajoute des éléments à la barre d’état."
+ },
"vs/workbench/api/browser/viewsExtensionPoint": {
+ "RequiresChatSessionsProposedAPI": "Le conteneur d’affichage « {0} » nécessite « enabledApiProposals: [\"chatSessionsProvider\"] ».",
"ViewContainerDoesnotExist": "Le conteneur de vues '{0}' n'existe pas et toutes les vues inscrites dans ce conteneur sont ajoutées à l''Explorateur'.",
"ViewContainerRequiresProposedAPI": "La '{0}' de conteneur d’affichage nécessite l’ajout de 'enabledApiProposals: [\"contribViewsRemote\"]' à 'Remote'.",
"duplicateView1": "Impossible d'inscrire plusieurs vues avec le même ID '{0}'",
@@ -2688,15 +3402,25 @@
"requirenonemptystring": "la propriété '{0}' est obligatoire et doit être de type 'string' avec une valeur non vide.",
"requirestring": "la propriété '{0}' est obligatoire et doit être de type 'string'",
"unknownViewType": "Type de vue inconnu : '{0}'.",
+ "view container id": "ID",
+ "view container location": "Emplacement",
+ "view container title": "Titre",
+ "view id": "ID",
+ "view name title": "Nom",
"viewcontainer requirearray": "les conteneurs de vues doivent être un tableau",
+ "views": "Vues",
+ "views.agentSessions": "Les vues dans le conteneur Sessions d’assistant contribuent à la barre d’activité. Pour contribuer à ce conteneur, la proposition d’API « chatSessionsProvider » doit être activée.",
"views.container.activitybar": "Les conteneurs visuels contribuent à la barre d'activité",
"views.container.panel": "Ajouter des conteneurs de vues au panneau",
+ "views.container.secondarySidebar": "Contribuer aux conteneurs de vues dans la barre latérale secondaire",
"views.contributed": "Ajoute des vues au conteneur de vues ajoutées",
"views.debug": "Les vues dans le conteneur de débogage contribuent à la barre d'activité",
"views.explorer": "Les vues dans le conteneur \"Explorer\" contribuent à la barre d'activité",
- "views.remote": "Apporte des vues au conteneur À distance dans la barre Activité. Pour ajouter des vues à ce conteneur, vous devez activer enableProposedApi.",
+ "views.remote": "Les vues dans le conteneur distant contribuent à la barre d’activité. Pour contribuer à ce conteneur, la proposition d’API « contribViewsRemote » doit être activée.",
"views.scm": "Les vues dans le conteneur \"SCM\" contribuent à la barre d'activité",
"views.test": "Fournit des vues du conteneur de test dans la barre d'activités",
+ "viewsContainers": "Afficher les conteneurs",
+ "vscode.extension.contributes.view.accessibilityHelpContent": "Lorsque la boîte de dialogue d’aide sur l’accessibilité est appelée dans cette vue, ce contenu est présenté à l’utilisateur sous la forme d’une chaîne Markdown. Les combinaisons de touches sont résolues au format . S’il n’y a pas de combinaison de touches, cela sera indiqué et cette commande sera incluse dans un quickpick pour faciliter la configuration.",
"vscode.extension.contributes.view.contextualTitle": "Contexte lisible par l’homme à afficher au moment où l’affichage quitte son emplacement d’origine. Par défaut, le nom de conteneur de l’affichage est utilisé.",
"vscode.extension.contributes.view.group": "Groupe imbriqué dans le viewlet",
"vscode.extension.contributes.view.icon": "Chemin de l'icône de vue. Les icônes de vue s'affichent quand le nom de la vue ne peut pas être affiché. Bien que tout type de fichier image soit accepté, il est recommandé d'utiliser des icônes au format SVG.",
@@ -2716,20 +3440,29 @@
"vscode.extension.contributes.views.containers.id": "Identificateur unique utilisé pour identifier le conteneur dans lequel les vues peuvent être contribuées en utilisant le point de contribution 'views'.",
"vscode.extension.contributes.views.containers.title": "Chaîne lisible par un humain permettant d'afficher le conteneur",
"vscode.extension.contributes.viewsContainers": "Contribue aux conteneurs de vues vers l’éditeur",
- "vscode.extension.contributs.view.size": "La taille de la vue. L’utilisation d’un nombre se comportera comme la propriété 'flex' css et la taille définira la taille initiale lors de la première affichage de la vue. Dans la barre latérale, il s’agit de la hauteur de la vue."
+ "vscode.extension.contributs.view.size": "Taille initiale de la vue. La taille se comportera comme la propriété CSS « flex » et définira la taille initiale lorsque la vue sera affichée pour la première fois. Dans la barre latérale, il s’agit de la hauteur de la vue. Cette valeur est uniquement respectée lorsque la même extension possède à la fois la vue et le conteneur de vue."
},
"vs/workbench/api/common/configurationExtensionPoint": {
+ "accessibility": "Paramètres d’accessibilité",
+ "advanced": "Les paramètres avancés sont masqués par défaut dans l’éditeur de paramètres, sauf si vous choisissez d’afficher les paramètres avancés.",
"config.property.defaultConfiguration.warning": "Impossible d’inscrire les paramètres de configuration par défaut pour '{0}'. Seuls les paramètres par défaut pour les paramètres étendus substituables par l’ordinateur, les fenêtres, les ressources et les langages substituables sont pris en charge.",
"config.property.duplicate": "Impossible d'inscrire '{0}'. Cette propriété est déjà inscrite.",
+ "config.property.preventDefaultConfiguration.warning": "Désolé... Nous ne pouvons pas inscrire les paramètres de configuration par défaut pour « {0} ». Ce paramètre n’autorise pas la contribution des paramètres de configuration par défaut.",
+ "default": "Par défaut",
+ "description": "Description",
+ "experimental": "Les paramètres expérimentaux peuvent être modifiés et supprimés dans les versions futures.",
"invalid.allOf": "'configuration.allOf' est obsolète et ne doit plus être utilisé. Au lieu de cela, passez plusieurs sections de configuration sous forme de tableau au point de contribution 'configuration'.",
"invalid.properties": "'configuration.properties' doit être un objet",
"invalid.property": "La propriété de configuration.properties « {0} » doit être un objet",
"invalid.title": "'configuration.title' doit être une chaîne",
+ "preview": "Les paramètres d’aperçu permettent d’essayer de nouvelles fonctionnalités avant leur finalisation.",
"scope.application.description": "Configuration pouvant être configurée uniquement dans les paramètres d'utilisateur.",
"scope.deprecationMessage": "Si la valeur est définie, la propriété est marquée comme dépréciée et le message donné est affiché comme explication.",
"scope.description": "Étendue dans laquelle la configuration est applicable. Les étendues disponibles sont 'application', 'machine', 'window', 'resource' et 'machine-overridable'.",
"scope.editPresentation": "Lorsque cette option est spécifiée, contrôle le format de présentation du paramètre de chaîne.",
"scope.enumDescriptions": "Descriptions des valeurs d'énumération",
+ "scope.enumItemLabels": "Étiquettes des valeurs enum à afficher dans l’éditeur de paramètres. Lorsqu’elle est spécifiée, les valeurs de {0} s’affichent toujours après les étiquettes, mais de manière moins visible.",
+ "scope.ignoreSync": "Lorsqu’elle est activée, la synchronisation des paramètres ne synchronise pas la valeur utilisateur de cette configuration par défaut.",
"scope.language-overridable.description": "Configuration de ressource modifiable dans les paramètres propres au langage.",
"scope.machine-overridable.description": "Configuration machine pouvant également être configurée dans le Workbench ou dans les paramètres de l'espace de travail ou de dossier.",
"scope.machine.description": "Configuration pouvant être effectuée seulement dans les paramètres utilisateur ou dans les paramètres d'utilisation à distance.",
@@ -2740,8 +3473,13 @@
"scope.order": "Lorsqu'il est spécifié, donne l'ordre de ce paramètre par rapport aux autres paramètres de la même catégorie. Les paramètres avec une propriété de commande seront placés avant les paramètres sans cette propriété.",
"scope.resource.description": "Configuration pouvant être configurée dans les paramètres d'utilisateur, à distance, de l'espace de travail ou de dossier.",
"scope.singlelineText.description": "La valeur s’affiche dans une zone d’entrée.",
+ "scope.tags": "Liste des balises sous lesquelles placer le paramètre. La balise peut ensuite être recherchée dans l’éditeur de paramètres. Par exemple, spécifier la balise « experimental » permet de trouver le paramètre en recherchant « @tag:experimental ».",
"scope.window.description": "Configuration pouvant être configurée dans les paramètres d'utilisateur, à distance ou de l'espace de travail.",
+ "setting name": "ID",
+ "settings": "Paramètres",
+ "telemetry": "Paramètres de télémétrie",
"unknownWorkspaceProperty": "Propriété de configuration d’espace de travail inconnue",
+ "usesOnlineServices": "Paramètres qui utilisent des services en ligne",
"vscode.extension.contributes.configuration": "Ajoute des paramètres de configuration.",
"vscode.extension.contributes.configuration.order": "Lorsqu'il est spécifié, donne l'ordre de cette catégorie de paramètres par rapport aux autres catégories.",
"vscode.extension.contributes.configuration.properties": "Description des propriétés de configuration.",
@@ -2751,6 +3489,7 @@
"workspaceConfig.extensions.description": "Extensions de l'espace de travail",
"workspaceConfig.folders.description": "Liste des dossiers à être chargés dans l’espace de travail.",
"workspaceConfig.launch.description": "Configurations de lancement de l’espace de travail",
+ "workspaceConfig.mcp.description": "Configurations de serveur Model Context Protocol",
"workspaceConfig.name.description": "Nom facultatif pour le dossier.",
"workspaceConfig.path.description": "Un chemin de fichier, par exemple, '/root/folderA' ou './folderA' pour un chemin relatif résolu selon l’emplacement du fichier d’espace de travail.",
"workspaceConfig.remoteAuthority": "Le serveur distant sur lequel se trouve l’espace de travail.",
@@ -2759,6 +3498,13 @@
"workspaceConfig.transient": "Un espace de travail temporaire disparaît lors du redémarrage ou du rechargement.",
"workspaceConfig.uri.description": "URI du dossier"
},
+ "vs/workbench/api/common/extHostAuthentication": {
+ "authenticatingTo": "Authentification à « {0} »",
+ "completeAuth": "Terminez l’authentification dans la fenêtre du navigateur qui s’est ouverte.",
+ "continueWith": "Vous n’avez pas encore terminé d’autoriser « {0} ». Voulez-vous essayer une autre méthode ? ({1})",
+ "url handler": "Gestionnaire d'URL",
+ "userCanceledContinue": "Vous avez des difficultés à vous authentifier sur « {0} » ? Voulez-vous essayer une autre méthode ? ({1})"
+ },
"vs/workbench/api/common/extHostDiagnostics": {
"limitHit": "Les {0} erreurs et avertissements supplémentaires ne sont pas affichés."
},
@@ -2766,19 +3512,38 @@
"extensionTestError": "Le chemin {0} ne pointe pas vers un Test Runner d'extension valide.",
"extensionTestError1": "Impossible de charger Test Runner."
},
- "vs/workbench/api/common/extHostProgress": {
- "extensionSource": "{0} (extension)"
+ "vs/workbench/api/common/extHostLanguageFeatures": {
+ "defaultDropLabel": "Supprimer à l’aide de l’extension «{0} »",
+ "defaultPasteLabel": "Coller à l’aide de l’extension '{0}'"
+ },
+ "vs/workbench/api/common/extHostLanguageModels": {
+ "chatAccessWithJustification": "Justification : {1}"
+ },
+ "vs/workbench/api/common/extHostLogService": {
+ "local": "Hôte d'extension",
+ "remote": "Hôte d’extension (distant)",
+ "worker": "Hôte d’extension (Worker)"
+ },
+ "vs/workbench/api/common/extHostNotebook": {
+ "err.readonly": "Nous n’avons pas pu modifier le fichier en lecture seule '{0}'",
+ "fileModifiedError": "Fichier modifié depuis"
},
"vs/workbench/api/common/extHostStatusBar": {
"extensionLabel": "{0} (Extension)",
"status.extensionMessage": "État de l'extension"
},
+ "vs/workbench/api/common/extHostTelemetry": {
+ "extensionTelemetryLog": "Télémétrie de l’extension{0}"
+ },
"vs/workbench/api/common/extHostTerminalService": {
"launchFail.idMissingOnExtHost": "Le terminal ayant l'ID {0} sur l'hôte d'extension est introuvable"
},
"vs/workbench/api/common/extHostTreeViews": {
- "treeView.duplicateElement": "L'élément avec l'id {0} est déjà inscrit",
- "treeView.notRegistered": "Aucune arborescence avec l'ID \"{0}\" n'est inscrite."
+ "treeView.duplicateElement": "L'élément avec l'id {0} est déjà inscrit"
+ },
+ "vs/workbench/api/common/extHostTunnelService": {
+ "tunnelPrivacy.private": "Privé",
+ "tunnelPrivacy.public": "Public"
},
"vs/workbench/api/common/extHostWorkspace": {
"updateerror": "L'extension '{0}' n’a pas pu mettre à jour les dossiers de l’espace de travail : {1}"
@@ -2787,79 +3552,118 @@
"contributes.jsonValidation": "Ajoute une configuration de schéma json.",
"contributes.jsonValidation.fileMatch": "Modèle de fichier (ou tableau de modèles) à rechercher, par exemple, \"package.json\" ou \"*.launch\". Les modèles d'exclusion commencent par '!'",
"contributes.jsonValidation.url": "URL de schéma ('http:', 'https:') ou chemin relatif du dossier d'extensions ('./').",
+ "fileMatch": "Correspondance de fichier",
"invalid.fileMatch": "'configuration.jsonValidation.fileMatch' doit être défini comme une chaîne ou un tableau de chaînes.",
"invalid.jsonValidation": "'configuration.jsonValidation' doit être un tableau",
"invalid.path.1": "'contributes.{0}.url' ({1}) doit être inclus dans le dossier de l'extension ({2}). L'extension risque de ne pas être portable.",
"invalid.url": "'configuration.jsonValidation.url' doit être une URL ou un chemin relatif",
"invalid.url.fileschema": "'configuration.jsonValidation.url' est une URL relative non valide : {0}",
- "invalid.url.schema": "'configuration.jsonValidation.url' doit être une URL absolue ou commencer par './' pour référencer les schémas situés dans l'extension."
+ "invalid.url.schema": "'configuration.jsonValidation.url' doit être une URL absolue ou commencer par './' pour référencer les schémas situés dans l'extension.",
+ "jsonValidation": "Validation JSON",
+ "schema": "Schéma"
+ },
+ "vs/workbench/api/node/extHostAuthentication": {
+ "completeAuth": "Terminez l’authentification dans la fenêtre du navigateur qui s’est ouverte.",
+ "device code": "Code de l’appareil",
+ "loopback": "Serveur de bouclage",
+ "waitingForAuth": "Ouvrez [{0}]({0}) dans un nouvel onglet et collez votre code à usage unique : {1}"
},
"vs/workbench/api/node/extHostDebugService": {
"debug.terminal.title": "Processus de débogage"
},
- "vs/workbench/api/node/extHostTunnelService": {
- "tunnelPrivacy.private": "Privé",
- "tunnelPrivacy.public": "Public"
+ "vs/workbench/api/test/browser/mainThreadTreeViews.test": {
+ "Test View 1": "Affichage des tests 1",
+ "test": "test"
},
"vs/workbench/browser/actions/developerActions": {
+ "global": "Global",
"inspect context keys": "Inspecter les clés de contexte",
- "keyboardShortcutsFormat.command": "Titre de la commande",
- "keyboardShortcutsFormat.commandAndKeys": "Titre et clés de la commande.",
- "keyboardShortcutsFormat.commandWithGroup": "Titre de commande préfixé par son groupe",
- "keyboardShortcutsFormat.commandWithGroupAndKeys": "Titre et clés de la commande, avec la commande préfixée par son groupe",
- "keyboardShortcutsFormat.keys": "Clés",
+ "largeStorageItemDetail": "Étendue : {0}, cible : {1}",
"logStorage": "Journaliser le contenu de la base de données de stockage",
"logWorkingCopies": "Journaliser les copies de travail",
+ "machine": "Machine",
+ "policyDiagnostics": "Diagnostics de stratégie",
+ "profile": "Profil",
+ "removeLargeStorageDatabaseEntries": "Supprimer les entrées de base de données de stockage volumineuses...",
+ "removeLargeStorageEntriesButtonLabel": "&&Supprimer",
+ "removeLargeStorageEntriesConfirmRemove": "Voulez-vous supprimer les entrées de stockage sélectionnées de la base de données ?",
+ "removeLargeStorageEntriesConfirmRemoveDetail": "{0}\r\n\r\nCette action est irréversible et peut entraîner une perte de données !",
+ "removeLargeStorageEntriesPickerButton": "Supprimer",
+ "removeLargeStorageEntriesPickerDescriptionNoEntries": "Il n’y a aucune entrée de stockage volumineuse à supprimer.",
+ "removeLargeStorageEntriesPickerPlaceholder": "Sélectionner les entrées volumineuses à supprimer du stockage",
"screencastMode.fontSize": "Contrôle la taille de police (en pixels) du clavier en mode de capture vidéo d'écran.",
+ "screencastMode.keyboardOptions.description": "Options de personnalisation de la superposition du clavier en mode de capture d’écran.",
+ "screencastMode.keyboardOptions.showCommandGroups": "Afficher les noms des groupes de commandes lorsque les commandes sont également affichées.",
+ "screencastMode.keyboardOptions.showCommands": "Afficher les noms des commandes.",
+ "screencastMode.keyboardOptions.showKeybindings": "Afficher les raccourcis clavier.",
+ "screencastMode.keyboardOptions.showKeys": "Afficher les clés brutes.",
+ "screencastMode.keyboardOptions.showSingleEditorCursorMoves": "Afficher les commandes de déplacement du curseur de l’éditeur unique.",
"screencastMode.keyboardOverlayTimeout": "Contrôle la durée (en millisecondes) d'affichage de la superposition du clavier en mode capture vidéo.",
- "screencastMode.keyboardShortcutsFormat": "Contrôle ce qui est affiché dans la superposition du clavier lorsque seuls les raccourcis sont affichés.",
"screencastMode.location.verticalPosition": "Contrôle le décalage vertical de la superposition du mode de capture vidéo depuis le bas par rapport à la hauteur du Workbench.",
"screencastMode.mouseIndicatorColor": "Contrôle la couleur hexadécimale (#RGB, #RGBA, #RRGGBB ou #RRGGBBAA) de l'indicateur de la souris en mode capture vidéo.",
"screencastMode.mouseIndicatorSize": "Contrôle la taille (en pixels) de l'indicateur de la souris en mode capture vidéo.",
- "screencastMode.onlyKeyboardShortcuts": "Affichez uniquement les raccourcis clavier en mode capture d'écran.",
"screencastModeConfigurationTitle": "Mode de capture vidéo",
- "toggle screencast mode": "Activer/désactiver le mode Capture vidéo"
+ "snapshotTrackedDisposables": "Éléments supprimables suivis de capture instantanée",
+ "startTrackDisposables": "Démarrer le suivi des éléments supprimables",
+ "stopTrackDisposables": "Arrêter le suivi des éléments supprimables",
+ "storageLogDialogDetails": "Ouvrez les outils de développement dans le menu et sélectionnez l’onglet Console.",
+ "storageLogDialogMessage": "Le contenu de la base de données de stockage a été enregistré dans les outils de développement.",
+ "toggle screencast mode": "Activer/désactiver le mode Capture vidéo",
+ "user": "Utilisateur",
+ "workspace": "Espace de travail"
},
"vs/workbench/browser/actions/helpActions": {
+ "askVScode": "Demander à @vscode",
+ "getStartedWithAccessibilityFeatures": "Démarrer avec fonctionnalités d’accessibilité",
"keybindingsReference": "Référence des raccourcis clavier",
"miDocumentation": "&&Documentation",
"miKeyboardShortcuts": "Référence des racco&&urcis clavier",
"miLicense": "Affic&&her la licence",
"miPrivacyStatement": "Déclarat&&ion de confidentialité",
"miTipsAndTricks": "Conseils et astu&&ces",
- "miTwitter": "&&Rejoignez-nous sur Twitter",
"miUserVoice": "&&Rechercher parmi les requêtes de fonctionnalités",
"miVideoTutorials": "&&Tutoriels vidéo",
+ "miYouTube": "&&Rejoignez-nous sur YouTube",
"newsletterSignup": "S'inscrire au bulletin d'informations de VS Code",
"openDocumentationUrl": "Documentation",
"openLicenseUrl": "Voir la licence",
"openPrivacyStatement": "Déclaration de confidentialité",
"openTipsAndTricksUrl": "Conseils et astuces",
- "openTwitterUrl": "Rejoignez-nous sur Twitter",
"openUserVoiceUrl": "Rechercher dans les demandes de fonctionnalité",
- "openVideoTutorialsUrl": "Tutoriels vidéo"
+ "openVideoTutorialsUrl": "Tutoriels vidéo",
+ "openYouTubeUrl": "Rejoignez-nous sur YouTube"
},
"vs/workbench/browser/actions/layoutActions": {
"active": "Actif",
"activityBar": "Barre d’activité",
"activityBarLeft": "Représente la barre d'activité en position gauche",
"activityBarRight": "Représente la barre d'activité dans la bonne position",
+ "alignQuickInputCenter": "Aligner le centre d’entrée rapide",
+ "alignQuickInputTop": "Aligner l’entrée rapide en haut",
+ "center": "Centre",
"centerLayoutIcon": "Représente le mode de disposition centré.",
"centerPanel": "Centre",
"centeredLayout": "Disposition centrée",
"close": "Fermer",
- "closeSidebar": "Fermer la barre latérale primaire",
"cofigureLayoutIcon": "L’icône représente la configuration de la disposition du banc d’essai.",
"compositePart.hideSideBarLabel": "Masquer la barre latérale principale",
+ "configureEditors": "Configurer des éditeurs",
"configureLayout": "Configurer la disposition",
+ "configureTabs": "Configurer des onglets",
"customizeLayout": "Personnaliser la disposition...",
"customizeLayoutQuickPickTitle": "Personnaliser la disposition",
"decreaseEditorHeight": "Diminuer la hauteur de l'éditeur",
"decreaseEditorWidth": "Diminuer la largeur de l'éditeur",
"decreaseViewSize": "Diminuer la taille de l'affichage actuel",
+ "editorActionsPosition": "Position des actions de l’éditeur",
"fullScreenIcon": "Représente le plein écran.",
"fullscreen": "Plein écran",
- "hidden": "Masqué",
+ "hideEditorActons": "Masquer les actions de l’éditeur",
+ "hideEditorActonsDescription": "Masquer les actions de l’éditeur dans l’onglet et la barre de titre",
+ "hideEditorTabs": "Masquer les onglets de l'éditeur",
+ "hideEditorTabsDescription": "Masquer la barre d’onglets",
+ "hideEditorTabsZenMode": "Masquer les onglets de l’éditeur en mode zen",
+ "hideEditorTabsZenModeDescription": "Masquer la barre d’onglets en mode Zen",
"increaseEditorHeight": "Augmenter la hauteur de l'éditeur",
"increaseEditorWidth": "Augmenter la largeur de l'éditeur",
"increaseViewSize": "Augmenter la taille de l'affichage actuel",
@@ -2869,23 +3673,23 @@
"leftSideBar": "Gauche",
"menuBar": "Barre de menus",
"menuBarIcon": "Représente la barre de menus",
- "miActivityBar": "&&Activity Bar",
"miAppearance": "&&Apparence",
- "miMenuBar": "Menu &&Bar",
- "miMenuBarNoMnemonic": "Menu Bar",
+ "miMenuBar": "Barre de &&menu",
+ "miMenuBarNoMnemonic": "Barre de menu",
"miMoveSidebarLeft": "&&Déplacer la barre latérale primaire vers la gauche",
"miMoveSidebarRight": "&&Déplacer la barre latérale primaire vers la droite",
"miShowEditorArea": "Afficher la zone de l'édit&&eur",
- "miShowSidebar": "&&Primary Side Bar",
- "miSidebarNoMnnemonic": "Primary Side Bar",
- "miStatusbar": "S&&tatus Bar",
+ "miStatusbar": "B&&arre d'état",
"miToggleCenteredLayout": "Disposition &¢rée",
"miToggleZenMode": "Mode Zen",
"move second sidebar left": "Déplacer la barre latérale secondaire vers la gauche",
"move second sidebar right": "Déplacer la barre latérale secondaire vers la droite",
"move side bar right": "Déplacer la barre latérale primaire vers la droite",
"move sidebar left": "Déplacer la barre latérale primaire vers la gauche",
- "move sidebar right": "Déplacer la barre latérale primaire vers la droite",
+ "moveEditorActionsToTabBar": "Déplacer les actions de l’éditeur vers la barre d’onglets",
+ "moveEditorActionsToTabBarDescription": "Déplacer les actions de l’éditeur de la barre de titre vers la barre d’onglets",
+ "moveEditorActionsToTitleBar": "Déplacer les actions de l’éditeur vers la barre de titre",
+ "moveEditorActionsToTitleBarDescription": "Déplacer les actions de l’éditeur de la barre d’onglets vers la barre de titre",
"moveFocusedView": "Déplacer la vue ayant le focus",
"moveFocusedView.error.noFocusedView": "Aucune vue n'a actuellement le focus.",
"moveFocusedView.error.nonMovableView": "La vue ayant actuellement le focus ne peut pas être déplacée.",
@@ -2898,6 +3702,7 @@
"moveSidebarLeft": "Déplacer la barre latérale primaire vers la gauche",
"moveSidebarRight": "Déplacer la barre latérale primaire vers la droite",
"moveView": "Déplacer la vue",
+ "openAndCloseSidebar": "Ouvrir/Afficher et Fermer/Masquer la barre latérale",
"panel": "Panneau",
"panelAlignment": "Alignement du panneau",
"panelBottom": "Représente le panneau inférieur",
@@ -2910,34 +3715,60 @@
"panelLeftOff": "Représente une barre latérale en position gauche désactivée",
"panelRight": "Représente la barre latérale dans la bonne position",
"panelRightOff": "Représente la barre latérale dans la position droite désactivée",
+ "primary sidebar": "Barre latérale primaire",
+ "primary sidebar mnemonic": "&&Barre latérale principale",
+ "quickInputAlignmentCenter": "Représente l’alignement d’entrée rapide défini sur le centre",
+ "quickInputAlignmentTop": "Représente l’alignement d’entrée rapide défini en haut",
+ "quickOpen": "Position d’entrée rapide",
"resetFocusedView.error.noFocusedView": "Aucune vue n'a actuellement le focus.",
"resetFocusedViewLocation": "Réinitialiser l'emplacement de vue qui a le focus",
"resetViewLocations": "Réinitialiser les emplacements des vues",
+ "restore defaults": "Paramètres par défaut",
"rightPanel": "Droite",
"rightSideBar": "Droite",
"secondarySideBar": "Afficher la barre latérale secondaire",
"secondarySideBarContainer": "Afficher la barre latérale secondaire / {0}",
+ "selectToHide": "Sélectionner pour masquer",
+ "selectToShow": "Sélectionner pour afficher",
+ "showEditorActons": "Afficher les actions de l’éditeur",
+ "showEditorActonsDescription": "Rendre les actions Rédacteur visibles.",
+ "showMultipleEditorTabs": "Afficher plusieurs onglets de l’éditeur",
+ "showMultipleEditorTabsDescription": "Afficher la barre d’onglets avec plusieurs onglets",
+ "showMultipleEditorTabsZenMode": "Afficher plusieurs onglets de l’éditeur en mode zen",
+ "showMultipleEditorTabsZenModeDescription": "Afficher la barre d’onglets en mode Zen",
+ "showSingleEditorTab": "Afficher l’onglet Éditeur unique",
+ "showSingleEditorTabDescription": "Afficher la barre d’onglets avec un onglet",
+ "showSingleEditorTabZenMode": "Afficher l’onglet Éditeur unique en mode zen",
+ "showSingleEditorTabZenModeDescription": "Afficher la barre d’onglets en mode Zen avec un onglet",
"sideBar": "Barre latérale primaire",
"sideBarPosition": "Position de la barre latérale primaire",
"sidebar": "Barre latérale",
"sidebarContainer": "Barre latérale / {0}",
+ "sidebarHidden": "Barre latérale principale masquée",
+ "sidebarVisible": "Barre latérale principale affichée",
"statusBar": "Barre d'état",
"statusBarIcon": "Représente la barre d'état",
- "toggleActivityBar": "Activer/désactiver la visibilité de la barre d'activités",
+ "tabBar": "Barre d’onglets",
"toggleCenteredLayout": "Activer/désactiver la disposition centrée",
"toggleEditor": "Activer/désactiver la visibilité de la zone de l'éditeur",
"toggleMenuBar": "Activer/désactiver la barre de menus",
+ "toggleSeparatePinnedEditorTabs": "Onglets d’éditeur épinglés distincts",
+ "toggleSeparatePinnedEditorTabsDescription": "Activer/désactiver si les onglets de l’éditeur épinglé sont affichés sur une ligne distincte au-dessus des onglets non épinglés.",
"toggleSideBar": "Basculer la barre latérale primaire",
"toggleSidebar": "Basculer la visibilité de la barre latérale primaire",
"toggleSidebarPosition": "Basculer la position de la barre latérale primaire",
"toggleStatusbar": "Activer/désactiver la visibilité de la barre d'état",
- "toggleTabs": "Activer/désactiver la visibilité de l'onglet",
"toggleVisibility": "Visibilité",
"toggleZenMode": "Activer/désactiver le mode zen",
- "visible": "Visible",
+ "top": "Top",
"zenMode": "Mode Zen",
"zenModeIcon": "Représente le mode zen."
},
+ "vs/workbench/browser/actions/listCommands": {
+ "mitoggleTreeStickyScroll": "&&Activer/désactiver le défilement épinglé de l’arborescence",
+ "toggleTreeStickyScroll": "Activer/désactiver le défilement épinglé de l’arborescence",
+ "toggleTreeStickyScrollDescription": "Active/désactive le widget de défilement épinglé en haut des structures d’arborescence telles que la vue Explorateur de fichiers et les variables de débogage."
+ },
"vs/workbench/browser/actions/navigationActions": {
"focusNextPart": "Focus sur la partie suivante",
"focusPreviousPart": "Focus sur la partie précédente",
@@ -2950,6 +3781,7 @@
"quickNavigateNext": "Naviguer vers l'élément suivant dans Quick Open",
"quickNavigatePrevious": "Naviguer vers l'élément précédent dans Quick Open",
"quickOpen": "Atteindre le fichier...",
+ "quickOpenWithModes": "Quick Open",
"quickSelectNext": "Sélectionner l'élément suivant dans Quick Open",
"quickSelectPrevious": "Sélectionner l'élément précédent dans Quick Open"
},
@@ -2963,6 +3795,8 @@
},
"vs/workbench/browser/actions/windowActions": {
"about": "À propos de",
+ "activeOpenedRecentlyOpenedFolder": "Dossier ouvert dans la fenêtre active",
+ "activeOpenedRecentlyOpenedWorkspace": "Espace de travail ouvert dans la fenêtre active",
"blur": "Supprimer le focus clavier de l'élément ayant le focus",
"dirtyFolder": "Dossier contenant des fichiers non enregistrés",
"dirtyFolderConfirm": "Voulez-vous ouvrir le dossier pour passer en revue les fichiers non enregistrés ?",
@@ -2972,7 +3806,6 @@
"dirtyWorkspace": "Espace de travail contenant des fichiers non enregistrés",
"dirtyWorkspaceConfirm": "Voulez-vous ouvrir l'espace de travail pour passer en revue les fichiers non enregistrés ?",
"dirtyWorkspaceConfirmDetail": "Les espaces de travail contenant des fichiers non enregistrés ne peuvent pas être supprimés tant que tous les fichiers non enregistrés n'ont pas été enregistrés ou restaurés.",
- "file": "Fichier",
"files": "Fichiers",
"folders": "dossiers",
"miAbout": "À pr&&opos de",
@@ -2985,6 +3818,8 @@
"openRecent": "Ouvrir les éléments récents...",
"openRecentPlaceholder": "Sélectionner pour ouvrir (appuyez de façon prolongée sur la touche Ctrl pour forcer l'ouverture d'une nouvelle fenêtre ou sur la touche Alt pour la même fenêtre)",
"openRecentPlaceholderMac": "Sélectionner pour ouvrir (appuyez de façon prolongée sur la touche Cmd pour forcer l'ouverture d'une nouvelle fenêtre ou sur la touche Option pour la même fenêtre)",
+ "openedRecentlyOpenedFolder": "Dossier ouvert dans une fenêtre",
+ "openedRecentlyOpenedWorkspace": "Espace de travail ouvert dans une fenêtre",
"quickOpenRecent": "Ouverture rapide des éléments récents...",
"recentDirtyFolderAriaLabel": "{0}, dossier contenant des changements non enregistrés",
"recentDirtyWorkspaceAriaLabel": "{0}, espace de travail contenant des changements non enregistrés",
@@ -2997,7 +3832,6 @@
"closeWorkspace": "Fermer l'espace de travail",
"duplicateWorkspace": "Dupliquer l’espace de travail",
"duplicateWorkspaceInNewWindow": "Dupliquer en tant qu'espace de travail dans une nouvelle fenêtre",
- "filesCategory": "fichier",
"globalRemoveFolderFromWorkspace": "Supprimer le dossier d’espace de travail...",
"miAddFolderToWorkspace": "A&&jouter un dossier à l'espace de travail...",
"miCloseFolder": "&&Fermer le dossier",
@@ -3021,53 +3855,70 @@
"addFolderToWorkspaceTitle": "Ajouter un dossier à l'espace de travail",
"workspaceFolderPickerPlaceholder": "Sélectionner le dossier de l’espace de travail"
},
- "vs/workbench/browser/codeeditor": {
- "openWorkspace": "Ouvrir un espace de travail"
- },
"vs/workbench/browser/editor": {
"pinned": "{0}, épinglé",
"preview": "{0}, aperçu"
},
- "vs/workbench/browser/parts/activitybar/activitybarActions": {
- "authProviderUnavailable": "{0} est non disponible",
- "focusActivityBar": "Focus sur la barre d'activités",
- "hideAccounts": "Masquer les comptes",
- "manageTrustedExtensions": "Gérer les extensions approuvées",
- "nextSideBarView": "Affichage de la barre latérale primaire suivante",
- "noAccounts": "Vous n'êtes connecté à aucun compte",
- "previousSideBarView": "Vue de la barre latérale primaire précédente",
- "signOut": "Se déconnecter"
+ "vs/workbench/browser/labels": {
+ "notebookCellLabel": "{0} • Cellule {1}",
+ "notebookCellOutputLabel": "{0} • Cellule {1} • Sortie {2}",
+ "notebookCellOutputLabelSimple": "{0} • Cellule {1} • Sortie"
},
"vs/workbench/browser/parts/activitybar/activitybarPart": {
- "accounts": "Comptes",
- "accounts visibility key": "Personnalisation de la visibilité de l’entrée des comptes dans la barre d’activités.",
- "accountsViewBarIcon": "Icône des comptes dans la barre d'affichage.",
- "hideActivitBar": "Masquer la barre d'activités",
+ "activity bar position": "Position de la barre d’activités",
+ "bottom": "Bas",
+ "default": "Par défaut",
+ "focusActivityBar": "Focus sur la barre d'activités",
+ "hide": "Masqué",
+ "hideActivityBar": "Masquer la barre d'activités",
"hideMenu": "Masquer le menu",
- "manage": "Gérer",
"menu": "Menu",
- "pinned view containers": "Personnalisations de la visibilité des entrées de la barre d’activités",
- "resetLocation": "Réinitialiser l'emplacement",
- "settingsViewBarIcon": "Icône des paramètres dans la barre d'affichage."
+ "miBottomActivityBar": "&&Bas",
+ "miDefaultActivityBar": "&&Par défaut",
+ "miHideActivityBar": "&&Masqué",
+ "miTopActivityBar": "&&Top",
+ "nextSideBarView": "Affichage de la barre latérale primaire suivante",
+ "positionActivituBar": "Position de la barre d’activités",
+ "positionActivityBarBottom": "Déplacer la barre d’activité vers le bas",
+ "positionActivityBarDefault": "Déplacer la barre d'activité sur le côté",
+ "positionActivityBarTop": "Déplacer la barre d'activité sur le côté",
+ "previousSideBarView": "Vue de la barre latérale primaire précédente",
+ "top": "Top"
},
"vs/workbench/browser/parts/auxiliarybar/auxiliaryBarActions": {
+ "auxiliaryBarHidden": "Barre latérale secondaire masquée",
+ "auxiliaryBarVisible": "Barre latérale secondaire affichée",
+ "closeIcon": "Icône pour fermer la barre latérale secondaire.",
+ "closeSecondarySideBar": "Masquer la barre latérale secondaire",
"focusAuxiliaryBar": "Focus sur la barre latérale secondaire",
"hideAuxiliaryBar": "Masquer la barre latérale secondaire",
- "miAuxiliaryBar": "Secondary Si&&de Bar",
- "miAuxiliaryBarNoMnemonic": "Secondary Side Bar",
+ "maximizeAuxiliaryBar": "Agrandir la barre latérale secondaire",
+ "maximizeAuxiliaryBarTooltip": "Agrandir la taille de la barre latérale secondaire",
+ "maximizeIcon": "Icône pour agrandir la barre latérale secondaire.",
+ "miCloseSecondarySideBar": "&&Afficher la barre latérale secondaire",
+ "nextAuxiliaryBarView": "Vue de la barre latérale secondaire suivante",
+ "openAndCloseAuxiliaryBar": "Ouvrir/afficher et fermer/masquer la barre latérale secondaire",
+ "previousAuxiliaryBarView": "Vue précédente de la barre secondaire",
+ "restoreAuxiliaryBar": "Restaurer la barre latérale secondaire",
+ "restoreAuxiliaryBarTooltip": "Restaurer la taille de la barre latérale secondaire",
"toggleAuxiliaryBar": "Activer/désactiver la visibilité de la barre latérale secondaire",
- "toggleAuxiliaryIconLeft": "Icône permettant de basculer la barre auxiliaire à sa position gauche.",
- "toggleAuxiliaryIconLeftOn": "Icône permettant de basculer la barre auxiliaire à sa position gauche.",
- "toggleAuxiliaryIconRight": "Icône permettant de désactiver la barre auxiliaire dans sa position de droite.",
- "toggleAuxiliaryIconRightOn": "Icône permettant de basculer la barre auxiliaire à sa position droite.",
+ "toggleAuxiliaryIconLeft": "Icône permettant de basculer la barre latérale secondaire en position gauche.",
+ "toggleAuxiliaryIconLeftOn": "Icône permettant d'activer la barre latérale secondaire en position gauche.",
+ "toggleAuxiliaryIconRight": "Icône permettant de désactiver la barre secondaire dans sa position de droite.",
+ "toggleAuxiliaryIconRightOn": "Icône permettant d’activer la barre secondaire dans sa position de droite.",
+ "toggleMaximizedAuxiliaryBar": "Basculer la barre latérale secondaire agrandie",
"toggleSecondarySideBar": "Basculer la barre latérale secondaire"
},
"vs/workbench/browser/parts/auxiliarybar/auxiliaryBarPart": {
- "hideAuxiliaryBar": "Masquer la barre latérale secondaire",
+ "activity bar position": "Position de la barre d’activités",
+ "hide second side bar": "Masquer la barre latérale secondaire",
"move second side bar left": "Déplacer la barre latérale secondaire vers la gauche",
- "move second side bar right": "Déplacer la barre latérale secondaire vers la droite"
+ "move second side bar right": "Déplacer la barre latérale secondaire vers la droite",
+ "showIcons": "Afficher les icônes",
+ "showLabels": "Afficher les étiquettes"
},
"vs/workbench/browser/parts/banner/bannerPart": {
+ "closeBanner": "Fermer la bannière",
"focusBanner": "Bannière de focus"
},
"vs/workbench/browser/parts/compositeBar": {
@@ -3075,13 +3926,14 @@
},
"vs/workbench/browser/parts/compositeBarActions": {
"additionalViews": "Vues supplémentaires",
- "badgeTitle": "{0} - {1}",
"hide": "Masquer '{0}'",
+ "hideBadge": "Masquer le badge",
"keep": "Conserver '{0}'",
- "manageExtension": "Gérer l'extension",
"numberBadge": "{0} ({1})",
+ "showBadge": "Afficher le badge",
"titleKeybinding": "{0} ({1})",
- "toggle": "Afficher/masquer la vue épinglée"
+ "toggle": "Afficher/masquer la vue épinglée",
+ "toggleBadge": "Activer/désactiver le badge d’affichage"
},
"vs/workbench/browser/parts/compositePart": {
"ariaCompositeToolbarLabel": "{0} actions",
@@ -3089,18 +3941,20 @@
"viewsAndMoreActions": "Vues et autres actions..."
},
"vs/workbench/browser/parts/dialogs/dialogHandler": {
- "aboutDetail": "Version : {0}\r\nCommit : {1}\r\nDate : {2}\r\nNavigateur : {3}",
- "cancelButton": "Annuler",
- "copy": "Copier",
- "ok": "OK",
- "yesButton": "&&Oui"
+ "copy": "&&Copier",
+ "ok": "OK"
+ },
+ "vs/workbench/browser/parts/editor/auxiliaryEditorPart": {
+ "disableCompactAuxiliaryWindow": "Désactiver le mode Compact",
+ "enableCompactAuxiliaryWindow": "Activer le mode Compact",
+ "toggleCompactAuxiliaryWindow": "Basculer le mode compact de la fenêtre"
},
"vs/workbench/browser/parts/editor/binaryDiffEditor": {
"metadataDiff": "{0} ↔ {1}"
},
"vs/workbench/browser/parts/editor/binaryEditor": {
"binaryEditor": "Visionneuse binaire",
- "binaryError": "Le fichier n’est pas affiché dans l’éditeur parce que c’est un fichier binaire ou qu'il utilise un encodage de texte non pris en charge.",
+ "binaryError": "Le fichier n’est pas affiché dans l’éditeur de texte parce que c’est un fichier binaire ou qu’il utilise un encodage de texte non pris en charge.",
"openAnyway": "Ouvrir quand même"
},
"vs/workbench/browser/parts/editor/breadcrumbs": {
@@ -3151,14 +4005,24 @@
"breadcrumbsPossible": "Indique si l'éditeur peut afficher les barres de navigation",
"breadcrumbsVisible": "Indique si les barres de navigation sont visibles",
"cmd.focus": "Focus sur les barres de navigation",
+ "cmd.focusAndSelect": "Focus et sélection des barres de navigation",
"cmd.toggle": "Basculer les barres de navigation",
+ "cmd.toggle2": "Basculer les barres de navigation",
"empty": "aucun élément",
- "miBreadcrumbs": "&&Breadcrumbs",
+ "miBreadcrumbs2": "&&Barres de navigation",
"separatorIcon": "Icône du séparateur dans les barres de navigation"
},
"vs/workbench/browser/parts/editor/breadcrumbsPicker": {
"breadcrumbs": "Barres de navigation"
},
+ "vs/workbench/browser/parts/editor/diffEditorCommands": {
+ "compare": "Comparer",
+ "compare.nextChange": "Accéder à la modification suivante",
+ "compare.openSide": "Ouvrir le côté actif de la différence",
+ "compare.previousChange": "Accéder à la modification précédente",
+ "swapDiffSides": "Basculer à gauche et à droite côté éditeur",
+ "toggleInlineView": "Activer/désactiver le mode inline"
+ },
"vs/workbench/browser/parts/editor/editor.contribution": {
"activeGroupEditorsByMostRecentlyUsedQuickAccess": "Afficher les éditeurs du groupe actif en commençant par le dernier utilisé",
"allEditorsByAppearanceQuickAccess": "Afficher tous les éditeurs ouverts par apparence",
@@ -3177,15 +4041,26 @@
"closeRight": "Fermer à droite",
"closeRightEditors": "Fermer les éditeurs à droite dans le groupe",
"closeSavedEditors": "Fermer les éditeurs sauvegardés dans le groupe",
+ "configureEditors": "Configurer des éditeurs",
+ "configureTabs": "Configurer des onglets",
+ "copyEditorGroupToNewWindow": "Copier dans une nouvelle fenêtre",
+ "copyEditorToNewWindow": "Copier l’éditeur dans une nouvelle fenêtre",
+ "copyToNewWindow": "Copier dans une nouvelle fenêtre",
+ "editorActionsPosition": "Position des actions de l’éditeur",
"editorQuickAccessPlaceholder": "Tapez le nom d'un éditeur pour l'ouvrir.",
- "file": "Fichier",
- "ignoreTrimWhitespace.label": "Ignorer les différences d'espace blanc de début/fin",
+ "hidden": "Masqué",
+ "hideTabs": "Masqué",
+ "ignoreTrimWhitespace.label": "Afficher les différences d'espace blanc de début/fin",
"inlineView": "Vue inline",
"joinInGroup": "Rejoindre dans le groupe",
"keepEditor": "Conserver l'éditeur",
"keepOpen": "Garder ouvert",
+ "lockEditorGroup": "Verrouiller le groupe",
"lockGroup": "Verrouiller le Groupe",
- "miClearRecentOpen": "&&Effacer les éléments récemment ouverts",
+ "lockGroupAction": "Verrouiller le groupe",
+ "maximizeGroup": "Agrandir le groupe",
+ "miClearRecentOpen": "&&Effacer récemment ouvert...",
+ "miCopyEditorToNewWindow": "&&Copier l’éditeur dans une nouvelle fenêtre",
"miEditorLayout": "Disposition de &&l'éditeur",
"miFirstSideEditor": "&&Premier côté dans l’éditeur",
"miFocusAboveGroup": "Regrouper d&&essus",
@@ -3200,6 +4075,7 @@
"miJoinEditorInGroup": "Rejoindre &&Groupe",
"miJoinEditorInGroupWithoutMnemonic": "Rejoindre dans le groupe",
"miLastEditLocation": "&&Emplacement de la dernière modification",
+ "miMoveEditorToNewWindow": "&&Déplacer l’éditeur dans une nouvelle fenêtre",
"miNextEditor": "Éditeur &&suivant",
"miNextEditorInGroup": "Éditeur suiva&&nt dans le groupe",
"miNextGroup": "Groupe &&suivant",
@@ -3241,16 +4117,27 @@
"miTwoRowsEditorLayoutWithoutMnemonic": "Deux lignes",
"miTwoRowsRightEditorLayout": "Deux lignes à dr&&oite",
"miTwoRowsRightEditorLayoutWithoutMnemonic": "Deux lignes à droite",
+ "moveAbove": "Déplacer au-dessus",
+ "moveBelow": "Déplacer en dessous",
+ "moveEditorGroupToNewWindow": "Déplacer dans une nouvelle fenêtre",
+ "moveEditorToNewWindow": "Déplacer l’éditeur dans une nouvelle fenêtre",
+ "moveLeft": "Déplacer vers la gauche",
+ "moveRight": "Déplacer vers la droite",
+ "moveToNewWindow": "Déplacer dans une nouvelle fenêtre",
+ "multipleTabs": "Plusieurs onglets",
"navigate.next.label": "Modification suivante",
"navigate.prev.label": "Modification précédente",
+ "newWindow": "Nouvelle fenêtre",
"nextChangeIcon": "Icône de l'action du changement suivant dans l'éditeur de différences.",
"pin": "Épingler",
"pinEditor": "Épingler l'éditeur",
"previousChangeIcon": "Icône de l'action du changement précédent dans l'éditeur de différences.",
"reopenWith": "Rouvrir l'éditeur avec...",
+ "share": "Partager",
"showOpenedEditors": "Afficher les éditeurs ouverts",
- "showTrimWhitespace.label": "Afficher les différences d'espace blanc de début/fin",
"sideBySideEditor": "Éditeur côte à côte",
+ "singleTab": "Onglet unique",
+ "splitAndMoveEditor": "Fractionner et déplacer",
"splitDown": "Fractionner en bas",
"splitEditorDown": "Fractionner l'éditeur en bas",
"splitEditorRight": "Fractionner l'éditeur à droite",
@@ -3258,21 +4145,26 @@
"splitLeft": "Fractionner à gauche",
"splitRight": "Fractionner à droite",
"splitUp": "Fractionner en haut",
+ "swapDiffSides": "Basculer à gauche et à droite",
+ "tabBar": "Barre d’onglets",
"textDiffEditor": "Éditeur de différences de texte",
"textEditor": "Éditeur de texte",
+ "titleBar": "Barre de titre",
"toggleLockGroup": "Verrouiller le Groupe",
"togglePreviewMode": "Activer les éditeurs d’aperçu",
"toggleSplitEditorInGroupLayout": "Activer/désactiver la disposition",
"toggleWhitespace": "Icône de l'action d'activation/de désactivation des espaces blancs dans l'éditeur de différences.",
"unlockEditorGroup": "Déverrouiller le Groupe",
"unlockGroupAction": "Déverrouiller le Groupe",
+ "unmaximizeGroup": "Ne pas maximiser le groupe",
"unpin": "Détacher",
"unpinEditor": "Détacher l'éditeur"
},
"vs/workbench/browser/parts/editor/editorActions": {
"clearButtonLabel": "&&Effacer",
"clearEditorHistory": "Effacer l'historique de l'éditeur",
- "clearRecentFiles": "Effacer les fichiers récemment ouverts",
+ "clearEditorHistoryWithoutConfirm": "Effacer l’historique de l’Éditeur sans confirmation",
+ "clearRecentFiles": "Effacer Ouvert récemment...",
"closeAllEditors": "Fermer tous les éditeurs",
"closeAllGroups": "Fermer tous les groupes d'éditeurs",
"closeEditor": "Fermer l'éditeur",
@@ -3283,6 +4175,8 @@
"confirmClearDetail": "Cette action est irréversible !",
"confirmClearEditorHistoryMessage": "Voulez-vous effacer l’historique des éditeurs récemment ouverts ?",
"confirmClearRecentsMessage": "Voulez-vous effacer tous les fichiers et espaces de travail récemment ouverts ?",
+ "copyEditorGroupToNewWindow": "Copiez le groupe d’éditeurs dans une nouvelle fenêtre",
+ "copyEditorToNewWindow": "Copiez l’éditeur dans une nouvelle fenêtre",
"duplicateActiveGroupDown": "Dupliquer le groupe d'éditeurs vers le bas",
"duplicateActiveGroupLeft": "Dupliquer le groupe d'éditeurs vers la gauche",
"duplicateActiveGroupRight": "Dupliquer le groupe d'éditeurs vers la droite",
@@ -3309,14 +4203,22 @@
"joinAllGroups": "Joindre tous les groupes d'éditeurs",
"joinTwoGroups": "Joindre le groupe d'éditeurs au groupe suivant",
"lastEditorInGroup": "Ouvrir le dernier éditeur du groupe",
- "maximizeEditor": "Agrandir le groupe d’éditeurs et masquer les barres latérales",
+ "maximizeEditorHideSidebar": "Agrandir le groupe d’éditeurs et masquer les barres latérales",
"miBack": "&&Précédent",
+ "miCopyEditorGroupToNewWindow": "&&Copiez le groupe d’éditeurs dans une nouvelle fenêtre",
+ "miCopyEditorToNewWindow": "&&Copiez l’éditeur dans une nouvelle fenêtre",
"miForward": "&&Suivant",
- "minimizeOtherEditorGroups": "Agrandir le groupe d'éditeurs",
+ "miMoveEditorGroupToNewWindow": "&&Déplacez le groupe d’éditeurs dans une nouvelle fenêtre",
+ "miMoveEditorToNewWindow": "&&Déplacez l’éditeur dans une nouvelle fenêtre",
+ "miNewEmptyEditorWindow": "&&Nouvelle fenêtre d’éditeur vide",
+ "miRestoreEditorsToMainWindow": "&&Restaurer les éditeurs dans la fenêtre principale",
+ "minimizeOtherEditorGroups": "Développer le groupe d'éditeurs",
+ "minimizeOtherEditorGroupsHideSidebar": "Développer le groupe d’éditeurs et masquer les barres latérales",
"moveActiveGroupDown": "Déplacer le groupe d'éditeurs vers le bas",
"moveActiveGroupLeft": "Déplacer le groupe d'éditeurs vers la gauche",
"moveActiveGroupRight": "Déplacer le groupe d'éditeurs vers la droite",
"moveActiveGroupUp": "Déplacer le groupe d'éditeurs vers le haut",
+ "moveEditorGroupToNewWindow": "Déplacez le groupe d’éditeurs dans une nouvelle fenêtre",
"moveEditorLeft": "Déplacer l'éditeur vers la gauche",
"moveEditorRight": "Déplacer l'éditeur vers la droite",
"moveEditorToAboveGroup": "Déplacer l’éditeur en groupe au-dessus",
@@ -3324,6 +4226,7 @@
"moveEditorToFirstGroup": "Déplacer l'éditeur vers le premier groupe",
"moveEditorToLastGroup": "Déplacer l'éditeur dans le dernier groupe",
"moveEditorToLeftGroup": "Déplacer l'éditeur dans le groupe de gauche",
+ "moveEditorToNewWindow": "Déplacez l’éditeur dans une nouvelle fenêtre",
"moveEditorToNextGroup": "Déplacer l'éditeur vers le groupe suivant",
"moveEditorToPreviousGroup": "Déplacer l'éditeur vers le groupe précédent",
"moveEditorToRightGroup": "Déplacer l'éditeur dans le groupe de droite",
@@ -3340,10 +4243,11 @@
"navigatePreviousInNavigationLocations": "Précédent dans les emplacements de navigation",
"navigateToLastEditLocation": "Aller à l'emplacement de la dernière édition",
"navigateToLastNavigationLocation": "Accéder au dernier emplacement de navigation",
- "newEditorAbove": "Nouveau groupe d'éditeurs au-dessus",
- "newEditorBelow": "Nouveau groupe d'éditeurs en dessous",
- "newEditorLeft": "Nouveau groupe d'éditeurs à gauche",
- "newEditorRight": "Nouveau groupe d'éditeurs à droite",
+ "newEmptyEditorWindow": "Nouvelle fenêtre d’éditeur vide",
+ "newGroupAbove": "Nouveau groupe d'éditeurs au-dessus",
+ "newGroupBelow": "Nouveau groupe d'éditeurs en dessous",
+ "newGroupLeft": "Nouveau groupe d'éditeurs à gauche",
+ "newGroupRight": "Nouveau groupe d'éditeurs à droite",
"nextEditorInGroup": "Ouvrir l'éditeur suivant du groupe",
"openNextEditor": "Ouvrir l'éditeur suivant",
"openNextRecentlyUsedEditor": "Ouvrir l'éditeur suivant",
@@ -3357,7 +4261,10 @@
"quickOpenPreviousRecentlyUsedEditor": "Ouverture rapide du dernier éditeur utilisé précédent",
"quickOpenPreviousRecentlyUsedEditorInGroup": "Ouverture rapide du dernier éditeur utilisé précédent dans le groupe",
"reopenClosedEditor": "Rouvrir l'éditeur fermé",
+ "reopenTextEditor": "Rouvrir l’éditeur avec l’éditeur de texte",
+ "restoreEditorsToMainWindow": "Restaurer les éditeurs dans la fenêtre principale",
"revertAndCloseActiveEditor": "Restaurer et fermer l'éditeur",
+ "reverting": "Rétablissement des éditeurs...",
"showAllEditors": "Afficher tous les éditeurs par apparence",
"showAllEditorsByMostRecentlyUsed": "Afficher tous les éditeurs en commençant par le dernier utilisé",
"showEditorsInActiveGroup": "Afficher les éditeurs du groupe actif en commençant par le dernier utilisé",
@@ -3375,19 +4282,21 @@
"splitEditorToNextGroup": "Fractionner l’éditeur en groupe suivant",
"splitEditorToPreviousGroup": "Fractionner l’éditeur en groupe précédent",
"splitEditorToRightGroup": "Fractionner l’éditeur en groupe de droite",
+ "toggleEditorType": "Activer/désactiver le type d'éditeur",
"toggleEditorWidths": "Taille des groupes du Toggle Editor",
- "unpinEditor": "Détacher l'éditeur",
- "workbench.action.reopenTextEditor": "Rouvrir l’éditeur avec l’éditeur de texte",
- "workbench.action.toggleEditorType": "Activer/désactiver le type d'éditeur"
+ "toggleMaximizeEditorGroup": "Toggle Agrandir le groupe d'éditeurs",
+ "unmaximizeGroup": "Ne pas maximiser le groupe",
+ "unpinEditor": "Détacher l'éditeur"
},
"vs/workbench/browser/parts/editor/editorCommands": {
- "compare": "Comparer",
"editorCommand.activeEditorCopy.arg.description": "Propriétés de l'argument :\r\n\t* 'to' : valeur de chaîne indiquant la direction de la copie.\r\n\t* 'value' : valeur numérique indiquant le nombre de positions ou la position absolue de la copie.",
"editorCommand.activeEditorCopy.arg.name": "Argument de copie de l’éditeur actif",
"editorCommand.activeEditorCopy.description": "Copier l’éditeur actif par groupes",
"editorCommand.activeEditorMove.arg.description": "Propriétés d'argument :\r\n\t* 'to' : Valeur de chaîne indiquant la destination du déplacement.\r\n\t* 'by' : Valeur de chaîne indiquant l'unité de déplacement (par onglet ou par groupe).\r\n\t* 'value' : Valeur numérique indiquant le nombre de positions ou une position absolue pour le déplacement.",
"editorCommand.activeEditorMove.arg.name": "Argument de déplacement de l'éditeur actif",
"editorCommand.activeEditorMove.description": "Déplacer l'éditeur actif par onglets ou par groupes",
+ "editorGroupLayout.horizontal": "Horizontal",
+ "editorGroupLayout.vertical": "Vertical",
"focusLeftSideEditor": "Focus sur le premier côté dans l’éditeur actif",
"focusOtherSideEditor": "Focus sur l’autre côté dans l’éditeur actif",
"focusRightSideEditor": "Focus sur le deuxième côté dans l’éditeur actif",
@@ -3395,14 +4304,17 @@
"lockEditorGroup": "Verrouiller le groupe d'éditeurs",
"splitEditorInGroup": "Fractionner l’éditeur dans le groupe",
"toggleEditorGroupLock": "Taillez des groupes du Toggle Editor",
- "toggleInlineView": "Activer/désactiver le mode inline",
"toggleJoinEditorInGroup": "Activer/désactiver l’éditeur fractionné dans le groupe",
"toggleSplitEditorInGroupLayout": "Basculer la disposition de l'éditeur divisé dans le groupe",
"unlockEditorGroup": "Déverrouiller le Groupe de Rédacteurs"
},
"vs/workbench/browser/parts/editor/editorConfiguration": {
- "editor.editorAssociations": "Configurez des modèles glob pour les éditeurs (par exemple, `\"*.hex\": \"hexEditor.hexEdit\"`). Ces modèles ont priorité sur le comportement par défaut.",
+ "editor.editorAssociations": "Configurez [modèles globaux](https://aka.ms/vscode-glob-patterns) to editors (par exemple,`\"*.hex\": \"hexEditor.hexedit\"`). Ceux-ci ont priorité sur le comportement par défaut.",
+ "editorLargeFileSizeConfirmation": "Contrôle la taille minimale d’un fichier en Mo avant de demander une confirmation lors de l’ouverture dans l’éditeur. Notez que ce paramètre ne peut pas s’appliquer à tous les types d’éditeurs et environnements.",
+ "interactiveWindow": "Fenêtre interactive",
+ "livePreview": "Aperçu en direct",
"markdownPreview": "Aperçu Markdown",
+ "simpleBrowser": "Navigateur simple",
"workbench.editor.autoLockGroups": "Si un éditeur correspondant à l’un des types répertoriés est ouvert en tant que premier dans un groupe d’éditeurs et que plusieurs groupes sont ouverts, le groupe est automatiquement verrouillé. Les groupes verrouillés sont utilisés uniquement pour ouvrir les éditeurs lorsqu’ils sont explicitement choisis par le mouvement de l’utilisateur (par exemple, glisser-déplacer), mais pas par défaut. Par conséquent, l’éditeur actif dans un groupe verrouillé est moins susceptible d’être remplacé accidentellement par un autre éditeur.",
"workbench.editor.defaultBinaryEditor": "L'éditeur par défaut pour les fichiers détectés comme binaires. Si non défini, l'utilisateur sera présenté avec un sélecteur."
},
@@ -3413,12 +4325,32 @@
"ariaLabelGroupActions": "Actions de groupe d'éditeurs vides",
"emptyEditorGroup": "{0} (vide)",
"groupAriaLabel": "Groupe d'éditeurs {0}",
- "groupLabel": "Groupe {0}"
+ "groupAriaLabelLong": "{0} : Groupe d'éditeurs {1}",
+ "groupLabel": "Groupe {0}",
+ "groupLabelLong": "{0} : Groupe {1}",
+ "moveErrorDetails": "Essayez d’abord d’enregistrer ou de rétablir l’éditeur, puis réessayez."
+ },
+ "vs/workbench/browser/parts/editor/editorGroupWatermark": {
+ "editorLineHighlight": "Couleur de premier plan des étiquettes dans le filigrane de l’éditeur.",
+ "watermark.findInFiles": "Chercher dans les fichiers",
+ "watermark.newUntitledFile": "Nouveau fichier texte sans titre",
+ "watermark.openChat": "Ouvrir la conversation",
+ "watermark.openFile": "Ouvrir un fichier",
+ "watermark.openFileFolder": "Ouvrir un fichier ou un dossier",
+ "watermark.openFolder": "Ouvrir le dossier",
+ "watermark.openRecent": "Ouvrir les éléments récents",
+ "watermark.openSettings": "Ouvrir les paramètres",
+ "watermark.quickAccess": "Accéder au fichier",
+ "watermark.showCommands": "Afficher toutes les commandes",
+ "watermark.startDebugging": "Démarrer le débogage",
+ "watermark.toggleTerminal": "Activer/désactiver le terminal"
},
"vs/workbench/browser/parts/editor/editorPanes": {
- "cancel": "Annuler",
"editorOpenErrorDialog": "Impossible d'ouvrir '{0}'",
- "ok": "OK"
+ "ok": "&&OK"
+ },
+ "vs/workbench/browser/parts/editor/editorParts": {
+ "groupLabel": "Fenêtre {0}"
},
"vs/workbench/browser/parts/editor/editorPlaceholder": {
"errorEditor": "Éditeur d’erreurs",
@@ -3426,9 +4358,10 @@
"requiresFolderTrustText": "Le fichier n’est pas affiché dans l’éditeur car le dossier n’a pas été approuvé.",
"requiresWorkspaceTrustText": "Le fichier n’est pas affiché dans l’éditeur car l’espace de travail n’a pas été approuvé.",
"retry": "Réessayer",
+ "showLogs": "Afficher les journaux",
"trustRequiredEditor": "Approbation d’espace de travail requise",
"unavailableResourceErrorEditorText": "Impossible d’ouvrir l’éditeur, car le fichier est introuvable.",
- "unknownErrorEditorTextWithError": "Impossible d’ouvrir l’éditeur en raison d’une erreur inattendue : {0}",
+ "unknownErrorEditorTextWithError": "Impossible d’ouvrir l’éditeur en raison d’une erreur inattendue. Pour plus d’informations, consultez le journal.",
"unknownErrorEditorTextWithoutError": "Impossible d’ouvrir l’éditeur en raison d’une erreur inattendue."
},
"vs/workbench/browser/parts/editor/editorQuickAccess": {
@@ -3442,6 +4375,8 @@
"autoDetect": "Détection automatique",
"changeEncoding": "Changer l'encodage des fichiers",
"changeEndOfLine": "Changer la séquence de fin de ligne",
+ "changeLanguageMode.arg.name": "Nom du mode de langue vers lequel effectuer la modification.",
+ "changeLanguageMode.description": "Modifiez le mode de langue de l’éditeur de texte actif.",
"changeMode": "Changer le mode de langage",
"columnSelectionModeEnabled": "Sélection de la colonne",
"configureAssociationsExt": "Configurer l'association de fichier pour '{0}'...",
@@ -3457,6 +4392,7 @@
"guessedEncoding": "Deviné à partir du contenu",
"indentConvert": "convertir le fichier",
"indentView": "modifier la vue",
+ "inputModeOvertype": "RFP",
"languageDescription": "({0}) - Langage configuré",
"languageDescriptionConfigured": "({0})",
"languagesPicks": "langages (identificateur)",
@@ -3471,12 +4407,11 @@
"pickEndOfLine": "Sélectionner la séquence de fin de ligne",
"pickLanguage": "Sélectionner le mode de langage",
"pickLanguageToConfigure": "Sélectionnez le mode de langage à associer à '{0}'",
+ "reopen": "Ignorer les modifications et rouvrir",
"reopenWithEncoding": "Rouvrir avec l'encodage",
+ "reopenWithEncodingDetail": "Cela entraînera l’abandon des modifications non enregistrées.",
+ "reopenWithEncodingWarning": "Souhaitez-vous rétablir l’éditeur de texte actif et le rouvrir avec un autre encodage ?",
"saveWithEncoding": "Enregistrer avec l'encodage",
- "screenReaderDetected": "Optimisé pour un lecteur d’écran ",
- "screenReaderDetectedExplanation.answerNo": "Non",
- "screenReaderDetectedExplanation.answerYes": "Oui",
- "screenReaderDetectedExplanation.question": "Utilisez-vous un lecteur d'écran pour faire fonctionner VS Code ? (le retour automatique à la ligne est désactivé en cas d'utilisation d'un lecteur d'écran)",
"selectEOL": "Sélectionner la séquence de fin de ligne",
"selectEncoding": "Sélectionner l'encodage",
"selectIndentation": "Sélectionner le retrait",
@@ -3484,37 +4419,57 @@
"showLanguageExtensions": "Rechercher '{0}' dans les extensions Marketplace...",
"singleSelection": "L {0}, col {1}",
"singleSelectionRange": "Li {0}, Col {1} ({2} sélectionné)",
+ "spacesAndTabsSize": "Espaces : {0} (Taille de tabulation : {1})",
"spacesSize": "Espaces : {0}",
"status.editor.columnSelectionMode": "Mode de sélection de colonne",
+ "status.editor.enableInsertMode": "Activer le mode d'insertion",
"status.editor.encoding": "Encodage de l'éditeur",
"status.editor.eol": "Fin de ligne de l'éditeur",
"status.editor.indentation": "Mise en retrait de l'éditeur",
"status.editor.info": "Informations sur le fichier",
"status.editor.mode": "Langage de l'éditeur",
- "status.editor.screenReaderMode": "Mode du lecteur d'écran",
"status.editor.selection": "Sélection de l'éditeur",
"status.editor.tabFocusMode": "Mode d'accessibilité",
"tabFocusModeEnabled": "La touche Tab déplace le focus",
"tabSize": "Taille des tabulations : {0}"
},
- "vs/workbench/browser/parts/editor/sideBySideEditor": {
- "sideBySideEditor": "Éditeur côte à côte"
+ "vs/workbench/browser/parts/editor/editorTabsControl": {
+ "ariaLabelEditorActions": "Actions de l'éditeur",
+ "draggedEditorGroup": "{0} (+{1})"
},
- "vs/workbench/browser/parts/editor/tabsTitleControl": {
+ "vs/workbench/browser/parts/editor/multiEditorTabsControl": {
"ariaLabelTabActions": "Actions d'onglet"
},
+ "vs/workbench/browser/parts/editor/sideBySideEditor": {
+ "sideBySideEditor": "Éditeur côte à côte"
+ },
"vs/workbench/browser/parts/editor/textCodeEditor": {
"textEditor": "Éditeur de texte"
},
"vs/workbench/browser/parts/editor/textDiffEditor": {
+ "fileTooLargeForHeapErrorWithSize": "Au moins un fichier n’est pas affiché dans l’éditeur de comparaison de texte, parce qu’il est très volumineux ({0}).",
+ "fileTooLargeForHeapErrorWithoutSize": "Au moins un fichier n’est pas affiché dans l’éditeur de comparaison de texte, parce qu’il est très volumineux.",
"textDiffEditor": "Éditeur de différences de texte"
},
"vs/workbench/browser/parts/editor/textEditor": {
"editor": "Éditeur"
},
- "vs/workbench/browser/parts/editor/titleControl": {
- "ariaLabelEditorActions": "Actions de l'éditeur",
- "draggedEditorGroup": "{0} (+{1})"
+ "vs/workbench/browser/parts/globalCompositeBar": {
+ "accounts": "Comptes",
+ "accountsViewBarIcon": "Icône des comptes dans la barre d'affichage.",
+ "authProviderUnavailable": "{0} est non disponible",
+ "hideAccounts": "Masquer les comptes",
+ "loading": "Chargement en cours...",
+ "manage": "Gestion",
+ "manage profile": "Gérer {0} (Profil)",
+ "manageDynamicAuthProviders": "Gérer les fournisseurs d'authentification dynamique...",
+ "manageTrustedExtensions": "Gérer les extensions approuvées",
+ "manageTrustedMCPServers": "Gérer les serveurs MCP approuvés",
+ "signOut": "Se déconnecter"
+ },
+ "vs/workbench/browser/parts/notifications/notificationAccessibleView": {
+ "clearNotification": "Effacer la notification",
+ "notification.accessibleViewSrc": "{0} Source: {1}"
},
"vs/workbench/browser/parts/notifications/notificationsActions": {
"clearAllIcon": "Icône de l'action permettant de tout effacer dans les notifications.",
@@ -3523,15 +4478,17 @@
"clearNotifications": "Effacer toutes les notifications",
"collapseIcon": "Icône de l'action de réduction dans les notifications.",
"collapseNotification": "Réduire la notification",
+ "configureDoNotDisturbMode": "Configurer le mode Ne pas déranger...",
"configureIcon": "Icône de l'action de configuration dans les notifications.",
- "configureNotification": "Configurer la notification",
+ "configureNotification": "Plus d’actions...",
"copyNotification": "Copier le texte",
"doNotDisturbIcon": "Icône pour désactiver toutes les actions dans les notifications.",
"expandIcon": "Icône de l'action de développement dans les notifications.",
"expandNotification": "Développer la notification",
"hideIcon": "Icône de l'action de masquage dans les notifications.",
"hideNotificationsCenter": "Masquer les notifications",
- "toggleDoNotDisturbMode": "Activer/désactiver le mode Ne pas déranger"
+ "toggleDoNotDisturbMode": "Activer/désactiver le mode Ne pas déranger",
+ "toggleDoNotDisturbModeBySource": "Activer/désactiver le mode Ne pas déranger par source..."
},
"vs/workbench/browser/parts/notifications/notificationsAlerts": {
"alertErrorMessage": "Erreur : {0}",
@@ -3539,22 +4496,32 @@
"alertWarningMessage": "Avertissement : {0}"
},
"vs/workbench/browser/parts/notifications/notificationsCenter": {
+ "moreSources": "Plus...",
"notifications": "Notifications",
"notificationsCenterWidgetAriaLabel": "Centre de notifications",
"notificationsEmpty": "Aucune nouvelle notification",
- "notificationsToolbar": "Actions du centre de notifications"
+ "notificationsToolbar": "Actions du centre de notifications",
+ "turnOffNotifications": "Désactiver le mode Ne pas déranger",
+ "turnOnNotifications": "Activer le mode Ne pas déranger"
},
"vs/workbench/browser/parts/notifications/notificationsCommands": {
+ "acceptNotificationPrimaryAction": "Accepter l’action principale de notification",
"clearAllNotifications": "Effacer toutes les notifications",
"focusNotificationToasts": "Toast de notification de focus",
"hideNotifications": "Masquer les notifications",
"notifications": "Notifications",
+ "selectSources": "Sélectionner les sources à partir desquelles activer toutes les notifications",
"showNotifications": "Afficher les notifications",
- "toggleDoNotDisturbMode": "Activer/désactiver le mode Ne pas déranger"
+ "toggleDoNotDisturbMode": "Activer/désactiver le mode Ne pas déranger",
+ "toggleDoNotDisturbModeBySource": "Activer/désactiver le mode Ne pas déranger par source..."
},
"vs/workbench/browser/parts/notifications/notificationsList": {
+ "notificationAccessibleViewHint": "Inspecter la réponse dans l’affichage accessible avec {0}",
+ "notificationAccessibleViewHintNoKb": "Inspecter la réponse dans l’affichage accessible à l’aide de la commande Ouvrir l’affichage accessible qui n’est pas déclenchable via la combinaison de touches pour le moment",
"notificationAriaLabel": "{0}, notification",
+ "notificationAriaLabelHint": "{0}, notification, {1}",
"notificationWithSourceAriaLabel": "{0}, source : {1}, notification",
+ "notificationWithSourceAriaLabelHint": "{0}, source : {1}, notification {2}",
"notificationsList": "Liste des notifications"
},
"vs/workbench/browser/parts/notifications/notificationsStatus": {
@@ -3578,7 +4545,21 @@
"vs/workbench/browser/parts/notifications/notificationsViewer": {
"executeCommand": "Cliquer pour exécuter la commande '{0}'",
"notificationActions": "Actions de notification",
- "notificationSource": "Source : {0}"
+ "notificationSource": "Source : {0}",
+ "turnOffNotifications": "Désactiver les notifications d’informations et d’avertissement de «{0}»",
+ "turnOnNotifications": "Activer toutes les notifications de «{0}»"
+ },
+ "vs/workbench/browser/parts/paneCompositeBar": {
+ "auxiliarybar": "Afficher la barre latérale secondaire",
+ "moveToMenu": "Déplacer vers",
+ "panel": "Panneau",
+ "resetLocation": "Réinitialiser l'emplacement",
+ "sidebar": "Barre latérale primaire"
+ },
+ "vs/workbench/browser/parts/paneCompositePart": {
+ "moreActions": "Plus d'actions...",
+ "pane.emptyMessage": "Faites glisser une vue ici pour l'afficher.",
+ "views": "Vues"
},
"vs/workbench/browser/parts/panel/panelActions": {
"alignPanel": "Aligner le panneau",
@@ -3591,18 +4572,16 @@
"alignPanelRight": "Définir l’alignement du panneau à droite",
"alignPanelRightShort": "Droite",
"closeIcon": "Icône de fermeture d'un panneau.",
- "closePanel": "Fermer le panneau",
- "closeSecondarySideBar": "Fermer la barre latérale secondaire",
+ "closePanel": "Masquer le panneau",
"focusPanel": "Focus dans le panneau",
- "hidePanel": "Masquer le panneau",
"maximizeIcon": "Icône d'agrandissement d'un panneau.",
"maximizePanel": "Agrandir la taille du panneau",
- "miPanel": "&&Panel",
- "miPanelNoMnemonic": "Panel",
+ "miTogglePanelMnemonic": "&&Panneau",
"minimizePanel": "Restaurer la taille du panneau",
"movePanelToSecondarySideBar": "Déplacer les vues du panneau vers la barre latérale secondaire",
"moveSidePanelToPanel": "Déplacer les vues de la barre latérale secondaire vers le panneau",
"nextPanelView": "Vue de panneau suivante",
+ "openAndClosePanel": "Ouvrir/Afficher et Fermer/Masquer le panneau",
"panelMaxNotSupported": "L’optimisation du panneau n’est prise en charge que lorsqu’il est aligné au centre.",
"positionPanel": "Position du panneau",
"positionPanelBottom": "Déplacer le panneau vers le bas",
@@ -3611,8 +4590,9 @@
"positionPanelLeftShort": "Gauche",
"positionPanelRight": "Déplacer le panneau vers la droite",
"positionPanelRightShort": "Droite",
+ "positionPanelTop": "Déplacer le panneau vers le haut",
+ "positionPanelTopShort": "Haut",
"previousPanelView": "Vue de panneau précédente",
- "restoreIcon": "Icône de restauration d'un panneau.",
"toggleMaximizedPanel": "Activer/désactiver le panneau agrandi",
"togglePanel": "Activer/désactiver le panneau",
"togglePanelOffIcon": "Icône permettant de désactiver le panneau lorsqu’il est activé.",
@@ -3620,37 +4600,34 @@
"togglePanelVisibility": "Activer/désactiver la visibilité du panneau"
},
"vs/workbench/browser/parts/panel/panelPart": {
+ "align panel": "Aligner le volet",
"hidePanel": "Masquer le panneau",
- "moreActions": "Plus d'actions...",
- "panel.emptyMessage": "Faites glisser une vue ici pour l'afficher.",
- "pinned view containers": "Personnalisations de la visibilité des entrées du panneau",
- "resetLocation": "Réinitialiser l'emplacement"
+ "panel position": "Position du volet",
+ "showIcons": "Afficher les icônes",
+ "showLabels": "Afficher les étiquettes"
},
"vs/workbench/browser/parts/sidebar/sidebarActions": {
+ "closeSidebar": "Fermer la barre latérale primaire",
"focusSideBar": "Focus sur la barre latérale principale"
},
+ "vs/workbench/browser/parts/sidebar/sidebarPart": {
+ "toggleActivityBar": "Activer/désactiver la visibilité de la barre d'activités"
+ },
"vs/workbench/browser/parts/statusbar/statusbarActions": {
"focusStatusBar": "Mettre le focus sur la barre d’état",
- "hide": "Masquer '{0}'"
- },
- "vs/workbench/browser/parts/statusbar/statusbarModel": {
- "statusbar.hidden": "Personnalisations de la visibilité des entrées de barre d’état"
+ "hide": "Masquer '{0}'",
+ "manageExtension": "Gérer l'extension"
},
"vs/workbench/browser/parts/statusbar/statusbarPart": {
"hideStatusBar": "Masquer la barre d'état"
},
"vs/workbench/browser/parts/titlebar/commandCenterControl": {
- "all": "Afficher les modes de recherche...",
- "commandCenter-activeBackground": "Couleur active d’arrière-plan du centre de commandes",
- "commandCenter-activeForeground": "Couleur active de premier plan du centre de commandes",
- "commandCenter-background": "Couleur d’arrière-plan du centre de commandes",
- "commandCenter-border": "Couleur de bordure du centre de commandes",
- "commandCenter-foreground": "Couleur de premier plan du centre de commandes",
"label.dfl": "Recherche",
"label1": "{0} {1}",
"label2": "{0} {1}",
"title": "Rechercher {0} ({1}) — {2}",
- "title2": "Rechercher {0} — {1}"
+ "title2": "Rechercher {0} — {1}",
+ "title3": "Centre de commandes"
},
"vs/workbench/browser/parts/titlebar/menubarControl": {
"DownloadingUpdate": "Téléchargement de la mise à jour...",
@@ -3669,29 +4646,53 @@
"mSelection": "&&Sélection",
"mTerminal": "&&Terminal",
"mView": "Affic&&hage",
- "menubar.customTitlebarAccessibilityNotification": "La prise en charge de l'accessibilité est activée pour vous. Pour une meilleure expérience d'accessibilité, nous vous recommandons le style de barre de titre personnalisé.",
+ "menubar.customTitlebarAccessibilityNotification": "La prise en charge de l'accessibilité est activée pour vous. Pour une meilleure expérience d'accessibilité, nous vous recommandons le style de menu personnalisé.",
"restartToUpdate": "Redémarrer pour &&mettre à jour"
},
+ "vs/workbench/browser/parts/titlebar/titlebarActions": {
+ "accounts": "Comptes",
+ "hideCustomTitleBar": "Masquer la barre de titre personnalisée",
+ "hideCustomTitleBarInFullScreen": "Masquer la barre de titre personnalisée en plein écran",
+ "manage": "Gérer",
+ "showCustomTitleBar": "Afficher la barre de titre personnalisée",
+ "toggle.commandCenter": "Centre de commandes",
+ "toggle.commandCenterDescription": "Activer/désactiver la visibilité du Centre de commandes dans la barre de titre",
+ "toggle.customTitleBar": "Barre de titre personnalisée",
+ "toggle.editorActions": "Actions de l’éditeur",
+ "toggle.hideCustomTitleBar": "Masquer la barre de titre personnalisée",
+ "toggle.hideCustomTitleBarInFullScreen": "Masquer la barre de titre personnalisée en plein écran",
+ "toggle.layout": "Contrôles de disposition",
+ "toggle.layoutDescription": "Activer/désactiver la visibilité des contrôles de disposition dans la barre de titre",
+ "toggle.navigation": "Commandes de navigation",
+ "toggle.navigationDescription": "Activer/désactiver la visibilité des contrôles de navigation dans la barre de titre"
+ },
"vs/workbench/browser/parts/titlebar/titlebarPart": {
- "focusTitleBar": "Barre de titre du focus",
- "toggle.commandCenter": "Command Center",
- "toggle.layout": "Layout Controls"
+ "ariaLabelTitleActions": "Actions de titre",
+ "focusTitleBar": "Barre de titre du focus"
},
"vs/workbench/browser/parts/titlebar/windowTitle": {
"devExtensionWindowTitlePrefix": "[Hôte de développement d'extension]",
"userIsAdmin": "[Administrator]",
"userIsSudo": "[Superuser]"
},
+ "vs/workbench/browser/parts/views/checkbox": {
+ "checked": "Activé",
+ "unchecked": "Désactivé"
+ },
"vs/workbench/browser/parts/views/treeView": {
"collapseAll": "Tout réduire",
"command-error": "Erreur pendant l'exécution de la commande {1} : {0}. Probablement due à l'extension qui contribue à {1}.",
"no-dataprovider": "Aucun fournisseur de données inscrit pouvant fournir des données de vue.",
"refresh": "Actualiser",
- "treeView.enableCollapseAll": "Indique si l'arborescence ayant l'ID {0} permet de tout réduire.",
+ "treeView.enableCollapseAll": "Indique si l’arborescence ayant l’ID {0} permet de tout réduire.",
"treeView.enableRefresh": "Indique si l'arborescence ayant l'ID {0} permet d'actualiser l'affichage.",
"treeView.toggleCollapseAll": "Indique si la réduction de toutes les entrées est activée pour l'arborescence ayant l'ID {0}."
},
+ "vs/workbench/browser/parts/views/viewFilter": {
+ "more filters": "Plus de filtres..."
+ },
"vs/workbench/browser/parts/views/viewPane": {
+ "viewAccessibilityHelp": "Utiliser Alt+F1 pour l’aide sur l’accessibilité {0}",
"viewPaneContainerCollapsedIcon": "Icône d'un conteneur de volet d'affichage réduit.",
"viewPaneContainerExpandedIcon": "Icône d'un conteneur de volet d'affichage développé.",
"viewToolbarAriaLabel": "{0} actions"
@@ -3704,55 +4705,84 @@
"views": "Vues",
"viewsMove": "Déplacer des vues"
},
- "vs/workbench/browser/parts/views/viewsService": {
- "focus view": "Placer le focus sur la vue {0}",
- "resetViewLocation": "Réinitialiser l'emplacement",
- "show view": "Afficher {0}",
- "toggle view": "Activer/Désactiver {0}"
- },
"vs/workbench/browser/quickaccess": {
"inQuickOpen": "Indique si le focus clavier se trouve dans le contrôle Quick Open"
},
- "vs/workbench/browser/workbench": {
- "loaderErrorNative": "Échec du chargement d'un fichier obligatoire. Redémarrez l'application pour réessayer. Détails : {0}"
+ "vs/workbench/browser/web.main": {
+ "reset": "Réinitialiser les données d’utilisateur",
+ "reset user data message": "Voulez-vous réinitialiser vos données (paramètres, combinaisons de touches, extensions, extraits de code et état de l’interface utilisateur) et recharger?"
+ },
+ "vs/workbench/browser/window": {
+ "closeWindowButtonLabel": "&&Fermer la fenêtre",
+ "closeWindowMessage": "Voulez-vous vraiment fermer la fenêtre ?",
+ "doNotAskAgain": "Ne plus me poser la question",
+ "exitButtonLabel": "&&Quitter",
+ "openExternalDialogButtonInstall.v3": "&&Installer",
+ "openExternalDialogButtonRetry.v2": "&&Réessayer",
+ "openExternalDialogDetail.v2": "Nous avons lancé {0} sur votre ordinateur.\r\n\r\nSi {1} n’a pas été lancé, réessayez ou installez-le ci-dessous.",
+ "openExternalDialogDetailNoInstall": "Nous avons lancé {0} sur votre ordinateur.\r\n\r\nSi {1} n’a pas été lancé, réessayez ci-dessous.",
+ "openExternalDialogTitle": "Tout est terminé. Vous pouvez fermer cet onglet maintenant.",
+ "quitButtonLabel": "&&Quitter",
+ "quitMessage": "Voulez-vous vraiment quitter ?",
+ "quitMessageMac": "Voulez-vous vraiment quitter ?",
+ "reload": "&&Recharger",
+ "retry": "&&Réessayer",
+ "shutdownError": "Une erreur inattendue s’est produite et nécessite un rechargement de cette page.",
+ "shutdownErrorDetail": "Le banc d’essai a été supprimé de manière inattendue lors de l’exécution.",
+ "unableToOpenExternal": "Le navigateur a bloqué l'ouverture d'un nouvel onglet ou d'une nouvelle fenêtre. Appuyez sur « Réessayer » pour réessayer.",
+ "unableToOpenWindowDetail": "Veuillez autoriser les fenêtres contextuelles pour ce site web dans vos [paramètres de navigateur]({0})."
},
"vs/workbench/browser/workbench.contribution": {
"activeEditorLong": "'${activeEditorLong}' : chemin complet du fichier (par ex., /Users/Development/myFolder/myFileFolder/myFile.txt).",
"activeEditorMedium": "'${activeEditorMedium}' : chemin du fichier relatif au dossier d'espace de travail (par ex., myFolder/myFileFolder/myFile.txt).",
"activeEditorShort": "'${activeEditorShort}' : nom du fichier (par ex., myFile.txt).",
+ "activeEditorState": "« ${activeEditorState} » : fournit des informations sur l’état de l’éditeur actif (par exemple, modifié). Il sera ajouté par défaut en mode Lecteur d’écran avec {0} activé.",
"activeFolderLong": "'${activeFolderLong}' : chemin complet du dossier contenant le fichier (par ex., /Users/Development/myFolder/myFileFolder).",
"activeFolderMedium": "'${activeFolderMedium}' : chemin du dossier contenant le fichier, relatif au dossier d'espace de travail (par ex., myFolder/myFileFolder).",
"activeFolderShort": "'${activeFolderShort}' : nom du dossier contenant le fichier (par ex., myFileFolder).",
- "activityBarIconClickBehavior": "Contrôle le comportement d'un clic sur une icône de la barre d'activités dans le workbench.",
- "activityBarVisibility": "Contrôle la visibilité de la barre d'activités dans le banc d'essai.",
+ "activeRepositoryBranchName": "« ${activeRepositoryBranchName} » : nom de la branche active dans le référentiel actif (par exemple, principal).",
+ "activeRepositoryName": "« ${activeRepositoryName} » : nom du référentiel actif (par exemple, vscode).",
+ "activityBarIconClickBehavior": "Contrôle le comportement d’un clic sur une icône de la barre d’activités dans le workbench. Cette valeur est ignorée lorsque {0} n’est pas défini sur {1}.",
+ "activityBarLocation": "Contrôle l’emplacement de la barre d’activités par rapport aux barres latérales principale et secondaire.",
+ "alwaysShowEditorActions": "Contrôle s’il faut toujours afficher les actions de l’éditeur, même lorsque le groupe d’éditeurs n’est pas actif.",
"appName": "« ${appName} » : par exemple, VS Code.",
+ "askChatLocation": "Contrôle l’emplacement où la palette de commandes doit poser des questions sur la conversation.",
+ "askChatLocation.chatView": "Posez des questions sur la conversation en mode Conversation.",
+ "askChatLocation.quickChat": "Posez des questions sur la conversation dans la conversation rapide.",
+ "browser": "Configurez le navigateur à utiliser pour ouvrir des liens http ou https en externe. Il peut s’agir du nom du navigateur (`edge`, `chrome`, `firefox`) ou d’un chemin absolu vers l’exécutable du navigateur. Utilisera la valeur par défaut du système si elle n’est pas définie.",
"centeredLayoutAutoResize": "Détermine si la disposition centrée doit être redimensionnée automatiquement sur la largeur maximale quand plusieurs groupes sont ouverts. Quand il ne reste plus qu'un groupe ouvert, il est redimensionné sur la largeur centrée d'origine.",
+ "centeredLayoutDynamicWidth": "Contrôle si la disposition centrée tente de maintenir la largeur constante lorsque la fenêtre est redimensionnée.",
"closeEmptyGroups": "Contrôle le comportement des groupes d'éditeurs vides quand le dernier onglet du groupe est fermé. Quand ce paramètre est activé, les groupes vides se ferment automatiquement. Quand le paramètre est désactivé, les groupes vides restent dans la grille.",
"closeOnFileDelete": "Contrôle si les éditeurs montrant un fichier qui a été ouvert pendant la session doivent se fermer automatiquement lorsqu'ils sont supprimés ou renommés par un autre processus. Si vous désactivez cette option, l'éditeur restera ouvert lors d'un tel événement. Notez que la suppression à partir de l'application fermera toujours l'éditeur et que les éditeurs avec des changements non sauvegardés ne seront jamais fermés pour préserver vos données.",
"closeOnFocusLost": "Contrôles si le menu Quick Open doit se fermer automatiquement dès qu'il perd le focus.",
"commandHistory": "Contrôle le nombre de commandes récemment utilisées à retenir dans l’historique de la palette de commande. Spécifier la valeur 0 pour désactiver l’historique des commandes.",
- "confirmBeforeClose": "Contrôle s’il faut afficher une boîte de dialogue de confirmation avant de fermer la fenêtre ou de quitter l’application.",
+ "confirmBeforeClose": "Contrôle s'il faut afficher une boîte de dialogue de confirmation avant de fermer une fenêtre ou de quitter l'application.",
"confirmBeforeCloseWeb": "Contrôle s'il faut afficher une boîte de dialogue de confirmation avant la fermeture de l'onglet ou la fenêtre du navigateur. Notez que même si l'option est activée, les navigateurs peuvent toujours décider de fermer un onglet ou une fenêtre sans confirmation, et que ce paramètre n'est qu’un indicateur qui peut ne pas fonctionner dans tous les cas.",
+ "customEditorLabelDescriptionExample": "Exemple : `\"**/static/**/*.html\": \"${filename} - ${dirname} (${extname})\"` affiche un fichier `WORKSPACE_FOLDER/static/folder/file.html` en tant que `file - folder (html)`.",
"customMenuBarAltFocus": "Contrôle si la barre de menus obtient le focus en appuyant sur la touche Alt. Ce paramètre n'a pas d'effet sur l'activation/la désactivation de la barre de menus avec la touche Alt.",
"decorations.badges": "Détermine si les éléments décoratifs de fichiers de l'éditeur doivent utiliser des badges.",
"decorations.colors": "Détermine si les éléments décoratifs de fichiers de l'éditeur doivent utiliser des couleurs.",
"dirty": "`${dirty}`: un indicateur pour quand l’éditeur actif a des modifications non enregistrées.",
- "editorOpenPositioning": "Permet de définir où s'ouvrent les éditeurs. Sélectionnez `left` ou `right` pour ouvrir les éditeurs à gauche ou à droite de celui actuellement actif. Sélectionnez `first` ou `last` pour ouvrir les éditeurs indépendamment de celui actuellement actif.",
- "editorTabCloseButton": "Contrôle la position des boutons de fermeture des onglets de l'éditeur, ou les désactive quand le paramètre a la valeur 'off'. Cette valeur est ignorée quand '#workbench.editor.showTabs#' est désactivé.",
+ "doubleClickTabToToggleEditorGroupSizes": "Contrôle la façon dont le groupe d’éditeurs est redimensionné lors d’un double-clic sur un onglet. Cette valeur est ignorée lorsque {0} n’est pas défini sur {1}.",
+ "dragToOpenWindow": "Contrôle si les éditeurs peuvent être déplacés hors de la fenêtre pour les ouvrir dans une nouvelle fenêtre. Appuyez de façon prolongée sur la touche « Alt » pendant le déplacement pour activer/désactiver cette option de manière dynamique.",
+ "editorActionsLocation": "Contrôle l’emplacement d’affichage des actions de l’éditeur.",
+ "editorOpenPositioning": "Permet de définir où s’ouvrent les éditeurs. Sélectionnez {0} ou {1} pour ouvrir les éditeurs à gauche ou à droite de l’éditeur actuellement actif. Sélectionnez {2} ou {3} pour ouvrir les éditeurs indépendamment de l’éditeur actuellement actif.",
+ "enableDefaultVisibilityInOldWorkspace": "Active la visibilité par défaut de la barre latérale secondaire dans les anciens espaces de travail, avant que la prise en charge de la visibilité par défaut ne soit disponible.",
"enableMenuBarMnemonics": "Contrôle si les menus principaux peuvent être ouverts avec les raccourcis de la touche Alt. La désactivation des mnémoniques permet d'associer à la place ces raccourcis de la touche Alt aux commandes de l'éditeur.",
- "enablePreview": "Détermine si les éditeurs ouverts s’affichent en tant qu’éditeurs d’aperçu. Les éditeurs d’aperçu ne restent pas ouverts, sont réutilisés jusqu’à ce qu’ils soient explicitement définis pour être conservés ouverts (par exemple, via un double clic ou une modification) et affichent les noms de fichiers en italique.",
- "enablePreviewFromCodeNavigation": "Détermine si les éditeurs restent en mode aperçu quand l'utilisateur démarre une navigation dans du code à partir de ces derniers. Les éditeurs en mode aperçu ne restent pas ouverts. Ils sont réutilisés jusqu'à ce qu'ils soient explicitement configurés pour rester ouverts (par exemple via un double clic ou une modification). Cette valeur est ignorée quand '#workbench.editor.enablePreview#' est désactivé.",
- "enablePreviewFromQuickOpen": "Détermine si les éditeurs ouverts à partir de Quick Open s’affichent en tant qu’éditeurs d’aperçu. Les éditeurs d’aperçu ne restent pas ouverts et sont réutilisés jusqu’à ce qu’ils soient explicitement définis pour rester ouverts (par exemple, par double clic ou modification). Cette valeur est ignorée lorsque '#workbench.editor.enablePreview#' est désactivé.",
- "exclude": "Configurez les [motifs globaux](https://code.visualstudio.com/docs/editor/codebasics#_advanced-search-options) pour exclure les fichiers de l'historique des fichiers locaux. La modification de ce paramètre n'a aucun effet sur les entrées existantes de l'historique des fichiers locaux.",
- "focusRecentEditorAfterClose": "Contrôle si les onglets sont fermés dans l'ordre du dernier utilisé ou de gauche à droite.",
+ "enableNaturalLanguageSearch": "Détermine si la palette de commandes doit inclure des commandes similaires. Une extension qui assure la prise en charge du langage naturel doit être installée.",
+ "enablePreview": "Permet de contrôler l’utilisation du mode Aperçu lorsque les éditeurs s’ouvrent. Il y a un éditeur de mode Aperçu maximum par groupe d’éditeurs. Cet éditeur affiche son nom de fichier en italique sur son étiquette de titre ou d’onglet et dans la vue Éditeurs ouverts. Son contenu est remplacé par le prochain éditeur ouvert en mode Aperçu. Si vous apportez une modification dans un éditeur de mode Aperçu, celui-ci est conservé, tout comme un double-clic sur son étiquette, ou l’option « Garder ouvert » dans son menu contextuel d’étiquette. L’ouverture avec un double-clic d’un fichier à partir de l’Explorateur conserve immédiatement son éditeur.",
+ "enablePreviewFromCodeNavigation": "Contrôle si les éditeurs restent en préversion lorsqu’une navigation de code est démarrée depuis ces éditeurs. Les éditeurs d’aperçu ne restent pas ouverts et sont réutilisés jusqu’à ce qu’ils soient explicitement définis pour rester ouverts (par exemple, par double-clic ou modification). Cette valeur est ignorée lorsque {0} n’est pas défini sur {1}.",
+ "enablePreviewFromQuickOpen": "Détermine si les éditeurs ouverts à partir de Quick Open s’affichent en tant qu’éditeurs d’aperçu. Les éditeurs d’aperçu ne restent pas ouverts et sont réutilisés jusqu’à ce qu’ils soient explicitement définis pour rester ouverts (par exemple, par double-clic ou modification). Lorsque cette option est activée, maintenez la touche Ctrl enfoncée avant la sélection pour ouvrir un éditeur en tant que non-aperçu. Cette valeur est ignorée lorsque {0} n’est pas défini sur {1}.",
+ "exclude": "Configurez des chemins d’accès ou des [modèles globaux](https://aka.ms/vscode-glob-patterns) pour exclure les fichiers de l’historique des fichiers locaux. Les modèles Glob sont toujours évalués par rapport au chemin d’accès du dossier d’espace de travail, sauf s’ils sont des chemins d’accès absolus. La modification de ce paramètre n’a aucun effet sur les entrées d’historique des fichiers locaux existantes.",
+ "focusRecentEditorAfterClose": "Contrôle si les éditeurs sont fermés dans l’ordre du dernier utilisé ou de gauche à droite.",
+ "focusedView": "${focusedView} : nom de l’affichage actuellement ciblé.",
"folderName": "'${folderName} : nom du dossier d'espace de travail contenant le fichier (par ex., myFolder).",
"folderPath": "'${folderPath}' : chemin de fichier du dossier d'espace de travail contenant le fichier (par ex., /Users/Development/myFolder).",
"fontAliasing": "Contrôle la méthode d'aliasing de polices dans le banc d'essai.",
- "highlightModifiedTabs": "Contrôle si une bordure supérieure est dessinée sur les onglets pour les éditeurs qui ont des modifications non sauvegardées. Cette valeur est ignorée lorsque `#workbench.editor.showTabs#` est désactivé.",
- "layoutControlEnabled": "Contrôle si les contrôles de disposition dans la barre de titre personnalisée sont activés via {0}.",
- "layoutControlEnabledDeprecation": "Ce paramètre a été déprécié en faveur de {0}",
+ "highlightModifiedTabs": "Contrôle si une bordure supérieure est dessinée sur les onglets pour les éditeurs dont les modifications n’ont pas été enregistrées. Cette valeur est ignorée lorsque {0} n’est pas défini sur {1}.",
+ "layoutControlEnabled": "Vérifie si le contrôle de disposition est affiché dans la barre de titre personnalisée. Ce paramètre n’a d’effet que lorsque{0} n’est pas défini sur {1}.",
+ "layoutControlEnabledWeb": "Vérifie si le contrôle de disposition dans la barre de titre est activé.",
"layoutControlType": "Contrôle si le contrôle de disposition dans la barre de titre personnalisée s’affiche en tant que bouton de menu unique ou avec plusieurs boutons bascules d’interface utilisateur.",
- "layoutControlTypeDeprecation": "Ce paramètre a été déprécié en faveur de {0}",
"layoutcontrol.type.both": "Affiche les boutons déroulants et bascules.",
"layoutcontrol.type.menu": "Affiche un bouton unique avec une liste déroulante des options de disposition.",
"layoutcontrol.type.toggles": "Affiche plusieurs boutons permettant de basculer la visibilité des panneaux et de la barre latérale.",
@@ -3766,44 +4796,60 @@
"menuBarVisibility.mac": "Contrôlez la visibilité de la barre de menus. Un paramètre « bascule » signifie que la barre de menus est masquée et que l’exécution de « Menu Application focus » l’affiche. Un paramètre « compact » déplace le menu dans la barre latérale.",
"mergeWindow": "Configurez un intervalle en secondes pendant lequel la dernière entrée dans l'historique du fichier local est remplacée par l'entrée en cours d'ajout. Cela permet de réduire le nombre total d'entrées qui sont ajoutées, par exemple lorsque la sauvegarde automatique est activée. Ce paramètre est uniquement appliqué aux entrées qui ont la même source d'origine. La modification de ce paramètre n'a aucun effet sur les entrées existantes de l'historique des fichiers locaux.",
"mouseBackForwardToNavigate": "Active l’utilisation des boutons de souris quatre et cinq pour les commandes « Retour » et « Avancer ».",
+ "navigationControlEnabled": "Contrôle si le contrôle de navigation est affiché dans la barre de titre personnalisée. Ce paramètre n’a d’effet que lorsque {0} n’est pas défini sur {1}.",
+ "navigationControlEnabledWeb": "Contrôle si le contrôle de navigation dans la barre de titre est affiché.",
"navigationScope": "Contrôle l’étendue de la navigation dans l’historique dans les éditeurs pour les commandes telles que « Revenir en arrière » et « Aller de l’avant ».",
"openDefaultKeybindings": "Contrôle si ouvrir les paramètres de raccourcis clavier ouvre également un éditeur affichant toutes les combinaisons de touches par défaut.",
"openDefaultSettings": "Contrôle si l'ouverture des paramètres ouvre également un éditeur affichant tous les paramètres par défaut.",
"openFilesInNewWindow": "Contrôle si les fichiers doivent s'ouvrir dans une nouvelle fenêtre lors de l'utilisation d'une ligne de commande ou d'un dialogue de fichier. \r\nNotez qu'il peut toujours y avoir des cas où ce paramètre est ignoré (par exemple, lors de l'utilisation de l'option de ligne de commande `--new-window` ou `--reuse-window`).",
"openFilesInNewWindowMac": "Contrôle si les fichiers doivent s'ouvrir dans une nouvelle fenêtre lors de l'utilisation d'une ligne de commande ou d'un dialogue de fichier. \r\nNotez qu'il peut toujours y avoir des cas où ce paramètre est ignoré (par exemple, lors de l'utilisation de l'option de ligne de commande `--new-window` ou `--reuse-window`).",
"openFoldersInNewWindow": "Contrôle si les dossiers doivent s'ouvrir dans une nouvelle fenêtre ou remplacer la dernière fenêtre active.\r\nNotez qu’il peut encore exister des cas où ce paramètre est ignoré (par exemple lorsque vous utilisez l'option de ligne de commande `--new-window` ou `--reuse-window`).",
- "panelDefaultLocation": "Contrôle l’emplacement par défaut du panneau (terminal, console de débogage, sortie, problèmes) dans un nouvel espace de travail. Il peut s’afficher en bas, à droite ou à gauche de la zone de l’éditeur.",
+ "panelDefaultLocation": "Contrôle l’emplacement par défaut du panneau (terminal, Console de débogage, sortie, problèmes) dans un nouvel espace de travail. Il peut s’afficher en bas, en haut, à droite ou à gauche de la zone de l’éditeur.",
"panelOpensMaximized": "Contrôle si le panneau s'ouvre de manière agrandie. Il peut soit toujours s'ouvrir de manière agrandie, soit ne jamais s'ouvrir de manière agrandie, soit s'ouvrir dans le dernier état dans lequel il se trouvait avant sa fermeture.",
+ "panelShowLabels": "Contrôle si les éléments d’activité du titre du panneau sont affichés sous forme d’étiquette ou d’icône.",
"perEditorGroup": "Contrôle si le nombre maximal d'éditeurs ouverts s'applique par groupe d'éditeurs ou pour tous les groupes d'éditeurs.",
- "pinnedTabSizing": "Contrôle le dimensionnement des onglets d'éditeur épinglés. Les onglets épinglés sont triés et placés au début de tous les onglets ouverts. En règle générale, ils ne se ferment pas tant qu'ils ne sont pas détachés. Cette valeur est ignorée quand '#workbench.editor.showTabs#' est désactivé.",
+ "pinnedTabSizing": "Contrôle la taille des onglets de l’éditeur épinglés. Les onglets épinglés sont triés au début de tous les onglets ouverts et ne se ferment généralement pas tant qu’ils ne sont pas désépinglés. Cette valeur est ignorée lorsque {0} n’est pas défini sur {1}.",
"preserveInput": "Contrôle si la dernière saisie tapée dans la palette de commande devrait être restaurée lors de l’ouverture la prochaine fois.",
+ "problems.visibility": "Contrôle si les problèmes sont visibles dans l’ensemble de l’éditeur et du banc d’essai.",
+ "profileName": "'${profileName}' : nom du profil dans lequel l’espace de travail est ouvert (par exemple, science des données (profil)). Ignoré si le profil par défaut est utilisé.",
"remoteName": "'${remoteName}' : par ex., SSH",
"restoreViewState": "Restaure le dernier état d’affichage de l’éditeur (par exemple, la position de défilement) lors de la réouverture des éditeurs après leur fermeture. L’état d’affichage de l’éditeur est stocké par groupe d’éditeurs et ignoré lorsqu’un groupe se ferme. Utilisez le paramètre {0} pour utiliser le dernier état d’affichage connu dans tous les groupes d’éditeurs si aucun état d’affichage précédent n’a été trouvé pour un groupe d’éditeurs.",
- "revealIfOpen": "Contrôle si un éditeur est affiché dans un des groupes visibles si ouvert. Si désactivé, un éditeur préférera s'ouvrir dans le groupe éditeur actuellement actif. Si activé, un éditeur déjà ouvert s’affichera au lieu de s’ouvrir à nouveau dans le groupe éditeur actuellement actif. Notez qu’il y a des cas où ce paramètre est ignoré, par exemple lorsque vous forcez un éditeur à s'ouvrir dans un groupe spécifique ou sur le côté du groupe actuellement actif.",
- "rootName": "'${rootName}' : nom de l'espace de travail ou du dossier ouvert (par exemple myFolder ou myWorkspace).",
+ "revealIfOpen": "Contrôle si un éditeur est affiché dans un des groupes visibles si ouvert. Si désactivé, un éditeur préférera s’ouvrir dans le groupe éditeur actuellement actif. Si activé, un éditeur déjà ouvert s’affichera au lieu de s’ouvrir à nouveau dans le groupe éditeur actuellement actif. Notez qu’il y a des cas où ce paramètre est ignoré, par exemple lorsque vous forcez un éditeur à s’ouvrir dans un groupe spécifique ou sur le côté du groupe actuellement actif.",
+ "rootName": "'${rootName}' : nom de l’espace de travail avec le nom distant facultatif et l’indicateur d’espace de travail le cas échéant (par exemple, myFolder, myRemoteFolder [SSH] ou myWorkspace (espace de travail)).",
+ "rootNameShort": "'${rootNameShort}' : nom raccourci de l’espace de travail sans suffixes (par exemple, myFolder, myRemoteFolder ou myWorkspace).",
"rootPath": "'${rootPath}' : chemin de fichier de l'espace de travail ou du dossier ouvert (par exemple /Users/Development/myWorkspace).",
- "scrollToSwitchTabs": "Contrôle si le défilement des onglets permet de les ouvrir ou non. Par défaut, les onglets s'affichent uniquement si vous les faites défiler, mais ils ne s'ouvrent pas. Vous pouvez appuyer de façon prolongée sur la touche Maj pendant le défilement afin de changer le comportement pour cette durée. Cette valeur est ignorée quand '#workbench.editor.showTabs#' est désactivé.",
+ "scrollToSwitchTabs": "Contrôle si le défilement des onglets les ouvrira ou non. Par défaut, les onglets ne s’afficheront qu’au défilement, mais ne s’ouvriront pas. Vous pouvez appuyer et maintenir la touche Maj enfoncée pendant le défilement pour modifier ce comportement pendant cette durée. Cette valeur est ignorée lorsque {0} n’est pas défini sur {1}.",
+ "secondarySideBarDefaultVisibility": "Contrôle la visibilité par défaut de la barre latérale secondaire dans les espaces de travail ou les fenêtres vides qui sont ouvertes pour la première fois.",
+ "secondarySideBarShowLabels": "Contrôle si les éléments d'activité dans le titre de la barre latérale secondaire sont affichés sous forme d'étiquette ou d'icône. Ce paramètre n’a d’effet que lorsque {0} n’est pas défini sur {1}.",
"separator": "'${separator}' : séparateur conditionnel (\"-\") qui apparaît uniquement quand il est entouré de variables avec des valeurs ou du texte statique.",
- "settings.editor.desc": "Détermine quel éditeur de paramètres utiliser par défaut.",
+ "settings.editor.desc": "Détermine l’éditeur de paramètres à utiliser par défaut.",
"settings.editor.json": "Utiliser l’éditeur de fichiers JSON.",
"settings.editor.ui": "Utiliser l’éditeur d’interface utilisateur de paramètres.",
+ "settings.showAISearchToggle": "Contrôle l'affichage du bouton bascule des résultats de recherche IA dans la barre de recherche de l'éditeur de paramètres après une recherche, une fois que les résultats de recherche IA sont disponibles.",
"sharedViewState": "Conserve l’état d’affichage de l’éditeur le plus récent (par exemple, la position de défilement) dans tous les groupes d’éditeurs et le restaure si aucun état d’affichage d’éditeur spécifique n’est trouvé pour le groupe d’éditeurs.",
- "showEditorTabs": "Contrôle si les éditeurs ouverts devraient être affichés dans des onglets ou non.",
+ "showAskInChat": "Contrôle si la palette de commandes affiche l’option « Demander dans la conversation » en bas.",
+ "showEditorTabs": "Contrôle si les éditeurs ouverts doivent s'afficher sous forme d'onglets individuels, un seul grand onglet ou si la zone de titre ne doit pas être affichée.",
"showIcons": "Détermine si les éditeurs ouverts doivent s'afficher ou non avec une icône. Cela nécessite notamment l'activation d'un thème d'icône de fichier.",
+ "showTabIndex": "Si cette option est activée, l’index d’onglet s’affiche. Cette valeur est ignorée lorsque {0} n’est pas défini sur {1}.",
"sideBarLocation": "Contrôle l’emplacement de la barre latérale principale et de la barre d’activité. Ils peuvent s’afficher à gauche ou à droite du workbench. La barre latérale secondaire s’affiche sur le côté opposé du workbench.",
- "sideBySideDirection": "Contrôle la direction par défaut des éditeurs ouverts côte à côte (par exemple, à partir de l'Explorateur). Par défaut, les éditeurs s'ouvrent sur le côté droit de celui qui est actif. Si la valeur est 'down', les éditeurs s'ouvrent sous celui qui est actif.",
+ "sideBySideDirection": "Contrôle la direction par défaut des éditeurs ouverts côte à côte (par exemple, à partir de l'Explorateur). Par défaut, les éditeurs s'ouvrent sur le côté droit de celui qui est actif. Si la valeur est 'down', les éditeurs s'ouvrent sous celui qui est actif. Cela a également un impact sur l’action de fractionnement de l’éditeur dans la barre d’outils de l’éditeur.",
"splitInGroupLayout": "Contrôle la disposition du moment où un éditeur est fractionné dans un groupe d’éditeurs pour qu’il soit vertical ou horizontal.",
"splitOnDragAndDrop": "Détermine si vous pouvez séparer les groupes d'éditeurs à partir d'opérations de glisser-déposer, notamment en déposant un éditeur ou un fichier sur les bords de la zone d'éditeur.",
- "splitSizing": "Contrôle la taille des groupes d'éditeurs pendant leur fractionnement.",
+ "splitSizing": "Contrôle la taille des groupes d’éditeurs pendant leur fractionnement.",
"statusBarVisibility": "Contrôle la visibilité de la barre d'état au bas du banc d'essai.",
+ "suggestCommands": "Contrôle si la palette de commandes doit avoir une liste de commandes couramment utilisées.",
+ "swipeToNavigate": "Naviguez entre les fichiers ouverts en effectuant un balayage horizontal à trois doigts. Notez que Préférences système > Trackpad > Autres mouvements doit être réglé sur « Balayer avec deux ou trois doigts ».",
+ "tabActionLocation": "Contrôle la position des boutons d’action des onglets de l’éditeur (fermer, détacher). Cette valeur est ignorée lorsque {0} n’est pas défini sur {1}.",
"tabDescription": "Contrôle le format de l’étiquette pour un éditeur.",
"tabScrollbarHeight": "Contrôle la hauteur des barres de défilement utilisées pour les onglets et des barres de navigation dans la zone de titre de l'éditeur.",
- "tabSizing": "Contrôle le dimensionnement des onglets d'éditeur. Cette valeur est ignorée quand '#workbench.editor.showTabs#' est désactivé.",
- "untitledHint": "Contrôle si l’indicateur de texte sans titre doit être visible dans l’éditeur.",
+ "tabSizing": "Contrôle la taille des onglets de l’éditeur. Cette valeur est ignorée lorsque {0} n’est pas défini sur {1}.",
+ "tips.enabled": "Si cette option est activée, les conseils en filigrane s'affichent quand aucun éditeur n'est ouvert.",
+ "titleScrollbarVisibility": "Contrôle la visibilité des barres de défilement utilisées pour les onglets et des barres de navigation dans la zone de titre de l'éditeur.",
"untitledLabelFormat": "Contrôle le format de l'étiquette pour un éditeur sans titre.",
"useSplitJSON": "Contrôle s'il faut utiliser l'éditeur JSON de fractionnement pour modifier les paramètres au format JSON.",
"viewVisibility": "Contrôle la visibilité des actions d'en-tête de vue. Les actions d'en-tête de vue peuvent être soit toujours visibles, ou uniquement visibles quand cette vue a le focus ou est survolée.",
- "window.commandCenter": "Afficher le lanceur de commandes avec le titre de la fenêtre. Ce paramètre n’a d’effet que lorsque {0} est défini sur {1}.",
+ "window.commandCenter": "Afficher le lanceur de commandes avec le titre de la fenêtre. Ce paramètre n’a d’effet que lorsque{0} n’est pas défini sur {1}.",
+ "window.commandCenterWeb": "Afficher le lanceur de commandes avec le titre de la fenêtre.",
"window.confirmBeforeClose.always": "Toujours demander une confirmation.",
"window.confirmBeforeClose.always.web": "Toujours essayer de demander confirmation. Notez que les navigateurs peuvent toujours décider de fermer un onglet ou une fenêtre sans confirmation.",
"window.confirmBeforeClose.keyboardOnly": "Demandez uniquement une confirmation si une combinaison de touches a été utilisée.",
@@ -3811,7 +4857,8 @@
"window.confirmBeforeClose.never": "Ne demandez jamais explicitement de confirmation.",
"window.confirmBeforeClose.never.web": "Ne demande jamais explicitement une confirmation, sauf si une perte de données est imminente.",
"window.menuBarVisibility.classic": "Le menu est affiché en haut de la fenêtre et masqué uniquement en mode plein écran.",
- "window.menuBarVisibility.compact": "Le menu s’affiche sous la forme d’un bouton compact dans la barre latérale. Cette valeur est ignorée lorsque {0} est {1}.",
+ "window.menuBarVisibility.compact": "Le menu s’affiche sous la forme d’un bouton compact dans la barre latérale. Cette valeur est ignorée lorsque {0} est {1} et {2} est soit {3} soit {4}.",
+ "window.menuBarVisibility.compact.web": "Le menu s’affiche sous la forme d’un bouton compact dans la barre latérale.",
"window.menuBarVisibility.hidden": "Le menu est toujours masqué.",
"window.menuBarVisibility.toggle": "Le menu est masqué mais peut être affiché en haut de la fenêtre via la touche Alt.",
"window.menuBarVisibility.toggle.mac": "Le menu est masqué mais peut être affiché en haut de la fenêtre via la commande Focus sur le menu d'application.",
@@ -3824,34 +4871,71 @@
"window.openFoldersInNewWindow.off": "Les dossiers remplaceront la dernière fenêtre active.",
"window.openFoldersInNewWindow.on": "Les dossiers seront ouverts dans une nouvelle fenêtre.",
"window.titleSeparator": "Séparateur utilisé par {0}.",
- "windowConfigurationTitle": "Fenêtre",
- "windowTitle": "Contrôle basé sur l’éditeur actif du titre de la fenêtre. Les variables sont remplacées selon le contexte :",
- "workbench.activityBar.iconClickBehavior.focus": "Mettre le focus sur la barre latérale si l'élément sur lequel l'utilisateur a cliqué est déjà visible.",
- "workbench.activityBar.iconClickBehavior.toggle": "Masquer la barre latérale si l'élément sur lequel l'utilisateur a cliqué est déjà visible.",
- "workbench.editor.historyBasedLanguageDetection": "Active l’utilisation de l’historique de l’éditeur dans la détection de langue. Ainsi, la détection automatique de la langue favorise les langues qui ont été récemment ouvertes et permet à la détection automatique de la langue de fonctionner avec des entrées plus petites.",
+ "windowTitle": "Contrôle le titre de la fenêtre en fonction du contexte actuel, tel que l’espace de travail ouvert ou l’éditeur actif. Les variables sont remplacées en fonction du contexte :",
+ "workbench.activityBar.iconClickBehavior.focus": "Concentre la barre latérale principale si l’élément cliqué est déjà visible.",
+ "workbench.activityBar.iconClickBehavior.toggle": "Masquer la barre latérale principale si l’élément cliqué est déjà visible.",
+ "workbench.activityBar.location.bottom": "Affichez la barre d’activité en bas des barres latérales principale et secondaire.",
+ "workbench.activityBar.location.default": "Afficher la barre d’activité sur le côté de la barre côté primaire et en haut de la barre secondaire.",
+ "workbench.activityBar.location.hide": "Masquer la barre d’activités dans les barres latérales principale et secondaire.",
+ "workbench.activityBar.location.top": "Affichez la barre d’activité en haut des barres latérales principale et secondaire.",
+ "workbench.editor.doubleClickTabToToggleEditorGroupSizes.expand": "Le groupe d'éditeurs prend autant de place que possible en rendant tous les autres groupes d'éditeurs aussi petits que possible.",
+ "workbench.editor.doubleClickTabToToggleEditorGroupSizes.maximize": "Tous les autres groupes d'éditeurs sont masqués et le groupe d'éditeurs actuel est agrandi pour occuper toute la zone de l'éditeur.",
+ "workbench.editor.doubleClickTabToToggleEditorGroupSizes.off": "Aucun groupe d'éditeur n'est redimensionné lors d'un double-clic sur un onglet.",
+ "workbench.editor.editorActionsLocation.default": "Affichez les actions de l’éditeur dans la barre de titre de la fenêtre quand {0} est défini sur {1}. Sinon, les actions de l’éditeur sont affichées dans la barre d’onglets de l’éditeur.",
+ "workbench.editor.editorActionsLocation.hidden": "Les actions de l’éditeur ne sont pas affichées.",
+ "workbench.editor.editorActionsLocation.titleBar": "Afficher les actions de l’éditeur dans la barre de titre de la fenêtre. Si {0} est défini sur {1}, les actions de l’éditeur sont masquées.",
+ "workbench.editor.empty.hint": "Contrôle si l’indicateur de texte d’éditeur vide doit être visible dans l’éditeur.",
+ "workbench.editor.historyBasedLanguageDetection": "Active l’utilisation de l’historique de l’éditeur dans la détection de langage. Ainsi, la détection automatique du langage favorise les langages qui ont été récemment ouverts et permet à la détection automatique du langage de fonctionner avec des entrées plus petites.",
+ "workbench.editor.label.dirname": "`${dirname}`: nom du dossier dans lequel se trouve le fichier (par exemple, `WORKSPACE_FOLDER/folder/file.txt -> folder`).",
+ "workbench.editor.label.enabled": "Contrôle si les étiquettes d’éditeur workbench personnalisées doivent être appliquées.",
+ "workbench.editor.label.extname": "`${extname}`: extension de fichier (par exemple, `WORKSPACE_FOLDER/folder/file.txt -> txt`).",
+ "workbench.editor.label.filename": "'`${filename}`: nom du fichier sans l’extension de fichier (par exemple, `WORKSPACE_FOLDER/folder/file.txt -> file`).",
+ "workbench.editor.label.nthdirname": "`${dirname(N)}`: nom du nième dossier parent dans lequel se trouve le fichier (par exemple, `N=2: WORKSPACE_FOLDER/static/folder/file.txt -> WORKSPACE_FOLDER`). Les dossiers peuvent être sélectionnés à partir du début du chemin d’accès à l’aide de nombres négatifs (par exemple, `N=-1: WORKSPACE_FOLDER/folder/file.txt -> WORKSPACE_FOLDER`). Si __Item__ est un chemin de modèle absolu, le premier dossier (`N=-1`) fait référence au premier dossier dans le chemin d’accès absolu, sinon il correspond au dossier de l’espace de travail.",
+ "workbench.editor.label.nthextname": "« ${extname(N)} » : la nième extension du fichier séparée par « . » (par exemple, « N=2 : WORKSPACE_FOLDER/folder/file.ext1.ext2.ext3 -> ext1 »). L’extension peut être sélectionnée à partir du début de l’extension à l’aide de nombres négatifs (par exemple, « N=-1 : WORKSPACE_FOLDER/folder/file.ext1.ext2.ext3 -> ext2 »).",
+ "workbench.editor.label.patterns": "Contrôle le rendu de l’étiquette de l’éditeur. Chaque __Item__ est un modèle qui correspond à un chemin d’accès de fichier. Les chemins d’accès relatifs et absolus sont pris en charge. Le chemin d’accès relatif doit inclure le WORKSPACE_FOLDER (par exemple, `WORKSPACE_FOLDER/src/**.tsx` ou `*/src/**.tsx`). Les modèles absolus doivent commencer par un '/'. Si plusieurs modèles correspondent, le chemin d’accès correspondant le plus long est sélectionné. Chaque __Value__ est le modèle de l’éditeur rendu lorsque le __Item__ correspond. Les variables sont remplacées en fonction du contexte :",
+ "workbench.editor.label.template": "Modèle qui doit être rendu lorsque le modèle correspond. Peut inclure les variables ${dirname}, ${filename} et ${extname}.",
"workbench.editor.labelFormat.default": "Afficher le nom du fichier. Lorsque les onglets sont activés et que deux fichiers portent le même nom dans un groupe, les sections distinctes du chemin de chaque fichier sont ajoutées. Lorsque les onglets sont désactivés, le chemin d’accès relatif au dossier de l'espace de travail est affiché si l’éditeur est actif.",
"workbench.editor.labelFormat.long": "Afficher le nom du fichier suivi de son chemin d’accès absolu.",
"workbench.editor.labelFormat.medium": "Afficher le nom du fichier suivi de son chemin d’accès relatif au dossier de l'espace de travail.",
"workbench.editor.labelFormat.short": "Afficher le nom du fichier suivi du nom de dossier.",
- "workbench.editor.languageDetection": "Contrôle si la langue dans un éditeur de texte est détectée automatiquement, sauf si le langage a été explicitement défini par le sélecteur de langue. Elle peut également être définie en fonction de la langue pour que vous puissiez spécifier les langues dont vous ne souhaitez pas désactiver la désactivation. Cela est utile pour les langues comme la démarque qui contiennent souvent d’autres langues susceptibles d’inciter la détection de langage à penser qu’il s’agit de la langue incorporée et non de la démarque.",
+ "workbench.editor.languageDetection": "Contrôle si le langage dans un éditeur de texte est détecté automatiquement, sauf si le langage a été explicitement défini par le sélecteur de langage. Il peut également être défini en fonction du langage pour que vous puissiez spécifier les langages que vous ne souhaitez pas désactiver. Cela est utile pour les langages comme Markdown qui contiennent souvent d’autres langages susceptibles d’inciter la détection de langage à penser qu’il s’agit du langage incorporé et non de Markdown.",
"workbench.editor.navigationScopeDefault": "Parcourez tous les éditeurs et groupes d’éditeurs ouverts.",
"workbench.editor.navigationScopeEditor": "Naviguez uniquement dans l’éditeur actif.",
"workbench.editor.navigationScopeEditorGroup": "Naviguez uniquement dans les éditeurs du groupe d’éditeurs actif.",
"workbench.editor.pinnedTabSizing.compact": "Un onglet épinglé s'affiche de manière compacte avec uniquement une icône ou la première lettre du nom de l'éditeur.",
"workbench.editor.pinnedTabSizing.normal": "Un onglet épinglé hérite de l'apparence des onglets non épinglés.",
"workbench.editor.pinnedTabSizing.shrink": "Un onglet épinglé se réduit à une taille fixe compacte affichant des parties du nom de l'éditeur.",
+ "workbench.editor.pinnedTabsOnSeparateRow": "Lorsque cet élément est activé, il affiche les onglets épinglés dans une ligne distincte au-dessus de tous les autres onglets. Cette valeur est ignorée lorsque {0} n’est pas défini sur {1}.",
"workbench.editor.preferBasedLanguageDetection": "Quand cette option est activée, un modèle de détection de langage qui prend en compte l’historique de l’éditeur est prioritaire.",
- "workbench.editor.showLanguageDetectionHints": "Lorsque cette option est activée, affiche un correctif rapide de la barre d’état lorsque la langue de l’éditeur ne correspond pas à la langue de contenu détectée.",
+ "workbench.editor.preventPinnedEditorClose": "Détermine si les éditeurs épinglés doivent se fermer lorsque le clavier ou le clic central de souris est utilisé pour la fermeture.",
+ "workbench.editor.preventPinnedEditorClose.always": "Toujours empêcher la fermeture de l’éditeur épinglé lors de l’utilisation d’un clic central de souris ou d’un clavier.",
+ "workbench.editor.preventPinnedEditorClose.never": "Ne jamais empêcher la fermeture d’un éditeur épinglé.",
+ "workbench.editor.preventPinnedEditorClose.onlyKeyboard": "Empêcher la fermeture de l'éditeur épinglé lors de l'utilisation du clavier.",
+ "workbench.editor.preventPinnedEditorClose.onlyMouse": "Empêcher la fermeture de l’éditeur épinglé lors de l’utilisation d’un clic central de souris.",
+ "workbench.editor.showLanguageDetectionHints": "Si cette option est activée, affiche un correctif rapide de la barre d’état lorsque le langage de l’éditeur ne correspond pas au langage de contenu détecté.",
"workbench.editor.showLanguageDetectionHints.editors": "Afficher dans les éditeurs de texte sans titre",
"workbench.editor.showLanguageDetectionHints.notebook": "Afficher dans les éditeurs de notebook",
+ "workbench.editor.showTabs.multiple": "Chaque éditeur est affiché sous forme d'onglet dans la zone de titre de l'éditeur.",
+ "workbench.editor.showTabs.none": "La zone de titre de l'éditeur n'est pas affichée.",
+ "workbench.editor.showTabs.single": "L'éditeur actif est affiché sous la forme d'un seul grand onglet dans la zone de titre de l'éditeur.",
"workbench.editor.splitInGroupLayoutHorizontal": "Les éditeurs sont positionnés de gauche à droite.",
"workbench.editor.splitInGroupLayoutVertical": "Les éditeurs sont positionnés de haut en bas.",
+ "workbench.editor.splitSizingAuto": "Divise le groupe d’éditeurs actif en parties égales, sauf si tous les groupes d’éditeurs sont déjà en partie égale. Dans ce cas, divise tous les groupes d’éditeurs en parties égales.",
"workbench.editor.splitSizingDistribute": "Divise tous les groupes d'éditeurs à parts égales.",
"workbench.editor.splitSizingSplit": "Divise le groupe d'éditeurs actif en parts égales.",
+ "workbench.editor.tabActionCloseVisibility": "Contrôle la visibilité du bouton d’action Fermer l’onglet.",
+ "workbench.editor.tabActionUnpinVisibility": "Contrôle la visibilité du bouton d’action de désépinglage de l’onglet.",
+ "workbench.editor.tabHeight": "Contrôle la hauteur des onglets de l’éditeur. S’applique également à la barre de contrôle de titre lorsque {0} n’est pas défini sur {1}.",
"workbench.editor.tabSizing.fit": "Toujours garder les onglets assez grands pour afficher l’étiquette de l’éditeur complet.",
+ "workbench.editor.tabSizing.fixed": "Faites en sorte que tous les onglets aient la même taille, tout en leur permettant d’être plus petits lorsque l’espace disponible n’est pas suffisant pour afficher tous les onglets à la fois.",
"workbench.editor.tabSizing.shrink": "Permettre aux onglets d'être plus petits lorsque l’espace disponible n’est pas suffisant pour afficher tous les onglets à la fois.",
+ "workbench.editor.tabSizingFixedMaxWidth": "Contrôle la largeur maximale des onglets lorsque la taille de {0} est définie sur {1}.",
+ "workbench.editor.tabSizingFixedMinWidth": "Contrôle la largeur minimale des onglets lorsque la taille de {0} est définie sur {1}.",
"workbench.editor.titleScrollbarSizing.default": "Taille par défaut.",
"workbench.editor.titleScrollbarSizing.large": "Augmente la taille pour faciliter sa saisie avec la souris.",
+ "workbench.editor.titleScrollbarVisibility.auto": "La barre de défilement horizontale sera visible uniquement lorsque cela est nécessaire.",
+ "workbench.editor.titleScrollbarVisibility.hidden": "La barre de défilement horizontale est toujours masquée.",
+ "workbench.editor.titleScrollbarVisibility.visible": "La barre de défilement horizontale est toujours visible.",
"workbench.editor.untitled.labelFormat.content": "Le nom du fichier sans titre est dérivé du contenu de sa première ligne, sauf si le fichier est associé à un chemin. Le nom est rétabli si la ligne est vide ou si elle ne contient aucun caractère.",
"workbench.editor.untitled.labelFormat.name": "Le nom du fichier sans titre n'est pas dérivé du contenu du fichier.",
"workbench.fontAliasing.antialiased": "Lisser les polices au niveau du pixel, plutôt que les sous-pixels. Peut faire en sorte que la police apparaisse plus légère dans l’ensemble.",
@@ -3860,39 +4944,54 @@
"workbench.fontAliasing.none": "Désactive le lissage des polices. Le texte s'affichera avec des bordures dentelées.",
"workbench.hover.delay": "Contrôle le délai en millisecondes au-delà duquel le pointage est affiché pour les éléments du banc d'essai (par exemple, certains éléments d'arborescence fournis par l'extension). L'actualisation des éléments déjà visibles peut s'avérer nécessaire pour que le changement apporté au paramètre prenne effet.",
"workbench.panel.opensMaximized.always": "Toujours ouvrir le panneau de manière agrandie.",
- "workbench.panel.opensMaximized.never": "Ne jamais ouvrir le panneau de manière agrandie. Le panneau s'ouvre en étant réduit.",
+ "workbench.panel.opensMaximized.never": "Ne jamais ouvrir le panneau de manière agrandie.",
"workbench.panel.opensMaximized.preserve": "Ouvrez le panneau dans l'état dans lequel il se trouvait, avant sa fermeture.",
+ "workbench.panel.output": "Vue de sortie",
"workbench.quickOpen.preserveInput": "Détermine si la dernière entrée tapée dans Quick Open doit être restaurée à la prochaine ouverture.",
"workbench.reduceMotion": "Contrôle si le banc d’essai doit être affiché avec moins d’animations.",
"workbench.reduceMotion.auto": "Rendu avec mouvement réduit en fonction de la configuration du système d’exploitation",
"workbench.reduceMotion.off": "Ne pas afficher avec un mouvement réduit",
"workbench.reduceMotion.on": "Toujours afficher avec un mouvement réduit",
- "wrapTabs": "Détermine si les onglets doivent être placés sur plusieurs lignes quand ils dépassent l'espace disponible, ou si une barre de défilement doit s'afficher à la place. Cette valeur est ignorée quand '#workbench.editor.showTabs#' est désactivé.",
+ "workbench.secondarySideBar.defaultVisibility.hidden": "La barre latérale secondaire est masquée par défaut.",
+ "workbench.secondarySideBar.defaultVisibility.maximized": "La barre latérale secondaire est visible et agrandie par défaut.",
+ "workbench.secondarySideBar.defaultVisibility.maximizedInWorkspace": "La barre latérale secondaire est visible et agrandie par défaut si un espace de travail est ouvert.",
+ "workbench.secondarySideBar.defaultVisibility.visible": "La barre latérale secondaire est visible par défaut.",
+ "workbench.secondarySideBar.defaultVisibility.visibleInWorkspace": "La barre latérale secondaire est visible par défaut si un espace de travail est ouvert.",
+ "workbench.view.showQuietly": "Si une extension demande l’affichage d’une vue masquée, affichez un indicateur de barre de statut interactif à la place.",
+ "wrapTabs": "Contrôle si les onglets doivent être enroulés sur plusieurs lignes en cas de dépassement de l’espace disponible ou si une barre de défilement doit apparaître à la place. Cette valeur est ignorée lorsque {0} n’est pas défini sur « {1} ».",
"zenMode.centerLayout": "Contrôle si activer le Mode Zen centre également la mise en page.",
"zenMode.fullScreen": "Contrôle si activer le Mode Zen met aussi le workbench en mode plein écran.",
"zenMode.hideActivityBar": "Contrôle si l'activation du mode Zen masque également la barre d'activités à gauche ou à droite du banc d'essai.",
"zenMode.hideLineNumbers": "Contrôle si l'activation du mode Zen masque aussi les numéros de ligne de l'éditeur.",
"zenMode.hideStatusBar": "Contrôle si l'activation du mode Zen masque également la barre d’état au bas du banc d'essai.",
- "zenMode.hideTabs": "Contrôle si l'activation du mode Zen masque également les onglets du banc d'essai.",
"zenMode.restore": "Détermine si une fenêtre doit être restaurée en mode zen, si celle-ci a été fermée en mode zen.",
+ "zenMode.showTabs": "Contrôle si l’activation du mode Zen doit afficher plusieurs onglets de l’éditeur, un seul onglet de l’éditeur ou masquer complètement la zone de titre de l’éditeur.",
+ "zenMode.showTabs.multiple": "Chaque éditeur est affiché sous forme d'onglet dans la zone de titre de l'éditeur.",
+ "zenMode.showTabs.none": "La zone de titre de l'éditeur n'est pas affichée.",
+ "zenMode.showTabs.single": "L'éditeur actif est affiché sous la forme d'un seul grand onglet dans la zone de titre de l'éditeur.",
"zenMode.silentNotifications": "Contrôle si le mode notifications ne pas déranger doit être activé en mode zen. Si la valeur est true, seules les notifications d’erreur s’affichent.",
"zenModeConfigurationTitle": "Mode Zen"
},
- "vs/workbench/common/actions": {
- "developer": "Développeur",
- "help": "Aide",
- "preferences": "Préférences",
- "test": "Test",
- "view": "Voir"
- },
"vs/workbench/common/configuration": {
+ "active window": "Fenêtre interactive",
+ "applicationConfigurationTitle": "Application",
+ "newWindowProfile": "Spécifie le profil à utiliser lors de l’ouverture d’une nouvelle fenêtre. Si un nom de profil est fourni, la nouvelle fenêtre utilise ce profil. Si aucun nom de profil n’est fourni, la nouvelle fenêtre utilise le profil de la fenêtre active ou le profil par défaut si aucune fenêtre active n’existe.",
+ "problemsConfigurationTitle": "Problèmes",
+ "security.allowedUNCHosts": "Un ensemble de noms d’hôtes UNC (sans barre oblique inverse de début ou de fin, par exemple `192.168.0.1` ou `mon-serveur`) à autoriser sans confirmation de l’utilisateur. Si un hôte UNC est accédé alors qu’il n’est pas autorisé par ce paramètre ou qu’il n’a pas été acquitté par la confirmation de l’utilisateur, une erreur se produit et l’opération est arrêtée. Un redémarrage est nécessaire pour modifier ce paramètre. Pour en savoir plus sur ce paramètre, consultez le site https://aka.ms/vscode-windows-unc.",
+ "security.allowedUNCHosts.patternErrorMessage": "Les noms d’hôte UNC ne doivent pas contenir de barre oblique inverse.",
+ "security.restrictUNCAccess": "Si cette option est activée, autorise uniquement l’accès aux noms d’hôtes UNC autorisés par le paramètre ’#security.allowedUNCHosts#’ ou après confirmation de l’utilisateur. En savoir plus sur ce paramètre sur https://aka.ms/vscode-windows-unc.",
+ "securityConfigurationTitle": "Sécurité",
+ "windowConfigurationTitle": "Fenêtre",
"workbenchConfigurationTitle": "Banc d'essai"
},
"vs/workbench/common/contextkeys": {
+ "SelectedEditorsInGroupFileOrUntitledResourceContextKey": "Indique si tous les éditeurs sélectionnés d’un groupe ont un fichier associé ou une ressource associée sans titre",
"activeAuxiliary": "Identificateur du volet auxiliaire actif",
+ "activeCompareEditorCanSwap": "Indique si l’éditeur de comparaison actif peut permuter les côtés",
"activeEditor": "Identificateur de l'éditeur actif",
"activeEditorAvailableEditorIds": "Identificateurs d'éditeur utilisables pour l'éditeur actif",
"activeEditorCanRevert": "Indique si l’éditeur actif peut rétablir",
+ "activeEditorCanToggleReadonly": "Indique si l’éditeur actif peut basculer entre être en lecture seule ou accessible en écriture",
"activeEditorGroupEmpty": "Indique si le groupe d'éditeurs actifs est vide",
"activeEditorGroupIndex": "Index du groupe d'éditeurs actifs",
"activeEditorGroupLast": "Indique si le groupe d'éditeurs actifs est le dernier groupe",
@@ -3902,23 +5001,33 @@
"activeEditorIsLastInGroup": "Si l'éditeur actif est le dernier de son groupe.",
"activeEditorIsNotPreview": "Indique si l'éditeur actif n'est pas en mode Aperçu",
"activeEditorIsPinned": "Indique si l'éditeur actif est épinglé",
- "activeEditorIsReadonly": "Indique si l'éditeur actif est en lecture seule",
+ "activeEditorIsReadonly": "Indique si l’éditeur actif est en lecture seule",
"activePanel": "Identificateur du panneau actif",
"activeViewlet": "Identificateur du viewlet actif",
"auxiliaryBarFocus": "Indique si la barre auxiliaire a le focus clavier",
+ "auxiliaryBarMaximized": "Indique si la barre auxiliaire est maximisée",
"auxiliaryBarVisible": "Indique si la barre auxiliaire est visible",
"bannerFocused": "Indique si la bannière a le focus clavier",
"dirtyWorkingCopies": "Indique s’il existe des copies de travail avec des modifications non enregistrées.",
- "editorAreaVisible": "Indique si la zone de l'éditeur est visible",
"editorIsOpen": "Indique si un éditeur est ouvert",
+ "editorPartEditorGroupMaximized": "Le composant Éditeur a un groupe agrandi",
+ "editorPartMultipleEditorGroups": "Indique s’il existe plusieurs groupes d’éditeurs ouverts dans un composant d’éditeur",
"editorTabsVisible": "Indique si les onglets de l’éditeur sont visibles",
+ "embedderIdentifier": "Identificateur de l’incorporation selon le service de produit, si un identificateur est défini",
"focusedView": "Identificateur de la vue qui a le focus clavier",
"groupEditorsCount": "Nombre de groupes d'éditeurs ouverts",
+ "inAutomation": "Indiquez si VS Code s’exécute dans le cadre d’un test d’automatisation ou d’un test de validation",
"inZenMode": "Indique si le mode Zen est activé",
- "isCenteredLayout": "Indique si la disposition centrée est activée",
+ "isAuxiliaryWindow": "La fenêtre est une fenêtre auxiliaire",
+ "isAuxiliaryWindowFocusedContext": "Indique si une fenêtre auxiliaire a le focus",
+ "isCompactTitleBar": "La barre de titre est en mode compact",
"isFileSystemResource": "Indique si la ressource repose sur un fournisseur de systèmes de fichiers",
"isFullscreen": "Indique si la fenêtre est en mode plein écran",
+ "isMainEditorCenteredLayout": "Indique si la disposition centrée est activée pour l’éditeur principal",
+ "isWindowAlwaysOnTop": "Si la fenêtre est toujours en haut",
+ "mainEditorAreaVisible": "Indique si la zone d’éditeurs de la fenêtre principale est visible",
"multipleEditorGroups": "Indique si plusieurs groupes d'éditeurs sont ouverts",
+ "multipleEditorsSelectedInGroup": "Indique si plusieurs éditeurs ont été sélectionnés dans un groupe d’éditeurs",
"notificationCenterVisible": "Indique si le centre de notifications est visible",
"notificationFocus": "Indique si une notification a le focus clavier",
"notificationToastsVisible": "Indique si une notification toast est visible",
@@ -3941,14 +5050,20 @@
"sideBySideEditorActive": "Indique si un éditeur côte à côte est actif",
"splitEditorsVertically": "Indique si les éditeurs sont divisés verticalement",
"statusBarFocused": "Indique si la barre d'état a le focus clavier",
+ "temporaryWorkspace": "Le schéma de l’espace de travail actuel est issu d’un système de fichiers temporaire.",
"textCompareEditorActive": "Indique si un éditeur de comparaison de texte est actif",
"textCompareEditorVisible": "Indique si un éditeur de comparaison de texte est visible",
- "virtualWorkspace": "Schéma de l’espace de travail actif s’il provient d’un système de fichiers virtuel, sinon une chaîne vide.",
+ "titleBarStyle": "Style de la barre de titre de la fenêtre",
+ "titleBarVisible": "Si la barre de titre est visible",
+ "twoEditorsSelectedInGroup": "Indique si deux éditeurs ont été sélectionnés dans un groupe d’éditeurs",
+ "virtualWorkspace": "Le schéma de l’espace de travail actuel est issu d’un système de fichiers virtuel ou d’une chaîne vide.",
"workbenchState": "Genre d'espace de travail ouvert dans la fenêtre : 'vide' (aucun espace de travail), 'dossier' (dossier unique) ou 'espace de travail' (espace de travail multiracine)",
"workspaceFolderCount": "Nombre de dossiers racine dans l'espace de travail"
},
"vs/workbench/common/editor": {
"builtinProviderDisplayName": "Intégré",
+ "configureEditorLargeFileConfirmation": "Configurer la limite",
+ "openLargeFile": "Ouvrir quand même",
"promptOpenWith.defaultEditor.displayName": "Éditeur de texte"
},
"vs/workbench/common/editor/diffEditorInput": {
@@ -3958,7 +5073,7 @@
"sideBySideLabels": "{0} - {1}"
},
"vs/workbench/common/editor/textEditorModel": {
- "languageAutoDetected": "La langue {0} a été détectée et définie automatiquement en tant que mode de langue."
+ "languageAutoDetected": "Le langage {0} a été détecté et défini automatiquement en tant que mode de langage."
},
"vs/workbench/common/theme": {
"activityBarActiveBackground": "Couleur d'arrière-plan de la barre d'activités pour l'élément actif. La barre d'activités s'affiche à l'extrême gauche ou droite, et permet de basculer entre les vues de la barre latérale.",
@@ -3971,9 +5086,23 @@
"activityBarDragAndDropBorder": "Couleur des commentaires dans une opération de glisser-déposer pour les éléments de la barre d'activités. La barre d'activités s'affiche complètement à gauche ou à droite, et permet de naviguer entre les vues de la barre latérale.",
"activityBarForeground": "Couleur de premier plan de la barre d'activités lorsqu'elle est active. La barre d'activités s'affiche complètement à gauche ou à droite, et permet de naviguer entre les affichages de la barre latérale.",
"activityBarInActiveForeground": "Couleur de premier plan de la barre d'activités lorsqu'elle est inactive. La barre d'activités s'affiche complètement à gauche ou à droite, et permet de naviguer entre les affichages de la barre latérale.",
+ "activityBarTop": "Couleur de premier plan active de l’élément dans la barre d’activité lorsque la barre d’activité se trouve en haut/en bas. L’activité permet de basculer entre les vues de la barre latérale.",
+ "activityBarTopActiveBackground": "Couleur d’arrière-plan de l’élément actif dans la barre d’activité lorsqu’il se trouve en haut/en bas. L’activité permet de basculer entre les vues de la barre latérale.",
+ "activityBarTopActiveFocusBorder": "Couleur de bordure du focus pour l’élément actif dans la barre d’activité lorsque la barre d’activité se trouve en haut/en bas. L’activité permet de basculer entre les vues de la barre latérale.",
+ "activityBarTopBackground": "Couleur d’arrière-plan de la barre d’activité lorsque la valeur est supérieure/inférieure.",
+ "activityBarTopDragAndDropBorder": "Appliquez la fonction Glisser-déplacer à la couleur des commentaires pour les éléments dans la barre d’activité lorsque la barre d’activité se trouve en haut/en bas. L’activité permet de basculer entre les vues de la barre latérale.",
+ "activityBarTopInActiveForeground": "Couleur de premier plan inactive de l’élément dans la barre d’activité lorsque la barre d’activité se trouve en haut/en bas. L’activité permet de basculer entre les vues de la barre latérale.",
"banner.background": "Couleur d’arrière-plan de la bannière. La bannière s’affiche sous la barre de titre de la fenêtre.",
"banner.foreground": "Couleur de premier plan de la bannière. La bannière s’affiche sous la barre de titre de la fenêtre.",
"banner.iconForeground": "Couleur d’icône de la bannière. La bannière s’affiche sous la barre de titre de la fenêtre.",
+ "commandCenter-activeBackground": "Couleur active d’arrière-plan du centre de commandes",
+ "commandCenter-activeBorder": "Couleur de bordure active du centre de commandes",
+ "commandCenter-activeForeground": "Couleur active de premier plan du centre de commandes",
+ "commandCenter-background": "Couleur d’arrière-plan du centre de commandes",
+ "commandCenter-border": "Couleur de bordure du centre de commandes",
+ "commandCenter-foreground": "Couleur de premier plan du centre de commandes",
+ "commandCenter-inactiveBorder": "Couleur de bordure du centre de commandes lorsque la fenêtre est inactive",
+ "commandCenter-inactiveForeground": "Couleur de premier plan du centre de commandes lorsque la fenêtre est inactive",
"editorDragAndDropBackground": "Couleur d'arrière-plan lors du déplacement des éditeurs par glissement. La couleur doit avoir une transparence pour que le contenu de l'éditeur soit visible à travers.",
"editorDropIntoPromptBackground": "Couleur d’arrière-plan du texte affiché sur les éditeurs lors du déplacement des fichiers. Ce texte informe l’utilisateur qu’il peut maintenir la touche Maj enfoncée pour la déposer dans l’éditeur.",
"editorDropIntoPromptBorder": "Couleur de bordure du texte affiché sur les éditeurs lors du déplacement des fichiers. Ce texte informe l’utilisateur qu’il peut maintenir la touche Maj enfoncée pour la déposer dans l’éditeur.",
@@ -3981,7 +5110,7 @@
"editorGroupBorder": "Couleur séparant plusieurs groupes d'éditeurs les uns des autres. Les groupes d'éditeurs sont les conteneurs des éditeurs.",
"editorGroupEmptyBackground": "Couleur d'arrière-plan d'un groupe d'éditeurs vide. Les groupes d'éditeurs sont les conteneurs des éditeurs.",
"editorGroupFocusedEmptyBorder": "Couleur de bordure d'un groupe d'éditeurs vide qui a le focus. Les groupes d'éditeurs sont les conteneurs des éditeurs.",
- "editorGroupHeaderBackground": "Couleur d'arrière-plan de l'en-tête du titre du groupe d'éditeurs quand les onglets sont désactivés (`\"workbench.editor.showTabs\": false`). Les groupes d'éditeurs sont les conteneurs des éditeurs.",
+ "editorGroupHeaderBackground": "Couleur d'arrière-plan de l'en-tête du titre du groupe d'éditeurs lorsque (\"workbench.editor.showTabs\": \"single\"`). Les groupes d'éditeurs sont les conteneurs des éditeurs.",
"editorPaneBackground": "Couleur d'arrière-plan du volet d'éditeur visible à gauche et à droite de la disposition centrée de l'éditeur.",
"editorTitleContainerBorder": "Couleur de la bordure de l'en-tête de titre du groupe d'éditeurs. Les groupes d'éditeurs sont les conteneurs des éditeurs.",
"extensionBadge.remoteBackground": "Couleur d'arrière-plan du badge d'utilisation à distance dans la vue des extensions.",
@@ -4001,6 +5130,8 @@
"notificationsInfoIconForeground": "Couleur utilisée pour l'icône des notifications d'informations. Les notifications apparaissent en bas à droite de la fenêtre.",
"notificationsLink": "Couleur de premier plan des liens des notifications. Les notifications défilent à partir du bas à droite de la fenêtre.",
"notificationsWarningIconForeground": "Couleur utilisée pour l'icône des notifications d'avertissement. Les notifications apparaissent en bas à droite de la fenêtre.",
+ "outputViewBackground": "Couleur d’arrière-plan de la vue de sortie.",
+ "outputViewStickyScrollBackground": "Couleur d’arrière-plan du défilement épinglé de l’affichage de sortie.",
"panelActiveTitleBorder": "Couleur de la bordure du titre du panneau actif. Les panneaux se situent sous la zone de l'éditeur et contiennent des affichages comme la sortie et le terminal intégré.",
"panelActiveTitleForeground": "Couleur du titre du panneau actif. Les panneaux se situent sous la zone de l'éditeur et contiennent des affichages comme la sortie et le terminal intégré.",
"panelBackground": "Couleur d'arrière-plan du panneau. Les panneaux s'affichent sous la zone d'éditeurs et contiennent des affichages tels que la sortie et le terminal intégré.",
@@ -4013,6 +5144,15 @@
"panelSectionHeaderBackground": "Couleur d'arrière-plan de l'en-tête de la section des panneaux. Les panneaux s'affichent sous la zone d'éditeurs et contiennent des vues telles que la sortie et le terminal intégré. Les sections des panneaux sont des vues imbriquées dans les panneaux.",
"panelSectionHeaderBorder": "Couleur de bordure d'en-tête de section de panneau utilisée quand plusieurs vues sont empilées verticalement dans le panneau. Les panneaux s'affichent sous la zone d'éditeurs et contiennent des vues telles que la sortie et le terminal intégré. Les sections des panneaux sont des vues imbriquées dans les panneaux.",
"panelSectionHeaderForeground": "Couleur de premier plan de l'en-tête de la section des panneaux. Les panneaux s'affichent sous la zone d'éditeurs et contiennent des vues telles que la sortie et le terminal intégré. Les sections des panneaux sont des vues imbriquées dans les panneaux.",
+ "panelStickyScrollBackground": "Couleur d’arrière-plan du défilement épinglé dans le panneau.",
+ "panelStickyScrollBorder": "Couleur de bordure du défilement épinglé dans le panneau.",
+ "panelStickyScrollShadow": "Couleur d’ombre du défilement épinglé dans le panneau.",
+ "panelTitleBadgeBackground": "Couleur d’arrière-plan du badge de titre du panneau. Les panneaux s’affichent sous la zone d’éditeur et contiennent des affichages tels que la sortie et le terminal intégré.",
+ "panelTitleBadgeForeground": "Couleur de premier plan du badge de titre du panneau. Les panneaux s’affichent sous la zone d’éditeur et contiennent des affichages tels que la sortie et le terminal intégré.",
+ "panelTitleBorder": "Couleur de bordure du titre du panneau en bas, séparant le titre des vues. Les panneaux s'affichent sous la zone d'éditeurs et contiennent des affichages tels que la sortie et le terminal intégré.",
+ "profileBadgeBackground": "Couleur d’arrière-plan du badge de profil. Le badge de profil s’affiche en haut de l’icône d’engrenage des paramètres dans la barre d’activités.",
+ "profileBadgeForeground": "Couleur de premier plan du badge de profil. Le badge de profil s’affiche en haut de l’icône d’engrenage des paramètres dans la barre d’activités.",
+ "sideBarActivityBarTopBorder": "Couleur de bordure entre la barre d’activité en haut/bas et les vues.",
"sideBarBackground": "Couleur d'arrière-plan de la barre latérale. La barre latérale est le conteneur des affichages tels que ceux de l'exploration et la recherche.",
"sideBarBorder": "Couleur de bordure de la barre latérale faisant la séparation avec l'éditeur. La barre latérale est le conteneur des vues comme celles de l'explorateur et de la recherche.",
"sideBarDragAndDropBackground": "Couleur des commentaires dans une opération de glisser-déposer pour les sections de la barre latérale. La couleur doit être transparente pour que les sections de la barre latérale restent toujours visibles. La barre latérale est le conteneur des vues telles que celles de l'exploration et de la recherche. Les sections de la barre latérale sont des vues imbriquées dans la barre latérale.",
@@ -4020,6 +5160,11 @@
"sideBarSectionHeaderBackground": "Couleur d'arrière-plan de l'en-tête de section de barre latérale. La barre latérale est le conteneur des vues telles que celles de l'exploration et de la recherche. Les sections de la barre latérale sont des vues imbriquées dans la barre latérale.",
"sideBarSectionHeaderBorder": "Couleur de bordure de l'en-tête de section de barre latérale. La barre latérale est le conteneur des vues telles que celles de l'exploration et de la recherche. Les sections de la barre latérale sont des vues imbriquées dans la barre latérale.",
"sideBarSectionHeaderForeground": "Couleur de premier plan de l'en-tête de section de barre latérale. La barre latérale est le conteneur des vues telles que celles de l'exploration et de la recherche. Les sections de la barre latérale sont des vues imbriquées dans la barre latérale.",
+ "sideBarStickyScrollBackground": "Couleur d’arrière-plan du défilement épinglé dans la barre latérale.",
+ "sideBarStickyScrollBorder": "Couleur de bordure du défilement épinglé dans la barre latérale.",
+ "sideBarStickyScrollShadow": "Couleur d’ombre du défilement épinglé dans la barre latérale.",
+ "sideBarTitleBackground": "Couleur d’arrière-plan du titre de la barre latérale. La barre latérale est le conteneur des affichages tels que ceux de l'exploration et la recherche.",
+ "sideBarTitleBorder": "Couleur de bordure du titre de la barre latérale en bas, séparant le titre des vues. La barre latérale est le conteneur des affichages tels que ceux de l'exploration et la recherche.",
"sideBarTitleForeground": "Couleur de premier plan du titre de la barre latérale. La barre latérale est le conteneur des affichages tels que ceux de l'exploration et la recherche.",
"sideBySideEditor.horizontalBorder": "Couleur pour séparer deux éditeurs l'un de l'autre lorsqu'ils sont affichés côte à côte dans un groupe d'éditeurs de haut en bas.",
"sideBySideEditor.verticalBorder": "Couleur pour séparer deux éditeurs l'un de l'autre lorsqu'ils sont affichés côte à côte dans un groupe d'éditeurs de gauche à droite.",
@@ -4027,22 +5172,34 @@
"statusBarBorder": "Couleur de bordure de la barre d'état faisant la séparation avec la barre latérale et l'éditeur. La barre d'état est affichée en bas de la fenêtre.",
"statusBarErrorItemBackground": "Couleur d'arrière-plan des éléments d'erreur de la barre d'état. Les éléments d'erreur se distinguent des autres entrées de la barre d'état pour indiquer les conditions d'erreur. La barre d'état est affichée en bas de la fenêtre.",
"statusBarErrorItemForeground": "Couleur de premier plan des éléments d'erreur de la barre d'état. Les éléments d'erreur se distinguent des autres entrées de la barre d'état pour indiquer les conditions d'erreur. La barre d'état est affichée en bas de la fenêtre.",
+ "statusBarErrorItemHoverBackground": "Couleur d’arrière-plan des éléments d’erreur de barre d’état lors du pointage. Les éléments d’erreur se distinguent des autres entrées de la barre d’état pour indiquer les conditions d’erreur. La barre d’état est affichée en bas de la fenêtre.",
+ "statusBarErrorItemHoverForeground": "Couleur de premier plan des éléments d’erreur de barre d’état lors du pointage. Les éléments d’erreur se distinguent des autres entrées de la barre d’état pour indiquer les conditions d’erreur. La barre d’état est affichée en bas de la fenêtre.",
"statusBarFocusBorder": "Couleur de bordure de barre d’état lorsque vous vous concentrez sur la navigation au clavier. La barre d’état s’affiche en bas de la fenêtre.",
"statusBarForeground": "Couleur de premier plan de la barre d'état quand un espace de travail ou un dossier est ouvert. La barre d'état est affichée en bas de la fenêtre.",
"statusBarItemActiveBackground": "Couleur d'arrière-plan de l'élément de la barre d'état durant un clic. La barre d'état est affichée en bas de la fenêtre.",
"statusBarItemCompactHoverBackground": "Couleur d’arrière-plan de l’élément de la barre d’état lors du survol d’un élément contenant deux points. La barre d’état est affichée en bas de la fenêtre.",
"statusBarItemFocusBorder": "Couleur de bordure de l’élément de barre d’état lorsque vous vous concentrez sur la navigation au clavier. La barre d’état s’affiche en bas de la fenêtre.",
- "statusBarItemHostBackground": "Couleur d'arrière-plan de l'indicateur distant dans la barre d'état.",
- "statusBarItemHostForeground": "Couleur de premier plan de l'indicateur distant dans la barre d'état.",
"statusBarItemHoverBackground": "Couleur d'arrière-plan de l'élément de la barre d'état durant un pointage. La barre d'état est affichée en bas de la fenêtre.",
+ "statusBarItemHoverForeground": "Couleur de premier plan de l’élément de barre d’état lors du pointage. La barre d’état est affichée en bas de la fenêtre.",
+ "statusBarItemOfflineBackground": "Couleur d’arrière-plan de l’élément de barre d’état lorsque le banc d’essai est hors connexion.",
+ "statusBarItemOfflineForeground": "Couleur de premier plan de l’élément de barre d’état lorsque le banc d’essai est hors connexion.",
+ "statusBarItemRemoteBackground": "Couleur d'arrière-plan de l'indicateur distant dans la barre d'état.",
+ "statusBarItemRemoteForeground": "Couleur de premier plan de l'indicateur distant dans la barre d'état.",
"statusBarNoFolderBackground": "Couleur d'arrière-plan de la barre d'état quand aucun dossier n'est ouvert. La barre d'état est affichée en bas de la fenêtre.",
"statusBarNoFolderBorder": "Couleur de la bordure qui sépare la barre latérale et l’éditeur lorsqu’aucun dossier ne s’ouvre la barre d’état. La barre d’état s’affiche en bas de la fenêtre.",
"statusBarNoFolderForeground": "Couleur de premier plan de la barre d'état quand aucun dossier n'est ouvert. La barre d'état est affichée en bas de la fenêtre.",
- "statusBarProminentItemBackground": "Couleur d'arrière-plan des éléments importants de la barre d'état. Les éléments importants se différencient des autres entrées de la barre d'état pour indiquer l'importance. Changer le mode `Appuyer sur la touche tabulation déplace le focus` depuis la palette de commandes pour voir un exemple. La barre d'état est affichée en bas de la fenêtre.",
- "statusBarProminentItemForeground": "Couleur de premier-plan des éléments importants de la barre d'état. Les éléments importants se démarquent des autres entrées de la barre d'état pour indiquer leur importance. Changer le mode \"Activer/désactiver l'utilisation de la touche Tab pour déplacer le focus\" de la palette de commandes pour voir un exemple. La barre d'état s'affiche en bas de la fenêtre.",
- "statusBarProminentItemHoverBackground": "Couleur d'arrière-plan des éléments importants de la barre d'état lors du survol. Les éléments importants se différencient des autres entrées de la barre d'état pour indiquer l'importance. Changer le mode `Appuyer sur la touche tabulation déplace le focus` depuis la palette de commandes pour voir un exemple. La barre d'état est affichée en bas de la fenêtre.",
+ "statusBarOfflineItemHoverBackground": "Couleur d'arrière-plan de l'élément de la barre d'état au pointage lorsque le banc d'essai est hors connexion.",
+ "statusBarOfflineItemHoverForeground": "Couleur au pointage de premier plan de l’élément de barre d’état lorsque le banc d’essai est hors connexion.",
+ "statusBarProminentItemBackground": "Couleur d’arrière-plan des éléments importants de barre d’état. Les éléments importants se distinguent des autres entrées de la barre d’état pour indiquer l’importance. La barre d’état est affichée en bas de la fenêtre.",
+ "statusBarProminentItemForeground": "Couleur de premier plan des éléments importants de barre d’état. Les éléments importants se distinguent des autres entrées de la barre d’état pour indiquer l’importance. La barre d’état est affichée en bas de la fenêtre.",
+ "statusBarProminentItemHoverBackground": "Couleur d’arrière-plan des éléments importants de barre d’état lors du pointage. Les éléments importants se distinguent des autres entrées de la barre d’état pour indiquer l’importance. La barre d’état est affichée en bas de la fenêtre.",
+ "statusBarProminentItemHoverForeground": "Couleur de premier plan des éléments importants de barre d’état lors du pointage. Les éléments importants se distinguent des autres entrées de la barre d’état pour indiquer l’importance. La barre d’état est affichée en bas de la fenêtre.",
+ "statusBarRemoteItemHoverBackground": "Couleur d’arrière-plan de l’indicateur distant dans la barre d’état lors du pointage.",
+ "statusBarRemoteItemHoverForeground": "Couleur de premier plan de l’indicateur distant dans la barre d’état lors du pointage.",
"statusBarWarningItemBackground": "Couleur d'arrière-plan des éléments d'avertissement de la barre d'état. Les éléments d'avertissement se distinguent des autres entrées de la barre d'état pour indiquer les conditions d'avertissement. La barre d'état est affichée en bas de la fenêtre.",
"statusBarWarningItemForeground": "Couleur de premier plan des éléments d'avertissement de la barre d'état. Les éléments d'avertissement se distinguent des autres entrées de la barre d'état pour indiquer les conditions d'avertissement. La barre d'état est affichée en bas de la fenêtre.",
+ "statusBarWarningItemHoverBackground": "Couleur d'arrière-plan des éléments d'avertissement de la barre d'état lors du pointage. Les éléments d'avertissement se distinguent des autres entrées de la barre d'état pour indiquer les conditions d'avertissement. La barre d'état est affichée en bas de la fenêtre.",
+ "statusBarWarningItemHoverForeground": "Couleur de premier plan des éléments d’avertissement de barre d’état lors du pointage. Les éléments d’avertissement se distinguent des autres entrées de la barre d’état pour indiquer les conditions d’avertissement. La barre d’état est affichée en bas de la fenêtre.",
"tabActiveBackground": "Couleur d'arrière-plan de l'onglet actif. Les onglets sont les conteneurs des éditeurs dans la zone d'éditeurs. Vous pouvez ouvrir plusieurs onglets dans un groupe d'éditeurs. Il peut exister plusieurs groupes d'éditeurs.",
"tabActiveBorder": "Bordure en bas d'un onglet actif. Les onglets sont les conteneurs des éditeurs dans la zone d'édition. Vous pouvez ouvrir plusieurs onglets dans un groupe d'éditeurs. Il peut exister plusieurs groupes d'éditeurs.",
"tabActiveBorderTop": "Bordure en haut d'un onglet actif. Les onglets sont les conteneurs des éditeurs dans la zone d'édition. Vous pouvez ouvrir plusieurs onglets dans un groupe d'éditeurs. Il peut exister plusieurs groupes d'éditeurs.",
@@ -4051,12 +5208,16 @@
"tabActiveUnfocusedBorder": "Bordure en bas d'un onglet actif dans un groupe n'ayant pas le focus. Les onglets sont les conteneurs des éditeurs dans la zone d'édition. Vous pouvez ouvrir plusieurs onglets dans un groupe d'éditeurs. Il peut exister plusieurs groupes d'éditeurs.",
"tabActiveUnfocusedBorderTop": "Bordure en haut d'un onglet actif dans un groupe n'ayant pas le focus. Les onglets sont les conteneurs des éditeurs dans la zone d'édition. Vous pouvez ouvrir plusieurs onglets dans un groupe d'éditeurs. Il peut exister plusieurs groupes d'éditeurs.",
"tabBorder": "Bordure séparant les onglets les uns des autres. Les onglets sont les conteneurs des éditeurs dans la zone d'éditeurs. Vous pouvez ouvrir plusieurs onglets dans un groupe d'éditeurs. Il peut exister plusieurs groupes d'éditeurs.",
+ "tabDragAndDropBorder": "Bordure entre les onglets pour indiquer qu’un onglet peut être inséré entre deux onglets. Les onglets sont les conteneurs des éditeurs dans la zone d’éditeurs. Vous pouvez ouvrir plusieurs onglets dans un groupe d’éditeurs. Il peut y avoir plusieurs groupes d’éditeurs.",
"tabHoverBackground": "Couleur de l'onglet d’arrière-plan lors du survol. Les onglets sont les conteneurs pour les éditeurs dans la zone de l’éditeur. Plusieurs onglets peuvent être ouverts dans un groupe d'éditeur. Il peut y avoir plusieurs groupes d’éditeur.",
"tabHoverBorder": "Bordure avec laquelle surligner les onglets lors du survol. Couleur de l'onglet d’arrière-plan dans un groupe n'ayant pas le focus lors du survol. Les onglets sont les conteneurs pour les éditeurs dans la zone de l’éditeur. Plusieurs onglets peuvent être ouverts dans un groupe d'éditeur. Il peut y avoir plusieurs groupes d’éditeur.",
"tabHoverForeground": "Couleur de premier plan de l'onglet quand un utilisateur pointe dessus. Les onglets sont les conteneurs des éditeurs dans la zone d'éditeurs. Vous pouvez ouvrir plusieurs onglets dans un groupe d'éditeurs. Il peut exister plusieurs groupes d'éditeurs.",
"tabInactiveBackground": "Couleur d'arrière-plan de l'onglet inactif. Les onglets sont les conteneurs des éditeurs dans la zone d'éditeurs. Vous pouvez ouvrir plusieurs onglets dans un groupe d'éditeurs. Il peut exister plusieurs groupes d'éditeurs.",
"tabInactiveForeground": "Couleur de premier plan de l'onglet inactif dans un groupe actif. Les onglets sont les conteneurs des éditeurs dans la zone d'éditeurs. Vous pouvez ouvrir plusieurs onglets dans un groupe d'éditeurs. Il peut exister plusieurs groupes d'éditeurs.",
"tabInactiveModifiedBorder": "Bordure en haut des onglets inactifs modifiés dans un groupe actif. Les onglets sont les conteneurs des éditeurs dans la zone d'édition. Plusieurs onglets peuvent être ouverts dans un groupe d'éditeurs. Il peut y avoir plusieurs groupes d'éditeurs.",
+ "tabSelectedBackground": "Arrière-plan d’un onglet sélectionné. Les onglets sont les conteneurs des éditeurs dans la zone d’éditeurs. Vous pouvez ouvrir plusieurs onglets dans un groupe d’éditeurs. Il peut y avoir plusieurs groupes d’éditeurs.",
+ "tabSelectedBorderTop": "Bordure en haut d’un onglet sélectionné. Les onglets sont les conteneurs des éditeurs dans la zone d’éditeurs. Vous pouvez ouvrir plusieurs onglets dans un groupe d’éditeurs. Il peut y avoir plusieurs groupes d’éditeurs.",
+ "tabSelectedForeground": "Premier plan d’un onglet sélectionné. Les onglets sont les conteneurs des éditeurs dans la zone d’éditeurs. Vous pouvez ouvrir plusieurs onglets dans un groupe d’éditeurs. Il peut y avoir plusieurs groupes d’éditeurs.",
"tabUnfocusedActiveBackground": "Couleur d'arrière-plan de l'onglet actif dans un groupe sans le focus. Les onglets sont les conteneurs des éditeurs dans la zone d'éditeur. Vous pouvez ouvrir plusieurs onglets dans un même groupe d'éditeurs. Vous pouvez avoir plusieurs groupes d'éditeurs.",
"tabUnfocusedActiveForeground": "Couleur de premier plan de l'onglet actif dans un groupe inactif. Les onglets sont les conteneurs des éditeurs dans la zone d'éditeurs. Vous pouvez ouvrir plusieurs onglets dans un groupe d'éditeurs. Il peut exister plusieurs groupes d'éditeurs.",
"tabUnfocusedHoverBackground": "Couleur de l'onglet d’arrière-plan dans un groupe n'ayant pas le focus lors du survol. Les onglets sont les conteneurs pour les éditeurs dans la zone de l’éditeur. Plusieurs onglets peuvent être ouverts dans un groupe d'éditeur. Il peut y avoir plusieurs groupes d’éditeur.",
@@ -4073,30 +5234,41 @@
"titleBarInactiveForeground": "Premier plan de la barre de titre quand la fenêtre est inactive.",
"unfocusedActiveModifiedBorder": "Bordure en haut des onglets actifs modifiés dans un groupe n'ayant pas le focus. Les onglets sont les conteneurs des éditeurs dans la zone d'édition. Vous pouvez ouvrir plusieurs onglets dans un groupe d'éditeurs. Il peut exister plusieurs groupes d'éditeurs.",
"unfocusedINactiveModifiedBorder": "Bordure en haut des onglets inactifs modifiés dans un groupe n'ayant pas le focus. Les onglets sont les conteneurs des éditeurs dans la zone d'édition. Vous pouvez ouvrir plusieurs onglets dans un groupe d'éditeurs. Il peut exister plusieurs groupes d'éditeurs.",
- "windowActiveBorder": "Couleur utilisée pour la bordure de la fenêtre quand elle est active. Prise en charge uniquement dans le client de bureau en cas d'utilisation de la barre de titre personnalisée.",
- "windowInactiveBorder": "Couleur utilisée pour la bordure de la fenêtre quand elle est inactive. Prise en charge uniquement dans le client de bureau en cas d'utilisation de la barre de titre personnalisée."
+ "windowActiveBorder": "Couleur utilisée pour la bordure de la fenêtre lorsqu’elle est active sur macOS ou Linux. Nécessite un style de barre de titre personnalisé et des contrôles de fenêtre personnalisés ou masqués sur Linux.",
+ "windowInactiveBorder": "Couleur utilisée pour la bordure de la fenêtre lorsqu’elle est inactive sur macOS ou Linux. Nécessite un style de barre de titre personnalisé et des contrôles de fenêtre personnalisés ou masqués sur Linux."
},
"vs/workbench/common/views": {
"defaultViewIcon": "Icône de vue par défaut.",
- "duplicateId": "Une vue avec l'ID '{0}' est déjà inscrite"
+ "duplicateId": "Une vue avec l'ID '{0}' est déjà inscrite",
+ "treeView.notRegistered": "Aucune arborescence avec l'ID \"{0}\" n'est inscrite.",
+ "views log": "Vues"
},
- "vs/workbench/electron-sandbox/actions/developerActions": {
+ "vs/workbench/electron-browser/actions/developerActions": {
"configureRuntimeArguments": "Configurer les arguments de runtime",
"reloadWindowWithExtensionsDisabled": "Recharger avec les extensions désactivées",
- "toggleDevTools": "Activer/désactiver les outils de développement",
- "toggleSharedProcess": "Activer/désactiver le processus partagé"
- },
- "vs/workbench/electron-sandbox/actions/installActions": {
+ "revealUserDataFolder": "Divulguer le dossier des données utilisateur",
+ "showGPUInfo": "Afficher les informations sur le processeur graphique",
+ "stopTracing": "Arrêter le traçage",
+ "stopTracing.button": "&&Relancer et activer le suivi",
+ "stopTracing.detail": "Cette opération peut prendre jusqu’à une minute.",
+ "stopTracing.message": "Le traçage nécessite le lancement avec un argument '--trace'",
+ "stopTracing.title": "Création du fichier de trace...",
+ "toggleDevTools": "Activer/désactiver les outils de développement"
+ },
+ "vs/workbench/electron-browser/actions/installActions": {
"install": "Installer la commande '{0}' dans PATH",
- "shellCommand": "Commande d'interpréteur de commandes",
+ "shellCommand": "Commande shell",
"successFrom": "La commande d'interpréteur de commandes '{0}' a été correctement désinstallée à partir de PATH.",
"successIn": "La commande d'interpréteur de commandes '{0}' a été correctement installée dans PATH.",
"uninstall": "Désinstaller la commande '{0}' de PATH"
},
- "vs/workbench/electron-sandbox/actions/windowActions": {
+ "vs/workbench/electron-browser/actions/windowActions": {
"close": "Fermer la fenêtre",
+ "closeActive": "Fermez la fenêtre active",
"closeWindow": "Fermer la fenêtre",
"current": "Fenêtre active",
+ "disableWindowAlwaysOnTop": "Désactiver Toujours visible",
+ "enableWindowAlwaysOnTop": "Activer Toujours visible",
"miCloseWindow": "Ferm&&er la fenêtre",
"miZoomIn": "&&Zoom avant",
"miZoomOut": "&&Zoom arrière",
@@ -4104,45 +5276,76 @@
"quickSwitchWindow": "Changement rapide de fenêtre...",
"switchWindow": "Changer de fenêtre...",
"switchWindowPlaceHolder": "Sélectionner une fenêtre vers laquelle basculer",
+ "toggleWindowAlwaysOnTop": "Basculer la fenêtre toujours au premier plan",
"windowDirtyAriaLabel": "{0}, fenêtre contenant des changements non enregistrés",
+ "windowGroup": "groupe de fenêtres",
"zoomIn": "Zoom avant",
"zoomOut": "Zoom arrière",
"zoomReset": "Réinitialiser le zoom"
},
- "vs/workbench/electron-sandbox/desktop.contribution": {
+ "vs/workbench/electron-browser/desktop.contribution": {
+ "application.shellEnvironmentResolutionTimeout": "Contrôle le délai d’expiration en secondes avant d’abandonner la résolution de l’environnement d’interpréteur de commandes lorsque l’application n’est pas déjà lancée à partir d’un terminal. Pour plus d’informations, consultez notre [documentation](https://go.microsoft.com/fwlink/?linkid=2149667).",
"argv.crashReporterId": "ID unique utilisé pour mettre en corrélation les rapports de plantage envoyés à partir de cette instance d'application.",
+ "argv.disableChromiumSandbox": "Désactive le bac à sable Chromium. Cela est utile lors de l’exécution de VS Code avec élévation de privilèges sur Linux et sous AppLocker sur Windows.",
"argv.disableHardwareAcceleration": "Désactive l'accélération matérielle. Changez cette option UNIQUEMENT si vous rencontrez des problèmes graphiques.",
+ "argv.disableLcdText": "Désactive l’anticrénelage de polices NULL.",
"argv.enableCrashReporter": "Permet de désactiver les rapports de plantage. Doit permettre le redémarrage de l'application en cas de changement de la valeur.",
+ "argv.enableRDPDisplayTracking": "Garantit que les fenêtres agrandies sont restaurées pour s’afficher correctement pendant la reconnexion RDP.",
"argv.enebleProposedApi": "Activez les API proposées pour une liste d'ID d'extension (par exemple 'vscode.git'). Les API proposées sont instables et peuvent cesser de fonctionner sans avertissement à tout moment. Ne définissez cette option qu'à des fins de développement et de test d'extension.",
"argv.force-renderer-accessibility": "Force l'accessibilité du renderer. Changez ce paramètre UNIQUEMENT si vous utilisez un lecteur d'écran sur Linux. Sur les autres plateformes, le renderer est automatiquement accessible. Cet indicateur est automatiquement défini si vous avez activé editor.accessibilitySupport.",
"argv.forceColorProfile": "Permet de remplacer le profil de couleur à utiliser. Si des couleurs ne s'affichent pas correctement, essayez de définir la valeur 'srgb' et redémarrez.",
"argv.locale": "Langue d'affichage à utiliser. Le choix d'une autre langue nécessite l'installation du pack linguistique associé.",
- "argv.logLevel": "Niveau de journalisation à utiliser. La valeur par défaut est 'info'. Les valeurs autorisées sont 'critical', 'error', 'warn', 'info', 'debug', 'trace', 'off.",
+ "argv.logLevel": "Niveau de journalisation à utiliser. La valeur par défaut est 'info'. Les valeurs autorisées sont 'error', 'warn', 'info', 'debug', 'trace', 'off'.",
+ "argv.passwordStore": "Configure le backend utilisé pour stocker les secrets sous Linux. Cet argument est ignoré sous Windows et macOS.",
+ "argv.proxyBypassList": "Ignorez tout proxy spécifié pour la liste d’hôtes séparée par des points-virgules. Exemple de valeur « ;*.microsoft.com;*foo.com; 1.2.3.4:5678 », utilisera le serveur proxy pour tous les hôtes, à l’exception des adresses locales (localhost, 127.0.0.1, etc.), microsoft.com sous-domaines, hôtes qui contiennent le suffixe foo.com et n’importe quel élément au format 1.2.3.4:5678",
+ "argv.remoteDebuggingPort": "Spécifie le port à utiliser pour le débogage à distance.",
+ "argv.useInMemorySecretStorage": "Garantit qu'un magasin en mémoire sera utilisé pour le stockage secret au lieu d'utiliser le magasin d'informations d'identification du système d'exploitation. Ceci est souvent utilisé lors de l'exécution de tests d'extension VS Code ou lorsque vous rencontrez des difficultés avec le magasin d'informations d'identification.",
"closeWhenEmpty": "Contrôle si la fermeture du dernier éditeur doit également fermer la fenêtre. Ce paramètre s’applique uniquement pour les fenêtres qui n'affichent pas de dossiers.",
- "dialogStyle": "Ajustez l'apparence des fenêtres de dialogue.",
+ "confirmSaveUntitledWorkspace": "Contrôle si une boîte de dialogue de confirmation vous demande d’enregistrer ou d’abandonner un espace de travail ouvert sans titre dans la fenêtre lors de la commutation vers un autre espace de travail. Si vous désactivez de boîte de dialogue de confirmation, le programme abandonne toujours l’espace de travail sans titre.",
+ "controlsStyle": "Ajustez l’apparence des contrôles de fenêtre pour qu’ils soient natifs du système d’exploitation, dessinés sur mesure ou masqués. Un redémarrage complet est nécessaire pour appliquer les modifications.",
+ "dialogStyle": "Ajuster l’apparence des boîtes de dialogue pour qu’elles soient natives au système d’exploitation ou personnalisées.",
"enableCrashReporterDeprecated": "Si ce paramètre a la valeur false, aucune télémétrie n’est envoyée, quelle que soit la valeur du nouveau paramètre. Déprécié en raison d’une combinaison dans le paramètre {0}.",
- "experimentalUseSandbox": "Expérimental : quand cette option est activée, le mode bac à sable (sandbox) est activé dans la fenêtre via l’API Electron.",
"keyboardConfigurationTitle": "Clavier",
"mergeAllWindowTabs": "Fusionner toutes les fenêtres",
"miExit": "&&Quitter",
"moveWindowTabToNewWindow": "Déplacer l’onglet de la fenêtre vers la nouvelle fenêtre",
"newTab": "Nouvel onglet de fenêtre",
- "newWindowDimensions": "Contrôle les dimensions d'ouverture d'une nouvelle fenêtre quand au moins une fenêtre est déjà ouverte. Par défaut, une nouvelle fenêtre s'ouvre au centre de l'écran avec des dimensions réduites. Notez que ce paramètre n'a aucun impact sur la première fenêtre ouverte, laquelle est toujours restaurée à la taille et l'emplacement définis au moment de sa fermeture.",
+ "newWindowDimensions": "Contrôle les dimensions d'ouverture d'une nouvelle fenêtre quand au moins une fenêtre est déjà ouverte. Par défaut, une nouvelle fenêtre s'ouvre au centre de l'écran avec des dimensions réduites. Notez que ce paramètre n'a aucun impact sur la première fenêtre ouverte, laquelle est toujours restaurée à la taille et l'emplacement définis au moment de sa fermeture. ",
"openWithoutArgumentsInNewWindow": "Contrôle si une nouvelle fenêtre vide doit s’ouvrir lors du démarrage d’une seconde instance sans arguments, ou si la dernière instance en cours d’exécution doit obtenir le focus.\r\nNotez qu’il peut encore exister des cas où ce paramètre est ignoré (par exemple lorsque vous utilisez l'option de ligne de commande `--new-window` or `--reuse-window`).",
"restoreFullscreen": "Contrôle si une fenêtre doit être restaurée en mode plein écran si elle a été fermée dans ce mode.",
- "restoreWindows": "Contrôle la façon dont les fenêtres sont rouvertes après le tout premier démarrage. Ce paramètre n'a aucun effet quand l'application est déjà en cours d'exécution.",
+ "restoreWindows": "Contrôle la manière dont les fenêtres et les éditeurs qu'elles contiennent sont restaurés à l'ouverture.",
+ "security.promptForLocalFileProtocolHandling": "Si elle est activée, une boîte de dialogue demandera une confirmation chaque fois qu'un fichier local ou un espace de travail est sur le point de s'ouvrir via un gestionnaire de protocole.",
+ "security.promptForRemoteFileProtocolHandling": "Si elle est activée, une boîte de dialogue demandera une confirmation chaque fois qu'un fichier ou un espace de travail distant est sur le point de s'ouvrir via un gestionnaire de protocole.",
"showNextWindowTab": "Afficher l'onglet de fenêtre suivant",
"showPreviousTab": "Afficher l'onglet de fenêtre précédent",
"telemetry.enableCrashReporting": "Activez la collecte des rapports d’incident. Cela nous permet d’améliorer la stabilité. \r\nCette option nécessite un redémarrage pour prendre effet.",
"telemetryConfigurationTitle": "Télémétrie",
- "titleBarStyle": "Réglez l'apparence de la barre de titre de la fenêtre. Sur Linux et Windows, ce paramètre affecte aussi l'apparence de l'application et du menu contextuel. L'application des changements nécessite un redémarrage complet.",
+ "titleBarStyle": "Ajustez l’apparence de la barre de titre de la fenêtre pour qu’elle soit native par le système d’exploitation ou personnalisée. L'application des changements nécessite un redémarrage complet.",
"toggleWindowTabsBar": "Activer/désactiver la barre de fenêtres d’onglets",
"touchbar.enabled": "Active les boutons de la touchbar macOS sur le clavier si disponible.",
"touchbar.ignored": "Ensemble d'identificateurs pour les entrées de la Touch Bar qui ne doivent pas apparaître (par exemple 'workbench.action.navigateBack').",
+ "window.border.color": "{0} : couleur spécifique au format Hex, RVB, RGBA, HSL, HSLA",
+ "window.border.default": "{0} : respecter les paramètres du thème de couleur, revenir aux paramètres Windows",
+ "window.border.off": "{0} : désactiver les couleurs de bordure",
+ "window.border.prefix": "Contrôle la couleur de bordure de la fenêtre :",
+ "window.border.suffix": "Utilisez {0} pour définir des couleurs différentes pour les fenêtres actives et inactives. Ce paramètre est ignoré quand {1} est défini sur {2}.",
+ "window.border.system": "{0} : respecter uniquement les paramètres de Windows",
"window.clickThroughInactive": "Si activée, cliquer sur une fenêtre inactive activera la fenêtre et déclenchera l’élément sous la souris, si elle est cliquable. Si désactivé, cliquer n’importe où sur une fenêtre inactive va seulement l'activer et un second clic sur l’élément sera nécessaire.",
- "window.doubleClickIconToClose": "Si activé, un double clic sur l'icône de l'application dans la barre de titre ferme la fenêtre, laquelle ne peut pas être déplacée par l'icône. Ce paramètre s'applique uniquement quand '#window.titleBarStyle#' est défini sur 'custom'.",
+ "window.customTitleBarVisibility": "Ajustez le moment où la barre de titre personnalisée doit s’afficher. La barre de titre personnalisée peut être masquée en mode plein écran avec l’option « windowed ». La barre de titre personnalisée peut uniquement être masquée en mode autre que plein écran avec l’option « never » lorsque {0} est défini sur « native ».",
+ "window.customTitleBarVisibility.auto": "Modifie automatiquement la visibilité de la barre de titre personnalisée.",
+ "window.customTitleBarVisibility.never": "Masquer la barre de titre personnalisée lorsque {0} est défini sur « native ».",
+ "window.customTitleBarVisibility.windowed": "Masquez la barre de titre personnalisée en plein écran. Lorsque vous n’êtes pas en plein écran, modifiez automatiquement la visibilité de la barre de titre personnalisée.",
+ "window.doubleClickIconToClose": "Si cette option est activée, ce paramètre ferme la fenêtre lorsque l’icône de l’application dans la barre de titre est double-cliquée. La fenêtre ne pourra pas être déplacée par l’icône. Ce paramètre n’est effectif que si {0} est défini sur « personnalisé ».",
+ "window.menuStyle": "Ajustez le style du menu pour qu'il soit natif du système d'exploitation, personnalisé ou hérité du style de la barre de titre défini dans {0}. Cela affecte également l'apparence du menu contextuel. L'application des changements nécessite un redémarrage complet.",
+ "window.menuStyle.custom": "Utilisez le menu personnalisé.",
+ "window.menuStyle.custom.mac": "Utilisez le menu contextuel personnalisé.",
+ "window.menuStyle.inherit": "Faites correspondre le style du menu au style de la barre de titre défini dans {0}.",
+ "window.menuStyle.inherit.mac": "Faites correspondre le style du menu contextuel du style de la barre de titre défini dans {0}.",
+ "window.menuStyle.mac": "Ajustez l'apparence du menu contextuel pour qu'elle soit native au système d'exploitation, personnalisée ou héritée du style de barre de titre défini dans {0}.",
+ "window.menuStyle.native": "Utilisez le menu natif. Ceci est ignoré lorsque {0} est défini sur {1}.",
+ "window.menuStyle.native.mac": "Utilisez le menu contextuel natif.",
"window.nativeFullScreen": "Détermine si le plein écran natif doit être utilisé sur macOS. Désactivez cette option pour empêcher macOS de créer un espace en cas de passage au plein écran.",
- "window.nativeTabs": "Active les onglets macOS Sierra. Notez que vous devez redémarrer l'ordinateur pour appliquer les modifications et que les onglets natifs désactivent tout style de barre de titre personnalisé configuré, le cas échéant.",
+ "window.nativeTabs": "Active les onglets de fenêtre natifs de macOS. Notez que vous devez redémarrer l'ordinateur pour appliquer les modifications et que les onglets natifs désactivent tout style de barre de titre personnalisé configuré, le cas échéant.",
"window.newWindowDimensions.default": "Permet d'ouvrir les nouvelles fenêtres au centre de l'écran.",
"window.newWindowDimensions.fullscreen": "Permet d'ouvrir les nouvelles fenêtres en mode plein écran.",
"window.newWindowDimensions.inherit": "Permet d'ouvrir les nouvelles fenêtres avec la même dimension que la dernière fenêtre active.",
@@ -4150,43 +5353,41 @@
"window.newWindowDimensions.offset": "Ouvrez les nouvelles fenêtres avec la même dimension que la dernière fenêtre active et une position décalée.",
"window.openWithoutArgumentsInNewWindow.off": "Mettre le focus sur la dernière instance active",
"window.openWithoutArgumentsInNewWindow.on": "Ouvrir une nouvelle fenêtre vide.",
- "window.reopenFolders.all": "Rouvre toutes les fenêtres, sauf si un dossier, un espace de travail ou un fichier est ouvert (par exemple à partir de la ligne de commande).",
- "window.reopenFolders.folders": "Rouvre toutes les fenêtres qui comportaient des dossiers ou des espaces de travail ouverts, sauf si un dossier, un espace de travail ou un fichier est ouvert (par exemple à partir de la ligne de commande).",
+ "window.reopenFolders.all": "Rouvre toutes les fenêtres, sauf si un dossier, un espace de travail ou un fichier est ouvert (par exemple à partir de la ligne de commande). Si un fichier est ouvert, il remplace l’un des éditeurs précédemment ouverts dans une fenêtre.",
+ "window.reopenFolders.folders": "Rouvre toutes les fenêtres qui comportaient des dossiers ou des espaces de travail ouverts, sauf si un dossier, un espace de travail ou un fichier est ouvert (par exemple à partir de la ligne de commande). Si un fichier est ouvert, il remplace l’un des éditeurs précédemment ouverts dans une fenêtre.",
"window.reopenFolders.none": "Ne rouvre jamais une fenêtre. À moins qu'un dossier ou un espace de travail ne soit ouvert (par exemple à partir de la ligne de commande), une fenêtre vide s'affiche.",
- "window.reopenFolders.one": "Rouvre la dernière fenêtre active, sauf si un dossier, un espace de travail ou un fichier est ouvert (par exemple à partir de la ligne de commande).",
- "window.reopenFolders.preserve": "Rouvre toujours toutes les fenêtres. Si un dossier ou un espace de travail est ouvert (par exemple à partir de la ligne de commande), il s'ouvre dans une nouvelle fenêtre, sauf s'il est déjà ouvert. Si des fichiers sont ouverts, ils s'ouvrent dans l'une des fenêtres restaurées.",
+ "window.reopenFolders.one": "Rouvre la dernière fenêtre active, sauf si un dossier, un espace de travail ou un fichier est ouvert (par exemple à partir de la ligne de commande). Si un fichier est ouvert, il remplace l’un des éditeurs précédemment ouverts dans une fenêtre.",
+ "window.reopenFolders.preserve": "Rouvre toujours toutes les fenêtres. Si un dossier ou un espace de travail est ouvert (par exemple à partir de la ligne de commande), il s'ouvre dans une nouvelle fenêtre, sauf s'il est déjà ouvert. Si des fichiers sont ouverts, ils s’ouvrent dans l’une des fenêtres restaurées avec les éditeurs qui ont été ouverts précédemment.",
"windowConfigurationTitle": "Fenêtre",
- "windowControlsOverlay": "Utilisez les contrôles de fenêtre fournis par la plateforme à la place de nos contrôles de fenêtre HTML. Les modifications nécessitent un redémarrage complet pour s’appliquer.",
- "zoomLevel": "Modifiez le niveau de zoom de la fenêtre. La taille d'origine est 0. Chaque incrément supérieur (exemple : 1) ou inférieur (exemple : -1) représente un zoom 20 % plus gros ou plus petit. Vous pouvez également entrer des décimales pour changer le niveau de zoom avec une granularité plus fine."
+ "zoomLevel": "Ajustez le niveau de zoom par défaut pour toutes les fenêtres. Chaque incrément au-dessus de « 0 » (par exemple, « 1 ») ou au-dessous (par exemple, « -1 ») représente le zoom « 20 % » plus grand ou plus petit. Vous pouvez également entrer des décimales pour ajuster le niveau de zoom avec une granularité plus fine. Veuillez consulter {0} pour savoir si les commandes « Zoom avant » et « Zoom arrière » appliquent le niveau de zoom à toutes les fenêtres ou uniquement à la fenêtre active.",
+ "zoomPerWindow": "Contrôle si les commandes « Zoom avant » et « Zoom arrière » appliquent le niveau de zoom à toutes les fenêtres ou uniquement à la fenêtre active. Veuillez consulter le lien {0} pour configurer un niveau de zoom par défaut pour toutes les fenêtres."
},
- "vs/workbench/electron-sandbox/desktop.main": {
+ "vs/workbench/electron-browser/desktop.main": {
"join.closeStorage": "Enregistrement de l’état de l’interface utilisateur"
},
- "vs/workbench/electron-sandbox/parts/dialogs/dialogHandler": {
- "aboutDetail": "Version : {0}\r\nValidation : {1}\r\nDate : {2}\r\nElectron : {3}\r\nChromium: {4}\r\nNode.js : {5}\r\nV8 : {6}\r\nSystème d’exploitation : {7}",
- "cancelButton": "Annuler",
+ "vs/workbench/electron-browser/parts/dialogs/dialogHandler": {
"copy": "&&Copier",
- "okButton": "OK",
- "yesButton": "&&Oui"
+ "okButton": "OK"
},
- "vs/workbench/electron-sandbox/window": {
- "cancelButton": "&&Annuler",
- "closeWindowButtonLabel": "&&Fermer la fenêtre",
- "closeWindowMessage": "Voulez-vous vraiment fermer la fenêtre ?",
- "doNotAskAgain": "Ne plus me poser la question",
- "exitButtonLabel": "&&Quitter",
+ "vs/workbench/electron-browser/window": {
+ "appRootWarning.banner": "Les fichiers que vous stockez dans le dossier d’installation ('{0}') peuvent être ÉCRASÉS ou EFFACÉS de manière IRRÉVERSIBLE sans avertissement au moment de la mise à jour.",
+ "configure": "Configurer",
+ "downloadArmBuild": "Télécharger",
"keychainWriteError": "Échec de l'écriture des informations de connexion dans le trousseau. Erreur '{0}'.",
- "learnMore": "En savoir plus",
- "loaderCycle": "Il existe un cycle de dépendance dans les modules AMD qui doit être résolu !",
+ "learnMore": "Découvrir plus d’informations",
"loginButton": "&&Se connecter",
+ "macoseolmessage": "{0} sur {1} ne recevront bientôt plus de mises à jour. Envisagez de mettre à niveau votre version macOS.",
"password": "Mot de passe",
"proxyAuthRequired": "Authentification du proxy obligatoire",
"proxyDetail": "Le proxy '{0}' nécessite un nom d'utilisateur et un mot de passe.",
- "quitButtonLabel": "&&Quitter",
- "quitMessage": "Voulez-vous vraiment quitter ?",
- "quitMessageMac": "Voulez-vous vraiment quitter ?",
"rememberCredentials": "Mémoriser mes informations d'identification",
+ "resolveShellEnvironment": "Résolution de l’environnement d’interpréteur de commandes...",
+ "restart": "Redémarrer",
"runningAsRoot": "Il est déconseillé d’exécuter {0} en tant qu’utilisateur root.",
+ "runningTranslated": "Vous exécutez une version émulée de {0}. Pour de meilleures performances, téléchargez la version native arm64 de {0} pour votre machine.",
+ "sharedProcessCrash": "Un processus en arrière-plan partagé s’est arrêté de manière inattendue. Redémarrez l’application pour récupérer.",
+ "showArgvParseWarning": "Le fichier d’arguments d’exécution « argv.json » contient des erreurs. Corrigez-les et redémarrez.",
+ "showArgvParseWarningAction": "Ouvrir un fichier",
"shutdownErrorClose": "Une erreur inattendue a empêché la fermeture de la fenêtre.",
"shutdownErrorDetail": "Erreur : {0}",
"shutdownErrorLoad": "Une erreur inattendue a empêché de modifier l’espace de travail.",
@@ -4200,56 +5401,389 @@
"shutdownTitleLoad": "Le changement de l'espace de travail prend un peu plus de temps...",
"shutdownTitleQuit": "Quitter l'application prend un peu plus de temps...",
"shutdownTitleReload": "Le rechargement de la fenêtre prend un peu plus de temps...",
+ "status.windowZoom": "Zoom de fenêtre",
"troubleshooting": "Guide de résolution des problèmes",
- "username": "Nom d'utilisateur",
- "willShutdownDetail": "Les opérations suivantes sont toujours en cours d’exécution : \r\n{0}"
- },
- "vs/workbench/contrib/audioCues/browser/audioCueService": {
- "audioCues.lineHasBreakpoint.name": "Point d’arrêt sur ligne",
- "audioCues.lineHasError.name": "Erreur sur la ligne",
- "audioCues.lineHasFoldedArea.name": "Zone pliée sur la ligne",
- "audioCues.lineHasInlineSuggestion.name": "Suggestion inline sur la ligne",
- "audioCues.lineHasWarning.name": "Avertissement sur la ligne",
- "audioCues.noInlayHints": "Aucun indicateur d’inlay sur la ligne",
- "audioCues.onDebugBreak.name": "Débogueur arrêté sur le point d’arrêt"
+ "username": "Nom d’utilisateur",
+ "willShutdownDetail": "Les opérations suivantes sont toujours en cours d’exécution : \r\n{0}",
+ "zoomIn": "Zoom avant",
+ "zoomNumber": "Niveau de zoom : {0} ({1} %)",
+ "zoomOut": "Zoom arrière",
+ "zoomReset": "Réinitialiser",
+ "zoomResetLabel": "{0} ({1})",
+ "zoomSettings": "Paramètres"
+ },
+ "vs/workbench/contrib/accessibility/browser/accessibilityConfiguration": {
+ "accessibility.debugWatchVariableAnnouncements": "Contrôle si les modifications de variable doivent être annoncées dans l’affichage espion de débogage.",
+ "accessibility.hideAccessibleView": "Contrôle si la vue accessible est masquée.",
+ "accessibility.openChatEditedFiles": "Contrôle si les fichiers doivent être ouverts lorsque l’agent de conversation a appliqué des modifications.",
+ "accessibility.replEditor.readLastExecutedOutput": "Contrôle si la sortie d’une exécution dans le REPL natif sera annoncée.",
+ "accessibility.signalOptions.debouncePositionChanges": "Indique si les changements de position doivent être ou non avoir une réponse",
+ "accessibility.signalOptions.delays.errorAtPosition.announcement": "Délai en millisecondes avant une annonce en cas d’erreur sur la position.",
+ "accessibility.signalOptions.delays.errorAtPosition.sound": "Délai en millisecondes avant la lecture d’un son en cas d’erreur sur la position.",
+ "accessibility.signalOptions.delays.general.announcement": "Délai en millisecondes avant une annonce.",
+ "accessibility.signalOptions.delays.general.sound": "Délai en millisecondes avant la lecture d’un son.",
+ "accessibility.signalOptions.delays.warningAtPosition.announcement": "Délai en millisecondes avant une annonce en cas d’avertissement sur la position.",
+ "accessibility.signalOptions.delays.warningAtPosition.sound": "Délai en millisecondes avant la lecture d’un son en cas d’avertissement à la position.",
+ "accessibility.signalOptions.volume": "Volume des sons en pourcentage (0-100).",
+ "accessibility.signals.chatEditModifiedFile": "Lit un signal audio/sonore lors de la découverte d’un fichier avec les modifications apportées par les modifications de conversation",
+ "accessibility.signals.chatEditModifiedFile.sound": "Émet un son lors de la découverte d’un fichier avec les modifications apportées par les modifications apportées à la conversation",
+ "accessibility.signals.chatRequestSent": "Émet un signal - son (signal audio) et/ou annonce (alerte) - lorsqu'une requête de chat est effectuée.",
+ "accessibility.signals.chatRequestSent.announcement": "Annonce lorsqu'une requête de chat est faite.",
+ "accessibility.signals.chatRequestSent.sound": "Émet un son lorsqu’une requête de conversation est effectuée.",
+ "accessibility.signals.chatResponseReceived": "Lit un signal audio/audio lorsque la réponse a été reçue.",
+ "accessibility.signals.chatResponseReceived.sound": "Lit un son lorsque la réponse a été reçue.",
+ "accessibility.signals.chatUserActionRequired": "Joue un signal – Son (repère audio) et/ou annonce (alerte) – Lorsqu’une action de l’utilisateur est requise dans la conversation.",
+ "accessibility.signals.chatUserActionRequired.announcement": "Annonce lorsqu’une action de l’utilisateur est requise dans la conversation, y compris des informations sur l’action et la manière de l’effectuer.",
+ "accessibility.signals.chatUserActionRequired.sound": "Emet un son lorsqu’une action de l’utilisateur est requise dans la conversation.",
+ "accessibility.signals.clear": "Lit un signal ( signal audio) et/ou annonce (alerte) lorsqu’une fonctionnalité est effacée (par exemple, le terminal, Console de débogage ou le canal de sortie).",
+ "accessibility.signals.clear.announcement": "Annonce quand une fonctionnalité est effacée.",
+ "accessibility.signals.clear.sound": "Lit un son lorsqu’une fonctionnalité est effacée.",
+ "accessibility.signals.codeActionApplied": "Lit un son / signal audio lorsque l’action de code a été appliquée.",
+ "accessibility.signals.codeActionApplied.sound": "Lit un son lorsque l’action de code a été appliquée.",
+ "accessibility.signals.codeActionTriggered": "Joue un son / signal audio : lorsqu'une action de code a été déclenchée.",
+ "accessibility.signals.codeActionTriggered.sound": "Lit un son lorsqu’une action de code a été déclenchée.",
+ "accessibility.signals.diffLineDeleted": "Lit un signal audio/audio lorsque le focus se déplace vers une ligne supprimée en mode Accessible Diff Viewer ou vers la modification suivante/précédente.",
+ "accessibility.signals.diffLineDeleted.sound": "Joue un son lorsque le focus se déplace vers une ligne supprimée en mode Visionneuse Diff accessible ou vers la modification suivante/précédente.",
+ "accessibility.signals.diffLineInserted": "Lit un signal audio/audio lorsque le focus se déplace sur une ligne insérée en mode Visionneuse diff accessible ou sur la modification suivante/précédente.",
+ "accessibility.signals.diffLineModified": "Lit un signal audio/audio lorsque le focus se déplace vers une ligne modifiée en mode Accessible Diff Viewer ou vers la modification suivante/précédente.",
+ "accessibility.signals.diffLineModified.sound": "Joue un son lorsque le focus se déplace vers une ligne modifiée en mode Accessible Diff Viewer ou vers le changement suivant/précédent.",
+ "accessibility.signals.editsKept": "Émet un signal – son (signal audio) et/ou une annonce (alerte) – lorsque des modifications sont conservées.",
+ "accessibility.signals.editsKept.announcement": "Annonce la conservation des modifications.",
+ "accessibility.signals.editsKept.sound": "Émet un son lorsque des modifications sont conservées.",
+ "accessibility.signals.editsUndone": "Émet un signal – son (signal audio) et/ou une annonce (alerte) – lorsque des modifications ont été annulées.",
+ "accessibility.signals.editsUndone.announcement": "Annonce l’annulation des modifications.",
+ "accessibility.signals.editsUndone.sound": "Émet un son lorsque des modifications ont été annulées.",
+ "accessibility.signals.format": "Lit un signal ( signal audio) et/ou annonce (alerte) lorsqu’un fichier ou un bloc-notes est mis en forme.",
+ "accessibility.signals.format.always": "Lit le son chaque fois qu’un fichier est mis en forme, y compris s’il est défini pour être mis en forme lors de l’enregistrement, du type ou, du collage ou de l’exécution d’une cellule.",
+ "accessibility.signals.format.announcement": "Annonce la mise en forme d’un fichier ou d’un bloc-notes.",
+ "accessibility.signals.format.announcement.always": "Annonce chaque fois qu'un fichier est formaté, y compris s'il est configuré pour être formaté lors de l'enregistrement, de la saisie, du collage ou de l'exécution d'une cellule.",
+ "accessibility.signals.format.announcement.never": "N’annonce jamais.",
+ "accessibility.signals.format.announcement.userGesture": "Annonce quand un utilisateur met explicitement en forme un fichier.",
+ "accessibility.signals.format.never": "Ne lit jamais le son.",
+ "accessibility.signals.format.sound": "Émet un son lorsqu'un fichier ou un bloc-notes est formaté.",
+ "accessibility.signals.format.userGesture": "Lit le son lorsqu’un utilisateur met explicitement en forme un fichier.",
+ "accessibility.signals.lineHasBreakpoint": "Lit un signal ( signal audio) et/ou annonce (alerte) lorsque la ligne active a un point d’arrêt.",
+ "accessibility.signals.lineHasBreakpoint.announcement": "Annonce quand la ligne active a un point d’arrêt.",
+ "accessibility.signals.lineHasBreakpoint.sound": "Joue un son lorsque la ligne active a un point d'arrêt.",
+ "accessibility.signals.lineHasError": "Lit un signal ( signal audio) et/ou annonce (alerte) lorsque la ligne active a une erreur.",
+ "accessibility.signals.lineHasError.announcement": "Annonce quand la ligne active a une erreur.",
+ "accessibility.signals.lineHasError.sound": "Émet un son lorsque la ligne active comporte une erreur.",
+ "accessibility.signals.lineHasFoldedArea": "Émet un signal - son (signal audio) et/ou annonce (alerte) - la ligne active comporte une zone pliée qui peut être dépliée.",
+ "accessibility.signals.lineHasFoldedArea.announcement": "Annonce quand la ligne active a une zone pliée qui peut être dépliée.",
+ "accessibility.signals.lineHasFoldedArea.sound": "Joue un son lorsque la ligne active a une zone pliée qui peut être dépliée.",
+ "accessibility.signals.lineHasInlineSuggestion": "Lit un signal sonore/audio lorsque la ligne active a une suggestion en ligne.",
+ "accessibility.signals.lineHasInlineSuggestion.sound": "Joue un son lorsque la ligne active a une suggestion en ligne.",
+ "accessibility.signals.lineHasWarning": "Lit un signal ( signal audio) et/ou annonce (alerte) lorsque la ligne active a un avertissement.",
+ "accessibility.signals.lineHasWarning.announcement": "Annonce quand la ligne active a un avertissement.",
+ "accessibility.signals.lineHasWarning.sound": "Émet un signal sonore lorsque la ligne active comporte un avertissement.",
+ "accessibility.signals.nextEditSuggestion": "Émet un signal sonore/audio et/ou une annonce (alerte) lorsqu'il y a une prochaine suggestion de modification.",
+ "accessibility.signals.nextEditSuggestion.announcement": "Émet une annonce lorsqu'il y a une prochaine suggestion de modification.",
+ "accessibility.signals.nextEditSuggestion.sound": "Émet un signal sonore lorsqu'il y a une prochaine suggestion de modification.",
+ "accessibility.signals.noInlayHints": "Lit un signal ( signal audio) et/ou annonce (alerte) lors de la tentative de lecture d’une ligne avec des hints incrustés qui n’ont pas d’hints incrustés.",
+ "accessibility.signals.noInlayHints.announcement": "Annonce lors de la tentative de lecture d’une ligne avec des hints incrustés qui n’ont aucun hint incrusté.",
+ "accessibility.signals.noInlayHints.sound": "Émet un son lors de la tentative de lecture d’une ligne avec des hints incrustés qui n’ont pas d’hint incrusté.",
+ "accessibility.signals.notebookCellCompleted": "Lit un signal ( signal audio) et/ou annonce (alerte) quand l’exécution d’une cellule de notebook est terminée.",
+ "accessibility.signals.notebookCellCompleted.announcement": "Annonce la fin de l’exécution d’une cellule de notebook.",
+ "accessibility.signals.notebookCellCompleted.sound": "Émet un son quand l’exécution d’une cellule de bloc-notes est terminée.",
+ "accessibility.signals.notebookCellFailed": "Lit un signal - son (signal audio) et/ou annonce (alerte) - en cas d'échec de l'exécution d'une cellule de bloc-notes.",
+ "accessibility.signals.notebookCellFailed.announcement": "Annonce l’échec de l’exécution d’une cellule de notebook.",
+ "accessibility.signals.notebookCellFailed.sound": "Émet un son en cas d’échec de l’exécution d’une cellule de bloc-notes.",
+ "accessibility.signals.onDebugBreak": "Lit un signal ( signal audio) et/ou annonce (alerte) lorsque le débogueur s’est arrêté sur un point d’arrêt.",
+ "accessibility.signals.onDebugBreak.announcement": "Annonce quand le débogueur s’est arrêté sur un point d’arrêt.",
+ "accessibility.signals.onDebugBreak.sound": "Joue un son lorsque le débogueur s'est arrêté sur un point d'arrêt.",
+ "accessibility.signals.positionHasError": "Lit un signal ( signal audio) et/ou annonce (alerte) lorsque la ligne active a un avertissement.",
+ "accessibility.signals.positionHasError.announcement": "Annonce quand la ligne active a un avertissement.",
+ "accessibility.signals.positionHasError.sound": "Émet un signal sonore lorsque la ligne active comporte un avertissement.",
+ "accessibility.signals.positionHasWarning": "Lit un signal ( signal audio) et/ou annonce (alerte) lorsque la ligne active a un avertissement.",
+ "accessibility.signals.positionHasWarning.announcement": "Annonce quand la ligne active a un avertissement.",
+ "accessibility.signals.positionHasWarning.sound": "Émet un signal sonore lorsque la ligne active comporte un avertissement.",
+ "accessibility.signals.progress": "Lit un signal - son (repère audio) et/ou annonce (alerte) - en boucle pendant que la progression se produit.",
+ "accessibility.signals.progress.announcement": "Alertes en boucle pendant la progression.",
+ "accessibility.signals.progress.sound": "Lit un son en boucle pendant que la progression est en cours.",
+ "accessibility.signals.save": "Lit un signal ( signal audio) et/ou annonce (alerte) lorsqu’un fichier est enregistré.",
+ "accessibility.signals.save.announcement": "Annonce le moment où un fichier est enregistré.",
+ "accessibility.signals.save.announcement.always": "Annonce chaque fois qu'un fichier est enregistré, y compris la sauvegarde automatique.",
+ "accessibility.signals.save.announcement.never": "Ne lit jamais l’annonce.",
+ "accessibility.signals.save.announcement.userGesture": "Annonce quand un utilisateur enregistre explicitement un fichier.",
+ "accessibility.signals.save.sound": "Joue un son lorsqu'un fichier est enregistré.",
+ "accessibility.signals.save.sound.always": "Lit le son chaque fois qu’un fichier est enregistré, y compris l’enregistrement automatique.",
+ "accessibility.signals.save.sound.never": "Ne lit jamais le son.",
+ "accessibility.signals.save.sound.userGesture": "Lit le son lorsqu’un utilisateur enregistre explicitement un fichier.",
+ "accessibility.signals.sound": "Joue un son lorsque le focus se déplace vers une ligne insérée en mode Accessible Diff Viewer ou vers le changement suivant/précédent.",
+ "accessibility.signals.taskCompleted": "Lit un signal ( signal audio) et/ou annonce (alerte) lorsqu’une tâche est terminée.",
+ "accessibility.signals.taskCompleted.announcement": "Annonce la fin d’une tâche.",
+ "accessibility.signals.taskCompleted.sound": "Émet un son lorsqu’une tâche est terminée.",
+ "accessibility.signals.taskFailed": "Joue un signal - son (signal audio) et/ou annonce (alerte) - lorsqu'une tâche échoue (code de sortie différent de zéro).",
+ "accessibility.signals.taskFailed.announcement": "Annonce l’échec d’une tâche (code de sortie différent de zéro).",
+ "accessibility.signals.taskFailed.sound": "Émet un son en cas d’échec d’une tâche (code de sortie différent de zéro).",
+ "accessibility.signals.terminalBell": "Lit un signal ( signal audio) et/ou annonce (alerte) lorsque la cloche du terminal est en train de sonner.",
+ "accessibility.signals.terminalBell.announcement": "Annonce le son de la cloche du terminal.",
+ "accessibility.signals.terminalBell.sound": "Émet un son lorsque la cloche du terminal sonne.",
+ "accessibility.signals.terminalCommandFailed": "Lit un signal ( signal audio) et/ou annonce (alerte) lorsqu’une commande de terminal échoue (code de sortie différent de zéro) ou lorsqu’une commande avec un tel code de sortie est accédée dans la vue accessible.",
+ "accessibility.signals.terminalCommandFailed.announcement": "Annonce l’échec d’une commande de terminal (code de sortie différent de zéro) ou l’accès à une commande avec un tel code de sortie dans la vue accessible.",
+ "accessibility.signals.terminalCommandFailed.sound": "Émet un son en cas d’échec d’une commande de terminal (code de sortie différent de zéro) ou lorsqu’une commande avec un tel code de sortie est accédée dans la vue accessible.",
+ "accessibility.signals.terminalCommandSucceeded": "Lit un signal ( signal audio) et/ou annonce (alerte) lorsqu’une commande de terminal réussit (code de sortie zéro) ou lorsqu’une commande avec un tel code de sortie est accédée dans la vue accessible.",
+ "accessibility.signals.terminalCommandSucceeded.announcement": "Annonce la réussite d’une commande de terminal (code de sortie zéro) ou l’accès à une commande avec un tel code de sortie dans la vue accessible.",
+ "accessibility.signals.terminalCommandSucceeded.sound": "Lit un son lorsqu’une commande de terminal réussit (code de sortie zéro) ou lorsqu’une commande avec un tel code de sortie est accédée dans la vue accessible.",
+ "accessibility.signals.terminalQuickFix": "Lit un signal ( signal audio) et/ou annonce (alerte) lorsque des correctifs rapides de terminal sont disponibles.",
+ "accessibility.signals.terminalQuickFix.announcement": "Annonce la disponibilité des correctifs rapides du terminal.",
+ "accessibility.signals.terminalQuickFix.sound": "Émet un son lorsque des correctifs rapides de terminal sont disponibles.",
+ "accessibility.signals.voiceRecordingStarted": "Lit un signal audio/audio lorsque l’enregistrement vocal a démarré.",
+ "accessibility.signals.voiceRecordingStarted.sound": "Émet un son lorsque l’enregistrement vocal a démarré.",
+ "accessibility.signals.voiceRecordingStopped": "Lit un signal audio/audio lorsque l’enregistrement vocal s’est arrêté.",
+ "accessibility.signals.voiceRecordingStopped.sound": "Lit un son lorsque l’enregistrement vocal s’est arrêté.",
+ "accessibility.underlineLinks": "Contrôle si les liens doivent être soulignés dans le workbench.",
+ "accessibility.verboseChatProgressUpdates": "Contrôle si des annonces détaillées de progression doivent être faites lorsqu’une demande de conversation est en cours, incluant des informations telles que le texte recherché pour avec un maximum de X résultats, le fichier créé ou le fichier lu .",
+ "accessibility.voice.autoSynthesize.off": "Désactiver la fonctionnalité.",
+ "accessibility.voice.autoSynthesize.on": "Activer la fonctionnalité. Lorsqu'un lecteur d'écran est activé, notez que cela désactivera les mises à jour d'Aria.",
+ "accessibility.windowTitleOptimized": "Contrôle si le {0} doit être optimisé pour les lecteurs d’écran en mode Lecteur d’écran. Lorsque cette option est activée, {1} est ajouté à la fin du titre de la fenêtre.",
+ "accessibilityConfigurationTitle": "Accessibilité",
+ "announcement.enabled.auto": "Activer l’annonce, ne sera lu qu’en mode optimisé pour le lecteur d’écran.",
+ "announcement.enabled.off": "Désactiver l’annonce.",
+ "autoSynthesize": "Indique si une réponse textuelle doit être automatiquement lue à haute voix lorsque la voix a été utilisée comme entrée. Par exemple, dans une session de chat, une réponse est automatiquement synthétisée lorsque la voix a été utilisée comme demande de chat.",
+ "dimUnfocusedEnabled": "Indique s'il faut estomper les éditeurs et les terminaux qui n'ont pas le focus pour rendre plus clair l'emplacement de l'entrée tapée. Cela fonctionne avec la majorité des éditeurs avec les exceptions notables de ceux qui utilisent des iframes tels que des notebooks et les éditeurs à extension webview.",
+ "dimUnfocusedOpacity": "Fraction d'opacité (0.2 à 1.0) à utiliser pour les éditeurs et terminaux qui n'ont pas le focus. Cette opération prend effet uniquement quand {0} est activé.",
+ "replEditor.autoFocusAppendedCell": "Contrôlez si le focus doit être automatiquement envoyé au REPL lors de l’exécution du code.",
+ "sound.enabled.auto": "Activez un son lorsqu’un lecteur d’écran est attaché.",
+ "sound.enabled.autoWindow": "Activez un son lorsqu’un lecteur d’écran est attaché.",
+ "sound.enabled.off": "Désactivez le son.",
+ "sound.enabled.on": "Activez le son.",
+ "speechLanguage.auto": "Auto (utiliser la langue d’affichage)",
+ "terminal.integrated.accessibleView.closeOnKeyPress": "Lors d’une pression sur une touche, fermez la vue accessible, puis concentrez le focus sur l’élément à partir duquel elle a été appelée.",
+ "verbosity.chat.description": "Fournissez des informations sur la manière d'accéder au menu d'aide du chat lorsque la saisie du chat est ciblée.",
+ "verbosity.comments": "Fournissez des informations sur les actions qui peuvent être effectuées dans le widget de commentaire ou dans un fichier qui contient des commentaires.",
+ "verbosity.debug": "Fournissez des informations sur l’accès à la boîte de dialogue d’aide sur l’accessibilité de la console de débogage lorsque la console de débogage ou exécutez et déboguez le viewlet est ciblée. Notez qu’un rechargement de la fenêtre est nécessaire pour que cela prenne effet.",
+ "verbosity.diffEditor.description": "Fournissez des informations sur la façon de naviguer dans les modifications dans l’éditeur de différences lorsqu’il est sélectionné.",
+ "verbosity.diffEditorActive": "Indique quand un éditeur de différences devient l’éditeur actif.",
+ "verbosity.emptyEditorHint": "Fournissez des informations sur les actions appropriées dans un éditeur de texte vide.",
+ "verbosity.hover": "Indiquez des informations sur l’ouverture du survol dans une vue accessible.",
+ "verbosity.inlineCompletions.description": "Indiquez des informations sur la façon d’accéder au survol des complétions en ligne et à la vue accessible.",
+ "verbosity.interactiveEditor.description": "Fournissez des informations sur la façon d'accéder au menu d'aide sur l'accessibilité du chat de l'éditeur en ligne et alertez avec des astuces décrivant comment utiliser la fonctionnalité lorsque la saisie est ciblée.",
+ "verbosity.keybindingsEditor.description": "Fournissez des informations sur la façon de modifier une combinaison de touches dans l'éditeur de combinaisons de touches lorsqu'une ligne est sélectionnée.",
+ "verbosity.notebook": "Fournissez des informations sur le focus sur le conteneur de cellule ou l’éditeur interne lorsqu’une cellule de notebook a le focus.",
+ "verbosity.notification": "Indiquez des informations sur l’ouverture de la notification dans une vue accessible.",
+ "verbosity.replEditor.description": "Fournissez des informations sur la façon d’accéder au menu d’aide sur l’accessibilité de l’éditeur REPL lorsque l’éditeur REPL est ciblé.",
+ "verbosity.scm": "Fournissez des informations sur la manière d’accéder au menu d’aide de l’accessibilité du contrôle de code source lorsque la saisie est activée.",
+ "verbosity.terminal.description": "Fournissez des informations sur la façon d’accéder au menu d’aide à l’accessibilité du terminal lorsque le terminal est activé.",
+ "verbosity.terminalChatOutput.description": "Fournissez des informations sur la façon d’ouvrir la sortie du terminal de conversation dans la vue accessible.",
+ "verbosity.walkthrough": "Indiquez des informations sur la façon d'ouvrir la présentation dans une vue accessible.",
+ "voice.ignoreCodeBlocks": "Indique s’il faut ignorer les extraits de code dans la synthèse de conversion de texte par synthèse vocale.",
+ "voice.speechLanguage": "Langue que la synthèse vocale et la reconnaissance vocale doivent utiliser. Sélectionnez `auto` pour utiliser la langue d’affichage configurée si possible. Notez que toutes les langues d’affichage ne sont peut-être pas prises en charge par la reconnaissance vocale et les synthétiseurs.",
+ "voice.speechTimeout": "Durée en millisecondes pendant laquelle la reconnaissance vocale reste active une fois que vous avez cessé de parler. Par exemple, dans une session de conversation, le texte transcrit est envoyé automatiquement une fois le délai d’expiration atteint. Définissez sur « 0 » pour désactiver cette fonctionnalité."
+ },
+ "vs/workbench/contrib/accessibility/browser/accessibilityStatus": {
+ "screenReaderDetected": "Optimisé pour un lecteur d’écran ",
+ "screenReaderDetectedExplanation.answerLearnMore": "En savoir plus",
+ "screenReaderDetectedExplanation.answerNo": "Non",
+ "screenReaderDetectedExplanation.answerYes": "Oui",
+ "screenReaderDetectedExplanation.question": "Utilisation du lecteur d’écran détectée. Voulez-vous activer {0} pour optimiser l’éditeur pour l’utilisation du lecteur d’écran ?",
+ "status.editor.screenReaderMode": "Mode du lecteur d'écran"
+ },
+ "vs/workbench/contrib/accessibility/browser/accessibleView": {
+ "accessibility-help": "Aide sur l’accessibilité",
+ "accessibility-help-hint": "Aide sur l'accessibilité, {0}",
+ "accessible-view": "Affichage accessible",
+ "accessible-view-hint": "Affichage accessible, {0}",
+ "accessibleHelpToolbar": "Aide sur l'accessibilité",
+ "accessibleViewNextPreviousHint": "Afficher l’élément suivant{0} ou l’élément précédent{1}.",
+ "accessibleViewSymbolQuickPickPlaceholder": "Taper pour rechercher des symboles",
+ "accessibleViewSymbolQuickPickTitle": "Accéder à l’affichage accessible des symboles",
+ "accessibleViewToolbar": "Vue accessible",
+ "acessibleViewDisableHint": "\r\nDésactivez le niveau de détail de l’accessibilité pour cette fonctionnalité{0}.",
+ "acessibleViewHint": "Inspecter ceci dans l’affichage accessible avec {0}",
+ "acessibleViewHintNoKbEither": "Inspectez ceci dans la vue accessible à l'aide de la commande Ouvrir la vue accessible qui ne peut pas être déclenchée via une combinaison de touches pour l'instant.",
+ "ariaAccessibleViewActions": "Explorez des actions telles que la désactivation de cet indicateur (Maj+Tab).",
+ "ariaAccessibleViewActionsBottom": "Explorez les actions telles que la désactivation de cet indicateur (Maj+Tab), utilisez Échap pour quitter cette boîte de dialogue.",
+ "configureKb": "\r\nConfigurez les combinaisons de touches pour les commandes qui n’en ont pas {0}.",
+ "configureKbAssigned": "\r\nConfigurez les combinaisons de touches pour les commandes qui ont déjà des affectations {0}.",
+ "disableAccessibilityHelp": "{0} la verbosité de l’accessibilité est désormais désactivée",
+ "exit": "\r\nQuittez cette boîte de dialogue (Échap).",
+ "goToSymbolHint": "Accédez à un symbole{0}.",
+ "insertAtCursor": " - Insérez le bloc de code au niveau du curseur{0}.",
+ "insertIntoNewFile": " - Insérez le bloc de code dans un nouveau fichier{0}.",
+ "intro": "Dans la vue accessible, vous pouvez :\r\n",
+ "keybindings": "Configurer les combinaisons de touches",
+ "openDoc": "\r\nOuvrez une fenêtre de navigateur avec plus d’informations sur l’accessibilité{0}.",
+ "runInTerminal": " - Exécutez le bloc de code dans le terminal{0}.\r\n",
+ "selectKeybinding": "Sélectionner un ID de commande pour configurer une combinaison de touches pour celui-ci",
+ "symbolLabel": "({0}) {1}",
+ "symbolLabelAria": "({0}) {1}",
+ "toolbar": "Accédez à la barre d’outils (Maj+Tab)."
+ },
+ "vs/workbench/contrib/accessibility/browser/accessibleViewActions": {
+ "editor.action.accessibilityHelp": "Ouvrir l’aide sur l’accessibilité",
+ "editor.action.accessibilityHelpConfigureAssignedKeybindings": "Aide sur l’accessibilité pour configurer les combinaisons de clés affectées",
+ "editor.action.accessibilityHelpConfigureUnassignedKeybindings": "Aide sur l’accessibilité pour configurer les combinaisons de touches non attribuées",
+ "editor.action.accessibilityHelpOpenHelpLink": "Aide à l’accessibilité – Ouvrir le lien d’aide",
+ "editor.action.accessibleView": "Ouverture de l’affichage accessible",
+ "editor.action.accessibleViewAcceptInlineCompletionAction": "Accepter la complétion inline",
+ "editor.action.accessibleViewDisableHint": "Désactiver l'indicateur Vue accessible",
+ "editor.action.accessibleViewGoToSymbol": "Accéder au symbole dans l’affichage accessible",
+ "editor.action.accessibleViewNext": "Afficher Suivant dans l’affichage accessible",
+ "editor.action.accessibleViewNextCodeBlock": "Affichage accessible : bloc de code suivant",
+ "editor.action.accessibleViewPrevious": "Afficher Précédent dans l’affichage accessible",
+ "editor.action.accessibleViewPreviousCodeBlock": "Vue accessible : bloc de code précédent"
+ },
+ "vs/workbench/contrib/accessibilitySignals/browser/commands": {
+ "accessibility.announcement.help": "Aide : lister les annonces de signal",
+ "accessibility.announcement.help.description": "Répertorier toutes les annonces, alertes et messages en braille relatifs à l’accessibilité et configuration de leurs paramètres",
+ "accessibility.sound.help.description": "Répertorier tous les sons, bruits ou signaux audio liés à l’accessibilité et configuration de leurs paramètres.",
+ "announcement.help.placeholder": "Sélectionner une annonce à configurer",
+ "announcement.help.placeholder.disabled": "Le lecteur d’écran n’est pas actif, les annonces sont désactivées par défaut.",
+ "announcement.help.settings": "Configurer l’annonce",
+ "signals.sound.help": "Aide : répertorier les sons de signal",
+ "sounds.help.placeholder": "Sélectionner un son à lire et configurer",
+ "sounds.help.settings": "Configurer le son"
+ },
+ "vs/workbench/contrib/accessibilitySignals/browser/openDiffEditorAnnouncement": {
+ "openDiffEditorAnnouncement": "Éditeur de différences"
+ },
+ "vs/workbench/contrib/accountEntitlements/browser/accountsEntitlements.contribution": {
+ "workbench.accounts.showEntitlements": "When enabled, available entitlements for the account will be shown in the accounts menu."
},
"vs/workbench/contrib/audioCues/browser/audioCues.contribution": {
+ "audioCues.chatRequestSent": "Émet un son lorsqu’une requête de conversation est effectuée.",
+ "audioCues.chatResponsePending": "Émet un son en boucle pendant que la réponse est en attente.",
+ "audioCues.chatResponseReceived": "Joue un son en boucle pendant la réception de la réponse.",
+ "audioCues.clear": "Émet un son lorsqu’une fonctionnalité est effacée (par exemple, le terminal, la Console de débogage ou le canal de sortie). Lorsque cette option est désactivée, une alerte ARIA annonce « Cleared » (Effacé).",
+ "audioCues.debouncePositionChanges": "Indique si les changements de position doivent être ou non avoir une réponse",
+ "audioCues.diffLineDeleted": "Joue un son lorsque le focus se déplace vers une ligne supprimée en mode Accessible Diff Viewer ou vers la modification suivante/précédente.",
+ "audioCues.diffLineInserted": "Joue un son lorsque le focus se déplace vers une ligne insérée en mode Accessible Diff Viewer ou vers le changement suivant/précédent.",
+ "audioCues.diffLineModified": "Joue un son lorsque le focus se déplace vers une ligne modifiée en mode Accessible Diff Viewer ou vers le changement suivant/précédent.",
"audioCues.enabled.auto": "Activez le signal audio lorsqu’un lecteur d’écran est attaché.",
"audioCues.enabled.off": "Désactivez le signal audio.",
"audioCues.enabled.on": "Désactivez les signaux audio.",
+ "audioCues.format": "Joue un son lorsqu'un fichier ou un bloc-notes est formaté. Regarde aussi {0}",
+ "audioCues.format.always": "Lit le signal audio chaque fois qu'un fichier est formaté, y compris s'il est configuré pour être formaté lors de l'enregistrement, de la saisie, du collage ou de l'exécution d'une cellule.",
+ "audioCues.format.never": "Ne joue jamais le signal audio.",
+ "audioCues.format.userGesture": "Lit le signal audio lorsqu'un utilisateur formate explicitement un fichier.",
"audioCues.lineHasBreakpoint": "Joue un son lorsque la ligne active a un point d'arrêt.",
"audioCues.lineHasError": "Émet un son lorsque la ligne active comporte une erreur.",
"audioCues.lineHasFoldedArea": "Joue un son lorsque la ligne active a une zone pliée qui peut être dépliée.",
"audioCues.lineHasInlineSuggestion": "Joue un son lorsque la ligne active a une suggestion en ligne.",
"audioCues.lineHasWarning": "Émet un signal sonore lorsque la ligne active comporte un avertissement.",
"audioCues.noInlayHints": "Émet un son lors de la tentative de lecture d’une ligne avec des indicateurs d’inlay qui n’ont pas d’indicateurs inlay.",
+ "audioCues.notebookCellCompleted": "Émet un son quand l’exécution d’une cellule de bloc-notes est terminée.",
+ "audioCues.notebookCellFailed": "Émet un son en cas d’échec de l’exécution d’une cellule de bloc-notes.",
"audioCues.onDebugBreak": "Joue un son lorsque le débogueur s'est arrêté sur un point d'arrêt.",
+ "audioCues.save": "Joue un son lorsqu'un fichier est enregistré. Regarde aussi {0}",
+ "audioCues.save.always": "Lit le signal audio chaque fois qu'un fichier est enregistré, y compris la sauvegarde automatique.",
+ "audioCues.save.never": "Ne joue jamais le signal audio.",
+ "audioCues.save.userGesture": "Lit le signal audio lorsqu'un utilisateur enregistre explicitement un fichier.",
+ "audioCues.taskCompleted": "Émet un son lorsqu’une tâche est terminée.",
+ "audioCues.taskFailed": "Émet un son en cas d’échec d’une tâche (code de sortie différent de zéro).",
+ "audioCues.terminalCommandFailed": "Émet un son en cas d’échec de la commande du terminal (code de sortie différent de zéro).",
+ "audioCues.terminalQuickFix": "Émet un son lorsque des correctifs rapides de terminal sont disponibles.",
"audioCues.volume": "Volume des signaux audio en pourcentage (0-100)."
},
"vs/workbench/contrib/audioCues/browser/commands": {
+ "accessibility.alert.help": "Aide : lister les alertes",
+ "alerts.help.placeholder": "Inspecter, puis configurer le statut d’une alerte",
+ "alerts.help.settings": "Activer/désactiver le signal audio",
"audioCues.help": "Aide : Répertorier les signaux audio",
"audioCues.help.placeholder": "Sélectionner un signal audio à lire",
"audioCues.help.settings": "Activer/désactiver le signal audio",
"disabled": "Désactivé"
},
- "vs/workbench/contrib/backup/electron-sandbox/backupTracker": {
- "backupTrackerBackupFailed": "Les éditeurs suivants dont l'intégrité est compromise n'ont pas pu être enregistrés dans l'emplacement de sauvegarde.",
- "backupTrackerConfirmFailed": "Les éditeurs suivants dont l'intégrité est compromise n'ont pas pu être enregistrés ou restaurés.",
- "backupErrorDetails": "Essayez d'abord d'enregistrer ou de réinitialiser les éditeurs dont l'intégrité est compromise, puis réessayez.",
- "ok": "OK",
- "backupBeforeShutdown": "En attente de la sauvegarde des éditeurs comportant des changements...",
- "saveBeforeShutdown": "En attente d'enregistrement des éditeurs comportant des changements...",
- "revertBeforeShutdown": "En attente de la restauration des éditeurs comportant des changements..."
+ "vs/workbench/contrib/authentication/browser/actions/manageAccountPreferencesForExtensionAction": {
+ "accounts": "Comptes",
+ "currentAccount": "Compte actuel",
+ "manageAccountPreferenceForExtension": "Gérez les préférences du compte d’extension...",
+ "noAccountUsage": "Cette extension n’a pas encore utilisé de compte.",
+ "noAccounts": "Aucun compte n’est actuellement utilisé par cette extension.",
+ "pickAProviderTitle": "Gérer les préférences du compte d’extension",
+ "placeholder v2": "Gérer les préférences de compte « {0} » pour {1}...",
+ "selectExtension": "Sélectionnez une extension pour gérer les préférences de compte",
+ "selectProvider": "Sélectionner un fournisseur d’authentification pour lequel gérer les préférences de compte",
+ "title": "'{0}' Préférences de compte pour cet espace de travail",
+ "use new account": "Utiliser un nouveau compte..."
+ },
+ "vs/workbench/contrib/authentication/browser/actions/manageAccountPreferencesForMcpServerAction": {
+ "accounts": "Comptes",
+ "currentAccount": "Compte actuel",
+ "manageAccountPreferenceForMcpServer": "Gérer les préférences de compte du serveur MCP",
+ "noAccountUsage": "Ce serveur MCP n’a pas encore utilisé de compte.",
+ "noAccounts": "Aucun compte n’est actuellement utilisé par ce serveur MCP.",
+ "pickAProviderTitle": "Gérer les préférences de compte du serveur MCP",
+ "placeholder v2": "Gérer les préférences de compte « {0} » pour {1}...",
+ "selectProvider": "Sélectionner un fournisseur d’authentification pour lequel gérer les préférences de compte",
+ "title": "'{0}' Préférences de compte pour cet espace de travail",
+ "use new account": "Utiliser un nouveau compte..."
+ },
+ "vs/workbench/contrib/authentication/browser/actions/manageAccountsAction": {
+ "accounts": "Comptes",
+ "manageAccount": "Gérez « {0} »",
+ "manageAccounts": "Gérez des comptes",
+ "manageTrustedExtensions": "Gérez les extensions approuvées",
+ "manageTrustedMCPServers": "Gérer les serveurs MCP approuvés",
+ "noActiveAccounts": "Désolé, il n’existe aucun compte actif.",
+ "pickAccount": "Sélectionnez un compte à gérer",
+ "selectAction": "Sélectionnez une action",
+ "signOut": "Se déconnecter"
+ },
+ "vs/workbench/contrib/authentication/browser/actions/manageDynamicAuthenticationProvidersAction": {
+ "authenticationCategory": "Authentification",
+ "clientId": "ID client : {0}",
+ "confirmDeleteDetail": "Cette opération supprime toutes les données d’authentification stockées pour le ou les fournisseurs sélectionnés. Vous devrez vous réauthentifier si vous utilisez de nouveau ces fournisseurs.",
+ "confirmDeleteMultipleProviders": "Voulez-vous vraiment supprimer {0} fournisseurs d'authentification dynamique : {1} ?",
+ "confirmDeleteSingleProvider": "Voulez-vous vraiment supprimer le fournisseur d'authentification dynamique « {0} » ?",
+ "noDynamicProviders": "Aucun fournisseur d’authentification dynamique",
+ "noDynamicProvidersDetail": "Aucun fournisseur d’authentification dynamique n’a encore été utilisé.",
+ "remove": "Supprimer",
+ "removeDynamicAuthProviders": "Supprimer les fournisseurs d'authentification dynamique",
+ "selectProviderToRemove": "Sélectionnez un fournisseur d’authentification dynamique à supprimer"
+ },
+ "vs/workbench/contrib/authentication/browser/actions/manageTrustedExtensionsForAccountAction": {
+ "accountLastUsedDate": "Dernière utilisation de ce compte {0}",
+ "accountPreferences": "Gérer les préférences de compte pour cette extension",
+ "accounts": "Comptes",
+ "manageExtensions": "Choisir les extensions qui peuvent accéder à ce compte",
+ "manageTrustedExtensions": "Gérer les extensions approuvées",
+ "manageTrustedExtensions.cancel": "Annuler",
+ "manageTrustedExtensionsForAccount": "Gérer les extensions approuvées pour le compte",
+ "noTrustedExtensions": "Ce compte n'a été utilisé par aucune extension.",
+ "notUsed": "N'a pas utilisé ce compte",
+ "pickAccount": "Choisir un compte pour lequel gérer les extensions approuvées",
+ "trustedExtensionTooltip": "Cette extension est approuvée par Microsoft et\r\ndispose toujours d’un accès à ce compte",
+ "trustedExtensions": "Approuvé par Microsoft",
+ "viewExtensionDetails": "Affichez les détails de l’extension"
+ },
+ "vs/workbench/contrib/authentication/browser/actions/manageTrustedMcpServersForAccountAction": {
+ "accountLastUsedDate": "Dernière utilisation de ce compte {0}",
+ "accountPreferences": "Gérer les préférences de compte pour ce serveur MCP",
+ "accounts": "Comptes",
+ "manageMcpServers": "Choisir les serveurs MCP qui peuvent accéder à ce compte",
+ "manageTrustedMcpServers": "Gérer les serveurs MCP approuvés",
+ "manageTrustedMcpServers.cancel": "Annuler",
+ "manageTrustedMcpServersForAccount": "Gérer les serveurs MCP approuvés pour un compte",
+ "noTrustedMcpServers": "Ce compte n’a été utilisé par aucun serveur MCP.",
+ "notUsed": "N'a pas utilisé ce compte",
+ "pickAccount": "Choisir un compte pour gérer les serveurs MCP approuvés pour",
+ "trustedMcpServerTooltip": "Ce serveur MCP est approuvé par Microsoft et\r\ndispose toujours d’un accès à ce compte",
+ "trustedMcpServers": "Approuvé par Microsoft"
+ },
+ "vs/workbench/contrib/authentication/browser/actions/signOutOfAccountAction": {
+ "signOut": "&&Se déconnecter",
+ "signOutMessage": "Le compte « {0} » a été utilisé par \r\n\r\n{1}\r\n\r\nVoulez-vous vous déconnecter de ces extensions ?",
+ "signOutMessageSimple": "Se déconnecter de '{0}' ?",
+ "signOutOfAccount": "Se déconnecter du compte"
+ },
+ "vs/workbench/contrib/authentication/browser/authentication.contribution": {
+ "authentication": "Authentification",
+ "authenticationMcpAuthorizationServers": "Serveurs d’autorisation MCP",
+ "authenticationid": "ID",
+ "authenticationlabel": "Étiquette"
},
"vs/workbench/contrib/bulkEdit/browser/bulkEditService": {
- "areYouSureQuiteBulkEdit": "Voulez-vous vraiment {0} ? « {1} » est en cours d’exécution.",
- "changeWorkspace": "Changer d’espace de travail",
- "closeTheWindow": "Fermer la fenêtre",
+ "areYouSureQuiteBulkEdit.detail": "« {0} » est en cours.",
+ "changeWorkspace.message": "Voulez-vous vraiment modifier l’espace de travail ?",
+ "closeTheWindow.message": "Voulez-vous vraiment fermer la fenêtre ?",
"fileOperation": "Opération de fichier",
"nothing": "Aucune modification",
- "quit": "Quitter",
+ "quitMessage": "Voulez-vous vraiment quitter ?",
+ "quitMessageMac": "Voulez-vous vraiment quitter ?",
"refactoring.autoSave": "Contrôle si les fichiers qui faisaient partie d’une refactorisation sont enregistrés automatiquement",
- "reloadTheWindow": "Recharger la fenêtre",
+ "reloadTheWindow.message": "Voulez-vous vraiment recharger la fenêtre ?",
"summary.0": "Aucune modification",
"summary.n0": "{0} modifications de texte effectuées dans un fichier",
"summary.nm": "{0} modifications de texte effectuées dans {1} fichiers",
@@ -4259,9 +5793,8 @@
"vs/workbench/contrib/bulkEdit/browser/preview/bulkEdit.contribution": {
"Discard": "Ignorer la refactorisation",
"apply": "Appliquer la refactorisation",
- "cancel": "Annuler",
"cat": "Aperçu de la refactorisation",
- "continue": "Continuer",
+ "continue": "&&Continuer",
"detail": "Appuyez sur 'Continuer' pour ignorer la refactorisation précédente et continuer avec la refactorisation actuelle.",
"groupByFile": "Changements de groupe par fichier",
"groupByType": "Changements de groupe par type",
@@ -4274,13 +5807,8 @@
"cancel": "Ignorer",
"conflict.1": "Impossible d'appliquer la refactorisation, car '{0}' a changé entre temps.",
"conflict.N": "Impossible d'appliquer la refactorisation parce que {0} autres fichiers ont changé entre-temps.",
- "create": "Créer",
- "edt.title.1": "{0} (aperçu de la refactorisation)",
- "edt.title.2": "{0} ({1}, aperçu de la refactorisation)",
- "edt.title.del": "{0} (suppression, aperçu de refactorisation)",
"empty.msg": "Appelez une action de code, par exemple, un renommage, pour voir un aperçu de ses changements ici.",
- "ok": "Appliquer",
- "rename": "Renommer"
+ "ok": "Appliquer"
},
"vs/workbench/contrib/bulkEdit/browser/preview/bulkEditPreview": {
"default": "Autre"
@@ -4329,67 +5857,1937 @@
"to": "appelants de {0}",
"tree.aria": "Hiérarchie d'appels"
},
- "vs/workbench/contrib/cli/node/cli.contribution": {
- "shellCommand": "Commande d'interpréteur de commandes",
- "install": "Installer la commande '{0}' dans PATH",
- "not available": "Cette commande n'est pas disponible",
- "ok": "OK",
- "cancel2": "Annuler",
- "warnEscalation": "Code va maintenant demander avec 'osascript' des privilèges d'administrateur pour installer la commande d'interpréteur de commandes.",
- "cantCreateBinFolder": "Impossible de créer '/usr/local/bin'.",
- "aborted": "Abandonné",
- "successIn": "La commande d'interpréteur de commandes '{0}' a été correctement installée dans PATH.",
- "uninstall": "Désinstaller la commande '{0}' de PATH",
- "warnEscalationUninstall": "Code va maintenant demander avec 'osascript' des privilèges d'administrateur pour désinstaller la commande shell.",
- "cantUninstall": "Impossible de désinstaller la commande shell '{0}'.",
- "successFrom": "La commande d'interpréteur de commandes '{0}' a été correctement désinstallée à partir de PATH."
+ "vs/workbench/contrib/chat/browser/actions/chatAccessibilityActions": {
+ "chat.category": "Conversation",
+ "chatNotReady": "L’interface de conversation n’est pas prête.",
+ "focusChatConfirmation": "Confirmation de la conversation en focus",
+ "noChatSession": "Désolé, aucune session de conversation active n’a été trouvée.",
+ "noConfirmationRequired": "Aucune confirmation par conversation requise"
+ },
+ "vs/workbench/contrib/chat/browser/actions/chatAccessibilityHelp": {
+ "chat.announcement": "Les réponses de conversation seront annoncées à mesure qu’elles arrivent. Une réponse indique le nombre de blocs de code, le cas échéant, puis le reste de la réponse.",
+ "chat.attachments.removal": "Pour supprimer les contextes attachés, sélectionnez une pièce jointe et appuyez sur Supprimer ou Retour arrière.",
+ "chat.differencePanel": "La vue de discussion du panneau est une interface persistante qui prend également en charge la navigation dans les questions de suivi suggérées, tandis que la vue de la conversation instantanée rapide est une interface transitoire permettant de créer et d'afficher des requêtes.",
+ "chat.differenceQuick": "La vue de la conversation instantanée rapide est une interface transitoire permettant de créer et d'afficher des requêtes, tandis que la vue de discussion du panneau est une interface persistante qui prend également en charge la navigation dans les questions de suivi suggérées.",
+ "chat.focusMostRecentTerminal": "Pour viser le dernier terminal de conversation qui a exécuté l’outil, utilisez la commande Focus sur le terminal de conversation le plus récent{0}.",
+ "chat.focusMostRecentTerminalOutput": "Pour concentrer la sortie du dernier outil terminal de conversation, utilisez la commande Focus sur la sortie de terminal de conversation la plus récente{0}.",
+ "chat.inspectResponse": "Dans la zone d’entrée, inspectez la dernière réponse dans la vue accessible {0}.",
+ "chat.overview": "La vue de discussion rapide comprend une zone de saisie et une liste de demandes/réponses. La zone de saisie est utilisée pour faire des requêtes et la liste est utilisée pour afficher les réponses.",
+ "chat.progressVerbosity": "Lorsque la demande de conversation est en cours de traitement, vous entendez des mises à jour détaillées de la progression si la demande prend plus de 4 secondes. Cela inclut des informations telles que le texte recherché pour avec X résultats, fichier créé ou fichier lu. Cette option peut être désactivée avec accessibility.verboseChatProgressUpdates.",
+ "chat.requestHistory": "Dans la zone d’entrée, utilisez les flèches vers le haut et vers le bas pour naviguer dans l’historique de vos demandes. Modifiez la saisie et utilisez le bouton Entrée ou le bouton Envoyer pour lancer une nouvelle requête.",
+ "chat.showHiddenTerminals": "S’il existe des terminaux de conversation masqués, vous pouvez les afficher en utilisant la commande Afficher les terminaux de conversation masqués{0}.",
+ "chat.signals": "Les signaux d’accessibilité peuvent être modifiés via des paramètres avec un préfixe signals.chat. Par défaut, si une requête prend plus de 4 secondes, vous entendez un son indiquant que la progression est toujours en cours.",
+ "chatAgent.acceptTool": "Pour accepter une action d’outil, utilisez la commande Accepter la confirmation de l’outil{0}.",
+ "chatAgent.autoApprove": "Pour approuver automatiquement les actions des outils sans confirmation manuelle, définissez {0} sur {1} dans vos paramètres.",
+ "chatAgent.openEditedFilesSetting": "Par défaut, lorsque des modifications sont apportées à des fichiers, ils s’ouvrent. Pour modifier ce comportement, définissez accessibility.openChatEditedFiles sur false dans vos paramètres.",
+ "chatAgent.overview": "L’affichage de l’agent de conversation permet d’appliquer des modifications aux fichiers de votre espace de travail, d’activer les commandes en cours d’exécution dans le terminal, etc.",
+ "chatAgent.runCommand": "Pour effectuer l’action, utilisez la commande accepter l’outil{0}.",
+ "chatAgent.userActionRequired": "Une alerte indiquera quand une action de l’utilisateur est requise. Par exemple, si l’agent souhaite exécuter quelque chose dans le terminal, vous entendez Action requise : Run Command dans terminal.",
+ "chatEditing.acceptAllFiles": "– Conservez toutes les modifications{0}.",
+ "chatEditing.acceptFile": "– Conservez{0} et annulez le fichier{1}.",
+ "chatEditing.acceptHunk": "Dans l’éditeur, conservez{0}, annulez{1} ou activez/désactivez la diff{2} pour la modification actuelle.",
+ "chatEditing.discardAllFiles": "– Annulez toutes les modifications{0}.",
+ "chatEditing.expectation": "Lorsqu’une demande est effectuée, un indicateur de progression est lu pendant l’application des modifications.",
+ "chatEditing.format": "Il est composé d’une zone d’entrée et d’un jeu de travail de fichier (Maj+Tab).",
+ "chatEditing.helpfulCommands": "Voici quelques commandes utiles :",
+ "chatEditing.openFileInDiff": "- Ouvrir le fichier dans diff{0}.",
+ "chatEditing.overview": "La vue de modification de la conversation permet d’appliquer des modifications à tous les fichiers.",
+ "chatEditing.removeFileFromWorkingSet": "- Supprimer le fichier de la plage de travail{0}.",
+ "chatEditing.review": "Une fois les modifications appliquées, un son est lu pour indiquer que le document a été ouvert et qu’il est prêt à être révisé. Le son peut être désactivé avec accessibility.signals.chatEditModifiedFile.",
+ "chatEditing.saveAllFiles": "- Enregistrer tous les fichiers{0}.",
+ "chatEditing.sections": "Naviguer entre les modifications de l’éditeur avec les{0} précédentes et les{1} suivantes",
+ "chatEditing.undoKeepSounds": "Des sons seront émis lorsqu’une modification est acceptée ou annulée. Vous pouvez désactiver les sons avec accessibility.signals.editsKept et accessibility.signals.editsUndone.",
+ "inlineChat.access": "Cela peut être activé via des actions de code ou directement à l'aide de la commande Inline Chat: Start Inline Chat{0}.",
+ "inlineChat.contextActions": "Les actions du menu contextuel peuvent exécuter une requête avec le préfixe /a. Tapez / pour découvrir de telles commandes prêtes.",
+ "inlineChat.diff": "Une fois dans l’éditeur de différences, passez en mode révision avec{0}. Utilisez les flèches vers le haut et le bas pour parcourir les lignes avec les modifications proposées.",
+ "inlineChat.fix": "Si une action de correction est invoquée, une réponse indique le problème avec le code actuel. Un éditeur de différences est affiché et peut être atteint par tabulation.",
+ "inlineChat.inspectResponse": "Dans la zone d’entrée, inspectez la réponse dans la vue accessible {0}.",
+ "inlineChat.overview": "La conversation en ligne se produit dans un éditeur de code et prend en compte la sélection actuelle. Il est utile pour apporter des modifications à l’éditeur actuel. Par exemple, correction diagnostics, documentation ou refactorisation de code. N’oubliez pas que le code généré par l’IA est peut-être incorrect.",
+ "inlineChat.requestHistory": "Dans la zone d’entrée, utilisez Afficher précédent{0} et Afficher suivant{1} pour parcourir l’historique de vos demandes. Modifiez la saisie et utilisez la touche Entrée ou le bouton Soumettre pour lancer une nouvelle requête.",
+ "inlineChat.toolbar": "Utilisez l’onglet pour accéder aux parties conditionnelles telles que les commandes, l’état, les réponses aux messages, etc.",
+ "workbench.action.chat.announceConfirmation": "Pour mettre le focus sur les boîtes de dialogue de confirmation de conversation en attente, invoquez la commande État de confirmation de la conversation{0}.",
+ "workbench.action.chat.editing.attachFiles": "- Joindre des fichiers{0}.",
+ "workbench.action.chat.focus": "Pour concentrer la liste des demandes et des réponses de conversation, utilisez la commande Focus sur la conversation{0}. Cela déplacera le focus vers la réponse la plus récente, que vous pourrez ensuite parcourir avec les flèches haut et bas.",
+ "workbench.action.chat.focusInput": "Pour mettre l’accent sur la zone de saisie des demandes de conversation, appelez la commande Focus Chat Input{0}.",
+ "workbench.action.chat.focusLastFocusedItem": "Pour revenir à la dernière réponse de conversation ciblée, utilisez la commande Focus sur la réponse de conversation la plus récente{0}.",
+ "workbench.action.chat.newChat": "Pour créer une nouvelle session de discussion, appelez la commande Nouvelle discussion{0}.",
+ "workbench.action.chat.nextCodeBlock": "Pour mettre l’accent sur le bloc de code suivant dans une réponse, invoquez la commande Chat: Next Code Block{0}.",
+ "workbench.action.chat.nextUserPrompt": "Pour accéder à l’invite utilisateur suivante dans la conversation, utilisez la commande Invite utilisateur suivante{0}.",
+ "workbench.action.chat.previousUserPrompt": "Pour accéder à l’invite utilisateur précédente dans la conversation, utilisez la commande Invite utilisateur précédente{0}.",
+ "workbench.action.chat.undoEdits": "- Annuler Les modifications{0}."
+ },
+ "vs/workbench/contrib/chat/browser/actions/chatActions": {
+ "actions.interactiveSession.focus": "Focus sur la liste des conversations",
+ "actions.interactiveSession.focusLastFocused": "Mettre au premier plan le dernier élément sélectionné dans la liste des conversations",
+ "agent.newSession": "Voulez-vous démarrer une nouvelle session ?",
+ "agent.newSession.confirm": "Oui",
+ "agent.newSessionMessage": "Changer d’assistant mettra fin à votre session de modification actuelle. Souhaitez-vous changer l’agent ?",
+ "chat.category": "Conversation",
+ "chat.clear.label": "Effacer toutes les conversations de l’espace de travail",
+ "chat.editToolApproval.description": "Modifiez ou gérez les préférences d’approbation et de confirmation des outils pour les assistants de conversation IA.",
+ "chat.editToolApproval.label": "Gérer l’approbation de l’outil",
+ "chat.history.label": "Afficher les conversations...",
+ "chat.history.recent": "Conversations récentes",
+ "chat.history.rename": "Renommer",
+ "chat.history.showMore": "Afficher plus...",
+ "chat.history.showMoreAgents": "Afficher plus...",
+ "chat.openNewChatToTheSide.label": "Ouvrir un nouvel éditeur de conversation à côté",
+ "chat.toggleChatHistoryVisibility.label": "Historique des conversations",
+ "chat.toggleDefaultVisibility.label": "Afficher la vue par défaut",
+ "chatAndCompletionsQuotaExceeded": "Vous avez atteint votre quota mensuel de messages de conversation et de suggestions inline.",
+ "chatQuotaExceeded": "Vous avez atteint votre quota de messages de conversation mensuels. Vous disposez toujours de suggestions inline gratuites.",
+ "chatQuotaExceededButton": "Le quota de messages de conversation du Plan GitHub Copilot Free est atteint. Cliquez pour plus de détails.",
+ "chatSessions.newChatInSideBar": "Ouvrir une nouvelle conversation dans la barre latérale",
+ "chatSessions.openNewChatInNewWindow": "Ouvrir la nouvelle conversation dans une nouvelle fenêtre",
+ "completionsQuotaExceeded": "Vous avez atteint votre quota mensuel de suggestions inline. Vous avez toujours des messages de conversation gratuits disponibles.",
+ "config.label": "Configurer la conversation",
+ "configureCompletions": "Configurer les suggestions inline...",
+ "copilotQuotaReached": "Quota GitHub Copilot atteint",
+ "currentChatLabel": "actuel",
+ "dismiss": "Ignorer",
+ "generateCode": "Générer le code",
+ "generateInstructions": "Générez le fichier d’instructions de l’espace de travail",
+ "generateInstructions.short": "Générer des instructions de conversation",
+ "interactiveSession.clearHistory.label": "Effacer l’historique d’entrée",
+ "interactiveSession.focusInput.label": "Focus sur l’entrée de la conversation",
+ "interactiveSession.history.clear": "Effacer toutes les conversations de l’espace de travail",
+ "interactiveSession.history.delete": "Supprimer",
+ "interactiveSession.history.editor": "Ouvrir dans l’Éditeur",
+ "interactiveSession.history.pick": "Basculer vers la conversation",
+ "interactiveSession.history.title": "Historique des conversations dans l’espace de travail",
+ "interactiveSession.history.titleAll": "Historique complet des conversations dans l’espace de travail",
+ "interactiveSession.newChatWindow": "Nouvelle fenêtre de conversation",
+ "interactiveSession.open": "Nouvel éditeur de conversation",
+ "manageChat": "Gérer la conversation",
+ "more": "Plus...",
+ "newChatTitle": "Nouveau titre de la conversation",
+ "openChat": "Ouvrir la conversation",
+ "openChatFeatureSettings": "Paramètre de conversation",
+ "openChatFeatureSettings.short": "Paramètre de conversation",
+ "openChatMode": "Ouvrir la conversation ({0})",
+ "quotaResetDate": "L’allocation sera réinitialisée le {0}.",
+ "resetTrustedTools": "Réinitialiser les confirmations de l’outil",
+ "resetTrustedToolsSuccess": "Les préférences de confirmation de l’outil ont été réinitialisées.",
+ "showCopilotUsageExtensions": "Afficher les extensions à l’aide de Copilot",
+ "signInToChatSetup": "Connectez-vous pour utiliser les fonctionnalités IA...",
+ "switchChat.confirmPhrase": "Le changement de conversation mettra fin à votre session de modification actuelle.",
+ "switchMode.confirmPhrase": "Intervertir les assistants mettra fin à votre session de modification actuelle.",
+ "title4": "Conversation",
+ "toggle.chatControl": "Contrôles de conversation",
+ "toggle.chatControlsDescription": "Activer/désactiver la visibilité des contrôles de conversation dans la barre de titre",
+ "toggleChat": "Activer/désactiver la conversation",
+ "upgradeChat": "Plan de mise à niveau GitHub Copilot",
+ "upgradePlan": "Plan de mise à niveau GitHub Copilot",
+ "upgradePro": "Mettre à niveau vers GitHub Copilot Pro",
+ "upgradeToPro": "Effectuez une mise à niveau vers GitHub Copilot Pro (vos 30 premiers jours sont gratuits) pour :\r\n– Suggestions inline illimitées\r\n– Nombre illimité de messages de conversation\r\n– Accès aux modèles Premium"
+ },
+ "vs/workbench/contrib/chat/browser/actions/chatCodeblockActions": {
+ "interactive.applyInEditor.label": "Appliquer dans Éditeur",
+ "interactive.applyInEditorWithURL.label": "Appliquer à {0}",
+ "interactive.compare.apply": "Appliquer les modifications",
+ "interactive.compare.discard": "Ignorer les modifications",
+ "interactive.copyCodeBlock.label": "Copier",
+ "interactive.insertCodeBlock.label": "Insérer au curseur",
+ "interactive.insertIntoNewFile.label": "Insérer dans un nouveau fichier",
+ "interactive.nextCodeBlock.label": "Bloc de code suivant",
+ "interactive.previousCodeBlock.label": "Bloc de code précédent",
+ "interactive.runInTerminal.label": "Insérer dans le terminal"
+ },
+ "vs/workbench/contrib/chat/browser/actions/chatContext": {
+ "chatContext.attachScreenshot.labelElectron.Window": "Fenêtre Capture d’écran",
+ "chatContext.attachScreenshot.labelWeb": "Capture d’écran",
+ "chatContext.editors": "Ouvrir les éditeurs",
+ "chatContext.relatedFiles": "Fichiers associés",
+ "chatContext.tools": "Outils...",
+ "chatContext.tools.placeholder": "Sélectionner un outil",
+ "imageFromClipboard": "Image du Presse-papiers",
+ "pastedImage": "Image collée",
+ "relatedFiles": "Ajoutez des fichiers associés à votre ensemble de travail",
+ "terminal": "Terminal"
+ },
+ "vs/workbench/contrib/chat/browser/actions/chatContextActions": {
+ "chat.insertSearchResults": "Ajouter les résultats de la recherche à la conversation",
+ "chatContext.attach.placeholder": "Rechercher des pièces jointes",
+ "goBack": "Retour ↩",
+ "workbench.action.chat.attachContext.label.2": "Ajouter le contexte...",
+ "workbench.action.chat.attachFile.label": "Ajouter un fichier à la conversation",
+ "workbench.action.chat.attachFolder.label": "Ajouter un dossier à la conversation",
+ "workbench.action.chat.attachSelection.label": "Ajouter la sélection à la conversation"
+ },
+ "vs/workbench/contrib/chat/browser/actions/chatContinueInAction": {
+ "chat.learnMore": "Learn More",
+ "continueChatInSession": "Continuer la conversation dans...",
+ "continueSessionIn": "Continuer dans {0}"
+ },
+ "vs/workbench/contrib/chat/browser/actions/chatCopyActions": {
+ "chat.copyKatexMathSource.label": "Copier la source mathématique",
+ "interactive.copyAll.label": "Copier tout",
+ "interactive.copyItem.label": "Copier"
+ },
+ "vs/workbench/contrib/chat/browser/actions/chatDeveloperActions": {
+ "workbench.action.chat.logChatIndex.label": "Journaliser l’index de conversation",
+ "workbench.action.chat.logInputHistory.label": "Journaliser l’historique des entrées de conversation"
+ },
+ "vs/workbench/contrib/chat/browser/actions/chatElicitationActions": {
+ "chat.acceptElicitation": "Accepter la demande"
+ },
+ "vs/workbench/contrib/chat/browser/actions/chatExecuteActions": {
+ "actions.chat.submitWithCodebase": "Envoyer avec {0}",
+ "chat.newChat.label": "Envoyer vers une nouvelle conversation",
+ "chat.remove.confirmation.checkbox": "Ne plus me poser la question",
+ "chat.remove.confirmation.message2": "Cette opération supprimera toutes les requêtes suivantes et annulera les modifications apportées à {0}. Voulez-vous continuer ?",
+ "chat.remove.confirmation.multipleEdits.message": "Cela supprimera toutes les requêtes ultérieures et annulera les modifications apportées aux {0} fichiers de votre plage de travail. Voulez-vous continuer ?",
+ "chat.remove.confirmation.primaryButton": "Oui",
+ "chat.remove.confirmation.title": "Voulez-vous annuler {0} modifications ?",
+ "chat.removeLast.confirmation.message2": "Cela supprimera votre dernière requête et annulera les modifications apportées à {0}. Voulez-vous continuer ?",
+ "chat.removeLast.confirmation.multipleEdits.message": "Cela supprimera votre dernière requête et annulera les modifications apportées aux {0} fichiers de votre plage de travail. Voulez-vous continuer ?",
+ "chat.removeLast.confirmation.title": "Voulez-vous annuler votre dernière modification ?",
+ "edits.submit.label": "Envoyez",
+ "interactive.cancel.label": "Annuler",
+ "interactive.cancelEdit.label": "Annuler la modification",
+ "interactive.changeModel.label": "Changer le modèle",
+ "interactive.openChatSessionPrimaryPicker.label": "Ouvrir le sélecteur",
+ "interactive.openModePicker.label": "Ouvrir le sélecteur d’assistant",
+ "interactive.openModelPicker.label": "Ouvrir le sélecteur de modèle",
+ "interactive.submit.label": "Envoyer",
+ "interactive.submit.panel.label": "Envoyer à la session d’édition",
+ "interactive.submitWithoutDispatch.label": "Envoyer",
+ "interactive.switchToNextModel.label": "Passer au modèle suivant",
+ "interactive.toggleAgent.label": "Passer à l’assistant suivant",
+ "sendToAgent": "Envoyer à l’assistant",
+ "setChatMode": "Définir l’assistant"
+ },
+ "vs/workbench/contrib/chat/browser/actions/chatFileTreeActions": {
+ "interactive.nextFileTree.label": "Next File Tree",
+ "interactive.previousFileTree.label": "Arborescence de fichiers précédente"
+ },
+ "vs/workbench/contrib/chat/browser/actions/chatImportExport": {
+ "chat.export.label": "Exporter une conversation...",
+ "chat.file.label": "Séance de conversation",
+ "chat.import.label": "Importer une conversation..."
+ },
+ "vs/workbench/contrib/chat/browser/actions/chatLanguageModelActions": {
+ "extensionOwner": "{0}",
+ "languageModelAuthPlaceholder": "Choisissez les extensions qui peuvent accéder aux modèles de langage",
+ "languageModelAuthTitle": "Gérez l’accès au modèle de langage",
+ "manageLanguageModelAuthentication": "Gérez l’accès au modèle de langage...",
+ "noAccessDescription": "Aucune extension n’est actuellement autorisée à utiliser des modèles de {0}",
+ "noAllowedExtensions": "Désolé, aucune extension n’a accès",
+ "noLanguageModels": "Désolé, aucun modèle de langage nécessitant une authentification n’a été trouvé.",
+ "noLanguageModelsDetail": "Il n’existe actuellement aucun modèle de langage nécessitant une authentification.",
+ "openExtension": "Ouvrir l'extension",
+ "trustedExtension": "Approuvé par Microsoft"
+ },
+ "vs/workbench/contrib/chat/browser/actions/chatMoveActions": {
+ "chat.openInEditor.label": "Déplacer la conversation dans la zone Éditeur",
+ "chat.openInNewWindow.label": "Déplacer la conversation dans une nouvelle fenêtre",
+ "interactiveSession.openInPanel.label": "Déplacer la conversation dans le panneau",
+ "interactiveSession.openInPrimarySidebar.label": "Déplacer la conversation sur la barre latérale principale",
+ "interactiveSession.openInSecondarySidebar.label": "Déplacer la conversation sur la barre latérale secondaire",
+ "interactiveSession.openInSidebar.label": "Déplacer la conversation dans la barre latérale"
+ },
+ "vs/workbench/contrib/chat/browser/actions/chatNewActions": {
+ "chat.newChat.label": "Nouvelle conversation",
+ "chat.newEdits.label": "Nouvelle conversation",
+ "chat.redoEdit.label": "Rétablir la dernière demande",
+ "chat.redoEdit.label2": "Rétablir",
+ "chat.redoEdit.tooltip": "Réappliquez les modifications de l’espace de travail et la conversation rejetées",
+ "chat.undoEdit.label": "Annuler la dernière demande"
+ },
+ "vs/workbench/contrib/chat/browser/actions/chatPromptNavigationActions": {
+ "interactive.nextUserPrompt.label": "Invite utilisateur suivante",
+ "interactive.previousUserPrompt.label": "Invite utilisateur précédente"
+ },
+ "vs/workbench/contrib/chat/browser/actions/chatQuickInputActions": {
+ "chat.closeQuickChat.label": "Fermer la conversation rapide",
+ "chat.openInChatView.label": "Ouvrir en mode conversation",
+ "interactiveSession.open": "Ouvrir la conversation rapide",
+ "quickChat": "Ouvrir la conversation rapide",
+ "toggle.desc": "Activer/désactiver la conversation rapide",
+ "toggle.isPartialQuery": "Indique si la requête est partielle ; il attendra plus d’entrées utilisateur",
+ "toggle.query": "Requête pour ouvrir la conversation rapide avec"
+ },
+ "vs/workbench/contrib/chat/browser/actions/chatSessionActions": {
+ "chat.openSessionInNewEditorGroup.label": "Déplacer la conversation sur le côté",
+ "chat.openSessionInNewWindow.label": "Déplacer la conversation dans une nouvelle fenêtre",
+ "chat.openSessionInSidebar.label": "Déplacer la conversation dans la barre latérale",
+ "chat.sessions.gettingStarted.action": "Bien démarrer avec les sessions de conversation",
+ "chatSessions.extensionAlreadyInstalled": "'{0}' est déjà installé",
+ "chatSessions.installExtension": "Installe « {0} »",
+ "chatSessions.pickPlaceholder": "Choisissez des extensions pour améliorer votre expérience de conversation",
+ "chatSessions.selectExtension": "Installer des extensions de conversation",
+ "chatSessions.toggleDescriptionDisplay.label": "Afficher les descriptions enrichies",
+ "chatSessions.toggleViewLocation.label": "Combined Sessions View",
+ "deleteSession": "Supprimer",
+ "deleteSession.confirm": "Voulez-vous vraiment supprimer cette session de conversation ?",
+ "deleteSession.delete": "Supprimer",
+ "deleteSession.detail": "Il est impossible d'annuler cette action.",
+ "interactiveSession.open": "Nouvel éditeur de conversation",
+ "openSessionInNewWindow": "Ouvrir dans une nouvelle fenêtre",
+ "openSessionInSidebar": "Ouvrir dans la barre latérale",
+ "openToSide": "Ouvrir sur le côté",
+ "renameSession": "Renommer",
+ "renameSession.emptyName": "Le nom ne peut pas être vide",
+ "renameSession.error": "Impossible de renommer la session de conversation : {0}",
+ "renameSession.nameTooLong": "Le nom est trop long (maximum 100 caractères)",
+ "renameSession.placeholder": "Entrez un nouveau nom pour la session de conversation"
+ },
+ "vs/workbench/contrib/chat/browser/actions/chatTitleActions": {
+ "chat.retry.confirmation.checkbox": "Ne plus me poser la question",
+ "chat.retry.confirmation.message2": "Cette opération annule les modifications apportées à {0} depuis cette requête.",
+ "chat.retry.confirmation.primaryButton": "Oui",
+ "chat.retry.label": "Réessayer",
+ "chat.retryLast.confirmation.message2": "Cette opération annule les modifications apportées aux {0} fichiers de votre plage de travail depuis cette requête. Voulez-vous continuer ?",
+ "chat.retryLast.confirmation.title2": "Voulez-vous réessayer votre dernière requête ?",
+ "interactive.helpful.label": "Utile",
+ "interactive.insertIntoNotebook.label": "Insérer dans Notebook",
+ "interactive.reportIssueForBug.label": "Problème de rapport",
+ "interactive.unhelpful.label": "Inutile"
+ },
+ "vs/workbench/contrib/chat/browser/actions/chatToolActions": {
+ "chat.accept": "Accepter",
+ "chat.skip": "Ignorer",
+ "chat.tools.description.agent": "Les outils sélectionnés sont configurés par l’assistant personnalisé « {0} ». Les modifications apportées aux outils seront également appliquées au fichier d’assistant personnalisé.",
+ "chat.tools.description.global": "Les outils sélectionnés seront appliqués globalement à toutes les sessions de conversation utilisant l’assistant par défaut.",
+ "chat.tools.description.readOnlyAgent": "Les outils sélectionnés sont configurés par l’assistant personnalisé « {0} ». Les modifications apportées aux outils ne seront utilisées que pour cette session et ne modifieront pas l’agent personnalisé « {0} ».",
+ "chat.tools.description.session": "Les outils sélectionnés ont été configurés uniquement pour cette session de conversation.",
+ "chat.tools.placeholder.agent": "Sélectionnez les outils pour cet assistant personnalisé",
+ "chat.tools.placeholder.global": "Sélectionner les outils disponibles pour la conversation.",
+ "chat.tools.placeholder.readOnlyAgent": "Sélectionnez les outils pour cet assistant personnalisé",
+ "chat.tools.placeholder.session": "Sélectionnez les outils pour cette session de conversation",
+ "chatTools.tooManyEnabled": "Plus de {0} outils sont activés, vous pouvez rencontrer des appels d’outils détériorés.",
+ "label": "Configurer les outils..."
+ },
+ "vs/workbench/contrib/chat/browser/actions/chatToolPicker": {
+ "addExtensionButton": "Installer l’extension...",
+ "addMcpServer": "Ajouter un serveur MCP...",
+ "configMcpCol": "Configurer {0}",
+ "configToolSets": "Configurer les jeux d’outils...",
+ "configureTools": "Configurer des outils",
+ "defaultBucketLabel": "Intégré",
+ "editUserBucket": "Modifier le jeu d’outils",
+ "mcpShowOutput": "Afficher la sortie",
+ "mcpUpdate": "Mettre à jour les outils",
+ "noTools": "Ajouter des outils à une conversation",
+ "toolLimitExceeded": "{0} outils sont activés. Vous pouvez rencontrer une dégradation des outils en appelant plus de {1} outils.",
+ "userBucket": "Ensembles d’outils définis par l’utilisateur(-trice)"
+ },
+ "vs/workbench/contrib/chat/browser/actions/codeBlockOperations": {
+ "activeEditor": "'{0}' de l’éditeur actif",
+ "applyCodeBlock.error": "Échec de l’application du bloc de code : {0}",
+ "applyCodeBlock.errorOpeningFile": "Impossible d’ouvrir {0} dans un éditeur de code.",
+ "applyCodeBlock.fileWriteError": "Impossible de créer le fichier : {0}",
+ "applyCodeBlock.noActiveEditor": "Pour appliquer ce bloc de code, ouvrez un éditeur de code ou de notebook.",
+ "applyCodeBlock.noCodeMapper": "Aucun mappeur de code disponible.",
+ "applyCodeBlock.progress": "Application d’un bloc de code à l’aide de {0}...",
+ "applyCodeBlock.readonly": "Impossible d’appliquer le bloc de code au fichier en lecture seule.",
+ "applyCodeBlock.readonlyNotebook": "Impossible d’appliquer un bloc de code à l’éditeur de notebook en lecture seule.",
+ "createFile": "Nouveau fichier « {0} »",
+ "insertCodeBlock.noActiveEditor": "Pour insérer le bloc de code, ouvrez un éditeur de code ou un éditeur de bloc-notes et placez le curseur à l'endroit où vous souhaitez insérer le bloc de code.",
+ "insertCodeBlock.readonly": "Impossible d’insérer le bloc de code dans l’éditeur de code en lecture seule.",
+ "insertCodeBlock.readonlyNotebook": "Impossible d’insérer le bloc de code dans l’éditeur de notebook en lecture seule.",
+ "newUntitledFile": "Nouvel éditeur sans titre",
+ "selectOption": "Sélectionner l’emplacement d’application du bloc de code"
+ },
+ "vs/workbench/contrib/chat/browser/actions/manageModelsActions": {
+ "manageLanguageModels": "Gérer les modèles de langage..."
+ },
+ "vs/workbench/contrib/chat/browser/agentSessions/agentSessions": {
+ "chat.session.providerLabel.background": "Arrière-plan",
+ "chat.session.providerLabel.cloud": "Cloud",
+ "chat.session.providerLabel.local": "Local"
+ },
+ "vs/workbench/contrib/chat/browser/agentSessions/agentSessionsActions": {
+ "agentSessions.filter.reset": "Reset",
+ "diffFile": "1 fichier",
+ "diffFiles": "{0} fichiers",
+ "filterAgentSessions": "Filtrer les sessions de l’agent",
+ "find": "Trouver une session d’assistant",
+ "refresh": "Actualise des sessions de l’assistant",
+ "showDiff": "Ouvrir les modifications"
+ },
+ "vs/workbench/contrib/chat/browser/agentSessions/agentSessionsView": {
+ "agentSessions.newSession": "Nouvelle session",
+ "agentSessions.newSessionAriaLabel": "Nouvelle session",
+ "agentSessions.refreshing": "Actualisation des sessions de l’assistant...",
+ "agentSessions.view.label": "Sessions d’assistant",
+ "chatSessions.installExtensions": "Installer des extensions de conversation...",
+ "newBackgroundSession": "Nouvelle session en arrière-plan",
+ "newChatSessionDefault": "Nouvelle session locale",
+ "newChatSessionFromProvider": "Nouveau {0}",
+ "newCloudSession": "Nouvelle session cloud"
+ },
+ "vs/workbench/contrib/chat/browser/agentSessions/agentSessionsViewer": {
+ "agentSessions": "Sessions d’assistant",
+ "agentSessions.dragLabel": "{0} sessions d’assistant",
+ "chat.session.status.completed": "Terminé",
+ "chat.session.status.completedAfter": "Terminé dans {0}.",
+ "chat.session.status.failed": "Échec",
+ "chat.session.status.failedAfter": "Échec après {0}.",
+ "chat.session.status.inProgress": "Traitement en cours... Merci de patienter.",
+ "chat.session.status.inProgressWithDuration": "Traitement en cours... Merci de patienter. ({0})"
+ },
+ "vs/workbench/contrib/chat/browser/agentSessions/agentSessionsViewFilter": {
+ "agentSessions.filter.archived": "Archivé",
+ "chatSessionStatus.completed": "Terminé",
+ "chatSessionStatus.failed": "Échec",
+ "chatSessionStatus.inProgress": "En cours"
+ },
+ "vs/workbench/contrib/chat/browser/attachments/implicitContextAttachment": {
+ "cell.lowercase": "cellule",
+ "chat.fileAttachment": "Attaché {0}, {1}",
+ "chat.fileAttachmentWithRange": "Attaché {0}, {1}, ligne {2} à ligne {3}",
+ "disable": "Désactiver le contexte actuel {0}",
+ "enable": "Activer le contexte actuel {0}",
+ "enableHint": "Activer le contexte actuel {0}",
+ "file.lowercase": "fichier",
+ "openEditor": "Contexte actuel {0}",
+ "openFile": "Contexte de fichier à jour"
+ },
+ "vs/workbench/contrib/chat/browser/chat.contribution": {
+ "autoApprove2.description": "L’approbation automatique globale, également appelée « mode YOLO », désactive complètement l’approbation manuelle pour tous les outils dans tous les espaces de travail, permettant à l’agent d’agir de manière totalement autonome. Ceci est extrêmement dangereux et est *jamais* recommandé, même dans des environnements conteneurisés comme [Codespaces](https://github.com/features/codespaces) et [Dev Containers](https://marketplace.visualstudio.com/items?itemName=ms-vscode-remote.remote-containers), où des clés utilisateur sont transférées dans le conteneur et pourraient être compromises.\r\n\r\nCette fonctionnalité désactive [les protections de sécurité critiques](https://code.visualstudio.com/docs/copilot/security) et facilite considérablement la compromission de la machine par un attaquant.",
+ "chat": "Conversation",
+ "chat.agent.enabled.description": "Activez le mode Assistant pour la conversation. Lorsque cette option est activée, le mode Assistant peut être activé via la liste déroulante de la vue.",
+ "chat.agent.maxRequests": "Le nombre maximal de requêtes autorisées par tour lorsque vous utilisez un assistant. Lorsque la limite est atteinte, demande à l’utilisateur de confirmer pour continuer.",
+ "chat.agent.thinking.collapsedTools": "Lorsque cette option est activée, les appels d’outils sont ajoutés à la section de réflexion réductible selon le mode sélectionné.",
+ "chat.agent.thinking.collapsedTools.all": "Tous les appels d’outil sont ajoutés à la section de réflexion réductible.",
+ "chat.agent.thinking.collapsedTools.none": "Aucun appel d’outil n’est ajouté à la section de réflexion réductible.",
+ "chat.agent.thinking.collapsedTools.readOnly": "Seuls les appels d’outil en lecture seule sont ajoutés à la section de réflexion réductible.",
+ "chat.agent.thinkingMode.collapsed": "Les parties de réflexion seront réduites par défaut.",
+ "chat.agent.thinkingMode.collapsedPreview": "Les parties de réflexion seront d’abord développées, puis réduites dès que nous atteindrons une partie qui ne réfléchit pas.",
+ "chat.agent.thinkingMode.fixedScrolling": "Afficher la réflexion dans un panneau de diffusion en continu à hauteur fixe qui défile automatiquement ; cliquez sur l’en-tête pour développer à la hauteur maximale.",
+ "chat.agent.thinkingStyle": "Contrôle le rendu de la réflexion.",
+ "chat.allowAnonymousAccess": "Contrôle si l’accès anonyme est autorisé dans la conversation.",
+ "chat.checkpoints.enabled": "Active les points de contrôle dans la conversation. Les points de contrôle vous permettent de restaurer l’état précédent de la conversation.",
+ "chat.checkpoints.showFileChanges": "Permet de contrôler l’affichage des modifications apportées au fichier de point de contrôle de conversation.",
+ "chat.codeBlock.showProgressAnimation.description": "Lors de l’application des modifications, affichez une animation de progression dans la pastille du bloc de code. Si l’option est désactivée, le pourcentage de progression s’affiche.",
+ "chat.commandCenter.enabled": "Contrôle si le centre de commande affiche un menu d'actions pour contrôler la conversation (nécessite {0}).",
+ "chat.detectParticipant.enabled": "Active la détection automatique des participants à la conversation pour la conversation de panneau.",
+ "chat.disableAIFeatures": "Désactivez et masquez les fonctionnalités d’IA intégrées fournies par GitHub Copilot, notamment la discussion et les suggestions inline.",
+ "chat.editRequests": "Permet de modifier les requêtes dans la conversation. Cela vous permet de changer le contenu de la requête et de le renvoyer au modèle.",
+ "chat.editing.autoAcceptDelay": "Délai après lequel les modifications apportées par la conversation sont automatiquement acceptées. Les valeurs sont en secondes, « 0 » signifie désactivé et « 100 » secondes est le maximum.",
+ "chat.editing.confirmEditRequestRemoval": "Indique s’il faut afficher une confirmation avant de supprimer une requête et ses modifications associées.",
+ "chat.editing.confirmEditRequestRetry": "Indique s’il faut afficher une confirmation avant de réessayer une requête et ses modifications associées.",
+ "chat.edits2Enabled": "Activez le nouveau mode Modifications basé sur l’appel d’outils. Lorsque cette option est activée, les modèles qui ne prennent pas en charge l’appel d’outils ne sont pas disponibles pour le mode Modifications.",
+ "chat.emptyState.history.enabled": "Afficher l’historique des conversations récentes dans l’état de conversation vide.",
+ "chat.experimental.detectParticipant.enabled": "Active la détection automatique des participants à la conversation pour la conversation de panneau.",
+ "chat.experimental.detectParticipant.enabled.deprecated": "Ce paramètre est obsolète. Veuillez utiliser `chat.detectParticipant.enabled` à la place.",
+ "chat.extensionToolsEnabled": "Autorisez l’utilisation d’outils fournis par des extensions tierces.",
+ "chat.extensionUnification.enabled": "Active l’unification des extensions GitHub Copilot. Lorsqu’elle est activée, toutes les fonctionnalités GitHub Copilot sont fournies par l’extension Copilot Chat. Lorsqu’elle est désactivée, les extensions GitHub Copilot et Copilot Chat fonctionnent indépendamment.",
+ "chat.fontFamily": "Contrôle la famille de polices dans les messages de conversation.",
+ "chat.fontSize": "Contrôle la taille de la police en pixels dans les messages de conversation.",
+ "chat.hideNewButtonInAgentSessionsView": "Contrôle si le bouton Nouvelle session est masqué dans la vue Sessions de l’agent.",
+ "chat.implicitContext.enabled.1": "Permet d’utiliser automatiquement l’éditeur actif comme contexte de conversation pour les emplacements de conversation spécifiés.",
+ "chat.implicitContext.suggestedContext": "Contrôle si le nouveau flux de contexte implicite est affiché. Dans les modes Demander et Modifier, le contexte est automatiquement inclus. Lorsque vous utilisez le mode Assistant, le contexte est suggéré en tant que pièce jointe. Les sélections sont toujours incluses en tant que contexte.",
+ "chat.implicitContext.value": "La valeur du contexte implicite.",
+ "chat.implicitContext.value.always": "Le contexte implicite est toujours activé.",
+ "chat.implicitContext.value.first": "Le contexte implicite est activé pour la première interaction.",
+ "chat.implicitContext.value.never": "Le contexte implicite n'est jamais activé.",
+ "chat.instructions.config.locations.description": "Spécifiez le ou les emplacements des fichiers d’instructions (`*{0}`) qui peuvent être joints dans les sessions Conversation. [En savoir plus]({1}).\r\n\r\nLes chemins relatifs sont résolus à partir des dossiers racine de votre espace de travail.",
+ "chat.instructions.config.locations.title": "Emplacements des fichiers d’instructions",
+ "chat.mathEnabled.description": "Activez le rendu mathématique dans les réponses de conversation à l’aide de KaTeX.",
+ "chat.mcp.access": "Contrôle l’accès aux serveurs de protocole de contexte du modèle.",
+ "chat.mcp.access.any": "Autorisez l’accès à tout serveur MCP installé.",
+ "chat.mcp.access.none": "Aucun accès aux serveurs MCP.",
+ "chat.mcp.access.registry": "Autorise l’accès aux serveurs MCP installés à partir du registre auquel VS Code est connecté.",
+ "chat.mcp.assisted.nuget.enabled.description": "Permet d’activer les packages NuGet pour l’installation de serveurs MCP assistée par IA. Permet d’installer des serveurs MCP par nom à partir du registre central pour les packages .NET (NuGet.org).",
+ "chat.mcp.autostart": "Contrôle si les serveurs MCP doivent être démarrés automatiquement lors de la soumission de messages de conversation.",
+ "chat.mcp.autostart.never": "Ne démarrez jamais automatiquement les serveurs MCP.",
+ "chat.mcp.autostart.newAndOutdated": "Démarrez automatiquement les nouveaux serveurs MCP et ceux obsolètes qui ne sont pas encore en cours d’exécution.",
+ "chat.mcp.autostart.onlyNew": "Démarrez automatiquement uniquement les nouveaux serveurs MCP n’ayant jamais été exécutés.",
+ "chat.mcp.gallery.enabled": "Active la place de marché par défaut pour les serveurs Model Context Protocol (MCP).",
+ "chat.mcp.serverSampling": "Configure les modèles exposés aux serveurs MCP pour l’échantillonnage (demandes de modèle en arrière-plan). Ce paramètre peut être modifié graphiquement sous la commande « {0} ».",
+ "chat.mcp.serverSampling.allowedDuringChat": "Indique si ce serveur effectue des demandes d’échantillonnage pendant ses appels d’outils dans une session de conversation.",
+ "chat.mcp.serverSampling.allowedOutsideChat": "Indique si ce serveur est autorisé à effectuer des demandes d’échantillonnage en dehors d’une session de conversation.",
+ "chat.mcp.serverSampling.model": "Modèle auquel le serveur MCP a accès.",
+ "chat.mode.config.locations.deprecated": "Ce paramètre est déconseillé et sera supprimé dans les versions ultérieures. Les modes de conversation sont désormais appelés agents personnalisés et se trouvent dans « .github/agents »",
+ "chat.mode.config.locations.description": "Spécifiez le ou les emplacements des fichiers du mode conversation personnalisée (`*{0}`). [Découvrez plus d’informations]({1}).\r\n\r\nLes chemins d’accès relatifs sont résolus à partir du ou des dossiers racine de votre espace de travail.",
+ "chat.mode.config.locations.title": "Emplacements des fichiers de mode",
+ "chat.notifyWindowOnConfirmation": "Contrôle si une session de conversation doit afficher à l’utilisateur une notification du système d’exploitation lorsqu’une confirmation est nécessaire alors que la fenêtre n’est pas active. Ceci inclut un badge de fenêtre ainsi qu’une notification toast.",
+ "chat.notifyWindowOnResponseReceived": "Contrôle si une session de conversation doit afficher à l’utilisateur une notification du système d’exploitation lorsqu’une réponse est reçue lorsque la fenêtre n’est pas active. Ceci inclut un badge de fenêtre ainsi qu’une notification toast.",
+ "chat.promptFilesRecommendations.description": "Configurez les fichiers de requête à recommander dans l’affichage d’accueil de la conversation. Chaque clé est un nom de fichier de requête, et la valeur peut être `true` pour toujours recommander, `false` pour ne jamais recommander, ou une expression [when clause](https://aka.ms/vscode-when-clause) comme `resourceExtname == .js` ou `resourceLangId == markdown`.",
+ "chat.promptFilesRecommendations.title": "Demandez des recommandations sur les fichiers",
+ "chat.renderRelatedFiles": "Contrôle si les fichiers associés doivent être affichés dans l’entrée de conversation.",
+ "chat.reusablePrompts.config.locations.description": "Spécifiez le ou les emplacements des fichiers de requête réutilisables (`*{0}`) que vous pouvez exécuter dans les sessions Conversation. [En savoir plus]({1}).\r\n\r\nLes chemins relatifs sont résolus à partir des dossiers racine de votre espace de travail.",
+ "chat.reusablePrompts.config.locations.title": "Emplacements des fichiers d’invite",
+ "chat.sendElementsToChat.attachCSS": "Contrôle si le CSS de l’élément sélectionné sera ajouté à la conversation. {0} doit être activé.",
+ "chat.sendElementsToChat.attachImages": "Contrôle si la capture d’écran de l’élément sélectionné sera ajoutée à la conversation. {0} doit être activé.",
+ "chat.sendElementsToChat.enabled": "Contrôle si les éléments peuvent être envoyés à la conversation à partir du navigateur simple.",
+ "chat.sessionsViewLocation.description": "Contrôle où afficher le menu des sessions de l’agent.",
+ "chat.showAgentSessionsViewDescription": "Contrôle si les descriptions de session sont affichées sur une deuxième ligne dans la vue Sessions de conversation.",
+ "chat.signInWithAlternateScopes": "Contrôle l’utilisation de la connexion avec des étendues alternatives.",
+ "chat.subagentTool.customAgents": "Indique si l’outil runSubagent peut utiliser des agents personnalisés. Lorsqu’il est activé, l’outil peut prendre le nom exact d’un agent personnalisé.",
+ "chat.todoListTool.descriptionField": "Lorsque cette option est activée, les tâches incluent des descriptions détaillées du contexte d’implémentation. Cela fournit plus d’informations, mais utilise des jetons supplémentaires et peut ralentir les réponses.",
+ "chat.todoListTool.writeOnly": "Lorsqu’il est activé, l’outil de gestion des tâches fonctionne en mode écriture seule, ce qui nécessite que l’agent mémorise les tâches dans le contexte.",
+ "chat.toolReferenceName.description": "{0} – {1}",
+ "chat.tools.autoApprove.edits": "Contrôle si les modifications apportées par la conversation sont automatiquement approuvées. La valeur par défaut est d’approuver toutes les modifications, à l’exception de celles apportées à certains fichiers susceptibles d’entraîner des effets secondaires immédiats non intentionnels, tels que '**/.vscode/*.json'.\r\n\r\nDéfinir sur « true » pour approuver automatiquement les modifications apportées aux fichiers correspondants, ou sur « false » pour toujours exiger une approbation explicite. Le dernier modèle correspondant à un fichier donné détermine si la modification est approuvée automatiquement.",
+ "chat.tools.eligibleForAutoApproval": "Contrôle les outils éligibles à l’approbation automatique. Les outils définis sur « false » demandent toujours une confirmation et n’offrent jamais l’option d’approbation automatique. Le comportement par défaut (ou la définition d’un outil sur « true ») peut amener l’outil à proposer des options d’approbation automatique.",
+ "chat.tools.fetchPage.approvedUrls": "Contrôle les URL automatiquement approuvées lorsqu’elles sont demandées par des outils de conversation. Les clés correspondent à des modèles d’URL et les valeurs peuvent être « true » pour approuver à la fois les requêtes et les réponses, « false » pour refuser, ou un objet avec les propriétés « approveRequest » et « approveResponse » pour un contrôle plus précis.\r\n\r\nExemples :\r\n- `\"https://example.com\": true` - Approuve toutes les requêtes vers example.com\r\n- `\"https://*.example.com\": true` - Approuve toutes les requêtes n’importe quel sous-domaine\r\n- `\"https://example.com/api/*\": { \"approveRequest\": true, \"approveResponse\": false }` - Approuve les requêtes, mais pas les réponses pour les chemins example.com/api",
+ "chat.tools.todos.showWidget": "Contrôle l’affichage du widget de liste de tâches au-dessus de la zone de saisie de conversation. Lorsqu’il est activé, le widget affiche les tâches créées par l’agent et se met à jour au fur et à mesure de leur avancement.",
+ "chat.undoRequests.restoreInput": "Contrôle si l’entrée de la conversation doit être restaurée lorsqu’une demande d’annulation est effectuée. L’entrée sera remplie avec le texte de la demande qui a été restaurée.",
+ "chat.useAgentMd.description": "Contrôle si les instructions de 'AGENTS. Le fichier MD trouvé dans les racines d’un espace de travail est joint à toutes les demandes de conversation.",
+ "chat.useAgentMd.title": "Utiliser le fichier AGENTS.MD",
+ "chat.useClaudeSkills.description": "Contrôle si les compétences Claude trouvées dans l’espace de travail et dans les répertoires personnels de l’utilisateur sous `.claude/skills` sont listées dans toutes les requêtes de conversation. Le modèle de langage peut charger ces compétences à la demande si l’outil `read` est disponible.",
+ "chat.useClaudeSkills.title": "Utilisez les compétences de Claude",
+ "chat.useNestedAgentMd.description": "Contrôle si les instructions de 'AGENTS' imbriqués. Les fichiers MD trouvés dans l’espace de travail sont répertoriés dans toutes les demandes de conversation. Le modèle de langage peut charger ces compétences à la demande si l’outil `read` est disponible.",
+ "chat.useNestedAgentMd.title": "Utiliser des fichiers AGENTS.MD imbriqués",
+ "clear": "Démarrer une nouvelle conversation",
+ "interactiveSession.editor.fontFamily": "Contrôle l’la famille de police dans les codeblocks de la conversation.",
+ "interactiveSession.editor.fontSize": "Contrôle la taille de la police en pixels dans les codeblocks de la conversation.",
+ "interactiveSession.editor.fontWeight": "Contrôle l’épaisseur de police dans les codeblocks de la conversation.",
+ "interactiveSession.editor.lineHeight": "Contrôle la hauteur de la ligne en pixels dans les codeblocks de la conversation. Utilisez 0 pour calculer la hauteur de ligne à partir de la taille de la police.",
+ "interactiveSession.editor.wordWrap": "Contrôle si les lignes doivent être enveloppées dans les codeblocks de la conversation.",
+ "interactiveSessionConfigurationTitle": "Conversation",
+ "mcp.discovery.enabled": "Configure la découverte des serveurs du Model Context Protocol à partir de la configuration de diverses autres applications.",
+ "mcp.gallery.serviceUrl": "Configurer l’URL du service de la galerie MCP à laquelle se connecter",
+ "mcp.list": "Répertorier les serveurs"
+ },
+ "vs/workbench/contrib/chat/browser/chatAccessibilityProvider": {
+ "chat": "Conversation",
+ "multiCodeBlock": "{0}{1}{2} blocs de code : {3} {4}",
+ "multiCodeBlockHint": "{0}{1}{2}{3} blocs de code : {4}{5} {6}",
+ "multiFileTreeHint": "{0} arborescences de fichiers ",
+ "multiTableHint": "{0} tableaux ",
+ "noCodeBlocks": "{0}{1}{2} {3}",
+ "noCodeBlocksHint": "{0}{1}{2}{3}{4} {5}",
+ "singleCodeBlock": "{0}{1}1 bloc de code :{2} {3}",
+ "singleCodeBlockHint": "{0}{1}{2}1 bloc de code : {3} {4}{5}",
+ "singleFileTreeHint": "1 arborescence de fichiers ",
+ "singleTableHint": "1 tableau ",
+ "toolInvocationsHint": "Confirmation de conversation requise : {0}",
+ "toolInvocationsHintDetails": "Détails : {0}",
+ "toolInvocationsHintKb": "Confirmation de conversation requise : {0}. Appuyez sur {1} pour accepter ou sur {2} pour annuler.",
+ "toolPostApprovalTitle": "Approuver les résultats de l’outil"
+ },
+ "vs/workbench/contrib/chat/browser/chatAccessibilityService": {
+ "chat.untitledChat": "Conversation sans titre",
+ "chatTitle": "Conversation : {0}",
+ "notificationDetail": "Nouvelle réponse de la conversation."
+ },
+ "vs/workbench/contrib/chat/browser/chatAgentHover": {
+ "reservedName": "Cette extension de conversation utilise un nom réservé.",
+ "viewExtensionLabel": "Afficher l'extension"
+ },
+ "vs/workbench/contrib/chat/browser/chatAttachmentResolveService": {
+ "imageTooLarge": "L‘image est trop volumineuse",
+ "imageTooLargeMessage": "L’image {0} est trop grande pour être jointe."
+ },
+ "vs/workbench/contrib/chat/browser/chatAttachmentWidgets": {
+ "chat.NotebookImageAttachment": "Sortie du Notebook ci-joint, {0}",
+ "chat.attachment": "Contexte attaché, {0}",
+ "chat.attachment.clearButton": "Supprimer du contexte",
+ "chat.clickToViewContents": "Cliquer pour afficher le contenu de : {0}",
+ "chat.elementAttachment": "Élément attaché, {0}",
+ "chat.fileAttachment": "Fichier joint, {0}",
+ "chat.fileAttachmentHover": "{0} ne prend pas en charge ce type de fichier.",
+ "chat.fileAttachmentWithRange": "Fichier joint, {0}, ligne {1} à la ligne {2}",
+ "chat.imageAttachment": "Image jointe, {0}",
+ "chat.imageAttachmentHover": "{0} ne prend pas en charge les images.",
+ "chat.imageAttachmentWarning": "Ce GIF a été partiellement omis - l'image actuelle sera envoyée.",
+ "chat.instructionsAttachment": "Instructions jointes, {0}",
+ "chat.omittedFileAttachment": "J'ai omis ce fichier : {0}",
+ "chat.omittedImageAttachment": "J'ai omis cette image : {0}",
+ "chat.omittedNotebookImageAttachment": "Cette sortie du Notebook a été omise : {0}",
+ "chat.partiallyOmittedImageAttachment": "Cette image a été partiellement omise : {0}",
+ "chat.partiallyOmittedNotebookImageAttachment": "Cette sortie du Notebook a été partiellement omise : {0}",
+ "chat.promptAttachment": "Fichiers de requête, {0}",
+ "chat.terminalCommand": "Commande de terminal, {0}",
+ "chat.terminalCommandHoverCommandTitle": "Commande",
+ "chat.terminalCommandHoverCommandTitleExit": "Commande : {0}, code de sortie : {1}",
+ "chat.terminalCommandHoverHint": "Cliquez pour mettre cette commande en focus dans le terminal.",
+ "chat.terminalCommandHoverOutputTitle": "Sortie :",
+ "instructions": "Instructions",
+ "instructions.label": "Instructions supplémentaires",
+ "prompt": "Prompt",
+ "resource": "Valeur complète de la ressource de pièce jointe de conversation, notamment le schéma et le chemin d’accès",
+ "tool": "{0} – {1}",
+ "toolset": "{0} – {1}"
+ },
+ "vs/workbench/contrib/chat/browser/chatContentParts/chatAgentCommandContentPart": {
+ "rerun": "Réexécuter sans {0}{1}"
+ },
+ "vs/workbench/contrib/chat/browser/chatContentParts/chatAnonymousRateLimitedPart": {
+ "anonymousRateLimited": "Continuez la conversation en vous connectant. Votre compte gratuit vous offre 50 demandes premium par mois ainsi qu’un accès à davantage de modèles et de fonctionnalités IA.",
+ "enableMoreAIFeatures": "Activer plus de fonctionnalités d’IA"
+ },
+ "vs/workbench/contrib/chat/browser/chatContentParts/chatChangesSummaryPart": {
+ "chat.viewFileChangesSummary": "Afficher toutes les modifications apportées aux fichiers"
+ },
+ "vs/workbench/contrib/chat/browser/chatContentParts/chatCodeCitationContentPart": {
+ "viewMatches": "Afficher les correspondances"
+ },
+ "vs/workbench/contrib/chat/browser/chatContentParts/chatCollapsibleContentPart": {
+ "usedReferencesCollapsed": "{0}, réduit",
+ "usedReferencesExpanded": "{0}, développé"
+ },
+ "vs/workbench/contrib/chat/browser/chatContentParts/chatCommandContentPart": {
+ "commandButtonDisabled": "Bouton non disponible dans la conversation restaurée"
+ },
+ "vs/workbench/contrib/chat/browser/chatContentParts/chatConfirmationContentPart": {
+ "accept": "Accepter",
+ "dismiss": "Ignorer"
+ },
+ "vs/workbench/contrib/chat/browser/chatContentParts/chatConfirmationWidget": {
+ "chat.confirmationWidget.ariaLabel": "Boîte de dialogue de confirmation {0} {1}",
+ "chat.untitledChat": "Conversation sans titre",
+ "chatTitle": "Conversation : {0}",
+ "notificationDetail": "Approbation nécessaire pour continuer."
+ },
+ "vs/workbench/contrib/chat/browser/chatContentParts/chatExtensionsContentPart": {
+ "chat.extensions.loading": "Chargement des extensions..."
+ },
+ "vs/workbench/contrib/chat/browser/chatContentParts/chatMarkdownContentPart": {
+ "chat.codeblock.applyingEdits": "Application des modifications",
+ "chat.codeblock.applyingPercentage": "({0} %)...",
+ "chat.codeblock.deletions": "{0} suppressions",
+ "chat.codeblock.deletions.one": "1 suppression",
+ "chat.codeblock.edited": "Modifié",
+ "chat.codeblock.generating": "Génération de modifications...",
+ "chat.codeblock.insertions": "{0} insertions",
+ "chat.codeblock.insertions.one": "1 insertion",
+ "summary": "Modifié {0}, {1} et {2}"
+ },
+ "vs/workbench/contrib/chat/browser/chatContentParts/chatMcpServersInteractionContentPart": {
+ "mcp.skip.link": "Ignorer ?",
+ "mcp.start.multiple": "Les serveurs MCP {0} peuvent avoir de nouveaux outils et nécessitent une interaction pour démarrer. [Les démarrer maintenant ?]({1})",
+ "mcp.start.single": "Le serveur MCP {0} peut avoir de nouveaux outils et nécessite une interaction pour démarrer. [Le démarrer maintenant ?]({1})",
+ "mcp.starting": "Démarrage de {0}...",
+ "mcp.starting.servers": "Démarrage des serveurs MCP : {0}...",
+ "mcp.working.mcp": "Activation des extensions MCP..."
+ },
+ "vs/workbench/contrib/chat/browser/chatContentParts/chatMultiDiffContentPart": {
+ "chatEditingSession.fileCounts": "{0} lignes ajoutées, {1} lignes supprimées",
+ "chatMultiDiff.manyFiles": "Fichiers {0} modifiés",
+ "chatMultiDiff.oneFile": "1 fichier modifié",
+ "chatMultiDiff.openAllChanges": "Ouvrir les modifications",
+ "chatMultiDiffList": "Modifications de fichiers"
+ },
+ "vs/workbench/contrib/chat/browser/chatContentParts/chatProgressContentPart": {
+ "chat.autoapprove.lmServicePerTool.profile": "Approuvé automatiquement pour ce profil",
+ "chat.autoapprove.lmServicePerTool.session": "Approuvé automatiquement pour cette session",
+ "chat.autoapprove.lmServicePerTool.workspace": "Approuvé automatiquement pour cet espace de travail",
+ "chat.autoapprove.setting": "Approuvé automatiquement par {0}",
+ "edit": "Modifier",
+ "toolCallUnresponsive": "En attente de la réponse de l’outil « {0} »...",
+ "workingMessage": "Traitement en cours..."
+ },
+ "vs/workbench/contrib/chat/browser/chatContentParts/chatPullRequestContentPart": {
+ "chatPullRequest.seeMore": "Découvrir plus d’informations"
+ },
+ "vs/workbench/contrib/chat/browser/chatContentParts/chatQuotaExceededPart": {
+ "clickToContinue": "Cliquez pour réessayer",
+ "enableAdditionalUsage": "Gérer les requêtes Premium payantes",
+ "upgradeToCopilotPro": "Mettre à niveau vers GitHub Copilot Pro",
+ "waitWarning": "Les modifications seront effectives dans quelques minutes."
+ },
+ "vs/workbench/contrib/chat/browser/chatContentParts/chatReferencesContentPart": {
+ "addToChat": "Ajouter un fichier à la conversation",
+ "chatCollapsibleList": "Liste de références de conversation réductibles",
+ "chatEditingSession.fileCounts": "{0} lignes ajoutées, {1} lignes supprimées",
+ "copyLink": "Copier un lien",
+ "setting.hover": "Ouvrir le paramètre «{0}»",
+ "usedReferencesPlural": "{0} références utilisées",
+ "usedReferencesSingular": "{0} référence utilisée"
+ },
+ "vs/workbench/contrib/chat/browser/chatContentParts/chatSuggestNextWidget": {
+ "chat.currentMode": "mode actuel",
+ "chat.proceedFrom": "Continuer depuis {0}",
+ "chat.suggestNext.item": "{0}"
+ },
+ "vs/workbench/contrib/chat/browser/chatContentParts/chatTextEditContentPart": {
+ "edits0": "Les modifications ont été abandonnées.",
+ "editsSummary": "Les modifications ont été apportées."
+ },
+ "vs/workbench/contrib/chat/browser/chatContentParts/chatThinkingContentPart": {
+ "chat.thinking.fixed.done.generic": "Réflexion pendant quelques secondes",
+ "chat.thinking.fixed.done.withHeader": "{0}{1}",
+ "chat.thinking.fixed.progress.withHeader": "Réflexion : {0}",
+ "chat.thinking.header": "Je réfléchis..."
+ },
+ "vs/workbench/contrib/chat/browser/chatContentParts/chatTodoListWidget": {
+ "chat.todoList.clearButton": "Effacez toutes les tâches",
+ "chat.todoList.clearButton.disabled": "Impossible d’effacer les tâches pendant qu’une tâche est en cours",
+ "chat.todoList.collapseButton": "Réduire les tâches",
+ "chat.todoList.currentTask": "{0} ({1}/{2})",
+ "chat.todoList.expandButton": "Développer les tâches",
+ "chat.todoList.item": "{0}, {1}",
+ "chat.todoList.itemWithDescription": "{0}, {1}, {2}",
+ "chat.todoList.status.completed": "terminé",
+ "chat.todoList.status.inProgress": "en cours",
+ "chat.todoList.status.notStarted": "non démarré",
+ "chat.todoList.title": "Todos",
+ "chat.todoList.titleWithCount": "Tâches ({0}/{1})",
+ "chatTodoList": "Liste des tâches de conversation"
+ },
+ "vs/workbench/contrib/chat/browser/chatContentParts/chatToolInputOutputContentPart": {
+ "chat.input": "Entrée",
+ "chat.output": "Sortie"
+ },
+ "vs/workbench/contrib/chat/browser/chatContentParts/chatToolOutputContentSubPart": {
+ "chat.saveResources": "Enregistrer sous...",
+ "chat.saveResources.error": "L'enregistrement de {0} a échoué : {1}",
+ "chat.saveResources.progress": "Enregistrement des ressources...",
+ "chat.saveResources.reveal": "Ressources enregistrées dans {0}",
+ "chat.saveResources.title": "Sélectionner un dossier pour enregistrer les ressources"
+ },
+ "vs/workbench/contrib/chat/browser/chatContentParts/chatTreeContentPart": {
+ "treeAriaLabel": "Arborescence de fichiers"
+ },
+ "vs/workbench/contrib/chat/browser/chatContentParts/toolInvocationParts/abstractToolConfirmationSubPart": {
+ "skip": "Ignorer"
+ },
+ "vs/workbench/contrib/chat/browser/chatContentParts/toolInvocationParts/chatExtensionsInstallToolSubPart": {
+ "allow": "Autoriser",
+ "cancel": "Annuler",
+ "installExtensions": "Installer les extensions",
+ "installExtensionsConfirmation": "Cliquez sur le bouton Installer de l’extension et appuyez sur Autoriser une fois l’installation terminée."
+ },
+ "vs/workbench/contrib/chat/browser/chatContentParts/toolInvocationParts/chatInputOutputMarkdownProgressPart": {
+ "chat.autoapprove.lmServicePerTool.profile": "Approuvé automatiquement pour ce profil",
+ "chat.autoapprove.lmServicePerTool.session": "Approuvé automatiquement pour cette session",
+ "chat.autoapprove.lmServicePerTool.workspace": "Approuvé automatiquement pour cet espace de travail",
+ "chat.autoapprove.setting": "Approuvé automatiquement par {0}",
+ "edit": "Modifier"
+ },
+ "vs/workbench/contrib/chat/browser/chatContentParts/toolInvocationParts/chatTerminalToolConfirmationSubPart": {
+ "autoApprove.button.enable": "Activer",
+ "autoApprove.enable": "Activez l’approbation automatique...",
+ "autoApprove.markdown": "Cela permettra à un sous-ensemble configurable de commandes de s’exécuter de manière autonome dans le terminal. Il fournit des *protections optimales* et suppose que l’agent n’agit pas de manière malveillante.",
+ "autoApprove.markdown2": "En savoir plus sur les risques potentiels et comment les éviter.",
+ "autoApprove.title": "Voulez-vous activer l’approbation automatique du terminal ?",
+ "newRule": "Règle d’approbation automatique {0} ajoutée",
+ "newRule.plural": "Règles d’approbation automatique {0} ajoutées",
+ "ruleTooltip": "Afficher la règle dans les paramètres",
+ "sessionApproval": "Toutes les commandes seront automatiquement approuvées pour cette session",
+ "sessionApproval.disable": "Désactiver",
+ "skip.detail": "Procédez sans exécuter cette commande",
+ "tool.allow": "Autoriser",
+ "tool.skip": "Ignorer"
+ },
+ "vs/workbench/contrib/chat/browser/chatContentParts/toolInvocationParts/chatTerminalToolProgressPart": {
+ "chat.focusMostRecentTerminal": "Conversation : focus sur le terminal le plus récent",
+ "chat.focusMostRecentTerminalOutput": "Conversation : focus sur la sortie du terminal la plus récente",
+ "chat.terminalOutputEmpty": "Aucune sortie n’a été produite par la commande.",
+ "chat.terminalOutputTruncated": "Sortie tronquée aux {0} premières lignes.",
+ "chatTerminalOutputAccessibleViewHeader": "Commande : {0}",
+ "chatTerminalOutputAriaLabel": "Sortie du terminal pour {0}",
+ "focusTerminal": "Focus sur le terminal",
+ "hideTerminalOutput": "Masquer la sortie",
+ "showTerminal": "Afficher et mettre le terminal au premier plan",
+ "showTerminalOutput": "Afficher la sortie",
+ "terminalToolCommand": "{0}"
+ },
+ "vs/workbench/contrib/chat/browser/chatContentParts/toolInvocationParts/chatToolConfirmationSubPart": {
+ "allow": "Autoriser",
+ "allowReview": "Autoriser et examiner",
+ "allowSkip": "Autoriser et ignorer le résultat de la révision",
+ "chat.input": "Entrée",
+ "seeMore": "Afficher plus",
+ "showMore": "Afficher plus",
+ "skip.detail": "Continuer sans exécuter cet outil"
+ },
+ "vs/workbench/contrib/chat/browser/chatContentParts/toolInvocationParts/chatToolOutputPart": {
+ "chat.toolOutputError": "Désolé, erreur lors du rendu de la sortie de l’outil",
+ "loading": "Sortie en cours de l’outil de rendu... Merci de patienter."
+ },
+ "vs/workbench/contrib/chat/browser/chatContentParts/toolInvocationParts/chatToolPostExecuteConfirmationPart": {
+ "allow": "Autoriser",
+ "approveToolResult": "Approuver le résultat de l’outil",
+ "noDisplayableResults": "Aucun résultat affichable",
+ "noResults": "Aucun résultat à afficher",
+ "skip.post": "Ignorer les résultats"
+ },
+ "vs/workbench/contrib/chat/browser/chatContext.contribution": {
+ "chatContextExtPoint": "Contribue aux intégrations de contexte de conversation au widget de conversation.",
+ "chatContextExtPoint.icon": "Icône associée à cet élément de contexte de conversation.",
+ "chatContextExtPoint.id": "Identificateur unique de cet élément.",
+ "chatContextExtPoint.title": "Nom convivial de cet élément, utilisé pour l’affichage dans les menus."
+ },
+ "vs/workbench/contrib/chat/browser/chatDragAndDrop": {
+ "attacAsContext": "Attacher {0} en tant que contexte",
+ "dragAndDroppedImageName": "Image à partir d’une URL",
+ "file": "Fichier",
+ "folder": "Dossier",
+ "image": "Image",
+ "notebookOutput": "Sortie",
+ "problem": "Problème",
+ "scmHistoryItem": "Modifier",
+ "symbol": "Symbole",
+ "url": "URL"
+ },
+ "vs/workbench/contrib/chat/browser/chatEditing/chatEditingActions": {
+ "accept": "Conserver",
+ "accept.file": "Conserver",
+ "acceptAllEdits": "Conserver toutes les modifications",
+ "addFilesFromReferences": "Ajoutez des fichiers à partir de références",
+ "chat.editRequests.label": "Modifier une demande",
+ "chat.editing.discardAll.confirmation.manyFiles": "Cette opération annule les modifications apportées aux fichiers {0}. Voulez-vous continuer ?",
+ "chat.editing.discardAll.confirmation.oneFile": "Cela annulera les modifications apportées dans {0}. Voulez-vous continuer ?",
+ "chat.editing.discardAll.confirmation.primaryButton": "Oui",
+ "chat.editing.discardAll.confirmation.title": "Annuler toutes les modifications ?",
+ "chat.openFileUpdatedBySnapshot.label": "Ouvrir un fichier",
+ "chat.openSnapshot.label": "Ouvrir l’instantané de fichier",
+ "chat.remove.confirmation.checkbox": "Ne plus me poser la question",
+ "chat.remove.confirmation.message2": "Cette opération supprimera toutes les requêtes suivantes et annulera les modifications apportées à {0}. Voulez-vous continuer ?",
+ "chat.remove.confirmation.multipleEdits.message": "Cela supprimera toutes les requêtes ultérieures et annulera les modifications apportées aux {0} fichiers de votre plage de travail. Voulez-vous continuer ?",
+ "chat.remove.confirmation.primaryButton": "Oui",
+ "chat.remove.confirmation.title": "Voulez-vous annuler {0} modifications ?",
+ "chat.removeLast.confirmation.message2": "Cela supprimera votre dernière requête et annulera les modifications apportées à {0}. Voulez-vous continuer ?",
+ "chat.removeLast.confirmation.multipleEdits.message": "Cela supprimera votre dernière requête et annulera les modifications apportées aux {0} fichiers de votre plage de travail. Voulez-vous continuer ?",
+ "chat.removeLast.confirmation.title": "Voulez-vous annuler votre dernière modification ?",
+ "chat.restoreCheckpoint.label": "Restaurer le point de contrôle",
+ "chat.restoreCheckpoint.tooltip": "Restaure l’espace de travail et la conversation à ce point",
+ "chat.restoreLastCheckpoint.label": "Restaurer au dernier point de contrôle",
+ "chat.undoEdits.label": "Annuler les demandes",
+ "chatEditing.snapshot": "{0} (instantané)",
+ "chatEditing.viewChanges": "Afficher toutes les modifications",
+ "chatEditing.viewPreviousEdits": "Afficher les modifications précédentes",
+ "discard": "Annuler",
+ "discard.file": "Annuler",
+ "discardAllEdits": "Annuler toutes les modifications",
+ "open.fileInDiff": "Ouvrir les modifications dans l’Éditeur de diff"
+ },
+ "vs/workbench/contrib/chat/browser/chatEditing/chatEditingCodeEditorIntegration": {
+ "diff.generic": "{0} (modifications de la conversation)"
+ },
+ "vs/workbench/contrib/chat/browser/chatEditing/chatEditingEditorActions": {
+ "accept": "Conserver les modifications de conversation",
+ "accept2": "Conserver",
+ "accept3": "Conserver les modifications de conversation dans ce fichier",
+ "accept4": "Conserver toutes les modifications",
+ "acceptAllEdits": "Conservez toutes les modifications de conversation",
+ "acceptAllEditsTooltip": "Conservez toutes les modifications de conversation dans cette session",
+ "acceptHunk": "Conserver cette modification",
+ "acceptHunkShort": "Conserver",
+ "accessibleDiff": "Afficher la vue Diff accessible pour les modifications de conversation",
+ "diff": "Activer/désactiver l'éditeur Diff pour les modifications de conversation",
+ "discard": "Annuler les modifications de conversation",
+ "discard2": "Annuler",
+ "discard3": "Annuler les modifications de conversation dans ce fichier",
+ "discard4": "Annuler toutes les modifications",
+ "label": "État de la navigation",
+ "next": "Accéder à la modification de conversation suivante",
+ "prev": "Accéder à la modification de conversation précédente",
+ "review": "Vérifier",
+ "undo": "Annuler cette modification",
+ "undoShort": "Annuler"
+ },
+ "vs/workbench/contrib/chat/browser/chatEditing/chatEditingEditorContextKeys": {
+ "chat.ctxCursorInChangeRange": "Le curseur se trouve dans une plage de modifications effectuée par l’édition de la conversation.",
+ "chat.ctxEditSessionIsGlobal": "L’éditeur actuel fait partie de la session d’édition globale",
+ "chat.ctxHasRequestInProgress": "Le Rédacteur actuel affiche un fichier d’une session d’édition qui est toujours en cours",
+ "chat.ctxReviewModeEnabled": "Le mode révision des modifications apportées à la conversation est activé",
+ "chat.hasEditorModifications": "L’éditeur actuel contient des modifications de conversation",
+ "chat.isCurrentlyBeingModified": "L’éditeur actuel est en cours de modification",
+ "chatEdits.requestCount": "Nombre de tour(s) de la session d’édition dans cet éditeur"
+ },
+ "vs/workbench/contrib/chat/browser/chatEditing/chatEditingEditorOverlay": {
+ "0Of0": "—",
+ "nOfM": "{0} sur {1}",
+ "tooltip": "{0} ({1})",
+ "tooltip_11": "1 modification dans 1 fichier",
+ "tooltip_1n": "1 modification dans {0} fichiers",
+ "tooltip_busy": "{0} – Traitement en cours... Merci de patienter.",
+ "tooltip_n1": "{0} modifications dans 1 fichier",
+ "tooltip_nm": "{0} modifications dans {1} fichiers",
+ "working": "Traitement en cours... Merci de patienter."
+ },
+ "vs/workbench/contrib/chat/browser/chatEditing/chatEditingModifiedDocumentEntry": {
+ "chatEditing1": "Modification de la conversation : « {0} »",
+ "chatEditing2": "Modification de la conversation",
+ "default": "Modifications de conversation"
+ },
+ "vs/workbench/contrib/chat/browser/chatEditing/chatEditingModifiedFileEntry": {
+ "editorSelectionBackground": "Couleur des régions de modification en attente dans la minimap"
+ },
+ "vs/workbench/contrib/chat/browser/chatEditing/chatEditingModifiedNotebookEntry": {
+ "chatNotebookEdit1": "Modification de la conversation : « {0} »",
+ "chatNotebookEdit2": "Modification de la conversation"
+ },
+ "vs/workbench/contrib/chat/browser/chatEditing/chatEditingServiceImpl": {
+ "chat": "Modification de la conversation",
+ "chatEditing.modified2": "Modifications en attente depuis la conversation instantanée",
+ "join.chatEditingSession": "Enregistrement de l’historique des modifications de conversation"
+ },
+ "vs/workbench/contrib/chat/browser/chatEditing/chatEditingSession": {
+ "multiDiffEditorInput.name": "Modifications suggérées"
+ },
+ "vs/workbench/contrib/chat/browser/chatEditing/notebook/chatEditingNotebookEditorIntegration": {
+ "diff.generic": "{0} (modifications de la conversation)"
+ },
+ "vs/workbench/contrib/chat/browser/chatEditing/simpleBrowserEditorOverlay": {
+ "cancelSelection": "Cliquez pour annuler la sélection.",
+ "cancelSelectionLabel": "Annuler",
+ "chat.configureElements": "Configurer les pièces jointes envoyées",
+ "chat.expandOverlay": "Développer la superposition",
+ "chat.hideOverlay": "Réduire la superposition",
+ "chat.nextSelection": "Sélectionner à nouveau",
+ "connectingWebviewElement": "Connexion à la vue web...",
+ "continuousSelectionDropdown": "Sélection continue",
+ "elementCancelMessage": "Sélection annulée",
+ "elementSelectionComplete": "Élément ajouté à la conversation",
+ "elementSelectionInProgress": "Sélection en cours de l’élément... Merci de patienter.",
+ "elementSelectionMessage": "Ajouter un élément à une conversation",
+ "finishSelectionLabel": "Terminé",
+ "reopenErrorWebviewElement": "Veuillez rouvrir l’aperçu.",
+ "selectAnElement": "Cliquez pour sélectionner un élément.",
+ "selectElementDropdown": "Sélectionnez un élément",
+ "startSelection": "Démarrer"
+ },
+ "vs/workbench/contrib/chat/browser/chatEditor": {
+ "chatEditor.loadingSession": "Chargement en cours... Merci de patienter."
+ },
+ "vs/workbench/contrib/chat/browser/chatEditorInput": {
+ "chat.startEditing.confirmation.acceptEdits": "Conserver et continuer",
+ "chat.startEditing.confirmation.discardEdits": "Annuler et continuer",
+ "chat.startEditing.confirmation.pending.message.2": "Souhaitez-vous conserver les modifications en attente sur les fichiers {0} ?",
+ "chat.startEditing.confirmation.pending.message.default": "La fermeture de l’éditeur de conversation mettra fin à votre session de modification actuelle.",
+ "chat.startEditing.confirmation.pending.message.default1": "Le démarrage d’une nouvelle conversation mettra fin à votre session de modification actuelle.",
+ "chat.startEditing.confirmation.title": "Voulez-vous démarrer une nouvelle conversation ?",
+ "chatEditorConfirmTitle": "Fermer l’Éditeur de conversation",
+ "chatEditorLabelIcon": "Icône de l’étiquette de l’éditeur de conversation.",
+ "chatEditorName": "Conversation"
+ },
+ "vs/workbench/contrib/chat/browser/chatFollowups": {
+ "followUpAriaLabel": "Question de suivi : {0}"
+ },
+ "vs/workbench/contrib/chat/browser/chatInlineAnchorWidget": {
+ "actions.attach.label": "Ajouter un fichier à la conversation",
+ "actions.copy.label": "Copier",
+ "actions.goToDecl.label": "Atteindre la définition",
+ "actions.openToSide.label": "Ouvrir sur le côté",
+ "goToImplementations.label": "Atteindre les implémentations",
+ "goToReferences.label": "Atteindre les références",
+ "goToTypeDefinitions.label": "Aller à Définitions de type",
+ "miGotoDefinition": "Atteindre la &&définition",
+ "miGotoImplementations": "Atteindre les &&implémentations",
+ "miGotoReference": "Atteindre les &&références",
+ "miGotoTypeDefinition": "Aller à &&Définitions de type"
+ },
+ "vs/workbench/contrib/chat/browser/chatInputPart": {
+ "actions.chat.accessibiltyHelp": "Entrée de conversation {0}{1} Appuyez sur Entrée pour envoyer la requête. Utilisez {2} pour l’aide à l’accessibilité de la conversation.",
+ "chatAttachFiles": "Rechercher les fichiers et le contexte à ajouter à votre demande",
+ "chatEditingSession.addSuggested": "Ajouter une suggestion",
+ "chatEditingSession.addSuggestion": "Ajouter une {0} de suggestion",
+ "chatEditingSession.ariaLabelWithCounts": "{0}, {1} lignes ajoutées, {2} lignes supprimées",
+ "chatEditingSession.manyFiles.1": "{0} fichiers ont été modifiés",
+ "chatEditingSession.oneFile.1": "1 fichier a été modifié",
+ "chatEditingSession.toggleWorkingSet": "Activer/désactiver les fichiers modifiés.",
+ "chatInput.accessibilityHelp": "Entrée de conversation {0}{1}.",
+ "chatInput.accessibilityHelpNoKb": "Entrée de conversation {0}{1} Appuyez sur Entrée pour envoyer la requête. Pour plus d’informations, utilisez la commande d’aide à l’accessibilité de la conversation.",
+ "chatInput.mode.agent": "(Assistant), modifiez les fichiers de votre espace de travail.",
+ "chatInput.mode.ask": "(Demander), posez des questions ou tapez / pour des rubriques.",
+ "chatInput.mode.custom": "({0}), {1}",
+ "chatInput.mode.edit": "(Modifier), modifiez les fichiers de votre espace de travail.",
+ "chatInput.model": ", {0}. ",
+ "suggeste.title": "{0} – {1}"
+ },
+ "vs/workbench/contrib/chat/browser/chatListRenderer": {
+ "chatConfirmationAction": "Sélectionné «{0}»",
+ "checkpointRestore": "Point de contrôle restauré",
+ "didNotFollowInstructions": "Je n'ai pas suivi les instructions",
+ "incompleteCode": "Code incomplet",
+ "incorrectCode": "Code incorrect suggéré",
+ "missingContext": "Contexte manquant",
+ "offensiveOrUnsafe": "Offensant ou dangereux",
+ "other": "Autre",
+ "poorlyWrittenOrFormatted": "Mal écrit ou mis en forme",
+ "refusedAValidRequest": "Refus d'une demande valide",
+ "renderFailMsg": "L'affichage du contenu a échoué",
+ "reportIssue": "Signaler un problème",
+ "requestMarkdownPartTitle": "Cliquez pour modifier",
+ "usedAgent": "[[(réexécuter sans)]]",
+ "usedAgentSlashCommand": "utilisé {0} [[(réexécuter sans)]]",
+ "working": "En état de fonctionnement"
+ },
+ "vs/workbench/contrib/chat/browser/chatManagement/chatManagement.contribution": {
+ "chatManagementEditor": "Éditeur de gestion des conversations",
+ "models.clearResults": "Effacer les résultats de la recherche de modèles",
+ "modelsManagementEditor": "Éditeur de gestion des modèles",
+ "openAiManagement": "Gérer les modèles de langage"
+ },
+ "vs/workbench/contrib/chat/browser/chatManagement/chatManagementEditor": {
+ "chatManagementSashBorder": "Couleur de la bordure de la séparation à guillotine de l’éditeur de gestion de conversation.",
+ "enableAIFeatures": "Utiliser les fonctionnalités d’IA",
+ "enableCopilotButton": "Activez les fonctionnalités d’IA",
+ "enableMoreAIFeatures": "Activer plus de fonctionnalités d’IA",
+ "plan.businessName": "Copilot Business",
+ "plan.copilot": "Copilot",
+ "plan.enterpriseName": "Copilot Enterprise",
+ "plan.free": "Gratuit",
+ "plan.freeName": "Copilot Free",
+ "plan.models": "Modèles",
+ "plan.proName": "Copilot Pro",
+ "plan.proPlusName": "Copilot Pro+",
+ "plan.upgradeToPro": "Mettre à niveau vers Copilot Pro",
+ "plan.upgradeToProPlus": "Mettre à niveau vers Copilot Pro+",
+ "plan.usage": "Utilisation",
+ "sectionsListAriaLabel": "Sections",
+ "signInToUseAIFeatures": "Connectez-vous pour utiliser les fonctionnalités IA",
+ "upgradeToCopilotPro": "Mettre à niveau vers Copilot Pro"
+ },
+ "vs/workbench/contrib/chat/browser/chatManagement/chatManagementEditorInput": {
+ "aiManagementEditorInputName": "Gérer Copilot",
+ "aiManagementEditorLabelIcon": "Icône de l’étiquette de l’éditeur de gestion IA.",
+ "modelsManagementEditorInputName": "Modèles de langage",
+ "modelsManagementEditorLabelIcon": "Icône de l’étiquette de l’éditeur de gestion des modèles."
+ },
+ "vs/workbench/contrib/chat/browser/chatManagement/chatModelsWidget": {
+ "Search.FullTextSearchPlaceholder": "Tapez pour effectuer une recherche...",
+ "capabilities": "Capacités",
+ "capability.agent": "Mode Assistant",
+ "capability.tools": "Outils",
+ "capability.vision": "Vision",
+ "clearSearch": "Effacer la recherche",
+ "collapse": "Réduire",
+ "cost": "Multiplicateur",
+ "expand": "Développer",
+ "filter": "Filtre",
+ "filter.hidden": "Masqué",
+ "filter.visible": "Visible",
+ "filterByCapability": "Filtrer par {0}",
+ "filterByProvider": "Filtrer par {0}",
+ "filterByVisible": "Filtrer par {0}",
+ "model.ariaLabel": "{0} de {1}",
+ "modelName": "Nom",
+ "models.agentMode": "Mode Assistant",
+ "models.capabilities": "Capacités",
+ "models.contextSize": "Taille du contexte",
+ "models.cost": "Multiplicateur",
+ "models.enableModelProvider": "Ajouter des modèles...",
+ "models.hidden": "Afficher dans le sélecteur de modèle de conversation",
+ "models.hide": "Masquer",
+ "models.input": "Entrée",
+ "models.manageProvider": "Gérer {0}...",
+ "models.output": "Sortie",
+ "models.show": "Afficher",
+ "models.toolCalling": "Outils",
+ "models.tools": "Outils",
+ "models.userSelectable": "Ce modèle est masqué dans le sélecteur de modèles de conversation",
+ "models.visible": "Masquer dans le sélecteur de modèle de conversation",
+ "models.vision": "Vision",
+ "modelsTable.ariaLabel": "Modèles de langage",
+ "tokenLimits": "Taille du contexte",
+ "vendor.ariaLabel": "Fournisseur {0}"
+ },
+ "vs/workbench/contrib/chat/browser/chatManagement/chatUsageWidget": {
+ "chatsLabel": "Messages de conversation",
+ "completionsLabel": "Suggestions inline",
+ "plan.additionalPaidEnabled": "Des requêtes Premium payantes supplémentaires sont activées.",
+ "plan.allowanceResets": "Réinitialisations de l’approbation {0}.",
+ "plan.chatMessages": "Messages de conversation",
+ "plan.included": "Inclus",
+ "plan.inlineSuggestions": "Suggestions inline",
+ "plan.premiumRequests": "Requêtes Premium",
+ "quotaLimited": "Limité"
+ },
+ "vs/workbench/contrib/chat/browser/chatOutputItemRenderer": {
+ "chatOutputRenderer.mimeTypes": "Types MIME que ce renderer peut gérer",
+ "chatOutputRenderer.viewType": "Identifiant unique pour le moteur de rendu.",
+ "vscode.extension.contributes.chatOutputRenderer": "Contribue à un renderer pour des types MIME spécifiques dans les sorties de conversation"
+ },
+ "vs/workbench/contrib/chat/browser/chatParticipant.contribution": {
+ "chat.viewContainer.label": "Conversation",
+ "chatCommand": "Nom court auquel cette commande fait référence dans l’interface utilisateur, par exemple « fix » ou « explain » pour les commandes qui corrigent un problème ou expliquent du code. Le nom doit être unique parmi les commandes fournies par ce participant.",
+ "chatCommandDescription": "Description de cette commande.",
+ "chatCommandDisambiguation": "Métadonnées pour faciliter l’acheminement automatique des questions des utilisateurs vers cette commande de conversation.",
+ "chatCommandDisambiguationCategory": "Nom détaillé de cette catégorie, par exemple « workspace_questions » ou « web_questions ».",
+ "chatCommandDisambiguationDescription": "Description détaillée des types de questions qui conviennent à cette commande de conversation.",
+ "chatCommandDisambiguationExamples": "Liste d’exemples de questions représentatifs adaptés à cette commande de conversation.",
+ "chatCommandSampleRequest": "Lorsque l’utilisateur clique sur cette commande dans « /help », ce texte est envoyé au participant.",
+ "chatCommandSticky": "Indique si l’appel de la commande place la conversation dans un mode persistant dans lequel la commande est automatiquement ajoutée à l’entrée de conversation pour le message suivant.",
+ "chatCommandWhen": "Condition qui doit avoir la valeur true pour activer cette commande.",
+ "chatCommandsDescription": "Commandes disponibles pour ce participant à la conversation que l’utilisateur peut appeler avec un `/`.",
+ "chatFailErrorMessage": "Désolé... Nous n’avons pas pu charger la conversation, car la version installée de l’extension Conversation Copilot n’est pas compatible avec cette version de {0}. Veuillez vérifier que l’extension Conversation Copilot est à jour.",
+ "chatParticipantDescription": "Description de ce participant à la conversation, affichée dans l’interface utilisateur.",
+ "chatParticipantDisambiguation": "Métadonnées pour faciliter l’acheminement automatique des questions des utilisateurs vers ce participant à la conversation.",
+ "chatParticipantDisambiguationCategory": "Nom détaillé de cette catégorie, par exemple « workspace_questions » ou « web_questions ».",
+ "chatParticipantDisambiguationDescription": "Description détaillée des types de questions qui conviennent à ce participant à la conversation.",
+ "chatParticipantDisambiguationExamples": "Liste d’exemples de questions représentatifs adaptés à ce participant à la conversation.",
+ "chatParticipantFullName": "Nom complet de ce participant à la conversation, qui est affiché comme étiquette pour les réponses provenant de ce participant. S’il n’est pas fourni, {0} est utilisé.",
+ "chatParticipantId": "ID unique de ce participant à la conversation.",
+ "chatParticipantName": "Nom d’utilisateur pour ce participant à la conversation. L’utilisateur utilisera « @ » avec ce nom pour appeler le participant. Le nom ne doit pas contenir d’espace blanc.",
+ "chatParticipantWhen": "Condition qui doit avoir la valeur true pour activer ce(tte) participant(e).",
+ "chatParticipants": "Participants à la conversation",
+ "chatSampleRequest": "Lorsque l’utilisateur clique sur ce participant dans « /help », ce texte est envoyé au participant.",
+ "miToggleChat": "&&Conversation",
+ "participantCommands": "Commandes",
+ "participantDescription": "Description",
+ "participantFullName": "Nom complet",
+ "participantName": "Nom",
+ "showExtension": "Afficher l’extension",
+ "vscode.extension.contributes.chatParticipant": "Contribue à un participant à la conversation"
+ },
+ "vs/workbench/contrib/chat/browser/chatPasteProviders": {
+ "pastedAttachment.multiple": "{0} et {1} de plus",
+ "pastedAttachment.multipleLines": "{0} lignes",
+ "pastedAttachment.oneLine": "1 ligne",
+ "pastedChatAttachments": "Insérer une invite et des pièces jointes",
+ "pastedCodeAttachment": "Pièce jointe de code collé",
+ "pastedImageAttachment": "Pièce jointe d’image collée",
+ "pastedImageName": "Image collée"
+ },
+ "vs/workbench/contrib/chat/browser/chatQuick": {
+ "termsDisclaimer": "En continuant avec Copilot {0}, vous acceptez les [Conditions générales]({2}) et la [Déclaration de confidentialité]({3}) de {1}"
+ },
+ "vs/workbench/contrib/chat/browser/chatResponseAccessibleView": {
+ "toolPostApprovalA11yView": "Approuver les résultats de {0} ? Résultat : "
+ },
+ "vs/workbench/contrib/chat/browser/chatSessions.contribution": {
+ "chatCommand": "Nom court auquel cette commande fait référence dans l’interface utilisateur, par exemple « fix » ou « explain » pour les commandes qui corrigent un problème ou expliquent du code. Le nom doit être unique parmi les commandes fournies par ce participant.",
+ "chatCommandDescription": "Description de cette commande.",
+ "chatCommandWhen": "Condition qui doit avoir la valeur true pour activer cette commande.",
+ "chatCommandsDescription": "Commandes disponibles pour cette session à la conversation que l’utilisateur peut appeler avec un « / ».",
+ "chatEditorContributionName": "{0}",
+ "chatSessionsExtPoint": "Contribue aux intégrations de session de conversation au widget de conversation.",
+ "chatSessionsExtPoint.alternativeIds": "Identifiants alternatifs pour la compatibilité ascendante.",
+ "chatSessionsExtPoint.canDelegate": "Indique si la délégation est prise en charge. La valeur par défaut est « true ».",
+ "chatSessionsExtPoint.capabilities": "Fonctionnalités facultatives pour cette session de conversation.",
+ "chatSessionsExtPoint.chatSessionType": "Identificateur unique pour le type de session de conversation.",
+ "chatSessionsExtPoint.description": "Description de la session de conversation à utiliser dans les menus et les info-bulles.",
+ "chatSessionsExtPoint.displayName": "Nom plus long de cet élément, utilisé pour l’affichage dans les menus.",
+ "chatSessionsExtPoint.icon": "Identifiant d’icône (ID codicon) pour l’onglet Éditeur de session de conversation. Par exemple, « $(github) » ou « $(cloud) ».",
+ "chatSessionsExtPoint.inputPlaceholder": "Texte d’espace réservé à afficher dans la zone de saisie de la conversation pour ce type de session.",
+ "chatSessionsExtPoint.name": "Nom du participant à la conversation enregistré dynamiquement (par exemple : @agent). Ne doit pas contenir d’espaces blancs.",
+ "chatSessionsExtPoint.order": "Ordre dans lequel cet élément doit être affiché.",
+ "chatSessionsExtPoint.supportsFileAttachments": "Indique si cette session de conversation prend en charge l’attachement de fichiers ou de références de fichiers.",
+ "chatSessionsExtPoint.supportsImageAttachments": "Indique si cette session de conversation prend en charge l’attachement d’images.",
+ "chatSessionsExtPoint.supportsInstructionAttachments": "Indique si cette session de conversation prend en charge l’attachement d’instructions.",
+ "chatSessionsExtPoint.supportsMCPAttachments": "Indique si cette session de conversation prend en charge l’attachement de ressources MCP.",
+ "chatSessionsExtPoint.supportsProblemAttachments": "Indique si cette session de conversation prend en charge l’attachement de problèmes.",
+ "chatSessionsExtPoint.supportsSearchResultAttachments": "Indique si cette session de conversation prend en charge l’attachement de résultats de recherche.",
+ "chatSessionsExtPoint.supportsSourceControlAttachments": "Indique si cette session de conversation prend en charge l’attachement de modifications du contrôle de code source.",
+ "chatSessionsExtPoint.supportsSymbolAttachments": "Indique si cette session de conversation prend en charge l’attachement de symboles.",
+ "chatSessionsExtPoint.supportsToolAttachments": "Indique si cette session de conversation prend en charge l’attachement d’outils ou de références d’outils.",
+ "chatSessionsExtPoint.welcomeMessage": "Texte des messages (prend en charge le markdown) à afficher dans la vue d’accueil de la conversation pour ce type de session.",
+ "chatSessionsExtPoint.welcomeTips": "Texte des conseils (prend en charge le markdown et les icônes de thème) à afficher dans la vue d’accueil de la conversation pour ce type de session.",
+ "chatSessionsExtPoint.welcomeTitle": "Texte du titre à afficher dans la vue d’accueil de la conversation pour ce type de session.",
+ "chatSessionsExtPoint.when": "Condition qui doit être true pour afficher cet élément",
+ "icon.dark": "Chemin de l'icône quand un thème foncé est utilisé",
+ "icon.light": "Chemin de l'icône quand un thème clair est utilisé",
+ "interactiveSession.chatSessionSubMenuTitle": "Créer une session de conversation",
+ "interactiveSession.openNewSessionEditor": "Nouveau {0}"
+ },
+ "vs/workbench/contrib/chat/browser/chatSessions/chatSessionPickerActionItem": {
+ "chat.sessionPicker.label": "Choisir une option"
+ },
+ "vs/workbench/contrib/chat/browser/chatSessions/localChatSessionsProvider": {
+ "chat.sessions.description.finished": "Finished",
+ "chat.sessions.description.waitingForConfirmation": "Waiting for confirmation:",
+ "chat.sessions.description.working": "Working..."
+ },
+ "vs/workbench/contrib/chat/browser/chatSessions/view/chatSessionsView": {
+ "chat.agent.sessions": "Sessions d’assistant",
+ "chat.agent.sessions.title": "Sessions d’assistant",
+ "chat.sessions.gettingStarted": "Prise en main",
+ "chatSessions.noResults": "Aucune session d’assistant de conversation locale\r\n[Démarrer une session d’assistant](commande :{0})"
+ },
+ "vs/workbench/contrib/chat/browser/chatSessions/view/sessionsTreeRenderer": {
+ "chat.sessions.archivedSessions": "Historique",
+ "chat.sessions.groupNode.multiple": "{0} sessions",
+ "chat.sessions.groupNode.single": "1 session",
+ "chat.sessions.lastActivity": "Dernière activité : {0}",
+ "chatSessionInputAriaLabel": "Taper le nom de la session. Appuyez sur Entrée pour confirmer ou sur Échap pour annuler."
+ },
+ "vs/workbench/contrib/chat/browser/chatSessions/view/sessionsViewPane": {
+ "chatSession.selectOption": "Plus...",
+ "chatSessions": "Sessions de conversation",
+ "chatSessions.dragLabel": "{0} sessions d’assistant",
+ "chatSessions.installExtensions": "Installer des extensions de conversation",
+ "chatSessions.learnMoreGHCodingAgent": "En savoir plus sur l’agent de codage GitHub Copilot",
+ "chatSessions.loading": "Chargement des sessions de conversation...",
+ "chatSessions.refreshing": "Actualisation des sessions de conversation..."
+ },
+ "vs/workbench/contrib/chat/browser/chatSetup": {
+ "chat.category": "Conversation",
+ "chatSetupError": "Désolé, échec de la configuration de la conversation.",
+ "chatTookLongWarning": "La conversation a mis trop de temps à se préparer. Vérifiez que vous êtes connecté à {0} et que l’extension « {1} » est installée et activée.",
+ "chatTookLongWarningAnonymous": "La conversation a mis trop de temps à se préparer. Vérifiez que l’extension « {0} » est installée et activée.",
+ "chatWorkspaceTrust": "Les fonctionnalités IA sont actuellement uniquement pris en charge dans les espaces de travail approuvés.",
+ "continueWith": "Continuer avec {0}",
+ "copilotUnavailableWarning": "Échec de l’obtention de réponse. Veuillez réessayer.",
+ "enableMore": "Activer plus de fonctionnalités d’IA",
+ "enterpriseInstance": "Quelle est votre instance {0} ?",
+ "enterpriseInstancePlaceholder": "par ex. « octocat » ou « https://octocat.ghe.com »...",
+ "explain": "Expliquer",
+ "fix": "Correctif",
+ "forceSignIn": "Connectez-vous pour utiliser les fonctionnalités IA",
+ "generate": "Générer",
+ "generateDocs": "Générer les documents",
+ "generateTests": "Générer des tests",
+ "hideChatSetup": "Découvrez comment masquer les fonctionnalités IA",
+ "installingChat": "Préparation de la conversation...",
+ "invalidEnterpriseInstance": "Vous devez saisir une instance {0} valide (par exemple « octocat » ou « https://octocat.ghe.com »)",
+ "manageOverages": "Gérer les dépassements de GitHub Copilot",
+ "managePlan": "Mettre à niveau vers GitHub Copilot Pro",
+ "modify": "Modifier",
+ "restartExtensionHost.reason.disable": "Désactivation des fonctionnalités d'IA",
+ "restartExtensionHost.reason.enable": "Activation des fonctionnalités d'IA",
+ "retry": "Réessayer",
+ "review": "Revue",
+ "settingUpCopilotNeeded": "Vous devez configurer GitHub Copilot et être connecté pour utiliser la conversation.",
+ "settings": "En continuant, vous acceptez les [Conditions générales]({1}) et la [Déclaration de confidentialité]({2}) de {0}. {3} Copilot peut afficher des suggestions de [code public]({4}) et utiliser vos données pour améliorer le produit. Vous pouvez modifier ces [settings]({5}) à tout moment.",
+ "settingsAnonymous": "En continuant, vous acceptez les [Conditions générales]({1}) et la [Déclaration de confidentialité]({2}) de {0}.",
+ "setupAIButton": "Utiliser les fonctionnalités d’IA",
+ "setupChatProgress": "Préparation de la conversation...",
+ "setupChatSignIn2": "Connexion à {0}...",
+ "setupErrorDialog": "Désolé, échec de la configuration de la conversation. Voulez-vous réessayer ?",
+ "setupToolDisplayName": "Nouvel espace de travail",
+ "setupToolsDescription": "Structurer un nouvel espace de travail dans VS Code",
+ "signIn": "Connectez-vous pour utiliser les fonctionnalités IA",
+ "skipForNow": "Ignorer pour le moment",
+ "startUsing": "Commencez à utiliser les fonctionnalités d’IA",
+ "terminalAgentDescription": "Demander comment faire quelque chose dans le terminal",
+ "triggerChatSetup": "Utiliser les fonctionnalités d’IA avec Copilot gratuitement...",
+ "triggerChatSetupFromAccounts": "Connectez-vous pour utiliser les fonctionnalités IA...",
+ "trustNeeded": "Vous devez faire confiance à cet espace de travail pour utiliser la conversation.",
+ "unknownSetupError": "Une erreur s’est produite lors de la définition de conversation. Voulez-vous réessayer ?",
+ "unknownSignInError": "Échec de la connexion à {0}. Voulez-vous réessayer ?",
+ "unknownSignInErrorDetail": "Vous devez être connecté(e) pour utiliser les fonctionnalités d’IA.",
+ "vscodeAgentDescription": "Poser des questions sur VS Code",
+ "waitingChat": "Préparation de la conversation...",
+ "waitingChat2": "La conversation est bientôt prête...",
+ "willResolveTo": "Sera résolu en {0}",
+ "workspaceAgentDescription": "Posez des questions sur votre espace de travail"
+ },
+ "vs/workbench/contrib/chat/browser/chatStatus": {
+ "activateDescription": "Configurez Copilot pour utiliser les fonctionnalités d’IA.",
+ "activeDescriptionAnonymous": "En continuant avec Copilot {0}, vous acceptez les [Conditions générales]({2}) et la [Déclaration de confidentialité]({3}) de {1}",
+ "additionalUsageDisabled": "Des requêtes Premium payantes supplémentaires sont désactivées.",
+ "additionalUsageEnabled": "Des requêtes Premium payantes supplémentaires sont activées.",
+ "anonymousTitle": "Utilisation de Copilot",
+ "cancelSnooze": "Annuler la répétition",
+ "chatAgentSessionsTitle": "Sessions d’assistant",
+ "chatAndCompletionsQuotaExceededStatus": "Quota atteint",
+ "chatQuotaExceededStatus": "Quota de conversation atteint",
+ "chatSessionInProgressStatus": "1 session d’assistant en cours",
+ "chatSessionsInProgressStatus": "{0} sessions d’assistant en cours",
+ "chatStatus": "État de Copilot",
+ "chatStatusAria": "État de Copilot",
+ "chatsLabel": "Messages de conversation",
+ "completions.plus5min": "+5 min",
+ "completions.remainingTime": "restant",
+ "completions.snooze5minutes": "Masquer les suggestions inline pendant 5 minutes",
+ "completions.snooze5minutesTitle": "Masquer les suggestions pendant 5 minutes",
+ "completions.snoozeAdditional5minutes": "Répétez 5 minutes supplémentaires",
+ "completions.snoozeTimeDescription": "Les complétions sont masquées pour la durée restante",
+ "completionsDisabledStatus": "Suggestions inline désactivées",
+ "completionsLabel": "Suggestions inline",
+ "completionsQuotaExceededStatus": "Quota de suggestions inline atteint",
+ "completionsSnoozedStatus": "Suggestions inline mises en veille",
+ "copilotDisabledStatus": "Copilot désactivé",
+ "enableAIFeatures": "Utiliser les fonctionnalités d’IA",
+ "enableAdditionalUsage": "Gérer les requêtes Premium payantes",
+ "enableCopilotButton": "Activez les fonctionnalités d’IA",
+ "enableDescription": "Activer Copilot pour utiliser les fonctionnalités IA.",
+ "enableMoreAIFeatures": "Activer plus de fonctionnalités d’IA",
+ "enableMoreDescription": "Connectez-vous pour activer plus de fonctionnalités de Copilot AI.",
+ "finishSetup": "Terminer la configuration",
+ "gaugeBackground": "Couleur d’arrière-plan de la jauge.",
+ "gaugeBorder": "Couleur de la bordure de la jauge.",
+ "gaugeErrorBackground": "Couleur d’arrière-plan de l’erreur de la jauge.",
+ "gaugeErrorForeground": "Couleur de premier plan de l’erreur de la jauge.",
+ "gaugeForeground": "Couleur de premier plan de la jauge.",
+ "gaugeWarningBackground": "Couleur d’arrière-plan de l’avertissement de la jauge.",
+ "gaugeWarningForeground": "Couleur de premier plan de l’avertissement de la jauge.",
+ "inProgressChatSession": "$(loading~spin) {0} en cours",
+ "inlineSuggestions": "Suggestions inline",
+ "learnMore": "Découvrir plus d’informations",
+ "limitQuota": "Réinitialisations de l’allocation {0}.",
+ "notSignedIn": "Déconnecté",
+ "premiumChatsLabel": "Requêtes Premium",
+ "quotaDisplay": "{0} %",
+ "quotaDisplayWithOverage": "+{0} requêtes",
+ "quotaLabel": "Gérer la conversation",
+ "quotaLimited": "Limité",
+ "quotaTooltip": "Gérer la conversation",
+ "quotaUnlimited": "Inclus",
+ "settings.codeCompletions.allFiles": "Tous les fichiers",
+ "settings.codeCompletions.language": "{0}",
+ "settings.nextEditSuggestions": "Suggestions de modification suivantes",
+ "settings.snooze": "Répéter",
+ "settingsLabel": "Paramètres",
+ "settingsTooltip": "Ouvrir les paramètres",
+ "signInDescription": "Connectez-vous pour utiliser les fonctionnalités de Copilot AI.",
+ "signInToUseAIFeatures": "Connectez-vous pour utiliser les fonctionnalités IA",
+ "upgradeToCopilotPro": "Mettre à niveau vers GitHub Copilot Pro",
+ "usageTitle": "Utilisation de Copilot",
+ "viewChatSessionsLabel": "Afficher les sessions d’assistant",
+ "viewChatSessionsTooltip": "Afficher les sessions d’assistant"
+ },
+ "vs/workbench/contrib/chat/browser/chatWidget": {
+ "agentTitle": "Créer avec des assistants",
+ "chat.history.list": "Historique des conversations",
+ "chat.history.showMore": "Historique des conversations...",
+ "chat.history.showMoreAriaLabel": "Ouvrir l’historique des conversations",
+ "chat.history.showMoreHover": "Afficher l’historique des conversations...",
+ "chat.input.placeholder.lockedToAgent": "Discuter avec {0}",
+ "chatDescription": "Poser des questions sur votre code",
+ "chatDisclaimer": "Les réponses de l’IA peuvent être inexactes.",
+ "chatWidget.instructions": "[Générez des instructions d’assistant]({0}) pour intégrer l’IA à votre codebase.",
+ "chatWidget.promptFile.commandLabel": "{0}",
+ "chatWidget.suggestedPrompts.buildWorkspace": "Créer un espace de travail",
+ "chatWidget.suggestedPrompts.buildWorkspacePrompt": "Comment construire cet espace de travail?",
+ "chatWidget.suggestedPrompts.findConfig": "Afficher la configuration",
+ "chatWidget.suggestedPrompts.findConfigPrompt": "Où est définie la configuration de ce projet ?",
+ "chatWidget.suggestedPrompts.gettingStarted": "Demander à @vscode",
+ "chatWidget.suggestedPrompts.gettingStartedPrompt": "@vscode Comment changer le thème en mode clair ?",
+ "chatWidget.suggestedPrompts.newProject": "Créer un projet",
+ "chatWidget.suggestedPrompts.newProjectPrompt": "Créez un projet #new Hello World dans TypeScript",
+ "codingAgentTitle": "Déléguer à {0}",
+ "copilotCodingAgentMessage": "Cette session de conversation sera transférée au {0} [agent de codage]({1}) où le travail est terminé en arrière-plan.",
+ "editsTitle": "Modifier en contexte",
+ "genericCodingAgentMessage": "Cette session de conversation est transférée à l’agent de codage {0}, où le travail est terminé en arrière-plan.",
+ "scrollDownButtonLabel": "Défilement vers le bas",
+ "settings": "En continuant avec Copilot {0}, vous acceptez les [Conditions générales]({2}) et la [Déclaration de confidentialité]({3}) de {1}."
+ },
+ "vs/workbench/contrib/chat/browser/codeBlockPart": {
+ "chat.codeBlock.toolbar": "Barre d’outils du bloc de code",
+ "chat.codeBlockHelp": "Bloc de code",
+ "chat.codeBlockLabel": "Bloc de code {0}",
+ "chat.codeBlockToolbarLabel": "Bloc de code {0}",
+ "chat.compareCodeBlockLabel": "Modifications du code",
+ "chat.edits.1": "1 changement appliqué dans [[``{0}``]]",
+ "chat.edits.N": "Changements {0} appliqués dans [[``{1}``]]",
+ "chat.edits.rejected": "Les modifications dans [[''{0}'']] ont été rejetées",
+ "interactive.compare.apply.confirm": "Le fichier d’origine a été modifié.",
+ "interactive.compare.apply.confirm.detail": "Voulez-vous quand même appliquer les modifications ?",
+ "modified": "Modifié",
+ "original": "D’origine",
+ "vulnerabilitiesPlural": "vulnérabilités de {0}",
+ "vulnerabilitiesSingular": "{0} vulnérabilité"
+ },
+ "vs/workbench/contrib/chat/browser/contrib/chatInputCompletions": {
+ "activeFile": "Fichier actif",
+ "fileEntryDescription": "{0} ({1})",
+ "installLabel": "Installer des extensions de conversation...",
+ "mcp.prompt.error": "Erreur lors de la résolution de l’invite : {0}",
+ "mcp.prompt.image": "Image d’invite",
+ "mcp.prompt.resource": "Ressource d’invite",
+ "tool_source_completion": "{0} : {1}"
+ },
+ "vs/workbench/contrib/chat/browser/contrib/chatInputEditorHover": {
+ "hoverAccessibilityChatAgent": "Il y a une partie de pointage de l’agent de conversation ici."
+ },
+ "vs/workbench/contrib/chat/browser/contrib/chatInputRelatedFilesContrib": {
+ "relatedFile": "{0} (Suggéré)"
+ },
+ "vs/workbench/contrib/chat/browser/contrib/screenshot": {
+ "screenshot": "Capture d’écran"
+ },
+ "vs/workbench/contrib/chat/browser/languageModelToolsConfirmationService": {
+ "allowGlobally": "Toujours autoriser",
+ "allowGloballyPost": "Toujours autoriser sans révision",
+ "allowGloballyPostTooltip": "Autorisez toujours l’envoi des résultats de cet outil sans confirmation.",
+ "allowGloballyTooltip": "Autorisez toujours cet outil à s’exécuter sans confirmation.",
+ "allowServerGlobally": "Toujours autoriser les outils de {0}",
+ "allowServerGloballyPost": "Toujours autoriser les outils de {0} sans révision",
+ "allowServerGloballyPostTooltip": "Toujours autoriser l’envoi des résultats de tous les outils de ce serveur sans confirmation.",
+ "allowServerGloballyTooltip": "Autorisez toujours l’exécution de tous les outils de ce serveur sans confirmation.",
+ "allowServerSession": "Autoriser les outils de {0} dans cette session",
+ "allowServerSessionPost": "Autoriser les outils de {0} sans révision dans cette session",
+ "allowServerSessionPostTooltip": "Autorisez l’envoi des résultats de tous les outils de ce serveur sans confirmation dans cette session.",
+ "allowServerSessionTooltip": "Autorisez l’exécution de tous les outils de ce serveur dans cette session sans confirmation.",
+ "allowServerWorkspace": "Autoriser les outils de {0} dans cet espace de travail",
+ "allowServerWorkspacePost": "Autoriser les outils de {0} sans révision dans cet espace de travail",
+ "allowServerWorkspacePostTooltip": "Autorisez l’envoi des résultats de tous les outils de ce serveur sans confirmation dans cet espace de travail.",
+ "allowServerWorkspaceTooltip": "Autorisez l’exécution de tous les outils de ce serveur dans cet espace de travail sans confirmation.",
+ "allowSession": "Autoriser dans cette session",
+ "allowSessionPost": "Autoriser sans révision dans cette session",
+ "allowSessionPostTooltip": "Autorisez l’envoi des résultats de cet outil sans confirmation dans cette session.",
+ "allowSessionTooltip": "Autorisez cet outil à s’exécuter dans cette session sans confirmation.",
+ "allowWorkspace": "Autoriser dans cet espace de travail",
+ "allowWorkspacePost": "Autoriser sans révision dans cet espace de travail",
+ "allowWorkspacePostTooltip": "Autorisez l’envoi des résultats de cet outil sans confirmation dans cet espace de travail.",
+ "allowWorkspaceTooltip": "Autorisez cet outil à s’exécuter dans cet espace de travail sans confirmation.",
+ "configureGlobalToolApprovals": "Configurer les approbations des outils globaux",
+ "configureSessionToolApprovals": "Configurer les approbations des outils de session",
+ "configureWorkspaceToolApprovals": "Configurer les approbations des outils d’espace de travail",
+ "continueWithoutReviewing": "Continuer sans consulter les résultats de l’outil",
+ "continueWithoutReviewingResults": "sans consulter le résultat",
+ "runToolsWithoutApproval": "Exécuter n’importe quel outil sans approbation",
+ "runWithoutApproval": "sans approbation",
+ "workspaceScope": "Configurer uniquement pour cet espace de travail"
+ },
+ "vs/workbench/contrib/chat/browser/languageModelToolsService": {
+ "autoApprove2.button.disable": "Désactiver",
+ "autoApprove2.button.enable": "Activer",
+ "autoApprove2.markdown": "L’approbation automatique globale, également appelée « mode YOLO », désactive complètement l’approbation manuelle pour tous les outils dans tous les espaces de travail, permettant à l’agent d’agir de manière totalement autonome. Ceci est extrêmement dangereux et *jamais* recommandé, même dans des environnements containerisés tels que [Codespaces](https://github.com/features/codespaces) et [Dev Containers](https://marketplace.visualstudio.com/items?itemName=ms-vscode-remote.remote-containers) où les clés utilisateur sont transmises dans le conteneur, ce qui pourrait être compromis.\r\n\r\n**Cette fonctionnalité désactive les [protections de sécurité critiques](https://code.visualstudio.com/docs/copilot/security) et facilite grandement la compromission de la machine par un attaquant.**",
+ "autoApprove2.title": "Voulez-vous activer l’approbation automatique globale ?",
+ "copilot.toolSet.launch.description": "Launch and run code, binaries or tests in the workspace",
+ "copilot.toolSet.vscode.description": "Use VS Code features",
+ "defaultToolConfirmation.disclaimer": "L’approbation automatique de «{0}» est restreinte via {1}.",
+ "defaultToolConfirmation.message": "Ajouter l’outil « {0} » ?",
+ "defaultToolConfirmation.title": "Voulez-vous autoriser l’exécution de l’outil ?"
+ },
+ "vs/workbench/contrib/chat/browser/modelPicker/modelPickerActionItem": {
+ "chat.manageModels": "Gérer les modèles...",
+ "chat.manageModels.tooltip": "Gérer les modèles de langage",
+ "chat.modelPicker.label": "Choisir un modèle",
+ "chat.moreModels": "Ajouter des modèles de langage",
+ "chat.moreModels.tooltip": "Ajouter des modèles de langage",
+ "chat.morePremiumModels": "Ajouter des modèles Premium",
+ "chat.morePremiumModels.tooltip": "Ajouter des modèles premium"
+ },
+ "vs/workbench/contrib/chat/browser/modelPicker/modePickerActionItem": {
+ "built-in": "Intégré",
+ "custom": "Personnalisé"
+ },
+ "vs/workbench/contrib/chat/browser/promptSyntax/attachInstructionsAction": {
+ "attach-instructions.capitalized.ellipses": "Joindre des instructions...",
+ "chatContext.attach.instructions.label": "Instructions...",
+ "commands.instructions.select-dialog.placeholder": "Sélectionnez les fichiers d'instructions à joindre",
+ "commands.prompt.manage-dialog.placeholder": "Sélectionnez le fichier d’instructions à ouvrir",
+ "configure-instructions": "Configurer les instructions...",
+ "configure-instructions.short": "Instructions de conversation",
+ "configureInstructions": "Configurer les instructions...",
+ "placeholder": "Sélectionnez les fichiers d'instructions à joindre"
+ },
+ "vs/workbench/contrib/chat/browser/promptSyntax/chatModeActions": {
+ "configure-agents": "Configurer les agents personnalisés...",
+ "configure-agents.short": "Assistants personnalisés",
+ "configure.agent.prompts.placeholder": "Sélectionnez les assistants personnalisés à ouvrir et configurez leur visibilité dans le sélecteur d’assistants",
+ "select-agent": "Configurer les agents personnalisés..."
+ },
+ "vs/workbench/contrib/chat/browser/promptSyntax/newPromptFileActions": {
+ "commands.new.agent.local.title": "Nouvel assistant personnalisé...",
+ "commands.new.instructions.local.title": "Nouveau fichier d'instructions...",
+ "commands.new.prompt.local.title": "Nouveau fichier d'invite...",
+ "commands.new.untitled.prompt.title": "Nouveau fichier sans titre",
+ "enable.capitalized": "Activer",
+ "learnMore.capitalized": "Découvrir plus d’informations",
+ "workbench.command.prompts.create.user.enable-sync-notification": "Voulez-vous sauvegarder et synchroniser votre fichier d’invite utilisateur, d’instruction et d’assistant personnalisé avec la synchronisation des paramètres ?"
+ },
+ "vs/workbench/contrib/chat/browser/promptSyntax/pickers/askForPromptName": {
+ "askForAgentFileName.placeholder": "Entrez le nom du fichier d’assistant",
+ "askForInstructionsFileName.placeholder": "Entrer le nom du fichier d'instructions",
+ "askForPromptFileName.error.empty": "Entrez un nom.",
+ "askForPromptFileName.error.exists": "Un fichier pour le nom spécifié existe déjà.",
+ "askForPromptFileName.error.invalid": "Le nom contient des caractères non valides.",
+ "askForPromptFileName.placeholder": "Entrer le nom du fichier d'invite",
+ "askForRenamedAgentFileName.placeholder": "Entrer un nouveau nom du fichier d’assistant",
+ "askForRenamedInstructionsFileName.placeholder": "Entrer un nouveau nom du fichier d'instructions",
+ "askForRenamedPromptFileName.placeholder": "Entrer un nouveau nom du fichier d'invite"
+ },
+ "vs/workbench/contrib/chat/browser/promptSyntax/pickers/askForPromptSourceFolder": {
+ "agent.copy.location.placeholder": "Sélectionnez un emplacement vers lequel copier le fichier d’assistant...",
+ "agent.move.location.placeholder": "Sélectionnez un emplacement vers lequel déplacer le fichier d’assistant...",
+ "commands.agent.create.ask-folder.empty.docs-label": "Découvrez comment configurer des assistants personnalisés",
+ "commands.agent.create.ask-folder.empty.placeholder": "Aucun dossier source d’assistant n’a été trouvé.",
+ "commands.instructions.create.ask-folder.empty.docs-label": "Découvrez comment configurer des instructions réutilisables",
+ "commands.instructions.create.ask-folder.empty.placeholder": "Aucun dossier source d'instructions n’a été trouvé.",
+ "commands.prompts.create.ask-folder.empty.docs-label": "Découvrir comment configurer des requêtes réutilisables",
+ "commands.prompts.create.ask-folder.empty.placeholder": "Aucun dossier source de requête n’a été trouvé.",
+ "commands.prompts.create.source-folder.current-workspace": "Espace de travail actuel",
+ "current.folder": "Emplacement actuel",
+ "instructions.copy.location.placeholder": "Sélectionnez un emplacement où copier le fichier d'instructions...",
+ "instructions.move.location.placeholder": "Sélectionnez un emplacement où déplacer le fichier d'instructions...",
+ "prompt.copy.location.placeholder": "Sélectionnez un emplacement vers lequel copier le fichier de requête...",
+ "prompt.move.location.placeholder": "Sélectionnez un emplacement vers lequel déplacer le fichier de requête...",
+ "workbench.command.agent.create.location.placeholder": "Sélectionnez un emplacement dans lequel créer le fichier d’assistant...",
+ "workbench.command.instructions.create.location.placeholder": "Sélectionnez un emplacement dans lequel créer le fichier d’instructions...",
+ "workbench.command.prompt.create.location.placeholder": "Sélectionnez un emplacement dans lequel créer le fichier d’invite..."
+ },
+ "vs/workbench/contrib/chat/browser/promptSyntax/pickers/promptFilePickers": {
+ "commands.new-agentfile.select-dialog.label": "Créer un nouvel assistant personnalisé...",
+ "commands.new-instructionsfile.select-dialog.label": "Nouveau fichier d’instructions...",
+ "commands.new-promptfile.select-dialog.label": "Nouveau fichier de requêtes...",
+ "commands.prompts.use.select-dialog.delete-prompt.confirm.message": "Voulez-vous vraiment supprimer '{0}' ?",
+ "commands.update-instructions.select-dialog.label": "Générer les instructions d’assistant...",
+ "copy": "Copier",
+ "delete": "Supprimer",
+ "help.agent": "Afficher l’aide sur les fichiers d’agents personnalisés",
+ "help.instructions": "Afficher l’aide sur les fichiers d’instructions",
+ "help.prompt": "Afficher l’aide sur les fichiers d’invite",
+ "hiddenInAgentPicker": "Masqué dans le sélecteur d’agent de la vue conversation",
+ "hiddenLabelInfo": "{0} (masqué)",
+ "makeInvisible": "Masquer dans le sélecteur d’assistant",
+ "makeVisible": "Masqué dans le sélecteur d’agent de la vue conversation. Cliquer pour afficher.",
+ "open": "Ouvrir dans l’Éditeur",
+ "rename": "Déplacer et/ou renommer",
+ "searching": "Recherche dans le système de fichiers...",
+ "separator.extensions": "Extensions",
+ "separator.user": "Données utilisateur",
+ "separator.workspace": "Espace de travail",
+ "separator.workspace-agent-instructions": "Instructions d’assistant"
+ },
+ "vs/workbench/contrib/chat/browser/promptSyntax/promptCodingAgentActionOverlay": {
+ "runPromptWithCodingAgent": "Exécutez le fichier d’invite dans un agent de codage distant",
+ "runWithCodingAgent.label": "{0} Déléguer vers l'agent de codage Copilot"
+ },
+ "vs/workbench/contrib/chat/browser/promptSyntax/promptToolsCodeLensProvider": {
+ "configure-tools.capitalized.ellipsis": "Configurer les outils...",
+ "placeholder": "Sélectionner les outils"
+ },
+ "vs/workbench/contrib/chat/browser/promptSyntax/promptUrlHandler": {
+ "confirmInstallAgent": "Une application externe souhaite créer un assistant personnalisé contenant du contenu provenant d’une URL. Voulez-vous continuer en sélectionnant un dossier et un nom de destination ?",
+ "confirmInstallInstructions": "Une application externe souhaite créer un fichier d’instructions contenant du contenu provenant d’une URL. Voulez-vous continuer en sélectionnant un dossier et un nom de destination ?",
+ "confirmInstallPrompt": "Une application externe souhaite créer un fichier de requête contenant du contenu provenant d’une URL. Voulez-vous continuer en sélectionnant un dossier et un nom de destination?",
+ "confirmOpenDetail2": "Cette opération accède à {0}.\r\n\r\n",
+ "confirmOpenDetail3": "Si vous n'avez pas lancé cette requête, cela signifie peut-être que votre système a fait l'objet d'une tentative d'attaque. Si vous n'avez pas effectué d'action explicite pour lancer cette requête, appuyez sur Non",
+ "failed": "Échec de la récupération de l’URL : {0}",
+ "noButton": "Non",
+ "yesButton": "&&Oui"
+ },
+ "vs/workbench/contrib/chat/browser/promptSyntax/runPromptAction": {
+ "commands.prompt.manage-dialog.placeholder": "Sélectionnez le fichier d’invite à ouvrir",
+ "commands.prompt.select-dialog.placeholder": "Sélectionnez le fichier d’invite à exécuter (maintenez {0}-key à utiliser dans la nouvelle conversation)",
+ "configure-prompts": "Configurer les fichiers d’invite...",
+ "configure-prompts.short": "Fichiers d’invite",
+ "run-prompt-in-new-chat.capitalized": "Exécuter l'invite dans une nouvelle conversation",
+ "run-prompt.capitalized": "Exécuter l’invite dans la conversation actuelle",
+ "run-prompt.capitalized.ellipses": "Exécuter l'invite..."
+ },
+ "vs/workbench/contrib/chat/browser/promptSyntax/saveAsPromptFileActions": {
+ "promptfile.saveAgentFile": "Enregistrer en tant que fichier d’assistant",
+ "promptfile.saveAgentFile.description": "Enregistrer en tant que fichier d’assistant",
+ "promptfile.saveInstructionsFile": "Enregistrer en tant que fichier d’instructions",
+ "promptfile.saveInstructionsFile.description": "Enregistrer en tant que fichier d’instructions",
+ "promptfile.savePromptFile": "Enregistrer en tant que fichier de requête",
+ "promptfile.savePromptFile.description": "Enregistrer en tant que fichier de requête"
+ },
+ "vs/workbench/contrib/chat/browser/tools/toolSetsContribution": {
+ "bad_name1": "Nom de fichier non valide",
+ "bad_name2": "'{0}' n'est pas un nom de fichier valide",
+ "chat.configureToolSets": "Configurer les ensembles d'outils...",
+ "chat.configureToolSets.add": "Créer un fichier d’ensembles d’outils...",
+ "chat.configureToolSets.placeholder": "Sélectionnez un ensemble d’outils à configurer",
+ "chat.configureToolSets.short": "Ensembles d’outils",
+ "input.placeholder": "Tapez le nom de fichier des ensembles d’outils",
+ "schema.default": "Ensemble d’outils vide",
+ "schema.description": "Brève description de cet ensemble d’outils.",
+ "schema.icon": "Icône à utiliser pour cet ensemble d’outils dans l’interface utilisateur. Utilise la syntaxe « $(name) », comme « $(zap) »",
+ "schema.tools": "Liste d’outils ou d’ensembles d’outils à inclure dans cet ensemble d’outils. Ne peut pas être vide et doit référencer les outils comme ils sont référencés dans les invites.",
+ "tool.description": "{1} ({0})\r\n\r\n{2}",
+ "toolsetSchema.json": "Configuration des ensembles d’outils utilisateur"
+ },
+ "vs/workbench/contrib/chat/browser/viewsWelcome/chatViewsWelcomeHandler": {
+ "chatViewsWelcome.content": "Contenu du message de bienvenue. Le premier lien de commande sera rendu en tant que bouton.",
+ "chatViewsWelcome.icon": "Icône du message de bienvenue.",
+ "chatViewsWelcome.title": "Titre du message de bienvenue.",
+ "chatViewsWelcome.when": "Condition lors de l’affichage du message de bienvenue.",
+ "vscode.extension.contributes.chatViewsWelcome": "Apporte un message de bienvenue à une vue de conversation"
+ },
+ "vs/workbench/contrib/chat/browser/viewsWelcome/chatViewWelcomeController": {
+ "chatWidget.suggestedActions": "Actions suggérées",
+ "editPromptFile": "Modifier le fichier de requête",
+ "runPromptTitle": "Requête suggérée : {0}",
+ "suggestedPromptAriaLabel": "Requête suggérée : {0}",
+ "suggestedPromptAriaLabelWithDescription": "Invite suggérée : {0}, {1}"
+ },
+ "vs/workbench/contrib/chat/common/chatColors": {
+ "chat.avatarBackground": "La couleur d'arrière-plan d'un avatar de chat.",
+ "chat.avatarForeground": "Couleur de premier plan d’un avatar de conversation.",
+ "chat.editedFileForeground": "Couleur de premier plan d’un fichier modifié par la conversation dans la liste des fichiers modifiés.",
+ "chat.linesAddedForeground": "Couleur de premier plan des lignes ajoutées dans la pilule de bloc de code de la conversation.",
+ "chat.linesRemovedForeground": "Couleur de premier plan des lignes supprimées dans la pilule de bloc de code de la conversation.",
+ "chat.requestBackground": "Couleur d’arrière-plan d’une requête de la conversation.",
+ "chat.requestBorder": "Couleur de bordure d’une requête de la conversation.",
+ "chat.requestBubbleBackground": "Couleur d’arrière-plan de la bulle de demande de conversation.",
+ "chat.requestBubbleHoverBackground": "Couleur d’arrière-plan de la bulle de demande de conversation lors du pointage.",
+ "chat.requestCodeBorder": "Couleur de bordure des blocs de code dans la bulle de demande de conversation.",
+ "chat.slashCommandBackground": "Couleur d’arrière-plan d’une commande à barre oblique de conversation.",
+ "chat.slashCommandForeground": "Couleur de premier plan d’une commande à barre oblique de conversation.",
+ "chatCheckpointSeparator": "Couleur du séparateur de point de contrôle de la conversation."
+ },
+ "vs/workbench/contrib/chat/common/chatContextKeys": {
+ "agentKind": "Le type « kind » de l’agent actuel.",
+ "agentSupportsAttachments": "True lorsque l’assistant de conversation prend en charge les pièces jointes.",
+ "chatEditApplied": "La valeur est true lorsque les modifications apportées au texte de la conversation sont appliquées.",
+ "chatEditingCanRedo": "True quand il est possible de restaurer une interaction dans le panneau d’édition.",
+ "chatEditingCanUndo": "True quand il est possible d’annuler une interaction dans le panneau d’édition.",
+ "chatEditingHasElicitationRequest": "True lorsqu’une demande d’élucidation de conversation est en attente.",
+ "chatEditingHasToolConfirmation": "Vrai lorsqu’une confirmation d’outil est présente.",
+ "chatExtensionInvalid": "True lorsque l’extension de conversation installée n’est pas valide et doit être mise à jour.",
+ "chatHasAgents": "La valeur est true lorsque des assistants personnalisés sont disponibles dans la conversation.",
+ "chatHasFileAttachments": "Vrai quand la conversation contient des fichiers en pièces jointes.",
+ "chatInEmptyStateWithHistoryEnabled": "Vrai lorsque l’historique d'état vide de la conversation est activé ET que la conversation est dans un état vide.",
+ "chatIsActiveSession": "Vrai lorsque la session de conversation est actuellement active (non supprimable).",
+ "chatIsArchivedItem": "Vrai lorsque l’élément de session de conversation archivée.",
+ "chatIsEnabled": "True lorsque le chat est activé, parce qu’un(e) participant(e) à la conversation par défaut est activé avec une implémentation.",
+ "chatIsKatexMathElement": "True lors de la mise au point d’un élément mathématique KaTeX.",
+ "chatItemId": "ID de l’élément de conversation.",
+ "chatLastItemId": "ID du dernier élément de conversation.",
+ "chatModelsAreUserSelectable": "True lorsque le modèle de conversation peut être sélectionné manuellement par l’utilisateur.",
+ "chatPanelExtensionParticipantRegistered": "La valeur est true quand un participant de la conversation par défaut est inscrit pour le panneau à partir d’une extension.",
+ "chatPanelLocation": "Emplacement du panneau de conversation.",
+ "chatParticipantRegistered": "La valeur est true quand un participant à la conversation par défaut est inscrit pour le panneau.",
+ "chatRemoteJobCreating": "Vrai lorsque la création d'un travail d'agent de codage distant est en cours.",
+ "chatRequest": "L’élément de conversation est une requête.",
+ "chatResponse": "L’élément de conversation est une réponse.",
+ "chatResponseErrored": "Vrai lorsque la réponse de conversation a généré une erreur.",
+ "chatResponseFiltered": "True lorsque la réponse à la conversation a été filtrée par le serveur.",
+ "chatResponseSupportsIssueReporting": "Vrai lorsque la réponse de chat actuelle prend en charge le signalement de problèmes.",
+ "chatSessionHasModels": "Vrai lorsque la conversation fait partie d’une session de conversation contributive disposant de « modèles » à afficher.",
+ "chatSessionResponseDetectedAgentOrCommand": "Lors de la détection automatique de l’agent ou de la commande",
+ "chatSessionType": "Type de l’élément de session de conversation actuel.",
+ "chatSkipRequestInProgressMessage": "Vrai lorsque le message de requête de conversation en cours doit être ignoré.",
+ "chatToolCount": "Nombre d’outils disponibles dans l’assistant actuel.",
+ "chatToolGroupingThreshold": "Nombre d’outils à partir duquel nous commençons à effectuer le regroupement virtuel.",
+ "enableRemoteCodingAgentPromptFileOverlay": "Indique si la fonctionnalité de superposition du fichier d’invite de l’agent de codage à distance est activée",
+ "filePartOfEditSession": "True lorsque le widget de conversation se trouve dans un fichier avec une session de modification.",
+ "hasRemoteCodingAgent": "Indiquez si un agent de codage à distance est disponible",
+ "inChat": "True lorsque le focus est dans l’entrée de la conversation, false dans le cas contraire.",
+ "inChatEditor": "Indique si le focus se trouve dans un éditeur de conversation.",
+ "inChatTerminalToolOutput": "Vrai lorsque le focus est dans la zone de sortie du terminal de conversation.",
+ "inInteractiveInput": "True lorsque le focus est dans l’entrée de conversation, false dans le cas contraire.",
+ "inQuickChat": "True quand l’interface utilisateur de la conversation rapide a le focus, sinon false.",
+ "interactiveInputHasFocus": "Valeur true lorsque l’entrée de la conversation a le focus.",
+ "interactiveInputHasText": "True lorsque l’entrée de la conversation contient du texte.",
+ "interactiveSessionCurrentlyEditing": "Vrai lorsque la requête actuelle est en cours de modification.",
+ "interactiveSessionCurrentlyEditingInput": "Vrai lorsque l'entrée de la demande actuelle en bas est en cours de modification.",
+ "interactiveSessionRequestInProgress": "True lorsque la demande actuelle est toujours en cours.",
+ "interactiveSessionResponseVote": "Lorsque la réponse a été votée, est définie sur « up ». Quand vous avez voté en bas, la valeur est 'down'. Sinon, une chaîne vide.",
+ "lockedToCodingAgent": "Vrai lorsque le widget de conversation est verrouillé sur la session de l'agent de codage.",
+ "toolsCount": "Nombre d’outils disponibles dans la conversation.",
+ "withinEditSessionDiff": "Vrai lorsque le widget de conversation est envoyé vers la conversation de la session d’édition."
+ },
+ "vs/workbench/contrib/chat/common/chatEditingService": {
+ "chatEditingAgentSupportsReadonlyReferences": "Indique si l’agent d’édition de conversation prend en charge les références en lecture seule (temporaire)",
+ "chatEditingWidgetFileState": "État à jour du fichier dans le widget de modification de conversation"
+ },
+ "vs/workbench/contrib/chat/common/chatModel": {
+ "codeCitation": "Code similaire trouvé avec 1 type de licence",
+ "codeCitations": "Code similaire trouvé avec les types de licences {0}",
+ "copyrightContentRetry": "Réponse effacée en raison d’une correspondance possible avec le code public, nouvelle tentative avec l’invite modifiée.",
+ "editsSummary": "Les modifications ont été apportées.",
+ "filteredContentRetry": "Réponse effacée en raison de filtres de sécurité du contenu, nouvelle tentative avec l’invite modifiée."
+ },
+ "vs/workbench/contrib/chat/common/chatModes": {
+ "agentDescription": "Décrivez ce qu’il faut créer ensuite",
+ "chatDescription": "Explorer et comprendre votre code",
+ "editsDescription": "Modifier ou refactoriser le code sélectionné"
+ },
+ "vs/workbench/contrib/chat/common/chatProgressTypes/chatToolInvocation": {
+ "toolInvocationMessage": "Utilisation de {0}"
+ },
+ "vs/workbench/contrib/chat/common/chatServiceImpl": {
+ "emptyResponse": "Le fournisseur a renvoyé une réponse null",
+ "newChat": "Nouvelle conversation"
+ },
+ "vs/workbench/contrib/chat/common/chatSessionStore": {
+ "join.chatSessionStore": "Enregistrement de l’historique des conversations",
+ "newChat": "Nouvelle conversation"
+ },
+ "vs/workbench/contrib/chat/common/chatUrlFetchingConfirmation": {
+ "allowRequestsCheckbox": "Effectuer des demandes sans confirmation",
+ "allowResponsesCheckbox": "Autoriser les réponses sans confirmation",
+ "approveAll": "Tout approuver",
+ "approveRequestTo": "Autoriser les demandes à {0}",
+ "approveResponseFrom": "Autoriser les réponses de {0}",
+ "approves": "Approuve {0}",
+ "delete": "Supprimer",
+ "denyAll": "Refuser tout",
+ "moreOptions": "Autoriser les demandes à...",
+ "moreOptionsManage": "Plus d’options...",
+ "moreOptionsMultiple": "Configurer les approbations d’URL...",
+ "noApprovals": "Aucune approbation",
+ "openSettings": "Ouvrir les paramètres",
+ "requests": "requêtes",
+ "responses": "réponses",
+ "selectApproval": "Sélectionnez le modèle d’URL à approuver"
+ },
+ "vs/workbench/contrib/chat/common/chatVariableEntries": {
+ "chat.attachment.problems.all": "Tous les problèmes",
+ "chat.attachment.problems.inFile": "Problèmes dans {0}"
+ },
+ "vs/workbench/contrib/chat/common/languageModels": {
+ "vscode.extension.contributes.languageModelChatProviders": "Contribuer aux fournisseurs de conversation de modèle de langage d’un fournisseur spécifique.",
+ "vscode.extension.contributes.languageModels.displayName": "Nom complet du fournisseur de conversation de modèle de langage.",
+ "vscode.extension.contributes.languageModels.emptyVendor": "Le champ fournisseur ne peut pas être vide.",
+ "vscode.extension.contributes.languageModels.managementCommand": "Commande permettant de gérer le fournisseur de conversation de modèle de langage, par exemple « Gérer les modèles Copilot ». Il est utilisé dans le sélecteur de modèle de conversation. S’il n’est pas fourni, aucune icône d’engrenage n’est affichée lors de la sélection du fournisseur.",
+ "vscode.extension.contributes.languageModels.vendor": "Fournisseur global unique de conversation de modèles de langage.",
+ "vscode.extension.contributes.languageModels.vendorAlreadyRegistered": "Le fournisseur «{0}» est déjà inscrit et ne peut pas être inscrit deux fois",
+ "vscode.extension.contributes.languageModels.when": "Condition qui doit être vraie pour afficher ce fournisseur de conversation de modèle de langage dans la liste Gérer les modèles.",
+ "vscode.extension.contributes.languageModels.whitespaceVendor": "Le champ fournisseur ne peut pas commencer ou se terminer par un espace blanc."
+ },
+ "vs/workbench/contrib/chat/common/languageModelStats": {
+ "Language Models": "Copilot",
+ "chat": "conversation",
+ "languageModels": "Statistiques d’utilisation des modèles de langage de cette extension."
+ },
+ "vs/workbench/contrib/chat/common/languageModelToolsService": {
+ "builtin": "Intégré",
+ "toolResultDataPartA11y": "{0} des {1} données binaires",
+ "user": "Défini par l'utilisateur(-trice)"
+ },
+ "vs/workbench/contrib/chat/common/modelPicker/modelPickerWidget": {
+ "chat.modelPicker.other": "Autres modèles"
+ },
+ "vs/workbench/contrib/chat/common/promptSyntax/chatPromptFilesContribution": {
+ "chatContribution.property.description": "(Facultatif) Description du fichier.",
+ "chatContribution.property.name": "Identifiant de ce fichier. Doit être unique dans cette extension pour ce point de contribution.",
+ "chatContribution.property.path": "Chemin du fichier par rapport à la racine de l’extension.",
+ "chatContribution.schema.description": "Contribue {0} aux invites de conversation.",
+ "extension.invalid.name": "L’extension « {0} » ne peut pas enregistrer l’entrée {1} avec un nom non valide « {2} ».",
+ "extension.invalid.path": "Le chemin d’accès de l’entrée « {0} » {1} de l’extension « {2} » se résout en dehors de l’extension.",
+ "extension.missing.description": "L’extension « {0} » ne peut pas enregistrer l’entrée {1} « {2} » sans description.",
+ "extension.missing.path": "L’extension « {0} » ne peut pas enregistrer l’entrée {1} « {2} » sans chemin d’accès.",
+ "extension.registration.failed": "Échec de l’inscription de l’entrée {0} « {1} » : {2}"
+ },
+ "vs/workbench/contrib/chat/common/promptSyntax/computeAutomaticInstructions": {
+ "instruction.file.description.agentsmd.folder": "Instructions pour le dossier « {0} »",
+ "instruction.file.description.agentsmd.root": "Instructions pour l’espace de travail",
+ "instruction.file.reason.agentsmd": "Joint automatiquement, car le paramètre {0} est activé",
+ "instruction.file.reason.allFiles": "Attaché automatiquement en tant que modèle **",
+ "instruction.file.reason.copilot": "Joint automatiquement, car le paramètre {0} est activé",
+ "instruction.file.reason.referenced": "Référencé par {0}",
+ "instruction.file.reason.specificFile": "Automatiquement attaché en tant que {0} concordances {1}"
+ },
+ "vs/workbench/contrib/chat/common/promptSyntax/languageProviders/promptCodeActions": {
+ "expandToolNames": "Expand to {0} tools",
+ "migrateToAgent": "Migrer vers un fichier d’assistant personnalisé",
+ "renameToAgent": "Renommer en « assistant »",
+ "updateAllToolNames": "Mettre à jour tous les noms d’outils",
+ "updateToolName": "Mettre à jour vers « {0} »"
+ },
+ "vs/workbench/contrib/chat/common/promptSyntax/languageProviders/promptHeaderAutocompletion": {
+ "promptHeaderAutocompletion.handoffsExample": "Exemple de transfert"
+ },
+ "vs/workbench/contrib/chat/common/promptSyntax/languageProviders/promptHovers": {
+ "modelFamily": "– Famille : {0}",
+ "modelName": "– Nom : {0}",
+ "modelVendor": "– Fournisseur : {0}",
+ "promptHeader.agent.argumentHint": "L’indication d’argument décrit les entrées attendues ou prises en charge par l’assistant personnalisé.",
+ "promptHeader.agent.description": "Description de l’assistant personnalisé, de ce qu’il fait et de quand l’utiliser.",
+ "promptHeader.agent.handoffs": "Actions de transfert possibles lorsque l’agent a terminé sa tâche.",
+ "promptHeader.agent.handoffs.githubCopilot": "Remarque : cet attribut n’est pas utilisé lorsque la cible est github-copilot.",
+ "promptHeader.agent.model": "Spécifiez le modèle qui exécute cet assistant personnalisé.",
+ "promptHeader.agent.model.githubCopilot": "Remarque : cet attribut n’est pas utilisé lorsque la cible est github-copilot.",
+ "promptHeader.agent.name": "Nom de l’agent tel qu’il apparaît dans l’interface utilisateur.",
+ "promptHeader.agent.target": "Cible à laquelle s’appliquent les attributs d’en-tête comme les outils. Les valeurs possibles sont « github-copilot » et « vscode ».",
+ "promptHeader.agent.tools": "Ensemble d’outils auxquels l’assistant personnalisé a accès.",
+ "promptHeader.instructions.applyToRange": "Un ou plusieurs modèles Glob (séparés par des virgules) décrivant les fichiers auxquels s’appliquent les instructions. En fonction de ces modèles, le fichier est automatiquement inclus dans l’invite lorsque le contexte contient un fichier qui correspond à un ou plusieurs de ces modèles. Utilisez « ** » lorsque vous souhaitez que ce fichier soit toujours ajouté.\r\nExample : « **/*.ts », « **/*.js », « client/** »",
+ "promptHeader.instructions.description": "Description du fichier d’instructions. Elle peut être utilisée pour fournir un contexte ou des informations supplémentaires sur les instructions et est transmise au modèle de langage dans le cadre de la requête.",
+ "promptHeader.instructions.name": "Nom du fichier d’instructions tel qu’affiché dans l’interface utilisateur. S’il n’est pas défini, le nom est dérivé du nom du fichier.",
+ "promptHeader.prompt.agent.builtInDesc": "Assistant intégré",
+ "promptHeader.prompt.agent.builtin": "**Assistants intégrés :**",
+ "promptHeader.prompt.agent.custom": "**Assistants personnalisés :**",
+ "promptHeader.prompt.agent.customDesc": "Assistant personnalisé",
+ "promptHeader.prompt.agent.description": "L’assistant à utiliser lors de l’exécution de cette invite.",
+ "promptHeader.prompt.argumentHint": "L’indication d’argument décrit les entrées attendues ou prises en charge par l’invite.",
+ "promptHeader.prompt.description": "Description de l’invite réutilisable, de ce qu’elle fait et de quand l’utiliser.",
+ "promptHeader.prompt.model": "Le modèle à utiliser dans cette requête.",
+ "promptHeader.prompt.name": "Le nom de la requête. C’est aussi le nom de la commande slash qui exécutera cette requête.",
+ "promptHeader.prompt.tools": "Les outils à utiliser dans cette requête.",
+ "toolSetName": "Ensemble d’outils : {0}\r\n\r\n"
+ },
+ "vs/workbench/contrib/chat/common/promptSyntax/languageProviders/promptValidator": {
+ "githubCopilotTools.customAgent": "Appeler les assistants personnalisés",
+ "githubCopilotTools.edit": "Modifiez les fichiers",
+ "githubCopilotTools.search": "Recherchez dans les fichiers",
+ "githubCopilotTools.shell": "Exécutez des commandes shell",
+ "promptValidator.agentNotFound": "Agent inconnu « {0} ». Assistants disponibles : {1}.",
+ "promptValidator.applyToMustBeString": "L’attribut « applyTo » doit être une chaîne.",
+ "promptValidator.applyToMustBeValidGlob": "L’attribut « applyTo » doit être un modèle Glob valide.",
+ "promptValidator.argumentHintMustBeString": "L’attribut « argument-hint » doit être une chaîne.",
+ "promptValidator.argumentHintShouldNotBeEmpty": "L’attribut « argument-hint » ne doit pas être vide.",
+ "promptValidator.attributeMustBeNonEmpty": "L’attribut « {0} » doit être une chaîne non vide.",
+ "promptValidator.attributeMustBeString": "L’attribut « {0} » doit être une chaîne.",
+ "promptValidator.chatModesRenamedToAgents": "Les modes de conversation ont été renommés en assistants. Veuillez déplacer ce fichier vers {0}",
+ "promptValidator.chatModesRenamedToAgentsNoMove": "Les modes de conversation ont été renommés en assistants. Veuillez déplacer le fichier vers {0}",
+ "promptValidator.deprecatedVariableReference": "L’outil ou l’ensemble d’outils « {0} » a été renommé. Utilisez « {1} » à la place.",
+ "promptValidator.deprecatedVariableReferenceMultipleNames": "Tool or toolset '{0}' has been renamed, use the following tools instead: {1}",
+ "promptValidator.descriptionMustBeString": "L’attribut « description » doit être une chaîne.",
+ "promptValidator.descriptionShouldNotBeEmpty": "L’attribut « description » ne doit pas être vide.",
+ "promptValidator.disabledTool": "L’outil ou l’ensemble d’outils « {0} » doit également être activé dans l’en-tête.",
+ "promptValidator.eachHandoffMustBeObject": "Chaque transfert dans l’attribut « handoffs » doit être un objet contenant « label », « agent », « prompt » et éventuellement « send ».",
+ "promptValidator.eachToolMustBeString": "Chaque nom d’outil dans l’attribut « tools » doit être une chaîne.",
+ "promptValidator.excludeAgentMustBeArray": "L’attribut « excludeAgent » doit être un tableau.",
+ "promptValidator.fileNotFound": "Fichier « {0} » introuvable sur « {1} ».",
+ "promptValidator.handoffAgentMustBeNonEmptyString": "La propriété « agent » d’un transfert doit être une chaîne non vide.",
+ "promptValidator.handoffLabelMustBeNonEmptyString": "La propriété « label » d’un transfert doit être une chaîne non vide.",
+ "promptValidator.handoffPromptMustBeString": "La propriété « prompt » d’un transfert doit être une chaîne de caractères.",
+ "promptValidator.handoffSendMustBeBoolean": "La propriété « send » d’un transfert doit être une valeur booléenne.",
+ "promptValidator.handoffsMustBeArray": "L’attribut « handoffs » doit être un tableau.",
+ "promptValidator.ignoredAttribute.vscode-agent": "L’attribut « {0} » est ignoré lors de l’exécution locale dans VS Code.",
+ "promptValidator.invalidFileReference": "Référence de fichier « {0} » non valide.",
+ "promptValidator.missingHandoffProperties": "Propriétés obligatoires manquantes {0} dans l’objet de transfert.",
+ "promptValidator.modeDeprecated": "L’attribut « mode » est obsolète. L’attribut « agent » est utilisé à la place.",
+ "promptValidator.modeDeprecated.useAgent": "L’attribut « mode » est obsolète. Veuillez le renommer en « assistant ».",
+ "promptValidator.modelMustBeNonEmpty": "L’attribut « model » doit être une chaîne non vide.",
+ "promptValidator.modelMustBeString": "L’attribut « model » doit être une chaîne.",
+ "promptValidator.modelNotFound": "Modèle « {0} » inconnu.",
+ "promptValidator.modelNotSuited": "Le modèle « {0} » n’est pas adapté au mode agent.",
+ "promptValidator.nameMustBeString": "L’attribut « name » doit être une chaîne.",
+ "promptValidator.nameShouldNotBeEmpty": "L’attribut « name » ne doit pas être vide.",
+ "promptValidator.targetInvalidValue": "L’attribut « target » doit être l’une des options suivantes : {0}.",
+ "promptValidator.targetMustBeNonEmpty": "L’attribut « target » doit être une chaîne non vide.",
+ "promptValidator.targetMustBeString": "L’attribut « target » doit être une chaîne.",
+ "promptValidator.toolDeprecated": "L’outil ou l’ensemble d’outils « {0} » a été renommé. Utilisez « {1} » à la place.",
+ "promptValidator.toolDeprecatedMultipleNames": "Tool or toolset '{0}' has been renamed, use the following tools instead: {1}",
+ "promptValidator.toolNotFound": "Outil « {0} » inconnu.",
+ "promptValidator.toolsMustBeArrayOrMap": "L’attribut « tools » doit être un tableau.",
+ "promptValidator.toolsOnlyInAgent": "L’attribut « tools » est uniquement pris en charge lors de l’utilisation d’assistants. L’attribut sera ignoré.",
+ "promptValidator.unknownAttribute.github-agent": "L’attribut « {0} » n’est pas pris en charge dans les fichiers d’assistant GitHub Copilot personnalisés. Pris en charge : {1}.",
+ "promptValidator.unknownAttribute.instructions": "L’attribut « {0} » n’est pas pris en charge dans les fichiers d’instructions. Pris en charge : {1}.",
+ "promptValidator.unknownAttribute.prompt": "L’attribut « {0} » n’est pas pris en charge dans les fichiers de requête. Pris en charge : {1}.",
+ "promptValidator.unknownAttribute.vscode-agent": "L’attribut « {0} » n’est pas pris en charge dans les fichiers d’agent VS Code. Pris en charge : {1}.",
+ "promptValidator.unknownHandoffProperty": "Propriété inconnue « {0} » dans l’objet de transfert. Les propriétés prises en charge sont « label », « agent », « prompt » et éventuellement « send ».",
+ "promptValidator.unknownVariableReference": "Outil ou ensemble d’outils « {0} » inconnu."
+ },
+ "vs/workbench/contrib/chat/common/promptSyntax/service/promptsServiceImpl": {
+ "extension.with.id": "Extension : {0}",
+ "user-data-dir.capitalized": "Données utilisateur"
+ },
+ "vs/workbench/contrib/chat/common/tools/languageModelToolsContribution": {
+ "canBeReferencedInPrompt": "Si la valeur est vraie, cet outil s’affiche sous la forme d’une pièce jointe que l’utilisateur peut ajouter manuellement à sa requête. Les participants à la conversation recevront l’outil dans {0}.",
+ "condition": "Condition qui doit être vraie pour que cet outil soit activé. Notez qu'un outil peut toujours être invoqué par une autre extension même lorsque sa condition « quand » est fausse.",
+ "descriptions": "Description",
+ "icon": "Icône qui représente cet outil. Soit un chemin de fichier, un objet avec des chemins de fichiers pour les thèmes sombres et clairs, soit une référence d'icône de thème, comme « \\$(zap) »",
+ "icon.dark": "Chemin de l'icône quand un thème foncé est utilisé",
+ "icon.light": "Chemin de l'icône quand un thème clair est utilisé",
+ "langModelToolSets": "Ensembles d’outils modèle de langage",
+ "langModelTools": "Outils de modèle de langage",
+ "legacyToolReferenceFullNames": "An array of deprecated names for backwards compatibility that can also be used to reference this tool in a query. Each name must not contain whitespace. Full names are generally in the format `toolsetName/toolReferenceName` (e.g., `search/readFile`) or just `toolReferenceName` when there is no toolset (e.g., `readFile`).",
+ "name": "Nom",
+ "parametersSchema": "Schéma JSON pour l’entrée acceptée par cet outil. L’entrée doit être un objet au niveau supérieur. Un modèle de langage particulier peut ne pas prendre en charge toutes les fonctionnalités de schéma JSON. Pour plus d’informations, consultez la documentation de la famille de modèles de langage que vous utilisez.",
+ "reference": "Nom de la référence",
+ "toolDisplayName": "Nom lisible par l’homme pour cet outil qui peut être utilisé pour le décrire dans l’interface utilisateur.",
+ "toolModelDescription": "Description de cet outil et qui permet à un modèle de langage de le sélectionner.",
+ "toolName": "Un nom unique pour cet outil. Ce nom doit être un identificateur global unique et est également utilisé comme nom lors de la présentation de cet outil à un modèle de langage.",
+ "toolName2": "Si {0} est activé pour cet outil, l’utilisateur peut utiliser « # » avec ce nom pour appeler l’outil dans une requête. Sinon, le nom n’est pas obligatoire. Le nom ne doit pas contenir d’espace blanc.",
+ "toolSetDescription": "Une description de cet ensemble d’outils.",
+ "toolSetIcon": "Une icône représentant cet ensemble d'outils, comme `$(zap)`",
+ "toolSetLegacyFullNames": "An array of deprecated names for backwards compatibility that can also be used to reference this tool set. Each name must not contain whitespace. Full names are generally in the format `parentToolSetName/toolSetName` (e.g., `github/repo`) or just `toolSetName` when there is no parent toolset (e.g., `repo`).",
+ "toolSetName": "Nom de cet ensemble d’outils. Utilisé comme référence et ne doit pas contenir d’espaces blancs.",
+ "toolSetTools": "Liste d’outils ou d’ensembles d’outils à inclure dans cet ensemble d’outils. Ne peut pas être vide et doit référencer les outils par leur « toolReferenceName ».",
+ "toolTableDescription": "Description",
+ "toolTableDisplayName": "Nom d’affichage",
+ "toolTableName": "Nom",
+ "toolTags": "Ensemble de balises qui décrivent de manière approximative les fonctionnalités de l’outil. Un utilisateur d’outils peut les utiliser pour filtrer l’ensemble d’outils sur ceux qui sont pertinents pour la tâche à effectuer. Sinon, il peut choisir une balise qui permet d’identifier uniquement les outils auxquels cette extension contribue.",
+ "toolUserDescription": "Description de cet outil qui peut être présentée à l’utilisateur.",
+ "tools": "Outils",
+ "vscode.extension.contributes.toolSets": "Contribue à un ensemble d’outils de modèle de langage qui peuvent être utilisés ensemble.",
+ "vscode.extension.contributes.tools": "Contribue à un outil qui peut être appelé par un modèle de langage dans une session de conversation ou depuis une commande autonome. Les outils inscrits peuvent être utilisés par toutes les extensions."
+ },
+ "vs/workbench/contrib/chat/common/tools/manageTodoListTool": {
+ "todo.added.multiple": "Ajouté à {0} tâches à faire",
+ "todo.added.single": "Ajouté 1 tâche à faire",
+ "todo.completed": "Terminé : *{0}* ({1}/{2})",
+ "todo.created.multiple": "{0} tâches à faire créées",
+ "todo.created.single": "Création de 1 tâche à faire",
+ "todo.readOperation": "Lire la liste des tâches à faire",
+ "todo.starting": "Démarrage : *{0}* ({1}/{2})",
+ "todo.updated": "Liste de tâches à faire mise à jour",
+ "todo.updatedList": "Liste de tâches à faire mise à jour",
+ "tool.manageTodoList.displayName": "Gérez et suivez les éléments de la liste de tâches à faire pour la planification",
+ "tool.manageTodoList.userDescription": "Manage and track todo items for task planning"
+ },
+ "vs/workbench/contrib/chat/common/tools/runSubagentTool": {
+ "tool.runSubagent.displayName": "Exécuter le sous-agent",
+ "tool.runSubagent.userDescription": "Run a task within an isolated subagent context to enable efficient organization of tasks and context window management."
+ },
+ "vs/workbench/contrib/chat/common/tools/tools": {
+ "toolset.custom-agent": "Delegate tasks to other agents"
+ },
+ "vs/workbench/contrib/chat/common/voiceChatService": {
+ "voiceChatInProgress": "Une session de reconnaissance vocale est en cours pour la conversation."
+ },
+ "vs/workbench/contrib/chat/electron-browser/actions/chatDeveloperActions": {
+ "workbench.action.chat.openStorageFolder.label": "Ouvrir le dossier de stockage des conversations"
+ },
+ "vs/workbench/contrib/chat/electron-browser/actions/voiceChatActions": {
+ "keywordActivation.status.active": "Écoute de « Hey Code »...",
+ "keywordActivation.status.inactive": "En attente de la fin de la conversation vocale...",
+ "keywordActivation.status.name": "Activation par mot clé vocal",
+ "listening": "J'écoute",
+ "scopedChatSynthesisInProgress": "Défini comme un emplacement où l’enregistrement vocal à partir du microphone est en cours pour la conversation vocale. Cette clé n’est définie qu’à l’échelle, par contexte de conversation.",
+ "scopedVoiceChatGettingReady": "Vrai lorsque vous vous préparez à recevoir une entrée vocale du microphone pour un chat vocal. Cette clé n’est définie qu’à l’échelle, par contexte de conversation.",
+ "scopedVoiceChatInProgress": "Défini comme un emplacement où l’enregistrement vocal à partir du microphone est en cours pour la conversation vocale. Cette clé n’est définie qu’à l’échelle, par contexte de conversation.",
+ "voice.keywordActivation": "Contrôle si l’expression mot clé « Hey Code » est reconnue pour démarrer une session de conversation vocale. L’activation de cette option démarre l’enregistrement depuis le microphone, mais l’audio est traité localement et n’est jamais envoyé à un serveur.",
+ "voice.keywordActivation.chatInContext": "L’activation par mot clé est activée et écoute « Hey Code » pour démarrer une session de conversation vocale dans l’éditeur ou l’affichage actif en fonction du focus clavier.",
+ "voice.keywordActivation.chatInView": "L’activation par mot clé est activée et écoute « Hey Code » pour démarrer une session de conversation vocale dans la vue de conversation.",
+ "voice.keywordActivation.inlineChat": "L'activation des mots clés est activée et l'écoute de « Hey Code » pour démarrer une session de chat vocal dans l'éditeur actif si possible.",
+ "voice.keywordActivation.off": "L’activation par mot clé est désactivée.",
+ "voice.keywordActivation.quickChat": "L’activation par mot clé est activée et écoute « Hey Code » pour démarrer une session de conversation vocale dans la conversation rapide.",
+ "workbench.action.chat.holdToVoiceChatInChatView.label": "Maintenir Voice Chat dans la vue Chat",
+ "workbench.action.chat.inlineVoiceChat": "Chat vocal inline",
+ "workbench.action.chat.quickVoiceChat.label": "Chat vocal rapide",
+ "workbench.action.chat.readChatResponseAloud": "Lecture à voix haute",
+ "workbench.action.chat.startVoiceChat.label": "Démarrer le chat vocal",
+ "workbench.action.chat.stopListening.label": "Arrêter l’écoute",
+ "workbench.action.chat.stopListeningAndSubmit.label": "Arrêter l’écoute et envoyer",
+ "workbench.action.chat.stopReadChatItemAloud": "Arrêter la lecture à voix haute",
+ "workbench.action.chat.voiceChatInView.label": "Chat vocal en mode Conversation",
+ "workbench.action.speech.stopReadAloud": "Arrêter la lecture à voix haute"
+ },
+ "vs/workbench/contrib/chat/electron-browser/chat.contribution": {
+ "changeWorkspace.detail": "La requête de conversation s’arrêtera si vous modifiez l’espace de travail.",
+ "changeWorkspace.message": "Une demande de conversation est en cours. Voulez-vous vraiment modifier l’espace de travail ?",
+ "chatRequestInProgress": "Une requête de conversation est en cours.",
+ "closeTheWindow.detail": "La requête de conversation s’arrêtera si vous fermer la fenêtre.",
+ "closeTheWindow.message": "Une demande de conversation est en cours. Voulez-vous vraiment fermer la fenêtre ?",
+ "copilotWorkspaceTrust": "Les fonctionnalités IA sont actuellement uniquement pris en charge dans les espaces de travail approuvés.",
+ "exit.detail": "La requête de conversation s’arrêtera si vous quittez.",
+ "exit.message": "Une demande de conversation est en cours. Voulez-vous vraiment quitter ?",
+ "quit.detail": "La requête de conversation s’arrêtera si vous quittez.",
+ "quit.message": "Une demande de conversation est en cours. Voulez-vous vraiment quitter ?",
+ "reloadTheWindow.detail": "La requête de conversation s’arrêtera si vous rechargez la fenêtre.",
+ "reloadTheWindow.message": "Une demande de conversation est en cours. Voulez-vous vraiment recharger la fenêtre ?"
+ },
+ "vs/workbench/contrib/chat/electron-browser/tools/fetchPageTool": {
+ "fetchWebPage.binaryNotSupported": "Les fichiers binaires ne sont pas pris en charge pour le moment.",
+ "fetchWebPage.confirmationMessage.plural": "Le contenu web peut contenir du code malveillant ou tenter des attaques par injection d’invite.",
+ "fetchWebPage.confirmationTitle.plural": "Récupérer des pages web",
+ "fetchWebPage.confirmationTitle.singular": "Voulez-vous récupérer une page web ?",
+ "fetchWebPage.invalidUrl": "URL non valide",
+ "fetchWebPage.invocationMessage.plural": "Récupération de {0} ressources",
+ "fetchWebPage.invocationMessage.singular": "Récupération de {0}",
+ "fetchWebPage.invocationMessage.singularAsLink": "Récupération de [ressources]({0})",
+ "fetchWebPage.noValidUrls": "Aucune URL valide fournie.",
+ "fetchWebPage.pastTenseMessage.plural": "Ressources {0} récupérées, mais les URL suivantes n’étaient pas valides :\r\n\r\n{1}\r\n\r\n",
+ "fetchWebPage.pastTenseMessage.singular": "La ressource a été récupérée, mais l’URL suivante n’était pas valide :\r\n\r\n{0}\r\n\r\n",
+ "fetchWebPage.pastTenseMessageResult.plural": "Récupération de {0} ressources",
+ "fetchWebPage.pastTenseMessageResult.singular": "{0} a été récupéré",
+ "fetchWebPage.pastTenseMessageResult.singularAsLink": "Ressource [récupérée]({0})",
+ "fetchWebPage.urlsDescription": "Tableau d’URL à partir desquelles le contenu est récupéré."
},
"vs/workbench/contrib/codeActions/browser/codeActionsContribution": {
- "codeActionsOnSave": "Types d'action de code à exécuter à l'enregistrement.",
- "codeActionsOnSave.fixAll": "Contrôle si l'action de correction automatique doit être exécutée à l'enregistrement du fichier.",
- "codeActionsOnSave.generic": "Contrôle si des actions '{0}' doivent être exécutées à l'enregistrement de fichier."
- },
- "vs/workbench/contrib/codeActions/common/codeActionsExtensionPoint": {
- "contributes.codeActions": "Configurez l'éditeur à utiliser pour une ressource.",
- "contributes.codeActions.description": "Description du rôle de l'action de code.",
- "contributes.codeActions.kind": "'CodeActionKind' de l'action de code objet de la contribution.",
- "contributes.codeActions.languages": "Modes de langage pour lesquels les actions de code sont activées.",
- "contributes.codeActions.title": "Étiquette de l'action de code utilisée dans l'interface utilisateur."
- },
- "vs/workbench/contrib/codeActions/common/documentationExtensionPoint": {
- "contributes.documentation": "Documentation fournie.",
- "contributes.documentation.refactoring": "Documentation fournie pour la refactorisation.",
- "contributes.documentation.refactoring.command": "Commande exécutée.",
- "contributes.documentation.refactoring.title": "Étiquette pour la documentation utilisée dans l'interface utilisateur.",
- "contributes.documentation.refactoring.when": "Quand il s'agit d'une clause.",
- "contributes.documentation.refactorings": "Documentation fournie pour les refactorisations."
+ "alwaysSave": "Déclenche des actions de code sur les enregistrements explicites et les enregistrements automatiques déclenchés par les changements de fenêtre ou de focus.",
+ "codeActionsOnSave.generic": "Contrôle si des actions '{0}' doivent être exécutées à l'enregistrement de fichier.",
+ "editor.codeActionsOnSave": "Exécuter les actions de code de l'éditeur lors de l'enregistrement. Les actions de code doivent être spécifiées et l'éditeur ne doit pas être en train de s'arrêter. Lorsque {0} est fixé à `afterDelay`, les actions de code ne sont exécutées que lorsque le fichier est enregistré de manière explicite. Exemple : `\"source.organizeImports\": \"explicit\" `",
+ "explicit": "Déclenche des actions de code uniquement lorsque l’enregistrement est explicite.",
+ "explicitBoolean": "Déclenche des actions de code uniquement lorsque l’enregistrement est explicite. Cette valeur sera dépréciée en faveur de « explicite ».",
+ "explicitSave": "Déclenche des actions de code uniquement lorsque l'enregistrement est explicite",
+ "explicitSaveBoolean": "Déclenche des actions de code uniquement lorsque l’enregistrement est explicite. Cette valeur sera dépréciée en faveur de « explicite ».",
+ "never": "Ne déclenche jamais d’actions de code lors de l’enregistrement.",
+ "neverBoolean": "Déclenche des actions de code uniquement lorsque l’enregistrement est explicite. Cette valeur sera déconseillée en faveur de « jamais ».",
+ "neverSave": "Ne déclenche jamais d'actions de code lors de l'enregistrement",
+ "neverSaveBoolean": "Ne déclenche jamais d’actions de code lors de l’enregistrement. Cette valeur sera déconseillée en faveur de « jamais ».",
+ "notebook.codeActionsOnSave": "Exécutez une série d’actions de code pour un bloc-notes lors de l’enregistrement. Les actions de code doivent être spécifiées et l'éditeur ne doit pas être en train de s'arrêter. Lorsque {0} est fixé à `afterDelay`, les actions de code ne sont exécutées que lorsque le fichier est enregistré de manière explicite. Exemple : `\"notebook.source.organizeImports\": \"explicit\"`"
},
"vs/workbench/contrib/codeEditor/browser/accessibility/accessibility": {
- "ShowAccessibilityHelpAction": "Afficher l'aide sur l'accessibilité",
- "auto_off": "L'éditeur est configuré pour détecter automatiquement si un lecteur d'écran est attaché, ce qui n'est pas le cas pour le moment.",
- "auto_on": "L'éditeur a automatiquement détecté qu'un lecteur d'écran est attaché.",
- "auto_unknown": "L'éditeur est configuré pour utiliser les API de la plateforme afin de détecter si un lecteur d'écran est attaché, mais le runtime actuel ne prend pas en charge cette configuration.",
- "changeConfigToOnMac": "Pour configurer l'éditeur de sorte qu'il soit optimisé en permanence pour une utilisation avec un lecteur d'écran, appuyez sur Commande+E.",
- "changeConfigToOnWinLinux": "Pour configurer l'éditeur de sorte qu'il soit optimisé en permanence pour une utilisation avec un lecteur d'écran, appuyez sur Ctrl+E.",
- "configuredOff": "L'éditeur est configuré de sorte à ne jamais être optimisé pour une utilisation avec un lecteur d'écran.",
- "configuredOn": "L'éditeur est configuré de sorte qu'il soit optimisé en permanence pour une utilisation avec un lecteur d'écran. Vous pouvez changer ce comportement en modifiant le paramètre 'editor.accessibilitySupport'.",
- "emergencyConfOn": "Définition du paramètre 'editor.accessibilitySupport' sur 'activé'.",
- "introMsg": "Nous vous remercions de tester les options d'accessibilité de VS Code.",
- "openDocMac": "Appuyez sur Commande+H pour ouvrir une fenêtre de navigateur contenant plus d'informations sur l'accessibilité dans VS Code.",
- "openDocWinLinux": "Appuyez sur Ctrl+H pour ouvrir une fenêtre de navigateur contenant plus d'informations sur l'accessibilité dans VS Code.",
- "openingDocs": "Ouverture de la page de documentation sur l'accessibilité dans VS Code.",
- "outroMsg": "Vous pouvez masquer cette info-bulle et revenir à l'éditeur en appuyant sur Échap ou Maj+Échap.",
- "status": "État :",
- "tabFocusModeOffMsg": "Appuyez sur Tab dans l'éditeur pour insérer le caractère de tabulation. Activez ou désactivez ce comportement en appuyant sur {0}.",
- "tabFocusModeOffMsgNoKb": "Appuyez sur Tab dans l'éditeur pour insérer le caractère de tabulation. La commande {0} ne peut pas être déclenchée par une combinaison de touches.",
- "tabFocusModeOnMsg": "Appuyez sur Tab dans l'éditeur pour déplacer le focus vers le prochain élément pouvant être désigné comme élément actif. Activez ou désactivez ce comportement en appuyant sur {0}.",
- "tabFocusModeOnMsgNoKb": "Appuyez sur Tab dans l'éditeur pour déplacer le focus vers le prochain élément pouvant être désigné comme élément actif. La commande {0} ne peut pas être déclenchée par une combinaison de touches."
+ "toggleScreenReaderMode": "Activer/désactiver le mode d’accessibilité du lecteur d’écran",
+ "toggleScreenReaderModeDescription": "Active/désactive un mode optimisé pour une utilisation avec des lecteurs d’écran, des périphériques braille et d’autres technologies d’assistance."
+ },
+ "vs/workbench/contrib/codeEditor/browser/dictation/editorDictation": {
+ "startDictation": "Démarrer la dictée dans l’éditeur",
+ "stopDictation": "Arrêter la dictée dans l’éditeur",
+ "stopDictationShort1": "Arrêter la dictée ({0})",
+ "stopDictationShort2": "Arrêter la dictée",
+ "voiceCategory": "Voix"
+ },
+ "vs/workbench/contrib/codeEditor/browser/diffEditorAccessibilityHelp": {
+ "msg1": "Vous êtes dans un éditeur de différences.",
+ "msg2": "Affichez la{0} suivante ou la différence de{1} précédente en mode de révision différentiel, qui est optimisée pour les lecteurs d’écran.",
+ "msg3": "Exécutez la commande Éditeur de différences : basculer vers le côté{0} basculer entre les éditeurs d’origine et modifiés.",
+ "msg4": "Pour contrôler les signaux d’accessibilité à lire, vous pouvez configurer les paramètres suivants : {0}.",
+ "msg5": "Le paramètre accessibility.verbosity.diffEditorActive contrôle si une annonce de l’éditeur de différences est effectuée lorsqu’il devient l’éditeur actif."
},
"vs/workbench/contrib/codeEditor/browser/diffEditorHelper": {
"hintTimeout": "L'algorithme diff a été arrêté tôt (au bout de {0} ms.)",
"hintWhitespace": "Afficher les différences d'espace blanc",
"removeTimeout": "Supprimer la limite"
},
+ "vs/workbench/contrib/codeEditor/browser/emptyTextEditorHint/emptyTextEditorHint": {
+ "defaultHintAriaLabelWithInlineChat": "Exécutez {0} pour poser une question, exécutez {1} pour sélectionner un langage et démarrer. Commencez à taper pour ignorer.",
+ "defaultHintAriaLabelWithoutInlineChat": "Exécutez {0} pour sélectionner un langage et démarrer. Commencez à taper pour ignorer.",
+ "disableEditorEmptyHint": "Désactiver l’indicateur d’éditeur vide",
+ "disableHint": " Activez/désactivez {0} dans les paramètres pour désactiver cet indicateur.",
+ "emptyTextEditorHintWithInlineChat": "[[Générer un code]] ({0}) ou [[sélectionner un langage]] ({1}). Commencez à taper pour ignorer, ou [[ne plus afficher]] ceci.",
+ "emptyTextEditorHintWithoutInlineChat": "[[Sélectionnez un langage]] ({0}) pour commencer. Commencez à taper pour ignorer, ou [[ne plus afficher]] ceci."
+ },
"vs/workbench/contrib/codeEditor/browser/find/simpleFindWidget": {
"ariaSearchNoInput": "Saisir l'entrée de recherche",
"ariaSearchNoResult": "{0} trouvé pour '{1}'",
@@ -4399,7 +7797,8 @@
"label.find": "Rechercher",
"label.nextMatchButton": "Correspondance suivante",
"label.previousMatchButton": "Correspondance précédente",
- "placeholder.find": "Rechercher (⇅ pour l’historique)"
+ "placeholder.find": "Rechercher",
+ "simpleFindWidget.sashBorder": "Couleur de la bordure à guillotine"
},
"vs/workbench/contrib/codeEditor/browser/inspectEditorTokens/inspectEditorTokens": {
"inspectEditorTokens": "Développeur : Inspecter les jetons et les étendues d'éditeur",
@@ -4409,7 +7808,76 @@
"workbench.action.inspectKeyMap": "Inspecter les mappages de touches",
"workbench.action.inspectKeyMapJSON": "Inspecter les mappages de touches (JSON)"
},
- "vs/workbench/contrib/codeEditor/browser/languageConfigurationExtensionPoint": {
+ "vs/workbench/contrib/codeEditor/browser/largeFileOptimizations": {
+ "largeFile": "{0} : la segmentation du texte en unités lexicales, l’enveloppement, le pliage, CodeLens, la mise en surbrillance des mots et le défilement épinglé ont été désactivés pour ce fichier volumineux afin de réduire l’utilisation de la mémoire et d’éviter tout blocage ou plantage.",
+ "removeOptimizations": "Activer les fonctionnalités de force",
+ "reopenFilePrompt": "Veuillez rouvrir le dossier pour que ce paramètre soit effectif."
+ },
+ "vs/workbench/contrib/codeEditor/browser/outline/documentSymbolsOutline": {
+ "document": "Documenter les symboles"
+ },
+ "vs/workbench/contrib/codeEditor/browser/outline/documentSymbolsTree": {
+ "1.problem": "1 problème dans cet élément",
+ "N.problem": "{0} problèmes dans cet élément",
+ "deep.problem": "Contient des éléments avec des problèmes",
+ "title.template": "{0} ({1})"
+ },
+ "vs/workbench/contrib/codeEditor/browser/quickaccess/gotoLineQuickAccess": {
+ "gotoLine": "Accéder à la ligne/colonne...",
+ "gotoLineQuickAccess": "Accéder à la ligne/colonne",
+ "gotoLineQuickAccessPlaceholder": "Tapez le numéro de ligne et la colonne (facultative) auxquelles accéder (par ex., 42:5 pour la ligne 42 et la colonne 5). Tapez :: pour aller à un décalage de caractère (par exemple ::1024 pour le caractère 1024 depuis le début du fichier). Utilisez des valeurs négatives pour naviguer en arrière.",
+ "gotoOffset": "Accéder au décalage...",
+ "gotoOffsetQuickAccess": "Accéder au décalage"
+ },
+ "vs/workbench/contrib/codeEditor/browser/quickaccess/gotoSymbolQuickAccess": {
+ "empty": "Aucune entrée correspondante",
+ "gotoSymbol": "Accéder au symbole dans l'éditeur...",
+ "gotoSymbolByCategoryQuickAccess": "Accéder au symbole dans l'éditeur par catégorie",
+ "gotoSymbolQuickAccess": "Accéder au symbole dans l'éditeur",
+ "gotoSymbolQuickAccessPlaceholder": "Tapez le nom d’un symbole auquel accéder.",
+ "miGotoSymbolInEditor": "Atteindre le &&symbole dans l'éditeur..."
+ },
+ "vs/workbench/contrib/codeEditor/browser/saveParticipants": {
+ "codeAction.apply": "Application de l'action de code '{0}'.",
+ "codeaction": "Correctifs rapides",
+ "codeaction.get2": "Obtention d’actions de code à partir de {0} ([configurer]({1})).",
+ "formatting2": "Exécution du formateur '{0}' ([configure]({1}))."
+ },
+ "vs/workbench/contrib/codeEditor/browser/toggleColumnSelection": {
+ "miColumnSelection": "Mode de &&sélection de colonne",
+ "toggleColumnSelection": "Activer/désactiver le mode de sélection de colonne"
+ },
+ "vs/workbench/contrib/codeEditor/browser/toggleMinimap": {
+ "miMinimap": "&&Minimap",
+ "toggleMinimap": "Activer/désactiver le minimap"
+ },
+ "vs/workbench/contrib/codeEditor/browser/toggleMultiCursorModifier": {
+ "miMultiCursorAlt": "Utiliser Alt+Clic pour l'option multicurseur",
+ "miMultiCursorCmd": "Utiliser Cmd+Clic pour l'option multicurseur",
+ "miMultiCursorCtrl": "Utiliser Ctrl+Clic pour l'option multicurseur",
+ "toggleLocation": "Changer le modificateur multicurseur"
+ },
+ "vs/workbench/contrib/codeEditor/browser/toggleOvertype": {
+ "mitoggleOvertypeInsertMode": "&&Activer/Désactiver le mode Overtype/Insert",
+ "toggleOvertypeInsertMode": "Activer/Désactiver le mode Overtype/Insert",
+ "toggleOvertypeMode.description": "Basculer entre le mode surtype et le mode Insertion"
+ },
+ "vs/workbench/contrib/codeEditor/browser/toggleRenderControlCharacter": {
+ "miToggleRenderControlCharacters": "Afficher les &&caractères de contrôle",
+ "toggleRenderControlCharacters": "Activer/désactiver les caractères de contrôle"
+ },
+ "vs/workbench/contrib/codeEditor/browser/toggleRenderWhitespace": {
+ "miToggleRenderWhitespace": "Afficher les espaces &&blancs",
+ "toggleRenderWhitespace": "Activer/désactiver Restituer l'espace"
+ },
+ "vs/workbench/contrib/codeEditor/browser/toggleWordWrap": {
+ "editorWordWrap": "Indique si l'éditeur utilise le retour automatique à la ligne.",
+ "miToggleWordWrap": "&&Retour automatique à la ligne",
+ "toggle.wordwrap": "Afficher : activer/désactiver le retour automatique à la ligne",
+ "unwrapMinified": "Désactiver le retour automatique à la ligne pour ce fichier",
+ "wrapMinified": "Activer le retour à la ligne pour ce fichier"
+ },
+ "vs/workbench/contrib/codeEditor/common/languageConfigurationExtensionPoint": {
"formatError": "{0} : format non valide, objet JSON attendu.",
"parseErrors": "Erreurs durant l'analyse de {0} : {1}",
"schema.autoCloseBefore": "Définit quels caractères doivent être après le curseur pour que la fermeture automatique de parenthèses ou de guillemets se produise lorsque vous utilisez le paramètre de fermeture automatique 'languageDefined'. Il s’agit généralement de l’ensemble des caractères qui ne peuvent pas commencer une expression.",
@@ -4418,9 +7886,9 @@
"schema.blockComment.begin": "Séquence de caractères au début d'un commentaire de bloc.",
"schema.blockComment.end": "Séquence de caractères à la fin d'un commentaire de bloc.",
"schema.blockComments": "Définit le marquage des commentaires de bloc.",
- "schema.brackets": "Définit les symboles de type crochet qui augmentent ou diminuent le retrait.",
+ "schema.brackets": "Définit les symboles de crochet qui augmentent ou diminuent la mise en retrait. Lorsque la colorisation des paires de crochets est activée et que {0} n’est pas définie, cela définit également les paires de crochets qui sont colorisées par leur niveau d’imbrication.",
"schema.closeBracket": "Séquence de chaînes ou de caractères de crochets fermants.",
- "schema.colorizedBracketPairs": "Définit les paires de crochets qui sont colorisées par leur niveau d’imbrication si la colorisation des paires de crochets est activée.",
+ "schema.colorizedBracketPairs": "Définit les paires de crochets qui sont colorisées par leur niveau d’imbrication si la colorisation des paires de crochets est activée. Tous les crochets inclus ici qui ne sont pas inclus dans {0} seront automatiquement inclus dans {0}.",
"schema.comments": "Définit les symboles de commentaire",
"schema.folding": "Paramètres de repliage du langage.",
"schema.folding.markers": "Les marqueurs de langage spécifiques de repliage tels que '#region' et '#endregion'. Les regex de début et la fin seront testés sur le contenu de toutes les lignes et doivent être conçues de manière efficace.",
@@ -4444,8 +7912,10 @@
"schema.indentationRules.unIndentedLinePattern.errorMessage": "Doit valider l'expression régulière `/^([gimuy]+)$/`.",
"schema.indentationRules.unIndentedLinePattern.flags": "Indicateurs RegExp pour unIndentedLinePattern.",
"schema.indentationRules.unIndentedLinePattern.pattern": "Modèle RegExp pour unIndentedLinePattern.",
- "schema.lineComment": "Séquence de caractères au début d'un commentaire de ligne.",
- "schema.onEnterRules": "Règles de la langue à évaluer quand vous appuyez sur Entrée.",
+ "schema.lineComment.comment": "Séquence de caractères au début d'un commentaire de ligne.",
+ "schema.lineComment.noIndent": "Indique si le jeton de commentaire ne doit pas être indenté et placé dans la première colonne. La valeur par défaut est false.",
+ "schema.lineComment.object": "Configuration des commentaires en ligne.",
+ "schema.onEnterRules": "Règles du langage à évaluer quand vous appuyez sur Entrée.",
"schema.onEnterRules.action": "Action à exécuter.",
"schema.onEnterRules.action.appendText": "Décrit le texte à ajouter après la nouvelle ligne et après la mise en retrait.",
"schema.onEnterRules.action.indent": "Décrire la procédure à suivre pour la mise en retrait",
@@ -4473,113 +7943,36 @@
"schema.wordPattern.flags.errorMessage": "Doit valider l'expression régulière `/^([gimuy]+)$/`.",
"schema.wordPattern.pattern": "L'expression régulière utilisée pour la recherche"
},
- "vs/workbench/contrib/codeEditor/browser/largeFileOptimizations": {
- "largeFile": "{0} : la tokenisation, l'entourage et le repliage ont été désactivés pour ce gros fichier afin de réduire l’utilisation de la mémoire et éviter de se figer ou de crasher.",
- "removeOptimizations": "Activer les fonctionnalités de force",
- "reopenFilePrompt": "Veuillez rouvrir le dossier pour que ce paramètre soit effectif."
+ "vs/workbench/contrib/codeEditor/electron-browser/selectionClipboard": {
+ "actions.pasteSelectionClipboard": "Coller la sélection du Presse-papiers"
},
- "vs/workbench/contrib/codeEditor/browser/outline/documentSymbolsOutline": {
- "document": "Documenter les symboles"
+ "vs/workbench/contrib/codeEditor/electron-browser/startDebugTextMate": {
+ "startDebugTextMate": "Démarrer la journalisation de la grammaire de la syntaxe TextMate"
},
- "vs/workbench/contrib/codeEditor/browser/outline/documentSymbolsTree": {
- "1.problem": "1 problème dans cet élément",
- "Array": "tableau",
- "Boolean": "booléen",
- "Class": "classe",
- "Constant": "constante",
- "Constructor": "constructeur",
- "Enum": "énumération",
- "EnumMember": "membre d'énumération",
- "Event": "événement",
- "Field": "champ",
- "File": "fichier",
- "Function": "fonction",
- "Interface": "interface",
- "Key": "clé",
- "Method": "méthode",
- "Module": "module",
- "N.problem": "{0} problèmes dans cet élément",
- "Namespace": "espace de noms",
- "Null": "NULL",
- "Number": "nombre",
- "Object": "objet",
- "Operator": "opérateur",
- "Package": "package",
- "Property": "propriété",
- "String": "chaîne",
- "Struct": "struct",
- "TypeParameter": "paramètre de type",
- "Variable": "variable",
- "deep.problem": "Contient des éléments avec des problèmes",
- "title.template": "{0} ({1})"
- },
- "vs/workbench/contrib/codeEditor/browser/quickaccess/gotoLineQuickAccess": {
- "gotoLine": "Accéder à la ligne/colonne...",
- "gotoLineQuickAccess": "Accéder à la ligne/colonne",
- "gotoLineQuickAccessPlaceholder": "Tapez le numéro de ligne et la colonne (facultative) auxquelles accéder (par ex., 42:5 pour la ligne 42 et la colonne 5)."
- },
- "vs/workbench/contrib/codeEditor/browser/quickaccess/gotoSymbolQuickAccess": {
- "empty": "Aucune entrée correspondante",
- "gotoSymbol": "Accéder au symbole dans l'éditeur...",
- "gotoSymbolByCategoryQuickAccess": "Accéder au symbole dans l'éditeur par catégorie",
- "gotoSymbolQuickAccess": "Accéder au symbole dans l'éditeur",
- "gotoSymbolQuickAccessPlaceholder": "Tapez le nom d’un symbole auquel accéder.",
- "miGotoSymbolInEditor": "Atteindre le &&symbole dans l'éditeur..."
- },
- "vs/workbench/contrib/codeEditor/browser/saveParticipants": {
- "codeAction.apply": "Application de l'action de code '{0}'.",
- "codeaction": "Correctifs rapides",
- "codeaction.get2": "Obtention d’actions de code à partir de «{0}» ([configure]({1})).",
- "formatting2": "Exécution du formateur '{0}' ([configure]({1}))."
- },
- "vs/workbench/contrib/codeEditor/browser/toggleColumnSelection": {
- "miColumnSelection": "Mode de &&sélection de colonne",
- "toggleColumnSelection": "Activer/désactiver le mode de sélection de colonne"
- },
- "vs/workbench/contrib/codeEditor/browser/toggleMinimap": {
- "miMinimap": "&&Minimap",
- "toggleMinimap": "Activer/désactiver le minimap"
- },
- "vs/workbench/contrib/codeEditor/browser/toggleMultiCursorModifier": {
- "miMultiCursorAlt": "Utiliser Alt+Clic pour l'option multicurseur",
- "miMultiCursorCmd": "Utiliser Cmd+Clic pour l'option multicurseur",
- "miMultiCursorCtrl": "Utiliser Ctrl+Clic pour l'option multicurseur",
- "toggleLocation": "Changer le modificateur multicurseur"
- },
- "vs/workbench/contrib/codeEditor/browser/toggleRenderControlCharacter": {
- "miToggleRenderControlCharacters": "Afficher les &&caractères de contrôle",
- "toggleRenderControlCharacters": "Activer/désactiver les caractères de contrôle"
- },
- "vs/workbench/contrib/codeEditor/browser/toggleRenderWhitespace": {
- "miToggleRenderWhitespace": "Afficher les espaces &&blancs",
- "toggleRenderWhitespace": "Activer/désactiver Restituer l'espace"
- },
- "vs/workbench/contrib/codeEditor/browser/toggleWordWrap": {
- "editorWordWrap": "Indique si l'éditeur utilise le retour automatique à la ligne.",
- "miToggleWordWrap": "&&Retour automatique à la ligne",
- "toggle.wordwrap": "Afficher : activer/désactiver le retour automatique à la ligne",
- "unwrapMinified": "Désactiver le retour automatique à la ligne pour ce fichier",
- "wrapMinified": "Activer le retour à la ligne pour ce fichier"
- },
- "vs/workbench/contrib/codeEditor/browser/untitledTextEditorHint": {
- "message": "[[Select a language]] ou [[open a different editor]] pour commencer.\r\nCommencez à taper pour ignorer ou [[ne pas afficher]] à nouveau."
- },
- "vs/workbench/contrib/codeEditor/electron-sandbox/selectionClipboard": {
- "actions.pasteSelectionClipboard": "Coller la sélection du Presse-papiers"
- },
- "vs/workbench/contrib/codeEditor/electron-sandbox/startDebugTextMate": {
- "startDebugTextMate": "Démarrer la journalisation de la grammaire de la syntaxe TextMate"
+ "vs/workbench/contrib/commands/common/commands.contribution": {
+ "runCommands": "Commandes d'exécution",
+ "runCommands.commands": "Commandes à exécuter",
+ "runCommands.description": "Exécuter plusieurs commandes",
+ "runCommands.invalidArgs": "'runCommands' a reçu un argument de type incorrect. Vérifiez l’argument passé à la commande.",
+ "runCommands.noCommandsToRun": "'runCommands' n’a pas reçu de commandes à exécuter. Avez-vous oublié de passer des commandes dans l’argument 'runCommands' ?"
},
"vs/workbench/contrib/comments/browser/commentColors": {
+ "commentReplyInputBackground": "Couleur d’arrière-plan de la zone d’entrée de réponse au commentaire.",
"commentThreadActiveRangeBackground": "Couleur d’arrière-plan pour la plage de commentaires actuellement sélectionnée ou survolée.",
- "commentThreadActiveRangeBorder": "Couleur de la bordure pour la plage de commentaires actuellement sélectionnée ou survolée.",
"commentThreadRangeBackground": "Couleur d’arrière-plan pour les plages de commentaires.",
- "commentThreadRangeBorder": "Couleur de la bordure des plages de commentaires.",
"resolvedCommentBorder": "Couleur des bordures et de la flèche pour les commentaires résolus.",
- "unresolvedCommentBorder": "Couleur des bordures et de la flèche pour les commentaires non résolus."
+ "resolvedCommentIcon": "Couleur d’icône des commentaires résolus.",
+ "unresolvedCommentBorder": "Couleur des bordures et de la flèche pour les commentaires non résolus.",
+ "unresolvedCommentIcon": "Couleur d’icône des commentaires non résolus."
},
"vs/workbench/contrib/comments/browser/commentGlyphWidget": {
- "editorGutterCommentRangeForeground": "Couleur de décoration de gouttière d'éditeur pour commenter des plages."
+ "editorGutterCommentDraftGlyphForeground": "Couleur de la décoration de la gouttière de l’éditeur pour les glyphes de commentaire des fils de commentaires avec des commentaires provisoires.",
+ "editorGutterCommentGlyphForeground": "Couleur de décoration de gouttière d’éditeur pour commenter des glyphes.",
+ "editorGutterCommentRangeForeground": "Couleur de décoration de la reliure de l’éditeur pour les plages de commentaires. Cette couleur doit être opaque.",
+ "editorGutterCommentUnresolvedGlyphForeground": "Couleur d’ornement de reliure de l’éditeur pour les glyphes de commentaire pour les threads de commentaires non résolus.",
+ "editorOverviewRuler.commentDraftForeground": "Couleur d’ornement de la règle d’aperçu de l’Éditeur pour les fils de commentaires avec commentaires en brouillon. Cette couleur doit être opaque.",
+ "editorOverviewRuler.commentForeground": "Couleur d’ornement de la règle d’aperçu de l’éditeur pour les commentaires résolus. Cette couleur doit être opaque.",
+ "editorOverviewRuler.commentUnresolvedForeground": "Couleur d’ornement de la règle d’aperçu de l’éditeur pour les commentaires non résolus. Cette couleur doit être opaque."
},
"vs/workbench/contrib/comments/browser/commentNode": {
"commentAddReactionDefaultError": "La suppression de la réaction de commentaire a échoué",
@@ -4594,54 +7987,157 @@
"newComment": "Taper un nouveau commentaire",
"reply": "Répondre ..."
},
- "vs/workbench/contrib/comments/browser/commentThreadBody": {
- "commentThreadAria": "Thread de commentaires avec {0} commentaires. {1}.",
- "commentThreadAria.withRange": "Thread de commentaires avec {0} commentaires sur les lignes {1} via {2}. {3}."
- },
- "vs/workbench/contrib/comments/browser/commentThreadHeader": {
- "collapseIcon": "Icône permettant de réduire un commentaire de revue.",
- "label.collapse": "Réduire",
- "startThread": "Démarrer la discussion"
- },
"vs/workbench/contrib/comments/browser/comments.contribution": {
+ "collapseAll": "Réduire tout",
+ "collapseOnResolve": "Contrôle si le thread de commentaires doit être réduit une fois le thread résolu.",
+ "comments.maxHeight": "Contrôle si le widget de commentaires défile ou se développe.",
"comments.openPanel.deprecated": "Ce paramètre est déprécié en faveur de 'comments.openView'.",
"comments.openView": "Contrôle quand l’affichage des composants doit s'ouvrir.",
"comments.openView.file": "L’affichage des commentaires s’ouvre lorsqu’un fichier contenant des commentaires est actif.",
"comments.openView.firstFile": "Si l’affichage des commentaires n’a pas encore été ouvert au cours de cette session, il s’ouvre la première fois pendant une session qu’un fichier contenant des commentaires est actif.",
+ "comments.openView.firstFileUnresolved": "Si la vue des commentaires n'a pas encore été ouverte au cours de cette session et que le commentaire n'est pas résolu, elle s'ouvre pour la première fois pendant une session où un fichier contenant des commentaires est actif.",
"comments.openView.never": "L’affichage des commentaires ne sera jamais ouvert.",
+ "comments.visible": "Contrôle la visibilité de la barre de commentaires et des threads de commentaires dans les éditeurs qui ont des plages de commentaires et des commentaires. Les commentaires sont toujours accessibles via l’affichage Commentaires et les commentaires seront activés/désactivés de la même manière que l’exécution de la commande « Commentaires : activer/désactiver le commentaire de l’éditeur » active/désactive les commentaires.",
"commentsConfigurationTitle": "Commentaires",
+ "confirmOnCollapse": "Contrôle si une boîte de dialogue de confirmation est affichée lors de la réduction d’un thread de commentaires.",
+ "confirmOnCollapse.never": "Ne jamais afficher de boîte de dialogue de confirmation lors de la réduction d’un thread de commentaires.",
+ "confirmOnCollapse.whenHasUnsubmittedComments": "Afficher une boîte de dialogue de confirmation lors de la réduction d’un thread de commentaires avec des commentaires non approuvés.",
+ "expandAll": "Tout développer",
"openComments": "Contrôle quand le panneau des composants doit s'ouvrir.",
+ "reply": "Répondre",
+ "totalUnresolvedComments": "{0} commentaires non résolus",
"useRelativeTime": "Détermine si l’heure relative sera utilisée dans les horodatages des commentaires (par exemple, « il y a 1 jour »)."
},
+ "vs/workbench/contrib/comments/browser/commentsAccessibility": {
+ "addCommentNoKb": "- Ajouter un commentaire sur la sélection actuelle{0}.",
+ "commentCommands": "Voici quelques commandes de commentaire utiles :",
+ "escape": "- Ignorer le commentaire (Échap)",
+ "intro": "L'éditeur contient une ou plusieurs plages pouvant être commentées. Voici quelques commandes utiles :",
+ "introWidget": "Ce widget contient une zone de texte, pour la composition des nouveaux commentaires et des actions, qui peut faire l’objet d’un onglet une fois que le mode focus de déplacement des onglets a été activé avec la commande Toggle Tab Key Moves Focus{0}.",
+ "next": "- Accéder à la plage de commentaires suivante{0}.",
+ "nextCommentThreadKb": "- Aller au thread de commentaires suivant{0}.",
+ "nextCommentedRangeKb": "- Accéder à la plage commentée suivante{0}.",
+ "previous": "- Accéder à la plage de commentaires précédente{0}.",
+ "previousCommentThreadKb": "- Accéder au thread de commentaires précédent{0}.",
+ "previousCommentedRangeKb": "- Accéder à la plage de commentaires précédente{0}.",
+ "submitComment": "- Soumettre un commentaire{0}."
+ },
+ "vs/workbench/contrib/comments/browser/commentsController": {
+ "commentRange": "Ligne {0}",
+ "commentRangeStart": "Lignes {0} à {1}",
+ "comments.addCommand.error": "Le curseur doit être dans une plage de commentaires pour ajouter un commentaire.",
+ "comments.addFileCommentCommand.error": "Les commentaires de fichier ne sont pas autorisés sur ce fichier.",
+ "hasCommentRanges": "L'éditeur a des plages de commentaires.",
+ "hasCommentRangesKb": "L'éditeur a des plages de commentaires. Pour plus d'informations, exécutez la commande Ouvrir l'aide sur l'accessibilité ({0}).",
+ "hasCommentRangesNoKb": "L'éditeur a des plages de commentaires. Pour plus d'informations, exécutez la commande Ouvrir l'aide sur l'accessibilité, qui ne peut pas être déclenchée via une combinaison de touches pour l'instant.",
+ "pickCommentService": "Sélectionner un fournisseur de commentaires"
+ },
"vs/workbench/contrib/comments/browser/commentsEditorContribution": {
+ "comments.NextCommentedRange": "Accéder à la plage commentée suivante",
"comments.addCommand": "Ajouter un commentaire sur la sélection actuelle",
+ "comments.collapseAll": "Réduire tous les commentaires",
+ "comments.expandAll": "Développer tous les commentaires",
+ "comments.expandUnresolved": "Développer les commentaires non résolus",
+ "comments.focusCommand.error": "Le curseur doit se trouver sur une ligne avec un commentaire pour se concentrer sur le commentaire",
+ "comments.focusCommentOnCurrentLine": "Concentrer le commentaire sur la ligne active",
+ "comments.nextCommentingRange": "Accéder à la plage de commentaires suivante",
+ "comments.previousCommentedRange": "Accéder à la plage de commentaires précédente",
+ "comments.previousCommentingRange": "Accéder à la plage de commentaires précédente",
"comments.toggleCommenting": "Activer/désactiver les commentaires de l’éditeur",
- "hasCommentingProvider": "Indique si l’espace de travail ouvert a des commentaires ou des plages de commentaires.",
- "hasCommentingRange": "Indique si la position au curseur actif a une plage de commentaires",
- "nextCommentThreadAction": "Aller au thread de commentaires suivant",
- "pickCommentService": "Sélectionner un fournisseur de commentaires",
- "previousCommentThreadAction": "Accéder au thread de commentaire précédent"
+ "commentsCategory": "Commentaires"
+ },
+ "vs/workbench/contrib/comments/browser/commentsModel": {
+ "noComments": "Il n'existe pas encore de commentaires dans cet espace de travail."
},
"vs/workbench/contrib/comments/browser/commentsTreeViewer": {
"commentCount": "1 commentaire",
"commentLine": "[Ln {0}]",
"commentRange": "[Ln {0}-{1}]",
- "commentsCount": "{0} commentaires",
+ "comments.view.title": "Commentaires",
+ "commentsCountReplies": "{0} réponses",
+ "commentsCountReply": "1 réponse",
"image": "Image",
"imageWithLabel": "Image : {0}",
- "lastReplyFrom": "Dernière réponse de {0}"
+ "lastReplyFrom": "Dernière réponse de {0}",
+ "outdated": "Obsolète"
},
"vs/workbench/contrib/comments/browser/commentsView": {
- "collapseAll": "Réduire tout",
- "resourceWithCommentLabel": "Commentaire de ${0} à la ligne {1}, colonne {2} dans {3}, source : {4}",
+ "accessibleViewHint": "\r\nInspecter ceci dans l’affichage accessible ({0}).",
+ "acessibleViewHintNoKbOpen": "\r\nInspectez ceci dans l’affichage accessible via la commande Open Accessible View qui ne peut pas être déclenchée via une combinaison de touches pour l’instant.",
+ "comments.filter.ariaLabel": "Filtrer des commentaires",
+ "comments.filter.placeholder": "Filtre (exemple : texte, auteur)",
+ "fileCommentLabel": "en {0}",
+ "multiLineCommentLabel": "de la {0} de ligne au {1} de ligne dans {2}",
+ "oneLineCommentLabel": "{1} de colonne {0} à la ligne dans {2}",
+ "replyCount": " {0} réponses,",
+ "resourceWithCommentLabel": "{0} : {1}\r\n{2}\r\n{3}\r\n{4}",
+ "resourceWithCommentLabelOutdated": "Obsolète à partir de {0} : {1}\r\n{2}\r\n{3}\r\n{4}",
"resourceWithCommentThreadsLabel": "Commentaires dans {0}, chemin complet : {1}",
- "rootCommentsLabel": "Commentaires pour l'espace de travail actuel"
+ "resourceWithRepliesLabel": "{0} {1}",
+ "rootCommentsLabel": "Commentaires pour l'espace de travail actuel",
+ "showing filtered results": "Affichage de {0} sur {1}"
+ },
+ "vs/workbench/contrib/comments/browser/commentsViewActions": {
+ "comment sorts": "Trier par",
+ "comments": "Commentaires",
+ "commentsClearFilterText": "Effacer le filtre du texte",
+ "focusCommentsFilter": "Filtre de commentaires sur le focus",
+ "focusCommentsList": "Focus sur l’affichage des commentaires",
+ "resolved": "Afficher les éléments résolus",
+ "sorting by position in file": "Position dans le fichier",
+ "sorting by updated at": "Heure de mise à jour",
+ "toggle resolved": "Afficher les éléments résolus",
+ "toggle sorting by resource": "Position dans le fichier",
+ "toggle sorting by updated at": "Heure de mise à jour",
+ "toggle unresolved": "Afficher les éléments non résolus",
+ "unresolved": "Afficher les éléments non résolus"
+ },
+ "vs/workbench/contrib/comments/browser/commentThreadBody": {
+ "commentThreadAria": "Thread de commentaires avec {0} commentaires. {1}.",
+ "commentThreadAria.document": "Thread de commentaires avec {0} commentaires sur l’ensemble du document. {1}.",
+ "commentThreadAria.withRange": "Thread de commentaires avec {0} commentaires sur les lignes {1} via {2}. {3}."
+ },
+ "vs/workbench/contrib/comments/browser/commentThreadHeader": {
+ "collapseIcon": "Icône permettant de réduire un commentaire de revue.",
+ "label.collapse": "Réduire",
+ "startThread": "Démarrer la discussion"
+ },
+ "vs/workbench/contrib/comments/browser/commentThreadWidget": {
+ "commentLabel": "Commentaire",
+ "commentLabelWithKeybinding": "{0}, utiliser ({1}) pour l'aide sur l'accessibilité",
+ "commentLabelWithKeybindingNoKeybinding": "{0}, exécuter la commande Ouvrir l'aide sur l'accessibilité, qui ne peut pas être déclenchée via une combinaison de touches pour l'instant."
+ },
+ "vs/workbench/contrib/comments/browser/commentThreadZoneWidget": {
+ "confirmCollapse": "Réduire ce fil de commentaires entraînera l’abandon des commentaires non envoyés. Voulez-vous vraiment ignorer ces commentaires ?",
+ "discard": "Abandonner",
+ "neverAskAgain": "Ne plus me le demander"
},
"vs/workbench/contrib/comments/browser/reactionsAction": {
+ "comment.reactionLabelMany": "Réactions {0}{1} avec {2}",
+ "comment.reactionLabelNone": "Réaction {0}{1}",
+ "comment.reactionLabelOne": "{0}1 réaction avec {1}",
+ "comment.reactionLessThanTen": "{0}{1} a réagi avec {2}",
+ "comment.reactionMoreThanTen": "{0}{1} et {2} autres ont réagi avec {3}",
+ "comment.toggleableReaction": "Activez/désactivez la réaction, ",
"pickReactions": "Choisir des réactions..."
},
- "vs/workbench/contrib/comments/common/commentModel": {
- "noComments": "Il n'existe pas encore de commentaires dans cet espace de travail."
+ "vs/workbench/contrib/comments/common/commentContextKeys": {
+ "comment": "Valeur de contexte du commentaire",
+ "commentController": "ID de contrôleur de commentaire associé à un thread de commentaires",
+ "commentFocused": "Définir quand le commentaire a le focus",
+ "commentIsEmpty": "Définir quand le commentaire n’a pas d’entrée",
+ "commentThread": "Valeur de contexte du thread de commentaire",
+ "commentThreadIsEmpty": "Définir lorsque le thread de commentaires n’a pas de commentaires",
+ "commentingEnabled": "Indique si la fonctionnalité de commentaire est activée",
+ "editorHasCommentingRange": "Indique si l'éditeur actif a une plage de commentaires",
+ "hasComment": "Indique si la position au curseur actif a un commentaire",
+ "hasCommentingProvider": "Indique si l’espace de travail ouvert a des commentaires ou des plages de commentaires.",
+ "hasCommentingRange": "Indique si la position au curseur actif a une plage de commentaires"
+ },
+ "vs/workbench/contrib/customEditor/browser/customEditorInput": {
+ "editorCannotMove": "Impossible de déplacer '{0}' : l’éditeur contient des modifications qui ne peuvent être enregistrées que dans sa fenêtre active.",
+ "editorUnsupportedInWindow": "Impossible d’ouvrir l’éditeur dans cette fenêtre, car il contient des modifications qui ne peuvent être enregistrées que dans la fenêtre d’origine.",
+ "reopenInOriginalWindow": "Ouvrir dans la fenêtre d’origine"
},
"vs/workbench/contrib/customEditor/common/contributedCustomEditors": {
"builtinProviderDisplayName": "Intégré"
@@ -4649,6 +8145,9 @@
"vs/workbench/contrib/customEditor/common/customEditor": {
"context.customEditor": "Désigne le viewType de l'éditeur personnalisé actif."
},
+ "vs/workbench/contrib/customEditor/common/customTextEditorModel": {
+ "vetoExtHostRestart": "Un éditeur de texte fourni par l’extension pour '{0}' est toujours ouvert et se fermerait dans le cas contraire."
+ },
"vs/workbench/contrib/customEditor/common/extensionPoint": {
"contributes.customEditors": "Éditeurs personnalisés faisant l'objet d'une contribution.",
"contributes.displayName": "Nom lisible par l'homme de l'éditeur personnalisé. Ceci s'affiche quand les utilisateurs sélectionnent l'éditeur à utiliser.",
@@ -4657,7 +8156,11 @@
"contributes.priority.option": "L'éditeur n'est pas automatiquement utilisé quand l'utilisateur ouvre une ressource, mais l'utilisateur peut passer à l'éditeur à l'aide de la commande Rouvrir avec.",
"contributes.selector": "Ensemble de modèles Glob pour lesquels l'éditeur personnalisé est activé.",
"contributes.selector.filenamePattern": "Modèle Glob pour lequel l'éditeur personnalisé est activé.",
- "contributes.viewType": "Identificateur de l'éditeur personnalisé. Il doit être unique parmi tous les éditeurs personnalisés, nous vous recommandons donc d'inclure votre ID d'extension dans le cadre de 'viewType'. Le 'viewType' est utilisé durant l'inscription des éditeurs personnalisés à l'aide de 'vscode.registerCustomEditorProvider' et dans l'[événement d'activation](https://code.visualstudio.com/api/references/activation-events) 'onCustomEditor:${id}'."
+ "contributes.viewType": "Identificateur de l'éditeur personnalisé. Il doit être unique parmi tous les éditeurs personnalisés, nous vous recommandons donc d'inclure votre ID d'extension dans le cadre de 'viewType'. Le 'viewType' est utilisé durant l'inscription des éditeurs personnalisés à l'aide de 'vscode.registerCustomEditorProvider' et dans l'[événement d'activation](https://code.visualstudio.com/api/references/activation-events) 'onCustomEditor:${id}'.",
+ "customEditors": "Éditeurs personnalisés",
+ "customEditors filenamePattern": "Modèle de nom de fichier",
+ "customEditors priority": "Priorité",
+ "customEditors view type": "Type de vue"
},
"vs/workbench/contrib/debug/browser/baseDebugView": {
"debug.lazyButton.tooltip": "Cliquer pour développer"
@@ -4666,17 +8169,18 @@
"addBreakpoint": "Ajouter un point d'arrêt",
"addConditionalBreakpoint": "Ajouter un point d'arrêt conditionnel...",
"addLogPoint": "Ajouter un point de journalisation...",
+ "addTriggeredBreakpoint": "Ajouter un point d’arrêt déclenché...",
"breakpoint": "Point d'arrêt",
"breakpointHasConditionDisabled": "Ce {0} a un {1} qui sera perdu en cas de suppression. Activez le {0} à la place.",
"breakpointHasConditionEnabled": "Ce {0} a un {1} qui sera perdu en cas de suppression. Désactivez le {0} à la place.",
- "cancel": "Annuler",
+ "breakpointHelper": "Cliquez pour ajouter un point d’arrêt",
"condition": "condition",
"debugIcon.breakpointCurrentStackframeForeground": "Couleur d'icône du cadre actuel de la pile de points d'arrêt.",
"debugIcon.breakpointDisabledForeground": "Couleur d'icône des points d'arrêt désactivés.",
"debugIcon.breakpointForeground": "Couleur d'icône des points d'arrêt.",
"debugIcon.breakpointStackframeForeground": "Couleur d'icône de tous les cadres de pile de points d'arrêt.",
"debugIcon.breakpointUnverifiedForeground": "Couleur d'icône des points d'arrêt non vérifiés.",
- "disable": "Désactiver",
+ "disable": "&&Désactiver",
"disableBreakpoint": "Désactiver {0}",
"disableBreakpointOnLine": "Désactiver le point d'arrêt de la ligne",
"disableInlineColumnBreakpoint": "Désactiver le point d’arrêt Inline sur la colonne {0}",
@@ -4685,7 +8189,7 @@
"editBreakpoints": "Modifier les points d'arrêt",
"editInlineBreakpointOnColumn": "Modifier le point d’arrêt Inline sur la colonne {0}",
"editLineBreakpoint": "Modifier le point d'arrêt de la ligne",
- "enable": "Activer",
+ "enable": "&&Activer",
"enableBreakpoint": "Activer {0}",
"enableBreakpointOnLine": "Activer le point d'arrêt de la ligne",
"enableBreakpoints": "Activer le point d’arrêt Inline sur la colonne {0}",
@@ -4696,39 +8200,44 @@
"removeBreakpoints": "Supprimer les points d'arrêt",
"removeInlineBreakpointOnColumn": "Supprimer le point d’arrêt Inline sur la colonne {0}",
"removeLineBreakpoint": "Supprimer le point d'arrêt de la ligne",
- "removeLogPoint": "Supprimer {0}",
+ "removeLogPoint": "&&Supprimer {0}",
"runToLine": "Exécuter à la ligne"
},
- "vs/workbench/contrib/debug/browser/breakpointWidget": {
- "breakpointType": "Type de point d'arrêt",
- "breakpointWidgetExpressionPlaceholder": "Arrêt quand l'expression prend la valeur true. 'Entrée' pour accepter ou 'Échap' pour annuler.",
- "breakpointWidgetHitCountPlaceholder": "Arrêt quand le nombre d'accès est atteint. 'Entrée' pour accepter ou 'Échap' pour annuler.",
- "breakpointWidgetLogMessagePlaceholder": "Message à loguer lorsque le point d’arrêt est atteint. Les expressions entre {} sont interpolées. 'Entrée' pour accepter,'Echap' pour annuler.",
- "expression": "Expression",
- "hitCount": "Nombre d'accès",
- "logMessage": "Message du journal"
- },
"vs/workbench/contrib/debug/browser/breakpointsView": {
"access": "Accès",
"activateBreakpoints": "Activer/désactiver les points d'arrêt",
+ "addDataBreakpointOnAddress": "Ajouter un point d’arrêt sur variable à l’adresse",
"addFunctionBreakpoint": "Ajouter un point d'arrêt sur fonction",
"breakpoint": "Point d'arrêt",
"breakpointUnsupported": "Les points d'arrêt de ce type ne sont pas pris en charge par le débogueur",
"breakpoints": "Points d'arrêt",
+ "dataBreakPointExpresionAriaLabel": "Tapez l’expression. Le point d’arrêt sur les données entraîne un arrêt d’exécution quand l’expression a la valeur true",
+ "dataBreakPointHitCountAriaLabel": "Tapez le nombre d’accès. Le point d’arrêt sur les données entraîne un arrêt d’exécution quand le nombre d’accès est atteint.",
"dataBreakpoint": "Point d'arrêt des données",
+ "dataBreakpointAccessType": "Sélectionner le type d’accès à surveiller",
+ "dataBreakpointAddrFormat": "L’adresse doit être une plage de nombres au format « [Début] - [Fin] » ou « [Début] + [Octets] »",
+ "dataBreakpointAddrStartEnd": "Le nombre doit être un entier décimal ou une valeur hexadécimale commençant par « 0x », obtenu {0}",
+ "dataBreakpointError": "Échec de la définition du point d’arrêt des données à {0}: {1}",
+ "dataBreakpointExpressionPlaceholder": "Arrêter quand l'expression a la valeur true",
+ "dataBreakpointHitCountPlaceholder": "Arrêter quand le nombre d'accès est atteint",
+ "dataBreakpointMemoryRangePlaceholder": "Plage absolue (0x1234 - 0x1300) ou plage d’octets après une adresse (0x1234 + 0xff)",
+ "dataBreakpointMemoryRangePrompt": "Entrez une plage de mémoire dans laquelle effectuer un arrêt",
"dataBreakpointUnsupported": "Les points d'interruption de données ne sont pas pris en charge par ce type de débogage",
"dataBreakpointsNotSupported": "Les points d'interruption de données ne sont pas pris en charge par ce type de débogage",
+ "debug.decimal.address": "Adresse décimale : {0}",
"disableAllBreakpoints": "Désactiver tous les points d'arrêt",
"disabledBreakpoint": "Point d'arrêt désactivé",
"disabledLogpoint": "Point de journalisation désactivé",
- "editBreakpoint": "Modifier le point d'arrêt sur fonction...",
+ "editBreakpoint": "Modifier la condition de fonction...",
"editCondition": "Modifier la condition...",
+ "editDataBreakpointOnAddress": "Modifier l’adresse...",
"editHitCount": "Modifier le nombre d'accès...",
+ "editMode": "Mode édition...",
"enableAllBreakpoints": "Activer tous les points d'arrêt",
"exceptionBreakpointAriaLabel": "Taper la condition de point d'arrêt d'exception",
"exceptionBreakpointPlaceholder": "Arrêter quand l'expression a la valeur true",
- "expression": "Condition d'expression : {0}",
- "expressionAndHitCount": "Expression : {0} | Nombre d'accès : {1}",
+ "expression": "Condition : {0}",
+ "expressionAndHitCount": "Condition : {0} | Nombre d'accès : {1}",
"expressionCondition": "Condition d'expression : {0}",
"functionBreakPointExpresionAriaLabel": "Tapez l'expression. Le point d'arrêt sur fonction entraîne un arrêt d'exécution quand l'expression a la valeur true",
"functionBreakPointHitCountAriaLabel": "Tapez le nombre d'accès. Le point d'arrêt sur fonction entraîne un arrêt d'exécution quand le nombre d'accès est atteint.",
@@ -4744,6 +8253,7 @@
"instructionBreakpointAtAddress": "Point d’arrêt d’instruction à l’adresse {0}",
"instructionBreakpointUnsupported": "Les points d'arrêt d’instruction ne sont pas pris en charge par ce type de débogage",
"logMessage": "Message du journal : {0}",
+ "miDataBreakpoint": "&&Point d’arrêt des données...",
"miDisableAllBreakpoints": "Désacti&&ver tous les points d'arrêt",
"miEnableAllBreakpoints": "&&Activer tous les points d'arrêt",
"miFunctionBreakpoint": "Point d'arrêt sur &&fonction...",
@@ -4752,11 +8262,29 @@
"reapplyAllBreakpoints": "Réappliquer tous les points d'arrêt",
"removeAllBreakpoints": "Supprimer tous les points d'arrêt",
"removeBreakpoint": "Supprimer le point d'arrêt",
+ "selectBreakpointMode": "Sélectionner un mode de point d’arrêt",
+ "triggeredBy": "Atteint après le point d’arrêt : {0}",
"unverifiedBreakpoint": "Point d'arrêt non vérifié",
"unverifiedExceptionBreakpoint": "Point d’arrêt d’exception non vérifié",
"unverifiedLogpoint": "Point de journalisation non vérifié",
"write": "Écriture"
},
+ "vs/workbench/contrib/debug/browser/breakpointWidget": {
+ "bpMode": "Mode",
+ "breakpointType": "Type de point d'arrêt",
+ "breakpointWidgetExpressionPlaceholder": "Arrêt lorsque l’expression prend la valeur true. « {0} » à accepter, « {1} » pour annuler.",
+ "breakpointWidgetHitCountPlaceholder": "Arrêt quand le nombre d'accès est atteint. « {0} » pour accepter, « {1} » pour annuler.",
+ "breakpointWidgetLogMessagePlaceholder": "Message à loguer lorsque le point d’arrêt est atteint. Les expressions entre {} sont interpolées. « {0} » pour accepter, « {1} » pour annuler.",
+ "expression": "Expression",
+ "hitCount": "Nombre d'accès",
+ "logMessage": "Message du journal",
+ "noBpSource": "Impossible de charger la source.",
+ "noTriggerByBreakpoint": "Aucun(e)",
+ "ok": "OK",
+ "selectBreakpoint": "Sélectionner un point d’arrêt",
+ "triggerByLoading": "Chargement en cours...",
+ "triggeredBy": "Attendre un point d’arrêt"
+ },
"vs/workbench/contrib/debug/browser/callStackEditorContribution": {
"focusedStackFrameLineHighlight": "Couleur d'arrière-plan de la mise en surbrillance de la ligne au niveau du frame de pile qui a le focus.",
"topStackFrameLineHighlight": "Couleur d'arrière-plan de la mise en surbrillance de la ligne au niveau du frame de pile le plus haut."
@@ -4764,7 +8292,7 @@
"vs/workbench/contrib/debug/browser/callStackView": {
"callStackAriaLabel": "Déboguer la pile des appels",
"collapse": "Tout réduire",
- "loadAllStackFrames": "Charger tous les frames de pile",
+ "loadAllStackFrames": "Charger plus de frames de pile",
"paused": "Suspendu",
"pausedOn": "En pause sur {0}",
"restartFrame": "Redémarrer le frame",
@@ -4777,35 +8305,52 @@
"stackFrameAriaLabel": "Frame de pile {0}, ligne {1}, {2}",
"threadAriaLabel": "Thread {0} {1}"
},
+ "vs/workbench/contrib/debug/browser/callStackWidget": {
+ "failedToLoadFrames": "Échec du chargement des images de pile : {0}",
+ "goToFile": "Ouvrir un fichier",
+ "stackFrameLocation": "Ligne {0} Colonne {1}",
+ "stackTrace": "Rapport des appels de procédure",
+ "stackTraceLabel": "{0}, ligne {1} dans {2}"
+ },
"vs/workbench/contrib/debug/browser/debug.contribution": {
"SetNextStatement": "Définir la prochaine instruction",
- "addToWatchExpressions": "Ajouter à la fenêtre Espion",
"allowBreakpointsEverywhere": "Permettre de définir des points d’arrêt dans n’importe quel fichier.",
- "always": "Toujours afficher debug dans la barre d’état",
+ "always": "Toujours afficher l’élément de débogage dans la barre d’état",
"breakWhenValueChanges": "Arrêt en cas de changement de la valeur",
"breakWhenValueIsAccessed": "Arrêt en cas d'accès à la valeur",
"breakWhenValueIsRead": "Arrêt en cas de lecture de la valeur",
"breakpoints": "Points d'arrêt",
"callStack": "Pile des appels",
"cancel": "Annuler le débogage.",
- "copyAsExpression": "Copier en tant qu'Expression",
+ "closeReadonlyTabsOnEnd": "À la fin d’une session de débogage, tous les onglets en lecture seule associés à cette session seront fermés",
"copyStackTrace": "Copier la pile des appels",
"copyValue": "Copier la valeur",
- "debug.autoExpandLazyVariables": "Afficher automatiquement les valeurs des variables qui sont résolues de manière différée par le débogueur, telles que les getters.",
+ "debug.autoExpandLazyVariables": "Contrôle si les variables qui sont résolues tardivement, telles que les getters, sont automatiquement résolues et développées par le débogueur.",
+ "debug.autoExpandLazyVariables.auto": "En mode optimisé pour le lecteur d’écran, développez automatiquement les variables différées.",
+ "debug.autoExpandLazyVariables.off": "Ne développez jamais automatiquement les variables différées.",
+ "debug.autoExpandLazyVariables.on": "Développez toujours automatiquement les variables différées.",
"debug.confirmOnExit": "Détermine s'il est nécessaire de confirmer à la fermeture de la fenêtre s’il existe de sessions de débogage actives.",
"debug.confirmOnExit.always": "Toujours confirmer l’existence des sessions de débogage.",
"debug.confirmOnExit.never": "Ne jamais confirmer",
"debug.console.acceptSuggestionOnEnter": "Contrôle si les suggestions doivent être acceptées lors de la saisie dans la console de débogage. La saisie est également utilisée pour évaluer tout ce qui est tapé dans la console de débogage.",
- "debug.console.closeOnEnd": "Contrôle s'il faut fermer automatiquement la console de débogage à la fin de la session de débogage.",
- "debug.console.collapseIdenticalLines": "Contrôle si la console de débogage doit réduire les lignes identiques et afficher un certain nombre d'occurrences avec un badge.",
- "debug.console.fontFamily": "Contrôle la famille de polices dans la console de débogage.",
- "debug.console.fontSize": "Contrôle la taille de police en pixels dans la console de débogage.",
+ "debug.console.closeOnEnd": "Contrôle s’il faut fermer automatiquement la Console de débogage à la fin de la session de débogage.",
+ "debug.console.collapseIdenticalLines": "Contrôle si la Console de débogage doit réduire les lignes identiques et afficher un certain nombre d’occurrences avec un badge.",
+ "debug.console.fontFamily": "Contrôle la famille de polices dans la Console de débogage.",
+ "debug.console.fontSize": "Contrôle la taille de police en pixels dans la Console de débogage.",
"debug.console.historySuggestions": "Contrôle si la console de débogage doit suggérer une entrée déjà tapée.",
- "debug.console.lineHeight": "Contrôle la hauteur de ligne en pixels dans la console de débogage. Utilisez 0 pour calculer la hauteur de ligne à partir de la taille de police.",
- "debug.console.wordWrap": "Contrôle si le retour automatique à la ligne est activé dans la console de débogage.",
+ "debug.console.lineHeight": "Contrôle la hauteur de ligne en pixels dans la Console de débogage. Utilisez 0 pour calculer la hauteur de ligne à partir de la taille de police.",
+ "debug.console.maximumLines": "Contrôle le nombre maximal de lignes dans la console de débogage.",
+ "debug.console.wordWrap": "Contrôle si le retour automatique à la ligne est activé dans la Console de débogage.",
"debug.disassemblyView.showSourceCode": "Afficher le code source en mode Désassemblage",
+ "debug.enableStatusBarColor": "Couleur de la barre d’état lorsque le débogueur est actif.",
"debug.focusEditorOnBreak": "Contrôle si l’éditeur doit être ciblé lorsque le débogueur s’arrête.",
"debug.focusWindowOnBreak": "Contrôle si la fenêtre Workbench doit être ciblée lorsque le débogueur s'arrête.",
+ "debug.gutterMiddleClickAction.conditionalBreakpoint": "Ajouter un point d'arrêt conditionnel...",
+ "debug.gutterMiddleClickAction.logpoint": "Ajouter un point de journalisation.",
+ "debug.gutterMiddleClickAction.none": "N’effectuez aucune action.",
+ "debug.gutterMiddleClickAction.triggeredBreakpoint": "Ajouter un point d’arrêt déclenché.",
+ "debug.hideLauncherWhileDebugging": "Masquez le contrôle « Démarrer le débogage » dans la barre de titre de la vue « Exécuter et déboguer » lorsque le débogage est actif. Uniquement pertinent lorsque {0} n'est pas « docked ».",
+ "debug.hideSlowPreLaunchWarning": "Masquez l’avertissement affiché lorsqu’un « preLaunchTask » est en cours d’exécution depuis un certain temps.",
"debug.onTaskErrors": "Contrôle ce qu'il faut faire en cas d'erreurs après l'exécution d'une tâche de prélancement.",
"debug.saveBeforeStart": "Contrôle les éditeurs à enregistrer avant le démarrage d'une session de débogage.",
"debug.saveBeforeStart.allEditorsInActiveGroup": "Enregistre tous les éditeurs du groupe actif avant le démarrage d'une session de débogage.",
@@ -4815,10 +8360,14 @@
"debugAnyway": "Ignorer les erreurs de tâche et démarrer le débogage.",
"debugCategory": "Déboguer",
"debugConfigurationTitle": "Déboguer",
- "debugFocusConsole": "Mettre le focus sur la vue de la Console de débogage",
"debugPanel": "Console de débogage",
+ "debugToolBar.commandCenter": "(Expérimental) Afficher la barre d’outils de débogage dans le centre de commandes.",
+ "debugToolBar.docked": "Afficher la barre d’outils de débogage uniquement dans les vues de débogage.",
+ "debugToolBar.floating": "Afficher la barre d’outils de débogage dans toutes les vues.",
+ "debugToolBar.hidden": "Ne pas afficher la barre d’outils de débogage.",
"disassembly": "Code Machine",
"editWatchExpression": "Modifier l'expression",
+ "gutterMiddleClickAction": "Contrôle l’action à effectuer lorsque vous cliquez sur la marge de l’éditeur avec le bouton central de la souris.",
"inlineBreakpoint": "Point d'arrêt inline",
"inlineValues": "Afficher les valeurs des variables inline dans l'éditeur pendant le débogage.",
"inlineValues.focusNoScroll": "Affiche les valeurs des variables inline dans l'éditeur au moment du débogage, si le langage prend en charge les emplacements de valeurs inline.",
@@ -4840,10 +8389,11 @@
"miStepOut": "Effectuer un pas à pas s&&ortant",
"miStepOver": "Effect&&uer un pas à pas principal",
"miStopDebugging": "&&Arrêter le débogage",
+ "miToggleBreakpoint": "Basculer le point d’arrêt",
"miToggleDebugConsole": "Console de dé&&bogage",
"miViewRun": "&&Exécuter",
- "never": "Ne jamais afficher debug dans la barre d'état",
- "onFirstSessionStart": "Afficher debug dans seule la barre d’état après que le débogage a été lancé pour la première fois",
+ "never": "Ne jamais afficher l’élément de débogage dans la barre d’état",
+ "onFirstSessionStart": "Afficher l’élément de débogage dans la barre d’état uniquement après le premier démarrage du débogage",
"openDebug": "Contrôle le moment où la vue de débogage doit s’ouvrir.",
"openExplorerOnEnd": "Ouvre automatiquement la vue Explorateur à la fin d'une session de débogage.",
"prompt": "Demandez à l'utilisateur.",
@@ -4851,18 +8401,20 @@
"restartFrame": "Redémarrer le frame",
"run": "Exécuter ou Déboguer...",
"run and debug": "Exécuter et déboguer",
+ "runMenu": "Exécuter",
"setValue": "Définir la valeur",
"showBreakpointsInOverviewRuler": "Contrôle si les points d'arrêt doivent être affichés dans la règle d'aperçu.",
"showErrors": "Afficher la vue Problèmes et ne pas démarrer le débogage.",
- "showInStatusBar": "Contrôle le moment où la barre d’état de débogage doit être visible.",
+ "showInStatusBar": "Contrôle quand l’élément de la barre d’état de débogage doit être visible.",
"showInlineBreakpointCandidates": "Contrôle si les décorations de candidat des points d'arrêt inline doivent être affichées dans l'éditeur pendant le débogage.",
"showSubSessionsInToolBar": "Contrôle si les sous-sessions de débogage sont affichées dans la barre d'outils de débogage. Quand ce paramètre a la valeur false, la commande stop sur une sous-session arrête également la session parente.",
+ "showVariableTypes": "Afficher le type de variable dans le volet variable pendant la session de débogage",
"startDebugPlaceholder": "Tapez le nom d'une configuration de lancement à exécuter.",
"startDebuggingHelp": "Démarrer le débogage",
"tasksQuickAccessHelp": "Afficher toutes les consoles de débogage",
"tasksQuickAccessPlaceholder": "Taper le nom d'une console de débogage à ouvrir.",
"terminateThread": "Terminer le thread",
- "toolBarLocation": "Contrôle l'emplacement de la barre d'outils de débogage. Les options sont 'floating' dans toutes les vues, 'docked' dans la vue de débogage ou 'hidden'.",
+ "toolBarLocation": "Contrôle l’emplacement de la barre d’outils de débogage. Les options sont « floating » dans toutes les vues, « docked » dans la vue de débogage, « commandCenter » (nécessite {0}) ou « hidden ».",
"variables": "Variables",
"viewMemory": "Afficher les données binaires",
"watch": "Espion"
@@ -4870,23 +8422,26 @@
"vs/workbench/contrib/debug/browser/debugActionViewItems": {
"addConfigTo": "Ajouter une configuration ({0})...",
"addConfiguration": "Ajouter une configuration...",
+ "commentLabelWithKeybinding": "{0}, utiliser ({1}) pour l'aide sur l'accessibilité",
+ "commentLabelWithKeybindingNoKeybinding": "{0}, exécuter la commande Ouvrir l'aide sur l'accessibilité, qui ne peut pas être déclenchée via une combinaison de touches pour l'instant.",
"debugLaunchConfigurations": "Déboguer les configurations de lancement",
"debugSession": "Session de débogage",
"noConfigurations": "Aucune configuration"
},
"vs/workbench/contrib/debug/browser/debugAdapterManager": {
"CouldNotFindLanguage": "Vous n’avez pas d’extension pour le débogage de {0}. Voulez-vous lancer une recherche d’extension pour {0} dans Marketplace ?",
- "cancel": "Annuler",
"debugName": "Nom de la configuration, apparaît dans le menu déroulant de la configuration de lancement.",
"debugNoType": "Le 'type' de débogueur ne peut pas être omis et doit être de type 'string'.",
"debugPostDebugTask": "Tâche à exécuter après que le débogage se termine.",
"debugPrelaunchTask": "Tâche à exécuter avant le démarrage de la session de débogage.",
"debugServer": "Pour le développement d'une extension de débogage uniquement : si un port est spécifié, VS Code tente de se connecter à un adaptateur de débogage s'exécutant en mode serveur",
- "findExtension": "Trouver l’extension {0}",
+ "findExtension": "&&Trouver l’extension {0}",
"installExt": "Installer une extension...",
"installLanguage": "Installer une extension pour {0}...",
+ "moreOptionsForDebugType": "{0} autres options...",
"selectDebug": "Sélectionner le débogueur",
- "suggestedDebuggers": "Suggestions"
+ "suggestedDebuggers": "Suggestions",
+ "suppressMultipleSessionWarning": "Désactivez l’avertissement lors de plusieurs tentatives de démarrage de la même configuration de débogage."
},
"vs/workbench/contrib/debug/browser/debugColors": {
"debugIcon.continueForeground": "Icône de la barre d'outils de débogage pour continuer.",
@@ -4903,13 +8458,19 @@
"debugToolBarBorder": "Couleur de bordure de la barre d'outils de débogage."
},
"vs/workbench/contrib/debug/browser/debugCommands": {
+ "addConfiguration": "Ajouter une configuration...",
"addInlineBreakpoint": "Ajouter un point d’arrêt Inline",
+ "addToWatchExpressions": "Ajouter à la fenêtre Espion",
+ "attachToCurrentCodeRenderer": "Attachez au rendu de code actuel",
"callStackBottom": "Accéder au bas de la pile des appels",
"callStackDown": "Naviguer vers le bas de la pile des appels",
"callStackTop": "Accéder au haut de la pile des appels",
"callStackUp": "Naviguer vers le haut de la pile des appels",
"chooseLocation": "Choisir l'emplacement spécifique",
"continueDebug": "Continuer",
+ "copyAddress": "Copier l’adresse",
+ "copyAsExpression": "Copier en tant qu'Expression",
+ "copyValue": "Copier la valeur",
"debug": "Déboguer",
"disconnect": "Déconnecter",
"disconnectSuspend": "Se déconnecter et interrompre",
@@ -4926,13 +8487,15 @@
"selectAndStartDebugging": "Sélectionner et démarrer le débogage",
"selectDebugConsole": "Sélectionner la console de débogage",
"selectDebugSession": "Sélectionner la session de débogage",
+ "selectExceptionBreakpointsPlaceholder": "Choisissez les points d’arrêt d’exception activés",
"startDebug": "Démarrer le débogage",
"startWithoutDebugging": "Exécuter sans débogage",
"stepIntoDebug": "Pas à pas détaillé",
"stepIntoTargetDebug": "Effectuer un pas à pas détaillé dans la cible",
"stepOutDebug": "Pas à pas sortant",
"stepOverDebug": "Pas à pas principal",
- "stop": "Arrêter"
+ "stop": "Arrêter",
+ "toggleExceptionBreakpoints": "Activez ou désactivez les points d’arrêt d’exception"
},
"vs/workbench/contrib/debug/browser/debugConfigurationManager": {
"DebugConfig.failed": "Impossible de créer le fichier 'launch.json' dans le dossier '.vscode' ({0}).",
@@ -4945,6 +8508,7 @@
"workbench.action.debug.startDebug": "Démarrer une nouvelle session de débogage"
},
"vs/workbench/contrib/debug/browser/debugEditorActions": {
+ "EditBreakpointEditorAction": "Débogage : modifier le point d’arrêt",
"addToWatch": "Ajouter à la fenêtre Espion",
"closeExceptionWidget": "Fermer le widget d'exception",
"conditionalBreakpointEditorAction": "Déboguer : ajouter un point d'arrêt conditionnel...",
@@ -4955,18 +8519,21 @@
"logPointEditorAction": "Débogage : Ajouter un point de journalisation...",
"miConditionalBreakpoint": "Point d'arrêt &&conditionnel...",
"miDisassemblyView": "&&DisassemblyView",
+ "miEditBreakpoint": "&&Modifier le point d’arrêt",
"miLogPoint": "&&Logpoint...",
"miToggleBreakpoint": "Activer/désactiver le &&point d'arrêt",
+ "miTriggerByBreakpoint": "&&Point d’arrêt déclenché...",
"mitogglesource": "&&ToggleSource",
"openDisassemblyView": "Ouvrir la vue désassemblage",
"runToCursor": "Exécuter jusqu'au curseur",
"showDebugHover": "Déboguer : afficher par pointage",
"stepIntoTargets": "Effectuer un pas à pas détaillé dans la cible",
"toggleBreakpointAction": "Déboguer : activer/désactiver un point d'arrêt",
- "toggleDisassemblyViewSourceCode": "Activer/désactiver le code source en mode Désassemblage"
+ "toggleDisassemblyViewSourceCode": "Activer/désactiver le code source en mode Désassemblage",
+ "toggleDisassemblyViewSourceCodeDescription": "Affiche ou masque le code source dans le code machine",
+ "triggerByBreakpointEditorAction": "Débogage : ajouter un point d’arrêt déclenché..."
},
"vs/workbench/contrib/debug/browser/debugEditorContribution": {
- "addConfiguration": "Ajouter une configuration...",
"editor.inlineValuesBackground": "Couleur de l’arrière-plan de la valeur en ligne du débogage.",
"editor.inlineValuesForeground": "Couleur du texte de la valeur en ligne du débogage."
},
@@ -4996,6 +8563,7 @@
"debugBreakpointLog": "Icône des points d'arrêt de journalisation.",
"debugBreakpointLogDisabled": "Icône des points d'arrêt de journalisation désactivés.",
"debugBreakpointLogUnverified": "Icône des points d'arrêt de journalisation non vérifiés.",
+ "debugBreakpointPendingOnTrigger": "Icône des points d’arrêt en attente d’un autre point d’arrêt.",
"debugBreakpointUnsupported": "Icône des points d'arrêt non pris en charge.",
"debugBreakpointUnverified": "Icône des points d'arrêt non vérifiés.",
"debugCollapseAll": "Icône de l'action permettant de tout réduire dans les vues de débogage.",
@@ -5028,6 +8596,7 @@
"variablesViewIcon": "Icône de vue des variables.",
"watchExpressionRemove": "Icône de l’action Supprimer dans l’affichage Espion.",
"watchExpressionsAdd": "Icône de l'action d'ajout dans la vue Espion.",
+ "watchExpressionsAddDataBreakpoint": "Icône de l’action Ajouter un point d’arrêt de données dans la vue points d’arrêt.",
"watchExpressionsAddFuncBreakpoint": "Icône de l'action d'ajout de points d'arrêt sur fonction dans la vue Espion.",
"watchExpressionsRemoveAll": "Icône de l'action Tout supprimer dans la vue Espion.",
"watchViewIcon": "Icône de vue de l'espion."
@@ -5038,15 +8607,16 @@
"configure": "configurer",
"contributed": "objet d'une contribution",
"customizeLaunchConfig": "Configurer la configuration de lancement",
+ "mostRecent": "Les plus récents",
"noDebugResults": "Aucune configuration de lancement correspondante",
"providerAriaLabel": "configurations {0} faisant l'objet d'une contribution",
"removeLaunchConfig": "Ouvrir la configuration du lancement"
},
"vs/workbench/contrib/debug/browser/debugService": {
"1activeSession": "1 session active",
+ "active debug session": "Une session de débogage qui va se terminer est toujours en cours d’exécution.",
"breakpointAdded": "Point d'arrêt ajouté, ligne {0}, fichier {1}",
"breakpointRemoved": "Point d'arrêt supprimé, ligne {0}, fichier {1}",
- "cancel": "Annuler",
"compoundMustHaveConfigurations": "L'attribut \"configurations\" du composé doit être défini pour permettre le démarrage de plusieurs configurations.",
"configMissing": "Il manque la configuration '{0}' dans 'launch.json'.",
"debugAdapterCrash": "Le débogage du processus adaptateur s'est terminé de manière inattendue ({0})",
@@ -5068,12 +8638,14 @@
},
"vs/workbench/contrib/debug/browser/debugSession": {
"debuggingStarted": "Débogage démarré.",
+ "debuggingStartedNoDebug": "Commencé à fonctionner sans débogage.",
"debuggingStopped": "Débogage arrêté.",
"noDebugAdapter": "Aucun débogueur disponible. Impossible d'envoyer '{0}'",
+ "sessionDoesNotSupporBytesBreakpoints": "La session ne prend pas en charge les points d’arrêt avec octets",
"sessionNotReadyForBreakpoints": "La session n'est pas prête pour les points d'interruption"
},
"vs/workbench/contrib/debug/browser/debugSessionPicker": {
- "moveFocusedView.selectView": "Search debug sessions by name",
+ "moveFocusedView.selectView": "Rechercher des sessions de débogage par nom",
"workbench.action.debug.spawnFrom": "Session {0} générée à partir de {1}",
"workbench.action.debug.startDebug": "Démarrer une nouvelle session de débogage"
},
@@ -5086,8 +8658,9 @@
"DebugTaskNotFound": "Tâche spécifiée introuvable.",
"DebugTaskNotFoundWithTaskId": "Tâche '{0}' introuvable.",
"abort": "Abandonner",
- "cancel": "Annuler",
- "debugAnyway": "Déboguer quand même",
+ "configureTask": "Configurer une tâche",
+ "debugAnyway": "&&Déboguer quand même",
+ "debugAnywayNoMemo": "Déboguer quand même",
"invalidTaskReference": "La tâche '{0}' n'a pas peu être référencée à partir d'une configuration de lancement se trouvant dans un dossier d'espace de travail différent.",
"preLaunchTaskError": "Une erreur s'est produite pendant l'exécution de preLaunchTask '{0}'.",
"preLaunchTaskErrors": "Des erreurs se sont produites pendant l'exécution de preLaunchTask '{0}'.",
@@ -5095,9 +8668,9 @@
"preLaunchTaskTerminated": "preLaunchTask '{0}' terminée.",
"remember": "Mémoriser mon choix dans les paramètres utilisateur",
"rememberTask": "Mémoriser mon choix pour cette tâche",
- "showErrors": "Afficher les erreurs",
- "taskNotTracked": "Impossible d'effectuer le suivi de la tâche '{0}'. Vérifiez qu'un détecteur de problèmes de correspondance a été défini.",
- "taskNotTrackedWithTaskId": "Impossible d'effectuer le suivi de la tâche '{0}'. Vérifiez qu'un détecteur de problèmes de correspondance a été défini."
+ "runningTask": "En attente de preLaunchTask « {0} »... Merci de patienter.",
+ "showErrors": "&&Afficher les erreurs",
+ "taskNotTracked": "La tâche « {0} » n’a pas été quittée et aucun « problemMatcher » n’est défini. Veillez à définir un détecteur de problèmes de correspondance pour les tâches de suivi."
},
"vs/workbench/contrib/debug/browser/debugToolBar": {
"notebook.moreRunActionsLabel": "Plus...",
@@ -5107,6 +8680,7 @@
"vs/workbench/contrib/debug/browser/debugViewlet": {
"debugPanel": "Console de débogage",
"miOpenConfigurations": "Ouvrir les &&configurations",
+ "openLaunchConfigDescription": "Ouvre le fichier utilisé pour configurer la façon dont votre programme est débogué",
"selectWorkspaceFolder": "Sélectionner un dossier d'espace de travail pour y créer un fichier launch.json, ou ajouter ce dernier au fichier config de l'espace de travail",
"startAdditionalSession": "Démarrer une session supplémentaire"
},
@@ -5129,10 +8703,13 @@
"vs/workbench/contrib/debug/browser/linkDetector": {
"fileLink": "Ctrl + clic pour {0}",
"fileLinkMac": "Cmd + clic pour {0}",
+ "fileLinkWithPath": "Ctrl + clic pour {0}{1}",
+ "fileLinkWithPathMac": "Cmd + clic pour {0}{1}",
"followForwardedLink": "suivre le lien à l'aide du port réacheminé",
"followLink": "suivre le lien"
},
"vs/workbench/contrib/debug/browser/loadedScriptsView": {
+ "collapse": "Tout réduire",
"loadedScriptsAriaLabel": "Déboguer les scripts chargés",
"loadedScriptsFolderAriaLabel": "Dossier {0}, script chargé, débogage",
"loadedScriptsRootFolderAriaLabel": "Dossier de l’espace de travail {0}, script chargé, débogage",
@@ -5142,30 +8719,40 @@
},
"vs/workbench/contrib/debug/browser/rawDebugSession": {
"canNotStart": "Le débogueur doit ouvrir un nouvel onglet ou une nouvelle fenêtre pour l’élément débogué, mais le navigateur l’a empêché. Vous devez accorder l’autorisation d’ouverture pour continuer.",
- "cancel": "Annuler",
- "continue": "Continuer",
+ "continue": "&&Continuer",
"moreInfo": "Plus d'informations",
"noDebugAdapter": "Aucun débogueur disponible. Impossible d'envoyer '{0}'.",
"noDebugAdapterStart": "Aucun adaptateur de débogage, impossible de démarrer la session de débogage."
},
"vs/workbench/contrib/debug/browser/repl": {
- "actions.repl.acceptInput": "Accepter l'entrée REPL",
+ "actions.repl.acceptInput": "Console de débogage : Accepter l’entrée",
"actions.repl.copyAll": "Débogage : Tout copier (console)",
"clearRepl": "Effacer la console",
+ "clearRepl.descriotion": "Efface toutes les sorties de programmes de votre REPL de débogage",
"collapse": "Réduire tout",
+ "commentLabelWithKeybinding": "{0}, utiliser ({1}) pour l'aide sur l'accessibilité",
+ "commentLabelWithKeybindingNoKeybinding": "{0}, exécuter la commande Ouvrir l'aide sur l'accessibilité, qui ne peut pas être déclenchée via une combinaison de touches pour l'instant.",
"copy": "Copier",
"copyAll": "Copier tout",
"debugConsole": "Console de débogage",
- "debugConsoleCleared": "La console de débogage a été effacée",
- "filter": "Filtre",
+ "debugFocusConsole": "Mettre le focus sur la vue de la Console de débogage",
"paste": "Coller",
- "repl.action.filter": "Contenu du focus REPL à filtrer",
+ "repl.action.filter": "Console de débogage : Filtre focus",
+ "repl.action.find": "Console de débogage : focus sur la recherche",
"selectRepl": "Sélectionner la console de débogage",
+ "showing filtered repl lines": "Affichage de {0} sur {1}",
"startDebugFirst": "Démarrez une session de débogage pour évaluer les expressions",
- "workbench.debug.filter.placeholder": "Filtre (exemple : text, !exclude)"
- },
- "vs/workbench/contrib/debug/browser/replFilter": {
- "showing filtered repl lines": "Affichage de {0} sur {1}"
+ "workbench.debug.filter.placeholder": "Filtre (exemple : text, !exclude, \\escape)"
+ },
+ "vs/workbench/contrib/debug/browser/replAccessibilityHelp": {
+ "repl.accessibleView": "La commande Open Accessible View{0} permet de naviguer caractère par caractère dans la sortie de la console.",
+ "repl.clear": "La commande Débogage : vider la console{0} efface la sortie de la console.",
+ "repl.help": "La console de débogage est une boucle Read-Eval-Print-Loop qui vous permet d’évaluer des expressions et d’exécuter des commandes et peut être ciblée avec{0}.",
+ "repl.history": "L’historique de sortie de la console de débogage peut être parcouru avec les touches de direction haut et bas.",
+ "repl.input": "Vous pouvez accéder à l’entrée de console de débogage à partir de la sortie à l’aide de la commande Focus Next Widget{0}.",
+ "repl.lazyVariables": "Le paramètre « debug.expandLazyVariables » contrôle si les variables sont évaluées automatiquement. Cette option est activée par défaut lors de l’utilisation d’un lecteur d’écran.",
+ "repl.output": "Vous pouvez accéder à la sortie de la console de débogage à partir du champ d’entrée à l’aide de la commande Focus Previous Widget{0}.",
+ "repl.showRunAndDebug": "La commande Afficher la vue d’exécution et de débogage{0} ouvre la vue Exécuter et déboguer et fournit plus d’informations sur le débogage."
},
"vs/workbench/contrib/debug/browser/replViewer": {
"debugConsole": "Console de débogage",
@@ -5174,25 +8761,44 @@
"replRawObjectAriaLabel": "Variable de console de débogage {0}, valeur {1}",
"replVariableAriaLabel": "Variable {0}, valeur {1}"
},
+ "vs/workbench/contrib/debug/browser/runAndDebugAccessibilityHelp": {
+ "debug.continue": "- Commande Debug: Continue{0} continue l’exécution jusqu’au point d’arrêt suivant.",
+ "debug.focusBreakpoints": "- Débogage : la commande Focus sur les points d’arrêt affiche{0} concentre la vue des points d’arrêt.",
+ "debug.focusCallStack": "- Débogage : la commande Focus sur l’affichage de la pile des appels{0} concentrera l’affichage de la pile des appels.",
+ "debug.focusVariables": "- Débogage : la commande Focus sur l’affichage des variables{0} met le focus sur la vue des variables.",
+ "debug.focusWatch": "- Débogage : la commande Focus Watch View{0} a pour objectif de mettre l’affichage espion au pointage.",
+ "debug.help": "Accédez à la sortie de débogage et évaluez les expressions dans la console de débogage, qui peuvent être focalisées avec{0}.",
+ "debug.restartDebugging": "– Débogage : la commande Redémarrer le débogage{0} redémarre la session de débogage active.",
+ "debug.showRunAndDebug": "La commande Afficher l’affichage d’exécution et de débogage{0} ouvre la vue actuelle.",
+ "debug.startDebugging": "La commande Debug : Start Debugging{0} démarrera une session de débogage.",
+ "debug.stepInto": "- Debug : step into command{0} effectuera un pas à pas détaillé du prochain appel de fonction.",
+ "debug.stepOut": "- Commande Debug : Step Out{0} sort de l’appel de fonction actuel.",
+ "debug.stepOver": "- Débogage : la commande Step Over{0} va passer au-dessus de l’appel de fonction actuel.",
+ "debug.stopDebugging": "– Débogage : la commande Arrêter le débogage{0} arrête la session de débogage active.",
+ "debug.views": "Le viewlet de débogage est composé de plusieurs vues qui peuvent être prioritaires avec les commandes suivantes ou accédées via l’onglet puis les touches de direction :",
+ "debug.watchSetting": "Le paramètre {0} contrôle si les modifications des variables espion sont annoncées.",
+ "onceDebugging": "Une fois le débogage possible, les commandes suivantes sont disponibles :"
+ },
"vs/workbench/contrib/debug/browser/statusbarColorProvider": {
+ "commandCenter-activeBackground": "Couleur d’arrière-plan du centre de commandes lorsqu’un programme est en cours de débogage",
"statusBarDebuggingBackground": "Couleur d'arrière-plan de la barre d'état quand un programme est en cours de débogage. La barre d'état est affichée en bas de la fenêtre",
"statusBarDebuggingBorder": "Couleur de la bordure qui sépare à l’éditeur et la barre latérale quand un programme est en cours de débogage. La barre d’état s’affiche en bas de la fenêtre",
"statusBarDebuggingForeground": "Couleur de premier plan de la barre d'état quand un programme est en cours de débogage. La barre d'état est affichée en bas de la fenêtre"
},
"vs/workbench/contrib/debug/browser/variablesView": {
- "cancel": "Annuler",
"collapse": "Tout réduire",
- "install": "Installer",
+ "removeVisualizer": "Supprimer le visualiseur",
+ "useVisualizer": "Visualiser une variable...",
"variableAriaLabel": "{0}, valeur {1}",
"variableScopeAriaLabel": "Étendue {0}",
"variableValueAriaLabel": "Tapez une nouvelle valeur de variable",
"variablesAriaTreeLabel": "Déboguer les variables",
- "viewMemory.install.progress": "Installation du Rédacteur hexadécimal...",
- "viewMemory.prompt": "L’inspection des données binaires nécessite l’extension Rédacteur hexadécimal. Voulez-vous l’installer maintenant ?"
+ "viewMemory.prompt": "L’inspection des données binaires nécessite cette extension."
},
"vs/workbench/contrib/debug/browser/watchExpressionsView": {
"addWatchExpression": "Ajouter une expression",
"collapse": "Tout réduire",
+ "copyWatchExpression": "Copier l’expression",
"removeAllWatchExpressions": "Supprimer toutes les expressions",
"typeNewValue": "Voulez-vous taper une nouvelle valeur?",
"watchAriaTreeLabel": "Déboguer les expressions espionnées",
@@ -5203,12 +8809,11 @@
},
"vs/workbench/contrib/debug/browser/welcomeView": {
"allDebuggersDisabled": "Toutes les extensions de débogage sont désactivées. Activez une extension de débogage ou installez-en une nouvelle à partir de Marketplace.",
- "customizeRunAndDebug": "Pour personnaliser Exécuter et déboguer [créer un fichier launch.json](command:{0}).",
- "customizeRunAndDebugOpenFolder": "Pour personnaliser Exécuter et déboguer, [ouvrez un dossier](command:{0}) et créez un fichier launch.json.",
- "detectThenRunAndDebug": "[Afficher toutes les configurations de débogage automatique](command:{0}).",
+ "customizeRunAndDebug2": "Pour personnaliser Exécuter et déboguer, [créez un fichier launch.json]({0}).",
+ "customizeRunAndDebugOpenFolder2": "Pour personnaliser Exécuter et déboguer, [ouvrez un dossier]({0}) et créez un fichier launch.json.",
"openAFileWhichCanBeDebugged": "[Ouvrir un fichier](command:{0}) qui peut être débogué ou exécuté.",
"run": "Exécuter",
- "runAndDebugAction": "[Exécuter et déboguer{0}](command:{1})"
+ "runAndDebugAction": "Exécuter et déboguer"
},
"vs/workbench/contrib/debug/common/abstractDebugAdapter": {
"timeout": "Expiration après {0} ms pour '{1}'"
@@ -5217,13 +8822,15 @@
"breakWhenValueChangesSupported": "La valeur est true si la session ayant le focus prend en charge l'arrêt quand la valeur change.",
"breakWhenValueIsAccessedSupported": "La valeur est true quand le point d'arrêt ayant le focus prend en charge l'arrêt en cas d'accès à la valeur.",
"breakWhenValueIsReadSupported": "La valeur est true quand le point d'arrêt ayant le focus prend en charge l'arrêt en cas de lecture de la valeur.",
- "breakpointAccessType": "Représente le type d'accès du point d'arrêt sur variable ayant le focus dans la vue POINTS D'ARRÊT. Exemples : 'read', 'readWrite', 'write'",
+ "breakpointHasModes": "Indique si le point d’arrêt dispose de plusieurs modes de basculement.",
"breakpointInputFocused": "La valeur est true quand la zone de saisie a le focus dans la vue POINTS D'ARRÊT.",
+ "breakpointItemIsDataBytes": "Indique si l’élément de point d’arrêt est un point d’arrêt sur une plage d’octets.",
"breakpointItemType": "Représente le type d'élément de l'élément ayant le focus dans la vue POINTS D'ARRÊT. Exemples : 'breakpoint', 'exceptionBreakppint', 'functionBreakpoint', 'dataBreakpoint'",
"breakpointSupportsCondition": "La valeur est true quand le point d'arrêt ayant le focus prend en charge les conditions.",
"breakpointWidgetVisibile": "La valeur est true quand le widget de zone de l'éditeur de points d'arrêt est visible, sinon false.",
"breakpointsExist": "La valeur est true quand il existe au moins un point d'arrêt.",
"breakpointsFocused": "La valeur est true quand la vue POINTS D'ARRÊT a le focus, sinon false.",
+ "callStackFocused": "La valeur est true quand la vue CALLSTACK a le focus, sinon false.",
"callStackItemStopped": "La valeur est true quand l'élément ayant le focus dans la PILE DES APPELS est à l'arrêt. Utilisé de manière interne pour les menus en ligne dans la vue PILE DES APPELS.",
"callStackItemType": "Représente le type d'élément de l'élément ayant le focus dans la vue PILE DES APPELS. Exemples : 'session', 'thread', 'stackFrame'",
"callStackSessionHasOneThread": "La valeur est true quand la session ayant le focus dans la vue PILE DES APPELS n'a qu'un seul thread. Utilisé de manière interne pour les menus en ligne dans la vue PILE DES APPELS.",
@@ -5232,6 +8839,7 @@
"debugConfigurationType": "Type de débogage de la configuration de lancement sélectionnée. Exemple : 'python'.",
"debugExtensionsAvailable": "True quand au moins une extension de débogage est installée et activée.",
"debugProtocolVariableMenuContext": "Représente le contexte que l'adaptateur de débogage définit sur la variable ayant le focus dans la vue VARIABLES.",
+ "debugSetDataBreakpointAddressSupported": "True lorsque la session ciblée prend en charge la demande « getBreakpointInfo » sur une adresse.",
"debugSetExpressionSupported": "La valeur est true quand la session ayant le focus prend en charge la requête 'setExpression'.",
"debugSetVariableSupported": "La valeur est true quand la session ayant le focus prend en charge la requête 'setVariable'.",
"debugState": "État dans lequel se trouve la session de débogage ayant le focus. Il s'agit de l'une des valeurs suivantes : 'inactive', 'initializing', 'stopped' ou 'running'.",
@@ -5244,11 +8852,13 @@
"exceptionWidgetVisible": "La valeur est true quand le widget d'exception est visible.",
"expressionSelected": "La valeur est true quand une zone d'entrée d'expression est ouverte dans la vue ESPION ou VARIABLES, sinon false.",
"focusedSessionIsAttach": "La valeur est true quand la session ayant le focus a la valeur 'attach'.",
+ "focusedSessionIsNoDebug": "True quand la session ayant le focus est exécutée sans débogage.",
"focusedStackFrameHasInstructionReference": "True lorsque le cadre de pile prioritaire a une référence de pointeur d’instruction.",
+ "hasDebugged": "True lorsqu’une session de débogage a été démarrée au moins une fois, false dans le cas contraire.",
"inBreakpointWidget": "La valeur est true quand le widget de zone de l'éditeur de points d'arrêt a le focus, sinon false.",
"inDebugMode": "La valeur est true au moment du débogage, sinon false.",
"inDebugRepl": "La valeur est true quand la console de débogage a le focus, sinon false.",
- "internalConsoleOptions": "Contrôle le moment où la console de débogage interne doit s’ouvrir.",
+ "internalConsoleOptions": "Contrôle le moment où la Console de débogage interne doit s’ouvrir.",
"jumpToCursorSupported": "La valeur est true quand la session ayant le focus prend en charge la requête 'jumpToCursor'.",
"languageSupportsDisassembleRequest": "La valeur true lorsque le langage dans l’éditeur actuel prend en charge la demande de désassemblage.",
"loadedScriptsItemType": "Représente le type d'élément de l'élément ayant le focus dans la vue SCRIPTS CHARGÉS.",
@@ -5256,13 +8866,20 @@
"multiSessionDebug": "La valeur est true quand il existe plus de 1 session de débogage active.",
"multiSessionRepl": "La valeur est true quand il existe plus de 1 console de débogage.",
"restartFrameSupported": "La valeur est true quand la session ayant le focus prend en charge la requête 'restartFrame'.",
- "stackFrameSupportsRestart": "La valeur est true quand le frame de pile ayant le focus prend en charge 'restartFrame'.",
+ "stackFrameSupportsRestart": "La valeur est true quand le frame de pile ayant le focus prend en charge « restartFrame ».",
"stepBackSupported": "La valeur est true quand la session ayant le focus prend en charge la requête 'stepBack'.",
"stepIntoTargetsSupported": "La valeur est true quand la session ayant le focus prend en charge la requête 'stepIntoTargets'.",
"suspendDebuggeeSupported": "La valeur est « true » lorsque la session ayant le focus prend en charge la fonctionnalité suspendre de l’élément débogué.",
"terminateDebuggeeSupported": "La valeur est « true » lorsque la session ayant le focus prend en charge la fonctionnalité d’arrêt de l’élément débogué.",
+ "terminateThreadsSupported": "Vrai si la session ciblée prend en charge la capacité de mettre fin aux threads.",
"variableEvaluateNamePresent": "La valeur est true quand un champ 'evalauteName' est défini pour la variable.",
+ "variableExtensionId": "ID d’extension de la source de la variable, présente pour les clauses de visualisation de débogage.",
+ "variableInterfaces": "Toutes les interfaces ou contrats satisfaits par la variable, présents pour les clauses de visualisation de débogage.",
"variableIsReadonly": "True lorsque la variable ciblée est en lecture seule.",
+ "variableLanguage": "Langage de la source de la variable, présente pour les clauses de visualisation de débogage.",
+ "variableName": "Nom de la variable, présent pour les clauses de visualisation de débogage.",
+ "variableType": "Type de la variable, présent pour les clauses de visualisation de débogage.",
+ "variableValue": "Valeur de la variable, présente pour les clauses de visualisation de débogage.",
"variablesFocused": "La valeur est true quand la vue VARIABLES a le focus, sinon false",
"watchExpressionsExist": "La valeur est true quand il existe au moins une expression à espionner, sinon false.",
"watchExpressionsFocused": "La valeur est true quand la vue ESPION a le focus, sinon false.",
@@ -5273,10 +8890,23 @@
"canNotResolveSourceWithError": "Impossible de charger la source '{0}' : {1}.",
"unable": "Impossible de résoudre la ressource sans session de débogage"
},
+ "vs/workbench/contrib/debug/common/debugger": {
+ "cannot.find.da": "Adaptateur de débogage introuvable pour le type '{0}'.",
+ "debugLinuxConfiguration": "Attributs de configuration de lancement spécifiques à Linux.",
+ "debugOSXConfiguration": "Attributs de configuration de lancement spécifiques à OS X.",
+ "debugRequest": "Type de requête de configuration. Il peut s'agir de \"launch\" ou \"attach\".",
+ "debugType": "Type de configuration.",
+ "debugTypeNotRecognised": "Le type de débogage n'est pas reconnu. Vérifiez que vous avez installé l'extension de débogage correspondante et qu'elle est activée.",
+ "debugWindowsConfiguration": "Attributs de configuration de lancement spécifiques à Windows.",
+ "launch.config.comment1": "Utilisez IntelliSense pour en savoir plus sur les attributs possibles.",
+ "launch.config.comment2": "Pointez pour afficher la description des attributs existants.",
+ "launch.config.comment3": "Pour plus d'informations, visitez : {0}",
+ "node2NotSupported": "\"node2\" n'est plus pris en charge. Utilisez \"node\" à la place, et affectez la valeur \"inspector\" à l'attribut \"protocol\"."
+ },
"vs/workbench/contrib/debug/common/debugLifecycle": {
"debug.debugSessionCloseConfirmationPlural": "Il y a des sessions de débogage actives, voulez-vous les terminer?",
"debug.debugSessionCloseConfirmationSingular": "Il existe une session de débogage active, voulez-vous l’arrêter?",
- "debug.stop": "Arrêter le débogage"
+ "debug.stop": "&&Arrêter le débogage"
},
"vs/workbench/contrib/debug/common/debugModel": {
"breakpointDirtydHover": "Point d'arrêt non vérifié. Fichier modifié. Redémarrez la session de débogage.",
@@ -5297,6 +8927,9 @@
"app.launch.json.title": "Lancer",
"app.launch.json.version": "Version de ce format de fichier.",
"compoundPrelaunchTask": "Tâche à exécuter avant le début de toute configuration composée.",
+ "debugger name": "Nom",
+ "debugger type": "Type",
+ "debuggers": "Débogueurs",
"presentation": "Options de présentation pour l'affichage de cette configuration dans le menu déroulant de la configuration de débogage et la palette de commandes.",
"presentation.group": "Groupe auquel cette configuration appartient. Utilisé pour le regroupement et le tri dans le menu déroulant de configuration et la palette de commandes.",
"presentation.hidden": "Contrôle si cette configuration doit être affichée dans le menu déroulant de configuration et la palette de commandes.",
@@ -5304,12 +8937,13 @@
"useUniqueNames": "Veuillez utiliser des noms de configuration uniques.",
"vscode.extension.contributes.breakpoints": "Ajoute des points d'arrêt.",
"vscode.extension.contributes.breakpoints.language": "Autorisez les points d'arrêt pour ce langage.",
- "vscode.extension.contributes.breakpoints.when": "Condition qui doit être true pour activer les points d’arrêt dans cette langue. Envisagez de le faire correspondre au débogueur lorsque la clause est appropriée.",
+ "vscode.extension.contributes.breakpoints.when": "Condition qui doit être true pour activer les points d’arrêt dans ce langage. Envisagez de le faire correspondre au débogueur lorsque la clause est appropriée.",
"vscode.extension.contributes.debuggers": "Ajoute des adaptateurs de débogage.",
"vscode.extension.contributes.debuggers.args": "Arguments facultatifs à passer à l'adaptateur.",
"vscode.extension.contributes.debuggers.configurationAttributes": "Configurations de schéma JSON pour la validation de 'launch.json'.",
"vscode.extension.contributes.debuggers.configurationSnippets": "Extraits pour l'ajout de nouvelles configurations à 'launch.json'.",
"vscode.extension.contributes.debuggers.deprecated": "Message facultatif pour marquer ce type de débogage comme étant déconseillé.",
+ "vscode.extension.contributes.debuggers.hiddenWhen": "Quand cette condition a la valeur true, ce type de débogueur est masqué dans la liste des débogueurs, mais il est toujours activé.",
"vscode.extension.contributes.debuggers.initialConfigurations": "Configurations pour la génération du fichier 'launch.json' initial.",
"vscode.extension.contributes.debuggers.label": "Nom complet de cet adaptateur de débogage.",
"vscode.extension.contributes.debuggers.languages": "Liste de langages pour lesquels l'extension de débogage peut être considérée comme \"débogueur par défaut\".",
@@ -5320,6 +8954,8 @@
"vscode.extension.contributes.debuggers.program": "Chemin du programme de l'adaptateur de débogage. Le chemin est absolu ou relatif par rapport au dossier d'extensions.",
"vscode.extension.contributes.debuggers.runtime": "Runtime facultatif, si l'attribut de programme n'est pas un exécutable, mais qu'il nécessite un exécutable.",
"vscode.extension.contributes.debuggers.runtimeArgs": "Arguments du runtime facultatif.",
+ "vscode.extension.contributes.debuggers.strings": "Chaînes d’interface utilisateur contribuées par cet adaptateur de débogage.",
+ "vscode.extension.contributes.debuggers.strings.unverifiedBreakpoints": "Lorsqu’il existe des points d’arrêt non vérifiés dans un langage pris en charge par cet adaptateur de débogage, ce message apparaît sur le point d’arrêt survolé et dans la vue des points d’arrêt. Les liens Markdown et de commande sont pris en charge.",
"vscode.extension.contributes.debuggers.type": "Identificateur unique de cet adaptateur de débogage.",
"vscode.extension.contributes.debuggers.variables": "Mappage de variables interactives (par ex. ${action.pickProcess}) dans 'launch.json' à une commande.",
"vscode.extension.contributes.debuggers.when": "Condition qui doit être true pour activer ce type de débogueur. Envisagez d’utiliser « shellExecutionSupported », « virtualWorkspace », « resourceScheme » ou une clé de contexte définie par l’extension comme il convient pour cela.",
@@ -5329,24 +8965,12 @@
"vs/workbench/contrib/debug/common/debugSource": {
"unknownSource": "Source inconnue"
},
- "vs/workbench/contrib/debug/common/debugger": {
- "cannot.find.da": "Adaptateur de débogage introuvable pour le type '{0}'.",
- "debugLinuxConfiguration": "Attributs de configuration de lancement spécifiques à Linux.",
- "debugOSXConfiguration": "Attributs de configuration de lancement spécifiques à OS X.",
- "debugRequest": "Type de requête de configuration. Il peut s'agir de \"launch\" ou \"attach\".",
- "debugType": "Type de configuration.",
- "debugTypeNotRecognised": "Le type de débogage n'est pas reconnu. Vérifiez que vous avez installé l'extension de débogage correspondante et qu'elle est activée.",
- "debugWindowsConfiguration": "Attributs de configuration de lancement spécifiques à Windows.",
- "launch.config.comment1": "Utilisez IntelliSense pour en savoir plus sur les attributs possibles.",
- "launch.config.comment2": "Pointez pour afficher la description des attributs existants.",
- "launch.config.comment3": "Pour plus d'informations, visitez : {0}",
- "node2NotSupported": "\"node2\" n'est plus pris en charge. Utilisez \"node\" à la place, et affectez la valeur \"inspector\" à l'attribut \"protocol\"."
- },
"vs/workbench/contrib/debug/common/disassemblyViewInput": {
+ "disassemblyEditorLabelIcon": "Icône de l’étiquette de l’éditeur de désassemblage.",
"disassemblyInputName": "Code Machine"
},
"vs/workbench/contrib/debug/common/loadedScriptsPicker": {
- "moveFocusedView.selectView": "Rechercher les scripts chargés par nom"
+ "moveFocusedView.selectView": "Search loaded scripts by name"
},
"vs/workbench/contrib/debug/common/replModel": {
"consoleCleared": "La console a été effacée"
@@ -5363,68 +8987,120 @@
"bracketPairColorizer.notification.action.showMoreInfo": "Plus d’informations",
"bracketPairColorizer.notification.action.uninstall": "Désinstaller l'extension"
},
- "vs/workbench/contrib/dialogs/browser/dialogHandler": {
- "yesButton": "&&Oui",
- "cancelButton": "Annuler",
- "aboutDetail": "Version : {0}\r\nCommit : {1}\r\nDate : {2}\r\nNavigateur : {3}",
- "copy": "Copier",
- "ok": "OK"
+ "vs/workbench/contrib/dropOrPasteInto/browser/commands": {
+ "configureDefaultDrop.label": "Configurer l’action de déplacement par défaut...",
+ "configureDefaultPaste.label": "Configurer l’action de collage par défaut..."
},
- "vs/workbench/contrib/dialogs/electron-sandbox/dialogHandler": {
- "yesButton": "&&Oui",
- "cancelButton": "Annuler",
- "aboutDetail": "Version : {0}\r\nCommit : {1}\r\nDate : {2}\r\nElectron : {3}\r\nChrome : {4}\r\nNode.js : {5}\r\nV8 : {6}\r\nOS : {7}",
- "okButton": "OK",
- "copy": "&&Copier"
+ "vs/workbench/contrib/dropOrPasteInto/browser/configurationSchema": {
+ "dropKind": "Identificateur de type de la modification de suppression.",
+ "dropPreferredDescription": "Configure le type de modification par défaut à utiliser lors de la suppression de contenu.\r\n\r\nIl s’agit d’une liste triée de types d’édition. La première modification disponible d’un type préféré sera utilisée.",
+ "pasteKind": "Identificateur de type de la modification de collage.",
+ "pastePreferredDescription": "Configure le type de modification par défaut à utiliser lors du collage de contenu.\r\n\r\nIl s’agit d’une liste triée de types d’édition. La première modification disponible d’un type préféré sera utilisée."
},
"vs/workbench/contrib/editSessions/browser/editSessions.contribution": {
- "client too old": "Effectuez une mise à niveau vers une version plus récente de {0} pour reprendre cette session de modification.",
- "continue edit session": "Continuer la modification de la session...",
+ "autoResumeWorkingChanges": "Contrôle s’il faut reprendre automatiquement les modifications de travail disponibles stockées dans le cloud pour l’espace de travail actuel.",
+ "autoResumeWorkingChanges.off": "Ne tentez jamais de reprendre des modifications de travail à partir du cloud.",
+ "autoResumeWorkingChanges.onReload": "Reprise automatique des modifications de travail disponibles dans le cloud lors du rechargement de la fenêtre.",
+ "autoStoreWorkingChanges": "Stockage des modifications de travail actuelles...",
+ "autoStoreWorkingChanges.off": "Ne tentez jamais de stocker automatiquement les modifications de travail dans le cloud.",
+ "autoStoreWorkingChanges.onShutdown": "Stockez automatiquement les modifications de travail actuelles dans le cloud à la fermeture de la fenêtre.",
+ "autoStoreWorkingChangesDescription": "Contrôle s’il faut stocker automatiquement des modifications de travail disponibles dans le cloud pour l’espace de travail actuel. Ce paramètre n’a aucun effet sur le web.",
+ "check for pending cloud changes": "Rechercher les modifications en attente dans le cloud",
+ "checkingForWorkingChanges": "Nous vérifions si des modifications du cloud sont en attente... Merci de patienter.",
+ "client too old": "Veuillez effectuer une mise à niveau vers une version plus récente de {0} pour reprendre vos modifications de travail à partir du cloud.",
+ "cloudChangesPartialMatchesEnabled": "Contrôle s’il faut afficher les modifications cloud qui correspondent partiellement à la session active.",
"continue edit session in local folder": "Ouvrir dans le dossier local",
- "continueEditSession.openLocalFolder.title": "Sélectionnez un dossier local dans lequel poursuivre votre session de modification.",
+ "continue with cloud changes": "Indiquez si vous souhaitez apporter vos modifications de travail avec vous",
+ "continue working on": "Continuer à travailler sur...",
+ "continueEditSession.openLocalFolder.title.v2": "Sélectionner un dossier local à partir duquel travailler",
"continueEditSessionExtPoint": "Contribue aux options permettant de poursuivre la session d’édition actuelle dans un autre environnement.",
"continueEditSessionExtPoint.command": "Identificateur de la commande à exécuter. La commande doit être déclarée dans la section 'commands' et retourner un URI représentant un autre environnement où la session d’édition actuelle peut être poursuivie.",
+ "continueEditSessionExtPoint.description": "URL, ou commande qui retourne l’URL, à la page de documentation de l’option.",
"continueEditSessionExtPoint.group": "Groupe auquel cet élément appartient",
+ "continueEditSessionExtPoint.qualifiedName": "Nom complet de cet élément qui est utilisé pour l’affichage dans les menus.",
+ "continueEditSessionExtPoint.remoteGroup": "Groupe auquel cet élément appartient dans l’indicateur distant.",
"continueEditSessionExtPoint.when": "Condition qui doit être true pour afficher cet élément",
- "continueEditSessionItem.openInLocalFolder": "Ouvrir dans le dossier local",
- "continueEditSessionPick.placeholder": "Choisissez la façon dont vous souhaitez continuer à travailler.",
- "continueEditSessionPick.title": "Continuer la modification de la session...",
- "editSessionsEnabled": "Contrôle s'il faut afficher les actions compatibles avec le cloud pour stocker et reprendre les modifications non validées lors du basculement entre le Web, le bureau ou les appareils.",
- "no edit session": "Il n’y a aucune session de modification à reprendre.",
- "no edit session content for ref": "Impossible de reprendre la modification du contenu de la session pour l’ID {0}.",
- "no edits to store": "Le stockage de la session de modification a été ignoré, car il n’y a aucune modification à stocker.",
- "payload failed": "Votre session de modification ne peut pas être stockée.",
- "payload too large": "Votre session de modification dépasse la limite de taille et ne peut pas être stockée.",
- "resume edit session warning": "La reprise de votre session de modification peut remplacer vos modifications non validées existantes. Voulez-vous continuer ?",
- "resume failed": "Échec de la reprise de votre session de modification.",
- "resume latest.v2": "Reprendre la dernière session d’édition",
- "resuming edit session": "Reprise de la session de modification...",
- "show edit session": "Show Edit Sessions",
- "store current.v2": "Stocker la session d’édition actuelle",
- "storing edit session": "Stockage de la session de modification..."
- },
- "vs/workbench/contrib/editSessions/browser/editSessionsViews": {
- "confirm delete": "Are you sure you want to permanently delete the edit session with ref {0}? You cannot undo this action.",
- "edit sessions data": "All Sessions",
- "open file": "Open File",
- "workbench.editSessions.actions.delete": "Delete Edit Session",
- "workbench.editSessions.actions.resume": "Resume Edit Session"
- },
- "vs/workbench/contrib/editSessions/browser/editSessionsWorkbenchService": {
- "account preference": "Se connecter pour utiliser les sessions d’édition",
- "choose account placeholder": "Sélectionner un compte pour se connecter",
- "clear data confirm": "Oui",
- "delete all edit sessions": "Supprimez toutes les sessions de modification stockées du cloud.",
+ "continueEditSessionItem.builtin": "Intégré",
+ "continueEditSessionItem.openInLocalFolder.v2": "Ouvrir dans le dossier local",
+ "continueEditSessionPick.title.v2": "Sélectionner un environnement de développement pour continuer à travailler sur {0} dans",
+ "continueOn.installAdditional": "Installer des options d’environnement de développement supplémentaires",
+ "continueOnCloudChanges": "Contrôle s’il faut inviter l’utilisateur à stocker les modifications de travail dans le cloud lors de l’utilisation de Continuer à travailler sur.",
+ "continueOnCloudChanges.off": "Ne stockez pas les modifications de travail dans le cloud avec l’option Continuer à travailler, sauf si l’utilisateur a déjà activé l’option Modifications dans le cloud.",
+ "continueOnCloudChanges.promptForAuth": "Invitez l’utilisateur à se connecter pour stocker les modifications de travail dans le cloud avec Continuer à travailler sur.",
+ "continueWorkingOn.existingLocalFolder": "Poursuivre le travail dans un dossier local existant",
+ "editSessionPartialMatch": "Vous avez des modifications de travail en attente dans le cloud pour cet espace de travail. Voulez-vous les reprendre ?",
+ "learnMoreTooltip": "En savoir plus",
+ "no cloud changes": "Il n’y a aucune modification à effectuer pour reprendre à partir du cloud.",
+ "no cloud changes for ref": "Impossible de reprendre les modifications à partir du cloud pour l’ID {0}.",
+ "no working changes to store": "Le stockage des modifications de travail dans le cloud a été ignoré, car il n’y a aucune modification à stocker.",
+ "payload failed": "Vos modifications de travail ne peuvent pas être stockées.",
+ "payload too large": "Vos modifications de travail dépassent la limite de taille et ne peuvent pas être stockées.",
+ "resume": "Reprendre",
+ "resume cloud changes": "Reprendre les modifications des données sérialisées",
+ "resume edit session warning 1": "La reprise de vos modifications de travail à partir du cloud remplacera {0}. Voulez-vous continuer ?",
+ "resume edit session warning many": "La reprise de vos modifications de travail à partir du cloud remplacera les {0} fichiers suivants. Voulez-vous continuer ?",
+ "resume failed": "Échec de la reprise de vos modifications de travail à partir du cloud.",
+ "resume latest cloud changes": "Reprendre les dernières modifications du cloud",
+ "resuming working changes window": "Reprise des modifications de travail...",
+ "show cloud changes": "Afficher les modifications dans le cloud",
+ "show log": "Afficher le journal",
+ "store working changes": "Stockage des modifications de travail...",
+ "store working changes in cloud": "Stocker les modifications de travail dans le cloud",
+ "store your working changes": "Stockage de vos modifications de travail...",
+ "storing working changes": "Stockage des modifications de travail...",
+ "with cloud changes": "Oui, continuez avec mes modifications de travail",
+ "without cloud changes": "Non, continuer sans mes modifications de travail"
+ },
+ "vs/workbench/contrib/editSessions/browser/editSessionsStorageService": {
+ "choose account placeholder": "Sélectionnez un compte pour stocker vos modifications de travail dans le cloud",
+ "choose account read placeholder": "Sélectionnez un compte pour restaurer vos modifications de travail à partir du cloud",
+ "delete all cloud changes": "Supprimez toutes les données stockées du cloud.",
"others": "Autres",
- "reset auth.v2": "Sign Out of Edit Sessions",
+ "reset auth.v3": "Désactiver les modifications dans le cloud...",
+ "sign in": "Activer les modifications dans le cloud...",
+ "sign in badge": "Activer les modifications dans le cloud... (1)",
"sign in using account": "Vous connecter à {0}",
- "sign out of edit sessions clear data prompt": "Voulez-vous vous déconnecter des sessions de modification ?",
+ "sign out of cloud changes clear data prompt": "Voulez-vous désactiver le stockage des modifications de travail dans le cloud ?",
"signed in": "Connecté"
},
+ "vs/workbench/contrib/editSessions/browser/editSessionsViews": {
+ "cloud changes": "Modifications du cloud",
+ "compare changes": "Comparer les modifications",
+ "confirm delete all": "Voulez-vous vraiment supprimer définitivement toutes les modifications stockées du cloud ?",
+ "confirm delete all detail": " Vous ne pouvez pas annuler cette action.",
+ "confirm delete detail.v2": " Vous ne pouvez pas annuler cette action.",
+ "confirm delete.v2": "Voulez-vous vraiment supprimer définitivement vos modifications de travail avec la référence {0} ?",
+ "local copy": "Copie locale",
+ "noStoredChanges": "Vous n’avez aucune modification stockée dans le cloud à afficher.\r\n{0}",
+ "open file": "Ouvrir un fichier",
+ "storeWorkingChangesTitle": "Stocker les modifications de travail",
+ "workbench.editSessions.actions.delete.v2": "Supprimer les modifications de travail",
+ "workbench.editSessions.actions.deleteAll": "Supprimer toutes les modifications de travail du cloud",
+ "workbench.editSessions.actions.resume.v2": "Reprendre les modifications de travail",
+ "workbench.editSessions.actions.store.v2": "Stocker les modifications de travail"
+ },
"vs/workbench/contrib/editSessions/common/editSessions": {
- "edit sessions": "Edit Sessions",
- "editSessionViewIcon": "View icon of the edit sessions view.",
- "session sync": "Modifier les sessions"
+ "cloud changes": "Modifications du cloud",
+ "editSessionViewIcon": "Afficher l’icône de l’affichage des modifications dans le cloud."
+ },
+ "vs/workbench/contrib/editSessions/common/editSessionsLogService": {
+ "cloudChangesLog": "Modifications du cloud"
+ },
+ "vs/workbench/contrib/editTelemetry/browser/editStats/aiStatsStatusBar": {
+ "aiStats.statusBar.configure": "Configurer",
+ "aiStatsStatusBarHeader": "Statistiques d’utilisation de l’IA",
+ "inlineSuggestions": "Suggestions inline",
+ "inlineSuggestionsStatusBar": "Barre d’état des suggestions incluses",
+ "text1": "Moyenne de l'IA par rapport à la saisie : {0}",
+ "text2": "Suggestions inlined acceptées aujourd’hui : {0}"
+ },
+ "vs/workbench/contrib/editTelemetry/browser/editTelemetry.contribution": {
+ "editTelemetry": "Modifier la télémétrie",
+ "editor.aiStats.enabled": "Contrôle s’il faut activer les statistiques d’IA dans l’éditeur. La jauge représente la quantité moyenne de code inséré par l’IA par rapport à la saisie manuelle sur une période de 24 heures.",
+ "telemetry.editStats.detailed.enabled": "Contrôle s’il faut activer la télémétrie pour les statistiques d’édition détaillées (envoie uniquement des statistiques si la télémétrie générale est activée).",
+ "telemetry.editStats.enabled": "Contrôle s’il faut activer la télémétrie pour les statistiques de modification (n’envoie des statistiques que si la télémétrie générale est activée).",
+ "telemetry.editStats.showDecorations": "Contrôle s’il faut afficher les décorations pour la télémétrie de modification.",
+ "telemetry.editStats.showStatusBar": "Contrôle s’il faut afficher la barre d'état pour la télémétrie de modification."
},
"vs/workbench/contrib/emmet/browser/actions/expandAbbreviation": {
"expandAbbreviationAction": "Emmet : Expand Abbreviation",
@@ -5438,8 +9114,12 @@
"disable": "Désactiver",
"disable workspace": "Désactiver (espace de travail)",
"errors": " {0} erreurs non détectées",
+ "extensionActivating": "L’extension est en cours d’activation...",
"languageActivation": "Activation effectuée par {1}, car vous avez ouvert un fichier {0}",
+ "requests count": "{0} Utilisation : {1} Demandes",
+ "requests count title": "La dernière requête était {0}.",
"runtimeExtensions": "Extensions de runtime",
+ "session requests count": ", `{0}`demandes (session)",
"showRuntimeExtensions": "Afficher les extensions en cours d'exécution",
"starActivation": "Activé par {0} au démarrage",
"startupFinishedActivation": "Activé par {0} une fois le démarrage effectué",
@@ -5452,164 +9132,139 @@
"vs/workbench/contrib/extensions/browser/configBasedRecommendations": {
"exeBasedRecommendation": "Cette extension est recommandée en raison de la configuration de l'espace de travail actuel"
},
- "vs/workbench/contrib/extensions/browser/dynamicWorkspaceRecommendations": {
- "dynamicWorkspaceRecommendation": "Cette extension peut vous intéresser, car elle est populaire auprès des utilisateurs du dépôt {0}."
- },
"vs/workbench/contrib/extensions/browser/exeBasedRecommendations": {
"exeBasedRecommendation": "Cette extension est recommandée, car vous avez installé {0}."
},
"vs/workbench/contrib/extensions/browser/extensionEditor": {
- "JSON Validation": "Validation JSON ({0})",
+ "Changelog title": "Journal des modifications",
+ "Install Info": "Installation",
"Marketplace": "Place de marché",
- "Marketplace Info": "Plus d’informations",
- "Notebook id": "ID",
- "Notebook mimetypes": "Types MIME",
- "Notebook name": "Nom",
- "Notebook renderer name": "Nom",
- "NotebookRenderers": "Convertisseurs de notebook ({0})",
- "Notebooks": "Notebooks ({0})",
- "activation": "Heure de l'activation",
- "activation events": "Événements d'activation ({0})",
- "authentication": "Authentification ({0})",
- "authentication.id": "ID",
- "authentication.label": "Étiquette",
+ "Marketplace Info": "Place de marché",
+ "Readme title": "Fichier Lisez-moi",
+ "Version": "Version",
"builtin": "Intégrée",
+ "cache size": "Cache",
"categories": "Catégories",
"changelog": "Journal des modifications",
"changelogtooltip": "Historique de mise à jour de l'extension, affiché depuis le fichier 'CHANGELOG.md' de l’extension",
- "codeActions": "Actions de code ({0})",
- "codeActions.description": "Description",
- "codeActions.kind": "Genre",
- "codeActions.languages": "Langages",
- "codeActions.title": "Titre",
- "colorId": "ID",
- "colorThemes": "Thèmes de couleur ({0})",
- "colors": "Couleurs ({0})",
- "command name": "Nom",
- "commands": "Commandes ({0})",
- "contributions": "Contributions",
- "contributionstooltip": "Listes des contributions à VS Code par cette extension",
- "customEditors": "Éditeurs personnalisés ({0})",
- "customEditors filenamePattern": "Modèle de nom de fichier",
- "customEditors priority": "Priorité",
- "customEditors view type": "Type de vue",
- "debugger name": "Nom",
- "debugger type": "Type",
- "debuggers": "Débogueurs ({0})",
- "default": "Par défaut",
- "defaultDark": "Défaut pour le thème sombre",
- "defaultHC": "Défaut pour le thème de contraste élevé",
- "defaultLight": "Défaut pour le thème clair",
"dependencies": "Dépendances",
"dependenciestooltip": "Répertorie les extensions dont dépend cette extension",
- "description": "Description",
"details": "Détails",
"detailstooltip": "Détails de l’extension, affichés depuis le fichier 'README.md' de l’extension",
+ "disk space used": "Taille du cache",
"extension pack": "Pack d'extensions ({0})",
"extension version": "Version de l'extension",
"extensionpack": "Pack d'extensions",
"extensionpacktooltip": "Liste les extensions qui vont être installées avec cette extension",
- "file extensions": "Extensions de fichier",
- "fileMatch": "Correspondance de fichier",
+ "features": "Fonctionnalités",
+ "featurestooltip": "Répertorie les fonctionnalités apportées par cette extension",
"find": "Rechercher",
"find next": "Rechercher le suivant",
"find previous": "Rechercher le précédent",
- "grammar": "Grammaire",
- "iconThemes": "Thèmes d'icône ({0})",
"id": "Identificateur",
- "install count": "Nombre d'installations",
- "keyboard shortcuts": "Raccourcis clavier",
- "language id": "ID",
- "language name": "Nom",
- "languages": "Langages ({0})",
+ "issues": "Problèmes",
+ "last released": "Dernière publication",
"last updated": "Dernière mise à jour",
"license": "Licence",
- "localizations": "Localisations ({0})",
- "localizations language id": "ID de langue",
- "localizations language name": "Nom de la langue",
- "localizations localized language name": "Nom de la langue (localisé)",
- "menuContexts": "Contextes de menu",
- "messages": "Messages ({0})",
"name": "Nom de l'extension",
"noChangelog": "Aucun Changelog disponible.",
- "noContributions": "Aucune contribution",
"noDependencies": "Aucune dépendance",
"noReadme": "Aucun fichier README disponible.",
- "noStatus": "Aucun état disponible.",
- "not yet activated": "Pas encore activé.",
- "preRelease": "Version préliminaire",
+ "other": "Local",
"preview": "Aperçu",
- "productThemes": "Thèmes d'icône de produit ({0})",
- "publisher": "Éditeur",
- "publisher verified tooltip": "Cet éditeur a vérifié la propriété de {0}.",
- "rating": "Évaluation",
- "release date": "Publié le",
+ "published": "Publié",
"repository": "Dépôt",
- "resources": "Ressources d’extension",
- "runtimeStatus": "État du runtime",
- "runtimeStatus description": "État de l’exécution de l’extension",
- "schema": "Schéma",
- "setting name": "Nom",
- "settings": "Paramètres ({0})",
- "snippets": "Extraits",
- "startup": "Démarrage",
- "uncaught errors": "Erreurs non interceptées ({0})",
- "view container id": "ID",
- "view container location": "Emplacement",
- "view container title": "Titre",
- "view id": "ID",
- "view location": "Emplacement",
- "view name": "Nom",
- "viewContainers": "Voir les conteneurs ({0})",
- "views": "Vues ({0})"
+ "resources": "Ressources",
+ "size": "Taille",
+ "size when installed": "Taille lors de l’installation",
+ "source": "Source",
+ "vsix": "VSIX"
+ },
+ "vs/workbench/contrib/extensions/browser/extensionEnablementWorkspaceTrustTransitionParticipant": {
+ "restartExtensionHost.reason": "Modification de l’approbation de l’espace de travail"
+ },
+ "vs/workbench/contrib/extensions/browser/extensionFeaturesTab": {
+ "accessExtensionFeature": "Activer la fonctionnalité « {0} »",
+ "activation": "Activation",
+ "cancel": "Annuler",
+ "chartDescription": "Cette extension a fait l'objet de {0} {1} demandes au cours des 30 derniers jours.",
+ "disableAccessExtensionFeatureMessage": "Voulez-vous révoquer l’extension « {0} » pour accéder à la fonctionnalité « {1} » ?",
+ "enable": "Autoriser l’accès",
+ "enableAccessExtensionFeatureMessage": "Voulez-vous autoriser l’extension « {0} » à accéder à la fonctionnalité « {1} » ?",
+ "extension features list": "Fonctionnalités d’extension",
+ "grant": "Autoriser l’accès",
+ "label": "Utilisation de {0}",
+ "messaages": "Messages ({0})",
+ "noFeatures": "Aucune fonctionnalité n’a été mise en avant.",
+ "revoke": "Révoquer l'accès",
+ "revoked": "Aucun accès",
+ "runtime": "État du runtime",
+ "uncaught errors": "Erreurs non interceptées ({0})"
},
"vs/workbench/contrib/extensions/browser/extensionRecommendationNotificationService": {
+ "donotShowAgain": "Ne plus afficher pour ce référentiel",
+ "donotShowAgainExtension": "Ne plus afficher pour ces extensions",
+ "donotShowAgainExtensionSingle": "Ne plus afficher pour cette extension.",
+ "exeRecommended": "Vous avez {0} installé sur votre système. Voulez-vous installer les {1} recommandées pour celui-ci ?",
+ "extensionFromPublisher": "'{0}' l’extension de {1}",
+ "extensionsFromMultiplePublishers": "extensions de {0}, {1} et d’autres",
+ "extensionsFromPublisher": "extensions de {0}",
+ "extensionsFromPublishers": "extensions de {0} et {1}",
"ignoreAll": "Oui, tout ignorer",
"ignoreExtensionRecommendations": "Voulez-vous ignorer toutes les recommandations d'extension ?",
"install": "Installer",
"install and do no sync": "Installer (ne pas synchroniser)",
- "neverShowAgain": "Ne plus afficher",
"no": "Non",
+ "recommended": "Voulez-vous installer le {0} recommandé pour {1}?",
"show recommendations": "Afficher les recommandations",
- "singleExtensionRecommended": "L’extension « {0} » est recommandée pour ce dépôt. Voulez-vous effectuer l’installation ?",
- "workspaceRecommended": "Voulez-vous installer les extensions recommandées pour ce dépôt ?"
+ "this repository": "ce dépôt"
},
"vs/workbench/contrib/extensions/browser/extensions.contribution": {
"InstallFromVSIX": "Installer à partir de VSIX...",
"InstallVSIXAction.reloadNow": "Recharger maintenant",
- "InstallVSIXAction.success": "Installation de l'extension {0} effectuée à partir du fichier VSIX.",
- "InstallVSIXAction.successReload": "Installation de l'extension {0} effectuée à partir du fichier VSIX. Rechargez Visual Studio Code pour l'activer.",
+ "InstallVSIXAction.restartExtensions": "Redémarrer les extensions",
+ "InstallVSIXAction.successNoReload": "Installation de l’extension effectuée.",
+ "InstallVSIXAction.successReload": "Installation de l’extension effectuée. Veuillez recharger Visual Studio Code pour l’activer.",
+ "InstallVSIXAction.successRestart": "Installation de l’extension effectuée. Veuillez redémarrer les extensions pour l’activer.",
+ "InstallVSIXs.successNoReload": "Installation des extensions effectuée.",
+ "InstallVSIXs.successReload": "Installation des extensions effectuée. Veuillez recharger Visual Studio Code pour les activer.",
+ "InstallVSIXs.successRestart": "Installation des extensions effectuée. Veuillez redémarrer les extensions pour les activer.",
"all": "Toutes les extensions",
- "builtin": "L'extension '{0}' est une extension intégrée qui ne peut pas être installée",
+ "autoRestart": "Si cette option est activée, les extensions redémarrent automatiquement après une mise à jour si la fenêtre n’est pas active. Il peut y avoir une perte de données si vous avez des notebooks ou des éditeurs personnalisés ouverts.",
+ "builtin": "L'extension '{0}' est une extension intégrée qui ne peut pas être désinstallée",
"builtin filter": "Intégrée",
"checkForUpdates": "Rechercher les mises à jour d'extensions",
"clearExtensionsSearchResults": "Effacer les résultats de la recherche d'extensions",
- "configure auto updating extensions": "Mise à jour automatique des extensions",
- "configureExtensionsAutoUpdate.all": "Toutes les extensions",
- "configureExtensionsAutoUpdate.enabled": "Uniquement les extensions activées",
- "configureExtensionsAutoUpdate.none": "Aucun",
"disableAll": "Désactiver toutes les extensions installées",
"disableAllWorkspace": "Désactiver toutes les extensions installées pour cet espace de travail",
"disableAutoUpdate": "Désactiver la mise à jour automatique de toutes les extensions",
+ "disablePreRleaseLabel": "Passer à la version commerciale",
"disabled filter": "Désactivée",
+ "download VSIX": "Télécharger VSIX",
+ "download pre-release": "Télécharger VSIX en préversion",
+ "download specific version": "Télécharger une version spécifique de VSIX...",
"enableAll": "Activer toutes les extensions",
"enableAllWorkspace": "Activer toutes les extensions pour cet espace de travail",
"enableAutoUpdate": "Activer la mise à jour automatique de toutes les extensions",
+ "enablePreRleaseLabel": "Passer à la version préliminaire",
"enabled": "Uniquement les extensions activées",
"enabled filter": "Activée",
"extension": "Extension",
+ "extension updates filter": "Mises à jour",
"extensionInfoDescription": "Description : {0}",
"extensionInfoId": "ID : {0}",
"extensionInfoName": "Nom : {0}",
"extensionInfoPublisher": "Serveur de publication : {0}",
"extensionInfoVSMarketplaceLink": "Lien de la Place de marché pour VS : {0}",
"extensionInfoVersion": "Version : {0}",
+ "extensionUpdates": "Afficher les Mises à jour d’extension",
"extensions": "Extensions",
"extensions.affinity": "Configurez une extension à exécuter dans un autre processus hôte d’extension.",
"extensions.autoUpdate": "Contrôle le comportement de mise à jour automatique des extensions. Les mises à jour sont récupérées à partir d'un service en ligne Microsoft.",
- "extensions.autoUpdate.enabled": "Télécharge et installe automatiquement les mises à jour uniquement pour les extensions activées. Les extensions désactivées ne sont pas mises à jour automatiquement.",
+ "extensions.autoUpdate.enabled": "Téléchargez et installez automatiquement les mises à jour uniquement pour les extensions activées.",
"extensions.autoUpdate.false": "Les extensions ne sont pas mises à jour automatiquement.",
"extensions.autoUpdate.true": "Télécharge et installe automatiquement les mises à jour pour toutes les extensions.",
+ "extensions.gallery.serviceUrl": "Configurer l’URL du service Place de marché à laquelle se connecter",
"extensions.supportUntrustedWorkspaces": "Remplacez la prise en charge d’une extension par un espace de travail non approuvé. Les extensions utilisant la valeur `true` sont toujours activées. Les extensions utilisant la valeur `limited` sont toujours activées et l’extension masquera les fonctionnalités nécessitant une approbation. Les extensions utilisant la valeur `false` ne sont activées que dans un espace de travail approuvé.",
"extensions.supportUntrustedWorkspaces.false": "L’extension est uniquement activée quand l’espace de travail est approuvé.",
"extensions.supportUntrustedWorkspaces.limited": "L’extension est toujours activée et l’extension masque les fonctionnalités nécessitant une approbation.",
@@ -5617,12 +9272,16 @@
"extensions.supportUntrustedWorkspaces.true": "L’extension est toujours activée.",
"extensions.supportUntrustedWorkspaces.version": "Définit la version de l’extension pour laquelle le remplacement doit être appliqué. Si rien n’est spécifié, le remplacement est appliqué indépendamment de la version de l’extension.",
"extensions.supportVirtualWorkspaces": "Remplacez la prise en charge d’une extension par les espaces de travail virtuels.",
+ "extensions.verifySignature": "Lorsque cette option est activée, la signature des extensions est vérifiée avant d’être installée.",
"extensionsCheckUpdates": "Lorsqu’activé, vérifie automatiquement les extensions pour les mises à jour. Si une extension est une mise à jour, elle est marquée comme obsolète dans l’affichage des Extensions. Les mises à jour sont récupérées à partir d’un service en ligne de Microsoft.",
"extensionsCloseExtensionDetailsOnViewChange": "Si cette option est activée, les éditeurs avec les détails d'extension sont automatiquement fermés quand vous quittez l'affichage Extensions.",
"extensionsConfigurationTitle": "Extensions",
+ "extensionsDeferredStartupFinishedActivation": "Quand cette option est activée, les extensions qui déclarent l’événement d’activation « onStartupFinished » sont activées après un délai d’expiration.",
"extensionsIgnoreRecommendations": "Si cette option est activée, les notifications pour les recommandations d’extension ne sont pas affichées.",
+ "extensionsInQuickAccess": "Lorsque cette option est activée, les extensions peuvent être recherchées via Accès rapide et signaler des problèmes à partir de là.",
+ "extensionsRequestTimeout": "Contrôle le délai d’attente en millisecondes pour les requêtes HTTP effectuées lors de la récupération d’extensions depuis la Place de marché",
"extensionsShowRecommendationsOnlyOnDemand_Deprecated": "Ce paramètre est déprécié. Utilisez le paramètre extensions.ignoreRecommendations pour contrôler les notifications de recommandation. Utilisez les actions de visibilité de la vue Extensions pour masquer la vue recommandée par défaut.",
- "extensionsUseUtilityProcess": "Lorsque cette option est activée, l’hôte d’extension est lancé à l’aide de la nouvelle API UtilityProcess Electron.",
+ "extensionsSupportNodeGlobalNavigator": "Lorsqu’il est activé, l'objet navigateur de Node.js est exposé dans l'étendue globale.",
"extensionsWebWorker": "Activez l'hôte d'extension Web Worker.",
"extensionsWebWorker.auto": "L’hôte d’extension rôle de travail est lancé quand une extension Web en a besoin.",
"extensionsWebWorker.false": "L’hôte d’extension Web Worker ne sera jamais lancé.",
@@ -5630,33 +9289,36 @@
"featured filter": "Fonctionnalités proposées",
"filter by category": "Catégorie",
"filterExtensions": "Filtrer les extensions...",
+ "focusExtensions": "Focus sur l’affichage des extensions",
"handleUriConfirmedExtensions": "Si une extension est listée ici, aucune invite de confirmation n'est affichée quand cette extension gère un URI.",
"id required": "ID d'extension obligatoire.",
"importKeyboardShortcutsFroms": "Migrer les raccourcis clavier à partir de...",
+ "install": "Installer",
"install button": "Installer",
+ "install installAndDonotSync": "Installer (ne pas synchroniser)",
"installButton": "&&Installer",
+ "installExtensionFromLocation": "Installer l’extension à partir de l’emplacement...",
"installExtensionQuickAccessHelp": "Installer ou rechercher des extensions",
"installExtensionQuickAccessPlaceholder": "Tapez le nom d'une extension à installer ou à rechercher.",
"installExtensions": "Installer les extensions",
- "installFromLocation": "Installer l’extension web à partir de l’emplacement",
+ "installFromLocation": "Installer l’extension à partir de l’emplacement",
"installFromLocationPlaceHolder": "Emplacement de l’extension web",
"installFromVSIX": "Installer à partir d'un VSIX",
+ "installPrereleaseAndDonotSync": "Installer la préversion (ne pas synchroniser)",
"installVSIX": "Installer le VSIX de l'extension",
- "installWebExtensionFromLocation": "Installer l’extension web...",
"installWorkspaceRecommendedExtensions": "Installer les extensions recommandées pour l'espace de travail",
"installed filter": "Installée",
+ "installedExtensions": "Afficher les extensions installées",
"manageExtensionsHelp": "Gérer les extensions",
"manageExtensionsQuickAccessPlaceholder": "Appuyez sur Entrée pour gérer les extensions.",
"miPreferencesExtensions": "&&Extensions",
"miViewExtensions": "E&&xtensions",
- "miimportKeyboardShortcutsFrom": "&&Migrer les raccourcis clavier à partir de...",
"most popular filter": "La plus populaire",
"most popular recommended": "Recommandée",
"noUpdatesAvailable": "Toutes les extensions sont à jour.",
"none": "Aucun",
"notFound": "Extension '{0}' introuvable.",
"notInstalled": "L'extension '{0}' n'est pas installée. Vérifiez que vous utilisez l'ID d'extension complet, y compris l'éditeur, par ex. : ms-vscode.csharp.",
- "outdated filter": "Obsolète",
"recently published filter": "Publiée récemment",
"recentlyPublishedExtensions": "Afficher les extensions récemment publiées",
"refreshExtension": "Actualiser",
@@ -5667,43 +9329,55 @@
"showEnabledExtensions": "Afficher les extensions activées",
"showExtensions": "Extensions",
"showFeaturedExtensions": "Afficher les extensions recommandées",
- "showInstalledExtensions": "Afficher les extensions installées",
"showLanguageExtensionsShort": "Extensions de langage",
- "showOutdatedExtensions": "Afficher les extensions obsolètes",
"showPopularExtensions": "Afficher les extensions les plus demandées",
"showRecommendedExtensions": "Afficher les extensions recommandées",
"showRecommendedKeymapExtensionsShort": "Mappages de touches",
"showWorkspaceUnsupportedExtensions": "Afficher les extensions non prises en charge par l’espace de travail",
- "sort by date": "Date de publication",
+ "signInToMarketplace": "Connectez-vous pour accéder à la place de marché des extensions",
"sort by installs": "Nombre d'installations",
"sort by name": "Nom",
+ "sort by published date": "Date de publication",
"sort by rating": "Évaluation",
+ "sort by update date": "Date de mise à jour",
"sorty by": "Tri par",
+ "trustedPublishers": "Gérer les éditeurs d’extension approuvés",
+ "trustedPublishersPlaceholder": "Choisir les éditeurs auxquels faire confiance",
"updateAll": "Mettre à jour toutes les extensions",
"workbench.extensions.action.addExtensionToWorkspaceRecommendations": "Ajouter aux recommandations relatives à l'espace de travail",
"workbench.extensions.action.addToWorkspaceFolderIgnoredRecommendations": "Ajouter l'extension aux recommandations ignorées du dossier d'espace de travail",
"workbench.extensions.action.addToWorkspaceFolderRecommendations": "Ajouter l'extension aux recommandations du dossier d'espace de travail",
"workbench.extensions.action.addToWorkspaceIgnoredRecommendations": "Ajouter l'extension aux recommandations ignorées de l'espace de travail",
"workbench.extensions.action.addToWorkspaceRecommendations": "Ajouter l'extension aux recommandations de l'espace de travail",
- "workbench.extensions.action.configure": "Paramètres d'extension",
+ "workbench.extensions.action.changeAccountPreference": "Préférences de compte",
+ "workbench.extensions.action.configure": "Paramètres",
+ "workbench.extensions.action.configureKeybindings": "Raccourcis clavier",
"workbench.extensions.action.copyExtension": "Copier",
"workbench.extensions.action.copyExtensionId": "Copier l'ID d'extension",
+ "workbench.extensions.action.copyLink": "Copier un lien",
"workbench.extensions.action.ignoreRecommendation": "Ignorer la recommandation",
+ "workbench.extensions.action.manageTrustedPublishers": "Gérer les éditeurs d’extension approuvés",
"workbench.extensions.action.removeExtensionFromWorkspaceRecommendations": "Supprimer des recommandations de l'espace de travail",
+ "workbench.extensions.action.toggleApplyToAllProfiles": "Appliquer l’extension à tous les profils",
"workbench.extensions.action.toggleIgnoreExtension": "Synchroniser cette extension",
"workbench.extensions.action.undoIgnoredRecommendation": "Annuler la recommandation ignorée",
"workbench.extensions.installExtension.arg.decription": "ID d'extension ou URI de ressource VSIX",
"workbench.extensions.installExtension.description": "Installer l'extension spécifiée",
"workbench.extensions.installExtension.option.context": "Contexte de l’installation. Il s’agit d’un objet JSON qui peut être utilisé pour transmettre des informations aux gestionnaires d’installation. Par exemple, '{skipWalkthrough: true}' ignore l’ouverture de la procédure pas à pas lors de l’installation.",
"workbench.extensions.installExtension.option.donotSync": "Lorsque cette option est activée, VS Code ne synchronisez pas cette extension lorsque la synchronisation des paramètres est activée.",
+ "workbench.extensions.installExtension.option.enable": "Lorsqu’elle est activée, l’extension est activée si elle est installée mais désactivée. Si l’extension est déjà activée, cela n’a aucun effet.",
"workbench.extensions.installExtension.option.installOnlyNewlyAddedFromExtensionPackVSIX": "Quand cette option est activée, VS Code installe uniquement les extensions récemment ajoutées à partir du pack d’extensions VSIX. Cette option est uniquement prise en compte lors de l’installation d’un VSIX.",
"workbench.extensions.installExtension.option.installPreReleaseVersion": "Lorsque cette option est activée, VS Code installe la version préliminaire de l’extension si elle est disponible.",
+ "workbench.extensions.installExtension.option.justification": "Justification de l’installation de l’extension. Il s'agit d'une chaîne ou d'un objet qui peut être utilisé pour transmettre des informations aux gestionnaires d'installation. Par exemple, `{reason: 'This extension wants to open a URI', action: 'Open URI'}` affichera une boîte de message avec la raison et l'action lors de l'installation.",
"workbench.extensions.search.arg.name": "Requête à utiliser dans la recherche",
"workbench.extensions.search.description": "Recherche d'une extension spécifique",
"workbench.extensions.uninstallExtension.arg.name": "ID de l'extension à désinstaller",
"workbench.extensions.uninstallExtension.description": "Désinstaller l'extension donnée",
"workspace unsupported filter": "Espace de travail non pris en charge"
},
+ "vs/workbench/contrib/extensions/browser/extensions.web.contribution": {
+ "runtimeExtension": "Extensions en cours d’exécution"
+ },
"vs/workbench/contrib/extensions/browser/extensionsActions": {
"Cannot be enabled": "Cette extension est désactivée, car elle n’est pas prise en charge dans {0} pour le web.",
"Defined to run in desktop": "Cette extension est désactivée, car elle est définie pour s’exécuter uniquement dans {0} pour le Bureau.",
@@ -5711,42 +9385,39 @@
"Install in remote server to enable": "Cette extension est désactivée dans cet espace de travail, car elle est définie pour s’exécuter dans l’hôte d’extension distante. Installez l’extension dans «{0}» pour l’activer.",
"Install language pack also in remote server": "Installez l'extension du module linguistique sur '{0}' pour l'activer également à cet emplacement.",
"Install language pack also locally": "Installez l'extension du module linguistique localement pour l'activer également à cet emplacement.",
- "InstallVSIXAction.reloadNow": "Recharger maintenant",
- "ManageExtensionAction.uninstallingTooltip": "Désinstallation en cours",
"OpenExtensionsFile.failed": "Impossible de créer le fichier 'extensions.json' dans le dossier '.vscode' ({0}).",
- "ReinstallAction.success": "Extension {0} réinstallée.",
- "ReinstallAction.successReload": "Rechargez Visual Studio Code pour terminer la réinstallation de l'extension {0}.",
- "Show alternate extension": "Ouvrir {0}",
+ "Show alternate extension": "&&Ouvrir {0}",
"Uninstalling": "Désinstallation en cours",
"VS Code for Web": "{0} pour le web",
+ "auto update message": "Veuillez [examiner l’extension]({0}) et la mettre à jour manuellement.",
"cancel": "Annuler",
"cannot be installed": "L'extension '{0}' n'est pas disponible dans {1}. Pour en savoir plus, cliquez sur Plus d'informations.",
"check logs": "Pour plus d'informations, consultez le [journal]({0}).",
"close": "Fermer",
- "configure in settings": "Configurer les paramètres",
+ "configure in settings": "&&Configurer les paramètres",
"configureWorkspaceFolderRecommendedExtensions": "Configurer les extensions recommandées (Dossier d'espace de travail)",
"configureWorkspaceRecommendedExtensions": "Configurer les extensions recommandées (espace de travail)",
"current": "actuel",
+ "dependencies": "Afficher les dépendances",
"deprecated message": "Cette extension est déconseillée, car elle n’est plus gérée.",
"deprecated tooltip": "Cette extension est déconseillée, car elle n’est plus gérée.",
"deprecated with alternate extension message": "Cette extension est dépréciée. Utilisez l’extension {0} à la place.",
"deprecated with alternate extension tooltip": "Cette extension est dépréciée. Utilisez l’extension {0} à la place.",
"deprecated with alternate settings message": "Cette extension est déconseillée, car cette fonctionnalité est désormais intégrée à VS Code.",
"deprecated with alternate settings tooltip": "Cette extension est déconseillée, car cette fonctionnalité est désormais intégrée à VS Code. Configurez ces {0} pour utiliser cette fonctionnalité.",
- "disableAction": "Désactiver",
+ "disableAutoUpdate": "Mises à jour automatiques désactivées pour",
"disableForWorkspaceAction": "Désactiver (espace de travail)",
"disableForWorkspaceActionToolTip": "Désactiver cette extension uniquement dans cet espace de travail",
"disableGloballyAction": "Désactiver",
"disableGloballyActionToolTip": "Désactiver cette extension",
"disabled": "Désactivé",
+ "disabled - not allowed": "Cette extension est désactivée car {0}",
"disabled because of virtual workspace": "Cette extension a été désactivée car elle ne prend pas en charge les espaces de travail virtuels.",
"disabled by environment": "Cette extension est désactivée par l’environnement.",
- "do no sync": "Ne pas synchroniser",
"do not sync": "Ne pas synchroniser cette extension",
"download": "Essayer de télécharger manuellement...",
- "enable locally": "Rechargez Visual Studio Code pour activer cette extension localement.",
- "enable remote": "Rechargez Visual Studio Code pour activer cette extension dans {0}.",
- "enableAction": "Activer",
+ "enableAutoUpdate": "Mises à jour automatiques activées pour",
+ "enableAutoUpdateLabel": "Mise à jour automatique",
"enableForWorkspaceAction": "Activer (espace de travail)",
"enableForWorkspaceActionToolTip": "Activer cette extension uniquement dans cet espace de travail",
"enableGloballyAction": "Activer",
@@ -5756,44 +9427,43 @@
"enabled in web worker": "Cette extension est activée dans l’hôte d’extension de worker web, car elle préfère s’y exécuter.",
"enabled locally": "Cette extension est activée dans l’hôte d’extension local, car elle préfère s’y exécuter.",
"enabled remotely": "Cette extension est activée dans l’hôte d’extension distante, car elle préfère s’y exécuter.",
- "extension disabled because of dependency": "Cette extension a été désactivée car elle dépend d’une extension qui est désactivée.",
+ "extension disabled because of dependency": "Cette extension dépend d’une extension qui est désactivée.",
"extension disabled because of trust requirement": "Cette extension a été désactivée car l’espace de travail actif n’est pas approuvé.",
+ "extension disabled because of unification": "Toutes les fonctionnalités GitHub Copilot sont désormais fournies par l’extension Copilot Chat. Pour vous désinscrire temporairement de cette unification d’extensions, activez/désactivez le paramètre {0}.",
"extension enabled on remote": "L'extension est activée sur '{0}'",
"extension limited because of trust requirement": "Cette extension offre des fonctionnalités limitées car l’espace de travail actif n’est pas approuvé.",
"extension limited because of virtual workspace": "Cette extension offre des fonctionnalités limitées car l’espace de travail actif est virtuel.",
- "extensionButtonProminentBackground": "Couleur d'arrière-plan du bouton pour les extension d'actions importantes (par ex., le bouton d'installation).",
- "extensionButtonProminentForeground": "Couleur d'arrière-plan du bouton pour l'extension d'actions importantes (par ex., le bouton d'installation).",
- "extensionButtonProminentHoverBackground": "Couleur d'arrière-plan du pointage de bouton pour l'extension d'actions importantes (par ex., le bouton d'installation).",
+ "extensionButtonBackground": "Couleur d’arrière-plan du bouton pour les actions d’extension.",
+ "extensionButtonForeground": "Couleur de premier plan du bouton pour les actions d’extension.",
+ "extensionButtonHoverBackground": "Couleur d’arrière-plan du pointage de bouton pour les actions d’extension.",
+ "extensionButtonProminentBackground": "Couleur d'arrière-plan du bouton pour les actions d'extension importantes (par ex., le bouton d'installation).",
+ "extensionButtonProminentForeground": "Couleur de premier plan du bouton pour les actions d'extension importantes (par ex., le bouton d'installation).",
+ "extensionButtonProminentHoverBackground": "Couleur d'arrière-plan du pointage de bouton pour les actions d'extension importantes (par ex., le bouton d'installation).",
+ "extensionButtonSeparator": "Couleur du séparateur de boutons pour les actions d’extension",
"finished installing": "Extensions installées correctement.",
"globally disabled": "Cette extension est désactivée globalement par l'utilisateur.",
- "globally enabled": "Cette extension est activée globalement.",
"ignoreExtensionRecommendation": "Ne plus recommander cette extension",
+ "ignoreExtensionUpdatePublisher": "Ignorer les mises à jour publiées par {0}.",
"ignored": "Cette extension est ignorée durant la synchronisation",
- "incompatible": "Impossible d’installer l’extension «{0}», car elle n’est pas compatible.",
- "incompatible platform": "L’extension « {0} » n’est pas disponible dans {1} pour {2}.",
"install": "Installer",
- "install another version": "Installer une autre version...",
+ "install another version": "Installer une version spécifique...",
"install anyway": "Installer quand même",
"install browser": "Installer dans le navigateur",
"install confirmation": "Voulez-vous vraiment installer «{0}» ?",
- "install everywhere tooltip": "Installer cette extension dans toutes vos instances de {0} synchronisées",
- "install extension in remote": "{0} dans {1}",
- "install extension in remote and do not sync": "{0} dans {1} ({2})",
- "install extension locally": "{0} Localement",
- "install extension locally and do not sync": "{0} Localement ({1})",
+ "install donot verify": "Installer quand même (ne pas vérifier la signature)",
"install in remote": "Installer dans {0}",
"install local extensions title": "Installer les extensions locales dans '{0}'",
"install locally": "Installer localement",
"install operation": "Erreur durant l'installation de l'extension '{0}'.",
"install pre-release": "Installer des pré-versions",
"install pre-release version": "Installer la version précommerciale",
+ "install prerelease": "Installer des pré-versions",
"install previous version": "Installer une version spécifique de l'extension...",
"install release version": "Installer la version commerciale",
- "install release version message": "Souhaitez-vous installer la version finale ?",
"install remote extensions": "Installer les extensions distantes localement",
"install vsix": "Une fois téléchargé, installez manuellement le VSIX de '{0}'.",
+ "install workspace version": "Installer l’extension d’espace de travail",
"installExtensionComplete": "L'installation de l'extension {0} a été effectuée.",
- "installExtensionCompletedAndReloadRequired": "L'installation de l'extension {0} a été effectuée. Rechargez Visual Studio Code pour l'activer.",
"installExtensionStart": "L'installation de l’extension {0} a commencé. Un éditeur est maintenant ouvert avec plus de détails sur cette extension",
"installRecommendedExtension": "Installer l'Extension Recommandée",
"installVSIX": "Installer depuis un VSIX...",
@@ -5801,25 +9471,27 @@
"installing": "Installation",
"installing extensions": "Installation des extensions...",
"learn more": "En savoir plus",
- "learn why": "Découvrez pourquoi",
"malicious tooltip": "Cette extension a été signalée comme posant un problème.",
"manage": "Gérer",
+ "manage access": "Gérer l’accès",
"migrate": "Migrer",
"migrate to": "Migrer vers {0}",
"migrateExtension": "Migrer",
- "more information": "Plus d'informations",
+ "missing from gallery tooltip": "Cette extension n’est plus disponible sur la Place de marché.",
+ "more information": "&&Plus d’informations",
"no local extensions": "Il n'y a aucune extension à installer.",
"no versions": "Cette extension n’a pas d’autres versions.",
- "not web tooltip": "L’extension «{0}» n’est pas disponible dans {1}.",
- "postDisableTooltip": "Veuillez recharger Visual Studio Code pour désactiver cette extension.",
- "postEnableTooltip": "Rechargez Visual Studio Code pour activer cette extension.",
- "postUninstallTooltip": "Rechargez Visual Studio Code pour désinstaller cette extension.",
- "postUpdateTooltip": "Rechargez Visual Studio Code pour activer l'extension mise à jour.",
+ "not signed": "« {0} » est une extension provenant d’une source inconnue. Voulez-vous vraiment effectuer l’installation ?",
+ "not signed detail": "L’extension n’est pas signée.",
+ "not signed tooltip": "Cette extension n’est pas signée par la Place de marché des extensions.",
"pre-release": "Version préliminaire",
- "reinstall": "Réinstallez l'extension...",
- "reloadAction": "Recharger",
- "reloadRequired": "Rechargement requis",
- "search recommendations": "Rechercher des extensions",
+ "reload window": "Recharger la fenêtre",
+ "report issue": "Signaler un problème",
+ "report issue body": "Veuillez inclure le journal suivant « F1 > Ouvrir l’affichage... > Partagé » ci-dessous.\r\n\r\n",
+ "report issue title": "Échec de la vérification de la signature de l'extension : {0}",
+ "restart extensions": "Redémarrer les extensions",
+ "restart product": "Redémarrer pour mettre à jour",
+ "review": "Examen",
"select and install local extensions": "Installer les extensions locales dans '{0}'...",
"select and install remote extensions": "Installer les extensions distantes localement...",
"select color theme": "Sélectionner le thème de couleur",
@@ -5827,31 +9499,36 @@
"select file icon theme": "Sélectionner un thème d'icône de fichier",
"select product icon theme": "Sélectionner un thème d'icône de produit",
"selectExtension": "Sélectionner une extension",
- "selectExtensionToReinstall": "Sélectionner l'extension à réinstaller",
"selectVersion": "Sélectionner la version à installer",
"settings": "paramètres",
"showRecommendedExtension": "Afficher l'extension recommandée",
- "switch to pre-release version": "Passer à la version préliminaire",
- "switch to pre-release version tooltip": "Basculer vers la version préliminaire de cette extension",
- "switch to release version": "Passer à la version commerciale",
- "switch to release version tooltip": "Basculer vers la version de cette extension",
+ "switchToPreReleaseLabel": "Passer à la version préliminaire",
+ "switchToPreReleaseTooltip": "Cette option bascule vers la version préliminaire, puis active toujours les mises à jour vers la dernière version",
"sync": "Synchroniser cette extension",
"synced": "Cette extension est synchronisée",
+ "toggleAutoUpdatesForPublisherLabel": "Mettre à jour automatiquement tout (à partir de l’éditeur)",
+ "togglePreRleaseDisableLabel": "Passer à la version commerciale",
+ "togglePreRleaseDisableTooltip": "Cette opération permet de basculer, puis d’activer les mises à jour des versions de mise en production",
+ "togglePreRleaseLabel": "Version précommercialisée",
"undo": "Annuler",
"uninstallAction": "Désinstaller",
+ "uninstallAll": "Désinstaller (tous les profils)",
"uninstallExtensionComplete": "Veuillez recharger Visual Studio Code pour terminer la désinstallation de l’extension {0}.",
"uninstallExtensionStart": "La désinstallation de l’extension {0} a commencé.",
"uninstalled": "NON INSTALLÉ",
+ "update": "Mettre à jour",
"update operation": "Erreur durant la mise à jour de l'extension '{0}'.",
- "updateAction": "Mettre à jour",
+ "update product": "Mise à jour {0}",
+ "update to": "Mise à jour vers v{0}",
"updateExtensionComplete": "Mise à jour de l'extension {0} vers la version {1} terminée.",
+ "updateExtensionConsent": "{0}\r\n\r\nVoulez-vous mettre à jour l’extension ?",
+ "updateExtensionConsentTitle": "Mettre à jour l’extension {0}",
"updateExtensionStart": "La mise à jour de l'extension {0} vers la version {1} a commencé.",
- "updateToLatestVersion": "Mettre à jour vers {0}",
- "updateToTargetPlatformVersion": "Mettez à jour vers la version {0}.",
"updated": "Mise à jour terminée",
- "workbench.extensions.action.clearLanguage": "Effacer la langue d’affichage",
+ "verification failed": "Désolé... Nous ne pouvons pas installer l’extension « {0} », car {1} ne peut pas vérifier la signature de l’extension",
+ "workbench.extensions.action.clearLanguage": "Effacer le langage d’affichage",
"workbench.extensions.action.setColorTheme": "Définir le thème de couleur",
- "workbench.extensions.action.setDisplayLanguage": "Définir la langue d’affichage",
+ "workbench.extensions.action.setDisplayLanguage": "Définir le langage d’affichage",
"workbench.extensions.action.setFileIconTheme": "Définir le thème des icônes de fichier",
"workbench.extensions.action.setProductIconTheme": "Définir le thème de l'icône de produit",
"workspace disabled": "Cette extension est désactivée pour cet espace de travail par l'utilisateur.",
@@ -5881,6 +9558,7 @@
"installCountIcon": "Icône affichée avec le nombre d'installations dans la vue et l'éditeur d'extensions.",
"installLocalInRemoteIcon": "Icône de l'action Installer les extensions distantes localement dans la vue des extensions.",
"installWorkspaceRecommendedIcon": "Icône de l'action Installer les extensions recommandées pour l'espace de travail dans la vue des extensions.",
+ "lockIcon": "Icône affichée pour les extensions privées dans la vue et l’éditeur d’extensions.",
"manageExtensionIcon": "Icône de l'action Gérer dans la vue des extensions.",
"preReleaseIcon": "Icône affichée pour les extensions ayant des versions préliminaires dans la vue et l’éditeur d’extensions",
"ratingIcon": "Icône affichée avec l'évaluation dans la vue et l'éditeur d'extensions.",
@@ -5893,7 +9571,6 @@
"syncEnabledIcon": "Icône permettant d'indiquer qu'une extension est synchronisée.",
"syncIgnoredIcon": "Icône permettant d'indiquer qu'une extension est ignorée au moment de la synchronisation.",
"trustIcon": "Icône affichée avec un message sur la fiabilité de l'espace de travail dans l'éditeur d'extensions.",
- "verifiedPublisher": "Icône utilisée pour l’éditeur d’extension vérifié dans la vue et l’éditeur d’extensions.",
"warningIcon": "Icône affichée avec un message d'avertissement dans l'éditeur d'extensions."
},
"vs/workbench/contrib/extensions/browser/extensionsQuickAccess": {
@@ -5905,40 +9582,57 @@
"vs/workbench/contrib/extensions/browser/extensionsViewer": {
"Unknown Extension": "Extension inconnue :",
"error": "Erreur",
- "extension.arialabel": "{0}, {1}, {2}, {3}",
+ "extension.arialabel.deprecated": "Déconseillé",
+ "extension.arialabel.publisher": "{0} éditeur",
+ "extension.arialabel.rating": "Évaluation {0} sur 5 étoiles par {1} utilisateurs",
+ "extension.arialabel.verifiedPublisher": "{0} éditeur vérifié",
"extensions": "Extensions"
},
"vs/workbench/contrib/extensions/browser/extensionsViewlet": {
+ "access denied": "Votre compte n’a pas accès à la Place de marché des extensions. Veuillez contacter votre administrateur(-trice).",
+ "accessDenied": "Accès refusé à la place de marché",
+ "availableUpdates": "Mises à jour disponibles",
"builtInThemesExtensions": "Thèmes",
"builtin": "Intégré",
"builtinFeatureExtensions": "Fonctionnalités",
"builtinProgrammingLanguageExtensions": "Langages de programmation",
+ "click show": "Cliquer pour afficher",
"deprecated": "Déconseillé",
"disabled": "Désactivé",
"disabledExtensions": "Désactivé",
+ "dismiss": "Ignorer",
"enabled": "Activé",
"enabledExtensions": "Activé",
"extensionFound": "1 extension trouvée.",
"extensionFoundInSection": "1 extension trouvée dans la section {0}.",
+ "extensionToReload": "{0} nécessite un redémarrage",
+ "extensionToUpdate": "{0} nécessite une mise à jour",
"extensionsFound": "{0} extensions trouvées.",
"extensionsFoundInSection": "{0} extensions trouvées dans la section {1}.",
+ "extensionsToReload": "{0} nécessitent un redémarrage",
+ "extensionsToUpdate": "{0} nécessitent une mise à jour",
"install remote in local": "Installer les extensions distantes localement...",
"installed": "Installé",
- "malicious warning": "Nous avons désinstallé '{0}' qui a été signalé comme problématique.",
+ "learnMore": "Découvrir plus d’informations",
+ "malicious warning": "L’extension « {0} » a été identifiée comme problématique et a été désinstallée",
"marketPlace": "Place de marché",
"open user settings": "Ouvrir les paramètres utilisateur",
"otherRecommendedExtensions": "Autres recommandations",
- "outdated": "Obsolète",
- "outdatedExtensions": "{0} extensions obsolètes",
"popularExtensions": "Populaire",
+ "recently updated": "Mise à jour récente",
"recommendedExtensions": "Recommandées",
"reloadNow": "Recharger maintenant",
"remote": "À distance",
+ "restartNow": "Redémarrer les extensions",
"searchExtensions": "Rechercher des extensions dans la Place de marché",
"select and install local extensions": "Installer les extensions locales dans '{0}'...",
+ "show": "Afficher",
+ "sign in": "[Connectez-vous pour accéder à la place de marché des extensions]({0})",
+ "sign in enterprise marketplace": "Connectez-vous pour accéder à la place de marché",
+ "signInRequired": "Connexion requise pour accéder à la place de marché",
"suggestProxyError": "Marketplace a retourné 'ECONNREFUSED'. Vérifiez le paramètre 'http.proxy'.",
- "untrustedPartiallySupportedExtensions": "Limitée en mode restreint",
- "untrustedUnsupportedExtensions": "Désactivé en mode restreint",
+ "untrustedPartiallySupportedExtensions": "Limitée en mode Restreint",
+ "untrustedUnsupportedExtensions": "Désactivé en mode Restreint",
"virtualPartiallySupportedExtensions": "Limitée dans les espaces de travail virtuels",
"virtualUnsupportedExtensions": "Désactivée dans les espaces de travail virtuels",
"workspaceRecommendedExtensions": "Recommandations d'espace de travail",
@@ -5946,27 +9640,28 @@
},
"vs/workbench/contrib/extensions/browser/extensionsViews": {
"error": "Erreur lors de la récupération des extensions. {0}",
- "extension.arialabel.deprecated": "Déconseillé",
- "extension.arialabel.publihser": "{0}serveur de publication",
- "extensions": "Extensions",
"no extensions found": "Extensions introuvables.",
"no local extensions": "Il n'y a aucune extension à installer.",
"offline error": "Impossible de rechercher dans la Place de marché en mode hors connexion. Vérifiez votre connexion réseau.",
- "open user settings": "Ouvrir les paramètres utilisateur",
- "suggestProxyError": "Marketplace a retourné 'ECONNREFUSED'. Vérifiez le paramètre 'http.proxy'."
+ "showing local extensions only": "{0} Affichage des extensions locales.",
+ "showingExtensionsForFeature": "Extensions qui ont utilisé {0} au cours des 30 derniers jours"
},
"vs/workbench/contrib/extensions/browser/extensionsWidgets": {
"Show prerelease version": "Version précommerciale",
- "activation": "Heure de l'activation",
- "dependencies": "Afficher les dépendances",
+ "activation": "Heure d'activation",
+ "extensionIcon.private": "Couleur d’icône des extensions privées.",
"extensionIcon.sponsorForeground": "Couleur d’icône pour le sponsor d’extension.",
"extensionIconStarForeground": "Couleur de l'icône des évaluations des extensions.",
- "extensionIconVerifiedForeground": "La couleur de l'icône de l'éditeur vérifié de l'extension.",
"extensionPreReleaseForeground": "Couleur d’icône de l’extension de préversion.",
+ "feature access label": "{0} dem.",
+ "feature usage label": "{0} utilisation",
"has prerelease": "Cette extension a un {0} disponible.",
+ "install count": "Nombre d'installations",
+ "local extension": "Extension locale",
"message": "1 message",
"messages": "{0} messages",
- "pre-release-label": "Version précommercialisée",
+ "privateExtension": "Extension privée",
+ "publisher": "Serveur de publication ({0})",
"publisher verified tooltip": "Cet éditeur a vérifié la propriété de {0}.",
"ratedLabel": "Évaluation moyenne : {0} sur 5",
"recommendationHasBeenIgnored": "Vous avez choisi de ne pas recevoir de recommandations pour cette extension.",
@@ -5974,27 +9669,92 @@
"sponsor": "1. COMMANDITAIRE",
"startup": "Démarrage",
"syncingore.label": "Cette extension est ignorée pendant la synchronisation.",
+ "total": "{0} {1} demandes au cours des 30 derniers jours)",
"uncaught error": "1 erreur non interceptée",
- "uncaught errors": "{0} erreurs non détectées"
+ "uncaught errors": "{0} erreurs non détectées",
+ "updateRequired": "Dernière version :",
+ "verified publisher": "Cet éditeur a vérifié la propriété de {0}.",
+ "workspace extension": "Extension de l’espace de travail"
},
"vs/workbench/contrib/extensions/browser/extensionsWorkbenchService": {
"Manifest is not found": "Le manifeste n’a pas été trouvé",
+ "allplatforms": "Toutes les plateformes",
+ "cannot be installed": "Impossible d'installer l'extension '{0}', car elle est déclarée comme n'étant pas disponible dans cette configuration.",
+ "confirmDisableAutoUpdate": "Voulez-vous désactiver la mise à jour automatique pour toutes les extensions ?",
+ "confirmEnableAutoUpdate": "Voulez-vous activer la mise à jour automatique pour toutes les extensions ?",
+ "confirmEnableDisableAutoUpdate": "Mise à jour automatique des extensions",
+ "confirmEnableDisableAutoUpdateDetail": "Cette opération réinitialise les paramètres de mise à jour automatique que vous avez définis pour les extensions individuelles.",
+ "consentRequiredToUpdate": "La mise à jour pour {0} extension introduit du code exécutable, qui n’est pas présent dans la version actuellement installée.",
+ "consentRequiredToUpdateRepublishedExtension": "Les métadonnées du marketplace de cette extension ont changé, probablement en raison d'une republication.",
+ "deprecated extensions": "Des extensions déconseillées ont été détectées. Passez-les en revue et effectuez une migration vers des alternatives.",
"disable all": "Tout désactiver",
- "installing extension": "Installation de l'extension...",
- "installing named extension": "Installation de l'extension '{0}'...",
+ "disableDependents": "Désactiver l’extension avec Dependents",
+ "disallowed": "Cette extension n’est pas autorisée à être installée.",
+ "disallowed extensions": "Some extensions are disabled because they are configured not to be allowed.",
+ "disallowed extensions by policy": "Some extensions are disabled because they are not allowed by your system administrator.",
+ "download": "Télécharger",
+ "download title": "Sélectionner le dossier pour télécharger le VSIX",
+ "download.completed": "Le VSIX a été téléchargé",
+ "download.failed": "Erreur lors du téléchargement de VSIX : {0}",
+ "downloading...": "Téléchargement de VSIX...",
+ "enable locally": "Veuillez {0} pour activer cette extension localement.",
+ "enable remote": "Veuillez {0} pour activer cette extension dans {1}.",
+ "enableButtonLabel": "&&Activer l'extension",
+ "enableButtonLabelWithAction": "&&Activer l’extension et {0}",
+ "enableExtensionMessage": "Voulez-vous activer l’extension «{0}» ?",
+ "enableExtensionTitle": "Activer l'extension",
+ "extension not found": "Extension '{0}' introuvable.",
+ "extensionsAutoRestart": "Les extensions ont été redémarrées automatiquement pour activer les mises à jour.",
+ "incompatible": "Impossible d’installer l’extension «{0}», car elle n’est pas compatible.",
+ "incompatibleExtensions": "Certaines extensions sont désactivées en raison d’une incompatibilité de version. Passez-les en revue et mettez-les à jour.",
+ "installButtonLabel": "&&Installer l’extension",
+ "installButtonLabelWithAction": "&&Installer l’extension et {0}",
+ "installExtensionMessage": "Voulez-vous installer l’extension «{0}» à partir de «{1}» ?",
+ "installExtensionTitle": "Installer l’extension",
+ "installVSIXMessage": "Voulez-vous installer l’extension ?",
+ "installing extension": "Installation de l’extension...",
+ "installing named extension": "Installation de l’extension « {0} »...",
+ "invalidExtensions": "Des extensions non valides ont été détectées. Passez-les en revue.",
"malicious": "Cette extension est signalée comme étant problématique.",
"multipleDependentsError": "Impossible de désactiver seulement l'extension '{0}'. '{1}', '{2}' et d'autres extensions en dépendent. Voulez-vous désactiver toutes ces extensions ?",
- "not found": "Impossible d’installer l’extension « {0} », car la version demandée « {1} » est introuvable.",
+ "multipleDependentsUninstallError": "Impossible de désinstaller l’extension «{0}» seule. «{1}», «{2}» et d’autres extensions en dépendent. Voulez-vous désinstaller toutes ces extensions ?",
+ "no versions": "Cette extension n’a pas d’autres versions.",
+ "not an extension": "L’objet fourni n’est pas une extension.",
+ "not found": "Nous ne pouvons pas installer l’extension « {0} » car elle est introuvable.",
+ "not found version": "Nous ne pouvons pas installer l’extension « {0} » car la version demandée « {1} » est introuvable.",
+ "not signed": "Cette extension n’est pas signée.",
+ "open": "Ouvrir l'extension",
+ "platform placeholder": "Sélectionnez la plateforme pour laquelle vous souhaitez télécharger le VSIX",
+ "postDisableTooltip": "Veuillez {0} pour désactiver cette extension.",
+ "postEnableTooltip": "Veuillez {0} pour activer cette extension.",
+ "postUninstallTooltip": "Veuillez {0} pour terminer la désinstallation de cette extension.",
+ "postUpdateDownloadTooltip": "Mettez à jour {0} pour activer l’extension mise à jour.",
+ "postUpdateRestartTooltip": "Redémarrez {0} pour activer l’extension mise à jour.",
+ "postUpdateTooltip": "Veuillez {0} pour activer l’extension mise à jour.",
+ "postUpdateUpdateTooltip": "Mettez à jour {0} pour activer l’extension mise à jour.",
+ "pre-release": "version préliminaire",
+ "reload": "fenêtre de rechargement",
+ "report issue": "Si ce problème persiste, veuillez le signaler à l’adresse {0}",
+ "restart": "Modification de l’activation des extensions",
+ "restart extensions": "redémarrer les extensions",
+ "selectVersion": "Sélectionner la version à télécharger",
"singleDependentError": "Impossible de désactiver seulement l'extension '{0}'. L'extension '{1}' en dépend. Voulez-vous désactiver toutes ces extensions ?",
+ "singleDependentUninstallError": "Impossible de désinstaller l’extension '{0}' seule. L’extension '{1}' en dépend. Voulez-vous désinstaller toutes ces extensions ?",
+ "sync extension": "Synchroniser cette extension",
"twoDependentsError": "Impossible de désactiver seulement l'extension '{0}'. Les extensions '{1}' et '{2}' en dépendent. Voulez-vous désactiver toutes ces extensions ?",
- "uninstallingExtension": "Désinstallation d'extension..."
+ "twoDependentsUninstallError": "Impossible de désinstaller l’extension «{0}» seule. Les extensions «{1}» et «{2}» en dépendent. Voulez-vous désinstaller toutes ces extensions ?",
+ "uninstallAll": "Désinstaller tout",
+ "uninstallAllProfiles": "Désinstaller (tous les profils)",
+ "uninstallApplicationScoped": "Désinstaller l’extension",
+ "uninstallApplicationScopedMessage": "Voulez-vous désinstaller {0} de tous les profils ?",
+ "uninstallDependents": "Désinstaller l’extension avec Dependents",
+ "uninstallingExtension": "Désinstallation de l’extension...",
+ "unknown": "Impossible d’installer l’extension",
+ "updatingExtensions": "Mise à jour de l’état de la mise à jour automatique des extensions"
},
"vs/workbench/contrib/extensions/browser/fileBasedRecommendations": {
- "dontShowAgainExtension": "Ne plus afficher pour les fichiers '.{0}'",
"fileBasedRecommendation": "Cette extension est recommandée d'après les fichiers que vous avez ouverts récemment.",
- "reallyRecommended": "Voulez-vous installer les extensions recommandées pour {0} ?",
- "searchMarketplace": "Rechercher sur Marketplace",
- "showLanguageExtensions": "Marketplace dispose d'extensions utiles pour les fichiers '.{0}'"
+ "languageName": "le langage {0}"
},
"vs/workbench/contrib/extensions/browser/webRecommendations": {
"reason": "Cette extension est recommandée pour {0} pour le web"
@@ -6002,6 +9762,9 @@
"vs/workbench/contrib/extensions/browser/workspaceRecommendations": {
"workspaceRecommendation": "Cette extension est recommandée par les utilisateurs de l'espace de travail actuel."
},
+ "vs/workbench/contrib/extensions/common/extensions": {
+ "extensions": "Extensions"
+ },
"vs/workbench/contrib/extensions/common/extensionsFileTemplate": {
"app.extension.identifier.errorMessage": "Format attendu : '${publisher}.${name}'. Exemple : 'vscode.csharp'.",
"app.extensions.json.recommendations": "Liste des extensions qui doivent être recommandées pour les utilisateurs de cet espace de travail. L'identificateur d'une extension est toujours '${publisher}.${name}'. Par exemple : 'vscode.csharp'.",
@@ -6009,6 +9772,7 @@
"app.extensions.json.unwantedRecommendations": "Liste des extensions recommandées par VS Code qui ne doivent pas être recommandées pour les utilisateurs de cet espace de travail. L'identificateur d'une extension est toujours '${publisher}.${name}'. Par exemple : 'vscode.csharp'."
},
"vs/workbench/contrib/extensions/common/extensionsInput": {
+ "extensionsEditorLabelIcon": "Icône de l’étiquette de l’éditeur d’extensions.",
"extensionsInputName": "Extension : {0}"
},
"vs/workbench/contrib/extensions/common/extensionsUtils": {
@@ -6016,19 +9780,37 @@
"no": "Non",
"yes": "Oui"
},
- "vs/workbench/contrib/extensions/common/runtimeExtensionsInput": {
- "extensionsInputName": "Exécution des extensions"
+ "vs/workbench/contrib/extensions/common/installExtensionsTool": {
+ "installExtensionsTool.confirmationMessage": "Passez en revue les extensions suggérées et cliquez sur le bouton **Installer** pour chaque extension que vous souhaitez ajouter. Une fois l’installation des extensions sélectionnées terminée, cliquez sur **Continuer** pour poursuivre.",
+ "installExtensionsTool.confirmationTitle": "Installer les extensions",
+ "installExtensionsTool.displayName": "Installer les extensions",
+ "installExtensionsTool.noResultMessage": "Aucune extension n'a été installée.",
+ "installExtensionsTool.resultMessage": "Les extensions suivantes sont installées : {0}",
+ "installExtensionsTool.userDescription": "Outil d'installation des extensions"
},
- "vs/workbench/contrib/extensions/electron-sandbox/debugExtensionHostAction": {
- "cancel": "&&Annuler",
- "debugExtensionHost": "Démarrer le débogage d'hôte d'Extension",
- "debugExtensionHost.launch.name": "Attacher l'hôte d'extension",
- "restart1": "Profiler les extensions",
- "restart2": "Pour profiler les extensions, un redémarrage est nécessaire. Voulez-vous redémarrer '{0}' maintenant ?",
- "restart3": "&&Redémarrer"
+ "vs/workbench/contrib/extensions/common/reportExtensionIssueAction": {
+ "reportExtensionIssue": "Signaler un problème"
},
- "vs/workbench/contrib/extensions/electron-sandbox/extensionProfileService": {
- "cancel": "&&Annuler",
+ "vs/workbench/contrib/extensions/common/runtimeExtensionsInput": {
+ "extensionsInputName": "Exécution des extensions",
+ "runtimeExtensionEditorLabelIcon": "Icône de l’étiquette de l’éditeur d’extensions de runtime."
+ },
+ "vs/workbench/contrib/extensions/common/searchExtensionsTool": {
+ "searchExtensionsTool.displayName": "Rechercher des extensions",
+ "searchExtensionsTool.noInput": "Veuillez fournir une catégorie ou un mot-clé à rechercher.",
+ "searchExtensionsTool.userDescription": "Recherchez des extensions VS Code"
+ },
+ "vs/workbench/contrib/extensions/electron-browser/debugExtensionHostAction": {
+ "debugExtensionHost": "Déboguer l’hôte d’extension dans une nouvelle fenêtre",
+ "debugExtensionHost.launch.name": "Joindre un hôte d’extension",
+ "debugExtensionHost.progress": "Association du débogueur à l’hôte d’extension",
+ "openDevToolsForExtensionHost": "Déboguer l’hôte d’extension dans des outils de développement",
+ "restart1": "Déboguer les extensions",
+ "restart2": "Pour déboguer les extensions, un redémarrage est nécessaire. Voulez-vous redémarrer « {0} » maintenant ?",
+ "restart3": "&&Redémarrer",
+ "selectExtensionHost": "Sélectionner l’hôte d’extension"
+ },
+ "vs/workbench/contrib/extensions/electron-browser/extensionProfileService": {
"profilingExtensionHost": "Hôte d'extension de profilage",
"profilingExtensionHostTime": "Profilage de l'hôte d'extension ({0} sec)",
"restart1": "Profiler les extensions",
@@ -6037,17 +9819,18 @@
"selectAndStartDebug": "Cliquer pour arrêter le profilage",
"status.profiler": "Profileur d'extension"
},
- "vs/workbench/contrib/extensions/electron-sandbox/extensions.contribution": {
- "runtimeExtension": "Extensions en cours d'exécution"
+ "vs/workbench/contrib/extensions/electron-browser/extensions.contribution": {
+ "runtimeExtension": "Exécution des extensions"
},
- "vs/workbench/contrib/extensions/electron-sandbox/extensionsActions": {
+ "vs/workbench/contrib/extensions/electron-browser/extensionsActions": {
+ "cleanUpExtensionsFolder": "Nettoyer le dossier d’extensions",
"openExtensionsFolder": "Ouvrir le dossier d'extensions"
},
- "vs/workbench/contrib/extensions/electron-sandbox/extensionsAutoProfiler": {
+ "vs/workbench/contrib/extensions/electron-browser/extensionsAutoProfiler": {
"show": "Afficher les extensions",
"unresponsive-exthost": "L'extension '{0}' a mis très longtemps à exécuter sa dernière opération et a empêché l'exécution d'autres extensions."
},
- "vs/workbench/contrib/extensions/electron-sandbox/extensionsSlowActions": {
+ "vs/workbench/contrib/extensions/electron-browser/extensionsSlowActions": {
"attach.msg": "Il s'agit d'un rappel pour vérifier que vous n'avez pas oublié d'attacher '{0}' au problème que vous venez de créer.",
"attach.msg2": "Il s'agit d'un rappel pour vérifier que vous n'avez pas oublié d'attacher '{0}' à un problème de performance existant.",
"attach.title": "Avez-vous attaché le profil du processeur ?",
@@ -6055,30 +9838,28 @@
"cmd.reportOrShow": "Problème de performance",
"cmd.show": "Afficher les problèmes"
},
- "vs/workbench/contrib/extensions/electron-sandbox/reportExtensionIssueAction": {
- "reportExtensionIssue": "Signaler un problème"
- },
- "vs/workbench/contrib/extensions/electron-sandbox/runtimeExtensionsEditor": {
+ "vs/workbench/contrib/extensions/electron-browser/runtimeExtensionsEditor": {
"extensionHostProfileStart": "Démarrer le profilage d'hôte d'extension",
+ "openExtensionHostProfile": "Ouvrir un profil d’hôte d’extension",
"saveExtensionHostProfile": "Enregistrer le profilage d'hôte d'extension",
"saveprofile.dialogTitle": "Enregistrer le profilage d'hôte d'extension",
- "saveprofile.saveButton": "Enregistrer",
"stopExtensionHostProfileStart": "Arrêter le profilage d'hôte d'extension"
},
"vs/workbench/contrib/externalTerminal/browser/externalTerminal.contribution": {
- "scopedConsoleAction": "Ouvrir dans Terminal",
+ "scopedConsoleAction.Integrated": "Ouvrir dans le terminal intégré",
"scopedConsoleAction.external": "Ouvrir dans un terminal externe",
- "scopedConsoleAction.integrated": "Ouvrir dans le terminal intégré",
"scopedConsoleAction.wt": "Ouvrir dans le Terminal Windows"
},
- "vs/workbench/contrib/externalTerminal/electron-sandbox/externalTerminal.contribution": {
- "explorer.openInTerminalKind": "Lors de l'ouverture d'un fichier depuis l'explorateur dans un terminal, détermine le type de terminal qui sera lancé.",
+ "vs/workbench/contrib/externalTerminal/electron-browser/externalTerminal.contribution": {
+ "explorer.openInTerminalKind": "Lors de l’ouverture d’un fichier depuis l’explorateur dans un terminal, détermine le type de terminal qui sera lancé.",
"globalConsoleAction": "Ouvrir un nouveau terminal externe",
- "terminal.explorerKind.external": "Utiliser le terminal externe configuré.",
- "terminal.explorerKind.integrated": "Utiliser le terminal intégré de VS Code.",
+ "sourceControlRepositories.openInTerminalKind": "Détermine le type de terminal qui sera lancé lors de l’ouverture d’un référentiel à partir de la vue Référentiels de contrôle de code source dans un terminal",
"terminal.external.linuxExec": "Personnalise le terminal à exécuter sur Linux.",
"terminal.external.osxExec": "Personnalise l’application de terminal à exécuter sur macOS.",
"terminal.external.windowsExec": "Personnalise le terminal à exécuter sur Windows.",
+ "terminal.kind.both": "Affichez à la fois les actions de terminal intégrées et externes.",
+ "terminal.kind.external": "Affichez l’action du terminal externe.",
+ "terminal.kind.integrated": "Affichez l’action du terminal intégré.",
"terminalConfigurationTitle": "Terminal externe"
},
"vs/workbench/contrib/externalUriOpener/common/configuration": {
@@ -6120,16 +9901,17 @@
},
"vs/workbench/contrib/files/browser/editors/textFileEditor": {
"createFile": "Créer un fichier",
- "fileIsDirectoryError": "Le fichier est un répertoire",
- "fileNotFoundError": "Fichier introuvable",
- "ok": "OK",
- "reveal": "Afficher en mode Explorateur",
- "textFileEditor": "Éditeur de fichiers texte"
+ "fileIsDirectory": "Le fichier n’est pas affiché dans l’éditeur de texte, parce qu’il s’agit d’un répertoire.",
+ "fileTooLargeForHeapErrorWithSize": "Le fichier n’est pas affiché dans l’éditeur de texte, parce qu’il est très volumineux ({0}).",
+ "fileTooLargeForHeapErrorWithoutSize": "Le fichier n’est pas affiché dans l’éditeur de texte, parce qu’il est très volumineux.",
+ "openFolder": "Ouvrir un dossier",
+ "reveal": "Révéler un dossier",
+ "textFileEditor": "Éditeur de fichiers texte",
+ "unavailableResourceErrorEditorText": "Impossible d’ouvrir l’éditeur, car le fichier est introuvable."
},
"vs/workbench/contrib/files/browser/editors/textFileSaveErrorHandler": {
"compareChanges": "Comparer",
"configure": "Configurer",
- "discard": "Ignorer",
"dontShowAgain": "Ne plus afficher",
"genericSaveError": "Échec de l'enregistrement de '{0}' : {1}",
"learnMore": "En savoir plus",
@@ -6142,6 +9924,7 @@
"readonlySaveErrorAdmin": "L'enregistrement de '{0}' a échoué : le fichier est en lecture seule. Sélectionnez 'Remplacer en tant qu'administrateur' pour réessayer en tant qu'administrateur.",
"readonlySaveErrorSudo": "L'enregistrement de '{0}' a échoué : le fichier est en lecture seule. Sélectionnez 'Remplacer en tant que Sudo' pour réessayer en tant que superutilisateur.",
"retry": "Réessayer",
+ "revert": "Rétablir",
"saveConflictDiffLabel": "{0} (dans le fichier) ↔ {1} (dans {2}) - Résoudre le conflit d'enregistrement",
"saveElevated": "Réessayer en tant qu'Admin...",
"saveElevatedSudo": "Réessayer en tant que Sudo...",
@@ -6167,7 +9950,11 @@
"binFailed": "Impossible de supprimer en utilisant la corbeille. Voulez-vous supprimer définitivement à la place ?",
"clipboardComparisonLabel": "Presse-papier ↔ {0}",
"closeGroup": "Fermer le groupe",
+ "compareFileWithMeta": "Ouvre un sélecteur pour sélectionner un fichier à diff avec l’éditeur actif.",
+ "compareNewUntitledTextFiles": "Comparer les nouveaux fichiers texte sans titre",
+ "compareNewUntitledTextFilesMeta": "Ouvre un nouvel éditeur de diff avec deux fichiers sans titre.",
"compareWithClipboard": "Compare le fichier actif avec le presse-papiers",
+ "compareWithClipboardMeta": "Ouvre un nouvel éditeur de diff pour comparer le fichier actif au contenu du Presse-papiers.",
"confirmDeleteMessageFile": "Voulez-vous vraiment supprimer définitivement '{0}' ?",
"confirmDeleteMessageFilesAndDirectories": "Voulez-vous vraiment supprimer définitivement les {0} fichiers/répertoires suivants et leur contenu ?",
"confirmDeleteMessageFolder": "Voulez-vous vraiment supprimer définitivement '{0}' et son contenu ?",
@@ -6178,6 +9965,11 @@
"confirmMoveTrashMessageFolder": "Voulez-vous vraiment supprimer '{0}' et son contenu ?",
"confirmMoveTrashMessageMultiple": "Êtes-vous sûr de vouloir supprimer les fichiers {0} suivants ?",
"confirmMoveTrashMessageMultipleDirectories": "Voulez-vous vraiment supprimer les {0} répertoires suivants et leur contenu ?",
+ "confirmMultiPasteNative": "Êtes-vous sûr de vouloir coller les éléments {0} suivants ?",
+ "confirmOverwrite": "Un fichier ou un dossier avec le nom '{0}' existe déjà dans le dossier de destination. Voulez-vous le remplacer ?",
+ "confirmPasteNative": "Etes-vous sûr de vouloir coller « {0} » ?",
+ "continueButtonLabel": "Continuer",
+ "continueDetail": "La protection en lecture seule sera remplacée si vous continuez.",
"copyBulkEdit": "Coller {0} fichiers",
"copyFile": "Copier",
"copyFileBulkEdit": "Coller {0}",
@@ -6208,6 +10000,7 @@
"fileNameStartsWithSlashError": "Un nom de fichier ou de dossier ne peut commencer par une barre oblique.",
"fileNameWhitespaceWarning": "Espace blanc de début ou de fin détecté dans le nom de fichier ou de dossier.",
"focusFilesExplorer": "Focus sur l'Explorateur de fichiers",
+ "focusFilesExplorerMetadata": "Déplace le focus vers le conteneur d’affichage de l’Explorateur de fichiers.",
"globalCompareFile": "Comparer le fichier actif à...",
"invalidFileNameError": "Le nom **{0}** est non valide en tant que nom de fichier ou de dossier. Choisissez un autre nom.",
"irreversible": "Cette action est irréversible !",
@@ -6215,27 +10008,39 @@
"moveFileBulkEdit": "Déplacer {0}",
"movingBulkEdit": "Déplacement de {0} fichiers",
"movingFileBulkEdit": "Déplacement de {0}",
- "newFile": "Nouveau fichier",
- "newFolder": "Nouveau dossier",
- "openFileInNewWindow": "Ouvrir le fichier actif dans une nouvelle fenêtre",
+ "newFile": "Nouveau fichier...",
+ "newFolder": "Nouveau dossier...",
+ "openFileInEmptyWorkspace": "Ouvrir l’Éditeur actif dans un nouvel espace de travail vide",
+ "openFileInEmptyWorkspaceMetadata": "Ouvre l’Éditeur actif dans une nouvelle fenêtre sans dossier ouvert.",
"openFileToShowInNewWindow.unsupportedschema": "L'éditeur actif doit contenir une ressource ouvrable.",
+ "pasteButtonLabel": "&&Coller",
"pasteFile": "Coller",
- "rename": "Renommer",
+ "readonlyMessageFilesDelete": "Vous supprimez les fichiers configurés pour être en lecture seule. Voulez-vous continuer ?",
+ "readonlyMessageFolderDelete": "Vous supprimez un fichier {0} configuré pour être en lecture seule. Voulez-vous continuer ?",
+ "readonlyMessageFolderOneDelete": "Vous supprimez un dossier {0} configuré pour être en lecture seule. Voulez-vous continuer ?",
+ "rename": "Renommer...",
"renameBulkEdit": "Renommer {0} en {1}",
"renamingBulkEdit": "Changement du nom de {0} en {1}",
- "restore": "Vous pouvez restaurer ce fichier à l'aide de la commande Annuler",
- "restorePlural": "Vous pouvez restaurer ces fichiers à l'aide de la commande Annuler",
+ "replaceButtonLabel": "&&Remplacer",
+ "resetActiveEditorReadonlyInSession": "Réinitialiser l’éditeur actif en lecture seule dans la session",
+ "restore": "Vous pouvez restaurer ce fichier à l'aide de la commande Annuler.",
+ "restorePlural": "Vous pouvez restaurer ces fichiers à l'aide de la commande Annuler.",
"retry": "Réessayer",
"retryButtonLabel": "&&Réessayer",
"saveAllInGroup": "Tout enregistrer dans le groupe",
+ "setActiveEditorReadonlyInSession": "Définir l’éditeur actif en lecture seule dans la session",
+ "setActiveEditorWriteableInSession": "Définir l’éditeur actif accessible en écriture dans la session",
"showInExplorer": "Révéler un fichier actif en mode Explorateur",
+ "showInExplorerMetadata": "Affiche et sélectionne le fichier actif dans la vue de l’Explorer.",
+ "toggleActiveEditorReadonlyInSession": "Activez/désactivez l’éditeur actif en lecture seule dans la session",
"toggleAutoSave": "Activer/désactiver la sauvegarde automatique",
+ "toggleAutoSaveDescription": "Activer la possibilité d'enregistrer automatiquement les fichiers après la saisie",
"trashFailed": "Impossible de supprimer en utilisant la corbeille. Voulez-vous supprimer définitivement à la place ?",
"undoBin": "Vous pouvez restaurer ce fichier à partir de la corbeille.",
"undoBinFiles": "Vous pouvez restaurer ces fichiers à partir de la corbeille.",
"undoTrash": "Vous pouvez restaurer ce fichier à partir de la corbeille.",
"undoTrashFiles": "Vous pouvez restaurer ces fichiers à partir de la corbeille.",
- "upload": "Télécharger..."
+ "upload": "Charger..."
},
"vs/workbench/contrib/files/browser/fileActions.contribution": {
"acceptLocalChanges": "Utiliser vos changements et remplacer le contenu du fichier",
@@ -6244,6 +10049,7 @@
"closeOthers": "Fermer les autres",
"closeSaved": "Fermer la version sauvegardée",
"compareActiveWithSaved": "Compare le fichier actif avec celui enregistré",
+ "compareActiveWithSavedMeta": "Ouvre un nouvel éditeur diff pour comparer le fichier actif à la version sur le disque.",
"compareSelected": "Comparer ce qui est sélectionné",
"compareSource": "Sélectionner pour comparer",
"compareWithSaved": "Comparer avec celui enregistré",
@@ -6255,7 +10061,6 @@
"cut": "Couper",
"deleteFile": "Supprimer définitivement",
"explorerOpenWith": "Ouvrir avec...",
- "filesCategory": "Fichier",
"miAutoSave": "Enregistrement a&&utomatique",
"miCloseEditor": "Fermer l'édit&&eur",
"miGotoFile": "Atteindre le &&fichier...",
@@ -6265,8 +10070,10 @@
"miSaveAll": "Enregistrer to&&ut",
"miSaveAs": "Enregistrer &&sous...",
"newFile": "Nouveau fichier texte",
+ "newFolderDescription": "Créer un nouveau dossier ou répertoire",
"openFile": "Ouvrir un fichier...",
"openToSide": "Ouvrir sur le côté",
+ "reopenWith": "Rouvrir l'éditeur avec...",
"revealInSideBar": "Afficher en mode Explorateur",
"revert": "Rétablir le fichier",
"revertLocalChanges": "Ignorer vos changements et rétablir le contenu du fichier",
@@ -6275,15 +10082,16 @@
"saveFiles": "Enregistrer tous les fichiers"
},
"vs/workbench/contrib/files/browser/fileCommands": {
- "discard": "Abandonner",
"genericRevertError": "Échec pour faire revenir '{0}' : {1}",
"genericSaveError": "Échec de l'enregistrement de '{0}' : {1}",
"modifiedLabel": "{0} (dans le fichier) ↔ {1}",
"newFileCommand.saveLabel": "Créer un fichier",
- "retry": "Réessayer"
+ "retry": "Réessayer",
+ "revert": "Rétablir",
+ "revertAll": "Tout rétablir"
},
"vs/workbench/contrib/files/browser/fileConstants": {
- "newUntitledFile": "Nouveau fichier sans titre",
+ "newUntitledFile": "Nouveau fichier texte sans titre",
"removeFolderFromWorkspace": "Supprimer le dossier de l'espace de travail",
"save": "Enregistrer",
"saveAll": "Tout enregistrer",
@@ -6293,7 +10101,6 @@
"vs/workbench/contrib/files/browser/fileImportExport": {
"addFolder": "&&Ajouter le dossier à l'espace de travail",
"addFolders": "&&Ajouter des dossiers à l'espace de travail",
- "cancel": "Annuler",
"chooseWhereToDownload": "Choisir l'emplacement de téléchargement",
"confirmManyOverwrites": "Les fichiers et/ou dossiers {0} suivants existent déjà dans le dossier de destination. Voulez-vous les remplacer ?",
"confirmOverwrite": "Un fichier ou un dossier avec le nom '{0}' existe déjà dans le dossier de destination. Voulez-vous le remplacer ?",
@@ -6326,25 +10133,37 @@
},
"vs/workbench/contrib/files/browser/files.contribution": {
"askUser": "Refuse l'enregistrement et demande la résolution manuelle du conflit d'enregistrement.",
- "associations": "Configurez les associations entre les fichiers et les langages (exemple : \"*.extension\": \"html\"`). Celles-ci sont prioritaires sur les associations par défaut des langages installés. ",
- "autoGuessEncoding": "Lorsque cette option est activée, l’éditeur tente de deviner l’encodage du jeu de caractères lors de l’ouverture des fichiers. Ce paramètre peut également être configuré par langue. Notez que ce paramètre n’est pas respecté par la recherche de texte. Seuls les {0} sont respectés.",
+ "associations": "Configurez des [modèles Glob](https://aka.ms/vscode-glob-patterns) d’associations de fichiers vers des langages (par exemple, « *.extension » : « html »). Les modèles correspondent au chemin absolu d’un fichier s’ils contiennent un séparateur de chemin et correspondent au nom du fichier dans le cas contraire. Ceux-ci ont priorité sur les associations par défaut des langages installés.",
+ "autoGuessEncoding": "Lorsque cette option est activée, l’éditeur tente de deviner l’encodage du jeu de caractères lors de l’ouverture des fichiers. Ce paramètre peut également être configuré par langage. Notez que ce paramètre n’est pas respecté par la recherche de texte. Seuls les {0} sont respectés.",
+ "autoOpenDroppedFile": "Contrôle si l’Explorateur doit ouvrir automatiquement un fichier lorsqu’il est déposé dans l’Explorateur",
"autoReveal": "Contrôle si l’Explorateur devrait automatiquement afficher et sélectionner les fichiers lors de leur ouverture.",
"autoReveal.focusNoScroll": "Les fichiers ne défilent pas dans la vue, mais ils ont toujours le focus.",
"autoReveal.off": "Les fichiers ne seront pas affichés ni sélectionnés.",
"autoReveal.on": "Les fichiers seront affichés et sélectionnés.",
+ "autoRevealExclude": "Configurez les chemins d’accès ou les [modèles globaux](https://aka.ms/vscode-glob-patterns) pour exclure les fichiers et les dossiers d’être révélés et sélectionnés dans le Explorer lorsqu’ils sont ouverts. Les modèles Glob sont toujours évalués par rapport au chemin d’accès du dossier d’espace de travail, sauf s’ils sont des chemins absolus.",
"autoSave": "Contrôle la [sauvegarde automatique](https://code.visualstudio.com/docs/editor/codebasics#_save-auto-save) des éditeurs qui ont des modifications non enregistrées.",
"autoSaveDelay": "Contrôle le délai en millisecondes après lequel un éditeur avec des modifications non sauvegardées est enregistré automatiquement. S'applique uniquement lorsque `#files.autoSave#` est défini sur `{0}`.",
+ "autoSaveWhenNoErrors": "Lorsque cette option est activée, elle limite [l'enregistrement automatique](https://code.visualstudio.com/docs/editor/codebasics#_save-auto-save) des éditeurs aux fichiers pour lesquels aucune erreur n'a été signalée au moment du déclenchement de l'enregistrement automatique. S’applique uniquement lorsque {0} est activé.",
+ "autoSaveWorkspaceFilesOnly": "Lorsque cette option est activée, elle limite [l'enregistrement automatique](https://code.visualstudio.com/docs/editor/codebasics#_save-auto-save) des éditeurs aux fichiers qui se trouvent dans l'espace de travail ouvert. S’applique uniquement lorsque {0} est activé.",
"binaryFileEditor": "Éditeur de fichiers binaires",
- "compressSingleChildFolders": "Contrôle si l'explorateur doit afficher les dossiers de manière compacte. Sous cette forme, les dossiers enfant sont compressés individuellement dans un élément d'arborescence combiné. Utile pour les structures de package Java, par exemple.",
+ "candidateGuessEncodings": "Liste des encodages de jeu de caractères que l’éditeur doit essayer de deviner dans l’ordre dans lequel ils sont répertoriés. Si elle ne peut pas être déterminée,{0} est respectée",
+ "compressSingleChildFolders": "Contrôle si l’explorateur doit afficher les dossiers de manière compacte. Sous cette forme, les dossiers enfant sont compressés individuellement dans un élément d’arborescence combiné. Utile pour les structures de package Java, par exemple.",
"confirmDelete": "Contrôle si l’Explorateur devrait demander confirmation lorsque vous supprimez un fichier via la corbeille.",
"confirmDragAndDrop": "Contrôle si l’Explorateur doit demander confirmation pour déplacer des fichiers et des dossiers par glisser/déplacer.",
+ "confirmPasteNative": "Contrôle si l'Explorateur doit demander une confirmation lors du collage de fichiers et de dossiers natifs.",
"confirmUndo": "Contrôle si l'explorateur doit demander une confirmation lors de l'annulation.",
+ "copyPathSeparator": "Le caractère de séparation du chemin d’accès utilisé lors de la copie des chemins d’accès aux fichiers.",
+ "copyPathSeparator.auto": "Utilise un caractère de séparation de chemin d’accès spécifique au système d’exploitation.",
+ "copyPathSeparator.backslash": "Utilisez la barre oblique inverse comme caractère de séparation du chemin d’accès.",
+ "copyPathSeparator.slash": "Utilisez la barre oblique comme caractère de séparation du chemin d’accès.",
"copyRelativePathSeparator": "Caractère de séparation de chemin utilisé lors de la copie de chemins d’accès relatifs au fichier.",
"copyRelativePathSeparator.auto": "Utilise un caractère de séparation de chemin d’accès spécifique au système d’exploitation.",
"copyRelativePathSeparator.backslash": "Utilisez la barre oblique inverse comme caractère de séparation du chemin d’accès.",
"copyRelativePathSeparator.slash": "Utilisez la barre oblique comme caractère de séparation du chemin d’accès.",
- "defaultLanguage": "Identificateur de langue par défaut attribué aux nouveaux fichiers. S'il est configuré sur '${activeEditorLanguage}', utilise l’identificateur de langue de l'éditeur de texte actif le cas échéant.",
- "enableDragAndDrop": "Détermine si l'Explorateur autorise le déplacement des fichiers et des dossiers par glisser-déposer. Ce paramètre affecte uniquement le glisser-déposer dans l'Explorateur.",
+ "defaultLanguage": "Identificateur de langage par défaut attribué aux nouveaux fichiers. S'il est configuré sur '${activeEditorLanguage}', utilise l’identificateur de langage de l'éditeur de texte actif le cas échéant.",
+ "defaultPathErrorMessage": "Le chemin d’accès par défaut des boîtes de dialogue de fichier doit être un chemin absolu (par exemple C:\\\\myFolder ou /myFolder).",
+ "disabled": "Désactive l’attribution de noms incrémentielle. Si deux fichiers portant le même nom existent, vous êtes invité à remplacer le fichier existant.",
+ "enableDragAndDrop": "Détermine si l’Explorateur autorise le déplacement des fichiers et des dossiers par glisser-déposer. Ce paramètre affecte uniquement le glisser-déposer dans l’Explorateur.",
"enableUndo": "Contrôle si l'explorateur doit prendre en charge l'annulation des opérations sur les fichiers et les dossiers.",
"enableUndo.default": "L'explorateur vous demandera avant les opérations d'annulation destructrices.",
"enableUndo.light": "L'explorateur ne demandera pas avant d'annuler les opérations lorsqu'il est sélectionné.",
@@ -6355,18 +10174,21 @@
"eol.LF": "LF",
"eol.auto": "Utilise le caractère de fin de ligne spécifique du système d'exploitation.",
"everything": "Met en forme la totalité du fichier.",
- "exclude": "Configurez des [modèles glob](https://code.visualstudio.com/docs/editor/codebasics#_advanced-search-options) pour exclure des fichiers et des dossiers. Par exemple, l'explorateur de fichier choisit les fichiers et dossiers à afficher ou masquer en fonction de ce paramètre. Consultez le paramètre '#search.exclude#'' pour définir des exclusions propres à la recherche.",
+ "exclude": "Configurez des [modèles globaux](https://aka.ms/vscode-glob-patterns) pour exclure des fichiers et des dossiers. Par exemple, l’explorateur de fichiers choisit les fichiers et dossiers à afficher ou masquer en fonction de ce paramètre. Consultez le paramètre `#search.exclude#` pour définir des exclusions propres à la recherche. Référez-vous au paramètre `#explorer.excludeGitIgnore#` pour ignorer les fichiers basés sur votre `.gitignore`.",
"excludeGitignore": "Contrôle si les entrées dans .gitignore doivent être analysées et exclues de l’explorateur. Similaire à {0}.",
"expandSingleFolderWorkspaces": "Contrôle si l’explorateur doit développer des espaces de travail multi-racine contenant un seul dossier pendant l’initialisation",
+ "explorer.autoRevealExclude.boolean": "Modèle Glob auquel les chemins de fichiers doivent correspondre. Affectez la valeur true ou false pour activer ou désactiver le modèle.",
+ "explorer.autoRevealExclude.when": "Vérification supplémentaire des frères d'un fichier correspondant. Utilisez $(basename) comme variable pour le nom de fichier correspondant.",
"explorer.decorations.badges": "Contrôle si les décorations de fichier devraient utiliser des badges.",
"explorer.decorations.colors": "Contrôle si les décorations de fichier devraient utiliser des couleurs.",
- "explorer.incrementalNaming": "Contrôle la stratégie de nommage à utiliser lorsque vous donnez un nouveau nom à un élément dupliqué d'Explorer à coller.",
+ "explorer.incrementalNaming": "Contrôle la stratégie de dénomination à utiliser lors de l'attribution d'un nouveau nom à un élément de l'Explorateur dupliqué lors du collage.",
"explorerConfigurationTitle": "Explorateur de fichiers",
"falseDescription": "Désactivez le modèle.",
+ "fileDialogDefaultPath": "Chemin d’accès par défaut pour les boîtes de dialogue de fichier, remplaçant le chemin d’accès d’accueil de l’utilisateur. Utilisé uniquement en l’absence d’un chemin d’accès spécifique au contexte, tel que le dernier fichier ou dossier ouvert.",
"fileNesting.description": "Chaque modèle de clé peut contenir un seul caractère '*' qui correspond à n’importe quelle chaîne.",
"fileNestingEnabled": "Contrôle si l’imbrication de fichiers est activée dans l’Explorateur. L’imbrication de fichiers permet de regrouper visuellement les fichiers associés dans un répertoire sous un seul fichier parent.",
"fileNestingExpand": "Contrôle si les imbrications de fichiers sont automatiquement développées. {0} doit être défini pour que cela prenne effet.",
- "fileNestingPatterns": "Contrôle l’imbrication des fichiers dans l’Explorateur. Chaque __Item__ représente un modèle parent et peut contenir un caractère « * » unique qui correspond à n’importe quelle chaîne. Chaque __Value__ représente une liste séparée par des virgules des modèles enfants qui doivent être affichés imbriqués sous un parent donné. Les modèles enfants peuvent contenir plusieurs jetons spéciaux :\r\n- '${capture}' : correspond à la valeur résolue du '*' du modèle parent\r\n- '${basename}' : correspond au nom de base du fichier parent, 'file' dans 'file.ts'\r\n- '${extname}' : correspond à l’extension du fichier parent, 'ts' dans 'file.ts'\r\n- '${dirname}' : correspond au nom de répertoire du fichier parent, 'src' dans 'src/file.ts'\r\n- '*' : correspond à n’importe quelle chaîne, ne peut être utilisé qu’une seule fois par modèle enfant",
+ "fileNestingPatterns": "Contrôle l’imbrication des fichiers dans l’Explorateur. {0} doit être défini pour que cela prenne effet. Chaque __Item__ représente un modèle parent et peut contenir un caractère « * » unique qui correspond à n’importe quelle chaîne. Chaque __Value__ représente une liste séparée par des virgules des modèles enfants qui doivent être affichés imbriqués sous un parent donné. Les modèles enfants peuvent contenir plusieurs jetons spéciaux :\r\n- '${capture}' : correspond à la valeur résolue du '*' du modèle parent\r\n- '${basename}' : correspond au nom de base du fichier parent, 'file' dans 'file.ts'\r\n- '${extname}' : correspond à l’extension du fichier parent, 'ts' dans 'file.ts'\r\n- '${dirname}' : correspond au nom de répertoire du fichier parent, 'src' dans 'src/file.ts'\r\n- '*' : correspond à n’importe quelle chaîne, ne peut être utilisé qu’une seule fois par modèle enfant",
"files.autoSave.afterDelay": "Un éditeur avec des modifications est automatiquement enregistré après le `#files.autoSaveDelay#` configuré.",
"files.autoSave.off": "Un éditeur avec des modifications n’est jamais enregistré automatiquement.",
"files.autoSave.onFocusChange": "Un éditeur avec des modifications est automatiquement sauvegardé lorsque l'éditeur perd le focus.",
@@ -6376,26 +10198,28 @@
"files.participants.timeout": "Délai d'attente en millisecondes après lequel les participants pour la création, le renommage et la suppression de fichier sont supprimés. Utilisez '0' pour désactiver les participants.",
"files.restoreUndoStack": "Restaurez la pile des opérations d'annulation à la réouverture d'un fichier.",
"files.saveConflictResolution": "Un conflit d'enregistrement peut se produire quand un fichier est enregistré sur un disque qui a été modifié par un autre programme dans l'intervalle. Pour éviter une perte de données, l'utilisateur est invité à comparer les changements dans l'éditeur avec la version sur disque. Changez ce paramètre seulement si vous rencontrez fréquemment des erreurs de conflit d'enregistrement, car il peut entraîner une perte de données s'il est utilisé sans précaution.",
- "files.simpleDialog.enable": "Active la boîte de dialogue de fichier simple, qui remplace alors la boîte de dialogue de fichier système.",
+ "files.simpleDialog.enable": "Active la boîte de dialogue de fichier simple permettant d’ouvrir et d’enregistrer des fichiers et des dossiers. La boîte de dialogue fichier simple remplace la boîte de dialogue du fichier système lorsqu’elle est activée.",
"filesConfigurationTitle": "Fichiers",
- "formatOnSave": "Met en forme un fichier à l'enregistrement. Un formateur doit être disponible, le fichier ne doit pas être enregistré après un délai et l'éditeur ne doit pas être en cours d'arrêt.",
+ "filesReadonlyExclude": "Configurez les chemins d’accès ou les [modèles globaux](https://aka.ms/vscode-glob-patterns) à exclure de la lecture seule s’ils correspondent au paramètre `#files.readonlyInclude#`. Les motifs globaux sont toujours évalués par rapport au chemin d’accès du dossier de l’espace de travail, sauf s’il s’agit de chemins absolus. Les fichiers provenant de fournisseurs de systèmes de fichiers en lecture seule seront toujours en lecture seule, indépendamment de ce paramètre.",
+ "filesReadonlyFromPermissions": "Marque les fichiers comme étant en lecture seule lorsque leurs autorisations de fichier l’indiquent. Cela peut être remplacé par le biais des paramètres `#files.readonlyInclude#` et `#files.readonlyExclude#`.",
+ "filesReadonlyInclude": "Configurez des chemins d’accès ou des [modèles globaux](https://aka.ms/vscode-glob-patterns) de marquer comme étant en lecture seule. Les modèles Glob sont toujours évalués par rapport au chemin d’accès du dossier d’espace de travail, sauf s’ils sont des chemins absolus. Vous pouvez exclure les chemins correspondants par le biais du paramètre '#files.readonlyExclude#'. Les fichiers des fournisseurs de système de fichiers en lecture seule seront toujours en lecture seule indépendamment de ce paramètre.",
+ "formatOnSave": "Mettre en forme un fichier lors de l’enregistrement. Un formateur doit être disponible et l'éditeur ne doit pas être en train de s'arrêter. Lorsque {0} est défini sur « afterDelay », le fichier n’est mis en forme qu’en cas d’enregistrement explicite.",
"formatOnSaveMode": "Permet de contrôler si la mise en forme au moment de l'enregistrement met en forme la totalité du fichier ou seulement les modifications apportées. S'applique uniquement quand '#editor.formatOnSave#' est activé.",
- "hotExit": "Contrôle si les fichiers non enregistrés sont mémorisés entre les sessions, ce qui permet d'ignorer la demande d'enregistrement à la sortie de l'éditeur.",
+ "hotExit": "[Sortie à chaud](https://aka.ms/vscode-hot-exit) contrôle si les fichiers non enregistrés sont mémorisés entre les sessions, ce qui permet d’ignorer l’invite d’enregistrement à la sortie de l’éditeur.",
"hotExit.off": "Désactiver la sortie à chaud. Une invite s'affiche lors de la tentative de fermeture d'une fenêtre contenant des éditeurs dont les modifications n'ont pas été sauvegardées.",
"hotExit.onExit": "La sortie à chaud se déclenche quand la dernière fenêtre est fermée dans Windows/Linux, ou quand la commande 'workbench.action.quit' se déclenche (palette de commandes, combinaison de touches, menu). Toutes les fenêtres qui n'ont pas de dossiers ouverts sont restaurées au prochain lancement. Une liste des fenêtres ouvertes avec des fichiers non enregistrés est accessible via Fichier > Ouvrir les éléments récents > Plus...",
"hotExit.onExitAndWindowClose": "La sortie à chaud se déclenche quand la dernière fenêtre est fermée dans Windows/Linux, ou quand la commande 'workbench.action.quit' se déclenche (palette de commandes, combinaison de touches, menu) ainsi que pour toute fenêtre comportant un dossier ouvert, qu'il s'agisse ou non de la dernière fenêtre. Toutes les fenêtres qui n'ont pas de dossiers ouverts sont restaurées au prochain lancement. Une liste des fenêtres ouvertes avec des fichiers non enregistrés est accessible via Fichier > Ouvrir les éléments récents > Plus...",
"hotExit.onExitAndWindowCloseBrowser": "La fermeture du navigateur, de la fenêtre ou de l'onglet provoquera une sortie à chaud.",
"insertFinalNewline": "Quand l'option est activée, une nouvelle ligne finale est insérée à la fin du fichier au moment de son enregistrement.",
- "maxMemoryForLargeFilesMB": "Contrôle la mémoire disponible pour VS Code après le redémarrage en cas de tentative d'ouverture de fichiers volumineux. Même effet que de spécifier '--max-memory=NEWSIZE' sur la ligne de commande.",
"modification": "Met en forme les modifications (nécessite le contrôle de code source).",
"modificationIfAvailable": "Tente de mettre en forme les modifications uniquement (nécessite le contrôle de code source). Si le contrôle de code source ne peut pas être utilisé, le fichier entier est mis en forme.",
"openEditorsSortOrder": "Contrôle l'ordre de tri des éditeurs dans le volet Éditeurs ouverts.",
- "openEditorsVisible": "Nombre maximal d’éditeurs affiché dans le volet Ouvrir les éditeurs. La définition de cette valeur sur 0 masque le volet Ouvrir les éditeurs.",
- "openEditorsVisibleMin": "Nombre minimal d’emplacements d’éditeur affichés dans le volet Éditeurs ouverts. Si la valeur est 0, le volet Éditeurs ouverts se redimensionne dynamiquement en fonction du nombre d’éditeurs.",
+ "openEditorsVisible": "Nombre maximal initial d’éditeurs affichés dans le volet Éditeurs ouverts. Le dépassement de cette limite affiche une barre de défilement et permet de redimensionner le volet pour afficher plus d’éléments.",
+ "openEditorsVisibleMin": "Nombre minimal d’emplacements d’éditeur pré-alloué dans le volet Éditeurs ouverts. Si la valeur est 0, le volet Éditeurs ouverts se redimensionne dynamiquement en fonction du nombre d’éditeurs.",
"overwriteFileOnDisk": "Résout le conflit d'enregistrement en remplaçant le fichier sur le disque par les changements effectués dans l'éditeur.",
- "simple": "Ajoute le mot « copy » à la fin du nom dupliqué, potentiellement suivi par un nombre",
- "smart": "Ajoute un nombre à la fin du nom dupliqué. Si le nom comporte déjà un nombre, essayez d'augmenter ce nombre",
- "sortOrder": "Contrôle le tri basé sur les propriétés des fichiers et des dossiers dans l'explorateur. Lorsque `#explorer.fileNesting.enabled#` est activé, contrôle également le tri des fichiers imbriqués.",
+ "simple": "Ajoute le mot « copy » à la fin du nom dupliqué, potentiellement suivi par un nombre.",
+ "smart": "Ajoute un nombre à la fin du nom dupliqué. Si le nom comporte déjà un nombre, essayez d’augmenter ce nombre.",
+ "sortOrder": "Contrôle le tri basé sur les propriétés des fichiers et des dossiers dans l’explorateur. Lorsque `#explorer.fileNesting.enabled#` est activé, contrôle également le tri des fichiers imbriqués.",
"sortOrder.alphabetical": "Les éditeurs sont classés par ordre alphabétique par nom d’onglet dans chaque groupe d’éditeurs.",
"sortOrder.default": "Les fichiers et dossiers sont triés par nom. Les dossiers sont affichés avant les fichiers.",
"sortOrder.editorOrder": "Les éditeurs sont triés dans l'ordre selon lequel les onglets d'éditeur sont affichés.",
@@ -6403,35 +10227,40 @@
"sortOrder.foldersNestsFiles": "Les fichiers et dossiers sont triés selon leur nom. Les dossiers sont affichés avant les fichiers. Les fichiers avec des enfants imbriqués sont affichés avant les autres fichiers.",
"sortOrder.fullPath": "Les éditeurs sont classés par ordre alphabétique par chemin d’accès complet dans chaque groupe d’éditeurs.",
"sortOrder.mixed": "Les fichiers et dossiers sont triés par nom. Les fichiers sont imbriqués dans les dossiers.",
- "sortOrder.modified": "Les fichiers et dossiers sont triés par date de dernière modification dans l'ordre décroissant. Les dossiers sont affichés avant les fichiers.",
+ "sortOrder.modified": "Les fichiers et dossiers sont triés par date de dernière modification dans l’ordre décroissant. Les dossiers sont affichés avant les fichiers.",
"sortOrder.type": "Les fichiers et dossiers sont groupés par type d’extension puis triés par nom. Les dossiers sont affichés avant les fichiers.",
"sortOrderLexicographicOptions": "Contrôle le tri lexicographique des noms de fichiers et de dossiers dans l’explorateur.",
"sortOrderLexicographicOptions.default": "Les noms en majuscules et en minuscules ne sont pas séparés.",
"sortOrderLexicographicOptions.lower": "Les noms en minuscules sont regroupés avant les noms en majuscules.",
"sortOrderLexicographicOptions.unicode": "Les noms sont triés dans l’ordre Unicode.",
"sortOrderLexicographicOptions.upper": "Les noms en majuscules sont regroupés avant les noms en minuscules.",
+ "sortOrderReverse": "Contrôle si l’ordre de tri des fichiers et des dossiers doit être inversé.",
+ "textFileEditor": "Éditeur de fichiers texte",
"trimFinalNewlines": "Si l'option est activée, va supprimer toutes les nouvelles lignes après la dernière ligne à la fin du fichier lors de l’enregistrement.",
"trimTrailingWhitespace": "Si l'option est activée, l'espace blanc de fin est supprimé au moment de l'enregistrement d'un fichier.",
+ "trimTrailingWhitespaceInRegexAndStrings": "Quand cette option est activée, les espaces blancs de fin sont supprimés des chaînes multilignes et les regex sont supprimés lors de l’enregistrement ou de l’exécution de 'editor.action.trimTrailingWhitespace'. Cela peut empêcher le découpage des espaces blancs à partir des lignes lorsqu’il n’y a pas d’informations de jeton à jour.",
"trueDescription": "Activez le modèle.",
"useTrash": "Déplace les fichiers/dossiers dans la corbeille du système d'exploitation (corbeille sous Windows) lors de la suppression. Désactiver ceci supprimera définitivement les fichiers/dossiers.",
- "watcherExclude": "Configurer les chemins ou les motifs globaux à exclure de la surveillance des fichiers. Les chemins ou les motifs glob de base qui sont relatifs (par exemple `build/output` ou `*.js`) seront résolus en un chemin absolu en utilisant l'espace de travail actuellement ouvert. Les modèles globaux complexes doivent correspondre à des chemins absolus (c'est-à-dire préfixer avec `**/` ou le chemin complet et suffixer avec `/**` pour correspondre aux fichiers dans un chemin) pour correspondre correctement (par exemple `**/build/output/**` ou `/Users/name/workspaces/project/build/output/**`). Si vous constatez que le processus de surveillance des fichiers consomme beaucoup de CPU, assurez-vous d'exclure les grands dossiers qui présentent moins d'intérêt (comme les dossiers de sortie de compilation).",
+ "watcherExclude": "Configurez des chemins d’accès ou des [modèles globaux](https://aka.ms/vscode-glob-patterns) à exclure de l’observation des fichiers. Les chemins d’accès peuvent être relatifs au dossier surveillé ou absolus. Les modèles Glob sont mis en correspondance par rapport au dossier surveillé. Lorsque vous rencontrez un processus d’observateur de fichiers qui consomme beaucoup de processeur, veillez à exclure les dossiers volumineux qui présentent moins d’intérêt (tels que les dossiers de sortie de build).",
"watcherInclude": "Configurez des chemins supplémentaires pour surveiller les modifications dans l’espace de travail. Par défaut, tous les dossiers d’espace de travail sont observés de manière récursive, à l’exception des dossiers qui sont des liens symboliques. Vous pouvez ajouter explicitement des chemins absolus ou relatifs pour prendre en charge la surveillance des dossiers qui sont des liens symboliques. Les chemins relatifs seront résolus en un chemin absolu en utilisant l'espace de travail actuellement ouvert."
},
"vs/workbench/contrib/files/browser/views/emptyView": {
"noWorkspace": "Aucun dossier ouvert"
},
"vs/workbench/contrib/files/browser/views/explorerDecorationsProvider": {
- "canNotResolve": "Impossible de résoudre le dossier d'espace de travail",
+ "canNotResolve": "Nous n’avons pas pu résoudre le dossier d’espace de travail ({0})",
"label": "Explorateur",
"symbolicLlink": "Lien symbolique",
"unknown": "Type de fichier inconnu"
},
"vs/workbench/contrib/files/browser/views/explorerView": {
"collapseExplorerFolders": "Réduire les dossiers dans l'explorateur",
- "createNewFile": "Nouveau fichier",
- "createNewFolder": "Nouveau dossier",
+ "collapseExplorerFoldersMetadata": "Plie tous les dossiers d’Explorer.",
+ "createNewFile": "Nouveau fichier...",
+ "createNewFolder": "Nouveau dossier...",
"explorerSection": "Section de l'Explorateur : {0}",
- "refreshExplorer": "Actualiser l'explorateur"
+ "refreshExplorer": "Actualiser l'explorateur",
+ "refreshExplorerMetadata": "Force l’actualisation d’Explorer."
},
"vs/workbench/contrib/files/browser/views/explorerViewer": {
"confirmMove": "Voulez-vous vraiment déplacer '{0}' dans '{1}' ?",
@@ -6441,12 +10270,14 @@
"copy": "Copier {0}",
"copying": "Copie de {0}",
"doNotAskAgain": "Ne plus me poser la question",
+ "explorerHighlightFolderBadgeTitle": "Le répertoire contient des correspondances {0}",
"fileInputAriaLabel": "Tapez le nom du fichier. Appuyez sur Entrée pour confirmer ou sur Échap pour annuler.",
"move": "Déplacer {0}",
"moveButtonLabel": "&&Déplacer",
"moving": "Déplacement de {0}",
"numberOfFiles": "Fichiers {0}",
"numberOfFolders": "Dossiers {0}",
+ "searchMaxResultsWarning": "L’ensemble de résultats contient uniquement un sous-ensemble de toutes les correspondances. Soyez plus précis dans votre recherche de façon à limiter les résultats.",
"treeAriaLabel": "Explorateur de fichiers"
},
"vs/workbench/contrib/files/browser/views/openEditorsView": {
@@ -6454,11 +10285,11 @@
"flipLayout": "Activer/désactiver la disposition horizontale/verticale de l'éditeur",
"miToggleEditorLayout": "Retourner la &&disposition",
"miToggleEditorLayoutWithoutMnemonic": "Retourner la disposition",
- "newUntitledFile": "Nouveau fichier sans titre",
+ "newUntitledFile": "Nouveau fichier texte sans titre",
"openEditors": "Éditeurs ouverts"
},
"vs/workbench/contrib/files/browser/workspaceWatcher": {
- "enospcError": "Impossible de surveiller les changements apportés aux fichiers dans ce grand dossier d'espace de travail. Suivez le lien des instructions pour résoudre ce problème.",
+ "enospcError": "Nous n’avons pas pu surveiller les modifications apportées aux fichiers. Suivez le lien d’instructions pour résoudre ce problème.",
"eshutdownError": "L’observateur des modifications de fichier s’est arrêté de manière inattendue. Un rechargement de la fenêtre peut réactiver l’observateur, sauf si l’espace de travail ne peut pas faire l’objet de modifications de fichier.",
"learnMore": "Instructions",
"reload": "Recharger"
@@ -6468,58 +10299,59 @@
"dirtyFiles": "{0} fichiers non enregistrés"
},
"vs/workbench/contrib/files/common/files": {
+ "explorerFindProviderActive": "Vrai lorsque l’arborescence de l’explorateur utilise le fournisseur de recherche de l’explorateur.",
"explorerResourceCut": "La valeur est true quand un élément de l'EXPLORATEUR a été coupé dans le cadre d'une opération de type couper et coller.",
"explorerResourceIsFolder": "La valeur est true quand l'élément ayant le focus dans l'EXPLORATEUR est un dossier.",
"explorerResourceIsRoot": "La valeur est true quand l'élément ayant le focus dans l'EXPLORATEUR est un dossier racine.",
"explorerResourceMoveableToTrash": "La valeur est true quand l'élément ayant le focus dans l'EXPLORATEUR peut être mis à la corbeille.",
- "explorerResourceReadonly": "La valeur est true quand l'élément ayant le focus dans l'EXPLORATEUR est en lecture seule.",
+ "explorerResourceParentReadonly": "Vrai lorsque l’élément ciblé dans le parent de l’EXPLORATEUR est en lecture seule.",
+ "explorerResourceReadonly": "La valeur est true quand l’élément ayant le focus dans l’EXPLORATEUR est en lecture seule.",
"explorerViewletCompressedFirstFocus": "La valeur est true quand la première partie d'un élément compact a le focus dans la vue EXPLORATEUR.",
"explorerViewletCompressedFocus": "La valeur est true quand l'élément ayant le focus dans la vue EXPLORATEUR est un élément compact.",
"explorerViewletCompressedLastFocus": "La valeur est true quand la dernière partie d'un élément compact a le focus dans la vue EXPLORATEUR.",
"explorerViewletFocus": "La valeur est true quand le viewlet de l'EXPLORATEUR a le focus.",
"explorerViewletVisible": "La valeur est true quand le viewlet de l'EXPLORATEUR est visible.",
"filesExplorerFocus": "La valeur est true quand la vue EXPLORATEUR a le focus.",
+ "foldersViewVisible": "La valeur est true quand la vue FOLDERS (l’arborescence de fichiers dans le conteneur d’affichage de l’Explorateur) est visible.",
"openEditorsFocus": "La valeur est true quand la vue ÉDITEURS OUVERTS a le focus.",
- "openEditorsVisible": "La valeur est true quand la vue ÉDITEURS OUVERTS est visible.",
"viewHasSomeCollapsibleItem": "La valeur est True quand un espace de travail de la vue EXPLORATEUR a un enfant racine réductible."
},
- "vs/workbench/contrib/files/electron-sandbox/fileActions.contribution": {
+ "vs/workbench/contrib/files/electron-browser/fileActions.contribution": {
"filesCategory": "Fichier",
+ "miShare": "Partager",
"openContainer": "Ouvrir le dossier contenant",
- "revealInMac": "Afficher dans le Finder",
- "revealInWindows": "Afficher dans l'Explorateur de fichiers"
+ "revealInMac": "Révéler dans le Finder",
+ "revealInWindows": "Révéler dans l'Explorateur de fichiers"
},
- "vs/workbench/contrib/files/electron-sandbox/files.contribution": {
- "textFileEditor": "Éditeur de fichiers texte"
- },
- "vs/workbench/contrib/files/electron-sandbox/textFileEditor": {
- "configureMemoryLimit": "Configurer la limite de mémoire",
- "fileTooLargeForHeapError": "Pour ouvrir un fichier de cette taille, vous devez redémarrer et permettre à {0} d’utiliser plus de mémoire",
- "relaunchWithIncreasedMemoryLimit": "Redémarrer avec {0} Mo"
+ "vs/workbench/contrib/folding/browser/folding.contribution": {
+ "formatter.default": "Définit un fournisseur de plages de pliage par défaut qui est prioritaire sur tous les autres fournisseurs de plages de pliage. Doit être l’identificateur d’une extension contribuant à un fournisseur de plage de pliage.",
+ "null": "Tous",
+ "nullFormatterDescription": "Tous les fournisseurs de plages de pliage actives"
},
"vs/workbench/contrib/format/browser/formatActionsMultiple": {
- "cancel": "Annuler",
"config": "Configurer le formateur par défaut...",
"config.bad": "L'extension '{0}' est configurée comme formateur, mais n'est pas disponible. Sélectionnez un autre formateur par défaut pour continuer.",
"config.needed": "Il existe plusieurs formateurs pour les fichiers « {0} ». L’un d’eux doit être configuré comme formateur par défaut.",
"def": "(Par défaut)",
- "do.config": "Configurer...",
+ "do.config": "&&Configurer...",
+ "do.config.command": "Configurer...",
+ "do.config.notification": "Configurer...",
"format.placeHolder": "Sélectionner un formateur",
"formatDocument.label.multiple": "Mettre en forme le document avec...",
"formatSelection.label.multiple": "Mettre en forme la sélection avec...",
"formatter": "Mise en forme",
"formatter.default": "Définit un formateur par défaut qui est prioritaire sur tous les autres paramètres de formateur. Doit être l'identificateur d'une extension contribuant à un formateur.",
- "miss": "L’extension « {0} » est configurée en tant que formateur, mais elle ne peut pas formater les fichiers « {1} »",
- "miss.1": "Configurer le formateur par défaut",
+ "miss": "Configurer le formateur par défaut",
+ "miss.1": "L’extension « {0} » est configurée en tant que formateur, mais elle ne peut pas formater les fichiers « {1} »",
+ "miss.2": "L’extension « {0} » est configurée en tant que formateur, mais elle peut uniquement formater des fichiers « {1} » dans leur ensemble, et non des sélections ou des parties de celui-ci.",
"null": "Aucun",
"nullFormatterDescription": "Aucun(e)",
"select": "Sélectionner un formateur par défaut pour les fichiers '{0}'",
"summary": "Conflits de formateur"
},
"vs/workbench/contrib/format/browser/formatActionsNone": {
- "cancel": "Annuler",
"formatDocument.label.multiple": "Mettre en forme le document",
- "install.formatter": "Installer le formateur...",
+ "install.formatter": "&&Installer le formateur...",
"no.provider": "Aucun formateur pour les fichiers '{0}' installés.",
"too.large": "Impossible de formater ce fichier, car il est trop volumineux"
},
@@ -6527,59 +10359,475 @@
"formatChanges": "Mettre en forme les lignes modifiées"
},
"vs/workbench/contrib/inlayHints/browser/inlayHintsAccessibilty": {
- "description": "Code avec informations d’indicateur d’inlay",
- "isReadingLineWithInlayHints": "Indique si la ligne active et ses indicateurs d’inlay sont actuellement prioritaires",
- "read.title": "Lire la ligne avec des indicateurs inline",
- "stop.title": "Arrêter la lecture des indicateurs inlay"
+ "description": "Code avec informations d’hints incrustés",
+ "isReadingLineWithInlayHints": "Indique si la ligne active et ses hints incrustés sont actuellement prioritaires",
+ "read.title": "Lisez la ligne avec des hints incrustés",
+ "stop.title": "Arrêter la lecture des hints incrustés"
+ },
+ "vs/workbench/contrib/inlineChat/browser/inlineChat.contribution": {
+ "cancel": "Annuler la requête",
+ "cancelShort": "Annuler",
+ "send.edit": "Modifier le code",
+ "send.generate": "Générer"
+ },
+ "vs/workbench/contrib/inlineChat/browser/inlineChatActions": {
+ "Keep": "Conserver",
+ "apply1": "Accepter les modifications",
+ "apply2": "Accepter",
+ "arrowDown": "Curseur vers le bas",
+ "arrowUp": "Curseur vers le haut",
+ "cat": "Conversation inline",
+ "chat.rerun.label": "Réexécuter la demande",
+ "close": "Fermer",
+ "close2": "Fermer",
+ "configure": "Configurer la conversation en ligne",
+ "discard": "Abandonner",
+ "focus": "Entrée de focus",
+ "moveToNextHunk": "Aller à la modification suivante",
+ "moveToPreviousHunk": "Aller à la modification précédente",
+ "rerun": "Réexécuter",
+ "run": "Ouvrir la conversation en ligne",
+ "showChanges": "Basculer les modifications",
+ "startInlineChat": "Icône qui génère le chat en ligne à partir de la barre d'outils de l'éditeur.",
+ "unstash": "Reprendre le dernière conversation instantanée en ligne rejeté",
+ "viewInChat": "Afficher dans la conversation"
+ },
+ "vs/workbench/contrib/inlineChat/browser/inlineChatController": {
+ "askOrEditInContext": "Demandez ou modifiez dans le contexte",
+ "create.fail": "Nous n’avons pas pu démarrer la conversation de l’éditeur",
+ "empty": "Aucun résultat, affinez votre entrée et réessayez",
+ "err.apply": "Nous n’avons pas pu appliquer les modifications.",
+ "err.discard": "Nous n’avons pas pu ignorer les modifications.",
+ "fix1": "Corrigez le problème joint",
+ "fixN": "Corrigez les problèmes joints",
+ "loading": "Traitement en cours... Merci de patienter.",
+ "placeholder": "Modifier, refactoriser et générer du code",
+ "responseWasEmpty": "La réponse était vide",
+ "welcome.2": "Préparation en cours... Merci de patienter."
+ },
+ "vs/workbench/contrib/inlineChat/browser/inlineChatSessionServiceImpl": {
+ "chat.remove.confirmation.checkbox": "Ne plus me poser la question",
+ "confirm": "Voulez-vous continuer en mode conversation ?",
+ "confirm.cancel": "Annuler",
+ "confirm.detail": "La conversation en ligne est conçue pour apporter des modifications au code à fichier unique. Poursuivez votre demande dans l’affichage Conversation ou reformulez-la pour la conversation en ligne.",
+ "confirm.title": "Voulez-vous continuer en mode conversation ?",
+ "confirm.yes": "Continuer en mode Conversation",
+ "name": "Déplacer la conversation en ligne vers la conversation du panneau",
+ "resetChoice.label": "Réinitialisez le choix « Déplacer la conversation en ligne vers la conversation du panneau »"
+ },
+ "vs/workbench/contrib/inlineChat/browser/inlineChatWidget": {
+ "aria-label": "Entrée de conversation en ligne",
+ "feedbackThanks": "Merci pour vos commentaires.",
+ "inlineChat.accessibilityHelp": "Entrée de conversation en ligne, utilisez {0} pour l’aide sur l’accessibilité des conversations en ligne.",
+ "inlineChat.accessibilityHelpNoKb": "Entrée de conversation en ligne, exécutez la commande d’aide sur l’accessibilité des conversations en ligne pour plus d’informations.",
+ "termsDisclaimer": "En continuant avec Copilot {0}, vous acceptez les [Conditions générales]({2}) et la [Déclaration de confidentialité]({3}) de {1}"
+ },
+ "vs/workbench/contrib/inlineChat/browser/inlineChatZoneWidget": {
+ "inlineChatClosed": "Widget de conversation en ligne fermé"
+ },
+ "vs/workbench/contrib/inlineChat/common/inlineChat": {
+ "accessibleDiffView": "Indique si la conversation en ligne affiche également une visionneuse diff accessible pour ses modifications.",
+ "accessibleDiffView.auto": "Le visualiseur de différences accessible est basé sur l'activation du mode lecteur d'écran.",
+ "accessibleDiffView.off": "La visionneuse diff accessible n’est jamais activée.",
+ "accessibleDiffView.on": "La visionneuse diff accessible est toujours activée.",
+ "editorMinimap.inlineChatInserted": "Couleur du marqueur de minimap pour le contenu inline de la conversation en ligne.",
+ "editorOverviewRuler.inlineChatInserted": "Couleur de marqueur de la règle d’aperçu pour le contenu inséré de la conversation en ligne.",
+ "editorOverviewRuler.inlineChatRemoved": "Couleur de marqueur de la règle d’aperçu pour le contenu supprimé de la conversation en ligne.",
+ "enableV2": "Indique si la prochaine version de la discussion en ligne doit être utilisée.",
+ "finishOnType": "Indique si une session de conversation en ligne doit prendre fin lorsque vous tapez en dehors des régions modifiées.",
+ "holdToSpeech": "Indique si la conservation de la combinaison de touches de conversation en ligne active automatiquement la reconnaissance vocale.",
+ "inlineChat.background": "Couleur d’arrière-plan du widget d’éditeur interactif",
+ "inlineChat.border": "Couleur de bordure du widget de l’éditeur interactif",
+ "inlineChat.foreground": "Couleur de premier plan du widget d’éditeur interactif",
+ "inlineChat.shadow": "Couleur d’ombre du widget d’éditeur interactif",
+ "inlineChatChangeHasDiff": "Indique si la modification actuelle prend en charge l’affichage d’un diff",
+ "inlineChatChangeShowsDiff": "Indique si la modification actuelle affichant un diff",
+ "inlineChatDiff.inserted": "Couleur d’arrière-plan du texte inséré dans l’entrée de l’éditeur interactif",
+ "inlineChatDiff.removed": "Couleur d’arrière-plan du texte supprimé dans l’entrée de l’éditeur interactif",
+ "inlineChatEditing": "Indique si l’utilisateur modifie ou génère actuellement du code dans la conversation en ligne",
+ "inlineChatEmpty": "Indique si l’entrée de l’éditeur interactif est vide",
+ "inlineChatFocused": "Indique si l’entrée de l’éditeur interactif est ciblée",
+ "inlineChatHasEditsAgent": "Indique si un agent pour les éditeurs interactifs inline existe",
+ "inlineChatHasNotebookAgent": "Indique s’il existe un agent pour les cellules de notebook",
+ "inlineChatHasNotebookInline": "Indique s’il existe un agent pour les cellules de notebook",
+ "inlineChatHasPossible": "Indique si un fournisseur existe pour la conversation en ligne et si un éditeur pour la conversation en ligne est ouvert.",
+ "inlineChatHasProvider": "Indique s’il existe un fournisseur pour les éditeurs interactifs",
+ "inlineChatHasStashedSession": "Indique si l’éditeur interactif a conservé une session pour la restauration rapide",
+ "inlineChatInnerCursorFirst": "Indique si le curseur de l’entrée de l’éditeur interactif est sur la première ligne",
+ "inlineChatInnerCursorLast": "Indique si le curseur de l’entrée de l’éditeur interactif se trouve sur la dernière ligne",
+ "inlineChatInput.background": "Couleur d’arrière-plan de l’entrée de l’éditeur interactif",
+ "inlineChatInput.border": "Couleur de bordure de l’entrée de l’éditeur interactif",
+ "inlineChatInput.focusBorder": "Couleur de bordure de l’entrée de l’éditeur interactif lorsque le focus est positionné",
+ "inlineChatInput.placeholderForeground": "Couleur de premier plan de l’espace réservé d’entrée de l’éditeur interactif",
+ "inlineChatOuterCursorPosition": "Indique si le curseur de l’éditeur externe est au-dessus ou en dessous de l’entrée de l’éditeur interactif",
+ "inlineChatRequestInProgress": "Indique si une demande de conversation en ligne est en cours",
+ "inlineChatResponseFocused": "Indique si la réponse du widget itératif est ciblée",
+ "inlineChatResponseTypes": "Quel type de réponses ont été reçues, rien encore, seulement des messages, ou des modifications de message et locales",
+ "inlineChatVisible": "Indique si l’entrée de l’éditeur interactif est visible",
+ "notebookAgent": "Activez un comportement semblable à celui d’un assistant à partir du widget de conversation inline dans les notebooks."
+ },
+ "vs/workbench/contrib/inlineChat/electron-browser/inlineChatActions": {
+ "holdForSpeech": "Mettre en attente pour Speech"
+ },
+ "vs/workbench/contrib/inlineCompletions/browser/inlineCompletionLanguageStatusBarContribution": {
+ "inlineCompletionAvailable": "Saisie semi-automatique inline disponible",
+ "inlineEditAvailable": "Modification inline disponible",
+ "inlineSuggestionLoading": "Chargement en cours...",
+ "inlineSuggestions": "Suggestions inline",
+ "inlineSuggestionsSmall": "Suggestions inline",
+ "noInlineSuggestionAvailable": "Aucune suggestion inline disponible"
},
"vs/workbench/contrib/interactive/browser/interactive.contribution": {
"interactive.activeCodeBorder": "La couleur de bordure de la cellule de code interactive actuelle lorsque l’éditeur a le focus.",
"interactive.execute": "Exécuter le code",
- "interactive.history.focus": "Focus sur l’historique dans la fenêtre interactive",
+ "interactive.history.focus": "Historique du focus",
"interactive.history.next": "Valeur suivante dans l’historique",
"interactive.history.previous": "Valeur précédente dans l’historique",
"interactive.inactiveCodeBorder": "La couleur de la bordure de la cellule de code interactive actuelle lorsque l'éditeur n'a pas le focus.",
"interactive.input.clear": "Effacer le contenu de l’éditeur d’entrée de la fenêtre interactive",
- "interactive.input.focus": "Focus sur l’éditeur d’entrée dans la fenêtre interactive",
+ "interactive.input.focus": "Focus sur l’éditeur d’entrée",
"interactive.open": "Ouvrir une fenêtre interactive",
"interactiveScrollToBottom": "Faire défiler jusqu'en bas",
"interactiveScrollToTop": "Faire défiler jusqu'en haut",
+ "interactiveWindow": "Fenêtre interactive",
"interactiveWindow.alwaysScrollOnNewCell": "Faites défiler automatiquement la fenêtre interactive pour afficher la sortie de la dernière instruction exécutée. Si cette valeur est false, la fenêtre défile uniquement si la dernière cellule était déjà celle vers laquelle l’utilisateur a fait défiler.",
- "interactiveWindow.restore": "Controls whether the Interactive Window sessions/history should be restored across window reloads. Whether the state of controllers used in Interactive Windows is persisted across window reloads are controlled by extensions contributing controllers."
- },
- "vs/workbench/contrib/interactive/browser/interactiveEditor": {
- "interactiveInputPlaceHolder": "Tapez le code «{0}» ici et appuyez sur {1} pour l’exécuter"
- },
- "vs/workbench/contrib/issue/electron-sandbox/issue.contribution": {
- "miOpenProcessExplorerer": "Ouvrir l'Explorateur de &&processus",
- "miReportIssue": "Signaler le p&&roblème",
- "reportIssueInEnglish": "Signaler un problème..."
- },
- "vs/workbench/contrib/issue/electron-sandbox/issueActions": {
- "openProcessExplorer": "Ouvrir l'Explorateur de processus",
- "reportPerformanceIssue": "Signaler un problème de performance..."
- },
- "vs/workbench/contrib/keybindings/browser/keybindings.contribution": {
- "toggleKeybindingsLog": "Activer/désactiver la résolution des problèmes liés aux raccourcis clavier"
- },
+ "interactiveWindow.executeWithShiftEnter": "Exécutez la zone d’entrée de la fenêtre interactive (REPL) avec maj+entrée, afin que l’entrée puisse être utilisée pour créer une nouvelle ligne.",
+ "interactiveWindow.promptToSaveOnClose": "Invite à enregistrer la fenêtre interactive lorsqu’elle est fermée. Seules les nouvelles fenêtres interactives seront affectées par ce changement de paramètre.",
+ "interactiveWindow.showExecutionHint": "Affichez un indicateur dans la zone d’entrée de la fenêtre interactive (REPL) pour indiquer comment exécuter du code."
+ },
+ "vs/workbench/contrib/interactive/browser/replInputHintContentWidget": {
+ "ReplInputAriaLabelHelp": "Utilisez {0} pour l'aide sur l'accessibilité. ",
+ "ReplInputAriaLabelHelpNoKb": "Exécutez la commande Ouvrir l’aide sur l’accessibilité pour plus d’informations. ",
+ "disableHint": " Activez/désactivez {0} dans les paramètres pour désactiver cet indicateur.",
+ "emptyHintText": "Appuyez sur {0} pour exécuter. "
+ },
+ "vs/workbench/contrib/interactiveEditor/browser/interactiveEditorActions": {
+ "accept": "Créer une demande",
+ "actions.interactiveSession.accessibiltyHelpEditor": "Aide sur l’accessibilité de l’Éditeur de session interactive",
+ "apply1": "Accepter les modifications",
+ "apply2": "Accepter",
+ "arrowDown": "Curseur vers le bas",
+ "arrowUp": "Curseur vers le haut",
+ "cancel": "Annuler",
+ "cat": "Éditeur interactif",
+ "contractMessage": "Message de contrat",
+ "copyRecordings": "(Développeur) Écrire Exchange dans le Presse-papiers",
+ "discard": "Abandonner",
+ "discardMenu": "Abandonner...",
+ "expandMessage": "Développer les messages",
+ "feedback.helpful": "Utile",
+ "feedback.unhelpful": "Inutile",
+ "focus": "Entrée de focus",
+ "label": "suivis '{0}' et {1} ({2})",
+ "nextFromHistory": "Suivant à partir de l’historique",
+ "previousFromHistory": "Précédent dans l’historique",
+ "run": "Démarrer la conversation de code",
+ "stop": "Arrêter la demande",
+ "toggleDiff": "Activer/désactiver la différence",
+ "toggleDiff2": "Afficher la différence inline",
+ "undo.clipboard": "Ignorer dans le Presse-papiers",
+ "undo.newfile": "Ignorer vers un nouveau fichier",
+ "unstash": "Reprendre la dernière conversation de code ignorée",
+ "viewInChat": "Afficher dans la conversation"
+ },
+ "vs/workbench/contrib/interactiveEditor/browser/interactiveEditorController": {
+ "create.fail": "Nous n’avons pas pu démarrer la conversation de l’éditeur",
+ "create.fail.detail": "Consultez le journal des erreurs et réessayez plus tard.",
+ "default.placeholder": "Poser une question",
+ "default.placeholder.history": "{0} ({1}, {2} pour l’historique)",
+ "empty": "Aucun résultat, affinez votre entrée et réessayez",
+ "err.apply": "Nous n’avons pas pu appliquer les modifications.",
+ "err.discard": "Nous n’avons pas pu ignorer les modifications.",
+ "thinking": "En train de réfléchir…",
+ "welcome.1": "Le code généré par l’IA peut être incorrect"
+ },
+ "vs/workbench/contrib/interactiveEditor/browser/interactiveEditorStrategies": {
+ "lines.0": "Rien n’a changé",
+ "lines.1": "1 ligne modifiée",
+ "lines.N": "Lignes {0} modifiées"
+ },
+ "vs/workbench/contrib/interactiveEditor/browser/interactiveEditorWidget": {
+ "aria-label": "Entrée de l’éditeur interactif",
+ "interactiveEditor.accessibilityHelp": "Entrée de l’éditeur interactif. Utilisez {0} pour l’aide sur l’accessibilité de l’éditeur interactif.",
+ "interactiveSessionInput.accessibilityHelpNoKb": "Entrée de l’éditeur interactif. Exécutez la commande d’aide sur l’accessibilité de l’éditeur interactif pour plus d’informations.",
+ "modified": "Modifié",
+ "original": "D’origine"
+ },
+ "vs/workbench/contrib/interactiveEditor/common/interactiveEditor": {
+ "editMode": "Configurer si les modifications apportées dans l’éditeur interactif sont appliquées directement vers le document ou sont d’abord en préversion.",
+ "editMode.live": "Les modifications sont appliquées directement au document, mais peuvent être mises en évidence par des différences en ligne. La fin d’une session conserve les modifications.",
+ "editMode.livePreview": "Les modifications sont appliquées directement au document et sont mises en évidence visuellement par des différences en ligne ou côte à côte. La fin d’une session conserve les modifications.",
+ "editMode.preview": "Les modifications sont uniquement visualisées et doivent être acceptées à l’aide du bouton Appliquer. La fin d’une session annule les modifications.",
+ "interactiveEditor.border": "Couleur de bordure du widget de l’éditeur interactif",
+ "interactiveEditor.regionHighlight": "Mise en surbrillance en arrière-plan de la région interactive actuelle. Doit être transparent.",
+ "interactiveEditor.shadow": "Couleur d’ombre du widget d’éditeur interactif",
+ "interactiveEditorDidEdit": "Indique si l’éditeur interactif a modifié un code",
+ "interactiveEditorDiff": "Indique si l’éditeur interactif affiche les différences inline pour les modifications",
+ "interactiveEditorDiff.inserted": "Couleur d’arrière-plan du texte inséré dans l’entrée de l’éditeur interactif",
+ "interactiveEditorDiff.removed": "Couleur d’arrière-plan du texte supprimé dans l’entrée de l’éditeur interactif",
+ "interactiveEditorDocumentChanged": "Indique si le document a changé simultanément",
+ "interactiveEditorEmpty": "Indique si l’entrée de l’éditeur interactif est vide",
+ "interactiveEditorFocused": "Indique si l’entrée de l’éditeur interactif est ciblée",
+ "interactiveEditorHasActiveRequest": "Indique si l’éditeur interactif a une demande active",
+ "interactiveEditorHasProvider": "Indique s’il existe un fournisseur pour les éditeurs interactifs",
+ "interactiveEditorHasStashedSession": "Indique si l’éditeur interactif a conservé une session pour la restauration rapide",
+ "interactiveEditorInnerCursorFirst": "Indique si le curseur de l’entrée de l’éditeur interactif est sur la première ligne",
+ "interactiveEditorInnerCursorLast": "Indique si le curseur de l’entrée de l’éditeur interactif se trouve sur la dernière ligne",
+ "interactiveEditorInput.background": "Couleur d’arrière-plan de l’entrée de l’éditeur interactif",
+ "interactiveEditorInput.border": "Couleur de bordure de l’entrée de l’éditeur interactif",
+ "interactiveEditorInput.focusBorder": "Couleur de bordure de l’entrée de l’éditeur interactif lorsque le focus est positionné",
+ "interactiveEditorInput.placeholderForeground": "Couleur de premier plan de l’espace réservé d’entrée de l’éditeur interactif",
+ "interactiveEditorLastFeedbackKind": "Dernier type de commentaires fourni",
+ "interactiveEditorMarkdownMessageCropState": "Indique si le message de l’éditeur interactif est rogné, non rogné ou développé",
+ "interactiveEditorOuterCursorPosition": "Indique si le curseur de l’éditeur externe est au-dessus ou en dessous de l’entrée de l’éditeur interactif",
+ "interactiveEditorResponseType": "Quel est le type de la dernière réponse de la session d’éditeur interactive actuelle ?",
+ "interactiveEditorVisible": "Indique si l’entrée de l’éditeur interactif est visible"
+ },
+ "vs/workbench/contrib/interactiveSession/browser/actions/interactiveSessionActions": {
+ "actions.ineractiveSession.acceptInput": "Entrée d’acceptation de session interactive",
+ "actions.interactiveSession.focus": "Session interactive Focus",
+ "interactiveSession.category": "Session interactive",
+ "interactiveSession.clear.label": "Effacer",
+ "interactiveSession.clearHistory.label": "Effacer l’historique d’entrée",
+ "interactiveSession.focusInput.label": "Entrée de focus",
+ "interactiveSession.history.label": "Afficher l'historique",
+ "interactiveSession.history.pick": "Sélectionner une session de conversation à restaurer",
+ "interactiveSession.open": "Ouvrir l’éditeur ({0})"
+ },
+ "vs/workbench/contrib/interactiveSession/browser/actions/interactiveSessionCodeblockActions": {
+ "interactive.copyCodeBlock.label": "Copier",
+ "interactive.insertCodeBlock.label": "Insérer au curseur",
+ "interactive.insertIntoNewFile.label": "Insérer dans un nouveau fichier",
+ "interactive.runInTerminal.label": "Exécuter dans le terminal"
+ },
+ "vs/workbench/contrib/interactiveSession/browser/actions/interactiveSessionCopyActions": {
+ "interactive.copyAll.label": "Copier tout",
+ "interactive.copyItem.label": "Copier"
+ },
+ "vs/workbench/contrib/interactiveSession/browser/actions/interactiveSessionExecuteActions": {
+ "interactive.cancel.label": "Annuler",
+ "interactive.submit.label": "Soumettre"
+ },
+ "vs/workbench/contrib/interactiveSession/browser/actions/interactiveSessionTitleActions": {
+ "interactive.voteDown.label": "Voter pour le bas",
+ "interactive.voteUp.label": "Voter pour"
+ },
+ "vs/workbench/contrib/interactiveSession/browser/contrib/interactiveSessionInputEditorContrib": {
+ "interactive.input.placeholderNoCommands": "Poser une question",
+ "interactive.input.placeholderWithCommands": "Poser une question ou taper « / » pour les rubriques"
+ },
+ "vs/workbench/contrib/interactiveSession/browser/interactiveSession.contribution": {
+ "interactiveSession": "Session interactive",
+ "interactiveSession.editor.fontFamily": "Contrôle la famille de polices dans les sessions interactives.",
+ "interactiveSession.editor.fontSize": "Contrôle la taille de police en pixels dans les sessions interactives.",
+ "interactiveSession.editor.fontWeight": "Contrôle l’épaisseur de police dans sessions interactives.",
+ "interactiveSession.editor.lineHeight": "Contrôle la hauteur de ligne en pixels dans les sessions interactives. Utilisez 0 pour calculer la hauteur de ligne à partir de la taille de police.",
+ "interactiveSession.editor.wordWrap": "Contrôle si les lignes doivent être renvoyées à la ligne dans les sessions interactives.",
+ "interactiveSessionConfigurationTitle": "Session interactive"
+ },
+ "vs/workbench/contrib/interactiveSession/browser/interactiveSessionContributionServiceImpl": {
+ "vscode.extension.contributes.interactiveSession": "Contribue à un fournisseur de session interactive",
+ "vscode.extension.contributes.interactiveSession.icon": "Icône de ce fournisseur de session interactive.",
+ "vscode.extension.contributes.interactiveSession.id": "Identificateur unique pour ce fournisseur de session interactive.",
+ "vscode.extension.contributes.interactiveSession.label": "Nom d’affichage de ce fournisseur de session interactive.",
+ "vscode.extension.contributes.interactiveSession.when": "Condition qui doit être true pour activer ce fournisseur de session interactive."
+ },
+ "vs/workbench/contrib/interactiveSession/browser/interactiveSessionEditorInput": {
+ "interactiveSessionEditorName": "Session interactive"
+ },
+ "vs/workbench/contrib/interactiveSession/browser/interactiveSessionInputPart": {
+ "interactiveSessionInput": "Entrée de session interactive"
+ },
+ "vs/workbench/contrib/interactiveSession/browser/interactiveSessionListRenderer": {
+ "interactiveSession": "Session interactive"
+ },
+ "vs/workbench/contrib/interactiveSession/browser/interactiveSessionWidget": {
+ "clear": "Effacer la session"
+ },
+ "vs/workbench/contrib/interactiveSession/common/interactiveSessionColors": {
+ "interactive.requestBackground": "Couleur d’arrière-plan d’une demande interactive.",
+ "interactive.requestBorder": "Couleur de bordure d’une demande interactive."
+ },
+ "vs/workbench/contrib/interactiveSession/common/interactiveSessionContextKeys": {
+ "hasInteractiveSessionProvider": "La valeur est true quand un fournisseur de session interactive a été inscrit.",
+ "inInteractiveInput": "True lorsque le focus est dans l’entrée interactive, false dans le cas contraire.",
+ "inInteractiveSession": "True lorsque le focus se trouve dans le widget de session interactive, false dans le cas contraire.",
+ "interactiveInputHasText": "La valeur est true quand l’entrée interactive contient du texte.",
+ "interactiveSessionRequestInProgress": "True lorsque la demande actuelle est toujours en cours.",
+ "interactiveSessionResponseHasProviderId": "La valeur est true quand le fournisseur a attribué un ID à cette réponse.",
+ "interactiveSessionResponseVote": "Lorsque la réponse a été votée, est définie sur « up ». Quand vous avez voté en bas, la valeur est 'down'. Sinon, une chaîne vide."
+ },
+ "vs/workbench/contrib/interactiveSession/common/interactiveSessionServiceImpl": {
+ "emptyResponse": "Le fournisseur a renvoyé une réponse null"
+ },
+ "vs/workbench/contrib/interactiveSession/common/interactiveSessionViewModel": {
+ "thinking": "Pensif"
+ },
+ "vs/workbench/contrib/issue/browser/baseIssueReporterService": {
+ "acknowledge": "Confirmer l’accusé de réception de la version",
+ "bugDescription": "Partagez les étapes nécessaires pour reproduire fidèlement le problème. Veuillez inclure les résultats réels et prévus. Nous prenons en charge la syntaxe GitHub Markdown. Vous pourrez éditer votre problème et ajouter des captures d'écran lorsque nous le prévisualiserons sur GitHub.",
+ "bugReporter": "Rapport de bogue",
+ "closed": "Fermé",
+ "create": "Créer sur GitHub",
+ "createInternally": "Créer en interne",
+ "createOnGitHub": "Créer sur GitHub",
+ "description": "Description",
+ "disabledExtensions": "Les extensions sont désactivées",
+ "elsewhereDescription": "L’extension « {0} » préfère utiliser un rapporteur de problèmes externe. Pour accéder à cette expérience de rapport de problèmes, cliquez sur le bouton ci-dessous.",
+ "extension": "Une extension VS Code",
+ "extensionPlaceholder": "Par exemple. Texte de remplacement manquant sur l’image lisez-moi de l’extension",
+ "featureRequest": "Requête de fonctionnalité",
+ "featureRequestDescription": "Veuillez décrire la fonctionnalité que vous voulez voir. Nous supportons la syntaxe GitHub Markdown. Vous pourrez modifier votre problème et ajouter des captures d’écran lorsque nous la prévisualiserons sur GitHub.",
+ "handlesIssuesElsewhere": "Cette extension traite les problèmes en dehors de VS Code",
+ "hide": "masquer",
+ "internalPreviewMessage": "Si vos journaux de débogage de copilote contiennent des informations privées :",
+ "marketplace": "Place de marché des extensions",
+ "marketplacePlaceholder": "Par exemple, impossible de désactiver l’extension installée",
+ "open": "Ouvrir",
+ "openIssueReporter": "Ouvrir le Reporter de problèmes externes",
+ "pasteData": "Nous avons écrit les données nécessaires dans votre presse-papiers, car elles étaient trop volumineuses à envoyer. Veuillez les coller.",
+ "performanceIssue": "Problème de performances (blocage, lent, blocage)",
+ "performanceIssueDesciption": "Quand ce problème de performance s'est-il produit ? Se produit-il au démarrage ou après une série d'actions spécifiques ? Nous prenons en charge la syntaxe Markdown de GitHub. Vous pourrez éditer votre problème et ajouter des captures d'écran lorsque nous le prévisualiserons sur GitHub.",
+ "preview": "Aperçu sur GitHub",
+ "previewOnGitHub": "Aperçu sur GitHub",
+ "privateCreate": "Créer en interne",
+ "saveExtensionData": "Enregistrer les données d’extension",
+ "selectExtension": "Sélectionner une extension",
+ "selectSource": "Sélectionner la source",
+ "show": "afficher",
+ "similarIssues": "Problèmes similaires",
+ "stepsToReproduce": "Étapes à suivre pour reproduire",
+ "undefinedPlaceholder": "Entrez un titre",
+ "unknown": "Je ne sais pas",
+ "vscode": "Visual Studio Code",
+ "vscodePlaceholder": "Par exemple, le panneau Problèmes est manquant dans Workbench"
+ },
+ "vs/workbench/contrib/issue/browser/issue.contribution": {
+ "statusUnsupported": "L’argument --statut n’est pas encore pris en charge dans les navigateurs."
+ },
+ "vs/workbench/contrib/issue/browser/issueFormService": {
+ "cancel": "Annuler",
+ "confirmCloseIssueReporter": "Votre entrée n'est pas enregistrée. Voulez-vous vraiment fermer cette fenêtre ?",
+ "issueReporterWriteToClipboard": "Il y a trop de données à envoyer directement à GitHub. Les données sont copiées dans le Presse-papiers, collez-les dans la page d'envoi de GitHub ouverte.",
+ "ok": "&&OK",
+ "yes": "&&Oui"
+ },
+ "vs/workbench/contrib/issue/browser/issueQuickAccess": {
+ "contributedIssuePage": "Ouvrir la page d’extension",
+ "extensions": "Extensions",
+ "reportExtensionMarketplace": "Place de marché des extensions"
+ },
+ "vs/workbench/contrib/issue/browser/issueReporterPage": {
+ "acknowledgements": "Je comprends que la version de mon VS Code n’a pas été mise à jour et que ce problème peut être résolu.",
+ "chooseExtension": "Extension",
+ "completeInEnglish": "Remplissez le formulaire en anglais.",
+ "descriptionEmptyValidation": "Une description est obligatoire.",
+ "descriptionTooShortValidation": "Veuillez fournir une description plus longue.",
+ "details": "Entrez les détails.",
+ "disableExtensions": "en désactivant toutes les extensions et en rechargeant la fenêtre",
+ "disableExtensionsLabelText": "Essayez de reproduire le problème au bout de {0}. Si le problème se reproduit uniquement quand les extensions sont actives, il s'agit probablement d'un problème d'extension.",
+ "downloadExtensionData": "Télécharger les données d’extension",
+ "extensionData": "L'extension n'a pas de données supplémentaires à inclure.",
+ "extensionWithNoBugsUrl": "Le rapporteur de problèmes ne peut pas créer de problèmes pour cette extension, car elle ne spécifie pas d'URL pour signaler les problèmes. Consultez la page de la Place de marché de cette extension pour voir si d'autres instructions sont disponibles.",
+ "extensionWithNonstandardBugsUrl": "Le rapporteur de problèmes ne peut pas créer de problèmes pour cette extension. Accédez à {0} pour signaler un problème.",
+ "issueSourceEmptyValidation": "Une source de problème est obligatoire.",
+ "issueSourceLabel": "Pour",
+ "issueTitleLabel": "Titre",
+ "issueTitleRequired": "Veuillez s’il vous plaît entrer un titre.",
+ "issueTypeLabel": "Ceci est un(e)",
+ "reviewGuidanceLabel": "Avant de signaler un problème ici, veuillez consulter les conseils que nous fournissons . Veuillez remplir le formulaire en anglais.",
+ "sendExperiments": "Inclure les informations d'expérience A/B",
+ "sendExtensionData": "Inclure des informations supplémentaires sur l'extension",
+ "sendExtensions": "Inclure mes extensions activées",
+ "sendProcessInfo": "Inclure mes processus en cours d’exécution",
+ "sendSystemInfo": "Inclure des informations sur mon système",
+ "sendWorkspaceInfo": "Inclure des métadonnées sur mon espace de travail",
+ "show": "afficher",
+ "titleEmptyValidation": "Un titre est obligatoire.",
+ "titleLengthValidation": "Le titre est trop long."
+ },
+ "vs/workbench/contrib/issue/browser/issueReporterService": {
+ "undefinedPlaceholder": "Entrez un titre"
+ },
+ "vs/workbench/contrib/issue/browser/issueTroubleshoot": {
+ "I cannot reproduce": "Je ne parviens pas à reproduire",
+ "Stop": "Arrêter",
+ "This is Bad": "Je peux reproduire",
+ "ask to download insiders": "Essayez de télécharger et de reproduire le problème dans {0} insiders.",
+ "ask to reproduce issue": "Essayez de reproduire le problème dans {0} insiders et vérifiez si le problème existe.",
+ "bad": "Je peux reproduire",
+ "detail.start": "La résolution des problèmes est un processus qui vous permet d’identifier la cause d’un problème. La cause d’un problème peut être une configuration incorrecte, en raison d’une extension ou être {0} lui-même.\r\n\r\nPendant le processus, la fenêtre se recharge à plusieurs reprises. Chaque fois que vous devez confirmer si le problème persiste.",
+ "download insiders": "Télécharger {0} insiders",
+ "empty.profile": "La résolution des problèmes est active et a temporairement rétabli vos configurations par défaut. Vérifiez si vous pouvez toujours reproduire le problème et continuez en sélectionnant parmi ces options.",
+ "good": "Je ne parviens pas à reproduire",
+ "issue is in core": "La résolution des problèmes a identifié que le problème concerne {0}.",
+ "issue is with configuration": "La résolution des problèmes a repéré que le problème est causé par vos configurations. Signalez le problème en exportant vos configurations à l’aide de la commande « Exporter le profil » et en partageant le fichier dans le rapport sur le problème.",
+ "msg": "&&Résoudre le problème",
+ "profile.extensions.disabled": "La résolution des problèmes est active et a désactivé temporairement toutes les extensions installées. Vérifiez si vous pouvez toujours reproduire le problème et continuez en sélectionnant parmi ces options.",
+ "report anyway": "Signaler le problème quand même",
+ "stop": "Arrêter",
+ "title.stop": "Arrêter la résolution des problèmes",
+ "troubleshoot issue": "Résoudre le problème",
+ "troubleshootIssue": "Résoudre le problème...",
+ "use insiders": "Cela signifie probablement que le problème a déjà été résolu et sera disponible dans une prochaine version. Vous pouvez utiliser {0} insiders en toute sécurité jusqu’à ce que la nouvelle version stable soit disponible."
+ },
+ "vs/workbench/contrib/issue/common/issue.contribution": {
+ "miReportIssue": "Signaler le p&&roblème",
+ "reportIssueInEnglish": "Signaler un problème..."
+ },
+ "vs/workbench/contrib/issue/electron-browser/issue.contribution": {
+ "openIssueReporter": "Ouvrir le rapporteur de problèmes",
+ "reportPerformanceIssue": "Signaler un problème de performance...",
+ "tasksQuickAccessPlaceholder": "Tapez le nom d’une extension sur lequel créer un rapport."
+ },
+ "vs/workbench/contrib/issue/electron-browser/issueReporterService": {
+ "noCurrentExperiments": "Aucune expérience active.",
+ "pasteData": "Nous avons écrit les données nécessaires dans votre presse-papiers, car elles étaient trop volumineuses à envoyer. Veuillez les coller.",
+ "saveExtensionData": "Enregistrer les données d’extension",
+ "undefinedPlaceholder": "Entrez un titre",
+ "updateAvailable": "Une nouvelle version de {0} est disponible."
+ },
+ "vs/workbench/contrib/keybindings/browser/keybindings.contribution": {
+ "toggleKeybindingsLog": "Activer/désactiver la résolution des problèmes liés aux raccourcis clavier"
+ },
"vs/workbench/contrib/languageDetection/browser/languageDetection.contribution": {
- "detectlang": "Détecter la langue à partir du contenu",
- "langDetection.aria": "Changer en langue détectée : {0}",
- "langDetection.name": "Détection de la langue",
- "noDetection": "Impossible de détecter la langue de l’éditeur",
- "status.autoDetectLanguage": "Accepter la langue détectée : {0}"
+ "detectlang": "Détecter le langage à partir du contenu",
+ "langDetection.aria": "Changer en langage détecté : {0}",
+ "langDetection.name": "Détection du langage",
+ "noDetection": "Impossible de détecter le langage de l’éditeur",
+ "status.autoDetectLanguage": "Accepter le langage détecté : {0}"
},
- "vs/workbench/contrib/languageStatus/browser/languageStatus.contribution": {
+ "vs/workbench/contrib/languageStatus/browser/languageStatus": {
"aria.1": "{0}, {1}",
"aria.2": "{0}",
- "cat": "Afficher",
- "langStatus.aria": "État de la langue de l’éditeur : {0}",
- "langStatus.name": "État de la langue de l’éditeur",
- "name.pattern": "{0} (État de la langue)",
+ "langStatus.aria": "État du langage de l’éditeur : {0}",
+ "langStatus.name": "État du langage de l’éditeur",
+ "name.pattern": "{0} (État du langage)",
"pin": "Ajouter à la barre d’état",
- "reset": "Réinitialiser le compteur d’interaction d’état de la langue",
+ "reset": "Réinitialiser le compteur d’interaction d’état du langage",
"unpin": "Supprimer de la barre d’état"
},
+ "vs/workbench/contrib/limitIndicator/browser/limitIndicator.contribution": {
+ "colorDecoratorsStatusItem.name": "État de l’élément décoratif des couleurs",
+ "colorDecoratorsStatusItem.source": "Éléments décoratifs des couleurs",
+ "foldingRangesStatusItem.name": "État du pliage",
+ "foldingRangesStatusItem.source": "Repli",
+ "status.button.configure": "Configurer",
+ "status.limited.details": "seules les {0} s’affichent pour des raisons de performances",
+ "status.limitedColorDecorators.short": "Éléments décoratifs des couleurs",
+ "status.limitedFoldingRanges.short": "Plages de pliage"
+ },
+ "vs/workbench/contrib/list/browser/listResizeColumnAction": {
+ "list": "Liste",
+ "list.resizeColumn": "Redimensionner la colonne"
+ },
+ "vs/workbench/contrib/list/browser/tableColumnResizeQuickPick": {
+ "table.column.resizeValue.invalidRange": "Veuillez entrer un nombre supérieur à 0 et inférieur ou égal à 100.",
+ "table.column.resizeValue.invalidType": "Veuillez entrer un nombre entier.",
+ "table.column.resizeValue.placeHolder": "par ex., 20, 60, 100...",
+ "table.column.resizeValue.prompt": "Veuillez entrer une largeur en pourcentage pour la colonne « {0} ».",
+ "table.column.selection": "Sélectionnez la colonne à redimensionner. Tapez pour filtrer."
+ },
"vs/workbench/contrib/localHistory/browser/localHistory": {
"localHistoryIcon": "Icône d’une entrée d’historique local dans l’affichage chronologique",
"localHistoryRestore": "Icône de restauration du contenu d’une entrée d’historique local"
@@ -6606,6 +10854,7 @@
"localHistory.rename": "Renommer",
"localHistory.restore": "Restaurer le contenu",
"localHistory.restoreViaPicker": "Rechercher une entrée à restaurer",
+ "localHistory.restoreViaPickerMenu": "Historique local : Rechercher une entrée à restaurer...",
"localHistory.selectForCompare": "Sélectionner pour comparaison",
"localHistoryCompareToFileEditorLabel": "{0} ({1} • {2}) ↔ {3}",
"localHistoryCompareToPreviousEditorLabel": "{0} ({1} • {2}) ↔ {3} ({4} • {5})",
@@ -6621,118 +10870,96 @@
"vs/workbench/contrib/localHistory/browser/localHistoryTimeline": {
"localHistory": "Historique local"
},
- "vs/workbench/contrib/localHistory/electron-sandbox/localHistoryCommands": {
+ "vs/workbench/contrib/localHistory/electron-browser/localHistoryCommands": {
"openContainer": "Ouvrir le dossier contenant",
"revealInMac": "Afficher dans le Finder",
"revealInWindows": "Afficher dans l'Explorateur de fichiers"
},
- "vs/workbench/contrib/localization/browser/localizationsActions": {
- "available": "Disponible",
- "chooseLocale": "Sélectionner la langue d'affichage",
- "clearDisplayLanguage": "Effacer les préférences de langue d’affichage",
- "configureLocale": "Configurer la langue d'affichage",
- "installed": "Installé"
- },
- "vs/workbench/contrib/localization/electron-sandbox/localeService": {
- "argvInvalid": "Impossible d’écrire la langue d’affichage. Ouvrez les paramètres d’exécution, corrigez les erreurs/avertissements qu’il contient, puis réessayez.",
- "installing": "Installation de la prise en charge linguistique {0} ...",
- "openArgv": "Ouvrir les paramètres du runtime",
- "restart": "&&Redémarrer",
- "restartDisplayLanguageDetail": "Appuyez sur le bouton redémarrer pour redémarrer {0} et définir la langue d’affichage sur {1}.",
- "restartDisplayLanguageMessage": "Pour modifier la langue d’affichage, {0} doit redémarrer"
- },
- "vs/workbench/contrib/localization/electron-sandbox/localization.contribution": {
- "activateLanguagePack": "Pour être utilisé dans {0}, VS Code doit être redémarré.",
- "changeAndRestart": "Changer de langue et redémarrer",
- "doNotChangeAndRestart": "Ne changez pas de langue.",
- "doNotRestart": "Ne pas redémarrer",
- "neverAgain": "Ne plus afficher",
- "restart": "Redémarrer",
- "updateLocale": "Souhaitez-vous changer la langue de l’interface de VS Code en {0} et redémarrer ?",
+ "vs/workbench/contrib/localization/common/localization.contribution": {
+ "language id": "ID de langage",
+ "localizations": "Modules linguistiques",
+ "localizations language name": "Nom du langage",
+ "localizations localized language name": "Nom du langage (localisé)",
"vscode.extension.contributes.localizations": "Contribuer aux localisations de l’éditeur",
- "vscode.extension.contributes.localizations.languageId": "Id de la langue dans laquelle les chaînes d’affichage sont traduites.",
- "vscode.extension.contributes.localizations.languageName": "Nom de la langue en anglais.",
- "vscode.extension.contributes.localizations.languageNameLocalized": "Nom de la langue dans la langue contribuée.",
- "vscode.extension.contributes.localizations.translations": "Liste des traductions associées à la langue.",
+ "vscode.extension.contributes.localizations.languageId": "Id du langage dans lequel les chaînes d’affichage sont traduites.",
+ "vscode.extension.contributes.localizations.languageName": "Nom du langage en anglais.",
+ "vscode.extension.contributes.localizations.languageNameLocalized": "Nom du langage dans le langage contribué.",
+ "vscode.extension.contributes.localizations.translations": "Liste des traductions associées au langage.",
"vscode.extension.contributes.localizations.translations.id": "Id de VS Code ou Extension pour lesquels cette traduction contribue. L'Id de VS Code est toujours `vscode` et d’extension doit être au format `publisherId.extensionName`.",
"vscode.extension.contributes.localizations.translations.id.pattern": "L’Id doit être `vscode` ou au format `publisherId.extensionName` pour traduire respectivement VS code ou une extension.",
"vscode.extension.contributes.localizations.translations.path": "Un chemin relatif vers un fichier contenant les traductions du langage."
},
- "vs/workbench/contrib/localization/electron-sandbox/minimalTranslations": {
- "installAndRestart": "Installer et Redémarrer",
- "installAndRestartMessage": "Installez le module linguistique pour remplacer la langue d'affichage par {0}.",
- "searchMarketplace": "Rechercher dans la Place de marché",
- "showLanguagePackExtensions": "Recherchez dans les modules linguistiques du Marketplace pour remplacer la langue d'affichage par {0}."
- },
- "vs/workbench/contrib/localizations/browser/localizations.contribution": {
- "activateLanguagePack": "Pour être utilisé dans {0}, VS Code doit être redémarré.",
- "changeAndRestart": "Changer de langue et redémarrer",
- "doNotChangeAndRestart": "Ne changez pas de langue.",
- "doNotRestart": "Ne pas redémarrer",
- "neverAgain": "Ne plus afficher",
- "restart": "Redémarrer",
- "updateLocale": "Souhaitez-vous changer la langue de l’interface de VS Code en {0} et redémarrer ?",
- "vscode.extension.contributes.localizations": "Contribuer aux localisations de l’éditeur",
- "vscode.extension.contributes.localizations.languageId": "Id de la langue dans laquelle les chaînes d’affichage sont traduites.",
- "vscode.extension.contributes.localizations.languageName": "Nom de la langue en anglais.",
- "vscode.extension.contributes.localizations.languageNameLocalized": "Nom de la langue dans la langue contribuée.",
- "vscode.extension.contributes.localizations.translations": "Liste des traductions associées à la langue.",
- "vscode.extension.contributes.localizations.translations.id": "Id de VS Code ou Extension pour lesquels cette traduction contribue. L'Id de VS Code est toujours `vscode` et d’extension doit être au format `publisherId.extensionName`.",
- "vscode.extension.contributes.localizations.translations.id.pattern": "L’Id doit être `vscode` ou au format `publisherId.extensionName` pour traduire respectivement VS code ou une extension.",
- "vscode.extension.contributes.localizations.translations.path": "Un chemin relatif vers un fichier contenant les traductions du langage."
+ "vs/workbench/contrib/localization/common/localizationsActions": {
+ "available": "Disponible",
+ "chooseLocale": "Sélectionner le langage d'affichage",
+ "clearDisplayLanguage": "Effacer les préférences de langage d’affichage",
+ "configureLocale": "Configurer le langage d'affichage",
+ "configureLocaleDescription": "Modifie les paramètres régionaux de VS Code en fonction des packs linguistiques installés. Les langues courantes incluent le français, le chinois, l'espagnol, le japonais, l'allemand, le coréen, etc.",
+ "installed": "Installé",
+ "moreInfo": "Plus d’informations"
},
- "vs/workbench/contrib/localizations/browser/localizationsActions": {
- "chooseDisplayLanguage": "Sélectionner la langue d'affichage",
- "configureLocale": "Configurer la langue d'affichage",
- "installAdditionalLanguages": "Installer des langues supplémentaires...",
- "relaunchDisplayLanguageDetail": "Appuyez sur le bouton Redémarrer pour redémarrer {0} et changer la langue d'affichage.",
- "relaunchDisplayLanguageMessage": "Vous devez redémarrer pour appliquer le changement de la langue d'affichage.",
- "restart": "&&Redémarrer"
+ "vs/workbench/contrib/localization/electron-browser/localization.contribution": {
+ "changeAndRestart": "Changer de langage et redémarrer",
+ "neverAgain": "Ne plus afficher",
+ "updateLocale": "Voulez-vous changer le langage d’affichage de {0} à {1} et redémarrer ?"
},
- "vs/workbench/contrib/localizations/browser/minimalTranslations": {
+ "vs/workbench/contrib/localization/electron-browser/minimalTranslations": {
"installAndRestart": "Installer et Redémarrer",
- "installAndRestartMessage": "Installez le module linguistique pour remplacer la langue d'affichage par {0}.",
- "searchMarketplace": "Rechercher dans la Place de marché",
- "showLanguagePackExtensions": "Recherchez dans les modules linguistiques du Marketplace pour remplacer la langue d'affichage par {0}."
+ "installAndRestartMessage": "Installez le module linguistique pour remplacer le langage d'affichage par {0}.",
+ "searchMarketplace": "Rechercher sur la Place de marché",
+ "showLanguagePackExtensions": "Recherchez dans les modules linguistiques du Marketplace pour remplacer le langage d'affichage par {0}."
},
"vs/workbench/contrib/logs/common/logs.contribution": {
- "editSessionsLog": "Modifier les sessions",
- "rendererLog": "Fenêtre",
- "show window log": "Afficher le journal de la fenêtre",
- "telemetryLog": "Télémétrie",
- "userDataSyncLog": "Synchronisation des paramètres"
+ "remote name": "{0} (distant)",
+ "setDefaultLogLevel": "Définir comme niveau de journal par défaut",
+ "show window log": "Afficher le journal de la fenêtre"
},
"vs/workbench/contrib/logs/common/logsActions": {
- "critical": "Critique",
+ "all": "Tous",
"current": "Actuelle",
- "debug": "Déboguer",
"default": "Par défaut",
- "default and current": "Par défaut et actuel(s)",
- "err": "Erreur",
- "info": "Info",
+ "extensionLogs": "Journaux d’extension",
"log placeholder": "Sélectionner le fichier journal",
- "off": "DESACTIVÉ",
+ "loggers": "Journaux",
"openSessionLogFile": "Ouvrir le fichier journal Windows (Session)...",
+ "resetLogLevel": "Définir comme niveau de journal par défaut",
"selectLogLevel": "Sélectionner le niveau de journalisation (log)",
+ "selectLogLevelFor": " {0} : Sélectionner le niveau de journalisation",
+ "selectlog": "Définir le niveau de journalisation",
"sessions placeholder": "Sélectionner une session",
- "setLogLevel": "Définir le niveau de journalisation (log) ...",
- "trace": "Trace",
- "warn": "Avertissement"
- },
- "vs/workbench/contrib/logs/electron-sandbox/logs.contribution": {
- "mainLog": "Principal",
- "sharedLog": "Partagé"
+ "setLogLevel": "Définir le niveau de journalisation (log) ..."
},
- "vs/workbench/contrib/logs/electron-sandbox/logsActions": {
+ "vs/workbench/contrib/logs/electron-browser/logsActions": {
"openExtensionLogsFolder": "Ouvrir le dossier des journaux d'extension",
"openLogsFolder": "Ouvrir le dossier des journaux"
},
+ "vs/workbench/contrib/markdown/browser/markdownSettingRenderer": {
+ "alreadysetBoolFalse": "« {0} : {1} » est déjà désactivé",
+ "alreadysetBoolTrue": "« {0} : {1} » est déjà activé",
+ "alreadysetNum": "« {0} : {1} » est déjà défini sur {2}",
+ "alreadysetString": "« {0} : {1} » a déjà la valeur « {2} »",
+ "changeSettingTitle": "Afficher ou modifier le paramètre",
+ "copySettingId": "Copier l’ID du paramètre",
+ "falseMessage": "Désactiver « {0} : {1} »",
+ "numberValue": "Définir « {0} : {1} » sur {2}",
+ "restorePreviousValue": "Restaurer la valeur de « {0} : {1} »",
+ "stringValue": "Définir « {0} : {1} » sur « {2} »",
+ "trueMessage": "Activer « {0} : {1} »",
+ "viewInSettings": "Afficher dans Paramètres",
+ "viewInSettingsDetailed": "Afficher « {0} : {1} » dans Paramètres"
+ },
+ "vs/workbench/contrib/markdown/common/markdownColors": {
+ "markdownAlertCautionForeground": "Couleur de premier plan des alertes de prudence dans markdown.",
+ "markdownAlertImportantForeground": "Couleur de premier plan des alertes importantes dans markdown.",
+ "markdownAlertNoteForeground": "Couleur de premier plan des alertes de note dans markdown.",
+ "markdownAlertTipForeground": "Couleur de premier plan des alertes de conseil dans markdown.",
+ "markdownAlertWarningForeground": "Couleur de premier plan des alertes d’avertissement dans markdown."
+ },
"vs/workbench/contrib/markers/browser/markers.contribution": {
"clearFiltersText": "Effacer le texte des filtres",
"collapseAll": "Réduire tout",
"copyMarker": "Copier",
"copyMessage": "Copier le message",
- "filter": "Filtrer",
"focusProblemsFilter": "Filtre des problèmes de focus",
"focusProblemsList": "Vue des problèmes de focus",
"manyProblems": "10K+",
@@ -6740,19 +10967,39 @@
"miMarker": "&&Problèmes",
"noProblems": "Aucun problème",
"problems": "Problèmes",
+ "show active file": "Afficher le fichier actif uniquement",
+ "show errors": "Afficher les erreurs",
+ "show excluded files": "Afficher les fichiers exclus",
+ "show infos": "Afficher les informations",
"show multiline": "Afficher le message sur plusieurs lignes",
"show singleline": "Afficher le message sur une seule ligne",
+ "show warnings": "Afficher les avertissements",
"status.problems": "Problèmes",
+ "status.problemsVisibility": "Visibilité des problèmes",
+ "status.problemsVisibilityOff": "Les problèmes sont désactivés. Cliquez pour ouvrir les paramètres.",
+ "toggleActiveFileDescription": "Afficher ou masquer les problèmes (erreurs, avertissements, informations) uniquement à partir du fichier actif dans l’affichage des problèmes.",
+ "toggleErrorsDescription": "Afficher ou masquer les erreurs dans l’affichage des problèmes.",
+ "toggleExcludedFilesDescription": "Afficher ou masquer les fichiers exclus dans l’affichage des problèmes.",
+ "toggleInfosDescription": "Afficher ou masquer les informations dans l’affichage des problèmes.",
+ "toggleWarningsDescription": "Afficher ou masquer les avertissements dans l’affichage des problèmes.",
"totalErrors": "Erreurs : {0}",
"totalInfos": "Infos : {0}",
"totalProblems": "Total de {0} problèmes",
"totalWarnings": "Avertissements : {0}",
"viewAsTable": "Afficher sous forme de tableau",
- "viewAsTree": "Voir sous forme d'arborescence"
+ "viewAsTableDescription": "Afficher l’affichage des problèmes sous forme de table.",
+ "viewAsTree": "Voir sous forme d'arborescence",
+ "viewAsTreeDescription": "Afficher l’affichage des problèmes sous forme d’arborescence."
+ },
+ "vs/workbench/contrib/markers/browser/markersChatContext": {
+ "chatContext.diagnstic": "Problèmes...",
+ "chatContext.diagnstic.placeholder": "Sélectionner un problème à joindre",
+ "markers.panel.allErrors": "Tous les problèmes",
+ "markers.panel.at.ln.col.number": "[Ln {0}, Col {1}]"
},
"vs/workbench/contrib/markers/browser/markersFileDecorations": {
"label": "Problèmes",
- "markers.showOnFile": "Affichez les erreurs et les avertissements sur les fichiers et les dossiers.",
+ "markers.showOnFile": "Affichez les erreurs et les avertissements sur les fichiers et les dossiers. Remplacé par {0} lorsqu’il est désactivé.",
"tooltip.1": "1 problème dans ce fichier",
"tooltip.N": "{0} problèmes dans ce fichier"
},
@@ -6772,10 +11019,7 @@
"vs/workbench/contrib/markers/browser/markersView": {
"No problems filtered": "Affichage de {0} problèmes",
"clearFilter": "Effacer les filtres",
- "problems filtered": "Affichage de {0} problèmes sur {1}"
- },
- "vs/workbench/contrib/markers/browser/markersViewActions": {
- "filterIcon": "Icône de configuration du filtre dans la vue des marqueurs.",
+ "problems filtered": "Affichage de {0} problèmes sur {1}",
"showing filtered problems": "Affichage de {0} sur {1}"
},
"vs/workbench/contrib/markers/browser/messages": {
@@ -6788,7 +11032,7 @@
"markers.panel.filter.ariaLabel": "Filtrer les problèmes",
"markers.panel.filter.errors": "erreurs",
"markers.panel.filter.infos": "infos",
- "markers.panel.filter.placeholder": "Filtre (exemple : texte, **/*.ts, !**/modules_nœud/**)",
+ "markers.panel.filter.placeholder": "Filtre (exemple : texte, **/*.ts, !**/node_modules/**)",
"markers.panel.filter.showErrors": "Afficher les erreurs",
"markers.panel.filter.showInfos": "Afficher les informations",
"markers.panel.filter.showWarnings": "Afficher les avertissements",
@@ -6813,91 +11057,628 @@
"problems.panel.configuration.showCurrentInStatus": "Lorsqu'il est activé, le problème actuel s'affiche dans la barre d'état.",
"problems.panel.configuration.title": "Affichage des problèmes",
"problems.panel.configuration.viewMode": "Contrôle le mode d’affichage par défaut de la vue Problèmes.",
- "problems.tree.aria.label.error.marker": "Erreur générée par {0} : {1} à la ligne {2} et au caractère {3}. {4}",
+ "problems.tree.aria.label.error.marker": "Erreur : {0} à la ligne {1} et caractère {2}.{3} générés par {4}",
"problems.tree.aria.label.error.marker.nosource": "Erreur : {0} à la ligne {1} et au caractère {2}.{3}",
- "problems.tree.aria.label.info.marker": "Information générée par {0} : {1} à la ligne {2} et au caractère {3}.{4}",
+ "problems.tree.aria.label.info.marker": "Information : {0} à la ligne {1} et caractère {2}.{3} générés par {4}",
"problems.tree.aria.label.info.marker.nosource": "Information : {0} à la ligne {1} et au caractère {2}.{3}",
- "problems.tree.aria.label.marker": "Problème généré par {0} : {1} à la ligne {2} et au caractère {3}.{4}",
+ "problems.tree.aria.label.marker": "Problème : {0} à la ligne {1} et caractère {2}.{3} générés par {4}",
"problems.tree.aria.label.marker.nosource": "Problème : {0} à la ligne {1} et au caractère {2}.{3}",
"problems.tree.aria.label.marker.relatedInformation": " Ce problème a des références à {0} emplacements.",
"problems.tree.aria.label.relatedinfo.message": "{0} à la ligne {1} et caractère {2} dans {3}",
"problems.tree.aria.label.resource": "{0} problèmes dans le fichier {1} du dossier {2}",
- "problems.tree.aria.label.warning.marker": "Avertissement généré par {0} : {1} à la ligne {2} et au caractère {3}.{4}",
+ "problems.tree.aria.label.warning.marker": "Avertissement : {0} à la ligne {1} et caractère {2}.{3} générés par {4}",
"problems.tree.aria.label.warning.marker.nosource": "Avertissement : {0} à la ligne {1} et au caractère {2}.{3}",
"problems.view.focus.label": " Focus sur les problèmes (Erreurs, Avertissements, Infos)",
"problems.view.toggle.label": "Activer/désactiver les problèmes (Erreurs, Avertissements, Infos)"
},
+ "vs/workbench/contrib/mcp/browser/mcp.contribution": {
+ "mcp.quickaccess.add": "Ressources du serveur MCP",
+ "mcp.quickaccess.placeholder": "Filtrer sur une ressource MCP",
+ "mcpServer": "Serveur MCP"
+ },
+ "vs/workbench/contrib/mcp/browser/mcpAddContextContribution": {
+ "mcp.addContext": "Ressources MCP...",
+ "mcp.addContext.placeholder": "Sélectionner une ressource MCP..."
+ },
+ "vs/workbench/contrib/mcp/browser/mcpCommands": {
+ "mcp.actions.resources": "Ressources",
+ "mcp.actions.sampling": "Échantillonnage",
+ "mcp.actions.status": "État",
+ "mcp.addConfiguration": "Ajouter un serveur...",
+ "mcp.addConfiguration.description": "Installe un nouveau protocole de contexte de modèle dans les paramètres mcp.json",
+ "mcp.addServer": "Ajouter un serveur",
+ "mcp.addServer.description": "Ajouter une nouvelle configuration de serveur",
+ "mcp.autoStart": "Démarrer automatiquement des serveurs MCP lors de l’envoi d’un message de conversation",
+ "mcp.browseResources": "Parcourir les ressources...",
+ "mcp.command.browse": "Serveurs MCP",
+ "mcp.command.browse.mcp": "Parcourir les serveurs MCP",
+ "mcp.command.browse.tooltip": "Parcourir les serveurs MCP",
+ "mcp.command.openRemoteUserMcp": "Ouvrir la configuration de l’utilisateur distant",
+ "mcp.command.openUserMcp": "Ouvrir la configuration de l’utilisateur",
+ "mcp.command.openWorkspaceFolderMcp": "Ouvrir la configuration MCP du dossier d’espace de travail",
+ "mcp.command.openWorkspaceMcp": "Ouvrir la configuration MCP de l’espace de travail",
+ "mcp.command.restartServer": "Redémarrer le serveur",
+ "mcp.command.show.installed": "Afficher les serveurs installés",
+ "mcp.command.showConfiguration": "Afficher la configuration",
+ "mcp.command.showOutput": "Afficher la sortie",
+ "mcp.command.startServer": "Démarrer le serveur",
+ "mcp.command.stopServer": "Arrêter le serveur",
+ "mcp.config": "Afficher la configuration",
+ "mcp.configAccess": "Configurer l'accès au modèle",
+ "mcp.configureSamplingModels": "Configurer le modèle d'échantillonnage",
+ "mcp.configureSamplingModels.ph": "Choisissez les modèles auxquels {0} peut accéder via l’échantillonnage MCP",
+ "mcp.disconnect": "Déconnecter le compte",
+ "mcp.editStoredInput": "Modifier l’entrée stockée",
+ "mcp.err.md.multi": "Plusieurs serveurs MCP n’ont pas pu démarrer correctement :\r\n\r\n{0}",
+ "mcp.err.md.single": "Le serveur MCP {0} n’a pas pu démarrer correctement.",
+ "mcp.list": "Répertorier les serveurs",
+ "mcp.newTools": "Nouveaux outils disponibles ({0})",
+ "mcp.newTools.md.multi": "Les serveurs MCP ont été mis à jour et peuvent avoir de nouveaux outils disponibles :\r\n\r\n{0}",
+ "mcp.newTools.md.single": "Le serveur MCP {0} a été mis à jour et peut avoir de nouveaux outils disponibles.",
+ "mcp.options": "Options de serveur",
+ "mcp.resetCachedTools": "Réinitialiser les outils mis en cache",
+ "mcp.resetTrust": "Réinitialiser la confiance",
+ "mcp.resources": "Parcourir les ressources",
+ "mcp.restart": "Redémarrer le serveur",
+ "mcp.samplingLog": "Afficher les demandes d'échantillonnage",
+ "mcp.samplingLog.description": "Afficher les demandes d'échantillonnage pour ce serveur",
+ "mcp.samplingLog.title": "Échantillonnage MCP : {0}",
+ "mcp.selectAction": "Sélectionner une action pour « {0} »",
+ "mcp.selectServer": "Sélectionnez un serveur MCP",
+ "mcp.servers": "Serveurs MCP",
+ "mcp.showOutput": "Afficher la sortie",
+ "mcp.showOutput.description": "Définir les modèles que le serveur peut utiliser via l'échantillonnage MCP",
+ "mcp.signOut": "Se déconnecter",
+ "mcp.skipCurrentAutostart": "Ignorer le démarrage automatique en cours",
+ "mcp.start": "Démarrer le serveur",
+ "mcp.startPromptingServer": "Démarrer le serveur d'invite",
+ "mcp.stop": "Arrêter le serveur",
+ "mcp.toolError": "Erreur de chargement du ou des outils {0}",
+ "mcp.toolRefresh": "Découverte des outils en cours... Merci de patienter."
+ },
+ "vs/workbench/contrib/mcp/browser/mcpCommandsAddConfiguration": {
+ "allow": "Autoriser",
+ "cancel": "Annuler",
+ "install.error": "Erreur lors de l’installation du serveur MCP {0} : {1}",
+ "install.newName": "Entrer le nouveau nom",
+ "install.rename": "Renommer « {0} »",
+ "install.show": "Afficher la configuration",
+ "install.start": "Installer le serveur",
+ "install.title": "Installer le serveur MCP {0}",
+ "mcp.command.placeholder": "Commande à exécuter (avec des arguments facultatifs)",
+ "mcp.command.title": "Entrer la commande",
+ "mcp.confirmPublish": "Voulez-vous installer {0}{1} à partir de {2} ?",
+ "mcp.docker.placeholder": "Nom de l’image (par exemple, mcp/imagename)",
+ "mcp.docker.title": "Entrer le nom de l’image Docker",
+ "mcp.error.openHelpUri": "Ouvrir l’URL d’aide",
+ "mcp.error.retry": "Essayer un autre package",
+ "mcp.loading.title": "Chargement des détails du package...",
+ "mcp.npm.placeholder": "Nom du package (p. ex., @org/package)",
+ "mcp.npm.title": "Entrer le nom du package NPM",
+ "mcp.nuget.placeholder": "Nom du package (par exemple, Package.Name)",
+ "mcp.nuget.title": "Nommez le package NuGet",
+ "mcp.pip.placeholder": "Nom du package (p. ex., nom-package)",
+ "mcp.pip.title": "Entrer le nom du package Pip",
+ "mcp.serverId.placeholder": "Identificateur unique de cet élément",
+ "mcp.serverId.title": "Entrer l’ID du serveur",
+ "mcp.serverType.command": "Commande (stdio)",
+ "mcp.serverType.command.description": "Exécuter une commande locale qui implémente le protocole MCP",
+ "mcp.serverType.copilot": "Assisté par modèle",
+ "mcp.serverType.docker": "Image Docker",
+ "mcp.serverType.docker.description": "Installer à partir d’une image Docker",
+ "mcp.serverType.http": "HTTP (événements HTTP ou envoyés par le serveur)",
+ "mcp.serverType.http.description": "Se connecter à un serveur HTTP distant qui implémente le protocole MCP",
+ "mcp.serverType.manual": "Installation manuelle",
+ "mcp.serverType.npm": "Package NPM",
+ "mcp.serverType.npm.description": "Installer à partir d’un nom de package NPM",
+ "mcp.serverType.nuget": "Paquet NuGet",
+ "mcp.serverType.nuget.description": "Installez à partir d’un nom de package NuGet",
+ "mcp.serverType.pip": "Package PIP",
+ "mcp.serverType.pip.description": "Installer à partir d’un nom de package Pip",
+ "mcp.serverType.placeholder": "Choisissez le type de serveur MCP à ajouter",
+ "mcp.servers.browse": "Parcourez les serveurs MCP...",
+ "mcp.servers.discovery": "Ajouter depuis une autre application...",
+ "mcp.target..remote.description": "Disponible sur cet ordinateur distant, s’exécute le {0}",
+ "mcp.target.placeholder": "Sélectionner la cible de configuration",
+ "mcp.target.remote": "Distant",
+ "mcp.target.title": "Ajouter un serveur MCP",
+ "mcp.target.user": "Global",
+ "mcp.target.user.description": "Disponible dans tous les espaces de travail, s'exécute localement",
+ "mcp.target.workspace": "Espace de travail",
+ "mcp.target.workspace.description": "Disponible dans cet espace de travail, s'exécute localement",
+ "mcp.target.workspace.description.remote": "Disponible dans cet espace de travail, s'exécute sur {0}",
+ "mcp.url.placeholder": "URL du serveur MCP (par exemple, http://localhost:3000)",
+ "mcp.url.title": "Entrer l’URL du serveur"
+ },
+ "vs/workbench/contrib/mcp/browser/mcpElicitationService": {
+ "mcp.elicit.accept": "Répondre",
+ "mcp.elicit.cancel": "Annuler",
+ "mcp.elicit.enum.none": "Aucun",
+ "mcp.elicit.enum.none.description": "Aucune sélection",
+ "mcp.elicit.give": "Répondre",
+ "mcp.elicit.reject": "Annuler",
+ "mcp.elicit.source": "Serveur MCP ({0})",
+ "mcp.elicit.title": "Requête pour l’entrée",
+ "mcp.elicit.url.instruction": "Voulez-vous ouvrir cette URL ?",
+ "mcp.elicit.url.instruction2": "Cela ouvrira {0}",
+ "mcp.elicit.url.open": "Ouvrir {0}",
+ "mcp.elicit.url.open2": "Ouvrir l’URL",
+ "mcp.elicit.url.title": "Autorisation requise",
+ "mcp.elicit.useDefault": "Valeur par défaut",
+ "mcp.elicit.validation.date": "Veuillez entrer une date valide (JJ-MM-AAAA)",
+ "mcp.elicit.validation.dateTime": "Entrez une date-heure valide",
+ "mcp.elicit.validation.email": "Entrez une adresse de messagerie valide",
+ "mcp.elicit.validation.integer": "Entrez un entier valide",
+ "mcp.elicit.validation.maxLength": "La longueur maximale est {0}",
+ "mcp.elicit.validation.maximum": "La valeur maximale est {0}",
+ "mcp.elicit.validation.minLength": "La longueur minimale est {0}",
+ "mcp.elicit.validation.minimum": "La valeur minimale est {0}",
+ "mcp.elicit.validation.number": "Entrez un nombre valide",
+ "mcp.elicit.validation.uri": "Entrez un URI valide",
+ "msg.subtitle": "{0} (serveur MCP)",
+ "optional": "Facultatif"
+ },
+ "vs/workbench/contrib/mcp/browser/mcpLanguageFeatures": {
+ "cancel": "Annuler",
+ "clear": "Effacer",
+ "clearAll": "Effacer tout",
+ "edit": "Modifier",
+ "mcp.debug": "Déboguer",
+ "mcp.restart": "Redémarrer",
+ "mcp.server.more": "Plus...",
+ "mcp.start": "Démarrer",
+ "mcp.stop": "Arrêter",
+ "mcp.variableNotFound": "La variable `{0}` est introuvable. Vouliez-vous dire ${{1}} ?",
+ "server.error": "Erreur",
+ "server.promptcount": "{0} requêtes",
+ "server.running": "En cours d’exécution",
+ "server.starting": "Démarrage",
+ "server.toolCount": "{0} outils"
+ },
+ "vs/workbench/contrib/mcp/browser/mcpMigration": {
+ "mcp.migration.openRemoteConfig": "Ouvrir la configuration MCP de l’utilisateur distant",
+ "mcp.migration.openUserConfig": "Ouvrir la configuration utilisateur MCP",
+ "mcp.migration.remoteConfigFound": "Les serveurs MCP ne doivent plus être configurés dans les paramètres utilisateur distant. Utilisez plutôt la configuration MCP dédiée.",
+ "mcp.migration.update": "Mettre à jour maintenant",
+ "mcp.migration.userConfigFound": "Les serveurs MCP ne doivent plus être configurés dans les paramètres utilisateur. Utilisez plutôt la configuration MCP dédiée."
+ },
+ "vs/workbench/contrib/mcp/browser/mcpPromptArgumentPick": {
+ "loading": "Chargement en cours...",
+ "mcp.arg.activeFile": "Fichier actif",
+ "mcp.arg.activeFiles": "Fichier actif",
+ "mcp.arg.asCommand": "Exécuter en tant que commande",
+ "mcp.arg.asCommand.description": "Insère la sortie de commande en tant qu'argument d'invite",
+ "mcp.arg.asText": "Insérer en tant que texte",
+ "mcp.arg.files": "Fichiers",
+ "mcp.arg.required": "Cet argument est obligatoire",
+ "mcp.arg.selectedText": "Texte sélectionné",
+ "mcp.arg.selectedText.multiLine": "{0} lignes",
+ "mcp.arg.selectedText.singleLine": "Ligne {0}",
+ "mcp.arg.suggestions": "Suggestions",
+ "mcp.prompt.pick.title": "Valeur de : {0}",
+ "mcp.terminal.name": "Terminal MCP",
+ "optional": "Facultatif"
+ },
+ "vs/workbench/contrib/mcp/browser/mcpResourceQuickAccess": {
+ "goBack": "Retour ↩",
+ "mcp.quickaccess.attach": "Joindre à la conversation",
+ "mcp.quickaccess.placeholder": "Rechercher des ressources",
+ "mcp.resource.template": "Modèle de ressource : {0}",
+ "mcp.resource.template.empty": "",
+ "mcp.resource.template.notFound": "La ressource {0} est introuvable.",
+ "mcp.resource.template.optional": "Facultatif",
+ "mcp.resource.template.placeholder": "Valeur pour ${0} dans {1}"
+ },
+ "vs/workbench/contrib/mcp/browser/mcpServerActions": {
+ "config": "Afficher la configuration",
+ "configJson": "Afficher la configuration (JSON)",
+ "install": "Installer",
+ "install in workspace folder": "Dossier d’espace de travail",
+ "installInRemote": "Installer (à distance)",
+ "installInRemoteLabel": "Installer dans {0}",
+ "installInWorkspace": "Installer dans l’espace de travail",
+ "installing": "Installation en cours",
+ "manage": "Gérer",
+ "mcp.configAccess": "Configurer l’accès au modèle",
+ "mcp.disconnect": "Déconnecter le compte",
+ "mcp.resources": "Parcourir les ressources",
+ "mcp.samplingLog": "Afficher les requêtes d’échantillonnage",
+ "mcp.samplingLog.title": "Échantillonnage MCP : {0}",
+ "mcp.signOut": "Se déconnecter",
+ "mcp.target.title": "Choisir l’emplacement d’installation du serveur MCP",
+ "mcp.target.workspace": "Espace de travail",
+ "mcpServerInstallation": "L'installation du serveur MCP {0} a commencé. Un éditeur est maintenant ouvert avec plus de détails sur ce serveur MCP",
+ "output": "Afficher la sortie",
+ "restart": "Redémarrer le serveur",
+ "start": "Démarrer le serveur",
+ "stop": "Arrêter le serveur",
+ "uninstall": "Désinstaller"
+ },
+ "vs/workbench/contrib/mcp/browser/mcpServerEditor": {
+ "Install Info": "Installation",
+ "Marketplace Info": "Place de marché",
+ "Readme title": "Fichier Lisez-moi",
+ "Version": "Version",
+ "arguments": "Arguments :",
+ "command": "Commande :",
+ "configuration": "Configuration",
+ "configurationtooltip": "Informations sur la configuration de transfert",
+ "details": "Informations",
+ "detailstooltip": "Détails de l’extension, affichés depuis le fichier 'README.md' de l’extension",
+ "environmentVariables": "Variables d'environnement :",
+ "headers": "En-têtes :",
+ "id": "Identificateur",
+ "last updated": "Dernière publication",
+ "manifest": "Manifeste",
+ "manifesttooltip": "Détails du manifeste du serveur",
+ "name": "Nom de l’extension",
+ "noConfig": "Aucune configuration n/est disponible pour ce serveur MCP.",
+ "noManifest": "Aucun manifeste n'est disponible pour ce serveur MCP.",
+ "noReadme": "Aucun fichier LISEZMOI disponible.",
+ "packageName": "Package :",
+ "packagearguments": "Arguments du package :",
+ "packages": "Packages",
+ "published": "Publié",
+ "remotes": "Distant",
+ "repository": "Référentiel",
+ "resources": "Ressources",
+ "runtimeargs": "Arguments d’exécution :",
+ "serverName": "Nom :",
+ "serverType": "Type :",
+ "support": "Contacter le support",
+ "tags": "Balises",
+ "transport": "Transport :",
+ "url": "URL :"
+ },
+ "vs/workbench/contrib/mcp/browser/mcpServerEditorInput": {
+ "extensionsInputName": "Serveur MCP : {0}",
+ "mcpServerEditorLabelIcon": "Icône de l’éditeur de serveur MCP."
+ },
+ "vs/workbench/contrib/mcp/browser/mcpServerIcons": {
+ "licenseIcon": "Icône affichée avec le statut de licence.",
+ "mcpServer": "Icône utilisée pour le serveur MCP.",
+ "mcpServerRemoteIcon": "Icône indiquant qu’un serveur MCP est destiné à l’étendue de l’utilisateur distant.",
+ "mcpServerWorkspaceIcon": "Icône indiquant qu’un serveur MCP est destiné à l’étendue de l’espace de travail.",
+ "starredIcon": "Icône affichée avec le statut étoilé."
+ },
+ "vs/workbench/contrib/mcp/browser/mcpServersView": {
+ "mcp": "Serveurs MCP",
+ "mcp servers": "Serveurs MCP",
+ "mcp-installed": "Serveurs MCP : installés",
+ "mcp.gallery.enableDialog.cancel": "Annuler",
+ "mcp.gallery.enableDialog.enable": "Activer",
+ "mcp.gallery.enableDialog.setting": "Cette fonctionnalité est actuellement en préversion. Vous pouvez la désactiver à tout moment à l’aide du paramètre {0}.",
+ "mcp.gallery.enableDialog.title": "Voulez-vous activer la Place de marché des serveurs MCP ?",
+ "mcp.welcome.descriptionWithLink": "Parcourir et installer les [serveurs Model Context Protocol (MCP)](https://code.visualstudio.com/docs/copilot/customization/mcp-servers) directement depuis VS Code pour étendre le mode agent avec des outils supplémentaires permettant de se connecter aux bases de données, d’invoquer des API et d’exécuter des tâches spécialisées.",
+ "mcp.welcome.enableGalleryButton": "Activer la Place de marché des serveurs MCP",
+ "mcp.welcome.settings.tooltip": "Ouvrir les paramètres",
+ "mcp.welcome.title": "Serveurs MCP",
+ "no extensions found": "Désolé, aucun serveur MCP trouvé."
+ },
+ "vs/workbench/contrib/mcp/browser/mcpServerWidgets": {
+ "mcpIconStarForeground": "Couleur d’icône pour MCP marqué d’une étoile.",
+ "publisher": "Serveur de publication ({0})",
+ "remote user extension": "Serveur MCP distant",
+ "verified publisher": "Cet éditeur a vérifié la propriété de {0}.",
+ "workspace extension": "Serveur MCP de l’espace de travail"
+ },
+ "vs/workbench/contrib/mcp/browser/mcpWorkbenchService": {
+ "cannot be installed": "Désolé, nous ne pouvons pas installer le serveur MCP « {0} », car il n'est pas disponible dans cette configuration.",
+ "disabled - all not allowed": "Ce serveur MCP est désactivé, car les serveurs MCP sont configurés pour être désactivés dans l'Éditeur. Vérifiez vos [paramètres]({0}).",
+ "disabled - some not allowed": "Ce serveur MCP est désactivé, car il est configuré pour être désactivé dans l’Éditeur. Vérifiez vos [paramètres]({0}).",
+ "mcp.configuration.userLocalValue": "Global dans {0}",
+ "not an extension": "L’objet fourni n’est pas un serveur MCP.",
+ "overwriting": "Remplacement du serveur MCP « {0} » dans {1} par {2}."
+ },
+ "vs/workbench/contrib/mcp/common/discovery/extensionMcpDiscovery": {
+ "invalidData": "Tableau de collections MCP attendu",
+ "invalidId": "L’élément 'id' doit être une chaîne non vide.",
+ "invalidLabel": "L’élément 'label' doit être une chaîne non vide.",
+ "invalidWhen": "« when » doit être une chaîne non vide."
+ },
+ "vs/workbench/contrib/mcp/common/discovery/nativeMcpDiscoveryAbstract": {
+ "onRemoteLabel": " sur {0}"
+ },
+ "vs/workbench/contrib/mcp/common/mcpConfiguration": {
+ "app.mcp.args.command": "Arguments transmis au serveur.",
+ "app.mcp.dev": "Mode de développement activé pour le serveur. Lorsqu’il est présent, le serveur démarre de manière anticipée et la sortie est incluse dans ses résultats. Les propriétés de l’objet `dev` peuvent configurer un comportement supplémentaire.",
+ "app.mcp.dev.debug": "Si cette option est définie, débogue le serveur MCP en utilisant le runtime donné au démarrage.",
+ "app.mcp.dev.debug.debugpyPath": "Chemin d’accès vers l’exécutable debugpy.",
+ "app.mcp.dev.debug.type.node": "Déboguez le serveur MCP en utilisant Node.js.",
+ "app.mcp.dev.debug.type.python": "Déboguez le serveur MCP en tirant parti de Python et debugpy.",
+ "app.mcp.dev.watch": "Modèle Glob ou liste de modèles Glob relatifs au dossier d’espace de travail à surveiller. Le serveur MCP est redémarré lorsque ces fichiers sont modifiés.",
+ "app.mcp.env.command": "Variables d’environnement transmises au serveur.",
+ "app.mcp.envFile.command": "Chemin d’accès à un fichier contenant des variables d’environnement pour le serveur.",
+ "app.mcp.json.command": "La commande d’exécution du serveur.",
+ "app.mcp.json.cwd": "Répertoire de travail de cette commande de serveur. La valeur par défaut correspond au dossier de l’espace de travail lorsqu’il est exécuté dans un espace de travail.",
+ "app.mcp.json.headers": "En-têtes supplémentaires envoyés au serveur.",
+ "app.mcp.json.title": "Serveurs de protocole de contexte de modèle",
+ "app.mcp.json.type": "Le type de serveur.",
+ "app.mcp.json.url": "L'URL du point de terminaison HTTP ou SSE Streamable.",
+ "app.mcp.json.url.pattern": "L’URL doit commencer par « http:// » ou « https:// ».",
+ "id": "ID",
+ "mcp.discovery.source.claude-desktop": "Claude pour ordinateur de bureau",
+ "mcp.discovery.source.claude-desktop.config": "Claude Desktop configuration (`claude_desktop_config.json`)",
+ "mcp.discovery.source.cursor-global": "Cursor (global)",
+ "mcp.discovery.source.cursor-global.config": "Configuration globale du curseur ('~/.cursor/mcp.json')",
+ "mcp.discovery.source.cursor-workspace": "Cursor (espace de travail)",
+ "mcp.discovery.source.cursor-workspace.config": "Configuration de l’espace de travail du curseur (`.cursor/mcp.json`)",
+ "mcp.discovery.source.windsurf": "Windsurf",
+ "mcp.discovery.source.windsurf.config": "Windsurf configurations (`~/.codeium/windsurf/mcp_config.json`)",
+ "mcpServerDefinitionProviders": "Serveurs MCP",
+ "name": "Nom",
+ "vscode.extension.contributes.mcp": "Contribue aux serveurs de protocole de contexte de modèle. Les utilisateurs de cette fonction doivent également utiliser `vscode.lm.registerMcpServerDefinitionProvider`.",
+ "vscode.extension.contributes.mcp.id": "ID unique de la collection.",
+ "vscode.extension.contributes.mcp.label": "Nom d’affichage de la collection.",
+ "vscode.extension.contributes.mcp.when": "Condition qui doit avoir la valeur true pour activer cette collection."
+ },
+ "vs/workbench/contrib/mcp/common/mcpContextKeys": {
+ "mcp.hasServersWithErrors.description": "Indique si des serveurs MCP présentent des erreurs.",
+ "mcp.hasUnknownTools.description": "Indique si des serveurs MCP comportent des outils inconnus.",
+ "mcp.serverCount.description": "Clé de contexte indiquant le nombre de serveurs MCP enregistrés",
+ "mcp.toolsCount.description": "Touche contextuelle indiquant le nombre d’outils MCP enregistrés"
+ },
+ "vs/workbench/contrib/mcp/common/mcpDevMode": {
+ "mcp.debug.nodeBinReq": "Vous devez lancer le serveur MCP avec l’exécutable « node » pour activer le débogage, mais il a été lancé avec « {0} »",
+ "mcp.debug.pythonBinReq": "Vous devez lancer le serveur MCP avec l’exécutable « python » pour activer le débogage, mais il a été lancé avec « {0} »"
+ },
+ "vs/workbench/contrib/mcp/common/mcpLanguageModelToolContribution": {
+ "mcp.tool.warning": "Notez que les serveurs MCP ou le contenu d’une conversation malveillante peuvent tenter de faire un usage abusif de « {0} » via les outils installés.",
+ "mcp.toolset": "{0} : Tous les outils",
+ "msg.ran": "{0} a été exécuté ",
+ "msg.run": "Exécution de {0}",
+ "msg.subtitle": "{0} (serveur MCP)",
+ "msg.title": "Exécuter {0}"
+ },
+ "vs/workbench/contrib/mcp/common/mcpRegistry": {
+ "mcp.launchError": "Erreur de démarrage de {0} : {1}",
+ "mcp.launchError.openConfig": "Ouvrir la configuration",
+ "mcp.trust.details": "Le serveur MCP {0} a été mis à jour. Les serveurs MCP peuvent ajouter du contexte à votre session de conversation et entraîner un comportement inattendu. Voulez-vous faire confiance à ce serveur et le gérer ?",
+ "mcp.trust.detailsMulti": "Plusieurs serveurs MCP mis à jour ont été découverts :\r\n\r\n{0}\r\n\r\n Les serveurs MCP peuvent ajouter du contexte à votre session de conversation et entraîner un comportement inattendu. Voulez-vous faire confiance à ces serveurs et les gérer ?",
+ "mcp.trust.no": "Ne pas faire confiance",
+ "mcp.trust.pick": "Choisissez Trusted",
+ "mcp.trust.yes": "Faire confiance",
+ "trustFromExt": "de {0}",
+ "trustTitleWithOrigin": "Faire confiance et exécuter le serveur MCP {0} ?",
+ "trustTitleWithOriginMulti": "Faire confiance et exécuter les serveurs MCP {0} ?"
+ },
+ "vs/workbench/contrib/mcp/common/mcpSamplingLog": {
+ "mcp.sampling.rpd": "{0} demandes totales au cours des 7 derniers jours."
+ },
+ "vs/workbench/contrib/mcp/common/mcpSamplingService": {
+ "cancel": "Annuler",
+ "configure": "Configurer",
+ "mcp.sampling.allow.always": "Toujours",
+ "mcp.sampling.allow.inSession": "Autoriser dans cette session",
+ "mcp.sampling.allow.never": "Jamais",
+ "mcp.sampling.allow.notNow": "Plus tard",
+ "mcp.sampling.allowDuringChat.desc": "Le serveur MCP « {0} » a émis une demande d’appel de modèle de langage. Voulez-vous l’autoriser à effectuer des demandes pendant la conversation ?",
+ "mcp.sampling.allowDuringChat.title": "Autoriser les outils MCP de « {0} » à effectuer des demandes LLM ?",
+ "mcp.sampling.allowOutsideChat.desc": "Le serveur MCP « {0} » a émis une demande d’appel de modèle de langage. Voulez-vous l’autoriser à effectuer des demandes en dehors des appels d’outils pendant la conversation ?",
+ "mcp.sampling.allowOutsideChat.title": "Autoriser le serveur MCP « {0} » à effectuer des demandes LLM ?",
+ "mcp.sampling.needsModels": "Le serveur MCP « {0} » a déclenché une demande de modèle de langage, mais il n’a aucun modèle autorisé."
+ },
+ "vs/workbench/contrib/mcp/common/mcpServer": {
+ "mcp.command.showOutput": "Afficher la sortie",
+ "mcpBadSchema": "Le serveur MCP `{0}` a des outils avec des paramètres non valides qui seront omis.",
+ "mcpBadSchema.show": "Afficher",
+ "mcpBadSchema.tool": "L’outil `{0}` a des paramètres JSON non valides :",
+ "mcpDebugPyHelp": "La commande « {0} » est introuvable. Vous pouvez spécifier le chemin d’accès vers debugpy dans l’option `dev.debug.debugpyPath`.",
+ "mcpServerError": "Impossible de {0} démarrer le serveur MCP : {1}",
+ "mcpServerInstall": "Installez {0}",
+ "mcpServerNotFound": "La commande «{0}» nécessaire pour exécuter {1} est introuvable.",
+ "mcpViewDocs": "Afficher la documentation"
+ },
+ "vs/workbench/contrib/mcp/common/mcpServerConnection": {
+ "mcpServer.starting": "Démarrage du serveur {0}",
+ "mcpServer.state": "État de connexion : {0}",
+ "mcpServer.stopping": "Arrêt du serveur {0}"
+ },
+ "vs/workbench/contrib/mcp/common/mcpTypes": {
+ "mcpstate.error": "Erreur {0}",
+ "mcpstate.running": "En cours d’exécution",
+ "mcpstate.starting": "Démarrage",
+ "mcpstate.stopped": "Arrêté"
+ },
"vs/workbench/contrib/mergeEditor/browser/commands/commands": {
"layout.column": "Disposition des colonnes",
"layout.mixed": "Disposition mixte",
- "merge.acceptAllInput1": "Accept All Changes from Left",
- "merge.acceptAllInput2": "Accept All Changes from Right",
- "merge.goToNextConflict": "Accéder au conflit suivant",
- "merge.goToPreviousConflict": "Accéder au conflit précédent",
+ "layout.showBase": "Afficher la base",
+ "layout.showBaseCenter": "Afficher le centre de base",
+ "layout.showBaseTop": "Afficher le haut de la base",
+ "merge.acceptAllInput1": "Accepter toutes les modifications entrantes à partir de la gauche",
+ "merge.acceptAllInput2": "Accepter toutes les modifications actuelles à partir de la droite",
+ "merge.goToNextUnhandledConflict": "Accéder au conflit non géré suivant",
+ "merge.goToPreviousUnhandledConflict": "Accéder au conflit non géré précédent",
"merge.openBaseEditor": "Ouvrir le fichier de base",
"merge.toggleCurrentConflictFromLeft": "Activer/désactiver le conflit actuel à partir de la gauche",
"merge.toggleCurrentConflictFromRight": "Activer/désactiver le conflit actuel à partir de la droite",
"mergeEditor": "Éditeur de fusion",
+ "mergeEditor.acceptAllCombination": "Accepter toutes les combinaisons",
+ "mergeEditor.acceptMerge": "Terminer la fusion",
+ "mergeEditor.acceptMerge.unhandledConflicts.accept": "&&Terminé avec des conflits",
+ "mergeEditor.acceptMerge.unhandledConflicts.detail": "Le fichier contient des conflits non pris en charge.",
+ "mergeEditor.acceptMerge.unhandledConflicts.message": "Voulez-vous terminer la fusion de {0}?",
"mergeEditor.compareInput1WithBase": "Comparer l’entrée 1 à la base",
"mergeEditor.compareInput2WithBase": "Comparer l’entrée 2 à la base",
"mergeEditor.compareWithBase": "Comparer avec la base",
+ "mergeEditor.resetChoice": "Réinitialiser le choix de « Fermer avec des conflits »",
+ "mergeEditor.resetResultToBaseAndAutoMerge": "Réinitialiser le résultat",
+ "mergeEditor.resetResultToBaseAndAutoMerge.short": "Réinitialiser",
+ "mergeEditor.toggleBetweenInputs": "Basculer entre les entrées de l'Éditeur de fusion",
"openfile": "Ouvrir un fichier",
+ "showNonConflictingChanges": "Afficher les modifications non conflictuelles",
"title": "Ouvrir l'Éditeur de fusion"
},
"vs/workbench/contrib/mergeEditor/browser/commands/devCommands": {
"merge.dev.copyState": "Copier l’état de l’éditeur de fusion au format JSON",
- "merge.dev.openState": "Ouvrir l’état de l’éditeur de fusion à partir de JSON",
- "mergeEditor.enterJSON": "Entrer JSON",
+ "merge.dev.loadContentsFromFolder": "Charger l’état de l’éditeur de fusion à partir d’un dossier",
+ "merge.dev.saveContentsToFolder": "Enregistrer l’état de l’éditeur de fusion dans le dossier",
+ "mergeEditor": "Éditeur de fusion (Dev)",
"mergeEditor.name": "Éditeur de fusion",
"mergeEditor.noActiveMergeEditor": "Aucun éditeur de fusion actif",
- "mergeEditor.successfullyCopiedMergeEditorContents": "État de l’éditeur de fusion copié avec succès"
+ "mergeEditor.selectFolderToSaveTo": "Sélectionnez le dossier à sauvegarder.",
+ "mergeEditor.successfullyCopiedMergeEditorContents": "État de l’éditeur de fusion copié avec succès",
+ "mergeEditor.successfullySavedMergeEditorContentsToFolder": "Enregistrement réussi de l’état de l’éditeur de fusion dans le dossier"
},
"vs/workbench/contrib/mergeEditor/browser/mergeEditor.contribution": {
+ "diffAlgorithm.advanced": "Utilise l’algorithme de comparaison avancé.",
+ "diffAlgorithm.legacy": "Utilise l’algorithme de comparaison hérité.",
"name": "Éditeur de fusion"
},
+ "vs/workbench/contrib/mergeEditor/browser/mergeEditorAccessibilityHelp": {
+ "msg1": "Vous êtes dans un éditeur de fusion.",
+ "msg2": "Naviguez entre les conflits de fusion en utilisant les commandes Accéder au conflit non géré suivant{0} et Accéder au conflit non géré précédent{1}.",
+ "msg3": "Exécutez la commande Éditeur de fusion : Accepter toutes les modifications entrantes de l'{0} gauche et de l’Éditeur de fusion : Accepter toutes les modifications actuelles à partir du{1}",
+ "msg4": "Fin de la fusion{0}.",
+ "msg5": "Basculer entre les entrées de l’éditeur de fusion, les modifications entrantes et les modifications actuelles {0}."
+ },
"vs/workbench/contrib/mergeEditor/browser/mergeEditorInput": {
- "name": "Fusion en cours : {0}",
- "unhandledConflicts.cancel": "Annuler",
- "unhandledConflicts.detail1": "Les conflits de fusion dans cet éditeur ne seront pas gérés.",
- "unhandledConflicts.detailN": "Les conflits de fusion dans {0} éditeurs ne seront pas gérés.",
- "unhandledConflicts.discard": "Ignorer les modifications de fusion",
- "unhandledConflicts.ignore": "Continuer avec des conflits",
- "unhandledConflicts.msg": "Voulez-vous continuer avec des conflits non gérés?",
- "unhandledConflicts.saveAndIgnore": "Enregistrer et continuer avec les conflits"
+ "mergeEditor.input1": "Entrant, entrée de gauche",
+ "mergeEditor.input2": "Entrée actuelle, droite",
+ "mergeEditor.result": "Résultat de la fusion",
+ "name": "Fusion en cours : {0}"
+ },
+ "vs/workbench/contrib/mergeEditor/browser/mergeEditorInputModel": {
+ "acceptMerge": "&&Accepter la fusion",
+ "detail1": "Le résultat de la fusion sont perdus si vous ne l’enregistrez pas.",
+ "detail1Conflicts": "Le fichier contient des conflits non gérés. Le résultat de la fusion sera perdu si vous ne l’enregistrez pas.",
+ "detailN": "Les résultats de la fusion sont perdus si vous ne les enregistrez pas.",
+ "detailNConflicts": "Les fichiers contiennent des conflits non traités. Les résultats de fusion seront perdus si vous ne les enregistrez pas.",
+ "discard": "N&&e pas enregistrer",
+ "merge-editor.source": "Avant de résoudre les conflits dans l’éditeur de fusion",
+ "message1": "Voulez-vous conserver le résultat de fusion de {0} ?",
+ "messageN": "Voulez-vous conserver le résultat de fusion de {0} fichiers ?",
+ "noMoreWarn": "Ne plus me poser la question",
+ "save": "&&Enregistrer",
+ "saveTempFile.detail": "Cette opération écrit le résultat de la fusion dans le fichier d’origine et ferme l’éditeur de fusion.",
+ "saveTempFile.message": "Voulez-vous accepter le résultat de la fusion ?",
+ "saveWithConflict": "&&Enregistrer avec des conflits",
+ "workspace.close": "&&Fermer",
+ "workspace.closeWithConflicts": "&&Fermer avec des conflits",
+ "workspace.detail1.handled": "Vos changements sont perdus si vous ne les enregistrez pas.",
+ "workspace.detail1.unhandled": "Le fichier contient des conflits non pris en charge. Vos modifications seront perdues si vous ne les enregistrez pas.",
+ "workspace.detail1.unhandled.nonDirty": "Le fichier contient des conflits non pris en charge.",
+ "workspace.detailN.handled": "Vos changements sont perdus si vous ne les enregistrez pas.",
+ "workspace.detailN.unhandled": "Les fichiers contiennent des conflits non traités. Vos modifications seront perdues si vous ne les enregistrez pas.",
+ "workspace.detailN.unhandled.nonDirty": "Les fichiers contiennent des conflits non traités.",
+ "workspace.doNotSave": "N&&e pas enregistrer",
+ "workspace.message1": "Voulez-vous enregistrer les modifications apportées à {0} ?",
+ "workspace.message1.nonDirty": "Voulez-vous fermer l’éditeur de fusion pour {0} ?",
+ "workspace.messageN": "Voulez-vous enregistrer les modifications apportées aux fichiers {0} ?",
+ "workspace.messageN.nonDirty": "Voulez-vous fermer les éditeurs de fusion pour {0} ?",
+ "workspace.save": "&&Enregistrer",
+ "workspace.saveWithConflict": "&&Enregistrer avec des conflits"
+ },
+ "vs/workbench/contrib/mergeEditor/browser/mergeMarkers/mergeMarkersController": {
+ "conflictingLine": "1 Ligne en conflit",
+ "conflictingLines": "{0} Lignes en conflit"
+ },
+ "vs/workbench/contrib/mergeEditor/browser/model/mergeEditorModel": {
+ "setInputHandled": "Définir l’entrée gérée",
+ "undoMarkAsHandled": "Annuler la marque comme gérée"
},
"vs/workbench/contrib/mergeEditor/browser/view/colors": {
"mergeEditor.change.background": "Couleur d’arrière-plan des modifications.",
"mergeEditor.change.word.background": "Couleur d’arrière-plan des modifications de mots.",
+ "mergeEditor.changeBase.background": "Couleur d’arrière-plan des modifications apportées à la base.",
+ "mergeEditor.changeBase.word.background": "Couleur d’arrière-plan des modifications de mots dans la base.",
"mergeEditor.conflict.handled.minimapOverViewRuler": "Couleur de premier plan des modifications apportées à l’entrée 1.",
"mergeEditor.conflict.handledFocused.border": "Couleur de bordure des conflits individuels focalisés pris en charge",
"mergeEditor.conflict.handledUnfocused.border": "Couleur de bordure des conflits individuels non focalisés pris en charge",
+ "mergeEditor.conflict.input1.background": "Couleur d’arrière-plan des décorations dans l’entrée 1.",
+ "mergeEditor.conflict.input2.background": "Couleur d’arrière-plan des décorations dans l’entrée 2.",
"mergeEditor.conflict.unhandled.minimapOverViewRuler": "Couleur de premier plan des modifications apportées à l’entrée 1.",
"mergeEditor.conflict.unhandledFocused.border": "Couleur de bordure des conflits individuels focalisés non pris en charge",
- "mergeEditor.conflict.unhandledUnfocused.border": "Couleur de bordure des conflits individuels non focalisés non pris en charge"
+ "mergeEditor.conflict.unhandledUnfocused.border": "Couleur de bordure des conflits individuels non focalisés non pris en charge",
+ "mergeEditor.conflictingLines.background": "Arrière-plan du texte « Lignes en conflit »."
+ },
+ "vs/workbench/contrib/mergeEditor/browser/view/conflictActions": {
+ "accept": "Accepter {0}",
+ "acceptBoth": "Accepter la combinaison",
+ "acceptBoth0First": "Accepter la combinaison ({0} FIRST)",
+ "acceptBothTooltip": "Acceptez une combinaison automatique des deux côtés dans le document de résultats.",
+ "acceptTooltip": "Accepter {0} dans le document de résultats.",
+ "append": "Ajouter {0}",
+ "appendTooltip": "Ajouter {0} au document de résultats.",
+ "combine": "Accepter la combinaison",
+ "ignore": "Ignorer",
+ "manualResolution": "Résolution manuelle",
+ "manualResolutionTooltip": "Ce conflit a été résolu manuellement.",
+ "markAsHandledTooltip": "Ne prenez pas ce côté du conflit.",
+ "noChangesAccepted": "Aucune modification acceptée",
+ "noChangesAcceptedTooltip": "La résolution actuelle de ce conflit est égale à l’ancêtre courant des modifications de droite et de gauche.",
+ "remove": "Supprimer {0}",
+ "removeTooltip": "Supprimer {0} du document de résultats.",
+ "resetToBase": "Réinitialiser la base",
+ "resetToBaseTooltip": "Rétablissez ce conflit à l’ancêtre courant des modifications de droite et de gauche."
+ },
+ "vs/workbench/contrib/mergeEditor/browser/view/editors/baseCodeEditorView": {
+ "base": "Base",
+ "compareWith": "Comparaison en cours avec {0}",
+ "compareWithTooltip": "Les différences sont mises en surbrillance avec une couleur d’arrière-plan."
},
"vs/workbench/contrib/mergeEditor/browser/view/editors/inputCodeEditorView": {
- "accept": "Accepter",
+ "accept.conflicting": "Accepter (le résultat est incorrect)",
+ "accept.excluded": "Accepter",
+ "accept.first": "Annuler l’acceptation",
+ "accept.second": "Annuler l’acceptation (actuellement deuxième)",
+ "input1": "Entrée 1",
+ "input2": "Entrée 2",
"mergeEditor.accept": "Accepter {0}",
"mergeEditor.acceptBoth": "Accepter les deux",
"mergeEditor.markAsHandled": "Marquer comme géré",
"mergeEditor.swap": "Échanger"
},
"vs/workbench/contrib/mergeEditor/browser/view/editors/resultCodeEditorView": {
+ "allConflictHandled": "Tous les conflits sont gérés, la fusion peut être effectuée maintenant.",
+ "goToNextConflict": "Accéder au conflit suivant",
"mergeEditor.remainingConflict": "{0} conflits restants ",
- "mergeEditor.remainingConflicts": "{0} conflit restant"
+ "mergeEditor.remainingConflicts": "{0} conflit restant",
+ "result": "Résultat"
},
"vs/workbench/contrib/mergeEditor/browser/view/mergeEditor": {
- "editor.mergeEditor.label": "Éditeur de fusion",
- "input1": "Entrée 1",
- "input2": "Entrée 2",
- "mergeEditor": "Éditeur de fusion de texte",
- "result": "Résultat"
+ "mergeEditor": "Éditeur de fusion de texte"
+ },
+ "vs/workbench/contrib/mergeEditor/browser/view/viewModel": {
+ "noConflictMessage": "Il n’y a actuellement aucun conflit ayant le focus qui puisse être activé."
},
"vs/workbench/contrib/mergeEditor/common/mergeEditor": {
"baseUri": "URI du baser d’un éditeur de fusion",
"editorLayout": "Mode de disposition d’un éditeur de fusion",
"is": "L’éditeur est un éditeur de fusion",
- "resultUri": "URI du résultat d’un éditeur de fusion"
+ "isr": "L’éditeur est l’éditeur de résultats d’un éditeur de fusion.",
+ "resultUri": "URI du résultat d’un éditeur de fusion",
+ "showBase": "Si l’éditeur de fusion affiche la version de base",
+ "showBaseAtTop": "Si la base doit être affichée en haut",
+ "showNonConflictingChanges": "Si l’éditeur de fusion affiche des modifications non conflictuelles"
+ },
+ "vs/workbench/contrib/mergeEditor/electron-browser/devCommands": {
+ "merge.dev.openSelectionInTemporaryMergeEditor": "Ouvrir la sélection dans l’éditeur de fusion temporaire",
+ "merge.dev.openState": "Ouvrir l’état de l’éditeur de fusion à partir de JSON",
+ "mergeEditor": "Éditeur de fusion (Dev)",
+ "mergeEditor.enterJSON": "Entrer JSON"
+ },
+ "vs/workbench/contrib/multiDiffEditor/browser/actions": {
+ "ExpandAllDiffs": "Développer tous les diffs",
+ "collapseAllDiffs": "Réduire tous les diffs",
+ "goToFile": "Ouvrir un fichier",
+ "goToNextChange": "Accéder à la modification suivante",
+ "goToPreviousChange": "Accéder à la modification précédente"
+ },
+ "vs/workbench/contrib/multiDiffEditor/browser/icons.contribution": {
+ "multiDiffEditorLabelIcon": "Icône de l’étiquette de l’éditeur de différences multiples."
+ },
+ "vs/workbench/contrib/multiDiffEditor/browser/multiDiffEditor.contribution": {
+ "name": "Éditeur de différences multiples"
+ },
+ "vs/workbench/contrib/multiDiffEditor/browser/multiDiffEditorInput": {
+ "name": "Éditeur de différences multiples",
+ "nameWithFiles": "{0} (fichiers {1})",
+ "nameWithOneFile": "{0} (1 fichier)"
+ },
+ "vs/workbench/contrib/multiDiffEditor/browser/scmMultiDiffSourceResolver": {
+ "openChanges": "Ouvrir les modifications"
},
"vs/workbench/contrib/notebook/browser/contrib/cellCommands/cellCommands": {
"notebookActions.changeCellToCode": "Changer la cellule en code",
@@ -6914,22 +11695,41 @@
"notebookActions.expandCellOutput": "Développer la sortie de cellule",
"notebookActions.joinCellAbove": "Joindre à la cellule précédente",
"notebookActions.joinCellBelow": "Joindre à la cellule suivante",
+ "notebookActions.joinSelectedCells": "Joindre les cellules sélectionnées",
"notebookActions.moveCellDown": "Déplacer la cellule vers le bas",
"notebookActions.moveCellUp": "Déplacer la cellule vers le haut",
"notebookActions.splitCell": "Diviser la cellule",
- "notebookActions.toggleOutputs": "Activer/désactiver les sorties"
+ "notebookActions.toggleOutputs": "Activer/désactiver les sorties",
+ "notebookActions.toggleScrolling": "Activer/désactiver la sortie de la cellule de défilement"
+ },
+ "vs/workbench/contrib/notebook/browser/contrib/cellDiagnostics/cellDiagnosticsActions": {
+ "cellCommands.quickFix.noneMessage": "Aucune action de code disponible",
+ "notebookActions.cellFailureActions": "Afficher les actions d’échec de cellule",
+ "notebookActions.chatExplainCellError": "Expliquer l’erreur de cellule",
+ "notebookActions.chatFixCellError": "Corriger l’erreur de cellule"
+ },
+ "vs/workbench/contrib/notebook/browser/contrib/cellDiagnostics/diagnosticCellStatusBarContrib": {
+ "notebook.cell.status.diagnostic": "Actions rapides {0}"
},
"vs/workbench/contrib/notebook/browser/contrib/cellStatusBar/executionStatusBarItemController": {
"notebook.cell.status.executing": "Exécution en cours",
"notebook.cell.status.failed": "Échec",
"notebook.cell.status.pending": "En attente",
- "notebook.cell.status.success": "Opération réussie"
+ "notebook.cell.status.success": "Opération réussie",
+ "notebook.cell.statusBar.timerTooltip": "**Dernière exécution** {0}\r\n\r\n**Durée d’exécution** {1}\r\n\r\n**Surcharge de temps** {2}\r\n\r\n**Temps de rendu**\r\n\r\n{3}",
+ "notebook.cell.statusBar.timerTooltip.reportIssueFootnote": "Utilisez les liens ci-dessus pour enregistrer un problème à l’aide du rapporteur du problème.",
+ "notebook.cell.statusBar.timerVerbose": "Dernière exécution : {0}, durée : {1}"
},
"vs/workbench/contrib/notebook/browser/contrib/cellStatusBar/statusBarProviders": {
- "notebook.cell.status.autoDetectLanguage": "Accepter la langue détectée : {0}",
- "notebook.cell.status.language": "Sélectionner le mode de langage de la cellule"
+ "notebook.cell.status.autoDetectLanguage": "Accepter le langage détecté : {0}",
+ "notebook.cell.status.language": "Sélectionner le mode de langage de la cellule",
+ "notebook.cell.status.searchLanguageExtensions": "Langage de cellule inconnu. Cliquez pour rechercher les extensions « {0} »"
+ },
+ "vs/workbench/contrib/notebook/browser/contrib/chat/notebookChatUtils": {
+ "notebookOutputCellLabel": "{0} • Cellule {1} • Sortie {2}"
},
"vs/workbench/contrib/notebook/browser/contrib/clipboard/notebookClipboard": {
+ "notebook.cell.output.selectAll": "Sélectionner tout",
"notebookActions.copy": "Copier la cellule",
"notebookActions.cut": "Couper la cellule",
"notebookActions.paste": "Coller la cellule",
@@ -6937,25 +11737,19 @@
"toggleNotebookClipboardLog": "Activer/désactiver la résolution des problèmes liés au Presse-papiers du notebook"
},
"vs/workbench/contrib/notebook/browser/contrib/editorStatusBar/editorStatusBar": {
- "current1": "Actuellement sélectionnés",
- "current2": "{0} – Actuellement sélectionnés",
- "installSuggestedKernel": "Installer les extensions suggérées",
"kernel.select.label": "Sélectionner le noyau",
"notebook.activeCellStatusName": "Sélections de l’éditeur de blocs-notes",
+ "notebook.indentation": "Retrait du bloc-notes",
"notebook.info": "Informations du noyau du bloc-notes",
"notebook.multiActiveCellIndicator": "Cellule {0} ({1} sélectionnée(s))",
"notebook.select": "Sélection du noyau du bloc-notes",
"notebook.singleActiveCellIndicator": "Cellule {0} sur {1}",
- "notebookActions.selectKernel": "Sélectionner un noyau de Notebook",
- "notebookActions.selectKernel.args": "Arguments du noyau de Notebook",
- "otherKernelKinds": "Autre",
- "prompt.placeholder.change": "Modifier le noyau pour « {0} »",
- "prompt.placeholder.select": "Sélectionnez le noyau pour « {0} »",
- "searchForKernels": "Parcourir le marché pour les extensions de noyau",
- "suggestedKernels": "Suggestions",
+ "selectNotebookIndentation": "Sélectionner le retrait",
"tooltop": "{0} (suggestion)"
},
"vs/workbench/contrib/notebook/browser/contrib/find/notebookFind": {
+ "notebook.findNext.fromWidget": "Rechercher suivant",
+ "notebook.findPrevious.fromWidget": "Rechercher précédent",
"notebookActions.findInNotebook": "Rechercher dans le Notebook",
"notebookActions.hideFind": "Masquer la recherche dans le Notebook"
},
@@ -6969,9 +11763,10 @@
"label.replaceAllButton": "Tout remplacer",
"label.replaceButton": "Remplacer",
"label.toggleReplaceButton": "Activer/désactiver le remplacement",
+ "label.toggleSelectionFind": "Rechercher dans la sélection",
"notebook.find.filter.filterAction": "Rechercher des filtres",
"notebook.find.filter.findInCodeInput": "Source de la cellule de code",
- "notebook.find.filter.findInCodeOutput": "Sortie de cellule",
+ "notebook.find.filter.findInCodeOutput": "Sorties de cellule de code",
"notebook.find.filter.findInMarkupInput": "Source Markdown",
"notebook.find.filter.findInMarkupPreview": "Markdown rendu",
"placeholder.find": "Rechercher",
@@ -6985,6 +11780,7 @@
"vs/workbench/contrib/notebook/browser/contrib/format/formatting": {
"format.title": "Mettre en forme le Notebook",
"formatCell.label": "Mettre en forme la cellule",
+ "formatCells.label": "Mettre en forme les cellules",
"label": "Mettre en forme le Notebook"
},
"vs/workbench/contrib/notebook/browser/contrib/gettingStarted/notebookGettingStarted": {
@@ -6993,6 +11789,13 @@
"vs/workbench/contrib/notebook/browser/contrib/layout/layoutActions": {
"notebook.toggleCellToolbarPosition": "Changer la position de la barre d’outils des cellules"
},
+ "vs/workbench/contrib/notebook/browser/contrib/multicursor/notebookMulticursor": {
+ "addFindMatchToSelection": "Ajouter une sélection à la prochaine correspondance de recherche",
+ "deleteLeftMultiSelection": "Supprimer à gauche",
+ "deleteRightMultiSelection": "Supprimer à droite",
+ "exitMultiSelection": "Quitter le mode multi-curseur",
+ "selectAllFindMatches": "Sélectionner toutes les occurrences des correspondances de la recherche"
+ },
"vs/workbench/contrib/notebook/browser/contrib/navigation/arrow": {
"cursorMoveDown": "Focus sur l'éditeur de la cellule suivante",
"cursorMoveUp": "Focus sur l'éditeur de la cellule précédente",
@@ -7004,21 +11807,90 @@
"focusLastCell": "Focus sur la dernière cellule",
"focusOutput": "Focus dans la sortie de cellule active",
"focusOutputOut": "Arrêt du focus dans la sortie de cellule active",
+ "notebook.cell.webviewHandledEvents": "Touche les touches qui doivent être gérées par l’élément prioritaire dans la sortie de cellule.",
"notebook.navigation.allowNavigateToSurroundingCells": "Lorsque cette option est activée, le curseur peut accéder à la cellule suivante/précédente lorsque le curseur actuel de l’éditeur de cellules se trouve à la première/dernière ligne.",
"notebookActions.centerActiveCell": "Centrer la cellule active"
},
+ "vs/workbench/contrib/notebook/browser/contrib/notebookVariables/notebookInlineVariables": {
+ "clearAllInlineValues": "Effacer toutes les valeurs incluses"
+ },
+ "vs/workbench/contrib/notebook/browser/contrib/notebookVariables/notebookVariableCommands": {
+ "copyWorkspaceVariableValue": "Copier la valeur",
+ "executeNotebookVariableProvider": "Exécuter le fournisseur de variables de bloc-notes"
+ },
+ "vs/workbench/contrib/notebook/browser/contrib/notebookVariables/notebookVariables": {
+ "notebookVariables": "Variables de notebook"
+ },
+ "vs/workbench/contrib/notebook/browser/contrib/notebookVariables/notebookVariablesDataSource": {
+ "notebook.indexedChildrenLimitReached": "Limite d’affichage atteinte"
+ },
+ "vs/workbench/contrib/notebook/browser/contrib/notebookVariables/notebookVariablesTree": {
+ "notebook.ReplVariables": "Variables REPL",
+ "notebook.notebookVariables": "Variables de notebook",
+ "notebookVariableAriaLabel": "Variable {0}, valeur {1}"
+ },
"vs/workbench/contrib/notebook/browser/contrib/outline/notebookOutline": {
"breadcrumbs.showCodeCells": "Quand la fonctionnalité est activée dans le notebook, les barres de navigation contiennent des cellules de code.",
- "empty": "cellule vide",
- "outline.showCodeCells": "Quand la fonctionnalité de contour est activée dans le notebook, elle permet d'afficher les cellules de code."
+ "filter": "Filtrer les entrées",
+ "notebook.gotoSymbols.showAllSymbols": "Lorsqu’il est activé, la sélection rapide Aller au symbole affichera les symboles de code complets du bloc-notes, ainsi que les en-têtes Markdown.",
+ "outline.showCodeCellSymbols": "Lorsque cette option est activée, le plan du bloc-notes affiche les symboles de cellule de code. S’appuie sur l’activation de `#notebook.outline.showCodeCells#`.",
+ "outline.showCodeCells": "Quand la fonctionnalité de contour est activée dans le notebook, elle permet d’afficher les cellules de code.",
+ "outline.showMarkdownHeadersOnly": "Lorsque cette option est activée, le plan du bloc-notes affiche uniquement les cellules Markdown contenant un en-tête.",
+ "toggleCodeCellSymbols": "Symboles de cellule de code",
+ "toggleCodeCells": "Cellules de code",
+ "toggleShowMarkdownHeadersOnly": "En-têtes Markdown uniquement"
},
"vs/workbench/contrib/notebook/browser/contrib/profile/notebookProfile": {
"setProfileTitle": "Définir le profil"
},
+ "vs/workbench/contrib/notebook/browser/contrib/saveParticipants/saveParticipants": {
+ "codeAction.apply": "Application de l'action de code '{0}'.",
+ "codeaction.get2": "Obtention d’actions de code à partir de «{0}» ([configure]({1})).",
+ "formatNotebook": "Mettre en forme le Notebook",
+ "insertFinalNewLine": "Insérer une nouvelle ligne finale",
+ "notebookFormatSave.formatting": "Mise en forme",
+ "notebookSaveParticipants.cellCodeActions": "Exécution d’actions de code « Cellule »",
+ "notebookSaveParticipants.formatCodeActions": "Exécution d’actions de code 'Format'",
+ "notebookSaveParticipants.notebookCodeActions": "Exécution d’actions de code « Notebook »",
+ "trimNotebookNewlines": "Découper les nouvelles lignes finales",
+ "trimNotebookWhitespace": "Découper l’espace de fin du notebook"
+ },
"vs/workbench/contrib/notebook/browser/contrib/troubleshoot/layout": {
"workbench.notebook.clearNotebookEdtitorTypeCache": "Effacer le cache du type d’éditeur de notebook",
"workbench.notebook.inspectLayout": "Inspecter la disposition Notebook",
- "workbench.notebook.toggleLayoutTroubleshoot": "Activer/désactiver la résolution des problèmes de disposition"
+ "workbench.notebook.toggleLayoutTroubleshoot": "Activer/désactiver la résolution des problèmes de mise en page du bloc-notes"
+ },
+ "vs/workbench/contrib/notebook/browser/controller/cellOperations": {
+ "notebookActions.joinSelectedCells": "Impossible de joindre des cellules de différents types",
+ "notebookActions.joinSelectedCells.label": "Joindre les cellules du bloc-notes"
+ },
+ "vs/workbench/contrib/notebook/browser/controller/cellOutputActions": {
+ "imageFiles": "Fichiers image",
+ "notebookActions.copyOutput": "Copier la sortie de cellule",
+ "notebookActions.openOutputInEditor": "Ouvrir la sortie de cellule dans l’Éditeur de texte",
+ "notebookActions.openOutputInNotebookOutputEditor": "Ouvrir dans l’Aperçu de sortie",
+ "notebookActions.saveOutputImage": "Enregistrer l’image",
+ "notebookActions.showAllOutput": "Afficher les sorties vides"
+ },
+ "vs/workbench/contrib/notebook/browser/controller/chat/cellChatActions": {
+ "notebook.apply1": "Accepter et exécuter",
+ "notebook.apply2": "Accepter et exécuter",
+ "notebook.apply3": "Accepter les modifications et exécuter la cellule",
+ "notebookActions.menu.insertCode.ontoolbar": "Générer",
+ "notebookActions.menu.insertCode.tooltip": "Démarrer la conversation pour générer du code",
+ "notebookActions.menu.insertCodeCellWithChat": "Générer",
+ "notebookActions.menu.insertCodeCellWithChat.tooltip": "Démarrer la conversation pour générer du code"
+ },
+ "vs/workbench/contrib/notebook/browser/controller/chat/notebook.chat.contribution": {
+ "chatContext.notebook.kernelVariable": "Variable du noyau...",
+ "chatContext.notebook.kernelVariable.placeholder": "Sélectionnez une variable du noyau",
+ "noKernelVariables": "Aucune variable de noyau trouvée",
+ "notebookActions.addOutputToChat": "Ajouter la sortie de cellule à la conversation",
+ "pickKernelVariableLabel": "Choisir une variable dans le noyau",
+ "selectKernelVariablePlaceholder": "Sélectionnez une variable du noyau"
+ },
+ "vs/workbench/contrib/notebook/browser/controller/chat/notebookChatContext": {
+ "notebookChatAgentRegistered": "Indique si un agent de conversation pour le notebook est inscrit"
},
"vs/workbench/contrib/notebook/browser/controller/coreActions": {
"miShare": "Partager",
@@ -7029,17 +11901,28 @@
"vs/workbench/contrib/notebook/browser/controller/editActions": {
"autoDetect": "Détection automatique",
"changeLanguage": "Changer le langage des cellules",
- "clearAllCellsOutputs": "Effacer les sorties de toutes les cellules",
+ "clearAllCellsOutputs": "Effacer toutes les sorties",
"clearCellOutputs": "Effacer les sorties de cellule",
- "detectLanguage": "Accepter la langue détectée pour la cellule",
+ "commentSelectedCells": "Commenter les cellules sélectionnées",
+ "confirmDeleteButton": "Supprimer",
+ "confirmDeleteButtonMessage": "Cette cellule est en cours d’exécution. Voulez-vous vraiment la supprimer ?",
+ "detectLanguage": "Accepter le langage détecté pour la cellule",
+ "doNotAskAgain": "Ne plus me poser la question",
+ "indentConvert": "convertir le fichier",
+ "indentView": "modifier la vue",
"languageDescription": "({0}) - Langage actuel",
"languageDescriptionConfigured": "({0})",
"languagesPicks": "langages (identificateur)",
- "noDetection": "Impossible de détecter la langue de la cellule",
+ "noDetection": "Impossible de détecter le langage de la cellule",
+ "noNotebookEditor": "Aucun éditeur de bloc-notes actif pour l’instant",
+ "noWritableCodeEditor": "L’éditeur de bloc-notes actif est en lecture seule.",
"notebookActions.deleteCell": "Supprimer la cellule",
"notebookActions.editCell": "Modifier la cellule",
"notebookActions.quitEdit": "Arrêter la modification de la cellule",
- "pickLanguageToConfigure": "Sélectionner le mode de langage"
+ "notebookActions.quitEditAllCells": "Arrêtez la modification de toutes les cellules",
+ "pickAction": "Sélectionner une action",
+ "pickLanguageToConfigure": "Sélectionner le mode de langage",
+ "selectNotebookIndentation": "Sélectionner le retrait"
},
"vs/workbench/contrib/notebook/browser/controller/executeActions": {
"notebookActions.cancel": "Arrêter l'exécution des cellules",
@@ -7051,10 +11934,11 @@
"notebookActions.executeAndSelectBelow": "Exécuter la cellule du Notebook et sélectionner en dessous",
"notebookActions.executeBelow": "Exécuter les cellules au-dessous",
"notebookActions.executeNotebook": "Exécuter tout",
+ "notebookActions.interruptNotebook": "Interrompre",
"notebookActions.renderMarkdown": "Afficher toutes les cellules Markdown",
"revealLastFailedCell": "Atteindre la cellule ayant échoué le plus récemment",
- "revealLastFailedCellShort": "Aller à",
- "revealRunningCell": "Go to Running Cell",
+ "revealLastFailedCellShort": "Atteindre la cellule ayant échoué le plus récemment",
+ "revealRunningCell": "Accéder à la cellule en cours d’exécution",
"revealRunningCellShort": "Aller à"
},
"vs/workbench/contrib/notebook/browser/controller/foldingController": {
@@ -7081,16 +11965,48 @@
},
"vs/workbench/contrib/notebook/browser/controller/layoutActions": {
"customizeNotebook": "Personnalisez le bloc-notes...",
+ "mitoggleNotebookStickyScroll": "&&Désactiver le défilement épinglé du bloc-notes",
"notebook.placeholder": "Fichier de paramètres dans lequel enregistrer",
"notebook.saveMimeTypeOrder": "Enregistrer l’ordre d’affichage mimetype",
- "notebook.showLineNumbers": "Afficher les numéros de ligne du bloc-notes",
+ "notebook.showLineNumbers": "Numéros de ligne de bloc-notes",
"notebook.toggleBreadcrumb": "Basculer les barres de navigation",
"notebook.toggleCellToolbarPosition": "Changer la position de la barre d’outils des cellules",
"notebook.toggleLineNumbers": "Activer/désactiver les numéros de ligne du bloc-notes",
+ "notebookStickyScroll": "Basculer le défilement épinglé du bloc-notes",
"saveTarget.machine": "Paramètres utilisateur",
"saveTarget.workspace": "Paramètres de l'espace de travail",
+ "toggleStickyScroll": "Basculer le défilement épinglé du bloc-notes",
"workbench.notebook.layout.configure.label": "Personnaliser la disposition du bloc-notes",
- "workbench.notebook.layout.select.label": "Sélectionner une des dispositions de bloc-notes"
+ "workbench.notebook.layout.select.label": "Sélectionner une des dispositions de bloc-notes",
+ "workbench.notebook.layout.webview.reset.label": "Réinitialiser l’affichage web du bloc-notes"
+ },
+ "vs/workbench/contrib/notebook/browser/controller/notebookIndentationActions": {
+ "changeTabDisplaySize": "Modifier la taille d’affichage des tabulations",
+ "convertIndentation": "Convertir la mise en retrait",
+ "convertIndentationToSpaces": "Convertir les retraits en espaces",
+ "convertIndentationToTabs": "Convertir les retraits en tabulations",
+ "indentUsingSpaces": "Mettre en retrait avec des espaces",
+ "indentUsingTabs": "Mettre en retrait avec des tabulations",
+ "selectTabWidth": "Sélectionner la taille des tabulations pour le fichier actuel"
+ },
+ "vs/workbench/contrib/notebook/browser/controller/sectionActions": {
+ "expandSection": "Développer la section",
+ "foldSection": "Plier la section",
+ "miexpandSection": "&&Développer la section",
+ "mifoldSection": "&&Replier la section",
+ "mirunCell": "&&Exécuter la cellule",
+ "mirunCellsInSection": "&&Exécuter les cellules dans la section",
+ "runCell": "Exécuter la cellule",
+ "runCellsInSection": "Exécuter les cellules dans la section"
+ },
+ "vs/workbench/contrib/notebook/browser/controller/variablesActions": {
+ "notebookActions.openVariablesView": "Variables"
+ },
+ "vs/workbench/contrib/notebook/browser/diff/diffComponents": {
+ "hiddenCell": "{0} cellule masquée",
+ "hiddenCells": "{0} cellules masquées",
+ "hideUnchangedCells": "Masquer les cellules inchangées",
+ "showUnchangedCells": "Afficher les cellules inchangées"
},
"vs/workbench/contrib/notebook/browser/diff/diffElementOutputs": {
"builtinRenderInfo": "intégré",
@@ -7102,81 +12018,142 @@
"promptChooseMimeTypeInSecure.placeHolder": "Sélectionnez le type MIME à afficher pour la sortie actuelle. Les types MIME enrichis sont disponibles uniquement quand le notebook est digne de confiance"
},
"vs/workbench/contrib/notebook/browser/diff/notebookDiffActions": {
+ "goToCell": "Accéder à la cellule",
+ "hideUnchangedCells": "Masquer les cellules inchangées",
+ "ignoreTrimWhitespace.label": "Afficher les différences d'espace blanc de début/fin",
+ "notebook.diff.action.next.title": "Voir la modification suivante",
+ "notebook.diff.action.previous.title": "Afficher le changement précédent",
"notebook.diff.cell.revertInput": "Restaurer l'entrée",
"notebook.diff.cell.revertMetadata": "Restaurer les métadonnées",
"notebook.diff.cell.revertOutputs": "Restaurer les sorties",
"notebook.diff.cell.switchOutputRenderingStyleToText": "Changer le rendu de la sortie",
+ "notebook.diff.cell.toggleCollapseUnchangedRegions": "Activer/désactiver réduire les régions inchangées",
"notebook.diff.ignoreMetadata": "Masquer les différences de métadonnées",
"notebook.diff.ignoreOutputs": "Masquer les différences de sorties",
+ "notebook.diff.inline.toggle.title": "Activer/désactiver la vue inline",
+ "notebook.diff.openFile": "Ouvrir un fichier",
+ "notebook.diff.revertMetadata": "Rétablir les métadonnées du notebook",
"notebook.diff.showMetadata": "Afficher les différences de métadonnées",
"notebook.diff.showOutputs": "Afficher les différences de sorties",
- "notebook.diff.switchToText": "Ouvrir l'éditeur de différences de texte"
+ "notebook.diff.switchToText": "Ouvrir l'éditeur de différences de texte",
+ "notebook.diff.toggleInline": "Activez la commande pour activer/désactiver l’éditeur de diff en ligne du notebook expérimental.",
+ "showUnchangedCells": "Afficher les cellules inchangées"
},
- "vs/workbench/contrib/notebook/browser/diff/notebookTextDiffEditor": {
+ "vs/workbench/contrib/notebook/browser/diff/notebookDiffEditor": {
"notebookTreeAriaLabel": "Outil Diff pour textes de Notebook"
},
- "vs/workbench/contrib/notebook/browser/extensionPoint": {
- "contributes.notebook.provider": "Ajoute un fournisseur de document de notebook.",
- "contributes.notebook.provider.displayName": "Nom contrôlable de visu du notebook.",
- "contributes.notebook.provider.selector": "Ensemble de globs auquel est destiné le notebook.",
- "contributes.notebook.provider.selector.filenamePattern": "Glob pour lequel le notebook est activé.",
- "contributes.notebook.provider.viewType": "Type du bloc-notes.",
- "contributes.notebook.renderer": "Ajoute un fournisseur de renderer de sortie de notebook.",
- "contributes.notebook.renderer.displayName": "Nom contrôlable de visu du renderer de sortie du notebook.",
- "contributes.notebook.renderer.entrypoint": "Fichier à charger dans la vue web pour afficher l'extension.",
- "contributes.notebook.renderer.entrypoint.extends": "Rendu existant que celui-ci étend.",
- "contributes.notebook.renderer.hardDependencies": "Liste des dépendances du noyau requises par le convertisseur. Si l’une des dépendances est présente dans `NotebookKernel.preloads`, le convertisseur peut être utilisé.",
- "contributes.notebook.renderer.optionalDependencies": "Liste des dépendances du noyau logiciel que le convertisseur peut utiliser. Si l’une des dépendances est présente dans `NotebookKernel.preloads`, le convertisseur sera préféré aux convertisseurs qui n’interagissent pas avec le noyau.",
- "contributes.notebook.renderer.requiresMessaging": "Indique si et comment le convertisseur doit communiquer avec un hôte d’extension, via `createRendererMessaging`. Les convertisseurs avec une configuration minimale de messagerie plus importante peuvent ne pas fonctionner dans tous les environnements.",
- "contributes.notebook.renderer.requiresMessaging.always": "La messagerie est requise. Le convertisseur est utilisé uniquement lorsqu’il fait partie d’une extension qui peut être exécutée dans un hôte d’extension.",
- "contributes.notebook.renderer.requiresMessaging.never": "Le convertisseur ne requiert pas de messagerie.",
- "contributes.notebook.renderer.requiresMessaging.optional": "Le convertisseur est plus efficace si la messagerie est disponible, mais elle n’est pas nécessaire.",
- "contributes.notebook.renderer.viewType": "Identificateur unique du renderer de sortie du notebook.",
- "contributes.notebook.selector": "Ensemble de globs auquel est destiné le notebook.",
- "contributes.notebook.selector.provider.excludeFileNamePattern": "Glob pour lequel le notebook est désactivé.",
- "contributes.priority": "Détermine si l'éditeur personnalisé est activé automatiquement quand l'utilisateur ouvre un fichier. Ce comportement peut être remplacé par les utilisateurs via le paramètre 'workbench.editorAssociations'.",
- "contributes.priority.default": "L'éditeur est automatiquement utilisé quand l'utilisateur ouvre une ressource, à condition qu'aucun autre éditeur personnalisé par défaut ne soit inscrit pour cette ressource.",
- "contributes.priority.option": "L'éditeur n'est pas automatiquement utilisé quand l'utilisateur ouvre une ressource, mais l'utilisateur peut passer à l'éditeur à l'aide de la commande Rouvrir avec."
+ "vs/workbench/contrib/notebook/browser/diff/notebookDiffEditorBrowser": {
+ "notebook.diffEditor.allCollapsed": "Si toutes les cellules de l'éditeur de différences de bloc-notes sont réduites",
+ "notebook.diffEditor.hasUnchangedCells": "S'il y a des cellules inchangées dans l'éditeur de différences du bloc-notes",
+ "notebook.diffEditor.item.kind": "Le type d'élément dans l'éditeur de différences du bloc-notes, cellule, métadonnées ou sortie",
+ "notebook.diffEditor.item.state": "L'état différentiel de l'élément dans l'éditeur de différences du bloc-notes, supprimer, insérer, modifier ou modifier",
+ "notebook.diffEditor.unchangedCellsAreHidden": "Si les cellules inchangées dans l'éditeur de différences du bloc-notes sont masquées"
+ },
+ "vs/workbench/contrib/notebook/browser/diff/notebookDiffList": {
+ "notebook.diff.hiddenCells.expandAll": "Double-cliquez pour afficher"
+ },
+ "vs/workbench/contrib/notebook/browser/diff/notebookMultiDiffEditor": {
+ "notebookCellLabel": "Cellule {0}",
+ "notebookCellMetadataLabel": "Métadonnées",
+ "notebookCellOutputLabel": "Sortie"
},
"vs/workbench/contrib/notebook/browser/notebook.contribution": {
"insertToolbarLocation.betweenCells": "Barre d’outils qui apparaît lors du pointage entre les cellules.",
"insertToolbarLocation.both": "Les deux barres d’outils.",
"insertToolbarLocation.hidden": "Les actions d’insertion n’apparaissent nulle part.",
"insertToolbarLocation.notebookToolbar": "Barre d’outils en haut de l’éditeur de blocs-notes.",
+ "notebook.VariablesView.description": "Activez la vue des variables de bloc-notes expérimentales dans le panneau de débogage.",
+ "notebook.backup.sizeLimit": "Limite de la taille de sortie du notebook en kilo-octets (Ko) où les fichiers de notebook ne seront plus sauvegardés pour le rechargement à chaud. Utilisez 0 pour un nombre illimité.",
+ "notebook.cellExecutionTimeVerbosity.default.description": "La durée d’exécution de la cellule est visible, avec des informations avancées dans l’info-bulle de pointage.",
+ "notebook.cellExecutionTimeVerbosity.description": "Contrôle la verbosité de la durée d’exécution de la cellule dans la barre statut cellule.",
+ "notebook.cellExecutionTimeVerbosity.verbose.description": "L’horodatage et la durée de la dernière exécution de la cellule sont visibles, avec des informations avancées dans l’info-bulle de pointage.",
+ "notebook.cellFailureDiagnostics": "Afficher les diagnostics disponibles pour les défaillances de cellule.",
+ "notebook.cellGenerate": "Activez l’action de génération expérimentale pour créer une cellule de code avec la conversation en ligne activée.",
"notebook.cellToolbarLocation.description": "Indique si la barre d'outils de la cellule doit être affichée, ou si elle doit être masquée.",
"notebook.cellToolbarLocation.viewType": "Configurer la position de la barre d’outils des cellules pour des types de fichiers en particulier",
"notebook.cellToolbarVisibility.description": "Indique si la barre d’outils de la cellule doit apparaître au survol de la souris ou au clic.",
"notebook.compactView.description": "Détermine si l’éditeur de bloc-notes doit être rendu dans un format compact. Par exemple, lorsqu’il est activé, il diminue la largeur de la marge de gauche.",
+ "notebook.confirmDeleteRunningCell": "Contrôlez si une invite de confirmation est nécessaire pour supprimer une cellule en cours d’exécution.",
"notebook.consolidatedOutputButton.description": "Contrôle si les actions de sortie doivent être rendues dans la barre d’outils de sortie.",
"notebook.consolidatedRunButton.description": "Contrôle si des actions supplémentaires sont affichées dans une liste déroulante à côté du bouton Exécuter.",
+ "notebook.diff.enableOverviewRuler.description": "Indique s’il faut afficher la règle de vue d’ensemble dans l’éditeur de diff pour le notebook.",
"notebook.diff.enablePreview.description": "Indique s'il est nécessaire d'utiliser l'éditeur de différences de texte pour le notebook.",
+ "notebook.disableOutputFilePathLinks": "Contrôlez si les liens de chemin d’accès au fichier doivent être désactivés dans la sortie des cellules de bloc-notes.",
"notebook.displayOrder.description": "Liste de priorités des types mime de sortie",
"notebook.dragAndDrop.description": "Détermine si l’éditeur de blocs-notes doit autoriser les cellules à déplacer des cellules par glisser-déplacer.",
"notebook.editorOptions.experimentalCustomization": "Paramètres des éditeurs de code utilisés dans les blocs-notes. Ils peuvent être utilisés pour personnaliser la plupart des paramètres editor.*.",
- "notebook.focusIndicator.description": "Contrôle le rendu de l’indicateur de focus sur les bordures de cellule ou sur la reliure gauche",
+ "notebook.findFilters": "Personnalisez le comportement du widget Rechercher pour la recherche dans les cellules du bloc-notes. Lorsque la source de balisage et l’aperçu de balisage sont activés, le widget rechercher recherche le code source ou l’aperçu en fonction de l’état actuel de la cellule.",
+ "notebook.focusIndicator.description": "Contrôle le rendu de l’indicateur de focus sur les bordures de cellule ou sur la reliure gauche.",
+ "notebook.formatOnCellExecution": "Mettez en forme une cellule de notebook lors de l’exécution. Un formateur doit être disponible.",
+ "notebook.formatOnSave": "Mettre en forme un bloc-notes lors de l’enregistrement. Un formateur doit être disponible et l'éditeur ne doit pas être en train de s'arrêter. Lorsque {0} est défini sur « afterDelay », le fichier n’est mis en forme qu’en cas d’enregistrement explicite.",
"notebook.globalToolbar.description": "Détermine si une barre d’outils globale doit être rendue dans l’éditeur de blocs-notes.",
"notebook.globalToolbarShowLabel": "Contrôle si les actions de la barre d’outils du bloc-notes doivent afficher l’étiquette ou non.",
+ "notebook.inlineValues.auto": "Afficher les valeurs inline uniquement lorsqu’un fournisseur de valeurs inline est inscrit.",
+ "notebook.inlineValues.description": "Contrôlez si les valeurs inline doivent être affichées dans les cellules de code du notebook après l’exécution de la cellule. Les valeurs sont conservées jusqu’à ce que la cellule soit modifiée, réexécutée ou explicitement effacée via le bouton de la barre d’outils Effacer toutes les sorties ou la commande « Notebook : Effacer les valeurs inline ».",
+ "notebook.inlineValues.off": "Ne jamais afficher les valeurs incluses.",
+ "notebook.inlineValues.on": "Toujours afficher les valeurs incluses, avec un secours regex si aucun fournisseur de valeurs inline n’est inscrit. Remarque : il peut y avoir un impact sur les performances dans les cellules plus grandes si le secours est utilisé.",
+ "notebook.insertFinalNewline": "Lorsqu'il est activé, insérez une nouvelle ligne finale à la fin des cellules de code lors de l'enregistrement d'un bloc-notes.",
"notebook.insertToolbarPosition.description": "Contrôlez l’emplacement d’affichage des actions de cellule d’insertion.",
"notebook.interactiveWindow.collapseCodeCells": "Contrôle si les cellules de code de la fenêtre interactive sont réduites par défaut.",
+ "notebook.markdown.lineHeight": "Contrôle la hauteur de ligne en pixels des cellules de démarque dans les blocs-notes. Lorsque la valeur est {0}, {1} est utilisé",
+ "notebook.markup.fontFamily": "Contrôle la famille de polices des marques de révision rendues dans les notebooks. Si ce champ est vide, la famille de polices workbench par défaut est utilisée.",
"notebook.markup.fontSize": "Contrôle la taille de police en pixels du balisage rendu dans les notebooks. Lorsqu’il est défini sur {0}, 120 % des {1} sont utilisés.",
- "notebook.outputFontFamily": "Famille de polices pour le texte de sortie des cellules du bloc-notes. Lorsqu’il est défini sur vide, le {0} est utilisé.",
- "notebook.outputFontSize": "Taille de police du texte de sortie pour les cellules du bloc-notes. Lorsqu’il est défini sur {0}, {1} est utilisé.",
- "notebook.outputLineHeight": "Hauteur de ligne du texte de sortie pour les cellules du bloc-notes.\r\n : les valeurs comprises entre 0 et 8 sont utilisées comme multiplicateur avec la taille de police.\r\n : les valeurs supérieures ou égales à 8 seront utilisées comme valeurs effectives.",
+ "notebook.minimalErrorRendering": "Contrôlez si la sortie d’erreur doit être rendue dans un style minimal.",
+ "notebook.multiCursor.enabled": "Expérimental. Active un ensemble limité de contrôles de plusieurs curseurs sur plusieurs cellules dans l’éditeur de notebook. Les actions principales de l’éditeur (saisie/couper/copier/coller/composition) et un sous-ensemble limité de commandes d’éditeur sont actuellement prises en charge.",
+ "notebook.outputFontFamily": "Famille de polices du texte de sortie dans les cellules du bloc-notes. Lorsqu’il est défini sur vide, le {0} est utilisé.",
+ "notebook.outputFontSize": "Taille de police du texte de sortie dans les cellules du bloc-notes. Lorsque la valeur est 0, {0} est utilisé.",
+ "notebook.outputLineHeight": "Hauteur de ligne du texte de sortie dans les cellules du bloc-notes.\r\n - Quand la valeur est 0, la hauteur de ligne de l’éditeur est utilisée.\r\n - Les valeurs comprises entre 0 et 8 sont utilisées comme multiplicateur avec la taille de police.\r\n - Les valeurs supérieures ou égales à 8 seront utilisées comme valeurs effectives.",
+ "notebook.outputScrolling": "Restitue initialement les sorties du bloc-notes dans une région déroulante lorsqu'elles sont plus longues que la limite.",
+ "notebook.outputWordWrap": "Contrôle si les lignes de la sortie doivent être incluses dans un wrapper.",
+ "notebook.remoteSaving": "Permet l’enregistrement incrémentiel des blocs-notes entre les processus et entre les connexions à distance. Lorsque cette option est activée, seules les modifications apportées au bloc-notes sont envoyées à l’hôte d’extension, ce qui améliore les performances des blocs-notes volumineux et des connexions réseau lentes.",
+ "notebook.scrolling.revealNextCellOnExecute.description": "Distance de défilement lors de la découverte de la cellule suivante pendant l’exécution de {0}.",
+ "notebook.scrolling.revealNextCellOnExecute.firstLine.description": "Faire défiler pour afficher la première ligne de la cellule suivante.",
+ "notebook.scrolling.revealNextCellOnExecute.fullCell.description": "Faire défiler pour afficher complètement la cellule suivante.",
+ "notebook.scrolling.revealNextCellOnExecute.none.description": "Ne pas faire défiler.",
"notebook.showCellStatusbar.description": "Indique si la barre d'état de la cellule doit être affichée.",
"notebook.showCellStatusbar.hidden.description": "La barre d’état de la cellule est toujours masquée.",
"notebook.showCellStatusbar.visible.description": "La barre d’état de la cellule est toujours visible.",
"notebook.showCellStatusbar.visibleAfterExecute.description": "La barre d’état de la cellule est masquée jusqu’à ce que la cellule soit exécutée. Ensuite, elle devient visible et affiche l’état d’exécution.",
"notebook.showFoldingControls.description": "Contrôle l’affichage de la Flèche de pliage de l’en-tête de démarque.",
- "notebook.textOutputLineLimit": "Contrôlez le nombre de lignes de texte qui sont rendues dans une sortie texte.",
+ "notebook.stickyScrollEnabled.description": "Expérimental. Contrôlez si les en-têtes de défilement épinglé du notebook doivent être affichés dans l’éditeur de notebook.",
+ "notebook.stickyScrollMode.description": "Contrôlez si les lignes épinglées imbriquées semblent être empilées à plat ou mises en retrait.",
+ "notebook.stickyScrollMode.flat": "Les lignes épinglées imbriquées apparaissent à plat.",
+ "notebook.stickyScrollMode.indented": "Les lignes épinglées imbriquées apparaissent mises en retrait.",
+ "notebook.textOutputLineLimit": "Contrôle le nombre de lignes de texte affichées dans une sortie de texte. Si {0} est activé, ce paramètre est utilisé pour déterminer la hauteur de défilement de la sortie.",
"notebook.undoRedoPerCell.description": "Indique si une pile d’annulation/rétablissement distincte doit exister pour chaque cellule.",
"notebookConfigurationTitle": "Notebook",
+ "notebookFormatter.default": "Définit un formateur de bloc-notes par défaut qui est prioritaire sur tous les autres paramètres du formateur. Doit être l'identificateur d'une extension contribuant à un formateur.",
"showFoldingControls.always": "Les contrôles de pliage sont toujours visibles.",
"showFoldingControls.mouseover": "Les contrôles de pliage sont visibles uniquement lors du basculement de souris.",
"showFoldingControls.never": "N’affichez jamais les contrôles de pliage et réduisez la taille de la marge."
},
+ "vs/workbench/contrib/notebook/browser/notebookAccessibilityHelp": {
+ "notebook.cell.edit": "La commande Modifier la cellule{0} se concentre sur l’entrée de cellule.",
+ "notebook.cell.executeAndFocusContainer": "La commande Exécuter la cellule{0} exécute la cellule qui a actuellement le focus.",
+ "notebook.cell.focusInOutput": "La commande Focus sur la sortie{0} définit le focus dans la sortie de la cellule.",
+ "notebook.cell.insertCodeCellBelowAndFocusContainer": "Les commandes Insérer une cellule au-dessus{0} et en dessous{1} créent des cellules de code vides.",
+ "notebook.cell.quitEdit": "La commande Quitter la modification{0} définit le focus sur le conteneur de cellules. Il peut être nécessaire d'appuyer deux fois sur la touche par défaut (Échap) pour sortir du curseur virtuel s'il est actif.",
+ "notebook.cellNavigation": "Les flèches haut et bas déplaceront également le focus entre les cellules tout en se concentrant sur le conteneur de cellules externe.",
+ "notebook.changeCellType": "Les commandes Modifier la cellule en code/Markdown sont utilisées pour basculer entre les types de cellules.",
+ "notebook.focusNextEditor": "La commande Focus sur l’éditeur de la cellule suivante{0} définit le focus dans l'éditeur de la cellule suivante.",
+ "notebook.focusPreviousEditor": "La commande Focus sur l'éditeur de la cellule précédente{0} définit le focus dans l'éditeur de cellule précédente.",
+ "notebook.overview": "La vue bloc-notes est une collection de cellules de code et markdown. Les cellules de code peuvent être exécutées et génèrent une sortie directement sous la cellule."
+ },
+ "vs/workbench/contrib/notebook/browser/notebookAccessibilityProvider": {
+ "notebookTreeAriaLabel": "Notebook",
+ "notebookTreeAriaLabelHelp": "{0}\r\nUtiliser {1} pour l'aide à l'accessibilité",
+ "notebookTreeAriaLabelHelpNoKb": "{0}\r\nExécutez la commande Ouvrir l'aide à l'accessibilité pour plus d'informations",
+ "replHistoryTreeAriaLabel": "Historique de l'éditeur REPL"
+ },
"vs/workbench/contrib/notebook/browser/notebookEditor": {
"fail.noEditor": "Impossible d’ouvrir la ressource avec le type d’éditeur de notebook «{0}», vérifiez si l’extension appropriée est installée et activée.",
- "notebookOpenInTextEditor": "Ouvrir dans l’Éditeur de texte"
+ "fail.noEditor.extensionMissing": "Impossible d’ouvrir la ressource avec le type d’éditeur de notebook «{0}», vérifiez si l’extension appropriée est installée et activée.",
+ "notebookOpenAsText": "Ouvrir en tant que texte",
+ "notebookOpenEnableMissingViewType": "Activer l’extension pour '{0}'",
+ "notebookOpenInTextEditor": "Ouvrir dans l’Éditeur de texte",
+ "notebookOpenInstallMissingViewType": "Installer l’extension pour « {0} »",
+ "notebookTooLargeForHeapErrorWithSize": "Le bloc-notes ne s’affiche pas dans l’éditeur de texte, car il est très volumineux ({0}).",
+ "notebookTooLargeForHeapErrorWithoutSize": "Le bloc-notes ne s’affiche pas dans l’éditeur de texte, car il est très volumineux."
},
"vs/workbench/contrib/notebook/browser/notebookEditorWidget": {
"focusedCellBackground": "Couleur d'arrière-plan d'une cellule lorsque la cellule a le focus.",
@@ -7195,22 +12172,52 @@
"notebook.outputContainerBorderColor": "Couleur de bordure du conteneur de sortie de notebook.",
"notebook.selectedCellBorder": "Couleur de la bordure supérieure et inférieure de la cellule quand celle-ci est sélectionnée mais qu'elle n'a pas le focus.",
"notebook.symbolHighlightBackground": "Couleur d'arrière-plan de la cellule en surbrillance",
+ "notebookEditorOverviewRuler.runningCellForeground": "Couleur de l’ornement de cellule en cours d’exécution dans la règle de vue d’ensemble de l’éditeur de bloc-notes.",
"notebookScrollbarSliderActiveBackground": "Couleur d'arrière-plan du curseur de barre de défilement de Notebook quand un utilisateur clique sur le curseur.",
"notebookScrollbarSliderBackground": "Couleur d'arrière-plan du curseur de barre de défilement de Notebook.",
"notebookScrollbarSliderHoverBackground": "Couleur d'arrière-plan du curseur de barre de défilement de Notebook quand un utilisateur pointe sur le curseur.",
"notebookStatusErrorIcon.foreground": "Couleur de l'icône d'erreur des cellules de notebook dans la barre d'état des cellules.",
"notebookStatusRunningIcon.foreground": "Couleur de l'icône d'exécution des cellules de notebook dans la barre d'état des cellules.",
"notebookStatusSuccessIcon.foreground": "Couleur de l'icône d'erreur des cellules de notebook dans la barre d'état des cellules.",
- "notebookTreeAriaLabel": "Notebook",
"selectedCellBackground": "Couleur d'arrière-plan d'une cellule quand celle-ci est sélectionnée."
},
- "vs/workbench/contrib/notebook/browser/notebookExecutionServiceImpl": {
- "notebookRunTrust": "L’exécution d’une cellule de bloc-notes entraîne l’exécution de code à partir de cet espace de travail."
+ "vs/workbench/contrib/notebook/browser/notebookExtensionPoint": {
+ "Notebook id": "ID",
+ "Notebook mimetypes": "Types MIME",
+ "Notebook name": "Nom",
+ "Notebook renderer name": "Nom",
+ "contributes.notebook.provider": "Ajoute un fournisseur de document de notebook.",
+ "contributes.notebook.provider.displayName": "Nom contrôlable de visu du notebook.",
+ "contributes.notebook.provider.selector": "Ensemble de globs auquel est destiné le notebook.",
+ "contributes.notebook.provider.selector.filenamePattern": "Glob pour lequel le notebook est activé.",
+ "contributes.notebook.provider.viewType": "Type du bloc-notes.",
+ "contributes.notebook.renderer": "Ajoute un fournisseur de renderer de sortie de notebook.",
+ "contributes.notebook.renderer.displayName": "Nom contrôlable de visu du renderer de sortie du notebook.",
+ "contributes.notebook.renderer.entrypoint": "Fichier à charger dans la vue web pour afficher l'extension.",
+ "contributes.notebook.renderer.entrypoint.extends": "Rendu existant que celui-ci étend.",
+ "contributes.notebook.renderer.hardDependencies": "Liste des dépendances du noyau requises par le convertisseur. Si l’une des dépendances est présente dans `NotebookKernel.preloads`, le convertisseur peut être utilisé.",
+ "contributes.notebook.renderer.optionalDependencies": "Liste des dépendances du noyau logiciel que le convertisseur peut utiliser. Si l’une des dépendances est présente dans `NotebookKernel.preloads`, le convertisseur sera préféré aux convertisseurs qui n’interagissent pas avec le noyau.",
+ "contributes.notebook.renderer.requiresMessaging": "Indique si et comment le convertisseur doit communiquer avec un hôte d’extension, via `createRendererMessaging`. Les convertisseurs avec une configuration minimale de messagerie plus importante peuvent ne pas fonctionner dans tous les environnements.",
+ "contributes.notebook.renderer.requiresMessaging.always": "La messagerie est requise. Le convertisseur est utilisé uniquement lorsqu’il fait partie d’une extension qui peut être exécutée dans un hôte d’extension.",
+ "contributes.notebook.renderer.requiresMessaging.never": "Le convertisseur ne requiert pas de messagerie.",
+ "contributes.notebook.renderer.requiresMessaging.optional": "Le convertisseur est plus efficace si la messagerie est disponible, mais elle n’est pas nécessaire.",
+ "contributes.notebook.renderer.viewType": "Identificateur unique du renderer de sortie du notebook.",
+ "contributes.notebook.selector": "Ensemble de globs auquel est destiné le notebook.",
+ "contributes.notebook.selector.provider.excludeFileNamePattern": "Glob pour lequel le notebook est désactivé.",
+ "contributes.preload.entrypoint": "Chemin du fichier chargé dans la vue web.",
+ "contributes.preload.localResourceRoots": "Les chemins d’accès aux ressources supplémentaires qui doivent être autorisées dans la vue web.",
+ "contributes.preload.provider": "Ajoute des préchargements de notebooks.",
+ "contributes.preload.provider.viewType": "Type du bloc-notes.",
+ "contributes.priority": "Détermine si l'éditeur personnalisé est activé automatiquement quand l'utilisateur ouvre un fichier. Ce comportement peut être remplacé par les utilisateurs via le paramètre 'workbench.editorAssociations'.",
+ "contributes.priority.default": "L'éditeur est automatiquement utilisé quand l'utilisateur ouvre une ressource, à condition qu'aucun autre éditeur personnalisé par défaut ne soit inscrit pour cette ressource.",
+ "contributes.priority.option": "L'éditeur n'est pas automatiquement utilisé quand l'utilisateur ouvre une ressource, mais l'utilisateur peut passer à l'éditeur à l'aide de la commande Rouvrir avec.",
+ "notebookRenderer": "Convertisseurs de notebook",
+ "notebooks": "Blocs-notes"
},
"vs/workbench/contrib/notebook/browser/notebookIcons": {
"clearIcon": "Icône permettant d'effacer les sorties de cellule dans les éditeurs de notebook.",
"collapsedIcon": "Icône permettant d'annoter une section réduite dans les éditeurs de notebooks.",
- "configureKernel": "Icône de configuration du widget de configuration de noyau dans les éditeurs de notebooks.",
+ "copyIcon": "Icône de copie du contenu dans le Presse-papiers",
"deleteCellIcon": "Icône permettant de supprimer une cellule dans les éditeurs de notebook.",
"editIcon": "Icône permettant de modifier une cellule dans les éditeurs de notebook.",
"errorStateIcon": "Icône permettant d'indiquer un état d'erreur dans les éditeurs de notebooks.",
@@ -7223,26 +12230,50 @@
"mimetypeIcon": "Icône d'un type MIME dans les éditeurs de notebook.",
"moveDownIcon": "Icône permettant de se déplacer d'une cellule vers le bas dans les éditeurs de notebooks.",
"moveUpIcon": "Icône permettant de se déplacer d'une cellule vers le haut dans les éditeurs de notebooks.",
+ "nextChangeIcon": "Icône de l'action du changement suivant dans l'éditeur de différences.",
"openAsTextIcon": "Icône permettant d'ouvrir le notebook dans un éditeur de texte.",
"pendingStateIcon": "Icône indiquant un état d’attente dans les éditeurs de blocs-notes.",
+ "previousChangeIcon": "Icône de l'action du changement précédent dans l'éditeur de différences.",
"renderOutputIcon": "Icône permettant d'afficher la sortie dans l'éditeur de différences.",
"revertIcon": "Icône de restauration dans les éditeurs de notebook.",
+ "saveIcon": "Icône pour enregistrer le contenu sur le disque",
"selectKernelIcon": "Icône de configuration permettant de sélectionner un noyau dans les éditeurs de notebook.",
"splitCellIcon": "Icône permettant de diviser une cellule dans les éditeurs de notebook.",
"stopEditIcon": "Icône permettant d'arrêter de modifier une cellule dans les éditeurs de notebook.",
"stopIcon": "Icône d'arrêt d'exécution dans les éditeurs de notebook.",
"successStateIcon": "Icône permettant d'indiquer un état de réussite dans les éditeurs de notebook.",
- "unfoldIcon": "Icône permettant de déplier une cellule dans les éditeurs de notebook."
+ "toggleWhitespace": "Icône de l'action d'activation/de désactivation des espaces blancs dans l'éditeur de différences.",
+ "variablesViewIcon": "Icône de vue des variables."
+ },
+ "vs/workbench/contrib/notebook/browser/outputEditor/notebookOutputEditor": {
+ "empty": "La cellule n’a pas de sortie",
+ "noRenderer.2": "Aucun convertisseur n’a été trouvé pour la sortie. Il a les mimetypes suivants : {0}",
+ "notebookOutputEditor": "Éditeur de sortie du Bloc-notes"
+ },
+ "vs/workbench/contrib/notebook/browser/outputEditor/notebookOutputEditorInput": {
+ "notebookOutputEditorInput": "Aperçu de sortie du Bloc-notes"
+ },
+ "vs/workbench/contrib/notebook/browser/services/notebookExecutionServiceImpl": {
+ "notebookRunTrust": "L’exécution d’une cellule de bloc-notes entraîne l’exécution de code à partir de cet espace de travail."
+ },
+ "vs/workbench/contrib/notebook/browser/services/notebookKernelHistoryServiceImpl": {
+ "workbench.notebook.clearNotebookKernelsMRUCache": "Clear Notebook Kernels MRU Cache"
},
"vs/workbench/contrib/notebook/browser/services/notebookKeymapServiceImpl": {
"disableOtherKeymapsConfirmation": "Désactiver les autres mappages de touches ({0}) pour éviter les conflits de combinaisons de touches ?",
"no": "Non",
"yes": "Oui"
},
+ "vs/workbench/contrib/notebook/browser/services/notebookLoggingServiceImpl": {
+ "renderChannelName": "Notebook"
+ },
+ "vs/workbench/contrib/notebook/browser/services/notebookServiceImpl": {
+ "notebookOpenInstallMissingViewType": "Installer l’extension pour « {0} »"
+ },
"vs/workbench/contrib/notebook/browser/view/cellParts/cellEditorOptions": {
"notebook.cell.toggleLineNumbers.title": "Afficher les numéros de ligne de cellule",
"notebook.lineNumbers": "Contrôle l’affichage des numéros de ligne dans l’éditeur de cellule.",
- "notebook.showLineNumbers": "Afficher les numéros de ligne du bloc-notes",
+ "notebook.showLineNumbers": "Numéros de ligne de bloc-notes",
"notebook.toggleLineNumbers": "Activer/désactiver les numéros de ligne du bloc-notes"
},
"vs/workbench/contrib/notebook/browser/view/cellParts/cellOutput": {
@@ -7257,11 +12288,11 @@
},
"vs/workbench/contrib/notebook/browser/view/cellParts/codeCell": {
"cellExpandInputButtonLabel": "Développer l'entrée de cellule ({0})",
- "cellExpandInputButtonLabelWithDoubleClick": "Double-cliquez pour développer l’entrée de cellule ({0})."
+ "cellExpandInputButtonLabelWithDoubleClick": "Double-cliquez pour développer l’entrée de cellule ({0})"
},
"vs/workbench/contrib/notebook/browser/view/cellParts/codeCellExecutionIcon": {
"notebook.cell.status.executing": "Exécution",
- "notebook.cell.status.failed": "Échec",
+ "notebook.cell.status.failure": "Échec",
"notebook.cell.status.pending": "En attente",
"notebook.cell.status.success": "Opération réussie"
},
@@ -7270,129 +12301,180 @@
},
"vs/workbench/contrib/notebook/browser/view/cellParts/collapsedCellOutput": {
"cellExpandOutputButtonLabel": "Développer la sortie de cellule ({0})",
- "cellExpandOutputButtonLabelWithDoubleClick": "Double-cliquez pour développer la sortie de cellule ({0}).",
+ "cellExpandOutputButtonLabelWithDoubleClick": "Double-cliquez pour développer la sortie de cellule ({0})",
"cellOutputsCollapsedMsg": "Les sorties sont réduites"
},
"vs/workbench/contrib/notebook/browser/view/cellParts/foldedCellHint": {
"hiddenCellsLabel": "1 cellule masquée",
"hiddenCellsLabelPlural": "{0} cellules masquées"
},
- "vs/workbench/contrib/notebook/browser/view/cellParts/markdownCell": {
+ "vs/workbench/contrib/notebook/browser/view/cellParts/markupCell": {
"cellExpandInputButtonLabel": "Développer l'entrée de cellule ({0})",
- "cellExpandInputButtonLabelWithDoubleClick": "Double-cliquez pour développer l’entrée de cellule ({0})."
+ "cellExpandInputButtonLabelWithDoubleClick": "Double-cliquez pour développer l’entrée de cellule ({0})"
},
"vs/workbench/contrib/notebook/browser/view/renderers/backLayerWebView": {
- "notebook.emptyMarkdownPlaceholder": "Cellule de Markdown vide. Double-cliquez sur celle-ci, ou appuyez sur entrée pour la modifier.",
- "notebook.error.rendererNotFound": "Renderer introuvable pour « $0 » a"
+ "notebook.emptyMarkdownPlaceholder": "Cellule de Markdown vide. Double-cliquez sur celle-ci, ou appuyez sur Entrée pour la modifier.",
+ "notebook.error.rendererFallbacksExhausted": "Nous n’avons pas pu afficher le contenu pour '$0'",
+ "notebook.error.rendererNotFound": "Aucun renderer trouvé pour '$0'",
+ "webview title": "Contenu de l’affichage web du bloc-notes"
},
"vs/workbench/contrib/notebook/browser/view/renderers/cellRenderer": {
"cellExecutionOrderCountLabel": "Ordre d’exécution"
},
- "vs/workbench/contrib/notebook/browser/viewParts/notebookKernelActionViewItem": {
- "select": "Sélectionner le noyau"
+ "vs/workbench/contrib/notebook/browser/viewModel/notebookOutlineEntryFactory": {
+ "empty": "cellule vide"
+ },
+ "vs/workbench/contrib/notebook/browser/viewParts/notebookKernelQuickPickStrategy": {
+ "current1": "Actuellement sélectionnés",
+ "current2": "{0} – Actuellement sélectionnés",
+ "installSuggestedKernel": "Installer/activer les extensions suggérées",
+ "kernels.detecting": "Détection des noyaux",
+ "kernels.selectedKernelAndKernelDetectionRunning": "Noyau sélectionné : {0} (tâches de détection du noyau en cours d’exécution)",
+ "learnMoreTooltip": "En savoir plus",
+ "prompt.placeholder.change": "Modifier le noyau pour « {0} »",
+ "prompt.placeholder.select": "Sélectionnez le noyau pour « {0} »",
+ "searchForKernels": "Parcourir le marché pour les extensions de noyau",
+ "select": "Sélectionner le noyau",
+ "selectAnotherKernel": "Sélectionner un autre noyau",
+ "selectAnotherKernel.more": "Sélectionner un autre noyau...",
+ "selectKernel.placeholder": "Taper pour choisir une source de noyau",
+ "selectKernelFromExtension": "Sélectionner le noyau dans {0}"
+ },
+ "vs/workbench/contrib/notebook/browser/viewParts/notebookKernelView": {
+ "notebookActions.selectKernel": "Sélectionner un noyau de Notebook",
+ "notebookActions.selectKernel.args": "Arguments du noyau de Notebook"
+ },
+ "vs/workbench/contrib/notebook/browser/viewParts/notebookViewZones": {
+ "workbench.notebook.developer.addViewZones": "Activer/désactiver les zones d’affichage du notebook"
},
- "vs/workbench/contrib/notebook/common/notebookEditorModel": {
- "notebook.staleSaveError": "Le contenu du fichier a changé sur le disque. Voulez-vous ouvrir la version mise à jour ou remplacer le fichier par les changements que vous avez apportés ?",
- "notebook.staleSaveError.overwrite.": "Remplacer",
- "notebook.staleSaveError.revert": "Restaurer"
+ "vs/workbench/contrib/notebook/common/notebookEditorInput": {
+ "vetoAutoExtHostRestart": "Un bloc-notes fourni pour '{0}' est toujours ouvert et se fermerait dans le cas contraire.",
+ "vetoExtHostRestart": "Impossible d’enregistrer un bloc-notes fourni pour '{0}'."
+ },
+ "vs/workbench/contrib/offline/browser/offline.contribution": {
+ "offline": "Le réseau semble être hors connexion, certaines fonctionnalités risquent d’être indisponibles.",
+ "statusBarOfflineBackground": "Couleur de fond de la barre d'état lorsque le poste de travail est hors ligne. La barre d’état est affichée en bas de la fenêtre.",
+ "statusBarOfflineBorder": "Couleur de la bordure de la barre d’état séparée de la barre latérale et de l’éditeur lorsque l’établi est hors ligne. La barre d’état est affichée en bas de la fenêtre.",
+ "statusBarOfflineForeground": "Couleur de premier plan de la barre d’état lorsque le poste de travail est hors ligne. La barre d’état est affichée en bas de la fenêtre."
},
"vs/workbench/contrib/outline/browser/outline.contribution": {
- "filteredTypes.array": "Si activé, le plan montre des symboles de type 'array'.",
- "filteredTypes.boolean": "Si activé, le plan montre des symboles de type 'boolean'.",
- "filteredTypes.class": "Si activé, le plan montre des symboles de type 'class'.",
- "filteredTypes.constant": "Si activé, le plan montre des symboles de type 'constant'.",
- "filteredTypes.constructor": "Si activé, le plan montre des symboles de type 'constructor'.",
- "filteredTypes.enum": "Si activé, le plan montre des symboles de type 'enum'.",
- "filteredTypes.enumMember": "Si activé, le plan montre des symboles de type 'enumMember'.",
- "filteredTypes.event": "Si activé, le plan montre des symboles de type 'event'.",
- "filteredTypes.field": "Si activé, le plan montre des symboles de type 'field'.",
- "filteredTypes.file": "Si activé, le plan montre des symboles de type 'file'.",
- "filteredTypes.function": "Si activé, le plan montre des symboles de type 'function'.",
- "filteredTypes.interface": "Si activé, le plan montre des symboles de type 'interface'.",
- "filteredTypes.key": "Si activé, le plan montre des symboles de type 'key'.",
- "filteredTypes.method": "Si activé, le plan montre des symboles de type 'method'.",
- "filteredTypes.module": "Si activé, le plan montre des symboles de type 'module'.",
- "filteredTypes.namespace": "Si activé, le plan montre des symboles de type 'namespace'.",
- "filteredTypes.null": "Si activé, le plan montre des symboles de type 'null'.",
- "filteredTypes.number": "Si activé, le plan montre des symboles de type 'number'.",
- "filteredTypes.object": "Si activé, le plan montre des symboles de type 'object'.",
- "filteredTypes.operator": "Si activé, le plan montre des symboles de type 'operator'.",
- "filteredTypes.package": "Si activé, le plan montre des symboles de type 'package'.",
- "filteredTypes.property": "Si activé, le plan montre des symboles de type 'property'.",
- "filteredTypes.string": "Si activé, le plan montre des symboles de type 'string'.",
- "filteredTypes.struct": "Si activé, le plan montre des symboles de type 'struct'.",
- "filteredTypes.typeParameter": "Si activé, le plan montre des symboles de type 'typeParameter'.",
- "filteredTypes.variable": "Si activé, le plan montre des symboles de type 'variable'.",
+ "filteredTypes.array": "Si activé, le Plan affiche des symboles de type 'array'.",
+ "filteredTypes.boolean": "Si activé, le Plan affiche des symboles de type 'boolean'.",
+ "filteredTypes.class": "Si activé, le Plan affiche des symboles de type 'class’.",
+ "filteredTypes.constant": "Si activé, le Plan affiche des symboles de type 'constant'.",
+ "filteredTypes.constructor": "Si activé, le Plan affiche des symboles de type 'constructor'.",
+ "filteredTypes.enum": "Si activé, le Plan affiche des symboles de type 'enum'.",
+ "filteredTypes.enumMember": "Si activé, le Plan affiche des symboles de type 'enumMember'.",
+ "filteredTypes.event": "Si activé, le Plan affiche des symboles de type 'event'.",
+ "filteredTypes.field": "Si activé, le Plan affiche des symboles de type 'field’.",
+ "filteredTypes.file": "Si activé, le Plan affiche des symboles de type 'file'.",
+ "filteredTypes.function": "Si activé, le Plan affiche des symboles de type 'function'.",
+ "filteredTypes.interface": "Si activé, le Plan affiche des symboles de type 'interface'.",
+ "filteredTypes.key": "Si activé, le Plan affiche des symboles de type 'key'.",
+ "filteredTypes.method": "Si activé, le Plan affiche des symboles de type 'method’.",
+ "filteredTypes.module": "Si activé, le Plan affiche des symboles de type 'module'.",
+ "filteredTypes.namespace": "Si activé, le Plan affiche des symboles de type 'namespace'.",
+ "filteredTypes.null": "Si activé, le Plan affiche des symboles de type 'null’.",
+ "filteredTypes.number": "Si activé, le Plan affiche des symboles de type 'number'.",
+ "filteredTypes.object": "Si activé, le Plan affiche des symboles de type 'object'.",
+ "filteredTypes.operator": "Si activé, le Plan affiche des symboles de type 'operator'.",
+ "filteredTypes.package": "Si activé, le Plan affiche des symboles de type 'package'.",
+ "filteredTypes.property": "Si activé, le Plan affiche des symboles de type 'property'.",
+ "filteredTypes.string": "Si activé, le Plan affiche des symboles de type 'string'.",
+ "filteredTypes.struct": "Si activé, le Plan affiche des symboles de type 'struct'.",
+ "filteredTypes.typeParameter": "Si activé, le Plan affiche des symboles de type 'typeParameter'.",
+ "filteredTypes.variable": "Si activé, le Plan affiche des symboles de type 'variable'.",
"name": "Structure",
- "outline.problem.colors": "Utilisez des couleurs pour les erreurs et les avertissements.",
- "outline.problems.badges": "Utilisez des badges pour les erreurs et les avertissements.",
- "outline.showIcons": "Restituez les éléments de structure avec des icônes. ",
- "outline.showProblem": "Affichez les erreurs et les avertissements sur les éléments de structure.",
+ "outline.initialState": "Contrôle si les éléments de plan sont réduits ou développés.",
+ "outline.initialState.collapsed": "Réduire tous les éléments.",
+ "outline.initialState.expanded": "Développer tous les éléments.",
+ "outline.problem.colors": "Utiliser des couleurs pour les erreurs et les avertissements sur les éléments hiérarchiques. Remplacé par {0} lorsqu’il est désactivé.",
+ "outline.problems.badges": "Utiliser des badges pour les erreurs et les avertissements sur les éléments de Plan. Remplacé par {0} lorsqu’il est désactivé.",
+ "outline.showIcons": "Restituer les éléments de structure avec des icônes.",
+ "outline.showProblem": "Afficher les erreurs et les avertissements sur les éléments hiérarchiques. Remplacé par {0} lorsqu’il est désactivé.",
"outlineConfigurationTitle": "Structure",
"outlineViewIcon": "Icône de vue de la vue Structure."
},
- "vs/workbench/contrib/outline/browser/outlinePane": {
+ "vs/workbench/contrib/outline/browser/outlineActions": {
"collapse": "Réduire tout",
+ "expand": "Tout développer",
"filterOnType": "Filtrer sur le type",
"followCur": "Suivre le curseur",
- "loading": "Chargement des symboles de document pour '{0}'...",
- "no-editor": "L'éditeur actif ne peut pas fournir les informations de contour.",
- "no-symbols": "Aucun symbole trouvé dans le document '{0}'",
"sortByKind": "Trier par : Catégorie",
"sortByName": "Trier par : Nom",
"sortByPosition": "Trier par : Position"
},
- "vs/workbench/contrib/output/browser/logViewer": {
- "logViewerAriaLabel": "Visionneuse du journal"
+ "vs/workbench/contrib/outline/browser/outlinePane": {
+ "loading": "Chargement des symboles de document pour '{0}'...",
+ "no-editor": "L'éditeur actif ne peut pas fournir les informations de contour.",
+ "no-symbols": "Aucun symbole trouvé dans le document '{0}'"
},
"vs/workbench/contrib/output/browser/output.contribution": {
+ "addCompoundLog": "Ajouter un journal composé...",
+ "clearFiltersText": "Effacer le texte des filtres",
"clearOutput.label": "Effacer la sortie",
- "logViewer": "Visionneuse du journal",
+ "exportLogs": "Exporter les journaux...",
+ "extensionLogs": "Journaux d’extension",
+ "importLog": "Importer le journal...",
+ "importLogFile": "Importer le fichier journal",
+ "logFile": "ID du fichier journal à ouvrir, par exemple « fenêtre ». Actuellement, la meilleure façon d’obtenir ceci consiste à obtenir l’ID en cochant les commandes `workbench.action.output.show.` commands",
+ "logFiles": "Fichiers journaux",
+ "logLevel.label": "Définir le niveau de journalisation...",
+ "logLevelDefault.label": "Définir comme valeur par défaut",
"miToggleOutput": "S&&ortie",
- "openActiveLogOutputFile": "Ouvrir le fichier de sortie du journal",
- "openLogFile": "Ouvrir le fichier de log...",
+ "nocustumoutput": "Aucune sortie personnalisée à supprimer.",
+ "openActiveOutputFile": "Ouvrir une sortie dans un éditeur",
+ "openActiveOutputFileInNewWindow": "Ouvrir une sortie dans une nouvelle fenêtre",
+ "openLogFile": "Ouvrir le journal...",
"output": "Sortie",
"output.smartScroll.enabled": "Activez/désactivez la possibilité du défilement intelligent dans la vue de sortie. Le défilement intelligent vous permet de verrouiller automatiquement le défilement quand vous cliquez dans la vue de sortie. Il se déverrouille quand vous cliquez sur la dernière ligne.",
- "outputCleared": "Sortie effacée",
"outputScrollOff": "Désactiver le défilement automatique",
"outputScrollOn": "Activer le défilement automatique",
"outputViewIcon": "Icône de vue de la sortie.",
+ "removeLog": "Supprimer une sortie...",
+ "saveActiveOutputAs": "Enregistrer la sortie sous...",
+ "selectOutput": "Sélectionner le canal de sortie",
"selectlog": "Sélectionner le journal",
"selectlogFile": "Sélectionner le fichier journal",
"showLogs": "Afficher les journaux...",
- "switchToOutput.label": "Passer à la sortie",
- "toggleAutoScroll": "Activer/désactiver le défilement automatique"
+ "showOutputChannels": "Afficher les canaux de sortie...",
+ "switchBetweenOutputs.label": "Changer de sortie",
+ "switchToOutput.label": "Changer de sortie",
+ "toggleAutoScroll": "Activer/désactiver le défilement automatique",
+ "toggleTraceDescription": "Afficher ou masquer {0} messages dans la sortie",
+ "userLogs": "Journaux de l’utilisateur"
+ },
+ "vs/workbench/contrib/output/browser/outputServices": {
+ "saveLog.dialogTitle": "Enregistrer la sortie sous"
},
"vs/workbench/contrib/output/browser/outputView": {
"channel": "Canal de sortie pour '{0}'",
- "logChannel": "Journal ({0})",
"output": "Sortie",
"output model title": "{0} - Sortie",
- "outputChannels": "Canaux de sortie",
- "outputViewAriaLabel": "Panneau de sortie",
- "outputViewWithInputAriaLabel": "{0}, Panneau de sortie"
+ "outputView.filter.placeholder": "Filtrer",
+ "outputViewAriaLabel": "Panneau de sortie"
},
"vs/workbench/contrib/performance/browser/performance.contribution": {
+ "cycles": "Cycles du service d’impression",
+ "emitter": "Imprimer les profils émetteur",
+ "insta.trace": "Traces du service d’impression",
"show.label": "Niveau de performance du démarrage"
},
"vs/workbench/contrib/performance/browser/perfviewEditor": {
"name": "Niveau de performance du démarrage"
},
- "vs/workbench/contrib/performance/electron-sandbox/startupProfiler": {
+ "vs/workbench/contrib/performance/electron-browser/performance.contribution": {
+ "experimental.rendererProfiling": "Si activés, les convertisseurs lents sont automatiquement profilés."
+ },
+ "vs/workbench/contrib/performance/electron-browser/startupProfiler": {
"prof.detail": "Signalez le problème, et attachez manuellement les fichiers suivants :\r\n{0}",
"prof.detail.restart": "Un redémarrage final est nécessaire pour continuer à utiliser '{0}'. Nous vous remercions une fois de plus pour votre contribution.",
"prof.message": "Création réussie des profils.",
- "prof.restart": "&&Redémarrer",
+ "prof.restart": "Redémarrer",
"prof.restart.button": "&&Redémarrer",
"prof.restartAndFileIssue": "&&Créer le problème et redémarrer",
"prof.thanks": "Merci de votre aide."
},
- "vs/workbench/contrib/preferences/browser/keybindingWidgets": {
- "defineKeybinding.chordsTo": "pression simultanée avec",
- "defineKeybinding.existing": "{0} commandes existantes ont cette combinaison de touche",
- "defineKeybinding.initial": "Appuyez sur la combinaison de touches souhaitée puis appuyez sur Entrée",
- "defineKeybinding.oneExists": "1 commande existante a cette combinaison de touche"
- },
"vs/workbench/contrib/preferences/browser/keybindingsEditor": {
"SearchKeybindings.FullTextSearchPlaceholder": "Taper pour rechercher dans les combinaisons de touches",
"SearchKeybindings.KeybindingsSearchPlaceholder": "Enregistrement des touches. Appuyer sur Echap pour sortir",
@@ -7409,9 +12491,12 @@
"editKeybindingLabelWithKey": "Changer de combinaison de touches {0}",
"editWhen": "Changer en cas d'expression",
"error": "Erreur '{0}' durant la modification de la combinaison de touches. Ouvrez le fichier 'keybindings.json', puis corrigez les erreurs.",
+ "extension label": "Extension ({0})",
+ "foundResults": "{0} résultats",
"keybinding": "Combinaison de touches",
"keybindingsLabel": "Combinaisons de touches",
- "noKeybinding": "Aucune combinaison de touches n'est affectée.",
+ "keyboard shortcuts aria label": "utilisez la touche espace ou entrée pour modifier la combinaison de touches.",
+ "noKeybinding": "Aucune combinaison de touches n'est attribuée",
"noWhen": "Pas de contexte when.",
"recordKeysLabel": "Enregistrer les clés",
"recording": "Enregistrement des touches",
@@ -7423,25 +12508,44 @@
"sortByPrecedeneLabel": "Trier par priorité (la plus haute d’abord)",
"source": "source",
"title": "{0} ({1})",
- "when": "Quand",
- "whenContextInputAriaLabel": "Tapez en cas de contexte. Appuyez sur Entrée pour confirmer ou Échap pour annuler."
+ "when": "Quand"
},
"vs/workbench/contrib/preferences/browser/keybindingsEditorContribution": {
"defineKeybinding.kbLayoutErrorMessage": "Vous ne pouvez pas produire cette combinaison de touches avec la disposition actuelle du clavier.",
"defineKeybinding.kbLayoutLocalAndUSMessage": "**{0}** pour votre disposition actuelle du clavier (**{1}** pour le clavier États-Unis standard).",
- "defineKeybinding.kbLayoutLocalMessage": "**{0}** pour votre disposition actuelle du clavier.",
- "defineKeybinding.start": "Définir une combinaison de touches"
+ "defineKeybinding.kbLayoutLocalMessage": "**{0}** pour votre disposition actuelle du clavier."
+ },
+ "vs/workbench/contrib/preferences/browser/keybindingWidgets": {
+ "defineKeybinding.chordsTo": "pression simultanée avec",
+ "defineKeybinding.existing": "{0} commandes existantes ont cette combinaison de touche",
+ "defineKeybinding.initial": "Appuyez sur la combinaison de touches souhaitée puis appuyez sur Entrée",
+ "defineKeybinding.oneExists": "1 commande existante a cette combinaison de touche"
+ },
+ "vs/workbench/contrib/preferences/browser/keyboardLayoutPicker": {
+ "autoDetect": "Détection automatique",
+ "configureKeyboardLayout": "Configurer la disposition du clavier",
+ "displayLanguage": "Définit la disposition du clavier utilisée dans VS Code dans l’environnement du navigateur.",
+ "doc": "Ouvrez VS Code et exécutez « Développeur : Inspecter les mappages de clés (JSON) » à partir de la palette de commandes.",
+ "fail.createSettings": "Impossible de créer '{0}' ({1}).",
+ "keyboard.chooseLayout": "Modifier la disposition du clavier",
+ "keyboardLayout": "Disposition : {0}",
+ "layoutPicks": "Dispositions de clavier ({0})",
+ "pickKeyboardLayout": "Sélectionner la disposition du clavier",
+ "status.workbench.keyboardLayout": "Disposition de clavier"
},
"vs/workbench/contrib/preferences/browser/preferences.contribution": {
- "Keyboard Shortcuts": "Raccourcis clavier",
"clear": "Effacer les résultats de la recherche",
"clearHistory": "Effacer l’historique de recherche des raccourcis clavier",
+ "defineKeybinding.start": "Définir une combinaison de touches",
"filterUntrusted": "Afficher les paramètres d’espace de travail non approuvés",
"keybindingsEditor": "Éditeur de combinaisons de touches",
+ "keyboardShortcuts": "Raccourcis clavier",
"miOpenOnlineSettings": "Paramètres des serv&&ices en ligne",
"miOpenSettings": "Paramètr&&es",
+ "miOpenTelemetrySettings": "&&Paramètres de télémétrie",
"miPreferences": "&&Préférences",
- "openCurrentProfileSettingsJson": "Ouvrir les paramètres de profil actuels (JSON)",
+ "openAccessibilitySettings": "Ouvrir les paramètres d’accessibilité",
+ "openApplicationSettingsJson": "Ouvrir les paramètres d’application (JSON)",
"openDefaultKeybindingsFile": "Ouvrir les raccourcis clavier par défaut (JSON)",
"openFolderSettings": "Ouvrir le dossier Paramètres",
"openFolderSettingsFile": "Ouvrir les paramètres de dossier (JSON)",
@@ -7457,6 +12561,7 @@
"openWorkspaceSettings": "Ouvrir les paramètres d'espace de travail",
"openWorkspaceSettingsFile": "Ouvrir les paramètres d'espace de travail (JSON)",
"preferences": "Préférences",
+ "preferencesEditor": "Éditeur des Préférences",
"settings": "Paramètres",
"settings.clearResults": "Effacer les résultats de la recherche de paramètres",
"settings.focusFile": "Fichier de paramètres de focus",
@@ -7466,42 +12571,51 @@
"settings.focusSettingsList": "Liste des paramètres de focus",
"settings.focusSettingsTOC": "Définir le focus sur la table des matières des paramètres",
"settings.showContextMenu": "Afficher le menu contextuel des paramètres",
+ "settings.toggleAiSearch": "Activer/désactiver la recherche de paramètres d’IA",
"settingsEditor2": "Éditeur de paramètres 2",
- "showDefaultKeybindings": "Afficher les combinaisons de touches par défaut",
+ "showDefaultKeybindings": "Afficher les combinaisons de touches système",
"showExtensionKeybindings": "Afficher les combinaisons de touches de l'extension",
- "showTelemtrySettings": "Paramètres de télémétrie",
- "showUserKeybindings": "Afficher les combinaisons de touches de l'utilisateur"
+ "showUserKeybindings": "Afficher les combinaisons de touches de l'utilisateur",
+ "workbench.action.openSettingsJson.description": "Ouvre le fichier JSON contenant les paramètres actuels du profil utilisateur"
},
"vs/workbench/contrib/preferences/browser/preferencesActions": {
"configureLanguageBasedSettings": "Configurer les paramètres spécifiques au langage...",
"languageDescriptionConfigured": "({0})",
"pickLanguage": "Sélectionner un langage"
},
+ "vs/workbench/contrib/preferences/browser/preferencesEditor": {
+ "FullTextSearchPlaceholder": "Rechercher dans {0}",
+ "preferencesTabSwitcherBarAriaLabel": "Sélecteur d’onglet Préférences"
+ },
"vs/workbench/contrib/preferences/browser/preferencesIcons": {
"keybindingsAddIcon": "Icône de l'action d'ajout dans l'IU de combinaison de touches.",
"keybindingsEditIcon": "Icône de l'action de modification dans l'IU de combinaison de touches.",
"keybindingsRecordKeysIcon": "Icône de l'action d'enregistrement des touches dans l'IU de combinaison de touches.",
"keybindingsSortIcon": "Icône d'activation/de désactivation du tri par priorité dans l'IU de combinaison de touches.",
+ "preferencesAiResults": "Icône pour afficher les résultats de l’IA dans l’interface utilisateur des paramètres.",
"preferencesClearInput": "Icône d'effacement d'entrée dans l'IU des paramètres et de combinaison de touches.",
"preferencesDiscardIcon": "Icône de l'action d'abandon dans l'IU des paramètres.",
"preferencesOpenSettings": "Icône des commandes d'ouverture de paramètres.",
- "settingsAddIcon": "Icône de l'action d'ajout dans l'IU des paramètres.",
"settingsEditIcon": "Icône de l'action de modification dans l'IU des paramètres.",
"settingsFilter": "Icône du bouton qui suggère des filtres pour l’interface utilisateur Paramètres.",
- "settingsGroupCollapsedIcon": "Icône de section réduite dans l'Éditeur de paramètres JSON divisé.",
- "settingsGroupExpandedIcon": "Icône de section développée dans l'Éditeur de paramètres JSON divisé.",
"settingsMoreActionIcon": "Icône de l'action associée aux actions supplémentaires dans l'IU des paramètres.",
"settingsRemoveIcon": "Icône de l'action de suppression dans l'IU des paramètres.",
"settingsScopeDropDownIcon": "Icône du bouton de liste déroulante de dossier dans l'Éditeur de paramètres JSON divisé."
},
"vs/workbench/contrib/preferences/browser/preferencesRenderers": {
+ "allProfileSettingWhileInNonDefaultProfileSetting": "Ce paramètre ne peut pas être appliqué, car il est configuré pour être appliqué dans tous les profils à l’aide du paramètre {0}. La valeur du profil par défaut sera utilisée à la place.",
"copyDefaultValue": "Copier dans Paramètres",
"defaultProfileSettingWhileNonDefaultActive": "Ce paramètre ne peut pas être appliqué tant qu’un profil autre qu’un profil par défaut est actif. Il sera appliqué lorsque le profil par défaut sera actif.",
"editTtile": "Modifier",
"manage workspace trust": "Gérer l’approbation d’espace de travail",
+ "mcp.renderer.openRemoteConfig": "Ouvrir la configuration MCP de l’utilisateur(-trice) distant",
+ "mcp.renderer.openUserConfig": "Ouvrir la configuration utilisateur MCP",
+ "mcp.renderer.remoteConfigFound": "Les serveurs MCP ne doivent pas être configurés dans les paramètres utilisateur distant. Utilisez plutôt la configuration MCP dédiée.",
+ "mcp.renderer.userConfigFound": "Les serveurs MCP ne doivent pas être configurés dans les paramètres utilisateur. Utilisez plutôt la configuration MCP dédiée.",
"replaceDefaultValue": "Remplacer dans les paramètres",
"unknown configuration setting": "Paramètre de configuration inconnu",
- "unsupportedApplicationSetting": "Ce paramètre a une étendue d’application et ne peut être défini que dans le fichier de paramètres utilisateur.",
+ "unsupportLanguageOverrideSetting": "Ce paramètre ne peut pas être appliqué, car il n’est pas inscrit en tant que paramètre de remplacement de langage.",
+ "unsupportedApplicationSetting": "Ce paramètre a une portée d’application et ne peut être défini que dans le fichier de paramètres du profil par défaut.",
"unsupportedMachineSetting": "Ce paramètre peut uniquement être appliqué dans les paramètres d'utilisateur dans la fenêtre locale ou dans les paramètres à distance dans la fenêtre à distance.",
"unsupportedPolicySetting": "Ce paramètre ne peut pas être appliqué, car il est configuré dans la stratégie système.",
"unsupportedProperty": "Propriété non prise en charge",
@@ -7517,19 +12631,26 @@
"workspaceSettings": "Espace de travail"
},
"vs/workbench/contrib/preferences/browser/settingsEditor2": {
- "SearchSettings.AriaLabel": "Paramètres de recherche",
+ "SearchSettings.AriaLabel": "Rechercher dans les paramètres",
"clearInput": "Effacer l'entrée de recherche des paramètres",
"clearSearchFilters": "Effacer les filtres",
"filterInput": "Paramètres de filtre",
"lastSyncedLabel": "Dernière synchronisation : {0}",
"moreThanOneResult": "{0} paramètres trouvés",
+ "moreThanOneResultWithAiAvailable": "{0} paramètres trouvés. Les résultats IA sont disponibles",
+ "noAiResults": "Aucun résultat IA n’est disponible pour le moment.",
"noResults": "Aucun paramètre trouvé.",
+ "noResultsWithAiAvailable": "Les paramètres sont introuvables. Les résultats IA sont disponibles",
"oneResult": "1 paramètre trouvé",
+ "oneResultWithAiAvailable": "1 paramètre a été trouvé. Les résultats IA sont disponibles",
"settings": "Paramètres",
"settings require trust": "Approbation d’espace de travail",
- "turnOnSyncButton": "Activer la synchronisation des paramètres"
+ "showAiResultsDisabled": "Aucun résultat IA n’est disponible pour le moment.",
+ "showAiResultsEnabled": "Afficher les résultats recommandés par l’IA",
+ "turnOnSyncButton": "Paramètres de sauvegarde et de synchronisation"
},
"vs/workbench/contrib/preferences/browser/settingsEditorSettingIndicators": {
+ "advancedLabel": "Avancé",
"alsoConfiguredElsewhere": "Également modifié ailleurs",
"alsoConfiguredIn": "Également modifiés dans",
"alsoModifiedInScopes": "Le paramètre a également été modifié dans les étendues suivantes :",
@@ -7538,32 +12659,47 @@
"applicationSettingDescriptionAccessible": "Valeur de paramètre conservée lors du changement de profil",
"configuredElsewhere": "Modification ailleurs",
"configuredIn": "Modifié dans",
- "defaultOverriddenDetails": "Valeur de paramètre par défaut remplacée par {0}",
+ "defaultOverriddenDetails": "Valeur de paramètre par défaut remplacée par `{0}`",
"defaultOverriddenDetailsAriaLabel": "{0} remplace la valeur par défaut",
"defaultOverriddenLabel": "Valeur par défaut modifiée",
- "defaultOverriddenLanguagesList": "Il existe des valeurs par défaut spécifiques à la langue pour {0}",
+ "defaultOverriddenLanguagesList": "Il existe des valeurs par défaut spécifiques au langage pour {0}",
+ "experimentalLabel": "Expérimental",
"extensionSyncIgnoredLabel": "Non synchronisées",
- "hasDefaultOverridesForLanguages": "Les langues suivantes ont des remplacements par défaut :",
+ "hasDefaultOverridesForLanguages": "Les langages suivants ont des remplacements par défaut :",
+ "manageWorkspaceTrust": "Gérer l’approbation d’espace de travail",
"modifiedInScopeForLanguage": "L’{0}étendue pour {1}",
"modifiedInScopeForLanguageMidSentence": "L’{0}étendue pour {1}",
"modifiedInScopes": "Le paramètre a été modifié dans les étendues suivantes :",
+ "multipleDefaultOverriddenDetailsAriaLabel": "{0} remplacer les valeurs par défaut",
+ "multipledefaultOverriddenDetails": "Une valeur par défaut a été définie par {0}",
+ "policyDescription": "Ce paramètre est géré par votre organisation et sa valeur réelle ne peut pas être modifiée.",
+ "policyDescriptionAccessible": "Géré par la stratégie de l’organisation ; valeur de paramètre non appliquée",
+ "policyFilterLink": "Afficher les paramètres de stratégie",
+ "policyLabelText": "Géré par organization",
+ "previewLabel": "Préversion",
"remote": "Distant",
"syncIgnoredAriaLabel": "Paramètre ignoré pendant la synchronisation",
"syncIgnoredTitle": "Ce paramètre est ignoré lors de la synchronisation",
+ "trustLabel": "La valeur de paramètre ne peut être appliquée que dans un espace de travail approuvé.",
"user": "Utilisateur",
- "workspace": "Espace de travail"
+ "workspace": "Espace de travail",
+ "workspaceUntrustedAriaLabel": "Espace de travail non approuvé ; la valeur du paramètre ne sera pas appliquée",
+ "workspaceUntrustedLabel": "Nécessite une approbation d’espace de travail"
},
"vs/workbench/contrib/preferences/browser/settingsLayout": {
+ "accessibility": "Accessibilité",
+ "accessibility.signals": "Signaux d’accessibilité",
"appearance": "Apparence",
"application": "Application",
- "audioCues": "Signaux audio",
"breadcrumbs": "Fil d'Ariane",
+ "chat": "Conversation",
"comments": "Commentaires",
"commonlyUsed": "Utilisés le plus souvent",
"cursor": "Curseur",
"debug": "Déboguer",
"diffEditor": "Éditeur de différences",
"editorManagement": "Gestion de l'éditeur",
+ "experimental": "Expérimental",
"extensions": "Extensions",
"features": "Fonctionnalités",
"fileExplorer": "Explorateur",
@@ -7571,10 +12707,14 @@
"find": "Rechercher",
"font": "Police",
"formatting": "Mise en forme",
+ "issueReporter": "Rapporteur du problème",
"keyboard": "Clavier",
+ "mergeEditor": "Éditeur de fusion",
"minimap": "Minimap",
+ "multiDiffEditor": "Éditeur de différences multi-fichier",
"newWindow": "Nouvelle fenêtre",
"notebook": "Notebook",
+ "other": "Autre",
"output": "Sortie",
"problems": "Problèmes",
"proxy": "Proxy",
@@ -7599,51 +12739,67 @@
"zenMode": "Mode Zen"
},
"vs/workbench/contrib/preferences/browser/settingsSearchMenu": {
+ "advancedSettingsSearch": "Avancé",
+ "advancedSettingsSearchTooltip": "Afficher les paramètres avancés",
+ "experimental": "Expérimental",
+ "experimentalSettingsSearchTooltip": "Afficher les paramètres expérimentaux",
"extSettingsSearch": "ID d’extension...",
"extSettingsSearchTooltip": "Ajouter un filtre d’ID d’extension",
"featureSettingsSearch": "Caractéristique...",
"featureSettingsSearchTooltip": "Ajouter le filtre de fonctionnalités",
- "langSettingsSearch": "Langue...",
- "langSettingsSearchTooltip": "Ajouter un filtre d’ID de langue",
+ "idSettingsSearch": "Définition de l’ID...",
+ "idSettingsSearchTooltip": "Ajouter un filtre d’ID de paramètre",
+ "langSettingsSearch": "Langage...",
+ "langSettingsSearchTooltip": "Ajouter un filtre d’ID de langage",
"modifiedSettingsSearch": "Modifié le",
"modifiedSettingsSearchTooltip": "Ajouter ou supprimer un filtre de paramètres modifiés",
"onlineSettingsSearch": "Services en ligne",
"onlineSettingsSearchTooltip": "Afficher les paramètres des services en ligne",
- "policySettingsSearch": "Services de stratégie",
- "policySettingsSearchTooltip": "Afficher les paramètres des services de stratégie",
+ "policySettingsSearch": "Stratégies d’organisation",
+ "policySettingsSearchTooltip": "Afficher les paramètres de stratégie de l’entreprise",
+ "previewSettings": "Préversion",
+ "previewSettingsSearchTooltip": "Affichez les paramètres d’aperçu",
+ "stableSettings": "Stable",
+ "stableSettingsSearchTooltip": "Afficher les paramètres stables",
"tagSettingsSearch": "Étiquette...",
"tagSettingsSearchTooltip": "Ajouter un filtre d'étiquette"
},
"vs/workbench/contrib/preferences/browser/settingsTree": {
+ "applyToAllProfiles": "Appliquer le paramètre à tous les profils",
"copySettingAsJSONLabel": "Copier le Paramètre en JSON",
+ "copySettingAsURLLabel": "Copier un paramètre en tant qu’URL",
"copySettingIdLabel": "Copier l'ID du paramètre",
+ "dismiss": "Ignorer",
"editInSettingsJson": "Modifier dans settings.json",
"editLanguageSettingLabel": "Modifier les paramètres de {0}",
"extensions": "Extensions",
- "manageWorkspaceTrust": "Gérer l’approbation d’espace de travail",
"modified": "Le paramètre a été configuré dans l’étendue actuelle.",
"newExtensionsButtonLabel": "Afficher les extensions correspondantes",
- "policyLabel": "Ce paramètre est géré par votre organisation.",
"resetSettingLabel": "Réinitialiser le paramètre",
"settings": "Paramètres",
"settings.Default": "par défaut",
"settings.Modified": "Modifié.",
"settingsContextMenuTitle": "Plus d'actions...",
+ "showExtension": "Afficher l’extension",
"stopSyncingSetting": "Synchroniser ce paramètre",
- "trustLabel": "Ce paramètre ne peut être appliqué que dans un espace de travail approuvé",
- "validationError": "Erreur de validation.",
- "viewPolicySettings": "Afficher les paramètres de stratégie"
+ "validationError": "Erreur de validation."
},
"vs/workbench/contrib/preferences/browser/settingsWidgets": {
"addItem": "Ajouter l'élément",
"addPattern": "Ajouter le modèle",
"cancelButton": "Annuler",
"editExcludeItem": "Modifier l’élément exclus",
+ "editIncludeItem": "Modifier l’élément Include",
"editItem": "Modifier l'élément",
+ "excludeIncludeSource": ". Valeur par défaut fournie par `{0}`",
"excludePatternHintLabel": "Exclure les fichiers correspondant à `{0}`",
"excludePatternInputPlaceholder": "Modèle d'exclusion",
"excludeSiblingHintLabel": "Exclure les fichiers correspondant à `{0}`, seulement quand un fichier correspondant à `{1}` est présent",
"excludeSiblingInputPlaceholder": "Quand le modèle est présent ...",
+ "includePatternHintLabel": "Inclure les fichiers correspondant à `{0}`",
+ "includePatternInputPlaceholder": "Inclure le modèle...",
+ "includeSiblingHintLabel": "Inclure les fichiers correspondant à `{0}`, seulement quand un fichier correspondant à `{1}` est présent",
+ "includeSiblingInputPlaceholder": "Quand le modèle est présent ...",
"itemInputPlaceholder": "Élément...",
"listSiblingHintLabel": "Élément de liste '{0}' avec frère '${1}'",
"listSiblingInputPlaceholder": "Frère...",
@@ -7651,10 +12807,12 @@
"objectKeyHeader": "Élément",
"objectKeyInputPlaceholder": "Clé",
"objectPairHintLabel": "La propriété '{0}' a la valeur '{1}'.",
+ "objectPairHintLabelWithSource": "La propriété `{0}` a la valeur `{1}` par `{2}`.",
"objectValueHeader": "Valeur",
"objectValueInputPlaceholder": "Valeur",
"okButton": "OK",
"removeExcludeItem": "Supprimer l’élément exclus",
+ "removeIncludeItem": "Supprimer l’élément Include",
"removeItem": "Supprimer l'élément",
"resetItem": "Réinitialiser l'élément"
},
@@ -7662,10 +12820,15 @@
"groupRowAriaLabel": "{0}, groupe",
"settingsTOC": "Paramètres - Table des matières"
},
+ "vs/workbench/contrib/preferences/common/preferences": {
+ "advancedIndicatorDescription": "Paramètre avancé : ce paramètre est destiné aux scénarios et configurations avancés. Modifiez-le uniquement si vous savez ce qu’il fait.",
+ "experimentalIndicatorDescription": "Paramètre expérimental : ce paramètre contrôle une nouvelle fonctionnalité en cours de développement qui peut se montrer instable. Elle est susceptible d’être modifiée ou supprimée.",
+ "previewIndicatorDescription": "Paramètre de préversion : ce paramètre contrôle une nouvelle fonctionnalité qui est encore en cours de perfectionnement, mais qui est prête à être utilisée. Les commentaires sont les bienvenus."
+ },
"vs/workbench/contrib/preferences/common/preferencesContribution": {
"enableNaturalLanguageSettingsSearch": "Contrôle si vous voulez activer le mode de recherche de langage naturel pour les paramètres de contrôle. La recherche en langage naturel est assurée par un service Microsoft en ligne.",
- "settingsSearchTocBehavior": "Contrôle le comportement de la table des matières de l'éditeur de paramètres pendant la recherche.",
- "settingsSearchTocBehavior.filter": "Filtrer la Table des matières à quelques catégories ayant des paramètres correspondants. Cliquer sur une catégorie filtrera les résultats pour cette catégorie.",
+ "settingsSearchTocBehavior": "Contrôle le comportement de la table des matières de l'éditeur de paramètres lors de la recherche. Si ce paramètre est modifié dans l'éditeur de paramètres, il prendra effet une fois la requête de recherche modifiée.",
+ "settingsSearchTocBehavior.filter": "Filtrez la table des matières sur uniquement les catégories qui ont des paramètres correspondants. Cliquez sur une catégorie pour filtrer les résultats sur cette catégorie.",
"settingsSearchTocBehavior.hide": "Masquer la Table des matières lors de la recherche.",
"splitSettingsEditorLabel": "Fractionner Éditeur de paramètres"
},
@@ -7686,28 +12849,45 @@
"settingsDropdownForeground": "Premier plan de la liste déroulante de l'éditeur de paramètres.",
"settingsDropdownListBorder": "Bordure de liste déroulante de l'éditeur de paramètres. Elle entoure les options et les sépare de la description.",
"settingsHeaderBorder": "Couleur de la bordure du conteneur d’en-tête.",
+ "settingsHeaderHoverForeground": "La couleur d’avant-plan pour un en-tête de section ou un titre survolé.",
"settingsSashBorder": "La couleur de la bordure de l'éditeur de paramètres splitview sash.",
"textInputBoxBackground": "Arrière-plan de la zone d'entrée de texte de l'éditeur de paramètres.",
"textInputBoxBorder": "Bordure de la zone d'entrée de texte de l'éditeur de paramètres.",
"textInputBoxForeground": "Premier plan de la zone d'entrée de texte de l'éditeur de paramètres."
},
- "vs/workbench/contrib/profiles/common/profilesActions": {
- "confiirmation message": "Cela remplacera vos paramètres actuels. Voulez-vous vraiment continuer ?",
- "export profile": "Exporter Paramètres sous forme de profil...",
- "export profile dialog": "Enregistrer le profil",
- "export success": "{0} : exporté avec succès.",
- "import profile": "Importer des paramètres à partir d’un profil...",
- "import profile dialog": "Importer le profil",
- "import profile placeholder": "Fournir l’URL du profil ou sélectionner le fichier de profil à importer",
- "import profile quick pick title": "Importer des paramètres à partir d’un profil",
- "import profile title": "Importer des paramètres à partir d’un profil",
- "select from file": "Importer à partir d’un fichier de profil",
- "select from url": "Importer à partir de l’URL"
+ "vs/workbench/contrib/processExplorer/browser/processExplorer.contribution": {
+ "miOpenProcessExplorerer": "Ouvrir l’explorateur de &&processus",
+ "openProcessExplorer": "Ouvrir l’Explorateur de processus",
+ "promptOpenWith.processExplorer.displayName": "Explorateur de processus"
+ },
+ "vs/workbench/contrib/processExplorer/browser/processExplorer.web.contribution": {
+ "processExplorer": "Explorateur de processus"
+ },
+ "vs/workbench/contrib/processExplorer/browser/processExplorerControl": {
+ "copy": "Copier",
+ "copyAll": "Copier tout",
+ "debug": "Déboguer",
+ "forceKillProcess": "Forcer l'arrêt du processus",
+ "killProcess": "Tuer le processus",
+ "processCpu": "Processeur (%)",
+ "processExplorer": "Explorateur de processus",
+ "processMemory": "Mémoire (Mo)",
+ "processName": "Nom du processus",
+ "processPid": "PID"
+ },
+ "vs/workbench/contrib/processExplorer/browser/processExplorerEditorInput": {
+ "processExplorerEditorLabelIcon": "Icône de l’étiquette de l’explorateur de processus.",
+ "processExplorerInputName": "Explorateur de processus"
+ },
+ "vs/workbench/contrib/processExplorer/electron-browser/processExplorer.contribution": {
+ "processExplorer": "Explorateur de processus"
},
"vs/workbench/contrib/quickaccess/browser/commandsQuickAccess": {
"clearButtonLabel": "&&Effacer",
"clearCommandHistory": "Effacer l'historique de commandes",
"commandWithCategory": "{0}: {1}",
+ "commandsQuickAccess.askInChat": "Demander dans la conversation : {0}",
+ "commandsQuickAccess.configureAskInChatSetting": "Configurer la visibilité",
"configure keybinding": "Configurer la combinaison de touches",
"confirmClearDetail": "Cette action est irréversible !",
"confirmClearMessage": "Voulez-vous effacer l’historique des commandes récemment utilisées ?",
@@ -7724,13 +12904,13 @@
"miGotoLine": "Atteindre la &&ligne/colonne...",
"miOpenView": "&&Ouvrir la vue...",
"miShowAllCommands": "Afficher toutes les commandes",
+ "more": "Plus",
"viewQuickAccess": "Ouvrir l'affichage",
"viewQuickAccessPlaceholder": "Tapez le nom d'une vue, d'un canal de sortie ou d'un terminal à ouvrir."
},
"vs/workbench/contrib/quickaccess/browser/viewQuickAccess": {
"channels": "Sortie",
"debugConsoles": "Console de débogage",
- "logChannel": "Journal ({0})",
"noViewResults": "Aucune vue correspondante",
"openView": "Ouvrir l'affichage",
"panels": "Panneau",
@@ -7746,19 +12926,13 @@
"relaunchSettingMessage": "Un paramètre a changé et nécessite un redémarrage pour être appliqué.",
"relaunchSettingMessageWeb": "Un paramètre modifié qui requiert une actualisation pour prendre effet.",
"restart": "&&Redémarrer",
+ "restartExtensionHost.reason": "Modification des dossiers d’espace de travail",
"restartWeb": "&&Recharger"
},
"vs/workbench/contrib/remote/browser/explorerViewItems": {
- "remote.explorer.switch": "Basculer sur la machine distante",
- "remotes": "Basculer sur la machine distante"
+ "switchRemote.label": "Basculer sur la machine distante"
},
"vs/workbench/contrib/remote/browser/remote": {
- "RemoteHelpInformationExtPoint": "Apporte des informations d'aide pour Remote",
- "RemoteHelpInformationExtPoint.documentation": "URL, ou commande qui retourne l'URL, de la page de documentation de votre projet",
- "RemoteHelpInformationExtPoint.feedback": "URL, ou commande qui retourne l'URL, du rapporteur de commentaires de votre projet",
- "RemoteHelpInformationExtPoint.getStarted": "URL, ou commande qui retourne l'URL, de la page Prise en main de votre projet",
- "RemoteHelpInformationExtPoint.issues": "URL, ou commande qui retourne l'URL, de la liste des problèmes de votre projet",
- "cancel": "Annuler",
"connectionLost": "Connexion perdue",
"pickRemoteExtension": "Sélectionner l'url pour l'ouvrir",
"reconnectNow": "Se reconnecter",
@@ -7767,25 +12941,39 @@
"reconnectionWaitMany": "Tentative de reconnexion dans {0} secondes...",
"reconnectionWaitOne": "Tentative de reconnexion dans {0} seconde...",
"reloadWindow": "Recharger la fenêtre",
+ "reloadWindow.dialog": "&&Recharger la fenêtre",
"remote.explorer": "Explorateur distant",
"remote.help": "Assistance et retours",
"remote.help.documentation": "Consulter la documentation",
- "remote.help.feedback": "Fournir un commentaire",
"remote.help.getStarted": "Mise en route",
"remote.help.issues": "Examiner les problèmes",
"remote.help.report": "Signaler un problème",
"remotehelp": "Aide à distance"
},
+ "vs/workbench/contrib/remote/browser/remoteConnectionHealth": {
+ "allow": "&&Autoriser",
+ "learnMore": "&&Découvrir plus d’informations",
+ "remember": "Ne plus afficher",
+ "unsupportedGlibcBannerLearnMore": "Découvrir plus d’informations",
+ "unsupportedGlibcWarning": "Vous êtes sur le point de vous connecter à une version de système d’exploitation qui n’est pas prise en charge par {0}.",
+ "unsupportedGlibcWarning.banner": "Vous êtes connecté à une version de système d’exploitation qui n’est pas prise en charge par {0}."
+ },
"vs/workbench/contrib/remote/browser/remoteExplorer": {
"1forwardedPort": "1 port réacheminé",
"nForwardedPorts": "{0} ports réacheminés",
+ "noRemoteNoPorts": "Aucun port transféré. Transférez un port pour accéder à vos services exécutés localement sur Internet.\r\n[Transférer un port]({0})",
"ports": "Ports",
+ "remote.autoForwardPortsSource.fallback": "Plus de 20 ports ont été transférés automatiquement. Le transfert de port automatique basé sur le « processus » a été basculé vers « hybride » dans les paramètres. Certains ports peuvent ne plus être détectés.",
+ "remote.autoForwardPortsSource.fallback.showPortSourceSetting": "Afficher le paramètre",
+ "remote.autoForwardPortsSource.fallback.switchBack": "Annuler",
"remote.forwardedPorts.statusbarTextNone": "Aucun port réacheminé",
"remote.forwardedPorts.statusbarTooltip": "Ports réacheminés : {0}",
- "remote.tunnelsView.automaticForward": "Votre application s'exécutant sur le port {0} est disponible. ",
+ "remote.tunnelsView.automaticForward": "Votre application{0} s’exécutant sur le port {1} est disponible. ",
"remote.tunnelsView.elevationButton": "Utiliser le port {0} en tant que sudo...",
"remote.tunnelsView.elevationMessage": "Vous devez effectuer l'exécution en tant que superutilisateur pour pouvoir utiliser le port {0} localement. ",
- "remote.tunnelsView.notificationLink2": "[Voir tous les ports transférés] ({0})",
+ "remote.tunnelsView.makePublic": "Rendre public",
+ "remote.tunnelsView.notificationLink2": "[Voir tous les ports transférés]({0})",
+ "remoteNoPorts": "Aucun port transféré. Transférez un port pour accéder à vos services exécutés localement.\r\n[Transférer un port]({0})",
"status.forwardedPorts": "Ports transférés"
},
"vs/workbench/contrib/remote/browser/remoteIcons": {
@@ -7814,18 +13002,30 @@
"host.open": "Ouverture de la machine distante...",
"host.reconnecting": "Reconnexion à {0}...",
"host.tooltip": "Modification sur {0}",
- "installRemotes": "Installer des extensions distantes supplémentaires...",
"miCloseRemote": "Fer&&mer la connexion à distance",
+ "networkStatusHighLatencyTooltip": "Le réseau semble avoir une latence élevée ({0} ms en dernier, {1} ms en moyenne) ; certaines fonctionnalités peuvent être lentes à réagir.",
+ "networkStatusOfflineTooltip": "Le réseau semble être hors connexion, certaines fonctionnalités risquent d’être indisponibles.",
"noHost.tooltip": "Ouvrir une fenêtre distante",
"reloadWindow": "Recharger la fenêtre",
"remote.category": "Distant",
"remote.close": "Fermer la connexion à distance",
"remote.install": "Installer les extensions distantes de développement",
+ "remote.showExtensionRecommendations": "Lorsque cette option est activée, les recommandations relatives aux extensions à distance s’affichent dans le menu Indicateur distant.",
"remote.showMenu": "Afficher le menu d'utilisation à distance",
+ "remote.startActions.help": "En savoir plus",
+ "remote.startActions.install": "Installer",
+ "remote.startActions.installingExtension": "Installation de l’extension... ",
+ "remoteActions": "Sélectionner une option pour ouvrir une fenêtre distante",
"remoteHost": "Hôte distant",
+ "retry": "Réessayer",
+ "unknownSetupError": "Une erreur s’est produite lors de la définition de {0}. Voulez-vous réessayer ?",
"workspace.tooltip": "Modification sur {0}",
"workspace.tooltip2": "Certaines [fonctionnalités ne sont pas disponibles]({0}) pour les ressources situées sur un système de fichiers virtuel."
},
+ "vs/workbench/contrib/remote/browser/remoteStartEntry": {
+ "remote.category": "À distance",
+ "remote.showWebStartEntryActions": "Afficher l’entrée de démarrage à distance pour le web"
+ },
"vs/workbench/contrib/remote/browser/tunnelFactory": {
"tunnelPrivacy.private": "Privé",
"tunnelPrivacy.public": "Public"
@@ -7847,6 +13047,7 @@
"remote.tunnel.copyAddressPlaceholdter": "Choisir un port réacheminé",
"remote.tunnel.forward": "Réacheminer un port",
"remote.tunnel.forwardError": "Impossible de réacheminer {0}:{1}. L'hôte n'est peut-être pas disponible ou ce port distant est peut-être déjà réacheminé",
+ "remote.tunnel.forwardErrorProvided": "Impossible de transférer {0}:{1}. {2}",
"remote.tunnel.forwardItem": "Réacheminer le port",
"remote.tunnel.forwardPrompt": "Numéro de port ou adresse (par ex., 3000 ou 10.10.10.10:2000).",
"remote.tunnel.label": "Définir l'étiquette du port",
@@ -7869,10 +13070,10 @@
"remote.tunnelsView.labelPlaceholder": "Étiquette de port",
"remote.tunnelsView.portNumberToHigh": "Le numéro de port doit être ≥ 0 et < {0}.",
"remote.tunnelsView.portNumberValid": "Le port transféré doit être un nombre ou un host:port.",
- "tunnel.addressColumn.label": "Adresse locale",
- "tunnel.addressColumn.tooltip": "Adresse à laquelle le port réacheminé est disponible localement.",
+ "remote.tunnelsView.portShouldBeNumber": "Le port local doit être un chiffre.",
+ "tunnel.addressColumn.label": "Adresse transférée",
+ "tunnel.addressColumn.tooltip": "Adresse à laquelle le port transféré est disponible.",
"tunnel.focusContext": "Indique si la vue Ports a le focus.",
- "tunnel.forwardedPortsViewEnabled": "Indique si la vue Ports est activée.",
"tunnel.iconColumn.notRunning": "Aucun processus en cours d'exécution.",
"tunnel.iconColumn.running": "Le port a un processus en cours d'exécution.",
"tunnel.originColumn.label": "Origine",
@@ -7891,17 +13092,21 @@
"tunnelView.runningProcess.inacessable": "Informations de processus indisponibles"
},
"vs/workbench/contrib/remote/common/remote.contribution": {
- "invalidWorkspaceCancel": "&&Annuler",
- "invalidWorkspaceDetail": "L’espace de travail n’existe pas. Sélectionnez un autre espace de travail à ouvrir.",
+ "invalidWorkspaceDetail": "Veuillez sélectionne un autre espace de travail.",
"invalidWorkspaceMessage": "L’espace de travail n'existe pas.",
"invalidWorkspacePrimary": "&&Ouvrir un espace de travail...",
"pauseSocketWriting": "Connexion : suspendre l’écriture du socket",
"remote": "Distant",
- "remote.autoForwardPorts": "Quand cette option est activée, les nouveaux processus qui s'exécutent sont détectés, et les ports qu'ils écoutent sont réacheminés automatiquement. La désactivation de ce paramètre n’empêchera pas le transfert de tous les ports. Même lorsqu’elles sont désactivées, les extensions peuvent toujours faire en sorte que les ports soient transférés, et l’ouverture de certaines URL entraîne toujours le transfert des ports.",
- "remote.autoForwardPortsSource": "Définit la source à partir de laquelle les ports sont automatiquement transférés lorsque {0} a la valeur true. Sur les télécommandes Windows et Mac, l’option « process » n’a aucun effet et « output » est utilisé. Nécessite un rechargement pour prendre effet.",
+ "remote.autoForwardPortFallback": "Le nombre de ports transférés automatiquement qui déclenchera le passage de `process` à `hybrid` lors du transfert automatique des ports et `remote.autoForwardPortsSource` est fixé à `process` par défaut. Définissez sur `0` pour désactiver le secours. Quand `remote.autoForwardPortsFallback` n’a pas été configuré, mais que ’remote.autoForwardPortsSource’ l’a fait, `remote.autoForwardPortsFallback` sera traité comme s’il avait la valeur `0`.",
+ "remote.autoForwardPorts": "Quand cette option est activée, les nouveaux processus qui s'exécutent sont détectés, et les ports qu'ils écoutent sont réacheminés automatiquement. La désactivation de ce paramètre n’empêchera pas le transfert de tous les ports. Même lorsqu’elles sont désactivées, les extensions peuvent toujours faire en sorte que les ports soient transférés, et l’ouverture de certaines URL entraîne toujours le transfert des ports. Consultez également {0}.",
+ "remote.autoForwardPortsSource": "Définit la source à partir de laquelle les ports sont automatiquement transférés lorsque {0} est vrai. Quand {0} est false, {1} est utilisé pour rechercher des informations sur les ports qui ont déjà été transférés. Sur les machines distantes Windows et macOS, les options « processus » et « hybride » n'ont aucun effet et l’option « sortie » sera utilisée.",
+ "remote.autoForwardPortsSource.hybrid": "Les ports sont automatiquement réacheminés quand ils sont découverts via la lecture de la sortie du terminal et du débogage. Dans la mesure où tous les processus qui utilisent des ports ne s’affichent pas dans le terminal intégré ou la console de débogage, certains ports ne sont pas pris en compte. Les ports ne seront pas « transférés » en attendant que les processus qui écoutent sur ce port soient terminés.",
"remote.autoForwardPortsSource.output": "Les ports sont automatiquement réacheminés quand ils sont découverts via la lecture de la sortie du terminal et du débogage. Dans la mesure où tous les processus qui utilisent des ports ne s'affichent pas dans le terminal intégré ou la console de débogage, certains ports ne sont pas pris en compte. Le réacheminement des ports en fonction de la sortie n'est pas \"annulé\" tant que ces ports ne sont pas rechargés, ou qu'ils ne sont pas fermés par l'utilisateur dans la vue Ports.",
"remote.autoForwardPortsSource.process": "Les ports sont automatiquement réacheminés quand ils sont découverts par la surveillance des processus ayant démarré et incluant un port.",
+ "remote.defaultExtensionsIfInstalledLocally.invalidFormat": "L’identificateur d’extension doit être au format « publisher.name ».",
+ "remote.defaultExtensionsIfInstalledLocally.markdownDescription": "Liste des extensions à installer lors de la connexion à un emplacement distant lorsqu’elle est déjà installée localement.",
"remote.extensionKind": "Remplacez le type d'une extension. Les extensions 'ui' sont installées et exécutées sur la machine locale, alors que les extensions 'workspace' sont exécutées sur la machine distante. Quand vous remplacez le type par défaut d'une extension à l'aide de ce paramètre, vous spécifiez si cette extension doit être installée et activée localement ou à distance.",
+ "remote.forwardOnClick": "Contrôle si les URL locales avec un port sont transférées lorsqu’elles sont ouvertes à partir du terminal et de la console de débogage.",
"remote.localPortHost": "Spécifie le nom d’hôte local à utiliser pour le réacheminement du port.",
"remote.portsAttributes": "Définissez les propriétés appliquées en cas de réacheminement d’un numéro de port en particulier. Exemple :\r\n\r\n```\r\n\"3000\": {\r\n \"label\": \"Application\"\r\n},\r\n\"40000-55000\": {\r\n \"onAutoForward\": \"ignore\"\r\n},\r\n\".+\\\\/server.js\": {\r\n \"onAutoForward\": \"openPreview\"\r\n}\r\n```",
"remote.portsAttributes.defaults": "Définissez les propriétés par défaut qui sont appliquées à tous les ports qui n’obtiennent pas de propriétés à partir du paramètre {0}. Par exemple :\r\n\r\n« {0} »\r\n{\r\n « onAutoForward » : « ignorer »\r\n}\r\n« »",
@@ -7920,41 +13125,125 @@
"remote.portsAttributes.requireLocalPort": "Quand la valeur est définie sur « true », une boîte de dialogue modale s’affiche si le port local choisi n’est pas utilisé pour le réacheminement.",
"remote.portsAttributes.silent": "N'affiche aucune notification et n'effectue aucune action quand ce port est automatiquement réacheminé.",
"remote.restoreForwardedPorts": "Restaure les ports que vous avez réacheminés dans un espace de travail.",
- "remoteExtensionLog": "Serveur distant",
- "remotePtyHostLog": "Hôte Pty distant",
"triggerReconnect": "Connexion : déclencher la reconnexion",
"ui": "Extension de type interface utilisateur. Dans une fenêtre distante, ce type d'extension est activé seulement s'il est disponible sur la machine locale.",
"workspace": "Extension de type espace de travail. Dans une fenêtre distante, ce type d'extension est activé seulement s'il est disponible sur la machine distante."
},
- "vs/workbench/contrib/remote/electron-sandbox/remote.contribution": {
- "remote": "À distance",
- "remote.downloadExtensionsLocally": "Quand les extensions activées sont téléchargées localement et installées sur la machine distante."
+ "vs/workbench/contrib/remote/electron-browser/remote.contribution": {
+ "remote": "Distant",
+ "remote.actions.closeUnusedPorts": "Fermer les ports transférés inutilisés",
+ "remote.category": "Distant",
+ "remote.downloadExtensionsLocally": "Quand les extensions activées sont téléchargées localement et installées sur la machine distante.",
+ "wslFeatureInstalled": "Indique si la fonctionnalité WSL est installée sur la plateforme"
+ },
+ "vs/workbench/contrib/remoteCodingAgents/browser/remoteCodingAgents.contribution": {
+ "remoteCodingAgentsExtPoint": "Contribue aux intégrations de l’agent de codage à distance au widget de conversation.",
+ "remoteCodingAgentsExtPoint.command": "Identificateur de la commande à exécuter. La commande doit être déclarée dans la section « commands ».",
+ "remoteCodingAgentsExtPoint.description": "Description de l’agent distant à utiliser dans les menus et les info-bulles.",
+ "remoteCodingAgentsExtPoint.displayName": "Nom convivial de cet élément, utilisé pour l’affichage dans les menus.",
+ "remoteCodingAgentsExtPoint.followUpRegex": "La dernière occurrence du motif dans une conversation existante est envoyée à l’extension contributive pour faciliter les réponses de suivi.",
+ "remoteCodingAgentsExtPoint.id": "Identificateur unique de cet élément.",
+ "remoteCodingAgentsExtPoint.when": "Condition qui doit être true pour afficher cet élément"
+ },
+ "vs/workbench/contrib/remoteTunnel/electron-browser/remoteTunnel.contribution": {
+ "accountPreference.placeholder": "Se connecter à un compte pour activer l’accès à distance",
+ "action.copyToClipboard": "Copier le lien du navigateur vers le Presse-papiers",
+ "action.doNotShowAgain": "Ne plus afficher",
+ "action.showExtension": "Afficher l’extension",
+ "enable": "&&Activer",
+ "initialize.progress.title": "[Recherche d’un tunnel distant](commande :{0})",
+ "manage.placeholder": "Sélectionner une commande à appeler",
+ "manage.showLog": "Afficher le journal",
+ "manage.title.attached": "Accès au tunnel distant activé pour {0} (lancé en externe)",
+ "manage.title.off": "L’accès au tunnel à distance n’est pas activé",
+ "manage.title.orunning": "Accès au tunnel distant activé pour {0}",
+ "manage.tunnelName": "Modifier le nom du tunnel",
+ "others": "Autres",
+ "progress.turnOn.failed": "Impossible d’activer l’accès au tunnel distant. Pour plus d’informations, consultez le journal du service de tunnel distant.",
+ "progress.turnOn.final": "Vous pouvez désormais accéder à cet ordinateur n’importe où via le tunnel sécurisé [{0}](command:{4}). Pour vous connecter via une autre machine, utilisez le lien [{1}]({2}) généré ou utilisez l’extension [{6}]({7}) sur le Bureau ou sur le web. Vous pouvez [configure](command:{3}) ou [turn off](command:{5}) cet accès via le menu Comptes VS Code.",
+ "recommend.remoteExtension": "Le tunnel «{0}» est disponible pour l’accès à distance. Vous pouvez utiliser l’extension {1} pour vous y connecter.",
+ "remoteTunnel.actions.configure": "Configurer le nom du tunnel...",
+ "remoteTunnel.actions.copyToClipboard": "Copier l’URI du navigateur dans le Presse-papiers",
+ "remoteTunnel.actions.learnMore": "Premiers pas avec les tunnels",
+ "remoteTunnel.actions.manage.connecting": "L’accès au tunnel distant est en cours de connexion",
+ "remoteTunnel.actions.manage.on.v2": "L’accès au tunnel distant est activé",
+ "remoteTunnel.actions.showLog": "Afficher le journal du service tunnel distant",
+ "remoteTunnel.actions.turnOff": "Désactiver l’accès au tunnel distant...",
+ "remoteTunnel.actions.turnOn": "Activer l’accès au tunnel distant...",
+ "remoteTunnel.category": "Tunnels distants",
+ "remoteTunnel.serviceInstallFailed": "Échec de l’installation en tant que service, et nous revenons à l’exécution du tunnel pour cette session. Pour plus d’informations, consultez le [journal des erreurs](command:{0}).",
+ "remoteTunnel.turnOff.confirm": "Voulez-vous désactiver l’accès au tunnel distant ?",
+ "remoteTunnel.turnOffAttached.confirm": "Voulez-vous désactiver l’accès au tunnel distant ? Cela arrêtera également le service qui a été démarré en externe.",
+ "remoteTunnelAccess.machineName": "Nom sous lequel l’accès au tunnel distant est inscrit. S’il n’est pas défini, le nom d’hôte est utilisé.",
+ "remoteTunnelAccess.machineNameRegex": "Le nom ne doit être composé que de lettres, de chiffres, de traits de soulignement et de tirets. Il ne doit pas commencer par un tiret.",
+ "remoteTunnelAccess.preventSleep": "Empêchez cet ordinateur de se connecter lorsque l’accès au tunnel distant est activé.",
+ "sign in using account": "Vous connecter à {0}",
+ "signed in": "Connecté",
+ "startTunnel.progress.title": "[Démarrage du tunnel distant](commande :{0})",
+ "tunnel.enable.placeholder": "Sélectionnez la façon dont vous souhaitez activer l’accès",
+ "tunnel.enable.service": "Installer en tant que service",
+ "tunnel.enable.service.description": "Exécuter chaque fois que vous êtes connecté",
+ "tunnel.enable.session": "Activer pour cette session",
+ "tunnel.enable.session.description": "Exécuter chaque fois que {0} est ouvert",
+ "tunnel.preview": "Les tunnels distants sont actuellement en préversion. Signalez les problèmes éventuels à l’aide de la commande « Aide : signaler un problème »."
+ },
+ "vs/workbench/contrib/replNotebook/browser/repl.contribution": {
+ "repl.execute": "Exécuter l’entrée REPL",
+ "repl.focusLastReplOutput": "Concentrer l'exécution la plus récente de la REPL",
+ "repl.input.focus": "Focus sur l’éditeur d’entrée"
+ },
+ "vs/workbench/contrib/replNotebook/browser/replEditor": {
+ "replEditorInput": "Entrée REPL"
+ },
+ "vs/workbench/contrib/replNotebook/browser/replEditorAccessibilityHelp": {
+ "replEditor.accessibilityView": "Exécutez la commande Open Accessbility View{0} tout en naviguant dans l’historique pour obtenir une vue accessible de la sortie de l’élément.",
+ "replEditor.autoFocusRepl": "Le paramètre « accessibility.replEditor.autoFocusReplExecution » contrôle si le focus se déplace automatiquement vers la bibliothèque REPL après l’exécution du code.",
+ "replEditor.cellNavigation": "La commande Quit Edit{0} permet de déplacer le curseur vers le conteneur de cellules, où les flèches vers le haut et vers le bas permettent également de déplacer le curseur entre les cellules de l'historique.",
+ "replEditor.configReadExecution": "Le paramètre « accessibility.replEditor.readLastExecutionOutput » contrôle si la sortie sera automatiquement lue à la fin de l’exécution.",
+ "replEditor.execute": "La commande Execute{0} évaluera l’expression dans la zone d’entrée.",
+ "replEditor.focusCellEditor": "La commande Edit Cell{0} déplace le focus vers l’éditeur en lecture seule pour l’entrée de la cellule.",
+ "replEditor.focusInOutput": "La commande Focus sur la sortie{0} définit le focus sur la sortie lorsqu’elle a le focus sur un élément déjà exécuté.",
+ "replEditor.focusLastItemAdded": "La commande Focus Last executed{0} déplace le focus vers le dernier élément exécuté dans l’historique REPL.",
+ "replEditor.focusReplInput": "La commande Focus Input Editor{0} ramènera le focus sur cet éditeur.",
+ "replEditor.focusReplInputFromHistory": "La commande Rédacteur d’entrée Focus{0} déplacera le focus vers la zone d’entrée REPL.",
+ "replEditor.historyOverview": "Vous êtes dans un historique REPL qui est une liste de cellules qui ont été exécutées dans la bibliothèque REPL. Chaque cellule a une entrée, une sortie et le conteneur de cellules.",
+ "replEditor.inputAccessibilityView": "Lorsque vous exécutez la commande Open Accessbility View{0} à partir de cette zone d’entrée, la sortie de la dernière exécution s’affiche dans la vue d’accessibilité.",
+ "replEditor.inputOverview": "Vous êtes dans une zone d’entrée de l’éditeur REPL qui accepte le code à exécuter dans la bibliothèque REPL."
+ },
+ "vs/workbench/contrib/replNotebook/browser/replEditorInput": {
+ "replEditorLabelIcon": "Icône de l’étiquette de l’éditeur REPL."
},
"vs/workbench/contrib/sash/browser/sash.contribution": {
"sashHoverDelay": "Contrôle le délai de rétroaction du pointage (en millisecondes) de la zone de glissement entre les vues/éditeurs.",
"sashSize": "Contrôle la taille en pixels de la zone de commentaires de la zone de glissement entre les vues/éditeurs. Affectez-lui une valeur plus élevée si vous pensez qu'il est difficile de redimensionner les vues à l'aide de la souris."
},
"vs/workbench/contrib/scm/browser/activity": {
+ "scmActiveResourceHasChanges": "Indique si la ressource active a des modifications",
+ "scmActiveResourceRepository": "Référentiel de la ressource active",
"scmPendingChangesBadge": "{0} changements en attente",
- "status.scm": "Contrôle de code source"
+ "status.scm": "Contrôle de code source",
+ "status.scm.provider": "Fournisseur de contrôle de code source"
},
- "vs/workbench/contrib/scm/browser/dirtydiffDecorator": {
- "change": "{0} sur {1} modification",
- "changes": "{0} sur {1} modifications",
- "editorGutterAddedBackground": "Couleur d'arrière-plan de la reliure de l'éditeur pour les lignes ajoutées.",
- "editorGutterDeletedBackground": "Couleur d'arrière-plan de la reliure de l'éditeur pour les lignes supprimées.",
- "editorGutterModifiedBackground": "Couleur d'arrière-plan de la reliure de l'éditeur pour les lignes modifiées.",
+ "vs/workbench/contrib/scm/browser/menus": {
+ "miShare": "Partager"
+ },
+ "vs/workbench/contrib/scm/browser/quickDiffDecorator": {
+ "diffAdded": "Lignes ajoutées",
+ "diffDeleted": "Lignes supprimées",
+ "diffModified": "Lignes modifiées"
+ },
+ "vs/workbench/contrib/scm/browser/quickDiffWidget": {
+ "change": "{0} - {1} de {2} modification",
+ "changes": "{0} - {1} de {2} modifications",
"label.close": "Fermer",
"miGotoNextChange": "&&Changement suivant",
"miGotoPreviousChange": "&&Changement précédent",
- "minimapGutterAddedBackground": "Couleur d'arrière-plan de la marge de minimap pour les lignes ajoutées.",
- "minimapGutterDeletedBackground": "Couleur d'arrière-plan de la marge de minimap pour les lignes supprimées.",
- "minimapGutterModifiedBackground": "Couleur d'arrière-plan de la marge de minimap pour les lignes modifiées.",
"move to next change": "Accéder à la modification suivante",
"move to previous change": "Accéder à la modification précédente",
- "overviewRulerAddedForeground": "Couleur du marqueur de la règle d'aperçu pour le contenu ajouté.",
- "overviewRulerDeletedForeground": "Couleur du marqueur de la règle d'aperçu pour le contenu supprimé.",
- "overviewRulerModifiedForeground": "Couleur du marqueur de la règle d'aperçu pour le contenu modifié.",
+ "multiChange": "{0} sur {1} modification",
+ "multiChanges": "{0} sur {1} modifications",
+ "quickDiff.base.switch": "Changer de base de différences rapides",
+ "remotes": "Changer de base de différences rapides",
"show next change": "Voir la modification suivante",
"show previous change": "Afficher le changement précédent"
},
@@ -7970,16 +13259,22 @@
"diffGutterWidth": "Contrôle la largeur (px) des décorations de différenciation dans la marge (ajouts et modifications).",
"inputFontFamily": "Contrôle la police du message d'entrée. Utilisez 'default' pour la famille de polices de l'interface utilisateur du plan de travail, 'editor' pour la valeur de '#editor.fontFamily#' ou une famille de polices personnalisée.",
"inputFontSize": "Contrôle la taille de police du message d'entrée en pixels.",
+ "inputMaxLines": "Contrôle le nombre maximum de lignes jusqu'à laquelle l'entrée s'agrandira automatiquement.",
+ "inputMinLines": "Contrôle le nombre minimum de lignes depuis lesquelles l’entrée s’agrandira automatiquement.",
"manageWorkspaceTrustAction": "Gérer l’approbation d’espace de travail",
"miViewSCM": "&&Contrôle de code source",
+ "no history items": "Le fournisseur de contrôle de code source sélectionné n’a pas d’éléments d’historique de contrôle de code source.",
"no open repo": "Aucun fournisseur de contrôle de code source inscrit.",
- "no open repo in an untrusted workspace": "Aucun des fournisseurs de contrôle de code source enregistrés ne fonctionne en mode restreint.",
- "open in terminal": "Ouvrir dans Terminal",
- "providersVisible": "Contrôle le nombre de dépôts visibles dans la section Dépôts de contrôle de code source. Définissez la valeur '0' pour redimensionner manuellement la vue.",
+ "no open repo in an untrusted workspace": "Aucun des fournisseurs de contrôle de code source enregistrés ne fonctionne en mode Restreint.",
+ "open in external terminal": "Ouvrir dans un terminal externe",
+ "open in integrated terminal": "Ouvrir dans le terminal intégré",
+ "providersVisible": "Contrôle le nombre de dépôts visibles dans la section Dépôts de contrôle de code source. Définissez la valeur 0 pour redimensionner manuellement la vue.",
+ "quickDiffDecoration": "Décorations Diff",
"repositoriesSortOrder": "Contrôle l’ordre de tri des dépôts dans l’affichage des référentiels de contrôle de code source.",
"scm accept": "Contrôle de code source : accepter l’entrée",
"scm view next commit": "Contrôle de code source : afficher la validation suivante",
"scm view previous commit": "Contrôle de code source : afficher la validation précédente",
+ "scm.compactFolders": "Contrôle si la vue Contrôle de source doit restituer les dossiers sous une forme compacte. Sous cette forme, les dossiers enfant sont compressés individuellement dans un élément d’arborescence combiné.",
"scm.countBadge": "Contrôle le badge de comptage sur l'icône Contrôle de code source de la barre d'activités.",
"scm.countBadge.all": "Affichez la somme de tous les badges de comptage de fournisseurs de contrôle de code source.",
"scm.countBadge.focused": "Affichez le badge de compte du fournisseur de commande de source ciblé.",
@@ -7997,7 +13292,7 @@
"scm.diffDecorations.none": "N'affichez pas les décorations de différence.",
"scm.diffDecorations.overviewRuler": "Affichez les décorations de différence seulement dans la règle d'aperçu.",
"scm.diffDecorationsGutterAction": "Contrôle le comportement des décorations de la gouttière des différences du contrôle de code source.",
- "scm.diffDecorationsGutterAction.diff": "Affiche l'aperçu des différences de manière incluse en cas de clic.",
+ "scm.diffDecorationsGutterAction.diff": "Affiche l’aperçu des différences de manière incluse en cas de clic.",
"scm.diffDecorationsGutterAction.none": "Ne fait rien.",
"scm.diffDecorationsGutterVisibility": "Contrôle la visibilité du décorateur de diff du contrôle de code source dans la reliure.",
"scm.diffDecorationsGutterVisibility.always": "Affichez tout le temps le décorateur de diff dans la reliure.",
@@ -8005,32 +13300,138 @@
"scm.diffDecorationsIgnoreTrimWhitespace.false": "Ne pas ignorer les espaces de début et de fin",
"scm.diffDecorationsIgnoreTrimWhitespace.inherit": "Inherit from `diffEditor.ignoreTrimWhitespace`.",
"scm.diffDecorationsIgnoreTrimWhitespace.true": "Ignorer les espaces de début et de fin.",
- "scm.providerCountBadge": "Contrôle les badges de comptage sur les en-têtes de fournisseur de contrôle de code source. Ces en-têtes apparaissent uniquement quand il y a plusieurs fournisseurs.",
+ "scm.graph.badges": "Contrôle les badges affichés dans la vue Graphique du contrôle de code source. Les badges sont affichés sur le côté droit du graphique indiquant les noms des groupes d’éléments d’historique.",
+ "scm.graph.badges.all": "Affichez les badges de tous les groupes d’éléments d’historique dans la vue Graphique du contrôle de code source.",
+ "scm.graph.badges.filter": "Affichez uniquement les badges des groupes d’éléments d’historique utilisés comme filtre dans la vue Graphique du contrôle de code source.",
+ "scm.graph.pageOnScroll": "Contrôle si la vue Graphique du contrôle de code source charge la prochaine page d’éléments lorsque vous faites défiler jusqu’à la fin de la liste.",
+ "scm.graph.pageSize": "Nombre d’éléments à afficher dans la vue Graphique du contrôle de code source par défaut et lors du chargement d’autres éléments.",
+ "scm.graph.showIncomingChanges": "Contrôle s’il faut afficher les modifications entrantes dans la vue Graphique du contrôle de code source.",
+ "scm.graph.showOutgoingChanges": "Contrôle s’il faut afficher les modifications sortantes dans la vue Graphique du contrôle de code source.",
+ "scm.providerCountBadge": "Contrôle le nombre de badges sur les en-têtes du fournisseur de contrôle de code source. Ces en-têtes apparaissent dans la vue Contrôle de code source lorsqu’il existe plusieurs fournisseurs ou lorsque le paramètre {0} est activé, et dans la vue Référentiels de contrôle de code source.",
"scm.providerCountBadge.auto": "Affichez uniquement le badge de comptage de fournisseurs de contrôle de code source lorsque la valeur est différente de zéro.",
"scm.providerCountBadge.hidden": "Masquez les badges de comptage de fournisseurs de contrôle de code source.",
"scm.providerCountBadge.visible": "Affichez les badges de comptage de fournisseurs de contrôle de code source.",
+ "scm.repositories.explorer": "Contrôle l’affichage des artefacts de dépôt dans la vue Référentiels de contrôle de code source. Cette fonctionnalité est expérimentale et ne fonctionne que lorsque {0} est défini sur « {1} ».",
+ "scm.repositories.selectionMode": "Contrôle le mode de sélection des référentiels dans la vue Référentiels de contrôle de source.",
+ "scm.repositories.selectionMode.multiple": "Il est possible de sélectionner plusieurs dépôts simultanément.",
+ "scm.repositories.selectionMode.single": "Vous ne pouvez sélectionner qu’un seul dépôt à la fois.",
"scm.repositoriesSortOrder.discoveryTime": "Les référentiels dans l’affichage Référentiels de contrôle de code source sont triés par heure de découverte. Les référentiels dans l’affichage Contrôle de code source sont triés dans l’ordre dans lequel ils ont été sélectionnés.",
"scm.repositoriesSortOrder.name": "Les référentiels dans les référentiels de contrôle de code source et les affichages de contrôle de code source sont triés par nom de référentiel.",
"scm.repositoriesSortOrder.path": "Les référentiels dans les référentiels de contrôle de code source et les affichages de contrôle de code source sont triés par chemin d'accès de référentiel.",
+ "scm.workingSets.default": "Contrôle la plage de travail par défaut à utiliser lors de la commutation vers un groupe d’éléments d’historique de contrôle de code source qui n’a pas de plage de travail.",
+ "scm.workingSets.default.current": "Utilisez la plage de travail actuelle lors de la commutation vers un groupe d’éléments d’historique de contrôle de code source qui n’a pas de plage de travail.",
+ "scm.workingSets.default.empty": "Utilisez un jeu de travail vide lors du basculement vers un groupe d’éléments d’historique de contrôle de code source qui n’a pas de jeu de travail.",
+ "scm.workingSets.enabled": "Contrôle s’il faut stocker les plages de travail de l’éditeur lors du basculement entre les groupes d’éléments d’historique de contrôle de code source.",
+ "scmActiveRepositoryAutoDescription": "Le référentiel actif est mis à jour en fonction de l’éditeur actif",
+ "scmActiveRepositoryPlaceHolder": "Sélectionnez le référentiel à afficher, tapez pour filtrer tous les référentiels",
+ "scmChanges": "Modifications",
"scmConfigurationTitle": "Contrôle de code source",
+ "scmEditorResolveMergeConflict": "Résolvez les conflits avec l’IA",
+ "scmGraph": "Graphique",
+ "scmRepositories": "Référentiels",
"showActionButton": "Contrôle si un bouton d’action peut être affiché dans l’affichage Contrôle de code source.",
+ "showInputActionButton": "Contrôle si un bouton d’action peut être affiché dans l’entrée Contrôle de code source.",
"source control": "Contrôle de code source",
+ "source control graph": "Graphique du contrôle de code source",
"source control repositories": "Dépôts de contrôle de code source",
+ "source control view": "Contrôle de code source",
"sourceControlViewIcon": "Icône de vue du contrôle de code source."
},
+ "vs/workbench/contrib/scm/browser/scmAccessibilityHelp": {
+ "disabled": "désactivée",
+ "enabled": "activée",
+ "scm-graph-msg1": "Utilisez la commande « Contrôle de code source : Focus sur l’affichage graphique du contrôle de code source » pour ouvrir la vue Graphique du contrôle de code source.",
+ "scm-graph-msg2": "L’affichage Graphique du contrôle de code source affiche un historique des graphiques du dépôt. Si l’espace de travail contient plusieurs référentiels, il répertorie les éléments d’historique du dépôt actif.",
+ "scm-graph-msg3": "Une fois l’affichage Graphique du contrôle de code source ouvert, vous pouvez :",
+ "scm-graph-msg4": " - Utilisez les flèches haut/bas pour parcourir la liste des éléments d’historique.",
+ "scm-graph-msg5": "- Utilisez la touche Espace pour ouvrir les détails de l’élément d’historique dans l’éditeur de diff de fichiers multiples.",
+ "scm-msg1": "Utilisez la commande « Contrôle de code source : Focus sur le mode Contrôle de code source » pour ouvrir la vue Contrôle de code source.",
+ "scm-msg2": "La vue Contrôle de code source affiche les groupes de ressources et les ressources du dépôt. Si l’espace de travail contient plusieurs dépôts, il répertorie les groupes de ressources et les ressources des dépôts sélectionnés dans la vue Référentiels de contrôle de code source.",
+ "scm-msg3": "Une fois la vue contrôle de code source ouverte, vous pouvez :",
+ "scm-msg4": " - Utilisez les flèches haut/bas pour parcourir la liste des dépôts, des groupes de ressources et des ressources.",
+ "scm-msg5": " - Utilisez la touche Espace pour développer ou réduire un groupe de ressources.",
+ "scm-repositories-msg1": "Utilisez la commande « Contrôle de code source : Focus sur la vue Référentiels de contrôle de code source » pour ouvrir la vue Référentiels de contrôle de code source.",
+ "scm-repositories-msg2": "La vue Référentiels de contrôle de code source répertorie tous les dépôts de l’espace de travail et ne s’affiche que lorsque l’espace de travail contient plusieurs référentiels.",
+ "scm-repositories-msg3": "Une fois la vue Référentiels de contrôle de code source ouverte, vous pouvez :",
+ "scm-repositories-msg4": " - Utilisez les flèches haut/bas pour parcourir la liste des dépôts.",
+ "scm-repositories-msg5": " - Utilisez les clés Entrée ou Espace pour sélectionner un dépôt.",
+ "scm-repositories-msg6": " - Utilisez des clés Maj + Haut/Bas pour sélectionner plusieurs dépôts.",
+ "state-msg1": "Dépôts visibles : {0}",
+ "state-msg2": "Référentiel : {0}",
+ "state-msg3": "Référence de l’élément d’historique : {0}",
+ "state-msg4": "Message de validation : {0}",
+ "state-msg5": "Bouton d’action : {0}, {1}",
+ "state-msg6": "Groupes de ressources : {0}"
+ },
+ "vs/workbench/contrib/scm/browser/scmHistory": {
+ "incomingChanges": "Modifications entrantes",
+ "outgoingChanges": "Modifications sortantes",
+ "scmGraph.HistoryItemHoverAdditionsForeground": "Couleur de premier plan des ajouts d’éléments de l’historique au survol.",
+ "scmGraph.HistoryItemHoverDeletionsForeground": "Couleur de premier plan des suppressions d’éléments de l’historique au survol.",
+ "scmGraphForeground1": "Couleur de premier plan du graphique de contrôle de code source (1).",
+ "scmGraphForeground2": "Couleur de premier plan du graphique de contrôle de code source (2).",
+ "scmGraphForeground3": "Couleur de premier plan du graphique de contrôle de code source (3).",
+ "scmGraphForeground4": "Couleur de premier plan du graphique de contrôle de code source (4).",
+ "scmGraphForeground5": "Couleur de premier plan du graphique de contrôle de code source (5).",
+ "scmGraphHistoryItemBaseRefColor": "Couleur de référence de base de l’élément d’historique.",
+ "scmGraphHistoryItemHoverDefaultLabelBackground": "Couleur d’arrière-plan de l’étiquette par défaut de survol de l’élément d’historique.",
+ "scmGraphHistoryItemHoverDefaultLabelForeground": "Couleur de premier plan par défaut de l’étiquette de pointage d’éléments d’historique.",
+ "scmGraphHistoryItemHoverLabelForeground": "Couleur de premier plan de l’étiquette de pointage d’éléments d’historique.",
+ "scmGraphHistoryItemRefColor": "Couleur de référence de l’élément d’historique.",
+ "scmGraphHistoryItemRemoteRefColor": "Couleur de référence hors programme de l’élément d’historique."
+ },
+ "vs/workbench/contrib/scm/browser/scmHistoryChatContext": {
+ "chat.action.scmHistoryItemContext": "Ajouter à la conversation",
+ "chat.action.scmHistoryItemSummarize": "Expliquez les changements",
+ "chatContext.scmHistoryItems": "Contrôle de code source...",
+ "chatContext.scmHistoryItems.placeholder": "Sélectionnez un changement",
+ "files": "Fichier(s)"
+ },
+ "vs/workbench/contrib/scm/browser/scmHistoryViewPane": {
+ "activeRepository": "Afficher le graphique de contrôle de code source pour le référentiel actif",
+ "all": "Tous",
+ "allHistoryItemRefs": "Toutes les références d’éléments d’historique",
+ "auto": "Automatique",
+ "currentHistoryItemRef": "Référence(s) de l'élément d’historique actuel",
+ "goToCurrentHistoryItem": "Accédez à l’élément d’historique actuel",
+ "incomingChanges": "Modifications entrantes",
+ "items": "{0} éléments",
+ "loadMore": "{0} Charger plus...",
+ "openChanges": "Ouvrir les modifications",
+ "openFile": "Ouvrir un fichier",
+ "outgoingChanges": "Modifications sortantes",
+ "referencePicker": "Sélecteur de référence d’élément d’historique",
+ "refreshGraph": "Actualiser",
+ "repositoryPicker": "Sélecteur de dépôts",
+ "scm history": "Historique du contrôle de code source",
+ "scmGraphHistoryItemRef": "Sélectionnez une ou plusieurs références d’élément d’historique à afficher, tapez pour filtrer",
+ "scmGraphRepository": "Sélectionnez le dépôt à afficher, tapez pour filtrer tous les dépôts",
+ "scmGraphViewOutdated": "Actualisez le graphique à l’aide de l’action d’actualisation ($(refresh)).",
+ "setListViewMode": "Afficher sous forme de liste",
+ "setTreeViewMode": "Afficher sous forme d’arborescence"
+ },
"vs/workbench/contrib/scm/browser/scmRepositoriesViewPane": {
"scm": "Dépôts de contrôle de code source"
},
"vs/workbench/contrib/scm/browser/scmViewPane": {
"collapse all": "Réduire tous les dépôts",
"expand all": "Développer tous les dépôts",
- "input": "Entrée du contrôle de code source",
+ "label.close": "Fermer",
"repositories": "Dépôts",
+ "repositoryMultiSelectionMode": "Sélectionner plusieurs dépôts",
+ "repositorySingleSelectionMode": "Sélectionner un seul dépôt",
"repositorySortByDiscoveryTime": "Trier par heure de découverte",
"repositorySortByName": "Trier par nom",
"repositorySortByPath": "Trier par chemin",
"scm": "Gestion du contrôle de code source",
- "scm.providerBorder": "Bordure de séparation du fournisseur SCM (gestion du contrôle de code source).",
+ "scmInput": "Entrée du contrôle de code source",
+ "scmInput.accessibilityHelp": "{0}, utilisez {1} pour ouvrir l’aide sur l’accessibilité du contrôle de code source.",
+ "scmInput.accessibilityHelpNoKb": "{0}, Exécutez la commande Ouvrir l'aide à l'accessibilité pour plus d'informations.",
+ "scmInputCancelAction": "Annuler",
+ "scmInputGenerateCommitMessage": "Génère un message de validation",
+ "scmInputMoreActions": "Plus d’actions...",
+ "scmInputRow.accessibilityHelp": "Entrée de contrôle de code source. Utilisez {0} pour ouvrir l’aide sur l’accessibilité du contrôle de code source.",
+ "scmInputRow.accessibilityHelpNoKb": "Entrée du contrôle de code source, Exécutez la commande Ouvrir l’aide à l’accessibilité pour plus d’informations.",
"setListViewMode": "Voir sous forme de liste",
"setTreeViewMode": "Voir sous forme d'arborescence",
"sortAction": "Voir et trier",
@@ -8038,14 +13439,41 @@
"sortChangesByPath": "Trier les modifications par chemin d’accès",
"sortChangesByStatus": "Trier les modifications par état"
},
- "vs/workbench/contrib/scm/browser/scmViewPaneContainer": {
- "source control": "Contrôle de code source"
+ "vs/workbench/contrib/scm/browser/scmViewService": {
+ "auto": "Automatique"
+ },
+ "vs/workbench/contrib/scm/common/quickDiff": {
+ "editorGutterAddedBackground": "Couleur d'arrière-plan de la reliure de l'éditeur pour les lignes ajoutées.",
+ "editorGutterAddedSecondaryBackground": "Couleur d'arrière-plan secondaire de la reliure de l'éditeur pour les lignes ajoutées.",
+ "editorGutterDeletedBackground": "Couleur d'arrière-plan de la reliure de l'éditeur pour les lignes supprimées.",
+ "editorGutterDeletedSecondaryBackground": "Couleur d'arrière-plan secondaire de la reliure de l'éditeur pour les lignes supprimées.",
+ "editorGutterItemBackground": "Couleur de décoration de la reliure de l’éditeur pour l’arrière-plan de l’élément de reliure. Cette couleur doit être opaque.",
+ "editorGutterItemGlyphForeground": "Couleur de décoration de la reliure de l’éditeur pour les glyphes d’élément de reliure.",
+ "editorGutterModifiedBackground": "Couleur d'arrière-plan de la reliure de l'éditeur pour les lignes modifiées.",
+ "editorGutterModifiedSecondaryBackground": "Couleur d'arrière-plan secondaire de la reliure de l'éditeur pour les lignes modifiées.",
+ "minimapGutterAddedBackground": "Couleur d'arrière-plan de la marge de minimap pour les lignes ajoutées.",
+ "minimapGutterDeletedBackground": "Couleur d'arrière-plan de la marge de minimap pour les lignes supprimées.",
+ "minimapGutterModifiedBackground": "Couleur d'arrière-plan de la marge de minimap pour les lignes modifiées.",
+ "overviewRulerAddedForeground": "Couleur du marqueur de la règle d'aperçu pour le contenu ajouté.",
+ "overviewRulerDeletedForeground": "Couleur du marqueur de la règle d'aperçu pour le contenu supprimé.",
+ "overviewRulerModifiedForeground": "Couleur du marqueur de la règle d'aperçu pour le contenu modifié."
+ },
+ "vs/workbench/contrib/scrollLocking/browser/scrollLocking": {
+ "holdLockedScrolling": "Maintenir le défilement verrouillé dans les éditeurs",
+ "miHoldLockedScrolling": "Défilement verrouillé",
+ "miToggleLockedScrolling": "Défilement verrouillé",
+ "mouseLockScrollingEnabled": "Verrouillage du défilement activé",
+ "mouseScrolllingLocked": "Défilement verrouillé",
+ "synchronizeScrolling": "Synchroniser le défilement dans les éditeurs",
+ "toggleLockedScrolling": "Activer/Désactiver le défilement verrouillé dans les éditeurs"
},
"vs/workbench/contrib/search/browser/anythingQuickAccess": {
+ "chat": "Ouvrir la conversation rapide",
"closeEditor": "Supprimer des récemment ouverts",
"fileAndSymbolResultsSeparator": "Résultats des fichiers et des symboles",
"filePickAriaLabelDirty": "{0} ayant des changements non enregistrés",
"fileResultsSeparator": "fichier de résultats",
+ "helpPickAriaLabel": "{0}, {1}",
"noAnythingResults": "Aucun résultat correspondant",
"openToBottom": "Ouvrir en bas",
"openToSide": "Ouvrir sur le côté",
@@ -8056,68 +13484,74 @@
"onlySearchInOpenEditors": "Rechercher uniquement dans les éditeurs ouverts",
"useExcludesAndIgnoreFilesDescription": "Utiliser les paramètres d'exclusion et ignorer les fichiers"
},
+ "vs/workbench/contrib/search/browser/quickTextSearch/textSearchQuickAccess": {
+ "QuickSearchMore": "Plus",
+ "QuickSearchOpenInFile": "Ouvrir un fichier",
+ "QuickSearchSeeMoreFiles": "Voir plus de fichiers",
+ "enterSearchTerm": "Entrez un terme à rechercher dans tous vos fichiers.",
+ "goToSearch": "Ouvrir en mode Recherche",
+ "noAnythingResults": "Aucun résultat correspondant",
+ "showMore": "Ouvrir en mode Recherche"
+ },
"vs/workbench/contrib/search/browser/replaceService": {
"fileReplaceChanges": "{0} ↔ {1} (Replace Preview)",
"searchReplace.source": "Rechercher et remplacer"
},
"vs/workbench/contrib/search/browser/search.contribution": {
- "CancelSearchAction.label": "Annuler la recherche",
- "ClearSearchResultsAction.label": "Effacer les résultats de la recherche",
- "CollapseDeepestExpandedLevelAction.label": "Réduire tout",
- "ExpandAllAction.label": "Tout développer",
- "RefreshAction.label": "Actualiser",
"anythingQuickAccess": "Accéder au fichier",
"anythingQuickAccessPlaceholder": "Rechercher des fichiers par nom (ajouter {0} pour accéder à la ligne ou {1} pour accéder au symbole)",
- "clearSearchHistoryLabel": "Effacer l'historique de recherche",
- "copyAllLabel": "Copier tout",
- "copyMatchLabel": "Copier",
- "copyPathLabel": "Copier le chemin",
- "exclude": "Configurez des [modèles glob](https://code.visualstudio.com/docs/editor/codebasics#_advanced-search-options) pour exclure des fichiers et des dossiers dans les recherches en texte intégral et le mode Quick Open. Hérite tous les modèles glob du paramètre '#files.exclude#'.",
+ "exclude": "Configurez [modèles glob](https://code.visualstudio.com/docs/editor/codebasics#_advanced-search-options) pour exclure des fichiers et des dossiers dans les recherches en texte intégral et les recherches de fichiers dans l’ouverture rapide. Pour exclure des fichiers de la liste récemment ouverte dans quick open, les modèles doivent être absolus (par exemple `**/node_modules/**`). Hérite de tous les modèles Glob du paramètre `#files.exclude#`.",
"exclude.boolean": "Modèle Glob auquel les chemins de fichiers doivent correspondre. Affectez la valeur true ou false pour activer ou désactiver le modèle.",
"exclude.when": "Vérification supplémentaire sur les frères d’un fichier correspondant. Utilisez \\$(basename) comme variable pour le nom de fichier correspondant.",
"filterSortOrder": "Contrôle l'ordre de tri de l'historique de l'éditeur en mode Quick Open pendant le filtrage.",
"filterSortOrder.default": "Les entrées d'historique sont triées par pertinence en fonction de la valeur de filtre utilisée. Les entrées les plus pertinentes apparaissent en premier.",
"filterSortOrder.recency": "Les entrées d'historique sont triées par date. Les dernières entrées ouvertes sont affichées en premier.",
- "findInFiles": "Chercher dans les fichiers",
- "findInFiles.args": "Ensemble d'options pour la recherche",
- "findInFiles.description": "Ouvrir une recherche d’espace de travail",
- "findInFolder": "Rechercher dans le dossier...",
- "findInWorkspace": "Trouver dans l’espace de travail...",
- "focusSearchListCommandLabel": "Focus sur la liste",
"maintainFileSearchCacheDeprecated": "Le cache de recherche est conservé dans l’hôte d’extension qui ne s’arrête jamais. Ce paramètre n’est donc plus nécessaire.",
- "miFindInFiles": "Rechercher dans les f&&ichiers",
- "miGotoSymbolInWorkspace": "Atteindre le symbole dans l'&&espace de travail...",
- "miReplaceInFiles": "Remplacer dans les f&&ichiers",
"miViewSearch": "&&Rechercher",
- "name": "Recherche",
- "revealInSideBar": "Afficher en mode Explorateur",
+ "scm.defaultViewMode.list": "Affiche les résultats de la recherche sous forme de liste.",
+ "scm.defaultViewMode.tree": "Affiche les résultats de la recherche sous forme d’arborescence.",
"search": "Recherche",
- "search.actionsPosition": "Contrôle le positionnement de la barre d'action sur des lignes dans la vue de recherche.",
- "search.actionsPositionAuto": "Positionnez la barre d'action à droite quand la vue de recherche est étroite et immédiatement après le contenu quand la vue de recherche est large.",
+ "search.actionsPosition": "Contrôle le positionnement de la barre d’action sur des lignes dans le mode Recherche.",
+ "search.actionsPositionAuto": "Positionnez la barre d'action à droite quand le mode Recherche est étroit et immédiatement après le contenu quand le mode Recherche est large.",
"search.actionsPositionRight": "Positionnez toujours la barre d'action à droite.",
"search.collapseAllResults": "Contrôle si les résultats de recherche seront réduits ou développés.",
"search.collapseResults.auto": "Les fichiers avec moins de 10 résultats sont développés. Les autres sont réduits.",
+ "search.decorations.badges": "Contrôle si les décorations de fichier de recherche doivent utiliser des badges.",
+ "search.decorations.colors": "Contrôle si les décorations de fichier de recherche doivent utiliser des couleurs.",
+ "search.defaultViewMode": "Contrôle le mode d’affichage des résultats de recherche par défaut.",
+ "search.experimental.closedNotebookResults": "Afficher les résultats du contenu enrichi de l’éditeur de notebooks pour les blocs-notes fermés. Actualisez vos résultats de recherche après avoir modifié ce paramètre.",
"search.followSymlinks": "Contrôle s'il faut suivre les symlinks pendant la recherche.",
- "search.globalFindClipboard": "Contrôle si la vue de recherche doit lire ou modifier le presse-papiers partagé sur macOS.",
+ "search.globalFindClipboard": "Contrôle si le mode Recherche doit lire ou modifier le Presse-papiers de recherche partagé sur macOS.",
"search.location": "Contrôle si la recherche s’affiche comme une vue dans la barre latérale ou comme un panneau dans la zone de panneaux pour plus d'espace horizontal.",
"search.location.deprecationMessage": "Ce paramètre est déprécié. Faites plutôt glisser l’icône de recherche vers un nouvel emplacement.",
"search.maintainFileSearchCache": "Si activé, le processus searchService est maintenu actif au lieu d'être arrêté au bout d'une heure d'inactivité. Ce paramètre conserve le cache de recherche de fichier en mémoire.",
"search.maxResults": "Contrôle le nombre maximal de résultats de la recherche, ce paramètre peut être défini sur «null» (vide) pour obtenir des résultats illimités.",
- "search.mode": "Contrôle où se produisent les nouvelles opérations « Rechercher dans les fichiers » et « Rechercher dans le dossier » : dans la vue de recherche ou dans un éditeur de recherche",
+ "search.mode": "Contrôle où se produisent les nouvelles opérations `Rechercher dans les fichiers` et `Rechercher dans le dossier` : dans le mode Recherche ou dans un éditeur de recherche.",
"search.mode.newEditor": "Effectue la recherche dans un nouvel éditeur de recherche.",
"search.mode.reuseEditor": "Effectue la recherche dans un éditeur de recherche existant, le cas échéant, sinon effectue la recherche dans un nouvel éditeur de recherche.",
- "search.mode.view": "Effectuez une recherche dans la vue de recherche, soit dans le panneau, soit dans les barres latérales.",
+ "search.mode.view": "Effectuez une recherche dans le mode Recherche, soit dans le panneau, soit dans les barres latérales.",
+ "search.quickAccess.preserveInput": "Détermine si la dernière entrée tapée dans Recherche rapide doit être restaurée à la prochaine ouverture.",
"search.quickOpen.includeHistory": "Indique si vous souhaitez inclure les résultats de fichiers récemment ouverts dans les résultats de fichiers pour Quick Open.",
"search.quickOpen.includeSymbols": "Indique s’il faut inclure les résultats d’une recherche de symbole global dans les résultats de fichier pour Quick Open.",
+ "search.ripgrep.maxThreads": "Nombre de threads à utiliser pour la recherche. Quand la valeur est 0, le moteur détermine automatiquement cette valeur.",
"search.searchEditor.defaultNumberOfContextLines": "Nombre par défaut de lignes de contexte avoisinantes à utiliser au moment de la création d'éditeurs de recherche. Si vous utilisez '#search.searchEditor.reusePriorSearchConfiguration#', vous pouvez lui affecter la valeur 'null' (vide) pour utiliser la configuration précédente de l'éditeur de recherche.",
"search.searchEditor.doubleClickBehaviour": "Configurez ce qui se passe après un double clic sur un résultat dans un éditeur de recherche.",
"search.searchEditor.doubleClickBehaviour.goToLocation": "Double-cliquez sur le résultat pour l'ouvrir dans le groupe d'éditeurs actif.",
"search.searchEditor.doubleClickBehaviour.openLocationToSide": "Double-cliquez pour ouvrir le résultat dans le groupe d'éditeurs ouvert ou dans un nouveau groupe d'éditeurs le cas échéant.",
"search.searchEditor.doubleClickBehaviour.selectWord": "Double-cliquez pour sélectionner le mot sous le curseur.",
+ "search.searchEditor.focusResultsOnSearch": "Lorsqu'une recherche est déclenchée, concentrez-vous sur les résultats de l'éditeur de recherche plutôt que sur l'entrée de l'éditeur de recherche.",
"search.searchEditor.reusePriorSearchConfiguration": "Quand cette option est activée, les nouveaux éditeurs de recherche réutilisent les inclusions, exclusions et indicateurs du dernier éditeur de recherche ouvert.",
+ "search.searchEditor.singleClickBehaviour": "Configurez l’effet d’un simple clic sur un résultat dans un éditeur de recherche.",
+ "search.searchEditor.singleClickBehaviour.default": "Le simple clic n’a aucun effet.",
+ "search.searchEditor.singleClickBehaviour.peekDefinition": "Un simple clic ouvre une fenêtre Aperçu de définition.",
"search.searchOnType": "Recherchez dans tous les fichiers à mesure que vous tapez.",
"search.searchOnTypeDebouncePeriod": "Lorsque {0} est activé, contrôle le délai d’expiration en millisecondes entre un caractère tapé et le début de la recherche. N’a aucun effet lorsque {0} est désactivé.",
- "search.seedOnFocus": "Mettez à jour la requête de recherche en fonction du texte sélectionné de l'éditeur quand vous placez le focus sur la vue de recherche. Cela se produit soit au moment du clic de souris, soit au déclenchement de la commande 'workbench.views.search.focus'.",
+ "search.searchView.keywordSuggestions": "Activez les suggestions de mots-clés dans le mode Recherche.",
+ "search.searchView.semanticSearchBehavior": "Contrôle le comportement des résultats de la recherche sémantique affichés dans le mode Recherche.",
+ "search.searchView.semanticSearchBehavior.auto": "Demandez automatiquement des résultats sémantiques à chaque recherche.",
+ "search.searchView.semanticSearchBehavior.manual": "Demandez uniquement les résultats de la recherche sémantique manuellement.",
+ "search.searchView.semanticSearchBehavior.runOnEmpty": "Demandez automatiquement des résultats sémantiques uniquement quand les résultats de la recherche textuelle sont vides.",
+ "search.seedOnFocus": "Mettez à jour la requête de recherche en fonction du texte sélectionné de l’éditeur quand vous placez le focus sur le mode Recherche. Cela se produit soit au moment du clic de souris, soit au déclenchement de la commande `workbench.views.search.focus`.",
"search.seedWithNearestWord": "Activez l'initialisation de la recherche à partir du mot le plus proche du curseur quand l'éditeur actif n'a aucune sélection.",
"search.showLineNumbers": "Détermine s'il faut afficher les numéros de ligne dans les résultats de recherche.",
"search.smartCase": "Faire une recherche non sensible à la casse si le modèle est tout en minuscules, dans le cas contraire, faire une rechercher sensible à la casse.",
@@ -8131,25 +13565,92 @@
"searchSortOrder.filesOnly": "Les résultats sont triés par noms de fichier en ignorant l'ordre des dossiers, dans l'ordre alphabétique.",
"searchSortOrder.modified": "Les résultats sont triés par date de dernière modification de fichier, dans l'ordre décroissant.",
"searchSortOrder.type": "Les résultats sont triés par extensions de fichier dans l'ordre alphabétique.",
- "showTriggerActions": "Atteindre le symbole dans l'espace de travail...",
"symbolsQuickAccess": "Atteindre le symbole dans l'espace de travail",
"symbolsQuickAccessPlaceholder": "Tapez le nom d'un symbole à ouvrir.",
- "useGlobalIgnoreFiles": "Contrôle l'utilisation des fichiers globaux `.gitignore` et `.ignore` lors de la recherche de fichiers. Il faut que `#search.useIgnoreFiles#` soit activé.",
+ "textSearchPickerHelp": "Rechercher du texte",
+ "textSearchPickerPlaceholder": "Recherchez du texte dans les fichiers de votre espace de travail.",
+ "useGlobalIgnoreFiles": "Contrôle s’il faut utiliser votre fichier gitignore global (par exemple, depuis `$HOME/.config/git/ignore`) lors de la recherche de fichiers. Requiert {0} pour être activé.",
"useIgnoreFiles": "Contrôle s'il faut utiliser les fichiers `.gitignore` et `.ignore` par défaut pendant la recherche de fichiers.",
"usePCRE2Deprecated": "Déprécié. PCRE2 est utilisé automatiquement lors de l'utilisation de fonctionnalités regex qui ne sont prises en charge que par PCRE2.",
- "useParentIgnoreFiles": "Contrôle l'utilisation des fichiers `.gitignore` et `.ignore` dans les répertoires parents lors de la recherche de fichiers. Il faut que `#search.useIgnoreFiles#` soit activé.",
+ "useParentIgnoreFiles": "Contrôle l’utilisation des fichiers `.gitignore` et `.ignore` dans les répertoires parents lors de la recherche de fichiers. Requiert {0} pour être activé.",
"useRipgrep": "Ce paramètre est déprécié et remplacé par \"search.usePCRE2\".",
"useRipgrepDeprecated": "Déprécié. Utilisez \"search.usePCRE2\" pour prendre en charge la fonctionnalité regex avancée."
},
- "vs/workbench/contrib/search/browser/searchActions": {
+ "vs/workbench/contrib/search/browser/searchActionsBase": {
+ "search": "Rechercher"
+ },
+ "vs/workbench/contrib/search/browser/searchActionsCopy": {
+ "copyAllLabel": "Copier tout",
+ "copyMatchLabel": "Copier",
+ "copyPathLabel": "Copier le chemin",
+ "getSearchResultsLabel": "Obtenir les résultats de la recherche"
+ },
+ "vs/workbench/contrib/search/browser/searchActionsFind": {
+ "excludeFileTypeFromSearch": "Exclure le type de fichier dans la recherche",
+ "excludeFolderFromSearch": "Exclure le dossier de la recherche",
+ "findInFiles": "Chercher dans les fichiers",
+ "findInFiles.args": "Ensemble d'options pour la recherche",
+ "findInFiles.description": "Ouvrir une recherche d’espace de travail",
+ "findInFolder": "Rechercher dans le dossier...",
+ "findInWorkspace": "Trouver dans l’espace de travail...",
+ "includeFileTypeInSearch": "Inclure le type de fichier dans la recherche",
+ "miFindInFiles": "Rechercher dans les f&&ichiers",
+ "restrictResultsToFolder": "Restreindre la recherche au dossier",
+ "revealInSideBar": "Afficher en mode Explorateur",
+ "search.expandRecursively": "Développer de manière récursive"
+ },
+ "vs/workbench/contrib/search/browser/searchActionsNav": {
+ "AddCursorsAtSearchResults.label": "Ajouter des curseurs aux résultats de la recherche",
+ "CloseReplaceWidget.label": "Fermer Remplacer le widget",
+ "FocusNextInputAction.label": "Focus sur l’entrée suivante",
"FocusNextSearchResult.label": "Focus sur le résultat de la recherche suivant",
+ "FocusPreviousInputAction.label": "Focus sur l’entrée précédente",
"FocusPreviousSearchResult.label": "Focus sur le résultat de la recherche précédent",
- "RemoveAction.label": "Ignorer",
- "file.replaceAll.label": "Tout remplacer",
- "match.replace.label": "Remplacer",
+ "FocusSearchFromResults.label": "Focus sur la recherche sur les résultats",
+ "OpenMatch.label": "Ouvrir la correspondance",
+ "OpenMatchToSide.label": "Ouvrir la correspondance sur le côté",
+ "ToggleCaseSensitiveCommandId.label": "Activer/désactiver Respecter la casse",
+ "TogglePreserveCaseId.label": "Activer/désactiver Préserver la case",
+ "ToggleQueryDetailsAction.label": "Activer/désactiver les détails de la requête",
+ "ToggleRegexCommandId.label": "Activer/désactiver l’expression régulière",
+ "ToggleWholeWordCommandId.label": "Activer/désactiver le mot entier",
+ "focusSearchListCommandLabel": "Focus sur la liste",
"replaceInFiles": "Remplacer dans les fichiers",
"toggleTabs": "Activer/désactiver la recherche sur le type"
},
+ "vs/workbench/contrib/search/browser/searchActionsRemoveReplace": {
+ "RemoveAction.label": "Ignorer",
+ "file.replaceAll.label": "Tout remplacer",
+ "match.replace.label": "Remplacer"
+ },
+ "vs/workbench/contrib/search/browser/searchActionsSymbol": {
+ "miGotoSymbolInWorkspace": "Atteindre le symbole dans l'&&espace de travail...",
+ "showTriggerActions": "Atteindre le symbole dans l'espace de travail..."
+ },
+ "vs/workbench/contrib/search/browser/searchActionsTextQuickAccess": {
+ "quickTextSearch": "Recherche rapide"
+ },
+ "vs/workbench/contrib/search/browser/searchActionsTopBar": {
+ "CancelSearchAction.label": "Annuler la recherche",
+ "ClearSearchResultsAction.label": "Effacer les résultats de la recherche",
+ "CollapseDeepestExpandedLevelAction.label": "Réduire tout",
+ "ExpandAllAction.label": "Tout développer",
+ "RefreshAction.label": "Actualiser",
+ "SearchWithAIAction.label": "Recherche avec l’IA",
+ "ViewAsListAction.label": "Afficher en tant que liste",
+ "ViewAsTreeAction.label": "Voir sous forme d'arborescence",
+ "clearSearchHistoryLabel": "Effacer l'historique de recherche"
+ },
+ "vs/workbench/contrib/search/browser/searchChatContext": {
+ "chatContext.attach.files.placeholder": "Rechercher un fichier ou un dossier par son nom",
+ "chatContext.folder": "Fichiers et dossiers...",
+ "chatContext.searchResults": "Résultats de la recherche",
+ "select.symb": "Sélectionner un symbole",
+ "symbols": "Symboles..."
+ },
+ "vs/workbench/contrib/search/browser/searchFindInput": {
+ "searchFindInputNotebookFilter.label": "Filtres de recherche de bloc-notes"
+ },
"vs/workbench/contrib/search/browser/searchIcons": {
"searchClearIcon": "Icône d'effacement des résultats dans la vue de recherche.",
"searchCollapseAllIcon": "Icône de réduction des résultats dans la vue de recherche.",
@@ -8157,12 +13658,18 @@
"searchExpandAllIcon": "Icône de développement des résultats dans la vue de recherche.",
"searchHideReplaceIcon": "Icône de réduction de la section de remplacement dans la vue de recherche.",
"searchNewEditorIcon": "Icône de l'action d'ouverture d'un nouvel éditeur de recherche.",
+ "searchOpenInFile": "Icône de l’action permettant d’accéder au fichier du résultat de recherche actuel.",
"searchRefreshIcon": "Icône d'actualisation dans la vue de recherche.",
"searchRemoveIcon": "Icône de suppression d'un résultat de la recherche.",
"searchReplaceAllIcon": "Icône permettant de tout remplacer dans la vue de recherche.",
"searchReplaceIcon": "Icône permettant d'effectuer un remplacement dans la vue de recherche.",
+ "searchSeeMoreIcon": "Icône permettant d’afficher plus de contexte dans la vue de recherche.",
+ "searchShowAsList": "Icône permettant d’afficher les résultats sous forme de liste dans la vue de recherche.",
+ "searchShowAsTree": "Icône permettant d’afficher les résultats sous forme d’arborescence dans la vue de recherche.",
"searchShowContextIcon": "Icône d'activation/de désactivation du contexte dans l'éditeur de recherche.",
"searchShowReplaceIcon": "Icône de développement de la section de remplacement dans la vue de recherche.",
+ "searchSparkleEmpty": "Icône permettant de masquer les résultats de l’IA dans la recherche.",
+ "searchSparkleFilled": "Icône permettant d’afficher les résultats de l’IA dans la recherche.",
"searchStopIcon": "Icône d'arrêt dans la vue de recherche.",
"searchViewIcon": "Icône de vue de la recherche."
},
@@ -8176,29 +13683,31 @@
"lineNumStr": "À partir de la ligne {0}",
"numLinesStr": "{0} lignes supplémentaires",
"otherFilesAriaLabel": "{0} correspondances en dehors de l'espace de travail, Résultat de la recherche",
- "replacePreviewResultAria": "Remplacer le terme {0} par {1} à la position de colonne {2} dans la ligne avec le texte {3}",
+ "replacePreviewResultAria": "'{0}' à la colonne {1} remplace {2} par {3}",
"search": "Rechercher",
"searchFileMatch": "{0} fichier trouvé",
"searchFileMatches": "{0} fichiers",
+ "searchFolderMatch.aiText.label": "Résultats assistés par l’IA",
"searchFolderMatch.other.label": "Autres fichiers",
+ "searchFolderMatch.plainText.label": "Résultats de texte",
"searchMatch": "{0} correspondance trouvée",
"searchMatches": "{0} correspondances trouvées",
- "searchResultAria": "Terme {0} trouvé à la position de colonne {1} dans la ligne avec le texte {2}"
+ "searchResultAria": "'{0}' à la colonne {1} a trouvé {2}"
},
"vs/workbench/contrib/search/browser/searchView": {
- "ariaSearchResultsClearStatus": "Les résultats de recherche ont été effacés",
"ariaSearchResultsStatus": "La recherche a retourné {0} résultats dans {1} fichiers",
"disableOpenEditors": "Rechercher dans l’espace de travail entier",
"emptySearch": "Recherche vide",
"excludes.enable": "activer",
"forTerm": " - Recherche : {0}",
+ "keywordSuggestion.message": "Rechercher plutôt : ",
"moreSearch": "Activer/désactiver les détails de la recherche",
"noOpenEditorResultsExcludes": "Résultats introuvables dans les éditeurs ouverts excluant '{0}' - ",
- "noOpenEditorResultsFound": "Résultats introuvables dans les éditeurs ouverts. Passez en revue vos paramètres pour examiner les exclusions configurées, et vérifiez vos fichiers gitignore - ",
+ "noOpenEditorResultsFound": "Résultats introuvables dans les éditeurs ouverts. Passez en revue vos exclusions configurées, et vérifiez vos fichiers gitignore - ",
"noOpenEditorResultsIncludes": "Résultats introuvables dans les éditeurs ouverts correspondant à '{0}' - ",
"noOpenEditorResultsIncludesExcludes": "Résultats introuvables dans les éditeurs ouverts correspondant à '{0}' et excluant '{1}' - ",
"noResultsExcludes": "Résultats introuvables avec l'exclusion de '{0}' - ",
- "noResultsFound": "Aucun résultat. Vérifiez les exclusions configurées dans vos paramètres et examinez vos fichiers gitignore -",
+ "noResultsFound": "Désolé, aucun résultat trouvé. Passez en revue vos exclusions configurées, et vérifiez vos fichiers gitignore - ",
"noResultsIncludes": "Résultats introuvables dans '{0}' - ",
"noResultsIncludesExcludes": "Résultats introuvables pour '{0}' excluant '{1}' - ",
"onlyOpenEditors": "recherche uniquement dans les fichiers ouverts",
@@ -8206,7 +13715,6 @@
"openFolder": "Ouvrir le dossier",
"openInEditor.message": "Ouvrir dans l'éditeur",
"openInEditor.tooltip": "Copier les résultats de recherche actuels dans un éditeur",
- "openSettings.learnMore": "En savoir plus",
"openSettings.message": "Ouvrir les paramètres",
"placeholder.excludes": "exemples : *.ts, src/**/exclude",
"placeholder.includes": "exemples : *.ts, src/**/include",
@@ -8239,7 +13747,9 @@
"searchPathNotFoundError": "Chemin de recherche introuvable : {0}",
"searchScope.excludes": "fichiers à exclure",
"searchScope.includes": "fichiers à inclure",
+ "searchWithAIButtonTooltip": "Rechercher avec l’IA",
"searchWithoutFolder": "Vous n'avez ni ouvert ni spécifié de dossier. Seuls les fichiers ouverts sont inclus dans la recherche -",
+ "triggerAISearch.tooltip": "Rechercher avec l’IA.",
"useExcludesAndIgnoreFilesDescription": "Utiliser les paramètres d'exclusion et ignorer les fichiers",
"useIgnoresAndExcludesDisabled": "exclure les paramètres et ignorer les fichiers sont désactivés"
},
@@ -8292,6 +13802,7 @@
"searchEditor.deleteResultBlock": "Supprimer les résultats du fichier"
},
"vs/workbench/contrib/searchEditor/browser/searchEditorInput": {
+ "searchEditorLabelIcon": "Icône de l’étiquette de l’éditeur de recherche.",
"searchTitle": "Recherche",
"searchTitle.withQuery": "Recherche : {0}"
},
@@ -8304,30 +13815,20 @@
"oneResult": "1 résultat",
"searchMaxResultsWarning": "L’ensemble de résultats contient uniquement un sous-ensemble de toutes les correspondances. Soyez plus précis dans votre recherche de façon à limiter les résultats."
},
- "vs/workbench/contrib/sessionSync/browser/sessionSync.contribution": {
- "apply edit session warning": "L’application de votre session de modification peut remplacer vos modifications non validées existantes. Voulez-vous continuer ?",
- "apply failed": "Échec de l’application de votre session de modification.",
- "applying edit session": "Application de la session de modification...",
- "client too old": "Effectuez une mise à niveau vers une version plus récente de {0} pour appliquer cette session de modification.",
- "continue edit session": "Continuer la modification de la session...",
- "continue edit session in local folder": "Ouvrir dans le dossier local",
- "continueEditSession.openLocalFolder.title": "Sélectionnez un dossier local dans lequel poursuivre votre session de modification.",
- "continueEditSessionExtPoint": "Contribue aux options permettant de poursuivre la session d’édition actuelle dans un autre environnement.",
- "continueEditSessionExtPoint.command": "Identificateur de la commande à exécuter. La commande doit être déclarée dans la section 'commands' et retourner un URI représentant un autre environnement où la session d’édition actuelle peut être poursuivie.",
- "continueEditSessionExtPoint.group": "Groupe auquel cet élément appartient",
- "continueEditSessionExtPoint.when": "Condition qui doit être true pour afficher cet élément",
- "continueEditSessionItem.openInLocalFolder": "Ouvrir dans le dossier local",
- "continueEditSessionPick.placeholder": "Choisissez la façon dont vous souhaitez continuer à travailler.",
- "continueEditSessionPick.title": "Continuer la modification de la session...",
- "editSessionsEnabled": "Contrôle s'il faut afficher les actions compatibles avec le cloud pour stocker et reprendre les modifications non validées lors du basculement entre le Web, le bureau ou les appareils.",
- "no edit session": "Aucune session de modification à appliquer.",
- "no edit session content for ref": "Impossible d’appliquer le contenu de la session de modification pour l’ID {0}.",
- "no edits to store": "Le stockage de la session de modification a été ignoré, car il n’y a aucune modification à stocker.",
- "payload failed": "Votre session de modification ne peut pas être stockée.",
- "payload too large": "Votre session de modification dépasse la limite de taille et ne peut pas être stockée.",
- "resume latest": "Reprendre la dernière session d’édition",
- "store current": "Stocker la session d’édition actuelle",
- "storing edit session": "Stockage de la session de modification..."
+ "vs/workbench/contrib/share/browser/share.contribution": {
+ "close": "Fermer",
+ "experimental.share.enabled": "Contrôle si l’action Partager doit être rendue à côté du centre de commandes lorsque {0} est {1}.",
+ "generating link": "Génération du lien...",
+ "open link": "Ouvrir le lien",
+ "share": "Partager...",
+ "shareSuccess": "Lien copié vers le Presse-papiers.",
+ "shareTextSuccess": "Texte copié dans le Presse-papiers !"
+ },
+ "vs/workbench/contrib/share/browser/shareService": {
+ "shareProviderCount": "Nombre de fournisseurs de partage disponibles",
+ "toggle.share": "Partager",
+ "toggle.shareDescription": "Afficher la visibilité de l'action Partager dans la barre de titre",
+ "type to filter": "Choisir comment partager {0}"
},
"vs/workbench/contrib/snippets/browser/commands/abstractSnippetsActions": {
"snippets": "Extraits"
@@ -8336,22 +13837,23 @@
"bad_name1": "Nom de fichier non valide",
"bad_name2": "'{0}' n'est pas un nom de fichier valide",
"bad_name3": "'{0}' existe déjà",
+ "detail.label": "({0}) {1}",
"global.1": "({0})",
"global.scope": "(global)",
"group.global": "Extraits existants",
- "miOpenSnippets": "&&Extraits utilisateur",
+ "miOpenSnippets": "&&Extraits de code",
"name": "Taper le nom de fichier de l'extrait de code",
"new.folder": "Nouveau fichier d'extraits pour '{0}'...",
"new.global": "Nouveau fichier d'extraits globaux...",
"new.global.sep": "Nouveaux extraits de code",
"new.global_scope": "GLOBAL",
"new.workspace_scope": "espace de travail {0}",
- "openSnippet.label": "Configurer les extraits de l’utilisateur",
+ "openSnippet.label": "Configurer des extraits de code",
"openSnippet.pickLanguage": "Sélectionner le fichier d'extraits ou créer des extraits",
- "userSnippets": "Extraits de code de l'utilisateur"
+ "userSnippets": "Extraits de code"
},
"vs/workbench/contrib/snippets/browser/commands/fileTemplateSnippets": {
- "label": "Remplir le fichier à partir de l’extrait de code",
+ "label": "Remplir le fichier avec un extrait",
"placeholder": "Sélectionner un extrait"
},
"vs/workbench/contrib/snippets/browser/commands/insertSnippet": {
@@ -8361,7 +13863,8 @@
"label": "Entourer d’un extrait de code..."
},
"vs/workbench/contrib/snippets/browser/snippetCodeActionProvider": {
- "codeAction": "Entourer de : {0}",
+ "codeAction": "{0}",
+ "more": "Plus…",
"overflow.start.title": "Commencer par un extrait de code",
"title": "Commencez par : {0}"
},
@@ -8404,30 +13907,54 @@
"vscode.extension.contributes.snippets-language": "Identificateur de langage pour lequel cet extrait de code est ajouté.",
"vscode.extension.contributes.snippets-path": "Chemin du fichier d'extraits de code. Le chemin est relatif au dossier d'extensions et commence généralement par './snippets/'."
},
- "vs/workbench/contrib/surveys/browser/ces.contribution": {
- "cesSurveyQuestion": "Avez-vous un moment pour aider l'équipe de VS Code ? Parlez-nous de votre expérience d'utilisation de VS Code.",
- "giveFeedback": "Envoyer des commentaires",
- "remindLater": "Me le rappeler plus tard"
+ "vs/workbench/contrib/speech/browser/speechService": {
+ "speechProviderDescription": "Une description de ce fournisseur de voix, affichée dans l’interface utilisateur.",
+ "speechProviderName": "Nom unique pour ce fournisseur Speech.",
+ "vscode.extension.contributes.speechProvider": "Contribue à un fournisseur Speech"
+ },
+ "vs/workbench/contrib/speech/common/speechService": {
+ "hasSpeechProvider": "Un fournisseur vocal est enregistré auprès du service vocal.",
+ "speechLanguage.da-DK": "Danois (Danemark)",
+ "speechLanguage.de-DE": "Allemand (Allemagne)",
+ "speechLanguage.en-AU": "Anglais (Australie)",
+ "speechLanguage.en-CA": "Anglais (Canada)",
+ "speechLanguage.en-GB": "Anglais (Royaume-Uni)",
+ "speechLanguage.en-IE": "Anglais (Irlande)",
+ "speechLanguage.en-IN": "Anglais (Inde)",
+ "speechLanguage.en-NZ": "Anglais (Nouvelle-Zélande)",
+ "speechLanguage.en-US": "Anglais (États-Unis)",
+ "speechLanguage.es-ES": "Espagnol (Espagne)",
+ "speechLanguage.es-MX": "Espagnol (Mexique)",
+ "speechLanguage.fr-CA": "Français (Canada)",
+ "speechLanguage.fr-FR": "Français (France)",
+ "speechLanguage.hi-IN": "Hindi (Inde)",
+ "speechLanguage.it-IT": "Italien (Italie)",
+ "speechLanguage.ja-JP": "Japonais (Japon)",
+ "speechLanguage.ko-KR": "Coréen (Corée du Sud)",
+ "speechLanguage.nl-NL": "Néerlandais (Pays-Bas)",
+ "speechLanguage.pt-BR": "Portugais (Brésil)",
+ "speechLanguage.pt-PT": "Portugais (Portugal)",
+ "speechLanguage.ru-RU": "Russe (Russie)",
+ "speechLanguage.sv-SE": "Suédois (Suède)",
+ "speechLanguage.tr-TR": "Turc (Turquie)",
+ "speechLanguage.zh-CN": "Chinois (simplifié, Chine)",
+ "speechLanguage.zh-HK": "Chinois (traditionnel, Hong Kong R.A.S.)",
+ "speechLanguage.zh-TW": "Chinois (Traditionnel, Taïwan)",
+ "speechToTextInProgress": "Une session de conversion de parole en texte est en cours.",
+ "textToSpeechInProgress": "Une session de synthèse vocale est en cours."
},
"vs/workbench/contrib/surveys/browser/languageSurveys.contribution": {
"helpUs": "Aidez-nous à améliorer le support de {0}",
"neverAgain": "Ne plus afficher",
- "remindLater": "Me le rappeler plus tard",
+ "remindLater": "Me rappeler plus tard",
"takeShortSurvey": "Répondre à une enquête rapide"
},
"vs/workbench/contrib/surveys/browser/nps.contribution": {
"neverAgain": "Ne plus afficher",
- "remindLater": "Me le rappeler plus tard",
+ "remindLater": "Me rappeler plus tard",
"surveyQuestion": "Acceptez-vous de répondre à une enquête rapide ?",
"takeSurvey": "Répondre à l'enquête"
},
- "vs/workbench/contrib/tags/electron-browser/workspaceTagsService": {
- "workspaceFound": "Ce dossier contient un fichier d’espace de travail '{0}'. Voulez-vous l’ouvrir ? [En savoir plus] ({1}) sur les fichiers de l’espace de travail.",
- "openWorkspace": "Ouvrir un espace de travail",
- "workspacesFound": "Ce dossier contient plusieurs fichiers d'espace de travail. Voulez-vous en ouvrir un ? [Découvrez plus d'informations]({0}) sur les fichiers d'espace de travail.",
- "selectWorkspace": "Sélectionner un espace de travail",
- "selectToOpen": "Sélectionner un espace de travail à ouvrir"
- },
"vs/workbench/contrib/tasks/browser/abstractTaskService": {
"ConfigureTaskRunnerAction.label": "Configurer une tâche",
"TaskServer.folderIgnored": "Le dossier {0} est ignoré car il utilise la version 0.1.0 de task",
@@ -8443,18 +13970,23 @@
"TaskService.fetchingBuildTasks": "Récupération des tâches de génération...",
"TaskService.fetchingTestTasks": "Récupération des tâches de test...",
"TaskService.ignoredFolder": "Les dossiers d’espace de travail suivants sont ignorés car ils utilisent task version 0.1.0 : {0}",
+ "TaskService.instanceToTerminate": "Sélectionner une instance à terminer",
"TaskService.noBuildTask": "Aucune tâche de génération à exécuter n'a été trouvée. Configurer la tâche de génération...",
"TaskService.noBuildTask1": "Aucune tâche de build définie. Marquez une tâche avec 'isBuildCommand' dans le fichier tasks.json.",
"TaskService.noBuildTask2": "Aucune tâche de génération définie. Marquez une tâche comme groupe 'build' dans le fichier tasks.json.",
- "TaskService.noConfiguration": "Erreur : la détection de tâche {0} n'a pas contribué à une tâche pour la configuration suivante :\r\n{1}\r\nLa tâche va être ignorée.\r\n",
+ "TaskService.noConfiguration": "Erreur : La détection de tâches {0} n'a pas contribué à une tâche pour la configuration suivante :\r\n{1}\r\nLa tâche sera ignorée.",
"TaskService.noEntryToRun": "Configurer une tâche",
+ "TaskService.noInstanceRunning": "Aucune instance n’est en cours d’exécution",
+ "TaskService.noRunningTasks": "Aucune tâche en cours d’exécution n’est à redémarrer",
"TaskService.noTaskIsRunning": "Aucune tâche en cours d'exécution",
"TaskService.noTaskRunning": "Aucune tâche en cours d'exécution",
"TaskService.noTaskToRestart": "Aucune tâche à redémarrer.",
+ "TaskService.noTasks": "Aucune tâche persistante à reconnecter.",
"TaskService.noTestTask1": "Aucune tâche de test définie. Marquez une tâche avec 'isTestCommand' dans le fichier tasks.json.",
"TaskService.noTestTask2": "Aucune tâche de test définie. Marquez une tâche comme groupe 'test' dans le fichier tasks.json.",
"TaskService.noTestTaskTerminal": "Aucune tâche de test à exécuter n'a été trouvée. Configurer les tâches...",
"TaskService.notAgain": "Ne plus afficher",
+ "TaskService.notConnecting": "Définition des tâches connectées à la valeur configurée {0}, les tâches ont déjà été reconnectées {1}",
"TaskService.openJsonFile": "Ouvrir le fichier tasks.json",
"TaskService.pickBuildTask": "Sélectionner la tâche de génération à exécuter",
"TaskService.pickBuildTaskForLabel": "Sélectionner la tâche de build (aucune tâche de build par défaut n'est définie)",
@@ -8464,19 +13996,24 @@
"TaskService.pickShowTask": "Sélectionner la tâche pour montrer sa sortie",
"TaskService.pickTask": "Sélectionner une tâche à configurer",
"TaskService.pickTestTask": "Sélectionner la tâche de test à exécuter",
- "TaskService.providerUnavailable": "Attention : {0} tâches sont indisponibles dans l’environnement actif.\r\n",
+ "TaskService.providerUnavailable": "Avertissement : les tâches {0} ne sont pas disponibles dans l’environnement actuel.",
+ "TaskService.reconnected": "Reconnecté aux tâches en cours d’exécution.",
+ "TaskService.reconnecting": "Reconnexion aux tâches en cours d’exécution...",
+ "TaskService.reconnectingTasks": "Reconnexion aux tâches {0} ...",
"TaskService.requestTrust": "Le listage et l’exécution de tâches nécessitent que certains fichiers de cet espace de travail soient exécutés en tant que code.",
+ "TaskService.skippingReconnection": "Type de démarrage non rechargement de fenêtre, définition connectée et suppression des tâches persistantes",
"TaskService.taskToRestart": "Sélectionner la tâche à redémarrer",
"TaskService.taskToTerminate": "Sélectionner une tâche à terminer",
"TaskService.template": "Sélectionner un modèle de tâche",
"TaskService.terminateAllRunningTasks": "Toutes les tâches en cours d'exécution",
+ "TaskSystem.InstancePolicy.warn": "La limite d’instances pour cette tâche a été atteinte.",
"TaskSystem.active": "Une tâche est déjà en cours d'exécution. Terminez-la avant d'exécuter une autre tâche.",
- "TaskSystem.activeSame.noBackground": "La tâche '{0}' est déjà active.",
"TaskSystem.configurationErrors": "Erreur : la configuration de tâche fournie comporte des erreurs de validation et ne peut pas être utilisée. Corrigez d'abord les erreurs.",
- "TaskSystem.invalidTaskJson": "Erreur : le fichier tasks.json contient des erreurs de syntaxe. Corrigez-les avant d'exécuter une tâche.\r\n",
- "TaskSystem.invalidTaskJsonOther": "Erreur : le fichier JSON de tâches dans {0} contient des erreurs de syntaxe. Corrigez-les avant d'exécuter une tâche.\r\n",
+ "TaskSystem.invalidTaskJson": "Erreur : le contenu du fichier Tasks.json comporte des erreurs de syntaxe. Veuillez les corriger avant d'exécuter une tâche.",
+ "TaskSystem.invalidTaskJsonOther": "Erreur : le contenu des tâches json dans {0} contient des erreurs de syntaxe. Veuillez les corriger avant d'exécuter une tâche.",
"TaskSystem.restartFailed": "Échec de l'arrêt et du redémarrage de la tâche {0}",
"TaskSystem.saveBeforeRun.prompt.title": "Enregistrer tous les éditeurs ?",
+ "TaskSystem.taskNoLongerExists": "La tâche {0} n’existe plus ou a été modifiée. Impossible de redémarrer.",
"TaskSystem.unknownError": "Une erreur s'est produite durant l'exécution d'une tâche. Pour plus d'informations, consultez le journal des tâches.",
"TaskSystem.versionSettings": "Seules les tâches de version 2.0.0 sont autorisées dans les paramètres utilisateur.",
"TaskSystem.versionWorkspaceFile": "Seules les tâches version 2.0.0 sont autorisées dans les fichiers config d'espace de travail.",
@@ -8490,44 +14027,55 @@
"customizeParseErrors": "La configuration de tâche actuelle contient des erreurs. Corrigez-les avant de personnaliser une tâche. ",
"detail": "Voulez-vous enregistrer tous les éditeurs avant d'exécuter la tâche ?",
"detected": "tâches détectées",
- "moreThanOneBuildTask": "De nombreuses tâches de build sont définies dans le fichier tasks.json. Exécution de la première.\r\n",
+ "moreThanOneBuildTask": "Il existe de nombreuses tâches de construction définies dans le fichier Tasks.json. Exécution du premier.",
"recentlyUsed": "tâches utilisées récemment",
- "restartTask": "Redémarrer la tâche",
"runTask.arg": "Filtre les tâches affichées dans quickpick",
"runTask.label": "Étiquette ou terme de la tâche à filtrer",
- "runTask.task": "The task's label or a term to filter by",
+ "runTask.task": "Étiquette ou terme de la tâche à filtrer",
"runTask.type": "Type de tâche faisant l’objet d’une contribution",
- "saveBeforeRun.dontSave": "Ne pas enregistrer",
- "saveBeforeRun.save": "Enregistrer",
+ "saveBeforeRun.dontSave": "N&&e pas enregistrer",
+ "saveBeforeRun.save": "&&Enregistrer",
+ "savePersistentTask": "Enregistrement des tâches persistantes : {0}",
"selectProblemMatcher": "Sélectionner pour quel type d’erreurs et d’avertissements analyser la sortie de la tâche",
"showOutput": "Afficher la sortie",
+ "task.longRunningTaskCompleted": "Tâche terminée en {0}.",
+ "task.longRunningTaskCompletedWithLabel": "Tâche « {0} » terminée en {1}.",
+ "task.longRunningTaskDurationMinutes": "{0} m",
+ "task.longRunningTaskDurationMinutesSeconds": "{0} min {1} s",
+ "task.longRunningTaskDurationSeconds": "{0} s",
+ "taskEvent": "Type d’événement de tâche : {0}",
"taskQuickPick.userSettings": "Utilisateur",
- "taskService.ignoreingFolder": "Ignorer les configurations de tâche pour le dossier d'espace de travail {0}. Pour permettre la prise en charge des tâches d'espace de travail multidossier, tous les dossiers doivent utiliser la version 2.0.0 de la tâche\r\n",
+ "taskService.getSavedTasks": "Récupération des tâches à partir du stockage des tâches.",
+ "taskService.getSavedTasks.error": "Désolé, la récupération d’une tâche à partir du stockage des tâches a échoué : {0}.",
+ "taskService.getSavedTasks.reading": "Lecture des tâches du stockage des tâches, {0}, {1}, {2}",
+ "taskService.getSavedTasks.resolved": "Tâche résolue {0}",
+ "taskService.getSavedTasks.unresolved": "Impossible de résoudre la tâche{0} ",
+ "taskService.gettingCachedTasks": "Retour des tâches mises en cache {0}",
+ "taskService.ignoringFolder": "Ignorer les configurations de tâches pour le dossier de l'espace de travail {0}. La prise en charge des tâches d'espace de travail multi-dossiers nécessite que tous les dossiers utilisent la version de tâche 2.0.0",
"taskService.openDiff": "Ouvrir diff",
"taskService.openDiffs": "Ouvrir les diffs",
+ "taskService.removePersistentTask": "Suppression de la tâche persistante{0}",
+ "taskService.setPersistentTask": "Définition de tâches persistantes{0}",
"taskService.upgradeVersion": "La version 0.1.0 des tâches a été supprimée car obsolète. Vos tâches ont été mises à niveau vers la version 2.0.0. Ouvrez le diff pour examiner la mise à niveau.",
"taskService.upgradeVersionPlural": "La version 0.1.0 des tâches a été supprimée car obsolète. Vos tâches ont été mises à niveau vers la version 2.0.0. Ouvrez les diffs pour examiner la mise à niveau.",
"taskServiceOutputPrompt": "Erreurs de tâche. Consultez la sortie pour plus de détails.",
+ "taskServiceOutputPromptChat": "Il existe des erreurs de tâche. Utilisez la conversation pour les corriger ou afficher la sortie pour plus d’informations.",
"tasks": "Tâches",
"tasksJsonComment": "\t// Consultez https://go.microsoft.com/fwlink/?LinkId=733558 \r\n\t// pour accéder à la documentation relative au format du fichier tasks.json",
- "terminateTask": "Terminer la tâche",
+ "troubleshootWithChat": "Réparer avec l’IA",
"unexpectedTaskType": "Le fournisseur de tâches des tâches \"{0}\" a fourni de manière inattendue une tâche de type \"{1}\".\r\n"
},
"vs/workbench/contrib/tasks/browser/runAutomaticTasks": {
- "allow": "Autoriser et exécuter",
- "disallow": "Interdire",
- "openTask": "Ouvrir un fichier",
- "openTasks": "Ouvrir des fichiers",
- "tasks.run.allowAutomatic": "Cet espace de travail comporte des tâches ({0}) définies ({1}), qui s'exécutent automatiquement quand vous l'ouvrez. Autorisez-vous l'exécution des tâches automatiques quand vous ouvrez cet espace de travail ?",
- "workbench.action.tasks.allowAutomaticTasks": "Autoriser les tâches automatiques dans le dossier",
- "workbench.action.tasks.disallowAutomaticTasks": "Interdire les tâches automatiques dans le dossier",
- "workbench.action.tasks.manageAutomaticRunning": "Gérer les tâches automatiques dans le dossier"
+ "workbench.action.tasks.allowAutomaticTasks": "Autoriser les tâches automatiques",
+ "workbench.action.tasks.disallowAutomaticTasks": "Interdire les tâches automatiques",
+ "workbench.action.tasks.manageAutomaticRunning": "Gérer les tâches automatiques"
},
"vs/workbench/contrib/tasks/browser/task.contribution": {
"BuildAction.label": "Exécuter la tâche de génération",
"ConfigureDefaultBuildTask.label": "Configurer la tâche de génération par défaut",
"ConfigureDefaultTestTask.label": "Configurer la tâche de test par défaut",
"ReRunTaskAction.label": "Réexécuter la dernière tâche",
+ "RerunAllRunningTasksAction.label": "Réexécuter toutes les tâches en cours d’exécution",
"RestartTaskAction.label": "Redémarrer la tâche en cours d'exécution",
"RunTaskAction.label": "Exécuter la tâche",
"ShowLogAction.label": "Afficher le journal des tâches",
@@ -8545,12 +14093,12 @@
"numberOfRunningTasks": "{0} tâches en cours d'exécution",
"runningTasks": "Afficher les tâches en cours d'exécution",
"status.runningTasks": "Tâches en cours d'exécution",
+ "task.NotifyWindowOnTaskCompletion": "Contrôle la durée minimale d’exécution d’une tâche en millisecondes avant d’afficher une notification du système d’exploitation lorsque la tâche se termine alors que la fenêtre n’est pas active. Mettez la valeur à -1 pour désactiver les notifications. Mettez la valeur à 0 pour toujours afficher les notifications. Ceci inclut un badge de fenêtre ainsi qu’une notification toast.",
"task.SaveBeforeRun.prompt": "Invite à enregistrer le contenu des éditeurs avant l'exécution d'une tâche.",
- "task.allowAutomaticTasks": "Activez les tâches automatiques dans le dossier.",
- "task.allowAutomaticTasks.auto": "Demander l’autorisation pour chaque dossier",
+ "task.allowAutomaticTasks": "Activez les tâches automatiques. Notez que les tâches ne s’exécutent pas dans un espace de travail non approuvé.",
"task.allowAutomaticTasks.off": "Jamais",
+ "task.allowAutomaticTasks.on": "Toujours",
"task.autoDetect": "Contrôle l'application de 'provideTasks' pour toutes les extensions du fournisseur de tâches. Si la commande Tâches : Exécuter la tâche est lente, la désactivation de la détection automatique des fournisseurs de tâches peut être utile. Les extensions individuelles peuvent également fournir des paramètres qui désactivent la détection automatique.",
- "task.experimental.reconnection": "On window reload, reconnect to running watch/background tasks. Note that this is experimental, so you could encounter issues.",
"task.problemMatchers.neverPrompt": "Configure s'il faut afficher l'invite du détecteur de problèmes de correspondance pendant l'exécution d'une tâche. Définissez le paramètre sur 'true' pour ne jamais afficher d'invite ou utilisez un dictionnaire de types de tâche pour désactiver les invites seulement pour des types de tâches spécifiques.",
"task.problemMatchers.neverPrompt.array": "Objet contenant des paires de tâches de type booléen pour lesquelles ne jamais demander de détecteur de problèmes de correspondance.",
"task.problemMatchers.neverPrompt.boolean": "Définit le comportement d'invite de détecteur de problèmes de correspondance pour toutes les tâches.",
@@ -8558,24 +14106,25 @@
"task.quickOpen.history": "Contrôle le nombre d'éléments récents suivis dans la boîte de dialogue d'ouverture rapide de tâche.",
"task.quickOpen.showAll": "Force la commande Tâches : exécuter la tâche à utiliser le comportement \"tout afficher\" (plus lent) à la place du sélecteur à deux niveaux (plus rapide), où les tâches sont regroupées par fournisseur.",
"task.quickOpen.skip": "Contrôle si la recherche rapide de tâche est ignorée quand il n'y a qu'une seule tâche.",
+ "task.reconnection": "Lors du rechargement de la fenêtre, reconnectez-vous aux tâches qui présentent des détecteurs de problèmes de correspondance.",
"task.saveBeforeRun": "Enregistrez tous les éditeurs comportant des modifications avant d'exécuter une tâche.",
"task.saveBeforeRun.always": "Enregistre toujours tous les éditeurs avant l'exécution d'une tâche.",
"task.saveBeforeRun.never": "N'enregistre jamais les éditeurs avant l'exécution d'une tâche.",
- "task.showDecorations": "Affiche les décorations aux points d’intérêt dans la mémoire tampon du terminal, comme le premier problème détecté via une tâche espion. Notez que cette opération ne prendra effet que pour les tâches futures.",
"task.slowProviderWarning": "Configure si un avertissement est affiché quand un fournisseur est lent",
"task.slowProviderWarning.array": "Tableau de types de tâche pour lesquelles ne jamais afficher l'avertissement de fournisseur lent.",
"task.slowProviderWarning.boolean": "Définit l'avertissement de fournisseur lent pour toutes les tâches.",
+ "task.verboseLogging": "Activez la journalisation détaillée pour les tâches.",
+ "tasks": "Tâches",
"tasksConfigurationTitle": "Tâches",
"tasksQuickAccessHelp": "Exécuter la tâche",
"tasksQuickAccessPlaceholder": "Tapez le nom d'une tâche à exécuter.",
- "ttask.allowAutomaticTasks.on": "Toujours",
"workbench.action.tasks.openUserTasks": "Ouvrir les tâches utilisateur",
- "workbench.action.tasks.openWorkspaceFileTasks": "Ouvrir les tâches d'espace de travail"
+ "workbench.action.tasks.openWorkspaceFileTasks": "Ouvrir les tâches d'espace de travail",
+ "workbench.action.tasks.rerunForActiveTerminal": "Réexécuter la tâche"
},
"vs/workbench/contrib/tasks/browser/taskQuickPick": {
- "TaskQuickPick.changeSettingDetails": "La détection de tâches {0} entraîne l’exécution de fichiers en tant que code dans l’espace de travail que vous ouvrez. L’activation de la détection de tâches {0} est un paramètre utilisateur qui s’applique à tous les espaces de travail que vous ouvrez. Voulez-vous activer la détection de tâches {0} pour tous les espaces de travail ?",
+ "TaskQuickPick.changeSettingDetails": "La détection de tâches {0} entraîne l’exécution de fichiers en tant que code dans l’espace de travail que vous ouvrez. L’activation de la détection de tâches {0} est un paramètre utilisateur qui s’applique à tous les espaces de travail que vous ouvrez. \r\n\r\nVoulez-vous activer la {0}détection de tâches pour tous les espaces de travail?",
"TaskQuickPick.changeSettingNo": "Non",
- "TaskQuickPick.changeSettingYes": "Oui",
"TaskQuickPick.changeSettingsOptions": "La détection de tâches $(gear) {0} est désactivée. Activer la détection de tâches {1}...",
"TaskQuickPick.goBack": "Retour ↩",
"TaskQuickPick.noTasksForType": "Aucune tâche {0}. Retour ↩",
@@ -8591,6 +14140,13 @@
"taskQuickPick.showAll": "Afficher toutes les tâches...",
"taskType": "Toutes les {0} tâches"
},
+ "vs/workbench/contrib/tasks/browser/taskService": {
+ "taskService.processTaskSystem": "Le système de tâches de processus n’est pas pris en charge sur le Web."
+ },
+ "vs/workbench/contrib/tasks/browser/tasksQuickAccess": {
+ "TaskService.pickRunTask": "Sélectionner la tâche à exécuter",
+ "noTaskResults": "Aucune tâche correspondante"
+ },
"vs/workbench/contrib/tasks/browser/taskTerminalStatus": {
"task.watchFirstError": "Début des erreurs détectées pour cette exécution",
"taskTerminalStatus.active": "La tâche est en cours d’exécution",
@@ -8603,10 +14159,6 @@
"taskTerminalStatus.warnings": "La tâche contient des avertissements",
"taskTerminalStatus.warningsInactive": "La tâche contient des avertissement et est en attente..."
},
- "vs/workbench/contrib/tasks/browser/tasksQuickAccess": {
- "TaskService.pickRunTask": "Sélectionner la tâche à exécuter",
- "noTaskResults": "Aucune tâche correspondante"
- },
"vs/workbench/contrib/tasks/browser/terminalTaskSystem": {
"TerminalTaskSystem": "Impossible d'exécuter une commande d'interpréteur de commandes sur un lecteur UNC à l'aide de cmd.exe.",
"TerminalTaskSystem.nonWatchingMatcher": "La tâche {0} est une tâche d'arrière-plan, mais utilise un détecteur de problèmes de correspondance sans modèle d'arrière-plan",
@@ -8615,46 +14167,14 @@
"closeTerminal": "Appuyez sur n'importe quelle touche pour fermer le terminal.",
"dependencyCycle": "Il existe un cycle de dépendance. Consultez la tâche \"{0}\".",
"dependencyFailed": "Impossible de résoudre la tâche dépendante '{0}' dans le dossier de l’espace de travail '{1}'",
+ "rerunTask": "Réexécuter la tâche",
"reuseTerminal": "Le terminal sera réutilisé par les tâches, appuyez sur une touche pour le fermer.",
"task.executing": "Exécution de la tâche : {0}",
+ "task.executing.shell-integration": "Exécution de la tâche : {0}",
+ "task.executing.shellIntegration": "Exécution de la tâche : {0}",
"task.executingInFolder": "Exécution de la tâche dans le dossier {0} : {1}",
"unknownProblemMatcher": "Impossible de résoudre le détecteur de problèmes de correspondance {0}. Le détecteur de problèmes de correspondance va être ignoré"
},
- "vs/workbench/contrib/tasks/common/jsonSchemaCommon": {
- "JsonSchema.args": "Arguments supplémentaires passés à la commande.",
- "JsonSchema.background": "Spécifie si la tâche exécutée est persistante, et si elle s'exécute en arrière-plan.",
- "JsonSchema.command": "Commande à exécuter. Il peut s'agir d'un programme externe ou d'une commande d'interpréteur de commandes.",
- "JsonSchema.echoCommand": "Contrôle si la commande exécutée fait l'objet d'un écho dans la sortie. La valeur par défaut est false.",
- "JsonSchema.matchers": "Détecteur(s) de problèmes de correspondance à utiliser. Il peut s'agir d'une chaîne ou d'une définition de détecteur de problèmes de correspondance, ou encore d'un tableau de chaînes et de détecteurs de problèmes de correspondance.",
- "JsonSchema.options": "Options de commande supplémentaires",
- "JsonSchema.options.cwd": "Répertoire de travail actif du programme ou script exécuté. En cas d'omission, la racine de l'espace de travail actif de Code est utilisée.",
- "JsonSchema.options.env": "Environnement du programme ou de l'interpréteur de commandes exécuté. En cas d'omission, l'environnement du processus parent est utilisé.",
- "JsonSchema.promptOnClose": "Spécifie si l'utilisateur est prévenu quand VS Code se ferme avec une tâche s'exécutant en arrière-plan.",
- "JsonSchema.shell.args": "Arguments de l'interpréteur de commandes.",
- "JsonSchema.shell.executable": "Interpréteur de commandes à utiliser.",
- "JsonSchema.shellConfiguration": "Configure l'interpréteur de commandes à utiliser.",
- "JsonSchema.showOutput": "Contrôle si la sortie de la tâche en cours d'exécution est affichée ou non. En cas d'omission, 'always' est utilisé.",
- "JsonSchema.suppressTaskName": "Contrôle si le nom de la tâche est ajouté en tant qu'argument de la commande. La valeur par défaut est false.",
- "JsonSchema.taskSelector": "Préfixe indiquant qu'un argument est une tâche.",
- "JsonSchema.tasks": "Configurations de la tâche. Il s'agit généralement d'enrichissements d'une tâche déjà définie dans l'exécuteur de tâches externe.",
- "JsonSchema.tasks.args": "Arguments passés à la commande quand cette tâche est appelée.",
- "JsonSchema.tasks.background": "Spécifie si la tâche exécutée est maintenue active, et si elle s'exécute en arrière-plan.",
- "JsonSchema.tasks.build": "Mappe cette tâche à la commande de génération par défaut de Code.",
- "JsonSchema.tasks.linux": "Configuration de commande spécifique à Linux",
- "JsonSchema.tasks.mac": "Configuration de commande spécifique à Mac",
- "JsonSchema.tasks.matcherError": "Détecteur de problèmes de correspondance non reconnu. L'extension qui contribue à ce détecteur de problèmes de correspondance est-elle installée ?",
- "JsonSchema.tasks.matchers": "Détecteur(s) de problèmes de correspondance à utiliser. Il peut s'agir d'une chaîne ou d'une définition de détecteur de problèmes de correspondance, ou d'un tableau de chaînes et de détecteurs de problèmes de correspondance.",
- "JsonSchema.tasks.promptOnClose": "Spécifie si l'utilisateur doit être averti quand VS Code se ferme avec une tâche en cours d'exécution.",
- "JsonSchema.tasks.showOutput": "Contrôle si la sortie de la tâche en cours d'exécution est affichée ou non. En cas d'omission, la valeur définie globalement est utilisée.",
- "JsonSchema.tasks.suppressTaskName": "Contrôle si le nom de la tâche est ajouté en tant qu'argument de la commande. En cas d'omission, la valeur définie globalement est utilisée.",
- "JsonSchema.tasks.taskName": "Nom de la tâche",
- "JsonSchema.tasks.test": "Mappe cette tâche à la commande de test par défaut de Code.",
- "JsonSchema.tasks.watching": "Spécifie si la tâche exécutée est persistante, et si elle surveille le système de fichiers.",
- "JsonSchema.tasks.watching.deprecation": "Déconseillé. Utilisez isBackground à la place.",
- "JsonSchema.tasks.windows": "Configuration de commande spécifique à Windows",
- "JsonSchema.watching": "Spécifie si la tâche exécutée est persistante, et si elle surveille le système de fichiers.",
- "JsonSchema.watching.deprecation": "Déconseillé. Utilisez isBackground à la place."
- },
"vs/workbench/contrib/tasks/common/jsonSchema_v1": {
"JsonSchema._runner": "L'exécuteur est gradué. Utiliser la propriété runner officielle",
"JsonSchema.linux": "Configuration de commandes spécifique à Linux",
@@ -8703,6 +14223,12 @@
"JsonSchema.tasks.identifier": "Identificateur défini par l'utilisateur pour référencer la tâche dans launch.json ou une clause dependsOn.",
"JsonSchema.tasks.identifier.deprecated": "Les identificateurs définis par l'utilisateur sont dépréciés. Pour une tâche personnalisée, utilisez le nom comme référence et pour les tâches fournies par des extensions, utilisez leur identificateur de tâche défini.",
"JsonSchema.tasks.instanceLimit": "Nombre d'instances de la tâche autorisées à s'exécuter simultanément.",
+ "JsonSchema.tasks.instancePolicy": "Stratégie à appliquer lorsque la limite d’instances est atteinte.",
+ "JsonSchema.tasks.instancePolicy.prompt": "Demande quelle instance terminer.",
+ "JsonSchema.tasks.instancePolicy.silent": "Ne fait rien.",
+ "JsonSchema.tasks.instancePolicy.terminateNewest": "Met fin à l’instance la plus récente.",
+ "JsonSchema.tasks.instancePolicy.terminateOldest": "Met fin à l’instance la plus ancienne.",
+ "JsonSchema.tasks.instancePolicy.warn": "Ne fait rien, mais avertit que la limite d’instances a été atteinte.",
"JsonSchema.tasks.isBuildCommand.deprecated": "La propriété isBuildCommand est dépréciée. Utilisez la propriété de groupe à la place. Consultez également les notes de publication 1.14.",
"JsonSchema.tasks.isShellCommand.deprecated": "La propriété isShellCommand est dépréciée. Utilisez à la place la propriété de type de la tâche et la propriété d'interpréteur de commandes dans les options. Consultez également les notes de publication 1.14.",
"JsonSchema.tasks.isTestCommand.deprecated": "La propriété isTestCommand est dépréciée. Utilisez la propriété de groupe à la place. Consultez également les notes de publication 1.14.",
@@ -8715,6 +14241,7 @@
"JsonSchema.tasks.presentation.focus": "Contrôle si le panneau reçoit le focus. La valeur par défaut est false. Si la valeur est true, le panneau est également affiché.",
"JsonSchema.tasks.presentation.group": "Contrôle si la tâche est exécutée dans un groupe de terminaux spécifique à l'aide de volets de fractionnement.",
"JsonSchema.tasks.presentation.instance": "Contrôle si le panneau est partagé entre les tâches, dédié à cette tâche ou si un panneau est créé à chaque exécution.",
+ "JsonSchema.tasks.presentation.preserveTerminalName": "Contrôle la conservation du nom de la tâche dans le terminal après son achèvement.",
"JsonSchema.tasks.presentation.reveal": "Contrôle si le terminal exécutant la tâche est affiché ou non. Peut être remplacé par l'option \"revealProblems\". La valeur par défaut est \"toujours\".",
"JsonSchema.tasks.presentation.reveal.always": "Toujours afficher le terminal quand cette tâche est exécutée.",
"JsonSchema.tasks.presentation.reveal.never": "Ne jamais afficher le terminal quand cette tâche est exécutée.",
@@ -8742,6 +14269,41 @@
"JsonSchema.version": "Numéro de version de la configuration.",
"JsonSchema.windows": "Configuration de commandes spécifique à Windows"
},
+ "vs/workbench/contrib/tasks/common/jsonSchemaCommon": {
+ "JsonSchema.args": "Arguments supplémentaires passés à la commande.",
+ "JsonSchema.background": "Spécifie si la tâche exécutée est persistante, et si elle s'exécute en arrière-plan.",
+ "JsonSchema.command": "Commande à exécuter. Il peut s'agir d'un programme externe ou d'une commande d'interpréteur de commandes.",
+ "JsonSchema.echoCommand": "Contrôle si la commande exécutée fait l'objet d'un écho dans la sortie. La valeur par défaut est false.",
+ "JsonSchema.matchers": "Détecteur(s) de problèmes de correspondance à utiliser. Il peut s'agir d'une chaîne ou d'une définition de détecteur de problèmes de correspondance, ou encore d'un tableau de chaînes et de détecteurs de problèmes de correspondance.",
+ "JsonSchema.options": "Options de commande supplémentaires",
+ "JsonSchema.options.cwd": "Répertoire de travail actif du programme ou script exécuté. En cas d'omission, la racine de l'espace de travail actif de Code est utilisée.",
+ "JsonSchema.options.env": "Environnement du programme ou de l'interpréteur de commandes exécuté. En cas d'omission, l'environnement du processus parent est utilisé.",
+ "JsonSchema.promptOnClose": "Spécifie si l'utilisateur est prévenu quand VS Code se ferme avec une tâche s'exécutant en arrière-plan.",
+ "JsonSchema.shell.args": "Arguments de l'interpréteur de commandes.",
+ "JsonSchema.shell.executable": "Interpréteur de commandes à utiliser.",
+ "JsonSchema.shellConfiguration": "Configure l'interpréteur de commandes à utiliser.",
+ "JsonSchema.showOutput": "Contrôle si la sortie de la tâche en cours d'exécution est affichée ou non. En cas d'omission, 'always' est utilisé.",
+ "JsonSchema.suppressTaskName": "Contrôle si le nom de la tâche est ajouté en tant qu'argument de la commande. La valeur par défaut est false.",
+ "JsonSchema.taskSelector": "Préfixe indiquant qu'un argument est une tâche.",
+ "JsonSchema.tasks": "Configurations de la tâche. Il s'agit généralement d'enrichissements d'une tâche déjà définie dans l'exécuteur de tâches externe.",
+ "JsonSchema.tasks.args": "Arguments passés à la commande quand cette tâche est appelée.",
+ "JsonSchema.tasks.background": "Spécifie si la tâche exécutée est maintenue active, et si elle s'exécute en arrière-plan.",
+ "JsonSchema.tasks.build": "Mappe cette tâche à la commande de génération par défaut de Code.",
+ "JsonSchema.tasks.linux": "Configuration de commande spécifique à Linux",
+ "JsonSchema.tasks.mac": "Configuration de commande spécifique à Mac",
+ "JsonSchema.tasks.matcherError": "Détecteur de problèmes de correspondance non reconnu. L'extension qui contribue à ce détecteur de problèmes de correspondance est-elle installée ?",
+ "JsonSchema.tasks.matchers": "Détecteur(s) de problèmes de correspondance à utiliser. Il peut s'agir d'une chaîne ou d'une définition de détecteur de problèmes de correspondance, ou d'un tableau de chaînes et de détecteurs de problèmes de correspondance.",
+ "JsonSchema.tasks.promptOnClose": "Spécifie si l'utilisateur doit être averti quand VS Code se ferme avec une tâche en cours d'exécution.",
+ "JsonSchema.tasks.showOutput": "Contrôle si la sortie de la tâche en cours d'exécution est affichée ou non. En cas d'omission, la valeur définie globalement est utilisée.",
+ "JsonSchema.tasks.suppressTaskName": "Contrôle si le nom de la tâche est ajouté en tant qu'argument de la commande. En cas d'omission, la valeur définie globalement est utilisée.",
+ "JsonSchema.tasks.taskName": "Nom de la tâche",
+ "JsonSchema.tasks.test": "Mappe cette tâche à la commande de test par défaut de Code.",
+ "JsonSchema.tasks.watching": "Spécifie si la tâche exécutée est persistante, et si elle surveille le système de fichiers.",
+ "JsonSchema.tasks.watching.deprecation": "Déconseillé. Utilisez isBackground à la place.",
+ "JsonSchema.tasks.windows": "Configuration de commande spécifique à Windows",
+ "JsonSchema.watching": "Spécifie si la tâche exécutée est persistante, et si elle surveille le système de fichiers.",
+ "JsonSchema.watching.deprecation": "Déconseillé. Utilisez isBackground à la place."
+ },
"vs/workbench/contrib/tasks/common/problemMatcher": {
"LegacyProblemMatcherSchema.watchedBegin": "Expression régulière signalant qu'une tâche faisant l'objet d'un suivi commence à s'exécuter via le suivi d'un fichier.",
"LegacyProblemMatcherSchema.watchedBegin.deprecated": "Cette propriété est déconseillée. Utilisez la propriété espion à la place.",
@@ -8767,22 +14329,23 @@
"ProblemMatcherParser.unknownSeverity": "Informations : gravité inconnue {0}. Valeurs valides : error, warning et info.\r\n",
"ProblemMatcherSchema.applyTo": "Contrôle si un problème signalé pour un document texte s'applique uniquement aux documents ouverts ou fermés, ou bien à l'ensemble des documents.",
"ProblemMatcherSchema.background": "Modèles de suivi du début et de la fin d'un détecteur de problèmes de correspondance actif sur une tâche en arrière-plan.",
- "ProblemMatcherSchema.background.activeOnStart": "Si la valeur est true, le moniteur d'arrière plan est activé quand la tâche démarre. Cela équivaut à écrire une ligne qui correspond à beginsPattern",
+ "ProblemMatcherSchema.background.activeOnStart": "Si la valeur est true, le moniteur d’arrière-plan démarre en mode actif. Cela revient à générer une ligne qui correspond à beginPattern au démarrage de la tâche.",
"ProblemMatcherSchema.background.beginsPattern": "En cas de correspondance dans la sortie, le début d'une tâche en arrière-plan est signalé.",
"ProblemMatcherSchema.background.endsPattern": "En cas de correspondance dans la sortie, la fin d'une tâche en arrière-plan est signalée.",
"ProblemMatcherSchema.base": "Nom d'un détecteur de problèmes de correspondance de base à utiliser.",
- "ProblemMatcherSchema.fileLocation": "Définit la façon dont les noms de fichiers signalés dans un modèle de problème doivent être interprétés. Un fileLocation relatif peut être un tableau dans lequel le second élément du tableau correspond au chemin du fichier relatif.",
+ "ProblemMatcherSchema.fileLocation": "Définit la manière dont les noms de fichiers signalés dans un modèle de problème doivent être interprétés. Un fileLocation relatif peut être un tableau, où le deuxième élément du tableau est le chemin d’accès de l’emplacement de fichier relatif. Le mode fileLocation de recherche effectue une recherche approfondie (et éventuellement lourde) dans les répertoires spécifiés par les propriétés include/exclude du deuxième élément (ou le répertoire de l’espace de travail actuel, s’il n’est pas spécifié).",
"ProblemMatcherSchema.owner": "Propriétaire du problème dans Code. Peut être omis si base est spécifié. Prend la valeur 'external' par défaut en cas d'omission et si base n'est pas spécifié.",
"ProblemMatcherSchema.severity": "Gravité par défaut des problèmes de capture. Est utilisé si le modèle ne définit aucun groupe de correspondance pour la gravité.",
"ProblemMatcherSchema.source": "Une chaîne lisible par humain qui décrit la source de ce diagnostic, par exemple 'typescript' ou 'super lint'.",
"ProblemMatcherSchema.watching": "Modèles de suivi du début et de la fin d'un détecteur de problèmes de correspondance espion.",
- "ProblemMatcherSchema.watching.activeOnStart": "Si la valeur est true, le mode espion est actif au démarrage de la tâche. Cela revient à émettre une ligne qui correspond à beginPattern",
+ "ProblemMatcherSchema.watching.activeOnStart": "Si la valeur est true, l’observateur démarre en mode actif. Cela revient à générer une ligne qui correspond à beginPattern au démarrage de la tâche.",
"ProblemMatcherSchema.watching.beginsPattern": "En cas de correspondance dans la sortie, le début d'une tâche de suivi est signalé.",
"ProblemMatcherSchema.watching.deprecated": "La propriété espion est déconseillée. Utilisez l'arrière-plan à la place.",
"ProblemMatcherSchema.watching.endsPattern": "En cas de correspondance dans la sortie, la fin d'une tâche de suivi est signalée.",
"ProblemPatternExtPoint": "Contribue aux modèles de problèmes",
"ProblemPatternParser.invalidRegexp": "Erreur : la chaîne {0} n'est pas une expression régulière valide.\r\n",
"ProblemPatternParser.loopProperty.notLast": "La propriété loop est uniquement prise en charge dans le détecteur de problèmes de correspondance de dernière ligne.",
+ "ProblemPatternParser.problemPattern.emptyPattern": "Le modèle de problème est invalide. Il doit contenir au moins un modèle.",
"ProblemPatternParser.problemPattern.kindProperty.notFirst": "Le modèle du problème est invalide. La propriété Type doit être uniquement fournie sur le premier élément",
"ProblemPatternParser.problemPattern.missingLocation": "Le modèle du problème est invalide. Il doit avoir au moins un type: \"fichier\" ou avoir une ligne ou un emplacement de groupe de correspondance. ",
"ProblemPatternParser.problemPattern.missingProperty": "Le modèle du problème est invalide. Il doit avoir au moins un fichier et un message.",
@@ -8836,11 +14399,20 @@
"TaskDefinitionExtPoint": "Ajoute des types de tâche",
"TaskTypeConfiguration.noType": "La propriété 'taskType' obligatoire est manquante dans la configuration du type de tâche"
},
+ "vs/workbench/contrib/tasks/common/tasks": {
+ "TaskDefinition.missingRequiredProperty": "Erreur : L'identificateur de tâche '{0}' est manquant dans la propriété obligatoire '{1}'. L'identificateur de tâche est ignoré.",
+ "rerunTaskIcon": "Icône de la tâche de réexécution.",
+ "taskTerminalActive": "Indique si le terminal actif est un terminal de tâches.",
+ "tasks.taskRunningContext": "Indique si une tâche est en cours d'exécution.",
+ "tasksCategory": "Tâches"
+ },
"vs/workbench/contrib/tasks/common/taskService": {
"tasks.customExecutionSupported": "Indique si les tâches CustomExecution sont prises en charge. À utiliser dans la clause when d'une contribution 'taskDefinition'.",
"tasks.processExecutionSupported": "Indique si les tâches ProcessExecution sont prises en charge. À utiliser dans la clause when d'une contribution 'taskDefinition'.",
+ "tasks.serverlessWebContext": "La valeur est true lorsque vous êtes sur le web sans autorité distante.",
"tasks.shellExecutionSupported": "Indique si les tâches ShellExecution sont prises en charge. À utiliser dans la clause when d'une contribution 'taskDefinition'.",
- "tasks.taskCommandsRegistered": "Indique si les commandes de tâche ont encore été inscrites"
+ "tasks.taskCommandsRegistered": "Indique si les commandes de tâche ont encore été inscrites",
+ "tasks.tasksAvailable": "Indiquez si des tâches sont disponibles dans l’espace de travail."
},
"vs/workbench/contrib/tasks/common/taskTemplates": {
"Maven": "Exécute les commandes Maven courantes",
@@ -8848,114 +14420,68 @@
"externalCommand": "Exemple d'exécution d'une commande externe arbitraire",
"msbuild": "Exécute la cible de génération"
},
- "vs/workbench/contrib/tasks/common/tasks": {
- "TaskDefinition.missingRequiredProperty": "Erreur : L'identificateur de tâche '{0}' est manquant dans la propriété obligatoire '{1}'. L'identificateur de tâche est ignoré.",
- "tasks.taskRunningContext": "Indique si une tâche est en cours d'exécution.",
- "tasksCategory": "Tâches"
- },
- "vs/workbench/contrib/tasks/electron-sandbox/taskService": {
+ "vs/workbench/contrib/tasks/electron-browser/taskService": {
"TaskSystem.exitAnyways": "&&Quitter quand même",
"TaskSystem.noProcess": "La tâche lancée n'existe plus. Si la tâche a engendré des processus en arrière-plan, la sortie de VS Code risque de donner lieu à des processus orphelins. Pour éviter ce problème, démarrez le dernier processus en arrière-plan avec un indicateur d'attente.",
"TaskSystem.runningTask": "Une tâche est en cours d'exécution. Voulez-vous la terminer ?",
"TaskSystem.terminateTask": "&&Terminer la tâche"
},
+ "vs/workbench/contrib/telemetry/browser/telemetry.contribution": {
+ "showTelemetry": "Afficher la télémétrie"
+ },
"vs/workbench/contrib/terminal/browser/baseTerminalBackend": {
- "nonResponsivePtyHost": "La connexion au processus hôte pty du terminal ne répond pas. Les terminaux risquent de cesser de fonctionner.",
- "restartPtyHost": "Redémarrer l'hôte pty"
+ "nonResponsivePtyHost": "La connexion au processus pty host du terminal ne répond pas, les terminaux peuvent cesser de fonctionner. Cliquez pour redémarrer manuellement l’hôte pty.",
+ "ptyHostStatus": "État de l’hôte Pty",
+ "ptyHostStatus.ariaLabel": "L’hôte Pty ne répond pas",
+ "ptyHostStatus.short": "Hôte Pty"
},
"vs/workbench/contrib/terminal/browser/environmentVariableInfo": {
- "extensionEnvironmentContributionChanges": "Les extensions souhaitent apporter les changements suivants à l'environnement du terminal :",
- "extensionEnvironmentContributionInfo": "Des extensions ont apporté des changements à l'environnement de ce terminal",
- "extensionEnvironmentContributionRemoval": "Les extensions souhaitent supprimer les changements existants de l'environnement du terminal :",
- "relaunchTerminalLabel": "Relancer le terminal"
- },
- "vs/workbench/contrib/terminal/browser/links/terminalLink": {
- "focusFolder": "Focus sur le dossier dans l'Explorateur",
- "openFile": "Ouvrir le fichier dans l'éditeur",
- "openFolder": "Ouvrir le dossier dans une nouvelle fenêtre"
- },
- "vs/workbench/contrib/terminal/browser/links/terminalLinkDetectorAdapter": {
- "focusFolder": "Focus sur le dossier dans l'Explorateur",
- "followLink": "Suivre le lien",
- "openFile": "Ouvrir le fichier dans l'éditeur",
- "openFolder": "Ouvrir le dossier dans une nouvelle fenêtre",
- "searchWorkspace": "Rechercher un espace de travail"
- },
- "vs/workbench/contrib/terminal/browser/links/terminalLinkManager": {
- "followForwardedLink": "Suivre le lien à l'aide du port réacheminé",
- "followLink": "Suivre le lien",
- "followLinkUrl": "Lien",
- "terminalLinkHandler.followLinkAlt": "alt+clic",
- "terminalLinkHandler.followLinkAlt.mac": "option+clic",
- "terminalLinkHandler.followLinkCmd": "cmd+clic",
- "terminalLinkHandler.followLinkCtrl": "ctrl+clic"
- },
- "vs/workbench/contrib/terminal/browser/links/terminalLinkQuickpick": {
- "terminal.integrated.localFileLinks": "Fichier local",
- "terminal.integrated.openDetectedLink": "Sélectionner le lien à ouvrir",
- "terminal.integrated.searchLinks": "Recherche d'espace de travail",
- "terminal.integrated.showMoreLinks": "Afficher d’autres liens",
- "terminal.integrated.urlLinks": "URL"
+ "ScopedEnvironmentContributionInfo": "espace de travail",
+ "extensionEnvironmentContributionInfoActive": "Les extensions suivantes ont contribué à l’environnement de ce terminal :",
+ "extensionEnvironmentContributionInfoStale": "Les extensions suivantes souhaitent relancer le terminal pour contribuer à son environnement :",
+ "relaunchTerminalLabel": "Relancer le terminal",
+ "showEnvironmentContributions": "Afficher les contributions d’environnement"
},
"vs/workbench/contrib/terminal/browser/terminal.contribution": {
"miToggleIntegratedTerminal": "&&Terminal",
- "tasksQuickAccessHelp": "Afficher tous les terminaux ouverts",
- "tasksQuickAccessPlaceholder": "Tapez le nom d'un terminal à ouvrir.",
"terminal": "Terminal"
},
"vs/workbench/contrib/terminal/browser/terminalActions": {
"emptyTerminalNameInfo": "Si aucun nom n’est fourni, la valeur par défaut sera rétablie",
+ "newWithProfile.location": "Où créer le terminal",
+ "newWithProfile.location.editor": "Créer le terminal dans l’éditeur",
+ "newWithProfile.location.view": "Créer le terminal dans l’affichage terminal",
"noUnattachedTerminals": "Il n'existe aucun terminal non attaché à attacher",
- "quickAccessTerminal": "Changer de terminal actif",
"showTerminalTabs": "Afficher les onglets",
"terminalLaunchHelp": "Ouvrir l'aide",
"workbench.action.terminal.attachToSession": "Attacher à la session",
"workbench.action.terminal.clear": "Effacer",
- "workbench.action.terminal.clearCommandHistory": "Effacer l’historique des commandes",
"workbench.action.terminal.clearSelection": "Effacer la sélection",
- "workbench.action.terminal.copyLastCommand": "Copier la dernière commande",
- "workbench.action.terminal.copySelection": "Copier la sélection",
- "workbench.action.terminal.copySelectionAsHtml": "Copier la sélection en HTML",
"workbench.action.terminal.createTerminalEditor": "Créer un nouveau terminal dans la zone de l’éditeur",
"workbench.action.terminal.createTerminalEditorSide": "Créer un nouveau terminal dans la zone de l’éditeur sur le côté",
"workbench.action.terminal.detachSession": "Détacher la session",
- "workbench.action.terminal.findNext": "Rechercher le suivant",
- "workbench.action.terminal.findPrevious": "Rechercher le précédent",
"workbench.action.terminal.focus.tabsView": "Affichage des onglets du terminal ayant le focus",
- "workbench.action.terminal.focusFind": "Focus sur la recherche",
"workbench.action.terminal.focusNext": "Focus sur le groupe de terminaux suivant",
"workbench.action.terminal.focusNextPane": "Focus sur le terminal suivant dans le groupe de terminaux",
"workbench.action.terminal.focusPrevious": "Focus sur le groupe de terminaux précédent",
"workbench.action.terminal.focusPreviousPane": "Focus sur le terminal précédent dans le groupe de terminaux",
- "workbench.action.terminal.goToRecentDirectory": "Accéder au répertoire récent...",
- "workbench.action.terminal.hideFind": "Masquer la recherche",
- "workbench.action.terminal.join": "Joindre des terminaux",
+ "workbench.action.terminal.join": "Joindre des terminaux...",
"workbench.action.terminal.join.insufficientTerminals": "Terminaux insuffisants pour l’action de jointure",
"workbench.action.terminal.join.onlySplits": "Tous les terminaux sont déjà joints",
"workbench.action.terminal.joinInstance": "Joindre des terminaux",
"workbench.action.terminal.kill": "Tuer l'instance active du terminal",
"workbench.action.terminal.killAll": "Tuer tous les terminaux",
"workbench.action.terminal.killEditor": "Arrêter le terminal actif dans la zone de l’éditeur",
- "workbench.action.terminal.navigationModeExit": "Quitter le mode de navigation",
- "workbench.action.terminal.navigationModeFocusNext": "Mettre le focus sur la ligne suivante (mode de navigation)",
- "workbench.action.terminal.navigationModeFocusNextPage": "Focus sur la page suivante (mode Déplacement)",
- "workbench.action.terminal.navigationModeFocusPrevious": "Mettre le focus sur la ligne précédente (Mode de navigation)",
- "workbench.action.terminal.navigationModeFocusPreviousPage": "Focus sur la page précédente (mode Déplacement)",
"workbench.action.terminal.new": "Créer un nouveau terminal",
"workbench.action.terminal.newInActiveWorkspace": "Créer un nouveau terminal (dans l'espace de travail actif)",
- "workbench.action.terminal.newWithCwd": "Créer un nouveau terminal à partir d'un répertoire de travail personnalisé",
"workbench.action.terminal.newWithCwd.cwd": "Répertoire où démarrer le terminal",
"workbench.action.terminal.newWithProfile": "Créer un nouveau terminal avec profil",
"workbench.action.terminal.newWithProfile.profileName": "Nom du profil à créer.",
"workbench.action.terminal.newWorkspacePlaceholder": "Sélectionner le répertoire de travail actuel pour le nouveau terminal",
- "workbench.action.terminal.openDetectedLink": "Ouvrir le lien détecté...",
- "workbench.action.terminal.openLastLocalFileLink": "Ouvrir le dernier lien vers le fichier local",
- "workbench.action.terminal.openLastUrlLink": "Ouvrir le dernier lien d’URL",
"workbench.action.terminal.openSettings": "Configurer les paramètres du terminal",
- "workbench.action.terminal.paste": "Coller dans le terminal actif",
- "workbench.action.terminal.pasteSelection": "Coller la sélection dans le terminal actif",
+ "workbench.action.terminal.overriddenCwdDescription": "(Remplacé) {0}",
"workbench.action.terminal.relaunch": "Relancer le terminal actif",
- "workbench.action.terminal.renameWithArg": "Renommer le terminal actuellement actif",
+ "workbench.action.terminal.rename.prompt": "Entrer le nom du terminal",
"workbench.action.terminal.renameWithArg.name": "Nouveau nom du terminal",
"workbench.action.terminal.renameWithArg.noName": "Aucun argument de nom fourni",
"workbench.action.terminal.resizePaneDown": "Redimensionner le terminal vers le bas",
@@ -8964,46 +14490,24 @@
"workbench.action.terminal.resizePaneUp": "Redimensionner le terminal vers le haut",
"workbench.action.terminal.runActiveFile": "Exécuter le fichier actif dans le terminal actif",
"workbench.action.terminal.runActiveFile.noFile": "Seuls les fichiers sur disque peuvent être exécutés dans le terminal",
- "workbench.action.terminal.runRecentCommand": "Exécuter la commande récente...",
"workbench.action.terminal.runSelectedText": "Exécuter le texte sélectionné dans le terminal actif",
"workbench.action.terminal.scrollDown": "Faire défiler vers le bas (ligne)",
"workbench.action.terminal.scrollDownPage": "Faire défiler vers le bas (page)",
"workbench.action.terminal.scrollToBottom": "Faire défiler jusqu'en bas",
- "workbench.action.terminal.scrollToNextCommand": "Faire défiler jusqu'à la prochaine commande",
- "workbench.action.terminal.scrollToPreviousCommand": "Faire défiler jusqu'à la commande précédente",
"workbench.action.terminal.scrollToTop": "Faire défiler jusqu'en haut",
"workbench.action.terminal.scrollUp": "Faire défiler vers le haut (ligne)",
"workbench.action.terminal.scrollUpPage": "Faire défiler vers le haut (page)",
- "workbench.action.terminal.searchWorkspace": "Rechercher dans l'espace de travail",
"workbench.action.terminal.selectAll": "Tout sélectionner",
"workbench.action.terminal.selectDefaultShell": "Sélectionner le profil par défaut",
- "workbench.action.terminal.selectToNextCommand": "Sélectionnez pour la commande suivante",
- "workbench.action.terminal.selectToNextLine": "Sélectionner pour la ligne suivante",
- "workbench.action.terminal.selectToPreviousCommand": "Sélectionnez pour la commande précédente",
- "workbench.action.terminal.selectToPreviousLine": "Sélectionner pour la ligne précédente",
- "workbench.action.terminal.sendSequence": "Envoyer une séquence personnalisée au terminal",
+ "workbench.action.terminal.selectToNextCommand": "Sélectionner jusqu’à la commande suivante",
+ "workbench.action.terminal.selectToNextLine": "Sélectionner jusqu’à la ligne suivante",
+ "workbench.action.terminal.selectToPreviousCommand": "Sélectionner jusqu’à la commande précédente",
+ "workbench.action.terminal.selectToPreviousLine": "Sélectionner jusqu’à la ligne précédente",
"workbench.action.terminal.setFixedDimensions": "Définir les dimensions fixes",
- "workbench.action.terminal.showEnvironmentInformation": "Afficher les informations sur l'environnement",
- "workbench.action.terminal.showTabs": "Afficher les onglets",
- "workbench.action.terminal.sizeToContentWidth": "Activer/désactiver la taille vers la largeur du contenu",
"workbench.action.terminal.splitInActiveWorkspace": "Diviser le Terminal (dans l'espace de travail actif)",
- "workbench.action.terminal.switchTerminal": "Changer de terminal",
- "workbench.action.terminal.toggleEscapeSequenceLogging": "Activer/désactiver la journalisation de la séquence d'échappement",
- "workbench.action.terminal.toggleFindCaseSensitive": "Activer/désactiver la recherche sensible à la casse",
- "workbench.action.terminal.toggleFindRegex": "Activer/désactiver la recherche à l'aide de la notation regex",
- "workbench.action.terminal.toggleFindWholeWord": "Activer/désactiver la recherche à l'aide du mot entier",
- "workbench.action.terminal.writeDataToTerminal": "Écrire des données sur le terminal",
- "workbench.action.terminal.writeDataToTerminal.prompt": "Entrez les données à écrire directement sur le terminal, en contournant le pty"
- },
- "vs/workbench/contrib/terminal/browser/terminalConfigHelper": {
- "install": "Installer",
- "useWslExtension.title": "L'extension '{0}' est recommandée pour ouvrir un terminal dans WSL."
- },
- "vs/workbench/contrib/terminal/browser/terminalDecorationsProvider": {
- "label": "Terminal"
+ "workbench.action.terminal.switchTerminal": "Changer de terminal"
},
"vs/workbench/contrib/terminal/browser/terminalEditorInput": {
- "cancel": "Annuler",
"confirmDirtyTerminal.button": "&&Terminer",
"confirmDirtyTerminal.detail": "La fermeture va entraîner l’arrêt des processus en cours d’exécution dans ce terminal.",
"confirmDirtyTerminal.message": "Voulez-vous arrêter les processus en cours d’exécution?",
@@ -9014,122 +14518,129 @@
"killTerminalIcon": "Icône permettant de tuer une instance de terminal.",
"newTerminalIcon": "Icône de création d'une instance de terminal.",
"renameTerminalIcon": "Icône de renommage dans le menu rapide du terminal.",
+ "terminalCommandHistoryFuzzySearch": "Icône de basculement de la recherche approximative de l’historique des commandes.",
+ "terminalCommandHistoryOpenFile": "Icône d’ouverture d’un fichier d’historique d’interpréteur de commandes.",
+ "terminalCommandHistoryOutput": "Icône d’affichage de la sortie d’une commande de terminal.",
+ "terminalCommandHistoryRemove": "Icône de suppression d’une commande de terminal de l’historique des commandes.",
+ "terminalDecorationError": "Icône d’une décoration de terminal d’une commande qui a rencontré une erreur.",
+ "terminalDecorationIncomplete": "Icône représentant une décoration de terminal d’une commande incomplète.",
+ "terminalDecorationMark": "Icône représentant une marque de décoration de terminal.",
+ "terminalDecorationSuccess": "Icône représentant une décoration de terminal d’une commande qui a réussi.",
"terminalViewIcon": "Icône de vue du terminal."
},
"vs/workbench/contrib/terminal/browser/terminalInstance": {
"bellStatus": "Appel",
+ "changeColor": "Sélectionner une couleur pour le terminal",
"configureTerminalSettings": "Configurer les paramètres du terminal",
- "confirmMoveTrashMessageFilesAndDirectories": "Voulez-vous vraiment coller {0} lignes de texte dans le terminal ?",
"disconnectStatus": "La connexion au processus a été perdue",
- "doNotAskAgain": "Ne plus me poser la question",
"keybindingHandling": "Certaines combinaisons de touches ne vont pas au terminal par défaut. À la place, elles sont gérées par {0}.",
"launchFailed.errorMessage": "Échec du lancement du processus de terminal : {0}.",
"launchFailed.exitCodeAndCommandLine": "Échec du lancement du processus de terminal \"{0}\" (code de sortie : {1}).",
"launchFailed.exitCodeOnly": "Échec du lancement du processus de terminal (code de sortie : {0}).",
"launchFailed.exitCodeOnlyShellIntegration": "La désactivation de l’intégration de l’interpréteur de commandes dans les paramètres utilisateur peut être utile.",
- "multiLinePasteButton": "&&Coller",
- "preview": "Aperçu :",
- "removeCommand": "Supprimer de l’historique des commandes",
- "selectRecentCommand": "Sélectionner une commande à exécuter (maintenez la touche Alt enfoncée pour modifier la commande)",
- "selectRecentCommandMac": "Sélectionner une commande à exécuter (maintenez la touche Alt enfoncée pour modifier la commande)",
- "selectRecentDirectory": "Sélectionner un répertoire à atteindre (maintenez la touche Alt enfoncée pour modifier la commande)",
- "selectRecentDirectoryMac": "Sélectionner un répertoire à atteindre (maintenez la touche Option enfoncée pour modifier la commande)",
"setTerminalDimensionsColumn": "Définir les dimensions fixes : colonne",
"setTerminalDimensionsRow": "Définir les dimensions fixes : ligne",
- "shellFileHistoryCategory": "Historique {0}",
"shellIntegration.learnMore": "En savoir plus sur l’intégration de l’interpréteur de commandes",
"shellIntegration.openSettings": "Ouvrir les paramètres utilisateur",
- "terminal.contiguousSearch": "Utiliser la recherche contiguë",
- "terminal.fuzzySearch": "Utiliser la recherche approximative",
"terminal.integrated.a11yPromptLabel": "Entrée du terminal",
- "terminal.integrated.a11yTooMuchOutput": "Trop de sorties à annoncer, naviguer dans les lignes manuellement pour lire",
- "terminal.integrated.copySelection.noSelection": "Le terminal n'a aucune sélection à copier",
+ "terminal.integrated.useAccessibleBuffer": "Utiliser le {0} de mémoire tampon accessible pour examiner manuellement la sortie",
+ "terminal.integrated.useAccessibleBufferNoKb": "Utiliser la commande Terminal : Focus sur la mémoire tampon accessible pour passer en revue manuellement la sortie",
"terminal.requestTrust": "La création d’un processus terminal nécessite l’exécution du code",
- "terminalNavigationMode": "Utiliser {0} et {1} pour parcourir la mémoire tampon du terminal",
+ "terminalHelpAriaLabel": "Utiliser {0} pour l’aide sur l’accessibilité des terminaux",
+ "terminalScreenReaderMode": "Exécuter la commande : activer/désactiver le mode d’accessibilité du lecteur d’écran pour une expérience optimisée de lecteur d’écran",
"terminalStaleTextBoxAriaLabel": "L'environnement {0} du terminal est obsolète. Pour plus d'informations, exécutez la commande Afficher les informations sur l'environnement",
"terminalTextBoxAriaLabel": "Terminal {0}",
"terminalTextBoxAriaLabelNumberAndTitle": "Terminal {0}, {1}",
- "terminalTypeLocal": "Local",
- "terminalTypeTask": "Tâche",
"terminated.exitCodeAndCommandLine": "Arrêt du processus de terminal \"{0}\". Code de sortie : {1}.",
"terminated.exitCodeOnly": "Arrêt du processus de terminal. Code de sortie : {0}.",
- "viewCommandOutput": "Afficher la sortie de la commande",
- "workbench.action.terminal.rename.prompt": "Entrer le nom du terminal",
"workspaceNotTrustedCreateTerminal": "Impossible de lancer un processus terminal dans un espace de travail non approuvé",
"workspaceNotTrustedCreateTerminalCwd": "Impossible de lancer un processus terminal dans un espace de travail non approuvé avec cwd {0} et userHome {1}"
},
- "vs/workbench/contrib/terminal/browser/terminalMainContribution": {
- "ptyHost": "Hôte Pty"
- },
"vs/workbench/contrib/terminal/browser/terminalMenus": {
"defaultTerminalProfile": "{0} (Par défaut)",
+ "launchProfile": "Lancement de profil...",
+ "miNewInNewWindow": "Nouveau terminal &&Fenêtre",
"miNewTerminal": "&&Nouveau terminal",
"miRunActiveFile": "Exécuter le fichier &&actif",
"miRunSelectedText": "Exécuter le texte &&sélectionné",
"miSplitTerminal": "Terminal divi&&sé",
- "splitTerminal": "Terminal divisé",
- "terminal.new": "Nouveau terminal",
+ "split.profile": "Terminal divisé avec profil",
+ "workbench.action.tasks.configureTaskRunner": "Configurer des tâches...",
+ "workbench.action.tasks.runTask": "Exécuter la tâche...",
"workbench.action.terminal.changeColor": "Modifier la couleur...",
"workbench.action.terminal.changeIcon": "Changer l’icône...",
"workbench.action.terminal.clear": "Effacer",
+ "workbench.action.terminal.clearLong": "Effacer le terminal",
"workbench.action.terminal.copySelection.short": "Copier",
"workbench.action.terminal.copySelectionAsHtml": "Copier au format HTML",
"workbench.action.terminal.joinInstance": "Joindre des terminaux",
- "workbench.action.terminal.new.short": "Nouveau terminal",
- "workbench.action.terminal.newWithProfile.short": "Nouveau terminal avec profil",
+ "workbench.action.terminal.newWithProfile.short": "Nouveau terminal avec profil...",
"workbench.action.terminal.openSettings": "Configurer les paramètres du terminal",
"workbench.action.terminal.paste.short": "Coller",
"workbench.action.terminal.renameInstance": "Renommer...",
+ "workbench.action.terminal.runActiveFile": "Exécuter le fichier actif",
+ "workbench.action.terminal.runSelectedText": "Exécuter le texte sélectionné",
"workbench.action.terminal.selectAll": "Tout sélectionner",
"workbench.action.terminal.selectDefaultProfile": "Sélectionner le profil par défaut",
- "workbench.action.terminal.showsTabs": "Afficher les onglets",
- "workbench.action.terminal.sizeToContentWidthInstance": "Activer/désactiver la taille vers la largeur du contenu",
+ "workbench.action.terminal.startVoice": "Démarrer la dictée",
+ "workbench.action.terminal.startVoiceEditor": "Démarrer la dictée",
+ "workbench.action.terminal.stopVoice": "Arrêter la dictée",
+ "workbench.action.terminal.stopVoiceEditor": "Arrêter la dictée",
"workbench.action.terminal.switchTerminal": "Changer de terminal"
},
"vs/workbench/contrib/terminal/browser/terminalProcessManager": {
+ "killportfailure": "Impossible d’arrêter l’écoute du processus sur le port {0}, la commande s’est arrêtée avec une erreur {1}",
"ptyHostRelaunch": "Redémarrage du terminal, car la connexion au processus de l'interpréteur de commandes a été perdue..."
},
"vs/workbench/contrib/terminal/browser/terminalProfileQuickpick": {
"ICreateContributedTerminalProfileOptions": "collaboratif",
+ "cancel": "Annuler",
"createQuickLaunchProfile": "Configurer le profil du terminal",
"enterTerminalProfileName": "Entrez le nom du profil du terminal",
"terminal.integrated.chooseDefaultProfile": "Sélectionnez votre profil de terminal par défaut",
"terminal.integrated.selectProfileToCreate": "Sélectionner le profil de terminal à créer",
"terminalProfileAlreadyExists": "Il existe déjà un profil de terminal portant ce nom",
"terminalProfiles": "profils",
- "terminalProfiles.detected": "détecté(s)"
- },
- "vs/workbench/contrib/terminal/browser/terminalProfileResolverService": {
- "migrateToProfile": "Migrer",
- "terminalProfileMigration": "Le terminal utilise des paramètres shell/shellArgs dépréciés, voulez-vous le migrer vers un profil ?"
- },
- "vs/workbench/contrib/terminal/browser/terminalQuickAccess": {
- "renameTerminal": "Renommer le terminal",
- "workbench.action.terminal.newWithProfilePlus": "Créer un nouveau terminal avec profil",
- "workbench.action.terminal.newplus": "Créer un nouveau terminal"
+ "terminalProfiles.detected": "détecté(s)",
+ "unsafePathWarning": "Ce profil de terminal utilise un chemin potentiellement dangereux qui peut être modifié par un autre utilisateur : {0}. Voulez-vous vraiment l’utiliser ?",
+ "yes": "Oui"
},
"vs/workbench/contrib/terminal/browser/terminalService": {
"localTerminalRemote": "Cet interpréteur de commandes est en cours d’exécution sur votre machine {0}locale{1}, et non sur la machine distante connectée",
"localTerminalVirtualWorkspace": "Cet interpréteur de commandes est ouvert sur un dossier {0}local{1}, et non sur le dossier virtuel",
"terminalService.terminalCloseConfirmationPlural": "Voulez-vous mettre fin à les sessions de terminal actives {0} ?",
"terminalService.terminalCloseConfirmationSingular": "Voulez-vous mettre fin à la session Terminal active?",
- "terminate": "Terminer"
+ "terminate": "&&Terminer"
},
"vs/workbench/contrib/terminal/browser/terminalTabbedView": {
"hideTabs": "Masquer les onglets",
"moveTabsLeft": "Déplacer les onglets vers la gauche",
"moveTabsRight": "Déplacer les onglets vers la droite"
},
+ "vs/workbench/contrib/terminal/browser/terminalTabsChatEntry": {
+ "terminal.tabs.chatEntryAriaLabelPlural": "Afficher {0} terminaux de conversation masqués",
+ "terminal.tabs.chatEntryAriaLabelSingle": "Afficher 1 terminal de conversation caché",
+ "terminal.tabs.chatEntryLabelPlural": "{0} Terminaux masqués",
+ "terminal.tabs.chatEntryLabelSingle": "{0} Terminal masqué",
+ "terminal.tabs.chatEntryTooltip": "Afficher les terminaux de conversation masqués"
+ },
"vs/workbench/contrib/terminal/browser/terminalTabsList": {
+ "label": "Terminal",
"splitTerminalAriaLabel": "Terminal {0} {1}, fraction {2} de {3}",
"terminal.tabs": "Onglets de terminal",
"terminalAriaLabel": "Terminal {0} {1}",
"terminalInputAriaLabel": "Tapez le nom du fichier. Appuyez sur Entrée pour confirmer ou sur Échap pour annuler."
},
"vs/workbench/contrib/terminal/browser/terminalTooltip": {
- "launchFailed.exitCodeOnlyShellIntegration": "Le processus de terminal n'a pas pu se lancer. La désactivation de l'intégration du shell avec terminal.integrated.shellIntegration.enabled peut aider.",
- "shellIntegration.activationFailed": "Échec de l’activation de l’intégration de l’interpréteur de commandes",
- "shellIntegration.enabled": "Intégration de l’interpréteur de commandes activée"
+ "hideDetails": "Masquer les détails",
+ "shellIntegration": "Intégration d’interpréteur de commandes",
+ "shellIntegration.basic": "Essentiel",
+ "shellIntegration.injectionFailed": "L’activation de l’injection a échoué",
+ "shellIntegration.no": "Non",
+ "shellIntegration.rich": "Enrichi",
+ "shellProcessTooltip.commandLine": "Ligne de commande : {0}",
+ "shellProcessTooltip.processId": "ID de processus : {0} ({1})",
+ "showDetails": "Afficher les détails"
},
"vs/workbench/contrib/terminal/browser/terminalView": {
"terminal.monospaceOnly": "Le terminal prend en charge seulement les polices à espacement fixe. Veillez à redémarrer VS Code s'il s'agit d'une police nouvellement installée.",
@@ -9138,41 +14649,48 @@
"terminals": "Ouvrez les terminaux."
},
"vs/workbench/contrib/terminal/browser/xterm/decorationAddon": {
- "changeDefaultIcon": "Modifier l’icône par défaut",
- "changeErrorIcon": "Icône Modifier l’erreur",
- "changeSuccessIcon": "Icône Modifier la réussite",
"gutter": "Décorations de commande de reliure",
+ "no": "Non",
"overviewRuler": "Décorations de commande de règle de vue d’ensemble",
- "terminal.configureCommandDecorations": "Configurer les décorations de commande",
+ "rerun": "Voulez-vous exécuter la commande : {0}",
+ "terminal.attachToChat": "Joindre à la conversation",
"terminal.copyCommand": "Copier la commande",
+ "terminal.copyCommandAndOutput": "Copier la commande et la sortie",
"terminal.copyOutput": "Copier la sortie",
"terminal.copyOutputAsHtml": "Copier la sortie au format HTML",
"terminal.learnShellIntegration": "En savoir plus sur l’intégration de l’interpréteur de commandes",
- "terminal.rerunCommand": "Commande de réexécution",
+ "terminal.rerunCommand": "Réexécuter la commande",
+ "toggleVisibility": "Activer/désactiver la visibilité",
+ "workbench.action.terminal.goToRecentDirectory": "Accéder au répertoire récent",
+ "workbench.action.terminal.runRecentCommand": "Exécuter la commande récente",
+ "workbench.action.terminal.toggleVisibility": "Activer/désactiver la visibilité",
+ "yes": "Oui"
+ },
+ "vs/workbench/contrib/terminal/browser/xterm/decorationStyles": {
+ "terminalCommandDecoration.running": "Exécution en cours",
+ "terminalCommandDecoration.unknown": "Inconnu",
"terminalPromptCommandFailed": "La commande s’est exécutée {0} et a échoué.",
+ "terminalPromptCommandFailed.duration": "La commande a exécuté {0}, pris {1} et échoué",
"terminalPromptCommandFailedWithExitCode": "La commande s’est exécutée {0} et a échoué (code de sortie {1})",
- "terminalPromptCommandSuccess": "Commande exécutée{0}",
- "terminalPromptContextMenu": "Afficher les actions de commande",
- "toggleVisibility": "Activer/désactiver la visibilité"
+ "terminalPromptCommandFailedWithExitCode.duration": "La commande a exécuté {0}, pris {1} et échoué (code de sortie {2})",
+ "terminalPromptCommandSuccess": "Commande exécutée {0} maintenant",
+ "terminalPromptCommandSuccess.": "Commande exécutée {0} ",
+ "terminalPromptCommandSuccess.duration": "La commande a exécuté {0} et a pris {1}",
+ "terminalPromptContextMenu": "Afficher les actions de commande"
},
"vs/workbench/contrib/terminal/browser/xterm/xtermTerminal": {
- "dontShowAgain": "Ne plus afficher",
- "no": "Non",
- "terminal.slowRendering": "L'accélération GPU du terminal semble lente sur votre ordinateur. Voulez-vous la désactiver, ce qui peut améliorer les performances ? [En savoir plus sur les paramètres de terminal](https://code.visualstudio.com/docs/editor/integrated-terminal#_changing-how-the-terminal-is-rendered).",
- "yes": "Oui"
+ "terminal.integrated.copySelection.noSelection": "Le terminal n'a aucune sélection à copier"
},
"vs/workbench/contrib/terminal/common/terminal": {
- "terminalCategory": "Terminal",
"vscode.extension.contributes.terminal": "Contribue aux fonctionnalités du terminal.",
+ "vscode.extension.contributes.terminal.completionProviders": "Définit les fournisseurs de complétion du terminal qui seront enregistrés lors de l’activation de l’extension.",
+ "vscode.extension.contributes.terminal.completionProviders.description": "Description de la fonction du fournisseur de complétion. Celle-ci sera affichée dans l’interface utilisateur des paramètres.",
"vscode.extension.contributes.terminal.profiles": "Définit les profils de terminal supplémentaires que l’utilisateur peut créer.",
"vscode.extension.contributes.terminal.profiles.id": "ID du fournisseur de profils de terminaux.",
"vscode.extension.contributes.terminal.profiles.title": "Titre de ce profil de terminal.",
- "vscode.extension.contributes.terminal.types": "Définit les types de terminal supplémentaires que l'utilisateur peut créer.",
- "vscode.extension.contributes.terminal.types.command": "Commande à exécuter quand l'utilisateur crée ce type de terminal.",
"vscode.extension.contributes.terminal.types.icon": "Codicon, URI ou URI Light et Dark à associer à ce type de terminal",
"vscode.extension.contributes.terminal.types.icon.dark": "Chemin de l'icône quand un thème foncé est utilisé",
- "vscode.extension.contributes.terminal.types.icon.light": "Chemin de l'icône quand un thème clair est utilisé",
- "vscode.extension.contributes.terminal.types.title": "Titre de ce type de terminal."
+ "vscode.extension.contributes.terminal.types.icon.light": "Chemin de l'icône quand un thème clair est utilisé"
},
"vs/workbench/contrib/terminal/common/terminalColorRegistry": {
"terminal.ansiColor": "Couleur ANSI '{0}' dans le terminal.",
@@ -9184,6 +14702,8 @@
"terminal.findMatchHighlightBackground": "Couleur des autres correspondances de recherche dans le terminal. La couleur ne doit pas être opaque afin de ne pas masquer le contenu du terminal sous-jacent.",
"terminal.findMatchHighlightBorder": "La couleur de bordure des autres correspondances de recherche dans le terminal.",
"terminal.foreground": "Couleur de premier plan du terminal.",
+ "terminal.hoverHighlightBackground": "Surlignage sous le mot sélectionné par pointage. La couleur ne doit pas être opaque pour ne pas masquer les ornements sous-jacents.",
+ "terminal.inactiveSelectionBackground": "La couleur de l’arrière-plan de sélection du terminal lorsqu’il n’a pas le focus.",
"terminal.selectionBackground": "Couleur d'arrière-plan de sélection du terminal.",
"terminal.selectionForeground": "Couleur de premier plan de sélection du terminal. Lorsque la valeur est Null, le premier plan de la sélection est conservé et la fonctionnalité de ratio de contraste minimal est appliquée.",
"terminal.tab.activeBorder": "Bordure située sur le côté de l’onglet du terminal dans le panneau. La valeur par défaut est tab.activeBorder.",
@@ -9192,40 +14712,52 @@
"terminalCommandDecoration.successBackground": "Couleur d’arrière-plan de décoration de commande de terminal pour les commandes réussies.",
"terminalCursor.background": "La couleur d’arrière-plan du curseur terminal. Permet de personnaliser la couleur d’un caractère recouvert par un curseur de bloc.",
"terminalCursor.foreground": "La couleur de premier plan du curseur du terminal.",
+ "terminalInitialHintForeground": "Couleur de premier plan de l’indice initial du terminal.",
+ "terminalOverviewRuler.border": "Couleur de bordure gauche de la règle d'aperçu.",
"terminalOverviewRuler.cursorForeground": "Couleur du curseur de la règle d’aperçu.",
"terminalOverviewRuler.findMatchHighlightForeground": "Couleur de marqueur de la règle d’aperçu pour rechercher des correspondances dans le terminal."
},
"vs/workbench/contrib/terminal/common/terminalConfiguration": {
- "cwd": "répertoire de travail actuel du terminal",
+ "cwd": "le répertoire de travail actuel du terminal.",
"cwdFolder": "le répertoire de travail actuel du terminal, affiché pour les espaces de travail multi-racines ou dans un espace de travail à racine unique lorsque la valeur diffère du répertoire de travail initial. Sous Windows, ce paramètre ne s'affiche que si l'intégration du shell est activée.",
- "local": "indique un terminal local dans un espace de travail distant",
+ "enableFileLinks.notRemote": "Activer uniquement hors d’un espace de travail distant.",
+ "enableFileLinks.off": "Toujours désactivé.",
+ "enableFileLinks.on": "Toujours activé.",
+ "hideOnStartup.always": "Toujours masquer le terminal, même si des sessions persistantes sont restaurées.",
+ "hideOnStartup.never": "Ne jamais masquer la vue de terminal au démarrage.",
+ "hideOnStartup.whenEmpty": "Masquer uniquement le terminal en l’absence de sessions persistantes restaurées.",
+ "local": "indique un terminal local dans un espace de travail distant.",
"openDefaultSettingsJson": "ouvrir le JSON des paramètres par défaut",
"openDefaultSettingsJson.capitalized": "Ouvrir les paramètres par défaut (JSON)",
- "process": "nom du processus terminal",
- "separator": "un séparateur conditionnel (\"-\") qui apparaît uniquement quand il est entouré de variables avec des valeurs ou du texte statique.",
- "sequence": "nom fourni au terminal par le processus",
- "task": "indique que ce terminal est associé à une tâche",
+ "process": "le nom du processus terminal.",
+ "progress": "l’état d’avancement signalé par la séquence « OSC 9;4 ».",
+ "separator": "un séparateur conditionnel {0} qui apparaît uniquement quand il est entouré de variables avec des valeurs ou du texte statique.",
+ "sequence": "le nom fourni au terminal par le processus.",
+ "shellCommand": "la commande en cours d’exécution en fonction de l’intégration d’interpréteur de commandes. Cela demande également une grande confiance dans la ligne de commande détectée, ce qui peut ne pas fonctionner dans certaines infrastructures d’invites.",
+ "shellPromptInput": "l’entrée d’invite complète de l’interpréteur de commandes en fonction de l’intégration d’interpréteur de commandes.",
+ "shellType": "le type d’interpréteur de commandes détecté.",
+ "task": "indique que ce terminal est associé à une tâche.",
"terminal.integrated.allowChords": "Indique s’il faut autoriser ou non les combinaisons de touches d’une combinaison de touches dans le terminal. Notez que lorsque cela est vrai et que la frappe entraîne une pression, elle contourne {0}, la définition de la valeur false est particulièrement utile lorsque vous souhaitez que ctrl+k accède à votre interpréteur de commandes (pas VS Code).",
- "terminal.integrated.allowMnemonics": "Indique si les mnémoniques de barre de menus (par exemple alt+f) sont autorisées à déclencher l'ouverture de la barre de menus. Notez que si la valeur est true, toutes les frappes de la touche alt ignorent l'interpréteur de commandes. Cela n'a aucun effet sur macOS.",
+ "terminal.integrated.allowMnemonics": "Indique si les mnémoniques de barre de menus (par exemple Alt+F) sont autorisées à déclencher l’ouverture de la barre de menus. Notez que si la valeur est true, toutes les frappes de la touche alt ignorent l’interpréteur de commandes. Cela n'a aucun effet sur macOS.",
+ "terminal.integrated.allowedLinkSchemes": "Tableau de chaînes contenant les schémas d’URI pour lequel le terminal est autorisé à ouvrir des liens. Par défaut, seul un petit sous-ensemble de schémas possibles est autorisé pour des raisons de sécurité.",
"terminal.integrated.altClickMovesCursor": "Si cette option est activée, alt/option + clic repositionne le curseur d’invite sous la souris lorsque {0} est défini sur {1} (valeur par défaut). Cela peut ne pas fonctionner de manière fiable en fonction de votre interpréteur de commandes.",
- "terminal.integrated.autoReplies": "Ensemble de messages auxquels, lorsqu’ils sont rencontrés dans le terminal, ils sont automatiquement répondus. À condition que le message soit suffisamment spécifique, cela peut aider à automatiser les réponses courantes. remarques\r\n\r\n:\r\n\r\n- Utilisez {0} pour répondre automatiquement à l’invite de fin de traitement par lots sur Windows.\r\n: le message inclut des séquences d’échappement afin que la réponse ne se produise pas avec du texte de style.\r\n: chaque réponse ne peut se produire qu’une fois par seconde.\r\n- Utilisez {1} dans la réponse pour indiquer la clé Entrée.\r\n: pour annuler la définition d’une clé par défaut, définissez la valeur sur Null.\r\n- Redémarrez VS Code si le nouveau ne s’applique pas.",
- "terminal.integrated.autoReplies.reply": "La réponse à envoyer au processus.",
"terminal.integrated.bellDuration": "Nombre de millisecondes d’affichage la cloche d’appel dans un onglet de terminal lors de son déclenchement.",
"terminal.integrated.commandsToSkipShell": "Ensemble d’ID de commandes dont les combinaisons de touches ne sont pas envoyées à l’interpréteur de commandes mais sont toujours prises en charge par VS Code. Cela permet aux combinaisons de touches qui sont normalement consommées par l’interpréteur de commandes de produire le même résultat que dans une situation où le terminal n’a pas le focus, par exemple `Ctrl+P` pour lancer Quick Open.\r\n\r\n\r\n\r\nDe nombreuses commandes sont ignorées par défaut. Pour remplacer une valeur par défaut et passer la combinaison de touches de cette commande à l’interpréteur de commandes, ajoutez la commande précédée du caractère `-`. Par exemple, ajoutez `-workbench.action.quickOpen` pour autoriser la combinaison `Ctrl+P` à atteindre l’interpréteur de commandes.\r\n\r\n\r\n\r\nLa liste suivante des commandes ignorées par défaut est tronquée quand elle est affichée dans l’éditeur de paramètres. Pour voir la liste complète, {1} puis recherchez la première commande dans la liste ci-dessous.\r\n\r\n \r\n\r\nCommandes ignorées par défaut´:\r\n\r\n{0}",
- "terminal.integrated.confirmOnExit": "Détermine s'il est nécessaire de confirmer à la fermeture de la fenêtre s’il existe de sessions de terminal actives.",
+ "terminal.integrated.confirmOnExit": "Contrôle s’il faut confirmer la fermeture de la fenêtre s’il existe des sessions de terminal actives. Les terminaux d’arrière-plan comme ceux lancés par certaines extensions ne déclenchent pas la confirmation.",
"terminal.integrated.confirmOnExit.always": "Confirmez toujours l’existence de terminaux.",
"terminal.integrated.confirmOnExit.hasChildProcesses": "Confirmez s’il existe des terminaux qui ont des processus enfants.",
"terminal.integrated.confirmOnExit.never": "Ne jamais confirmer.",
- "terminal.integrated.confirmOnKill": "Contrôle la confirmation ou non de la mise à mort des terminaux lorsqu'ils ont des processus enfants. Lorsqu'il est défini sur éditeur, les terminaux dans la zone de l'éditeur seront marqués comme modifiés lorsqu'ils ont des processus enfants. Notez que la détection des processus enfants peut ne pas fonctionner correctement pour les shells comme Git Bash qui n'exécutent pas leurs processus en tant que processus enfants du shell.",
+ "terminal.integrated.confirmOnKill": "Contrôle la confirmation ou non de l’arrêt des terminaux lorsqu’ils ont des processus enfants. Lorsqu’il est défini sur l’éditeur, les terminaux dans la zone de l’éditeur sont marqués comme modifiés quand ils ont des processus enfants. Notez que la détection des processus enfants peut ne pas fonctionner correctement pour les shells comme Git Bash qui n’exécutent pas leurs processus en tant que processus enfants du shell. Les terminaux en arrière-plan, comme ceux lancés par des extensions, ne déclenchent pas la confirmation.",
"terminal.integrated.confirmOnKill.always": "Confirmez si le terminal est se trouve dans l’éditeur ou le panneau.",
"terminal.integrated.confirmOnKill.editor": "Confirmez si le terminal se trouve dans l’éditeur.",
"terminal.integrated.confirmOnKill.never": "Ne jamais confirmer.",
"terminal.integrated.confirmOnKill.panel": "Confirmez si le terminal se trouve dans le panneau.",
"terminal.integrated.copyOnSelection": "Détermine si le texte sélectionné dans le terminal doit être copié dans le Presse-papiers.",
"terminal.integrated.cursorBlinking": "Détermine si le curseur du terminal doit clignoter.",
- "terminal.integrated.cursorStyle": "Contrôle le style du curseur du terminal.",
+ "terminal.integrated.cursorStyle": "Contrôle le style du curseur de terminal lorsque le terminal est ciblé.",
+ "terminal.integrated.cursorStyleInactive": "Contrôle le style du curseur de terminal lorsque le terminal n’est pas ciblé.",
"terminal.integrated.cursorWidth": "Contrôle la largeur du curseur lorsque {0} est défini sur {1}.",
- "terminal.integrated.customGlyphs": "Indique s’il faut dessiner les glyphes personnalisés pour les caractères de dessin de zone et d’élément de bloc plutôt que d’utiliser la police, ce qui améliore généralement le rendu avec des lignes continues. Notez que cela ne fonctionne pas avec le convertisseur DOM.",
+ "terminal.integrated.customGlyphs": "Indique s’il faut dessiner des glyphes personnalisés pour les caractères de dessin d’élément de bloc et de zone au lieu d’utiliser la police, ce qui produit généralement un meilleur rendu avec des lignes continues. Notez que cela ne fonctionne pas lorsque {0} est désactivé.",
"terminal.integrated.cwd": "Chemin explicite de lancement du terminal. Il est utilisé en tant que répertoire de travail actif du processus d'interpréteur de commandes. Cela peut être particulièrement utile dans les paramètres d'espace de travail, si le répertoire racine n'est pas un répertoire de travail actif adéquat.",
"terminal.integrated.defaultLocation": "Contrôle l’emplacement où s’affichent les nouveaux terminaux créés.",
"terminal.integrated.defaultLocation.editor": "Créer des terminaux dans l’éditeur",
@@ -9234,70 +14766,81 @@
"terminal.integrated.detectLocale.auto": "Définissez la variable d'environnement '$LANG' si la variable existante est manquante, ou si elle ne finit pas par '.UTF-8'.",
"terminal.integrated.detectLocale.off": "Ne définissez pas la variable d'environnement '$LANG'.",
"terminal.integrated.detectLocale.on": "Définissez toujours la variable d'environnement '$LANG'.",
+ "terminal.integrated.developer.devMode": "Activez le mode développeur pour le terminal. Cela affiche des informations de débogage supplémentaires et des visualisations pour les séquences d’intégration du shell.",
+ "terminal.integrated.developer.ptyHost.latency": "Latence simulée en millisecondes appliquée à tous les appels effectués vers l’hôte pty. Cela permet de tester le comportement du terminal dans des conditions de latence élevée.",
+ "terminal.integrated.developer.ptyHost.startupDelay": "Délai de démarrage simulé en millisecondes pour le processus hôte pty. Cela permet de tester l’initialisation du terminal dans des conditions de démarrage lent.",
"terminal.integrated.drawBoldTextInBrightColors": "Détermine si le texte en gras dans le terminal doit toujours utiliser la variante de couleur ANSI \"bright\".",
- "terminal.integrated.enableBell": "Contrôle si l’appel du terminal est activé, cet appel s’affiche sous la forme d’une cloche près du nom du terminal.",
- "terminal.integrated.enableFileLinks": "Indique si les liens de fichiers doivent être activés dans le terminal. Les liens peuvent être lents quand vous travaillez sur un lecteur réseau, car chaque lien de fichier est vérifié par rapport au système de fichiers. Le changement de cette option ne prend effet que sur les nouveaux terminaux.",
- "terminal.integrated.enableMultiLinePasteWarning": "Afficher une boîte de dialogue d’avertissement lors du collage de plusieurs lignes dans le terminal. La boîte de dialogue ne s’affiche pas quand :\r\n\r\n- Le mode collage entre crochets est activé (l’interpréteur de commandes prend en charge le collage multiligne en mode natif)\r\n- Le collage est géré par la ligne de lecture de l’interpréteur de commandes (dans le cas de pwsh)",
+ "terminal.integrated.enableBell": "Cela est désormais déconseillé. Utilisez plutôt les paramètres `terminal.integrated.enableVisualBell` et `accessibility.signals.terminalBell`.",
+ "terminal.integrated.enableFileLinks": "Indique si les liens de fichiers doivent être activés dans les terminaux. Les liens peuvent être lents quand vous travaillez sur un lecteur réseau, car chaque lien de fichier est vérifié par rapport au système de fichiers. Le changement de cette option ne prend effet que sur les nouveaux terminaux.",
+ "terminal.integrated.enableImages": "Active la prise en charge des images dans le terminal. Cela ne fonctionne que lorsque {0} est activé. Le protocole d’image incluse de sixel et iTerm est pris en charge sur Linux et macOS. Cette opération ne fonctionne que sur Windows pour les versions de ConPTY >= v2 qui est expédiée avec Windows lui-même, voir également {1}. Les images ne seront actuellement pas restaurées entre les rechargements/reconnexions de fenêtres.",
+ "terminal.integrated.enableMultiLinePasteWarning": "Détermine si une boîte de dialogue d’avertissement doit s’afficher lors du collage de plusieurs lignes dans le terminal.",
+ "terminal.integrated.enableMultiLinePasteWarning.always": "Toujours afficher l’avertissement si le texte contient une nouvelle ligne.",
+ "terminal.integrated.enableMultiLinePasteWarning.auto": "Activez l’avertissement, mais ne l’affichez pas quand :\r\n\r\n- Le mode collage entre crochets est activé (l’interpréteur de commandes prend en charge le collage multiligne en mode natif)\r\n- Le collage est géré par la ligne de lecture de l’interpréteur de commandes (dans le cas de pwsh)",
+ "terminal.integrated.enableMultiLinePasteWarning.never": "Ne jamais afficher l’avertissement.",
"terminal.integrated.enablePersistentSessions": "Permet la persistance des sessions/historiques de terminal de l'espace de travail entre les rechargements de fenêtres.",
+ "terminal.integrated.enableVisualBell": "Contrôle si la cloche du terminal visuel est activée. Cela s’affiche en regard du nom du terminal.",
"terminal.integrated.env.linux": "Objet et variables d'environnement ajoutés au processus de VS Code pour être utilisés par le terminal sur Linux. Affectez la valeur 'null' pour supprimer la variable d'environnement.",
"terminal.integrated.env.osx": "Objet et variables d'environnement ajoutés au processus de VS Code pour être utilisés par le terminal sur macOS. Affectez la valeur 'null' pour supprimer la variable d'environnement.",
"terminal.integrated.env.windows": "Objet et variables d'environnement ajoutés au processus de VS Code pour être utilisés par le terminal sur Windows. Affectez la valeur 'null' pour supprimer la variable d'environnement.",
- "terminal.integrated.environmentChangesIndicator": "Indique s'il est nécessaire d'afficher l'indicateur des changements apportés à un environnement sur chaque terminal. Cet indicateur précise si des extensions ont été effectuées, ou si vous souhaitez apporter des changements à l'environnement du terminal.",
- "terminal.integrated.environmentChangesIndicator.off": "Désactivez l'indicateur.",
- "terminal.integrated.environmentChangesIndicator.on": "Activez l'indicateur.",
- "terminal.integrated.environmentChangesIndicator.warnonly": "Affiche uniquement l'indicateur d'avertissement qui montre que l'environnement d'un terminal est 'obsolète'. N'affiche pas l'indicateur d'information qui montre que l'environnement d'un terminal a été modifié par une extension.",
- "terminal.integrated.environmentChangesRelaunch": "Indique si les terminaux doivent être relancés automatiquement quand l'extension souhaite contribuer à son environnement et qu'aucune interaction n'a eu lieu jusqu'à maintenant.",
+ "terminal.integrated.environmentChangesRelaunch": "Indique si les terminaux doivent être relancés automatiquement quand les extensions souhaitent contribuer à leur environnement et qu’aucune interaction n’a eu lieu jusqu’à maintenant.",
"terminal.integrated.fastScrollSensitivity": "Multiplicateur de vitesse de défilement quand la touche Alt est enfoncée.",
- "terminal.integrated.fontFamily": "Contrôle la famille de polices du terminal. La valeur par défaut est {0}valeur.",
+ "terminal.integrated.focusAfterRun": "Détermine si le terminal, la mémoire tampon accessible ou aucun des deux sera ciblé après l’exécution de « Terminal : Exécuter le texte sélectionné dans le terminal actif ».",
+ "terminal.integrated.focusAfterRun.accessible-buffer": "Toujours cibler la mémoire tampon accessible.",
+ "terminal.integrated.focusAfterRun.none": "Ne rien faire.",
+ "terminal.integrated.focusAfterRun.terminal": "Toujours cibler le terminal.",
+ "terminal.integrated.fontFamily": "Contrôle la famille de polices du terminal. La valeur par défaut est la valeur de {0}.",
+ "terminal.integrated.fontLigatures.enabled": "Contrôle si les ligatures de police sont activées dans le terminal. Les ligatures ne fonctionnent que si le {0} configuré les prend en charge.",
+ "terminal.integrated.fontLigatures.fallbackLigatures": "Lorsque {0} est activé et que le {1} particulier ne peut pas être analysé, il s’agit de l’ensemble de séquences de caractères qui sont toujours dessinées ensemble. Cela permet l’utilisation d’un ensemble fixe de ligatures, même si la police n’est pas prise en charge.",
+ "terminal.integrated.fontLigatures.featureSettings": "Contrôle les paramètres de fonctionnalité de police utilisés lorsque les ligatures sont activées, au format de la propriété CSS `font-feature-settings`. Voici quelques exemples qui peuvent être valides en fonction de la police :",
"terminal.integrated.fontSize": "Contrôle la taille de police en pixels du terminal.",
"terminal.integrated.fontWeight": "Épaisseur de police à utiliser dans le terminal pour le texte qui n'est pas en gras. Accepte les mots clés \"normal\" et \"bold\", ou les nombres compris entre 1 et 1 000.",
"terminal.integrated.fontWeightBold": "Épaisseur de police à utiliser dans le terminal pour le texte qui est en gras. Accepte les mots clés \"normal\" et \"bold\", ou les nombres compris entre 1 et 1 000.",
"terminal.integrated.fontWeightError": "Seuls les mots clés \"normal\" et \"bold\", ou les nombres compris entre 1 et 1 000 sont autorisés.",
"terminal.integrated.gpuAcceleration": "Contrôle si le terminal utilise le GPU pour son affichage.",
"terminal.integrated.gpuAcceleration.auto": "Laisse VS Code détecter le renderer qui offre la meilleure expérience.",
- "terminal.integrated.gpuAcceleration.canvas": "Utilisez le générateur de rendu de toile de secours du terminal, qui utilise un contexte 2d au lieu de webgl, ce qui peut être plus performant sur certains systèmes. Notez que certaines fonctionnalités sont limitées dans le moteur de rendu de toile, comme la sélection opaque.",
"terminal.integrated.gpuAcceleration.off": "Désactivez l’accélération GPU dans le terminal. Le terminal s’affiche beaucoup plus lentement lorsque l’accélération GPU est désactivée, mais il doit fonctionner de manière fiable sur tous les systèmes.",
"terminal.integrated.gpuAcceleration.on": "Active l'accélération GPU dans le terminal.",
- "terminal.integrated.letterSpacing": "Contrôle l'espacement des lettres du terminal. Il s'agit d'une valeur entière qui représente la quantité de pixels supplémentaires à ajouter entre les caractères.",
+ "terminal.integrated.hideOnLastClosed": "Indique si la vue du terminal doit être masquée lors de la fermeture du dernier terminal. Cela se produit uniquement lorsque le terminal est la seule vue visible dans le conteneur d’affichage.",
+ "terminal.integrated.hideOnStartup": "Indique s’il faut masquer la vue de terminal au démarrage, ce qui évite de créer un terminal en l’absence de sessions persistantes.",
+ "terminal.integrated.ignoreBracketedPasteMode": "Détermine si le terminal ignore le mode collage entre crochets même si le terminal a été mis dans le mode, sans les séquences {0} et {1} lors du collage. Cela est utile lorsque l’interpréteur de commandes ne respecte pas le mode, ce qui peut se produire dans les sous-interpréteurs de commandes, par exemple.",
+ "terminal.integrated.letterSpacing": "Contrôle l'espacement des lettres du terminal. Il s'agit d'une valeur entière qui représente le nombre de pixels supplémentaires à ajouter entre les caractères.",
"terminal.integrated.lineHeight": "Contrôle la hauteur de ligne du terminal. Ce nombre est multiplié par la taille de police du terminal pour obtenir la hauteur de ligne réelle en pixels.",
- "terminal.integrated.localEchoEnabled": "Quand l’écho local doit être activé. Cela remplacera {0}",
- "terminal.integrated.localEchoEnabled.auto": "Activé uniquement pour les espaces de travail distants",
- "terminal.integrated.localEchoEnabled.off": "Toujours désactivé",
- "terminal.integrated.localEchoEnabled.on": "Toujours activé",
- "terminal.integrated.localEchoExcludePrograms": "L'écho local sera désactivé si l'un de ces noms de programmes est trouvé dans le titre du terminal.",
- "terminal.integrated.localEchoLatencyThreshold": "Durée du retard réseau, en millisecondes, pendant lequel les modifications locales sont répercutées sur le terminal sans attendre la reconnaissance du serveur. Si la valeur est '0', l'écho local sera toujours activé, si la valeur est '-1', il sera désactivé.",
- "terminal.integrated.localEchoStyle": "Style du texte répercuté localement dans le terminal : style de police ou couleur RVB.",
"terminal.integrated.macOptionClickForcesSelection": "Détermine si la sélection doit être forcée quand Option+clic est utilisé sur macOS. Cela permet de forcer une sélection normale (ligne) et d'interdire l'utilisation du mode de sélection de colonne. Cela permet de copier et de coller à l'aide de la sélection de terminal classique, par exemple, quand le mode souris est activé dans tmux.",
"terminal.integrated.macOptionIsMeta": "Détermine s'il est nécessaire de traiter la clé d'option en tant que touche Méta dans le terminal sur macOS.",
+ "terminal.integrated.middleClickBehavior": "Contrôle la façon dont le terminal réagit au clic central.",
+ "terminal.integrated.middleClickBehavior.default": "Plateforme par défaut pour le focus sur le terminal. Sur Linux, cette opération collera également la sélection.",
+ "terminal.integrated.middleClickBehavior.paste": "Coller au milieu du clic.",
"terminal.integrated.minimumContrastRatio": "Lorsqu'elle est définie, la couleur de premier plan de chaque cellule change pour tenter de respecter le rapport de contraste spécifié. Notez que cela ne s'appliquera pas aux caractères de type `powerline`, conformément à la règle #146406.Exemples de valeurs : \r\n\r\n - 1 : Ne rien faire et utiliser les couleurs standard du thème. \r\n- 4.5 : [Conformité WCAG AA (minimum)](https://www.w3.org/TR/UNDERSTANDING-WCAG20/visual-audio-contrast-contrast.html) (valeur par défaut). \r\n- 7 : [Conformité WCAG AAA (améliorée)](https://www.w3.org/TR/UNDERSTANDING-WCAG20/visual-audio-contrast7.html). \r\n- 21 : blanc sur noir ou noir sur blanc.",
"terminal.integrated.mouseWheelScrollSensitivity": "Multiplicateur à utiliser sur le 'deltaY' des événements de défilement de la roulette de la souris.",
- "terminal.integrated.persistentSessionReviveProcess": "Lorsque le processus terminal doit être arrêté (par exemple, à la fermeture d'une fenêtre ou d'une application), cela détermine quand le contenu/l’historique de la session précédente du terminal doit être restauré et les processus doivent être recréés lors de la prochaine ouverture de l'espace de travail. \r\n\r\nAvertissements\r\n\r\n : – La restauration du répertoire de travail actuel du processus dépend de sa prise en charge par le shell. \r\n- Le temps de persistance de la session pendant l'arrêt est limité, de sorte qu'elle peut être interrompue lors de l'utilisation de connexions distantes à forte latence.",
+ "terminal.integrated.persistentSessionReviveProcess": "Lorsque le processus du terminal doit être arrêté (par exemple, à la fermeture d'une fenêtre ou d'une application), cela détermine le moment où le contenu/l’historique de la session précédente du terminal doit être restauré et les processus doivent être recréés lors de l’ouverture suivante de l'espace de travail.\r\n\r\nAvertissements :\r\n\r\n – La restauration du répertoire de travail actuel du processus dépend de sa prise en charge par le shell.\r\n– Le temps de persistance de la session pendant l'arrêt est limité, de sorte qu'elle peut être interrompue lors de l'utilisation de connexions distantes à forte latence.",
"terminal.integrated.persistentSessionReviveProcess.never": "Ne restaurez jamais les mémoires tampons du terminal ou recréez le processus.",
"terminal.integrated.persistentSessionReviveProcess.onExit": "Réessayez les processus après la fermeture de la dernière fenêtre sur Windows/Linux ou lorsque la commande « workbench.action.quit » est déclenchée (palette de commandes, combinaison de touches, menu).",
"terminal.integrated.persistentSessionReviveProcess.onExitAndWindowClose": "Réessayez les processus après la fermeture de la dernière fenêtre sur Windows/Linux ou lorsque la commande « workbench.action.quit » est déclenchée (palette de commandes, combinaison de touches, menu) ou lorsque la fenêtre est fermée.",
+ "terminal.integrated.rescaleOverlappingGlyphs": "Indique s’il faut mettre à l’échelle horizontalement des glyphes d’une seule cellule, mais qui ont des glyphes qui chevauchent les cellules suivantes. Cela se produit généralement pour les caractères de largeur ambigus (par exemple, les caractères numériques roman U+2160+) qui ne sont pas proposés dans les polices monospace. Les glyphes emoji ne sont jamais mis à l’échelle.",
"terminal.integrated.rightClickBehavior": "Contrôle la façon dont le terminal réagit au clic droit.",
"terminal.integrated.rightClickBehavior.copyPaste": "Effectue une copie quand il existe une sélection, sinon effectue un collage.",
"terminal.integrated.rightClickBehavior.default": "Affiche le menu contextuel.",
"terminal.integrated.rightClickBehavior.nothing": "Ne rien faire et transmettre l’événement au terminal.",
"terminal.integrated.rightClickBehavior.paste": "Effectue un collage à la suite d'un clic droit.",
"terminal.integrated.rightClickBehavior.selectWord": "Sélectionne le mot sous le curseur et affiche le menu contextuel.",
- "terminal.integrated.scrollback": "Contrôle la quantité maximale de lignes que le terminal conserve en mémoire tampon.",
+ "terminal.integrated.scrollback": "Contrôle le nombre maximal de lignes que le terminal conserve dans sa mémoire tampon. Nous pré-allouons de la mémoire en fonction de cette valeur pour garantir une expérience optimale. À mesure que la valeur augmente, la quantité de mémoire augmente également.",
"terminal.integrated.sendKeybindingsToShell": "Distribue la plupart des combinaisons de touches au terminal au lieu de workbench, en remplaçant {0}, qui peut être utilisé à des fins d’optimisation.",
- "terminal.integrated.shellIntegration.decorationIcon": "Contrôle l’icône qui sera utilisée pour les commandes ignorées/vides. Définir sur {0} pour masquer l’icône ou désactiver les décorations avec {1}.",
- "terminal.integrated.shellIntegration.decorationIconError": "Contrôle l’icône qui sera utilisée pour chaque commande dans les terminaux où l’intégration de l’interpréteur de commandes est activée et qui ont un code de sortie associé. Définir sur {0} pour masquer l’icône ou désactiver les décorations avec {1}.",
- "terminal.integrated.shellIntegration.decorationIconSuccess": "Contrôle l’icône qui sera utilisée pour chaque commande dans les terminaux où l’intégration de l’interpréteur de commandes est activée et qui n’ont pas de code de sortie associé. Définir sur {0} pour masquer l’icône ou désactiver les décorations avec {1}.",
"terminal.integrated.shellIntegration.decorationsEnabled": "Lorsque l’intégration de l’interpréteur de commandes est activée, ajoute une décoration pour chaque commande.",
"terminal.integrated.shellIntegration.decorationsEnabled.both": "Afficher les décorations dans la reliure (gauche) et la règle de vue d’ensemble (droite)",
"terminal.integrated.shellIntegration.decorationsEnabled.gutter": "Afficher les décorations de reliure à gauche du terminal",
"terminal.integrated.shellIntegration.decorationsEnabled.never": "Ne pas afficher les décorations",
"terminal.integrated.shellIntegration.decorationsEnabled.overviewRuler": "Afficher les décorations de règle de vue d’ensemble à droite du terminal",
- "terminal.integrated.shellIntegration.enabled": "Détermine si l’intégration de l’interpréteur de commandes est injectée automatiquement pour prendre en charge des fonctionnalités telles que le suivi de commandes amélioré et la détection actuelle du répertoire de travail. \r\n\r\n'intégration de Shell fonctionne en injectant l’interpréteur de commandes avec un script de démarrage. Le script fournit VS Code insights sur ce qui se passe dans le terminal.\r\n\r\nshells pris en charge :\r\n\r\n- Linux/macOS : bash, pwsh, zsh\r\n - Windows : pwsh\r\n\r\nCe paramètre s’applique uniquement lorsque des terminaux sont créés. Vous devez donc redémarrer vos terminaux pour qu’ils prennent effet.\r\n\r\n Notez que l’injection de script peut ne pas fonctionner si vous avez des arguments personnalisés définis dans le profil de terminal, un [bash complexe 'PROMPT_COMMAND'](https://code.visualstudio.com/docs/editor/integrated-terminal#_complex-bash-promptcommand) ou une autre configuration non prise en charge. Pour désactiver les décorations, consultez {0}",
- "terminal.integrated.shellIntegration.history": "Contrôle le nombre de commandes récemment utilisées à conserver dans l’historique des commandes du terminal. Réglez sur 0 pour désactiver l’historique des commandes du terminal.",
+ "terminal.integrated.shellIntegration.enabled": "Détermine si l’intégration de l’interpréteur de commandes est auto-injectée pour prendre en charge des fonctionnalités telles que le suivi amélioré des commandes et la détection du répertoire de travail actuel. \r\n\r\nL’intégration de l’interpréteur de commandes fonctionne en injectant un script de démarrage dans l’interpréteur de commandes. Le script donne à VS Code un aperçu de ce qui se passe dans le terminal.\r\n\r\nInterpréteurs de commandes pris en charge :\r\n\r\n– Linux/macOS : bash, fish, pwsh, zsh\r\n – Windows : pwsh, git bash\r\n\r\nCe paramètre ne s’applique que lors de la création des terminaux, vous devrez donc redémarrer vos terminaux pour qu’il prenne effet.\r\n\r\n Notez que l’injection de script peut ne pas fonctionner si vous avez des arguments personnalisés définis dans le profil du terminal, si vous avez activé {1}, si vous avez une [complex bash `PROMPT_COMMAND`](https://code.visualstudio.com/docs/editor/integrated-terminal#_complex-bash-promptcommand), ou si vous avez une autre configuration non supportée. Pour désactiver les décorations, consultez {0}",
+ "terminal.integrated.shellIntegration.environmentReporting": "Contrôle s’il faut signaler l’environnement d’interpréteur de commandes, en activant son utilisation dans des fonctionnalités telles que {0}. Cela peut entraîner un ralentissement lors de l’impression de l’invite de votre interpréteur de commandes.",
+ "terminal.integrated.shellIntegration.quickFixEnabled": "Lorsque l’intégration du shell est activée, activez les correctifs rapides pour les commandes du terminal qui apparaissent sous la forme d’une ampoule ou d’une icône d’étincelle à gauche de la requête.",
+ "terminal.integrated.shellIntegration.timeout": "Configure la durée en millisecondes à attendre pour l’intégration du shell après le lancement avant de déclarer qu’elle n’est pas présente. Réglez-la sur {0} pour attendre le temps minimum (500 ms), la valeur par défaut {1} signifie que le temps d’attente est variable, selon que l’injection de l’intégration du shell est activée et si la fenêtre est distante. Envisagez de définir une valeur faible si vous avez délibérément désactivé l’intégration du shell, ou une valeur élevée si votre shell démarre très lentement.",
"terminal.integrated.showExitAlert": "Détermine s'il est nécessaire d'afficher l'alerte \"Le processus du terminal s'est achevé avec le code de sortie\" quand le code de sortie est différent de zéro.",
+ "terminal.integrated.smoothScrolling": "Contrôle si le terminal défile en utilisant une animation.",
"terminal.integrated.splitCwd": "Contrôle le répertoire de travail dans lequel un terminal divisé démarre.",
"terminal.integrated.splitCwd.inherited": "Sur macOS et Linux, un nouveau terminal divisé utilise le répertoire de travail du terminal parent. Sur Windows, le comportement est le même qu'avec le paramètre initial.",
"terminal.integrated.splitCwd.initial": "Un nouveau terminal divisé utilise le répertoire de travail dans lequel le terminal parent a démarré.",
"terminal.integrated.splitCwd.workspaceRoot": "Un nouveau terminal divisé utilise la racine de l'espace de travail en tant que répertoire de travail. Dans un espace de travail multiracine, vous pouvez choisir le dossier racine à utiliser.",
+ "terminal.integrated.tabStopWidth": "Nombre de cellules dans un taquet de tabulation.",
"terminal.integrated.tabs.defaultColor": "ID de couleur de thème à associer aux icônes de terminal par défaut.",
"terminal.integrated.tabs.defaultIcon": "ID de codicon à associer aux icônes de terminal par défaut.",
"terminal.integrated.tabs.enableAnimation": "Contrôle si les états de l’onglet terminal prennent en charge l’animation (tâches en cours d’exécution).",
@@ -9312,40 +14855,46 @@
"terminal.integrated.tabs.location": "Contrôle l’emplacement des onglets du terminal, à gauche ou à droite du ou des terminaux réels.",
"terminal.integrated.tabs.location.left": "Afficher l’affichage des onglets de terminaux à gauche du terminal",
"terminal.integrated.tabs.location.right": "Afficher l’affichage des onglets de terminaux à droite du terminal",
- "terminal.integrated.tabs.separator": "Séparateur utilisé par {0} et {0}.",
+ "terminal.integrated.tabs.separator": "Séparateur utilisé par {0} et {1}.",
"terminal.integrated.tabs.showActions": "Contrôle si les boutons de fractionnement et de suppression de terminal sont affichés en regard du nouveau bouton de terminal.",
"terminal.integrated.tabs.showActions.always": "Toujours afficher les actions",
"terminal.integrated.tabs.showActions.never": "Ne jamais afficher les actions",
"terminal.integrated.tabs.showActions.singleTerminal": "Afficher les actions lorsqu’il s’agit du seul terminal ouvert",
"terminal.integrated.tabs.showActions.singleTerminalOrNarrow": "Afficher les actions lorsqu'il s'agit du seul terminal ouvert ou lorsque l'affichage des onglets est dans son état étroit sans texte.",
- "terminal.integrated.tabs.showActiveTerminal": "Affiche les informations sur le terminal actif dans l’affichage, ce qui est particulièrement utile lorsque le titre n’est pas visible dans les onglets.",
+ "terminal.integrated.tabs.showActiveTerminal": "Affiche les informations sur le terminal actif dans l’affichage. Cet élément est particulièrement utile lorsque le titre n’est pas visible dans les onglets.",
"terminal.integrated.tabs.showActiveTerminal.always": "Toujours afficher le terminal actif",
"terminal.integrated.tabs.showActiveTerminal.never": "Ne jamais afficher le terminal actif",
"terminal.integrated.tabs.showActiveTerminal.singleTerminal": "Afficher le terminal actif quand il est le seul terminal ouvert",
"terminal.integrated.tabs.showActiveTerminal.singleTerminalOrNarrow": "Afficher le terminal actif quand il est le seul terminal ouvert ou lorsque l’affichage des onglets est dans l’état d’affichage étroit et sans texte",
- "terminal.integrated.unicodeVersion": "Contrôle la version d'Unicode à utiliser au moment de l'évaluation de la largeur des caractères dans le terminal. Si vous êtes confronté à des emojis ou d'autres caractères larges qui n'occupent pas la quantité appropriée (trop ou trop peu) d'espaces avant ou arrière, vous pouvez essayer d'adapter ce paramètre.",
- "terminal.integrated.unicodeVersion.eleven": "Version 11 d'Unicode. Cette version offre une meilleure prise en charge sur les systèmes modernes qui utilisent des versions modernes d'Unicode.",
- "terminal.integrated.unicodeVersion.six": "Version 6 d'Unicode. Il s'agit d'une version antérieure qui doit fonctionner mieux sur les anciens systèmes.",
+ "terminal.integrated.unicodeVersion": "Contrôle la version d’Unicode à utiliser au moment de l’évaluation de la largeur des caractères dans le terminal. Si vous êtes confronté à des emojis ou d’autres caractères larges qui n'occupent pas la quantité appropriée (trop ou trop peu) d’espaces avant ou arrière, vous pouvez essayer d’adapter ce paramètre.",
+ "terminal.integrated.unicodeVersion.eleven": "Version 11 de l’Unicode. Cette version offre une meilleure prise en charge sur les systèmes modernes qui utilisent des versions modernes de l’Unicode.",
+ "terminal.integrated.unicodeVersion.six": "Version 6 de l’Unicode. Il s’agit d’une version antérieure qui doit mieux fonctionner sur les anciens systèmes.",
"terminal.integrated.windowsEnableConpty": "Indique si ConPTY doit être utilisé pour la communication des processus du terminal Windows (nécessite Windows 10 build 18309+). Winpty est utilisé si ce paramètre a la valeur false.",
- "terminal.integrated.wordSeparators": "Chaîne contenant tous les caractères à considérer en tant que séparateurs de mots quand le double-clic est utilisé pour sélectionner un mot.",
+ "terminal.integrated.windowsUseConptyDll": "Indique s’il faut utiliser la conpty.dll expérimentale (v1.22.250204002) fournie avec VS Code, au lieu de celle fournie avec Windows.",
+ "terminal.integrated.wordSeparators": "Chaîne contenant tous les caractères à considérer comme séparateurs de mots lorsque vous double-cliquez pour sélectionner un mot et dans la détection de lien « word » de secours. Étant donné que c’est utilisé pour la détection de liens, y compris les caractères tels que « : » utilisés lors de la détection des liens, avec pour conséquence que la partie ligne et colonne des liens, comme « file:10:5 », est ignorée.",
"terminalDescription": "Contrôle la description du terminal, qui apparaît à droite du titre. Les variables sont remplacées en fonction du contexte :",
"terminalIntegratedConfigurationTitle": "Terminal intégré",
"terminalTitle": "Contrôle le titre du terminal. Les variables sont remplacées en fonction du contexte :",
- "workspaceFolder": "l’espace de travail dans lequel le terminal a été lancé."
+ "workspaceFolder": "l’espace de travail dans lequel le terminal a été lancé.",
+ "workspaceFolderName": "le nom de l’espace de travail dans lequel le terminal a été lancé."
},
"vs/workbench/contrib/terminal/common/terminalContextKey": {
"inTerminalRunCommandPickerContextKey": "Indique si le sélecteur de commandes d’exécution du terminal est actuellement ouvert.",
"isSplitTerminalContextKey": "Indique si le terminal de l’onglet associé est un terminal scindé.",
+ "splitPaneActive": "Indique si le terminal actif est un panneau fractionné.",
"terminalAltBufferActive": "Indique si la mémoire tampon de remplacement du terminal est active.",
"terminalCountContextKey": "Nombre actuel de terminaux.",
"terminalEditorFocusContextKey": "Indique si un terminal de la zone de l’éditeur est concentré.",
"terminalFocusContextKey": "Indique si le terminal a le focus.",
+ "terminalFocusInAnyContextKey": "Indique si un terminal a le focus, y compris les terminaux détachés utilisés dans une autre interface utilisateur.",
"terminalProcessSupportedContextKey": "Indique si les processus terminaux peuvent être lancés dans l’espace de travail actuel.",
"terminalShellIntegrationEnabled": "Indique si l’intégration de l’interpréteur de commandes est activée dans le terminal actif",
- "terminalShellTypeContextKey": "Type d'interpréteur de commandes du terminal actif, il est défini à la dernière valeur connue lorsqu'aucun terminal n'existe.",
+ "terminalShellTypeContextKey": "Type d’interpréteur de commandes du terminal actif. Il est défini si le type peut être détecté.",
+ "terminalSuggestWidgetVisible": "Indique si le widget de suggestion du terminal est visible.",
"terminalTabsFocusContextKey": "Indique si le widget d’onglets du terminal a le focus.",
"terminalTabsSingularSelectedContextKey": "Indique si un terminal est sélectionné dans la liste des onglets de terminaux.",
"terminalTextSelectedContextKey": "Indique si le texte est sélectionné dans le terminal actif.",
+ "terminalTextSelectedInFocusedContextKey": "Indique si le texte est sélectionné dans un terminal prioritaire.",
"terminalViewShowing": "Indique si la vue du terminal est affichée"
},
"vs/workbench/contrib/terminal/common/terminalStrings": {
@@ -9353,79 +14902,753 @@
"doNotShowAgain": "Ne plus afficher",
"killTerminal": "Tuer le terminal",
"killTerminal.short": "Tuer",
+ "local": "Local",
+ "moveIntoNewWindow": "Déplacer le terminal dans une nouvelle fenêtre",
"moveToEditor": "Déplacer le terminal dans la zone de l’éditeur",
+ "newInNewWindow": "Nouvelle fenêtre de terminal",
"previousSessionCategory": "session précédente",
"splitTerminal": "Diviser le terminal",
"splitTerminal.short": "Fractionner",
+ "task": "Tâche",
"terminal": "Terminal",
+ "terminal.new": "Nouveau terminal",
+ "terminalCategory": "Terminal",
"unsplitTerminal": "Déscinder le terminal",
"workbench.action.terminal.changeColor": "Modifier la couleur...",
"workbench.action.terminal.changeIcon": "Changer l’icône...",
"workbench.action.terminal.focus": "Focus sur le terminal",
+ "workbench.action.terminal.focusAndHideAccessibleBuffer": "Cibler le terminal et masquer la mémoire tampon accessible",
+ "workbench.action.terminal.focusHover": "Pointer sur le focus",
+ "workbench.action.terminal.focusInstance": "Focus sur le terminal",
"workbench.action.terminal.moveToTerminalPanel": "Déplacer le terminal dans le panneau",
+ "workbench.action.terminal.newWithCwd": "Créer un nouveau terminal à partir d'un répertoire de travail personnalisé",
"workbench.action.terminal.rename": "Renommer...",
+ "workbench.action.terminal.renameWithArg": "Renommer le terminal actuellement actif",
+ "workbench.action.terminal.revealCommand": "Commande Reveal dans Terminal",
+ "workbench.action.terminal.scrollToNextCommand": "Faire défiler jusqu’à la prochaine commande",
+ "workbench.action.terminal.scrollToPreviousCommand": "Faire défiler jusqu'à la commande précédente",
"workbench.action.terminal.sizeToContentWidthInstance": "Activer/désactiver la taille vers la largeur du contenu"
},
- "vs/workbench/contrib/terminal/electron-sandbox/terminalRemote": {
+ "vs/workbench/contrib/terminal/electron-browser/terminalRemote": {
"workbench.action.terminal.newLocal": "Créer un terminal intégré (local)"
},
+ "vs/workbench/contrib/terminalContrib/accessibility/browser/terminal.accessibility.contribution": {
+ "workbench.action.terminal.accessibleBufferGoToNextCommand": "Accéder à la commande suivante dans la mémoire tampon accessible",
+ "workbench.action.terminal.accessibleBufferGoToPreviousCommand": "Accéder à la commande précédente dans la mémoire tampon accessible",
+ "workbench.action.terminal.focusAccessibleBuffer": "Mode Terminal accessible du focus",
+ "workbench.action.terminal.scrollToBottomAccessibleView": "Faire défiler jusqu’à la vue accessible en bas",
+ "workbench.action.terminal.scrollToTopAccessibleView": "Faire défiler jusqu’à la vue accessible en haut"
+ },
+ "vs/workbench/contrib/terminalContrib/accessibility/browser/terminalAccessibilityHelp": {
+ "commandPromptMigration": "Envisagez d’utiliser PowerShell à la place de l’invite de commandes pour améliorer l’expérience",
+ "focusAccessibleTerminalView": "La commande Focus Accessible Terminal View permet aux lecteurs de l’écran de lire le contenu du terminal.",
+ "focusAfterRun": "Configurez ce qui a le focus après l'exécution du texte sélectionné dans le terminal avec '{0}'.",
+ "focusViewOnExecution": "Activez « terminal.integrated.accessibleViewFocusOnCommandExecution » pour focus automatiquement sur la vue accessible au terminal lorsqu’une commande est exécutée dans le terminal.",
+ "goToNextCommand": "Accédez à la Commande suivante dans la vue accessible",
+ "goToPreviousCommand": "Accédez à la Commande précédente dans la vue accessible",
+ "goToRecentDirectory": "Accédez au répertoire récent",
+ "goToSymbol": "Accédez à Symbole",
+ "newWithProfile": "La commande Créer un terminal (avec profil) permet de créer facilement un terminal à l’aide d’un profil spécifique.",
+ "noShellIntegration": "L’intégration de l’interpréteur de commandes n’est pas activée. Certaines fonctionnalités d’accessibilité peuvent ne pas être disponibles.",
+ "openDetectedLink": "La commande Ouvrir le lien détecté permet aux lecteurs de l’écran d’ouvrir facilement les liens trouvés dans le terminal.",
+ "preserveCursor": "Personnalisez le comportement du curseur lors du basculement entre le terminal et la vue accessible avec `terminal.integrated.accessibleViewPreserveCursorPosition.`",
+ "runRecentCommand": "Exécuter la commande récente",
+ "shellIntegration": "Le terminal dispose d’une fonctionnalité appelée intégration de l’interpréteur de commandes qui offre une expérience améliorée et fournit des commandes utiles pour les lecteurs d’écran telles que :",
+ "suggest": "Lorsque le widget de suggestions du terminal est sélectionné :",
+ "suggestCommands": "– Acceptez la suggestion et configurez les paramètres de suggestion.",
+ "suggestCommandsMore": "– Basculez entre le widget et le terminal, et basculez le focus sur les détails pour en savoir plus sur la suggestion.",
+ "suggestConfigure": "– Configurer les paramètres de suggestion ",
+ "suggestLearnMore": "– En savoir plus sur la suggestion.",
+ "suggestTrigger": "La commande de complétions de demande de terminal peut être appelée manuellement, mais apparaît également lors de la frappe."
+ },
+ "vs/workbench/contrib/terminalContrib/accessibility/common/terminalAccessibilityConfiguration": {
+ "terminal.integrated.accessibleViewFocusOnCommandExecution": "Focus sur la vue accessible au terminal lorsqu’une commande est exécutée.",
+ "terminal.integrated.accessibleViewPreserveCursorPosition": "Conservez la position du curseur lors de la réouverture de la vue accessible du terminal plutôt que de la placer en bas du tampon."
+ },
+ "vs/workbench/contrib/terminalContrib/autoReplies/common/terminalAutoRepliesConfiguration": {
+ "terminal.integrated.autoReplies": "Ensemble de messages qui, lorsqu’ils sont rencontrés dans le terminal, feront l’objet d’une réponse automatique. À condition que le message soit suffisamment spécifique, cela peut aider à automatiser les réponses courantes.\r\n\r\nRemarques :\r\n\r\n– Utilisez {0} pour répondre automatiquement à l’invite de fin de traitement par lots sur Windows.\r\n– Le message inclut des séquences d’échappement afin que la réponse ne se produise pas avec du texte de style.\r\n– Chaque réponse ne peut se produire qu’une fois par seconde.\r\n– Utilisez {1} dans la réponse pour indiquer la clé Entrée.\r\n– Pour annuler la définition d’une clé par défaut, définissez la valeur sur nul.\r\n– Redémarrez VS Code si le nouveau ne s’applique pas.",
+ "terminal.integrated.autoReplies.reply": "La réponse à envoyer au processus."
+ },
+ "vs/workbench/contrib/terminalContrib/chat/browser/terminal.initialHint.contribution": {
+ "disableHint": " Activez/désactivez {0} dans les paramètres pour désactiver cet indicateur.",
+ "disableInitialHint": "Désactiver l’indicateur initial",
+ "emptyHintText": "Ouvrir la conversation {0}. ",
+ "hintTextDismiss": "Commencez à taper pour ignorer.",
+ "inlineChatHint": "[[Ouvrir la conversation]] ou commencer à taper pour ignorer."
+ },
+ "vs/workbench/contrib/terminalContrib/chat/browser/terminalChat": {
+ "chatAgentRegisteredContextKey": "Indique si un agent de conversation est inscrit pour l’emplacement du terminal.",
+ "chatFocusedContextKey": "Indique si la vue de conversation est ciblée.",
+ "chatInputHasTextContextKey": "Indique si l’entrée de conversation contient du texte.",
+ "chatRequestActiveContextKey": "Indique s’il existe une demande de conversation active.",
+ "chatResponseContainsCodeBlockContextKey": "Indique si la réponse de conversation contient un bloc de code.",
+ "chatResponseContainsMultipleCodeBlocksContextKey": "Indique si la réponse de conversation contient plusieurs blocs de code.",
+ "chatVisibleContextKey": "Indique si l’affichage de conversation est visible.",
+ "terminalHasChatTerminals": "Indique s’il existe des terminaux de conversation.",
+ "terminalHasHiddenChatTerminals": "Indique s’il existe des terminaux de conversation masqués."
+ },
+ "vs/workbench/contrib/terminalContrib/chat/browser/terminalChatAccessibilityHelp": {
+ "chat.signals": "Les signaux d’accessibilité peuvent être modifiés via des paramètres avec un préfixe signals.chat. Par défaut, si une requête prend plus de 4 secondes, vous entendez un son indiquant que la progression est toujours en cours.",
+ "inlineChat.access": "Elle peut être activée à l’aide de la commande : Terminal : Démarrer la conversation ({0}), qui concentrera la zone d’entrée.",
+ "inlineChat.focusInput": "Atteindre la zone d’entrée à partir de la réponse ({0}).",
+ "inlineChat.focusInputNoKb": "Accédez à la réponse à partir de la zone d’entrée en maj+tabulation ou en affectant une combinaison de touches pour la commande : Entrée Focus sur le terminal.",
+ "inlineChat.focusResponse": "Atteindre la réponse à partir de la zone d’entrée ({0}).",
+ "inlineChat.focusResponseNoKb": "Accédez à la réponse à partir de la zone d’entrée en utilisant la touche de tabulation ou en attribuant une combinaison de touches pour la commande : Focus sur la réponse du terminal.",
+ "inlineChat.input": "La zone d’entrée permet à l’utilisateur de taper une demande et d’effectuer la demande ({0}). Le widget sera fermé et tout le contenu sera ignoré lorsque vous appuierez sur la touche Échap et que le terminal regagnera le focus.",
+ "inlineChat.inputNoKb": "La zone d’entrée permet à l’utilisateur de taper une demande et d’effectuer la demande en utilisant la touche de tabulation pour accéder au bouton Créer une demande, que vous ne pouvez actuellement pas déclencher via des combinaisons de touches. Le widget sera fermé et tout le contenu sera ignoré lorsque vous appuierez sur la touche Échap et que le terminal regagnera le focus.",
+ "inlineChat.insertCommand": "Avec le focus dans l’éditeur de commandes de la zone d’entrée, l’action Terminal : Insérer une commande de conversation ({0}).",
+ "inlineChat.insertCommandNoKb": "Insérez une commande en appuyant sur le bouton, car l’action n’est actuellement pas déclenchée par une combinaison de touches.",
+ "inlineChat.inspectResponseMessage": "La réponse peut être inspectée dans l’affichage accessible ({0}).",
+ "inlineChat.inspectResponseNoKb": "Lorsque la zone d’entrée a le focus, inspectez la réponse dans la vue accessible via la commande Ouvrir l’affichage accessible, qui n’est actuellement pas déclenchée par une combinaison de touches.",
+ "inlineChat.overview": "Une conversation inline se produit au sein d’un terminal. Elle est utile pour suggérer des commandes de terminal. Gardez à l’esprit qu’un code généré par l’IA peut être incorrect.",
+ "inlineChat.runCommand": "Avec le focus dans la zone d’entrée ou l’éditeur de commande, l’action Terminal : Exécuter la commande de conversation ({0}).",
+ "inlineChat.runCommandNoKb": "Exécutez une commande en appuyant sur le bouton, car l’action n’est actuellement pas déclenchée par une combinaison de touches.",
+ "inlineChat.toolbar": "Utilisez l’onglet pour accéder aux parties conditionnelles telles que les commandes, l’état, les réponses aux messages, etc."
+ },
+ "vs/workbench/contrib/terminalContrib/chat/browser/terminalChatActions": {
+ "chat.rerun.label": "Réexécuter la demande",
+ "chatTerminal.lastCommand": "Dernier : {0}",
+ "closeChat": "Fermer",
+ "insert": "Insérer",
+ "insertCommand": "Commande Insérer une conversation",
+ "insertFirst": "Insérer en premier",
+ "insertFirstCommand": "Commande Insérer la première conversation",
+ "run": "Exécuter",
+ "runCommand": "Exécuter la commande de conversation",
+ "runFirst": "Exécuter en premier",
+ "runFirstCommand": "Exécuter la première commande de conversation",
+ "selectChatTerminal": "Sélectionnez un terminal de conversation à afficher et à mettre en avant",
+ "showChatTerminals.title": "Terminaux de conversation",
+ "startChat": "Ouvrir la conversation en ligne",
+ "terminalCategory": "Terminal",
+ "terminalCategory2": "Terminal",
+ "viewHiddenChatTerminals": "Afficher les terminaux de conversation masqués",
+ "viewInChat": "Afficher dans la conversation"
+ },
+ "vs/workbench/contrib/terminalContrib/chat/browser/terminalChatWidget": {
+ "askAboutCommands": "Demander des informations sur les commandes"
+ },
+ "vs/workbench/contrib/terminalContrib/chat/common/terminalInitialHintConfiguration": {
+ "terminal.integrated.initialHint": "Contrôle si le premier terminal sans entrée affiche un indicateur sur les actions disponibles lorsqu’il est ciblé."
+ },
+ "vs/workbench/contrib/terminalContrib/chatAgentTools/browser/runInTerminalHelpers": {
+ "allowSession": "Autoriser toutes les commandes de cette session",
+ "allowSessionTooltip": "Autorisez cet outil à s’exécuter dans cette session sans confirmation.",
+ "autoApprove.baseCommand": "Toujours autoriser les commandes : {0}",
+ "autoApprove.baseCommandSingle": "Toujours autoriser la commande : {0}",
+ "autoApprove.configure": "Configurer l’approbation automatique...",
+ "autoApprove.exactCommand": "Toujours autoriser la ligne de commande exacte"
+ },
+ "vs/workbench/contrib/terminalContrib/chatAgentTools/browser/terminal.chatAgentTools.contribution": {
+ "addTerminalSelection": "Ajouter la sélection de terminal à la conversation",
+ "terminalSelection": "Sélection du terminal",
+ "toolset.shell": "Run commands in the terminal"
+ },
+ "vs/workbench/contrib/terminalContrib/chatAgentTools/browser/tools/commandLineAnalyzer/commandLineAutoApproveAnalyzer": {
+ "autoApprove.global": "Approuvé automatiquement par le paramètre {0}",
+ "autoApprove.rule": "Approuvé automatiquement par la règle {0}",
+ "autoApprove.rules": "Approuvé automatiquement par les règles {0}",
+ "autoApprove.session": "Approuvé automatiquement pour cette session",
+ "autoApprove.session.disable": "Désactiver",
+ "autoApproveDenied.rule": "Approbation automatique refusée par la règle {0}",
+ "autoApproveDenied.rules": "Approbation automatique refusée par les règles {0}",
+ "ruleTooltip": "Afficher la règle dans les paramètres",
+ "ruleTooltip.global": "Afficher les paramètres",
+ "runInTerminal.promptInjectionDisclaimer": "Le contenu web peut contenir du code malveillant ou tenter des attaques par injection d’invite."
+ },
+ "vs/workbench/contrib/terminalContrib/chatAgentTools/browser/tools/commandLineAnalyzer/commandLineFileWriteAnalyzer": {
+ "runInTerminal.fileWriteBlockedDisclaimer": "Opérations d’écriture de fichier détectées qui ne peuvent pas être approuvées automatiquement : {0}",
+ "runInTerminal.fileWriteDisclaimer": "Opérations d’écriture de fichier détectées : {0}"
+ },
+ "vs/workbench/contrib/terminalContrib/chatAgentTools/browser/tools/getTerminalLastCommandTool": {
+ "getTerminalLastCommand.past": "Dernière commande du terminal reçue",
+ "getTerminalLastCommand.progressive": "Obtention de la dernière commande terminal",
+ "terminalLastCommandTool.displayName": "Obtenir la dernière commande du terminal"
+ },
+ "vs/workbench/contrib/terminalContrib/chatAgentTools/browser/tools/getTerminalOutputTool": {
+ "bg.past": "Sortie du terminal d’arrière-plan vérifiée",
+ "bg.progressive": "Vérification de la sortie du terminal en arrière-plan",
+ "getTerminalOutputTool.displayName": "Obtenir la sortie du terminal"
+ },
+ "vs/workbench/contrib/terminalContrib/chatAgentTools/browser/tools/getTerminalSelectionTool": {
+ "getTerminalSelection.past": "Sélection du terminal de lecture",
+ "getTerminalSelection.progressive": "Sélection du terminal de lecture",
+ "terminalSelectionTool.displayName": "Obtenir la sélection du terminal"
+ },
+ "vs/workbench/contrib/terminalContrib/chatAgentTools/browser/tools/monitoring/outputMonitor": {
+ "poll.terminal.accept": "Oui",
+ "poll.terminal.acceptRun": "Autoriser",
+ "poll.terminal.confirmRequired": "Le terminal attend une entrée.",
+ "poll.terminal.confirmRunDetail": "{0}\r\n Voulez-vous envoyer « {1} »{2} suivi de « Entrée » au terminal ?",
+ "poll.terminal.enterInput": "Focus sur le terminal",
+ "poll.terminal.inputRequest": "Le terminal attend une entrée.",
+ "poll.terminal.polling": "Cela continuera à interroger la sortie pour déterminer quand le terminal devient inactif pendant 2 minutes maximum.",
+ "poll.terminal.reject": "Non",
+ "poll.terminal.rejectRun": "Focus sur le terminal",
+ "poll.terminal.requireInput": "{0}\r\nVeuillez fournir l’entrée requise au terminal.\r\n\r\n",
+ "poll.terminal.waiting": "Continuez à attendre pour `{0}` ?"
+ },
+ "vs/workbench/contrib/terminalContrib/chatAgentTools/browser/tools/runInTerminalConfirmationTool": {
+ "confirmTerminalCommandTool.displayName": "Confirmer la commande du terminal",
+ "confirmTerminalCommandTool.userDescription": "Outil de confirmation des commandes du terminal"
+ },
+ "vs/workbench/contrib/terminalContrib/chatAgentTools/browser/tools/runInTerminalTool": {
+ "runInTerminal": "Voulez-vous exécuter la commande `{0}` ?",
+ "runInTerminal.background": "Voulez-vous exécuter la commande `{0}` ? (terminal d’arrière-plan)",
+ "runInTerminalTool.displayName": "Exécuter dans le terminal",
+ "runInTerminalTool.userDescription": "Run commands in the terminal"
+ },
+ "vs/workbench/contrib/terminalContrib/chatAgentTools/browser/tools/task/createAndRunTaskTool": {
+ "allowTaskCreationExecution": "Voulez-vous autoriser la création et l’exécution de tâches ?",
+ "alreadyRunning": "La tâche `{0}` est déjà en cours d’exécution.",
+ "copilotChat.fetchingTask": "Résolution de la tâche",
+ "copilotChat.noTerminal": "La tâche a démarré, mais aucun terminal n’a été trouvé pour : `{0}`",
+ "copilotChat.runningTask": "Exécution de la tâche `{0}`",
+ "copilotChat.taskNotFound": "Tâche `{0}` introuvable",
+ "createAndRunTask.displayName": "Créer et exécuter une tâche",
+ "createAndRunTask.userDescription": "Créer et exécuter une tâche dans l’espace de travail",
+ "createTask": "Une tâche « {0} » avec la commande « {1} »{2} va être créée.",
+ "createdTask": "La tâche `{0}` a été créée",
+ "createdTaskPast": "La tâche `{0}` a été créée",
+ "taskExists": "La tâche `{0}` fichier existe déjà.",
+ "taskExistsPast": "La tâche `{0}` fichier existe déjà."
+ },
+ "vs/workbench/contrib/terminalContrib/chatAgentTools/browser/tools/task/getTaskOutputTool": {
+ "copilotChat.checkedTerminalOutput": "Sortie vérifiée pour la tâche `{0}`",
+ "copilotChat.checkingTerminalOutput": "Vérification de la sortie pour la tâche `{0}`",
+ "copilotChat.taskAlreadyRunning": "La tâche `{0}` est déjà en cours d’exécution.",
+ "copilotChat.taskNotFound": "Tâche `{0}` introuvable",
+ "copilotChat.terminalNotFound": "Terminal introuvable pour la tâche `{0}`",
+ "getTaskOutputTool.displayName": "Obtenir le résultat de la tâche"
+ },
+ "vs/workbench/contrib/terminalContrib/chatAgentTools/browser/tools/task/runTaskTool": {
+ "chat.allowTaskRunMsg": "Autoriser l’exécution de la tâche « {0} » ?",
+ "chat.allowTaskRunTitle": "Voulez-vous autoriser l’exécution de la tâche ?",
+ "chat.noTerminal": "La tâche a démarré, mais aucun terminal n’a été trouvé pour : `{0}`",
+ "chat.ranTask": "« {0} » a été exécuté",
+ "chat.runningTask": "« {0} » est en cours d’exécution",
+ "chat.startedTask": "A démarré « {0} »",
+ "chat.taskAlreadyActive": "La tâche est déjà en cours d’exécution.",
+ "chat.taskAlreadyRunning": "La tâche `{0}` est déjà en cours d’exécution.",
+ "chat.taskIsAlreadyRunning": "`{0}` est déjà en cours d'exécution.",
+ "chat.taskNotFound": "Tâche `{0}` introuvable",
+ "chat.taskWasAlreadyRunning": "`{0}` était déjà en cours d'exécution.",
+ "runInTerminalTool.displayName": "Exécuter la tâche",
+ "runInTerminalTool.userDescription": "Run tasks in the workspace"
+ },
+ "vs/workbench/contrib/terminalContrib/chatAgentTools/browser/tools/task/taskHelpers": {
+ "copilotChat.taskFailedWithExitCode": "La tâche `{0}` a échoué avec le code de sortie {1}."
+ },
+ "vs/workbench/contrib/terminalContrib/chatAgentTools/common/terminalChatAgentToolsConfiguration": {
+ "autoApprove.defaults": "Notez qu’il existe un ensemble de règles par défaut pour autoriser et refuser des commandes. Envisagez de définir {0} sur {1} pour ignorer toutes les règles par défaut afin d’éviter tout conflit avec vos propres règles. C’est à vos risques et périls, car les règles de refus par défaut sont conçues pour vous protéger contre l’exécution de commandes dangereuses.",
+ "autoApprove.deprecated": "Utilisez {0} à la place",
+ "autoApprove.description.commandLine": "Un objet peut être utilisé pour établir une correspondance avec la ligne de commande complète au lieu de mettre en correspondance des sous-commandes et des commandes inline, par exemple {0}. Pour être approuvé automatiquement, ni la sous-commande ni la ligne de commande ne doivent pas être explicitement refusées, puis toutes les sous-commandes ou la ligne de commande doivent être approuvées.",
+ "autoApprove.description.examples.binTest": "Autorisez toutes les commandes qui correspondent au chemin d’accès {0} ({1}, {2}, etc.)",
+ "autoApprove.description.examples.description": "Description",
+ "autoApprove.description.examples.mkdir": "Autoriser toutes les commandes commençant par {0}",
+ "autoApprove.description.examples.npmRunBuild": "Autoriser toutes les commandes commençant par {0}",
+ "autoApprove.description.examples.ps1": "Exiger une approbation explicite pour tout _command line_ contenant {0} indépendamment de la casse",
+ "autoApprove.description.examples.regexAll": "Autoriser toutes les commandes (les commandes refusées nécessitent toujours une approbation)",
+ "autoApprove.description.examples.regexCase": "autorisera {0} commandes, quelle que soit la casse",
+ "autoApprove.description.examples.regexGit": "Autoriser {0} et toutes les commandes commençant par {1}",
+ "autoApprove.description.examples.rm": "Exiger une approbation explicite pour toutes les commandes commençant par {0}",
+ "autoApprove.description.examples.rmUnset": "Annuler la définition de la valeur par défaut {0} pour {1}",
+ "autoApprove.description.examples.title": "Exemples :",
+ "autoApprove.description.examples.value": "Valeur",
+ "autoApprove.description.intro": "Une liste de commandes ou d’expressions régulières permettant de contrôler si les commandes exécutées dans l’outil Terminal nécessitent une approbation explicite. Celles-ci seront mises en correspondance avec le début d’une commande. Une expression régulière peut être fournie en encapsulation de la chaîne en {0} caractères suivis d’indicateurs facultatifs, tels que {1} pour la non-respect de la casse.",
+ "autoApprove.description.subCommands": "Notez que ces commandes et expressions régulières sont évaluées pour chaque _sous-commande_ dans la _ligne de commande_ complète. Par conséquent, {0}, par exemple, nécessitera que {1} et {2} correspondent à une entrée {3}, et ne elles doivent pas correspondre à une entrée {4}, pour pouvoir approuver automatiquement. Les commandes en ligne telles que {5} (substitution de processus) doivent également être détectées.",
+ "autoApprove.description.values": "Définir sur {0} pour approuver automatiquement les commandes, {1} pour toujours exiger une approbation explicite ou {2} pour annuler la définition de la valeur.",
+ "autoApprove.false": "Exiger une approbation explicite pour le modèle.",
+ "autoApprove.key": "Le début d'une commande à faire correspondre. Une expression régulière peut être fournie en encapsulant la chaîne entre des caractères '/'.",
+ "autoApprove.matchCommandLine": "Indique s’il faut établir une correspondance avec la ligne de commande complète, par opposition au fractionnement par sous-commandes et commandes inline.",
+ "autoApprove.matchCommandLine.false": "Correspondance avec les sous-commandes et les commandes inline, par exemple, `foo && bar` nécessite que `foo` et `bar` correspondent.",
+ "autoApprove.matchCommandLine.true": "Faire correspondre à la ligne de commande complète, par exemple. `foo && bar`.",
+ "autoApprove.null": "Ignorez le modèle. Cela est utile pour désactiver le même modèle défini à un niveau supérieur.",
+ "autoApprove.true": "Approuvez automatiquement le modèle.",
+ "autoApproveMode.description": "Contrôle s’il faut autoriser l’approbation automatique lors de l’exécution dans l’outil terminal.",
+ "autoReplyToPrompts.key": "Indique s’il faut répondre automatiquement aux invites dans le terminal telles que « Confirmer ? o/n ». Il s’agit d’une fonctionnalité expérimentale qui peut ne pas fonctionner dans tous les scénarios.",
+ "blockFileWrites.all": "Bloquer toutes les écritures de fichiers détectées.",
+ "blockFileWrites.description": "Contrôle si les opérations d’écriture de fichiers détectées sont bloquées dans l’outil d’exécution dans le terminal. Lorsqu’une opération est détectée, une approbation explicite est requise, même si la commande serait normalement approuvée automatiquement. Notez que toutes les méthodes possibles d’écriture de fichiers ne peuvent pas être détectées. Voici celles qui le sont actuellement :\r\n\r\n– Redirection de fichier (détectée via la grammaire bash ou PowerShell tree sitter)",
+ "blockFileWrites.never": "Autoriser toutes les écritures de fichiers détectées.",
+ "blockFileWrites.outsideWorkspace": "Bloquez les écritures de fichiers détectées en dehors de l’espace de travail. Cela dépend du bon fonctionnement de la fonctionnalité d’intégration de l’interpréteur de commandes pour déterminer le répertoire de travail actuel du terminal.",
+ "ignoreDefaultAutoApproveRules.description": "Indique s’il faut ignorer les règles d’approbation automatique intégrées par défaut utilisées par l’outil d’exécution dans le terminal, telles que définies dans {0}. Lorsque ce paramètre est activé, l’outil d’exécution dans le terminal ignore toute règle provenant de l’ensemble par défaut, mais respecte toujours les règles définies dans les paramètres utilisateur, distant et d’espace de travail. Utilisez ce paramètre à vos risques et périls, car les règles d’approbation automatique par défaut sont conçues pour vous protéger contre l’exécution de commandes dangereuses.",
+ "outputLocation.description": "Emplacement d’affichage de la sortie de la session d’exécution dans l’outil Terminal.",
+ "outputLocation.none": "Ne pas afficher automatiquement le terminal.",
+ "outputLocation.terminal": "Afficher le terminal lors de l’exécution de la commande.",
+ "shellIntegrationTimeout.deprecated": "Utilisez {0} à la place",
+ "shellIntegrationTimeout.description": "Configurez la durée en millisecondes d’attente pour la détection de l’intégration de l’interpréteur de commandes lorsque l’outil d’exécution dans le terminal lance un nouveau terminal. Définissez sur « 0 » pour attendre la durée minimale; la valeur par défaut « -1 » signifie que le temps d’attente est variable en fonction de la valeur de {0} et de savoir s’il s’agit d’une fenêtre distante. Une valeur élevée peut être utile si votre interpréteur de commandes démarre très lentement, tandis qu’une valeur faible est appropriée si vous n’utilisez pas intentionnellement l’intégration de l’interpréteur de commandes.",
+ "terminalChatAgentProfile.linux": "Profil de terminal à utiliser sur Linux pour l’exécution de l’agent de conversation dans l’outil Terminal.",
+ "terminalChatAgentProfile.osx": "Profil de terminal à utiliser sur macOS pour l’exécution de l’agent de conversation dans l’outil Terminal.",
+ "terminalChatAgentProfile.path": "Chemin d’un exécutable d’interpréteur de commandes.",
+ "terminalChatAgentProfile.windows": "Profil de terminal à utiliser sur Windows pour l’exécution de l’agent de conversation dans l’outil Terminal."
+ },
+ "vs/workbench/contrib/terminalContrib/clipboard/browser/terminal.clipboard.contribution": {
+ "workbench.action.terminal.copyAndClearSelection": "Copier et effacer la sélection",
+ "workbench.action.terminal.copyLastCommand": "Copier la dernière commande",
+ "workbench.action.terminal.copyLastCommandAndOutput": "Copier la dernière commande et la sortie",
+ "workbench.action.terminal.copyLastCommandOutput": "Copier la sortie de la dernière commande",
+ "workbench.action.terminal.copySelection": "Copier la sélection",
+ "workbench.action.terminal.copySelectionAsHtml": "Copier la sélection en HTML",
+ "workbench.action.terminal.paste": "Coller dans le terminal actif",
+ "workbench.action.terminal.pasteSelection": "Coller la sélection dans le terminal actif"
+ },
+ "vs/workbench/contrib/terminalContrib/clipboard/browser/terminalClipboard": {
+ "confirmMoveTrashMessageFilesAndDirectories": "Voulez-vous vraiment coller {0} lignes de texte dans le terminal ?",
+ "doNotAskAgain": "Ne plus me poser la question",
+ "multiLinePasteButton": "&&Coller",
+ "multiLinePasteButton.oneLine": "Coller en sous la forme d’&&une ligne",
+ "preview": "Aperçu :"
+ },
+ "vs/workbench/contrib/terminalContrib/commandGuide/browser/terminal.commandGuide.contribution": {
+ "terminalCommandGuide.foreground": "Couleur de premier plan du guide de commande de terminal qui apparaît à gauche d’une commande et sa sortie lors d’un pointage."
+ },
+ "vs/workbench/contrib/terminalContrib/commandGuide/common/terminalCommandGuideConfiguration": {
+ "showCommandGuide": "Indique si le guide de commande doit s’afficher lors du pointage sur une commande dans le terminal."
+ },
+ "vs/workbench/contrib/terminalContrib/developer/browser/terminal.developer.contribution": {
+ "workbench.action.terminal.recordSession": "Enregistrer la session Terminal",
+ "workbench.action.terminal.recordSession.recording": "Enregistrement de la session de terminal...",
+ "workbench.action.terminal.restartPtyHost": "Redémarrer l’hôte Pty",
+ "workbench.action.terminal.showTextureAtlas": "Afficher l’atlas de textures de terminal",
+ "workbench.action.terminal.writeDataToTerminal": "Écrire des données sur le terminal",
+ "workbench.action.terminal.writeDataToTerminal.prompt": "Entrez les données à écrire directement sur le terminal, en contournant le pty"
+ },
+ "vs/workbench/contrib/terminalContrib/environmentChanges/browser/terminal.environmentChanges.contribution": {
+ "ScopedEnvironmentContributionInfo": "espace de travail",
+ "envChanges": "Modifications de l’environnement du terminal",
+ "extension": "Extension : {0}",
+ "workbench.action.terminal.showEnvironmentContributions": "Afficher les contributions d’environnement"
+ },
+ "vs/workbench/contrib/terminalContrib/find/browser/terminal.find.contribution": {
+ "workbench.action.terminal.findNext": "Rechercher le suivant",
+ "workbench.action.terminal.findPrevious": "Rechercher le précédent",
+ "workbench.action.terminal.focusFind": "Focus sur la recherche",
+ "workbench.action.terminal.hideFind": "Masquer la recherche",
+ "workbench.action.terminal.searchWorkspace": "Rechercher dans l'espace de travail",
+ "workbench.action.terminal.toggleFindCaseSensitive": "Activer/désactiver la recherche sensible à la casse",
+ "workbench.action.terminal.toggleFindRegex": "Activer/désactiver la recherche à l'aide de la notation regex",
+ "workbench.action.terminal.toggleFindWholeWord": "Activer/désactiver la recherche à l'aide du mot entier"
+ },
+ "vs/workbench/contrib/terminalContrib/history/browser/terminal.history.contribution": {
+ "goToRecentDirectory.metadata": "Accède à un dossier récent",
+ "workbench.action.terminal.clearPreviousSessionHistory": "Effacer l’historique de session précédente",
+ "workbench.action.terminal.goToRecentDirectory": "Accéder au répertoire récent...",
+ "workbench.action.terminal.runRecentCommand": "Exécuter la commande récente..."
+ },
+ "vs/workbench/contrib/terminalContrib/history/browser/terminalRunRecentQuickPick": {
+ "openShellHistoryFile": "Ouvrir un fichier",
+ "removeCommand": "Supprimer de l’historique des commandes",
+ "selectRecentCommand": "Sélectionner une commande à exécuter (maintenez la touche Alt enfoncée pour modifier la commande)",
+ "selectRecentCommandMac": "Sélectionner une commande à exécuter (maintenez la touche Alt enfoncée pour modifier la commande)",
+ "selectRecentDirectory": "Sélectionner un répertoire à atteindre (maintenez la touche Alt enfoncée pour modifier la commande)",
+ "selectRecentDirectoryMac": "Sélectionner un répertoire à atteindre (maintenez la touche Option enfoncée pour modifier la commande)",
+ "shellFileHistoryCategory": "Historique {0}",
+ "viewCommandOutput": "Afficher la sortie de la commande"
+ },
+ "vs/workbench/contrib/terminalContrib/history/common/terminal.history": {
+ "terminal.integrated.shellIntegration.history": "Contrôle le nombre de commandes récemment utilisées à conserver dans l’historique des commandes du terminal. Réglez sur 0 pour désactiver l’historique des commandes du terminal."
+ },
+ "vs/workbench/contrib/terminalContrib/links/browser/terminal.links.contribution": {
+ "workbench.action.terminal.openDetectedLink": "Ouvrir le lien détecté...",
+ "workbench.action.terminal.openLastLocalFileLink": "Ouvrir le dernier lien vers le fichier local",
+ "workbench.action.terminal.openLastUrlLink": "Ouvrir le dernier lien d’URL",
+ "workbench.action.terminal.openLastUrlLink.description": "Ouvre le dernier lien URL/URI détecté dans le terminal"
+ },
+ "vs/workbench/contrib/terminalContrib/links/browser/terminalLinkDetectorAdapter": {
+ "focusFolder": "Focus sur le dossier dans l'Explorateur",
+ "followLink": "Suivre le lien",
+ "openFile": "Ouvrir le fichier dans l'éditeur",
+ "openFolder": "Ouvrir le dossier dans une nouvelle fenêtre",
+ "searchWorkspace": "Rechercher un espace de travail"
+ },
+ "vs/workbench/contrib/terminalContrib/links/browser/terminalLinkManager": {
+ "allow": "Autoriser {0}",
+ "followForwardedLink": "Suivre le lien à l'aide du port réacheminé",
+ "followLink": "Suivre le lien",
+ "followLinkUrl": "Lien",
+ "scheme": "L’ouverture des URI peut être non sécurisée. Voulez-vous autoriser l’ouverture de liens avec le schéma {0}?",
+ "terminalLinkHandler.followLinkAlt": "alt+clic",
+ "terminalLinkHandler.followLinkAlt.mac": "option+clic",
+ "terminalLinkHandler.followLinkCmd": "cmd+clic",
+ "terminalLinkHandler.followLinkCtrl": "ctrl+clic"
+ },
+ "vs/workbench/contrib/terminalContrib/links/browser/terminalLinkQuickpick": {
+ "terminal.integrated.localFileLinks": "Fichier",
+ "terminal.integrated.localFolderLinks": "Dossier",
+ "terminal.integrated.openDetectedLink": "Sélectionnez le lien à ouvrir, tapez pour filtrer tous les liens",
+ "terminal.integrated.searchLinks": "Recherche d'espace de travail",
+ "terminal.integrated.urlLinks": "URL"
+ },
+ "vs/workbench/contrib/terminalContrib/quickAccess/browser/terminal.quickAccess.contribution": {
+ "quickAccessTerminal": "Changer de terminal actif",
+ "tasksQuickAccessHelp": "Afficher tous les terminaux ouverts",
+ "tasksQuickAccessPlaceholder": "Tapez le nom d'un terminal à ouvrir."
+ },
+ "vs/workbench/contrib/terminalContrib/quickAccess/browser/terminalQuickAccess": {
+ "renameTerminal": "Renommer le terminal",
+ "workbench.action.terminal.newWithProfilePlus": "Créer un nouveau terminal avec profil...",
+ "workbench.action.terminal.newplus": "Créer un nouveau terminal"
+ },
+ "vs/workbench/contrib/terminalContrib/quickFix/browser/quickFixAddon": {
+ "codeAction.widget.id.quickfix": "Correctif rapide",
+ "quickFix.command": "Exécution : {0}",
+ "quickFix.opener": "Ouvrir : {0}"
+ },
+ "vs/workbench/contrib/terminalContrib/quickFix/browser/terminal.quickFix.contribution": {
+ "workbench.action.terminal.showQuickFixes": "Afficher les correctifs rapides du terminal"
+ },
+ "vs/workbench/contrib/terminalContrib/quickFix/browser/terminalQuickFixBuiltinActions": {
+ "terminal.createPR": "Créer un PR {0}",
+ "terminal.freePort": "Ports libres '{0}'"
+ },
+ "vs/workbench/contrib/terminalContrib/quickFix/browser/terminalQuickFixService": {
+ "vscode.extension.contributes.terminalQuickFixes": "Contribue aux correctifs rapides du terminal.",
+ "vscode.extension.contributes.terminalQuickFixes.commandExitResult": "Résultat de sortie de la commande à mettre en correspondance",
+ "vscode.extension.contributes.terminalQuickFixes.commandLineMatcher": "Expression régulière ou chaîne sur laquelle tester la ligne de commande",
+ "vscode.extension.contributes.terminalQuickFixes.id": "ID du fournisseur de correctifs rapides",
+ "vscode.extension.contributes.terminalQuickFixes.kind": "Type de correctif rapide qui en résulte. Cela change la façon dont le correctif rapide est présenté. La valeur par défaut est {0}.",
+ "vscode.extension.contributes.terminalQuickFixes.outputMatcher": "Expression ou chaîne régulière sur laquelle faire correspondre une seule ligne de la sortie, qui fournit des groupes à référencer dans terminalCommand et URI.\r\n\r\n Par exemple :\r\n\r\n 'lineMatcher: /git push --set-upstream origin (?[^s]+)/;'\r\n\r\nterminalCommand : 'git push --set-upstream origin ${group:branchName}';'\r\n"
+ },
+ "vs/workbench/contrib/terminalContrib/sendSequence/browser/terminal.sendSequence.contribution": {
+ "sendSequence": "Envoyer la séquence",
+ "sendSequence.text.desc": "La séquence de texte à envoyer au terminal",
+ "workbench.action.terminal.sendSequence.prompt": "Entrez la séquence à envoyer au terminal"
+ },
+ "vs/workbench/contrib/terminalContrib/sendSignal/browser/terminal.sendSignal.contribution": {
+ "SIGCONT": "Continuer le processus",
+ "SIGHUP": "Raccrocher",
+ "SIGINT": "Interrompre le processus (Ctrl+C)",
+ "SIGKILL": "Forcer l'arrêt du processus",
+ "SIGQUIT": "Quitter le processus",
+ "SIGSTOP": "Arrêter le processus",
+ "SIGTERM": "Terminer le processus de manière élégante",
+ "SIGUSR1": "Signal défini par l'utilisateur(-trice) 1",
+ "SIGUSR2": "Signal défini par l'utilisateur(-trice) 2",
+ "enterSignal": "Entrer le nom du signal (par exemple, SIGTERM, SIGKILL)",
+ "manualSignal": "Entrer le signal manuellement",
+ "selectSignal": "Sélectionner le signal à envoyer au processus terminal",
+ "sendSignal": "Envoyer le signal",
+ "sendSignal.signal.desc": "Le signal à envoyer au processus terminal (par exemple, « SIGTERM », « SIGINT », « SIGKILL »)"
+ },
+ "vs/workbench/contrib/terminalContrib/stickyScroll/browser/terminal.stickyScroll.contribution": {
+ "miStickyScroll": "&&Défilement épinglé",
+ "stickyScroll": "Défilement épinglé",
+ "workbench.action.terminal.toggleStickyScroll": "Activer/désactiver le défilement épinglé"
+ },
+ "vs/workbench/contrib/terminalContrib/stickyScroll/browser/terminalStickyScrollColorRegistry": {
+ "terminalStickyScroll.background": "Couleur d’arrière-plan de la superposition de défilement épinglé dans le terminal.",
+ "terminalStickyScroll.border": "Bordure de la superposition de défilement épinglé dans le terminal.",
+ "terminalStickyScrollHover.background": "Couleur d’arrière-plan de la superposition de défilement épinglé dans le terminal lorsqu’elle est survolée."
+ },
+ "vs/workbench/contrib/terminalContrib/stickyScroll/browser/terminalStickyScrollOverlay": {
+ "labelWithKeybinding": "{0} ({1})",
+ "stickyScrollHoverTitle": "Accéder à la commande"
+ },
+ "vs/workbench/contrib/terminalContrib/stickyScroll/common/terminalStickyScrollConfiguration": {
+ "stickyScroll.enabled": "Affiche la commande actuelle en haut du terminal. Cette fonctionnalité nécessite l’activation de [shell integration]({0}). Voir {1}.",
+ "stickyScroll.maxLineCount": "Définit le nombre maximal de lignes rémanentes à afficher. Les lignes de défilement épinglé ne dépasseront jamais 40 % de la fenêtre d’affichage, quel que soit ce paramètre."
+ },
+ "vs/workbench/contrib/terminalContrib/suggest/browser/terminal.suggest.contribution": {
+ "workbench.action.terminal.acceptSelectedSuggestion": "Insérer",
+ "workbench.action.terminal.acceptSelectedSuggestionEnter": "Accepter la suggestion sélectionnée (Entrée)",
+ "workbench.action.terminal.configureSuggestSettings": "Configurer",
+ "workbench.action.terminal.hideSuggestWidget": "Masquer le widget de suggestion",
+ "workbench.action.terminal.hideSuggestWidgetAndNavigateHistory": "Masquer le widget de suggestion et l’historique de navigation",
+ "workbench.action.terminal.learnMore": "Découvrir plus d’informations",
+ "workbench.action.terminal.resetSuggestWidgetSize": "Réinitialiser la taille du widget de suggestion",
+ "workbench.action.terminal.selectNextPageSuggestion": "Sélectionner la suggestion de page suivante",
+ "workbench.action.terminal.selectNextSuggestion": "Sélectionner la suggestion suivante",
+ "workbench.action.terminal.selectPrevPageSuggestion": "Sélectionner la suggestion de la page précédente",
+ "workbench.action.terminal.selectPrevSuggestion": "Sélectionner la suggestion précédente",
+ "workbench.action.terminal.suggestToggleDetails": "Suggérer les détails du bouton bascule",
+ "workbench.action.terminal.suggestToggleDetailsFocus": "Suggérer le focus de suggestion",
+ "workbench.action.terminal.suggestToggleExplainMode": "Suggérer des modes d’explication",
+ "workbench.action.terminal.triggerSuggest": "Déclencher des suggestions"
+ },
+ "vs/workbench/contrib/terminalContrib/suggest/browser/terminalSuggestAddon": {
+ "alias": "Alias",
+ "argument": "Argument",
+ "branch": "Branche",
+ "commit": "Validation",
+ "file": "Fichier",
+ "flag": "Indicateur",
+ "folder": "Dossier",
+ "inlineSuggestion": "Suggestion inline",
+ "inlineSuggestionAlwaysOnTop": "Suggestion inline",
+ "method": "Méthode",
+ "option": "Option",
+ "optionValue": "Valeur de l’option",
+ "pullRequest": "Demande de tirage (pull request)",
+ "pullRequestDone": "Demande de tirage (pull request)",
+ "remote": "Distant",
+ "stash": "Remiser (stash)",
+ "symbolicLinkFile": "Fichier SYLK",
+ "symbolicLinkFolder": "Dossier de lien symbolique",
+ "tag": "Balise"
+ },
+ "vs/workbench/contrib/terminalContrib/suggest/browser/terminalSymbolIcons": {
+ "terminalSymbolAliasIcon": "Icône pour les alias dans le widget de suggestion du terminal.",
+ "terminalSymbolArgumentIcon": "Icône pour les arguments dans le widget de suggestion du terminal.",
+ "terminalSymbolBranchIcon": "Icône pour les branches dans le widget Terminal Suggest.",
+ "terminalSymbolCommitIcon": "Icône pour les commandes dans le widget Terminal Suggest.",
+ "terminalSymbolFileIcon": "Icône pour les fichiers dans le widget de suggestion du terminal.",
+ "terminalSymbolFlagIcon": "Icône pour les indicateurs dans le widget de suggestion du terminal.",
+ "terminalSymbolFolderIcon": "Icône pour les dossiers dans le widget de suggestion du terminal.",
+ "terminalSymbolIcon.aliasForeground": "Couleur de premier plan pour une icône d’alias. Ces icônes apparaissent dans le widget de suggestion du terminal.",
+ "terminalSymbolIcon.argumentForeground": "Couleur de premier plan d’une icône d’argument. Ces icônes apparaissent dans le widget de suggestion du terminal.",
+ "terminalSymbolIcon.branchForeground": "Couleur de premier plan d’une icône de branche. Ces icônes apparaissent dans le widget de suggestion du terminal.",
+ "terminalSymbolIcon.commitForeground": "Couleur de premier plan pour une icône de validation. Ces icônes apparaissent dans le widget de suggestion du terminal.",
+ "terminalSymbolIcon.enumMemberForeground": "Couleur de premier plan d’une icône de membre enum. Ces icônes apparaissent dans le widget de suggestion du terminal.",
+ "terminalSymbolIcon.fileForeground": "Couleur de premier plan d’une icône de fichier. Ces icônes apparaissent dans le widget de suggestion du terminal.",
+ "terminalSymbolIcon.flagForeground": "Couleur de premier plan pour une icône de drapeau. Ces icônes apparaissent dans le widget de suggestion du terminal.",
+ "terminalSymbolIcon.folderForeground": "Couleur de premier plan d’une icône de dossier. Ces icônes apparaissent dans le widget de suggestion du terminal.",
+ "terminalSymbolIcon.inlineSuggestionForeground": "Couleur de premier plan d’une icône de suggestion inline. Ces icônes apparaissent dans le widget de suggestion du terminal.",
+ "terminalSymbolIcon.methodForeground": "Couleur de premier plan d’une icône de méthode. Ces icônes apparaissent dans le widget de suggestion du terminal.",
+ "terminalSymbolIcon.optionForeground": "Couleur de premier plan d’une icône d’option. Ces icônes apparaissent dans le widget de suggestion du terminal.",
+ "terminalSymbolIcon.pullRequestDoneForeground": "Couleur de premier plan d’une icône de demande de tirage complète. Ces icônes apparaissent dans le widget de suggestion du terminal.",
+ "terminalSymbolIcon.pullRequestForeground": "Couleur de premier plan d’une icône de demande de tirage. Ces icônes apparaissent dans le widget de suggestion du terminal.",
+ "terminalSymbolIcon.remoteForeground": "Couleur de premier plan d’une icône distant. Ces icônes apparaissent dans le widget de suggestion du terminal.",
+ "terminalSymbolIcon.stashForeground": "Couleur de premier plan pour une icône de stash. Ces icônes apparaissent dans le widget de suggestion du terminal.",
+ "terminalSymbolIcon.symbolTextForeground": "Couleur de premier plan pour une suggestion en texte brut. Ces icônes apparaissent dans le widget de suggestion du terminal.",
+ "terminalSymbolIcon.symbolicLinkFileForeground": "La couleur de premier plan pour une icône de fichier de lien symbolique. Ces icônes apparaissent dans le widget de suggestion du terminal.",
+ "terminalSymbolIcon.symbolicLinkFolderForeground": "La couleur de premier plan pour une icône de dossier de lien symbolique. Ces icônes apparaissent dans le widget de suggestion du terminal.",
+ "terminalSymbolIcon.tagForeground": "Couleur de premier plan d’une icône de balise. Ces icônes apparaissent dans le widget de suggestion du terminal.",
+ "terminalSymbolInlineSuggestionIcon": "Icône pour les suggestions inline dans le widget de suggestion du terminal.",
+ "terminalSymbolMethodIcon": "Icône pour les méthodes dans le widget de suggestion du terminal.",
+ "terminalSymbolOptionIcon": "Icône pour les options dans le widget de suggestion du terminal.",
+ "terminalSymbolOptionValue": "Icône pour les membres enum dans le widget de suggestion du terminal.",
+ "terminalSymbolPullRequestDoneIcon": "Icône des demandes de tirage terminées dans le widget de suggestion du terminal.",
+ "terminalSymbolPullRequestIcon": "Icône des demandes de tirage dans le widget de suggestion du terminal.",
+ "terminalSymbolRemoteIcon": "Icône pour les télécommandes dans le widget Terminal Suggest.",
+ "terminalSymbolStashIcon": "Icône pour les stashes dans le widget Terminal Suggest.",
+ "terminalSymbolSymboTextIcon": "Icône pour les suggestions de texte brut dans le widget de suggestion du terminal.",
+ "terminalSymbolSymbolicLinkFileIcon": "Icône pour les fichiers de lien symbolique dans le widget de suggestion du terminal.",
+ "terminalSymbolSymbolicLinkFolderIcon": "Icône pour les dossiers de lien symbolique dans le widget de suggestion du terminal.",
+ "terminalSymbolTagIcon": "Icône pour les balises dans le widget de suggestion du terminal."
+ },
+ "vs/workbench/contrib/terminalContrib/suggest/common/terminalSuggestConfiguration": {
+ "runOnEnter.always": "Toujours exécuter sur « Entrée ».",
+ "runOnEnter.exactMatch": "Exécutez « Entrée » lorsque la suggestion est tapée dans son intégralité.",
+ "runOnEnter.exactMatchIgnoreExtension": "Exécutez « Entrée » lorsque la suggestion est tapée dans son intégralité ou lorsqu’un fichier est tapé sans son extension incluse.",
+ "runOnEnter.never": "Ne jamais exécuter sur « Entrée ».",
+ "suggest.cdPath": "Contrôle s’il faut activer $CDPATH prise en charge qui expose les enfants des dossiers dans la variable $CDPATH, quel que soit le répertoire de travail actuel. $CDPATH doit être séparée par des points-virgules sur Windows et séparées par deux-points sur d’autres plateformes.",
+ "suggest.cdPath.absolute": "Activez la fonctionnalité et utilisez des chemins absolus. Cela est utile quand l’interpréteur de commandes ne prend pas en charge nativement '$CDPATH'.",
+ "suggest.cdPath.off": "Désactivez la fonctionnalité.",
+ "suggest.cdPath.relative": "Activez la fonctionnalité et utilisez des chemins relatifs.",
+ "suggest.enabled": "Permet les suggestions IntelliSense du terminal (préversion) pour les interpréteurs de commandes pris en charge ({0}) lorsque {1} est défini sur {2}.",
+ "suggest.inlineSuggestion": "Contrôle si la suggestion inline de l’interpréteur de commandes doit être détectée et comment elle est scoreée.",
+ "suggest.inlineSuggestion.alwaysOnTop": "Activez la fonctionnalité et placez toujours la suggestion inline en haut.",
+ "suggest.inlineSuggestion.alwaysOnTopExceptExactMatch": "Activez la fonctionnalité et triez la suggestion en ligne sans forcer sa mise en avant. Cela signifie que les correspondances exactes seront au-dessus de la suggestion incluse.",
+ "suggest.inlineSuggestion.off": "Désactivez la fonctionnalité.",
+ "suggest.insertTrailingSpace": "Contrôle si un espace est automatiquement inséré après l’acceptation d’une suggestion et si les suggestions sont relancées. Les dossiers et les dossiers de liens symboliques ne recevront jamais d’espace ajouté à la fin.",
+ "suggest.provider.lsp.description": "Afficher les suggestions des serveurs linguistiques.",
+ "suggest.provider.title": "Afficher les suggestions de {0}.",
+ "suggest.providers": "Les fournisseurs sont activés par défaut. Omettez-les en définissant l’ID du fournisseur sur « false ».",
+ "suggest.providersEnabledByDefault": "Contrôle les suggestions qui s’affichent automatiquement lors de la saisie. Les fournisseurs de suggestions sont activés par défaut.",
+ "suggest.quickSuggestions": "Contrôle si les suggestions doivent s’afficher automatiquement lors de la saisie. Tenez également compte du {0}-setting qui contrôle si les suggestions sont déclenchées par des caractères spéciaux.",
+ "suggest.quickSuggestions.arguments": "Activez les suggestions rapides pour les arguments, tout ce qui suit le premier mot d’une entrée de ligne de commande.",
+ "suggest.quickSuggestions.commands": "Activez les suggestions rapides pour les commandes, premier mot d’une entrée de ligne de commande.",
+ "suggest.quickSuggestions.unknown": "Activez les suggestions rapides lorsqu’il n’est pas clair de connaître la meilleure suggestion, si elle se trouve sur des fichiers et des dossiers, il est suggéré comme solution de secours.",
+ "suggest.runOnEnter": "Contrôle si les suggestions doivent s’exécuter immédiatement lorsque « Entrée » (et non « Tab ») est utilisé pour accepter le résultat.",
+ "suggest.showStatusBar": "Contrôle si les suggestions de terminal status barre doivent être affichées.",
+ "suggest.suggestOnTriggerCharacters": "Contrôle si les suggestions devraient automatiquement s’afficher lorsque vous tapez les caractères de déclencheur.",
+ "suggest.upArrowNavigatesHistory": "Détermine si la touche flèche vers le haut permet de naviguer dans l’historique des commandes lorsque le focus se trouve sur la première suggestion et que la navigation n’a pas encore eu lieu. Lorsqu’elle est définie sur false, la flèche vers le haut déplace le focus sur la dernière suggestion à la place.",
+ "terminal.integrated.selectionMode": "Contrôle le fonctionnement de la sélection des suggestions dans le terminal intégré.",
+ "terminal.integrated.selectionMode.always": "Sélectionnez toujours une suggestion lors du déclenchement automatique d’IntelliSense. Vous pouvez utiliser « Entrée » ou « Tab » pour accepter la première suggestion.",
+ "terminal.integrated.selectionMode.never": "Ne jamais sélectionner une suggestion lors du déclenchement automatique d’IntelliSense. Vous devez naviguer dans la liste via « Bas » avant de pouvoir utiliser « Entrée » ou « Tab » pour accepter la suggestion active.",
+ "terminal.integrated.selectionMode.partial": "Sélectionnez partiellement une suggestion lors du déclenchement automatique d’IntelliSense. « Tab » peut être utilisé pour accepter la première suggestion. « Entrée » acceptera également la suggestion active uniquement après avoir navigué dans les suggestions via « Bas ».",
+ "terminalSuggestProvidersConfigurationTitle": "Fournisseurs de suggestions de terminal",
+ "terminalWindowsExecutableSuggestionSetting": "Ensemble d’extensions exécutables de commandes Windows qui seront incluses en tant que suggestions dans le terminal.\r\n\r\nDe nombreux exécutables sont inclus par défaut, répertoriés ci-dessous :\r\n\r\n{0}.\r\n\r\nPour exclure une extension, définissez-la sur « false »\r\n\r\n. Pour inclure un élément qui ne figure pas dans la liste, ajoutez-le et affectez-lui la valeur 'true'."
+ },
+ "vs/workbench/contrib/terminalContrib/typeAhead/common/terminalTypeAheadConfiguration": {
+ "terminal.integrated.localEchoEnabled": "Quand l’écho local doit être activé. Cela remplacera {0}",
+ "terminal.integrated.localEchoEnabled.auto": "Activé uniquement pour les espaces de travail distants",
+ "terminal.integrated.localEchoEnabled.off": "Toujours désactivé",
+ "terminal.integrated.localEchoEnabled.on": "Toujours activé",
+ "terminal.integrated.localEchoExcludePrograms": "L'écho local sera désactivé si l'un de ces noms de programmes est trouvé dans le titre du terminal.",
+ "terminal.integrated.localEchoLatencyThreshold": "Durée du retard réseau, en millisecondes, pendant lequel les modifications locales sont répercutées sur le terminal sans attendre la reconnaissance du serveur. Si la valeur est '0', l'écho local sera toujours activé, si la valeur est '-1', il sera désactivé.",
+ "terminal.integrated.localEchoStyle": "Style du texte répercuté localement dans le terminal : style de police ou couleur RVB."
+ },
+ "vs/workbench/contrib/terminalContrib/voice/browser/terminalVoice": {
+ "terminalVoiceTextInserted": "{0} inséré"
+ },
+ "vs/workbench/contrib/terminalContrib/voice/browser/terminalVoiceActions": {
+ "enableExtension": "Activer l’extension",
+ "installExtension": "Installer l’extension",
+ "terminal.voice.detail": "La prise en charge du microphone nécessite cette extension.",
+ "terminal.voice.enableSpeechExtension": "Voulez-vous activer l’extension de reconnaissance vocale ?",
+ "terminal.voice.installSpeechExtension": "Souhaitez-vous installer l’extension « VS Code Speech » de « Microsoft » ?",
+ "workbench.action.terminal.startDictation": "Démarrer la dictée dans Terminal",
+ "workbench.action.terminal.stopDictation": "Arrêter la dictée dans le terminal"
+ },
+ "vs/workbench/contrib/terminalContrib/wslRecommendation/browser/terminal.wslRecommendation.contribution": {
+ "install": "Installer",
+ "useWslExtension.title": "L'extension '{0}' est recommandée pour ouvrir un terminal dans WSL."
+ },
+ "vs/workbench/contrib/terminalContrib/zoom/browser/terminal.zoom.contribution": {
+ "fontZoomIn": "Augmenter la taille de police",
+ "fontZoomOut": "Diminuer la taille de police",
+ "fontZoomReset": "Rétablir la taille de police"
+ },
+ "vs/workbench/contrib/terminalContrib/zoom/common/terminal.zoom": {
+ "terminal.integrated.mouseWheelZoom": "Faites un zoom sur la police du terminal quand l’utilisateur fait tourner la roulette de la souris tout en maintenant la touche « Ctrl » enfoncée.",
+ "terminal.integrated.mouseWheelZoom.mac": "Faites un zoom sur la police du terminal quand l’utilisateur fait tourner la roulette de la souris tout en maintenant la touche « Cmd » enfoncée."
+ },
+ "vs/workbench/contrib/testing/browser/codeCoverageDecorations": {
+ "coverage.branchCovered": "La branche {0} dans {1} a été exécutée {2} fois.",
+ "coverage.branchCoveredYes": "La branche {0} dans {1} a été exécutée.",
+ "coverage.branchNotCovered": "La branche {0} dans {1} n’était pas couverte.",
+ "coverage.branches": "{0} branches sur {1} dans {2} ont été couvertes.",
+ "coverage.declExecutedCount": "« {0} » a été exécuté {1} fois.",
+ "coverage.declExecutedNo": "'{0}' n’a pas été exécuté.",
+ "coverage.declExecutedYes": "'{0}' a été exécuté.",
+ "coverage.hideInline": "Masquer la couverture en ligne",
+ "coverage.toggleInline": "Activer/désactiver la couverture inlined",
+ "testing.coverageForTestAvailable": "{0} test a exécuté du code dans ce fichier",
+ "testing.filterActionLabel": "Filtrer la couverture à tester",
+ "testing.goToNextMissedLine": "Aller à la ligne suivante non couverte",
+ "testing.goToNextMissedLineDesc": "Naviguer vers la ligne suivante qui n’est pas couverte par les tests.",
+ "testing.goToPreviousMissedLine": "Aller à la ligne précédente non couverte",
+ "testing.goToPreviousMissedLineDesc": "Naviguer vers la ligne précédente qui n’est pas couverte par les tests.",
+ "testing.hideCoverageInExplorer": "Masquer la couverture dans Explorer",
+ "testing.hideInlineCoverage": "Masquer la couverture en ligne",
+ "testing.rerun": "Réexécuter",
+ "testing.showInlineCoverage": "Afficher la couverture en ligne",
+ "testing.toggleCoverageInExplorerDesc": "Activez ou désactivez l’affichage de la couverture de test dans la vue Explorer.",
+ "testing.toggleCoverageInExplorerTitle": "Basculez la couverture dans Explorer",
+ "testing.toggleInlineCoverage": "Basculer en ligne",
+ "testing.toggleToolbarDesc": "Activez/désactivez la barre de couverture rémanente dans l’éditeur.",
+ "testing.toggleToolbarTitle": "Barre d’outils Couverture des tests"
+ },
+ "vs/workbench/contrib/testing/browser/codeCoverageDisplayUtils": {
+ "changePerTestFilter": "Cliquez pour afficher la couverture d’un test unique",
+ "testing.allTests": "Tous les tests",
+ "testing.coverageForTest": "Affichage de «{0}»",
+ "testing.percentCoverage": "Couverture {0}",
+ "testing.pickTest": "Choisir un test pour afficher la couverture pour"
+ },
"vs/workbench/contrib/testing/browser/icons": {
"filterIcon": "Icône de l'action Filtrer dans la vue des tests.",
"hiddenIcon": "Icône affichée à côté des tests masqués, quand ceux-ci ont été affichés.",
"testViewIcon": "Icône de vue de l'affichage des tests.",
"testingCancelIcon": "Icône permettant d'annuler les séries de tests en cours.",
"testingCancelRefreshTests": "Icône sur le bouton permettant d’annuler l’actualisation des tests.",
+ "testingCoverage": "Icône représentant la couverture de test",
+ "testingCoverageIcon": "Icône de l’action « exécuter un test avec couverture ».",
"testingDebugAllIcon": "Icône de l’action « déboguer tous les tests ».",
"testingDebugIcon": "Icône de l'action de débogage de test.",
"testingErrorIcon": "Icône affichée pour les tests qui comportent une erreur.",
"testingFailedIcon": "Icône affichée pour les tests non réussis.",
+ "testingMissingBranch": "Icône représentant un bloc non couvert sans plage",
"testingPassedIcon": "Icône affichée pour les tests réussis.",
"testingQueuedIcon": "Icône affichée pour les tests mis en file d'attente.",
"testingRefreshTests": "Icône sur le bouton permettant d’actualiser les tests",
+ "testingRerunIcon": "Icône de l’action « réexécuter les tests ».",
+ "testingResultsIcon": "Icônes pour les résultats des tests.",
"testingRunAllIcon": "Icône de l'action \"exécuter tous les tests\".",
+ "testingRunAllWithCoverageIcon": "Icône de l’action « exécuter tous les tests avec couverture ».",
"testingRunIcon": "Icône de l'action d'exécution de test.",
"testingShowAsList": "Icône affichée quand l'Explorateur de tests est désactivé sous forme d'arborescence.",
"testingShowAsTree": "Icône affichée quand l'Explorateur de tests est désactivé sous forme de liste.",
"testingSkippedIcon": "Icône affichée pour les tests ignorés.",
+ "testingTurnContinuousRunIsOn": "Icône quand l’exécution continue est activée pour une ite de test,.",
+ "testingTurnContinuousRunOff": "Icône permettant de désactiver les séries de tests continus.",
+ "testingTurnContinuousRunOn": "Icône permettant d’activer les séries de tests continus.",
"testingUnsetIcon": "Icône affichée pour les tests qui sont dans un état annulé.",
- "testingUpdateProfiles": "Icône affichée pour mettre à jour les profils de test."
+ "testingUpdateProfiles": "Icône affichée pour mettre à jour les profils de test.",
+ "testingWasCovered": "Icône indiquant qu’un élément a été couvert"
+ },
+ "vs/workbench/contrib/testing/browser/testCoverageBars": {
+ "branchCoverage": "{0} / {1} branches couvertes ({2})",
+ "functionCoverage": "{0} / {1} fonctions couvertes ({2})",
+ "statementCoverage": "{0} / {1} instructions couvertes ({2})"
+ },
+ "vs/workbench/contrib/testing/browser/testCoverageView": {
+ "filteredToTest": "Affichage de la couverture pour \"{0}\"",
+ "functionsWithoutCoverage": "{0} déclarations sans couverture...",
+ "loadingCoverageDetails": "Chargement des détails de couverture...",
+ "testCoverageItemLabel": "{0} couverture : {0}%",
+ "testCoverageTreeLabel": "Explorateur de couverture de test",
+ "testing.changeCoverageFilter": "Filtrer la couverture par test",
+ "testing.changeCoverageSort": "Changer l’ordre de tri",
+ "testing.coverageCollapseAll": "Réduire toutes les couvertures",
+ "testing.coverageSortByCoverage": "Trier par couverture",
+ "testing.coverageSortByCoverageDescription": "Les fichiers et les déclarations sont triés par couverture totale",
+ "testing.coverageSortByLocation": "Trier par emplacement",
+ "testing.coverageSortByLocationDescription": "Les fichiers sont triés par ordre alphabétique, et les déclarations sont triées par position",
+ "testing.coverageSortByName": "Trier par nom",
+ "testing.coverageSortByNameDescription": "Les fichiers et les déclarations sont triés par ordre alphabétique",
+ "testing.coverageSortPlaceholder": "Trier la vue de couverture de test..."
},
"vs/workbench/contrib/testing/browser/testExplorerActions": {
"configureProfile": "Sélectionner un profil à mettre à jour",
+ "coverageSelectedTests": "Exécuter les tests avec couverture",
"debug test": "Déboguer le test",
"debugAllTests": "Déboguer tous les tests",
"debugSelectedTests": "Déboguer les tests",
"discoveringTests": "Découverte des tests",
+ "getExplorerSelection": "Obtenir la sélection d’explorateur",
+ "getSelectedProfiles": "Obtenir les profils sélectionnés",
"hideTest": "Masquer le test",
+ "noCoverageTestProvider": "Nous n’avons trouvé aucun test avec des exécuteurs de couverture dans cet espace de travail. Vous devrez peut-être installer une extension de fournisseur de tests",
"noDebugTestProvider": "Aucun test pouvant être débogué n'est présent dans cet espace de travail. Vous devrez peut-être installer une extension de fournisseur de tests",
+ "noRelatedCode": "Code associé introuvable.",
+ "noTestFound": "Tests connexes introuvables.",
"noTestProvider": "Tests introuvables dans cet espace de travail. Vous devrez peut-être installer une extension de fournisseur de tests",
+ "noTests": "Tests introuvables dans le fichier ou dans le dossier sélectionné",
+ "noTestsAtCursor": "Aucun test trouvé ici",
+ "noTestsInFile": "Aucun test trouvé dans ce fichier",
+ "relatedCode": "Code associé",
+ "relatedTests": "Tests connexes",
"run test": "Exécuter le test",
+ "run with cover test": "Exécuter un test avec couverture",
"runAllTests": "Exécuter tous les tests",
+ "runAllWithCoverage": "Exécuter tous les tests avec couverture",
"runSelectedTests": "Exécuter les tests",
"testing.cancelRun": "Annuler la série de tests",
"testing.cancelTestRefresh": "Annuler l’actualisation du test",
+ "testing.clearCoverage": "Effacer la couverture",
"testing.clearResults": "Effacer tous les résultats",
"testing.collapseAll": "Réduire tous les tests",
"testing.configureProfile": "Configurer les profils de test",
+ "testing.coverageAtCursor": "Exécuter le test au curseur avec couverture",
+ "testing.coverageCurrentFile": "Exécuter des tests avec couverture dans le fichier actif",
+ "testing.coverageLastRun": "Refaire la dernière exécution avec couverture",
"testing.debugAtCursor": "Déboguer le test au niveau du curseur",
"testing.debugCurrentFile": "Déboguer les tests dans le fichier actuel",
"testing.debugFailTests": "Déboguer les tests non réussis",
+ "testing.debugFailedFromLastRun": "Déboguer les tests ayant échoué lors de la dernière exécution",
"testing.debugLastRun": "Déboguer la dernière série",
"testing.editFocusedTest": "Accéder au test",
+ "testing.goToRelatedCode": "Accéder au code associé",
+ "testing.goToRelatedTest": "Accéder au test associé",
+ "testing.noCoverage": "Aucune information de couverture disponible sur la dernière série de tests.",
+ "testing.noProfiles": "Aucun profil d’exécution continue de test n’a été trouvé",
+ "testing.openCoverage": "Ouvrir la couverture",
"testing.openOutputPeek": "Aperçu de la sortie",
+ "testing.peekToRelatedCode": "Afficher un aperçu du code associé",
+ "testing.peekToRelatedTest": "Aperçu du test associé",
"testing.reRunFailTests": "Réexécuter les tests non réussis",
+ "testing.reRunFailedFromLastRun": "Réexécuter les tests ayant échoué lors de la dernière exécution",
"testing.reRunLastRun": "Réexécuter la dernière série",
"testing.refreshTests": "Actualiser les tests",
"testing.runAtCursor": "Exécuter le test au niveau du curseur",
"testing.runCurrentFile": "Exécuter les tests dans le fichier actuel",
"testing.runUsing": "Exécuter à l’aide du profil...",
"testing.searchForTestExtension": "Rechercher une extension de test",
+ "testing.selectContinuousProfiles": "Sélectionnez les profils à exécuter lorsque les fichiers changent :",
"testing.selectDefaultTestProfiles": "Sélectionner le profil par défaut",
"testing.showMostRecentOutput": "Afficher la sortie",
"testing.sortByDuration": "Trier par durée",
"testing.sortByLocation": "Trier par emplacement",
"testing.sortByStatus": "Trier par état",
+ "testing.startContinuous": "Démarrer l’exécution continue",
+ "testing.startContinuousRunUsing": "Démarrer l’exécution continue à l’aide de...",
+ "testing.stopContinuous": "Arrêter l’exécution continue",
+ "testing.toggleContinuousRunOff": "Désactiver l’exécution continue",
+ "testing.toggleContinuousRunOn": "Activer l’exécution continue",
"testing.toggleInlineTestOutput": "Activer/désactiver la sortie de test Inline",
+ "testing.toggleResultsViewLayout": "Basculer la position de l’arborescence",
"testing.viewAsList": "Voir sous forme de liste",
"testing.viewAsTree": "Voir sous forme d'arborescence",
"unhideAllTests": "Afficher tous les tests",
@@ -9436,7 +15659,9 @@
"noTestProvidersRegistered": "Tests introuvables dans cet espace de travail.",
"searchForAdditionalTestExtensions": "Installer des extensions de test supplémentaires...",
"test": "Test",
- "testExplorer": "Explorateur de tests"
+ "testCoverage": "Couverture de test",
+ "testExplorer": "Explorateur de tests",
+ "testResultsPanelName": "Résultats des tests"
},
"vs/workbench/contrib/testing/browser/testingConfigurationUi": {
"testConfigurationUi.pick": "Choisir un profil de test à utiliser",
@@ -9444,6 +15669,7 @@
},
"vs/workbench/contrib/testing/browser/testingDecorations": {
"actual.title": "Réel",
+ "coverage test": "Exécuter avec couverture",
"debug all test": "Déboguer tous les tests",
"debug test": "Déboguer le test",
"expected.title": "Attendu",
@@ -9451,19 +15677,24 @@
"peekTestOutout": "Apercevoir le résultat du test",
"reveal test": "Révéler dans l'Explorateur de tests",
"run all test": "Exécuter tous les tests",
+ "run all test with coverage": "Exécuter tous les tests avec couverture",
"run test": "Exécuter le test",
+ "selectTestToRun": "Sélectionner un test à exécuter",
+ "testOverflowItems": "{0} autres tests...",
+ "testing.cancelRun": "Annuler l’exécution du test",
"testing.gutterMsg.contextMenu": "Cliquez pour accéder aux options de test",
+ "testing.gutterMsg.coverage": "Cliquez pour exécuter les tests, cliquez avec le bouton droit pour plus d’options",
"testing.gutterMsg.debug": "Cliquez pour déboguer les tests, cliquez avec le bouton droit pour accéder à d’autres options",
"testing.gutterMsg.run": "Cliquez pour exécuter les tests, cliquez avec le bouton droit pour plus d'options",
"testing.runUsing": "Exécuter à l’aide du profil..."
},
"vs/workbench/contrib/testing/browser/testingExplorerFilter": {
- "filter": "Filtre",
"testExplorerFilter": "Filtre (exemple : text, !exclude, @tag)",
"testExplorerFilterLabel": "Filtrer le texte pour les tests dans l’Explorateur",
"testing.filters.currentFile": "Afficher dans le fichier actif uniquement",
"testing.filters.fuzzyMatch": "Correspondance approximative",
"testing.filters.menu": "Plus de filtres...",
+ "testing.filters.openedFiles": "Afficher uniquement dans les fichiers ouverts",
"testing.filters.removeTestExclusions": "Afficher tous les tests",
"testing.filters.showExcludedTests": "Afficher les tests masqués",
"testing.filters.showOnlyExecuted": "Afficher uniquement les tests exécutés",
@@ -9472,86 +15703,139 @@
"vs/workbench/contrib/testing/browser/testingExplorerView": {
"configureTestProfiles": "Configurer les profils de test",
"defaultTestProfile": "{0} (Par défaut)",
+ "noResults": "Aucun résultat de test pour l’instant.",
"selectDefaultConfigs": "Sélectionner le profil par défaut",
"testExplorer": "Explorateur de tests",
"testing.treeElementLabelDuration": "{0}, sur une durée de {1}",
+ "testing.treeElementLabelOutdated": "{0}, résultat obsolète",
+ "testingContinuousBadge": "Les tests sont examinés à la recherche de modifications",
+ "testingCountBadgeFailed": "{0} tests ayant échoué",
+ "testingCountBadgePassed": "{0} tests réussis",
+ "testingCountBadgeSkipped": "{0} tests ignorés",
"testingFindExtension": "Afficher les tests de l’espace de travail",
- "testingNoTest": "Nous n’avons pas trouvé de test dans ce fichier."
+ "testingNoTest": "Nous n’avons pas trouvé de test dans ce fichier.",
+ "testingSelectConfig": "Sélectionner une configuration..."
},
"vs/workbench/contrib/testing/browser/testingOutputPeek": {
"close": "Fermer",
- "debug test": "Test de débogage",
- "messageMoreLines1": "+ 1 ligne de plus",
- "messageMoreLinesN": "+ {0} lignes supplémentaires",
- "run test": "Exécuter le test",
- "testUnnamedTask": "Tâche sans nom",
- "testing.debugLastRun": "Déboguer la série de tests",
- "testing.goToFile": "Accéder au fichier",
+ "testOutputTitle": "Sortie de test",
+ "testing.collapsePeekStack": "Réduire les frames de pile",
"testing.goToNextMessage": "Accéder à la défaillance du test suivant",
+ "testing.goToNextMessage.description": "Affiche le message d’échec suivant dans votre fichier",
"testing.goToPreviousMessage": "Accéder à la défaillance du test précédent",
+ "testing.goToPreviousMessage.description": "Affiche le message d’échec précédent dans votre fichier",
+ "testing.markdownPeekError": "Impossible d’ouvrir l’aperçu Markdown : {0}.\r\n\r\nVeuillez vérifier que l’extension Markdown est activée.",
"testing.openMessageInEditor": "Ouvrir dans l'Éditeur",
- "testing.reRunLastRun": "Réexécuter la série de tests",
- "testing.revealInExplorer": "Révéler dans l'Explorateur de tests",
- "testing.showResultOutput": "Afficher la sortie des résultats",
"testing.toggleTestingPeekHistory": "Activer/désactiver l’historique des tests dans Peek",
- "testingOutputActual": "Résultat réel",
- "testingOutputExpected": "Résultat attendu",
- "testingPeekLabel": "Messages de résultat de test"
- },
- "vs/workbench/contrib/testing/browser/testingOutputTerminalService": {
- "runFinished": "Fin de la série de tests à {0}",
- "runNoOutout": "La série de tests n’a enregistré aucune sortie.",
- "testNoRunYet": "\r\nAucun test n’a encore été exécuté.\r\n",
- "testOutputTerminalTitle": "Sortie de test",
- "testOutputTerminalTitleWithDate": "Sortie de test à {0}"
- },
- "vs/workbench/contrib/testing/browser/testingProgressUiService": {
- "testProgress.completed": "{0}/{1} tests réussis ({2} %)",
- "testProgress.running": "Exécution des tests, {0}/{1} réussi(s) ({2} %)",
- "testProgress.runningInitial": "Exécution des tests...",
- "testProgressWithSkip.completed": "{0}/{1} tests réussis ({2} %, {3} ignorés)",
- "testProgressWithSkip.running": "Exécution des tests, {0}/{1} réussi(s) ({2} %, {3} ignoré(s))"
+ "testing.toggleTestingPeekHistory.description": "Affiche ou masque l’historique des séries de tests dans la vue aperçu"
},
"vs/workbench/contrib/testing/browser/testingViewPaneContainer": {
"testing": "Test"
},
+ "vs/workbench/contrib/testing/browser/testResultsView/testResultsOutput": {
+ "caseNoOutput": "Le cas de test n’a pas signalé de sortie.",
+ "runNoOutput": "La série de tests n’a enregistré aucune sortie.",
+ "runNoOutputForPast": "La sortie de test n’est disponible que pour les nouvelles séries de tests.",
+ "testingOutputActual": "Résultat réel",
+ "testingOutputExpected": "Résultat attendu"
+ },
+ "vs/workbench/contrib/testing/browser/testResultsView/testResultsTree": {
+ "closeTestCoverage": "Fermer la couverture de test",
+ "debug test": "Test de débogage",
+ "messageMoreLines1": "+ 1 ligne de plus",
+ "messageMoreLinesN": "+ {0} lignes supplémentaires",
+ "nOlderResults": "{0} anciens résultats",
+ "oneOlderResult": "1 ancien résultat",
+ "openTestCoverage": "Afficher la couverture de test",
+ "run test": "Exécuter des tests",
+ "testing.cancelRun": "Annuler la série de tests",
+ "testing.debugFailedFromLastRun": "Déboguer les tests non réussis",
+ "testing.debugLastRun": "Déboguer la dernière série",
+ "testing.debugTest": "Test de débogage",
+ "testing.goToError": "Accéder à l’erreur",
+ "testing.goToTest": "Accéder au test",
+ "testing.reRunFailedFromLastRun": "Réexécuter les tests non réussis",
+ "testing.reRunLastRun": "Réexécuter la dernière série",
+ "testing.reRunTest": "Réexécuter le test",
+ "testing.revealInExplorer": "Révéler dans l'Explorateur de tests",
+ "testing.showResultOutput": "Afficher la sortie des résultats",
+ "testingPeekLabel": "Messages de résultat de test"
+ },
+ "vs/workbench/contrib/testing/browser/testResultsView/testResultsViewContent": {
+ "testFollowup.more": "{0} de plus...",
+ "testing.callStack.debug": "Test de débogage",
+ "testing.callStack.run": "Réexécuter le test"
+ },
"vs/workbench/contrib/testing/browser/theme": {
+ "testing.coverCountBadgeBackground": "Arrière-plan du badge indiquant le nombre d’exécutions",
+ "testing.coverCountBadgeForeground": "Premier plan du badge indiquant le nombre d’exécutions",
+ "testing.coveredBackground": "Couleur d’arrière-plan du texte qui était couvert.",
+ "testing.coveredBorder": "Couleur de bordure du texte qui était couvert.",
+ "testing.coveredGutterBackground": "Couleur de reliure des régions où le code a été couvert.",
"testing.iconErrored": "Couleur de l'icône d'erreur dans l'Explorateur de tests.",
+ "testing.iconErrored.retired": "Couleur retirée de l’icône « Erreur » dans l’Explorateur de tests.",
"testing.iconFailed": "Couleur de l'icône d'échec dans l'Explorateur de tests.",
+ "testing.iconFailed.retired": "Couleur supprimée pour l’icône « échec » dans l’Explorateur de tests.",
"testing.iconPassed": "Couleur de l'icône de réussite dans l'Explorateur de tests.",
+ "testing.iconPassed.retired": "Couleur retirée de l’icône « réussite » dans l’Explorateur de tests.",
"testing.iconQueued": "Couleur de l'icône de mise en file d'attente dans l'Explorateur de tests.",
+ "testing.iconQueued.retired": "Couleur retirée de l’icône « Mise en file d’attente » dans l’Explorateur de tests.",
"testing.iconSkipped": "Couleur de l'icône de tests ignorés dans l'Explorateur de tests.",
+ "testing.iconSkipped.retired": "Couleur retirée de l’icône « Ignoré » dans l’Explorateur de tests.",
"testing.iconUnset": "Couleur de l'icône d'état annulé dans l'Explorateur de tests.",
- "testing.message.error.decorationForeground": "Couleur de texte des messages d'erreur de test affichés inline dans l'éditeur.",
+ "testing.iconUnset.retired": "Couleur retirée de l’icône « Unset » dans l’Explorateur de tests.",
+ "testing.message.error.badgeBackground": "Couleur d’arrière-plan des messages d’erreur de test affichés inline dans l’éditeur.",
+ "testing.message.error.badgeBorder": "Couleur de bordure des messages d’erreur de test affichés inline dans l’éditeur.",
+ "testing.message.error.badgeForeground": "Couleur de texte des messages d'erreur de test affichés inline dans l'éditeur.",
"testing.message.error.marginBackground": "Couleur de marge à côté des messages d'erreur affichés inline dans l'éditeur.",
"testing.message.info.decorationForeground": "Couleur de texte des messages d'information de test affichés inline dans l'éditeur.",
"testing.message.info.marginBackground": "Couleur de marge à côté des messages d'information affichés inline dans l'éditeur.",
+ "testing.messagePeekBorder": "Couleur des bordures et de la flèche de l’affichage d’aperçu lors de l’affichage de l’aperçu d’un message journalisé.",
+ "testing.messagePeekHeaderBackground": "Couleur des bordures et de la flèche de l’affichage d’aperçu lors de l’affichage de l’aperçu d’un message journalisé.",
"testing.peekBorder": "Couleur des bordures et de la flèche de l'affichage d'aperçu.",
- "testing.runAction": "Couleur des icônes d'exécution dans l'éditeur."
+ "testing.runAction": "Couleur des icônes d'exécution dans l'éditeur.",
+ "testing.uncoveredBackground": "Couleur d’arrière-plan du texte qui n’était pas couvert.",
+ "testing.uncoveredBorder": "Couleur de bordure du texte qui n’était pas couvert.",
+ "testing.uncoveredBranchBackground": "Arrière-plan du widget affiché pour une branche non couverte.",
+ "testing.uncoveredGutterBackground": "Couleur de reliure des régions où le code n’a pas été couvert."
},
"vs/workbench/contrib/testing/common/configuration": {
"testConfigurationTitle": "Test",
- "testing.alwaysRevealTestOnStateChange": "Affichez toujours le test exécuté lorsque '#testing.followRunningTest#' est activé. Si ce paramètre est désactivé, seuls les tests ayant échoué sont affichés.",
- "testing.autoRun.delay": "Délai d'attente, en millisecondes, après le marquage d'un test comme étant obsolète et le démarrage d'une nouvelle exécution.",
- "testing.autoRun.mode": "Contrôle les tests exécutés automatiquement.",
- "testing.autoRun.mode.allInWorkspace": "Exécute automatiquement tous les tests découverts quand l'exécution automatique est activée. Réexécute les tests individuels quand ils changent.",
- "testing.autoRun.mode.onlyPreviouslyRun": "Réexécute les tests individuels quand ils changent. N'exécute pas automatiquement les tests qui n'ont pas déjà été exécutés.",
- "testing.automaticallyOpenPeekView": "Configure le déclenchement de l'ouverture automatique de la vue d'aperçu d'erreur.",
+ "testing.ShowCoverageInExplorer": "Indique si la couverture de test doit être arrêtée dans la vue Explorateur de fichiers.",
+ "testing.alwaysRevealTestOnStateChange": "Toujours révéler le test exécuté lorsque {0} est activé. Si ce paramètre est désactivé, seuls les tests ayant échoué sont affichés.",
+ "testing.automaticallyOpenPeekView": "Configure le déclenchement de l’ouverture automatique de la vue d’aperçu d’erreur.",
"testing.automaticallyOpenPeekView.failureAnywhere": "L'ouverture automatique s'effectue, quel que soit l'emplacement de l'échec.",
"testing.automaticallyOpenPeekView.failureInVisibleDocument": "L'ouverture automatique s'effectue en cas d'échec d'un test dans un document visible.",
"testing.automaticallyOpenPeekView.never": "Ne jamais ouvrir automatiquement",
- "testing.automaticallyOpenPeekViewDuringAutoRun": "Contrôle si la vue d'aperçu doit s'ouvrir automatiquement en mode d'exécution automatique.",
+ "testing.automaticallyOpenPeekViewDuringContinuousRun": "Contrôle si la vue d’aperçu doit s’ouvrir automatiquement en mode d’exécution continue.",
+ "testing.countBadge": "Contrôle le badge de comptage sur l’icône Testing de la barre d’activités.",
+ "testing.countBadge.failed": "Afficher le nombre de tests ayant échoué",
+ "testing.countBadge.off": "Désactiver le badge du nombre de tests",
+ "testing.countBadge.passed": "Afficher le nombre de tests ayant réussi",
+ "testing.countBadge.skipped": "Afficher le nombre de tests ignorés",
+ "testing.coverageBarThresholds": "Configure les couleurs utilisées pour les pourcentages dans les barres de couverture de test.",
+ "testing.coverageToolbarEnabled": "Contrôle si la barre d’outils de couverture est affichée dans l’éditeur.",
"testing.defaultGutterClickAction": "Contrôle l’action à prendre lorsque vous cliquez avec le bouton gauche sur une décoration de test dans la reliure.",
"testing.defaultGutterClickAction.contextMenu": "Ouvrez le menu contextuel pour obtenir plus d’options.",
+ "testing.defaultGutterClickAction.coverage": "Exécutez le test avec couverture.",
"testing.defaultGutterClickAction.debug": "Déboguer le test.",
"testing.defaultGutterClickAction.run": "Exécutez le test.",
- "testing.followRunningTest": "Contrôle si le test en cours d’exécution doit être suivi dans l’affichage de l’explorateur de tests",
+ "testing.displayedCoveragePercent": "Configure le pourcentage affiché par défaut pour la couverture de test.",
+ "testing.displayedCoveragePercent.minimum": "La valeur minimale de couverture de l’instruction, de la fonction et de la branche.",
+ "testing.displayedCoveragePercent.statement": "La couverture de l’instruction.",
+ "testing.displayedCoveragePercent.totalCoverage": "Calcul de l’instruction combinée, de la fonction et de la couverture de branche.",
+ "testing.followRunningTest": "Contrôle si le test en cours d’exécution doit être suivi dans l’affichage de l’explorateur de tests.",
"testing.gutterEnabled": "Contrôle si les décorations de test sont affichées dans la marge de l’éditeur.",
"testing.openTesting": "Contrôle quand la vue de test doit s’ouvrir.",
- "testing.openTesting.neverOpen": "Ne jamais ouvrir automatiquement la vue de test",
- "testing.openTesting.openOnTestFailure": "Ouvrir la vue de test en cas d’échec de test",
- "testing.openTesting.openOnTestStart": "Ouvrir la vue des tests au démarrage des tests",
- "testing.saveBeforeTest": "Contrôlez si vous enregistrez tous les éditeurs modifiés avant d'exécuter un test."
+ "testing.openTesting.neverOpen": "Ne jamais ouvrir automatiquement les vues des tests",
+ "testing.openTesting.openExplorerOnTestStart": "Ouvrir l’explorateur de tests au démarrage des tests",
+ "testing.openTesting.openOnTestFailure": "Ouvrir la vue des résultats des tests en cas d’échec de test",
+ "testing.openTesting.openOnTestStart": "Ouvrir la vue des résultats des tests au démarrage des tests",
+ "testing.resultsView.layout": "Contrôle la disposition de l’affichage des résultats des tests.",
+ "testing.resultsView.layout.treeLeft": "Affichez l’arborescence des exécutions de tests à gauche avec les détails à droite.",
+ "testing.resultsView.layout.treeRight": "Affichez l’arborescence des exécutions de tests à droite avec les détails à gauche.",
+ "testing.saveBeforeTest": "Contrôlez si vous enregistrez tous les éditeurs modifiés avant d'exécuter un test.",
+ "testing.showAllMessages": "Contrôle s’il faut afficher les messages de toutes les séries de tests."
},
"vs/workbench/contrib/testing/common/constants": {
"testGroup.coverage": "Couverture",
@@ -9566,65 +15850,123 @@
"testState.unset": "Pas encore exécuté",
"testing.treeElementLabel": "{0} ({1})"
},
- "vs/workbench/contrib/testing/common/testResult": {
- "runFinished": "Série de tests à {0}"
- },
- "vs/workbench/contrib/testing/common/testServiceImpl": {
- "testError": "Une erreur s'est produite durant la tentative d'exécution des tests : {0}",
- "testTrust": "L’exécution de tests peut mener à l’exécution de code dans votre espace de travail."
+ "vs/workbench/contrib/testing/common/testingChatAgentTool": {
+ "runTestTool.confirm.all": "Le modèle souhaite exécuter tous les tests.",
+ "runTestTool.confirm.invocation": "Exécution en cours des tests... Merci de patienter.",
+ "runTestTool.confirm.message": "Le modèle souhaite exécuter des tests dans {0}.",
+ "runTestTool.confirm.title": "Autoriser l'exécution des tests ?",
+ "runTestTool.invoke.cancelled": "Série de tests a été annulée.",
+ "runTestTool.invoke.filesProgress": "Découverte de tests en cours…",
+ "runTestTool.invoke.filterProgress": "Filtrage des tests...",
+ "runTestTool.invoke.progress": "Démarrage de la série de tests...",
+ "runTestTool.noRunStarted": "Aucune exécution de test n’a été lancée. Il pourrait s’agir d’un problème avec votre exécuteur de tests ou votre extension.",
+ "runTestTool.noTests": "Aucun test trouvé dans les fichiers",
+ "runTestTool.userDescription": "Run unit tests (optionally with coverage)"
+ },
+ "vs/workbench/contrib/testing/common/testingContentProvider": {
+ "runNoOutout": "La série de tests n’a enregistré aucune sortie."
},
"vs/workbench/contrib/testing/common/testingContextKeys": {
+ "testing.activeEditorHasTests": "Indique si des tests sont présents dans l’éditeur actuel",
+ "testing.canGoToRelatedCode": "Indique si un contrôleur implémente une fonctionnalité de recherche de code lié à un test",
+ "testing.canGoToRelatedTest": "Indique si un contrôleur implémente une fonctionnalité pour rechercher des tests liés au code",
"testing.canRefresh": "Indique si un contrôleur de test a un gestionnaire d’actualisation attaché.",
"testing.controllerId": "ID de responsable du traitement de l’élément de test actuel",
+ "testing.coverageToolbarEnabled": "Indique si la barre d’outils de couverture est activée",
+ "testing.cursorInsideTestRange": "Indique si le curseur se trouve actuellement dans une plage de tests",
"testing.hasConfigurableConfig": "Indique si une configuration de test est possible",
"testing.hasCoverableTests": "Indique si un contrôleur de test a inscrit une configuration de couverture.",
+ "testing.hasCoverageInFile": "Indique que la couverture a été signalée dans l’éditeur actuel.",
"testing.hasDebuggableTests": "Indique si un contrôleur de test a inscrit une configuration de débogage",
+ "testing.hasInlineCoverageDetails": "Indique si une couverture détaillée par ligne est disponible pour l’affichage en ligne",
"testing.hasNonDefaultConfig": "Indique si un contrôleur de test a inscrit une configuration autre que la configuration par défaut",
+ "testing.hasPerTestCoverage": "Indique si la couverture par test est disponible",
"testing.hasRunnableTests": "Indique si un contrôleur de test a inscrit une configuration d’exécution",
+ "testing.inlineCoverageEnabled": "Indique si la couverture inline est affichée",
+ "testing.isContinuousModeOn": "Indique si le mode de test continu est activé.",
+ "testing.isCoverageFilteredToTest": "Indique si la couverture a été filtrée sur un seul test",
+ "testing.isParentRunningContinuously": "Indique si le parent d’un test est en cours d’exécution continue, défini dans le contexte de menu des éléments de test",
"testing.isRefreshing": "Indique si un contrôleur de test actualise actuellement les tests.",
+ "testing.isTestCoverageOpen": "Indique si un rapport de couverture de test est ouvert",
+ "testing.peekHasStack": "Indique si le message affiché dans une vue d’aperçu a une trace de pile",
"testing.peekItemType": "Type de l’élément dans l’affichage Aperçu de la sortie. La valeur peut être « test », « message », « tâche » ou « résultat ».",
+ "testing.profile.context.group": "Type de menu dans lequel le sous-menu configurer le profil de test existe. « Exécuter », « déboguer » ou « couverture »",
+ "testing.supportsContinuousRun": "Indique si l’exécution continue des tests est prise en charge",
"testing.testId": "ID de l'élément de test actuel, défini au moment de la création ou de l'ouverture de menus sur les éléments de test",
"testing.testItemHasUri": "Valeur booléenne indiquant si un URI a été défini pour l’élément de test",
- "testing.testItemIsHidden": "Valeur booléenne qui indique si l’élément de test est masqué"
+ "testing.testItemIsHidden": "Valeur booléenne qui indique si l’élément de test est masqué",
+ "testing.testMessage": "Valeur définie dans testMessage.contextValue, disponible dans éditeur/contenu et tests/message/contexte",
+ "testing.testResultOutdated": "Valeur disponible dans éditeur/contenu et tests/message/contexte lorsque le résultat est obsolète",
+ "testing.testResultState": "Test/élément/résultat disponible indiquant l’état de l’élément."
+ },
+ "vs/workbench/contrib/testing/common/testingProgressMessages": {
+ "testProgress.completed": "{0}/{1} tests réussis ({2} %)",
+ "testProgress.running": "Exécution des tests, {0}/{1} réussi(s) ({2} %)",
+ "testProgress.runningInitial": "Exécution en cours des tests... Merci de patienter.",
+ "testProgressWithSkip.completed": "{0}/{1} tests réussis ({2} %, {3} ignorés)",
+ "testProgressWithSkip.running": "Exécution des tests, {0}/{1} réussi(s) ({2} %, {3} ignoré(s))"
+ },
+ "vs/workbench/contrib/testing/common/testResult": {
+ "runFinished": "Série de tests à {0}",
+ "testUnnamedTask": "Tâche sans nom"
+ },
+ "vs/workbench/contrib/testing/common/testServiceImpl": {
+ "testError": "Une erreur s'est produite durant la tentative d'exécution des tests : {0}",
+ "testTrust": "L’exécution de tests peut mener à l’exécution de code dans votre espace de travail."
+ },
+ "vs/workbench/contrib/testing/common/testTypes": {
+ "testing.runProfileBitset.coverage": "Couverture",
+ "testing.runProfileBitset.debug": "Déboguer",
+ "testing.runProfileBitset.run": "Exécuter"
},
"vs/workbench/contrib/themes/browser/themes.contribution": {
+ "browseColorThemeInMarketPlace.label": "Parcourir les thèmes de couleur dans la Place de marché",
"browseColorThemes": "Parcourir les thèmes de couleur supplémentaires...",
"browseProductIconThemes": "Parcourez des thèmes d'icônes de produit supplémentaires...",
+ "cannotToggle": "Impossible de basculer entre les thèmes clair et foncé quand « {0} » est activé dans les paramètres.",
"defaultProductIconThemeLabel": "Par défaut",
"fileIconThemeCategory": "Thèmes d'icône de fichier",
"generateColorTheme.label": "Générer le thème de couleur à partir des paramètres actuels",
+ "goToSetting": "Ouvrir les paramètres",
"installColorThemes": "Installer des thèmes de couleurs supplémentaires...",
+ "installExtension.button.ok": "OK",
+ "installExtension.confirm": "Cette opération installe l’extension « {0} » publiée par « {1} ». Voulez-vous continuer ?",
"installIconThemes": "Installer des thèmes d'icônes de fichiers supplémentaires...",
"installProductIconThemes": "Installer des thèmes d'icônes de produit supplémentaires...",
"installing extensions": "Installation de l'extension '{0}'...",
"manage extension": "Gérer l'extension",
"manageExtensionIcon": "Icône de l’action « Gérer » dans la sélection rapide de thème",
- "miSelectColorTheme": "Thème de &&couleur",
- "miSelectIconTheme": "Thème d'&&icône de fichier",
- "miSelectProductIconTheme": "Thème d'icône de &&produit",
+ "miSelectTheme": "&&Thèmes",
"noIconThemeDesc": "Désactiver les icônes de fichier",
"noIconThemeLabel": "Aucun(e)",
"productIconThemeCategory": "Thèmes d'icône de produit",
+ "search.error": "Erreur lors de la recherche de thèmes : {0}",
"selectIconTheme.label": "Thème d'icône de fichier",
"selectProductIconTheme.label": "Thème d'icône de produit",
"selectTheme.label": "Thème de couleur",
+ "themes": "Thèmes",
"themes.category.dark": "thèmes sombres",
"themes.category.hc": "thèmes à contraste élevé",
"themes.category.light": "thèmes clairs",
+ "themes.configure.switchingDisabled": "Détection du mode de couleur système désactivée. Cliquez pour configurer.",
+ "themes.configure.switchingEnabled": "Détection du mode de couleur système activée. Cliquez pour configurer.",
"themes.selectIconTheme": "Sélectionner un thème d’icône de fichier (touches haut/bas pour afficher l’aperçu)",
"themes.selectIconTheme.label": "Thème d'icône de fichier",
"themes.selectMarketplaceTheme": "Tapez pour rechercher plus. Sélectionnez pour installer. Touches haut/bas pour prévisualiser",
"themes.selectProductIconTheme": "Sélectionner un thème d’icône de produit (touches haut/bas pour afficher l’aperçu)",
"themes.selectProductIconTheme.label": "Thème d'icône de produit",
- "themes.selectTheme": "Sélectionner un thème de couleur (flèches bas/haut pour afficher l'aperçu)",
+ "themes.selectTheme.darkHC": "Sélectionner un thème de couleur pour le mode contraste élevé sombre",
+ "themes.selectTheme.darkScheme": "Sélectionner un thème de couleur pour le mode sombre système",
+ "themes.selectTheme.default": "Sélectionner le thème de couleur (détection du mode de couleur système désactivée)",
+ "themes.selectTheme.lightHC": "Sélectionner un thème de couleur pour le mode contraste élevé clair",
+ "themes.selectTheme.lightScheme": "Sélectionner un thème de couleur pour le mode clair système",
"toggleLightDarkThemes.label": "Basculer entre les thèmes clair/sombre"
},
"vs/workbench/contrib/timeline/browser/timeline.contribution": {
"files.openTimeline": "Ouvrir la chronologie",
"filterTimeline": "Chronologie du filtre",
- "timeline.excludeSources": "Tableau de sources chronologiques à exclure de la vue Chronologie.",
- "timeline.pageOnScroll": "Expérimental. Contrôle si la vue Chronologie doit charger la page suivante quand vous faites défiler une liste d'éléments jusqu'à la fin.",
- "timeline.pageSize": "Nombre d'éléments à montrer par défaut dans la vue Chronologie et durant le chargement d'autres éléments. L'affectation de la valeur 'null' (valeur par défaut) permet de choisir automatiquement une taille de page basée sur la zone visible de la vue Chronologie.",
+ "timeline.pageOnScroll": "Contrôle si la vue Chronologie doit charger la page suivante quand vous faites défiler une liste d'éléments jusqu'à la fin.",
+ "timeline.pageSize": "Nombre d'éléments à montrer par défaut dans la vue Chronologie et durant le chargement d'autres éléments. L'affectation de la valeur « null » permet de choisir automatiquement une taille de page basée sur la zone visible de la vue Chronologie.",
"timelineConfigurationTitle": "Chronologie",
"timelineFilter": "Icône de l’action de chronologie de filtre.",
"timelineOpenIcon": "Icône de l'action d'ouverture de la chronologie.",
@@ -9638,7 +15980,11 @@
"timeline.loadMore": "Charger plus",
"timeline.loading": "Chargement de la chronologie de {0}...",
"timeline.loadingMore": "Chargement...",
+ "timeline.noLocalHistoryYet": "L'historique local effectue le suivi des modifications récentes lorsque vous les enregistrez, sauf si le fichier a été exclu ou est trop volumineux.",
+ "timeline.noSCM": "Le contrôle de code source n'a pas été configuré.",
"timeline.noTimelineInfo": "Aucune information sur la chronologie n'a été fournie.",
+ "timeline.noTimelineInfoFromEnabledSources": "Aucune information sur la chronologie filtrée n'a été fournie.",
+ "timeline.noTimelineSourcesEnabled": "Toutes les sources chronologiques ont été filtrées.",
"timeline.toggleFollowActiveEditorCommand.follow": "Épingler la chronologie actuelle",
"timeline.toggleFollowActiveEditorCommand.unfollow": "Désépingler la chronologie actuelle",
"timelinePin": "Icône de l'action permettant d'épingler la chronologie.",
@@ -9671,20 +16017,22 @@
},
"vs/workbench/contrib/update/browser/releaseNotesEditor": {
"releaseNotesInputName": "Notes de publication : {0}",
+ "showOnUpdate": "Afficher les notes de publication après une mise à jour",
"unassigned": "non assigné"
},
"vs/workbench/contrib/update/browser/update": {
"DownloadingUpdate": "Téléchargement de la mise à jour...",
- "cancel": "Annuler",
"checkForUpdates": "Rechercher les mises à jour...",
- "checkingForUpdates": "Recherche de mises à jour...",
+ "checkingForUpdates": "Recherche des mises à jour de {0}...",
+ "checkingForUpdates2": "Recherche de mises à jour...",
"download update": "Télécharger la mise à jour",
"download update_1": "Télécharger la mise à jour (1)",
- "downloading": "Téléchargement en cours…",
+ "downloading": "Téléchargement de {0} mise à jour...",
"installUpdate": "Installer la mise à jour",
"installUpdate...": "Installer la mise à jour... (1)",
"installingUpdate": "Installation de la mise à jour...",
"later": "Plus tard",
+ "learn more": "En savoir plus",
"noUpdatesAvailable": "Aucune mise à jour n'est disponible actuellement.",
"read the release notes": "Bienvenue dans {0} v{1} ! Voulez-vous lire les notes de publication ?",
"relaunchDetailInsiders": "Appuyez sur le bouton de rechargement pour passer à la version Insiders de VS Code.",
@@ -9695,27 +16043,35 @@
"restartToUpdate": "Redémarrer pour mettre à jour (1)",
"selectSyncService.detail": "La version Insiders de VS Code synchronise vos paramètres, combinaisons de touches, extensions et extraits de code ainsi que l’état de votre IU à l’aide d’un service de synchronisation des paramètres Insiders distinct par défaut.",
"selectSyncService.message": "Choisissez le service de synchronisation des paramètres à utiliser après le changement de version",
- "showReleaseNotes": "Afficher les notes de publication",
+ "showUpdateReleaseNotes": "Afficher les notes de publication des mises à jour",
"switchToInsiders": "Passer à la version Insiders...",
"switchToStable": "Passer à la version stable...",
"thereIsUpdateAvailable": "Une mise à jour est disponible.",
"update service": "Service de mise à jour",
+ "update service disabled": "Les mises à jour sont désactivées car vous exécutez l’installation de l’étendue utilisateur de {0} en tant qu’administrateur.",
"update.noReleaseNotesOnline": "Cette version de {0} n'a pas de notes de publication en ligne",
"updateAvailable": "Une mise à jour est disponible : {0} {1}",
"updateAvailableAfterRestart": "Redémarrer {0} pour appliquer la dernière mise à jour.",
"updateIsReady": "Nouvelle mise à jour de {0} disponible.",
"updateNow": "Mettre à jour maintenant",
- "updating": "Mise à jour en cours...",
- "use insiders": "Insiders",
- "use stable": "Stable (actuel)"
+ "updating": "Mise à jour de {0}...",
+ "use insiders": "&&Insiders",
+ "use stable": "&&Stable (actuel)"
},
"vs/workbench/contrib/update/browser/update.contribution": {
"applyUpdate": "Appliquer la mise à jour...",
+ "checkForUpdates": "Rechercher les mises à jour...",
+ "developerCategory": "Développeur",
"downloadUpdate": "Télécharger la mise à jour",
"installUpdate": "Installer la mise à jour",
- "miReleaseNotes": "&&Notes de publication",
+ "mshowReleaseNotes": "Afficher les &¬es de publication",
+ "openDownloadPage": "Télécharger {0}",
"pickUpdate": "Appliquer la mise à jour",
+ "releaseNotesFromFileNone": "Impossible d’ouvrir le fichier actif en tant que notes de publication",
"restartToUpdate": "Redémarrer pour mettre à jour",
+ "showReleaseNotes": "Afficher les notes de publication",
+ "showReleaseNotesCurrentFile": "Ouvrir le fichier actif en tant que notes de publication",
+ "update.noReleaseNotesOnline": "Cette version de {0} n'a pas de notes de publication en ligne",
"updateButton": "&&Mettre à jour"
},
"vs/workbench/contrib/url/browser/trustedDomains": {
@@ -9727,10 +16083,9 @@
"trustedDomain.trustSubDomain": "Approuver {0} et tous ses sous-domaines"
},
"vs/workbench/contrib/url/browser/trustedDomainsValidator": {
- "cancel": "Annuler",
- "configureTrustedDomains": "Configurer les domaines approuvés",
- "copy": "Copier",
- "open": "Ouvrir",
+ "configureTrustedDomains": "Configurer les domaines &&approuvés",
+ "copy": "&&Copier",
+ "open": "&&Ouvrir",
"openExternalLinkAt": "Voulez-vous que {0} ouvre le site web externe ?"
},
"vs/workbench/contrib/url/browser/url.contribution": {
@@ -9739,108 +16094,186 @@
"workbench.trustedDomains.promptInTrustedWorkspace": "Lorsque cette option est activée, des invites de domaine approuvé s’affichent lors de l’ouverture de liens dans les espaces de travail approuvés."
},
"vs/workbench/contrib/userDataProfile/browser/userDataProfile": {
- "currentProfile": "Le profil Paramètres actuel est {0}",
- "manageProfiles": "{0} ({1})",
- "profileTooltip": "{0} : {1}",
- "settingsProfilesIcon": "Icône des profils de paramètres.",
- "statusBarItemSettingsProfileBackground": "Couleur d’arrière-plan de l’entrée du profil de paramètres dans la barre d’état.",
- "statusBarItemSettingsProfileForeground": "Couleur de premier plan pour l’entrée du profil de paramètres dans la barre d’état.",
- "workbench.experimental.settingsProfiles.enabled": "Contrôle si la fonctionnalité d’évaluation de l’aperçu des profils Paramètres doit être activée."
- },
- "vs/workbench/contrib/userDataProfile/common/userDataProfileActions": {
- "cleanup profile": "Nettoyer les profils de paramètres",
- "confiirmation message": "Cela remplacera vos paramètres actuels. Voulez-vous vraiment continuer ?",
- "create and enter empty profile": "Créer un profil vide...",
- "create empty profile": "Créer un profil de paramètres vide...",
- "create profile": "Créer...",
- "create settings profile": "{0}: Créer...",
+ "New Profile Window": "Nouvelle fenêtre avec profil",
+ "change profile": "Basculer vers le profil {0}",
+ "create profile": "Nouveau profil...",
"current": "Actuel",
- "delete profile": "Supprimer...",
- "edit settings profile": "Renommer le profil de paramètres...",
- "export profile": "Exporter...",
- "export profile dialog": "Enregistrer le profil",
- "export success": "{0} : exporté avec succès.",
- "import profile": "Importer...",
- "import profile dialog": "Importer le profil",
- "import profile placeholder": "Fournir l’URL du profil ou sélectionner le fichier de profil à importer",
- "import profile quick pick title": "Importer des paramètres à partir d’un profil",
- "import profile title": "Importer des paramètres à partir d’un profil",
- "name": "Nom du profil",
- "pick profile": "Sélectionner le profil de paramètres",
- "pick profile to delete": "Sélectionner les profils de paramètres à supprimer",
- "pick profile to rename": "Sélectionner le profil de paramètres à renommer",
- "rename profile": "Renommer...",
- "save profile as": "Créer à partir du profil des paramètres actuels...",
- "select from file": "Importer à partir d’un fichier de profil",
- "select from url": "Importer à partir de l’URL",
- "switch profile": "Basculer..."
+ "delete profile": "Supprimer le profil...",
+ "delete specific profile": "Supprimer un profil...",
+ "export profile": "Exporter le profil...",
+ "export profile in share": "Exporter le profil ({0})...",
+ "manage profiles": "Profils",
+ "miOpenProfiles": "&&Profils",
+ "new window with profile": "Nouvelle fenêtre avec profil",
+ "newWindowWithProfile": "Nouvelle fenêtre avec profil...",
+ "open": "Ouvrir le profil {0}",
+ "open profile": "Ouvrir une nouvelle fenêtre avec un profil {0}",
+ "open profiles": "Profils ouverts (IU)",
+ "openShort": "{0}",
+ "pick profile": "Sélectionner un profil",
+ "pick profile to delete": "Sélectionner les profils à supprimer",
+ "profiles": "Profil ({0})",
+ "save profile as": "Enregistrer le profil actuel sous...",
+ "selectProfile": "Sélectionner un profil",
+ "switchProfile": "Changer de profil...",
+ "userdataprofilesEditor": "Éditeur de profils"
+ },
+ "vs/workbench/contrib/userDataProfile/browser/userDataProfileActions": {
+ "cleanup profile": "Nettoyer les profils",
+ "create temporary profile": "Nouvelle fenêtre avec un profil temporaire",
+ "reset workspaces": "Réinitialiser les associations de profils d’espace de travail"
+ },
+ "vs/workbench/contrib/userDataProfile/browser/userDataProfilesEditor": {
+ "activeProfile": "Actif",
+ "addButton": "Ajouter un dossier",
+ "addFolder": "Ajouter un dossier",
+ "addFolderTitle": "Sélectionner les dossiers à ajouter",
+ "change profile": "Changer de profil",
+ "changeIcon": "Cliquez pour changer d'icône",
+ "contents": "Contenu",
+ "contents source description": "Configurer la source de contenu pour ce profil\r\n",
+ "copy description": "Copier",
+ "copy from default": "{0} (Copier)",
+ "copy from description": "Sélectionner la source de profil à partir de laquelle vous voulez copier le contenu",
+ "copy from profile description": "Copier {0} à partir du profil {1}",
+ "copy info": "– *{0} :* copier le contenu du profil {1}\r\n",
+ "copy profile from": "Copier le profil depuis",
+ "create from": "Copier à partir de",
+ "current description": "Utiliser {0} à partir du profil {1}",
+ "default": "Par défaut",
+ "default description": "Utiliser {0} du profil par défaut",
+ "default info": "– *Par défaut :* utiliser le contenu du profil par défaut\r\n",
+ "default profile contents description": "Parcourir le contenu de ce profil\r\n",
+ "defaultProfileIcon": "Impossible de changer l’icône du profil par défaut",
+ "defaultProfileName": "Impossible de modifier le nom du profil par défaut",
+ "deleteTrustedUri": "Supprimer le chemin",
+ "editIcon": "Icône de l’icône de modification de dossier dans l’éditeur des profils.",
+ "empty profile": "Aucun",
+ "enable for current window": "Utiliser ce profil pour la fenêtre actuelle",
+ "enable for new windows": "Utiliser ce profil comme valeur par défaut pour les nouvelles fenêtres",
+ "extensions": "Extensions",
+ "folders_workspaces": "Dossiers et espaces de travail",
+ "folders_workspaces_description": "Les dossiers et espaces de travail suivants utilisent ce profil",
+ "from existing profiles": "Profils existants",
+ "from template": "À partir d’un modèle",
+ "from templates": "Modèles de profils",
+ "hostColumnLabel": "Hôte",
+ "icon": "Icône de profil",
+ "icon-description": "Icône de profil à afficher dans la barre d’activités",
+ "icon-label": "Icône",
+ "import from file": "Sélectionner le fichier...",
+ "import from url": "Importer à partir d’une URL",
+ "import profile dialog": "Sélectionner le fichier de modèle de profil",
+ "import profile placeholder": "Fournir l’URL du modèle de profil",
+ "import profile quick pick title": "Importer à partir du modèle de profil...",
+ "importProfile": "Importer le profil...",
+ "keybindings": "Raccourcis clavier",
+ "localAuthority": "Local",
+ "mcp": "Serveurs MCP",
+ "name": "Nom",
+ "name required": "Le nom de profil est obligatoire et doit être une valeur non vide.",
+ "new from template": "Nouveau profil à partir d’un modèle",
+ "newProfile": "Nouveau profil",
+ "no_folder_description": "Aucun dossier ou espace de travail n’utilise ce profil",
+ "none": "Aucun",
+ "none description": "Créer un élément {0} vide",
+ "none info": "- *Aucun :* créer du contenu vide\r\n",
+ "open": "Ouvrir dans une nouvelle fenêtre",
+ "options": "Source",
+ "pathColumnLabel": "Chemin d’accès",
+ "profileExists": "Il existe déjà un profil intitulé {0}.",
+ "profileName": "Nom de profil",
+ "profiles": "Profils",
+ "profilesSashBorder": "Couleur de la bordure de l’éditeur de profils splitview sash.",
+ "removeIcon": "Icône de l’icône de suppression de dossier dans l’éditeur des profils.",
+ "settings": "Paramètres",
+ "snippets": "Extraits de code",
+ "tasks": "Tâches",
+ "trustedFolderAriaLabel": "{0}, approuvé",
+ "trustedFolderWithHostAriaLabel": "{0} sur {1}, approuvé(s)",
+ "trustedFoldersAndWorkspaces": "Dossiers et espaces de travail approuvés",
+ "use for curren window": "Utiliser pour la fenêtre active",
+ "use for new windows": "Utiliser pour les nouvelles fenêtres",
+ "userDataProfiles": "Profils"
+ },
+ "vs/workbench/contrib/userDataProfile/browser/userDataProfilesEditorModel": {
+ "active": "Utilisez ce profil pour la fenêtre actuelle",
+ "applyToAllProfiles": "Appliquer l’extension à tous les profils",
+ "cancel": "Annuler",
+ "copy from": "{0} (Copier)",
+ "copyFromProfile": "Dupliquer...",
+ "create": "Créer",
+ "delete": "Supprimer",
+ "deleteProfile": "Voulez-vous vraiment supprimer le profil « {0} » ?",
+ "discard": "Ignorer et créer",
+ "export": "Exporter...",
+ "import in desktop": "Créer en {0}",
+ "invalid configurations": "Le profil doit contenir au moins une configuration.",
+ "name required": "Le nom de profil est obligatoire et doit être une valeur non vide.",
+ "new profile exists": "Un nouveau profil est déjà en cours de création. Voulez-vous l’ignorer et en créer un nouveau ?",
+ "open": "Ouvrir sur le côté",
+ "open new window": "Ouvrir une nouvelle fenêtre avec ce profil",
+ "preview": "Afficher un aperçu",
+ "profileExists": "Il existe déjà un profil intitulé {0}.",
+ "replace": "Remplacer",
+ "untitled": "Sans titre"
},
"vs/workbench/contrib/userDataSync/browser/userDataSync": {
- "Theirs": "Les leurs",
- "Yours": "Les vôtres",
"accept failed": "Erreur au moment de l'acceptation des changements. Pour plus d'informations, consultez les [journaux]({0}).",
- "accept merges title": "Accepter la fusion",
- "ask to turn on in global": "La synchronisation des paramètres est désactivée (1)",
"auth failed": "Erreur au moment de l'activation de la synchronisation des paramètres. Échec de l'authentification.",
- "cancel": "Annuler",
- "change later": "Vous pouvez toujours modifier ce paramètre ultérieurement.",
+ "cancel turning on sync": "Annuler",
+ "complete merges title": "Terminer la fusion",
"configure": "Configurer...",
- "configure and turn on sync detail": "Connectez-vous pour synchroniser vos données sur tous les appareils.",
- "configure sync": "{0} : Configurer...",
+ "configure and turn on sync detail": "Connectez-vous pour sauvegarder et synchroniser vos données sur plusieurs appareils.",
+ "configure sync": "Configurer...",
"configure sync placeholder": "Choisir les éléments à synchroniser",
+ "configure sync title": "{0} : Configurer...",
"conflicts detected": "Synchronisation impossible en raison de conflits dans {0}. Corrigez-les pour continuer.",
"default": "Par défaut",
+ "download sync activity complete": "L'activité de synchronisation des paramètres a été correctement téléchargée.",
"error reset required": "La synchronisation des paramètres est désactivée, car vos données dans le cloud sont plus anciennes que celles du client. Effacez vos données dans le cloud avant d'activer la synchronisation.",
"error reset required while starting sync": "Impossible d'activer la synchronisation des paramètres, car vos données dans le cloud sont plus anciennes que celles du client. Effacez vos données dans le cloud avant d'activer la synchronisation.",
"error upgrade required": "La synchronisation des paramètres est désactivée, car la version actuelle ({0}, {1}) n'est pas compatible avec le service de synchronisation. Effectuez une mise à jour avant d'activer la synchronisation.",
"error upgrade required while starting sync": "Impossible d'activer la synchronisation des paramètres, car la version actuelle ({0}, {1}) n'est pas compatible avec le service de synchronisation. Effectuez une mise à jour avant d'activer la synchronisation.",
"errorInvalidConfiguration": "Impossible de synchroniser {0}, car le contenu du fichier est non valide. Ouvrez le fichier, puis corrigez-le.",
- "global activity turn on sync": "Activer la synchronisation des paramètres...",
+ "global activity turn on sync": "Paramètres de sauvegarde et de synchronisation...",
"has conflicts": "{0} : conflits détectés",
- "insiders": "Membres du programme Insider",
- "learn more": "En savoir plus",
- "localResourceName": "{0} (local)",
+ "insiders": "Membres du programme Insiders",
+ "method not found": "La synchronisation des paramètres est désactivée, car le client effectue des demandes non valides. Veuillez signaler un problème avec les journaux.",
"no authentication providers": "Aucun fournisseur d'authentification n'est disponible.",
"open file": "Ouvrir le fichier {0}",
"operationId": "ID d'opération : {0}",
- "per platform": "pour chaque plateforme",
- "remoteResourceName": "{0} (distant)",
"replace local": "Remplacer la version locale",
"replace remote": "Remplacer la version distante",
+ "report issue": "Signaler un problème",
"reset": "Effacer les données dans le cloud...",
- "resolveConflicts_global": "{0} : afficher les conflits de paramètres (1)",
- "resolveKeybindingsConflicts_global": "{0} : afficher les conflits de combinaisons de touches (1)",
- "resolveSnippetsConflicts_global": "{0} : afficher les conflits d'extraits d'utilisateurs ({1})",
- "resolveTasksConflicts_global": "{0} : afficher les conflits de tâches utilisateur (1)",
+ "resolveConflicts_global": "Afficher les conflits ({0})",
"service changed and turned off": "La synchronisation des paramètres a été désactivée, car {0} utilise désormais un service distinct. Réactivez la synchronisation.",
"service switched to insiders": "La synchronisation des paramètres est passée au service Insiders",
"service switched to stable": "La synchronisation des paramètres est passée au service Stable",
"session expired": "La synchronisation des paramètres a été désactivée, car la session active est arrivée à expiration. Reconnectez-vous pour activer la synchronisation.",
- "settings sync is off": "La synchronisation des paramètres est désactivée",
"show conflicts": "Afficher les conflits",
"show sync log title": "{0} : afficher le journal",
"show sync log toolrip": "Afficher le journal",
- "show synced data": "{0} : afficher les données synchronisées",
+ "show sync logs": "Afficher le journal",
+ "show synced data": "Afficher les données synchronisées",
"show synced data action": "Afficher les données synchronisées",
- "showConflicts": "{0} : afficher les conflits de paramètres",
- "showKeybindingsConflicts": "{0} : afficher les conflits de combinaisons de touches",
- "showSnippetsConflicts": "{0} : afficher les conflits d'extraits d'utilisateurs",
- "showTasksConflicts": "{0} : afficher les conflits de tâches utilisateur",
"sign in accounts": "Se connecter pour synchroniser les paramètres (1)",
- "sign in and turn on": "Se connecter et activer",
+ "sign in and turn on": "Se connecter",
"sign in global": "Se connecter pour synchroniser les paramètres",
"sign in to sync": "Se connecter pour synchroniser les paramètres",
"stable": "Stable",
- "stop sync": "{0} : désactiver",
+ "stop sync": "Désactiver",
"switchSyncService.description": "Vérifiez que vous utilisez le même service de synchronisation des paramètres quand plusieurs environnements sont synchronisés",
"switchSyncService.title": "{0} : sélectionner le service",
"sync is on": "La synchronisation des paramètres est activée",
- "sync now": "{0} : synchroniser maintenant",
- "sync settings": "{0} : afficher les paramètres",
+ "sync now": "Synchroniser maintenant",
+ "sync settings": "Afficher les paramètres",
"synced with time": "synchronisation effectuée de {0}",
"syncing": "synchronisation",
"too large": "La synchronisation {0} a été désactivée, car la taille du fichier {1} à synchroniser dépasse {2}. Ouvrez le fichier et réduisez sa taille, puis activez la synchronisation",
"too large while starting sync": "Impossible d'activer la synchronisation des paramètres, car la taille du fichier {0} à synchroniser dépasse {1}. Ouvrez le fichier, réduisez sa taille, puis activez la synchronisation",
+ "too many profiles": "Synchronisation des profils désactivée en raison de leur nombre. La synchronisation des paramètres prend en charge la synchronisation de 20 profils maximum. Veuillez réduire le nombre de profils et activer la synchronisation.",
"turn off": "&&Désactiver",
"turn off failed": "Erreur au moment de la désactivation de la synchronisation des paramètres. Pour plus d'informations, consultez les [journaux]({0}).",
"turn off sync confirmation": "Voulez-vous arrêter la synchronisation?",
@@ -9848,15 +16281,11 @@
"turn off sync everywhere": "Désactivez la synchronisation sur tous vos appareils et effacez les données du cloud.",
"turn on failed": "Erreur d’activation de la synchronisation des paramètres. {0}",
"turn on failed with user data sync error": "Erreur au moment de l'activation de la synchronisation des paramètres. Pour plus d'informations, consultez les [journaux]({0}).",
- "turn on settings sync": "Activer la synchronisation des paramètres",
"turn on sync": "Activer la synchronisation des paramètres...",
- "turn on sync with category": "{0} : activer...",
"turned off": "La synchronisation des paramètres a été désactivée à partir d'un autre appareil. Réactivez la synchronisation.",
- "turnin on sync": "Activation de la synchronisation des paramètres...",
+ "turning on sync": "Activation de la synchronisation des paramètres...",
"turning on syncing": "Activation de la synchronisation des paramètres...",
- "turnon sync after initialization message": "Vos paramètres, combinaisons de touches, extensions, extraits de code et états de l'interface utilisateur ont été initialisés mais ne sont pas synchronisés. Voulez-vous activer la synchronisation des paramètres ?",
"using separate service": "La synchronisation des paramètres utilise désormais un service distinct. Pour plus d'informations, consultez la [documentation relative à la synchronisation des paramètres](https://aka.ms/vscode-settings-sync-help#_syncing-stable-versus-insiders).",
- "workbench.action.showSyncRemoteBackup": "Afficher les données synchronisées",
"workbench.actions.syncData.reset": "Effacer les données dans le cloud..."
},
"vs/workbench/contrib/userDataSync/browser/userDataSync.contribution": {
@@ -9869,38 +16298,24 @@
"settings sync": "Synchronisation des paramètres. ID d'opération : {0}",
"show sync logs": "Afficher le journal"
},
- "vs/workbench/contrib/userDataSync/browser/userDataSyncMergesView": {
- "accept local": "Accepter la version locale",
- "accept merges": "Accepter les fusions",
- "accept remote": "Accepter les paramètres distants",
- "accepted": "Accepté",
- "cancel": "Annuler",
- "conflict": "Conflits détectés",
- "conflicts detected": "Conflits détectés",
- "explanation": "Consultez chaque entrée et effectuez la fusion pour activer la synchronisation.",
- "label": "UserDataSyncResources",
- "leftResourceName": "{0} (distant)",
- "merges": "{0} (fusions)",
- "preview": "{0} (préversion)",
- "resolve": "Impossible d'effectuer la fusion en raison de conflits. Résolvez-les pour pouvoir continuer.",
- "rightResourceName": "{0} (local)",
- "sideBySideDescription": "Synchronisation des paramètres",
- "sideBySideLabels": "{0} ↔ {1}",
- "turn on sync": "Activer la synchronisation des paramètres",
- "turning on": "Activation...",
+ "vs/workbench/contrib/userDataSync/browser/userDataSyncConflictsView": {
+ "Theirs": "Les leurs",
+ "Yours": "Les vôtres",
+ "explanation": "Parcourez chaque entrée et fusionnez pour résoudre les conflits.",
+ "localResourceName": "{0} (local)",
+ "remoteResourceName": "{0} (distant)",
"workbench.actions.sync.acceptLocal": "Accepter la version locale",
- "workbench.actions.sync.acceptRemote": "Accepter la version distante",
- "workbench.actions.sync.discard": "Abandonner",
- "workbench.actions.sync.merge": "Fusionner",
- "workbench.actions.sync.showChanges": "Ouvrir les changements"
+ "workbench.actions.sync.acceptRemote": "Accepter les paramètres distants",
+ "workbench.actions.sync.openConflicts": "Afficher les conflits"
},
"vs/workbench/contrib/userDataSync/browser/userDataSyncViews": {
"confirm replace": "Voulez-vous remplacer vos {0} en cours par la sélection ?",
+ "conflicts": "Conflits",
"current": "Actuelle",
+ "downloaded sync activity title": "Activité de synchronisation (développeur)",
"last sync states": "Dernière synchronisation distante",
"leftResourceName": "{0} (distant)",
"local sync activity title": "Activité de synchronisation (locale)",
- "merges": "Fusions",
"no machines": "Aucune machine",
"not found": "machine introuvable ayant l'ID {0}",
"placeholder": "Entrer le nom de la machine",
@@ -9908,6 +16323,7 @@
"remoteToLocalDiff": "{0} ↔ {1}",
"reset": "Réinitialiser les données synchronisées",
"rightResourceName": "{0} (local)",
+ "select sync activity file": "Sélectionner un fichier ou un dossier de l'activité de synchronisation",
"sideBySideLabels": "{0} ↔ {1}",
"sync logs": "Journaux",
"synced machines": "Machines synchronisées",
@@ -9918,24 +16334,21 @@
"valid message": "Le nom de la machine doit être unique et non vide",
"workbench.actions.sync.compareWithLocal": "Comparer avec local",
"workbench.actions.sync.editMachineName": "Modifier le nom",
+ "workbench.actions.sync.loadActivity": "Charger l’activité de synchronisation",
"workbench.actions.sync.replaceCurrent": "Restaurer",
- "workbench.actions.sync.resolveResourceRef": "Afficher les données de synchronisation JSON brutes",
+ "workbench.actions.sync.resolveResourceRef": "Afficher les données de synchronisation JSON brut",
"workbench.actions.sync.turnOffSyncOnMachine": "Désactiver la synchronisation des paramètres"
},
- "vs/workbench/contrib/userDataSync/electron-sandbox/userDataSync.contribution": {
+ "vs/workbench/contrib/userDataSync/electron-browser/userDataSync.contribution": {
"Open Backup folder": "Ouvrir le dossier des sauvegardes locales",
- "no backups": "Le dossier des sauvegardes locales n'existe pas"
- },
- "vs/workbench/contrib/views/browser/treeView": {
- "no-dataprovider": "Aucun fournisseur de données inscrit pouvant fournir des données de vue.",
- "refresh": "Actualiser",
- "collapseAll": "Réduire tout",
- "command-error": "Erreur pendant l'exécution de la commande {1} : {0}. Probablement due à l'extension qui contribue à {1}."
+ "download sync activity complete": "L'activité de synchronisation des paramètres a été correctement téléchargée.",
+ "no backups": "Le dossier des sauvegardes locales n'existe pas",
+ "open": "Ouvrir un dossier"
},
"vs/workbench/contrib/watermark/browser/watermark": {
"tips.enabled": "Si cette option est activée, les conseils en filigrane s'affichent quand aucun éditeur n'est ouvert.",
"watermark.findInFiles": "Chercher dans les fichiers",
- "watermark.newUntitledFile": "Nouveau fichier sans titre",
+ "watermark.newUntitledFile": "Nouveau fichier texte sans titre",
"watermark.openFile": "Ouvrir un fichier",
"watermark.openFileFolder": "Ouvrir un fichier ou un dossier",
"watermark.openFolder": "Ouvrir le dossier",
@@ -9949,291 +16362,49 @@
},
"vs/workbench/contrib/webview/browser/webview.contribution": {
"copy": "Copier",
- "cut": "Couper",
- "paste": "Coller"
- },
- "vs/workbench/contrib/webview/browser/webviewElement": {
- "fatalErrorMessage": "Erreur de chargement de la vue web : {0}"
- },
- "vs/workbench/contrib/webview/electron-sandbox/webviewCommands": {
- "iframeWebviewAlert": "Utilisation d'outils de développement standard pour déboguer une vue web basée sur un iframe",
- "openToolsLabel": "Ouvrir les outils de développement Webview"
- },
- "vs/workbench/contrib/webviewPanel/browser/webviewCommands": {
- "editor.action.webvieweditor.findNext": "Rechercher l'occurrence suivante",
- "editor.action.webvieweditor.findPrevious": "Rechercher l'occurrence précédente",
- "editor.action.webvieweditor.hideFind": "Arrêter la recherche",
- "editor.action.webvieweditor.showFind": "Afficher la recherche",
- "refreshWebviewLabel": "Recharger les vues web"
- },
- "vs/workbench/contrib/webviewPanel/browser/webviewPanel.contribution": {
- "webview.editor.label": "éditeur de vues web"
- },
- "vs/workbench/contrib/welcome/common/newFile.contribution": {
- "Built-In": "Intégré",
- "Create": "Créer",
- "change keybinding": "Configurer la combinaison de touches",
- "createNew": "Créer nouveau...",
- "file": "Fichier",
- "miNewFile2": "Fichier texte",
- "notebook": "Notebook",
- "welcome.newFile": "Nouveau fichier..."
- },
- "vs/workbench/contrib/welcome/common/viewsWelcomeContribution": {
- "ViewsWelcomeExtensionPoint.proposedAPI": "La contribution viewsWelcome dans '{0}' nécessite 'enabledApiProposals: [\"contribViewsWelcome\"]' pour pouvoir utiliser la propriété proposée 'group'."
- },
- "vs/workbench/contrib/welcome/common/viewsWelcomeExtensionPoint": {
- "contributes.viewsWelcome": "Contenu de bienvenue des vues données en contribution. Le contenu de bienvenue est affiché dans des vues arborescentes quand il n'y a pas de contenu significatif à afficher (par exemple, l'Explorateur de fichiers quand aucun dossier n'est ouvert). Ce contenu peut servir de documentation dans le produit pour inciter les utilisateurs à utiliser certaines fonctionnalités avant qu'elles ne soient disponibles. Un bon exemple est un bouton 'Cloner le dépôt' dans la vue de bienvenue de l'Explorateur de fichiers.",
- "contributes.viewsWelcome.view": "Contenu de bienvenue ajouté pour une vue spécifique.",
- "contributes.viewsWelcome.view.contents": "Contenu de bienvenue à afficher. Le format du contenu est un sous-ensemble de Markdown, avec prise en charge des liens uniquement.",
- "contributes.viewsWelcome.view.enablement": "Condition qui détermine l'activation des boutons et des liens de commande du contenu de bienvenue.",
- "contributes.viewsWelcome.view.group": "Groupe auquel appartient ce contenu de bienvenue. API proposé.",
- "contributes.viewsWelcome.view.view": "Identificateur de vue cible pour ce contenu de bienvenue. Seules les vues arborescentes sont prises en charge.",
- "contributes.viewsWelcome.view.when": "Condition qui détermine quand le contenu de bienvenue est affiché."
- },
- "vs/workbench/contrib/welcome/gettingStarted/browser/gettingStarted": {
- "allDone": "Marquer comme terminé",
- "checkboxTitle": "Lorsque cette option est cochée, cette page s’affiche au démarrage.",
- "close": "Masquer",
- "footer": "{0} collecte les données d’utilisation. Lisez notre {1} et apprenez à {2}.",
- "getStarted": "Prise en main",
- "gettingStarted.allStepsComplete": "Toutes les {0} étapes ont été complétées.",
- "gettingStarted.editingEvolved": "Édition évoluée",
- "gettingStarted.someStepsComplete": "{0} étapes complétées sur {1}",
- "imageShowing": "Image montrant {0}",
- "new": "Nouveau",
- "newItems": "Mise à jour terminée",
- "nextOne": "Section suivante",
- "optOut": "Annuler l'adhésion",
- "pickWalkthroughs": "Ouvrir la procédure pas à pas...",
- "privacy statement": "déclaration de confidentialité",
- "recent": "Récent",
- "show more recents": "Afficher tous les dossiers récents {0}",
- "showAll": "Plus...",
- "start": "Démarrer",
- "walkthroughs": "Procédures pas à pas",
- "welcomeAriaLabel": "Vue d'ensemble permettant de se familiariser avec l'éditeur.",
- "welcomePage.openFolderWithPath": "Ouvrir le dossier {0} avec le chemin {1}",
- "welcomePage.showOnStartup": "Afficher la page d'accueil au démarrage"
- },
- "vs/workbench/contrib/welcome/gettingStarted/browser/gettingStarted.contribution": {
- "getStarted": "Prise en main",
- "help": "Aide",
- "miGetStarted": "Prise en main",
- "pickWalkthroughs": "Ouvrir la procédure pas à pas...",
- "welcome.goBack": "Précédent",
- "welcome.markStepComplete": "Marquer l’étape comme complète",
- "welcome.markStepInomplete": "Marquer l’étape comme incomplète",
- "welcome.showAllWalkthroughs": "Ouvrir la procédure pas à pas...",
- "workbench.welcomePage.preferReducedMotion": "Lorsque cette option est activée, réduisez le mouvement dans la page d’accueil.",
- "workbench.welcomePage.walkthroughs.openOnInstall": "Lorsqu’elle est activée, la procédure pas à pas d’une extension s’ouvre lors de l’installation de l’extension.",
- "workspacePlatform": "La plateforme de l’espace de travail actif, qui peut être différente de celle de l’interface utilisateur dans les contextes distants ou serverless"
- },
- "vs/workbench/contrib/welcome/gettingStarted/browser/gettingStartedColors": {
- "welcomePage.background": "Couleur d'arrière-plan de la page d'accueil.",
- "welcomePage.progress.background": "Couleur de premier plan des barres de progression de la page d'accueil.",
- "welcomePage.progress.foreground": "Couleur d'arrière-plan des barres de progression de la page d'accueil.",
- "welcomePage.tileBackground": "Couleur d'arrière-plan des vignettes de la page Prise en main.",
- "welcomePage.tileHoverBackground": "Couleur d'arrière-plan en cas de pointage sur les vignettes de la page Prise en main.",
- "welcomePage.tileShadow": "Couleur d'ombre des boutons de catégorie dans la procédure pas à pas de la page d'accueil."
- },
- "vs/workbench/contrib/welcome/gettingStarted/browser/gettingStartedExtensionPoint": {
- "pathDeprecated": "Déprécié. Utilisez plutôt `image` ou un `markdown`",
- "title": "Titre",
- "walkthroughs": "Fournissez des procédures pas à pas pour faciliter la prise en main de votre extension par les utilisateurs.",
- "walkthroughs.description": "Description de la procédure pas à pas.",
- "walkthroughs.featuredFor": "Les procédures pas à pas qui correspondent à l’un de ces modèles globaux apparaissent comme « Recommandés » dans les espaces de travail avec les fichiers spécifiés. Par exemple, une procédure pas à pas pour les projets de définition d’une machine peut spécifier « tsconfig.js » ici.",
- "walkthroughs.id": "Identificateur unique de cette procédure pas à pas.",
- "walkthroughs.steps": "Étapes à effectuer dans le cadre de cette procédure pas à pas.",
- "walkthroughs.steps.button.deprecated.interpolated": "Déconseillé. Utilisez les liens de démarque dans la description à la place, par ex., {0}, {1} ou {2}",
- "walkthroughs.steps.completionEvents": "Événements devant déclencher cette étape pour qu’elle soit cochée. Si la valeur est vide ou non définie, l’étape est cochée à la suite d’un clic sur n’importe quel de ses boutons ou de ses liens. Si l’étape n’a aucun bouton et aucun lien, elle est activée lorsqu’elle est sélectionnée.",
- "walkthroughs.steps.completionEvents.extensionInstalled": "Cocher l’étape quand une extension avec l’ID donné est installée. Si l’extension est déjà installée, l’étape est cochée dès le départ.",
- "walkthroughs.steps.completionEvents.onCommand": "Cocher l’étape lors de l’exécution d’une commande en particulier dans VS Code.",
- "walkthroughs.steps.completionEvents.onContext": "Cocher l’étape quand une expression de clé de contexte a la valeur « true ».",
- "walkthroughs.steps.completionEvents.onLink": "Cochez l’étape lorsqu’un lien donné est ouvert via une étape pas à pas.",
- "walkthroughs.steps.completionEvents.onSettingChanged": "Cocher l’étape lorsqu’un paramètre en particulier est modifié",
- "walkthroughs.steps.completionEvents.onView": "Cocher l’étape lors de l’ouverture d’un affichage en particulier",
- "walkthroughs.steps.completionEvents.stepSelected": "Cocher l’étape dès qu’elle est sélectionnée.",
- "walkthroughs.steps.description.interpolated": "Description de l’étape. Prend en charge le texte ``préformaté``, en __italique__ et en **gras**. Utilisez les liens de marquage pour les commandes ou les liens externes : {0}, {1} ou {2}. Les liens isolés sur leur propre ligne sont rendus sous forme de boutons.",
- "walkthroughs.steps.doneOn": "Signal pour marquer l’étape comme complète.",
- "walkthroughs.steps.doneOn.deprecation": "doneOn est déprécié. Par défaut, les étapes sont complétées lorsqu’un clic est effectué sur leurs boutons. Pour une configuration avancée, utiliser completionEvents",
- "walkthroughs.steps.id": "Identificateur unique de cette étape. Permet d’effectuer le suivi des étapes effectuées.",
- "walkthroughs.steps.media": "Média à afficher à côté de cette étape : un contenu d’image ou un contenu avec marquage.",
- "walkthroughs.steps.media.altText": "Texte de remplacement à afficher quand l'image ne peut pas être chargée ou dans les lecteurs d'écran.",
- "walkthroughs.steps.media.image.path.dark.string": "Chemin d’accès à l’image pour les thèmes sombres relatif au répertoire d’extension.",
- "walkthroughs.steps.media.image.path.hc.string": "Chemin d’accès à l’image pour les thèmes de haut contraste relatif au répertoire d’extension.",
- "walkthroughs.steps.media.image.path.light.string": "Chemin d’accès à l’image pour les thèmes clairs relatif au répertoire d’extension.",
- "walkthroughs.steps.media.image.path.string": "Chemin d’accès à une image (ou un objet constitué de chemins d’accès à des images de thèmes clair, sombre et haut contraste) relatif au répertoire de l’extension. En fonction du contexte, la largeur de l’image affichée est de 400px à 800px, avec des limites similaires en hauteur. Pour prendre en charge les affichages HIDPI, l’image est rendue à une échelle 1,5 : par exemple une image d’une largeur de 900 pixels physiques s’affiche sur une largeur de 600 pixels logiques.",
- "walkthroughs.steps.media.image.path.svg": "Chemin d'accès à un svg, les jetons de couleur sont pris en charge dans les variables pour prendre en charge la thématisation en fonction de l'environnement de travail.",
- "walkthroughs.steps.media.markdown.path": "Chemin d’accès au document avec marquage relatif au répertoire de l’extension.",
- "walkthroughs.steps.oneOn.command": "Marquez l’étape comme complétée quand la commande spécifiée est exécutée.",
- "walkthroughs.steps.title": "Titre de l’étape.",
- "walkthroughs.steps.when": "Expression de clé de contexte permettant de contrôler la visibilité de cette tâche.",
- "walkthroughs.title": "Titre de la procédure pas à pas.",
- "walkthroughs.when": "Expression de clé de contexte permettant de contrôler la visibilité de cette procédure pas à pas."
- },
- "vs/workbench/contrib/welcome/gettingStarted/browser/gettingStartedIcons": {
- "gettingStartedChecked": "Utilisé pour représenter les étapes de procédure pas à pas qui ont été effectuées",
- "gettingStartedUnchecked": "Utilisé pour représenter les étapes de procédure pas à pas qui n’ont été pas effectuées"
- },
- "vs/workbench/contrib/welcome/gettingStarted/browser/gettingStartedInput": {
- "getStarted": "Prise en main"
- },
- "vs/workbench/contrib/welcome/gettingStarted/browser/gettingStartedService": {
- "builtin": "Intégré"
- },
- "vs/workbench/contrib/welcome/gettingStarted/common/gettingStartedContent": {
- "browseLangExts": "Parcourir les extensions de langage",
- "browsePopular": "Parcourir les extensions les plus demandées",
- "browseRecommended": "Parcourir les extensions recommandées",
- "cloneRepo": "Cloner le dépôt",
- "commandPalette": "Ouvrir la palette de commandes",
- "enableSync": "Activer la synchronisation des paramètres",
- "enableTrust": "activer l’approbation",
- "getting-started-beginner-icon": "Icône utilisée pour la catégorie débutant de la page d’accueil",
- "getting-started-intermediate-icon": "Icône utilisée pour la catégorie intermédiaire de la page d’accueil",
- "getting-started-setup-icon": "Icône utilisée pour la catégorie d’installation de la page d’accueil",
- "gettingStarted.beginner.description": "Accédez directement à VS Code et obtenez une vue d'ensemble des fonctionnalités indispensables.",
- "gettingStarted.beginner.title": "Découvrir les principes de base",
- "gettingStarted.commandPalette.description.interpolated": "Les commandes constituent le moyen clavier d’accomplir n’importe quelle tâche dans VS Code. **Pratique** en recherchant vos fréquents pour gagner du temps.\r\n{0}\r\n__Essayez en recherchant « bascule d’affichage ».__",
- "gettingStarted.commandPalette.title": "Un raccourci pour accéder à tout",
- "gettingStarted.debug.description.interpolated": "Accélérez votre boucle de modification, de génération, de test et de débogage en configurant une configuration de lancement.\r\n{0}",
- "gettingStarted.debug.title": "Observez votre code en action",
- "gettingStarted.extensions.description.interpolated": "Les extensions sont les vitamines de VS Code. Elles vont des hacks de productivité pratiques ou de l'extension de fonctionnalités prêtes à l'emploi à l'ajout de toutes nouvelles fonctionnalités.\r\n{0}",
- "gettingStarted.extensions.title": "Extensibilité illimitée",
- "gettingStarted.extensionsWeb.description.interpolated": "Les extensions sont les mises sous tension de VS Code. Un nombre croissant est de plus en plus disponible sur le web.\r\n{0}",
- "gettingStarted.findLanguageExts.description.interpolated": "Codez plus intelligemment avec mise en surbrillance de syntaxe, le complètement de code, le linting et le débogage. De nombreux langages sont intégrés et beaucoup d’autres peuvent être ajoutés en extensions.\r\n{0}",
- "gettingStarted.findLanguageExts.title": "Prise en charge complète de tous vos langages",
- "gettingStarted.installGit.description.interpolated": "Installez Git pour effectuer le suivi des modifications apportées à vos projets.\r\n{0}",
- "gettingStarted.installGit.title": "Installer Git",
- "gettingStarted.intermediate.description": "Optimisez votre flux de travail de développement avec ces trucs et astuces.",
- "gettingStarted.intermediate.title": "Dynamiser votre productivité",
- "gettingStarted.menuBar.description.interpolated": "La barre de menu complète est disponible dans le menu déroulant pour faire de la place à votre code. Basculez son apparition pour un accès plus rapide. \r\n{0}",
- "gettingStarted.menuBar.title": "Juste la bonne quantité d’interface utilisateur",
- "gettingStarted.newFile.description": "Ouvrez un nouveau fichier, bloc-notes ou éditeur personnalisé sans titre.",
- "gettingStarted.newFile.title": "Nouveau fichier...",
- "gettingStarted.notebook.title": "Personnalisez les blocs-notes",
- "gettingStarted.notebookProfile.description": "Créez des blocs-notes qui vous conviennent",
- "gettingStarted.notebookProfile.title": "Sélectionnez la disposition de vos blocs-notes",
- "gettingStarted.openFile.description": "Ouvrir un fichier et commencer à travailler",
- "gettingStarted.openFile.title": "Ouvrir un fichier...",
- "gettingStarted.openFolder.description": "Ouvrir un dossier et commencer à travailler",
- "gettingStarted.openFolder.title": "Ouvrir un dossier...",
- "gettingStarted.openMac.description": "Ouvrir un fichier ou un dossier et commencer à travailler",
- "gettingStarted.openMac.title": "Ouvrir...",
- "gettingStarted.pickColor.description.interpolated": "Une bonne palette de couleurs vous permet de vous concentrer sur votre code, de ménager vos yeux ou tout simplement de rendre votre environnement plus attrayant.\r\n{0}",
- "gettingStarted.pickColor.title": "Choisissez votre style",
- "gettingStarted.playground.description.interpolated": "Vous souhaitez coder plus rapidement et plus intelligemment ? Mettez en pratique les puissantes fonctionnalités de modification du code dans le terrain de jeu interactif.\r\n{0}",
- "gettingStarted.playground.title": "Redéfinissez vos compétences de modification",
- "gettingStarted.quickOpen.description.interpolated": "Naviguez parmi les fichiers en un instant à l'aide d'une seule touche. Conseil : Ouvrez plusieurs fichiers en appuyant sur la touche de direction flèche droite.\r\n{0}",
- "gettingStarted.quickOpen.title": "Naviguez rapidement entre vos fichiers",
- "gettingStarted.scm.description.interpolated": "Finie la quête de la commande git appropriée ! Les flux de travail git et GitHub sont impeccablement intégrés.\r\n{0}",
- "gettingStarted.scm.title": "Effectuer le suivi de votre code avec Git",
- "gettingStarted.scmClone.description.interpolated": "Configurez le contrôle de version intégré à votre projet pour effectuer le suivi de vos modifications et collaborer avec d’autres utilisateurs.\r\n{0}",
- "gettingStarted.scmSetup.description.interpolated": "Configurez le contrôle de version intégré à votre projet pour effectuer le suivi de vos modifications et collaborer avec d’autres utilisateurs.\r\n{0}",
- "gettingStarted.settings.description.interpolated": "Adaptez tous les aspects de VS Code et vos extensions à votre convenance. Les paramètres fréquemment utilisés sont listés en premier pour vous aider à démarrer.\r\n{0}",
- "gettingStarted.settings.title": "Modifier vos paramètres",
- "gettingStarted.settingsSync.description.interpolated": "Conservez vos personnalisations VS Code essentielles sauvegardées et mises à jour sur tous vos appareils.\r\n{0}",
- "gettingStarted.settingsSync.title": "Synchroniser avec et à partir d’autres appareils",
- "gettingStarted.setup.OpenFolder.description.interpolated": "Vous êtes prêt à commencer le codage. Ouvrez un dossier de projet pour placer vos fichiers dans VS Code.\r\n{0}",
- "gettingStarted.setup.OpenFolder.title": "Ouvrir votre code",
- "gettingStarted.setup.OpenFolderWeb.description.interpolated": "Vous êtes prêt à commencer le codage. Vous pouvez ouvrir un projet local ou un dépôt distant pour obtenir vos fichiers dans VS Code.\r\n{0}\r\n{1}",
- "gettingStarted.setup.description": "Découvrez les meilleures personnalisations pour rendre VS Code plus proche de vous.",
- "gettingStarted.setup.title": "Prise en main de VS Code",
- "gettingStarted.setupWeb.description": "Découvrez les meilleures personnalisations pour rendre VS Code plus proche dans votre Web.",
- "gettingStarted.setupWeb.title": "Démarrer avec VS Code sur le web",
- "gettingStarted.shortcuts.description.interpolated": "Une fois que vous avez découvert vos commandes favorites, créez des raccourcis clavier personnalisés pour un accès instantané.\r\n{0}",
- "gettingStarted.shortcuts.title": "Personnalisez vos raccourcis",
- "gettingStarted.splitview.description.interpolated": "Tirer le meilleur parti de l’espace de votre écran en ouvrant des fichiers côte à côte, verticalement ou horizontalement.\r\n{0}",
- "gettingStarted.splitview.title": "Modification côte à côte",
- "gettingStarted.tasks.description.interpolated": "Créez des tâches pour vos flux de travail courants et bénéficiez de l’expertise intégrée d’exécution de scripts et de vérification automatique des résultats.\r\n{0}",
- "gettingStarted.tasks.title": "Automatisez vos tâches de projet",
- "gettingStarted.terminal.description.interpolated": "Exécutez rapidement des commandes d'interpréteur de commandes, et supervisez la sortie de build, tout en ayant votre code juste à côté.\r\n{0}",
- "gettingStarted.terminal.title": "Terminal intégré pratique",
- "gettingStarted.topLevelGitClone.description": "Cloner un référentiel distant dans un dossier local",
- "gettingStarted.topLevelGitClone.title": "Cloner un dépôt Git...",
- "gettingStarted.topLevelGitOpen.description": "Se connecter à un référentiel distant ou à une demande de tirage pour parcourir, rechercher, modifier et valider",
- "gettingStarted.topLevelGitOpen.title": "Ouvrir le référentiel...",
- "gettingStarted.topLevelShowWalkthroughs.description": "Afficher une procédure pas à pas sur l’éditeur ou une extension",
- "gettingStarted.topLevelShowWalkthroughs.title": "Ouvrir une procédure pas à pas...",
- "gettingStarted.videoTutorial.description.interpolated": "Regardez le premier tutoriel d'une série de tutoriels vidéo courts et pratiques sur les fonctionnalités clés de VS Code.\r\n{0}",
- "gettingStarted.videoTutorial.title": "Asseyez-vous confortablement et apprenez",
- "gettingStarted.workspaceTrust.description.interpolated": "{0} vous permet de décider si vos dossiers de projet doivent **autoriser ou restreindre** l’exécution automatique du code __(requis pour les extensions, le débogage, etc.)__.\r\nL’ouverture d’un fichier/dossier vous invite à accorder l’approbation. Vous pouvez toujours {1} ultérieurement.",
- "gettingStarted.workspaceTrust.title": "Parcourir et modifier le code en toute sécurité",
- "initRepo": "Initialiser le dépôt Git",
- "installGit": "Installer Git",
- "keyboardShortcuts": "Raccourcis clavier",
- "openEditorPlayground": "Ouvrir le terrain de jeu de l’éditeur",
- "openFolder": "Ouvrir un dossier",
- "openRepository": "Ouvrir le dépôt",
- "openSCM": "Contrôle open source",
- "pickFolder": "Choisir un dossier",
- "quickOpen": "Quick Open sur un fichier",
- "runProject": "Exécuter votre projet",
- "runTasks": "Exécuter des tâches détectées automatiquement",
- "showTerminal": "Afficher le panneau Terminal",
- "splitEditor": "Fractionner l'éditeur",
- "titleID": "Parcourir les thèmes de couleur",
- "toggleMenuBar": "Activer/désactiver la barre de menus",
- "tweakSettings": "Adapter mes paramètres",
- "watch": "Regarder le tutoriel",
- "workspaceTrust": "Approbation d’espace de travail"
- },
- "vs/workbench/contrib/welcome/gettingStarted/common/media/example_markdown_media": {
- "HighContrast": "Contraste élevé",
- "dark": "Sombre",
- "light": "Clair",
- "seeMore": "Plus de thèmes"
- },
- "vs/workbench/contrib/welcome/gettingStarted/common/media/notebookProfile": {
- "colab": "Colab",
- "default": "Par défaut",
- "jupyter": "Jupyter"
- },
- "vs/workbench/contrib/welcome/overlay/browser/welcomeOverlay": {
- "hideWelcomeOverlay": "Masquer la vue d'ensemble de l'interface",
- "welcomeOverlay": "Vue d'ensemble de l'interface utilisateur",
- "welcomeOverlay.commandPalette": "Rechercher et exécuter toutes les commandes",
- "welcomeOverlay.debug": "Lancer et déboguer",
- "welcomeOverlay.explorer": "Explorateur de fichiers",
- "welcomeOverlay.extensions": "Gérer les extensions",
- "welcomeOverlay.git": "Gestion du code source",
- "welcomeOverlay.notifications": "Afficher les notifications",
- "welcomeOverlay.problems": "Afficher les erreurs et avertissements",
- "welcomeOverlay.search": "Rechercher dans les fichiers",
- "welcomeOverlay.terminal": "Activer/désactiver le terminal intégré"
+ "cut": "Couper",
+ "paste": "Coller"
},
- "vs/workbench/contrib/welcome/page/browser/welcomePage.contribution": {
- "workbench.startupEditor": "Contrôle quel éditeur s’affiche au démarrage, si aucun n'est restauré de la session précédente.",
- "workbench.startupEditor.newUntitledFile": "Ouvrez un nouveau fichier sans titre (s'applique uniquement à l'ouverture d'une fenêtre vide).",
- "workbench.startupEditor.none": "Démarrage sans éditeur.",
- "workbench.startupEditor.readme": "Ouvre le fichier README lors de l'ouverture d'un dossier qui en contient un, sinon il revient à 'welcomePage'. Remarque : ceci n'est observé que comme une configuration globale, elle sera ignorée si elle est définie dans une configuration d'espace de travail ou de dossier.",
- "workbench.startupEditor.welcomePage": "Ouvrir la page d’accueil qui propose du contenu pour faciliter la prise en main de VS Code et des extensions.",
- "workbench.startupEditor.welcomePageInEmptyWorkbench": "Ouvre la page d'accueil à l'ouverture d'un banc d'essai vide."
+ "vs/workbench/contrib/webview/browser/webviewElement": {
+ "fatalErrorMessage": "Erreur de chargement de la vue web : {0}"
},
- "vs/workbench/contrib/welcome/walkThrough/browser/editor/editorWalkThrough": {
- "editorWalkThrough": "Terrain de jeu de l’éditeur interactif",
- "editorWalkThrough.title": "Terrain de jeu de l’éditeur"
+ "vs/workbench/contrib/webview/electron-browser/webviewCommands": {
+ "iframeWebviewAlert": "Utilisation d'outils de développement standard pour déboguer une vue web basée sur un iframe",
+ "openToolsDescription": "Ouvre Outils de développement pour les vues web actives",
+ "openToolsLabel": "Ouvrir les outils de développement Webview"
},
- "vs/workbench/contrib/welcome/walkThrough/browser/walkThrough.contribution": {
- "miPlayground": "Terrain de jeu de l’éditeur",
- "walkThrough.editor.label": "Terrain de jeu"
+ "vs/workbench/contrib/webviewPanel/browser/webviewCommands": {
+ "editor.action.webvieweditor.findNext": "Rechercher l'occurrence suivante",
+ "editor.action.webvieweditor.findPrevious": "Rechercher l'occurrence précédente",
+ "editor.action.webvieweditor.hideFind": "Arrêter la recherche",
+ "editor.action.webvieweditor.showFind": "Afficher la recherche",
+ "refreshWebviewLabel": "Recharger les vues web"
},
- "vs/workbench/contrib/welcome/walkThrough/browser/walkThroughPart": {
- "walkThrough.embeddedEditorBackground": "Couleur d'arrière-plan des éditeurs incorporés dans le terrain de jeu interactif.",
- "walkThrough.gitNotFound": "Git semble ne pas être installé sur votre système.",
- "walkThrough.unboundCommand": "indépendant"
+ "vs/workbench/contrib/webviewPanel/browser/webviewEditor": {
+ "context.activeWebviewId": "Le viewType du panneau de vue Web est actuellement actif."
+ },
+ "vs/workbench/contrib/webviewPanel/browser/webviewPanel.contribution": {
+ "webview.editor.label": "éditeur de vues web"
+ },
+ "vs/workbench/contrib/welcomeDialog/browser/welcomeDialog.contribution": {
+ "workbench.welcome.dialog": "Lorsqu’il est activé, un widget de bienvenue s’affiche dans l’éditeur"
+ },
+ "vs/workbench/contrib/welcomeDialog/browser/welcomeWidget": {
+ "dialogClose": "Fermer la boîte de dialogue"
},
"vs/workbench/contrib/welcomeGettingStarted/browser/gettingStarted": {
+ "acessibleViewHint": "Inspecter ceci dans l’affichage accessible ({0}).\r\n",
+ "acessibleViewHintNoKbOpen": "Inspectez ceci dans l’affichage accessible via la commande Open Accessible View qui ne peut pas être déclenchée via une combinaison de touches pour l’instant.\r\n",
"allDone": "Marquer comme terminé",
"checkboxTitle": "Lorsque cette option est cochée, cette page s’affiche au démarrage.",
"close": "Masquer",
+ "closeAriaLabel": "Masquer",
"footer": "{0} collecte les données d’utilisation. Lisez notre {1} et apprenez à {2}.",
- "getStarted": "Démarrage",
"gettingStarted.allStepsComplete": "Toutes les {0} étapes ont été complétées.",
"gettingStarted.editingEvolved": "Édition évoluée",
"gettingStarted.keyboardTip": "Conseil : utiliser le raccourci clavier ",
"gettingStarted.someStepsComplete": "{0} étapes complétées sur {1}",
+ "goBack": "Retour",
"imageShowing": "Image montrant {0}",
"new": "Nouveau",
"newItems": "Mise à jour terminée",
@@ -10247,18 +16418,23 @@
"show more recents": "Afficher tous les dossiers récents {0}",
"showAll": "Plus...",
"start": "Démarrer",
+ "stepDone": "Case à cocher de l’étape {0} : terminée",
+ "stepNotDone": "Case à cocher de l’étape {0} : non terminée",
"toStart": "pour démarrer",
+ "videoAltText": "Vidéo pour {0}",
+ "videoShowing": "Vidéo montrant {0}",
"walkthroughs": "Procédures pas à pas",
+ "welcome": "Bienvenue",
"welcomeAriaLabel": "Vue d'ensemble permettant de se familiariser avec l'éditeur.",
"welcomePage.openFolderWithPath": "Ouvrir le dossier {0} avec le chemin {1}",
"welcomePage.showOnStartup": "Afficher la page d’accueil au démarrage"
},
"vs/workbench/contrib/welcomeGettingStarted/browser/gettingStarted.contribution": {
"deprecationMessage": "Déconseillé, utilisez le 'workbench.reduceMotion' global.",
- "getStarted": "Démarrage",
- "help": "Aide",
- "miGetStarted": "Démarrage",
- "pickWalkthroughs": "Ouvrir la procédure pas à pas...",
+ "miWelcome": "Bienvenue",
+ "minWelcomeDescription": "Ouvre une procédure pas à pas pour vous aider à démarrer dans VS Code.",
+ "pickWalkthroughs": "Sélectionner une procédure pas à pas à ouvrir",
+ "welcome": "Bienvenue",
"welcome.goBack": "Précédent",
"welcome.markStepComplete": "Marquer l’étape comme complète",
"welcome.markStepInomplete": "Marquer l’étape comme incomplète",
@@ -10267,20 +16443,26 @@
"workbench.startupEditor.newUntitledFile": "Ouvrez un nouveau fichier sans titre (s'applique uniquement à l'ouverture d'une fenêtre vide).",
"workbench.startupEditor.none": "Démarrage sans éditeur.",
"workbench.startupEditor.readme": "Ouvre le fichier README lors de l'ouverture d'un dossier qui en contient un, sinon il revient à 'welcomePage'. Remarque : ceci n'est observé que comme une configuration globale, elle sera ignorée si elle est définie dans une configuration d'espace de travail ou de dossier.",
+ "workbench.startupEditor.terminal": "Ouvrez un nouveau terminal dans la zone d’éditeurs.",
"workbench.startupEditor.welcomePage": "Ouvrir la page d’accueil qui propose du contenu pour faciliter la prise en main de VS Code et des extensions.",
"workbench.startupEditor.welcomePageInEmptyWorkbench": "Ouvre la page d'accueil à l'ouverture d'un banc d'essai vide.",
"workbench.welcomePage.preferReducedMotion": "Lorsque cette option est activée, réduisez le mouvement dans la page d’accueil.",
- "workbench.welcomePage.videoTutorials": "Lorsqu'elle est activée, la page de démarrage contient des liens supplémentaires vers des didacticiels vidéo.",
"workbench.welcomePage.walkthroughs.openOnInstall": "Lorsqu’elle est activée, la procédure pas à pas d’une extension s’ouvre lors de l’installation de l’extension.",
"workspacePlatform": "La plateforme de l’espace de travail actif, qui peut être différente de celle de l’interface utilisateur dans les contextes distants ou serverless"
},
+ "vs/workbench/contrib/welcomeGettingStarted/browser/gettingStartedAccessibleView": {
+ "gettingStarted.description": "Description : {0}",
+ "gettingStarted.step": "{0}\r\n{1}",
+ "gettingStarted.title": "Titre{0}: "
+ },
"vs/workbench/contrib/welcomeGettingStarted/browser/gettingStartedColors": {
+ "walkthrough.stepTitle.foreground": "Couleur de premier plan du titre de chaque étape pas à pas",
"welcomePage.background": "Couleur d'arrière-plan de la page d'accueil.",
"welcomePage.progress.background": "Couleur de premier plan des barres de progression de la page d'accueil.",
"welcomePage.progress.foreground": "Couleur d'arrière-plan des barres de progression de la page d'accueil.",
- "welcomePage.tileBackground": "Couleur d'arrière-plan des vignettes de la page Prise en main.",
- "welcomePage.tileHoverBackground": "Couleur d'arrière-plan en cas de pointage sur les vignettes de la page Prise en main.",
- "welcomePage.tileShadow": "Couleur d'ombre des boutons de catégorie dans la procédure pas à pas de la page d'accueil."
+ "welcomePage.tileBackground": "Couleur d’arrière-plan des vignettes de la page d’accueil.",
+ "welcomePage.tileBorder": "Couleur de bordure pour les vignettes de la page d’accueil.",
+ "welcomePage.tileHoverBackground": "Couleur d’arrière-plan du pointage pour les vignettes de l’accueil."
},
"vs/workbench/contrib/welcomeGettingStarted/browser/gettingStartedExtensionPoint": {
"pathDeprecated": "Déprécié. Utilisez plutôt `image` ou un `markdown`",
@@ -10288,6 +16470,7 @@
"walkthroughs": "Fournissez des procédures pas à pas pour faciliter la prise en main de votre extension par les utilisateurs.",
"walkthroughs.description": "Description de la procédure pas à pas.",
"walkthroughs.featuredFor": "Les procédures pas à pas qui correspondent à l’un de ces modèles globaux apparaissent comme « Recommandés » dans les espaces de travail avec les fichiers spécifiés. Par exemple, une procédure pas à pas pour les projets de définition d’une machine peut spécifier « tsconfig.js » ici.",
+ "walkthroughs.icon": "Chemin d’accès relatif de l’icône de la procédure pas à pas. Le chemin d’accès est relatif à l’emplacement de l’extension. Si rien n’est spécifié, l’icône prend par défaut l'icône de l'extension si elle est disponible.",
"walkthroughs.id": "Identificateur unique de cette procédure pas à pas.",
"walkthroughs.steps": "Étapes à effectuer dans le cadre de cette procédure pas à pas.",
"walkthroughs.steps.button.deprecated.interpolated": "Déconseillé. Utilisez les liens de démarque dans la description à la place, par ex., {0}, {1} ou {2}",
@@ -10323,44 +16506,76 @@
"gettingStartedUnchecked": "Utilisé pour représenter les étapes de procédure pas à pas qui n’ont été pas effectuées"
},
"vs/workbench/contrib/welcomeGettingStarted/browser/gettingStartedInput": {
- "getStarted": "Démarrage"
+ "getStarted": "Bienvenue",
+ "walkthroughPageTitle": "Procédure pas à pas : {0}"
},
"vs/workbench/contrib/welcomeGettingStarted/browser/gettingStartedService": {
"builtin": "Intégré",
"developer": "Développeur",
+ "resetGettingStartedProgressDescription": "Réinitialisez la progression de toutes les étapes de procédure pas à pas sur la page d’accueil pour qu’elles apparaissent comme si elles sont affichées pour la première fois, ce qui fournit un nouveau début à l’expérience de prise en main.",
"resetWelcomePageWalkthroughProgress": "Réinitialiser la progression de la procédure pas à pas de la page d’accueil"
},
+ "vs/workbench/contrib/welcomeGettingStarted/browser/startupPage": {
+ "startupPage.markdownPreviewError": "Impossible d’ouvrir l’aperçu Markdown : {0}.\r\n\r\nVeuillez vérifier que l’extension Markdown est activée.",
+ "welcome.displayName": "Page d’accueil"
+ },
"vs/workbench/contrib/welcomeGettingStarted/common/gettingStartedContent": {
"browseLangExts": "Parcourir les extensions de langage",
"browsePopular": "Parcourir les extensions les plus demandées",
- "browseRecommended": "Parcourir les extensions recommandées",
+ "browsePopularWeb": "Parcourir les extensions les plus demandées",
"cloneRepo": "Cloner le dépôt",
"commandPalette": "Ouvrir la palette de commandes",
- "enableSync": "Activer la synchronisation des paramètres",
+ "enableSync": "Paramètres de sauvegarde et de synchronisation",
"enableTrust": "activer l’approbation",
"getting-started-beginner-icon": "Icône utilisée pour la catégorie débutant de la page d’accueil",
- "getting-started-intermediate-icon": "Icône utilisée pour la catégorie intermédiaire de la page d’accueil",
"getting-started-setup-icon": "Icône utilisée pour la catégorie d’installation de la page d’accueil",
- "gettingStarted.beginner.description": "Accédez directement à VS Code et obtenez une vue d'ensemble des fonctionnalités indispensables.",
+ "gettingStarted.accessibilityHelp.description.interpolated": "La boîte de dialogue d’aide sur l’accessibilité fournit des informations sur ce à quoi s’attendre d’une fonctionnalité et sur les commandes/combinaisons de touches pour les utiliser.\r\n Avec le focus dans un éditeur, un terminal, un bloc-notes, une réponse de conversation, un commentaire ou une console de débogage, la boîte de dialogue appropriée peut être ouverte à l’aide de la commande Ouvrir l’aide sur l’accessibilité.\r\n{0}",
+ "gettingStarted.accessibilityHelp.title": "Utiliser la boîte de dialogue d’aide sur l’accessibilité pour en savoir plus sur les fonctionnalités",
+ "gettingStarted.accessibilitySettings.description.interpolated": "Les paramètres d’accessibilité peuvent être configurés en exécutant la commande Ouvrir les paramètres d’accessibilité.\r\n{0}",
+ "gettingStarted.accessibilitySettings.title": "Configurer les paramètres d’accessibilité",
+ "gettingStarted.accessibilitySignals.description.interpolated": "Les sons et annonces d’accessibilité sont lus autour du banc d’essai pour différents événements.\r\n Ceux-ci peuvent être découverts et configurés à l’aide des commandes Répertorier les sons de signal et Répertorier les annonces de signal.\r\n{0}\r\n{1}",
+ "gettingStarted.accessibilitySignals.title": "Affiner les signaux d’accessibilité que vous souhaitez recevoir via un périphérique audio ou braille",
+ "gettingStarted.accessibleView.description.interpolated": "L’affichage accessible est disponible pour le terminal, les survols, les notifications, les commentaires, la sortie du notebook, les réponses de conversation, les complétions incluses et la sortie de la console de débogage.\r\n Avec le focus sur l’une de ces fonctionnalités, il peut être ouvert à l’aide de la commande Ouvrir l’affichage accessible.\r\n{0}",
+ "gettingStarted.accessibleView.title": "Les utilisateurs du lecteur d’écran peuvent inspecter le contenu ligne par ligne, caractère par caractère dans la vue accessible.",
+ "gettingStarted.beginner.description": "Obtenez un aperçu des fonctionnalités les plus essentielles",
"gettingStarted.beginner.title": "Découvrir les principes de base",
- "gettingStarted.commandPalette.description.interpolated": "Les commandes constituent le moyen clavier d’accomplir n’importe quelle tâche dans VS Code. **Pratique** en recherchant vos fréquents pour gagner du temps.\r\n{0}\r\n__Essayez en recherchant « bascule d’affichage ».__",
- "gettingStarted.commandPalette.title": "Un raccourci pour accéder à tout",
+ "gettingStarted.beginner.walkthroughPageTitle": "Fonctionnalités essentielles",
+ "gettingStarted.codeFolding.description.interpolated": "Pliez ou dépliez une section de code avec la commande Toggle Fold.\r\n{0}\r\n Pliez ou dépliez de manière récursive avec la commande Toggle Fold Recursively\r\n{1}\r\n",
+ "gettingStarted.codeFolding.title": "Utilisez le pliage de code pour réduire les blocs de code et vous concentrer sur le code qui vous intéresse.",
+ "gettingStarted.commandPalette.description.interpolated": "Exécutez des commandes sans utiliser votre souris pour accomplir une tâche dans VS Code.\r\n{0}",
+ "gettingStarted.commandPalette.title": "Libérez la productivité avec la palette de commandes ",
+ "gettingStarted.commandPaletteAccessibility.description.interpolated": "Exécutez des commandes sans utiliser votre souris pour accomplir une tâche dans VS Code.\r\n{0}",
+ "gettingStarted.commandPaletteAccessibility.title": "Libérer la productivité avec la palette de commandes ",
+ "gettingStarted.copilotSetup.description": "Vous pouvez utiliser [Copilot]({0}) pour générer du code dans plusieurs fichiers, corriger des erreurs, poser des questions sur votre code et bien plus encore en utilisant le langage naturel.",
+ "gettingStarted.copilotSetup.terms": "En continuant avec Copilot {0}, vous acceptez les [Conditions générales]({2}) et la [Déclaration de confidentialité]({3}) de {1}",
+ "gettingStarted.copilotSetup.title": "Utiliser les fonctionnalités d’IA avec Copilot gratuitement",
"gettingStarted.debug.description.interpolated": "Accélérez votre boucle de modification, de génération, de test et de débogage en configurant une configuration de lancement.\r\n{0}",
"gettingStarted.debug.title": "Observez votre code en action",
+ "gettingStarted.dictation.description.interpolated": "La dictée vous permet d’écrire du code et du texte à l’aide de votre voix. Elle peut être activée avec la commande Voice : démarrer la dictée dans l’éditeur.\r\n{0}\r\n Pour la dictée dans le terminal, utilisez les commandes Voice : démarrer la dictée dans le terminal et Voice : arrêter la dictée dans le terminal.\r\n{1}\r\n{2}",
+ "gettingStarted.dictation.title": "Utiliser la dictée pour écrire du code et du texte dans l’éditeur et le terminal",
"gettingStarted.extensions.description.interpolated": "Les extensions sont les vitamines de VS Code. Elles vont des hacks de productivité pratiques ou de l'extension de fonctionnalités prêtes à l'emploi à l'ajout de toutes nouvelles fonctionnalités.\r\n{0}",
- "gettingStarted.extensions.title": "Extensibilité illimitée",
+ "gettingStarted.extensions.title": "Coder avec des extensions",
"gettingStarted.extensionsWeb.description.interpolated": "Les extensions sont les mises sous tension de VS Code. Un nombre croissant est de plus en plus disponible sur le web.\r\n{0}",
- "gettingStarted.findLanguageExts.description.interpolated": "Codez plus intelligemment avec mise en surbrillance de syntaxe, le complètement de code, le linting et le débogage. De nombreux langages sont intégrés et beaucoup d’autres peuvent être ajoutés en extensions.\r\n{0}",
+ "gettingStarted.findLanguageExts.description.interpolated": "Codez plus intelligemment avec mise en surbrillance de syntaxe, suggestions en ligne, linting et débogage. De nombreux langages sont intégrés et beaucoup d’autres peuvent être ajoutés en extensions.\r\n{0}",
"gettingStarted.findLanguageExts.title": "Prise en charge complète de tous vos langages",
- "gettingStarted.installGit.description.interpolated": "Installez Git pour effectuer le suivi des modifications apportées à vos projets.\r\n{0}",
+ "gettingStarted.goToSymbol.description.interpolated": "La commande Atteindre le symbole est utile pour naviguer entre les points de repère importants dans un document.\r\n{0}",
+ "gettingStarted.goToSymbol.title": "Accéder aux symboles dans un fichier",
+ "gettingStarted.hover.description.interpolated": "Lorsque le focus est mis sur une variable ou un symbole dans l’éditeur, il est possible de faire la mise au point sur un pointage de souris à l’aide de la commande Afficher ou Ouvrir le pointage de souris.\r\n{0}",
+ "gettingStarted.hover.title": "Accéder au pointage dans l’éditeur pour obtenir plus d’informations sur une variable ou un symbole",
+ "gettingStarted.installGit.description.interpolated": "Installez Git pour suivre les modifications apportées à vos projets.\r\n{0}\r\n{1}Rechargez la fenêtre{2} après l’installation pour terminer l’installation de Git.",
"gettingStarted.installGit.title": "Installer Git",
- "gettingStarted.intermediate.description": "Optimisez votre flux de travail de développement avec ces trucs et astuces.",
- "gettingStarted.intermediate.title": "Dynamiser votre productivité",
+ "gettingStarted.intellisense.description.interpolated": "Les suggestions IntelliSense peuvent être ouvertes avec la commande Trigger Intellisense.\r\n{0}\r\n Les suggestions Inline IntelliSense peuvent être déclenchées avec la suggestion inline de déclencheur\r\n{1}\r\n Les paramètres utiles incluent editor.inlineCompletionsAccessibilityVerbose et editor.screenReaderAnnounceInlineSuggestion.",
+ "gettingStarted.intellisense.title": "Utiliser IntelliSense pour améliorer l’efficacité du codage",
+ "gettingStarted.keyboardShortcuts.description.interpolated": "Une fois que vous avez découvert vos commandes favorites, créez des raccourcis clavier personnalisés pour un accès instantané.\r\n{0}",
+ "gettingStarted.keyboardShortcuts.title": "Personnaliser vos raccourcis clavier",
"gettingStarted.menuBar.description.interpolated": "La barre de menu complète est disponible dans le menu déroulant pour faire de la place à votre code. Basculez son apparition pour un accès plus rapide. \r\n{0}",
"gettingStarted.menuBar.title": "Juste la bonne quantité d’interface utilisateur",
- "gettingStarted.newFile.description": "Ouvrez un nouveau fichier, bloc-notes ou éditeur personnalisé sans titre.",
+ "gettingStarted.newFile.description": "Ouvrez un nouveau fichier texte, bloc-notes ou éditeur personnalisé sans titre.",
"gettingStarted.newFile.title": "Nouveau fichier...",
+ "gettingStarted.newWorkspaceChat.description": "Converser pour créer un espace de travail",
+ "gettingStarted.newWorkspaceChat.title": "Générez un espace de travail...",
"gettingStarted.notebook.title": "Personnalisez les blocs-notes",
+ "gettingStarted.notebook.walkthroughPageTitle": "Notebooks",
"gettingStarted.notebookProfile.description": "Créez des blocs-notes qui vous conviennent",
"gettingStarted.notebookProfile.title": "Sélectionnez la disposition de vos blocs-notes",
"gettingStarted.openFile.description": "Ouvrir un fichier et commencer à travailler",
@@ -10369,63 +16584,80 @@
"gettingStarted.openFolder.title": "Ouvrir un dossier...",
"gettingStarted.openMac.description": "Ouvrir un fichier ou un dossier et commencer à travailler",
"gettingStarted.openMac.title": "Ouvrir...",
- "gettingStarted.pickColor.description.interpolated": "Une bonne palette de couleurs vous permet de vous concentrer sur votre code, de ménager vos yeux ou tout simplement de rendre votre environnement plus attrayant.\r\n{0}",
- "gettingStarted.pickColor.title": "Choisissez votre style",
- "gettingStarted.playground.description.interpolated": "Vous souhaitez coder plus rapidement et plus intelligemment ? Mettez en pratique les puissantes fonctionnalités de modification du code dans le terrain de jeu interactif.\r\n{0}",
- "gettingStarted.playground.title": "Redéfinissez vos compétences de modification",
+ "gettingStarted.pickColor.description.interpolated": "Le bon thème vous aide à vous concentrer sur votre code, est agréable à regarder et est tout simplement plus amusant à utiliser.\r\n{0}",
+ "gettingStarted.pickColor.title": "Choisissez votre thème",
"gettingStarted.quickOpen.description.interpolated": "Naviguez parmi les fichiers en un instant à l'aide d'une seule touche. Conseil : Ouvrez plusieurs fichiers en appuyant sur la touche de direction flèche droite.\r\n{0}",
"gettingStarted.quickOpen.title": "Naviguez rapidement entre vos fichiers",
"gettingStarted.scm.description.interpolated": "Finie la quête de la commande git appropriée ! Les flux de travail git et GitHub sont impeccablement intégrés.\r\n{0}",
"gettingStarted.scm.title": "Effectuer le suivi de votre code avec Git",
"gettingStarted.scmClone.description.interpolated": "Configurez le contrôle de version intégré à votre projet pour effectuer le suivi de vos modifications et collaborer avec d’autres utilisateurs.\r\n{0}",
"gettingStarted.scmSetup.description.interpolated": "Configurez le contrôle de version intégré à votre projet pour effectuer le suivi de vos modifications et collaborer avec d’autres utilisateurs.\r\n{0}",
- "gettingStarted.settings.description.interpolated": "Adaptez tous les aspects de VS Code et vos extensions à votre convenance. Les paramètres fréquemment utilisés sont listés en premier pour vous aider à démarrer.\r\n{0}",
"gettingStarted.settings.title": "Modifier vos paramètres",
- "gettingStarted.settingsSync.description.interpolated": "Conservez vos personnalisations VS Code essentielles sauvegardées et mises à jour sur tous vos appareils.\r\n{0}",
- "gettingStarted.settingsSync.title": "Synchroniser avec et à partir d’autres appareils",
- "gettingStarted.setup.OpenFolder.description.interpolated": "Vous êtes prêt à commencer le codage. Ouvrez un dossier de projet pour placer vos fichiers dans VS Code.\r\n{0}",
+ "gettingStarted.settingsAndSync.description.interpolated": "Personnalisez chaque aspect de VS Code et [synchronisez](command:workbench.userDataSync.actions.turnOn) vos personnalisations sur tous les appareils.\r\n{0}",
+ "gettingStarted.settingsSync.description.interpolated": "Gardez vos personnalisations essentielles sauvegardées et mises à jour sur tous vos appareils.\r\n{0}",
+ "gettingStarted.settingsSync.title": "Synchronisez les paramètres sur les différents appareils",
"gettingStarted.setup.OpenFolder.title": "Ouvrir votre code",
"gettingStarted.setup.OpenFolderWeb.description.interpolated": "Vous êtes prêt à commencer le codage. Vous pouvez ouvrir un projet local ou un dépôt distant pour obtenir vos fichiers dans VS Code.\r\n{0}\r\n{1}",
- "gettingStarted.setup.description": "Découvrez les meilleures personnalisations pour rendre VS Code plus proche de vous.",
- "gettingStarted.setup.title": "Prise en main de VS Code",
- "gettingStarted.setupWeb.description": "Découvrez les meilleures personnalisations pour rendre VS Code plus proche dans votre Web.",
- "gettingStarted.setupWeb.title": "Démarrer avec VS Code sur le web",
+ "gettingStarted.setup.description": "Personnalisez votre éditeur, apprenez les bases et commencez à coder",
+ "gettingStarted.setup.title": "Démarrage de VS Code",
+ "gettingStarted.setup.walkthroughPageTitle": "Configurer VS Code",
+ "gettingStarted.setupAccessibility.description": "Découvrez les outils et les raccourcis qui rendent VS Code accessibles. Notez que certaines actions ne sont pas actionnables à partir du contexte de la procédure pas à pas.",
+ "gettingStarted.setupAccessibility.title": "Démarrer avec fonctionnalités d’accessibilité",
+ "gettingStarted.setupAccessibility.walkthroughPageTitle": "Configurer l’accessibilité de VS Code",
+ "gettingStarted.setupWeb.description": "Personnalisez votre éditeur, apprenez les bases et commencez à coder",
+ "gettingStarted.setupWeb.title": "Démarrer avec VS Code pour le web",
+ "gettingStarted.setupWeb.walkthroughPageTitle": "Configurer VS Code Web",
"gettingStarted.shortcuts.description.interpolated": "Une fois que vous avez découvert vos commandes favorites, créez des raccourcis clavier personnalisés pour un accès instantané.\r\n{0}",
"gettingStarted.shortcuts.title": "Personnalisez vos raccourcis",
- "gettingStarted.splitview.description.interpolated": "Tirer le meilleur parti de l’espace de votre écran en ouvrant des fichiers côte à côte, verticalement ou horizontalement.\r\n{0}",
- "gettingStarted.splitview.title": "Modification côte à côte",
"gettingStarted.tasks.description.interpolated": "Créez des tâches pour vos flux de travail courants et bénéficiez de l’expertise intégrée d’exécution de scripts et de vérification automatique des résultats.\r\n{0}",
"gettingStarted.tasks.title": "Automatisez vos tâches de projet",
"gettingStarted.terminal.description.interpolated": "Exécutez rapidement des commandes d'interpréteur de commandes, et supervisez la sortie de build, tout en ayant votre code juste à côté.\r\n{0}",
- "gettingStarted.terminal.title": "Terminal intégré pratique",
+ "gettingStarted.terminal.title": "Terminal intégré",
"gettingStarted.topLevelGitClone.description": "Cloner un référentiel distant dans un dossier local",
"gettingStarted.topLevelGitClone.title": "Cloner un dépôt Git...",
"gettingStarted.topLevelGitOpen.description": "Se connecter à un référentiel distant ou à une demande de tirage pour parcourir, rechercher, modifier et valider",
"gettingStarted.topLevelGitOpen.title": "Ouvrir le référentiel...",
- "gettingStarted.topLevelShowWalkthroughs.description": "Afficher une procédure pas à pas sur l’éditeur ou une extension",
- "gettingStarted.topLevelShowWalkthroughs.title": "Ouvrir une procédure pas à pas...",
- "gettingStarted.topLevelVideoTutorials.description": "Regardez notre série de didacticiels vidéo courts et pratiques pour les principales fonctionnalités de VS Code.",
- "gettingStarted.topLevelVideoTutorials.title": "Regarder les tutoriels vidéo",
+ "gettingStarted.topLevelOpenTunnel.description": "Se connecter à une machine distante via un tunnel",
+ "gettingStarted.topLevelOpenTunnel.title": "Ouvrir le tunnel...",
+ "gettingStarted.topLevelRemoteOpen.description": "Connectez-vous aux espaces de travail de développement à distance.",
+ "gettingStarted.topLevelRemoteOpen.title": "Se connecter à...",
+ "gettingStarted.verbositySettings.description.interpolated": "Il existe des paramètres de détail du lecteur d’écran pour les fonctionnalités autour de workbench afin qu’une fois qu’un utilisateur connaisse une fonctionnalité, il puisse éviter d’entendre des indications sur son fonctionnement. Par exemple, les fonctionnalités pour lesquelles il existe une boîte de dialogue d’aide à l’accessibilité indiquent comment ouvrir la boîte de dialogue jusqu’à ce que le paramètre de verbosité de cette fonctionnalité soit désactivé.\r\n Ces paramètres d’accessibilité et d’autres peuvent être configurés en exécutant la commande Ouvrir les paramètres d’accessibilité.\r\n{0}",
+ "gettingStarted.verbositySettings.title": "Contrôler la verbosité des étiquettes Aria",
"gettingStarted.videoTutorial.description.interpolated": "Regardez le premier tutoriel d'une série de tutoriels vidéo courts et pratiques sur les fonctionnalités clés de VS Code.\r\n{0}",
- "gettingStarted.videoTutorial.title": "Asseyez-vous confortablement et apprenez",
+ "gettingStarted.videoTutorial.title": "Regarder des didacticiels vidéo",
"gettingStarted.workspaceTrust.description.interpolated": "{0} vous permet de décider si vos dossiers de projet doivent **autoriser ou restreindre** l’exécution automatique du code __(requis pour les extensions, le débogage, etc.)__.\r\nL’ouverture d’un fichier/dossier vous invite à accorder l’approbation. Vous pouvez toujours {1} ultérieurement.",
"gettingStarted.workspaceTrust.title": "Parcourir et modifier le code en toute sécurité",
"initRepo": "Initialiser le dépôt Git",
"installGit": "Installer Git",
"keyboardShortcuts": "Raccourcis clavier",
- "openEditorPlayground": "Ouvrir le terrain de jeu de l’éditeur",
+ "listSignalAnnouncements": "Répertorier les annonces de signal",
+ "listSignalSounds": "Répertorier les sons de signal",
+ "openAccessibilityHelp": "Ouvrir l’aide sur l’accessibilité",
+ "openAccessibilitySettings": "Ouvrir les paramètres d’accessibilité",
+ "openAccessibleView": "Ouvrir la vue accessible",
"openFolder": "Ouvrir le dossier",
+ "openGoToSymbol": "Accéder au symbole",
"openRepository": "Ouvrir le dépôt",
"openSCM": "Contrôle open source",
- "pickFolder": "Choisir un dossier",
+ "openVerbositySettings": "Ouvrir les paramètres d’accessibilité",
"quickOpen": "Quick Open sur un fichier",
"runProject": "Exécuter votre projet",
"runTasks": "Exécuter des tâches détectées automatiquement",
- "showTerminal": "Afficher le panneau Terminal",
- "splitEditor": "Fractionner l'éditeur",
+ "settings": "{0} Copilot peut afficher des suggestions de [code public]({1}) et utiliser vos données pour améliorer le produit. Vous pouvez modifier ces [paramètres]({2}) à tout moment.",
+ "setupCopilotButton.chatWithCopilot": "Commencer la conversation",
+ "setupCopilotButton.setup": "Utiliser les fonctionnalités d’IA",
+ "showOrFocusHover": "Afficher ou focus sur pointer",
+ "showTerminal": "Ouvrir le terminal",
+ "terminalStartDictation": "Terminal : démarrer la dictée dans le terminal",
+ "terminalStopDictation": "Terminal : arrêter la dictée dans le terminal",
"titleID": "Parcourir les thèmes de couleur",
+ "toggleDictation": "Voix : démarrer la dictée dans l’éditeur",
+ "toggleFold": "Activer/désactiver le pliage",
+ "toggleFoldRecursively": "Activer/désactiver le repli récursif",
"toggleMenuBar": "Activer/désactiver la barre de menus",
- "tweakSettings": "Adapter mes paramètres",
+ "triggerInlineSuggestion": "Déclencher la suggestion inline",
+ "triggerIntellisense": "Déclencher IntelliSense",
+ "tweakSettings": "Ouvrir les paramètres",
"watch": "Regarder le tutoriel",
"workspaceTrust": "Approbation d’espace de travail"
},
@@ -10437,10 +16669,16 @@
"vs/workbench/contrib/welcomeGettingStarted/common/media/theme_picker": {
"HighContrast": "Contraste élevé sombre",
"HighContrastLight": "Contraste élevé clair",
- "dark": "Sombre",
- "light": "Clair",
+ "dark": "Moderne sombre",
+ "light": "Moderne clair",
"seeMore": "Plus de thèmes"
},
+ "vs/workbench/contrib/welcomeGettingStarted/common/media/theme_picker_small": {
+ "HighContrast": "Contraste élevé sombre",
+ "HighContrastLight": "Contraste élevé clair",
+ "dark": "Moderne sombre",
+ "light": "Moderne clair"
+ },
"vs/workbench/contrib/welcomeOverlay/browser/welcomeOverlay": {
"hideWelcomeOverlay": "Masquer la vue d'ensemble de l'interface",
"welcomeOverlay": "Vue d'ensemble de l'interface utilisateur",
@@ -10452,15 +16690,8 @@
"welcomeOverlay.notifications": "Afficher les notifications",
"welcomeOverlay.problems": "Afficher les erreurs et avertissements",
"welcomeOverlay.search": "Rechercher dans les fichiers",
- "welcomeOverlay.terminal": "Activer/désactiver le terminal intégré"
- },
- "vs/workbench/contrib/welcomePage/browser/welcomePage.contribution": {
- "workbench.startupEditor": "Contrôle quel éditeur s’affiche au démarrage, si aucun n'est restauré de la session précédente.",
- "workbench.startupEditor.newUntitledFile": "Ouvrez un nouveau fichier sans titre (s'applique uniquement à l'ouverture d'une fenêtre vide).",
- "workbench.startupEditor.none": "Démarrage sans éditeur.",
- "workbench.startupEditor.readme": "Ouvre le fichier README lors de l'ouverture d'un dossier qui en contient un, sinon il revient à 'welcomePage'. Remarque : ceci n'est observé que comme une configuration globale, elle sera ignorée si elle est définie dans une configuration d'espace de travail ou de dossier.",
- "workbench.startupEditor.welcomePage": "Ouvrir la page d’accueil qui propose du contenu pour faciliter la prise en main de VS Code et des extensions.",
- "workbench.startupEditor.welcomePageInEmptyWorkbench": "Ouvre la page d'accueil à l'ouverture d'un banc d'essai vide."
+ "welcomeOverlay.terminal": "Activer/désactiver le terminal intégré",
+ "welcomeOverlayBackground": "Couleur d’arrière-plan welcomeOverlay."
},
"vs/workbench/contrib/welcomeViews/common/newFile.contribution": {
"Built-In": "Intégré",
@@ -10468,9 +16699,10 @@
"change keybinding": "Configurer la combinaison de touches",
"file": "Fichier",
"miNewFile2": "Fichier texte",
- "miNewFileWithName": "Nouveau fichier ({0})",
+ "miNewFileWithName": "Créer un fichier ({0})",
+ "newFilePlaceholder": "Sélectionner un type de fichier ou entrer un nom de fichier...",
+ "newFileTitle": "Nouveau fichier...",
"notebook": "Notebook",
- "selectFileType": "Sélectionnez le type de fichier...",
"welcome.newFile": "Nouveau fichier..."
},
"vs/workbench/contrib/welcomeViews/common/viewsWelcomeContribution": {
@@ -10487,68 +16719,68 @@
},
"vs/workbench/contrib/welcomeWalkthrough/browser/editor/editorWalkThrough": {
"editorWalkThrough": "Terrain de jeu de l’éditeur interactif",
- "editorWalkThrough.title": "Terrain de jeu de l’éditeur"
+ "editorWalkThrough.title": "Terrain de jeu de l’éditeur",
+ "editorWalkThroughMetadata": "Ouvre un terrain de jeu interactif pour en savoir plus sur l’éditeur."
},
"vs/workbench/contrib/welcomeWalkthrough/browser/walkThrough.contribution": {
"miPlayground": "Ter&&rain de jeu de l’éditeur",
"walkThrough.editor.label": "Terrain de jeu"
},
"vs/workbench/contrib/welcomeWalkthrough/browser/walkThroughPart": {
- "walkThrough.embeddedEditorBackground": "Couleur d'arrière-plan des éditeurs incorporés dans le terrain de jeu interactif.",
"walkThrough.gitNotFound": "Git semble ne pas être installé sur votre système.",
"walkThrough.unboundCommand": "indépendant"
},
+ "vs/workbench/contrib/welcomeWalkthrough/common/walkThroughUtils": {
+ "walkThrough.embeddedEditorBackground": "Couleur d'arrière-plan des éditeurs incorporés dans le terrain de jeu interactif."
+ },
"vs/workbench/contrib/workspace/browser/workspace.contribution": {
- "addWorkspaceFolderDetail": "Vous ajoutez à un espace de travail approuvé des fichiers qui ne sont pour le moment pas approuvés. Faites-vous confiance aux auteurs de ces nouveaux fichiers ?",
+ "addWorkspaceFolderDetail": "Vous ajoutez à un espace de travail approuvé des fichiers non approuvés pour l’instant. Faites-vous confiance aux auteurs de ces nouveaux fichiers ?",
"addWorkspaceFolderMessage": "Faites-vous confiance aux auteurs des fichiers de ce dossier ?",
- "cancel": "Annuler",
"cancelWorkspaceTrustButton": "Annuler",
"checkboxString": "Faire confiance à tous les auteurs des fichiers du dossier parent « {0} »",
- "configureWorkspaceTrust": "Configurer l’approbation de l’espace de travail",
- "dontTrustFolderOptionDescription": "Parcourir le dossier en mode restreint",
- "dontTrustOption": "Non, je ne fais pas confiance aux auteurs",
- "dontTrustWorkspaceOptionDescription": "Parcourir l’espace de travail en mode restreint",
+ "configureWorkspaceTrustSettings": "Configurer les paramètres d’approbation de l’espace de travail",
+ "dontTrustFolderOptionDescription": "Parcourir le dossier en mode Restreint",
+ "dontTrustOption": "&&Non, je ne fais pas confiance aux auteurs",
+ "dontTrustWorkspaceOptionDescription": "Parcourir l’espace de travail en mode Restreint",
"folderStartupTrustDetails": "{0} offre des fonctionnalités qui peuvent exécuter automatiquement des fichiers de ce dossier.",
"folderTrust": "Faites-vous confiance aux auteurs des fichiers de ce dossier ?",
- "grantFolderTrustButton": "Approuver le dossier et continuer",
- "grantWorkspaceTrustButton": "Approuver l’espace de travail et continuer",
+ "grantFolderTrustButton": "&&Approuver le dossier et continuer",
+ "grantWorkspaceTrustButton": "&&Approuver l’espace de travail et continuer",
"immediateTrustRequestLearnMore": "Si vous ne faites pas confiance aux auteurs de ces fichiers, nous vous recommandons de ne pas continuer car les fichiers sont peut-être malveillants. Consultez [notre documentation](https://aka.ms/vscode-workspace-trust) pour en savoir plus.",
"immediateTrustRequestMessage": "Vous essayez d'utiliser une fonctionnalité qui constitue un risque pour la sécurité si vous ne faites pas confiance à la source des fichiers ou dossiers ouverts.",
"manageWorkspaceTrust": "Gérer la confiance en l'espace de travail",
- "manageWorkspaceTrustButton": "Gérer",
- "newWindow": "Ouvrir en mode restreint",
+ "manageWorkspaceTrustButton": "&&Gérer",
+ "newWindow": "Ouvrir en &&mode Restreint",
"no": "Non",
- "open": "Ouvrir",
- "openLooseFileLearnMore": "If you don't trust the authors of these files, we recommend to open them in Restricted Mode in a new window as the files may be malicious. See [our docs](https://aka.ms/vscode-workspace-trust) to learn more.",
- "openLooseFileMesssage": "Faites-vous confiance aux auteurs de ces fichiers ?",
+ "open": "&&Ouvrir",
+ "openLooseFileLearnMore": "Si vous ne souhaitez pas ouvrir les fichiers non fiables, nous vous recommandons de les ouvrir en mode Restreint dans une nouvelle fenêtre car les fichiers peuvent être malveillants. Consultez [notre documentation](https://aka.ms/vscode-workspace-trust) pour en savoir plus.",
"openLooseFileWindowDetails": "Vous essayez d’ouvrir des fichiers non approuvés dans une fenêtre qui est approuvée.",
+ "openLooseFileWindowMesssage": "Voulez-vous autoriser les fichiers non fiables dans cette fenêtre ?",
"openLooseFileWorkspaceCheckbox": "Se souvenir de ma décision pour tous les espaces de travail",
"openLooseFileWorkspaceDetails": "Vous essayez d’ouvrir des fichiers non approuvés dans un espace de travail qui est approuvé.",
- "restrictedModeBannerAriaLabelFolder": "Le mode restreint est destiné à la navigation de code sécurisé. Approuvez ce dossier pour activer toutes les fonctionnalités. Utilisez les touches de navigation pour accéder aux actions de bannière.",
- "restrictedModeBannerAriaLabelWindow": "Le mode restreint est destiné à la navigation de code sécurisé. Approuvez cette fenêtre pour activer toutes les fonctionnalités. Utilisez les touches de navigation pour accéder aux actions de bannière.",
- "restrictedModeBannerAriaLabelWorkspace": "Le mode restreint est destiné à la navigation de code sécurisé. Approuvez cet espace de travail pour activer toutes les fonctionnalités. Utilisez les touches de navigation pour accéder aux actions de bannière.",
+ "openLooseFileWorkspaceMesssage": "Voulez-vous autoriser les fichiers non fiables dans cet espace de travail ?",
+ "restrictedModeBannerAriaLabelFolder": "Le mode Restreint est destiné à la navigation de code sécurisé. Approuvez ce dossier pour activer toutes les fonctionnalités. Utilisez les touches de navigation pour accéder aux actions de bannière.",
+ "restrictedModeBannerAriaLabelWindow": "Le mode Restreint est destiné à la navigation de code sécurisé. Approuvez cette fenêtre pour activer toutes les fonctionnalités. Utilisez les touches de navigation pour accéder aux actions de bannière.",
+ "restrictedModeBannerAriaLabelWorkspace": "Le mode Restreint est destiné à la navigation de code sécurisé. Approuvez cet espace de travail pour activer toutes les fonctionnalités. Utilisez les touches de navigation pour accéder aux actions de bannière.",
"restrictedModeBannerLearnMore": "En savoir plus",
"restrictedModeBannerManage": "Gérer",
- "restrictedModeBannerMessageFolder": "Le mode restreint est destiné à la navigation de code sécurisé. Approuvez ce dossier pour activer toutes les fonctionnalités.",
- "restrictedModeBannerMessageWindow": "Le mode restreint est destiné à la navigation de code sécurisé. Approuvez cette fenêtre pour activer toutes les fonctionnalités.",
- "restrictedModeBannerMessageWorkspace": "Le mode restreint est destiné à la navigation de code sécurisé. Approuvez cet espace de travail pour activer toutes les fonctionnalités.",
- "securityConfigurationTitle": "Sécurité",
- "startupTrustRequestLearnMore": "If you don't trust the authors of these files, we recommend to continue in restricted mode as the files may be malicious. See [our docs](https://aka.ms/vscode-workspace-trust) to learn more.",
+ "restrictedModeBannerMessageFolder": "Le mode Restreint est destiné à la navigation de code sécurisé. Approuvez ce dossier pour activer toutes les fonctionnalités.",
+ "restrictedModeBannerMessageWindow": "Le mode Restreint est destiné à la navigation de code sécurisé. Approuvez cette fenêtre pour activer toutes les fonctionnalités.",
+ "restrictedModeBannerMessageWorkspace": "Le mode Restreint est destiné à la navigation de code sécurisé. Approuvez cet espace de travail pour activer toutes les fonctionnalités.",
+ "startupTrustRequestLearnMore": "Si vous ne faites pas confiance aux auteurs de ces fichiers, nous vous recommandons de continuer en mode Restreint car les fichiers sont peut-être malveillants. Consultez [notre documentation](https://aka.ms/vscode-workspace-trust) pour en savoir plus.",
"status.WorkspaceTrust": "Confiance accordée à l'espace de travail",
- "status.ariaTrustedFolder": "Ce dossier est approuvé.",
- "status.ariaTrustedWindow": "Cette fenêtre est approuvée.",
- "status.ariaTrustedWorkspace": "Cet espace de travail est approuvé.",
- "status.ariaUntrustedFolder": "Mode restreint : certaines fonctionnalités sont désactivées car ce dossier n’est pas approuvé.",
- "status.ariaUntrustedWindow": "Mode restreint : certaines fonctionnalités sont désactivées car cette fenêtre n’est pas approuvée.",
- "status.ariaUntrustedWorkspace": "Mode restreint : certaines fonctionnalités sont désactivées car cet espace de travail n’est pas approuvé.",
- "status.tooltipUntrustedFolder2": "Exécution en Mode Restreint\r\n\r\nCertaines [fonctionnalités sont désactivées]({0}) car ce [dossier n’est pas approuvé]({1}).",
- "status.tooltipUntrustedWindow2": "Exécution en Mode Restreint\r\n\r\nCertaines [fonctionnalités sont désactivées]({0}) car cette [fenêtre n’est pas approuvée]({1}).",
- "status.tooltipUntrustedWorkspace2": "Exécution en Mode Restreint\r\n\r\nCertaines [fonctionnalités sont désactivées]({0}) car cet [espace de travail n’est pas approuvé]({1}).",
+ "status.ariaUntrustedFolder": "Mode Restreint : certaines fonctionnalités sont désactivées car ce dossier n’est pas approuvé.",
+ "status.ariaUntrustedWindow": "Mode Restreint : certaines fonctionnalités sont désactivées car cette fenêtre n’est pas approuvée.",
+ "status.ariaUntrustedWorkspace": "Mode Restreint : certaines fonctionnalités sont désactivées car cet espace de travail n’est pas approuvé.",
+ "status.tooltipUntrustedFolder2": "Exécution en mode Restreint\r\n\r\nCertaines [fonctionnalités sont désactivées]({0}) car ce [dossier n’est pas approuvé]({1}).",
+ "status.tooltipUntrustedWindow2": "Exécution en mode Restreint\r\n\r\nCertaines [fonctionnalités sont désactivées]({0}) car cette [fenêtre n’est pas approuvée]({1}).",
+ "status.tooltipUntrustedWorkspace2": "Exécution en mode Restreint\r\n\r\nCertaines [fonctionnalités sont désactivées]({0}) car cet [espace de travail n’est pas approuvé]({1}).",
"trustFolderOptionDescription": "Approuver le dossier et activer toutes les fonctionnalités",
- "trustOption": "Oui, je fais confiance aux auteurs",
+ "trustOption": "&&Oui, je fais confiance aux auteurs",
"trustWorkspaceOptionDescription": "Approuver l’espace de travail et activer toutes les fonctionnalités",
+ "untrusted": "Mode Restreint",
"workspace.trust.banner.always": "Affichez la bannière chaque fois qu’un espace de travail non approuvé est ouvert.",
- "workspace.trust.banner.description": "Contrôle l’affichage de la bannière en mode restreint.",
+ "workspace.trust.banner.description": "Contrôle l’affichage de la bannière en mode Restreint.",
"workspace.trust.banner.never": "N’affichez pas la bannière lorsqu’un espace de travail non approuvé est ouvert.",
"workspace.trust.banner.untilDismissed": "Afficher la bannière lorsqu’un espace de travail non approuvé est ouvert jusqu’à ce qu’il soit ignoré.",
"workspace.trust.description": "Contrôle si l’approbation d’espace de travail est activée dans VS Code.",
@@ -10558,14 +16790,13 @@
"workspace.trust.startupPrompt.never": "Ne pas demander l’approbation quand un espace de travail non approuvé est ouvert.",
"workspace.trust.startupPrompt.once": "Demander l’approbation la première fois qu’un espace de travail non approuvé est ouvert.",
"workspace.trust.untrustedFiles.description": "Contrôle comment gérer l’ouverture de fichiers non approuvés dans un espace de travail approuvé. Ce paramètre s’applique également à l’ouverture de fichiers dans une fenêtre vide approuvée par le biais de `#{0}#`.",
- "workspace.trust.untrustedFiles.newWindow": "Toujours ouvrir les fichiers non approuvés dans une fenêtre distincte en mode restreint sans invite.",
+ "workspace.trust.untrustedFiles.newWindow": "Toujours ouvrir les fichiers non approuvés dans une fenêtre distincte en mode Restreint sans invite.",
"workspace.trust.untrustedFiles.open": "Toujours autoriser l’introduction de fichiers non approuvés dans un espace de travail approuvé sans invite.",
"workspace.trust.untrustedFiles.prompt": "Demander comment gérer les fichiers non approuvés pour chaque espace de travail. Une fois que des fichiers non approuvés ont été introduits dans un espace de travail approuvé, cette demande ne vous sera plus faite.",
"workspaceStartupTrustDetails": "{0} offre des fonctionnalités qui peuvent exécuter automatiquement des fichiers de cet espace de travail.",
"workspaceTrust": "Faites-vous confiance aux auteurs des fichiers de cet espace de travail ?",
"workspaceTrustEditor": "Éditeur de confiance en l'espace de travail",
- "workspacesCategory": "Espaces de travail",
- "yes": "Oui"
+ "workspacesCategory": "Espaces de travail"
},
"vs/workbench/contrib/workspace/browser/workspaceTrustEditor": {
"addButton": "Ajouter un dossier",
@@ -10577,6 +16808,7 @@
"folderPickerIcon": "Icône pour l'icône de sélection de dossier dans l'éditeur de confiance de l'espace de travail.",
"hostColumnLabel": "Hôte",
"invalidTrust": "Vous ne pouvez pas approuver des dossiers individuels dans un référentiel.",
+ "keyboardShortcut": "Raccourcis clavier : {0}",
"localAuthority": "Local",
"no untrustedSettings": "Les paramètres d’espace de travail nécessitant une approbation ne sont pas appliqués",
"noTrustedFoldersDescriptions": "Vous n’avez pas encore approuvé de dossiers ou de fichiers d’espace de travail.",
@@ -10594,7 +16826,7 @@
"trustUri": "Approuver le dossier",
"trustedDebugging": "Le débogage est activé",
"trustedDescription": "Toutes les fonctionnalités sont activées car une approbation a été accordée à l’espace de travail.",
- "trustedExtensions": "Toutes les extensions sont activées",
+ "trustedExtensions": "Toutes les extensions activées sont activées",
"trustedFolder": "Dans un dossier approuvé",
"trustedFolderAriaLabel": "{0}, de confiance",
"trustedFolderSubtitle": "Vous faites confiance aux auteurs des fichiers du dossier actif. Toutes les fonctionnalités sont activées :",
@@ -10613,15 +16845,15 @@
"trustedWorkspace": "Dans un espace de travail approuvé",
"trustedWorkspaceSubtitle": "Vous faites confiance aux auteurs des fichiers de l’espace de travail actif. Toutes les fonctionnalités sont activées :",
"untrustedDebugging": "Le débogage est désactivé",
- "untrustedDescription": "{0} est en mode restreint destiné à la navigation sécurisée du code.",
- "untrustedExtensions": "[{0} extensions] ({1}) sont désactivées ou offrent des fonctionnalités limitées",
- "untrustedFolderReason": "Ce dossier est approuvé par le biais des entrées en gras dans les dossiers approuvés ci-dessous.",
+ "untrustedDescription": "{0} est en mode Restreint destiné à la navigation sécurisée du code.",
+ "untrustedExtensions": "[{0} extensions]({1}) sont désactivées ou offrent des fonctionnalités limitées",
+ "untrustedFolderReason": "Ce dossier est approuvé via les entrées en gras dans les dossiers approuvés ci-dessous.",
"untrustedFolderSubtitle": "Vous ne faites pas confiance aux auteurs des fichiers du dossier actif. Les fonctionnalités suivantes sont désactivées :",
- "untrustedHeader": "Vous êtes en mode restreint",
- "untrustedSettings": "[{0} paramètres d’espace de travail ] ({1}) ne sont pas appliqués",
+ "untrustedHeader": "Vous êtes en mode Restreint",
+ "untrustedSettings": "[{0} paramètres d’espace de travail ]({1}) ne sont pas appliqués",
"untrustedTasks": "Les tâches ne sont pas autorisées à s’exécuter",
"untrustedWindowSubtitle": "Vous ne faites pas confiance aux auteurs des fichiers de la fenêtre active. Les fonctionnalités suivantes sont désactivées :",
- "untrustedWorkspace": "En mode restreint",
+ "untrustedWorkspace": "En mode Restreint",
"untrustedWorkspaceReason": "Cet espace de travail est approuvé par le biais des entrées en gras dans les dossiers approuvés ci-dessous.",
"untrustedWorkspaceSubtitle": "Vous ne faites pas confiance aux auteurs des fichiers de l’espace de travail actif. Les fonctionnalités suivantes sont désactivées :",
"workspaceTrustEditorHeaderActions": "[Configurer vos paramètres] ({0}) ou [en savoir plus](https://aka.ms/vscode-workspace-trust).",
@@ -10632,53 +16864,90 @@
"workspaceTrustedCtx": "Indique si l’espace de travail actif a été approuvé par l’utilisateur."
},
"vs/workbench/contrib/workspaces/browser/workspaces.contribution": {
+ "alreadyOpen": "Cet espace de travail est déjà ouvert.",
+ "foundWorkspace": "Ce dossier contient un fichier d’espace de travail « {0} ». Voulez-vous l’ouvrir ? [En savoir plus]({1}) sur les fichiers de l’espace de travail.",
+ "foundWorkspaces": "Ce dossier contient plusieurs fichiers d'espace de travail. Voulez-vous en ouvrir un ? [Découvrez plus d'informations]({0}) sur les fichiers d'espace de travail.",
"openWorkspace": "Ouvrir un espace de travail",
"selectToOpen": "Sélectionner un espace de travail à ouvrir",
- "selectWorkspace": "Sélectionner un espace de travail",
- "workspaceFound": "Ce dossier contient un fichier d’espace de travail '{0}'. Voulez-vous l’ouvrir ? [En savoir plus] ({1}) sur les fichiers de l’espace de travail.",
- "workspacesFound": "Ce dossier contient plusieurs fichiers d'espace de travail. Voulez-vous en ouvrir un ? [Découvrez plus d'informations]({0}) sur les fichiers d'espace de travail."
+ "selectWorkspace": "Sélectionner un espace de travail"
+ },
+ "vs/workbench/services/accounts/common/defaultAccount": {
+ "sign in": "Se connecter"
},
"vs/workbench/services/actions/common/menusExtensionPoint": {
+ "command name": "ID",
+ "command title": "Titre",
+ "commands": "Commandes",
"comment.actions": "Menu contextuel des commentaires ajoutés, affiché sous forme de boutons sous l'éditeur de commentaires",
+ "comment.commentContext": "Menu contextuel des commentaires ajoutés, affiché sous forme de menu contextuel sur un commentaire individuel dans l’affichage d’aperçu du thread de commentaires",
"comment.title": "Menu de titre des commentaires ajoutés",
"commentThread.actions": "Menu contextuel du thread des commentaires ajoutés, affiché sous forme de boutons sous l'éditeur de commentaires",
+ "commentThread.editorActions": "Actions apportées à l’éditeur de commentaires",
"commentThread.title": "Menu de titre du thread des commentaires ajoutés",
- "dup": "La commande '{0}' apparaît plusieurs fois dans la section 'commands'.",
+ "commentThread.titleContext": "Menu contextuel d’aperçu du titre du thread de commentaires ajouté, affiché sous forme de menu contextuel sur le titre d’aperçu du thread de commentaires",
+ "commentsView.threadActions": "Menu contextuel du thread de commentaires ajouté dans l’affichage des commentaires",
+ "dup0": "La commande `{0}` est déjà inscrite",
+ "dup1": "La commande `{0}` est déjà inscrite par {1} ({2})",
"dupe.command": "L'élément de menu fait référence à la même commande que la commande par défaut et la commande alt",
+ "editorLineNumberContext": "Menu contextuel du numéro de ligne de l’éditeur faisant l’objet d’une contribution",
"file.newFile": "Le « nouveau fichier... » sélection rapide, présentée sur la page d’accueil et le menu fichier.",
"inlineCompletions.actions": "Actions affichées lors du survol de la souris sur un complètement en ligne",
"interactive.cell.title": "Menu du titre de cellule interactif ajouté",
"interactive.toolbar": "Menu de barre d’outils de cellule interactif ajouté",
+ "issue.reporter": "Menu du rapport de problèmes faisant l’objet d’une contribution",
+ "keyboard shortcuts": "Raccourcis clavier",
+ "menuContexts": "Contextes de menu",
+ "menus.artifactContext": "Menu contextuel d’artefact du contrôle de code source",
+ "menus.artifactGroupContext": "Menu contextuel du groupe d’artefact du contrôle de code source",
"menus.changeTitle": "Menu de changement inline du contrôle de code source",
+ "menus.chatMultiDiffContext": "Menu contextuel Multi-Diff de la discussion.",
+ "menus.chatSessions": "Menu Sessions de conversation.",
+ "menus.chatSessionsNewSession": "Menu des nouvelles sessions de conversation.",
+ "menus.chatTextEditor": "Le sous-menu Chat dans le menu contextuel de l'éditeur de texte.",
"menus.commandPalette": "Palette de commandes",
"menus.debugCallstackContext": "Menu contextuel de la vue de la pile d'appels de débogage",
+ "menus.debugCreateConfiguation": "Menu de configuration de création de débogage",
"menus.debugToolBar": "Menu de la barre d'outils de débogage",
"menus.debugVariablesContext": "Menu contextuel de la vue des variables de débogage",
+ "menus.debugWatchContext": "Menu contextuel de la vue de surveillance de débogage",
+ "menus.diffEditorGutterToolBarMenus": "Barre d’outils de la marge dans l’éditeur de différences",
"menus.editorContext": "Menu contextuel de l'éditeur",
"menus.editorContextCopyAs": "Sous-menu 'Copier en tant que' dans le menu contextuel de l'éditeur",
"menus.editorContextShare": "Sous-menu « Partager » dans le menu contextuel de l’éditeur",
"menus.editorTabContext": "Menu contextuel des onglets de l'éditeur",
"menus.editorTitle": "Menu de titre de l'éditeur",
+ "menus.editorTitleContextShare": "Sous-menu « Partager » dans le menu contextuel du titre de l’éditeur",
"menus.editorTitleRun": "Exécuter le sous-menu dans le menu du titre de l'éditeur",
"menus.explorerContext": "Menu contextuel de l'Explorateur de fichiers",
+ "menus.explorerContextShare": "Sous-menu « Partager » dans le menu contextuel de l’Explorateur de fichiers",
"menus.extensionContext": "Menu contextuel de l'extension",
+ "menus.historyItemContext": "Menu contextuel de l’élément d’historique du contrôle de code source",
+ "menus.historyItemRefContext": "Menu contextuel de référence de l’élément d’historique du contrôle de code source",
"menus.home": "Menu contextuel de l'indicateur d'accueil (web uniquement)",
+ "menus.input": "Menu de la zone d’entrée Contrôle de code source",
+ "menus.mergeEditorResult": "Barre d’outils des résultats de l’éditeur de fusion",
+ "menus.multiDiffEditorResource": "Barre d’outils des ressources dans l’éditeur de différences multi diff",
+ "menus.notebookVariablesContext": "Menu contextuel de la vue des variables de notebook",
"menus.opy": "Sous-menu 'Copier en tant que' dans le menu Edition de niveau supérieur",
"menus.resourceFolderContext": "Menu contextuel du dossier de ressources de contrôle de code source",
"menus.resourceGroupContext": "Menu contextuel du groupe de ressources du contrôle de code source",
"menus.resourceStateContext": "Menu contextuel de l'état des ressources du contrôle de code source",
+ "menus.scmHistoryTitle": "Le menu de titre de l’historique du contrôle de la source",
"menus.scmSourceControl": "Le menu de contrôle de code source",
+ "menus.scmSourceControlInline": "Le menu du dépôt de contrôle de code source",
+ "menus.scmSourceControlTitle": "Menu du titre des dépôts de contrôle de code source",
"menus.scmTitle": "Menu du titre du contrôle de code source",
"menus.share": "Sous-menu Partager affiché dans le menu Fichier de niveau supérieur.",
"menus.statusBarRemoteIndicator": "Menu d’indicateur distant dans la barre d’état",
+ "menus.terminalContext": "Menu contextuel du terminal",
+ "menus.terminalTabContext": "Menu contextuel des onglets du terminal",
"menus.touchBar": "La touch bar (macOS uniquement)",
- "merge.toolbar": "Bouton de premier plan dans l’éditeur de fusion",
+ "merge.toolbar": "Le bouton de premier plan d’un éditeur superpose son contenu",
"missing.altCommand": "L'élément de menu fait référence à une commande alt '{0}' qui n'est pas définie dans la section 'commands'.",
"missing.command": "L'élément de menu fait référence à une commande '{0}' qui n'est pas définie dans la section 'commands'.",
"missing.submenu": "L'élément de menu référence un sous-menu '{0}' qui n'est pas défini dans la section 'submenus'.",
"nonempty": "valeur non vide attendue.",
"notebook.cell.execute": "Menu de l’exécution de cellule de notebook ajouté",
- "notebook.cell.executePrimary": "Le bouton d'exécution de la cellule principale du bloc-notes contribué",
"notebook.cell.title": "Menu du titre de cellule de notebook ajouté",
"notebook.kernelSource": "Menu Sources du noyau du bloc-notes fourni",
"notebook.toolbar": "Menu de barre d'outils de notebook faisant l'objet d'une contribution",
@@ -10691,13 +16960,19 @@
"requirearray": "les éléments de sous-menu doivent correspondre à un tableau",
"requirestring": "la propriété '{0}' est obligatoire et doit être de type 'string'",
"requirestrings": "les propriétés `{0}` et `{1}` sont obligatoires et doivent être de type `string`",
+ "searchPanel.aiResultsCommands": "Commandes qui contribueront au menu rendues en tant que boutons en regard du titre de la recherche IA",
"submenuId.duplicate.id": "Le sous-menu '{0}' a déjà été inscrit.",
"submenuId.invalid.id": "'{0}' est un identificateur de sous-menu non valide",
"submenuId.invalid.label": "'{0}' est une étiquette de sous-menu non valide",
"submenuItem.duplicate": "Le sous-menu '{0}' a déjà été ajouté au menu '{1}'.",
"testing.item.context": "Menu des éléments de test faisant l'objet d'une contribution",
"testing.item.gutter.title": "Menu d’une décoration de reliure pour un élément de test",
+ "testing.item.result.title": "Menu d’un élément dans l’affichage Résultats des tests ou aperçu.",
+ "testing.message.content.title": "Menu contextuel du message dans l'arborescence des résultats",
+ "testing.message.context.title": "Bouton proéminent superposant le contenu de l'éditeur où le message est affiché",
+ "testing.profiles.context.title": "Menu de configuration des profils de test.",
"unsupported.submenureference": "L'élément de menu référence un sous-menu d'un menu qui ne prend pas en charge les sous-menus.",
+ "view.containerTitle": "Le menu du titre du conteneur de vues contribuées",
"view.itemContext": "Menu contextuel de l'élément de vue ajoutée",
"view.timelineContext": "Menu contextuel d'un élément de la vue Chronologie",
"view.timelineTitle": "Menu du titre de la vue Chronologie",
@@ -10705,9 +16980,10 @@
"view.tunnelOriginInline": "Menu en ligne de l'origine d'un élément de la vue Ports",
"view.tunnelPortInline": "Menu en ligne du port d’un élément de l’affichage des ports",
"view.viewTitle": "Menu de titre de la vue ajoutée",
+ "viewContainerTitle.when": "La contribution du menu {0} doit vérifier {1} dans sa clause {2}.",
"vscode.extension.contributes.commandType.category": "(Facultatif) chaîne de catégorie en fonction de laquelle la commande est regroupée dans l'IU",
"vscode.extension.contributes.commandType.command": "Identificateur de la commande à exécuter",
- "vscode.extension.contributes.commandType.icon": "(Facultatif) Icône utilisée pour représenter la commande dans l'interface utilisateur. Peut être un chemin de fichier, un objet avec des chemins de fichier pour les thèmes foncés et clairs, ou des références à une icône de thème, par ex., `\\$(zap)`",
+ "vscode.extension.contributes.commandType.icon": "(Facultatif) Icône utilisée pour représenter la commande dans l’interface utilisateur. Il peut s’agir d’un chemin de fichier, d’un objet avec des chemins de fichiers pour les thèmes sombre et clair, ou d’une référence à une icône de thème, par exemple « \\$(zap) »",
"vscode.extension.contributes.commandType.icon.dark": "Chemin de l'icône quand un thème foncé est utilisé",
"vscode.extension.contributes.commandType.icon.light": "Chemin de l'icône quand un thème clair est utilisé",
"vscode.extension.contributes.commandType.precondition": "(Facultatif) Condition qui doit être vraie pour permettre l'activation de la commande dans l'IU (menu et combinaisons de touches). N'empêche pas d'exécuter la commande par d'autres moyens, par exemple l'API 'executeCommand'.",
@@ -10720,7 +16996,7 @@
"vscode.extension.contributes.menuItem.submenu": "Identificateur du sous-menu à afficher dans cet élément.",
"vscode.extension.contributes.menuItem.when": "Condition qui doit être true pour afficher cet élément",
"vscode.extension.contributes.menus": "Contribue à fournir des éléments de menu à l'éditeur",
- "vscode.extension.contributes.submenu.icon": "(Facultatif) Icône utilisée pour représenter le sous-menu dans l'IU. Il peut s'agir d'un chemin de fichier, d'un objet avec des chemins de fichiers pour les thèmes sombre et clair, ou d'une référence à une icône de thème, par exemple '\\$(zap)'",
+ "vscode.extension.contributes.submenu.icon": "(Facultatif) Icône utilisée pour représenter le sous-menu dans l’IU. Il peut s’agir d’un chemin de fichier, d’un objet avec des chemins de fichiers pour les thèmes sombre et clair, ou d’une référence à une icône de thème, par exemple « \\$(zap) »",
"vscode.extension.contributes.submenu.icon.dark": "Chemin de l'icône quand un thème foncé est utilisé",
"vscode.extension.contributes.submenu.icon.light": "Chemin de l'icône quand un thème clair est utilisé",
"vscode.extension.contributes.submenu.id": "Identificateur du menu à afficher en tant que sous-menu.",
@@ -10728,38 +17004,78 @@
"vscode.extension.contributes.submenus": "Contribue aux éléments de sous-menu de l'éditeur",
"webview.context": "Menu contextuel de la vue web"
},
- "vs/workbench/services/authentication/browser/authenticationService": {
+ "vs/workbench/services/activity/common/activity": {
+ "activityErrorBadge.background": "Couleur d’arrière-plan du badge d’activité d’erreur",
+ "activityErrorBadge.foreground": "Couleur de premier plan du badge d’activité d’erreur",
+ "activityWarningBadge.background": "Couleur d’arrière-plan du badge d’activité d’avertissement",
+ "activityWarningBadge.foreground": "Couleur de premier plan du badge d’activité d’avertissement"
+ },
+ "vs/workbench/services/assignment/common/assignmentService": {
+ "workbench.enableExperiments": "Récupère les fonctionnalités expérimentales pour exécuter à partir d’un service en ligne de Microsoft."
+ },
+ "vs/workbench/services/authentication/browser/authenticationExtensionsService": {
"accessRequest": "Accorder l’accès à {1} pour {0}... (1)",
- "allow": "Autoriser",
- "authentication.Placeholder": "Aucun compte demandé pour le moment...",
- "authentication.id": "ID du fournisseur d'authentification.",
- "authentication.idConflict": "Cet ID d'authentification '{0}' a déjà été inscrit",
- "authentication.label": "Nom lisible par l'homme du fournisseur d'authentification.",
- "authentication.missingId": "Une contribution d'authentification doit spécifier un ID.",
- "authentication.missingLabel": "Une contribution d'authentification doit spécifier une étiquette.",
- "authenticationExtensionPoint": "Ajoute une authentification",
- "cancel": "Annuler",
+ "allow": "&&Autoriser",
"confirmAuthenticationAccess": "L'extension '{0}' tente d'accéder aux informations d'authentification du compte {1} '{2}'.",
- "deny": "Refuser",
+ "deny": "&&Refuser",
"getSessionPlateholder": "Sélectionner un compte à utiliser pour '{0}' ou appuyer sur Échap pour annuler",
- "loading": "Chargement...",
"selectAccount": "L'extension '{0}' souhaite accéder à un compte {1}",
"sign in": "Connexion demandée",
"signInRequest": "Se connecter avec {0} pour utiliser {1} (1)",
"useOtherAccount": "Se connecter à un autre compte"
},
- "vs/workbench/services/bulkEdit/browser/bulkEditService": {
- "summary.0": "Aucune modification effectuée",
- "summary.nm": "{0} modifications de texte effectuées dans {1} fichiers",
- "summary.n0": "{0} modifications de texte effectuées dans un fichier",
- "workspaceEdit": "Modification de l'espace de travail",
- "nothing": "Aucune modification effectuée"
+ "vs/workbench/services/authentication/browser/authenticationMcpService": {
+ "accessRequest": "Accorder l’accès à {1} pour {0}... (1)",
+ "allow": "&&Autoriser",
+ "confirmAuthenticationAccess": "Le serveur MCP « {0} » souhaite accéder au compte {1} « {2} ».",
+ "deny": "&&Refuser",
+ "getSessionPlateholder": "Sélectionner un compte à utiliser pour '{0}' ou appuyer sur Échap pour annuler",
+ "selectAccount": "Le serveur MCP « {0} » souhaite accéder à un compte {1}",
+ "sign in": "Connexion demandée",
+ "signInRequest": "Se connecter avec {0} pour utiliser {1} (1)",
+ "useOtherAccount": "Se connecter à un autre compte"
+ },
+ "vs/workbench/services/authentication/browser/authenticationService": {
+ "authentication.authorizationServerGlobs": "Une liste de globs qui correspondent aux serveurs d’autorisation pris en charge par ce fournisseur.",
+ "authentication.authorizationServerGlobsDescription": "Une liste de globs qui correspondent aux serveurs d’autorisation pris en charge par ce fournisseur.",
+ "authentication.id": "ID du fournisseur d'authentification.",
+ "authentication.idConflict": "Cet ID d'authentification '{0}' a déjà été inscrit",
+ "authentication.label": "Nom lisible par l'homme du fournisseur d'authentification.",
+ "authentication.missingId": "Une contribution d'authentification doit spécifier un ID.",
+ "authentication.missingLabel": "Une contribution d'authentification doit spécifier une étiquette.",
+ "authenticationExtensionPoint": "Ajoute une authentification"
+ },
+ "vs/workbench/services/auxiliaryWindow/browser/auxiliaryWindowService": {
+ "lifecycleVeto": "Les modifications que vous avez apportées risquent de ne pas être enregistrées. Veuillez cocher « Annuler » et réessayer.",
+ "retry": "&&Réessayer",
+ "unableToOpenWindow": "Le navigateur a bloqué l'ouverture d'une nouvelle fenêtre. Appuyez sur « Réessayer » pour réessayer.",
+ "unableToOpenWindowDetail": "Veuillez autoriser les fenêtres contextuelles pour ce site web dans vos [paramètres de navigateur]({0}).",
+ "unableToOpenWindowError": "Impossible d'ouvrir une nouvelle fenêtre."
+ },
+ "vs/workbench/services/auxiliaryWindow/electron-browser/auxiliaryWindowService": {
+ "backupErrorDetails": "Essayez d'abord de sauvegarder ou de rétablir les éditeurs avec les modifications non sauvegardées, puis réessayez."
+ },
+ "vs/workbench/services/chat/common/chatEntitlementService": {
+ "learnMore": "En savoir plus",
+ "ok": "OK",
+ "retry": "Réessayer",
+ "signUpInvalidResponseError": "Contenu de réponse non valide.",
+ "signUpNoResponseContentsError": "La réponse n’a pas de contenu.",
+ "signUpNoResponseError": "Aucune réponse reçue.",
+ "signUpUnexpectedStatusError": "Code d’état {0} inattendu.",
+ "unknownSignUpError": "Désolé, une erreur s’est produite lors de l’inscription au Plan GitHub Copilot Free. Voulez-vous réessayer ?",
+ "unprocessableSignUpError": "Désolé, une erreur s’est produite lors de l’inscription au Plan GitHub Copilot Free."
+ },
+ "vs/workbench/services/clipboard/browser/clipboardService": {
+ "clipboardError": "Nous n’avons pas pu lire à partir du Presse-papiers du navigateur. Vérifiez que vous avez autorisé ce site web à lire à partir du Presse-papiers.",
+ "learnMore": "En savoir plus",
+ "retry": "Réessayer"
},
"vs/workbench/services/configuration/browser/configurationService": {
"configurationDefaults.description": "Contribuer aux valeurs par défaut des configurations",
- "experimental": "Expériences"
+ "setting description": "Configurez les paramètres à appliquer à tous les profils."
},
- "vs/workbench/services/configuration/common/configurationEditingService": {
+ "vs/workbench/services/configuration/common/configurationEditing": {
"errorConfigurationFileDirty": "Impossible d'écrire dans les paramètres utilisateur car le fichier contient des modifications non sauvegardées. Veuillez d'abord enregistrer le fichier des paramètres utilisateur, puis réessayer.",
"errorConfigurationFileDirtyFolder": "Impossible d'écrire dans les paramètres du dossier car le fichier contient des modifications non enregistrées. Veuillez d'abord enregistrer le fichier '{0}' des paramètres du dossier, puis réessayer.",
"errorConfigurationFileDirtyWorkspace": "Impossible d'écrire dans les paramètres de l'espace de travail car le fichier contient des modifications non sauvegardées. Veuillez d'abord enregistrer le fichier des paramètres de l'espace de travail, puis réessayer.",
@@ -10772,6 +17088,7 @@
"errorInvalidFolderConfiguration": "Impossible d'écrire dans les paramètres de dossier, car {0} ne prend pas en charge la portée des ressources de dossier.",
"errorInvalidFolderTarget": "Impossible d’écrire dans les paramètres de dossier car aucune ressource n’est fournie.",
"errorInvalidLaunchConfiguration": "Impossible d’écrire dans le fichier de configuration de lancement. Veuillez ouvrir le fichier pour y corriger les erreurs/avertissements et essayez à nouveau.",
+ "errorInvalidMCPConfiguration": "Nous ne pouvons pas écrire dans le fichier config MCP. Veuillez ouvrir le fichier pour y corriger les erreurs/avertissements et essayez à nouveau.",
"errorInvalidRemoteConfiguration": "Impossible d'écrire dans les paramètres de l'utilisateur distant. Ouvrez les paramètres de l'utilisateur distant pour corriger les erreurs/avertissements, et réessayez.",
"errorInvalidResourceLanguageConfiguration": "Impossible d'écrire dans les paramètres de langage parce que {0} n'est pas un paramètre de langage de ressource.",
"errorInvalidTaskConfiguration": "Impossible d’écrire dans le fichier de configuration des tâches. Veuillez ouvrir le fichier pour y corriger les erreurs/avertissements et essayez à nouveau.",
@@ -10781,6 +17098,8 @@
"errorInvalidWorkspaceTarget": "Impossible d’écrire dans les paramètres de l’espace de travail car {0} ne supporte pas de portée d’espace de travail dans un espace de travail multi dossiers.",
"errorLaunchConfigurationFileDirty": "Impossible d'écrire dans le fichier de configuration de lancement car le fichier contient des modifications non sauvegardées. Veuillez le sauvegarder d'abord et réessayer ensuite.",
"errorLaunchConfigurationFileModifiedSince": "Impossible d'écrire dans le fichier de configuration de lancement parce que le contenu du fichier est plus récent.",
+ "errorMCPConfigurationFileDirty": "Nous ne pouvons pas écrire dans le fichier config MCP, car le fichier contient des modifications non sauvegardées. Veuillez le sauvegarder d’abord et réessayer ensuite.",
+ "errorMCPConfigurationFileModifiedSince": "Nous ne pouvons pas écrire dans le fichier config MCP, car le contenu du fichier est plus récent.",
"errorNoWorkspaceOpened": "Impossible d’écrire dans {0} car aucun espace de travail n’est ouvert. Veuillez ouvrir un espace de travail et essayer à nouveau.",
"errorPolicyConfiguration": "Impossible d’écrire {0} car elle est configurée dans la stratégie système.",
"errorRemoteConfigurationFileDirty": "Impossible d'écrire dans les paramètres de l'utilisateur distant car le fichier contient des modifications non sauvegardées. Veuillez d'abord enregistrer le fichier des paramètres de l'utilisateur distant, puis réessayer.",
@@ -10790,8 +17109,10 @@
"errorUnknown": "Impossible d’écrire dans {0} en raison d’une erreur interne.",
"errorUnknownKey": "Impossible d'écrire dans {0}, car {1} n'est pas une configuration inscrite.",
"folderTarget": "Paramètres de dossier",
+ "fsError": "Erreur lors de l’écriture dans {0}. {1}",
"open": "Ouvrir les paramètres",
"openLaunchConfiguration": "Ouvrir la configuration du lancement",
+ "openMcpConfiguration": "Ouvrir la configuration MCP",
"openTasksConfiguration": "Ouvrir la configuration des tâches",
"remoteUserTarget": "Paramètres de l'utilisateur distant",
"saveAndRetry": "Enregistrer et Réessayer",
@@ -10799,7 +17120,6 @@
"workspaceTarget": "Paramètres de l'espace de travail"
},
"vs/workbench/services/configuration/common/jsonEditingService": {
- "errorFileDirty": "Impossible d'écrire dans le fichier car celui-ci contient des modifications non sauvegardées. Veuillez enregistrer le fichier et réessayer.",
"errorInvalidFile": "Impossible d’écrire dans le fichier. Veuillez ouvrir le fichier pour corriger les erreurs/avertissements dans le fichier et réessayer."
},
"vs/workbench/services/configurationResolver/browser/baseConfigurationResolverService": {
@@ -10832,6 +17152,7 @@
},
"vs/workbench/services/configurationResolver/common/variableResolver": {
"canNotFindFolder": "Impossible de résoudre la variable {0}. Aucun dossier '{1}'.",
+ "canNotResolveColumnNumber": "Impossible de résoudre la variable {0}. Veillez à sélectionner une colonne dans l’éditeur actif.",
"canNotResolveFile": "Impossible de résoudre la variable {0}. Ouvrez un éditeur.",
"canNotResolveFolderForFile": "Variable {0} : le dossier d'espace de travail de '{1}' est introuvable.",
"canNotResolveLineNumber": "Impossible de résoudre la variable {0}. Vérifiez qu'une ligne est sélectionnée dans l'éditeur actif.",
@@ -10852,7 +17173,6 @@
},
"vs/workbench/services/dialogs/browser/abstractFileDialogService": {
"allFiles": "Tous les fichiers",
- "cancel": "Annuler",
"dontSave": "&&Ne pas enregistrer",
"filterName.workspace": "Espace de travail",
"noExt": "Aucune extension",
@@ -10868,21 +17188,35 @@
"saveChangesMessages": "Voulez-vous enregistrer les modifications apportées aux {0} fichiers suivants ?",
"saveFileAs.title": "Enregistrer sous"
},
+ "vs/workbench/services/dialogs/browser/fileDialogService": {
+ "learnMore": "&&En savoir plus",
+ "openFiles": "Ouvrir des &&fichiers...",
+ "openRemote": "&&Ouvrir un dépôt distant...",
+ "pickFolderAndOpen": "Nous n’avons pas pu ouvrir les dossiers. Essayez plutôt d’ajouter un dossier à l’espace de travail.",
+ "pickWorkspaceAndOpen": "Nous n’avons pas pu ouvrir les espaces de travail. Essayez plutôt d’ajouter un dossier à l’espace de travail.",
+ "unsupportedBrowserDetail": "Votre navigateur ne prend pas en charge l’ouverture de dossiers locaux. \r\nVous pouvez ouvrir des fichiers uniques ou ouvrir un référentiel distant.",
+ "unsupportedBrowserMessage": "L’ouverture des dossiers locaux n’est pas prise en charge."
+ },
"vs/workbench/services/dialogs/browser/simpleFileDialog": {
"openLocalFile": "Ouvrir le fichier local...",
"openLocalFileFolder": "Ouvrir un dépôt local...",
"openLocalFolder": "Ouvrir un dossier local...",
- "remoteFileDialog.badPath": "Le chemin n'existe pas.",
+ "remoteFileDialog.badPath": "Le chemin d’accès n’existe pas. Utilisez ~ pour accéder à votre répertoire de base.",
"remoteFileDialog.cancel": "Annuler",
+ "remoteFileDialog.hideDotFiles": "Masquer les fichiers à points",
"remoteFileDialog.invalidPath": "Entrez un chemin valide.",
"remoteFileDialog.local": "Afficher les valeurs locales",
"remoteFileDialog.notConnectedToRemote": "Le fournisseur de système de fichiers pour {0} n'est pas disponible.",
+ "remoteFileDialog.placeholder": "Chemin d’accès au dossier",
+ "remoteFileDialog.showDotFiles": "Afficher les fichiers à points",
"remoteFileDialog.validateBadFilename": "Entrez un nom de fichier valide.",
+ "remoteFileDialog.validateCreateDirectory": "Le dossier {0} n’existe pas. Voulez-vous le créer?",
"remoteFileDialog.validateExisting": "Le fichier {0} existe déjà. Voulez-vous vraiment le remplacer ?",
"remoteFileDialog.validateFileOnly": "Sélectionnez un fichier.",
"remoteFileDialog.validateFolder": "Le dossier existe déjà. Utilisez un nouveau nom de fichier.",
"remoteFileDialog.validateFolderOnly": "Veuillez sélectionner un dossier.",
"remoteFileDialog.validateNonexistentDir": "Veuillez entrer un chemin d’accès qui existe.",
+ "remoteFileDialog.validateReadonlyFolder": "Ce dossier ne peut pas être utilisé comme destination d’enregistrement. Choisissez un autre dossier",
"remoteFileDialog.windowsDriveLetter": "Commencez le chemin par une lettre de lecteur.",
"saveLocalFile": "Enregistrer le fichier local..."
},
@@ -10898,27 +17232,28 @@
"promptOpenWith.updateDefaultPlaceHolder": "Sélectionner un nouvel éditeur par défaut pour « {0} »"
},
"vs/workbench/services/editor/common/editorResolverService": {
- "editor.editorAssociations": "Configurez des modèles glob pour les éditeurs (par exemple, `\"*.hex\": \"hexEditor.hexEdit\"`). Ces modèles ont priorité sur le comportement par défaut."
+ "editor.editorAssociations": "Configurez [modèles globaux](https://aka.ms/vscode-glob-patterns) to editors (par exemple,`\"*.hex\": \"hexEditor.hexedit\"`). Ceux-ci ont priorité sur le comportement par défaut."
},
"vs/workbench/services/extensionManagement/browser/extensionBisect": {
+ "I cannot reproduce": "Je ne parviens pas à reproduire",
+ "This is Bad": "Je peux reproduire",
"bisect": "L'extension Bisect est active et a désactivé {0} extensions. Vérifiez si vous pouvez encore reproduire le problème, puis continuez en effectuant votre sélection parmi les options disponibles.",
"bisect.plural": "L'extension Bisect est active et a désactivé {0} extensions. Vérifiez si vous pouvez encore reproduire le problème, puis continuez en effectuant votre sélection parmi les options disponibles.",
"bisect.singular": "L'extension Bisect est active et a désactivé 1 extension. Vérifiez si vous pouvez encore reproduire le problème, puis continuez en effectuant votre sélection parmi ces options.",
+ "continue": "Continuer",
"detail.start": "L'extension Bisect va utiliser la recherche binaire pour trouver une extension qui pose problème. Durant le processus, la fenêtre va se recharger de manière répétitive (~{0} fois). À chaque fois, vous devez vérifier si vous rencontrez toujours des problèmes.",
- "done": "Continuer",
"done.detail": "L'extension Bisect a fini de s'exécuter et a identifié {0} comme étant l'extension à l'origine du problème.",
"done.detail2": "L'extension Bisect a fini de s'exécuter mais aucune extension n'a été identifiée. Il existe peut-être un problème avec {0}.",
"done.disbale": "Garder cette extension désactivée",
"done.msg": "Extension Bisect",
- "help": "Aide",
"msg.next": "Extension Bisect",
"msg.start": "Extension Bisect",
- "msg2": "Démarrer l'extension Bisect",
- "next.bad": "Incorrect",
- "next.cancel": "Annuler",
- "next.good": "Correct à présent",
- "next.stop": "Arrêter Bisect",
- "report": "Signaler le problème et continuer",
+ "msg2": "&&Démarrer l’extension Bisect",
+ "next.bad": "Je peux &&reproduire",
+ "next.cancel": "&&Annuler Bisect",
+ "next.good": "Je ne parviens pas à &&reproduire",
+ "next.stop": "&&Arrêter Bisect",
+ "report": "&&Signaler le problème et continuer",
"title.isBad": "Continuer l'exécution de l'extension Bisect",
"title.start": "Démarrer l'extension Bisect",
"title.stop": "Arrêter l'extension Bisect"
@@ -10926,47 +17261,93 @@
"vs/workbench/services/extensionManagement/browser/extensionEnablementService": {
"Reload": "Recharger et activer les extensions",
"cannot change disablement environment": "Impossible de modifier l’activation de l'extension {0}, car elle est désactivée dans l’environnement",
+ "cannot change disallowed extension enablement": "Nous ne pouvons pas modifier l’activation de l’extension {0}, car elle n’est pas autorisée",
"cannot change enablement dependency": "Impossible d’activer l’extension « {0} », car elle dépend de l’extension « {1} » qui ne peut pas être activée",
"cannot change enablement environment": "Impossible de modifier l’activation de l'extension {0}, car elle est activée dans l’environnement",
"cannot change enablement extension kind": "Impossible de modifier l’activation de {0} extension en raison de son type d’extension",
+ "cannot change enablement malicious": "Nous ne pouvons pas modifier l’activation de l’extension {0} car elle est malveillante",
"cannot change enablement virtual workspace": "Impossible de modifier l’activation de l’extension {0}, car elle ne prend pas en charge les espaces de travail virtuels",
+ "cannot change invalid extension enablement": "Impossible de modifier l’activation de l’extension {0}, car elle n’est pas valide",
"cannot disable auth extension": "Impossible de changer l'activation de l'extension {0}, car la synchronisation des paramètres en dépend.",
"cannot disable auth extension in workspace": "Impossible de changer l'activation de l'extension {0} dans l'espace de travail, car elle apporte une contribution aux fournisseurs d'authentification",
"cannot disable language pack extension": "Impossible de changer l'activation de l'extension {0}, car elle apporte une contribution aux modules linguistiques.",
"extensionsDisabled": "Toutes les extensions installées sont temporairement désactivées.",
"noWorkspace": "Aucun espace de travail."
},
+ "vs/workbench/services/extensionManagement/browser/webExtensionsScannerService": {
+ "not a web extension": "Impossible d'ajouter «{0}», car cette extension n'est pas une extension web.",
+ "openInstalledWebExtensionsResource": "Ouvrir la ressource extensions web installées"
+ },
+ "vs/workbench/services/extensionManagement/common/extensionFeaturesManagemetService": {
+ "accessExtensionFeature": "Accéder à la fonctionnalité « {0} »",
+ "accessExtensionFeatureMessage": "L’extension « {0} » souhaite accéder à la fonctionnalité « {1} ».",
+ "allow": "Autoriser",
+ "disallow": "Ne pas autoriser"
+ },
+ "vs/workbench/services/extensionManagement/common/extensionManagementServerService": {
+ "browser": "Navigateur",
+ "remote": "Distant"
+ },
"vs/workbench/services/extensionManagement/common/extensionManagementService": {
"Manifest is not found": "L'installation de l'extension {0} a échoué : manifeste introuvable.",
"VS Code for Web": "{0} pour le web",
- "cancel": "Annuler",
+ "allUnverifed": "Tous les éditeurs sont [**non** vérifiés]({0}).",
"cannot be installed": "Impossible d'installer l'extension '{0}', car elle est déclarée comme n'étant pas disponible dans cette configuration.",
+ "cannot be installed in server": "Nous ne pouvons pas installer l’extension « {0} », car elle est déclarée comme n’étant pas disponible dans la configuration « {1} ».",
+ "checkAllTrustedPublishersTitle": "Faites-vous confiance au \"{0}\" de l’éditeur et {1} d’autres personnes ?",
+ "checkTrustedPublisherTitle": "Faites-vous confiance à l’éditeur \"{0}\" ?",
+ "checkTwoTrustedPublishersTitle": "Faites-vous confiance aux éditeurs \"{0}\" et \"{1}\" ?",
+ "extension published by message": "L’extension {0} est publiée par {1}.",
"extensionInstallWorkspaceTrustButton": "Approuver l’espace de travail et installer",
"extensionInstallWorkspaceTrustContinueButton": "Installer",
"extensionInstallWorkspaceTrustManageButton": "En savoir plus",
"extensionInstallWorkspaceTrustMessage": "L’activation de cette extension nécessite un espace de travail approuvé.",
- "install": "Installer",
- "install and do no sync": "Installer (ne pas synchroniser)",
- "install anyways": "Installer quand même",
+ "firstTimeInstallingMessage": "C’est la première fois que vous installez des extensions à partir de ces éditeurs.",
+ "install": "&&Installer",
+ "install and do no sync": "Installer (ne &&pas synchroniser)",
+ "install anyways": "&&Installer quand même",
"install extension": "Installer l'extension",
"install extensions": "Installer les extensions",
"install multiple extensions": "Voulez-vous installer et synchroniser des extensions sur vos appareils ?",
"install single extension": "Voulez-vous installer et synchroniser l'extension '{0}' sur vos appareils ?",
+ "learnMore": "&&En savoir plus",
"limited support": "'{0}' a une fonctionnalité limitée dans {1}.",
+ "main.notFound": "Impossible d’activer, car {0} est introuvable",
+ "manifest is not found": "Le manifeste n’a pas été trouvé",
+ "message1": "L’extension {0} est publiée par {1}. Il s’agit de la première extension que vous installez à partir de cet éditeur.",
+ "message2": "{0} n’a aucun contrôle sur le comportement des extensions tierces, y compris la gestion de vos données personnelles. Continuez uniquement si vous faites confiance à l’éditeur.",
+ "message3": "L’installation de cette extension installera également [extensions]({0}) publiées par {1} et {2}.",
+ "message4": "{0} n’a aucun contrôle sur le comportement des extensions tierces, y compris la gestion de vos données personnelles. Continuez uniquement si vous faites confiance aux éditeurs.",
+ "multiInstallMessage": "C’est la première fois que vous installez des extensions à partir d’éditeurs {0} et {1}.",
"multipleDependentsError": "Impossible de désinstaller l'extension '{0}'. Les extensions '{1}', '{2}' et d'autres extensions en dépendent.",
"non web extensions": "'{0}' contient des extensions qui ne sont pas prises en charge par {1}.",
"non web extensions detail": "Contient des extensions qui ne sont pas prises en charge par.",
- "showExtensions": "Afficher les extensions",
+ "showExtensions": "&&Afficher les extensions",
"singleDependentError": "Impossible de désinstaller l'extension '{0}'. L'extension '{1}' en dépend.",
- "twoDependentsError": "Impossible de désinstaller l'extension '{0}'. Les extensions '{1}' et '{2}' en dépendent."
+ "singleUntrustedPublisher": "L’installation de cette extension installera également [extensions]({0}) publiée par {1}.",
+ "trust and install": "Approuver l’éditeur &&installer",
+ "trust publishers and install": "Approuver les éditeurs & &&installer",
+ "twoDependentsError": "Impossible de désinstaller l'extension '{0}'. Les extensions '{1}' et '{2}' en dépendent.",
+ "unverifiedPublisherWithName": "{0} est [**not** verified]({1}).",
+ "unverifiedPublishers": "{0} et {1} sont [**not** verified]({2}).",
+ "verifiedPublisherWithName": "{0} a vérifié la propriété de {1}."
+ },
+ "vs/workbench/services/extensionManagement/common/extensionsIcons": {
+ "extensionDefault": "Icône utilisée pour l'extension par défaut dans la vue et l’éditeur des extensions.",
+ "extensionIconVerifiedForeground": "La couleur de l'icône de l'éditeur vérifié de l'extension.",
+ "verifiedPublisher": "Icône utilisée pour l’éditeur d’extension vérifié dans la vue et l’éditeur d’extensions."
+ },
+ "vs/workbench/services/extensionManagement/electron-browser/extensionGalleryManifestService": {
+ "extensionGalleryManifestService.accountChange": "{0} est désormais configuré sur une autre Place de marché. Veuillez redémarrer pour appliquer les modifications.",
+ "restart": "&&Redémarrer"
},
- "vs/workbench/services/extensionManagement/electron-sandbox/extensionManagementServerService": {
- "local": "LOCAL",
+ "vs/workbench/services/extensionManagement/electron-browser/extensionManagementServerService": {
+ "local": "Local",
"remote": "Distant"
},
- "vs/workbench/services/extensionManagement/electron-sandbox/remoteExtensionManagementService": {
+ "vs/workbench/services/extensionManagement/electron-browser/remoteExtensionManagementService": {
+ "incompatibleAPI": "Impossible d’installer l’extension « {0} ». {1}",
"notFoundCompatibleDependency": "Impossible d'installer l'extension '{0}' car elle n'est pas compatible avec la version actuelle de {1} (version {2}).",
- "notFoundCompatiblePrereleaseDependency": "Impossible d'installer la version préliminaire '{0}' car elle n'est pas compatible avec la version actuelle de {1} (version {2}).",
"notFoundReleaseExtension": "Impossible d’installer la version de mise en production de '{0}' extension, car elle n’a pas de version de mise en production."
},
"vs/workbench/services/extensionRecommendations/common/workspaceExtensionsConfig": {
@@ -10976,33 +17357,36 @@
"workspace folder": "Dossier d'espace de travail"
},
"vs/workbench/services/extensions/browser/extensionUrlHandler": {
- "Installing": "Installation de l'extension '{0}'...",
- "confirmUrl": "Autoriser une extension pour ouvrir cet URI ?",
- "enableAndHandle": "L'extension '{0}' est désactivée. Voulez-vous activer l'extension et ouvrir l'URL ?",
- "enableAndReload": "&&Activer et ouvrir",
+ "confirmUrl": "Autoriser l’extension « {0} » à ouvrir cet URI ?",
"extensions": "Extensions",
- "install and open": "&&Installer et ouvrir",
- "installAndHandle": "L'extension '{0}' n'est pas installée. Voulez-vous installer l'extension et ouvrir cette URL ?",
+ "installDetail": "Cette extension souhaite ouvrir un URI :",
"manage": "Gérer les URI d'extension autorisés...",
"no": "Il n'existe aucun URI d'extension autorisé.",
"open": "&&Ouvrir",
+ "openUri": "Ouvrir l’URI",
"reloadAndHandle": "L'extension '{0}' n’est pas chargée. Souhaitez-vous recharger la fenêtre afin de charger l’extension et ouvrir l’URL ?",
"reloadAndOpen": "&&Recharger la fenêtre et ouvrir",
- "rememberConfirmUrl": "Ne plus demander cette extension."
- },
- "vs/workbench/services/extensions/browser/webWorkerExtensionHost": {
- "name": "Hôte d'extension Worker"
+ "rememberConfirmUrl": "Ne plus me demander cette extension"
},
"vs/workbench/services/extensions/common/abstractExtensionService": {
+ "activation": "Événements d’activation",
+ "disconnectRemote": "Déconnecter l’Agent distant",
"extensionService.autoRestart": "L’hôte d’extension distant s’est arrêté de manière inattendue. Redémarrage...",
"extensionService.crash": "L’hôte d’extension distant s’est arrêté de manière inattendue 3 fois au cours des 5 dernières minutes.",
+ "extensionStopVetoError": "{0} (Erreur : {1})",
+ "extensionStopVetoMessage": "Veuillez confirmer le redémarrage des extensions.",
"extensionTestError": "Hôte d'extension introuvable pour lancer Test Runner sur {0}.",
"looping": "Les extensions suivantes contiennent des boucles de dépendance et ont été désactivées : {0}",
- "restart": "Redémarrer l’hôte d’extension distant"
+ "proceedAnyways": "Redémarrer quand même",
+ "restart": "Redémarrer l’hôte d’extension distant",
+ "stopExtensionHosts": "Arrêt des hôtes d’extension"
},
"vs/workbench/services/extensions/common/extensionHostManager": {
"measureExtHostLatency": "Mesurer la latence de l'hôte d'extension"
},
+ "vs/workbench/services/extensions/common/extensionsProposedApi": {
+ "enabledProposedAPIs": "Propositions API"
+ },
"vs/workbench/services/extensions/common/extensionsRegistry": {
"extensionKind": "Définissez le type d'une extension. Les extensions 'ui' sont installées et exécutées sur la machine locale tandis que les extensions 'workspace' s'exécutent sur la machine distante.",
"extensionKind.empty": "Définissez une extension qui ne peut pas s'exécuter dans un contexte distant, ni sur la machine locale, ni sur la machine distante.",
@@ -11014,6 +17398,7 @@
"ui": "Extension de type interface utilisateur. Dans une fenêtre distante, ce type d'extension est activé seulement s'il est disponible sur la machine locale.",
"vscode.extension.activationEvents": "Événements d'activation pour l'extension VS Code.",
"vscode.extension.activationEvents.onAuthenticationRequest": "Événement d'activation émis chaque fois que des sessions sont demandées au fournisseur d'authentification spécifié.",
+ "vscode.extension.activationEvents.onChatParticipant": "Événement d’activation émis lorsque le participant à la conversation spécifié est appelé.",
"vscode.extension.activationEvents.onCommand": "Événement d'activation envoyé quand la commande spécifiée est appelée.",
"vscode.extension.activationEvents.onCustomEditor": "Événement d'activation émis chaque fois que l'éditeur personnalisé spécifié devient visible.",
"vscode.extension.activationEvents.onDebug": "Un événement d’activation émis chaque fois qu’un utilisateur est sur le point de démarrer le débogage ou sur le point de la déboguer des configurations.",
@@ -11021,22 +17406,31 @@
"vscode.extension.activationEvents.onDebugDynamicConfigurations": "Événement d'activation émis chaque fois qu'une liste de toutes les configurations de débogage doit être créée (et que toutes les méthodes provideDebugConfigurations pour l'étendue \"dynamique\" doivent être appelées).",
"vscode.extension.activationEvents.onDebugInitialConfigurations": "Événement d'activation envoyé chaque fois qu’un \"launch.json\" doit être créé (et toutes les méthodes de provideDebugConfigurations doivent être appelées).",
"vscode.extension.activationEvents.onDebugResolve": "Événement d'activation envoyé quand une session de débogage du type spécifié est sur le point d’être lancée (et une méthode resolveDebugConfiguration correspondante doit être appelée).",
+ "vscode.extension.activationEvents.onEditSession": "Événement d’activation émis chaque fois qu’une session de modification est accessible avec le schéma donné.",
"vscode.extension.activationEvents.onFileSystem": "Un événement d’activation est émis chaque fois qu'un fichier ou un dossier fait l'objet d'un accès avec le schéma donné.",
- "vscode.extension.activationEvents.onIdentity": "Événement d'activation envoyé chaque fois que l'identité utilisateur spécifiée est utilisée.",
+ "vscode.extension.activationEvents.onIssueReporterOpened": "Un événement d'activation émis lors de l'ouverture du rapporteur de problèmes.",
"vscode.extension.activationEvents.onLanguage": "Événement d'activation envoyé quand un fichier résolu dans le langage spécifié est ouvert.",
+ "vscode.extension.activationEvents.onLanguageModelChatProvider": "Un événement d’activation émis lorsqu’un fournisseur de modèle de conversation pour le fournisseur donné est demandé.",
+ "vscode.extension.activationEvents.onLanguageModelTool": "Événement d’activation émis lorsque l’outil de modèle de langage spécifié est appelé.",
+ "vscode.extension.activationEvents.onMcpCollection": "Événement d’activation émis chaque fois qu’un outil du serveur MCP est demandé.",
"vscode.extension.activationEvents.onNotebook": "Événement d'activation émis chaque fois que le document notebook spécifié est ouvert.",
"vscode.extension.activationEvents.onOpenExternalUri": "Événement d'activation émis chaque fois qu'un URI externe (par exemple un lien HTTP ou HTTPS) est ouvert.",
"vscode.extension.activationEvents.onRenderer": "Événement d’activation émis chaque fois qu’un convertisseur de sortie de bloc-notes est utilisé.",
"vscode.extension.activationEvents.onSearch": "Un événement d’activation est émis chaque fois qu'une recherche est lancée dans le dossier avec le schéma donné. ",
"vscode.extension.activationEvents.onStartupFinished": "Événement d'activation émis une fois le démarrage effectué (à la fin de l'activation de toutes les extensions activées '*').",
"vscode.extension.activationEvents.onTaskType": "Événement d’activation émis chaque fois que des tâches d’un certain type doivent être listées ou résolues.",
+ "vscode.extension.activationEvents.onTerminal": "Événement d’activation émis lorsqu’un terminal du type d’interpréteur de commandes donné est ouvert.",
"vscode.extension.activationEvents.onTerminalProfile": "Événement d’activation émis lors du lancement d’un profil terminal spécifique.",
+ "vscode.extension.activationEvents.onTerminalQuickFixRequest": "Événement d’activation émis lorsqu’une commande correspond au sélecteur associé à cet ID",
+ "vscode.extension.activationEvents.onTerminalShellIntegration": "Événement d’activation émis lorsque l’intégration de l’interpréteur de commandes du terminal est activée pour le type d’interpréteur spécifié.",
"vscode.extension.activationEvents.onUri": "Événement d'activation envoyé quand un URI système dirigé vers cette extension est ouvert.",
"vscode.extension.activationEvents.onView": "Événement d'activation envoyé quand la vue spécifiée est développée.",
"vscode.extension.activationEvents.onWalkthrough": "Événement d’activation émis lors de l’ouverture d’une procédure pas à pas spécifiée.",
"vscode.extension.activationEvents.onWebviewPanel": "Événement d’activation rencontré lors du chargement d’un affichage web d’un certain viewType",
"vscode.extension.activationEvents.star": "Événement d'activation envoyé au démarrage de VS Code. Pour garantir la qualité de l'expérience utilisateur, utilisez cet événement d'activation dans votre extension uniquement quand aucune autre combinaison d'événements d'activation ne fonctionne dans votre cas d'utilisation.",
"vscode.extension.activationEvents.workspaceContains": "Événement d'activation envoyé quand un dossier ouvert contient au moins un fichier correspondant au modèle glob spécifié.",
+ "vscode.extension.api": "Décrivez l’API fournie par cette extension. Pour plus d’informations, consultez : https://code.visualstudio.com/api/advanced-topics/remote-extensions#handling-dependencies-with-remote-extensions",
+ "vscode.extension.api.none": "Abandonnez entièrement la possibilité d’exporter toutes les API. Cela permet aux autres extensions qui dépendent de cette extension de s’exécuter dans un processus hôte d’extension distinct ou sur un ordinateur distant.",
"vscode.extension.badges": "Ensemble de badges à afficher dans la barre latérale de la page d'extensions de Marketplace.",
"vscode.extension.badges.description": "Description du badge.",
"vscode.extension.badges.href": "Lien du badge.",
@@ -11071,8 +17465,10 @@
"vscode.extension.galleryBanner.color": "Couleur de la bannière de l'en-tête de page du marketplace VS Code.",
"vscode.extension.galleryBanner.theme": "Thème de couleur de la police utilisée dans la bannière.",
"vscode.extension.icon": "Chemin d'une icône de 128 x 128 pixels.",
+ "vscode.extension.l10n": "Le chemin d’accès vers un dossier contenant des fichiers de localisation (bundle.l10n.*.json). Doit être spécifié si vous utilisez le vscode.l10n API.",
"vscode.extension.markdown": "Contrôle le moteur de rendu de Markdown utilisé sur le marché. Github (par défaut) ou standard.",
"vscode.extension.preview": "Définit l'extension à marquer en tant que préversion dans Marketplace.",
+ "vscode.extension.pricing": "Informations tarifaires de l'extension. Peut être au format Gratuit (par défaut) ou Essai. Pour plus de détails, consultez : https://code.visualstudio.com/api/working-with-extensions/publishing-extension#extension-pricing-label",
"vscode.extension.publisher": "Éditeur de l'extension VS Code.",
"vscode.extension.qna": "Contrôle le lien Questions et réponses dans le Marketplace. Définissez sur marketplace pour activer le site Questions et réponses par défaut du Marketplace. Définissez sur une chaîne pour fournir l'URL d'un site Questions et réponses personnalisé. Définissez sur false pour désactiver les Questions et réponses.",
"vscode.extension.scripts.prepublish": "Le script exécuté avant le package est publié en tant qu'extension VS Code.",
@@ -11081,17 +17477,23 @@
},
"vs/workbench/services/extensions/common/extensionsUtil": {
"extensionUnderDevelopment": "Chargement de l'extension de développement sur {0}",
- "overwritingExtension": "Remplacement de l'extension {0} par {1}."
- },
- "vs/workbench/services/extensions/common/remoteExtensionHost": {
- "remote extension host Log": "Hôte de l'extension distante"
+ "overwritingExtension": "Remplacement de l'extension {0} par {1}.",
+ "overwritingWithWorkspaceExtension": "Remplacement de {0} par l’extension d’espace de travail {1}."
},
- "vs/workbench/services/extensions/electron-sandbox/cachedExtensionScanner": {
+ "vs/workbench/services/extensions/electron-browser/cachedExtensionScanner": {
"extensionCache.invalid": "Des extensions ont été modifiées sur le disque. Veuillez recharger la fenêtre.",
+ "extensionUnderDevelopment.invalid": "Échec du chargement de l’extension « {0} » en cours de développement, car elle n’est pas valide : {1}",
+ "extensionsUnderDevelopment.invalid": "Échec du chargement des extensions {0} en cours de développement, car elles ne sont pas valides : {1}",
+ "reloadWindow": "Recharger la fenêtre"
+ },
+ "vs/workbench/services/extensions/electron-browser/localProcessExtensionHost": {
+ "extensionHost.startupFail": "L'hôte d'extension n'a pas démarré en moins de 10 secondes. Il existe peut-être un problème.",
+ "extensionHost.startupFailDebug": "L'hôte d'extension n'a pas démarré en moins de 10 secondes. Il est peut-être arrêté à la première ligne et a besoin d'un débogueur pour continuer.",
+ "join.extensionDevelopment": "Fin de la session de débogage d’extension",
"reloadWindow": "Recharger la fenêtre"
},
- "vs/workbench/services/extensions/electron-sandbox/electronExtensionService": {
- "devTools": "Ouvrir les outils de développement",
+ "vs/workbench/services/extensions/electron-browser/nativeExtensionService": {
+ "devTools": "Ouvrir les Outils de développement",
"enable": "Activer et recharger",
"enableResolver": "L'extension '{0}' est nécessaire pour ouvrir la fenêtre distante.\r\nOK pour l'activer ?",
"extensionService.autoRestart": "L’hôte d’extension s’est arrêté de manière inattendue. Redémarrage en cours...",
@@ -11100,89 +17502,28 @@
"getEnvironmentFailure": "Impossible de récupérer l'environnement à distance",
"install": "Installer et recharger",
"installResolver": "L’extension « {0} » est nécessaire pour ouvrir la fenêtre distante.\r\n Voulez-vous installer l’extension ?",
- "looping": "Les extensions suivantes contiennent des boucles de dépendance et ont été désactivées : {0}",
+ "learnMore": "Découvrir plus d’informations",
"relaunch": "Relancer VS Code",
"resolverExtensionNotFound": "'{0}' introuvable dans la Place de marché",
"restart": "Redémarrer l’hôte d'extension",
- "restartExtensionHost": "Redémarrer l’hôte d'extension"
- },
- "vs/workbench/services/extensions/electron-sandbox/localProcessExtensionHost": {
- "extension host Log": "Hôte d'extension",
- "extensionHost.error": "Erreur de l'hôte d'extension : {0}",
- "extensionHost.startupFail": "L'hôte d'extension n'a pas démarré en moins de 10 secondes. Il existe peut-être un problème.",
- "extensionHost.startupFailDebug": "L'hôte d'extension n'a pas démarré en moins de 10 secondes. Il est peut-être arrêté à la première ligne et a besoin d'un débogueur pour continuer.",
- "join.extensionDevelopment": "Fin de la session de débogage d’extension",
- "reloadWindow": "Recharger la fenêtre"
+ "restartExtensionHost": "Redémarrer l’hôte d'extension",
+ "restartExtensionHost.reason": "Une requête explicite",
+ "startBisect": "Démarrer l'extension Bisect"
},
"vs/workbench/services/files/electron-browser/diskFileSystemProvider": {
- "binFailed": "Échec du déplacement de '{0}' vers la corbeille",
- "trashFailed": "Échec du déplacement de '{0}' vers la corbeille"
- },
- "vs/workbench/services/gettingStarted/common/gettingStartedContent": {
- "getting-started-setup-icon": "Icône utilisée pour la catégorie configuration de la prise en main",
- "getting-started-beginner-icon": "Icône utilisée pour la catégorie Débutant de la prise en main",
- "getting-started-codespaces-icon": "Icône utilisée pour la catégorie codespaces de la prise en main",
- "gettingStarted.newFile.title": "Nouveau fichier",
- "gettingStarted.newFile.description": "Démarrer avec un nouveau fichier vide",
- "gettingStarted.openMac.title": "Ouvrir...",
- "gettingStarted.openMac.description": "Ouvrir un fichier ou un dossier et commencer à travailler",
- "gettingStarted.openFile.title": "Ouvrir un fichier...",
- "gettingStarted.openFile.description": "Ouvrir un fichier et commencer à travailler",
- "gettingStarted.openFolder.title": "Ouvrir un dossier...",
- "gettingStarted.openFolder.description": "Ouvrir un dossier et commencer à travailler",
- "gettingStarted.cloneRepo.title": "Cloner un dépôt Git...",
- "gettingStarted.cloneRepo.description": "Cloner un dépôt Git",
- "gettingStarted.topLevelCommandPalette.title": "Exécuter une commande...",
- "gettingStarted.topLevelCommandPalette.description": "Utiliser la palette de commandes pour voir et exécuter toutes les commandes de VS Code",
- "gettingStarted.codespaces.title": "Introduction à Codespaces",
- "gettingStarted.codespaces.description": "Soyez rapidement opérationnel avec votre environnement de code instantané.",
- "gettingStarted.runProject.title": "Générez et exécutez votre application",
- "gettingStarted.runProject.description": "Générez, exécutez et déboguez votre code dans le cloud, directement depuis le navigateur.",
- "gettingStarted.runProject.button": "Démarrer le débogage (F5)",
- "gettingStarted.forwardPorts.title": "Accéder à votre application en cours d'exécution",
- "gettingStarted.forwardPorts.description": "Les ports exécutés dans votre codespace sont automatiquement réacheminés vers le web. Vous pouvez donc les ouvrir dans votre navigateur.",
- "gettingStarted.forwardPorts.button": "Afficher le panneau Ports",
- "gettingStarted.pullRequests.title": "Des demandes de tirage (pull requests) à portée de main",
- "gettingStarted.pullRequests.description": "Rapprochez votre workflow GitHub de votre code pour pouvoir passer en revue des demandes de tirage (pull requests), ajouter des commentaires, fusionner des branches, etc.",
- "gettingStarted.pullRequests.button": "Ouvrir la vue GitHub",
- "gettingStarted.remoteTerminal.title": "Exécuter des tâches dans le terminal intégré",
- "gettingStarted.remoteTerminal.description": "Effectuez des tâches de ligne de commande rapides à l'aide du terminal intégré.",
- "gettingStarted.remoteTerminal.button": "Focus sur le terminal",
- "gettingStarted.openVSC.title": "Développer à distance dans VS Code",
- "gettingStarted.openVSC.description": "Accédez à la puissance de votre environnement de développement cloud à partir de votre instance locale de VS Code. Configurez-la en installant l'extension GitHub Codespaces et en vous connectant à votre compte GitHub.",
- "gettingStarted.openVSC.button": "Ouvrir dans VS Code",
- "gettingStarted.setup.title": "Configuration rapide",
- "gettingStarted.setup.description": "Étendez et personnalisez VS Code à votre image.",
- "gettingStarted.pickColor.title": "Personnaliser l'apparence avec des thèmes",
- "gettingStarted.pickColor.description": "Choisissez un thème de couleur correspondant à vos goûts et à votre humeur quand vous développez.",
- "gettingStarted.pickColor.button": "Choisir un thème",
- "gettingStarted.findLanguageExts.title": "Programmez dans n'importe quel langage, sans changer d'éditeur",
- "gettingStarted.findLanguageExts.description": "VS Code prend en charge plus de 50 langages de programmation. Bien que beaucoup soient déjà intégrés, d'autres peuvent être facilement installés sous forme d'extensions en un seul clic.",
- "gettingStarted.findLanguageExts.button": "Parcourir les extensions de langage",
- "gettingStarted.settingsSync.title": "Synchroniser votre configuration favorite",
- "gettingStarted.settingsSync.description": "Ne perdez plus jamais votre configuration parfaite de VS Code ! La synchronisation des paramètres permet de sauvegarder et de partager les paramètres, les combinaisons de touches et les extensions sur plusieurs instances de VS Code.",
- "gettingStarted.settingsSync.button": "Activer la synchronisation des paramètres",
- "gettingStarted.setup.OpenFolder.title": "Ouvrir votre projet",
- "gettingStarted.setup.OpenFolder.description": "Ouvrez un dossier de projet pour démarrer !",
- "gettingStarted.setup.OpenFolder.button": "Choisir un dossier",
- "gettingStarted.setup.OpenFolder.description2": "Ouvrez un dossier pour démarrer !",
- "gettingStarted.beginner.title": "Découvrir les principes de base",
- "gettingStarted.beginner.description": "Gagnez du temps avec ces raccourcis et fonctionnalités indispensables.",
- "gettingStarted.commandPalette.title": "Recherchez et exécutez des commandes",
- "gettingStarted.commandPalette.description": "Il s'agit du moyen le plus simple pour trouver tout ce que VS Code peut faire. Si vous recherchez une fonctionnalité ou un raccourci, essayez d'abord ici !",
- "gettingStarted.commandPalette.button": "Ouvrir la palette de commandes",
- "gettingStarted.terminal.title": "Exécuter des tâches dans le terminal intégré",
- "gettingStarted.terminal.description": "Exécutez rapidement des commandes d'interpréteur de commandes, et supervisez la sortie de build, tout en ayant votre code juste à côté.",
- "gettingStarted.terminal.button": "Ouvrir le terminal",
- "gettingStarted.extensions.title": "Extensibilité illimitée",
- "gettingStarted.extensions.description": "Les extensions sont les vitamines de VS Code. Elles vont des hacks de productivité pratiques ou de l'extension de fonctionnalités prêtes à l'emploi à l'ajout de toutes nouvelles fonctionnalités.",
- "gettingStarted.extensions.button": "Parcourir les extensions recommandées",
- "gettingStarted.settings.title": "Tout est un paramètre",
- "gettingStarted.settings.description": "Optimisez chaque partie de l'apparence de VS Code à votre guise. L'activation de la synchronisation des paramètres vous permet de partager vos paramètres personnalisés entre les différentes machines.",
- "gettingStarted.settings.button": "Adapter mes paramètres",
- "gettingStarted.videoTutorial.title": "Asseyez-vous confortablement et apprenez",
- "gettingStarted.videoTutorial.description": "Regardez le premier tutoriel d'une série de tutoriels vidéo courts et pratiques sur les fonctionnalités clés de VS Code.",
- "gettingStarted.videoTutorial.button": "Regarder le tutoriel"
+ "fileWatcher": "Observateur de fichiers"
+ },
+ "vs/workbench/services/files/electron-browser/elevatedFileService": {
+ "fileNotTrusted": "L'espace de travail n'est pas approuvé.",
+ "fileNotTrustedMessagePosix": "Vous êtes sur le point d'enregistrer '{0}' en tant que super utilisateur.",
+ "fileNotTrustedMessageWindows": "Vous êtes sur le point d'enregistrer '{0}' en tant qu'administrateur."
+ },
+ "vs/workbench/services/filesConfiguration/common/filesConfigurationService": {
+ "configuredReadonly": "L’éditeur est en lecture seule, car le fichier a été défini en lecture seule via les paramètres. [Cliquez ici](command:{0}) à configurer ou [activer/désactiver pour cette session](command:{1}).",
+ "fileLocked": "L’éditeur est en lecture seule en raison d’autorisations de fichier. [Cliquez ici](command:{0}) pour définir quand même l’accès en écriture.",
+ "fileReadonly": "L’éditeur est en lecture seule, car le fichier est en lecture seule.",
+ "providerReadonly": "L’éditeur est en lecture seule, car le système de fichiers du fichier est en lecture seule.",
+ "sessionReadonly": "L’éditeur est en lecture seule, car le fichier a été défini en lecture seule dans cette session. [Cliquez ici](command:{0}) pour définir les éléments accessibles en écriture."
},
"vs/workbench/services/history/browser/historyService": {
"canNavigateBack": "Indique s'il est possible de naviguer vers l'arrière dans l'historique de l'éditeur",
@@ -11195,20 +17536,51 @@
"canNavigateToLastNavigationLocation": "Indique s’il est possible d’accéder au dernier emplacement de navigation de l’éditeur",
"canReopenClosedEditor": "Indique s'il est possible de rouvrir le dernier éditeur fermé"
},
- "vs/workbench/services/integrity/electron-sandbox/integrityService": {
+ "vs/workbench/services/host/browser/browserHostService": {
+ "retry": "&&Réessayer",
+ "unableToOpenExternal": "Le navigateur a bloqué l'ouverture d'un nouvel onglet ou d'une nouvelle fenêtre. Appuyez sur « Réessayer » pour réessayer.",
+ "unableToOpenExternalWorkspace": "Le navigateur a bloqué l’ouverture d’un nouvel onglet ou d’une nouvelle fenêtre pour « {0} ». Appuyez sur « Réessayer » pour réessayer.",
+ "unableToOpenWindowDetail": "Veuillez autoriser les fenêtres contextuelles pour ce site web dans vos [paramètres de navigateur]({0})."
+ },
+ "vs/workbench/services/hover/browser/hoverWidget": {
+ "hoverhint": "Maintenez la touche {0} enfoncée pour pointer avec la souris"
+ },
+ "vs/workbench/services/integrity/electron-browser/integrityService": {
"integrity.dontShowAgain": "Ne plus afficher",
"integrity.moreInformation": "Informations",
"integrity.prompt": "Votre installation de {0} semble être endommagée. Effectuez une réinstallation."
},
+ "vs/workbench/services/issue/browser/issueTroubleshoot": {
+ "I cannot reproduce": "Je ne parviens pas à reproduire",
+ "Stop": "Arrêter",
+ "This is Bad": "Je peux reproduire",
+ "ask to download insiders": "Essayez de télécharger et de reproduire le problème dans {0} insiders.",
+ "ask to reproduce issue": "Essayez de reproduire le problème dans {0} insiders et vérifiez si le problème existe.",
+ "bad": "Je peux reproduire",
+ "detail.start": "La résolution des problèmes est un processus qui vous permet d’identifier la cause d’un problème. La cause d’un problème peut être une configuration incorrecte, en raison d’une extension ou être {0} lui-même.\r\n\r\nPendant le processus, la fenêtre se recharge à plusieurs reprises. Chaque fois que vous devez confirmer si le problème persiste.",
+ "download insiders": "Télécharger {0} insiders",
+ "empty.profile": "La résolution des problèmes est active et a temporairement rétabli vos configurations par défaut. Vérifiez si vous pouvez toujours reproduire le problème et continuez en sélectionnant parmi ces options.",
+ "good": "Je ne parviens pas à reproduire",
+ "issue is in core": "La résolution des problèmes a identifié que le problème concerne {0}.",
+ "issue is with configuration": "La résolution des problèmes a repéré que le problème est causé par vos configurations. Signalez le problème en exportant vos configurations à l’aide de la commande « Exporter le profil » et en partageant le fichier dans le rapport sur le problème.",
+ "msg": "&&Résoudre le problème",
+ "profile.extensions.disabled": "La résolution des problèmes est active et a désactivé temporairement toutes les extensions installées. Vérifiez si vous pouvez toujours reproduire le problème et continuez en sélectionnant parmi ces options.",
+ "report anyway": "Signaler le problème quand même",
+ "stop": "Arrêter",
+ "title.stop": "Arrêter la résolution des problèmes",
+ "troubleshoot issue": "Résoudre le problème",
+ "troubleshootIssue": "Résoudre le problème...",
+ "use insiders": "Cela signifie probablement que le problème a déjà été résolu et sera disponible dans une prochaine version. Vous pouvez utiliser {0} insiders en toute sécurité jusqu’à ce que la nouvelle version stable soit disponible."
+ },
"vs/workbench/services/keybinding/browser/keybindingService": {
- "dispatch": "Contrôle la logique de distribution des appuis sur les touches pour utiliser soit 'code' (recommandé), soit 'keyCode'.",
"invalid.keybindings": "'contributes.{0}' non valide : {1}",
+ "keybindings.commandsIsArray": "Type incorrect. \"{0}\" attendu. Le champ « command » ne prend pas en charge l’exécution de plusieurs commandes. Utilisez la commande ' runCommands' pour lui passer plusieurs commandes à exécuter.",
"keybindings.json.args": "Arguments à passer à la commande à exécuter.",
"keybindings.json.command": "Nom de la commande à exécuter",
"keybindings.json.key": "Touche ou séquence de touches (séparées par un espace)",
+ "keybindings.json.removalCommand": "Nom de la commande pour la suppression du raccourci clavier",
"keybindings.json.title": "Configuration des combinaisons de touches",
"keybindings.json.when": "Condition quand la touche est active.",
- "keyboardConfigurationTitle": "Clavier",
"nonempty": "valeur non vide attendue.",
"optstring": "La propriété '{0}' peut être omise ou doit être de type 'string'",
"requirestring": "la propriété '{0}' est obligatoire et doit être de type 'string'",
@@ -11222,6 +17594,10 @@
"vscode.extension.contributes.keybindings.when": "Condition quand la touche est active.",
"vscode.extension.contributes.keybindings.win": "Touche ou séquence de touches spécifique à Windows."
},
+ "vs/workbench/services/keybinding/browser/keyboardLayoutService": {
+ "keyboard.layout.config": "Contrôlez la disposition du clavier utilisée sur le Web.",
+ "keyboardConfigurationTitle": "Clavier"
+ },
"vs/workbench/services/keybinding/common/keybindingEditing": {
"emptyKeybindingsHeader": "Placer vos combinaisons de touches dans ce fichier pour remplacer les valeurs par défaut",
"errorInvalidConfiguration": "Impossible d’écrire dans le fichier de configuration des combinaisons de touches. Il y a un objet qui n'est pas de type Array. Veuillez ouvrir le fichier pour nettoyer et réessayer.",
@@ -11244,8 +17620,13 @@
"workspaceNameVerbose": "{0} (Espace de travail)"
},
"vs/workbench/services/language/common/languageService": {
+ "file extensions": "Extensions de fichier",
+ "grammar": "Grammaire",
"invalid": "'contributes.{0}' non valide. Tableau attendu.",
"invalid.empty": "Valeur vide pour 'contributes.{0}'",
+ "language id": "ID",
+ "language name": "Nom",
+ "languages": "Langages de programmation",
"opt.aliases": "la propriété '{0}' peut être omise et doit être de type 'string[]'",
"opt.configuration": "la propriété '{0}' peut être omise et doit être de type 'string'",
"opt.extensions": "la propriété '{0}' peut être omise et doit être de type 'string[]'",
@@ -11254,6 +17635,7 @@
"opt.icon": "la propriété '{0}' peut être omise et doit être de type 'object' avec les propriétés '{1}' et '{2}' de type 'string'",
"opt.mimetypes": "la propriété '{0}' peut être omise et doit être de type 'string[]'",
"require.id": "la propriété '{0}' est obligatoire et doit être de type 'string'",
+ "snippets": "Extraits",
"vscode.extension.contributes.languages": "Ajoute des déclarations de langage.",
"vscode.extension.contributes.languages.aliases": "Alias de nom du langage.",
"vscode.extension.contributes.languages.configuration": "Chemin relatif d'un fichier contenant les options de configuration du langage.",
@@ -11261,47 +17643,43 @@
"vscode.extension.contributes.languages.filenamePatterns": "Modèles Glob de noms de fichiers associés au langage.",
"vscode.extension.contributes.languages.filenames": "Noms de fichiers associés au langage.",
"vscode.extension.contributes.languages.firstLine": "Expression régulière correspondant à la première ligne d'un fichier du langage.",
- "vscode.extension.contributes.languages.icon": "Icône à utiliser comme icône de fichier, si aucun thème d’icône n’en fournit un pour la langue.",
+ "vscode.extension.contributes.languages.icon": "Icône à utiliser comme icône de fichier, si aucun thème d’icône n’en fournit un pour le langage.",
"vscode.extension.contributes.languages.icon.dark": "Chemin de l'icône quand un thème foncé est utilisé",
"vscode.extension.contributes.languages.icon.light": "Chemin de l'icône quand un thème clair est utilisé",
"vscode.extension.contributes.languages.id": "ID du langage.",
"vscode.extension.contributes.languages.mimetypes": "Types MIME associés au langage."
},
- "vs/workbench/services/lifecycle/electron-sandbox/lifecycleService": {
- "errorClose": "Une erreur inattendue s'est produite durant la tentative de fermeture de la fenêtre ({0}).",
- "errorLoad": "Une erreur inattendue s'est produite durant la tentative de changement de l'espace de travail de la fenêtre ({0}).",
- "errorQuit": "Une erreur inattendue s'est produite durant la tentative de fermeture de l'application ({0}).",
- "errorReload": "Une erreur inattendue s'est produite durant la tentative de rechargement de la fenêtre ({0})."
+ "vs/workbench/services/lifecycle/browser/lifecycleService": {
+ "lifecycleVeto": "Les modifications que vous avez apportées risquent de ne pas être enregistrées. Veuillez cocher « Annuler » et réessayer."
},
- "vs/workbench/services/mode/common/workbenchLanguageService": {
- "invalid": "'contributes.{0}' non valide. Tableau attendu.",
- "invalid.empty": "Valeur vide pour 'contributes.{0}'",
- "opt.aliases": "la propriété '{0}' peut être omise et doit être de type 'string[]'",
- "opt.configuration": "la propriété '{0}' peut être omise et doit être de type 'string'",
- "opt.extensions": "la propriété '{0}' peut être omise et doit être de type 'string[]'",
- "opt.filenames": "la propriété '{0}' peut être omise et doit être de type 'string[]'",
- "opt.firstLine": "la propriété '{0}' peut être omise et doit être de type 'string'",
- "opt.mimetypes": "la propriété '{0}' peut être omise et doit être de type 'string[]'",
- "require.id": "la propriété '{0}' est obligatoire et doit être de type 'string'",
- "vscode.extension.contributes.languages": "Ajoute des déclarations de langage.",
- "vscode.extension.contributes.languages.aliases": "Alias de nom du langage.",
- "vscode.extension.contributes.languages.configuration": "Chemin relatif d'un fichier contenant les options de configuration du langage.",
- "vscode.extension.contributes.languages.extensions": "Extensions de fichier associées au langage.",
- "vscode.extension.contributes.languages.filenamePatterns": "Modèles Glob de noms de fichiers associés au langage.",
- "vscode.extension.contributes.languages.filenames": "Noms de fichiers associés au langage.",
- "vscode.extension.contributes.languages.firstLine": "Expression régulière correspondant à la première ligne d'un fichier du langage.",
- "vscode.extension.contributes.languages.id": "ID du langage.",
- "vscode.extension.contributes.languages.mimetypes": "Types MIME associés au langage."
+ "vs/workbench/services/localization/browser/localeService": {
+ "clearDisplayLanguageDetail": "Appuyez sur le bouton recharger pour actualiser la page et utiliser le langage de votre navigateur.",
+ "clearDisplayLanguageMessage": "Pour modifier le langage d’affichage, {0} doit redémarrer.",
+ "relaunchDisplayLanguageDetail": "Appuyez sur le bouton recharger pour actualiser la page et définir le langage d’affichage sur {0}.",
+ "relaunchDisplayLanguageMessage": "Pour modifier le langage d’affichage, {0} doit redémarrer.",
+ "reload": "&&Recharger"
+ },
+ "vs/workbench/services/localization/electron-browser/localeService": {
+ "argvInvalid": "Impossible d’écrire le langage d’affichage. Ouvrez les paramètres d’exécution, corrigez les erreurs/avertissements qu’il contient, puis réessayez.",
+ "installing": "Installation de la prise en charge linguistique {0} ...",
+ "openArgv": "Ouvrir les paramètres du runtime",
+ "restart": "&&Redémarrer",
+ "restartDisplayLanguageDetail1": "Pour modifier le langage d’affichage à {0}, {1} doit redémarrer.",
+ "restartDisplayLanguageMessage1": "Voulez-vous redémarrer {0} pour basculer vers {1} ?"
+ },
+ "vs/workbench/services/log/common/logConstants": {
+ "window": "Fenêtre"
},
"vs/workbench/services/notification/common/notificationService": {
"neverShowAgain": "Ne plus afficher"
},
"vs/workbench/services/preferences/browser/keybindingsEditorInput": {
+ "keybindingsEditorLabelIcon": "Icône de l’étiquette de l’éditeur de combinaisons de touches.",
"keybindingsInputName": "Raccourcis clavier"
},
"vs/workbench/services/preferences/browser/keybindingsEditorModel": {
"cat.title": "{0}: {1}",
- "default": "Par défaut",
+ "default": "Système",
"extension": "Extension",
"meta": "méta",
"option": "Option",
@@ -11314,7 +17692,10 @@
"openFolderFirst": "Ouvrez d'abord un dossier ou un espace de travail pour créer les paramètres d'espace de travail ou de dossier."
},
"vs/workbench/services/preferences/common/preferencesEditorInput": {
- "settingsEditor2InputName": "Paramètres"
+ "preferencesEditorInputName": "Préférences",
+ "preferencesEditorLabelIcon": "Icône de l’étiquette de l’éditeur des préférences.",
+ "settingsEditor2InputName": "Paramètres",
+ "settingsEditorLabelIcon": "Icône de l’étiquette de l’éditeur de paramètres."
},
"vs/workbench/services/preferences/common/preferencesModels": {
"commonlyUsed": "Utilisés le plus souvent",
@@ -11322,6 +17703,7 @@
},
"vs/workbench/services/preferences/common/preferencesValidation": {
"invalidTypeError": "Le paramètre a un type non valide. Type attendu : {0}. Correctif en JSON.",
+ "regexParsingError": "Nous n’avons pas pu analyser l’expression régulière suivante avec et sans l’indicateur u, car nous avons rencontré une erreur :",
"validations.arrayIncorrectType": "Type incorrect. Un tableau attendu.",
"validations.booleanIncorrectType": "Type incorrect. « booléen » attendu.",
"validations.colorFormat": "Format de couleur non valide. Utilisez #RGB, #RGBA, #RRGGBB ou #RRGGBBAA.",
@@ -11350,14 +17732,6 @@
"validations.uriMissing": "L'URI est attendu.",
"validations.uriSchemeMissing": "Un URI avec un schéma est attendu."
},
- "vs/workbench/services/profiles/common/profile": {
- "profile": "Profil des paramètres",
- "settings profiles": "Profil des paramètres"
- },
- "vs/workbench/services/profiles/common/profileService": {
- "applied profile": "{0} : appliqué avec succès.",
- "profiles.applying": "{0} : Application en cours..."
- },
"vs/workbench/services/progress/browser/progressService": {
"cancel": "Annuler",
"dismiss": "Ignorer",
@@ -11366,60 +17740,79 @@
"progress.title3": "[{0}] {1}: {2}",
"status.progress": "Message de progression"
},
+ "vs/workbench/services/remote/browser/remoteAgentService": {
+ "connectionError": "Une erreur inattendue s’est produite et nécessite un rechargement de cette page.",
+ "connectionErrorDetail": "Le banc d’essai n’a pas pu se connecter au serveur (Erreur : {0})",
+ "reload": "&&Recharger"
+ },
"vs/workbench/services/remote/common/remoteExplorerService": {
+ "RemoteHelpInformationExtPoint": "Apporte des informations d'aide pour Remote",
+ "RemoteHelpInformationExtPoint.documentation": "URL, ou commande qui retourne l'URL, de la page de documentation de votre projet",
+ "RemoteHelpInformationExtPoint.feedback": "URL, ou commande qui retourne l'URL, du rapporteur de commentaires de votre projet",
+ "RemoteHelpInformationExtPoint.feedback.deprecated": "Utilisez {0} à la place.",
+ "RemoteHelpInformationExtPoint.getStarted": "L’url, ou une commande qui renvoie l’url, vers la page de prise en main de votre projet, ou un ID de démonstration fourni par l’extension de votre projet.",
+ "RemoteHelpInformationExtPoint.issues": "URL, ou commande qui retourne l'URL, de la liste des problèmes de votre projet",
+ "RemoteHelpInformationExtPoint.reportIssue": "URL, ou commande qui retourne l’URL, du rapporteur de problème de votre projet",
+ "getStartedWalkthrough.id": "ID d’une procédure de démarrage pas à pas à ouvrir."
+ },
+ "vs/workbench/services/remote/common/tunnelModel": {
"remote.localPortMismatch.single": "Impossible d’utiliser le port local {0} pour la redirection vers le port distant {1}.\r\n\r\nCela se produit généralement lorsque le port local {0} est déjà utilisé par un autre processus.\r\n\r\nLe numéro de port {2} est utilisé à la place.",
+ "tunnel.forwardedPortsViewEnabled": "Indique si la vue Ports est activée.",
"tunnel.source.auto": "Réacheminement automatique",
"tunnel.source.user": "Utilisateur réacheminé",
"tunnel.staticallyForwarded": "Réacheminement statique"
},
- "vs/workbench/services/remote/electron-sandbox/remoteAgentService": {
+ "vs/workbench/services/remote/electron-browser/remoteAgentService": {
"connectionError": "La connexion au serveur hôte d'extension distant a échoué (erreur : {0})",
- "devTools": "Ouvrir les outils de développement",
+ "devTools": "Ouvrir les Outils de développement",
"directUrl": "Ouvrir dans le navigateur"
},
+ "vs/workbench/services/request/browser/requestService": {
+ "network": "Réseau"
+ },
+ "vs/workbench/services/request/electron-browser/requestService": {
+ "network": "Réseau"
+ },
+ "vs/workbench/services/search/browser/searchService": {
+ "errorSearchFile": "Nous n’avons pas pu effectuer une recherche avec le moteur de recherche de fichier de rôle de travail.",
+ "errorSearchText": "Nous n’avons pas pu effectuer une recherche avec le moteur de recherche de texte de rôle de travail."
+ },
"vs/workbench/services/search/common/queryBuilder": {
"search.noWorkspaceWithName": "Le dossier d'espace de travail n'existe pas : {0}"
},
- "vs/workbench/services/sessionSync/browser/sessionSyncWorkbenchService": {
- "account preference": "Se connecter pour utiliser les sessions d’édition",
- "choose account placeholder": "Sélectionner un compte pour se connecter",
- "others": "Autres",
- "reset auth": "Se déconnecter",
- "sign in using account": "Vous connecter à {0}",
- "signed in": "Connecté"
- },
- "vs/workbench/services/sessionSync/common/sessionSync": {
- "session sync": "Modifier les sessions"
+ "vs/workbench/services/secrets/electron-browser/secretStorageService": {
+ "encryptionNotAvailableJustTroubleshootingGuide": "Impossible d’identifier un porte-clés du système d’exploitation pour stocker les données liées au chiffrement dans votre environnement de bureau actuel.",
+ "isGnome": "Vous êtes en cours d’exécution dans un environnement GNOME, mais le chiffrement n’est pas disponible. Vérifiez que vous avez installé et exécuté une implémentation compatible libsecret ou un autre porte-clé.",
+ "isKwallet": "Vous exécutez dans un environnement KDE, mais le porte-clés du système d’exploitation n’est pas disponible pour le chiffrement. Assurez-vous que vous disposez de l’exécution de kwallet.",
+ "troubleshootingButton": "Ouvrir le guide de résolution des problèmes",
+ "usePlainText": "Utiliser un chiffrement plus faible",
+ "usePlainTextExtraSentence": "Ouvrez le guide de résolution des problèmes pour résoudre ce problème, ou vous pouvez utiliser un chiffrement plus faible qui n’utilise pas le porte-clés du système d’exploitation."
},
- "vs/workbench/services/textMate/browser/abstractTextMateService": {
- "alreadyDebugging": "Déjà en cours de journalisation.",
- "invalid.embeddedLanguages": "Valeur non valide dans 'contributes.{0}.embeddedLanguages'. Il doit s'agir d'un mappage d'objets entre le nom de portée et le langage. Valeur fournie : {1}",
- "invalid.injectTo": "Valeur non valide dans 'contributes.{0}.injectTo'. Il doit s'agir d'un tableau de noms de portées de langage. Valeur fournie : {1}",
- "invalid.language": "Langage inconnu dans 'contributes.{0}.language'. Valeur fournie : {1}",
- "invalid.path.0": "Chaîne attendue dans 'contributes.{0}.path'. Valeur fournie : {1}",
- "invalid.path.1": "'contributes.{0}.path' ({1}) est censé être inclus dans le dossier ({2}) de l'extension. Cela risque de rendre l'extension non portable.",
- "invalid.scopeName": "Chaîne attendue dans 'contributes.{0}.scopeName'. Valeur fournie : {1}",
- "invalid.tokenTypes": "Valeur non valide dans 'contribue.{0}.tokenTypes'. Il doit s'agir d'un mappage d’objets entre un nom d’étendue et un type de jeton. Valeur fournie : {1}",
- "progress1": "Préparation de la journalisation de l'analyse de la grammaire TM. Appuyez sur Arrêter une fois que vous avez fini.",
- "progress2": "Journalisation de l'analyse de la grammaire TM. Appuyez sur Arrêter une fois que vous avez fini.",
- "stop": "Arrêter"
+ "vs/workbench/services/suggest/browser/simpleSuggestWidget": {
+ "ariaCurrenttSuggestionReadDetails": "{0}, documents : {1}",
+ "label": "{0}, {1}",
+ "label.desc": "{0}, {1} {2}",
+ "label.detail": "{0}{1} {2}",
+ "label.full": "{0}{1}, {2} {3}",
+ "simpleSuggestWidgetFirstSuggestionFocused": "Indique si la première suggestion simple est ciblée",
+ "simpleSuggestWidgetHasFocusedSuggestion": "Indique si une suggestion simple est ciblée",
+ "simpleSuggestWidgetHasNavigated": "Indique si le widget de suggestion simple a été déplacé vers le bas",
+ "suggest": "Suggérer",
+ "suggestWidget.loading": "Chargement en cours… Merci de patienter.",
+ "suggestWidget.noSuggestions": "Aucune suggestion."
},
- "vs/workbench/services/textMate/common/TMGrammars": {
- "vscode.extension.contributes.grammars": "Ajoute des générateurs de jetons TextMate.",
- "vscode.extension.contributes.grammars.balancedBracketScopes": "Définit les noms d’étendue qui contiennent de crochets équilibrés.",
- "vscode.extension.contributes.grammars.embeddedLanguages": "Mappage du nom de portée à l'ID de langage si cette grammaire contient des langages incorporés.",
- "vscode.extension.contributes.grammars.injectTo": "Liste de noms des portées de langage auxquelles cette grammaire est injectée.",
- "vscode.extension.contributes.grammars.language": "Identificateur de langue pour lequel cette syntaxe est ajoutée.",
- "vscode.extension.contributes.grammars.path": "Chemin du fichier tmLanguage. Le chemin est relatif au dossier d'extensions et commence généralement par './syntaxes/'.",
- "vscode.extension.contributes.grammars.scopeName": "Nom de portée TextMate utilisé par le fichier tmLanguage.",
- "vscode.extension.contributes.grammars.tokenTypes": "Un mappage entre un nom d'étendue et des types de token.",
- "vscode.extension.contributes.grammars.unbalancedBracketScopes": "Définit les noms d’étendue qui ne contiennent pas de crochets équilibrés."
+ "vs/workbench/services/suggest/browser/simpleSuggestWidgetDetails": {
+ "details.close": "Fermer",
+ "loading": "Chargement en cours… Merci de patienter."
},
"vs/workbench/services/textfile/browser/textFileService": {
+ "confirmMakeWriteable": "« {0} » est marqué en lecture seule. Voulez-vous quand même sauvegarder ?",
+ "confirmMakeWriteableDetail": "Les chemins peuvent être configurés en lecture seule via les paramètres.",
"confirmOverwrite": "'{0}' existe déjà. Voulez-vous le remplacer ?",
"deleted": "Supprimé",
"fileBinaryError": "Le fichier semble être binaire et ne peut pas être ouvert en tant que texte",
- "irreversible": "Un fichier ou un dossier avec le nom '{0}' existe déjà dans le dossier '{1}'. Si vous le remplacez, son contenu est également remplacé.",
+ "makeWriteableButtonLabel": "&&Enregistrer quand même",
+ "overwriteIrreversible": "Un fichier ou un dossier avec le nom '{0}' existe déjà dans le dossier '{1}'. Si vous le remplacez, son contenu est également remplacé.",
"readonly": "Lecture seule",
"readonlyAndDeleted": "Supprimé, en lecture seule",
"replaceButtonLabel": "&&Remplacer",
@@ -11428,17 +17821,44 @@
"textFileOverwrite.source": "Fichier remplacé"
},
"vs/workbench/services/textfile/common/textFileEditorModel": {
+ "saveParticipants": "Enregistrement de « {0} »",
+ "saveTextFile": "Écriture dans le fichier...",
"textFileCreate.source": "Encodage de fichier modifié"
},
"vs/workbench/services/textfile/common/textFileEditorModelManager": {
"genericSaveError": "Échec de l'enregistrement de '{0}' : {1}"
},
"vs/workbench/services/textfile/common/textFileSaveParticipant": {
- "saveParticipants": "Enregistrement de '{0}'"
+ "saveParticipants1": "Exécution d'actions de code et de formateurs...",
+ "skip": "Ignorez"
},
- "vs/workbench/services/textfile/electron-sandbox/nativeTextFileService": {
+ "vs/workbench/services/textfile/electron-browser/nativeTextFileService": {
"join.textFiles": "Enregistrement des fichiers texte"
},
+ "vs/workbench/services/textMate/browser/textMateTokenizationFeatureImpl": {
+ "alreadyDebugging": "Déjà en cours de journalisation.",
+ "invalid.embeddedLanguages": "Valeur non valide dans 'contributes.{0}.embeddedLanguages'. Il doit s'agir d'un mappage d'objets entre le nom de portée et le langage. Valeur fournie : {1}",
+ "invalid.injectTo": "Valeur non valide dans 'contributes.{0}.injectTo'. Il doit s'agir d'un tableau de noms de portées de langage. Valeur fournie : {1}",
+ "invalid.language": "Langage inconnu dans 'contributes.{0}.language'. Valeur fournie : {1}",
+ "invalid.path.0": "Chaîne attendue dans 'contributes.{0}.path'. Valeur fournie : {1}",
+ "invalid.path.1": "'contributes.{0}.path' ({1}) est censé être inclus dans le dossier ({2}) de l'extension. Cela risque de rendre l'extension non portable.",
+ "invalid.scopeName": "Chaîne attendue dans 'contributes.{0}.scopeName'. Valeur fournie : {1}",
+ "invalid.tokenTypes": "Valeur non valide dans 'contribue.{0}.tokenTypes'. Il doit s'agir d'un mappage d’objets entre un nom d’étendue et un type de jeton. Valeur fournie : {1}",
+ "progress1": "Préparation de la journalisation de l'analyse de la grammaire TM. Appuyez sur Arrêter une fois que vous avez fini.",
+ "progress2": "Journalisation de l'analyse de la grammaire TM. Appuyez sur Arrêter une fois que vous avez fini.",
+ "stop": "Arrêter"
+ },
+ "vs/workbench/services/textMate/common/TMGrammars": {
+ "vscode.extension.contributes.grammars": "Ajoute des générateurs de jetons TextMate.",
+ "vscode.extension.contributes.grammars.balancedBracketScopes": "Définit les noms d’étendue qui contiennent de crochets équilibrés.",
+ "vscode.extension.contributes.grammars.embeddedLanguages": "Mappage du nom de portée à l'ID de langage si cette grammaire contient des langages incorporés.",
+ "vscode.extension.contributes.grammars.injectTo": "Liste de noms des portées de langage auxquelles cette grammaire est injectée.",
+ "vscode.extension.contributes.grammars.language": "Identificateur de langage pour lequel cette syntaxe est ajoutée.",
+ "vscode.extension.contributes.grammars.path": "Chemin du fichier tmLanguage. Le chemin est relatif au dossier d'extensions et commence généralement par './syntaxes/'.",
+ "vscode.extension.contributes.grammars.scopeName": "Nom de portée TextMate utilisé par le fichier tmLanguage.",
+ "vscode.extension.contributes.grammars.tokenTypes": "Un mappage entre un nom d'étendue et des types de token.",
+ "vscode.extension.contributes.grammars.unbalancedBracketScopes": "Définit les noms d’étendue qui ne contiennent pas de crochets équilibrés."
+ },
"vs/workbench/services/themes/browser/fileIconThemeData": {
"error.cannotparseicontheme": "Problèmes durant l'analyse du fichier d'icônes de fichier : {0}",
"error.invalidformat": "Format non valide du fichier de thème d'icônes de fichier : objet attendu."
@@ -11451,7 +17871,7 @@
"error.fontStyle": "Style de police non valide dans la police '{0}'. Paramètre ignoré.",
"error.fontWeight": "Épaisseur de police non valide dans la police '{0}'. Paramètre ignoré.",
"error.icon.font": "Définition d'icône ignorée : '{0}'. Police inconnue.",
- "error.icon.fontCharacter": "Définition d'icône ignorée : '{0}'. fontCharacter inconnu.",
+ "error.icon.fontCharacter": "'{0}' de définition d’icône ignorée : doit être défini",
"error.invalidformat": "Format non valide du fichier de thème d'icônes de produit : objet attendu.",
"error.missingProperties": "Format non valide pour le fichier de thème des icônes de produit : doit contenir iconDefinitions et des polices.",
"error.noFontSrc": "Aucune source de police valide dans la police '{0}'. Définition de police ignorée.",
@@ -11461,6 +17881,7 @@
"error.cannotloadtheme": "Impossible de charger {0} : {1}"
},
"vs/workbench/services/themes/common/colorExtensionPoint": {
+ "colors": "Couleurs",
"contributes.color": "Contribue à des couleurs définies pour des extensions dont le thème peut être changé",
"contributes.color.description": "Description de la couleur dont le thème peut être changé",
"contributes.color.id": "L’identifiant de la couleur dont le thème peut être changé",
@@ -11469,6 +17890,11 @@
"contributes.defaults.highContrast": "Couleur par défaut pour les thèmes sombres à contraste élevé. Valeur de couleur en hexadécimal (#RRGGBB[AA]) ou identificateur d’une couleur à thème qui fournit la valeur par défaut. Si elle n’est pas fournie, la couleur « sombre » est utilisée par défaut pour les thèmes sombres à contraste élevé.",
"contributes.defaults.highContrastLight": "Couleur par défaut pour les thèmes clairs à contraste élevé. Valeur de couleur en hexadécimal (#RRGGBB[AA]) ou identificateur d’une couleur à thème qui fournit la valeur par défaut. Si elle n’est pas fournie, la couleur « clair » est utilisée par défaut pour les thèmes à contraste élevé.",
"contributes.defaults.light": "La couleur par défaut pour les thèmes clairs. Soit une valeur de couleur en hexadécimal (#RRGGBB[AA]) ou l’identifiant d’une couleur dont le thème peut être changé qui fournit la valeur par défaut.",
+ "defaultDark": "Défaut pour le thème sombre",
+ "defaultHC": "Défaut pour le thème de contraste élevé",
+ "defaultLight": "Défaut pour le thème clair",
+ "description": "Description",
+ "id": "ID",
"invalid.colorConfiguration": "'configuration.colors' doit être un tableau",
"invalid.default.colorType": "{0} doit être soit une valeur de couleur en hexadécimal (#RRGGBB[AA] ou #RGB[A]) ou l’identifiant d’une couleur dont le thème peut être changé qui fournit la valeur par défaut.",
"invalid.defaults": "« configuration.colors.defaults » doit être défini et doit contenir « light » et « dark »",
@@ -11504,7 +17930,7 @@
"schema.workbenchColors": "Couleurs dans le banc d'essai"
},
"vs/workbench/services/themes/common/fileIconThemeSchema": {
- "schema.file": "Icône de fichier par défaut, affichée pour tous les fichiers qui ne correspondent pas à une extension, un nom de fichier ou un ID de langue.",
+ "schema.file": "Icône de fichier par défaut, affichée pour tous les fichiers qui ne correspondent pas à une extension, un nom de fichier ou un ID de langage.",
"schema.fileExtension": "ID de la définition d'icône de l'association.",
"schema.fileExtensions": "Associe des extensions de fichier à des icônes. La clé d'objet est le nom de l'extension de fichier. Le nom d'extension est le dernier segment de nom de fichier après le dernier point (sans le point). Les extensions sont comparées sans respecter la casse.",
"schema.fileName": "ID de la définition d'icône de l'association.",
@@ -11517,7 +17943,7 @@
"schema.folderNamesExpanded": "Associe des noms de dossiers à des icônes pour les dossiers développés. La clé d'objet est le nom de dossier, sans les segments de chemin. Aucun modèle ou caractère générique n'est autorisé. La correspondance de nom de dossier ne respecte pas la casse.",
"schema.font-format": "Format de la police.",
"schema.font-path": "Chemin de police, relatif au fichier de thème d'icônes de fichier actuel.",
- "schema.font-size": "Taille par défaut de la police. Consultez https://developer.mozilla.org/fr-FR/docs/Web/CSS/font-size pour connaître les valeurs valides.",
+ "schema.font-size": "La taille par défaut de la police. Nous vous recommandons fortement d'utiliser une valeur en pourcentage, par exemple : 125 %.",
"schema.font-style": "Style de la police. Consultez https://developer.mozilla.org/fr-FR/docs/Web/CSS/font-style pour connaître les valeurs valides.",
"schema.font-weight": "Épaisseur de la police. Consultez https://developer.mozilla.org/fr-FR/docs/Web/CSS/font-weight pour connaître les valeurs valides.",
"schema.fontCharacter": "Quand une police de type glyphe est employée : caractère de police à utiliser.",
@@ -11531,15 +17957,19 @@
"schema.iconDefinitions": "Description de toutes les icônes pouvant être utilisées durant l'association de fichiers à des icônes.",
"schema.iconPath": "En cas d'utilisation de SVG ou PNG : chemin de l'image. Le chemin est relatif au fichier du jeu d'icônes.",
"schema.id": "ID de la police.",
- "schema.id.formatError": "L'ID doit contenir uniquement les caractères suivants : lettres, chiffres, traits de soulignement et signes moins.",
"schema.languageId": "ID de la définition d'icône de l'association.",
"schema.languageIds": "Associe des langages à des icônes. La clé de l'objet est l'ID de langage défini dans le point de contribution du langage.",
"schema.light": "Associations facultatives des icônes de fichiers dans les thèmes de couleur claire.",
- "schema.showLanguageModeIcons": "Configure si les icônes de langue par défaut doivent être utilisées si le thème ne définit pas d’icône pour une langue.",
+ "schema.rootFolder": "L'icône de dossier pour les dossiers racine réduits et, si rootFolderExpanded n'est pas défini, également pour les dossiers racine développés.",
+ "schema.rootFolderExpanded": "L'icône de dossier pour les dossiers racine développés. L'icône du dossier racine développé est facultative. S'il n'est pas défini, l'icône définie pour le dossier racine sera affichée.",
+ "schema.rootFolderNameExpanded": "ID de la définition d'icône de l'association.",
+ "schema.rootFolderNames": "Associe les noms de dossiers racine aux icônes. La clé de l'objet est le nom du dossier racine. Aucun modèle ou caractère générique n'est autorisé. La correspondance du nom du dossier racine n'est pas sensible à la casse.",
+ "schema.rootFolderNamesExpanded": "Associe les noms de dossiers racine aux icônes pour les dossiers racine développés. La clé de l'objet est le nom du dossier racine. Aucun modèle ou caractère générique n'est autorisé. La correspondance du nom du dossier racine n'est pas sensible à la casse.",
+ "schema.showLanguageModeIcons": "Configure si les icônes de langage par défaut doivent être utilisées si le thème ne définit pas d’icône pour un langage.",
"schema.src": "Emplacement de la police."
},
"vs/workbench/services/themes/common/iconExtensionPoint": {
- "contributes.icon.default": "Valeur par défaut de l'icône. Il s'agit soit d'une référence à un ThemeIcon existant, soit d'une icône provenant d'une police d'icônes.",
+ "contributes.icon.default": "Icône par défaut. Il s'agit soit d'une référence à un ThemeIcon existant, soit d'une icône provenant d'une police d'icônes.",
"contributes.icon.default.fontCharacter": "Caractère de l'icône dans la police d'icônes.",
"contributes.icon.default.fontPath": "Chemin d’accès de la police d’icône qui définit l’icône.",
"contributes.icon.description": "Description de l'icône thématique",
@@ -11560,16 +17990,15 @@
"schema.font-weight": "Épaisseur de la police. Consultez https://developer.mozilla.org/fr-FR/docs/Web/CSS/font-weight pour connaître les valeurs valides.",
"schema.iconDefinitions": "Association du nom d'icône à un caractère de police.",
"schema.id": "ID de la police.",
- "schema.id.formatError": "L'ID doit contenir uniquement les caractères suivants : lettres, chiffres, traits de soulignement et signes moins.",
"schema.src": "Emplacement de la police."
},
"vs/workbench/services/themes/common/themeConfiguration": {
- "autoDetectHighContrast": "Si cette option est activée, le thème à contraste élevé est automatiquement choisi quand le système d’exploitation utilise un thème à contraste élevé. Le thème à contraste élevé à utiliser est défini par `#{0}#` and `#{1}#`.",
- "colorTheme": "Spécifie le thème de couleur utilisé dans le banc d'essai.",
+ "autoDetectHighContrast": "S'il est activé, passera automatiquement au thème à contraste élevé si le système d'exploitation utilise un thème à contraste élevé. Le thème à contraste élevé à utiliser est spécifié par {0} et {1}.",
+ "colorTheme": "Spécifie le thème de couleur utilisé dans le banc d’essai si {0} n’est pas activé.",
"colorThemeError": "Le thème est inconnu ou n'est pas installé.",
"defaultProductIconThemeDesc": "Par défaut",
"defaultProductIconThemeLabel": "Par défaut",
- "detectColorScheme": "Si cette option est définie, bascule automatiquement vers le thème de couleurs par défaut en fonction du mode de couleurs du système d’exploitation. Si le mode du système d’exploitation est sombre, le thème à utiliser est défini par `#{0}#`, ou s’il est clair par `#{1}#`.",
+ "detectColorScheme": "Si cette option est activée, un thème de couleur est sélectionné automatiquement en fonction du mode de couleur système. Si le mode de couleur du système est sombre, {0} est utilisé, sinon {1}.",
"editorColors": "Substitue les couleurs de syntaxe et le style de police de l'éditeur à partir du thème de couleur sélectionné.",
"editorColors.comments": "Définit les couleurs et les styles des commentaires",
"editorColors.functions": "Définit les couleurs et les styles des déclarations et références de fonctions.",
@@ -11577,7 +18006,7 @@
"editorColors.numbers": "Définit les couleurs et les styles des littéraux de nombre.",
"editorColors.semanticHighlighting": "Indique si la mise en surbrillance de la sémantique doit être activée pour ce thème.",
"editorColors.semanticHighlighting.deprecationMessage": "Utilisez 'enabled' dans le paramètre 'editor.semanticTokenColorCustomizations' à la place.",
- "editorColors.semanticHighlighting.deprecationMessageMarkdown": "Utilisez 'enabled' dans le paramètre '#editor.semanticTokenColorCustomizations#' à la place.",
+ "editorColors.semanticHighlighting.deprecationMessageMarkdown": "Utilisez « activé » dans le paramètre {0} à la place.",
"editorColors.semanticHighlighting.enabled": "Indique si la coloration sémantique est activée ou désactivée pour ce thème",
"editorColors.semanticHighlighting.rules": "Règles de style des jetons sémantiques pour ce thème.",
"editorColors.strings": "Définit les couleurs et les styles des littéraux de chaînes.",
@@ -11588,20 +18017,24 @@
"iconThemeError": "Le thème de l'icône de fichier est inconnu ou non installé.",
"noIconThemeDesc": "Aucune icône de fichier",
"noIconThemeLabel": "Aucun",
- "preferredDarkColorTheme": "Spécifie le thème de couleur par défaut pour l'apparence d'OS sombre quand '#{0}#' est activé.",
- "preferredHCDarkColorTheme": "Spécifie le thème de couleur par défaut utilisé en mode sombre de contraste élevé quand '#{0}#' est activé.",
- "preferredHCLightColorTheme": "Spécifie le thème de couleur par défaut utilisé en mode clair de contraste élevé quand '#{0}#' est activé.",
- "preferredLightColorTheme": "Spécifie le thème de couleur par défaut pour l'apparence d'OS claire quand '#{0}#' est activé.",
+ "preferredDarkColorTheme": "Spécifie le thème de couleur lorsque le mode de couleur système est sombre et que {0} est activé.",
+ "preferredHCDarkColorTheme": "Spécifie le thème de couleur utilisé en mode sombre de contraste élevé et que {0} est activé.",
+ "preferredHCLightColorTheme": "Spécifie le thème de couleur utilisé en mode clair de contraste élevé et que {0} est activé.",
+ "preferredLightColorTheme": "Spécifie le thème de couleur lorsque le mode de couleur système est clair et que {0} est activé.",
"productIconTheme": "Spécifie le thème d'icône de produit utilisé.",
"productIconThemeError": "Le thème d'icône de produit est inconnu ou n'est pas installé.",
"semanticTokenColors": "Substitue la couleur et les styles des jetons sémantiques de l'éditeur à partir du thème de couleur sélectionné.",
"workbenchColors": "Remplace les couleurs du thème de couleur sélectionné."
},
"vs/workbench/services/themes/common/themeExtensionPoints": {
+ "color themes": "Thèmes de couleur",
+ "file icon themes": "Thèmes d'icône de fichier",
"invalid.path.1": "'contributes.{0}.path' ({1}) est censé être inclus dans le dossier ({2}) de l'extension. Cela risque de rendre l'extension non portable.",
+ "product icon themes": "Thèmes d'icône de produit",
"reqarray": "Le point d'extension '{0}' doit être un tableau.",
"reqid": "Chaîne attendue dans 'contributes.{0}.id'. Valeur fournie : {1}",
"reqpath": "Chaîne attendue dans 'contributes.{0}.path'. Valeur fournie : {1}",
+ "themes": "Thèmes",
"vscode.extension.contributes.iconThemes": "Fournit des thèmes d'icône de fichier.",
"vscode.extension.contributes.iconThemes.id": "ID du thème d'icône de fichier comme il apparaît dans les paramètres utilisateur.",
"vscode.extension.contributes.iconThemes.label": "Étiquette de thème d'icône de fichier comme indiquée dans l'interface utilisateur.",
@@ -11642,87 +18075,191 @@
"invalid.semanticTokenTypeConfiguration": "'configuration.semanticTokenType' doit être un tableau",
"invalid.superType.format": "'configuration.{0}.superType' doit suivre le modèle letterOrDigit[-_letterOrDigit]*"
},
+ "vs/workbench/services/themes/electron-browser/themes.contribution": {
+ "window.systemColorTheme": "Définissez le mode couleur pour les éléments d’interface utilisateur natifs tels que les boîtes de dialogue, la barre de titre et les menus. Même si votre système d’exploitation est configuré en mode de couleurs claires, vous pouvez sélectionner un thème de couleur système sombre pour la fenêtre. Vous pouvez également configurer l’ajustement automatique en fonction du paramètre {0}.\r\n\r\nRemarque : ce paramètre est ignoré quand {1} est activé.",
+ "window.systemColorTheme.auto": "Utilisez les couleurs de widget natives claires pour les thèmes de couleur claire et sombres pour les thèmes de couleur sombre.",
+ "window.systemColorTheme.dark": "Utilisez des couleurs de widget natives foncées.",
+ "window.systemColorTheme.default": "Les couleurs de widget natives correspondent aux couleurs système.",
+ "window.systemColorTheme.light": "Utilisez des couleurs de widget natives claires."
+ },
+ "vs/workbench/services/userDataProfile/browser/extensionsResource": {
+ "all profiles and disabled": "Tous les profils",
+ "exclude": "Sélectionner {0} extension",
+ "extensions": "Extensions",
+ "installingExtension": "Installation de l’extension {0}..."
+ },
+ "vs/workbench/services/userDataProfile/browser/globalStateResource": {
+ "globalState": "État de l’IU"
+ },
+ "vs/workbench/services/userDataProfile/browser/keybindingsResource": {
+ "keybindings": "Raccourcis clavier"
+ },
+ "vs/workbench/services/userDataProfile/browser/mcpProfileResource": {
+ "mcp": "Serveurs MCP"
+ },
+ "vs/workbench/services/userDataProfile/browser/settingsResource": {
+ "settings": "Paramètres"
+ },
+ "vs/workbench/services/userDataProfile/browser/snippetsResource": {
+ "exclude": "Sélectionner l’extrait de code {0}",
+ "snippets": "Extraits"
+ },
+ "vs/workbench/services/userDataProfile/browser/tasksResource": {
+ "tasks": "Tâches"
+ },
+ "vs/workbench/services/userDataProfile/browser/userDataProfileImportExportService": {
+ "applying global state": "Application de l’état de l’interface utilisateur...",
+ "close": "Fermer",
+ "copy": "&&Copier le lien",
+ "create from profile": "Créer un profil : {0}",
+ "create keybindings": "Création des raccourcis clavier...",
+ "create snippets": "Création d’extraits de code...",
+ "create tasks": "Création des tâches...",
+ "creating settings": "Création des paramètres...",
+ "export profile dialog": "Enregistrer le profil",
+ "export profile name": "Nommer le profil",
+ "export profile title": "Exporter le profil",
+ "export success": "Le profil «{0}» a été exporté avec succès.",
+ "file": "fichier",
+ "from default": "À partir du profil par défaut",
+ "installing extensions": "Installation des extensions...",
+ "invalid profile content": "Ce profil n’est pas valide.",
+ "local": "Local",
+ "open": "&&Ouvrir le lien",
+ "open in": "&&Ouvrir dans {0}",
+ "overwrite": "&&Remplacer",
+ "profile already exists": "Il existe déjà un profil intitulé « {0} ». Voulez-vous remplacer son contenu ?",
+ "profile name required": "Le nom du profil doit être fourni.",
+ "profiles.exporting": "{0}: exportation...",
+ "progress extensions": "Application des extensions...",
+ "progress global state": "Application de l’état...",
+ "progress keybindings": "Application des raccourcis clavier...",
+ "progress settings": "Application des paramètres...",
+ "progress snippets": "Application des extraits de code...",
+ "progress tasks": "Application des tâches...",
+ "select": "Sélectionner {0}",
+ "select profile": "Sélectionner un profil",
+ "select profile content handler": "Exporter le profil «{0}» en tant que...",
+ "switching profile": "Changement de profil...",
+ "troubleshoot issue": "Résoudre le problème",
+ "troubleshoot profile progress": "Configuration du profil de dépannage : {0}"
+ },
"vs/workbench/services/userDataProfile/browser/userDataProfileManagement": {
- "cannotDeleteDefaultProfile": "Nous n’avons pas pu supprimer les paramètres du profil par défaut.",
- "cannotRenameDefaultProfile": "Nous n’avons pas pu renommer les paramètres du profil par défaut.",
+ "cannotDeleteDefaultProfile": "Impossible de supprimer le profil par défaut",
+ "cannotRenameDefaultProfile": "Impossible de renommer le profil par défaut.",
"reload button": "&&Recharger",
- "reload message": "Le changement des paramètres de profil nécessite le rechargement VS Code.",
- "reload message when removed": "Les paramètres du profil actuel ont été supprimés. Veuillez recharger pour revenir aux paramètres du profil par défaut."
+ "reload message": "Le changement de profil nécessite le rechargement VS Code.",
+ "reload message when removed": "Le profil actuel a été supprimé. Rechargez pour revenir au profil par défaut",
+ "reload message when switched": "L’espace de travail actuel a été supprimé du profil actuel. Rechargez pour revenir au profil mis à jour",
+ "reload message when updated": "Le profil actuel a été mis à jour. Rechargez pour revenir au profil mis à jour",
+ "switch profile": "Basculement vers un profil"
},
"vs/workbench/services/userDataProfile/common/userDataProfile": {
- "profile": "Profil des paramètres",
- "settings profiles": "Profils des paramètres"
+ "defaultProfileIcon": "Icône du profil par défaut.",
+ "profile": "Profil",
+ "profiles": "Profils"
},
- "vs/workbench/services/userDataProfile/common/userDataProfileImportExportService": {
- "applied profile": "{0} : appliqué avec succès.",
- "imported profile": "{0}: importé avec succès.",
- "name": "Nom du profil",
- "profiles.applying": "{0} : Application en cours...",
- "profiles.importing": "{0}: importation...",
- "save profile as": "Créer à partir du profil actuel..."
+ "vs/workbench/services/userDataProfile/common/userDataProfileIcons": {
+ "settingsViewBarIcon": "Icône des paramètres dans la barre d'affichage."
},
"vs/workbench/services/userDataSync/browser/userDataSyncWorkbenchService": {
- "cancel": "Annuler",
+ "and": " et ",
"choose account placeholder": "Sélectionner un compte pour se connecter",
- "conflicts detected": "Conflits détectés",
- "first time sync detail": "Il semble que vous ayez effectué la dernière synchronisation à partir d’une autre machine.\r\nVoulez-vous fusionner les données ou les remplacer par vos données situées dans le cloud ?",
+ "conflicts detected": "Conflits détectés dans {0}",
+ "download sync activity dialog open label": "Enregistrer",
+ "download sync activity dialog title": "Sélectionner le dossier pour télécharger l'activité de synchronisation des paramètres",
"last used": "Dernière utilisation avec synchronisation",
- "merge": "Fusionner",
- "merge Manually": "Fusionner manuellement...",
- "merge or replace": "Fusionner ou remplacer",
- "no": "&&Non",
+ "no": "Non",
"no account": "Aucun compte disponible",
"no authentication providers": "Impossible d'activer la synchronisation des paramètres, car aucun fournisseur d'authentification n'est disponible.",
+ "no authentication providers during signin": "Impossible de se connecter, car aucun fournisseur d’authentification n’est disponible.",
"others": "Autres",
- "replace local": "Remplacer localement",
+ "replace local": "Accepter le &&dépôt distant",
+ "replace local single": "Accepter &&remote {0}",
+ "replace remote": "Accepter la &&version locale",
+ "replace remote single": "Accepter &&{0} local",
"reset": "Cela va entraîner l'effacement de vos données dans le cloud et l'arrêt de la synchronisation sur tous vos appareils.",
"reset title": "Effacer",
"resetButton": "&&Réinitialiser",
- "resolve": "Fusion impossible à cause de conflits. Fusionnez manuellement pour continuer...",
+ "resolve": "Veuillez résoudre les conflits à activer...",
+ "resolving conflicts": "Résolution de conflits...",
"settings sync": "Synchronisation des paramètres",
- "show log": "afficher le journal",
- "sign in": "Se connecter",
+ "show conflicts": "&&Afficher les conflits",
"sign in using account": "Vous connecter à {0}",
"signed in": "Connecté",
- "successive auth failures": "La synchronisation des paramètres est interrompue en raison d'une succession d'échecs d'autorisation. Reconnectez-vous pour poursuivre la synchronisation",
"sync in progress": "La synchronisation des paramètres est en cours d'activation. Voulez-vous l'annuler ?",
"sync turned on": "{0} est activé",
- "syncing resource": "Synchronisation de {0}...",
+ "syncing...": "Activation...",
"turning on": "Activation...",
"yes": "&&Oui"
},
"vs/workbench/services/userDataSync/common/userDataSync": {
+ "download sync activity title": "Télécharger l'activité de synchronisation des paramètres",
"extensions": "Extensions",
"keybindings": "Raccourcis clavier",
+ "mcp": "Serveurs MCP",
+ "profiles": "Profils",
+ "prompts": "Requêtes et instructions",
"settings": "Paramètres",
- "snippets": "Extraits utilisateur",
+ "snippets": "Extraits",
"sync category": "Synchronisation des paramètres",
"syncViewIcon": "Icône de vue de la synchronisation des paramètres.",
- "tasks": "Tâches utilisateur",
- "ui state label": "État de l'IU"
+ "tasks": "Tâches",
+ "ui state label": "État de l'IU",
+ "workspace state label": "État de l’espace de travail"
},
"vs/workbench/services/views/browser/viewDescriptorService": {
- "cachedViewContainerPositions": "Afficher les personnalisations des emplacements de conteneur",
- "cachedViewPositions": "Afficher les personnalisations des emplacements",
"hideView": "Masquer '{0}'",
- "resetViewLocation": "Réinitialiser l'emplacement"
+ "hideViewDescription": "Masque la vue {0} si elle est visible et que le conteneur de vue dans lequel elle se trouve est visible",
+ "resetViewLocation": "Réinitialiser l'emplacement",
+ "toggleVisibilityDescription": "Active ou désactive la visibilité de la vue {0} si le conteneur de vue dans lequel elle se trouve est visible",
+ "user": "Conteneur d’affichage utilisateur"
+ },
+ "vs/workbench/services/views/browser/viewsService": {
+ "editor": "Éditeur de texte",
+ "focus view": "Placer le focus sur la vue {0}",
+ "open view": "Permet d’ouvrir la vue {0}",
+ "preserveFocus": "Indiquez s’il faut conserver le focus existant lors de l’ouverture de la vue.",
+ "resetViewLocation": "Réinitialiser l'emplacement",
+ "show view": "Afficher {0}",
+ "toggle view": "Activer/Désactiver {0}"
},
- "vs/workbench/services/views/common/viewContainerModel": {
- "globalViewsStateStorageId": "Affiche les personnalisations de visibilité dans {0} conteneur d’affichage"
+ "vs/workbench/services/views/test/browser/viewContainerModel.test": {
+ "Test View 1": "Affichage des tests 1",
+ "Test View 2": "Affichage des tests 2",
+ "Test View 3": "Affichage des tests 3",
+ "Test View 4": "Affichage des tests 4",
+ "Test View 5": "Affichage des tests 5",
+ "test": "test"
+ },
+ "vs/workbench/services/views/test/browser/viewDescriptorService.test": {
+ "Test View 1": "Affichage des tests 1",
+ "Test View 2": "Affichage des tests 2",
+ "Test View 3": "Affichage des tests 3",
+ "Test View 4": "Affichage des tests 4",
+ "test": "test"
+ },
+ "vs/workbench/services/voiceRecognition/electron-sandbox/workbenchVoiceRecognitionService": {
+ "voiceTranscription": "Transcription vocale",
+ "voiceTranscriptionError": "Échec de la transcription vocale : {0}",
+ "voiceTranscriptionGettingReady": "Préparation du microphone...",
+ "voiceTranscriptionRecording": "Enregistrement à partir du microphone..."
},
"vs/workbench/services/workingCopy/common/fileWorkingCopyManager": {
+ "confirmMakeWriteable": "« {0} » est marqué en lecture seule. Voulez-vous quand même sauvegarder ?",
+ "confirmMakeWriteableDetail": "Les chemins peuvent être configurés en lecture seule via les paramètres.",
"confirmOverwrite": "'{0}' existe déjà. Voulez-vous le remplacer ?",
"deleted": "Supprimé",
"fileWorkingCopyCreate.source": "Fichier créé",
"fileWorkingCopyDecorations": "Décorations de copie de travail de fichier",
"fileWorkingCopyReplace.source": "Fichier remplacé",
- "irreversible": "Un fichier ou un dossier avec le nom '{0}' existe déjà dans le dossier '{1}'. Si vous le remplacez, son contenu est également remplacé.",
+ "makeWriteableButtonLabel": "&&Enregistrer quand même",
+ "overwriteIrreversible": "Un fichier ou un dossier avec le nom '{0}' existe déjà dans le dossier '{1}'. Si vous le remplacez, son contenu est également remplacé.",
"readonly": "Lecture seule",
"readonlyAndDeleted": "Supprimé, en lecture seule",
"replaceButtonLabel": "&&Remplacer"
},
"vs/workbench/services/workingCopy/common/storedFileWorkingCopy": {
- "discard": "Abandonner",
"genericSaveError": "Échec de l'enregistrement de '{0}' : {1}",
"overwrite": "Remplacer",
"overwriteElevated": "Remplacer en tant qu’Admin...",
@@ -11733,55 +18270,62 @@
"readonlySaveErrorAdmin": "L'enregistrement de '{0}' a échoué : le fichier est en lecture seule. Sélectionnez 'Remplacer en tant qu'administrateur' pour réessayer en tant qu'administrateur.",
"readonlySaveErrorSudo": "L'enregistrement de '{0}' a échoué : le fichier est en lecture seule. Sélectionnez 'Remplacer en tant que Sudo' pour réessayer en tant que superutilisateur.",
"retry": "Réessayer",
+ "revert": "Restaurer",
"saveAs": "Enregistrer sous...",
"saveElevated": "Réessayer en tant qu’Admin...",
"saveElevatedSudo": "Réessayer en tant que Sudo...",
+ "saveParticipants": "Enregistrement de « {0} »",
+ "saveTextFile": "Écriture dans le fichier...",
"staleSaveError": "Échec de l’enregistrement de « {0} » : le contenu du fichier a été modifié depuis son ouverture. Voulez-vous remplacer le fichier par vos modifications ?"
},
"vs/workbench/services/workingCopy/common/storedFileWorkingCopyManager": {
"join.fileWorkingCopyManager": "Enregistrement des copies de travail"
},
"vs/workbench/services/workingCopy/common/storedFileWorkingCopySaveParticipant": {
- "saveParticipants": "Enregistrement de '{0}'"
+ "saveParticipants1": "Exécution des actions de code et des formateurs...",
+ "skip": "Ignorer"
},
"vs/workbench/services/workingCopy/common/workingCopyHistoryService": {
"default.source": "Fichier enregistré",
+ "join.workingCopyHistory": "Enregistrement de l’historique local",
"moved.source": "Fichier déplacé",
"renamed.source": "Fichier renommé"
},
"vs/workbench/services/workingCopy/common/workingCopyHistoryTracker": {
"undoRedo.source": "Annuler/Rétablir"
},
- "vs/workbench/services/workingCopy/electron-sandbox/workingCopyBackupService": {
+ "vs/workbench/services/workingCopy/electron-browser/workingCopyBackupService": {
"join.workingCopyBackups": "Sauvegarder les copies de travail"
},
- "vs/workbench/services/workingCopy/electron-sandbox/workingCopyBackupTracker": {
+ "vs/workbench/services/workingCopy/electron-browser/workingCopyBackupTracker": {
"backupBeforeShutdownDetail": "Cliquez sur « Annuler » pour mettre fin à l'attente et pour sauvegarder ou rétablir les éditeurs avec les modifications non sauvegardées.",
"backupBeforeShutdownMessage": "La sauvegarde des éditeurs avec des modifications non sauvegardées prend un peu plus de temps...",
"backupErrorDetails": "Essayez d'abord de sauvegarder ou de rétablir les éditeurs avec les modifications non sauvegardées, puis réessayez.",
- "backupTrackerBackupFailed": "Les éditeurs suivants, dont les modifications n'ont pas été sauvegardées, n'ont pas pu être enregistrés dans l'emplacement de sauvegarde.",
+ "backupTrackerBackupFailed": "Les éditeurs suivants, dont les modifications n’ont pas été sauvegardées, n’ont pas pu être enregistrés dans l’emplacement de sauvegarde.",
"backupTrackerConfirmFailed": "Les éditeurs suivants dont les modifications n'ont pas été sauvegardées n'ont pas pu être sauvegardés ou annulés.",
"discardBackupsBeforeShutdown": "L’abandon des sauvegardes prend un peu plus de temps...",
+ "ok": "&&OK",
"revertBeforeShutdown": "L'annulation des éditeurs avec des changements non sauvegardés prend un peu plus de temps...",
- "saveBeforeShutdown": "La sauvegarde des éditeurs avec des modifications non sauvegardées prend un peu plus de temps..."
- },
- "vs/workbench/services/workingCopy/electron-sandbox/workingCopyHistoryService": {
- "join.workingCopyHistory": "Enregistrement de l’historique local"
+ "saveBeforeShutdown": "La sauvegarde des éditeurs avec des modifications non sauvegardées prend un peu plus de temps...",
+ "shutdownForceClose": "Fermer quand même",
+ "shutdownForceQuit": "Quitter quand même",
+ "shutdownForceReload": "Recharger quand même"
},
"vs/workbench/services/workspaces/browser/abstractWorkspaceEditingService": {
"errorInvalidTaskConfiguration": "Impossible d’écrire dans le fichier de configuration de l’espace de travail. Veuillez ouvrir le fichier pour y corriger les erreurs/avertissements et essayez à nouveau.",
- "errorWorkspaceConfigurationFileDirty": "Impossible d'écrire dans le fichier de configuration de l'espace de travail car le fichier contient des modifications non sauvegardées. Veuillez l'enregistrer et réessayer.",
"openWorkspaceConfigurationFile": "Ouvrir la Configuration de l’espace de travail",
"save": "Enregistrer",
"saveWorkspace": "Enregistrer l'espace de travail"
},
"vs/workbench/services/workspaces/browser/workspaceTrustEditorInput": {
- "workspaceTrustEditorInputName": "Confiance en l'espace de travail"
- },
- "vs/workbench/services/workspaces/electron-sandbox/workspaceEditingService": {
- "cancel": "Annuler",
- "doNotSave": "Ne pas enregistrer",
- "save": "Enregistrer",
+ "workspaceTrustEditorInputName": "Confiance en l'espace de travail",
+ "workspaceTrustEditorLabelIcon": "Icône de l’étiquette de l’éditeur de confiance en l’espace de travail."
+ },
+ "vs/workbench/services/workspaces/electron-browser/workspaceEditingService": {
+ "doNotAskAgain": "Toujours ignorer les espaces de travail sans titre sans demander",
+ "doNotSave": "N&&e pas enregistrer",
+ "restartExtensionHost.reason": "Ouverture d’un espace de travail multi-racine",
+ "save": "&&Enregistrer",
"saveWorkspaceDetail": "Enregistrez votre espace de travail si vous avez l’intention de le rouvrir.",
"saveWorkspaceMessage": "Voulez-vous enregistrer la configuration de votre espace de travail dans un fichier ?",
"workspaceOpenedDetail": "L’espace de travail est déjà ouvert dans une autre fenêtre. Veuillez s’il vous plaît d’abord fermer cette fenêtre et puis essayez à nouveau.",
diff --git a/i18n/vscode-language-pack-it/README.md b/i18n/vscode-language-pack-it/README.md
index 4000b6bce9..a37bfe38e3 100644
--- a/i18n/vscode-language-pack-it/README.md
+++ b/i18n/vscode-language-pack-it/README.md
@@ -11,10 +11,9 @@ Per maggiori informazioni, consultare la [documentazione](https://go.microsoft.c
## Come contribuire
-Per un feedback sul miglioramento della traduzione, creare un problema nel repository [vscode-loc](https://github.com/microsoft/vscode-loc).
-
-Le stringhe di traduzione vengono gestite in Microsoft Localization Platform. È possibile apportare modifiche solo in Microsoft Localization Platform e quindi esportarle nel repository vscode-loc. Di conseguenza, la richiesta pull non verrà accettata nel repository vscode-loc.
+Per un feedback sul miglioramento della traduzione, creare una issue nel repository [vscode-loc](https://github.com/microsoft/vscode-loc).
+Le stringhe di traduzione vengono gestite in Microsoft Localization Platform. È possibile apportare modifiche solo in Microsoft Localization Platform ed esportarle nel repository vscode-loc. Di conseguenza, le richieste pull non verranno accettate nel repository vscode-loc.
## Licenza
Il codice sorgente e le stringhe sono sotto licenza [MIT](https://github.com/Microsoft/vscode-loc/blob/master/LICENSE.md).
diff --git a/i18n/vscode-language-pack-it/package.json b/i18n/vscode-language-pack-it/package.json
index ada459c034..2405734a05 100644
--- a/i18n/vscode-language-pack-it/package.json
+++ b/i18n/vscode-language-pack-it/package.json
@@ -2,7 +2,7 @@
"name": "vscode-language-pack-it",
"displayName": "Italian Language Pack for Visual Studio Code",
"description": "Language pack extension for Italian",
- "version": "1.70.0",
+ "version": "1.108.0",
"publisher": "MS-CEINTL",
"repository": {
"type": "git",
@@ -10,12 +10,15 @@
},
"license": "SEE MIT LICENSE IN LICENSE.md",
"engines": {
- "vscode": "^1.70.0"
+ "vscode": "^1.108.0"
},
"icon": "languagepack.png",
"categories": [
"Language Packs"
],
+ "keywords": [
+ "italiano"
+ ],
"contributes": {
"localizations": [
{
@@ -27,601 +30,369 @@
"id": "vscode",
"path": "./translations/main.i18n.json"
},
+ {
+ "id": "ms-vscode.js-debug",
+ "path": "./translations/extensions/ms-vscode.js-debug.i18n.json"
+ },
{
"id": "vscode.bat",
- "path": "./translations/extensions/bat.i18n.json"
+ "path": "./translations/extensions/vscode.bat.i18n.json"
+ },
+ {
+ "id": "vscode.builtin-notebook-renderers",
+ "path": "./translations/extensions/vscode.builtin-notebook-renderers.i18n.json"
},
{
"id": "vscode.clojure",
- "path": "./translations/extensions/clojure.i18n.json"
+ "path": "./translations/extensions/vscode.clojure.i18n.json"
},
{
"id": "vscode.coffeescript",
- "path": "./translations/extensions/coffeescript.i18n.json"
+ "path": "./translations/extensions/vscode.coffeescript.i18n.json"
},
{
"id": "vscode.configuration-editing",
- "path": "./translations/extensions/configuration-editing.i18n.json"
+ "path": "./translations/extensions/vscode.configuration-editing.i18n.json"
},
{
"id": "vscode.cpp",
- "path": "./translations/extensions/cpp.i18n.json"
+ "path": "./translations/extensions/vscode.cpp.i18n.json"
},
{
"id": "vscode.csharp",
- "path": "./translations/extensions/csharp.i18n.json"
+ "path": "./translations/extensions/vscode.csharp.i18n.json"
},
{
"id": "vscode.css-language-features",
- "path": "./translations/extensions/css-language-features.i18n.json"
+ "path": "./translations/extensions/vscode.css-language-features.i18n.json"
},
{
"id": "vscode.css",
- "path": "./translations/extensions/css.i18n.json"
+ "path": "./translations/extensions/vscode.css.i18n.json"
},
{
"id": "vscode.dart",
- "path": "./translations/extensions/dart.i18n.json"
+ "path": "./translations/extensions/vscode.dart.i18n.json"
},
{
"id": "vscode.debug-auto-launch",
- "path": "./translations/extensions/debug-auto-launch.i18n.json"
+ "path": "./translations/extensions/vscode.debug-auto-launch.i18n.json"
},
{
"id": "vscode.debug-server-ready",
- "path": "./translations/extensions/debug-server-ready.i18n.json"
+ "path": "./translations/extensions/vscode.debug-server-ready.i18n.json"
},
{
"id": "vscode.diff",
- "path": "./translations/extensions/diff.i18n.json"
+ "path": "./translations/extensions/vscode.diff.i18n.json"
},
{
"id": "vscode.docker",
- "path": "./translations/extensions/docker.i18n.json"
+ "path": "./translations/extensions/vscode.docker.i18n.json"
+ },
+ {
+ "id": "vscode.dotenv",
+ "path": "./translations/extensions/vscode.dotenv.i18n.json"
},
{
"id": "vscode.emmet",
- "path": "./translations/extensions/emmet.i18n.json"
+ "path": "./translations/extensions/vscode.emmet.i18n.json"
},
{
"id": "vscode.extension-editing",
- "path": "./translations/extensions/extension-editing.i18n.json"
+ "path": "./translations/extensions/vscode.extension-editing.i18n.json"
},
{
"id": "vscode.fsharp",
- "path": "./translations/extensions/fsharp.i18n.json"
+ "path": "./translations/extensions/vscode.fsharp.i18n.json"
},
{
"id": "vscode.git-base",
- "path": "./translations/extensions/git-base.i18n.json"
- },
- {
- "id": "vscode.git-ui",
- "path": "./translations/extensions/git-ui.i18n.json"
+ "path": "./translations/extensions/vscode.git-base.i18n.json"
},
{
"id": "vscode.git",
- "path": "./translations/extensions/git.i18n.json"
+ "path": "./translations/extensions/vscode.git.i18n.json"
},
{
"id": "vscode.github-authentication",
- "path": "./translations/extensions/github-authentication.i18n.json"
- },
- {
- "id": "vscode.github-browser",
- "path": "./translations/extensions/github-browser.i18n.json"
+ "path": "./translations/extensions/vscode.github-authentication.i18n.json"
},
{
"id": "vscode.github",
- "path": "./translations/extensions/github.i18n.json"
+ "path": "./translations/extensions/vscode.github.i18n.json"
},
{
"id": "vscode.go",
- "path": "./translations/extensions/go.i18n.json"
+ "path": "./translations/extensions/vscode.go.i18n.json"
},
{
"id": "vscode.groovy",
- "path": "./translations/extensions/groovy.i18n.json"
+ "path": "./translations/extensions/vscode.groovy.i18n.json"
},
{
"id": "vscode.grunt",
- "path": "./translations/extensions/grunt.i18n.json"
+ "path": "./translations/extensions/vscode.grunt.i18n.json"
},
{
"id": "vscode.gulp",
- "path": "./translations/extensions/gulp.i18n.json"
+ "path": "./translations/extensions/vscode.gulp.i18n.json"
},
{
"id": "vscode.handlebars",
- "path": "./translations/extensions/handlebars.i18n.json"
+ "path": "./translations/extensions/vscode.handlebars.i18n.json"
},
{
"id": "vscode.hlsl",
- "path": "./translations/extensions/hlsl.i18n.json"
+ "path": "./translations/extensions/vscode.hlsl.i18n.json"
},
{
"id": "vscode.html-language-features",
- "path": "./translations/extensions/html-language-features.i18n.json"
+ "path": "./translations/extensions/vscode.html-language-features.i18n.json"
},
{
"id": "vscode.html",
- "path": "./translations/extensions/html.i18n.json"
- },
- {
- "id": "vscode.image-preview",
- "path": "./translations/extensions/image-preview.i18n.json"
+ "path": "./translations/extensions/vscode.html.i18n.json"
},
{
"id": "vscode.ini",
- "path": "./translations/extensions/ini.i18n.json"
+ "path": "./translations/extensions/vscode.ini.i18n.json"
},
{
"id": "vscode.ipynb",
- "path": "./translations/extensions/ipynb.i18n.json"
+ "path": "./translations/extensions/vscode.ipynb.i18n.json"
},
{
"id": "vscode.jake",
- "path": "./translations/extensions/jake.i18n.json"
+ "path": "./translations/extensions/vscode.jake.i18n.json"
},
{
"id": "vscode.java",
- "path": "./translations/extensions/java.i18n.json"
+ "path": "./translations/extensions/vscode.java.i18n.json"
},
{
"id": "vscode.javascript",
- "path": "./translations/extensions/javascript.i18n.json"
+ "path": "./translations/extensions/vscode.javascript.i18n.json"
},
{
"id": "vscode.json-language-features",
- "path": "./translations/extensions/json-language-features.i18n.json"
+ "path": "./translations/extensions/vscode.json-language-features.i18n.json"
},
{
"id": "vscode.json",
- "path": "./translations/extensions/json.i18n.json"
+ "path": "./translations/extensions/vscode.json.i18n.json"
},
{
"id": "vscode.julia",
- "path": "./translations/extensions/julia.i18n.json"
+ "path": "./translations/extensions/vscode.julia.i18n.json"
},
{
"id": "vscode.latex",
- "path": "./translations/extensions/latex.i18n.json"
+ "path": "./translations/extensions/vscode.latex.i18n.json"
},
{
"id": "vscode.less",
- "path": "./translations/extensions/less.i18n.json"
+ "path": "./translations/extensions/vscode.less.i18n.json"
},
{
"id": "vscode.log",
- "path": "./translations/extensions/log.i18n.json"
+ "path": "./translations/extensions/vscode.log.i18n.json"
},
{
"id": "vscode.lua",
- "path": "./translations/extensions/lua.i18n.json"
+ "path": "./translations/extensions/vscode.lua.i18n.json"
},
{
"id": "vscode.make",
- "path": "./translations/extensions/make.i18n.json"
- },
- {
- "id": "vscode.markdown-basics",
- "path": "./translations/extensions/markdown-basics.i18n.json"
+ "path": "./translations/extensions/vscode.make.i18n.json"
},
{
"id": "vscode.markdown-language-features",
- "path": "./translations/extensions/markdown-language-features.i18n.json"
+ "path": "./translations/extensions/vscode.markdown-language-features.i18n.json"
},
{
"id": "vscode.markdown-math",
- "path": "./translations/extensions/markdown-math.i18n.json"
- },
- {
- "id": "vscode.markdown-notebook-math",
- "path": "./translations/extensions/markdown-notebook-math.i18n.json"
- },
- {
- "id": "vscode.merge-conflict",
- "path": "./translations/extensions/merge-conflict.i18n.json"
- },
- {
- "id": "vscode.microsoft-authentication",
- "path": "./translations/extensions/microsoft-authentication.i18n.json"
+ "path": "./translations/extensions/vscode.markdown-math.i18n.json"
},
{
- "id": "vscode.ms-vscode.github-browser",
- "path": "./translations/extensions/ms-vscode.github-browser.i18n.json"
- },
- {
- "id": "vscode.ms-vscode.js-debug",
- "path": "./translations/extensions/ms-vscode.js-debug.i18n.json"
- },
- {
- "id": "vscode.ms-vscode.node-debug",
- "path": "./translations/extensions/ms-vscode.node-debug.i18n.json"
+ "id": "vscode.markdown",
+ "path": "./translations/extensions/vscode.markdown.i18n.json"
},
{
- "id": "vscode.ms-vscode.node-debug2",
- "path": "./translations/extensions/ms-vscode.node-debug2.i18n.json"
+ "id": "vscode.media-preview",
+ "path": "./translations/extensions/vscode.media-preview.i18n.json"
},
{
- "id": "vscode.ms-vscode.remotehub",
- "path": "./translations/extensions/ms-vscode.remotehub.i18n.json"
+ "id": "vscode.merge-conflict",
+ "path": "./translations/extensions/vscode.merge-conflict.i18n.json"
},
{
- "id": "vscode.notebook-markdown-extensions",
- "path": "./translations/extensions/notebook-markdown-extensions.i18n.json"
+ "id": "vscode.mermaid-chat-features",
+ "path": "./translations/extensions/vscode.mermaid-chat-features.i18n.json"
},
{
- "id": "vscode.notebook-renderers",
- "path": "./translations/extensions/notebook-renderers.i18n.json"
+ "id": "vscode.microsoft-authentication",
+ "path": "./translations/extensions/vscode.microsoft-authentication.i18n.json"
},
{
"id": "vscode.npm",
- "path": "./translations/extensions/npm.i18n.json"
+ "path": "./translations/extensions/vscode.npm.i18n.json"
},
{
"id": "vscode.objective-c",
- "path": "./translations/extensions/objective-c.i18n.json"
+ "path": "./translations/extensions/vscode.objective-c.i18n.json"
},
{
"id": "vscode.perl",
- "path": "./translations/extensions/perl.i18n.json"
+ "path": "./translations/extensions/vscode.perl.i18n.json"
},
{
"id": "vscode.php-language-features",
- "path": "./translations/extensions/php-language-features.i18n.json"
+ "path": "./translations/extensions/vscode.php-language-features.i18n.json"
},
{
"id": "vscode.php",
- "path": "./translations/extensions/php.i18n.json"
+ "path": "./translations/extensions/vscode.php.i18n.json"
},
{
"id": "vscode.powershell",
- "path": "./translations/extensions/powershell.i18n.json"
+ "path": "./translations/extensions/vscode.powershell.i18n.json"
+ },
+ {
+ "id": "vscode.prompt",
+ "path": "./translations/extensions/vscode.prompt.i18n.json"
},
{
"id": "vscode.pug",
- "path": "./translations/extensions/pug.i18n.json"
+ "path": "./translations/extensions/vscode.pug.i18n.json"
},
{
"id": "vscode.python",
- "path": "./translations/extensions/python.i18n.json"
+ "path": "./translations/extensions/vscode.python.i18n.json"
},
{
"id": "vscode.r",
- "path": "./translations/extensions/r.i18n.json"
+ "path": "./translations/extensions/vscode.r.i18n.json"
},
{
"id": "vscode.razor",
- "path": "./translations/extensions/razor.i18n.json"
+ "path": "./translations/extensions/vscode.razor.i18n.json"
},
{
"id": "vscode.references-view",
- "path": "./translations/extensions/references-view.i18n.json"
+ "path": "./translations/extensions/vscode.references-view.i18n.json"
},
{
"id": "vscode.restructuredtext",
- "path": "./translations/extensions/restructuredtext.i18n.json"
+ "path": "./translations/extensions/vscode.restructuredtext.i18n.json"
},
{
"id": "vscode.ruby",
- "path": "./translations/extensions/ruby.i18n.json"
+ "path": "./translations/extensions/vscode.ruby.i18n.json"
},
{
"id": "vscode.rust",
- "path": "./translations/extensions/rust.i18n.json"
+ "path": "./translations/extensions/vscode.rust.i18n.json"
},
{
"id": "vscode.scss",
- "path": "./translations/extensions/scss.i18n.json"
+ "path": "./translations/extensions/vscode.scss.i18n.json"
},
{
"id": "vscode.search-result",
- "path": "./translations/extensions/search-result.i18n.json"
+ "path": "./translations/extensions/vscode.search-result.i18n.json"
},
{
"id": "vscode.shaderlab",
- "path": "./translations/extensions/shaderlab.i18n.json"
+ "path": "./translations/extensions/vscode.shaderlab.i18n.json"
},
{
"id": "vscode.shellscript",
- "path": "./translations/extensions/shellscript.i18n.json"
+ "path": "./translations/extensions/vscode.shellscript.i18n.json"
},
{
"id": "vscode.simple-browser",
- "path": "./translations/extensions/simple-browser.i18n.json"
+ "path": "./translations/extensions/vscode.simple-browser.i18n.json"
},
{
"id": "vscode.sql",
- "path": "./translations/extensions/sql.i18n.json"
+ "path": "./translations/extensions/vscode.sql.i18n.json"
},
{
"id": "vscode.swift",
- "path": "./translations/extensions/swift.i18n.json"
+ "path": "./translations/extensions/vscode.swift.i18n.json"
},
{
- "id": "vscode.testing-editor-contributions",
- "path": "./translations/extensions/testing-editor-contributions.i18n.json"
+ "id": "vscode.terminal-suggest",
+ "path": "./translations/extensions/vscode.terminal-suggest.i18n.json"
},
{
"id": "vscode.theme-abyss",
- "path": "./translations/extensions/theme-abyss.i18n.json"
+ "path": "./translations/extensions/vscode.theme-abyss.i18n.json"
},
{
"id": "vscode.theme-defaults",
- "path": "./translations/extensions/theme-defaults.i18n.json"
+ "path": "./translations/extensions/vscode.theme-defaults.i18n.json"
},
{
"id": "vscode.theme-kimbie-dark",
- "path": "./translations/extensions/theme-kimbie-dark.i18n.json"
+ "path": "./translations/extensions/vscode.theme-kimbie-dark.i18n.json"
},
{
"id": "vscode.theme-monokai-dimmed",
- "path": "./translations/extensions/theme-monokai-dimmed.i18n.json"
+ "path": "./translations/extensions/vscode.theme-monokai-dimmed.i18n.json"
},
{
"id": "vscode.theme-monokai",
- "path": "./translations/extensions/theme-monokai.i18n.json"
+ "path": "./translations/extensions/vscode.theme-monokai.i18n.json"
},
{
"id": "vscode.theme-quietlight",
- "path": "./translations/extensions/theme-quietlight.i18n.json"
+ "path": "./translations/extensions/vscode.theme-quietlight.i18n.json"
},
{
"id": "vscode.theme-red",
- "path": "./translations/extensions/theme-red.i18n.json"
- },
- {
- "id": "vscode.theme-seti",
- "path": "./translations/extensions/theme-seti.i18n.json"
+ "path": "./translations/extensions/vscode.theme-red.i18n.json"
},
{
"id": "vscode.theme-solarized-dark",
- "path": "./translations/extensions/theme-solarized-dark.i18n.json"
+ "path": "./translations/extensions/vscode.theme-solarized-dark.i18n.json"
},
{
"id": "vscode.theme-solarized-light",
- "path": "./translations/extensions/theme-solarized-light.i18n.json"
+ "path": "./translations/extensions/vscode.theme-solarized-light.i18n.json"
},
{
"id": "vscode.theme-tomorrow-night-blue",
- "path": "./translations/extensions/theme-tomorrow-night-blue.i18n.json"
+ "path": "./translations/extensions/vscode.theme-tomorrow-night-blue.i18n.json"
},
{
- "id": "vscode.typescript-basics",
- "path": "./translations/extensions/typescript-basics.i18n.json"
+ "id": "vscode.tunnel-forwarding",
+ "path": "./translations/extensions/vscode.tunnel-forwarding.i18n.json"
},
{
"id": "vscode.typescript-language-features",
- "path": "./translations/extensions/typescript-language-features.i18n.json"
- },
- {
- "id": "vscode.vb",
- "path": "./translations/extensions/vb.i18n.json"
- },
- {
- "id": "vscode.vscode-chrome-debug-core",
- "path": "./translations/extensions/vscode-chrome-debug-core.i18n.json"
- },
- {
- "id": "ms-vscode.node-debug",
- "path": "./translations/extensions/vscode-node-debug.i18n.json"
- },
- {
- "id": "ms-vscode.node-debug2",
- "path": "./translations/extensions/vscode-node-debug2.i18n.json"
+ "path": "./translations/extensions/vscode.typescript-language-features.i18n.json"
},
{
- "id": "vscode.vscode.bat",
- "path": "./translations/extensions/vscode.bat.i18n.json"
- },
- {
- "id": "vscode.vscode.clojure",
- "path": "./translations/extensions/vscode.clojure.i18n.json"
- },
- {
- "id": "vscode.vscode.coffeescript",
- "path": "./translations/extensions/vscode.coffeescript.i18n.json"
- },
- {
- "id": "vscode.vscode.cpp",
- "path": "./translations/extensions/vscode.cpp.i18n.json"
- },
- {
- "id": "vscode.vscode.csharp",
- "path": "./translations/extensions/vscode.csharp.i18n.json"
- },
- {
- "id": "vscode.vscode.css",
- "path": "./translations/extensions/vscode.css.i18n.json"
- },
- {
- "id": "vscode.vscode.docker",
- "path": "./translations/extensions/vscode.docker.i18n.json"
- },
- {
- "id": "vscode.vscode.fsharp",
- "path": "./translations/extensions/vscode.fsharp.i18n.json"
- },
- {
- "id": "vscode.vscode.go",
- "path": "./translations/extensions/vscode.go.i18n.json"
- },
- {
- "id": "vscode.vscode.groovy",
- "path": "./translations/extensions/vscode.groovy.i18n.json"
- },
- {
- "id": "vscode.vscode.handlebars",
- "path": "./translations/extensions/vscode.handlebars.i18n.json"
- },
- {
- "id": "vscode.vscode.hlsl",
- "path": "./translations/extensions/vscode.hlsl.i18n.json"
- },
- {
- "id": "vscode.vscode.html",
- "path": "./translations/extensions/vscode.html.i18n.json"
- },
- {
- "id": "vscode.vscode.ini",
- "path": "./translations/extensions/vscode.ini.i18n.json"
- },
- {
- "id": "vscode.vscode.java",
- "path": "./translations/extensions/vscode.java.i18n.json"
- },
- {
- "id": "vscode.vscode.javascript",
- "path": "./translations/extensions/vscode.javascript.i18n.json"
- },
- {
- "id": "vscode.vscode.json",
- "path": "./translations/extensions/vscode.json.i18n.json"
- },
- {
- "id": "vscode.vscode.less",
- "path": "./translations/extensions/vscode.less.i18n.json"
- },
- {
- "id": "vscode.vscode.log",
- "path": "./translations/extensions/vscode.log.i18n.json"
- },
- {
- "id": "vscode.vscode.lua",
- "path": "./translations/extensions/vscode.lua.i18n.json"
- },
- {
- "id": "vscode.vscode.make",
- "path": "./translations/extensions/vscode.make.i18n.json"
- },
- {
- "id": "vscode.vscode.markdown",
- "path": "./translations/extensions/vscode.markdown.i18n.json"
- },
- {
- "id": "vscode.vscode.objective-c",
- "path": "./translations/extensions/vscode.objective-c.i18n.json"
- },
- {
- "id": "vscode.vscode.perl",
- "path": "./translations/extensions/vscode.perl.i18n.json"
- },
- {
- "id": "vscode.vscode.php",
- "path": "./translations/extensions/vscode.php.i18n.json"
- },
- {
- "id": "vscode.vscode.powershell",
- "path": "./translations/extensions/vscode.powershell.i18n.json"
- },
- {
- "id": "vscode.vscode.pug",
- "path": "./translations/extensions/vscode.pug.i18n.json"
- },
- {
- "id": "vscode.vscode.r",
- "path": "./translations/extensions/vscode.r.i18n.json"
- },
- {
- "id": "vscode.vscode.razor",
- "path": "./translations/extensions/vscode.razor.i18n.json"
- },
- {
- "id": "vscode.vscode.ruby",
- "path": "./translations/extensions/vscode.ruby.i18n.json"
- },
- {
- "id": "vscode.vscode.rust",
- "path": "./translations/extensions/vscode.rust.i18n.json"
- },
- {
- "id": "vscode.vscode.scss",
- "path": "./translations/extensions/vscode.scss.i18n.json"
- },
- {
- "id": "vscode.vscode.shaderlab",
- "path": "./translations/extensions/vscode.shaderlab.i18n.json"
- },
- {
- "id": "vscode.vscode.shellscript",
- "path": "./translations/extensions/vscode.shellscript.i18n.json"
- },
- {
- "id": "vscode.vscode.sql",
- "path": "./translations/extensions/vscode.sql.i18n.json"
- },
- {
- "id": "vscode.vscode.swift",
- "path": "./translations/extensions/vscode.swift.i18n.json"
- },
- {
- "id": "vscode.vscode.theme-abyss",
- "path": "./translations/extensions/vscode.theme-abyss.i18n.json"
- },
- {
- "id": "vscode.vscode.theme-defaults",
- "path": "./translations/extensions/vscode.theme-defaults.i18n.json"
- },
- {
- "id": "vscode.vscode.theme-kimbie-dark",
- "path": "./translations/extensions/vscode.theme-kimbie-dark.i18n.json"
- },
- {
- "id": "vscode.vscode.theme-monokai-dimmed",
- "path": "./translations/extensions/vscode.theme-monokai-dimmed.i18n.json"
- },
- {
- "id": "vscode.vscode.theme-monokai",
- "path": "./translations/extensions/vscode.theme-monokai.i18n.json"
- },
- {
- "id": "vscode.vscode.theme-quietlight",
- "path": "./translations/extensions/vscode.theme-quietlight.i18n.json"
- },
- {
- "id": "vscode.vscode.theme-red",
- "path": "./translations/extensions/vscode.theme-red.i18n.json"
- },
- {
- "id": "vscode.vscode.theme-solarized-dark",
- "path": "./translations/extensions/vscode.theme-solarized-dark.i18n.json"
- },
- {
- "id": "vscode.vscode.theme-solarized-light",
- "path": "./translations/extensions/vscode.theme-solarized-light.i18n.json"
- },
- {
- "id": "vscode.vscode.theme-tomorrow-night-blue",
- "path": "./translations/extensions/vscode.theme-tomorrow-night-blue.i18n.json"
- },
- {
- "id": "vscode.vscode.typescript",
+ "id": "vscode.typescript",
"path": "./translations/extensions/vscode.typescript.i18n.json"
},
{
- "id": "vscode.vscode.vb",
+ "id": "vscode.vb",
"path": "./translations/extensions/vscode.vb.i18n.json"
},
{
- "id": "vscode.vscode.vscode-theme-seti",
+ "id": "vscode.vscode-theme-seti",
"path": "./translations/extensions/vscode.vscode-theme-seti.i18n.json"
},
- {
- "id": "vscode.vscode.xml",
- "path": "./translations/extensions/vscode.xml.i18n.json"
- },
- {
- "id": "vscode.vscode.yaml",
- "path": "./translations/extensions/vscode.yaml.i18n.json"
- },
{
"id": "vscode.xml",
- "path": "./translations/extensions/xml.i18n.json"
+ "path": "./translations/extensions/vscode.xml.i18n.json"
},
{
"id": "vscode.yaml",
- "path": "./translations/extensions/yaml.i18n.json"
+ "path": "./translations/extensions/vscode.yaml.i18n.json"
}
]
}
diff --git a/i18n/vscode-language-pack-it/translations/extensions/bat.i18n.json b/i18n/vscode-language-pack-it/translations/extensions/bat.i18n.json
deleted file mode 100644
index 93c0691739..0000000000
--- a/i18n/vscode-language-pack-it/translations/extensions/bat.i18n.json
+++ /dev/null
@@ -1,16 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "package": {
- "description": "Offre i frammenti, la sottolineatura delle sintassi, la corrispondenza delle parentesi e la riduzione del codice nei file Windows.",
- "displayName": "Nozioni di base sul linguaggio Windows Bat"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-it/translations/extensions/clojure.i18n.json b/i18n/vscode-language-pack-it/translations/extensions/clojure.i18n.json
deleted file mode 100644
index b2f6474e67..0000000000
--- a/i18n/vscode-language-pack-it/translations/extensions/clojure.i18n.json
+++ /dev/null
@@ -1,16 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "package": {
- "description": "Offre la sottolineatura delle sintassi e il match delle parentesi nei file Clojure.",
- "displayName": "Nozioni di base sul linguaggio Clojure"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-it/translations/extensions/coffeescript.i18n.json b/i18n/vscode-language-pack-it/translations/extensions/coffeescript.i18n.json
deleted file mode 100644
index 1d2d67cba5..0000000000
--- a/i18n/vscode-language-pack-it/translations/extensions/coffeescript.i18n.json
+++ /dev/null
@@ -1,16 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "package": {
- "description": "Offre i frammenti, la sottolineatura delle sintassi, la corrispondenza delle parentesi e la riduzione del codice nei file CoffeeScript.",
- "displayName": "Nozioni di base sul linguaggio CoffeeScript"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-it/translations/extensions/configuration-editing.i18n.json b/i18n/vscode-language-pack-it/translations/extensions/configuration-editing.i18n.json
deleted file mode 100644
index 84096eb2b4..0000000000
--- a/i18n/vscode-language-pack-it/translations/extensions/configuration-editing.i18n.json
+++ /dev/null
@@ -1,70 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "dist/configurationEditingMain": {
- "cwd": "Directory di lavoro corrente dello strumento di esecuzione attività all'avvio",
- "defaultBuildTask": "Nome dell'attività di compilazione predefinita. Se non è presente un'unica attività di compilazione predefinita, viene mostrata una selezione rapida per consentire la selezione dell'attività di compilazione.",
- "extensionInstallFolder": "Percorso in cui è installata un'estensione.",
- "file": "File attualmente aperto",
- "fileBasename": "Nome di base del file attualmente aperto",
- "fileBasenameNoExtension": "Nome di base del file attualmente aperto senza estensione",
- "fileDirname": "Nome della directory del file attualmente aperto",
- "fileExtname": "Estensione del file attualmente aperto",
- "lineNumber": "Numero di riga corrente selezionato nel file attivo",
- "pathSeparator": "Carattere utilizzato dal sistema operativo per separare i componenti nei percorsi dei file",
- "relativeFile": "File attualmente aperto relativo a ${workspaceFolder}",
- "relativeFileDirname": "Nome di directory del file attualmente aperto relativo a ${workspaceFolder}",
- "selectedText": "Testo selezionato nel file attivo",
- "workspaceFolder": "Percorso della cartella aperta in VS Code",
- "workspaceFolderBasename": "Nome della cartella aperta In VS Code senza barre di separazione (/)"
- },
- "dist/extensionsProposals": {
- "exampleExtension": "esempio"
- },
- "dist/settingsDocumentHelper": {
- "activeEditor": "Usa la lingua dell'editor di testo attualmente attivo se presente",
- "activeEditorLong": "percorso completo del file (ad esempio /Utenti/Sviluppo/Cartella/CartellaFile/File.txt)",
- "activeEditorMedium": "percorso del file relativo alla cartella dell'area di lavoro (ad esempio Cartella/CartellaFile/File.txt)",
- "activeEditorShort": "il nome del file (ad esempio MyFile.txt)",
- "activeFolderLong": "percorso completo della cartella che contiene il file (ad esempio /Utenti/Sviluppo/Cartella/CartellaFile)",
- "activeFolderMedium": "percorso della cartella che contiene il file, relativo alla cartella dell'area di lavoro (ad esempio Cartella/CartellaFile)",
- "activeFolderShort": "nome della cartella in cui si trova il file (ad esempio CartellaFile)",
- "appName": "ad esempio VS Code",
- "assocDescriptionFile": "Esegue il mapping di tutti i file il cui nome file corrisponde al criterio GLOB alla lingua con l'identificatore specificato.",
- "assocDescriptionPath": "Esegue il mapping di tutti i file il cui percorso assoluto corrisponde al criterio GLOB alla lingua con l'identificatore specificato.",
- "assocLabelFile": "File con estensione",
- "assocLabelPath": "File con percorso",
- "derivedDescription": "Trova file con elementi di pari livello e nome identico ma estensione diversa.",
- "derivedLabel": "File con elementi di pari livello in base al nome",
- "dirty": "un indicatore per il momento in cui l'editor attivo contiene modifiche non salvate",
- "fileDescription": "Trova tutti i file di un'estensione di file specifica.",
- "fileLabel": "File in base all'estensione",
- "filesDescription": "Trova tutti i file con qualsiasi estensione di file.",
- "filesLabel": "File con più estensioni",
- "folderDescription": "Trova una cartella con un nome specifico in qualsiasi percorso.",
- "folderLabel": "Cartella in base al nome (qualsiasi percorso)",
- "folderName": "nome della cartella dell'area di lavoro in cui è contenuto il file (ad es. myFolder)",
- "folderPath": "percorso della cartella dell'area di lavoro in cui è contenuto il file (ad es. /Users/Development/myFolder)",
- "remoteName": "ad esempio SSH",
- "rootName": "nome dell'Area di lavoro (ad es. myFolder o myWorkspace)",
- "rootPath": "percorso dell'Area di lavoro (ad es. /Users/Development/myWorkspace)",
- "separator": "un separatore condizionale (' - ') visualizzato solo se circondato da variabili con valori",
- "siblingsDescription": "Trova file con elementi di pari livello e nome identico ma estensione diversa.",
- "topFolderDescription": "Trova una cartella di primo livello con un nome specifico.",
- "topFolderLabel": "Cartella in base al nome (primo livello)",
- "topFoldersDescription": "Trova più cartelle di primo livello.",
- "topFoldersLabel": "Cartella con più nomi (primo livello)"
- },
- "package": {
- "description": "Offre funzionalità (IntelliSense avanzato, correzione automatica) nei file di configurazione come quelli degli elementi consigliati per impostazioni, avvio ed estensioni.",
- "displayName": "Modifica della configurazione"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-it/translations/extensions/cpp.i18n.json b/i18n/vscode-language-pack-it/translations/extensions/cpp.i18n.json
deleted file mode 100644
index cf0b979601..0000000000
--- a/i18n/vscode-language-pack-it/translations/extensions/cpp.i18n.json
+++ /dev/null
@@ -1,16 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "package": {
- "description": "Offre i frammenti, la sottolineatura delle sintassi, la corrispondenza delle parentesi e la riduzione del codice nei file C/C++.",
- "displayName": "Nozioni fondamentali del linguaggio C/C++"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-it/translations/extensions/csharp.i18n.json b/i18n/vscode-language-pack-it/translations/extensions/csharp.i18n.json
deleted file mode 100644
index cc0467d49b..0000000000
--- a/i18n/vscode-language-pack-it/translations/extensions/csharp.i18n.json
+++ /dev/null
@@ -1,16 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "package": {
- "description": "Offre i frammenti, la sottolineatura delle sintassi, la corrispondenza delle parentesi e la riduzione del codice nei file C#.",
- "displayName": "Nozioni di base sul linguaggio C#"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-it/translations/extensions/css-language-features.i18n.json b/i18n/vscode-language-pack-it/translations/extensions/css-language-features.i18n.json
deleted file mode 100644
index 3f73d26faf..0000000000
--- a/i18n/vscode-language-pack-it/translations/extensions/css-language-features.i18n.json
+++ /dev/null
@@ -1,128 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "client\\dist\\node/cssClient": {
- "cssserver.name": "Server di linguaggio CSS",
- "folding.end": "Fine area di riduzione del codice",
- "folding.start": "Inizio area di riduzione del codice"
- },
- "package": {
- "css.colorDecorators.enable.deprecationMessage": "L'impostazione `css.colorDecorators.enable` è stata deprecata e sostituita da `editor.colorDecorators`.",
- "css.completion.completePropertyWithSemicolon.desc": "Inserisce il punto e virgola alla fine della riga in caso di completamento delle proprietà CSS.",
- "css.completion.triggerPropertyValueCompletion.desc": "Per impostazione predefinita, VS Code attiva il completamento del valore della proprietà dopo la selezione di una proprietà CSS. Questa impostazione consente di disabilitare questo comportamento.",
- "css.customData.desc": "Elenco di percorsi di file relativi che puntano a file JSON e sono conformi a [formato dati personalizzato](https://github.com/microsoft/vscode-css-languageservice/blob/master/docs/customData.md).\r\n\r\nVS Code carica i dati personalizzati all'avvio per migliorare il supporto CSS per le proprietà, le direttive at, le pseudo-classi e gli pseudo-elementi CSS personalizzati specificati nei file JSON.\r\n\r\nI percorsi di file sono relativi all'area di lavoro e vengono considerate solo le impostazioni di cartella dell'area di lavoro.",
- "css.format.braceStyle.desc": "Inserisci parentesi graffe nella stessa riga delle regole ('collapse') o inserisci parentesi graffe in una riga ('expand').",
- "css.format.enable.desc": "Abilitare/disabilitare il formattatore CSS predefinito.",
- "css.format.maxPreserveNewLines.desc": "Numero massimo di interruzioni di riga da mantenere in un blocco quando è abilitato '#css.format.preserveNewLines#'.",
- "css.format.newlineBetweenRules.desc": "Separare i set di regole con una riga vuota.",
- "css.format.newlineBetweenSelectors.desc": "Separare i selettori con una nuova riga.",
- "css.format.preserveNewLines.desc": "Indica se le interruzioni di riga esistenti prima degli elementi devono essere mantenute.",
- "css.format.spaceAroundSelectorSeparator.desc": "Assicurarsi che vi sia uno spazio intorno ai separatori del selettore '>', '+', '~' (ad esempio 'a > b').",
- "css.hover.documentation": "Mostra la documentazione su tag e attributi al passaggio del puntatore su codice CSS.",
- "css.hover.references": "Mostra i riferimenti a MDN al passaggio del puntatore su codice CSS.",
- "css.lint.argumentsInColorFunction.desc": "Numero di parametri non valido.",
- "css.lint.boxModel.desc": "Non usare `width` o `height` con `padding` o `border`.",
- "css.lint.compatibleVendorPrefixes.desc": "Quando si usa un prefisso specifico del fornitore, assicurarsi di includere anche tutte le altre proprietà specifiche del fornitore.",
- "css.lint.duplicateProperties.desc": "Non usare definizioni di stile duplicate.",
- "css.lint.emptyRules.desc": "Non usare set di regole vuoti.",
- "css.lint.float.desc": "Evitare di usare `float`. Con gli elementi float si ottiene codice CSS che causa facilmente interruzioni in caso di modifica di un aspetto del layout.",
- "css.lint.fontFaceProperties.desc": "La regola `@font-face` deve definire le proprietà `src` e `font-family`.",
- "css.lint.hexColorLength.desc": "I colori esadecimali devono essere composti da tre o sei numeri esadecimali.",
- "css.lint.idSelector.desc": "I selettori non devono contenere ID perché queste regole sono strettamente accoppiate al codice HTML.",
- "css.lint.ieHack.desc": "Gli hack IE sono necessari solo per il supporto di IE7 e versioni precedenti.",
- "css.lint.importStatement.desc": "Le istruzioni Import non vengono caricate in parallelo.",
- "css.lint.important.desc": "Evitare di usare '!important' perché indica che la specificità dell'intero codice CSS non è più controllabile ed è necessario effettuarne il refactoring.",
- "css.lint.propertyIgnoredDueToDisplay.desc": "La proprietà viene ignorata a causa della visualizzazione. Ad esempio, con `display: inline`, le proprietà `width`, `height`, `margin-top`, `margin-bottom` e `float` non hanno effetto.",
- "css.lint.universalSelector.desc": "Il selettore universale (`*`) è notoriamente lento.",
- "css.lint.unknownAtRules.desc": "Regola-at sconosciuta.",
- "css.lint.unknownProperties.desc": "Proprietà sconosciuta.",
- "css.lint.unknownVendorSpecificProperties.desc": "Proprietà specifica del fornitore sconosciuta.",
- "css.lint.validProperties.desc": "Elenco di proprietà che non vengono convalidate in base alla regola `unknownProperties`.",
- "css.lint.vendorPrefix.desc": "Quando si usa un prefisso specifico del fornitore, includere anche la proprietà standard.",
- "css.lint.zeroUnits.desc": "Non è necessaria alcuna unità per lo zero.",
- "css.title": "CSS",
- "css.trace.server.desc": "Traccia la comunicazione tra VS Code e il server del linguaggio CSS.",
- "css.validate.desc": "Abilita o disabilita tutte le convalide.",
- "css.validate.title": "Controlla la convalida CSS e le gravità dei problemi.",
- "description": "Offre un supporto avanzato per i file CSS, LESS e SCSS",
- "displayName": "Funzionalità del linguaggio CSS",
- "less.colorDecorators.enable.deprecationMessage": "L'impostazione `less.colorDecorators.enable` è stata deprecata e sostituita da `editor.colorDecorators`.",
- "less.completion.completePropertyWithSemicolon.desc": "Inserisce il punto e virgola alla fine della riga in caso di completamento delle proprietà CSS.",
- "less.completion.triggerPropertyValueCompletion.desc": "Per impostazione predefinita, VS Code attiva il completamento del valore della proprietà dopo la selezione di una proprietà CSS. Questa impostazione consente di disabilitare questo comportamento.",
- "less.format.braceStyle.desc": "Inserisci parentesi graffe nella stessa riga delle regole ('collapse') o inserisci parentesi graffe in una riga ('expand').",
- "less.format.enable.desc": "Abilita/Disabilita il formattatore LESS predefinito.",
- "less.format.maxPreserveNewLines.desc": "Numero massimo di interruzioni di riga da mantenere in un blocco quando è abilitato '#less.format.preserveNewLines#'.",
- "less.format.newlineBetweenRules.desc": "Separare i set di regole con una riga vuota.",
- "less.format.newlineBetweenSelectors.desc": "Separare i selettori con una nuova riga.",
- "less.format.preserveNewLines.desc": "Indica se le interruzioni di riga esistenti prima degli elementi devono essere mantenute.",
- "less.format.spaceAroundSelectorSeparator.desc": "Assicurarsi che vi sia uno spazio intorno ai separatori del selettore '>', '+', '~' (ad esempio 'a > b').",
- "less.hover.documentation": "Mostra la documentazione su tag e attributi al passaggio del puntatore su codice LESS.",
- "less.hover.references": "Mostra i riferimenti a MDN al passaggio del puntatore su codice LESS.",
- "less.lint.argumentsInColorFunction.desc": "Numero di parametri non valido.",
- "less.lint.boxModel.desc": "Non usare `width` o `height` con `padding` o `border`.",
- "less.lint.compatibleVendorPrefixes.desc": "Quando si usa un prefisso specifico del fornitore, assicurarsi di includere anche tutte le altre proprietà specifiche del fornitore.",
- "less.lint.duplicateProperties.desc": "Non usare definizioni di stile duplicate.",
- "less.lint.emptyRules.desc": "Non usare set di regole vuoti.",
- "less.lint.float.desc": "Evitare di usare `float`. Con gli elementi float si ottiene codice CSS che causa facilmente interruzioni in caso di modifica di un aspetto del layout.",
- "less.lint.fontFaceProperties.desc": "La regola `@font-face` deve definire le proprietà `src` e `font-family`.",
- "less.lint.hexColorLength.desc": "I colori esadecimali devono essere composti da tre o sei numeri esadecimali.",
- "less.lint.idSelector.desc": "I selettori non devono contenere ID perché queste regole sono strettamente accoppiate al codice HTML.",
- "less.lint.ieHack.desc": "Gli hack IE sono necessari solo per il supporto di IE7 e versioni precedenti.",
- "less.lint.importStatement.desc": "Le istruzioni Import non vengono caricate in parallelo.",
- "less.lint.important.desc": "Evitare di usare '!important' perché indica che la specificità dell'intero codice CSS non è più controllabile ed è necessario effettuarne il refactoring.",
- "less.lint.propertyIgnoredDueToDisplay.desc": "La proprietà viene ignorata a causa della visualizzazione. Ad esempio, con `display: inline`, le proprietà `width`, `height`, `margin-top`, `margin-bottom` e `float` non hanno effetto.",
- "less.lint.universalSelector.desc": "Il selettore universale (`*`) è notoriamente lento.",
- "less.lint.unknownAtRules.desc": "Regola-at sconosciuta.",
- "less.lint.unknownProperties.desc": "Proprietà sconosciuta.",
- "less.lint.unknownVendorSpecificProperties.desc": "Proprietà specifica del fornitore sconosciuta.",
- "less.lint.validProperties.desc": "Elenco di proprietà che non vengono convalidate in base alla regola `unknownProperties`.",
- "less.lint.vendorPrefix.desc": "Quando si usa un prefisso specifico del fornitore, includere anche la proprietà standard.",
- "less.lint.zeroUnits.desc": "Non è necessaria alcuna unità per lo zero.",
- "less.title": "LESS",
- "less.validate.desc": "Abilita o disabilita tutte le convalide.",
- "less.validate.title": "Controlla la convalida LESS e le gravità dei problemi.",
- "scss.colorDecorators.enable.deprecationMessage": "L'impostazione `scss.colorDecorators.enable` è stata deprecata e sostituita da `editor.colorDecorators`.",
- "scss.completion.completePropertyWithSemicolon.desc": "Inserisce il punto e virgola alla fine della riga in caso di completamento delle proprietà CSS.",
- "scss.completion.triggerPropertyValueCompletion.desc": "Per impostazione predefinita, VS Code attiva il completamento del valore della proprietà dopo la selezione di una proprietà CSS. Questa impostazione consente di disabilitare questo comportamento.",
- "scss.format.braceStyle.desc": "Inserisci parentesi graffe nella stessa riga delle regole ('collapse') o inserisci parentesi graffe in una riga ('expand').",
- "scss.format.enable.desc": "Abilitare/disabilitare il formattatore SCSS predefinito.",
- "scss.format.maxPreserveNewLines.desc": "Numero massimo di interruzioni di riga da mantenere in un blocco quando è abilitato '#scss.format.preserveNewLines#'.",
- "scss.format.newlineBetweenRules.desc": "Separare i set di regole con una riga vuota.",
- "scss.format.newlineBetweenSelectors.desc": "Separare i selettori con una nuova riga.",
- "scss.format.preserveNewLines.desc": "Indica se le interruzioni di riga esistenti prima degli elementi devono essere mantenute.",
- "scss.format.spaceAroundSelectorSeparator.desc": "Assicurarsi che vi sia uno spazio intorno ai separatori del selettore '>', '+', '~' (ad esempio 'a > b').",
- "scss.hover.documentation": "Mostra la documentazione su tag e attributi al passaggio del puntatore su codice SCSS.",
- "scss.hover.references": "Mostra i riferimenti a MDN al passaggio del puntatore su codice SCSS.",
- "scss.lint.argumentsInColorFunction.desc": "Numero di parametri non valido.",
- "scss.lint.boxModel.desc": "Non usare `width` o `height` con `padding` o `border`.",
- "scss.lint.compatibleVendorPrefixes.desc": "Quando si usa un prefisso specifico del fornitore, assicurarsi di includere anche tutte le altre proprietà specifiche del fornitore.",
- "scss.lint.duplicateProperties.desc": "Non usare definizioni di stile duplicate.",
- "scss.lint.emptyRules.desc": "Non usare set di regole vuoti.",
- "scss.lint.float.desc": "Evitare di usare `float`. Con gli elementi float si ottiene codice CSS che causa facilmente interruzioni in caso di modifica di un aspetto del layout.",
- "scss.lint.fontFaceProperties.desc": "La regola `@font-face` deve definire le proprietà `src` e `font-family`.",
- "scss.lint.hexColorLength.desc": "I colori esadecimali devono essere composti da tre o sei numeri esadecimali.",
- "scss.lint.idSelector.desc": "I selettori non devono contenere ID perché queste regole sono strettamente accoppiate al codice HTML.",
- "scss.lint.ieHack.desc": "Gli hack IE sono necessari solo per il supporto di IE7 e versioni precedenti.",
- "scss.lint.importStatement.desc": "Le istruzioni Import non vengono caricate in parallelo.",
- "scss.lint.important.desc": "Evitare di usare '!important' perché indica che la specificità dell'intero codice CSS non è più controllabile ed è necessario effettuarne il refactoring.",
- "scss.lint.propertyIgnoredDueToDisplay.desc": "La proprietà viene ignorata a causa della visualizzazione. Ad esempio, con `display: inline`, le proprietà `width`, `height`, `margin-top`, `margin-bottom` e `float` non hanno effetto.",
- "scss.lint.universalSelector.desc": "Il selettore universale (`*`) è notoriamente lento.",
- "scss.lint.unknownAtRules.desc": "Regola-at sconosciuta.",
- "scss.lint.unknownProperties.desc": "Proprietà sconosciuta.",
- "scss.lint.unknownVendorSpecificProperties.desc": "Proprietà specifica del fornitore sconosciuta.",
- "scss.lint.validProperties.desc": "Elenco di proprietà che non vengono convalidate in base alla regola `unknownProperties`.",
- "scss.lint.vendorPrefix.desc": "Quando si usa un prefisso specifico del fornitore, includere anche la proprietà standard.",
- "scss.lint.zeroUnits.desc": "Non è necessaria alcuna unità per lo zero.",
- "scss.title": "SCSS (Sass)",
- "scss.validate.desc": "Abilita o disabilita tutte le convalide.",
- "scss.validate.title": "Controlla la convalida SCSS e le gravità dei problemi."
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-it/translations/extensions/css.i18n.json b/i18n/vscode-language-pack-it/translations/extensions/css.i18n.json
deleted file mode 100644
index 63318866b6..0000000000
--- a/i18n/vscode-language-pack-it/translations/extensions/css.i18n.json
+++ /dev/null
@@ -1,16 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "package": {
- "description": "Offre l'evidenziazione della sintassi e la corrispondenza delle parentesi nei file CSS, LESS e SCSS.",
- "displayName": "Nozioni di base sul linguaggio CSS"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-it/translations/extensions/debug-auto-launch.i18n.json b/i18n/vscode-language-pack-it/translations/extensions/debug-auto-launch.i18n.json
deleted file mode 100644
index 2a2c6eca2e..0000000000
--- a/i18n/vscode-language-pack-it/translations/extensions/debug-auto-launch.i18n.json
+++ /dev/null
@@ -1,38 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "dist/extension": {
- "debug.javascript.autoAttach.always.description": "Collega automaticamente a ogni processo Node.js avviato nel terminale",
- "debug.javascript.autoAttach.always.label": "Sempre",
- "debug.javascript.autoAttach.disabled.description": "La funzionalità di collegamento automatico è disabilitata e non viene visualizzata nella barra di stato",
- "debug.javascript.autoAttach.disabled.label": "Disabilitato",
- "debug.javascript.autoAttach.onlyWithFlag.description": "Collega automaticamente solo quando è specificato il flag `--inspect`",
- "debug.javascript.autoAttach.onlyWithFlag.label": "Solo con flag",
- "debug.javascript.autoAttach.smart.description": "Collega automaticamente durante l'esecuzione di script non presenti in una cartella node_modules",
- "debug.javascript.autoAttach.smart.label": "Intelligente",
- "scope.global": "Attiva/Disattiva il collegamento automatico in questo computer",
- "scope.workspace": "Attiva/Disattiva il collegamento automatico in questa area di lavoro",
- "status.name.auto.attach": "Collegamento automatico di debug",
- "status.text.auto.attach.always": "Collegamento automatico: Sempre",
- "status.text.auto.attach.disabled": "Collegamento automatico: Disabilitato",
- "status.text.auto.attach.smart": "Collegamento automatico: Intelligente",
- "status.text.auto.attach.withFlag": "Collegamento automatico: Con flag",
- "status.tooltip.auto.attach": "Connetti automaticamente ai processi di node.js in modalità debug",
- "tempDisable.disable": "Disabilita temporaneamente il collegamento automatico in questa sessione",
- "tempDisable.enable": "Abilita di nuovo il collegamento automatico",
- "tempDisable.suffix": "Collegamento automatico: Disabilitato"
- },
- "package": {
- "description": "Helper per la funzionalità di collegamento automatico quando le estensioni di debug di Node non sono attive.",
- "displayName": "Collegamento automatico per debug di Node",
- "toggle.auto.attach": "Attiva/Disattiva collegamento automatico"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-it/translations/extensions/debug-server-ready.i18n.json b/i18n/vscode-language-pack-it/translations/extensions/debug-server-ready.i18n.json
deleted file mode 100644
index 1d68e87d8f..0000000000
--- a/i18n/vscode-language-pack-it/translations/extensions/debug-server-ready.i18n.json
+++ /dev/null
@@ -1,29 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "dist/extension": {
- "server.ready.nocapture.error": "L'URI di formato ('{0}') usa un segnaposto di sostituzione ma con il criterio non è stato acquisito nulla.",
- "server.ready.placeholder.error": "L'URI di formato ('{0}') deve contenere esattamente un segnaposto di sostituzione."
- },
- "package": {
- "debug.server.ready.action.debugWithChrome.description": "Avvia il debug con 'Debugger per Chrome'.",
- "debug.server.ready.action.description": "Consente di indicare l'operazione da eseguire con l'URI quando il server è pronto.",
- "debug.server.ready.action.openExternally.description": "Apre l'URI esternamente con l'applicazione predefinita.",
- "debug.server.ready.action.startDebugging.description": "Esegue un'altra configurazione di avvio.",
- "debug.server.ready.debugConfigName.description": "Nome della configurazione di avvio da eseguire.",
- "debug.server.ready.pattern.description": "Il server è pronto se nella console di debug viene visualizzato questo criterio. Il primo gruppo Capture deve includere un URI o un numero di porta.",
- "debug.server.ready.serverReadyAction.description": "Interviene su un URI quando un programma server di cui è in corso il debug è pronto (indicato dall'invio dell'output in formato 'in ascolto sulla porta 3000' o 'In ascolto su: https://localhost:5001' alla console di debug).",
- "debug.server.ready.uriFormat.description": "Stringa di formato usata per creare l'URI da un numero di porta. Il primo '%s' è sostituito dal numero di porta.",
- "debug.server.ready.webRoot.description": "Valore passato alla configurazione di debug per 'Debugger per Chrome'.",
- "description": "Apre l'URI nel browser se il server di cui si esegue il debug è pronto.",
- "displayName": "Azione per server pronto"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-it/translations/extensions/docker.i18n.json b/i18n/vscode-language-pack-it/translations/extensions/docker.i18n.json
deleted file mode 100644
index ada28d9c98..0000000000
--- a/i18n/vscode-language-pack-it/translations/extensions/docker.i18n.json
+++ /dev/null
@@ -1,16 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "package": {
- "description": "Offre la sottolineatura delle sintassi e il match delle parentesi nei file Docker.",
- "displayName": "Nozioni di base sul linguaggio Docker"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-it/translations/extensions/emmet.i18n.json b/i18n/vscode-language-pack-it/translations/extensions/emmet.i18n.json
deleted file mode 100644
index 1033b8fcfc..0000000000
--- a/i18n/vscode-language-pack-it/translations/extensions/emmet.i18n.json
+++ /dev/null
@@ -1,79 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "dist\\node/abbreviationActions": {
- "wrapWithAbbreviationPrompt": "Immettere l'abbreviazione"
- },
- "package": {
- "command.balanceIn": "Corrispondenza (interna)",
- "command.balanceOut": "Corrispondenza (esterna)",
- "command.decrementNumberByOne": "Riduci di 1",
- "command.decrementNumberByOneTenth": "Riduci di 0,1",
- "command.decrementNumberByTen": "Riduci di 10",
- "command.evaluateMathExpression": "Valuta espressione matematica",
- "command.incrementNumberByOne": "Aumenta di 1",
- "command.incrementNumberByOneTenth": "Aumenta di 0,1",
- "command.incrementNumberByTen": "Aumenta di 10",
- "command.matchTag": "Vai alla coppia corrispondente",
- "command.mergeLines": "Esegui merge delle righe",
- "command.nextEditPoint": "Vai al punto di modifica successivo",
- "command.prevEditPoint": "Vai al punto di modifica precedente",
- "command.reflectCSSValue": "Ricopia il valore CSS",
- "command.removeTag": "Rimuovi tag",
- "command.selectNextItem": "Seleziona l'elemento successivo",
- "command.selectPrevItem": "Seleziona l'elemento precedente",
- "command.showEmmetCommands": "Mostra comandi Emmet",
- "command.splitJoinTag": "Dividi/Unisci tag",
- "command.toggleComment": "Attiva/Disattiva commento",
- "command.updateImageSize": "Aggiorna dimensioni immagine",
- "command.updateTag": "Aggiorna tag",
- "command.wrapWithAbbreviation": "Esegui il wrapping con l'abbreviazione",
- "description": "Supporto Emmet per VS Code",
- "emmetExclude": "Una matrice di linguaggi dove le abbreviazioni Emmet non dovrebbero essere espanse.",
- "emmetExtensionsPath": "Matrice di percorsi in cui ogni percorso può contenere elementi syntaxProfile e/o file di frammento Emmet.\r\nIn caso di conflitto, i profili/frammenti dei percorsi successivi eseguiranno l'override di quelli dei percorsi precedenti.\r\nPer altre informazioni e per un file di frammento di esempio, vedere https://code.visualstudio.com/docs/editor/emmet.",
- "emmetExtensionsPathItem": "Percorso contenente elementi syntaxProfile e/o frammenti Emmet.",
- "emmetIncludeLanguages": "Abilita le abbreviazioni Emmet in linguaggi che non sono supportati per impostazione predefinita. Aggiungere qui un mapping tra il linguaggio e il linguaggio supportato da Emmet.\r\n Ad esempio: `{\"vue-html\": \"html\", \"javascript\": \"javascriptreact\"}`",
- "emmetOptimizeStylesheetParsing": "Se è impostato su `false`, l'intero file viene analizzato per determinare se la posizione corrente è valida per l'espansione delle abbreviazioni di Emmet. Se è impostato su `true`, viene analizzato solo il contenuto circostante alla posizione corrente nei file CSS/SCSS/Less.",
- "emmetPreferences": "Preferenze usate per modificare il comportamento di alcune azioni e i resolver di Emmet.",
- "emmetPreferencesAllowCompactBoolean": "Se è `true`, viene prodotta una notazione compatta degli attributi booleani.",
- "emmetPreferencesBemElementSeparator": "Separatore di elementi usati per le classi quando si usa il filtro BEM.",
- "emmetPreferencesBemModifierSeparator": "Separatore di modificatore usato per le classi quando si usa il filtro BEM.",
- "emmetPreferencesCssAfter": "Simbolo da inserire alla fine della proprietà CSS quando si espandono le abbreviazioni CSS.",
- "emmetPreferencesCssBetween": "Simbolo da inserire tra la proprietà CSS e il valore quando si espandono le abbreviazioni CSS.",
- "emmetPreferencesCssColorShort": "Se è `true`, i valori di colore come `#f` verranno espansi in `#fff` invece di `#ffffff`.",
- "emmetPreferencesCssFuzzySearchMinScore": "Il valore minimo (da 0 a 1) che dovrebbe raggiungere un'abbreviazione di fuzzy-match. I valori più bassi possono produrre molti falsi positivi, i valori più alti possono ridurre le possibili corrispondenze.",
- "emmetPreferencesCssMozProperties": "Proprietà CSS delimitate da virgola che assumono il prefisso 'moz' del fornitore quando vengono usate nelle abbreviazioni Emmet che iniziano per `-`. Per evitare sempre il prefisso 'moz', impostare su una stringa vuota.",
- "emmetPreferencesCssMsProperties": "Proprietà CSS delimitate da virgola che assumono il prefisso 'ms' del fornitore quando vengono usate nelle abbreviazioni Emmet che iniziano per `-`. Per evitare sempre il prefisso 'ms', impostare su una stringa vuota.",
- "emmetPreferencesCssOProperties": "Proprietà CSS delimitate da virgola che assumono il prefisso 'o' del fornitore quando vengono usate nelle abbreviazioni Emmet che iniziano per `-`. Per evitare sempre il prefisso 'o', impostare su una stringa vuota.",
- "emmetPreferencesCssWebkitProperties": "Proprietà CSS delimitate da virgola che assumono il prefisso 'webkit' del fornitore quando vengono usate in abbreviazioni Emmet che iniziano per `-`. Per evitare sempre il prefisso 'webkit', impostare su una stringa vuota.",
- "emmetPreferencesFilterCommentAfter": "Una definizione di commento che deve essere posizionato dopo l'elemento corrispondente quando viene applicato il filtro commenti.",
- "emmetPreferencesFilterCommentBefore": "Una definizione di commento che deve essere inserita prima dell'elemento corrispondente quando viene applicato il filtro commenti.",
- "emmetPreferencesFilterCommentTrigger": "Elenco delimitato da virgole di nomi di attributi che dovrebbero esistere come abbreviazione per il filtro commenti da applicare.",
- "emmetPreferencesFloatUnit": "Unità predefinita per i valori float.",
- "emmetPreferencesFormatForceIndentTags": "Matrice di nomi di tag a cui dovrebbe sempre essere applicato il rientro interno.",
- "emmetPreferencesFormatNoIndentTags": "Matrice di nomi di tag a cui non dovrebbe mai essere applicato il rientro interno.",
- "emmetPreferencesIntUnit": "Unità predefinita per i valori integer.",
- "emmetPreferencesOutputInlineBreak": "Numero di elementi inline di pari livello necessari per posizionare interruzioni di linea tra tali elementi. Se è `0`, gli elementi inline vengono sempre espansi su un'unica riga.",
- "emmetPreferencesOutputReverseAttributes": "Se `true`, inverte le direzioni di merge degli attributi durante la risoluzione dei frammenti.",
- "emmetPreferencesOutputSelfClosingStyle": "Stile dei tag di chiusura automatici: html (` `), xml (` `) o xhtml (` `).",
- "emmetPreferencesSassAfter": "Simbolo da inserire alla fine della proprietà CSS quando si espandono le abbreviazioni CSS nei file Sass.",
- "emmetPreferencesSassBetween": "Simbolo da inserire tra la proprietà CSS e il valore quando si espandono le abbreviazioni CSS nei file Sass.",
- "emmetPreferencesStylusAfter": "Simbolo da inserire alla fine della proprietà CSS quando si espandono le abbreviazioni CSS nei file Stylus.",
- "emmetPreferencesStylusBetween": "Simbolo da inserire tra la proprietà CSS e il valore quando si espandono le abbreviazioni CSS nei file Stylus.",
- "emmetShowAbbreviationSuggestions": "Mostra possibili abbreviazioni Emmet come suggerimenti. Non si applica a fogli di stile o quando emmet.showExpandedAbbreviation è impostato su \"never\".",
- "emmetShowExpandedAbbreviation": "Mostra le abbreviazioni Emmet espanse come suggerimenti.\r\nL'opzione `\"inMarkupAndStylesheetFilesOnly\"` si applica a html, haml, jade, slim, xml, xsl, css, scss, sass, less e stylus.\r\nL'opzione `\"always\"` si applica a tutte le parti del file indipendentemente da markup/css.",
- "emmetShowSuggestionsAsSnippets": "Se è true, i suggerimenti Emmet verranno visualizzati come frammenti consentendo di ordinarli in base all'impostazione `#editor.snippetSuggestions#`.",
- "emmetSyntaxProfiles": "Consente di definire il profilo per la sintassi specificata oppure di usare un profilo personalizzato con regole specifiche.",
- "emmetTriggerExpansionOnTab": "Se abilitate, le abbreviazioni Emmet vengono espanse quando si preme TAB.",
- "emmetUseInlineCompletions": "Se `vero`, Emmet userà i completamenti inline per suggerire espansioni. Per evitare che il fornitore di elementi di completamento non-inline appaia così spesso quando questa impostazione è `vero`, impostare `#editor.quickSuggestions#` su `inline` o `off` per l’elemento `altro`.",
- "emmetVariables": "Variabili da usare negli frammenti Emmet."
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-it/translations/extensions/extension-editing.i18n.json b/i18n/vscode-language-pack-it/translations/extensions/extension-editing.i18n.json
deleted file mode 100644
index 000e65318e..0000000000
--- a/i18n/vscode-language-pack-it/translations/extensions/extension-editing.i18n.json
+++ /dev/null
@@ -1,30 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "dist/extensionLinter": {
- "apiProposalNotListed": "Non è possibile usare questa proposta perché per questa estensione il prodotto definisce un set fisso di proposte API. È possibile testare l'estensione, ma prima della pubblicazione è necessario contattare il team VS Code.",
- "dataUrlsNotValid": "Gli URL di dati non sono un'origine valida per le immagini.",
- "embeddedSvgsNotValid": "Le immagini di tipo SVG incorporate non sono un'origine valida.",
- "httpsRequired": "Le immagini devono usare il protocollo HTTPS.",
- "relativeBadgeUrlRequiresHttpsRepository": "Notifiche con URL relativo richiedono di specificare un repository con protocollo HTTPS in questo package.json.",
- "relativeIconUrlRequiresHttpsRepository": "Un'icona richiede di specificare un repository con protocollo HTTPS in questo package.json.",
- "relativeUrlRequiresHttpsRepository": "Immagini con URL relative richiedono di specificare un repository con protocollo HTTPS in package.json.",
- "svgsNotValid": "Le immagini di tipo SVG non sono un'origine valida."
- },
- "dist/packageDocumentHelper": {
- "languageSpecificEditorSettings": "Impostazioni dell'editor specifiche del linguaggio",
- "languageSpecificEditorSettingsDescription": "Esegue l'override delle impostazioni dell'editor per il linguaggio"
- },
- "package": {
- "description": "Fornisce funzionalità di linting per la creazione di estensioni.",
- "displayName": "Creazione estensione"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-it/translations/extensions/fsharp.i18n.json b/i18n/vscode-language-pack-it/translations/extensions/fsharp.i18n.json
deleted file mode 100644
index 5e2120406f..0000000000
--- a/i18n/vscode-language-pack-it/translations/extensions/fsharp.i18n.json
+++ /dev/null
@@ -1,16 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "package": {
- "description": "Offre i frammenti, la sottolineatura delle sintassi, la corrispondenza delle parentesi e la riduzione del codice nei file F#.",
- "displayName": "Nozioni di base sul linguaggio F#"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-it/translations/extensions/git-base.i18n.json b/i18n/vscode-language-pack-it/translations/extensions/git-base.i18n.json
deleted file mode 100644
index 7185a7bbcd..0000000000
--- a/i18n/vscode-language-pack-it/translations/extensions/git-base.i18n.json
+++ /dev/null
@@ -1,30 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "dist/remoteSource": {
- "branch name": "Nome ramo",
- "error": "{0} Errore: {1}",
- "none found": "Non sono stati trovati repository remoti.",
- "pick url": "Scegliere un URL da cui eseguire la clonazione.",
- "provide url": "Specificare l'URL del repository",
- "provide url or pick": "Specificare l'URL del repository o selezionare un'origine repository.",
- "recently opened": "aperti di recente",
- "remote sources": "origini remote",
- "type to filter": "Nome del repository",
- "type to search": "Nome del repository (digitare per eseguire la ricerca)",
- "url": "URL"
- },
- "package": {
- "command.api.getRemoteSources": "Ottieni Origini remote",
- "description": "Contributi statici e picker di Git.",
- "displayName": "Git Base"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-it/translations/extensions/git-ui.i18n.json b/i18n/vscode-language-pack-it/translations/extensions/git-ui.i18n.json
deleted file mode 100644
index d032f6a100..0000000000
--- a/i18n/vscode-language-pack-it/translations/extensions/git-ui.i18n.json
+++ /dev/null
@@ -1,16 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "package": {
- "displayName": "Interfaccia utente git",
- "description": "Integrazione interfaccia utente SCM in GIT"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-it/translations/extensions/git.i18n.json b/i18n/vscode-language-pack-it/translations/extensions/git.i18n.json
deleted file mode 100644
index 6ee1871a28..0000000000
--- a/i18n/vscode-language-pack-it/translations/extensions/git.i18n.json
+++ /dev/null
@@ -1,577 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "dist/actionButton": {
- "scm button commit and push title": "{0}commit e push",
- "scm button commit and push tooltip": "Commit e push delle modifiche",
- "scm button commit and sync title": "{0} commit e sincronizzazione",
- "scm button commit and sync tooltip": "Commit e sincronizzazione delle modifiche",
- "scm button commit title": "{0} commit",
- "scm button commit to new branch and push tooltip": "Eseguire commit in un nuovo ramo e push delle modifiche",
- "scm button commit to new branch and sync tooltip": "Eseguire commit in un nuovo ramo e sincronizzazione delle modifiche",
- "scm button commit to new branch tooltip": "Eseguire il commit delle modifiche apportate a un nuovo ramo",
- "scm button commit tooltip": "Eseguire il commit delle modifiche",
- "scm button committing and pushing tooltip": "Commit e push delle modifiche in corso...",
- "scm button committing and synching tooltip": "Commit e sincronizzazione delle modifiche in corso...",
- "scm button committing to new branch and pushing tooltip": "Eseguire commit in un nuovo ramo e pushing delle modifiche in corso...",
- "scm button committing to new branch and synching tooltip": "Eseguire commit in un nuovo ramo e sincronizzazione delle modifiche in corso...",
- "scm button committing to new branch tooltip": "Esecuzione del commit delle modifiche nel nuovo ramo in corso...",
- "scm button committing tooltip": "Commit delle modifiche in corso...",
- "scm button continue title": "{0} Continue",
- "scm button continue tooltip": "Continue Rebase",
- "scm button continuing tooltip": "Continuing Rebase...",
- "scm button publish branch": "Pubblica Branch",
- "scm button publish branch running": "Pubblicazione Branch in corso...",
- "scm button sync description": "{0} Sincronizza modifiche{1}{2}",
- "scm publish branch action button title": "{0} Pubblica Branch",
- "scm secondary button commit": "Esegui commit",
- "syncing changes": "Sincronizzazione delle modifiche in corso..."
- },
- "dist/askpass-main": {
- "missOrInvalid": "Credenziali mancanti o non valide."
- },
- "dist/autofetch": {
- "no": "No",
- "not now": "Chiedimelo in seguito",
- "suggest auto fetch": "Desideri che Code [esegua `git fetch` periodicamente]({0})?",
- "yes": "Sì"
- },
- "dist/commands": {
- "HEAD not available": "La versione HEAD di '{0}' non è disponibile.",
- "Theirs": "Versione server",
- "Yours": "Personale",
- "add": "Aggiungi all'Area di Lavoro",
- "add remote": "Aggiungi un nuovo computer remoto...",
- "addFrom": "Aggiungi repository remoto da URL",
- "addfrom": "Aggiungi repository remoto da {0}",
- "addremote": "Aggiungi repository remoto",
- "always": "Sempre",
- "are you sure": "Questo creerà un repository Git in '{0}'. Sei sicuro di voler continuare?",
- "auth failed": "Non è stato possibile eseguire l'autenticazione al repository remoto GIT.",
- "auth failed specific": "Non è stato possibile eseguire l'autenticazione al repository remoto GIT:\r\n\r\n{0}",
- "branch already exists": "La branch denominata '{0}' esiste già",
- "branch name": "Nome ramo",
- "branch name does not match sanitized": "Il nuovo ramo sarà '{0}'",
- "branch name format invalid": "Il nome del ramo deve corrispondere all'espressione regex: {0}",
- "cant push": "Impossibile fare push dei ref su remoto. Provare a eseguire un 'Pull' prima, per integrare le modifiche.",
- "checkout detached": "Checkout scollegato...",
- "choose": "Scegli cartella...",
- "clean repo": "Pulire l'albero di lavoro del repository prima dell'estrazione.",
- "clonefrom": "Clona da {0}",
- "cloning": "Clonazione del repository GIT '{0}'...",
- "commit": "Esegui commit delle modifiche per il commit",
- "commit anyway": "Crea commit vuoto",
- "commit changes": "Eseguire comunque il commit",
- "commit hash": "Hash del commit",
- "commit message": "Messaggio di commit",
- "commit to branch": "Eseguire il commit in un nuovo ramo",
- "commitMessageWithHeadLabel2": "Messaggio (commit in '{0}')",
- "confirm branch protection commit": "Si sta tentando di eseguire il commit in un ramo protetto e potrebbe non essere disponibile l'autorizzazione per eseguire il push dei commit nel ramo remoto.\r\n\r\nCome procedere?",
- "confirm delete": "ELIMINARE {0}? \r\nQuesta operazione è IRREVERSIBILE.\r\nSe si procede, questo file andrà PERSO DEFINITIVAMENTE.",
- "confirm delete multiple": "ELIMINARE {0} file? \r\nQuesta operazione è IRREVERSIBILE.\r\nSe si procede, questi file andranno PERSI DEFINITIVAMENTE.",
- "confirm discard": "Rimuovere le modifiche in {0}?",
- "confirm discard all": "Rimuovere TUTTE le modifiche apportate in {0} file?\r\nQuesta operazione è IRREVERSIBILE.\r\nSe si procede, il working set corrente andrà PERSO DEFINITIVAMENTE.",
- "confirm discard all 2": "{0}\r\n\r\nQuesta operazione è IRREVERSIBILE. Il working set corrente andrà PERSO PER SEMPRE.",
- "confirm discard all single": "Rimuovere le modifiche in {0}?",
- "confirm discard multiple": "Rimuovere le modifiche in {0} file?",
- "confirm empty commit": "Are you sure you want to create an empty commit?",
- "confirm force delete branch": "Il merge del ramo '{0}' non è completo. Elimina comunque?",
- "confirm force push": "Si sta per eseguire il push forzato delle modifiche. Questa operazione può essere distruttiva e comportare la sovrascrittura accidentale di modifiche apportate da altri utenti.\r\n\r\nContinuare?",
- "confirm no verify commit": "Si sta per eseguire il commit delle modifiche senza verifica. Con questa operazione gli hook pre-commit verranno ignorati e tale comportamento può non essere quello desiderato.\r\n\r\nContinuare?",
- "confirm publish branch": "Il ramo '{0}' non dispone di un ramo remoto. Pubblicare questo ramo?",
- "confirm restore": "Ripristinare {0}?",
- "confirm restore multiple": "Ripristinare {0} file?",
- "confirm stage file with merge conflicts": "Preparare per il commit {0} con conflitti di merge?",
- "confirm stage files with merge conflicts": "Preparare per il commit {0} file con conflitti di merge?",
- "create branch": "Crea nuovo ramo...",
- "create branch from": "Crea nuovo ramo da...",
- "create repo": "Inizializza repository",
- "current": "Corrente",
- "default": "Predefinito",
- "delete": "Elimina file",
- "delete branch": "Elimina ramo",
- "delete file": "Elimina file",
- "delete files": "Elimina file",
- "deleted by them": "Il file '{0}' è stato eliminato da altri utenti e modificato dall'utente corrente.\r\n\r\nCome si vuole procedere?",
- "deleted by us": "Il file '{0}' è stato eliminato dall'utente corrente e modificato da altri utenti.\r\n\r\nCome si vuole procedere?",
- "discard": "Rimuovi modifiche",
- "discardAll": "Rimuovi tutti i {0} file",
- "discardAll multiple": "Rimuovi 1 file",
- "drop all stashes": "Rimuovere TUTTI gli accantonamenti? Sono presenti {0} accantonamenti che verranno eliminati e POTREBBERO ESSERE IMPOSSIBILI DA RECUPERARE.",
- "drop one stash": "Rimuovere TUTTI gli accantonamenti? È presente 1 accantonamento che verrà eliminato e POTREBBE ESSERE IMPOSSIBILE DA RECUPERARE.",
- "empty commit": "L'operazione di commit è stata annullata a causa di un messaggio di commit vuoto.",
- "force": "Forza checkout",
- "force push not allowed": "Il push forzato non è consentito. Per abilitarlo, usare l'impostazione 'git.allowForcePush'.",
- "git error": "Errore GIT",
- "git error details": "GIT: {0}",
- "git.timeline.openDiffCommand": "Apri confronto",
- "git.title.diff": "{0} ↔ {1}",
- "git.title.diffRefs": "{0} ({1}) ↔ {0} ({2})",
- "git.title.index": "{0} (Indice)",
- "git.title.ref": "{0} ({1})",
- "git.title.workingTree": "{0} (Albero di lavoro)",
- "init": "Selezionare la cartella dell'area di lavoro in cui inizializzare il Git repo",
- "init repo": "Inizializza repository",
- "invalid branch name": "Nome di branch non valido",
- "keep ours": "Mantieni la versione dell'utente corrente",
- "keep theirs": "Mantieni la versione degli altri utenti",
- "learn more": "Altre informazioni",
- "local changes": "Le modifiche locali verranno sovrascritte dal checkout.",
- "merge commit": "L'ultimo commit è stato un commit di merge. Annullarlo?",
- "merge conflicts": "Ci sono conflitti di merge. Risolverli prima di eseguire commit.",
- "missing user info": "Assicurarsi di configurare 'user.name' e 'user.email' in GIT.",
- "never": "Mai",
- "never again": "OK, non visualizzare più",
- "never ask again": "OK, non visualizzare più questo messaggio",
- "no changes": "Non ci sono modifiche di cui eseguire il commit.",
- "no changes stash": "Non ci sono modifiche da accantonare.",
- "no more": "Non è possibile annullare l'operazione perché HEAD non fa riferimento ad alcun commit.",
- "no rebase": "Non è in corso alcuna riassegnazione.",
- "no remotes added": "Il repository non contiene repository remoti.",
- "no remotes to fetch": "Questo repository non ha remote configurati da cui eseguire un fetch.",
- "no remotes to publish": "Il repository non contiene elementi remoti configurati come destinazione della pubblicazione.",
- "no remotes to pull": "Il repository non contiene elementi remoti configurati come origini del pull.",
- "no remotes to push": "Il repository non contiene elementi remoti configurati come destinazione del push.",
- "no staged changes": "Non ci sono modifiche preparate per il commit di cui eseguire il commit.\r\n\r\nPreparare per il commit tutte le modifiche ed eseguirne il commit direttamente?",
- "no stashes": "Non ci sono accantonamenti nel repository.",
- "no tags": "Non esistono tag per questo repository.",
- "no verify commit not allowed": "I commit senza verifica non sono consentiti. Abilitarli con l'impostazione 'git.allowNoVerifyCommit'.",
- "nobranch": "Estrarre un ramo per eseguire il push in un elemento remoto.",
- "ok": "OK",
- "open git log": "Apri log GIT",
- "open repo": "Apri repository",
- "openrepo": "Apri",
- "openreponew": "Apri in una nuova finestra",
- "pick branch pull": "Selezionare un ramo da cui eseguire il pull",
- "pick provider": "Seleziona un provider in cui pubblicare il ramo '{0}':",
- "pick remote": "Selezionare un repository remoto in cui pubblicare il ramo '{0}':",
- "pick remote pull repo": "Selezionare un repository remoto da cui effettuare il pull del ramo",
- "pick stash to apply": "Scegli un accantonamento da applicare",
- "pick stash to drop": "Selezionare un accantonamento da rimuovere",
- "pick stash to pop": "Scegli un accantonamento da prelevare",
- "proposeopen": "Aprire il repository clonato?",
- "proposeopen init": "Aprire il repository inizializzato?",
- "proposeopen2": "Vuoi aprire il repository clonato o aggiungerlo all'area di lavoro corrente?",
- "proposeopen2 init": "Aprire il repository inizializzato o aggiungerlo all'area di lavoro corrente?",
- "provide branch name": "Specificare un nuovo nome di ramo",
- "provide commit hash": "Specificare l'hash del commit",
- "provide commit message": "Specificare un messaggio di commit",
- "provide remote name": "Specificare un nome di repository remoto",
- "provide stash message": "Specificare un messaggio di accantonamento (facoltativo)",
- "provide tag message": "Specificare un messaggio per aggiungere un'annotazione per il tag",
- "provide tag name": "Specificare un nome di tag",
- "publish to": "Pubblica in {0}",
- "remote already exists": "Il repository remoto '{0}' esiste già.",
- "remote branch at": "Ramo remoto in {0}",
- "remote name": "Nome del repository remoto",
- "remote name format invalid": "Il formato del nome di repository remoto non è valido",
- "remove remote": "Scegliere un repository remoto da rimuovere",
- "repourl": "URL del repository",
- "restore file": "Ripristina il file",
- "restore files": "Ripristina i file",
- "save and commit": "Salva tutto & esegui Commit",
- "save and stash": "Salva tutto e accantona",
- "select a branch to merge from": "Selezionare un ramo da cui eseguire il merge",
- "select a branch to rebase onto": "Selezionare un ramo in base a cui eseguire la riassegnazione",
- "select a ref to checkout": "Selezionare un ref di cui eseguire checkout",
- "select a ref to checkout detached": "Selezionare un riferimento per il checkout in modalità scollegata",
- "select a ref to create a new branch from": "Seleziona un riferimento da cui creare il ramo '{0}'",
- "select a tag to delete": "Selezionare un tag da eliminare",
- "select branch to delete": "Seleziona un ramo da cancellare",
- "select log level": "Seleziona il livello log",
- "selectFolder": "Seleziona il Percorso del Repository",
- "show command output": "Mostra output del comando",
- "stash": "Accantona comunque",
- "stash merge conflicts": "Si sono verificati conflitti di merge durante l'applicazione dell'accantonamento.",
- "stash message": "Messaggio di accantonamento",
- "stashcheckout": "Accantona ed esegui checkout",
- "sure drop": "Rimuovere l'accantonamento {0}?",
- "sync is unpredictable": "Questa azione eseguirà il pull e il push dei commit da e verso '{0}/{1}'.",
- "tag at": "Tag in {0}",
- "tag message": "Messaggio",
- "tag name": "Nome tag",
- "there are untracked files": "Se rimossi, {0} file di cui non viene tenuta traccia verranno ELIMINATI DAL DISCO.",
- "there are untracked files single": "Se rimosso, il file seguente di cui non viene tenuta traccia verrà ELIMINATO DAL DISCO: {0}.",
- "undo commit": "Annulla commit di merge",
- "unsaved files": "Sono presenti {0} file non salvati.\r\n\r\nSalvarli prima di eseguire il commit?",
- "unsaved files single": "Il file seguente contiene modifiche non salvate che non verranno incluse nel commit se si procede: {0}.\r\n\r\nSalvarlo prima del commit?",
- "unsaved stash files": "Sono presenti {0} file non salvati.\r\n\r\nSalvarli prima dell'accantonamento?",
- "unsaved stash files single": "Il file seguente contiene modifiche non salvate che non verranno incluse nell'accantonamento se si procede: {0}.\r\n\r\nSalvarlo prima dell'accantonamento?",
- "warn untracked": "{0} file non verificati verranno ELIMINATI.\r\nQuesta operazione è IRREVERSIBILE.\r\nQuesti file andranno PERSI DEFINITIVAMENTE.",
- "yes": "Sì",
- "yes discard tracked": "Rimuovi 1 file di cui viene tenuta traccia",
- "yes discard tracked multiple": "Rimuovi {0} file di cui viene tenuta traccia",
- "yes never again": "Sì, non visualizzare più questo messaggio"
- },
- "dist/log": {
- "gitLogLevel": "Livello log: {0}"
- },
- "dist/main": {
- "downloadgit": "Scarica GIT",
- "git20": "La versione installata di GIT è la {0}. Per il corretto funzionamento di Code è consigliabile usare una versione di GIT non inferiore alla 2.",
- "git2526": "La versione installata {0} di GIT causa problemi noti. Per il corretto funzionamento delle funzionalità GIT, è necessario eseguire l'aggiornamento a GIT >= 2.27.",
- "neverShowAgain": "Non visualizzare più questo messaggio",
- "notfound": "Git non trovato. Installarlo o configurarlo usando l'impostazione 'git.path'.",
- "skipped": "Il git trovato in: {0} è stato ignorato",
- "updateGit": "Aggiorna GIT",
- "using git": "Uso di GIT {0} da {1}",
- "validating": "Convalida del GIT trovato in: {0}"
- },
- "dist/model": {
- "no repositories": "Non ci sono repository disponibili",
- "not supported": "I percorsi assoluti non sono supportati nell'impostazione 'git.scanRepositories'.",
- "pick repo": "Scegli un repository",
- "repoOnHomeDriveRootWarning": "Non è possibile aprire automaticamente il repository GIT in '{0}'. Per aprire il repository GIT, aprirlo direttamente come cartella in VS Code.",
- "too many submodules": "Il repository '{0}' ha {1} sottomoduli che non verranno aperti automaticamente. È possibile comunque aprirli individualmente aprendo il file all'interno."
- },
- "dist/postCommitCommands": {
- "scm secondary button commit and push": "Esegui commit e push",
- "scm secondary button commit and sync": "Esegui commit e sincronizzazione"
- },
- "dist/repository": {
- "add known": "Aggiungere '{0}' a .gitignore?",
- "added by them": "Conflitto: aggiunto dall'utente",
- "added by us": "Conflitto: aggiunto da Microsoft",
- "always pull": "Esegui sempre il pull",
- "both added": "Conflitto: aggiunto dall'utente e da Microsoft",
- "both deleted": "Conflitto: eliminato dall'utente e da Microsoft",
- "both modified": "Conflitto: modificato dall'utente e da Microsoft",
- "changes": "Modifiche",
- "commit": "Esegui commit",
- "commit in rebase": "Non è possibile modificare il messaggio di commit durante una riassegnazione. Completare l'operazione corrente e usare invece una riassegnazione interattiva.",
- "commitMessage": "Messaggio ({0} per eseguire il commit)",
- "commitMessageCountdown": "ancora {0} caratteri disponibili nella riga corrente",
- "commitMessageWarning": "{0} caratteri rispetto ai {1} disponibili nella riga corrente",
- "commitMessageWhitespacesOnlyWarning": "Il messaggio di commit corrente contiene solo spazi vuoti",
- "commitMessageWithHeadLabel": "Messaggio ({0} per eseguire il commit in '{1}')",
- "deleted": "Eliminato",
- "deleted by them": "Conflitto: eliminato dall'utente",
- "deleted by us": "Conflitto: eliminato da Microsoft",
- "dont pull": "Non eseguire il pull",
- "git.title.deleted": "{0} (eliminato)",
- "git.title.index": "{0} (indice)",
- "git.title.ours": "{0} (versione utente)",
- "git.title.theirs": "{0} (versione server)",
- "git.title.untracked": "{0} (non tracciati)",
- "git.title.workingTree": "{0} (albero di lavoro)",
- "huge": "Il repository git '{0}' ha troppe modifiche attive - verrà attivato solo un sottoinsieme delle funzionalità di Git.",
- "ignored": "Ignorato",
- "index added": "Indice aggiunto",
- "index copied": "Indice copiato",
- "index deleted": "Indice eliminato",
- "index modified": "Indice modificato",
- "index renamed": "Indice rinominato",
- "intent to add": "Finalità da aggiungere",
- "merge changes": "Esegui merge delle modifiche",
- "modified": "Modificato",
- "neveragain": "Non visualizzare più questo messaggio",
- "no": "No",
- "ok": "OK",
- "open": "Apri",
- "open.merge": "Apri merge",
- "pull": "Esegui pull",
- "pull branch maybe rebased": "Il ramo corrente '{0}' potrebbe essere stato riassegnato. Eseguire comunque il pull in esso?",
- "pull maybe rebased": "Il ramo corrente potrebbe essere stato riassegnato. Eseguire comunque il pull in esso?",
- "pull n": "Esegui il pull di {0} commit da {1}/{2}",
- "pull push n": "Esegui il pull di {0} e il push di {1} commit tra {2}/{3}",
- "push n": "Esegui il push di {0} commit in {1}/{2}",
- "push success": "Push avvenuto con successo.",
- "staged changes": "Modifiche preparate per il commit",
- "sync changes": "Sincronizza modifiche",
- "sync is unpredictable": "Sincronizzazione in corso. L'annullamento dell'operazione può causare gravi danni al repository",
- "tooManyChangesWarning": "Sono state rilevate troppe modifiche. Di seguito verranno visualizzate solo le prime {0} modifiche.",
- "untracked": "Non registrato",
- "untracked changes": "Modifiche non tracciate",
- "yes": "Sì"
- },
- "dist/statusbar": {
- "checkout": "Esegui il checkout del ramo/tag...",
- "publish branch": "Pubblica Ramo",
- "publish to": "Pubblica in {0}",
- "publish to...": "Pubblica in...",
- "rebasing": "Rebase in corso",
- "syncing changes": "Sincronizzazione delle modifiche in corso..."
- },
- "dist/timelineProvider": {
- "git.timeline.email": "Indirizzo di posta elettronica",
- "git.timeline.openComparison": "Apri confronto",
- "git.timeline.source": "Cronologia GIT",
- "git.timeline.stagedChanges": "Modifiche preparate per il commit",
- "git.timeline.uncommitedChanges": "Modifiche non sottoposte a commit",
- "git.timeline.you": "Utente"
- },
- "package": {
- "colors.added": "Colore delle risorse aggiunte.",
- "colors.conflict": "Colore delle risorse con conflitti.",
- "colors.deleted": "Colore delle risorse eliminate.",
- "colors.ignored": "Colore delle risorse ignorate.",
- "colors.modified": "Colore delle risorse modificate.",
- "colors.renamed": "Colore delle risorse rinominate o copiate.",
- "colors.stageDeleted": "Colore per le risorse eliminate che sono state preparate per il commit.",
- "colors.stageModified": "Colore per le risorse modificate che sono state preparate per il commit.",
- "colors.submodule": "Colore delle risorse sottomodulo.",
- "colors.untracked": "Colore delle risorse non tracciate.",
- "command.addRemote": "Aggiungi repository remoto...",
- "command.api.getRemoteSources": "Ottieni Origini remote",
- "command.api.getRepositories": "Ottieni Repository",
- "command.api.getRepositoryState": "Ottieni Stato repository",
- "command.branch": "Crea ramo...",
- "command.branchFrom": "Crea ramo da...",
- "command.checkout": "Esegui checkout in...",
- "command.checkoutDetached": "Esegui checkout in (modalità scollegata)...",
- "command.cherryPick": "Esegui cherry-pick...",
- "command.clean": "Rimuovi modifiche",
- "command.cleanAll": "Rimuovi tutte le modifiche",
- "command.cleanAllTracked": "Rimuovi tutte le modifiche tracciate",
- "command.cleanAllUntracked": "Rimuovi tutte le modifiche non tracciate",
- "command.clone": "Clona",
- "command.cloneRecursive": "Clona (ricorsivo)",
- "command.close": "Chiudi repository",
- "command.closeAllDiffEditors": "Chiudi tutti gli editor diff",
- "command.commit": "Esegui commit",
- "command.commitAll": "Esegui commit di tutto",
- "command.commitAllAmend": "Esegui commit di tutto (modifica)",
- "command.commitAllAmendNoVerify": "Esegui commit di tutto (modifica, nessuna verifica)",
- "command.commitAllNoVerify": "Esegui commit di tutto (nessuna verifica)",
- "command.commitAllSigned": "Esegui commit di tutto (approvazione)",
- "command.commitAllSignedNoVerify": "Esegui commit di tutto (approvazione, nessuna verifica)",
- "command.commitEmpty": "Commit vuoto",
- "command.commitEmptyNoVerify": "Commit vuoto (nessuna verifica)",
- "command.commitMessageAccept": "Accettare messaggio di commit",
- "command.commitMessageDiscard": "Rimuovere messaggio di commit",
- "command.commitNoVerify": "Esegui commit (nessuna verifica)",
- "command.commitStaged": "Esegui commit dei file preparati",
- "command.commitStagedAmend": "Esegui commit dei file preparati (modifica)",
- "command.commitStagedAmendNoVerify": "Esegui commit dei file preparati (modifica, nessuna verifica)",
- "command.commitStagedNoVerify": "Esegui commit dei file preparati (nessuna verifica)",
- "command.commitStagedSigned": "Esegui commit dei file preparati (approvazione)",
- "command.commitStagedSignedNoVerify": "Esegui commit dei file preparati (approvazione, nessuna verifica)",
- "command.createTag": "Crea tag",
- "command.deleteBranch": "Elimina ramo...",
- "command.deleteTag": "Elimina tag",
- "command.fetch": "Recupera",
- "command.fetchAll": "Recupera da tutti gli elementi remoti",
- "command.fetchPrune": "Recupera (elimina)",
- "command.git.acceptMerge": "Accetta merge",
- "command.ignore": "Aggiungi a .gitignore",
- "command.init": "Inizializza repository",
- "command.merge": "Merge ramo...",
- "command.openAllChanges": "Apri tutte le modifiche",
- "command.openChange": "Apri modifiche",
- "command.openFile": "Apri file",
- "command.openHEADFile": "Apri File (HEAD)",
- "command.openRepository": "Apri repository",
- "command.publish": "Pubblica ramo...",
- "command.pull": "Esegui pull",
- "command.pullFrom": "Pull da...",
- "command.pullRebase": "Esegui pull (Riassegna)",
- "command.push": "Esegui push",
- "command.pushFollowTags": "Esegui push (segui tag)",
- "command.pushFollowTagsForce": "Esegui push (segui tag, forzato)",
- "command.pushForce": "Esegui push (Forza)",
- "command.pushTags": "Esegui push dei tag",
- "command.pushTo": "Esegui push in...",
- "command.pushToForce": "Push in... (Forza)",
- "command.rebase": "Riassegna ramo...",
- "command.rebaseAbort": "Interrompi riassegnazione",
- "command.refresh": "Aggiorna",
- "command.removeRemote": "Rimuovi repository remoto",
- "command.rename": "Rinomina",
- "command.renameBranch": "Rinomina Branch...",
- "command.restoreCommitTemplate": "Ripristina il modello di Commit",
- "command.revealFileInOS.linux": "Aprire cartella superiore",
- "command.revealFileInOS.mac": "Visualizzare in Finder",
- "command.revealFileInOS.windows": "Visualizza in Esplora file",
- "command.revealInExplorer": "Visualizza nella vista Esplora risorse",
- "command.revertChange": "Annulla modifica",
- "command.revertSelectedRanges": "Ripristina intervalli selezionati",
- "command.setLogLevel": "Imposta livello log...",
- "command.showOutput": "Mostra output GIT",
- "command.stage": "Prepara modifiche per commit",
- "command.stageAll": "Prepara tutte le modifiche per commit",
- "command.stageAllMerge": "Prepara per il commit tutte le modifiche di merge",
- "command.stageAllTracked": "Prepara per il commit tutte le modifiche non tracciate",
- "command.stageAllUntracked": "Prepara per commit tutte le modifiche non tracciate",
- "command.stageChange": "Prepara modifica per commit",
- "command.stageSelectedRanges": "Prepara per il commit intervalli selezionati",
- "command.stash": "Accantona",
- "command.stashApply": "Applica Stash...",
- "command.stashApplyLatest": "Applica ultimo Stash",
- "command.stashDrop": "Rimuovi accantonamento...",
- "command.stashDropAll": "Rimuovi tutti gli accantonamenti...",
- "command.stashIncludeUntracked": "Stash (includi non tracciate)",
- "command.stashPop": "Preleva accantonamento...",
- "command.stashPopLatest": "Preleva accantonamento più recente",
- "command.sync": "Sincronizza",
- "command.syncRebase": "Sincronizza (Rebase)",
- "command.timelineCompareWithSelected": "Confronta con selezionati",
- "command.timelineCopyCommitId": "Copia ID commit",
- "command.timelineCopyCommitMessage": "Copia messaggio di commit",
- "command.timelineOpenDiff": "Apri modifiche",
- "command.timelineSelectForCompare": "Seleziona per il confronto",
- "command.undoCommit": "Annulla ultimo commit",
- "command.unstage": "Annulla preparazione modifiche per commit",
- "command.unstageAll": "Annulla preparazione di tutte le modifiche per commit",
- "command.unstageSelectedRanges": "Annulla preparazione per il commit di intervalli selezionati",
- "config.allowForcePush": "Controlla se il push forzato (con o senza lease) è abilitato.",
- "config.allowNoVerifyCommit": "Controlla se consentire i commit senza l'esecuzione di hook pre-commit e commit-msg.",
- "config.alwaysShowStagedChangesResourceGroup": "Mostra sempre il gruppo di risorse Modifiche preparate per il commit.",
- "config.alwaysSignOff": "Controlla il flag di signoff per tutti i commit.",
- "config.autoRepositoryDetection": "Configura quando il repository dovrebbe essere rilevato automaticamente.",
- "config.autoRepositoryDetection.false": "Disabilita la scansione automatica del repository.",
- "config.autoRepositoryDetection.openEditors": "Esegue la scansione per individuare le cartelle padre dei file aperti.",
- "config.autoRepositoryDetection.subFolders": "Esegue la scansione per individuare le sottocartelle della cartella attualmente aperta.",
- "config.autoRepositoryDetection.true": "Esegue la scansione per individuare le sottocartelle della cartella attualmente aperta e le cartelle padre dei file aperti.",
- "config.autoStash": "Accantona eventuali modifiche prima del pull e le ripristina dopo un pull riuscito.",
- "config.autofetch": "Quando è impostata su true, i commit verranno recuperati automaticamente dal repository remoto del repository GIT corrente. Se è impostata su `all`, verranno recuperati da tutti i repository remoti.",
- "config.autofetchPeriod": "Durata in secondi tra ogni git fetch automatico, quando è abilitata l'opzione `#git.autofetch#`.",
- "config.autorefresh": "Indica se l'aggiornamento automatico è abilitato.",
- "config.branchPrefix": "Prefisso usato per la creazione di un nuovo ramo.",
- "config.branchProtection": "Elenco di rami protetti. Per impostazione predefinita, viene visualizzato un prompt prima del commit delle modifiche in un ramo protetto. È possibile controllare la richiesta usando l'impostazione '#git.branchProtectionPrompt#'.",
- "config.branchProtectionPrompt": "Controlla se viene visualizzato un prompt prima del commit delle modifiche in un ramo protetto.",
- "config.branchProtectionPrompt.alwaysCommit": "Eseguire sempre il commit delle modifiche nel ramo protetto.",
- "config.branchProtectionPrompt.alwaysCommitToNewBranch": "Eseguire il commit delle modifiche apportate a un nuovo ramo.",
- "config.branchProtectionPrompt.alwaysPrompt": "Chiedere sempre conferma prima di eseguire il commit delle modifiche in un ramo protetto.",
- "config.branchRandomNameDictionary": "Elenco di dizionari usati per il nome del ramo generato in modo casuale. Ogni valore rappresenta il dizionario utilizzato per generare il segmento del nome del ramo. Dizionari supportati: 'aggettivi', 'animali', 'colori' e 'numeri'.",
- "config.branchRandomNameDictionary.adjectives": "Aggettivo casuale",
- "config.branchRandomNameDictionary.animals": "Nome animale casuale",
- "config.branchRandomNameDictionary.colors": "Nome colore casuale",
- "config.branchRandomNameDictionary.numbers": "Un un numero casuale compreso tra 100 e 999",
- "config.branchRandomNameEnable": "Controlla se viene generato un nome casuale durante la creazione di un nuovo ramo.",
- "config.branchSortOrder": "Controlla l'ordinamento per i rami.",
- "config.branchValidationRegex": "Un'espressione regolare per validare i nomi delle nuove branch.",
- "config.branchWhitespaceChar": "Carattere per sostituire gli spazi vuoti nei nuovi nomi di ramo e per separare i segmenti di un nome di ramo generato in modo casuale.",
- "config.checkoutType": "Controlla il tipo di riferimenti GIT elencati quando si esegue `Esegui checkout in...`.",
- "config.checkoutType.local": "Rami locali",
- "config.checkoutType.remote": "Rami remoti",
- "config.checkoutType.tags": "Tag",
- "config.closeDiffOnOperation": "Controllare se l'editor diff deve essere chiuso automaticamente quando le modifiche vengono accantonate, salvate, rimosse, preparate per il commit o non preparate per il commit.",
- "config.commandsToLog": "Elenco di comandi GIT (ad esempio commit, push) per i quali verrebbe registrato il relativo 'stdout' nel [git output](command:git.showOutput). Se per il comando GIT è configurato un hook lato client, verrà registrato anche il valore 'stdout' dell'hook lato client nel [git output](command:git.showOutput).",
- "config.confirmEmptyCommits": "Conferma sempre la creazione di commit vuoti per il comando 'Git: Commit vuoto'.",
- "config.confirmForcePush": "Controlla se chiedere conferma prima di eseguire il push forzato.",
- "config.confirmNoVerifyCommit": "Controlla se chiedere conferma prima di eseguire il commit senza verifica.",
- "config.confirmSync": "Confermare prima di sincronizzare i repository GIT.",
- "config.countBadge": "Controlla la notifica del conteggio GIT.",
- "config.countBadge.all": "Esegue il conteggio di tutte le modifiche.",
- "config.countBadge.off": "Disattiva il contatore.",
- "config.countBadge.tracked": "Esegue il conteggio solo delle revisioni.",
- "config.decorations.enabled": "Controlla se GIT aggiunge come contributo colori e notifiche nelle visualizzazioni Esplora risorse e Editor aperti.",
- "config.defaultCloneDirectory": "Il percorso predefinito in cui clonare un repository GIT.",
- "config.detectSubmodules": "Controlla se rilevare automaticamente i moduli secondari GIT.",
- "config.detectSubmodulesLimit": "Controlla il limite dei sottomoduli git rilevati.",
- "config.discardAllScope": "Controlla quali modifiche vengono rimosse tramite il comando `Rimuovi tutte le modifiche`. Con `all` vengono rimosse tutte le modifiche. Con `tracked` vengono rimossi solo i file di cui viene tenuta traccia. Con `prompt` viene visualizzata una finestra di dialogo ogni volta che si esegue l'azione.",
- "config.enableCommitSigning": "Abilita la firma del commit con GPG o X.509.",
- "config.enableSmartCommit": "Eseguire il commit di tutte le modifiche quando non ci sono modifiche preparate.",
- "config.enableStatusBarSync": "Controlla se il comando Git Sync è visualizzato nella barra di stato.",
- "config.enabled": "Indica se GIT è abilitato.",
- "config.experimental.installGuide": "Miglioramenti sperimentali per il flusso di installazione di GIT.",
- "config.fetchOnPull": "Quando è abilitato, recupera tutti i rami durante il pulling; altrimenti recupera solo il ramo corrente.",
- "config.followTagsWhenSync": "Esegui il push di tutti i tag durante l'esecuzione del comando di sincronizzazione.",
- "config.ignoreLegacyWarning": "Ignora l'avvertimento legacy di Git.",
- "config.ignoreLimitWarning": "Ignora il messaggio di avviso quando ci sono troppe modifiche in un repository.",
- "config.ignoreMissingGitWarning": "Ignora il messaggio di avviso quando manca GIT.",
- "config.ignoreRebaseWarning": "Ignora l'avviso quando il ramo potrebbe essere stato riassegnato durante il pull.",
- "config.ignoreSubmodules": "Ignora le modifiche apportate ai moduli secondari nell'albero dei file.",
- "config.ignoreWindowsGit27Warning": "Ignora il messaggio di avviso quando Git 2.25 - 2.26 è installato in Windows.",
- "config.ignoredRepositories": "Elenco dei repository GIT da ignorare.",
- "config.inputValidation": "Controlla quando visualizzare la convalida sull'input del messaggio di commit.",
- "config.inputValidationLength": "Controlla la soglia di lunghezza del messaggio di commit per mostrare un avviso.",
- "config.inputValidationSubjectLength": "Controlla la soglia relativa alla lunghezza dell'oggetto del messaggio di commit per la visualizzazione di un avviso. Disattivarlo per ereditare il valore di `config.inputValidationLength`.",
- "config.logLevel": "Specifica la quantità di informazioni (se presenti) da registrare nell'[output git](command:git.showOutput).",
- "config.logLevel.critical": "Registrare solo informazioni critiche",
- "config.logLevel.debug": "Registrare solo debug, informazioni, avvisi, errori e informazioni critiche",
- "config.logLevel.error": "Registrare solo errori e informazioni critiche",
- "config.logLevel.info": "Registrare solo informazioni, avvisi, errori e informazioni critiche",
- "config.logLevel.off": "Non registrare nulla",
- "config.logLevel.trace": "Registrare tutte le informazioni",
- "config.logLevel.warn": "Registrare solo avvisi, errori e informazioni critiche",
- "config.mergeEditor": "Apri l'editor merge per i file attualmente in conflitto.",
- "config.openAfterClone": "Controlla se aprire automaticamente un repository dopo la clonazione.",
- "config.openAfterClone.always": "Apri sempre nella finestra corrente.",
- "config.openAfterClone.alwaysNewWindow": "Apri sempre in una nuova finestra.",
- "config.openAfterClone.prompt": "Richiedi sempre l'azione da eseguire.",
- "config.openAfterClone.whenNoFolderOpen": "Apri solo nella finestra corrente quando non è alcuna cartella.",
- "config.openDiffOnClick": "Controlla se aprire l'editor diff quando si fa clic su una modifica; in caso contrario verrà aperto l'editor normale.",
- "config.path": "Percorso e nome file dell'eseguibile GIT, ad esempio `C:\\Programmi\\Git\\bin\\git.exe` (Windows). Può trattarsi di una matrice di valori stringa che contengono più percorsi da cercare.",
- "config.postCommitCommand": "Esegue un comando git dopo un'operazione commit riuscita.",
- "config.postCommitCommand.none": "Non eseguire alcun comando dopo un commit.",
- "config.postCommitCommand.push": "Esegue 'Git Push' dopo un commit riuscito.",
- "config.postCommitCommand.sync": "Esegue 'Git Sync' dopo un commit riuscito.",
- "config.promptToSaveFilesBeforeCommit": "Controlla se GIT deve verificare la presenza di file non salvati prima di eseguire il commit.",
- "config.promptToSaveFilesBeforeCommit.always": "Verifica la presenza di eventuali file non salvati.",
- "config.promptToSaveFilesBeforeCommit.never": "Disabilita questo controllo.",
- "config.promptToSaveFilesBeforeCommit.staged": "Verificare solo la presenza di file di stage non salvati.",
- "config.promptToSaveFilesBeforeStash": "Controlla se GIT deve verificare la presenza di file non salvati prima di accantonare le modifiche.",
- "config.promptToSaveFilesBeforeStash.always": "Verifica la presenza di eventuali file non salvati.",
- "config.promptToSaveFilesBeforeStash.never": "Disabilita questo controllo.",
- "config.promptToSaveFilesBeforeStash.staged": "Verificare solo la presenza di file di stage non salvati.",
- "config.pruneOnFetch": "Elimina durante il recupero.",
- "config.pullTags": "Recupera tutti i tag durante il pull.",
- "config.rebaseWhenSync": "Forza git a usare rebase durante l'esecuzione del comando di sincronizzazione.",
- "config.repositoryScanIgnoredFolders": "Elenco di cartelle ignorate durante l'analisi dei repository GIT quando '#git.autoRepositoryDetection#' è impostato su 'true' o 'subFolders'.",
- "config.repositoryScanMaxDepth": "Controlla la profondità usata per l'analisi delle cartelle dell'area di lavoro per i repository GIT quando '#git.autoRepositoryDetection#' è impostato su 'true' o 'subFolders'. Può essere impostato su '-1' per nessun limite.",
- "config.requireGitUserConfig": "Controlla se richiedere la configurazione esplicita dell'utente GIT o lasciare che sia GIT a indovinarla se non è presente.",
- "config.scanRepositories": "Elenco dei percorsi in cui cercare i repository GIT.",
- "config.showActionButton": "Consente di controllare se è visualizzato un pulsante di azione nella visualizzazione del codice sorgente.",
- "config.showActionButton.commit": "Mostrare un pulsante di azione per eseguire il commit delle modifiche quando il ramo locale ha modificato i file pronti per il commit.",
- "config.showActionButton.publish": "Mostrare un pulsante di azione per pubblicare il ramo locale quando non è disponibile un ramo remoto di rilevamento.",
- "config.showActionButton.sync": "Mostrare un pulsante di azione per sincronizzare le modifiche quando il ramo locale è avanti o dietro il ramo remoto.",
- "config.showCommitInput": "Controlla se mostrare l'input del commit nel pannello del controllo del codice sorgente GIT.",
- "config.showInlineOpenFileAction": "Controlla se visualizzare un'azione Apri file inline nella visualizzazione modifiche GIT.",
- "config.showProgress": "Determina se le azioni git devono mostrare lo stato di avanzamento.",
- "config.showPushSuccessNotification": "Controlla se visualizzare una notifica quando un push è avvenuto con successo.",
- "config.smartCommitChanges": "Controlla quali modifiche vengono automaticamente preparate per il commit da Commit intelligente.",
- "config.smartCommitChanges.all": "Prepara automaticamente tutte le modifiche per il commit.",
- "config.smartCommitChanges.tracked": "Solo modifiche tracciate automaticamente preparate per il commit.",
- "config.statusLimit": "Controlla come limitare il numero di modifiche che è possibile analizzare dal comando di stato GIT. Può essere impostato su 0 per non porre alcun limite.",
- "config.suggestSmartCommit": "Suggerisce di abilitare il commit intelligente (eseguire il commit di tutte le modifiche quando non ci sono modifiche preparate per il commit).",
- "config.supportCancellation": "Controlla se durante l'esecuzione dell'azione Sync viene inviata una notifica, che consente all'utente di annullare l'operazione.",
- "config.terminalAuthentication": "Controlla se abilitare VS Code come gestore di autenticazione per i processi GIT generati nel terminale integrato. Nota: per rendere effettiva una modifica di questa impostazione, è necessario riavviare i terminali.",
- "config.terminalGitEditor": "Controlla se abilitare VS Code come gestore di autenticazione per i processi GIT generati nel terminale integrato. Nota: per rendere effettiva una modifica di questa impostazione, è necessario riavviare i terminali.",
- "config.timeline.date": "Controlla la data da usare per gli elementi nella visualizzazione Sequenza temporale.",
- "config.timeline.date.authored": "Usa la data di creazione",
- "config.timeline.date.committed": "Usa la data di commit",
- "config.timeline.showAuthor": "Controlla se visualizzare l'autore del commit nella visualizzazione Sequenza temporale.",
- "config.timeline.showUncommitted": "Controlla se visualizzare le modifiche di cui non è stato eseguito il commit nella visualizzazione Sequenza temporale.",
- "config.untrackedChanges": "Controlla il comportamento delle modifiche non tracciate.",
- "config.untrackedChanges.hidden": "Le modifiche non tracciate vengono nascoste ed escluse da diverse azioni.",
- "config.untrackedChanges.mixed": "Tutte le modifiche, tracciate e non tracciate, vengono visualizzate insieme e si comportano allo stesso modo.",
- "config.untrackedChanges.separate": "Le modifiche non tracciate vengono visualizzate separatamente nella visualizzazione Controllo del codice sorgente. Sono inoltre escluse da diverse azioni.",
- "config.useCommitInputAsStashMessage": "Controlla se usare il messaggio della casella di input di commit come messaggio predefinito per l'accantonamento.",
- "config.useEditorAsCommitInput": "Controlla se verrà usato un editor full-text per creare messaggi di commit ogni volta che non viene specificato alcun messaggio nella casella di input di commit.",
- "config.useForcePushWithLease": "Controlla se il push forzato usa la variante più sicura di forzatura con lease.",
- "config.useIntegratedAskPass": "Controlla se GIT_ASKPASS deve essere sovrascritto per usare la versione integrata.",
- "config.verboseCommit": "Abilita l'output dettagliato quando '#git.useEditorAsCommitInput#' è abilitato.",
- "description": "Integrazione SCM su Git",
- "displayName": "GIT",
- "submenu.branch": "Crea ramo",
- "submenu.changes": "Modifiche",
- "submenu.commit": "Esegui commit",
- "submenu.commit.amend": "Modifica",
- "submenu.commit.signoff": "Approva",
- "submenu.explorer": "GIT",
- "submenu.pullpush": "Esegui pull/push",
- "submenu.remotes": "Repository remoto",
- "submenu.stash": "Accantona",
- "submenu.tags": "Tag",
- "view.workbench.cloneRepository": "È possibile clonare un repository in locale.\r\n[Clona repository](command:git.clone 'Clona un repository dopo l'attivazione dell'estensione GIT')",
- "view.workbench.learnMore": "Per altre informazioni su come usare GIT e il controllo del codice sorgente in VS Code, [leggere la documentazione](https://aka.ms/vscode-scm).",
- "view.workbench.scm.disabled": "Se si vogliono usare le funzionalità GIT, abilitare GIT nelle [impostazioni](command:workbench.action.openSettings?%5B%22git.enabled%22%5D).\r\nPer altre informazioni su come usare GIT e il controllo del codice sorgente in VS Code, [leggere la documentazione](https://aka.ms/vscode-scm).",
- "view.workbench.scm.empty": "Per usare le funzionalità GIT, è possibile aprire una cartella contenente un repository GIT o clonarlo da un URL.\r\n[Apri cartella](command:vscode.openFolder)\r\n[Clona repository](command:git.clone)\r\nPer altre informazioni su come usare GIT e il controllo del codice sorgente in VS Code, [leggere la documentazione](https://aka.ms/vscode-scm).",
- "view.workbench.scm.emptyWorkspace": "L'area di lavoro attualmente aperta non contiene cartelle con repository GIT.\r\n[Aggiungi cartella all'area di lavoro](command:workbench.action.addRootFolder)\r\nPer altre informazioni su come usare GIT e il controllo del codice sorgente in VS Code, [leggere la documentazione](https://aka.ms/vscode-scm).",
- "view.workbench.scm.folder": "La cartella attualmente aperta non contiene un repository GIT. È possibile inizializzare un repository che abiliterà le funzionalità di controllo del codice sorgente basate su GIT.\r\n[Inizializza repository](command:git.init?%5Btrue%5D)\r\nPer altre informazioni su come usare GIT e il controllo del codice sorgente in VS Code, [leggere la documentazione](https://aka.ms/vscode-scm).",
- "view.workbench.scm.missing": "Installare Git, un sistema di controllo del codice sorgente più richiesto, per tenere traccia delle modifiche al codice e collaborare con altri utenti. Per altre informazioni, vedere le [Git guides](https://aka.ms/vscode-scm).",
- "view.workbench.scm.missing.linux": "Il controllo del codice sorgente dipende dall'installazione di Git.\r\n[Download Git for Linux](https://git-scm.com/download/linux)\r\nDopo l'installazione, si prega di [reload](command:workbench.action.reloadWindow) (or [troubleshoot](command:git.showOutput)). È possibile installare altri provider del controllo del codice sorgente [from the Marketplace](command:workbench.extensions.search?%22%40category%3A%5C%22scm%20providers%5C%22%22).",
- "view.workbench.scm.missing.mac": "[Download Git for macOS](https://git-scm.com/download/mac)\r\nDopo l'installazione, [reload](command:workbench.action.reloadWindow) (o [troubleshoot](command:git.showOutput)). È possibile installare altri provider del controllo del codice sorgente [from the Marketplace](command:workbench.extensions.search?%22%40category%3A%5C%22scm%20provider%5C%22%22).",
- "view.workbench.scm.missing.windows": "[Download Git for Windows](https://git-scm.com/download/win)\r\nDopo l'installazione, [reload](command:workbench.action.reloadWindow) (o [troubleshoot](command:git.showOutput)). È possibile installare altri provider del controllo del codice sorgente [from the Marketplace](command:workbench.extensions.search?%22%40category%3A%5C%22scm%20provider%5C%22%22).",
- "view.workbench.scm.workspace": "L'area di lavoro attualmente aperta non contiene cartelle con repository GIT. È possibile inizializzare un repository in una cartella che abiliterà le funzionalità di controllo del codice sorgente basate su GIT.\r\n[Inizializza repository](command:git.init)\r\nPer altre informazioni su come usare GIT e il controllo del codice sorgente in VS Code, [leggere la documentazione](https://aka.ms/vscode-scm)."
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-it/translations/extensions/github-authentication.i18n.json b/i18n/vscode-language-pack-it/translations/extensions/github-authentication.i18n.json
deleted file mode 100644
index 28a8814ecc..0000000000
--- a/i18n/vscode-language-pack-it/translations/extensions/github-authentication.i18n.json
+++ /dev/null
@@ -1,27 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "dist/githubServer": {
- "code.detail": "Per completare l'autenticazione, passare a GitHub e incollare il time code precedente.",
- "code.title": "Codice: {0}",
- "no": "No",
- "otherReasonMessage": "L'autorizzazione di questa estensione per l'uso di GitHub non è stata ancora completata. Continuare a provare?",
- "progress": "Aprire [{0}]({0}) in una nuova scheda e incollare il time code: {1}",
- "signingIn": "Accesso a github.com in corso...",
- "signingInAnotherWay": "Accesso a github.com in corso...",
- "userCancelledMessage": "Si sono verificati problemi durante l'accesso? Vuoi provare in un modo diverso?",
- "yes": "Sì"
- },
- "package": {
- "description": "Provider di autenticazione GitHub",
- "displayName": "Autenticazione GitHub"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-it/translations/extensions/github-browser.i18n.json b/i18n/vscode-language-pack-it/translations/extensions/github-browser.i18n.json
deleted file mode 100644
index 24c09edeab..0000000000
--- a/i18n/vscode-language-pack-it/translations/extensions/github-browser.i18n.json
+++ /dev/null
@@ -1,19 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "package": {
- "displayName": "Browser GitHub",
- "description": "Sfoglia un repository GitHub in modalità remota"
- },
- "dist/scm": {
- "no changes": "Non ci sono modifiche di cui eseguire il commit."
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-it/translations/extensions/github.i18n.json b/i18n/vscode-language-pack-it/translations/extensions/github.i18n.json
deleted file mode 100644
index f56813cdb2..0000000000
--- a/i18n/vscode-language-pack-it/translations/extensions/github.i18n.json
+++ /dev/null
@@ -1,46 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "dist/publish": {
- "ignore": "Selezionare i file da includere nel repository.",
- "openingithub": "Apri in GitHub",
- "pick folder": "Seleziona una cartella da pubblicare in GitHub",
- "publishing_done": "Il repository '{0}' è stato pubblicato in GitHub.",
- "publishing_firstcommit": "Creazione del primo commit",
- "publishing_private": "Pubblicazione in un repository GitHub privato",
- "publishing_public": "Pubblicazione in un repository GitHub pubblico",
- "publishing_uploading": "Caricamento dei file"
- },
- "dist/pushErrorHandler": {
- "create a fork": "Crea fork",
- "create fork": "Crea fork GitHub",
- "createghpr": "Creazione della richiesta pull GitHub...",
- "createpr": "Crea richiesta pull",
- "donepr": "La richiesta pull '{0}/{1}#{2}' è stata creata in GitHub.",
- "fork": "Non si hanno le autorizzazioni per eseguire il push in '{0}/{1}' in GitHub. Creare un fork in cui eseguire il push?",
- "forking": "Creazione del fork per '{0}/{1}'...",
- "forking_done": "Il fork '{0}' è stato creato in GitHub.",
- "forking_pushing": "Push delle modifiche...",
- "no": "No",
- "no pr template": "Nessun modello",
- "openingithub": "Apri in GitHub",
- "openpr": "Apri richiesta pull",
- "select pr template": "Selezionare il modello di richiesta pull"
- },
- "package": {
- "config.gitAuthentication": "Controlla se abilitare l'autenticazione GitHub automatica per i comandi GIT all'interno di VS Code.",
- "config.gitProtocol": "Controlla il protocollo usato per clonare un repository GitHub",
- "description": "Funzionalità di GitHub per VS Code",
- "displayName": "GitHub",
- "welcome.publishFolder": "È anche possibile pubblicare direttamente questa cartella in un repository GitHub. Dopo la pubblicazione sarà possibile accedere alle funzionalità di controllo del codice sorgente basate su GIT e GitHub.\r\n[$(github) Pubblica in GitHub](command:github.publish)",
- "welcome.publishWorkspaceFolder": "È anche possibile pubblicare direttamente una cartella dell'area di lavoro in un repository GitHub. Dopo la pubblicazione sarà possibile accedere alle funzionalità di controllo del codice sorgente basate su GIT e GitHub.\r\n[$(github) Pubblica in GitHub](command:github.publish)"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-it/translations/extensions/go.i18n.json b/i18n/vscode-language-pack-it/translations/extensions/go.i18n.json
deleted file mode 100644
index 7132a4d7d9..0000000000
--- a/i18n/vscode-language-pack-it/translations/extensions/go.i18n.json
+++ /dev/null
@@ -1,16 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "package": {
- "description": "Offre la sottolineatura delle sintassi e il match delle parentesi nei file Go.",
- "displayName": "Nozioni di base sul linguaggio Go"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-it/translations/extensions/groovy.i18n.json b/i18n/vscode-language-pack-it/translations/extensions/groovy.i18n.json
deleted file mode 100644
index 7bbb9bb78a..0000000000
--- a/i18n/vscode-language-pack-it/translations/extensions/groovy.i18n.json
+++ /dev/null
@@ -1,16 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "package": {
- "description": "Offre gli snippet, la sottolineatura delle sintassi, il match delle parentesi e il folding nei file Groovy.",
- "displayName": "Nozioni di base sul linguaggio Groovy"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-it/translations/extensions/grunt.i18n.json b/i18n/vscode-language-pack-it/translations/extensions/grunt.i18n.json
deleted file mode 100644
index d883141a81..0000000000
--- a/i18n/vscode-language-pack-it/translations/extensions/grunt.i18n.json
+++ /dev/null
@@ -1,25 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "dist/main": {
- "execFailed": "Rilevamento automatico di Grunt per la cartella {0} non riuscito - errore: {1}",
- "gruntShowOutput": "Passa all'output",
- "gruntTaskDetectError": "Si è verificato un problema durante la ricerca delle attività di Grunt. Per altre informazioni, vedere l'output."
- },
- "package": {
- "config.grunt.autoDetect": "Controlla l'abilitazione del rilevamento delle attività di Grunt. Il rilevamento delle attività di Grunt può causare l'esecuzione dei file in qualsiasi area di lavoro aperta.",
- "description": "Estensione che aggiunge le funzionalità di Grunt a VS Code.",
- "displayName": "Supporto di Grunt per VS Code",
- "grunt.taskDefinition.args.description": "Argomenti della riga di comando da passare all'attività grunt",
- "grunt.taskDefinition.file.description": "Il file di Grunt che fornisce l'attività. Può essere omesso.",
- "grunt.taskDefinition.type.description": "L'attività di Grunt da personalizzare."
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-it/translations/extensions/gulp.i18n.json b/i18n/vscode-language-pack-it/translations/extensions/gulp.i18n.json
deleted file mode 100644
index ee309105f6..0000000000
--- a/i18n/vscode-language-pack-it/translations/extensions/gulp.i18n.json
+++ /dev/null
@@ -1,24 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "dist/main": {
- "execFailed": "Rilevamento automatico di Gulp per la cartella {0} non riuscito - errore: {1}",
- "gulpShowOutput": "Passa all'output",
- "gulpTaskDetectError": "Si è verificato un problema durante la ricerca delle attività di gulp. Per altre informazioni, vedere l'output."
- },
- "package": {
- "config.gulp.autoDetect": "Controlla l'abilitazione del rilevamento delle attività di Gulp. Il rilevamento delle attività di Gulp può causare l'esecuzione dei file in qualsiasi area di lavoro aperta.",
- "description": "Estensione che aggiunge le funzionalità di Gulp a VSCode.",
- "displayName": "Supporto Gulp per VSCode",
- "gulp.taskDefinition.file.description": "File di gulp che fornisce l'attività. Può essere omesso.",
- "gulp.taskDefinition.type.description": "L'attività di Gulp da personalizzare."
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-it/translations/extensions/handlebars.i18n.json b/i18n/vscode-language-pack-it/translations/extensions/handlebars.i18n.json
deleted file mode 100644
index a9829d6432..0000000000
--- a/i18n/vscode-language-pack-it/translations/extensions/handlebars.i18n.json
+++ /dev/null
@@ -1,16 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "package": {
- "description": "Offre la sottolineatura delle sintassi e il match delle parentesi nei file Handlebars.",
- "displayName": "Nozioni di base sul linguaggio Handlebars"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-it/translations/extensions/hlsl.i18n.json b/i18n/vscode-language-pack-it/translations/extensions/hlsl.i18n.json
deleted file mode 100644
index 93f56b6872..0000000000
--- a/i18n/vscode-language-pack-it/translations/extensions/hlsl.i18n.json
+++ /dev/null
@@ -1,16 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "package": {
- "description": "Offre la sottolineatura delle sintassi e il match delle parentesi nei file HLSL.",
- "displayName": "Nozioni di base sul linguaggio HLSL"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-it/translations/extensions/html-language-features.i18n.json b/i18n/vscode-language-pack-it/translations/extensions/html-language-features.i18n.json
deleted file mode 100644
index aa80325db7..0000000000
--- a/i18n/vscode-language-pack-it/translations/extensions/html-language-features.i18n.json
+++ /dev/null
@@ -1,59 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "client\\dist\\node/htmlClient": {
- "configureButton": "Configura",
- "folding.end": "Fine area di riduzione del codice",
- "folding.html": "Punto iniziale HTML5 semplice",
- "folding.start": "Inizio area di riduzione del codice",
- "htmlserver.name": "Server di linguaggio HTML",
- "linkedEditingQuestion": "VS Code include ora il supporto predefinito per la ridenominazione automatica dei tag. Abilitarlo?"
- },
- "package": {
- "description": "Fornisce un supporto avanzato del linguaggio per i file HTML e Handlebar",
- "displayName": "Funzionalità del linguaggio HTML",
- "html.autoClosingTags": "Abilita/Disabilita la chiusura automatica dei tag HTML.",
- "html.autoCreateQuotes": "Abilita/disabilita la creazione automatica delle virgolette per l'assegnazione di attributi HTML. Questo tipo di virgolette può essere configurato da '#html.completion.attributeDefaultValue#'.",
- "html.completion.attributeDefaultValue": "Controlla il valore predefinito per gli attributi quando il completamento viene accettato.",
- "html.completion.attributeDefaultValue.doublequotes": "Il valore di attributo è impostato su \"\".",
- "html.completion.attributeDefaultValue.empty": "Il valore di attributo non è impostato.",
- "html.completion.attributeDefaultValue.singlequotes": "Il valore di attributo è impostato su ''.",
- "html.customData.desc": "Elenco di percorsi di file relativi che puntano a file JSON e sono conformi al [formato dati personalizzato](https://github.com/microsoft/vscode-html-languageservice/blob/master/docs/customData.md).\r\n\r\nVS Code carica i dati personalizzati all'avvio per migliorare il supporto HTML per i tag HTML, gli attributi e i valori di attributo personalizzati specificati nei file JSON.\r\n\r\nI percorsi di file sono relativi all'area di lavoro e vengono considerate solo le impostazioni della cartella dell'area di lavoro.",
- "html.format.contentUnformatted.desc": "Elenco di tag, delimitati da virgole, in cui il contenuto non deve essere riformattato. Per impostazione predefinita, con `null` viene usato il tag `pre`.",
- "html.format.enable.desc": "Abilita/Disabilita il formattatore HTML predefinito.",
- "html.format.extraLiners.desc": "Elenco di tag, delimitati da virgole, che devono essere preceduti da un carattere aggiuntivo di nuova riga. Con `null` viene usata l'impostazione predefinita `\"head, body, /html\"`.",
- "html.format.indentHandlebars.desc": "Applica la formattazione e imposta un rientro per `{{#foo}}` e `{{/foo}}`.",
- "html.format.indentInnerHtml.desc": "Imposta un rientro per le sezioni `` e ``.",
- "html.format.maxPreserveNewLines.desc": "Numero massimo di interruzioni di riga da mantenere in un unico blocco. Per non impostare un numero massimo, usare `null`.",
- "html.format.preserveNewLines.desc": "Controlla se è necessario mantenere interruzioni di riga esistenti prima degli elementi. Funziona solo prima degli elementi e non all'interno di tag o per il testo.",
- "html.format.templating.desc": "Tag dei linguaggi per la creazione di modelli Honor Django, ERB, Handlebars e PHP.",
- "html.format.unformatted.desc": "Elenco di tag, delimitati da virgole, che non devono essere riformattati. Con `null` viene usata l'impostazione predefinita che prevede l'uso di tutti i tag elencati in https://www.w3.org/TR/html5/dom.html#phrasing-content.",
- "html.format.unformattedContentDelimiter.desc": "Mantiene unito il contenuto di testo tra questa stringa.",
- "html.format.wrapAttributes.alignedmultiple": "Esegue il wrapping quando viene superata la lunghezza di riga. Allinea gli attributi verticalmente.",
- "html.format.wrapAttributes.auto": "Esegue il wrapping degli attributi solo quando viene superata la lunghezza di riga.",
- "html.format.wrapAttributes.desc": "Esegue il wrapping degli attributi.",
- "html.format.wrapAttributes.force": "Esegue il wrapping di ogni attributo ad eccezione del primo.",
- "html.format.wrapAttributes.forcealign": "Esegue il wrapping di ogni attributo ad eccezione del primo e mantiene l'allineamento.",
- "html.format.wrapAttributes.forcemultiline": "Esegue il wrapping di ogni attributo.",
- "html.format.wrapAttributes.preserve": "Mantiene il ritorno a capo degli attributi.",
- "html.format.wrapAttributes.preservealigned": "Mantiene il ritorno a capo degli attributi e allinea.",
- "html.format.wrapAttributesIndentSize.desc": "Imposta un rientro per gli attributi con ritorno a capo dopo N caratteri. Usare 'null' per usare le dimensioni predefinite del rientro. Ignorato se '#html.format.wrapAttributes#' è impostato su 'aligned'.",
- "html.format.wrapLineLength.desc": "Numero massimo di caratteri per riga (0 = disabilita).",
- "html.hover.documentation": "Mostra la documentazione su tag e attributi al passaggio del puntatore.",
- "html.hover.references": "Mostra i riferimenti a MDN al passaggio del puntatore.",
- "html.mirrorCursorOnMatchingTag": "Abilita/disabilita il mirroring del cursore in caso di tag HTML corrispondente.",
- "html.mirrorCursorOnMatchingTagDeprecationMessage": "Deprecata e sostituita da `editor.linkedEditing`",
- "html.suggest.html5.desc": "Controlla se il supporto del linguaggio HTML predefinito suggerisce tag, proprietà e valori di HTML5.",
- "html.trace.server.desc": "Traccia la comunicazione tra VS Code e il server del linguaggio HTML.",
- "html.validate.scripts": "Controlla se il supporto del linguaggio HTML predefinito convalida gli script incorporati.",
- "html.validate.styles": "Controlla se il supporto del linguaggio HTML predefinito convalida gli stili incorporati."
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-it/translations/extensions/html.i18n.json b/i18n/vscode-language-pack-it/translations/extensions/html.i18n.json
deleted file mode 100644
index be9bee782e..0000000000
--- a/i18n/vscode-language-pack-it/translations/extensions/html.i18n.json
+++ /dev/null
@@ -1,16 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "package": {
- "description": "Fornisce l'evidenziazione della sintassi, la corrispondenza delle parentesi e i frammenti nei file HTML.",
- "displayName": "Nozioni di base sul linguaggio HTML"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-it/translations/extensions/image-preview.i18n.json b/i18n/vscode-language-pack-it/translations/extensions/image-preview.i18n.json
deleted file mode 100644
index a4289f8da2..0000000000
--- a/i18n/vscode-language-pack-it/translations/extensions/image-preview.i18n.json
+++ /dev/null
@@ -1,39 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "dist/binarySizeStatusBarEntry": {
- "sizeB": "{0} B",
- "sizeGB": "{0} GB",
- "sizeKB": "{0} KB",
- "sizeMB": "{0} MB",
- "sizeStatusBar.name": "Dimensioni file binario dell'immagine",
- "sizeTB": "{0} TB"
- },
- "dist/preview": {
- "preview.imageLoadError": "Si è verificato un errore durante il caricamento dell'immagine.",
- "preview.imageLoadErrorLink": "Aprire il file usando l'editor di testo/binario standard di VS Code?"
- },
- "dist/sizeStatusBarEntry": {
- "sizeStatusBar.name": "Dimensioni dell'immagine"
- },
- "dist/zoomStatusBarEntry": {
- "zoomStatusBar.name": "Zoom immagine",
- "zoomStatusBar.placeholder": "Selezionare il livello di zoom",
- "zoomStatusBar.wholeImageLabel": "Immagine intera"
- },
- "package": {
- "command.zoomIn": "Zoom avanti",
- "command.zoomOut": "Zoom indietro",
- "customEditors.displayName": "Anteprima immagine",
- "description": "Fornisce l'anteprima immagine predefinita di VS Code",
- "displayName": "Anteprima immagine"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-it/translations/extensions/ini.i18n.json b/i18n/vscode-language-pack-it/translations/extensions/ini.i18n.json
deleted file mode 100644
index c6e65a10b7..0000000000
--- a/i18n/vscode-language-pack-it/translations/extensions/ini.i18n.json
+++ /dev/null
@@ -1,16 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "package": {
- "description": "Offre la sottolineatura delle sintassi e il match delle parentesi nei file Ini.",
- "displayName": "Nozioni di base sul linguaggio ini"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-it/translations/extensions/ipynb.i18n.json b/i18n/vscode-language-pack-it/translations/extensions/ipynb.i18n.json
deleted file mode 100644
index 175e79a659..0000000000
--- a/i18n/vscode-language-pack-it/translations/extensions/ipynb.i18n.json
+++ /dev/null
@@ -1,16 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "package": {
- "description": "Fornisce il supporto di base per l'apertura e la lettura dei file di notebook di Jupyter (estensione ipynb)",
- "displayName": "Supporto per .ipynb"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-it/translations/extensions/jake.i18n.json b/i18n/vscode-language-pack-it/translations/extensions/jake.i18n.json
deleted file mode 100644
index b26fc46129..0000000000
--- a/i18n/vscode-language-pack-it/translations/extensions/jake.i18n.json
+++ /dev/null
@@ -1,24 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "dist/main": {
- "execFailed": "Rilevamento automatico di Jake per la cartella {0} non riuscito - errore: {1}",
- "jakeShowOutput": "Passa all'output",
- "jakeTaskDetectError": "Si è verificato un problema durante la ricerca delle attività di jake. Per altre informazioni, vedere l'output."
- },
- "package": {
- "config.jake.autoDetect": "Controlla l'abilitazione del rilevamento delle attività di Jake. Il rilevamento delle attività di Jake può causare l'esecuzione dei file in qualsiasi area di lavoro aperta.",
- "description": "Estensione che aggiunge le funzionalità di Jake a VS Code.",
- "displayName": "Supporto di Jake per VS Code",
- "jake.taskDefinition.file.description": "Il file di Jake che fornisce l'attività. Può essere omesso.",
- "jake.taskDefinition.type.description": "L'attività di Jake da personalizzare."
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-it/translations/extensions/java.i18n.json b/i18n/vscode-language-pack-it/translations/extensions/java.i18n.json
deleted file mode 100644
index dd2d421f63..0000000000
--- a/i18n/vscode-language-pack-it/translations/extensions/java.i18n.json
+++ /dev/null
@@ -1,16 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "package": {
- "description": "Offre i frammenti, la sottolineatura delle sintassi, la corrispondenza delle parentesi e la riduzione del codice nei file Java.",
- "displayName": "Nozioni di base sul linguaggio Java"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-it/translations/extensions/javascript.i18n.json b/i18n/vscode-language-pack-it/translations/extensions/javascript.i18n.json
deleted file mode 100644
index e020f94445..0000000000
--- a/i18n/vscode-language-pack-it/translations/extensions/javascript.i18n.json
+++ /dev/null
@@ -1,16 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "package": {
- "description": "Offre i frammenti, la sottolineatura delle sintassi, la corrispondenza delle parentesi e la riduzione del codice nei file JavaScript.",
- "displayName": "Nozioni di base sul linguaggio JavaScript"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-it/translations/extensions/json-language-features.i18n.json b/i18n/vscode-language-pack-it/translations/extensions/json-language-features.i18n.json
deleted file mode 100644
index 1f4b8502d8..0000000000
--- a/i18n/vscode-language-pack-it/translations/extensions/json-language-features.i18n.json
+++ /dev/null
@@ -1,73 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "client\\dist\\node/jsonClient": {
- "json.clearCache.completed": "Cache dello schema JSON cancellata.",
- "json.resolveError": "JSON: Errore di risoluzione dello schema",
- "json.schemaResolutionDisabledMessage": "Il download degli schemi è disabilitato. Fare clic per configurare.",
- "json.schemaResolutionErrorMessage": "Non è possibile risolvere lo schema. Fare clic per riprovare.",
- "jsonserver.name": "Server di linguaggio JSON",
- "schemaDownloadDisabled": "Il download degli schemi è disabilitato tramite l'impostazione '{0}'",
- "untitled.schema": "Impossibile caricare {0}"
- },
- "client\\dist\\node/languageStatus": {
- "documentColorsStatusItem.name": "Stato simbolo colore JSON",
- "documentSymbolsStatusItem.name": "Stato struttura JSON",
- "foldingRangesStatusItem.name": "Stato riduzione JSON",
- "openExtension": "Apri estensione",
- "openSettings": "Apri impostazioni",
- "pending.detail": "Caricamento delle informazioni JSON",
- "schema.noSchema": "Nessuno schema configurato per questo file",
- "schema.showdocs": "Altre informazioni sulla configurazione dello schema JSON...",
- "schemaFromFolderSettings": "Configurato nelle impostazioni dell'area di lavoro",
- "schemaFromUserSettings": "Configurato nelle impostazioni utente",
- "schemaFromextension": "Configurato dall'estensione: {0}",
- "schemaPicker.title": "Schemi JSON usati per {0}",
- "status.button.configure": "Configura",
- "status.error": "Non è possibile calcolare gli schemi usati",
- "status.limitedDocumentColors.details": "solo {0} elementi Decorator a colori visualizzati",
- "status.limitedDocumentColors.short": "Simboli colore limitati",
- "status.limitedDocumentSymbols.details": "solo {0} simboli di documento visualizzati",
- "status.limitedDocumentSymbols.short": "Struttura limitata",
- "status.limitedFoldingRanges.details": "solo {0} intervalli di riduzione visualizzati",
- "status.limitedFoldingRanges.short": "Intervalli di riduzione limitati",
- "status.multipleSchema": "più schemi JSON configurati",
- "status.noSchema": "nessuno schema JSON configurato",
- "status.noSchema.short": "Nessuna convalida dello schema",
- "status.notJSON": "Non è un editor JSON",
- "status.openSchemasLink": "Mostrare schema",
- "status.singleSchema": "Schema JSON configurato",
- "status.withSchema.short": "Schema convalidato",
- "status.withSchemas.short": "Schema convalidato",
- "statusItem.name": "Stato di convalida JSON"
- },
- "package": {
- "description": "Fornisce supporto avanzato del linguaggio per i file JSON.",
- "displayName": "Funzionalità del linguaggio JSON",
- "json.clickToRetry": "Fare clic per riprovare.",
- "json.colorDecorators.enable.deprecationMessage": "L'impostazione `json.colorDecorators.enable` è stata deprecata e sostituita da `editor.colorDecorators`.",
- "json.colorDecorators.enable.desc": "Abilita o disabilita gli elementi Decorator di tipo colore",
- "json.command.clearCache": "Cancella cache dello schema",
- "json.enableSchemaDownload.desc": "Se è abilitata, è possibile recuperare gli schemi JSON da posizioni HTTP e HTTPS.",
- "json.format.enable.desc": "Abilita/Disabilita il formattatore JSON predefinito",
- "json.format.keepLines.desc": "Mantenere tutte le nuove righe esistenti durante la formattazione.",
- "json.maxItemsComputed.desc": "Numero massimo di simboli di struttura e aree di riduzione calcolati (limitato per motivi di prestazioni).",
- "json.maxItemsExceededInformation.desc": "Mostra la notifica quando viene superato il numero massimo di simboli di struttura e di aree di riduzione del codice.",
- "json.schemaResolutionErrorMessage": "Non è possibile risolvere lo schema.",
- "json.schemas.desc": "Associa schemi a file JSON nel progetto corrente.",
- "json.schemas.fileMatch.desc": "Durante la risoluzione di file JSON in schemi è possibile usare una matrice di criteri di file, oltre a `*` come carattere jolly per la ricerca. È anche possibile definire criteri di esclusione aggiungendo il prefisso '!'. Un file corrisponde quando è presente almeno un criterio di corrispondenza e l'ultimo criterio di corrispondenza non è un criterio di esclusione.",
- "json.schemas.fileMatch.item.desc": "Criteri dei file che possono contenere '*' da usare per la ricerca durante la risoluzione di file JSON in schemi.",
- "json.schemas.schema.desc": "Definizione dello schema per l'URL specificato. È necessario specificare lo schema per evitare accessi all'URL dello schema.",
- "json.schemas.url.desc": "URL di uno schema o percorso relativo di uno schema nella directory corrente",
- "json.tracing.desc": "Traccia le comunicazioni tra Visual Studio Code e il server di linguaggio JSON.",
- "json.validate.enable.desc": "Abilita/disabilita la convalida JSON."
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-it/translations/extensions/json.i18n.json b/i18n/vscode-language-pack-it/translations/extensions/json.i18n.json
deleted file mode 100644
index 501d695e7c..0000000000
--- a/i18n/vscode-language-pack-it/translations/extensions/json.i18n.json
+++ /dev/null
@@ -1,16 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "package": {
- "description": "Fornisce l'evidenziazione della sintassi e la corrispondenza delle parentesi nei file JSON.",
- "displayName": "Nozioni di base sul linguaggio JSON"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-it/translations/extensions/less.i18n.json b/i18n/vscode-language-pack-it/translations/extensions/less.i18n.json
deleted file mode 100644
index d4bb6c797e..0000000000
--- a/i18n/vscode-language-pack-it/translations/extensions/less.i18n.json
+++ /dev/null
@@ -1,16 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "package": {
- "description": "Offre la sottolineatura delle sintassi, il match delle parentesi e il folding nei file Less.",
- "displayName": "Nozioni di base sul linguaggio Less"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-it/translations/extensions/log.i18n.json b/i18n/vscode-language-pack-it/translations/extensions/log.i18n.json
deleted file mode 100644
index 7f1d1071dd..0000000000
--- a/i18n/vscode-language-pack-it/translations/extensions/log.i18n.json
+++ /dev/null
@@ -1,16 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "package": {
- "description": "Offre la sottolineatura delle sintassi per i file con estensione log.",
- "displayName": "LOG"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-it/translations/extensions/lua.i18n.json b/i18n/vscode-language-pack-it/translations/extensions/lua.i18n.json
deleted file mode 100644
index f685cfa217..0000000000
--- a/i18n/vscode-language-pack-it/translations/extensions/lua.i18n.json
+++ /dev/null
@@ -1,16 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "package": {
- "description": "Offre la sottolineatura delle sintassi e il match delle parentesi nei file Lua.",
- "displayName": "Nozioni di base sul linguaggio Lua"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-it/translations/extensions/make.i18n.json b/i18n/vscode-language-pack-it/translations/extensions/make.i18n.json
deleted file mode 100644
index 6c34766174..0000000000
--- a/i18n/vscode-language-pack-it/translations/extensions/make.i18n.json
+++ /dev/null
@@ -1,16 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "package": {
- "description": "Offre la sottolineatura delle sintassi e il match delle parentesi nei file Make.",
- "displayName": "Nozioni di base sul linguaggio Make"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-it/translations/extensions/markdown-basics.i18n.json b/i18n/vscode-language-pack-it/translations/extensions/markdown-basics.i18n.json
deleted file mode 100644
index a4c235e00a..0000000000
--- a/i18n/vscode-language-pack-it/translations/extensions/markdown-basics.i18n.json
+++ /dev/null
@@ -1,16 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "package": {
- "description": "Offre gli snippet e la sottolineatura delle sintassi per Markdown.",
- "displayName": "Nozioni di base sul linguaggio Markdown"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-it/translations/extensions/markdown-language-features.i18n.json b/i18n/vscode-language-pack-it/translations/extensions/markdown-language-features.i18n.json
deleted file mode 100644
index 63d21ffaec..0000000000
--- a/i18n/vscode-language-pack-it/translations/extensions/markdown-language-features.i18n.json
+++ /dev/null
@@ -1,90 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "dist/client": {
- "markdownServer.name": "Server di linguaggio Markdown"
- },
- "dist/languageFeatures/diagnostics": {
- "ignoreLinksQuickFix.title": "Escludere '{0}' dalla convalida dei collegamenti."
- },
- "dist/languageFeatures/fileReferences": {
- "error.noResource": "La ricerca dei riferimenti a file non è riuscita. Non è stata specificata alcuna risorsa.",
- "progress.title": "Ricerca di riferimenti a file"
- },
- "dist/preview/documentRenderer": {
- "preview.notFound": "{0} non è stato trovato",
- "preview.securityMessage.label": "Avviso di sicurezza contenuto disabilitato",
- "preview.securityMessage.text": "Alcuni contenuti sono stati disabilitati in questo documento",
- "preview.securityMessage.title": "I contenuti potenzialmente non sicuri sono stati disabilitati nell'anteprima Markdown. Modificare l'impostazione di sicurezza dell'anteprima Markdown per consentire la visualizzazione di contenuto non sicuri o abilitare gli script"
- },
- "dist/preview/preview": {
- "lockedPreviewTitle": "[Anteprima] {0}",
- "onPreviewStyleLoadError": "Impossibile caricare 'markdown.styles': {0}",
- "preview.clickOpenFailed": "Non è stato possibile aprire {0}",
- "previewTitle": "Anteprima {0}"
- },
- "dist/preview/security": {
- "disable.description": "Consente l'esecuzione di tutti i contenuti e script. Scelta non consigliata",
- "disable.title": "Disabilita",
- "disableSecurityWarning.title": "Disabilita anteprima degli avvisi di sicurezza in questa area di lavoro",
- "enableSecurityWarning.title": "Abilita anteprima degli avvisi di sicurezza in questa area di lavoro",
- "insecureContent.description": "Consente il caricamento di contenuti tramite HTTP",
- "insecureContent.title": "Consenti contenuto non protetto",
- "insecureLocalContent.description": "Consente il caricamento di contenuti tramite HTTP servito da localhost",
- "insecureLocalContent.title": "Consenti contenuto locale non protetto",
- "moreInfo.title": "Altre informazioni",
- "preview.showPreviewSecuritySelector.title": "Seleziona impostazioni di sicurezza per le anteprime Markdown in questa area di lavoro",
- "strict.description": "Carica solo contenuto protetto",
- "strict.title": "Strict",
- "toggleSecurityWarning.description": "Non influisce sul livello di sicurezza del contenuto"
- },
- "package": {
- "configuration.markdown.editor.drop.enabled": "Enable/disable dropping into the markdown editor to insert shift. Requires enabling `#editor.dropIntoEditor.enabled#`.",
- "configuration.markdown.editor.pasteLinks.enabled": "L'abilitazione/disabilitazione dell'operazione per incollare i file in un Markdown editor inserisce i collegamenti Markdown. Richiede l'abilitazione di '#editor.experimental.pasteActions.enabled#'.",
- "configuration.markdown.experimental.validate.enabled.description": "Abilitare/disabilitare tutte le segnalazioni di errori nei file Markdown.",
- "configuration.markdown.experimental.validate.fileLinks.enabled.description": "Consente di convalidare i collegamenti ad altri file in file Markdown, ad esempio '[link](/path/to/file.md)'. Verifica l'esistenza dei file di destinazione. Richiede l'abilitazione di '#markdown.experimental.validate.enabled#'.",
- "configuration.markdown.experimental.validate.fileLinks.markdownFragmentLinks.description": "Convalidare la parte di frammento dei collegamenti alle intestazioni in altri file in file Markdown, ad esempio '[link](/path/to/file.md#header)'. Eredita il valore dell'impostazione da '#markdown.experimental.validate.fragmentLinks.enabled#' per impostazione predefinita.",
- "configuration.markdown.experimental.validate.fragmentLinks.enabled.description": "Convalidare i collegamenti di frammento alle intestazioni nel file Markdown corrente, ad esempio '[link](#header)'. È necessario abilitare '#markdown.experimental.validate.enabled#'.",
- "configuration.markdown.experimental.validate.ignoreLinks.description": "Configurare i collegamenti che non devono essere convalidati. Ad esempio, '/about' non convalida il collegamento '[about](/about)', mentre il GLOB '/assets/**/*.svg' consente di ignorare la convalida per qualsiasi collegamento ai file '.svg' nella directory 'assets'.",
- "configuration.markdown.experimental.validate.referenceLinks.enabled.description": "Consente di convalidare i collegamenti di riferimento nei file Markdown, ad esempio '[link][ref]'. Richiede l'abilitazione di '#markdown.experimental.validate.enabled#'.",
- "configuration.markdown.links.openLocation.beside": "Apre i collegamenti accanto all'editor attivo.",
- "configuration.markdown.links.openLocation.currentGroup": "Apre i collegamenti nel gruppo di editor attivo.",
- "configuration.markdown.links.openLocation.description": "Controlla dove aprire i collegamenti nei file Markdown.",
- "configuration.markdown.preview.openMarkdownLinks.description": "Controlla in che modo aprire i collegamenti ad altri file Markdown nell'anteprima Markdown.",
- "configuration.markdown.preview.openMarkdownLinks.inEditor": "Prova ad aprire i collegamenti nell'editor.",
- "configuration.markdown.preview.openMarkdownLinks.inPreview": "Prova ad aprire i collegamenti nell'anteprima Markdown.",
- "configuration.markdown.suggest.paths.enabled.description": "Abilita/Disabilita i suggerimenti di percorso per i collegamenti Markdown",
- "description": "Fornisce un supporto avanzato del linguaggio per Markdown.",
- "displayName": "Funzionalità del linguaggio Markdown",
- "markdown.findAllFileReferences": "Trova riferimenti a file",
- "markdown.preview.breaks.desc": "Imposta il rendering delle interruzioni di riga nell'anteprima Markdown. Se è impostato su 'true', viene creato un tag per i caratteri di nuova riga all'interno di paragrafi.",
- "markdown.preview.doubleClickToSwitchToEditor.desc": "Fare doppio clic nell'anteprima Markdown per passare all'editor.",
- "markdown.preview.fontFamily.desc": "Controlla la famiglia di caratteri usata nell'anteprima Markdown.",
- "markdown.preview.fontSize.desc": "Controlla le dimensioni del carattere in pixel usate nell'anteprima Markdown.",
- "markdown.preview.lineHeight.desc": "Controlla l'altezza della riga usata nell'anteprima Markdown. Questo numero è relativo alle dimensioni del carattere.",
- "markdown.preview.linkify": "Abilita o disabilita la conversione di testo simile a URL in collegamenti nell'anteprima Markdown.",
- "markdown.preview.markEditorSelection.desc": "Contrassegna la selezione dell'editor corrente nell'anteprima Markdown.",
- "markdown.preview.refresh.title": "Aggiorna anteprima",
- "markdown.preview.scrollEditorWithPreview.desc": "Quando si scorre un'anteprima Markdown, aggiorna la visualizzazione dell'editor.",
- "markdown.preview.scrollPreviewWithEditor.desc": "Quando si scorre un editor Markdown, aggiorna la visualizzazione dell'anteprima.",
- "markdown.preview.title": "Apri anteprima",
- "markdown.preview.toggleLock.title": "Attiva/Disattiva blocco anteprima",
- "markdown.preview.typographer": "Abilita o disabilita la sostituzione indipendente dalla lingua e l'adattamento delle virgolette nell'anteprima Markdown.",
- "markdown.previewSide.title": "Apri anteprima lateralmente",
- "markdown.showLockedPreviewToSide.title": "Apri anteprima bloccata lateralmente",
- "markdown.showPreviewSecuritySelector.title": "Modifica impostazioni di sicurezza anteprima",
- "markdown.showSource.title": "Mostra origine",
- "markdown.styles.dec": "Elenco di URL o percorsi locali dei fogli di stile CSS da usare dall'anteprima Markdown. I percorsi relativi vengono interpretati come relativi alla cartella aperta in Esplora risorse. Se non è presente alcuna cartella aperta, vengono interpretati come relativi al percorso del file Markdown. Tutti i caratteri '\\' devono essere scritti come '\\\\'.",
- "markdown.trace.extension.desc": "Abilita la registrazione debug per l'estensione Markdown.",
- "markdown.trace.server.desc": "Traccia le comunicazioni tra VS Code e il server di linguaggio Markdown.",
- "workspaceTrust": "Necessario per il caricamento degli stili configurati nell'area di lavoro."
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-it/translations/extensions/markdown-math.i18n.json b/i18n/vscode-language-pack-it/translations/extensions/markdown-math.i18n.json
deleted file mode 100644
index d6e261e145..0000000000
--- a/i18n/vscode-language-pack-it/translations/extensions/markdown-math.i18n.json
+++ /dev/null
@@ -1,17 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "package": {
- "config.markdown.math.enabled": "Abilita/Disabilita la matematica del rendering nell'anteprima Markdown predefinita.",
- "description": "Aggiunge il supporto delle operazioni matematiche a Markdown nei notebook.",
- "displayName": "Matematica Markdown"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-it/translations/extensions/markdown-notebook-math.i18n.json b/i18n/vscode-language-pack-it/translations/extensions/markdown-notebook-math.i18n.json
deleted file mode 100644
index 0ab26ddc50..0000000000
--- a/i18n/vscode-language-pack-it/translations/extensions/markdown-notebook-math.i18n.json
+++ /dev/null
@@ -1,16 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "package": {
- "displayName": "Operazioni matematiche in notebook Markdown",
- "description": "Fornisce un supporto avanzato del linguaggio per Markdown."
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-it/translations/extensions/merge-conflict.i18n.json b/i18n/vscode-language-pack-it/translations/extensions/merge-conflict.i18n.json
deleted file mode 100644
index bb623a7802..0000000000
--- a/i18n/vscode-language-pack-it/translations/extensions/merge-conflict.i18n.json
+++ /dev/null
@@ -1,35 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "package": {
- "command.accept.all-both": "Accetta tutte in entrambe",
- "command.accept.all-current": "Accetta tutte le modifiche correnti",
- "command.accept.all-incoming": "Accetta tutte le modifiche in ingresso",
- "command.accept.both": "Accetta entrambe",
- "command.accept.current": "Accetta corrente",
- "command.accept.incoming": "Accetta modifiche in ingresso",
- "command.accept.selection": "Accetta selezione",
- "command.category": "Esegui merge del conflitto",
- "command.compare": "Confronta il conflitto corrente",
- "command.next": "Conflitto successivo",
- "command.previous": "Conflitto precedente",
- "config.autoNavigateNextConflictEnabled": "Indica se passare automaticamente al conflitto successivo dopo la risoluzione di un conflitto di merge.",
- "config.codeLensEnabled": "Crea le finestre di CodeLens per i blocchi di conflitti di merge all'interno dell'editor.",
- "config.decoratorsEnabled": "Crea elementi Decorator per blocchi di conflitti di merge all'interno dell'editor.",
- "config.diffViewPosition": "Controlla dove verrà aperta la visualizzazione differenze quando si confrontano le modifiche nei conflitti di merge.",
- "config.diffViewPosition.below": "Apri la visualizzazione differenze sotto il gruppo di editor corrente.",
- "config.diffViewPosition.beside": "Apri la visualizzazione differenze accanto al gruppo di editor corrente.",
- "config.diffViewPosition.current": "Apri la visualizzazione differenze nel gruppo di editor corrente.",
- "config.title": "Esegui merge del conflitto",
- "description": "Evidenziazione e comandi per i conflitti di merge inline.",
- "displayName": "Esegui merge del conflitto"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-it/translations/extensions/microsoft-authentication.i18n.json b/i18n/vscode-language-pack-it/translations/extensions/microsoft-authentication.i18n.json
deleted file mode 100644
index d84b4439fd..0000000000
--- a/i18n/vscode-language-pack-it/translations/extensions/microsoft-authentication.i18n.json
+++ /dev/null
@@ -1,24 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "dist/AADHelper": {
- "pasteCodePlaceholder": "Paste authorization code here...",
- "pasteCodePrompt": "Provide the authorization code to complete the sign in flow.",
- "pasteCodeTitle": "Microsoft Authentication",
- "signOut": "Si è stati disconnessi perché la lettura delle informazioni di autenticazione archiviate non è riuscita."
- },
- "package": {
- "description": "Provider di autenticazione Microsoft",
- "displayName": "Account Microsoft",
- "signIn": "Accedi",
- "signOut": "Disconnetti"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-it/translations/extensions/ms-vscode.github-browser.i18n.json b/i18n/vscode-language-pack-it/translations/extensions/ms-vscode.github-browser.i18n.json
deleted file mode 100644
index c72b44c383..0000000000
--- a/i18n/vscode-language-pack-it/translations/extensions/ms-vscode.github-browser.i18n.json
+++ /dev/null
@@ -1,16 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "package": {
- "displayName": "Browser GitHub",
- "description": "Sfoglia un repository GitHub in modalità remota"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-it/translations/extensions/ms-vscode.js-debug.i18n.json b/i18n/vscode-language-pack-it/translations/extensions/ms-vscode.js-debug.i18n.json
index 1f7e372239..f944c1afec 100644
--- a/i18n/vscode-language-pack-it/translations/extensions/ms-vscode.js-debug.i18n.json
+++ b/i18n/vscode-language-pack-it/translations/extensions/ms-vscode.js-debug.i18n.json
@@ -8,281 +8,14 @@
],
"version": "1.0.0",
"contents": {
- "/src/adapter/breakpoints/userDefinedBreakpoint": {
- "breakpoint.provisionalBreakpoint": "Punto di interruzione non associato"
- },
- "/src/adapter/console/queryObjectsMessage": {
- "queryObject.couldNotQuery": "Non è stato possibile eseguire una query sull'oggetto specificato",
- "queryObject.errorPreview": "Non è stato possibile generare l'anteprima: {0}",
- "queryObject.invalidObject": "È possibile eseguire query solo sugli oggetti"
- },
- "/src/adapter/console/textualMessage": {
- "console.assert": "Asserzione non riuscita"
- },
- "/src/adapter/customBreakpoints": {
- "breakpoint.animationFrameFired": "Frame di animazione generato",
- "breakpoint.cancelAnimationFrame": "Annulla frame di animazione",
- "breakpoint.closeAudioContext": "Chiudi AudioContext",
- "breakpoint.createAudioContext": "Crea AudioContext",
- "breakpoint.createCanvasContext": "Crea contesto canvas",
- "breakpoint.cspViolation": "Script bloccato dai criteri di sicurezza del contenuto",
- "breakpoint.cspViolationNamed": "Violazione \"{0}\" dei criteri di sicurezza del contenuto",
- "breakpoint.cspViolationNamedDetails": "Sospeso in corrispondenza del punto di interruzione della strumentazione per la violazione dei criteri di sicurezza del contenuto. Direttiva \"{0}\"",
- "breakpoint.eventListenerNamed": "Sospeso in corrispondenza del punto di interruzione \"{0}\" del listener di eventi. Attivato su \"{1}\"",
- "breakpoint.instrumentationNamed": "Sospeso in corrispondenza del punto di interruzione \"{0}\" della strumentazione",
- "breakpoint.requestAnimationFrame": "Richiedi frame di animazione",
- "breakpoint.resumeAudioContext": "Riprendi AudioContext",
- "breakpoint.scriptFirstStatement": "Prima istruzione script",
- "breakpoint.setInnerHtml": "Imposta innerHTML",
- "breakpoint.setIntervalFired": "setInterval generato",
- "breakpoint.setTimeoutFired": "setTimeout generato",
- "breakpoint.suspendAudioContext": "Sospendi AudioContext",
- "breakpoint.webglErrorFired": "Errore di WebGL generato",
- "breakpoint.webglErrorNamed": "Errore \"{0}\" di WebGL",
- "breakpoint.webglErrorNamedDetails": "Sospeso in corrispondenza del punto di interruzione della strumentazione per errori WebGL. Errore \"{0}\"",
- "breakpoint.webglWarningFired": "Avviso di WebGL generato"
- },
- "/src/adapter/debugAdapter": {
- "breakpoint.caughtExceptions": "Eccezioni rilevate",
- "breakpoint.caughtExceptions.description": "Imposta un'interruzione in corrispondenza di tutti gli errori di generazione, anche se vengono rilevati in seguito.",
- "breakpoint.uncaughtExceptions": "Eccezioni non rilevate",
- "error.cannotPrettyPrint": "Non è possibile riformattare",
- "error.sourceContentDidFail": "Non è possibile recuperare il contenuto di origine",
- "error.sourceNotFound": "Origine non trovata",
- "error.variableNotFound": "Variabile non trovata"
- },
- "/src/adapter/profiling/basicCpuProfiler": {
- "profile.cpu.description": "Genera un file con estensione cpuprofile che è possibile aprire in Chrome DevTools",
- "profile.cpu.label": "Profilo CPU"
- },
- "/src/adapter/profiling/basicHeapProfiler": {
- "profile.heap.description": "Genera un file con estensione heapprofile che è possibile aprire in Chrome DevTools",
- "profile.heap.label": "Profilo heap"
- },
- "/src/adapter/profiling/heapDumpProfiler": {
- "profile.heap.description": "Genera un file con estensione .heapsnapshot che è possibile aprire in Chrome DevTools",
- "profile.heap.label": "Snapshot heap"
- },
- "/src/adapter/sources": {
- "source.skipFiles": "Ignorato da skipFiles"
- },
- "/src/adapter/stackTrace": {
- "scope.block": "Blocco",
- "scope.catch": "Blocco catch",
- "scope.closure": "Chiusura",
- "scope.closureNamed": "Chiusura ({0})",
- "scope.eval": "Valutazione",
- "scope.global": "Globale",
- "scope.local": "Locale",
- "scope.module": "Modulo",
- "scope.returnValue": "Valore restituito",
- "scope.script": "Script",
- "scope.with": "Blocco with",
- "smartStepSkipLabel": "Ignorato da smartStep",
- "source.skipFiles": "Ignorato da skipFiles"
- },
- "/src/adapter/threads": {
- "error.evaluateDidFail": "Non è possibile valutare",
- "error.evaluateOnAsyncStackFrame": "Non è possibile eseguire la valutazione in base allo stack frame asincrono",
- "error.pauseDidFail": "Non è possibile sospendere",
- "error.restartFrameAsync": "Non è possibile riavviare il frame asincrono",
- "error.resumeDidFail": "Non è possibile riprendere",
- "error.stackFrameNotFound": "Stack frame non trovato",
- "error.stepInDidFail": "Non è possibile eseguire l'istruzione",
- "error.stepOutDidFail": "Non è possibile uscire dall'istruzione/routine",
- "error.stepOverDidFail": "Non è possibile eseguire il passaggio successivo",
- "error.threadNotPaused": "Il thread non viene sospeso",
- "error.threadNotPausedOnException": "Il thread non viene sospeso in corrispondenza di un'eccezione",
- "error.unknownRestartError": "Non è stato possibile riavviare il frame",
- "pause.DomBreakpoint": "Sospeso in corrispondenza del punto di interruzione DOM",
- "pause.assert": "Sospeso in corrispondenza dell'asserzione",
- "pause.breakpoint": "Sospeso in corrispondenza del punto di interruzione",
- "pause.debugCommand": "Sospeso in corrispondenza della chiamata di debug()",
- "pause.default": "Sospeso",
- "pause.eventListener": "Sospeso in corrispondenza del listener di eventi",
- "pause.exception": "Sospeso in corrispondenza dell'eccezione",
- "pause.instrumentation": "Sospeso in corrispondenza del punto di interruzione della strumentazione",
- "pause.oom": "Sospeso prima dell'eccezione di memoria insufficiente",
- "pause.promiseRejection": "Sospeso in corrispondenza del rifiuto della promessa",
- "pause.xhr": "Sospeso in corrispondenza di XMLHttpRequest o di fetch",
- "reason.description.restart": "Sospeso in corrispondenza della voce del frame",
- "warnings.handleSourceMapPause.didNotWait": "AVVISO: l'elaborazione dei source map di {0} ha richiesto più di {1} ms, di conseguenza l'esecuzione è continuata senza attendere l'impostazione di tutti i punti di interruzione per lo script."
- },
- "/src/adapter/variableStore": {
- "error.customValueDescriptionGeneratorFailed": "{0} (non è stato possibile descrivere: {1})",
- "error.emptyExpression": "Non è possibile impostare un valore vuoto",
- "error.invalidExpression": "Espressione non valida",
- "error.setVariableDidFail": "Non è possibile impostare il valore della variabile",
- "error.unknown": "Errore sconosciuto",
- "error.variableNotFound": "Variabile non trovata"
- },
- "/src/binder": {
- "breakpoint.provisionalBreakpoint": "Punto di interruzione non associato"
- },
- "/src/dap/errors": {
- "NVM_HOME.not.found.message": "L'attributo 'runtimeVersion' richiede il version manager 'nvm-windows' o 'nvs' di Node.js.",
- "NVS_HOME.not.found.message": "L'attributo 'runtimeVersion' richiede l'installazione del version manager 'nvs' o 'nvm' di Node.js.",
- "VSND2011": "Non è possibile avviare la destinazione di debug nel terminale ({0}).",
- "VSND2029": "Non è possibile caricare le variabili di ambiente dal file ({0}).",
- "asyncScopesNotAvailable": "Variabili non disponibili negli stack asincroni",
- "breakpointSyntaxError": "Errore di sintassi durante l'impostazione del punto di interruzione con condizione {0} alla riga {1}: {2}",
- "browserVersionNotFound": "Non è possibile trovare {0} versione {1}. Le versioni individuate automaticamente disponibili sono: {2}. È possibile impostare \"runtimeExecutable\" nel file launch.json su uno di questi valori o specificare un percorso assoluto del file eseguibile del browser.",
- "error.browserAttachError": "Non è possibile collegarsi al browser",
- "error.browserLaunchError": "Non è possibile avviare il browser: \"{0}\"",
- "error.threadNotFound": "Pagina di destinazione non trovata. Potrebbe essere necessario aggiornare l'elemento \"urlFilter\" in modo che corrisponda alla pagina di cui eseguire il debug.",
- "invalidHitCondition": "La condizione raggiunta non è valida: \"{0}\". È prevista un'espressione simile a \"> 42\" o \"== 2\".",
- "noBrowserInstallFound": "Nel sistema non è stata trovata alcuna installazione del browser. Provare a installarlo o a specificare un percorso assoluto del browser nella sezione \"runtimeExecutable\" del file launch.json.",
- "noUwpPipeFound": "Impossibile connettersi ad alcuna pipe webview UWP. Assicurarsi che la visualizzazione Web sia ospitata in modalità di debug e che 'pipeName' in 'launch.json' sia corretto.",
- "profile.error.concurrent": "Arrestare il profilo in esecuzione prima di avviarne uno nuovo.",
- "profile.error.generic": "Si è verificato un errore durante l'acquisizione di un profilo dalla destinazione.",
- "runtime.node.notfound": "Non è possibile trovare il file binario \"{0}\" di Node.js: {1}. Assicurarsi che Node.js sia installato e sia indicato in PATH o impostare \"runtimeExecutable\" nel file launch.json",
- "runtime.node.outdated": "La versione di Node in \"{0}\" è obsoleta (versione {1}). È necessario almeno Node 8.x.",
- "runtime.version.not.found.message": "La versione '{0}' di Node.js non è stata installata con lo strumento di gestione delle versioni {1}.",
- "sourcemapParseError": "Non è stato possibile leggere il source map per {0}: {1}",
- "uwpPipeNotAvailable": "Il debug della visualizzazione Web della piattaforma UWP non è disponibile nella piattaforma."
- },
- "/src/debugServer": {
- "breakpoint.provisionalBreakpoint": "Punto di interruzione non associato"
- },
- "/src/targets/browser/browserAttacher": {
- "attach.cannotConnect": "Non è possibile connettersi alla destinazione in {0}: {1}",
- "chrome.targets.placeholder": "Selezionare una scheda"
- },
- "/src/targets/node/nodeAttacher": {
- "node.attach.restart.message": "Connessione persa all'oggetto del debug. Verrà effettuato un nuovo tentativo di connessione tra {0} ms\r\n"
- },
- "/src/targets/node/nodeBinaryProvider": {
- "outOfDate": "{0} Provare comunque a eseguire il debug?",
- "runtime.node.notfound.enoent": "il percorso non esiste",
- "runtime.node.notfound.spawnErr": "si è verificato un errore durante il recupero della versione: {0}",
- "warning.16bpIssue": "Alcuni punti di interruzione potrebbero non funzionare nella versione di Node.js usata. È consigliabile eseguire l'aggiornamento per le correzioni di bug, prestazioni e sicurezza più recenti. Dettagli: https://aka.ms/AAcsvqm",
- "warning.8outdated": "Si sta eseguendo una versione obsoleta di Node.js. È consigliabile eseguire l'aggiornamento per ottenere le correzioni di bug, per le prestazioni e la sicurezza più recenti.",
- "yes": "Sì"
- },
- "/src/ui/autoAttach": {
- "details": "Dettagli"
- },
- "/src/ui/companionBrowserLaunch": {
- "cannotDebugInBrowser": "Non è possibile avviare un browser in modalità di debug da questa posizione. Per abilitare il debug, aprire l'area di lavoro in VS Code sul desktop."
- },
- "/src/ui/configuration/chromiumDebugConfigurationProvider": {
- "chrome.launch.name": "Avvia Chrome con localhost",
- "existingBrowser.alert": "Sembra che sia già in esecuzione un browser da {0}. Chiuderlo prima di provare a eseguire il debug, altrimenti VS Code potrebbe non essere in grado di connettersi ad esso.",
- "existingBrowser.debugAnyway": "Esegui comunque il debug",
- "existingBrowser.location.default": "una sessione di debug meno recente",
- "existingBrowser.location.userDataDir": "la directory userDataDir configurata"
- },
- "/src/ui/configuration/edgeDebugConfigurationProvider": {
- "chrome.launch.name": "Avvia Edge con localhost"
- },
- "/src/ui/configuration/nodeDebugConfigurationProvider": {
- "debug.terminal.label": "Terminale di debug di JavaScript",
- "node.launch.currentFile": "Esegui file corrente",
- "node.launch.script": "Esegui script: {0}"
- },
- "/src/ui/configuration/nodeDebugConfigurationResolver": {
- "cwd.notFound": "Il valore configurato {0} di `cwd` non esiste.",
- "mern.starter.explanation": "Configurazione di lancio creata per '{0}' progetto/i.",
- "node.launch.config.name": "Avvia programma",
- "outFiles.explanation": "Modificare i criteri GLOB nell'attributo 'outFiles' in modo che includano il codice JavaScript generato.",
- "program.guessed.from.package.json.explanation": "Configurazione di lancio creata sulla base di 'package.json'.",
- "program.not.found.message": "Non è stato trovato alcun programma di cui eseguire il debug"
- },
- "/src/ui/debugLinkUI": {
- "debugLink.invalidUrl": "L'URL specificato non è valido",
- "debugLink.savePrompt": "Salvare una configurazione nel file launch.json per accedervi più facilmente in un secondo momento?",
- "never": "Mai",
- "no": "No",
- "yes": "Sì"
- },
- "/src/ui/debugNpmScript": {
- "debug.npm.noScripts": "Nel file package.json non sono stati trovati script npm",
- "debug.npm.noWorkspaceFolder": "Per eseguire il debug di script npm, è necessario aprire una cartella dell'area di lavoro.",
- "debug.npm.notFound.open": "Modifica package.json",
- "debug.npm.parseError": "Non è stato possibile leggere {0}: {1}"
- },
- "/src/ui/debugTerminalUI": {
- "terminal.cwdpick": "Selezionare la cartella di lavoro corrente per un nuovo terminale."
- },
- "/src/ui/diagnosticsUI": {
- "inspectSessionEnded": "Sembra che la sessione di debug sia già stata terminata. Provare a ripetere il debug, quindi eseguire il comando \"Debug: Esegui diagnosi dei problemi dei punti di interruzione\".",
- "never": "Mai",
- "notNow": "Non adesso",
- "selectInspectSession": "Selezionare la sessione da ispezionare:",
- "yes": "Sì"
- },
- "/src/ui/disableSourceMapUI": {
- "always": "Sempre",
- "disableSourceMapUi.msg": "Questo è un percorso di file mancante a cui fa riferimento un mapping di origine. Eseguire invece il debug della versione compilata?",
- "no": "No",
- "yes": "Sì"
- },
- "/src/ui/edgeDevToolOpener": {
- "selectEdgeToolSession": "Selezionare la pagina in cui si vuole aprire Devtools"
- },
- "/src/ui/linkedBreakpointLocationUI": {
- "ignore": "Ignora",
- "readMore": "Altre informazioni"
- },
- "/src/ui/longPredictionUI": {
- "longPredictionWarning.disable": "Non visualizzare più questo messaggio",
- "longPredictionWarning.message": "La configurazione dei punti di interruzione sta richiedendo più tempo del previsto. Per velocizzare l'operazione, aggiornare 'outFiles' nel file launch.json.",
- "longPredictionWarning.noFolder": "Non ci sono cartelle dell'area di lavoro aperte.",
- "longPredictionWarning.open": "Apri launch.json"
- },
- "/src/ui/processPicker": {
- "cannot.enable.debug.mode.error": "Collegamento a processo: non è possibile abilitare la modalità di debug per il processo '{0}' ({1}).",
- "pickNodeProcess": "Selezionare il processo node.js a cui collegarsi",
- "process.id.error": "Collegamento a processo: '{0}' non sembra essere un ID processo.",
- "process.id.port.signal": "ID processo: {0}, porta di debug: {1} ({2})",
- "process.id.signal": "ID processo: {0} ({1})",
- "process.picker.error": "Selezione del processo non riuscita ({0})"
- },
- "/src/ui/profiling/breakpointTerminationCondition": {
- "breakpointTerminationWarnConfirm": "OK",
- "breakpointTerminationWarnSlow": "La profilatura con i punti di interruzione abilitati può modificare le prestazioni del codice. Può essere utile per convalidare i risultati con le condizioni di terminazione \"duration\" o \"manual\".",
- "profile.termination.breakpoint.description": "Esegui finché non viene raggiunto un punto di interruzione specifico",
- "profile.termination.breakpoint.label": "Seleziona punto di interruzione"
- },
- "/src/ui/profiling/durationTerminationCondition": {
- "profile.termination.duration.description": "Esegui per un intervallo di tempo specifico",
- "profile.termination.duration.inputTitle": "Durata del profilo",
- "profile.termination.duration.invalidFormat": "Immettere un numero",
- "profile.termination.duration.invalidLength": "Immetti un numero maggiore di 1",
- "profile.termination.duration.label": "Durata",
- "profile.termination.duration.placeholder": "Durata del profilo in secondi, ad esempio \"5\""
- },
- "/src/ui/profiling/manualTerminationCondition": {
- "profile.termination.duration.description": "Esegui finché non viene arrestato manualmente",
- "profile.termination.duration.label": "Manuale"
- },
- "/src/ui/profiling/uiProfileManager": {
- "no": "No",
- "profile.alreadyRunning": "Una sessione di profilatura è già in esecuzione. Arrestarla e avviarne una nuova?",
- "profile.sessionState": "Profilatura",
- "profile.status.default": "$(loading~spin) Fare clic per arrestare la profilatura",
- "profile.status.multiSession": "$(loading~spin) Fare clic per arrestare la profilatura ({0} sessioni)",
- "profile.status.single": "$(loading~spin) Fare clic per arrestare la profilatura ({0})",
- "profile.termination.title": "Tempo di esecuzione del profilo:",
- "profile.type.title": "Tipo di profilo:",
- "yes": "Sì"
- },
- "/src/ui/profiling/uiProfileSession": {
- "profile.saving": "Salvataggio",
- "progress.profile.start": "Avvio del profilo in corso...",
- "progress.profile.stop": "Arresto del profilo in corso..."
- },
- "/src/ui/terminalLinkHandler": {
- "cantOpenChromeOnWeb": "Non è possibile avviare un browser in modalità di debug da questa posizione. Se si vuole eseguire il debug di questa pagina Web, aprire l'area di lavoro da VS Code sul desktop.",
- "terminalLinkHover.debug": "Esegui debug dell'URL"
- },
- "/src/vsDebugServer": {
- "session.rootSessionName": "Adattatore di debug JavaScript"
- },
"package": {
- "add.browser.breakpoint": "Aggiungi punto di interruzione browser",
+ "add.eventListener.breakpoint": "Attiva/Disattiva i punti di interruzione del listener di eventi",
+ "add.xhr.breakpoint": "Aggiungi punto di interruzione XHR/recupero",
"attach.node.process": "Collega al processo Node",
"base.cascadeTerminateToConfigurations.label": "Elenco di sessioni di debug che verranno arrestate in seguito alla terminazione della sessione di debug.",
+ "base.enableDWARF.label": "Stabilisce se il debugger tenterà di leggere i simboli del debug DWARF da WebAssembly, operazione che potrebbe richiedere un utilizzo intensivo delle risorse. Richiede l'estensione `ms-vscode.wasm-dwarf-debugging` per funzionare.",
+ "breakpoint.xhr.any": "Qualsiasi XHR/recupero",
+ "breakpoint.xhr.contains": "Interrompi quando l'URL contiene:",
"browser.address.description": "Indirizzo IP o nome host su cui è in ascolto il browser di cui viene eseguito il debug.",
"browser.attach.port.description": "Porta da usare per eseguire il debug remoto del browse, specificata come `--remote-debugging-port` all'avvio del browser.",
"browser.baseUrl.description": "URL di base per la risoluzione di baseUrl di percorsi. baseURL viene tagliato quando si esegue il mapping di URL ai file su disco. L'impostazione predefinita è il dominio dell'URL di avvio.",
@@ -294,7 +27,9 @@
"browser.env.description": "Dizionario facoltativo di coppie chiave-valore di ambiente per il browser.",
"browser.file.description": "File HTML locale da aprire nel browser",
"browser.includeDefaultArgs.description": "Indica se gli argomenti predefiniti di avvio del browser (per disabilitare le funzioni che possono rendere più difficile il debug) saranno inclusi nell'avvio.",
+ "browser.includeLaunchArgs.description": "Avanzate: indica se nel browser sono impostati argomenti di avvio/debug predefiniti. Il debugger presuppone che il browser usi il debug della pipe, come quello fornito con '--remote-debugging-pipe'.",
"browser.inspectUri.description": "Formato da usare per riscrivere inspectUri. Si tratta di una stringa modello che interpola le chiavi in `{curlyBraces}`. Le chiavi disponibili sono:\r\n - `url.*` è l'indirizzo analizzato dell'applicazione in esecuzione, ad esempio `{url.port}`, `{url.hostname}`\r\n - `port` è la porta di debug su cui Chrome rimane in ascolto.\r\n - `browserInspectUri` è l'URI di controllo nel browser avviato\r\n - `browserInspectUriPath` è la parte del percorso dell'URI di controllo nel browser avviato (ad esempio: \"/devtools/browser/e9ec0098-306e-472a-8133-5e42488929c2\").\r\n - `wsProtocol` è il protocollo WebSocket suggerito. È impostato su `wss` se l'URL originale è `https`; altrimenti è `ws`.\r\n",
+ "browser.killBehavior.description": "Configura la modalità di terminazione dei processi del browser all'arresto della sessione con 'cleanUp: wholeBrowser'. Può essere:\r\n\r\n- forceful (impostazione predefinita): arresta forzatamente l'albero processi. Invia SIGKILL in posix oppure 'taskkill.exe /F' in Windows.\r\n- polite: arresta normalmente l'albero processi. È possibile che l'esecuzione dei processi con comportamento anomalo prosegua dopo che vengono arrestati in questo modo. Invia SIGTERM in posix oppure 'taskkill.exe' senza flag '/F' (force) in Windows.\r\n- none: la terminazione non avverrà.",
"browser.launch.port.description": "Porta su cui è in ascolto il browser. Con l'impostazione predefinita \"0\" il debugger del browser verrà eseguito tramite pipe. Questo approccio è in genere più sicuro e costituisce la scelta consigliata a meno che non sia necessario collegarsi al browser da un altro strumento.",
"browser.pathMapping.description": "Mapping di URL/percorsi di cartelle locali per risolvere gli script nel browser in script su disco",
"browser.perScriptSourcemaps.description": "Indica se gli script vengono caricati singolarmente con mapping di origine univoci contenenti il nome di base del file di origine. Può essere impostato per ottimizzare la gestione di mapping di origine quando si gestiscono numerosi script di piccole dimensioni. Se è impostata su \"auto\", verranno rilevati i casi noti se appropriato.",
@@ -305,7 +40,7 @@
"browser.runtimeExecutable.description": "Corrisponde a 'canary', 'stable', 'custom' o al percorso dell'eseguibile del browser. L'impostazione custom si riferisce a un wrapper o a una build personalizzata oppure alla variabile di ambiente CHROME_PATH.",
"browser.runtimeExecutable.edge.description": "Corrisponde a 'canary', 'stable', 'dev', 'custom' o al percorso dell'eseguibile del browser. L'impostazione custom si riferisce a un wrapper o a una build personalizzata oppure alla variabile di ambiente EDGE_PATH.",
"browser.server.description": "Consente di configurare un server Web per l'avvio. Accetta la stessa configurazione dell'attività di avvio 'node'.",
- "browser.skipFiles.description": "Matrice di nomi di file o di cartelle o GLOB di percorso da ignorare durante il debug.",
+ "browser.skipFiles.description": "Matrice di nomi di file o cartelle o GLOB di percorso da ignorare durante il debug. Sono consentiti modelli e negazioni con asterischi, ad esempio '[\"**/node_modules/**\", \"!**/node_modules/my-module/**\"]'",
"browser.smartStep.description": "Esegue automaticamente un'istruzione alla volta delle righe non sottoposte a mapping nei file dei mapping di origine, ad esempio il codice che TypeScript produce automaticamente durante la generazione di JavaScript per async/await o altre funzionalità.",
"browser.sourceMapPathOverrides.description": "Set di mapping per riscrivere i percorsi dei file di origine dalle posizioni indicate nel mapping di origine alle relative posizioni sul disco. Per dettagli, vedere il file README.",
"browser.sourceMapRenames.description": "Indica se usare il mapping \"names\" nei mapping di origine. Con questa opzione è necessario richiedere il contenuto di origine e tale operazione può risultare lenta con alcuni debugger.",
@@ -330,16 +65,23 @@
"commands.callersRemoveAll.label": "Rimuovi tutti i chiamanti esclusi",
"commands.disableSourceMapStepping.label": "Disabilitare istruzione mappata all’origine",
"commands.enableSourceMapStepping.label": "Abilitare istruzione mappata all'origine",
+ "commands.networkClear.label": "Cancella log di rete",
+ "commands.networkCopyURI.label": "Copia URL richiesta",
+ "commands.networkOpenBody.label": "Apri corpo risposta",
+ "commands.networkOpenBodyInHexEditor.label": "Aprire il corpo della risposta nell'editor esadecimale",
+ "commands.networkReplayXHR.label": "Richiesta di riproduzione",
+ "commands.networkViewRequest.label": "Visualizzare la richiesta come cURL",
"configuration.autoAttachMode": "Consente di configurare i processi da collegare e di cui eseguire automaticamente il debug quando `#debug.node.autoAttach#` è impostato su on. Un processo Node avviato con il flag `--inspect` verrà sempre collegato indipendentemente da questa impostazione.",
"configuration.autoAttachMode.always": "Collega automaticamente a ogni processo Node.js avviato nel terminale.",
"configuration.autoAttachMode.disabled": "La funzionalità di collegamento automatico è disabilitata e non visualizzata nella barra di stato.",
"configuration.autoAttachMode.explicit": "Collega automaticamente solo quando è specificato `--inspect`.",
"configuration.autoAttachMode.smart": "Collega automaticamente durante l'esecuzione di script non presenti in una cartella node_modules.",
- "configuration.autoAttachSmartPatterns": "Configures glob patterns for determining when to attach in \"smart\" `#debug.javascript.autoAttachFilter#` mode. `$KNOWN_TOOLS$` is replaced with a list of names of common test and code runners. [Read more on the VS Code docs](https://code.visualstudio.com/docs/nodejs/nodejs-debugging#_auto-attach-smart-patterns).",
+ "configuration.autoAttachSmartPatterns": "Consente di configurare i criteri GLOB per determinare quando collegarsi in modalità `#debug.javascript.autoAttachFilter#` \"intelligente\". `$KNOWN_TOOLS$` viene sostituito con un elenco di nomi di strumenti di esecuzione codice e test comuni. [Altre informazioni disponibili nella documentazione di VS Code](https://code.visualstudio.com/docs/nodejs/nodejs-debugging#_auto-attach-smart-patterns).",
"configuration.automaticallyTunnelRemoteServer": "Durante il debug di un'app Web remota, configura l'eventuale tunneling automatico del server remoto nel computer locale.",
"configuration.breakOnConditionalError": "Indica se arrestare l'esecuzione quando i punti di interruzione condizionali generano un errore.",
"configuration.debugByLinkOptions": "Opzioni usate durante il debug di collegamenti aperto su cui viene fatto clic all'interno del terminale di debug. Impostare su \"false\" per disabilitare questo comportamento.",
"configuration.defaultRuntimeExecutables": "Valore predefinito `runtimeExecutable` usato per le configurazioni di avvio, se non specificato. Può essere usato per configurare percorsi personalizzati per installazioni di Node.js o browser.",
+ "configuration.enableNetworkView": "Abilita la visualizzazione di rete sperimentale per le destinazioni che la supportano.",
"configuration.npmScriptLensLocation": "Indica se visualizzare una finestra di CodeLens \"Esegui\" ed \"Esegui debug\" negli script npm. Può trovarsi in \"all\", negli script, in \"top\" della sezione script o in \"never\".",
"configuration.pickAndAttachOptions": "Opzioni predefinite usate durante il debug di un processo tramite il comando `Debug: Collega al processo di terminale Node.js`",
"configuration.resourceRequestOptions": "Opzioni della richiesta da usare durante il caricamento delle risorse, ad esempio i mapping di origine, nel debugger. Può essere necessario configurare questa impostazione se, ad esempio, i mapping di origine richiedono l'autenticazione oppure usano un certificato autofirmato. Le opzioni vengono usate per creare una richiesta tramite la libreria [`got`](https://github.com/sindresorhus/got).\r\n\r\nPer eseguire un'azione comune, quale disabilitare la verifica dei certificati, è possibile passare `{ \"https\": { \"rejectUnauthorized\": false } }`.",
@@ -361,7 +103,7 @@
"debug.terminal.welcome": "[Terminale di debug di JavaScript](command:extension.js-debug.createDebuggerTerminal)\r\n\r\nÈ possibile usare il terminale di debug di JavaScript per eseguire il debug di processi Node.js eseguiti dalla riga di comando.",
"debug.terminal.welcomeWithLink": "[Terminale di debug di JavaScript](command:extension.js-debug.createDebuggerTerminal)\r\n\r\nÈ possibile usare il terminale di debug di JavaScript per eseguire il debug di processi Node.js eseguiti dalla riga di comando.\r\n\r\n[URL di debug](command:extension.js-debug.debugLink)",
"debug.unverifiedBreakpoints": "Non è stato possibile impostare alcuni punti di interruzione. Se si verifica un problema, è possibile [risolvere i problemi della configurazione di avvio](command:extension.js-debug.createDiagnostics).",
- "debugLink.label": "Apri collegamento",
+ "debugLink.label": "Aprire collegamento",
"edge.address.description": "Durante il debug di webview, indirizzo IP o nome host su cui è in ascolto la webview. Se non è impostato, verrà individuato automaticamente.",
"edge.attach.description": "Si collega a un'istanza di Microsoft Edge già in modalità di debug",
"edge.attach.label": "Microsoft Edge: Collega",
@@ -371,6 +113,7 @@
"edge.port.description": "Durante il debug di webview, porta su cui è in ascolto la webview. Se non è impostata, verrà individuata automaticamente.",
"edge.useWebView.attach.description": "Oggetto contenente 'pipeName' di una pipe di debug per una webview2 ospitata dalla piattaforma UWP. Si tratta di \"MyTestSharedMemory\" durante la creazione della pipe \"\\\\.\\pipe\\LOCAL\\MyTestSharedMemory\"",
"edge.useWebView.launch.description": "Quando è 'true', il debugger considererà l'eseguibile di runtime come un'applicazione host che contiene una webview e consentirà di eseguire il debug del contenuto dello script della webview.",
+ "edit.xhr.breakpoint": "Modifica punto di interruzione XHR/recupero",
"enableContentValidation.description": "Attiva/Disattiva la verifica della corrispondenza del contenuto dei file su disco con quello dei file caricati nel runtime. Questa opzione è utile in diversi scenari e obbligatoria in alcuni, ma può causare problemi se, ad esempio, sono presenti trasformazioni lato server degli script.",
"errors.timeout": "{0}: timeout dopo {1} ms",
"extension.description": "Estensione per il debug di programmi Node.js e di Chrome.",
@@ -382,6 +125,8 @@
"extensionHost.launch.rendererDebugOptions": "Opzioni di avvio di Chrome usate durante il collegamento al processo del renderer con `debugWebviews` o `debugWebWorkerHost`.",
"extensionHost.launch.runtimeExecutable.description": "Percorso assoluto di VS Code.",
"extensionHost.launch.stopOnEntry.description": "Arresta automaticamente l'host dell'estensione dopo l'avvio.",
+ "extensionHost.launch.testConfiguration": "Percorso di un file di configurazione di test per l'[interfaccia della riga di comando di test](https://code.visualstudio.com/api/working-with-extensions/testing-extension#quick-setup-the-test-cli).",
+ "extensionHost.launch.testConfigurationLabel": "Singola configurazione da eseguire dal file. Se non specificato, potrebbe essere richiesto di effettuare una selezione.",
"extensionHost.snippet.launch.description": "Avvia un'estensione VS Code in modalità di debug",
"extensionHost.snippet.launch.label": "Sviluppo di estensioni per VS Code",
"getDiagnosticLogs.label": "Salvare i log di debug JS di diagnostica",
@@ -397,11 +142,13 @@
"node.attach.processId.description": "ID del processo a cui collegarsi.",
"node.attach.restart.description": "Prova a riconnettersi al programma in caso di perdita della connessione. Se è impostata su `true`, verrà effettuato un tentativo al secondo per un tempo indefinito. È possibile personalizzare l'intervallo e il numero massimo di tentativi specificando `delay` e `maxAttempts` in un oggetto.",
"node.attachSimplePort.description": "Se è impostata, si collega al processo tramite la porta specificata. In genere non è più necessaria per i programmi Node.js e non include più la funzionalità per eseguire il debug dei processi figlio, ma può essere utile in scenari più complessi, ad esempio con gli avvii di Deno e Docker. Se è impostata su 0, verrà scelta una porta casuale e il parametro --inspect-brk verrà aggiunto automaticamente agli argomenti di avvio.",
- "node.console.title": "Console di debug di Node",
+ "node.console.title": "Console di debug nodo",
"node.disableOptimisticBPs.description": "Non imposta punti di interruzione in un file finché non viene caricato un mapping di origine per tale file.",
+ "node.enableTurboSourcemaps.description": "Configura se usare un nuovo meccanismo più veloce per l'individuazione del mapping di origine",
+ "node.experimentalNetworking.description": "Abilitare l'ispezione sperimentale in Node.js. Se impostata su 'auto', questa opzione è abilitata per le versioni di Node.js che la supportano. Può essere impostata su 'on' o 'off' per abilitarla o disabilitarla in modo esplicito.",
"node.killBehavior.description": "Consente di configurare la modalità di terminazione dei processi di debug all'arresto della sessione. Può essere:\r\n\r\n- forceful (impostazione predefinita): arresta forzatamente l'albero processi. Invia SIGKILL in posix oppure `taskkill.exe /F` in Windows.\r\n- polite: arresta normalmente l'albero processi. È possibile che l'esecuzione dei processi con comportamento anomalo prosegua dopo che vengono arrestati in questo modo. Invia SIGTERM in posix oppure `taskkill.exe` senza flag `/F` (force) in Windows.\r\n- none: i processi non vengono terminati.",
"node.label": "Node.js",
- "node.launch.args.description": "Command line arguments passed to the program.\r\n\r\nCan be an array of strings or a single string. When the program is launched in a terminal, setting this property to a single string will result in the arguments not being escaped for the shell.",
+ "node.launch.args.description": "Argomenti della riga di comando passati al programma.\r\n\r\nPuò trattarsi di una matrice di stringhe o di una singola stringa. Quando il programma viene avviato in un terminale, se si imposta questa proprietà su una singola stringa, gli argomenti non verranno preceduti da un carattere di escape per la shell.",
"node.launch.autoAttachChildProcesses.description": "Collega automaticamente il debugger ad un nuovo processo figlio.",
"node.launch.config.name": "Avvia",
"node.launch.console.description": "Indica dove avviare la destinazione di debug.",
@@ -426,13 +173,14 @@
"node.localRoot.description": "Percorso della directory locale che contiene il programma.",
"node.pauseForSourceMap.description": "Indica se attendere il caricamento dei source map per ogni script in arrivo. Questa impostazione implica un sovraccarico delle prestazioni e può essere disabilitata senza problemi quando non viene eseguita su disco, purché `rootPath` non sia disabilitato.",
"node.port.description": "Porta di debug a cui connettersi. Il valore predefinito è 9229.",
- "node.processattach.config.name": "Collega a processo",
+ "node.processattach.config.name": "Connetti a processo",
"node.profileStartup.description": "Se è true, la profilatura inizierà all'avvio del processo",
+ "node.remote.host.header.description": "Intestazione host esplicita da usare durante la connessione al WebSocket dell'ispettore. Se non viene specificato alcun valore, l'intestazione dell'host verrà impostata su 'localhost'. Ciò è utile se l'ispettore viene eseguito dietro un proxy che accetta solo intestazioni host specifiche.",
"node.remoteRoot.description": "Percorso assoluto della directory remota che contiene il programma.",
"node.resolveSourceMapLocations.description": "Elenco di criteri di corrispondenza minima per le posizioni (cartelle e URL) in cui è possibile usare source map per risolvere file locali. Può essere usato per evitare di passare erroneamente al codice con source mapping esterno. Per escludere i criteri, aggiungere il prefisso \"!\". Può essere impostato su una matrice vuota o su Null per evitare la restrizione.",
"node.showAsyncStacks.description": "Mostra le chiamate asincrone che hanno causato lo stack di chiamate corrente.",
"node.snippet.attach.description": "Collega a un programma node in esecuzione",
- "node.snippet.attach.label": "Node.js: Collega",
+ "node.snippet.attach.label": "Node.js: collega",
"node.snippet.attachProcess.description": "Apre l'utilità di selezione processi per selezionare il processo Node a cui collegarsi",
"node.snippet.attachProcess.label": "Node.js: collega al processo",
"node.snippet.electron.description": "Esegue il debug del processo principale Electron",
@@ -462,8 +210,9 @@
"pretty.print.script": "Riformattazione per il debug",
"profile.start": "Accetta profilo prestazioni",
"profile.stop": "Arresta profilo prestazioni",
- "remove.browser.breakpoint": "Rimuovi punto di interruzione browser",
- "remove.browser.breakpoint.all": "Rimuovi tutti i punti di interruzione browser",
+ "remove.eventListener.breakpoint.all": "Rimuovi tutti i punti di interruzione del listener di eventi",
+ "remove.xhr.breakpoint": "Rimuovi punto di interruzione XHR/recupero",
+ "remove.xhr.breakpoint.all": "Rimuovi tutti i punti di interruzione XHR/recupero",
"requestCDPProxy.label": "Richiedi proxy CDP per la sessione di debug",
"skipFiles.description": "Matrice di criteri GLOB per i file da ignorare durante il debug. Il criterio `/**` consente di trovare una corrispondenza per tutti i moduli Node.js interni.",
"smartStep.description": "Esegue automaticamente un'istruzione alla volta del codice generato di cui non è possibile eseguire il mapping all'origine iniziale.",
@@ -481,6 +230,230 @@
"trace.logFile.description": "Consente di configurare il percorso in cui vengono scritti i log del disco.",
"trace.stdio.description": "Indica se restituire i dati di analisi del browser o dell'applicazione avviata.",
"workspaceTrust.description": "Per eseguire il debug del codice in questa area di lavoro, è necessaria l'attendibilità."
+ },
+ "bundle": {
+ "A profiling session is already running, would you like to stop it and start a new session?": "Una sessione di profilatura è già in esecuzione. Arrestarla e avviarne una nuova?",
+ "Add XHR Breakpoint": "Aggiungi punto di interruzione XHR",
+ "Add new URL...": "Aggiungi nuovo URL...",
+ "Adjust glob pattern(s) in the 'outFiles' attribute so that they cover the generated JavaScript.": "Modificare i criteri GLOB nell'attributo 'outFiles' in modo che includano il codice JavaScript generato.",
+ "Always": "Sempre",
+ "Always in this Workspace": "Sempre in questa area di lavoro",
+ "An error occurred taking a profile from the target.": "Si è verificato un errore durante l'acquisizione di un profilo dalla destinazione.",
+ "Animation Frame Fired": "Frame di animazione generato",
+ "Any XHR or fetch": "Qualsiasi XHR o recupero",
+ "Assertion failed": "Asserzione non riuscita",
+ "Attach to process: '{0}' doesn't look like a process id.": "Collegamento a processo: '{0}' non sembra essere un ID processo.",
+ "Attach to process: cannot enable debug mode for process '{0}' ({1}).": "Collegamento a processo: non è possibile abilitare la modalità di debug per il processo '{0}' ({1}).",
+ "Attribute 'runtimeVersion' requires Node.js version manager 'nvm-windows' or 'nvs'.": "L'attributo 'runtimeVersion' richiede il version manager 'nvm-windows' o 'nvs' di Node.js.",
+ "Attribute 'runtimeVersion' requires Node.js version manager 'nvs', 'nvm' or 'fnm' to be installed.": "L'attributo 'runtimeVersion' richiede l'installazione del version manager 'nvs' o 'fnm' di Node.js.",
+ "Attribute 'runtimeVersion' with a flavor/architecture requires 'nvs' to be installed.": "L'attributo 'runtimeVersion' con una versione/architettura richiede l'installazione di 'nvs'.",
+ "Bidder Bidding Phase Start": "Inizio fase di offerta dell'offerente",
+ "Bidder Reporting Phase Start": "Inizio fase reporting dell’offerente",
+ "Block": "Blocca",
+ "Break when URL Contains": "Interrompi quando l'URL contiene",
+ "Breaks on all throw errors, even if they're caught later.": "Imposta un'interruzione in corrispondenza di tutti gli errori di generazione, anche se vengono rilevati in seguito.",
+ "Breaks only on errors or promise rejections that are not handled.": "Si interrompe solo in corrispondenza di errori o rifiuti di promesse non gestiti.",
+ "Browser connection failed, will retry: {0}": "La connessione del browser non è riuscita. Verrà effettuato un nuovo tentativo: {0}",
+ "CPU Profile": "Profilo CPU",
+ "CPU profile saved as \"{0}\" in your workspace folder": "Profilo CPU salvato come \"{0}\" nella cartella dell'area di lavoro",
+ "CSP violation \"{0}\"": "Violazione \"{0}\" dei criteri di sicurezza del contenuto",
+ "Can't find Node.js binary \"{0}\": {1}. Make sure Node.js is installed and in your PATH, or set the \"runtimeExecutable\" in your launch.json": "Non è possibile trovare il file binario \"{0}\" di Node.js: {1}. Assicurarsi che Node.js sia installato e sia indicato in PATH o impostare \"runtimeExecutable\" nel file launch.json",
+ "Can't load environment variables from file ({0}).": "Non è possibile caricare le variabili di ambiente dal file ({0}).",
+ "Cancel Animation Frame": "Annulla frame di animazione",
+ "Cannot connect to the target at {0}: {1}": "Non è possibile connettersi alla destinazione in {0}: {1}",
+ "Cannot find `{0}` installed in {1}": "Non è possibile trovare '{0}' installato in {1}",
+ "Cannot find a program to debug": "Non è stato trovato alcun programma di cui eseguire il debug",
+ "Cannot find test configuration with label `{0}`, got: {1}": "Non è possibile trovare la configurazione di test con etichetta '{0}', ottenuto: {1}",
+ "Cannot launch debug target in terminal ({0}).": "Non è possibile avviare la destinazione di debug nel terminale ({0}).",
+ "Cannot restart asynchronous frame": "Non è possibile riavviare il frame asincrono",
+ "Cannot set an empty value": "Non è possibile impostare un valore vuoto",
+ "Catch Block": "Blocco catch",
+ "Caught Exceptions": "Eccezioni rilevate",
+ "Close AudioContext": "Chiudi AudioContext",
+ "Closure": "Chiusura",
+ "Closure ({0})": "Chiusura ({0})",
+ "Console profile started": "Profilo console avviato",
+ "Could not connect to any UWP Webview pipe. Make sure your webview is hosted in debug mode, and that the `pipeName` in your `launch.json` is correct.": "Impossibile connettersi ad alcuna pipe webview UWP. Assicurarsi che la visualizzazione Web sia ospitata in modalità di debug e che 'pipeName' in 'launch.json' sia corretto.",
+ "Could not find a location for the variable": "Non è stato trovato alcun percorso per la variabile",
+ "Could not query the provided object": "Non è stato possibile eseguire una query sull'oggetto specificato",
+ "Could not read source map for {0}: {1}": "Non è stato possibile leggere il source map per {0}: {1}",
+ "Could not read {0}: {1}": "Non è stato possibile leggere {0}: {1}",
+ "Create AudioContext": "Crea AudioContext",
+ "Create canvas context": "Crea contesto canvas",
+ "Debug Anyway": "Esegui comunque il debug",
+ "Debug URL": "Esegui debug dell'URL",
+ "Details": "Dettagli",
+ "Don't show again": "Non visualizzare più questo messaggio",
+ "Duration": "Durata",
+ "Duration of Profile": "Durata del profilo",
+ "Edit XHR Breakpoint": "Modifica punto di interruzione XHR",
+ "Edit package.json": "Modifica package.json",
+ "Enables Node.js [auto attach]({0}) debugging in \"{1}\" mode/{Locked='[auto attach]({0})'}the 2nd placeholder is the setting value": "Abilita il debug di Node.js [auto attach]({0}) in modalità \"{1}\"",
+ "Enter a URL or a pattern to match": "Immettere un URL o un criterio per la corrispondenza",
+ "Eval": "Valutazione",
+ "Frame could not be restarted": "Non è stato possibile riavviare il frame",
+ "Generates a .cpuprofile file you can open in VS Code or the Edge/Chrome devtools": "Genera un file con estensione cpuprofile che è possibile aprire in VS Code o in Edge/Chrome devtools",
+ "Generates a .heapprofile file you can open in VS Code or the Edge/Chrome devtools": "Genera un file con estensione heappro che è possibile aprire in VS Code o in Edge/Chrome devtools",
+ "Generates a .heapsnapshot file you can open in VS Code or the Edge/Chrome devtools": "Genera un file con estensione heapsnapshot che è possibile aprire in VS Code o in Edge/Chrome devtools",
+ "Global": "Globale",
+ "Globals": "Globali",
+ "Got it!": "OK",
+ "Heap Profile": "Profilo heap",
+ "Heap Snapshot": "Snapshot heap",
+ "How long to run the profile": "Tempo di esecuzione del profilo",
+ "Ignore": "Ignora",
+ "Installation complete! The extension will be used after you restart your debug session.": "Installazione completata. L'estensione verrà usata dopo il riavvio della sessione di debug.",
+ "Installing the DWARF debugger...": "Installazione del debugger DWARF in corso...",
+ "Invalid expression": "Espressione non valida",
+ "Invalid hit condition \"{0}\". Expected an expression like \"> 42\" or \"== 2\".": "La condizione raggiunta non è valida: \"{0}\". È prevista un'espressione simile a \"> 42\" o \"== 2\".",
+ "It looks like a browser is already running from {0}. Please close it before trying to debug, otherwise VS Code may not be able to connect to it.": "Sembra che sia già in esecuzione un browser da {0}. Chiuderlo prima di provare a eseguire il debug, altrimenti VS Code potrebbe non essere in grado di connettersi ad esso.",
+ "It looks like your debug session has already ended. Try debugging again, then run the \"Debug: Diagnose Breakpoint Problems\" command.": "Sembra che la sessione di debug sia già stata terminata. Provare a ripetere il debug, quindi eseguire il comando \"Debug: Esegui diagnosi dei problemi dei punti di interruzione\".",
+ "It's taking a while to configure your breakpoints. You can speed this up by updating the 'outFiles' in your launch.json.": "La configurazione dei punti di interruzione sta richiedendo più tempo del previsto. Per velocizzare l'operazione, aggiornare 'outFiles' nel file launch.json.",
+ "JavaScript Debug Terminal": "Terminale di debug di JavaScript",
+ "JavaScript debug adapter": "Adattatore di debug JavaScript",
+ "Launch Chrome against localhost": "Avvia Chrome con localhost",
+ "Launch Edge against localhost": "Avvia Edge con localhost",
+ "Launch Program": "Avvia programma",
+ "Launch configuration created based on 'package.json'.": "Configurazione di lancio creata sulla base di 'package.json'.",
+ "Launch configuration for '{0}' project created.": "Configurazione di lancio creata per '{0}' progetto/i.",
+ "Local": "Locale",
+ "Locals": "Locali",
+ "Lost connection to debugee, reconnecting in {0}ms\r\n": "Connessione persa all'oggetto del debug. Verrà effettuato un nuovo tentativo di connessione tra {0} ms\r\n",
+ "Manual": "Manuale",
+ "Missing source information. Did you set \"originalUrl\" or \"source\"?": "Informazioni sull'origine mancanti. Hai impostato \"originalUrl\" o \"source\"?",
+ "Module": "Modulo",
+ "Networking not available.": "Rete non disponibile.",
+ "Never": "Mai",
+ "No": "No",
+ "No npm scripts found in the workspace folder.": "Non sono stati trovati script npm nella cartella dell'area di lavoro.",
+ "No npm scripts found in your package.json": "Nel file package.json non sono stati trovati script npm",
+ "No package.json files found in your workspace.": "Non sono stati trovati file package.json nell'area di lavoro.",
+ "No workspace folder open.": "Non ci sono cartelle dell'area di lavoro aperte.",
+ "Node Attributes": "Attributi nodo",
+ "Node.js version '{0}' not installed using version manager {1}.": "La versione '{0}' di Node.js non è stata installata con lo strumento di gestione delle versioni {1}.",
+ "Not Now": "Non ora",
+ "Only objects can be queried": "È possibile eseguire query solo sugli oggetti",
+ "Open launch.json": "Apri launch.json",
+ "Output has been truncated to the first {0} characters. Run `{1}` to copy the full output.": "L'output è stato troncato ai primi {0} caratteri. Eseguire '{1}' per copiare l'output completo.",
+ "Parameters": "Parametri",
+ "Paused": "Operazione sospesa",
+ "Paused before Out Of Memory exception": "Sospeso prima dell'eccezione di memoria insufficiente",
+ "Paused on Content Security Policy violation instrumentation breakpoint, directive \"{0}\"": "Sospeso in corrispondenza del punto di interruzione della strumentazione per la violazione dei criteri di sicurezza del contenuto. Direttiva \"{0}\"",
+ "Paused on DOM breakpoint": "Sospeso in corrispondenza del punto di interruzione DOM",
+ "Paused on WebGL Error instrumentation breakpoint, error \"{0}\"": "Sospeso in corrispondenza del punto di interruzione della strumentazione per errori WebGL. Errore \"{0}\"",
+ "Paused on XMLHttpRequest or fetch": "Sospeso in corrispondenza di XMLHttpRequest o di fetch",
+ "Paused on assert": "Sospeso in corrispondenza dell'asserzione",
+ "Paused on breakpoint": "Sospeso in corrispondenza del punto di interruzione",
+ "Paused on debug() call": "Sospeso in corrispondenza della chiamata di debug()",
+ "Paused on debugger statement": "Sospeso in corrispondenza dell'istruzione del debugger",
+ "Paused on event listener": "Sospeso in corrispondenza del listener di eventi",
+ "Paused on event listener breakpoint \"{0}\", triggered on \"{1}\"": "Sospeso in corrispondenza del punto di interruzione \"{0}\" del listener di eventi. Attivato su \"{1}\"",
+ "Paused on exception": "Sospeso in corrispondenza dell'eccezione",
+ "Paused on frame entry": "Sospeso in corrispondenza della voce del frame",
+ "Paused on instrumentation breakpoint": "Sospeso in corrispondenza del punto di interruzione della strumentazione",
+ "Paused on instrumentation breakpoint \"{0}\"": "Sospeso in corrispondenza del punto di interruzione \"{0}\" della strumentazione",
+ "Paused on {0}": "Sospeso in caso di {0}",
+ "Pick Breakpoint": "Seleziona punto di interruzione",
+ "Pick the node.js process to attach to": "Selezionare il processo node.js a cui collegarsi",
+ "Please enter a number": "Immettere un numero",
+ "Please enter a number greater than 1": "Immetti un numero maggiore di 1",
+ "Please stop the running profile before starting a new one.": "Arrestare il profilo in esecuzione prima di avviarne uno nuovo.",
+ "Process picker failed ({0})": "Selezione del processo non riuscita ({0})",
+ "Profile duration in seconds, e.g \"5\"": "Durata del profilo in secondi, ad esempio \"5\"",
+ "Profiling": "Profilatura",
+ "Profiling with breakpoints enabled can change the performance of your code. It can be useful to validate your findings with the \"duration\" or \"manual\" termination conditions.": "La profilatura con i punti di interruzione abilitati può modificare le prestazioni del codice. Può essere utile per convalidare i risultati con le condizioni di terminazione \"duration\" o \"manual\".",
+ "Read More": "Altre informazioni",
+ "Request Animation Frame": "Richiedi frame di animazione",
+ "Resume AudioContext": "Riprendi AudioContext",
+ "Return value": "Valore restituito",
+ "Run Current File": "Esegui file corrente",
+ "Run Node.js tool": "Esegui strumento Node.js",
+ "Run Script: {0}": "Esegui script: {0}",
+ "Run Script: {0} ({1})": "Esegui lo script: {0} ({1})",
+ "Run for a specific amount of time": "Esegui per un intervallo di tempo specifico",
+ "Run until a specific breakpoint is hit": "Esegui finché non viene raggiunto un punto di interruzione specifico",
+ "Run until manually stopped": "Esegui finché non viene arrestato manualmente",
+ "Runs a Node.js command-line installed in the workspace node_modules.": "Esegue una riga di comando Node.js installata nell'area di lavoro node_modules.",
+ "Saving": "Salvataggio",
+ "Script": "Script",
+ "Script Blocked by Content Security Policy": "Script bloccato dai criteri di sicurezza del contenuto",
+ "Script First Statement": "Prima istruzione script",
+ "Select a tab": "Selezionare una scheda",
+ "Select a tool to run": "Selezionare uno strumento da eseguire",
+ "Select current working directory for new terminal": "Selezionare la cartella di lavoro corrente per un nuovo terminale.",
+ "Select test configuration to run": "Consente di selezionare la configurazione di test da eseguire.",
+ "Select the page where you want to open the devtools": "Selezionare la pagina in cui si vuole aprire Devtools",
+ "Select the session you want to inspect:": "Selezionare la sessione da ispezionare:",
+ "Seller Reporting Phase Start": "Inizio fase reporting del venditore",
+ "Seller Scoring Phase Start": "Inizio fase di assegnazione punteggio venditore",
+ "Set innerHTML": "Imposta innerHTML",
+ "Skipped by skipFiles": "Ignorato da skipFiles",
+ "Skipped by smartStep": "Ignorato da smartStep",
+ "Some breakpoints might not work in your version of Node.js. We recommend upgrading for the latest bug, performance, and security fixes. Details: https://aka.ms/AAcsvqm": "Alcuni punti di interruzione potrebbero non funzionare nella versione di Node.js usata. È consigliabile eseguire l'aggiornamento per le correzioni di bug, prestazioni e sicurezza più recenti. Dettagli: https://aka.ms/AAcsvqm",
+ "Source not a source map": "Origine non source map",
+ "Source not found": "Origine non trovata",
+ "Stack frame not found": "Stack frame non trovato",
+ "Starting profile...": "Avvio del profilo in corso...",
+ "Stopping profile...": "Arresto del profilo in corso...",
+ "Suspend AudioContext": "Sospendi AudioContext",
+ "Syntax error setting breakpoint with condition {0} on line {1}: {2}": "Errore di sintassi durante l'impostazione del punto di interruzione con condizione {0} alla riga {1}: {2}",
+ "Target page not found. You may need to update your \"urlFilter\" to match the page you want to debug.": "Pagina di destinazione non trovata. Potrebbe essere necessario aggiornare l'elemento \"urlFilter\" in modo che corrisponda alla pagina di cui eseguire il debug.",
+ "The Node version in \"{0}\" is outdated (version {1}), we require at least Node 8.x.": "La versione di Node in \"{0}\" è obsoleta (versione {1}). È necessario almeno Node 8.x.",
+ "The URL provided is invalid": "L'URL specificato non è valido",
+ "The browser process exited with code {0} before connecting to the debug server. Make sure the `runtimeExecutable` is configured correctly and that it can run without errors.": "Il processo del browser è terminato con il codice {0} prima di connettersi al server di debug. Assicurarsi che il `runtimeExecutable` sia configurato correttamente e che possa essere eseguito senza errori.",
+ "The configured `cwd` {0} does not exist.": "Il valore configurato {0} di `cwd` non esiste.",
+ "The configured `cwd` {0} is not a folder.": "Il `cwd` {0} configurato non è una cartella.",
+ "This is a missing file path referenced by a sourcemap. Would you like to debug the compiled version instead?": "Questo è un percorso di file mancante a cui fa riferimento un mapping di origine. Eseguire invece il debug della versione compilata?",
+ "Thread is not paused": "Il thread non viene sospeso",
+ "Thread is not paused on exception": "Il thread non viene sospeso in corrispondenza di un'eccezione",
+ "Thread not found": "Thread non trovato",
+ "Type of profile": "Tipo di profilo",
+ "URL contains \"{0}\"": "L'URL contiene \"{0}\"",
+ "UWP webview debugging is not available on your platform.": "Il debug della visualizzazione Web della piattaforma UWP non è disponibile nella piattaforma.",
+ "Unable to attach to browser": "Non è possibile collegarsi al browser",
+ "Unable to evaluate": "Non è possibile valutare",
+ "Unable to evaluate on async stack frame": "Non è possibile eseguire la valutazione in base allo stack frame asincrono",
+ "Unable to find an installation of the browser on your system. Try installing it, or providing an absolute path to the browser in the \"runtimeExecutable\" in your launch.json.": "Nel sistema non è stata trovata alcuna installazione del browser. Provare a installarlo o a specificare un percorso assoluto del browser nella sezione \"runtimeExecutable\" del file launch.json.",
+ "Unable to find {0} version {1}. Available auto-discovered versions are: {2}. You can set the \"runtimeExecutable\" in your launch.json to one of these, or provide an absolute path to the browser executable.": "Non è possibile trovare {0} versione {1}. Le versioni individuate automaticamente disponibili sono: {2}. È possibile impostare \"runtimeExecutable\" nel file launch.json su uno di questi valori o specificare un percorso assoluto del file eseguibile del browser.",
+ "Unable to launch browser: \"{0}\"": "Non è possibile avviare il browser: \"{0}\"",
+ "Unable to pause": "Non è possibile sospendere",
+ "Unable to pretty print": "Non è possibile riformattare",
+ "Unable to resume": "Non è possibile riprendere",
+ "Unable to retrieve source content": "Non è possibile recuperare il contenuto di origine",
+ "Unable to set variable value": "Non è possibile impostare il valore della variabile",
+ "Unable to step in": "Non è possibile eseguire l'istruzione",
+ "Unable to step next": "Non è possibile eseguire il passaggio successivo",
+ "Unable to step out": "Non è possibile uscire dall'istruzione/routine",
+ "Unbound breakpoint": "Punto di interruzione non associato",
+ "Uncaught Exceptions": "Eccezioni non rilevate",
+ "Unknown error": "Errore sconosciuto",
+ "VS Code can provide better debugging experience for WebAssembly via \"DWARF Debugging\" extension. Would you like to install it?/\"DWARF Debugging\" is the extension name and should not be localized.": "VS Code può offrire un'esperienza di debug migliore per WebAssembly tramite l'estensione \"DWARF Debugging\". Desideri installarla?",
+ "Variable not found": "Variabile non trovata",
+ "Variables not available in async stacks": "Variabili non disponibili negli stack asincroni",
+ "WARNING: Processing source-maps of {0} took longer than {1} ms so we continued execution without waiting for all the breakpoints for the script to be set.": "AVVISO: l'elaborazione dei source map di {0} ha richiesto più di {1} ms, di conseguenza l'esecuzione è continuata senza attendere l'impostazione di tutti i punti di interruzione per lo script.",
+ "We can't launch a browser in debug mode from here. If you want to debug this webpage, open this workspace from VS Code on your desktop.": "Non è possibile avviare un browser in modalità di debug da questa posizione. Se si vuole eseguire il debug di questa pagina Web, aprire l'area di lavoro da VS Code sul desktop.",
+ "We can't launch a browser in debug mode from here. Open this workspace in VS Code on your desktop to enable debugging.": "Non è possibile avviare un browser in modalità di debug da questa posizione. Per abilitare il debug, aprire l'area di lavoro in VS Code sul desktop.",
+ "WebGL Error Fired": "Errore di WebGL generato",
+ "WebGL Warning Fired": "Avviso di WebGL generato",
+ "With Block": "Blocco with",
+ "Would you like to save a configuration in your launch.json for easy access later?": "Salvare una configurazione nel file launch.json per accedervi più facilmente in un secondo momento?",
+ "XHR/Fetch URLs": "URL XHR/recupero",
+ "Yes": "Sì",
+ "You may install the `{}` module via npm for enhanced WebAssembly debugging": "È possibile installare il modulo '{}' tramite npm per il debug avanzato di WebAssembly",
+ "You need to open a workspace folder to debug npm scripts.": "Per eseguire il debug di script npm, è necessario aprire una cartella dell'area di lavoro.",
+ "You're running an outdated version of Node.js. We recommend upgrading for the latest bug, performance, and security fixes.": "Si sta eseguendo una versione obsoleta di Node.js. È consigliabile eseguire l'aggiornamento per ottenere le correzioni di bug, per le prestazioni e la sicurezza più recenti.",
+ "an old debug session": "una sessione di debug meno recente",
+ "breakpoint.provisionalBreakpoint": "breakpoint.provisionalBreakpoint",
+ "path does not exist": "il percorso non esiste",
+ "process id: {0} ({1})": "ID processo: {0} ({1})",
+ "process id: {0}, debug port: {1} ({2})": "ID processo: {0}, porta di debug: {1} ({2})",
+ "setInterval fired": "setInterval generato",
+ "setTimeout fired": "setTimeout generato",
+ "the configured userDataDir": "la directory userDataDir configurata",
+ "{0} (couldn't describe: {1})": "{0} (non è stato possibile descrivere: {1})",
+ "{0} Click to Stop Profiling": "{0} Fare clic per arrestare la profilatura",
+ "{0} Click to Stop Profiling ({1} sessions)": "{0} Fare clic per arrestare la profilatura ({1} sessioni)",
+ "{0} Click to Stop Profiling ({1})": "{0} Fare clic per arrestare la profilatura ({1})"
}
}
}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-it/translations/extensions/ms-vscode.node-debug.i18n.json b/i18n/vscode-language-pack-it/translations/extensions/ms-vscode.node-debug.i18n.json
deleted file mode 100644
index 52de0f2c30..0000000000
--- a/i18n/vscode-language-pack-it/translations/extensions/ms-vscode.node-debug.i18n.json
+++ /dev/null
@@ -1,183 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "dist/node/extension/autoAttach": {
- "process.with.pid.label": "Collegato automaticamente ({0})"
- },
- "dist/node/extension/cluster": {
- "child.process.with.pid.label": "Processo figlio {0}"
- },
- "dist/node/extension/configurationProvider": {
- "NVM_DIR.not.found.message": "L'attributo 'runtimeVersion' richiede il version manager 'nvm' o 'nvs' di Node.js.",
- "NVM_HOME.not.found.message": "L'attributo 'runtimeVersion' richiede il version manager 'nvm-windows' o 'nvs' di Node.js.",
- "NVS_HOME.not.found.message": "L'attributo 'runtimeVersion' richiede il version manager 'nvs' di Node.js.",
- "mern.starter.explanation": "Configurazione di lancio creata per '{0}' progetto/i.",
- "node.launch.config.name": "Avvia programma",
- "outFiles.explanation": "Modificare i criteri GLOB nell'attributo 'outFiles' in modo che includano il codice JavaScript generato.",
- "program.guessed.from.package.json.explanation": "Configurazione di lancio creata sulla base di 'package.json'.",
- "program.not.found.message": "Non è stato trovato alcun programma di cui eseguire il debug",
- "runtime.version.not.found.message": "Versione di Node.js '{0}' non installata per '{1}'.",
- "useWslDeprecationWarning.doNotShowAgain": "Non visualizzare più questo messaggio",
- "useWslDeprecationWarning.title": "L'attributo 'useWSL' è deprecato. In alternativa, usare l'estensione 'Remote WSL'. Per altre informazioni, fare clic [qui]({0})."
- },
- "dist/node/extension/processPicker": {
- "cannot.enable.debug.mode.error": "Collegamento a processo: non è possibile abilitare la modalità di debug per il processo '{0}' ({1}).",
- "pickNodeProcess": "Selezionare il processo node.js a cui collegarsi",
- "pid.error": "Collegamento a processo: non è possibile mettere il processo '{0}' in modalità di debug.",
- "process.id.error": "Collegamento a processo: '{0}' non sembra essere un ID processo.",
- "process.id.port": "ID processo: {0}, porta di debug: {1}",
- "process.id.port.legacy": "ID processo: {0}, porta di debug: {1} (protocollo legacy)",
- "process.id.port.signal": "ID processo: {0}, porta di debug: {1} ({2})",
- "process.id.signal": "ID processo: {0} ({1})",
- "process.picker.error": "Selezione del processo non riuscita ({0})"
- },
- "dist/node/extension/protocolDetection": {
- "protocol.switch.legacy.detected": "Debug con protocollo legacy perché è stato rilevato.",
- "protocol.switch.legacy.version": "Debug con protocollo legacy perché è stato rilevato Node.js {0} .",
- "protocol.switch.unknown.error": "Debug con protocollo inspector perché non è stato possibile determinare la versione di Node.js ({0})"
- },
- "dist/node/nodeDebug": {
- "VSND2001": "Non è possibile trovare il runtime '{0}' in PATH. Assicurarsi che '{0}' sia installato.",
- "VSND2002": "Non è possibile avviare il programma '{0}'. Per risolvere il problema, provare a configurare i source map.",
- "VSND2003": "Non è possibile avviare il programma '{0}'. Per risolvere il problema, provare a impostare l'attributo '{1}'.",
- "VSND2009": "Non è possibile avviare il programma '{0}' perché non è stata trovata la versione corrispondente di JavaScript.",
- "VSND2010": "Non è possibile connettersi al processo di runtime (motivo: {0}).",
- "VSND2011": "Non è possibile avviare la destinazione di debug nel terminale ({0}).",
- "VSND2015": "La richiesta '{_request}' è stata annullata perché Node.js non risponde.",
- "VSND2016": "Node.js non ha risposto alla richiesta '{_request}' in un intervallo di tempo appropriato.",
- "VSND2017": "Non è possibile avviare la destinazione di debug ({0}).",
- "VSND2018": "Non sono disponibili stack di chiamate ({_command}: {_error}).",
- "VSND2019": "Il modulo interno {0} non è stato trovato.",
- "VSND2022": "Non sono disponibili stack di chiamate perché il programma è stato sospeso all'esterno di JavaScript.",
- "VSND2023": "Non sono disponibili stack di chiamate.",
- "VSND2028": "Il tipo di console '{0}' è sconosciuto.",
- "VSND2029": "Non è possibile caricare le variabili di ambiente dal file ({0}).",
- "VSND2033": "Non è possibile connettersi al runtime. Assicurarsi che il runtime sia in modalità di debug 'legacy'.",
- "VSND2034": "Non è possibile connettersi al runtime tramite il protocollo 'legacy'. Provare a usare il protocollo 'inspector'.",
- "anonymous.function": "(funzione anonima)",
- "attribute.path.not.absolute": "L'attributo '{0}' non è assoluto ('{1}'). Per renderlo assoluto, provare ad aggiungere il prefisso '{2}'.",
- "attribute.path.not.exist": "L'attributo '{0}' non esiste ('{1}').",
- "attribute.wls.not.exist": "Non è possibile trovare l'installazione del sottosistema Windows per Linux",
- "eval.invalid.expression": "espressione non valida: {0}",
- "eval.not.available": "Non disponibile",
- "exception.paused.promise.rejection": "In pausa sul rifiuto di Promise",
- "exception.promise.rejection": "Promise rifiutata",
- "exception.promise.rejection.text": "Promise rifiutata ({0})",
- "exceptions.all": "Tutte le eccezioni",
- "exceptions.rejects": "Promise rifiutate",
- "exceptions.uncaught": "Eccezioni non rilevate",
- "file.on.disk.changed": "La verifica non è riuscita perché il file nel disco è stato modificato. Riavviare la sessione di debug.",
- "more.information": "Altre informazioni",
- "node.console.title": "Console di debug nodo",
- "origin.core.module": "modulo principale di sola lettura",
- "origin.from.node": "contenuto di sola lettura di Node.js",
- "origin.from.remote.node": "contenuto di sola lettura di Node.js remoto",
- "origin.inlined.source.map": "contenuto inline di sola lettura del source map",
- "program.path.case.mismatch.warning": "La combinazione di minuscole/maiuscole usata nel percorso del programma è diversa rispetto al file su disco. È possibile che i punti di interruzione non vengano rilevati.",
- "reason.description.breakpoint": "Sospeso in corrispondenza di un punto di interruzione",
- "reason.description.debugger_statement": "Sospeso in corrispondenza dell'istruzione del debugger",
- "reason.description.entry": "Sospeso in corrispondenza della voce",
- "reason.description.exception": "Sospeso in corrispondenza dell'eccezione",
- "reason.description.restart": "Sospeso in corrispondenza della voce del frame",
- "reason.description.step": "Sospeso in corrispondenza del passaggio",
- "reason.description.user_request": "Sospeso in corrispondenza della richiesta dell'utente",
- "scope.block": "Blocco",
- "scope.catch": "Catch",
- "scope.closure": "Closure",
- "scope.exception": "Eccezione",
- "scope.global": "GLOBAL",
- "scope.local": "LOCAL",
- "scope.local.with.count": "Locali ({0} di {1})",
- "scope.script": "Script",
- "scope.unknown": "Tipo di ambito sconosciuto: {0}",
- "scope.with": "con",
- "setVariable.error": "Il valore dell'impostazione non è supportato",
- "source.not.found": "Non è stato possibile recuperare il contenuto.",
- "source.skipFiles": "ignorato a causa di 'skipFiles'",
- "source.smartstep": "ignorato a causa di 'smartStep'",
- "sourcemapping.fail.message": "Il punto di interruzione è stato ignorato perché il codice generato non è stato trovato. È possibile che si sia verificato un problema con il source map."
- },
- "dist/node/nodeV8Protocol": {
- "not.connected": "non connesso al runtime",
- "runtime.timeout": "timeout dopo {0} ms",
- "runtime.unresponsive": "annullato perché Node.js non risponde"
- },
- "package": {
- "attach.node.process": "Collega a processo Node (legacy)",
- "debug.node.showUseWslIsDeprecatedWarning.description": "Controlla se visualizzare un avviso quando viene si usa l'attributo 'useWSL'.",
- "extension.description": "Supporto per il debug Node.js (versioni precedenti alla 8.0)",
- "launch.args.description": "Argomenti della riga di comando passati al programma.",
- "node.address.description": "Indirizzo TCP/IP del processo di cui eseguire il debug (solo per Node.js >= 5.0). L'impostazione predefinita è 'localhost'.",
- "node.attach.config.name": "Collega",
- "node.attach.processId.description": "ID del processo a cui collegarsi.",
- "node.disableOptimisticBPs.description": "Non imposta punti di interruzione in un file finché non viene caricato un mapping di origine per tale file.",
- "node.label": "Node.js (legacy)",
- "node.launch.autoAttachChildProcesses.description": "Collega automaticamente il debugger ad un nuovo processo figlio.",
- "node.launch.config.name": "Avvia",
- "node.launch.console.description": "Indica dove avviare la destinazione di debug.",
- "node.launch.console.externalTerminal.description": "Terminale esterno che può essere configurato tramite impostazioni utente",
- "node.launch.console.integratedTerminal.description": "terminale integrato di Visual Studio Code",
- "node.launch.console.internalConsole.description": "console di debug di Visual Studio Code (che non include il supporto per leggere dati di input da un programma)",
- "node.launch.cwd.description": "Percorso assoluto della directory di lavoro del programma di cui eseguire il debug.",
- "node.launch.env.description": "Variabili di ambiente passate al programma. Con il valore `null` la variabile viene rimossa dall'ambiente.",
- "node.launch.envFile.description": "Percorso assoluto di un file che contiene le definizioni delle variabili di ambiente.",
- "node.launch.externalConsole.deprecationMessage": "L'attributo 'externalConsole' è deprecato. Usare 'console'.",
- "node.launch.outputCapture.description": "Origine da cui acquisire i messaggi di output, ovvero dall'API di debug o dai flussi stdout/stderr.",
- "node.launch.program.description": "Percorso assoluto del programma. Per ipotizzare il valore generato, esaminare package.json e i file aperti. Modificare questo attributo.",
- "node.launch.runtimeArgs.description": "Argomenti facoltativi passati all'eseguibile del runtime.",
- "node.launch.runtimeExecutable.description": "Runtime da usare. Corrisponde a un percorso assoluto o al nome di un runtime disponibile in PATH. Se viene omesso, si presuppone che sia `node`.",
- "node.launch.runtimeVersion.description": "Versione del runtime di `node` da usare. Richiede 'nvm'.",
- "node.launch.useWSL.deprecation": "'useWSL' è deprecato e il relativo supporto verrà rimosso. Usare l'estensione 'Remote - WSL'.",
- "node.launch.useWSL.description": "Usa il sottosistema Windows per Linux.",
- "node.localRoot.description": "Percorso della directory locale che contiene il programma.",
- "node.port.description": "Porta di debug a cui connettersi. Il valore predefinito è 5858.",
- "node.processattach.config.name": "Collega a processo",
- "node.protocol.auto.description": "Prova a rilevare automaticamente il protocollo migliore, selezionando 'inspector' per avviare Node 8.0 o versione successiva",
- "node.protocol.description": "Protocollo di debug di Node.js da usare.",
- "node.protocol.inspector.description": "Nuovo protocollo supportato da Node.js a partire dalla versione 6.3",
- "node.protocol.legacy.description": "Protocollo precedente supportato dalle versioni di Node.js precedenti alla 8.0",
- "node.remoteRoot.description": "Percorso assoluto della directory remota che contiene il programma.",
- "node.restart.description": "Riavvia la sessione dopo la chiusura di Node.js.",
- "node.showAsyncStacks.description": "Mostra le chiamate asincrone che hanno causato lo stack di chiamate corrente. Solo protocollo 'inspector'.",
- "node.snippet.attach.description": "Collega a un programma node in esecuzione",
- "node.snippet.attach.label": "Node.js: collega",
- "node.snippet.attachProcess.description": "Apre l'utilità di selezione processi per selezionare il processo Node a cui collegarsi",
- "node.snippet.attachProcess.label": "Node.js: collega al processo",
- "node.snippet.electron.description": "Esegue il debug del processo principale Electron",
- "node.snippet.electron.label": "Node.js: Processo principale Electron",
- "node.snippet.gulp.description": "Esegue il debug dell'attività gulp (assicurarsi che nel progetto sia installata un'istanza locale di gulp)",
- "node.snippet.gulp.label": "Node.js: attività gulp",
- "node.snippet.launch.description": "Avvia un programma Node in modalità di debug",
- "node.snippet.launch.label": "Node.js: avvia il programma",
- "node.snippet.mocha.description": "Esegue il debug di test Mocha",
- "node.snippet.mocha.label": "Node.js: test Mocha",
- "node.snippet.nodemon.description": "Usa nodemon per riavviare una sessione di debug in seguito a modifiche dell'origine",
- "node.snippet.nodemon.label": "Node.js: configurazione di nodemon",
- "node.snippet.npm.description": "Avvia un programma Node tramite uno script `debug` di npm",
- "node.snippet.npm.label": "Node.js: avvio tramite npm",
- "node.snippet.remoteattach.description": "Collega alla porta di debug di un programma Node remoto",
- "node.snippet.remoteattach.label": "Node.js: collega a programma remoto",
- "node.snippet.yo.description": "Esegue il debug del generatore yeoman (per installare, eseguire `npm link` nella cartella del progetto)",
- "node.snippet.yo.label": "Node.js: generatore yeoman",
- "node.sourceMapPathOverrides.description": "Set di mapping per riscrivere i percorsi dei file di origine dal percorso indicato nel mapping di origine al relativo percorso su disco.",
- "node.sourceMaps.description": "Usa i source map JavaScript (se esistenti).",
- "node.stopOnEntry.description": "Arresta automaticamente il programma dopo l'avvio.",
- "node.timeout.description": "Numero di millisecondi in cui vengono effettuati i tentativi di connessione a Node.js. Il valore predefinito è 10000 ms.",
- "open.loaded.script": "Apri script caricato",
- "outDir.deprecationMessage": "L'attributo 'outDir' è deprecato. Usare 'outFiles'.",
- "outFiles.description": "Se sono abilitati i source map, questi criteri GLOB specificano i file JavaScript generati. Se un criterio inizia con '!', i file sono esclusi. Se non viene specificato, si presuppone che il codice generato si trovi nella stessa directory dell'origine. Esempio: `[\"${workspaceFolder}/out/**/*.js\"]`",
- "skipFiles.description": "Matrice di criteri GLOB per i file da ignorare durante il debug. Il criterio `/**` consente di trovare una corrispondenza per tutti i moduli Node.js interni.",
- "smartStep.description": "Esegue automaticamente un'istruzione alla volta del codice generato di cui non è possibile eseguire il mapping all'origine iniziale.",
- "start.with.stop.on.entry": "Avvia il debug e arrestalo in corrispondenza della voce (legacy)",
- "toggle.skipping.this.file": "Attiva/disattiva Ignora questo file",
- "trace.description": "Produce l'output di diagnostica. Invece di impostare questa opzione su true, è possibile elencare uno o più selettori delimitati da virgole. Usare il selettore 'verbose' per abilitare output molto dettagliato."
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-it/translations/extensions/ms-vscode.node-debug2.i18n.json b/i18n/vscode-language-pack-it/translations/extensions/ms-vscode.node-debug2.i18n.json
deleted file mode 100644
index b664b70583..0000000000
--- a/i18n/vscode-language-pack-it/translations/extensions/ms-vscode.node-debug2.i18n.json
+++ /dev/null
@@ -1,138 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "node_modules\\vscode-chrome-debug-core\\out/src/chrome/breakpoints": {
- "bp.fail.noscript": "Non è possibile trovare lo script per la richiesta del punto di interruzione",
- "bp.fail.unbound": "Il punto di interruzione è stato impostato ma non ancora associato",
- "invalidHitCondition": "La condizione raggiunta non è valida: {0}",
- "setBPTimedOut": "Timeout della richiesta di impostazione punti di interruzione",
- "validateBP.notFound": "Il punto di interruzione è stato ignorato perché il percorso di destinazione non è stato trovato",
- "validateBP.sourcemapFail": "Il punto di interruzione è stato ignorato perché il codice generato non è stato trovato. È possibile che si sia verificato un problema con il source map."
- },
- "node_modules\\vscode-chrome-debug-core\\out/src/chrome/chromeDebugAdapter": {
- "exceptions.all": "Tutte le eccezioni",
- "exceptions.promise_rejects": "Promise rifiutate",
- "exceptions.uncaught": "Eccezioni non rilevate"
- },
- "node_modules\\vscode-chrome-debug-core\\out/src/chrome/chromeTargetDiscoveryStrategy": {
- "attach.cannotConnect": "Non è possibile connettersi alla destinazione: {0}",
- "attach.devToolsAttached": "Non è possibile collegarsi a questa destinazione perché potrebbe essere collegato Chrome DevTools: {0}",
- "attach.invalidResponse": "La risposta della destinazione non sembra valida. Errore: {0}. Risposta: {1}",
- "attach.invalidResponseArray": "La risposta della destinazione non sembra valida: {0}",
- "attach.noMatchingTarget": "Non è possibile trovare una destinazione valida corrispondente a {0}. Pagine disponibili: {1}",
- "attach.responseButNoTargets": "È stata ottenuta una risposta dall'app di destinazione, ma non sono state trovate pagine di destinazione"
- },
- "node_modules\\vscode-chrome-debug-core\\out/src/chrome/stackFrames": {
- "scope.exception": "Eccezione",
- "skipReason": "(ignorata da '{0}')"
- },
- "node_modules\\vscode-chrome-debug-core\\out/src/chrome/stoppedEvent": {
- "reason.description.breakpoint": "Sospeso in corrispondenza di un punto di interruzione",
- "reason.description.caughtException": "Sospeso in corrispondenza dell'eccezione rilevata",
- "reason.description.debugger_statement": "Sospeso in corrispondenza dell'istruzione del debugger",
- "reason.description.entry": "Sospeso in corrispondenza della voce",
- "reason.description.exception": "Sospeso in corrispondenza dell'eccezione",
- "reason.description.promiseRejection": "Sospeso in corrispondenza del rifiuto della promessa",
- "reason.description.restart": "Sospeso in corrispondenza della voce del frame",
- "reason.description.step": "Sospeso in corrispondenza del passaggio",
- "reason.description.uncaughtException": "Sospeso in corrispondenza dell'eccezione non rilevata",
- "reason.description.user_request": "Sospeso in corrispondenza della richiesta dell'utente"
- },
- "node_modules\\vscode-chrome-debug-core\\out/src/errors": {
- "VSND2010": "Non è possibile connettersi al processo di runtime. Timeout dopo {0} ms. Motivo: {1}",
- "VSND2023": "Non sono disponibili stack di chiamate.",
- "attribute.path.not.absolute": "L'attributo '{0}' non è assoluto ('{1}'). Per renderlo assoluto, provare ad aggiungere il prefisso '{2}'.",
- "attribute.path.not.exist": "L'attributo '{0}' non esiste ('{1}').",
- "eval.not.available": "Non disponibile",
- "failed.to.read.port": "Non è stato possibile leggere il file {dataDirPath}. {error}",
- "more.information": "Altre informazioni",
- "not.connected": "non connesso al runtime",
- "port.file.contents.invalid": "Il file nel percorso \"{dataDirPath}\" non contiene dati validi sulla porta. Il contenuto è: {dataDirContents}",
- "restartFrame.cannot": "Non è possibile riavviare il frame",
- "setVariable.error": "Il valore dell'impostazione non è supportato",
- "source.not.found": "Non è stato possibile recuperare il contenuto."
- },
- "node_modules\\vscode-chrome-debug-core\\out/src/transformers/baseSourceMapTransformer": {
- "origin.inlined.source.map": "contenuto inline di sola lettura del source map"
- },
- "node_modules\\vscode-chrome-debug-core\\out/src/transformers/remotePathTransformer": {
- "localRootAndRemoteRoot": "È necessario specificare sia localRoot che remoteRoot."
- },
- "out/src/errors": {
- "VSND2001": "Non è possibile trovare il runtime '{0}' in PATH. '{0}' è installato?",
- "VSND2002": "Non è possibile avviare il programma '{0}'. Per risolvere il problema, provare a configurare i source map.",
- "VSND2003": "Non è possibile avviare il programma '{0}'. Per risolvere il problema, provare a impostare l'attributo '{1}'.",
- "VSND2009": "Non è possibile avviare il programma '{0}' perché non è stata trovata la versione corrispondente di JavaScript.",
- "VSND2011": "Non è possibile avviare la destinazione di debug nel terminale ({0}).",
- "VSND2017": "Non è possibile avviare la destinazione di debug ({0}).",
- "VSND2028": "Il tipo di console '{0}' è sconosciuto.",
- "VSND2029": "Non è possibile caricare le variabili di ambiente dal file ({0}).",
- "VSND2035": "Non è possibile eseguire il debug dell'estensione ({0})."
- },
- "out/src/nodeDebugAdapter": {
- "VSND2001": "Non è possibile trovare il runtime '{0}' in PATH. Assicurarsi che '{0}' sia installato.",
- "attribute.path.not.absolute": "L'attributo '{0}' non è assoluto ('{1}'). Per renderlo assoluto, provare ad aggiungere il prefisso '{2}'.",
- "attribute.path.not.exist": "L'attributo '{0}' non esiste ('{1}').",
- "attribute.wsl.not.exist": "Non è possibile trovare l'installazione del sottosistema Windows per Linux.",
- "more.information": "Altre informazioni",
- "node.console.title": "Console di debug nodo",
- "origin.core.module": "modulo principale di sola lettura",
- "origin.from.node": "contenuto di sola lettura di Node.js",
- "program.path.case.mismatch.warning": "La combinazione di minuscole/maiuscole usata nel percorso del programma è diversa rispetto al file su disco. È possibile che i punti di interruzione non vengano rilevati."
- },
- "package": {
- "extension.description": "Supporto per il debug Node.js",
- "extensionHost.label": "Sviluppo di estensioni per VS Code",
- "extensionHost.launch.config.name": "Avvia estensione",
- "extensionHost.launch.env.description": "Variabili di ambiente passate all'host dell'estensione.",
- "extensionHost.launch.runtimeExecutable.description": "Percorso assoluto di VS Code.",
- "extensionHost.launch.stopOnEntry.description": "Arresta automaticamente l'host dell'estensione dopo l'avvio.",
- "extensionHost.snippet.launch.description": "Avvia un'estensione VS Code in modalità di debug",
- "extensionHost.snippet.launch.label": "Sviluppo di estensioni per VS Code",
- "node.address.description": "Indirizzo TCP/IP della porta di debug. Il valore predefinito è 'localhost'.",
- "node.attach.config.name": "Collega",
- "node.attach.localRoot.description": "Radice di origine locale che corrisponde a 'remoteRoot'.",
- "node.attach.processId.description": "ID del processo a cui collegarsi.",
- "node.attach.remoteRoot.description": "Radice di origine dell'host remoto.",
- "node.diagnosticLogging.deprecationMessage": "'diagnosticLogging' è deprecato. In alternativa, usare 'trace'.",
- "node.diagnosticLogging.description": "Quando è true, l'adattatore registra le informazioni di diagnostica nella console",
- "node.disableOptimisticBPs.description": "Non imposta punti di interruzione in un file finché non viene caricato un mapping di origine per tale file.",
- "node.enableSourceMapCaching.description": "Quando i mapping di origine vengono scaricati da un URL, li memorizza nella cache su disco.",
- "node.label": "Node.js 6.3 o versione successiva tramite Inspector Protocol",
- "node.launch.args.description": "Argomenti della riga di comando passati al programma.",
- "node.launch.config.name": "Avvia",
- "node.launch.console.description": "Indica dove avviare la destinazione di debug: console interna, terminale integrato o terminale esterno.",
- "node.launch.cwd.description": "Percorso assoluto della directory di lavoro del programma di cui eseguire il debug.",
- "node.launch.env.description": "Variabili di ambiente passate al programma. Con il valore `null` la variabile viene rimossa dall'ambiente.",
- "node.launch.envFile.description": "Percorso assoluto di un file che contiene le definizioni delle variabili di ambiente.",
- "node.launch.outputCapture.description": "Origine da cui acquisire i messaggi di output, ovvero dall'API di debug o dai flussi stdout/stderr.",
- "node.launch.program.description": "Percorso assoluto del programma.",
- "node.launch.runtimeArgs.description": "Argomenti facoltativi passati all'eseguibile del runtime.",
- "node.launch.runtimeExecutable.description": "Runtime da usare. Corrisponde a un percorso assoluto o al nome di un runtime disponibile in PATH. Se viene omesso, si presuppone che sia `node`.",
- "node.outFiles.description": "Se sono abilitati i source map, questi criteri GLOB specificano i file JavaScript generati. Se un criterio inizia con `!`, i file sono esclusi. Se non viene specificato, si presuppone che il codice generato si trovi nella stessa directory dell'origine.",
- "node.port.description": "Porta di debug a cui connettersi. Il valore predefinito è 9229.",
- "node.processattach.config.name": "Collega a processo",
- "node.restart.description": "Riavvia la sessione dopo la chiusura di Node.js.",
- "node.showAsyncStacks.description": "Mostra le chiamate asincrone che hanno causato lo stack di chiamate corrente.",
- "node.skipFiles.description": "Matrice di nomi di file o di cartelle o criteri GLOB da ignorare durante il debug.",
- "node.smartStep.description": "Esegue automaticamente un'istruzione alla volta del codice generato di cui non è possibile eseguire il mapping all'origine iniziale.",
- "node.sourceMapPathOverrides.description": "Set di mapping per riscrivere i percorsi dei file di origine dalle posizioni indicate nel mapping di origine alle relative posizioni sul disco. Per dettagli, vedere il file README.",
- "node.sourceMaps.description": "Usa i source map JavaScript (se esistenti).",
- "node.stopOnEntry.description": "Arresta automaticamente il programma dopo l'avvio.",
- "node.timeout.description": "Numero di millisecondi in cui vengono effettuati i tentativi di connessione a Node.js. Il valore predefinito è 10000 ms.",
- "node.trace.description": "Se è 'true', il debugger registrerà informazioni di analisi in un file. Se è 'verbose', mostrerà anche i log nella console.",
- "node.verboseDiagnosticLogging.deprecationMessage": "'verboseDiagnosticLogging' è deprecato. In alternativa, usare 'trace'.",
- "node.verboseDiagnosticLogging.description": "Quando è true, l'adattatore registra tutto il traffico con il client e la destinazione (oltre alle informazioni registrate da 'diagnosticLogging')",
- "outDir.deprecationMessage": "L'attributo 'outDir' è deprecato. Usare 'outFiles'.",
- "toggle.skipping.this.file": "Attiva/disattiva Ignora questo file",
- "workspaceTrust": "Per eseguire il debug del codice è necessaria un'area di lavoro attendibile."
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-it/translations/extensions/ms-vscode.remotehub.i18n.json b/i18n/vscode-language-pack-it/translations/extensions/ms-vscode.remotehub.i18n.json
deleted file mode 100644
index 1b5ffbdd1b..0000000000
--- a/i18n/vscode-language-pack-it/translations/extensions/ms-vscode.remotehub.i18n.json
+++ /dev/null
@@ -1,81 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "package": {
- "colors.added": "Color for added resources",
- "colors.conflict": "Color for resources with conflicts",
- "colors.deleted": "Color for deleted resources",
- "colors.incomingAdded": "Color for incoming added resources",
- "colors.incomingDeleted": "Color for incoming deleted resources",
- "colors.incomingModified": "Color for incoming modified resources",
- "colors.incomingRenamed": "Color for incoming renamed resources",
- "colors.modified": "Color for modified resources",
- "colors.possibleConflict": "Color for resources with possible conflicts",
- "command.timeline.compareWithSelected": "Compare with Selected",
- "command.timeline.copyCommitId": "Copy Commit ID",
- "command.timeline.copyCommitMessage": "Copy Commit Message",
- "command.timeline.openDiff": "Open Changes",
- "command.timeline.openOnGitHub": "Open on GitHub",
- "command.timeline.selectForCompare": "Select for Compare",
- "commands.addRepositoryToWorkspace": "Add Remote Repository to Workspace...",
- "commands.clone": "Clone Repository Locally...",
- "commands.commit": "Commit",
- "commands.continueOn": "Continue on...",
- "commands.createBranch": "Create New Branch...",
- "commands.createBranchFrom": "Create New Branch from...",
- "commands.createDraftPullRequest": "Create a Draft Pull Request",
- "commands.createPullRequest": "Create a Pull Request",
- "commands.deleteAllLocalRepositoryData": "Delete All Local Repository Data",
- "commands.deleteLocalRepositoryData": "Delete Local Repository Data...",
- "commands.discardAllChanges": "Discard All Changes",
- "commands.discardChanges": "Discard Changes",
- "commands.enableIndexing": "Enable Search Indexing",
- "commands.exportPatch": "Export Changes...",
- "commands.fetch": "Fetch",
- "commands.keepChanges": "Keep Changes",
- "commands.openChanges": "Open Changes",
- "commands.openFile": "Open File",
- "commands.openInCodespaces": "Open in Codespaces...",
- "commands.openOnDesktop": "Reopen on the Desktop",
- "commands.openOnRemote": "Open on GitHub",
- "commands.openOnWeb": "Reopen on the Web",
- "commands.openRepository": "Open Remote Repository...",
- "commands.pull": "Pull",
- "commands.stageAllChanges": "Stage All Changes",
- "commands.stageChanges": "Stage Changes",
- "commands.switchToBranch": "Switch to Branch...",
- "commands.sync": "Sync (Pull & Push)",
- "commands.unstageAllChanges": "Unstage All Changes",
- "commands.unstageChanges": "Unstage Changes",
- "config.autoFetch.enabled": "Specifies whether to periodically fetch from the upstream repository",
- "config.autoFetch.interval": "Specifies the interval, in seconds, to periodically fetch from the upstream repository",
- "config.search.download.corsProxy": "Specifies the proxy to use when downloading repository indicies from a browser context",
- "config.search.download.enabled": "Specifies whether text search should download an index of the repository in order to provide more accurate search results",
- "config.search.download.repoLimit": "Specifies the maximum number of search indicies cached per repo. Each reference requires a separate search index",
- "config.search.download.sizeLimit": "Specifies the size (in MB) of search index cache. The search cache is located in the extension's global storage folder",
- "config.staging.enabled": "Specifies whether to enable the staging of changes before committing",
- "config.staging.smart": "Specifies whether to automatically stage all changes, if there are none, before committing",
- "description": "Remotely browse and edit a GitHub repository",
- "displayName": "Remote Repositories (RemoteHub)",
- "displayNameInsiders": "RemoteHub (Insiders)",
- "submenu.branch": "Branch",
- "submenu.changes": "Changes",
- "submenu.commit": "Commit",
- "submenu.export": "Export",
- "submenu.pullRequest": "Pull Request",
- "viewsWelcome.debug": "Run and Debug are not available in this environment. To run and debug, you will need to continue in another Visual Studio Code setup.",
- "viewsWelcome.debug.continueOn": "[Continue on...](command:remoteHub.continueOn 'Continue working on this remote repository elsewhere')",
- "viewsWelcome.explorer": "Or, you can remotely open a repository or pull request directly from Visual Studio Code without cloning.\r\n[Open Remote Repository](command:remoteHub.openRepository 'Open a remote repository (e.g. from GitHub)')",
- "viewsWelcome.explorer.web": "Or, you can remotely open a repository or pull request directly from Visual Studio Code.\r\n[Open Remote Repository](command:remoteHub.openRepository 'Open a remote repository (e.g. from GitHub)')",
- "viewsWelcome.terminal": "Terminals are not available in this environment. To use the terminal, you will need to continue in another Visual Studio Code setup.",
- "viewsWelcome.terminal.continueOn": "[Continue on...](command:remoteHub.continueOn 'Continue working on this remote repository elsewhere')"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-it/translations/extensions/notebook-markdown-extensions.i18n.json b/i18n/vscode-language-pack-it/translations/extensions/notebook-markdown-extensions.i18n.json
deleted file mode 100644
index f4428d6932..0000000000
--- a/i18n/vscode-language-pack-it/translations/extensions/notebook-markdown-extensions.i18n.json
+++ /dev/null
@@ -1,16 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "package": {
- "description": "Fornisce un supporto avanzato del linguaggio per Markdown.",
- "displayName": "Operazioni matematiche in notebook Markdown"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-it/translations/extensions/npm.i18n.json b/i18n/vscode-language-pack-it/translations/extensions/npm.i18n.json
deleted file mode 100644
index 04b89f2a2f..0000000000
--- a/i18n/vscode-language-pack-it/translations/extensions/npm.i18n.json
+++ /dev/null
@@ -1,77 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "dist/commands": {
- "noScriptFound": "Non è stato possibile trovare uno script di npm valido nella selezione."
- },
- "dist/features/bowerJSONContribution": {
- "json.bower.default": "bower.json predefinito",
- "json.bower.error.repoaccess": "La richiesta al repository Bower non è riuscita: {0}",
- "json.bower.latest.version": "più recente"
- },
- "dist/features/packageJSONContribution": {
- "json.npm.error.repoaccess": "La richiesta al repository NPM non è riuscita: {0}",
- "json.npm.latestversion": "Ultima versione attualmente disponibile del pacchetto",
- "json.npm.majorversion": "Corrisponde alla versione principale più recente (1.x.x)",
- "json.npm.minorversion": "Corrisponde alla versione secondaria più recente (1.2.x.x)",
- "json.npm.version.hover": "Ultima versione: {0}",
- "json.package.default": "package.json predefinito"
- },
- "dist/npmScriptLens": {
- "codelens.debug": "Debug"
- },
- "dist/npmView": {
- "autoDetectIsOff": "L'impostazione \"npm.autoDetect\" è \"off\".",
- "noScripts": "Non sono stati trovati script."
- },
- "dist/scriptHover": {
- "debugScript": "Script di debug",
- "debugScript.tooltip": "Esegue lo script nel debugger",
- "runScript": "Esegui script",
- "runScript.tooltip": "Esegui lo script come attività"
- },
- "dist/tasks": {
- "npm.multiplePMWarning": "Uso di {0} come gestione pacchetti preferita. Sono stati trovati più file di blocco per {1}. Per risolvere questo problema, eliminare i file di blocco che non corrispondono alla gestione pacchetti preferita o modificare l'impostazione \"npm.packageManager\" su un valore diverso da \"auto\".",
- "npm.multiplePMWarning.doNotShow": "Non visualizzare più",
- "npm.multiplePMWarning.learnMore": "Altre informazioni",
- "npm.parseError": "Rilevamento attività npm: non è stato possibile analizzare il file {0}"
- },
- "package": {
- "command.debug": "Debug",
- "command.openScript": "Apri",
- "command.packageManager": "Ottieni gestione pacchetti configurati",
- "command.refresh": "Aggiorna",
- "command.run": "Esegui",
- "command.runInstall": "Esegui install",
- "command.runScriptFromFolder": "Esegui script NPM nella cartella...",
- "command.runSelectedScript": "Esegui script",
- "config.npm.autoDetect": "Controlla se gli script di npm devono essere rilevati automaticamente.",
- "config.npm.enableRunFromFolder": "Abilita l'esecuzione degli script npm contenuti in una cartella dal menu di scelta rapida di Esplora risorse.",
- "config.npm.enableScriptExplorer": "Abilita una visualizzazione di Explorer per gli script npm quando non esiste alcun file 'package.json' di primo livello.",
- "config.npm.exclude": "Configura i modelli glob per le cartelle che dovrebbero essere escluse dalla rilevazione automatica di script.",
- "config.npm.fetchOnlinePackageInfo": "Recupera i dati da https://registry.npmjs.org e https://registry.bower.io per fornire le funzionalità di completamento automatico e di informazioni al passaggio del mouse per le dipendenze di npm.",
- "config.npm.packageManager": "Utilità di gestione pacchetti usata per eseguire gli script.",
- "config.npm.packageManager.auto": "Rileva automaticamente l'utilità di gestione pacchetti da usare per l'esecuzione di script basati su file di blocco e le utilità di gestione pacchetti installate.",
- "config.npm.packageManager.npm": "Usa npm come utilità di gestione pacchetti per l'esecuzione di script.",
- "config.npm.packageManager.pnpm": "Usa pnpm come utilità di gestione pacchetti per l'esecuzione di script.",
- "config.npm.packageManager.yarn": "Usa YARN come utilità di gestione pacchetti per l'esecuzione di script.",
- "config.npm.runSilent": "Eseguire comandi npm con l'opzione `--silent`.",
- "config.npm.scriptExplorerAction": "Azione predefinita per il clic in Esplora script di npm: `open` o `run`. L'impostazione predefinita è `open`.",
- "config.npm.scriptExplorerExclude": "Matrice di espressioni regolari che indica quali script devono essere esclusi dalla visualizzazione Script NPM.",
- "description": "Estensione che aggiunge il supporto delle attività per gli script npm.",
- "displayName": "Supporto di npm per VS Code",
- "npm.parseError": "Rilevamento attività npm: non è stato possibile analizzare il file {0}",
- "taskdef.path": "Il percorso della cartella del file J.json contenente lo script può essere omesso.",
- "taskdef.script": "Lo script di npm da personalizzare.",
- "view.name": "Script npm",
- "workspaceTrust": "Questa estensione esegue attività che richiedono attendibilità per l'esecuzione."
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-it/translations/extensions/objective-c.i18n.json b/i18n/vscode-language-pack-it/translations/extensions/objective-c.i18n.json
deleted file mode 100644
index 1b2ecb8bdc..0000000000
--- a/i18n/vscode-language-pack-it/translations/extensions/objective-c.i18n.json
+++ /dev/null
@@ -1,16 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "package": {
- "description": "Offre la sottolineatura delle sintassi e il match delle parentesi nei file Objective-C.",
- "displayName": "Nozioni di base sul linguaggio Objective-C"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-it/translations/extensions/perl.i18n.json b/i18n/vscode-language-pack-it/translations/extensions/perl.i18n.json
deleted file mode 100644
index 7661c9e39f..0000000000
--- a/i18n/vscode-language-pack-it/translations/extensions/perl.i18n.json
+++ /dev/null
@@ -1,16 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "package": {
- "description": "Offre la sottolineatura delle sintassi e il match delle parentesi nei file Perl.",
- "displayName": "Nozioni di base sul linguaggio Perl"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-it/translations/extensions/php-language-features.i18n.json b/i18n/vscode-language-pack-it/translations/extensions/php-language-features.i18n.json
deleted file mode 100644
index 9255f1ba07..0000000000
--- a/i18n/vscode-language-pack-it/translations/extensions/php-language-features.i18n.json
+++ /dev/null
@@ -1,31 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "dist/features/validationProvider": {
- "goToSetting": "Apri impostazioni",
- "noExecutable": "Non è possibile eseguire la convalida perché non è impostato alcun file eseguibile di PHP. Usare l'impostazione 'php.validate.executablePath' per convalidare il file eseguibile di PHP.",
- "noPhp": "Non può essere convalidato perché non è stata trovata un'installazione PHP. Usare l'impostazione 'php.validate.executablePath' per configurare il file eseguibile PHP.",
- "unknownReason": "Non è stato possibile eseguire php con il percorso {0}. Il motivo è sconosciuto.",
- "wrongExecutable": "Non è possibile eseguire la convalida perché {0} non è un file eseguibile di PHP valido. Usare l'impostazione 'php.validate.executablePath' per convalidare il file eseguibile di PHP."
- },
- "package": {
- "command.untrustValidationExecutable": "Non consentire la convalida di PHP eseguibile (definito come impostazione dell'area di lavoro)",
- "commands.categroy.php": "PHP",
- "configuration.suggest.basic": "Controlla l'abilitazione dei suggerimenti predefiniti per il linguaggio PHP. Il supporto suggerisce variabili e variabili globali PHP.",
- "configuration.title": "PHP",
- "configuration.validate.enable": "Abilita/Disabilita la convalida PHP predefinita.",
- "configuration.validate.executablePath": "Punta all'eseguibile di PHP.",
- "configuration.validate.run": "Indica se il linter viene eseguito durante il salvataggio o la digitazione.",
- "description": "Fornisce supporto avanzato del linguaggio per i file PHP.",
- "displayName": "Funzionalità del linguaggio PHP",
- "workspaceTrust": "L'estensione richiede un'area di lavoro attendibile quando l'impostazione 'php.validate.executablePath' carica una versione di PHP nell'area di lavoro."
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-it/translations/extensions/php.i18n.json b/i18n/vscode-language-pack-it/translations/extensions/php.i18n.json
deleted file mode 100644
index f3a662d538..0000000000
--- a/i18n/vscode-language-pack-it/translations/extensions/php.i18n.json
+++ /dev/null
@@ -1,16 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "package": {
- "description": "Offre l'evidenziazione della sintassi e la corrispondenza delle parentesi nei file PHP.",
- "displayName": "Nozioni di base sul linguaggio PHP"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-it/translations/extensions/powershell.i18n.json b/i18n/vscode-language-pack-it/translations/extensions/powershell.i18n.json
deleted file mode 100644
index 101dbfaa5e..0000000000
--- a/i18n/vscode-language-pack-it/translations/extensions/powershell.i18n.json
+++ /dev/null
@@ -1,16 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "package": {
- "description": "Offre i frammenti, la sottolineatura delle sintassi, la corrispondenza delle parentesi e la riduzione del codice nei file PowerShell.",
- "displayName": "Nozioni di base sul linguaggio PowerShell"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-it/translations/extensions/pug.i18n.json b/i18n/vscode-language-pack-it/translations/extensions/pug.i18n.json
deleted file mode 100644
index bbcc66311c..0000000000
--- a/i18n/vscode-language-pack-it/translations/extensions/pug.i18n.json
+++ /dev/null
@@ -1,16 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "package": {
- "description": "Offre la sottolineatura delle sintassi e il match delle parentesi nei file Pug.",
- "displayName": "Nozioni di base sul linguaggio Pug"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-it/translations/extensions/r.i18n.json b/i18n/vscode-language-pack-it/translations/extensions/r.i18n.json
deleted file mode 100644
index 023a9c33cb..0000000000
--- a/i18n/vscode-language-pack-it/translations/extensions/r.i18n.json
+++ /dev/null
@@ -1,16 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "package": {
- "description": "Offre la sottolineatura delle sintassi e il match delle parentesi nei file R.",
- "displayName": "Nozioni di base sul linguaggio R"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-it/translations/extensions/razor.i18n.json b/i18n/vscode-language-pack-it/translations/extensions/razor.i18n.json
deleted file mode 100644
index 6830d3853a..0000000000
--- a/i18n/vscode-language-pack-it/translations/extensions/razor.i18n.json
+++ /dev/null
@@ -1,16 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "package": {
- "description": "Offre la sottolineatura delle sintassi, il match delle parentesi e il folding nei file Razor.",
- "displayName": "Nozioni di base sul linguaggio Razor"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-it/translations/extensions/references-view.i18n.json b/i18n/vscode-language-pack-it/translations/extensions/references-view.i18n.json
deleted file mode 100644
index dc4298256a..0000000000
--- a/i18n/vscode-language-pack-it/translations/extensions/references-view.i18n.json
+++ /dev/null
@@ -1,73 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "dist/calls/model": {
- "noresult": "Nessun risultato.",
- "open": "Apri chiamata",
- "title.callers": "Chiamanti di",
- "title.calls": "Chiamate da"
- },
- "dist/references/index": {
- "title": "Riferimenti"
- },
- "dist/references/model": {
- "noresult": "Nessun risultato.",
- "open": "Apri riferimento",
- "result.1": "{0} risultato in {1} file",
- "result.1n": "{0} risultato in {1} file",
- "result.n1": "{0} risultati in {1} file",
- "result.nm": "{0} risultati in {1} file"
- },
- "dist/tree": {
- "noresult": "Nessun risultato.",
- "noresult2": "Nessun risultato. Provare a eseguire di nuovo una ricerca precedente:",
- "placeholder": "Seleziona la ricerca di riferimento precedente",
- "title": "Riferimenti",
- "title.rerun": "Esegui di nuovo"
- },
- "dist/types/model": {
- "noresult": "Nessun risultato.",
- "title.openType": "Tipo di apertura",
- "title.sub": "Sottotipi di",
- "title.sup": "Supertipi di"
- },
- "package": {
- "cmd.category.references": "Riferimenti",
- "cmd.references-view.clear": "Cancella",
- "cmd.references-view.clearHistory": "Cancella cronologia",
- "cmd.references-view.copy": "Copia",
- "cmd.references-view.copyAll": "Copia tutto",
- "cmd.references-view.copyPath": "Copia percorso",
- "cmd.references-view.findImplementations": "Trova tutte le implementazioni",
- "cmd.references-view.findReferences": "Trova tutti i riferimenti",
- "cmd.references-view.next": "Passa al risultato successivo",
- "cmd.references-view.pickFromHistory": "Visualizza cronologia",
- "cmd.references-view.prev": "Passare al riferimento precedente",
- "cmd.references-view.refind": "Esegui di nuovo",
- "cmd.references-view.refresh": "Aggiorna",
- "cmd.references-view.removeCallItem": "Ignora",
- "cmd.references-view.removeReferenceItem": "Ignora",
- "cmd.references-view.removeTypeItem": "Ignora",
- "cmd.references-view.showCallHierarchy": "Mostra gerarchia di chiamata",
- "cmd.references-view.showIncomingCalls": "Mostra chiamate in arrivo",
- "cmd.references-view.showOutgoingCalls": "Mostra chiamate in uscita",
- "cmd.references-view.showSubtypes": "Mostra sottotipi",
- "cmd.references-view.showSupertypes": "Mostra supertipi",
- "cmd.references-view.showTypeHierarchy": "Mostra gerarchia del tipo",
- "config.references.preferredLocation": "Controlla se 'Visualizza in anteprima riferimenti' o 'Trova riferimenti' viene richiamato quando si selezionano i riferimenti di code lens",
- "config.references.preferredLocation.peek": "Mostrare i riferimenti nell'editor rapido.",
- "config.references.preferredLocation.view": "Mostra i riferimenti in una visualizzazione separata.",
- "container.title": "Riferimenti",
- "description": "Fare riferimento ai risultati della ricerca come visualizzazione stabile separata nella barra laterale",
- "displayName": "Visualizzazione ricerca riferimenti",
- "view.title": "Risultati"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-it/translations/extensions/ruby.i18n.json b/i18n/vscode-language-pack-it/translations/extensions/ruby.i18n.json
deleted file mode 100644
index 35f6567f2c..0000000000
--- a/i18n/vscode-language-pack-it/translations/extensions/ruby.i18n.json
+++ /dev/null
@@ -1,16 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "package": {
- "description": "Offre la sottolineatura delle sintassi e il match delle parentesi nei file Ruby.",
- "displayName": "Nozioni di base sul linguaggio Ruby"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-it/translations/extensions/rust.i18n.json b/i18n/vscode-language-pack-it/translations/extensions/rust.i18n.json
deleted file mode 100644
index 3afe336a61..0000000000
--- a/i18n/vscode-language-pack-it/translations/extensions/rust.i18n.json
+++ /dev/null
@@ -1,16 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "package": {
- "description": "Offre la sottolineatura delle sintassi e il match delle parentesi nei file Rust.",
- "displayName": "Nozioni di base sul linguaggio Rust"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-it/translations/extensions/scss.i18n.json b/i18n/vscode-language-pack-it/translations/extensions/scss.i18n.json
deleted file mode 100644
index 0113114ceb..0000000000
--- a/i18n/vscode-language-pack-it/translations/extensions/scss.i18n.json
+++ /dev/null
@@ -1,16 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "package": {
- "description": "Offre la sottolineatura delle sintassi, il match delle parentesi e il folding nei file SCSS.",
- "displayName": "Nozioni di base sul linguaggio SCSS"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-it/translations/extensions/shaderlab.i18n.json b/i18n/vscode-language-pack-it/translations/extensions/shaderlab.i18n.json
deleted file mode 100644
index 75ce486cc6..0000000000
--- a/i18n/vscode-language-pack-it/translations/extensions/shaderlab.i18n.json
+++ /dev/null
@@ -1,16 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "package": {
- "description": "Offre la sottolineatura delle sintassi e il match delle parentesi nei file Shaderlab.",
- "displayName": "Nozioni di base sul linguaggio Shaderlab"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-it/translations/extensions/shellscript.i18n.json b/i18n/vscode-language-pack-it/translations/extensions/shellscript.i18n.json
deleted file mode 100644
index 981a7488c3..0000000000
--- a/i18n/vscode-language-pack-it/translations/extensions/shellscript.i18n.json
+++ /dev/null
@@ -1,16 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "package": {
- "description": "Offre la sottolineatura delle sintassi e il match delle parentesi nei file Shell Script.",
- "displayName": "Nozioni di base sul linguaggio Shell Script"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-it/translations/extensions/simple-browser.i18n.json b/i18n/vscode-language-pack-it/translations/extensions/simple-browser.i18n.json
deleted file mode 100644
index ad02b0864e..0000000000
--- a/i18n/vscode-language-pack-it/translations/extensions/simple-browser.i18n.json
+++ /dev/null
@@ -1,30 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "dist/extension": {
- "openTitle": "Apri nel browser semplice",
- "simpleBrowser.show.placeholder": "https://example.com",
- "simpleBrowser.show.prompt": "Immettere l'URL da visitare"
- },
- "dist/simpleBrowserView": {
- "control.back.title": "Indietro",
- "control.forward.title": "Avanti",
- "control.openExternal.title": "Apri nel browser",
- "control.reload.title": "Ricarica",
- "view.iframe-focused": "Blocco stato attivo",
- "view.title": "Browser semplice"
- },
- "package": {
- "configuration.focusLockIndicator.enabled.description": "Abilita/Disabilita l'indicatore mobile che viene visualizzato quando lo stato attivo si trova nel browser semplice.",
- "description": "Webview predefinita di base per la visualizzazione di contenuto Web.",
- "displayName": "Browser semplice"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-it/translations/extensions/sql.i18n.json b/i18n/vscode-language-pack-it/translations/extensions/sql.i18n.json
deleted file mode 100644
index 48ac769f71..0000000000
--- a/i18n/vscode-language-pack-it/translations/extensions/sql.i18n.json
+++ /dev/null
@@ -1,16 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "package": {
- "description": "Offre la sottolineatura delle sintassi e il match delle parentesi nei file SQL.",
- "displayName": "Nozioni di base sul linguaggio SQL"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-it/translations/extensions/swift.i18n.json b/i18n/vscode-language-pack-it/translations/extensions/swift.i18n.json
deleted file mode 100644
index 92b69c230a..0000000000
--- a/i18n/vscode-language-pack-it/translations/extensions/swift.i18n.json
+++ /dev/null
@@ -1,16 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "package": {
- "description": "Offre gli snippet, la sottolineatura delle sintassi e il match delle parentesi nei file Swift.",
- "displayName": "Nozioni di base sul linguaggio Swift"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-it/translations/extensions/testing-editor-contributions.i18n.json b/i18n/vscode-language-pack-it/translations/extensions/testing-editor-contributions.i18n.json
deleted file mode 100644
index e399893cd8..0000000000
--- a/i18n/vscode-language-pack-it/translations/extensions/testing-editor-contributions.i18n.json
+++ /dev/null
@@ -1,27 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "package": {
- "action.debug": "Esegui il debug",
- "action.run": "Esegui test",
- "config.enableCodeLens": "Indica se la finestra di CodeLens deve essere visibile in test case e gruppi di test.",
- "config.enableProblemDiagnostics": "Indica se gli errori di test devono essere segnalati nella visualizzazione 'Problemi' e visualizzati come errori nell'editor.",
- "description": "Offre l'esperienza nell'editor per test e risultati test.",
- "displayName": "Test contributi editor",
- "state.failed": "Non superato",
- "state.passed": "Superato",
- "state.passedWithDuration": "Superato in {0}",
- "tooltip.debug": "Esegue il debug di {0}",
- "tooltip.run": "Esegue {0}",
- "tooltip.runState": "{0}/{1} test superati",
- "tooltip.runStateWithDuration": "{0}/{1} test superati in {2}"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-it/translations/extensions/theme-abyss.i18n.json b/i18n/vscode-language-pack-it/translations/extensions/theme-abyss.i18n.json
deleted file mode 100644
index 46b5af0e30..0000000000
--- a/i18n/vscode-language-pack-it/translations/extensions/theme-abyss.i18n.json
+++ /dev/null
@@ -1,17 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "package": {
- "description": "Tema Abyss per Visual Studio Code",
- "displayName": "Tema Abyss",
- "themeLabel": "Abisso"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-it/translations/extensions/theme-defaults.i18n.json b/i18n/vscode-language-pack-it/translations/extensions/theme-defaults.i18n.json
deleted file mode 100644
index 5572b85c54..0000000000
--- a/i18n/vscode-language-pack-it/translations/extensions/theme-defaults.i18n.json
+++ /dev/null
@@ -1,23 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "package": {
- "darkColorThemeLabel": "Scuro (Visual Studio)",
- "darkPlusColorThemeLabel": "Più scuro (predefinito scuro)",
- "description": "I temi dark e light predefiniti in Visual Studio",
- "displayName": "Tema predefinito",
- "hcColorThemeLabel": "Contrasto elevato scuro",
- "lightColorThemeLabel": "Chiaro (Visual Studio)",
- "lightHcColorThemeLabel": "Contrasto elevato chiaro",
- "lightPlusColorThemeLabel": "Più chiaro (predefinito chiaro)",
- "minimalIconThemeLabel": "Minimo (Visual Studio Code)"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-it/translations/extensions/theme-kimbie-dark.i18n.json b/i18n/vscode-language-pack-it/translations/extensions/theme-kimbie-dark.i18n.json
deleted file mode 100644
index 31d08f7747..0000000000
--- a/i18n/vscode-language-pack-it/translations/extensions/theme-kimbie-dark.i18n.json
+++ /dev/null
@@ -1,17 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "package": {
- "description": "Tema Kimbie Dark per Visual Studio Code",
- "displayName": "Tema Kimbie Dark",
- "themeLabel": "Kimbie Dark"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-it/translations/extensions/theme-monokai-dimmed.i18n.json b/i18n/vscode-language-pack-it/translations/extensions/theme-monokai-dimmed.i18n.json
deleted file mode 100644
index 25ab9cfdc1..0000000000
--- a/i18n/vscode-language-pack-it/translations/extensions/theme-monokai-dimmed.i18n.json
+++ /dev/null
@@ -1,17 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "package": {
- "description": "Tema Monokai Dimmed per Visual Studio Code",
- "displayName": "Tema Monokai Dimmed",
- "themeLabel": "Monokai attenuato"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-it/translations/extensions/theme-monokai.i18n.json b/i18n/vscode-language-pack-it/translations/extensions/theme-monokai.i18n.json
deleted file mode 100644
index a5a83daace..0000000000
--- a/i18n/vscode-language-pack-it/translations/extensions/theme-monokai.i18n.json
+++ /dev/null
@@ -1,17 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "package": {
- "description": "Tema Monokai per Visual Studio Code",
- "displayName": "Tema Monokai",
- "themeLabel": "Monokai"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-it/translations/extensions/theme-quietlight.i18n.json b/i18n/vscode-language-pack-it/translations/extensions/theme-quietlight.i18n.json
deleted file mode 100644
index 80f56d0d88..0000000000
--- a/i18n/vscode-language-pack-it/translations/extensions/theme-quietlight.i18n.json
+++ /dev/null
@@ -1,17 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "package": {
- "description": "Tema Quiet Light per Visual Studio Code",
- "displayName": "Tema Quiet Light",
- "themeLabel": "Quiet Light"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-it/translations/extensions/theme-red.i18n.json b/i18n/vscode-language-pack-it/translations/extensions/theme-red.i18n.json
deleted file mode 100644
index 4a0c7354d0..0000000000
--- a/i18n/vscode-language-pack-it/translations/extensions/theme-red.i18n.json
+++ /dev/null
@@ -1,17 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "package": {
- "description": "Tema Red per Visual Studio Code",
- "displayName": "Tema Red",
- "themeLabel": "Rosso"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-it/translations/extensions/theme-seti.i18n.json b/i18n/vscode-language-pack-it/translations/extensions/theme-seti.i18n.json
deleted file mode 100644
index 217ffad322..0000000000
--- a/i18n/vscode-language-pack-it/translations/extensions/theme-seti.i18n.json
+++ /dev/null
@@ -1,17 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "package": {
- "description": "Un tema per le icone dei file creato sulla base di Seti UI",
- "displayName": "Tema Seti per le icone dei file",
- "themeLabel": "Seti (Visual Studio Code)"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-it/translations/extensions/theme-solarized-dark.i18n.json b/i18n/vscode-language-pack-it/translations/extensions/theme-solarized-dark.i18n.json
deleted file mode 100644
index a08b043eaa..0000000000
--- a/i18n/vscode-language-pack-it/translations/extensions/theme-solarized-dark.i18n.json
+++ /dev/null
@@ -1,17 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "package": {
- "description": "Tema Solarized Dark per Visual Studio Code",
- "displayName": "Tema Solarized Dark",
- "themeLabel": "Solare scuro"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-it/translations/extensions/theme-solarized-light.i18n.json b/i18n/vscode-language-pack-it/translations/extensions/theme-solarized-light.i18n.json
deleted file mode 100644
index 17b99e0885..0000000000
--- a/i18n/vscode-language-pack-it/translations/extensions/theme-solarized-light.i18n.json
+++ /dev/null
@@ -1,17 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "package": {
- "description": "Tema Solarized Light per Visual Studio Code",
- "displayName": "Tema Solarized Light",
- "themeLabel": "Solare chiaro"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-it/translations/extensions/theme-tomorrow-night-blue.i18n.json b/i18n/vscode-language-pack-it/translations/extensions/theme-tomorrow-night-blue.i18n.json
deleted file mode 100644
index c3f103e859..0000000000
--- a/i18n/vscode-language-pack-it/translations/extensions/theme-tomorrow-night-blue.i18n.json
+++ /dev/null
@@ -1,17 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "package": {
- "description": "Tema Tomorrow Night Blue per Visual Studio Code",
- "displayName": "Tema Tomorrow Night Blue",
- "themeLabel": "Tomorrow Night Blue"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-it/translations/extensions/typescript-basics.i18n.json b/i18n/vscode-language-pack-it/translations/extensions/typescript-basics.i18n.json
deleted file mode 100644
index adb9bb512a..0000000000
--- a/i18n/vscode-language-pack-it/translations/extensions/typescript-basics.i18n.json
+++ /dev/null
@@ -1,16 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "package": {
- "description": "Offre i frammenti, la sottolineatura delle sintassi, la corrispondenza delle parentesi e la riduzione del codice nei file TypeScript.",
- "displayName": "Nozioni di base sul linguaggio TypeScript"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-it/translations/extensions/typescript-language-features.i18n.json b/i18n/vscode-language-pack-it/translations/extensions/typescript-language-features.i18n.json
deleted file mode 100644
index 35386959ad..0000000000
--- a/i18n/vscode-language-pack-it/translations/extensions/typescript-language-features.i18n.json
+++ /dev/null
@@ -1,328 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "dist/languageFeatures/codeLens/baseCodeLensProvider": {
- "referenceErrorLabel": "Non è stato possibile determinare i riferimenti"
- },
- "dist/languageFeatures/codeLens/implementationsCodeLens": {
- "manyImplementationLabel": "{0} implementazioni",
- "oneImplementationLabel": "1 implementazione"
- },
- "dist/languageFeatures/codeLens/referencesCodeLens": {
- "manyReferenceLabel": "{0} riferimenti",
- "oneReferenceLabel": "1 riferimento"
- },
- "dist/languageFeatures/completions": {
- "acquiringTypingsDetail": "Acquisizione delle definizioni dei file typings per IntelliSense.",
- "acquiringTypingsLabel": "Acquisizione dei file typings...",
- "selectCodeAction": "Selezionare l'azione codice da applicare"
- },
- "dist/languageFeatures/directiveCommentCompletions": {
- "ts-check": "Attiva il controllo semantico in un file JavaScript. Deve essere all'inizio del file.",
- "ts-expect-error": "Elimina gli errori di @ts-check sulla riga successiva di un file. Presuppone che ne esista almeno uno.",
- "ts-ignore": "Elimina errori di @ts-check sulla riga successiva di un file.",
- "ts-nocheck": "Disattiva il controllo semantico in un file JavaScript. Deve essere all'inizio del file."
- },
- "dist/languageFeatures/fileReferences": {
- "error.noResource": "La ricerca dei riferimenti a file non è riuscita. Non è stata specificata alcuna risorsa.",
- "error.unknownFile": "La ricerca dei riferimenti a file non è riuscita. Il tipo di file è sconosciuto.",
- "error.unsupportedLanguage": "La ricerca dei riferimenti a file non è riuscita. Il tipo di file non è supportato.",
- "error.unsupportedVersion": "La ricerca dei riferimenti a file non è riuscita. È richiesto TypeScript 4.2 o versione successiva.",
- "progress.title": "Ricerca di riferimenti a file"
- },
- "dist/languageFeatures/fixAll": {
- "autoFix.label": "Correggi tutti i problemi JS/TS risolvibili",
- "autoFix.missingImports.label": "Aggiungi tutte le importazioni mancanti",
- "autoFix.unused.label": "Rimuovi tutto il codice inutilizzato"
- },
- "dist/languageFeatures/jsDocCompletions": {
- "typescript.jsDocCompletionItem.documentation": "Commento JSDoc"
- },
- "dist/languageFeatures/organizeImports": {
- "organizeImportsAction.title": "Organizza importazioni",
- "sortImportsAction.title": "Ordina direttive import"
- },
- "dist/languageFeatures/quickFix": {
- "fixAllInFileLabel": "{0} (Correggi tutti nel file)"
- },
- "dist/languageFeatures/refactor": {
- "extractConstant.disabled.reason": "Non è possibile estrarre la selezione corrente",
- "extractConstant.disabled.title": "Estrai in costante",
- "extractFunction.disabled.reason": "Non è possibile estrarre la selezione corrente",
- "extractFunction.disabled.title": "Estrai in funzione",
- "refactor.documentation.title": "Altre informazioni sui refactoring JS/TS",
- "refactoringFailed": "Non è stato possibile applicare il refactoring"
- },
- "dist/languageFeatures/rename": {
- "fileRenameFail": "Si è verificato un errore durante la ridenominazione del file"
- },
- "dist/languageFeatures/sourceDefinition": {
- "error.noReferences": "Non sono state trovate definizioni di origine.",
- "error.noResource": "Accesso alla definizione di origine non riuscito. Nessuna risorsa specificata.",
- "error.unknownFile": "Accesso alla definizione di origine non riuscito. Tipo di file sconosciuto.",
- "error.unsupportedLanguage": "Accesso alla definizione di origine non riuscito. Tipo di file non supportato.",
- "error.unsupportedVersion": "Accesso alla definizione di origine non riuscito. È necessario TypeScript 4.7+.",
- "progress.title": "Ricerca di definizioni di origine"
- },
- "dist/languageFeatures/tsconfig": {
- "documentLink.tooltip": "Segui il collegamento",
- "openTsconfigExtendsModuleFail": "Non è stato possibile risolvere {0} come modulo"
- },
- "dist/languageFeatures/updatePathsOnRename": {
- "accept.title": "Sì",
- "always.title": "Aggiorna sempre le istruzioni import automaticamente",
- "moreFile": "...1 altro file non visualizzato",
- "moreFiles": "...{0} altri file non visualizzati",
- "never.title": "Non aggiornare mai le istruzioni import automaticamente",
- "prompt": "Aggiornare le istruzioni import per '{0}'?",
- "promptMoreThanOne": "Aggiornare le istruzioni import per i file di {0} seguenti?",
- "reject.title": "No",
- "renameProgress.title": "Verifica della disponibilità di aggiornamenti per le istruzioni import JS/TS"
- },
- "dist/task/taskProvider": {
- "badTsConfig": "L'attività TypeScript in tasks.json contiene \"\\\\\". Per le attività TypeScript in tsconfig è necessario usare \"/\"",
- "buildAndWatchTscLabel": "espressione di controllo - {0}",
- "buildTscLabel": "compilazione - {0}"
- },
- "dist/tsServer/serverProcess.electron": {
- "noServerFound": "Il percorso {0} non punta a un'installazione valida di tsserver. Verrà eseguito il fallback alla versione in bundle di TypeScript."
- },
- "dist/tsServer/versionManager": {
- "allow": "Consenti",
- "dismiss": "Ignora",
- "learnMore": "Altre informazioni sulla gestione delle versioni di TypeScript",
- "promptUseWorkspaceTsdk": "Questa area di lavoro contiene una versione di TypeScript. Usare la versione di TypeScript dell'area di lavoro per le funzionalità dei linguaggi TypeScript e JavaScript?",
- "selectTsVersion": "Selezionare la versione di TypeScript usata per le funzionalità del linguaggio JavaScript e TypeScript",
- "suppress prompt": "Mai in questa area di lavoro",
- "useVSCodeVersionOption": "Usa versione di VS Code",
- "useWorkspaceVersionOption": "Usa versione dell'area di lavoro"
- },
- "dist/typescriptServiceClient": {
- "noServerFound": "Il percorso {0} non punta a un'installazione valida di tsserver. Verrà eseguito il fallback alla versione in bundle di TypeScript.",
- "openTsServerLog.openFileFailedFailed": "Non è stato possibile aprire il file di log del server TypeScript",
- "serverDied": "Il servizio di linguaggio Typescript è stato arrestato in modo imprevisto per cinque volte negli ultimi cinque minuti.",
- "serverDiedAfterStart": "Il servizio di linguaggio TypeScript è stato arrestato in modo imprevisto per cinque volte dopo che è stato avviato e non verrà riavviato.",
- "serverDiedOnce": "Il servizio di linguaggio TypeScript è stato arrestato in modo imprevisto.",
- "serverDiedReportIssue": "Segnala problema",
- "serverExitedWithError": "Il server di linguaggio TypeScript. è stato chiuso ed è stato restituito un errore. Messaggio di errore: {0}",
- "serverLoading.progress": "Inizializzazione delle funzionalità del linguaggio JS/TS",
- "typescript.openTsServerLog.enableAndReloadOption": "Abilita la registrazione e riavvia il server TypeScript",
- "typescript.openTsServerLog.loggingNotEnabled": "La registrazione del server TypeScript è disattivata. Per abilitarla, impostare `typescript.tsserver.log` e riavviare il server TypeScript",
- "typescript.openTsServerLog.noLogFile": "Il server TypeScript non ha avviato la registrazione.",
- "usingOldTsVersion.detail": "L'area di lavoro utilizza una versione precedente di TypeScript ({0}).\r\n\r\nPrima di segnalare un problema, aggiornare l'area di lavoro per l'uso della versione più recente di TypeScript stabile per assicurarsi che il bug non sia già stato risolto.",
- "usingOldTsVersion.title": "Aggiornare la versione di TypeScript"
- },
- "dist/ui/intellisenseStatus": {
- "pending.detail": "Caricamento dello stato di IntelliSense",
- "resolved.command.title.createJsconfig": "Crea jsconfig",
- "resolved.command.title.createTsconfig": "Crea tsconfig",
- "resolved.command.title.open": "Apri file di configurazione",
- "resolved.detail.noJsConfig": "Nessun file jsconfig",
- "resolved.detail.noOpenedFolders": "Nessuna cartella aperta",
- "resolved.detail.noTsConfig": "Nessun file tsconfig",
- "resolved.detail.notInOpenedFolder": "Il file non fa parte di cartelle aperte",
- "statusItem.name": "JS/TS IntelliSense Status",
- "syntaxOnly.command.title.learnMore": "Altre informazioni",
- "syntaxOnly.detail": "IntelliSense a livello di progetto non è disponibile",
- "syntaxOnly.text": "Modalità parziale"
- },
- "dist/ui/versionStatus": {
- "versionStatus.command": "Seleziona versione ",
- "versionStatus.detail": "Versione di TypeScrip",
- "versionStatus.name": "Versione di TypeScrip"
- },
- "dist/utils/api": {
- "invalidVersion": "versione non valida"
- },
- "dist/utils/logger": {
- "channelName": "TypeScript"
- },
- "dist/utils/tsconfig": {
- "typescript.configureJsconfigQuickPick": "Configura jsconfig.json",
- "typescript.configureTsconfigQuickPick": "Configura tsconfig.json",
- "typescript.noJavaScriptProjectConfig": "Il file non fa parte di un progetto JavaScript. Per altre informazioni, visualizzare il [tsconfig.json documentation] ({0}).",
- "typescript.noTypeScriptProjectConfig": "Il file non fa parte di un progetto TypeScript. Per altre informazioni, visualizzare il [tsconfig.json documentation] ({0}).",
- "typescript.projectConfigCouldNotGetInfo": "Non è stato possibile determinare il progetto TypeScript o JavaScript",
- "typescript.projectConfigNoWorkspace": "Aprire una cartella in Visual Studio Code per usare un progetto TypeScript o JavaScript",
- "typescript.projectConfigUnsupportedFile": "Non è stato possibile determinare il progetto TypeScript o JavaScript. Il tipo di file non è supportato"
- },
- "package": {
- "codeActions.refactor.extract.constant.description": "Estrae l'espressione nella costante.",
- "codeActions.refactor.extract.constant.title": "Estrai costante",
- "codeActions.refactor.extract.function.description": "Estrae l'espressione nel metodo o nella funzione.",
- "codeActions.refactor.extract.function.title": "Estrai funzione",
- "codeActions.refactor.extract.interface.description": "Estrae il tipo in un'interfaccia.",
- "codeActions.refactor.extract.interface.title": "Estrai interfaccia",
- "codeActions.refactor.extract.type.description": "Estrae il tipo in un alias di tipo.",
- "codeActions.refactor.extract.type.title": "Estrai tipo",
- "codeActions.refactor.move.newFile.description": "Sposta l'espressione in un nuovo file.",
- "codeActions.refactor.move.newFile.title": "Passare a un nuovo file",
- "codeActions.refactor.rewrite.arrow.braces.description": "Aggiunge o rimuove le parentesi graffe in una funzione arrow.",
- "codeActions.refactor.rewrite.arrow.braces.title": "Riscrivi parentesi graffe in arrow",
- "codeActions.refactor.rewrite.export.description": "Esegue la conversione tra l'esportazione predefinita e l'esportazione denominata.",
- "codeActions.refactor.rewrite.export.title": "Converti esportazione",
- "codeActions.refactor.rewrite.import.description": "Esegue la conversione tra istruzioni import denominate e istruzioni import degli spazi dei nomi.",
- "codeActions.refactor.rewrite.import.title": "Converti istruzione import",
- "codeActions.refactor.rewrite.parameters.toDestructured.title": "Convertire i parametri nell'oggetto destrutturato",
- "codeActions.refactor.rewrite.property.generateAccessors.description": "Generare le funzioni di accesso 'get' e 'set'",
- "codeActions.refactor.rewrite.property.generateAccessors.title": "Genera funzioni di accesso",
- "codeActions.source.organizeImports.title": "Organizza import",
- "configuration.implicitProjectConfig.checkJs": "Abilita/Disabilita il controllo semantico di file JavaScript. Eventuali file `jsconfig.json` o `tsconfig.json` esistenti sovrascrivono questa impostazione.",
- "configuration.implicitProjectConfig.experimentalDecorators": "Abilita/Disabilita gli elementi `experimentalDecorators` in file JavaScript che non fanno parte di un progetto. Eventuali file `jsconfig.json` o `tsconfig.json` esistenti sovrascrivono questa impostazione.",
- "configuration.implicitProjectConfig.module": "Imposta il sistema di moduli per il programma. Altre informazioni: https://www.typescriptlang.org/tsconfig#module.",
- "configuration.implicitProjectConfig.strictFunctionTypes": "Abilita/Disabilita i [tipi funzione strict](https://www.typescriptlang.org/tsconfig#strictFunctionTypes) in file JavaScript e TypeScript che non fanno parte di un progetto. Eventuali file `jsconfig.json` o `tsconfig.json` esistenti sovrascrivono questa impostazione.",
- "configuration.implicitProjectConfig.strictNullChecks": "Abilita/Disabilita i [controlli strict Null](https://www.typescriptlang.org/tsconfig#strictNullChecks) in file JavaScript e TypeScript che non fanno parte di un progetto. Eventuali file `jsconfig.json` o `tsconfig.json` esistenti sovrascrivono questa impostazione.",
- "configuration.implicitProjectConfig.target": "Imposta la versione del linguaggio JavaScript di destinazione per JavaScript emesso e include le dichiarazioni di libreria. Altre informazioni: https://www.typescriptlang.org/tsconfig#target.",
- "configuration.inlayHints.parameterNames.suppressWhenArgumentMatchesName": "Eliminare i suggerimenti per il nome del parametro negli argomenti il cui testo è identico al nome del parametro.",
- "configuration.inlayHints.variableTypes.suppressWhenTypeMatchesName": "Elimina gli hint di tipo nelle variabili il cui nome è identico al nome del tipo. Richiede l'uso di TypeScript 4.8+ nell'area di lavoro.",
- "configuration.javascript.checkJs.checkJs.deprecation": "Questa impostazione è stata deprecata e sostituita da `js/ts.implicitProjectConfig.checkJs`.",
- "configuration.javascript.checkJs.experimentalDecorators.deprecation": "Questa impostazione è stata deprecata e sostituita da `js/ts.implicitProjectConfig.experimentalDecorators`.",
- "configuration.suggest.autoImports": "Abilita/Disabilita i suggerimenti per le istruzioni import automatiche.",
- "configuration.suggest.classMemberSnippets.enabled": "Abilitare/disabilitare i completamenti dei frammenti per i membri della classe. Richiede l'uso di TypeScript 4.5+ nell'area di lavoro",
- "configuration.suggest.completeFunctionCalls": "Completare le funzioni con la relativa firma del parametro.",
- "configuration.suggest.completeJSDocs": "Abilita/disabilita il suggerimento per il completamento dei commenti JSDoc.",
- "configuration.suggest.includeAutomaticOptionalChainCompletions": "Abilita/disabilita la visualizzazione dei completamenti per valori potenzialmente indefiniti che inseriscono una chiamata a catena facoltativa.Richiede almeno TypeScript 3.7 e l'abilitazione dei controlli strict Null.",
- "configuration.suggest.includeCompletionsForImportStatements": "Abilita/Disabilita i completamenti per gli stili a importazione automatica in istruzioni import parzialmente digitate. Richiede l'uso di TypeScript 4.3 e versioni successive nell'area di lavoro.",
- "configuration.suggest.includeCompletionsWithSnippetText": "Abilita/Disabilita i completamenti dei frammenti dal server TypeScript. Richiede l'uso di TypeScript 4.3 e versioni successive nell'area di lavoro.",
- "configuration.suggest.jsdoc.generateReturns": "Abilita/disabilita la generazione di annotazioni '@returns' per i modelli JSDoc. Richiede l'uso di TypeScript 4.2+ nell'area di lavoro.",
- "configuration.suggest.names": "Abilita/disabilita l'inclusione di nomi univoci dal file nei suggerimenti JavaScript. Tenere presente che i suggerimenti per i nomi sono sempre disabilitati nel codice JavaScript che viene controllato semanticamente con `@ts-check` o `checkJs'.",
- "configuration.suggest.objectLiteralMethodSnippets.enabled": "Abilitare/disabilitare i completamenti dei frammenti per i metodi nei valori letterali oggetto. Richiede l'uso di TypeScript 4.7+ nell'area di lavoro",
- "configuration.suggest.paths": "Abilita/disabilita i suggerimenti per i percorsi nelle istruzioni import e le chiamate require.",
- "configuration.surveys.enabled": "Abilita/disabilita sondaggi occasionali che consentono di migliorare il supporto di JavaScript e TypeScript in VS Code.",
- "configuration.tsserver.experimental.enableProjectDiagnostics": "(Sperimentale) Consente la segnalazione degli errori a livello di progetto.",
- "configuration.tsserver.maxTsServerMemory": "Quantità massima di memoria (in MB) da assegnare al processo server TypeScript.",
- "configuration.tsserver.useSeparateSyntaxServer": "Abilita/disabilita la generazione di un server TypeScript separato in grado di rispondere più rapidamente a operazioni correlate alla sintassi, come il calcolo della riduzione o l'elaborazione dei simboli del documento. Richiede l'uso di TypeScript 3.4.0 o versione successiva nell'area di lavoro.",
- "configuration.tsserver.useSeparateSyntaxServer.deprecation": "Questa opzione è stata sostituita con `typescript.tsserver.useSyntaxServer`.",
- "configuration.tsserver.useSyntaxServer": "Controlla se TypeScript avvia un server dedicato per gestire più rapidamente le operazioni correlate alla sintassi, ad esempio la riduzione del codice di calcolo.",
- "configuration.tsserver.useSyntaxServer.always": "Utilizza un server di sintassi più leggero per gestire tutte le operazioni di IntelliSense. Questo server di sintassi può fornire IntelliSense solo per i file aperti.",
- "configuration.tsserver.useSyntaxServer.auto": "Genera un server completo e un server più leggero dedicato alle operazioni di sintassi. Il server di sintassi viene usato per velocizzare le operazioni di sintassi e fornire IntelliSense durante il caricamento dei progetti.",
- "configuration.tsserver.useSyntaxServer.never": "Non utilizzare un server di sintassi dedicato. Utilizza un singolo server per gestire tutte le operazioni di IntelliSense.",
- "configuration.tsserver.watchOptions": "Configura le strategie di controllo per tenere traccia dei file e delle directory. Richiede l'uso di TypeScript 3.8 e versioni successive nell'area di lavoro.",
- "configuration.tsserver.watchOptions.fallbackPolling": "Quando si usano eventi del file system, questa opzione specifica la strategia di polling da usare se il sistema esaurisce i controlli file nativi e/o non supporta controlli file nativi.",
- "configuration.tsserver.watchOptions.fallbackPolling.dynamicPriorityPolling ": "Usa una coda dinamica in cui i file modificati meno frequentemente verranno controllati meno spesso.",
- "configuration.tsserver.watchOptions.fallbackPolling.fixedPollingInterval": "Controlla ogni file più volte al secondo per verificare la presenza di modifiche a un intervallo fisso.",
- "configuration.tsserver.watchOptions.fallbackPolling.priorityPollingInterval": "Controlla ogni file più volte al secondo per verificare la presenza di modifiche, ma usa l'euristica per controllare alcuni tipi di file meno frequentemente di altri.",
- "configuration.tsserver.watchOptions.synchronousWatchDirectory": "Disabilita il controllo differito sulle directory. Il controllo differito è utile in caso di più modifiche simultanee ai file, ad esempio una modifica in node_modules in seguito all'esecuzione di npm install, ma è opportuno disabilitarlo con questo flag per alcune configurazioni meno comuni.",
- "configuration.tsserver.watchOptions.watchDirectory": "Strategia di controllo di interi alberi di directory in sistemi in cui manca la funzionalità di controllo file ricorsivi.",
- "configuration.tsserver.watchOptions.watchDirectory.dynamicPriorityPolling": "Usa una coda dinamica in cui le directory modificate meno frequentemente verranno controllate meno spesso.",
- "configuration.tsserver.watchOptions.watchDirectory.fixedChunkSizePolling": "Esegue il polling delle directory in blocchi a intervalli regolari. Richiede l'uso di TypeScript 4.3 e versioni successive nell'area di lavoro.",
- "configuration.tsserver.watchOptions.watchDirectory.fixedPollingInterval": "Controlla ogni directory più volte al secondo per verificare la presenza di modifiche a un intervallo fisso.",
- "configuration.tsserver.watchOptions.watchDirectory.useFsEvents": "Prova a usare gli eventi nativi del sistema operativo/file system per le modifiche apportate alle directory.",
- "configuration.tsserver.watchOptions.watchFile": "Strategia per il controllo dei singoli file.",
- "configuration.tsserver.watchOptions.watchFile.dynamicPriorityPolling": "Usa una coda dinamica in cui i file modificati meno frequentemente verranno controllati meno spesso.",
- "configuration.tsserver.watchOptions.watchFile.fixedChunkSizePolling": "Esegue il polling dei file in blocchi a intervalli regolari. Richiede l'uso di TypeScript 4.3 e versioni successive nell'area di lavoro.",
- "configuration.tsserver.watchOptions.watchFile.fixedPollingInterval": "Controlla ogni file più volte al secondo per verificare la presenza di modifiche a un intervallo fisso.",
- "configuration.tsserver.watchOptions.watchFile.priorityPollingInterval": "Controlla ogni file più volte al secondo per verificare la presenza di modifiche, ma usa l'euristica per controllare alcuni tipi di file meno frequentemente di altri.",
- "configuration.tsserver.watchOptions.watchFile.useFsEvents": "Prova a usare gli eventi nativi del sistema operativo/file system per le modifiche apportate ai file.",
- "configuration.tsserver.watchOptions.watchFile.useFsEventsOnParentDirectory": "Prova a usare gli eventi nativi del sistema operativo/file system per ascoltare le modifiche apportate alle directory contenitore di un file. Con questa opzione vengono usati meno controlli file, ma i risultati potrebbero essere meno accurati.",
- "configuration.typescript": "TypeScript",
- "description": "Fornisce un supporto avanzato per JavaScript e TypeScript",
- "displayName": "Funzionalità dei linguaggi TypeScript e JavaScript",
- "format.insertSpaceAfterCommaDelimiter": "Consente di definire la gestione dello spazio dopo una virgola di delimitazione.",
- "format.insertSpaceAfterConstructor": "Consente di definire la gestione dello spazio dopo la parola chiave constructor.",
- "format.insertSpaceAfterFunctionKeywordForAnonymousFunctions": "Consente di definire la gestione dello spazio dopo la parola chiave function per funzioni anonime.",
- "format.insertSpaceAfterKeywordsInControlFlowStatements": "Consente di definire la gestione dello spazio dopo le parole chiave in un'istruzione del flusso di controllo.",
- "format.insertSpaceAfterOpeningAndBeforeClosingEmptyBraces": "Consente di definire la gestione dello spazio dopo l'apertura e prima della chiusura di parentesi graffe vuote.",
- "format.insertSpaceAfterOpeningAndBeforeClosingJsxExpressionBraces": "Consente di definire la gestione dello spazio dopo la parentesi graffa iniziale e prima della parentesi graffa finale dell'espressione JSX.",
- "format.insertSpaceAfterOpeningAndBeforeClosingNonemptyBraces": "Consente di definire la gestione dello spazio dopo l'apertura e prima della chiusura di parentesi graffe non vuote.",
- "format.insertSpaceAfterOpeningAndBeforeClosingNonemptyBrackets": "Consente di definire la gestione dello spazio dopo le parentesi quadre di apertura e di chiusura non vuote.",
- "format.insertSpaceAfterOpeningAndBeforeClosingNonemptyParenthesis": "Consente di definire la gestione dello spazio dopo le parentesi tonde di apertura e di chiusura non vuote.",
- "format.insertSpaceAfterOpeningAndBeforeClosingTemplateStringBraces": "Consente di definire la gestione dello spazio dopo la parentesi graffa iniziale e prima della parentesi graffa finale della stringa del modello.",
- "format.insertSpaceAfterSemicolonInForStatements": " Consente di definire la gestione dello spazio dopo un punto e virgola in un'istruzione for.",
- "format.insertSpaceAfterTypeAssertion": "Consente di definire la gestione dello spazio dopo le asserzioni di tipo in TypeScript.",
- "format.insertSpaceBeforeAndAfterBinaryOperators": "Consente di definire la gestione dello spazio dopo un operatore binario.",
- "format.insertSpaceBeforeFunctionParenthesis": "Consente di definire la gestione dello spazio prima delle parentesi dell'argomento della funzione.",
- "format.placeOpenBraceOnNewLineForControlBlocks": "Consente di definire se una parentesi graffa di apertura viene o meno inserita su una riga per i blocchi di controllo.",
- "format.placeOpenBraceOnNewLineForFunctions": "Consente di definire se una parentesi graffa di apertura viene o meno inserita su una riga per le funzioni.",
- "format.semicolons": "Definisce la gestione dei punti e virgola facoltativi. Richiede l'uso di TypeScript 3.7 o versione successiva nell'area di lavoro.",
- "format.semicolons.ignore": "Non inserire o rimuovere punti e virgola.",
- "format.semicolons.insert": "Inserisce i punti e virgola alla fine delle istruzioni.",
- "format.semicolons.remove": "Rimuove i punti e virgola non necessari.",
- "goToProjectConfig.title": "Passa a Configurazione progetto",
- "inlayHints.parameterNames.all": "Abilitare i suggerimenti per il nome del parametro per gli argomenti letterali e non letterali.",
- "inlayHints.parameterNames.literals": "Abilitare i suggerimenti per il nome del parametro solo per gli argomenti letterali.",
- "inlayHints.parameterNames.none": "Disabilitare i suggerimenti per il nome del parametro.",
- "javascript.format.enable": "Abilita/Disabilita il formattatore JavaScript predefinito.",
- "javascript.preferences.jsxAttributeCompletionStyle.auto": "Inserire '={}' o '=\"\"' dopo i nomi di attributo in base al tipo di proprietà. Vedere 'javascript.preferences.quoteStyle' per controllare il tipo di virgolette usate per gli attributi stringa.",
- "javascript.referencesCodeLens.enabled": "Abilita/disabilita riferimenti CodeLens nei file JavaScript.",
- "javascript.referencesCodeLens.showOnAllFunctions": "Abilita/disabilita le finestre CodeLens per i riferimenti in tutte le funzioni nei file JavaScript.",
- "javascript.suggestionActions.enabled": "Abilita/Disabilita la diagnostica dei suggerimenti per i file JavaScript nell'editor.",
- "javascript.validate.enable": "Abilita/Disabilita la convalida JavaScript.",
- "reloadProjects.title": "Ricarica progetto",
- "taskDefinition.tsconfig.description": "File tsconfig che definisce la compilazione TS.",
- "typescript.autoClosingTags": "Abilita/Disabilita la chiusura automatica dei tag JSX.",
- "typescript.check.npmIsInstalled": "Check if npm is installed for [Automatic Type Acquisition](https://code.visualstudio.com/docs/nodejs/working-with-javascript#_typings-and-automatic-type-acquisition).",
- "typescript.disableAutomaticTypeAcquisition": "Disables [automatic type acquisition](https://code.visualstudio.com/docs/nodejs/working-with-javascript#_typings-and-automatic-type-acquisition). Automatic type acquisition fetches `@types` packages from npm to improve IntelliSense for external libraries.",
- "typescript.enablePromptUseWorkspaceTsdk": "Consente di chiedere agli utenti se usare la versione di TypeScript configurata nell'area di lavoro per IntelliSense.",
- "typescript.findAllFileReferences": "Trova riferimenti a file",
- "typescript.format.enable": "Abilita/Disabilita il formattatore TypeScript predefinito.",
- "typescript.goToSourceDefinition": "Vai alla definizione di origine",
- "typescript.implementationsCodeLens.enabled": "Abilita/Disabilita le finestre CodeLens per le implementazioni. Questa finestra CodeLens mostra gli implementatori di un'interfaccia.",
- "typescript.locale": "Consente di definire le impostazioni locali usate per segnalare errori JavaScript e TypeScript. Per impostazione predefinita vengono usate le impostazioni locali di VS Code.",
- "typescript.npm": "Specifica il percorso del file eseguibile npm usato per [acquisizione automatica del tipo](https://code.visualstudio.com/docs/nodejs/working-with-javascript#_typings-and-automatic-type-acquisition).",
- "typescript.openTsServerLog.title": "Apri il log del server TypeScript",
- "typescript.preferences.autoImportFileExcludePatterns": "Specificare i criteri GLOB dei file da escludere dalle importazioni automatiche. Richiede l'uso di TypeScript 4.8 o versione successiva nell'area di lavoro.",
- "typescript.preferences.importModuleSpecifier": "Stile di percorso preferito per le istruzioni import automatiche.",
- "typescript.preferences.importModuleSpecifier.nonRelative": "Preferisce un'importazione non relativa basata sull'elemento `baseUrl` o `paths` configurato nel file `jsconfig.json`/`tsconfig.json`.",
- "typescript.preferences.importModuleSpecifier.projectRelative": "Preferisce un'importazione non relativa solo se il percorso di importazione relativo lascia la directory del progetto o del pacchetto. Richiede l'uso di TypeScript 4.2 o versione successiva nell'area di lavoro.",
- "typescript.preferences.importModuleSpecifier.relative": "Preferisce un percorso relativo per la posizione del file importato.",
- "typescript.preferences.importModuleSpecifier.shortest": "Preferisce un'importazione non relativa solo se ne è disponibile solo una con un numero di segmenti di tracciato minore rispetto a un'importazione relativa.",
- "typescript.preferences.importModuleSpecifierEnding": "Fine del percorso preferito per le importazioni automatiche. Richiede l'uso di TypeScript 4.5 o versioni successive nell'area di lavoro.",
- "typescript.preferences.importModuleSpecifierEnding.auto": "Usa le impostazioni del progetto per selezionare un'impostazione predefinita.",
- "typescript.preferences.importModuleSpecifierEnding.index": "Abbrevia `./component/index.js` in `./component/index`.",
- "typescript.preferences.importModuleSpecifierEnding.js": "Non abbreviare le terminazioni dei percorsi e includi l'estensione `.js`.",
- "typescript.preferences.importModuleSpecifierEnding.minimal": "Abbrevia `./component/index.js` in `./component`.",
- "typescript.preferences.includePackageJsonAutoImports": "Abilita/Disabilita la ricerca delle dipendenze di `package.json` per le importazioni automatiche disponibili.",
- "typescript.preferences.includePackageJsonAutoImports.auto": "Cerca le dipendenze in base all'impatto stimato sulle prestazioni.",
- "typescript.preferences.includePackageJsonAutoImports.off": "Non cercare mai le dipendenze.",
- "typescript.preferences.includePackageJsonAutoImports.on": "Cerca sempre le dipendenze.",
- "typescript.preferences.jsxAttributeCompletionStyle": "Stile preferito per i completamenti degli attributi JSX.",
- "typescript.preferences.jsxAttributeCompletionStyle.auto": "Inserire '={}' o '=\"\"' dopo i nomi di attributo in base al tipo di proprietà. Vedere 'typescript.preferences.quoteStyle' per controllare il tipo di virgolette usate per gli attributi stringa.",
- "typescript.preferences.jsxAttributeCompletionStyle.braces": "Inserire “={}” dopo i nomi di attributo.",
- "typescript.preferences.jsxAttributeCompletionStyle.none": "Inserire solo nomi di attributo.",
- "typescript.preferences.quoteStyle": "Stile virgolette preferito da usare per le correzioni rapide.",
- "typescript.preferences.quoteStyle.auto": "Dedurre il tipo di virgolette dal codice esistente",
- "typescript.preferences.quoteStyle.double": "Usare sempre virgolette doppie: `\"`",
- "typescript.preferences.quoteStyle.single": "Usare sempre virgolette singole: `'`",
- "typescript.preferences.renameShorthandProperties.deprecationMessage": "L'impostazione 'typescript.preferences.renameShorthandProperties' è stata deprecata e sostituita da 'typescript.preferences.useAliasesForRenames'",
- "typescript.preferences.useAliasesForRenames": "Abilita/disabilita l'introduzione di alias per le proprietà a sintassi abbreviata degli oggetti durante le ridenominazioni. Richiede l'uso di TypeScript 3.4 o versione successiva nell'area di lavoro.",
- "typescript.problemMatchers.tsc.label": "Problemi TypeScript",
- "typescript.problemMatchers.tscWatch.label": "Problemi TypeScript (modalità espressione di controllo)",
- "typescript.referencesCodeLens.enabled": "Abilita/Disabilita le finestre CodeLens per i riferimenti nei file TypeScript.",
- "typescript.referencesCodeLens.showOnAllFunctions": "Abilita/disabilita le finestre CodeLens per i riferimenti in tutte le funzioni nei file TypeScript.",
- "typescript.reportStyleChecksAsWarnings": "Segnala i controlli di stile come avvisi.",
- "typescript.restartTsServer": "Riavvia server TS",
- "typescript.selectTypeScriptVersion.title": "Seleziona la versione di TypeScript...",
- "typescript.suggest.enabled": "Abilita/disabilita i suggerimenti per il completamento automatico.",
- "typescript.suggestionActions.enabled": "Abilita/Disabilita la diagnostica dei suggerimenti per i file TypeScript nell'editor.",
- "typescript.tsc.autoDetect": "Controlla la rilevazione automatica di attività tsc.",
- "typescript.tsc.autoDetect.build": "Crea solo singole attività di compilazione esecuzione.",
- "typescript.tsc.autoDetect.off": "Disabilita questa funzionalità.",
- "typescript.tsc.autoDetect.on": "Crea attività di compilazione e di controllo.",
- "typescript.tsc.autoDetect.watch": "Crea solo attività di compilazione e di controllo.",
- "typescript.tsdk.desc": "Specifica il percorso della cartella dei file tsserver e `lib*.d.ts` in un'installazione di TypeScript da usare per IntelliSense, ad esempio: `./node_modules/typescript/lib`.\r\n\r\n- Quando viene specificata come impostazione utente, la versione di TypeScript di `typescript.tsdk` sostituisce automaticamente la versione predefinita di TypeScript.\r\n- Quando viene specificata come impostazione dell'area di lavoro, `typescript.tsdk` consente di passare alla versione area di lavoro di TypeScript per IntelliSense con il comando `TypeScript: selezionare la versione di TypeScript`.\r\n\r\nPer altri dettagli sulla gestione delle versioni di TypeScript, vedere la [documentazione di TypeScript](https://code.visualstudio.com/docs/typescript/typescript-compiling#_using-newer-typescript-versions).",
- "typescript.tsserver.enableTracing": "Abilita la traccia delle prestazioni del server TypeScript in una directory. Questi file di traccia possono essere usati per diagnosticare problemi di prestazioni del server TypeScript. Il log può contenere percorsi di file, codice sorgente e altre informazioni del progetto potenzialmente riservate.",
- "typescript.tsserver.log": "Abilita la registrazione del server TypeScript in un file. Questo log può essere usato per diagnosticare problemi del server TypeScript. Il log può contenere percorsi di file, codice sorgente e altre informazioni del progetto potenzialmente riservate.",
- "typescript.tsserver.pluginPaths": "Percorsi aggiuntivi per individuare plug-in del servizio di linguaggio TypeScript.",
- "typescript.tsserver.pluginPaths.item": "Percorso assoluto o relativo. Il percorso relativo verrà risolto in base alle cartelle dell'area di lavoro.",
- "typescript.tsserver.trace": "Abilita la traccia dei messaggi inviati al server TypeScript. Questa traccia può essere usata per diagnosticare problemi del server TypeScript. La traccia può contenere percorsi di file, codice sorgente e altre informazioni del progetto potenzialmente riservate.",
- "typescript.updateImportsOnFileMove.enabled": "Abilita/Disabilita l'aggiornamento automatico dei percorsi delle istruzioni import quando si rinomina o si sposta un file in VS Code.",
- "typescript.updateImportsOnFileMove.enabled.always": "Aggiorna sempre i percorsi automaticamente.",
- "typescript.updateImportsOnFileMove.enabled.never": "Non rinomina mai i percorsi senza chiedere conferma.",
- "typescript.updateImportsOnFileMove.enabled.prompt": "Chiede conferma per ogni ridenominazione.",
- "typescript.validate.enable": "Abilita/Disabilita la convalida TypeScript.",
- "typescript.workspaceSymbols.scope": "Controlla i file cercati in base a [Vai al simbolo nell'area di lavoro](https://code.visualstudio.com/docs/editor/editingevolved#_open-symbol-by-name).",
- "typescript.workspaceSymbols.scope.allOpenProjects": "Cerca i simboli in tutti i progetti JavaScript o TypeScript aperti. Richiede l'uso di TypeScript 3.9 o versione successiva nell'area di lavoro.",
- "typescript.workspaceSymbols.scope.currentProject": "Cerca i simboli solo nel progetto JavaScript o TypeScript corrente.",
- "virtualWorkspaces": "Nelle aree di lavoro virtuali, la risoluzione e la ricerca di riferimenti tra i file non sono supportate.",
- "workspaceTrust": "L'estensione richiede l'attendibilità dell'area di lavoro quando viene utilizzata la versione dell'area di lavoro perché esegue il codice specificato dall'area di lavoro."
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-it/translations/extensions/vb.i18n.json b/i18n/vscode-language-pack-it/translations/extensions/vb.i18n.json
deleted file mode 100644
index 19f2f5bfe9..0000000000
--- a/i18n/vscode-language-pack-it/translations/extensions/vb.i18n.json
+++ /dev/null
@@ -1,16 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "package": {
- "description": "Offre i frammenti, la sottolineatura delle sintassi, la corrispondenza delle parentesi e la riduzione del codice nei file Visual Basic.",
- "displayName": "Nozioni di base sul linguaggio Visual Basic"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-it/translations/extensions/vscode-chrome-debug-core.i18n.json b/i18n/vscode-language-pack-it/translations/extensions/vscode-chrome-debug-core.i18n.json
deleted file mode 100644
index 61acb169fc..0000000000
--- a/i18n/vscode-language-pack-it/translations/extensions/vscode-chrome-debug-core.i18n.json
+++ /dev/null
@@ -1,69 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "errors": {
- "eval.not.available": "Non disponibile",
- "not.connected": "non connesso al runtime",
- "restartFrame.cannot": "Non è possibile riavviare il frame",
- "attribute.path.not.exist": "L'attributo '{0}' non esiste ('{1}').",
- "attribute.path.not.absolute": "L'attributo '{0}' non è assoluto ('{1}'). Per renderlo assoluto, provare ad aggiungere il prefisso '{2}'.",
- "more.information": "Altre informazioni",
- "setVariable.error": "Il valore dell'impostazione non è supportato",
- "source.not.found": "Non è stato possibile recuperare il contenuto.",
- "VSND2010": "Non è possibile connettersi al processo di runtime. Timeout dopo {0} ms. Motivo: {1}",
- "VSND2023": "Non sono disponibili stack di chiamate.",
- "failed.to.read.port": "Non è stato possibile leggere il file {dataDirPath}. {error}",
- "port.file.contents.invalid": "Il file nel percorso \"{dataDirPath}\" non contiene dati validi sulla porta. Il contenuto è: {dataDirContents}"
- },
- "chrome/breakpoints": {
- "setBPTimedOut": "Timeout della richiesta di impostazione punti di interruzione",
- "bp.fail.unbound": "Il punto di interruzione è stato impostato ma non ancora associato",
- "bp.fail.noscript": "Non è possibile trovare lo script per la richiesta del punto di interruzione",
- "validateBP.sourcemapFail": "Il punto di interruzione è stato ignorato perché il codice generato non è stato trovato. È possibile che si sia verificato un problema con il source map.",
- "validateBP.notFound": "Il punto di interruzione è stato ignorato perché il percorso di destinazione non è stato trovato",
- "invalidHitCondition": "La condizione raggiunta non è valida: {0}"
- },
- "chrome/chromeDebugAdapter": {
- "exceptions.all": "Tutte le eccezioni",
- "exceptions.uncaught": "Eccezioni non rilevate",
- "exceptions.promise_rejects": "Rifiuti promessa"
- },
- "chrome/chromeTargetDiscoveryStrategy": {
- "attach.responseButNoTargets": "È stata ottenuta una risposta dall'app di destinazione, ma non sono state trovate pagine di destinazione",
- "attach.cannotConnect": "Non è possibile connettersi alla destinazione: {0}",
- "attach.invalidResponse": "La risposta della destinazione non sembra valida. Errore: {0}. Risposta: {1}",
- "attach.invalidResponseArray": "La risposta della destinazione non sembra valida: {0}",
- "attach.noMatchingTarget": "Non è possibile trovare una destinazione valida corrispondente a {0}. Pagine disponibili: {1}",
- "attach.devToolsAttached": "Non è possibile collegarsi a questa destinazione perché potrebbe essere collegato Chrome DevTools: {0}"
- },
- "chrome/stackFrames": {
- "skipReason": "(ignorata da '{0}')",
- "scope.exception": "Eccezione"
- },
- "chrome/stoppedEvent": {
- "reason.description.step": "Sospeso in corrispondenza del passaggio",
- "reason.description.breakpoint": "Sospeso in corrispondenza del punto di interruzione",
- "reason.description.exception": "Sospeso in corrispondenza dell'eccezione",
- "reason.description.uncaughtException": "Sospeso in corrispondenza dell'eccezione non rilevata",
- "reason.description.caughtException": "Sospeso in corrispondenza dell'eccezione rilevata",
- "reason.description.user_request": "Sospeso in corrispondenza della richiesta dell'utente",
- "reason.description.entry": "Sospeso in corrispondenza dell'accesso",
- "reason.description.debugger_statement": "Sospeso in corrispondenza dell'istruzione del debugger",
- "reason.description.restart": "Sospeso in corrispondenza della voce del frame",
- "reason.description.promiseRejection": "Sospeso in corrispondenza del rifiuto della promessa"
- },
- "transformers/baseSourceMapTransformer": {
- "origin.inlined.source.map": "contenuto inline di sola lettura del source map"
- },
- "transformers/remotePathTransformer": {
- "localRootAndRemoteRoot": "È necessario specificare sia localRoot che remoteRoot."
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-it/translations/extensions/vscode-node-debug.i18n.json b/i18n/vscode-language-pack-it/translations/extensions/vscode-node-debug.i18n.json
deleted file mode 100644
index bf09f6daea..0000000000
--- a/i18n/vscode-language-pack-it/translations/extensions/vscode-node-debug.i18n.json
+++ /dev/null
@@ -1,185 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "package": {
- "extension.description": "Supporto per il debug Node.js (versioni precedenti alla 8.0)",
- "node.label": "Node.js",
- "open.loaded.script": "Apri script caricato",
- "attach.node.process": "Collega al processo Node",
- "toggle.skipping.this.file": "Attiva/disattiva Ignora questo file",
- "start.with.stop.on.entry": "Avvia il debug e arrestalo in corrispondenza della voce",
- "smartStep.description": "Esegue automaticamente un'istruzione alla volta del codice generato di cui non è possibile eseguire il mapping all'origine iniziale.",
- "skipFiles.description": "Matrice di criteri GLOB per i file da ignorare durante il debug. Il criterio `/**` consente di trovare una corrispondenza per tutti i moduli Node.js interni.",
- "outFiles.description": "Se sono abilitati i source map, questi criteri GLOB specificano i file JavaScript generati. Se un criterio inizia con '!', i file sono esclusi. Se non viene specificato, si presuppone che il codice generato si trovi nella stessa directory dell'origine. Esempio: `[\"${workspaceFolder}/out/**/*.js\"]`",
- "outDir.deprecationMessage": "L'attributo 'outDir' è deprecato. Usare 'outFiles'.",
- "trace.description": "Produce l'output di diagnostica. Invece di impostare questa opzione su true, è possibile elencare uno o più selettori delimitati da virgole. Usare il selettore 'verbose' per abilitare output molto dettagliato.",
- "launch.args.description": "Argomenti della riga di comando passati al programma.",
- "debug.node.showUseWslIsDeprecatedWarning.description": "Controlla se visualizzare un avviso quando viene si usa l'attributo 'useWSL'.",
- "debug.node.useV3.description": "[Sperimentale] Controlla se delegare le configurazioni di avvio di tipo \"node\" all'estensione js-debug.",
- "debug.extensionHost.useV3.description": "[Sperimentale] Controlla se delegare le configurazioni di avvio di tipo \"extensionHost\" all'estensione js-debug.",
- "node.protocol.description": "Protocollo di debug di Node.js da usare.",
- "node.protocol.auto.description": "Prova a rilevare automaticamente il protocollo migliore, selezionando 'inspector' per avviare Node 8.0 o versione successiva",
- "node.protocol.inspector.description": "Nuovo protocollo supportato da Node.js a partire dalla versione 6.3",
- "node.protocol.legacy.description": "Protocollo precedente supportato dalle versioni di Node.js precedenti alla 8.0",
- "node.sourceMaps.description": "Usa i source map JavaScript (se esistenti).",
- "node.stopOnEntry.description": "Arresta automaticamente il programma dopo l'avvio.",
- "node.port.description": "Porta di debug a cui connettersi. Il valore predefinito è 5858.",
- "node.address.description": "Indirizzo TCP/IP del processo di cui eseguire il debug (solo per Node.js >= 5.0). L'impostazione predefinita è 'localhost'.",
- "node.timeout.description": "Numero di millisecondi in cui vengono effettuati i tentativi di connessione a Node.js. Il valore predefinito è 10000 ms.",
- "node.restart.description": "Riavvia la sessione dopo la chiusura di Node.js.",
- "node.localRoot.description": "Percorso della directory locale che contiene il programma.",
- "node.remoteRoot.description": "Percorso assoluto della directory remota che contiene il programma.",
- "node.showAsyncStacks.description": "Mostra le chiamate asincrone che hanno causato lo stack di chiamate corrente. Solo protocollo 'inspector'.",
- "node.sourceMapPathOverrides.description": "Set di mapping per riscrivere i percorsi dei file di origine dal percorso indicato nel mapping di origine al relativo percorso su disco.",
- "node.disableOptimisticBPs.description": "Non imposta punti di interruzione in un file finché non viene caricato un mapping di origine per tale file.",
- "node.launch.program.description": "Percorso assoluto del programma. Per ipotizzare il valore generato, esaminare package.json e i file aperti. Modificare questo attributo.",
- "node.launch.externalConsole.deprecationMessage": "L'attributo 'externalConsole' è deprecato. Usare 'console'.",
- "node.launch.console.description": "Indica dove avviare la destinazione di debug.",
- "node.launch.console.internalConsole.description": "console di debug di Visual Studio Code (che non include il supporto per leggere dati di input da un programma)",
- "node.launch.console.integratedTerminal.description": "terminale integrato di Visual Studio Code",
- "node.launch.console.externalTerminal.description": "Terminale esterno che può essere configurato tramite impostazioni utente",
- "node.launch.cwd.description": "Percorso assoluto della directory di lavoro del programma di cui eseguire il debug.",
- "node.launch.runtimeExecutable.description": "Runtime da usare. Corrisponde a un percorso assoluto o al nome di un runtime disponibile in PATH. Se viene omesso, si presuppone che sia `node`.",
- "node.launch.runtimeArgs.description": "Argomenti facoltativi passati all'eseguibile del runtime.",
- "node.launch.runtimeVersion.description": "Versione del runtime di `node` da usare. Richiede 'nvm'.",
- "node.launch.env.description": "Variabili di ambiente passate al programma. Con il valore `null` la variabile viene rimossa dall'ambiente.",
- "node.launch.envFile.description": "Percorso assoluto di un file che contiene le definizioni delle variabili di ambiente.",
- "node.launch.useWSL.description": "Usa il sottosistema Windows per Linux.",
- "node.launch.useWSL.deprecation": "'useWSL' è deprecato e il relativo supporto verrà rimosso. Usare l'estensione 'Remote - WSL'.",
- "node.launch.outputCapture.description": "Origine da cui acquisire i messaggi di output, ovvero dall'API di debug o dai flussi stdout/stderr.",
- "node.launch.autoAttachChildProcesses.description": "Collega automaticamente il debugger ad un nuovo processo figlio.",
- "node.launch.config.name": "Avvia",
- "node.attach.processId.description": "ID del processo a cui collegarsi.",
- "node.attach.config.name": "Collega",
- "node.processattach.config.name": "Collega a processo",
- "node.snippet.launch.label": "Node.js: avvia il programma",
- "node.snippet.launch.description": "Avvia un programma Node in modalità di debug",
- "node.snippet.npm.label": "Node.js: avvio tramite npm",
- "node.snippet.npm.description": "Avvia un programma Node tramite uno script `debug` di npm",
- "node.snippet.attach.label": "Node.js: collega",
- "node.snippet.attach.description": "Collega a un programma node in esecuzione",
- "node.snippet.remoteattach.label": "Node.js: collega a programma remoto",
- "node.snippet.remoteattach.description": "Collega alla porta di debug di un programma Node remoto",
- "node.snippet.attachProcess.label": "Node.js: collega al processo",
- "node.snippet.attachProcess.description": "Apre l'utilità di selezione processi per selezionare il processo Node a cui collegarsi",
- "node.snippet.nodemon.label": "Node.js: configurazione di nodemon",
- "node.snippet.nodemon.description": "Usa nodemon per riavviare una sessione di debug in seguito a modifiche dell'origine",
- "node.snippet.mocha.label": "Node.js: test Mocha",
- "node.snippet.mocha.description": "Esegue il debug di test Mocha",
- "node.snippet.yo.label": "Node.js: generatore yeoman",
- "node.snippet.yo.description": "Esegue il debug del generatore yeoman (per installare, eseguire `npm link` nella cartella del progetto)",
- "node.snippet.gulp.label": "Node.js: attività gulp",
- "node.snippet.gulp.description": "Esegue il debug dell'attività gulp (assicurarsi che nel progetto sia installata un'istanza locale di gulp)",
- "node.snippet.electron.label": "Node.js: Processo principale Electron",
- "node.snippet.electron.description": "Esegue il debug del processo principale Electron"
- },
- "dist/node/nodeDebug": {
- "setVariable.error": "Il valore dell'impostazione non è supportato",
- "exception.paused.promise.rejection": "In pausa sul rifiuto di Promise",
- "exception.promise.rejection.text": "Promise rifiutata ({0})",
- "exception.promise.rejection": "Promise rifiutata",
- "reason.description.step": "Sospeso in corrispondenza del passaggio",
- "reason.description.breakpoint": "Sospeso in corrispondenza di un punto di interruzione",
- "reason.description.exception": "Sospeso in corrispondenza dell'eccezione",
- "reason.description.user_request": "Sospeso in corrispondenza della richiesta dell'utente",
- "reason.description.entry": "Sospeso in corrispondenza della voce",
- "reason.description.debugger_statement": "Sospeso in corrispondenza dell'istruzione del debugger",
- "reason.description.restart": "Sospeso in corrispondenza della voce del frame",
- "exceptions.all": "Tutte le eccezioni",
- "exceptions.uncaught": "Eccezioni non rilevate",
- "exceptions.rejects": "Promise rifiutate",
- "VSND2028": "Il tipo di console '{0}' è sconosciuto.",
- "attribute.wls.not.exist": "Non è possibile trovare l'installazione del sottosistema Windows per Linux",
- "VSND2001": "Non è possibile trovare il runtime '{0}' in PATH. Assicurarsi che '{0}' sia installato.",
- "program.path.case.mismatch.warning": "La combinazione di minuscole/maiuscole usata nel percorso del programma è diversa rispetto al file su disco. È possibile che i punti di interruzione non vengano rilevati.",
- "VSND2002": "Non è possibile avviare il programma '{0}'. Per risolvere il problema, provare a configurare i source map.",
- "VSND2009": "Non è possibile avviare il programma '{0}' perché non è stata trovata la versione corrispondente di JavaScript.",
- "VSND2003": "Non è possibile avviare il programma '{0}'. Per risolvere il problema, provare a impostare l'attributo '{1}'.",
- "VSND2029": "Non è possibile caricare le variabili di ambiente dal file ({0}).",
- "node.console.title": "Console di debug nodo",
- "VSND2011": "Non è possibile avviare la destinazione di debug nel terminale ({0}).",
- "VSND2017": "Non è possibile avviare la destinazione di debug ({0}).",
- "VSND2010": "Non è possibile connettersi al processo di runtime (motivo: {0}).",
- "VSND2033": "Non è possibile connettersi al runtime. Assicurarsi che il runtime sia in modalità di debug 'legacy'.",
- "VSND2034": "Non è possibile connettersi al runtime tramite il protocollo 'legacy'. Provare a usare il protocollo 'inspector'.",
- "file.on.disk.changed": "La verifica non è riuscita perché il file nel disco è stato modificato. Riavviare la sessione di debug.",
- "VSND2019": "Il modulo interno {0} non è stato trovato.",
- "sourcemapping.fail.message": "Il punto di interruzione è stato ignorato perché il codice generato non è stato trovato. È possibile che si sia verificato un problema con il source map.",
- "VSND2022": "Non sono disponibili stack di chiamate perché il programma è stato sospeso all'esterno di JavaScript.",
- "VSND2023": "Non sono disponibili stack di chiamate.",
- "VSND2018": "Non sono disponibili stack di chiamate ({_command}: {_error}).",
- "origin.from.node": "contenuto di sola lettura di Node.js",
- "origin.from.remote.node": "contenuto di sola lettura di Node.js remoto",
- "origin.core.module": "modulo principale di sola lettura",
- "source.skipFiles": "ignorato a causa di 'skipFiles'",
- "source.smartstep": "ignorato a causa di 'smartStep'",
- "origin.inlined.source.map": "contenuto inline di sola lettura del source map",
- "anonymous.function": "(funzione anonima)",
- "scope.local.with.count": "Locali ({0} di {1})",
- "scope.unknown": "Tipo di ambito sconosciuto: {0}",
- "scope.exception": "Eccezione",
- "eval.not.available": "Non disponibile",
- "eval.invalid.expression": "espressione non valida: {0}",
- "source.not.found": "Non è stato possibile recuperare il contenuto.",
- "attribute.path.not.exist": "L'attributo '{0}' non esiste ('{1}').",
- "attribute.path.not.absolute": "L'attributo '{0}' non è assoluto ('{1}'). Per renderlo assoluto, provare ad aggiungere il prefisso '{2}'.",
- "more.information": "Altre informazioni",
- "VSND2015": "La richiesta '{_request}' è stata annullata perché Node.js non risponde.",
- "VSND2016": "Node.js non ha risposto alla richiesta '{_request}' in un intervallo di tempo appropriato.",
- "scope.global": "GLOBAL",
- "scope.local": "LOCAL",
- "scope.with": "con",
- "scope.closure": "Closure",
- "scope.catch": "Catch",
- "scope.block": "Blocco",
- "scope.script": "Script"
- },
- "dist/node/nodeV8Protocol": {
- "not.connected": "non connesso al runtime",
- "runtime.unresponsive": "annullato perché Node.js non risponde",
- "runtime.timeout": "timeout dopo {0} ms"
- },
- "dist/node/extension/autoAttach": {
- "process.with.pid.label": "Collegato automaticamente ({0})"
- },
- "dist/node/extension/cluster": {
- "child.process.with.pid.label": "Processo figlio {0}"
- },
- "dist/node/extension/configurationProvider": {
- "program.not.found.message": "Non è stato trovato alcun programma di cui eseguire il debug",
- "useWslDeprecationWarning.title": "L'attributo 'useWSL' è deprecato. In alternativa, usare l'estensione 'Remote WSL'. Per altre informazioni, fare clic [qui]({0}).",
- "useWslDeprecationWarning.doNotShowAgain": "Non visualizzare più questo messaggio",
- "NVS_HOME.not.found.message": "L'attributo 'runtimeVersion' richiede il version manager 'nvs' di Node.js.",
- "NVM_HOME.not.found.message": "L'attributo 'runtimeVersion' richiede il version manager 'nvm-windows' o 'nvs' di Node.js.",
- "NVM_DIR.not.found.message": "L'attributo 'runtimeVersion' richiede il version manager 'nvm' o 'nvs' di Node.js.",
- "runtime.version.not.found.message": "Versione di Node.js '{0}' non installata per '{1}'.",
- "node.launch.config.name": "Avvia programma",
- "mern.starter.explanation": "Configurazione di lancio creata per '{0}' progetto/i.",
- "program.guessed.from.package.json.explanation": "Configurazione di lancio creata sulla base di 'package.json'.",
- "outFiles.explanation": "Modificare i criteri GLOB nell'attributo 'outFiles' in modo che includano il codice JavaScript generato."
- },
- "dist/node/extension/processPicker": {
- "pid.error": "Collegamento a processo: non è possibile mettere il processo '{0}' in modalità di debug.",
- "process.id.error": "Collegamento a processo: '{0}' non sembra essere un ID processo.",
- "pickNodeProcess": "Selezionare il processo node.js a cui collegarsi",
- "process.picker.error": "Selezione del processo non riuscita ({0})",
- "process.id.port": "ID processo: {0}, porta di debug: {1}",
- "process.id.port.legacy": "ID processo: {0}, porta di debug: {1} (protocollo legacy)",
- "process.id.port.signal": "ID processo: {0}, porta di debug: {1} ({2})",
- "process.id.signal": "ID processo: {0} ({1})",
- "cannot.enable.debug.mode.error": "Collegamento a processo: non è possibile abilitare la modalità di debug per il processo '{0}' ({1})."
- },
- "dist/node/extension/protocolDetection": {
- "protocol.switch.legacy.detected": "Debug con protocollo legacy perché è stato rilevato.",
- "protocol.switch.unknown.error": "Debug con protocollo inspector perché non è stato possibile determinare la versione di Node.js ({0})",
- "protocol.switch.legacy.version": "Debug con protocollo legacy perché è stato rilevato Node.js {0} ."
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-it/translations/extensions/vscode-node-debug2.i18n.json b/i18n/vscode-language-pack-it/translations/extensions/vscode-node-debug2.i18n.json
deleted file mode 100644
index 996608c6e0..0000000000
--- a/i18n/vscode-language-pack-it/translations/extensions/vscode-node-debug2.i18n.json
+++ /dev/null
@@ -1,80 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "package": {
- "extension.description": "Supporto per il debug Node.js",
- "node.label": "Node.js 6.3 o versione successiva tramite Inspector Protocol",
- "node.sourceMaps.description": "Usa i source map JavaScript (se esistenti).",
- "outDir.deprecationMessage": "L'attributo 'outDir' è deprecato. Usare 'outFiles'.",
- "node.outFiles.description": "Se sono abilitati i source map, questi criteri GLOB specificano i file JavaScript generati. Se un criterio inizia con `!`, i file sono esclusi. Se non viene specificato, si presuppone che il codice generato si trovi nella stessa directory dell'origine.",
- "node.stopOnEntry.description": "Arresta automaticamente il programma dopo l'avvio.",
- "node.port.description": "Porta di debug a cui connettersi. Il valore predefinito è 9229.",
- "node.address.description": "Indirizzo TCP/IP della porta di debug. Il valore predefinito è 'localhost'.",
- "node.timeout.description": "Numero di millisecondi in cui vengono effettuati i tentativi di connessione a Node.js. Il valore predefinito è 10000 ms.",
- "node.smartStep.description": "Esegue automaticamente un'istruzione alla volta del codice generato di cui non è possibile eseguire il mapping all'origine iniziale.",
- "node.enableSourceMapCaching.description": "Quando i mapping di origine vengono scaricati da un URL, li memorizza nella cache su disco.",
- "node.diagnosticLogging.description": "Quando è true, l'adattatore registra le informazioni di diagnostica nella console",
- "node.diagnosticLogging.deprecationMessage": "'diagnosticLogging' è deprecato. In alternativa, usare 'trace'.",
- "node.verboseDiagnosticLogging.description": "Quando è true, l'adattatore registra tutto il traffico con il client e la destinazione (oltre alle informazioni registrate da 'diagnosticLogging')",
- "node.verboseDiagnosticLogging.deprecationMessage": "'verboseDiagnosticLogging' è deprecato. In alternativa, usare 'trace'.",
- "node.trace.description": "Se è 'true', il debugger registrerà informazioni di analisi in un file. Se è 'verbose', mostrerà anche i log nella console.",
- "node.sourceMapPathOverrides.description": "Set di mapping per riscrivere i percorsi dei file di origine dalle posizioni indicate nel mapping di origine alle relative posizioni sul disco. Per dettagli, vedere il file README.",
- "node.skipFiles.description": "Matrice di nomi di file o di cartelle o criteri GLOB da ignorare durante il debug.",
- "node.restart.description": "Riavvia la sessione dopo la chiusura di Node.js.",
- "node.showAsyncStacks.description": "Mostra le chiamate asincrone che hanno causato lo stack di chiamate corrente.",
- "node.disableOptimisticBPs.description": "Non imposta punti di interruzione in un file finché non viene caricato un mapping di origine per tale file.",
- "node.launch.program.description": "Percorso assoluto del programma.",
- "node.launch.console.description": "Indica dove avviare la destinazione di debug: console interna, terminale integrato o terminale esterno.",
- "node.launch.args.description": "Argomenti della riga di comando passati al programma.",
- "node.launch.cwd.description": "Percorso assoluto della directory di lavoro del programma di cui eseguire il debug.",
- "node.launch.runtimeExecutable.description": "Runtime da usare. Corrisponde a un percorso assoluto o al nome di un runtime disponibile in PATH. Se viene omesso, si presuppone che sia `node`.",
- "node.launch.runtimeArgs.description": "Argomenti facoltativi passati all'eseguibile del runtime.",
- "node.launch.env.description": "Variabili di ambiente passate al programma. Con il valore `null` la variabile viene rimossa dall'ambiente.",
- "node.launch.envFile.description": "Percorso assoluto di un file che contiene le definizioni delle variabili di ambiente.",
- "node.launch.outputCapture.description": "Origine da cui acquisire i messaggi di output, ovvero dall'API di debug o dai flussi stdout/stderr.",
- "node.launch.config.name": "Avvia",
- "node.attach.processId.description": "ID del processo a cui collegarsi.",
- "node.attach.localRoot.description": "Radice di origine locale che corrisponde a 'remoteRoot'.",
- "node.attach.remoteRoot.description": "Radice di origine dell'host remoto.",
- "node.attach.config.name": "Collega",
- "node.processattach.config.name": "Collega a processo",
- "toggle.skipping.this.file": "Attiva/disattiva Ignora questo file",
- "extensionHost.label": "Sviluppo di estensioni per VS Code",
- "extensionHost.launch.runtimeExecutable.description": "Percorso assoluto di VS Code.",
- "extensionHost.launch.stopOnEntry.description": "Arresta automaticamente l'host dell'estensione dopo l'avvio.",
- "extensionHost.launch.env.description": "Variabili di ambiente passate all'host dell'estensione.",
- "extensionHost.snippet.launch.label": "Sviluppo di estensioni per VS Code",
- "extensionHost.snippet.launch.description": "Avvia un'estensione VS Code in modalità di debug",
- "extensionHost.launch.config.name": "Avvia estensione"
- },
- "out/src/errors": {
- "VSND2001": "Non è possibile trovare il runtime '{0}' in PATH. '{0}' è installato?",
- "VSND2011": "Non è possibile avviare la destinazione di debug nel terminale ({0}).",
- "VSND2017": "Non è possibile avviare la destinazione di debug ({0}).",
- "VSND2035": "Non è possibile eseguire il debug dell'estensione ({0}).",
- "VSND2028": "Il tipo di console '{0}' è sconosciuto.",
- "VSND2002": "Non è possibile avviare il programma '{0}'. Per risolvere il problema, provare a configurare i source map.",
- "VSND2003": "Non è possibile avviare il programma '{0}'. Per risolvere il problema, provare a impostare l'attributo '{1}'.",
- "VSND2009": "Non è possibile avviare il programma '{0}' perché non è stata trovata la versione corrispondente di JavaScript.",
- "VSND2029": "Non è possibile caricare le variabili di ambiente dal file ({0})."
- },
- "out/src/nodeDebugAdapter": {
- "attribute.wsl.not.exist": "Non è possibile trovare l'installazione del sottosistema Windows per Linux.",
- "program.path.case.mismatch.warning": "La combinazione di minuscole/maiuscole usata nel percorso del programma è diversa rispetto al file su disco. È possibile che i punti di interruzione non vengano rilevati.",
- "node.console.title": "Console di debug di Node",
- "attribute.path.not.exist": "L'attributo '{0}' non esiste ('{1}').",
- "attribute.path.not.absolute": "L'attributo '{0}' non è assoluto ('{1}'). Per renderlo assoluto, provare ad aggiungere il prefisso '{2}'.",
- "VSND2001": "Non è possibile trovare il runtime '{0}' in PATH. Assicurarsi che '{0}' sia installato.",
- "more.information": "Altre informazioni",
- "origin.from.node": "contenuto di sola lettura di Node.js",
- "origin.core.module": "modulo principale di sola lettura"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-it/translations/extensions/vscode.bat.i18n.json b/i18n/vscode-language-pack-it/translations/extensions/vscode.bat.i18n.json
index 3d996854bc..93c0691739 100644
--- a/i18n/vscode-language-pack-it/translations/extensions/vscode.bat.i18n.json
+++ b/i18n/vscode-language-pack-it/translations/extensions/vscode.bat.i18n.json
@@ -9,8 +9,8 @@
"version": "1.0.0",
"contents": {
"package": {
- "displayName": "Nozioni di base sul linguaggio Windows Bat",
- "description": "Offre i frammenti, la sottolineatura delle sintassi, la corrispondenza delle parentesi e la riduzione del codice nei file Windows."
+ "description": "Offre i frammenti, la sottolineatura delle sintassi, la corrispondenza delle parentesi e la riduzione del codice nei file Windows.",
+ "displayName": "Nozioni di base sul linguaggio Windows Bat"
}
}
}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-it/translations/extensions/notebook-renderers.i18n.json b/i18n/vscode-language-pack-it/translations/extensions/vscode.builtin-notebook-renderers.i18n.json
similarity index 100%
rename from i18n/vscode-language-pack-it/translations/extensions/notebook-renderers.i18n.json
rename to i18n/vscode-language-pack-it/translations/extensions/vscode.builtin-notebook-renderers.i18n.json
diff --git a/i18n/vscode-language-pack-it/translations/extensions/vscode.clojure.i18n.json b/i18n/vscode-language-pack-it/translations/extensions/vscode.clojure.i18n.json
index 4552da76c5..b2f6474e67 100644
--- a/i18n/vscode-language-pack-it/translations/extensions/vscode.clojure.i18n.json
+++ b/i18n/vscode-language-pack-it/translations/extensions/vscode.clojure.i18n.json
@@ -9,8 +9,8 @@
"version": "1.0.0",
"contents": {
"package": {
- "displayName": "Nozioni di base sul linguaggio Clojure",
- "description": "Offre la sottolineatura delle sintassi e il match delle parentesi nei file Clojure."
+ "description": "Offre la sottolineatura delle sintassi e il match delle parentesi nei file Clojure.",
+ "displayName": "Nozioni di base sul linguaggio Clojure"
}
}
}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-it/translations/extensions/vscode.coffeescript.i18n.json b/i18n/vscode-language-pack-it/translations/extensions/vscode.coffeescript.i18n.json
index 694fa15a77..1d2d67cba5 100644
--- a/i18n/vscode-language-pack-it/translations/extensions/vscode.coffeescript.i18n.json
+++ b/i18n/vscode-language-pack-it/translations/extensions/vscode.coffeescript.i18n.json
@@ -9,8 +9,8 @@
"version": "1.0.0",
"contents": {
"package": {
- "displayName": "Nozioni di base sul linguaggio CoffeeScript",
- "description": "Offre i frammenti, la sottolineatura delle sintassi, la corrispondenza delle parentesi e la riduzione del codice nei file CoffeeScript."
+ "description": "Offre i frammenti, la sottolineatura delle sintassi, la corrispondenza delle parentesi e la riduzione del codice nei file CoffeeScript.",
+ "displayName": "Nozioni di base sul linguaggio CoffeeScript"
}
}
}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-it/translations/extensions/vscode.configuration-editing.i18n.json b/i18n/vscode-language-pack-it/translations/extensions/vscode.configuration-editing.i18n.json
new file mode 100644
index 0000000000..6f232b8d64
--- /dev/null
+++ b/i18n/vscode-language-pack-it/translations/extensions/vscode.configuration-editing.i18n.json
@@ -0,0 +1,77 @@
+{
+ "": [
+ "--------------------------------------------------------------------------------------------",
+ "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."
+ ],
+ "version": "1.0.0",
+ "contents": {
+ "bundle": {
+ "Example": "esempio",
+ "Files by Extension": "File in base all'estensione",
+ "Files with Extension": "File con estensione",
+ "Files with Multiple Extensions": "File con più estensioni",
+ "Files with Path": "File con percorso",
+ "Files with Siblings by Name": "File con elementi di pari livello in base al nome",
+ "Folder by Name (Any Location)": "Cartella in base al nome (qualsiasi percorso)",
+ "Folder by Name (Top Level)": "Cartella in base al nome (primo livello)",
+ "Folders with Multiple Names (Top Level)": "Cartella con più nomi (primo livello)",
+ "GitHub": "GitHub",
+ "Map all files matching the absolute path glob pattern in their path to the language with the given identifier.": "Esegue il mapping di tutti i file il cui percorso assoluto corrisponde al criterio GLOB alla lingua con l'identificatore specificato.",
+ "Map all files matching the glob pattern in their filename to the language with the given identifier.": "Esegue il mapping di tutti i file il cui nome file corrisponde al criterio GLOB alla lingua con l'identificatore specificato.",
+ "Match a folder with a specific name in any location.": "Trova una cartella con un nome specifico in qualsiasi percorso.",
+ "Match a top level folder with a specific name.": "Trova una cartella di primo livello con un nome specifico.",
+ "Match all files of a specific file extension.": "Trova tutti i file di un'estensione di file specifica.",
+ "Match all files with any of the file extensions.": "Trova tutti i file con qualsiasi estensione di file.",
+ "Match files that have siblings with the same name but a different extension.": "Trova file con elementi di pari livello e nome identico ma estensione diversa.",
+ "Match multiple top level folders.": "Trova più cartelle di primo livello.",
+ "The character used by the operating system to separate components in file paths. Is also aliased to '/'.": "Carattere utilizzato dal sistema operativo per separare i componenti nei percorsi dei file. Ha anche l'alias '/'.",
+ "The current opened file": "File attualmente aperto",
+ "The current opened file relative to ${workspaceFolder}": "File attualmente aperto relativo a ${workspaceFolder}",
+ "The current opened file workspace folder name without any slashes (/)": "Nome della cartella dell'area di lavoro file attualmente aperta senza barre (/)",
+ "The current opened file's basename": "Nome di base del file attualmente aperto",
+ "The current opened file's basename with no file extension": "Nome di base del file attualmente aperto senza estensione",
+ "The current opened file's dirname": "Nome della directory del file attualmente aperto",
+ "The current opened file's dirname relative to ${workspaceFolder}": "Nome di directory del file attualmente aperto relativo a ${workspaceFolder}",
+ "The current opened file's extension": "Estensione del file attualmente aperto",
+ "The current opened file's folder name": "Nome della cartella del file aperto attualmente",
+ "The current selected line number in the active file": "Numero di riga corrente selezionato nel file attivo",
+ "The current selected text in the active file": "Testo selezionato nel file attivo",
+ "The file extension of the editor (e.g. txt)": "L'estensione di file dell'editor (ad es. txt)",
+ "The file name of the editor without its directory or extension (e.g. myFile)": "Il nome file dell'editor senza la relativa directory o estensione (ad es. myFile)",
+ "The name of the default build task. If there is not a single default build task then a quick pick is shown to choose the build task.": "Nome dell'attività di compilazione predefinita. Se non è presente un'unica attività di compilazione predefinita, viene mostrata una selezione rapida per consentire la selezione dell'attività di compilazione.",
+ "The name of the folder opened in VS Code without any slashes (/)": "Nome della cartella aperta In VS Code senza barre di separazione (/)",
+ "The nth parent folder name of the editor": "Il nome n della cartella padre dell'editor",
+ "The parent folder name of the editor (e.g. myFileFolder)": "Il nome della cartella padre dell'editor (ad es. myFileFolder)",
+ "The path of the folder opened in VS Code": "Percorso della cartella aperta in VS Code",
+ "The path where an extension is installed.": "Percorso in cui è installata un'estensione.",
+ "The task runner's current working directory on startup": "Directory di lavoro corrente dello strumento di esecuzione attività all'avvio",
+ "Use the language of the currently active text editor if any": "Usa la lingua dell'editor di testo attualmente attivo se presente",
+ "a conditional separator (' - ') that only shows when surrounded by variables with values": "un separatore condizionale (' - ') visualizzato solo se circondato da variabili con valori",
+ "an indicator for when the active editor has unsaved changes": "un indicatore per il momento in cui l'editor attivo contiene modifiche non salvate",
+ "e.g. SSH": "ad esempio SSH",
+ "e.g. VS Code": "ad esempio VS Code",
+ "file path of the workspace (e.g. /Users/Development/myWorkspace)": "percorso dell'Area di lavoro (ad es. /Users/Development/myWorkspace)",
+ "file path of the workspace folder the file is contained in (e.g. /Users/Development/myFolder)": "percorso della cartella dell'area di lavoro in cui è contenuto il file (ad es. /Users/Development/myFolder)",
+ "gist": "gist",
+ "name of the workspace folder the file is contained in (e.g. myFolder)": "nome della cartella dell'area di lavoro in cui è contenuto il file (ad es. myFolder)",
+ "name of the workspace with optional remote name and workspace indicator if applicable (e.g. myFolder, myRemoteFolder [SSH] or myWorkspace (Workspace))": "nome dell'area di lavoro con il nome remoto facoltativo e l'indicatore dell'area di lavoro, se applicabile, (ad esempio cartella, cartella personale [SSH] o area di lavoro (area di lavoro))",
+ "shortened name of the workspace without suffixes (e.g. myFolder or myWorkspace)": "nome abbreviato dell'area di lavoro senza suffissi (ad esempio myFolder o myWorkspace)",
+ "the file name (e.g. myFile.txt)": "il nome del file (ad esempio MyFile.txt)",
+ "the full path of the file (e.g. /Users/Development/myFolder/myFileFolder/myFile.txt)": "percorso completo del file (ad esempio /Utenti/Sviluppo/Cartella/CartellaFile/File.txt)",
+ "the full path of the folder the file is contained in (e.g. /Users/Development/myFolder/myFileFolder)": "percorso completo della cartella che contiene il file (ad esempio /Utenti/Sviluppo/Cartella/CartellaFile)",
+ "the name of the active branch in the active repository (e.g. main)": "il nome del ramo attivo nel repository attivo (ad esempio, main)",
+ "the name of the active repository (e.g. vscode)": "il nome del repository attivo (ad esempio, vscode)",
+ "the name of the folder the file is contained in (e.g. myFileFolder)": "nome della cartella in cui si trova il file (ad esempio CartellaFile)",
+ "the path of the file relative to the workspace folder (e.g. myFolder/myFileFolder/myFile.txt)": "percorso del file relativo alla cartella dell'area di lavoro (ad esempio Cartella/CartellaFile/File.txt)",
+ "the path of the folder the file is contained in, relative to the workspace folder (e.g. myFolder/myFileFolder)": "percorso della cartella che contiene il file, relativo alla cartella dell'area di lavoro (ad esempio Cartella/CartellaFile)",
+ "the state of the active editor (e.g. modified).": "lo stato dell'editor attivo (ad esempio modificato)."
+ },
+ "package": {
+ "description": "Offre funzionalità (IntelliSense avanzato, correzione automatica) nei file di configurazione come quelli degli elementi consigliati per impostazioni, avvio ed estensioni.",
+ "displayName": "Modifica della configurazione"
+ }
+ }
+}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-it/translations/extensions/vscode.cpp.i18n.json b/i18n/vscode-language-pack-it/translations/extensions/vscode.cpp.i18n.json
index 929c28d04e..cf0b979601 100644
--- a/i18n/vscode-language-pack-it/translations/extensions/vscode.cpp.i18n.json
+++ b/i18n/vscode-language-pack-it/translations/extensions/vscode.cpp.i18n.json
@@ -9,8 +9,8 @@
"version": "1.0.0",
"contents": {
"package": {
- "displayName": "Nozioni fondamentali del linguaggio C/C++",
- "description": "Offre i frammenti, la sottolineatura delle sintassi, la corrispondenza delle parentesi e la riduzione del codice nei file C/C++."
+ "description": "Offre i frammenti, la sottolineatura delle sintassi, la corrispondenza delle parentesi e la riduzione del codice nei file C/C++.",
+ "displayName": "Nozioni fondamentali del linguaggio C/C++"
}
}
}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-it/translations/extensions/vscode.csharp.i18n.json b/i18n/vscode-language-pack-it/translations/extensions/vscode.csharp.i18n.json
index 392c5d2606..cc0467d49b 100644
--- a/i18n/vscode-language-pack-it/translations/extensions/vscode.csharp.i18n.json
+++ b/i18n/vscode-language-pack-it/translations/extensions/vscode.csharp.i18n.json
@@ -9,8 +9,8 @@
"version": "1.0.0",
"contents": {
"package": {
- "displayName": "Nozioni di base sul linguaggio C#",
- "description": "Offre i frammenti, la sottolineatura delle sintassi, la corrispondenza delle parentesi e la riduzione del codice nei file C#."
+ "description": "Offre i frammenti, la sottolineatura delle sintassi, la corrispondenza delle parentesi e la riduzione del codice nei file C#.",
+ "displayName": "Nozioni di base sul linguaggio C#"
}
}
}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-it/translations/extensions/vscode.css-language-features.i18n.json b/i18n/vscode-language-pack-it/translations/extensions/vscode.css-language-features.i18n.json
new file mode 100644
index 0000000000..0a93734b47
--- /dev/null
+++ b/i18n/vscode-language-pack-it/translations/extensions/vscode.css-language-features.i18n.json
@@ -0,0 +1,368 @@
+{
+ "": [
+ "--------------------------------------------------------------------------------------------",
+ "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."
+ ],
+ "version": "1.0.0",
+ "contents": {
+ "bundle": {
+ "\"store\" a boolean test for later evaluation in a guard or if().": "\"memorizzare\" un test booleano per una valutazione successiva in un guard o if().",
+ "'from' expected": "Previsto 'from'",
+ "'in' expected": "È previsto 'in'",
+ "'through' or 'to' expected": "previsto 'through' o 'to'",
+ "'{0}'": "\\'{0}\\'",
+ "( expected": "È previsto il carattere (",
+ ") expected": "È previsto il carattere )",
+ "": "",
+ "@font-face": "@font-face",
+ "@font-face rule must define 'src' and 'font-family' properties": "La regola `@font-face` deve definire le proprietà `src` e `font-family`",
+ "@keyframes {0}": "@keyframes {0}",
+ "A list of properties that are not validated against the `unknownProperties` rule.": "Elenco di proprietà che non vengono convalidate in base alla regola `unknownProperties`.",
+ "Adds quotes to a string.": "Aggiunge le virgolette a una stringa.",
+ "Also define the standard property '{0}' for compatibility": "Definire anche la proprietà standard '{0}' per la compatibilità",
+ "Always define standard rule '@keyframes' when defining keyframes.": "Definire sempre la regola standard '@keyframes' quando si definiscono i fotogrammi chiave.",
+ "Always include all vendor specific properties: Missing: {0}": "Includere sempre tutte le proprietà specifiche del fornitore: mancanti: {0}",
+ "Always include all vendor specific rules: Missing: {0}": "Includere sempre tutte le regole specifiche del fornitore: mancante: {0}",
+ "Appends a single value onto the end of a list.": "Aggiunge un singolo valore alla fine di un elenco.",
+ "Appends selectors to one another without spaces in between.": "Aggiunge selettori l'uno all'altro senza spazi intermedi.",
+ "Avoid using !important. It is an indication that the specificity of the entire CSS has gotten out of control and needs to be refactored.": "Evitare di usare !important perché indica che la specificità dell'intero codice CSS non è più controllabile ed è necessario effettuarne il refactoring.",
+ "Avoid using 'float'. Floats lead to fragile CSS that is easy to break if one aspect of the layout changes.": "Evitare di usare `float`. Con gli elementi float si ottiene codice CSS che causa facilmente interruzioni in caso di modifica di un aspetto del layout.",
+ "CSS Language Server": "Server di linguaggio CSS",
+ "CSS fix is outdated and can't be applied to the document.": "La correzione CSS non è aggiornata e non può essere applicata al documento.",
+ "Causes one or more rules to be emitted at the root of the document.": "Determina l'emissione di una o più regole nella radice del documento.",
+ "Changes one or more properties of a color.": "Modifica una o più proprietà di un colore.",
+ "Changes the alpha component for a color.": "Modifica il componente alfa per un colore.",
+ "Changes the hue of a color.": "Cambia la tonalità di un colore.",
+ "Combines several lists into a single multidimensional list.": "Combina diversi elenchi in un unico elenco multidimensionale.",
+ "Converts a color into the format understood by IE filters.": "Converte un colore nel formato riconosciuto dai filtri di Internet Explorer.",
+ "Converts a color to grayscale.": "Converte un colore in gradazioni di grigio.",
+ "Converts a string to lower case.": "Converte una stringa in lettere minuscole.",
+ "Converts a string to upper case.": "Converte una stringa in maiuscolo.",
+ "Converts a unitless number to a percentage.": "Converte un numero senza unità in una percentuale.",
+ "Creates a Color from hue, saturation, and lightness values.": "Crea un colore da valori di tonalità, saturazione e luminosità.",
+ "Creates a Color from hue, saturation, lightness, and alpha values.": "Crea un colore da tonalità, saturazione, luminosità e valori alfa.",
+ "Creates a Color from hue, white, and black values.": "Crea un colore dai valori di tonalità, bianco e nero.",
+ "Creates a Color from lightness, a, and b values.": "Crea un colore dai valori di luminosità, a e b.",
+ "Creates a Color from lightness, chroma, and hue values.": "Crea un colore dai valori di luminosità, crominanza e tonalità.",
+ "Creates a Color from red, green, and blue values.": "Crea un colore dai valori rosso, verde e blu.",
+ "Creates a Color from red, green, blue, and alpha values.": "Crea un colore dai valori rosso, verde, blu e alfa.",
+ "Creates a Color from the hue, saturation, and lightness values of another Color.": "Crea un colore dai valori di tonalità, saturazione e luminosità di un altro colore.",
+ "Creates a Color from the hue, white, and black values of another Color.": "Crea un colore dai valori di tonalità, bianco e nero di un altro colore.",
+ "Creates a Color from the lightness, a, and b values of another Color.": "Crea un colore dai valori di luminosità, a e b di un altro colore.",
+ "Creates a Color from the lightness, chroma, and hue values of another Color.": "Crea un colore dai valori di luminosità, crominanza e tonalità di un altro colore.",
+ "Creates a Color from the red, green, and blue values of another Color.": "Crea un colore dai valori di rosso, verde e blu di un altro colore.",
+ "Creates a Color in a specific color space from red, green, and blue values.": "Crea un colore in uno spazio colore specifico a partire dai valori di rosso, verde e blu.",
+ "Creates a Color in a specific color space from the red, green, and blue values of another Color.": "Crea un colore in uno spazio colore specifico dai valori di rosso, verde e blu di un altro colore.",
+ "Defines complex operations that can be re-used throughout stylesheets.": "Definisce operazioni complesse che possono essere riutilizzate in tutti i fogli di stile.",
+ "Defines styles that can be re-used throughout the stylesheet with `@include`.": "Definisce gli stili che possono essere riutilizzati nel foglio di stile con '@include'.",
+ "Do not use duplicate style definitions": "Non usare definizioni di stile duplicate",
+ "Do not use empty rulesets": "Non usare set di regole vuoti",
+ "Do not use width or height when using padding or border": "Non usare width o height con padding o border",
+ "Dynamically calls a Sass function.": "Chiama dinamicamente una funzione Sass.",
+ "Each loop that sets `$var` to each item in the list or map, then outputs the styles it contains using that value of `$var`.": "Ogni ciclo che imposta `$var` su ogni elemento dell'elenco o della mappa, quindi restituisce gli stili che contiene usando il valore `$var`.",
+ "Exposes the details of Sass’s inner workings.": "Espone i dettagli delle operazioni interne di Sass.",
+ "Extends $extendee with $extender within $selector.": "Estende $extendee con $extender all'interno di $selector.",
+ "Extracts a substring from $string.": "Estrae una sottostringa da $string.",
+ "Failed to apply CSS fix to the document. Please consider opening an issue with steps to reproduce.": "Non è stato possibile applicare la correzione CSS al documento. Provare ad aprire un problema con i passaggi da riprodurre.",
+ "Finds the maximum of several numbers.": "Trova il numero massimo di diversi numeri.",
+ "Finds the minimum of several numbers.": "Trova il numero minimo di diversi numeri.",
+ "Fluidly scales one or more properties of a color.": "Ridimensiona in modo fluido una o più proprietà di un colore.",
+ "Folding Region End": "Fine dell'area di riduzione del codice",
+ "Folding Region Start": "Inizio area di riduzione del codice",
+ "For loop that repeatedly outputs a set of styles for each `$var` in the `from/through` or `from/to` clause.": "Ciclo For che restituisce ripetutamente un set di stili per ogni '$var' nella clausola 'from/through' o 'from/to'.",
+ "Generates new colors based on existing ones, making it easy to build color themes.": "Genera nuovi colori in base a quelli esistenti, semplificando la creazione di temi colore.",
+ "Gets the blue component of a color.": "Ottiene il componente blu di un colore.",
+ "Gets the green component of a color.": "Ottiene il componente verde di un colore.",
+ "Gets the hue component of a color.": "Ottiene il componente tonalità di un colore.",
+ "Gets the lightness component of a color.": "Ottiene il componente di luminosità di un colore.",
+ "Gets the opacity component of a color.": "Ottiene il componente di opacità di un colore.",
+ "Gets the red component of a color.": "Ottiene il componente rosso di un colore.",
+ "Gets the saturation component of a color.": "Ottiene il componente di saturazione di un colore.",
+ "Hex colors must consist of three, four, six or eight hex numbers": "I colori esadecimali devono essere costituiti da tre, quattro, sei o otto numeri esadecimali",
+ "IE hacks are only necessary when supporting IE7 and older": "Gli hack IE sono necessari solo per il supporto di IE7 e versioni precedenti",
+ "Import statements do not load in parallel": "Le istruzioni Import non vengono caricate in parallelo",
+ "Includes the body if the expression does not evaluate to `false` or `null`.": "Include il corpo se l'espressione non restituisce 'false' o 'null'.",
+ "Includes the styles defined by another mixin into the current rule.": "Include gli stili definiti da un altro mixin nella regola corrente.",
+ "Increases or decreases one or more components of a color.": "Aumenta o riduce uno o più componenti di un colore.",
+ "Inherits the styles of another selector.": "Eredita gli stili di un altro selettore.",
+ "Insert url() Function": "Inserisci funzione url()",
+ "Insert url() Functions": "Inserisci funzioni url()",
+ "Inserts $insert into $string at $index.": "Inserisce $insert in $string a $index.",
+ "Invalid number of parameters": "Numero di parametri non valido",
+ "Joins together two lists into one.": "Unisce due elenchi in uno.",
+ "Lets you access and modify values in lists.": "Consente di accedere e modificare i valori negli elenchi.",
+ "Loads a Sass stylesheet and makes its mixins, functions, and variables available when this stylesheet is loaded with the @use rule.": "Carica un foglio di stile Sass e rende disponibili mixin, funzioni e variabili quando il foglio di stile viene caricato con la regola @use.",
+ "Loads mixins, functions, and variables from other Sass stylesheets as 'modules', and combines CSS from multiple stylesheets together.": "Carica mixins, funzioni e variabili da altri fogli di stile Sass come \"moduli\" e combina CSS da più fogli di stile.",
+ "Makes a color darker.": "Rende un colore più scuro.",
+ "Makes a color less saturated.": "Rende un colore meno saturo.",
+ "Makes a color lighter.": "Rende un colore più chiaro.",
+ "Makes a color more opaque.": "Rende un colore più opaco.",
+ "Makes a color more saturated.": "Rende un colore più saturo.",
+ "Makes a color more transparent.": "Rende un colore più trasparente.",
+ "Makes it easy to combine, search, or split apart strings.": "Consente facilmente di combinare, cercare o dividere le stringhe.",
+ "Makes it possible to look up the value associated with a key in a map, and much more.": "Consente di cercare il valore associato a una chiave in una mappa e molto altro ancora.",
+ "Merges two maps together into a new map.": "Unisce due mappe in una nuova mappa.",
+ "Mix two colors together in a polar color space.": "Combina due colori in uno spazio colore polare.",
+ "Mix two colors together in a rectangular color space.": "Combina due colori in uno spazio colore rettangolare.",
+ "Mixes two colors together.": "Combina due colori.",
+ "Nests selector beneath one another like they would be nested in the stylesheet.": "Annida i selettori uno sotto l'altro come se fossero annidati nel foglio di stile.",
+ "No unit for zero needed": "Non è necessaria alcuna unità per lo zero",
+ "Parses a selector into the format returned by &.": "Analizza un selettore nel formato restituito da &.",
+ "Prints the value of an expression to the standard error output stream. Useful for debugging complicated Sass files.": "Stampa il valore di un'espressione nel flusso di output dell'errore standard. Utile per il debug di file Sass complicati.",
+ "Prints the value of an expression to the standard error output stream. Useful for libraries that need to warn users of deprecations or recovering from minor mixin usage mistakes. Warnings can be turned off with the `--quiet` command-line option or the `:quiet` Sass option.": "Stampa il valore di un'espressione nel flusso di output degli errori standard. Utile per le librerie che devono avvisare gli utenti della deprecazione o del ripristino da errori di utilizzo di mixin secondari. Gli avvisi possono essere disattivati con l'opzione della riga di comando '--quiet' o l'opzione Sass ':quiet'.",
+ "Property is ignored due to the display.": "La proprietà viene ignorata a causa della visualizzazione.",
+ "Property is ignored due to the display. With 'display: block', vertical-align should not be used.": "Proprietà ignorata a causa della visualizzazione. Con 'display: block', non usare l'allineamento verticale.",
+ "Provides access to Sass’s powerful selector engine.": "Fornisce l'accesso al motore di selezione avanzato di Sass.",
+ "Provides functions that operate on numbers.": "Fornisce funzioni che operano sui numeri.",
+ "Removes quotes from a string.": "Rimuove le virgolette da una stringa.",
+ "Rename to '{0}'": "Rinomina in '{0}'",
+ "Replaces $original with $replacement within $selector.": "Sostituisce $original con $replacement all'interno di $selector.",
+ "Replaces the nth item in a list.": "Sostituisce l'elemento n-esimo di un elenco.",
+ "Returns a list of all keys in a map.": "Restituisce un elenco di tutte le chiavi in una mappa.",
+ "Returns a list of all values in a map.": "Restituisce un elenco di tutti i valori in una mappa.",
+ "Returns a new map with keys removed.": "Restituisce una nuova mappa con le chiavi rimosse.",
+ "Returns a random number.": "Restituisce un numero casuale.",
+ "Returns a specific item in a list.": "Restituisce un elemento specifico in un elenco.",
+ "Returns the absolute value of a number.": "Restituisce il valore assoluto di un numero.",
+ "Returns the complement of a color.": "Restituisce il complementare di un colore.",
+ "Returns the index of the first occurance of $substring in $string.": "Restituisce l'indice della prima occorrenza di $substring in $string.",
+ "Returns the inverse of a color.": "Restituisce l'inverso di un colore.",
+ "Returns the keywords passed to a function that takes variable arguments.": "Restituisce le parole chiave passate a una funzione che accetta argomenti variabili.",
+ "Returns the length of a list.": "Restituisce la lunghezza di un elenco.",
+ "Returns the number of characters in a string.": "Restituisce il numero di caratteri in una stringa.",
+ "Returns the position of a value within a list.": "Restituisce la posizione di un valore all'interno di un elenco.",
+ "Returns the separator of a list.": "Restituisce il separatore di un elenco.",
+ "Returns the simple selectors that comprise a compound selector.": "Restituisce i selettori semplici che costituiscono un selettore composto.",
+ "Returns the string representation of a value as it would be represented in Sass.": "Restituisce la rappresentazione in stringa di un valore come verrebbe rappresentato in Sass.",
+ "Returns the type of a value.": "Restituisce il tipo di un valore.",
+ "Returns the unit(s) associated with a number.": "Restituisce le unità associate a un numero.",
+ "Returns the value in a map associated with a given key.": "Restituisce il valore in una mappa associata a una chiave specificata.",
+ "Returns whether $super matches all the elements $sub does, and possibly more.": "Restituisce un valore che indica se $super corrisponde a tutti gli elementi $sub e ad altri elementi.",
+ "Returns whether a feature exists in the current Sass runtime.": "Restituisce un valore che indica se una funzionalità esiste nel runtime Sass corrente.",
+ "Returns whether a function with the given name exists.": "Restituisce un valore che indica se esiste una funzione con il nome specificato.",
+ "Returns whether a map has a value associated with a given key.": "Restituisce un valore che indica se a una mappa è associato un valore a una determinata chiave.",
+ "Returns whether a mixin with the given name exists.": "Restituisce un valore che indica se esiste un mixin con il nome specificato.",
+ "Returns whether a number has units.": "Restituisce un valore che indica se un numero contiene unità.",
+ "Returns whether a variable with the given name exists in the current scope.": "Restituisce un valore che indica se nell'ambito corrente esiste una variabile con il nome specificato.",
+ "Returns whether a variable with the given name exists in the global scope.": "Restituisce un valore che indica se nell'ambito globale esiste una variabile con il nome specificato.",
+ "Returns whether two numbers can be added, subtracted, or compared.": "Restituisce un valore che indica se è possibile aggiungere, sottrarre o confrontare due numeri.",
+ "Rounds a number down to the previous whole number.": "Arrotonda per difetto questo numero all'intero precedente.",
+ "Rounds a number to the nearest whole number.": "Arrotonda un numero al numero intero più vicino.",
+ "Rounds a number up to the next whole number.": "Arrotonda un numero per eccesso al numero intero successivo.",
+ "Sass documentation": "Documentazione Sass",
+ "Selector Specificity": "Specifica del selettore",
+ "Selectors should not contain IDs because these rules are too tightly coupled with the HTML.": "I selettori non devono contenere ID perché queste regole sono strettamente accoppiate al codice HTML.",
+ "The universal selector (*) is known to be slow": "Il selettore universale (`*`) è notoriamente lento",
+ "Throws the value of an expression as a fatal error with stack trace. Useful for validating arguments to mixins and functions.": "Genera il valore di un'espressione come errore irreversibile con l’analisi dello stack. Utile per convalidare gli argomenti per mixin e funzioni.",
+ "URI expected": "URI previsto",
+ "URL encodes a string": "L'URL codifica una stringa",
+ "Unifies two selectors to produce a selector that matches elements matched by both.": "Unifica due selettori per produrre un selettore che corrisponda agli elementi corrispondenti a entrambi.",
+ "Unknown at-rule.": "Regola-at sconosciuta.",
+ "Unknown property.": "Proprietà sconosciuta.",
+ "Unknown property: '{0}'": "Proprietà sconosciuta: '{0}'",
+ "Unknown vendor specific property.": "Proprietà specifica del fornitore sconosciuta.",
+ "When using a vendor-specific prefix also include the standard property": "Quando si usa un prefisso specifico del fornitore, includere anche la proprietà standard",
+ "When using a vendor-specific prefix make sure to also include all other vendor-specific properties": "Quando si usa un prefisso specifico del fornitore, assicurarsi di includere anche tutte le altre proprietà specifiche del fornitore",
+ "While loop that takes an expression and repeatedly outputs the nested styles until the statement evaluates to `false`.": "Ciclo While che accetta un'espressione e restituisce ripetutamente gli stili annidati fino a quando l'istruzione non restituisce 'false'.",
+ "[ expected": "È previsto il carattere [",
+ "] expected": "È previsto il carattere ]",
+ "absolute value of a number": "valore assoluto di un numero",
+ "arccosine - inverse of cosine function": "coseno inverso - inverso della funzione coseno",
+ "arcsine - inverse of sine function": "arcoseno - inverso della funzione seno",
+ "arctangent - inverse of tangent function": "arcotangente - inverso della funzione tangente",
+ "argument from '{0}'": "argomento da '{0}'",
+ "at-rule or selector expected": "previsto selettore o regola at",
+ "at-rule unknown": "regola at sconosciuta",
+ "bind the evaluation of a ruleset to each member of a list.": "associare la valutazione di un set di regole a ogni membro di un elenco.",
+ "calculates square root of a number": "calcola la radice quadrata di un numero",
+ "colon expected": "previsti due punti",
+ "comma expected": "virgola prevista",
+ "condition expected": "prevista condizione",
+ "converts numbers from one type into another": "converte i numeri da un tipo a un altro",
+ "converts to a %, e.g. 0.5 > 50%": "converte in %, ad esempio 0,5 > 50%",
+ "cosine function": "funzione coseno",
+ "creates a #AARRGGBB": "crea un #AARRGGBB",
+ "creates a color": "crea un colore",
+ "css.builtin.lab": "css.builtin.lab",
+ "dot expected": "previsto punto",
+ "escape string content": "contenuto della stringa di escape",
+ "expression expected": "prevista espressione",
+ "first argument modulus second argument": "modulo primo argomento secondo argomento",
+ "first argument raised to the power of the second argument": "primo argomento elevato alla potenza del secondo argomento",
+ "generate a list spanning a range of values": "generare un elenco che si estende su un intervallo di valori",
+ "identifier expected": "È previsto un identificatore",
+ "identifier or variable expected": "previsto identificatore o variabile",
+ "identifier or wildcard expected": "previsto identificatore o carattere jolly",
+ "inline-block is ignored due to the float. If 'float' has a value other than 'none', the box is floated and 'display' is treated as 'block'": "blocco inline ignorato a causa del valore float. Se 'float' ha un valore diverso da 'none', la casella viene resa mobile e 'display' viene considerato come 'block'",
+ "inlines a resource and falls back to `url()`": "rende inline una risorsa ed esegue il fallback a 'url()'",
+ "media query expected": "media query prevista",
+ "number expected": "previsto numero",
+ "operator expected": "previsto operatore",
+ "page directive or declaraton expected": "prevista direttiva o dichiarazione di pagina",
+ "parses a string to a color": "analizza una stringa con un colore",
+ "percentage expected": "percentuale prevista",
+ "property value expected": "valore della proprietà previsto",
+ "remove or change the unit of a dimension": "rimuovere o modificare l\\'unità di una dimensione",
+ "return `@color` 10% points darker": "restituisce `@color` con i punti più scuri del 10%",
+ "return `@color` 10% points less saturated": "restituire '@color' con il 10% di punti meno saturi",
+ "return `@color` 10% points less transparent": "restituisce '@color' 10% punti meno trasparenti",
+ "return `@color` 10% points lighter": "restituire '@color' con il 10% dei punti più chiari",
+ "return `@color` 10% points more saturated": "restituisce '@color' con il 10% dei punti più saturi",
+ "return `@color` 10% points more transparent": "restituisce '@color' con il 10% dei punti più trasparenti",
+ "return `@color` with 50% transparency": "restituisce '@color' con trasparenza del 50%",
+ "return `@color` with a 10 degree larger in hue": "restituisce \"@color\" con una tonalità maggiore di 10 gradi",
+ "return `@darkcolor` if `@color1 is> 43% luma` otherwise return `@lightcolor`, see notes": "restituisce `@darkcolor` se `@color1 è > 43% luma` in caso contrario restituisce `@lightcolor`. Vedere le note",
+ "return a mix of `@color1` and `@color2`": "restituisce una combinazione di '@color1' e '@color2'",
+ "returns a grey, 100% desaturated color": "restituisce un colore grigio, desaturato al 100%",
+ "returns a value at the specified position in the list": "restituisce un valore nella posizione specificata nell'elenco",
+ "returns one of two values depending on a condition.": "restituisce uno dei due valori a seconda di una condizione.",
+ "returns pi": "restituisce pi greco",
+ "returns the `alpha` channel of `@color`": "restituisce il canale 'alpha' di '@color'",
+ "returns the `blue` channel of `@color`": "restituisce il canale 'blue' di '@color'",
+ "returns the `green` channel of `@color`": "restituisce il canale 'green' di '@color'",
+ "returns the `hue` channel of `@color` in the HSL space": "restituisce il canale 'hue' di '@color' nello spazio HSL",
+ "returns the `hue` channel of `@color` in the HSV space": "restituisce il canale `hue` di `@color` nello spazio HSV",
+ "returns the `lightness` channel of `@color` in the HSL space": "restituisce il canale 'lightness' di '@color' nello spazio HSL",
+ "returns the `luma` value (perceptual brightness) of `@color`": "restituisce il valore 'luma' (luminosità percettiva) di '@color'",
+ "returns the `red` channel of `@color`": "restituisce il canale `red` di `@color`",
+ "returns the `saturation` channel of `@color` in the HSL space": "restituisce il canale `saturation` di `@color` nello spazio HSL",
+ "returns the `saturation` channel of `@color` in the HSV space": "restituisce il canale 'saturation' di '@color' nello spazio HSV",
+ "returns the `value` channel of `@color` in the HSV space": "restituisce il canale `value` di `@color` nello spazio HSV",
+ "returns the lowest of one or more values": "restituisce il valore più basso di uno o più valori",
+ "returns the number of elements in a value list": "restituisce il numero di elementi in un elenco di valori",
+ "rounds a number to a number of places": "arrotonda un numero a un numero di posizioni",
+ "rounds down to an integer": "arrotonda per difetto a un numero intero",
+ "rounds up to an integer": "arrotonda per eccesso a un numero intero",
+ "selector expected": "selettore previsto",
+ "semi-colon expected": "previsto punto e virgola",
+ "sine function": "funzione seno",
+ "string literal expected": "previsto valore letterale stringa",
+ "string replace": "sostituzione stringa",
+ "tangent function": "funzione tangente",
+ "term expected": "previsto termine",
+ "unknown keyword": "parola chiave sconosciuta",
+ "uri or string expected": "previsto uri o stringa",
+ "variable name expected": "previsto nome variabile",
+ "variable value expected": "è previsto un valore variabile",
+ "whitespace expected": "previsto spazio vuoto",
+ "wildcard expected": "previsto carattere jolly",
+ "{ expected": "È previsto il carattere {",
+ "{0}, '{1}'": "{0}, '{1}'",
+ "} expected": "È previsto il carattere }"
+ },
+ "package": {
+ "css.colorDecorators.enable.deprecationMessage": "L'impostazione `css.colorDecorators.enable` è stata deprecata e sostituita da `editor.colorDecorators`.",
+ "css.completion.completePropertyWithSemicolon.desc": "Inserisce il punto e virgola alla fine della riga in caso di completamento delle proprietà CSS.",
+ "css.completion.triggerPropertyValueCompletion.desc": "Per impostazione predefinita, VS Code attiva il completamento del valore della proprietà dopo la selezione di una proprietà CSS. Questa impostazione consente di disabilitare questo comportamento.",
+ "css.customData.desc": "Elenco di percorsi di file relativi che puntano a file JSON e sono conformi a [formato dati personalizzato](https://github.com/microsoft/vscode-css-languageservice/blob/master/docs/customData.md).\r\n\r\nVS Code carica i dati personalizzati all'avvio per migliorare il supporto CSS per le proprietà (variabili) personalizzate CSS, le direttive at, le pseudo-classi e gli pseudo-elementi CSS personalizzati specificati nei file JSON.\r\n\r\nI percorsi di file sono relativi all'area di lavoro e vengono considerate solo le impostazioni di cartella dell'area di lavoro.",
+ "css.format.braceStyle.desc": "Inserisci parentesi graffe nella stessa riga delle regole ('collapse') o inserisci parentesi graffe in una riga ('expand').",
+ "css.format.enable.desc": "Abilitare/disabilitare il formattatore CSS predefinito.",
+ "css.format.maxPreserveNewLines.desc": "Numero massimo di interruzioni di riga da mantenere in un blocco quando è abilitato '#css.format.preserveNewLines#'.",
+ "css.format.newlineBetweenRules.desc": "Separare i set di regole con una riga vuota.",
+ "css.format.newlineBetweenSelectors.desc": "Separare i selettori con una nuova riga.",
+ "css.format.preserveNewLines.desc": "Indica se le interruzioni di riga esistenti prima di regole e dichiarazioni devono essere mantenute.",
+ "css.format.spaceAroundSelectorSeparator.desc": "Assicurarsi che vi sia uno spazio intorno ai separatori del selettore '>', '+', '~' (ad esempio 'a > b').",
+ "css.hover.documentation": "Mostrare la documentazione di proprietà e valori al passaggio del mouse su CSS.",
+ "css.hover.references": "Mostra i riferimenti a MDN al passaggio del puntatore su codice CSS.",
+ "css.lint.argumentsInColorFunction.desc": "Numero di parametri non valido.",
+ "css.lint.boxModel.desc": "Non usare `width` o `height` con `padding` o `border`.",
+ "css.lint.compatibleVendorPrefixes.desc": "Quando si usa un prefisso specifico del fornitore, assicurarsi di includere anche tutte le altre proprietà specifiche del fornitore.",
+ "css.lint.duplicateProperties.desc": "Non usare definizioni di stile duplicate.",
+ "css.lint.emptyRules.desc": "Non usare set di regole vuoti.",
+ "css.lint.float.desc": "Evitare di usare `float`. Con gli elementi float si ottiene codice CSS che causa facilmente interruzioni in caso di modifica di un aspetto del layout.",
+ "css.lint.fontFaceProperties.desc": "La regola `@font-face` deve definire le proprietà `src` e `font-family`.",
+ "css.lint.hexColorLength.desc": "I colori esadecimali devono essere costituiti da 3, 4, 6 o 8 numeri esadecimali.",
+ "css.lint.idSelector.desc": "I selettori non devono contenere ID perché queste regole sono strettamente accoppiate al codice HTML.",
+ "css.lint.ieHack.desc": "Gli hack IE sono necessari solo per il supporto di IE7 e versioni precedenti.",
+ "css.lint.importStatement.desc": "Le istruzioni Import non vengono caricate in parallelo.",
+ "css.lint.important.desc": "Evitare di usare '!important' perché indica che la specificità dell'intero codice CSS non è più controllabile ed è necessario effettuarne il refactoring.",
+ "css.lint.propertyIgnoredDueToDisplay.desc": "La proprietà viene ignorata a causa della visualizzazione. Ad esempio, con `display: inline`, le proprietà `width`, `height`, `margin-top`, `margin-bottom` e `float` non hanno effetto.",
+ "css.lint.universalSelector.desc": "Il selettore universale (`*`) è notoriamente lento.",
+ "css.lint.unknownAtRules.desc": "Regola-at sconosciuta.",
+ "css.lint.unknownProperties.desc": "Proprietà sconosciuta.",
+ "css.lint.unknownVendorSpecificProperties.desc": "Proprietà specifica del fornitore sconosciuta.",
+ "css.lint.validProperties.desc": "Elenco di proprietà che non vengono convalidate in base alla regola `unknownProperties`.",
+ "css.lint.vendorPrefix.desc": "Quando si usa un prefisso specifico del fornitore, includere anche la proprietà standard.",
+ "css.lint.zeroUnits.desc": "Non è necessaria alcuna unità per lo zero.",
+ "css.title": "CSS",
+ "css.trace.server.desc": "Traccia la comunicazione tra VS Code e il server del linguaggio CSS.",
+ "css.validate.desc": "Abilita o disabilita tutte le convalide.",
+ "css.validate.title": "Controlla la convalida CSS e le gravità dei problemi.",
+ "description": "Offre un supporto avanzato per i file CSS, LESS e SCSS",
+ "displayName": "Funzionalità del linguaggio CSS",
+ "less.colorDecorators.enable.deprecationMessage": "L'impostazione `less.colorDecorators.enable` è stata deprecata e sostituita da `editor.colorDecorators`.",
+ "less.completion.completePropertyWithSemicolon.desc": "Inserisce il punto e virgola alla fine della riga in caso di completamento delle proprietà CSS.",
+ "less.completion.triggerPropertyValueCompletion.desc": "Per impostazione predefinita, VS Code attiva il completamento del valore della proprietà dopo la selezione di una proprietà CSS. Questa impostazione consente di disabilitare questo comportamento.",
+ "less.format.braceStyle.desc": "Inserisci parentesi graffe nella stessa riga delle regole ('collapse') o inserisci parentesi graffe in una riga ('expand').",
+ "less.format.enable.desc": "Abilita/Disabilita il formattatore LESS predefinito.",
+ "less.format.maxPreserveNewLines.desc": "Numero massimo di interruzioni di riga da mantenere in un blocco quando è abilitato '#less.format.preserveNewLines#'.",
+ "less.format.newlineBetweenRules.desc": "Separare i set di regole con una riga vuota.",
+ "less.format.newlineBetweenSelectors.desc": "Separare i selettori con una nuova riga.",
+ "less.format.preserveNewLines.desc": "Indica se le interruzioni di riga esistenti prima di regole e dichiarazioni devono essere mantenute.",
+ "less.format.spaceAroundSelectorSeparator.desc": "Assicurarsi che vi sia uno spazio intorno ai separatori del selettore '>', '+', '~' (ad esempio 'a > b').",
+ "less.hover.documentation": "Mostrare la documentazione di proprietà e valori al passaggio del mouse su LESS.",
+ "less.hover.references": "Mostra i riferimenti a MDN al passaggio del puntatore su codice LESS.",
+ "less.lint.argumentsInColorFunction.desc": "Numero di parametri non valido.",
+ "less.lint.boxModel.desc": "Non usare `width` o `height` con `padding` o `border`.",
+ "less.lint.compatibleVendorPrefixes.desc": "Quando si usa un prefisso specifico del fornitore, assicurarsi di includere anche tutte le altre proprietà specifiche del fornitore.",
+ "less.lint.duplicateProperties.desc": "Non usare definizioni di stile duplicate.",
+ "less.lint.emptyRules.desc": "Non usare set di regole vuoti.",
+ "less.lint.float.desc": "Evitare di usare `float`. Con gli elementi float si ottiene codice CSS che causa facilmente interruzioni in caso di modifica di un aspetto del layout.",
+ "less.lint.fontFaceProperties.desc": "La regola `@font-face` deve definire le proprietà `src` e `font-family`.",
+ "less.lint.hexColorLength.desc": "I colori esadecimali devono essere costituiti da 3, 4, 6 o 8 numeri esadecimali.",
+ "less.lint.idSelector.desc": "I selettori non devono contenere ID perché queste regole sono strettamente accoppiate al codice HTML.",
+ "less.lint.ieHack.desc": "Gli hack IE sono necessari solo per il supporto di IE7 e versioni precedenti.",
+ "less.lint.importStatement.desc": "Le istruzioni Import non vengono caricate in parallelo.",
+ "less.lint.important.desc": "Evitare di usare '!important' perché indica che la specificità dell'intero codice CSS non è più controllabile ed è necessario effettuarne il refactoring.",
+ "less.lint.propertyIgnoredDueToDisplay.desc": "La proprietà viene ignorata a causa della visualizzazione. Ad esempio, con `display: inline`, le proprietà `width`, `height`, `margin-top`, `margin-bottom` e `float` non hanno effetto.",
+ "less.lint.universalSelector.desc": "Il selettore universale (`*`) è notoriamente lento.",
+ "less.lint.unknownAtRules.desc": "Regola-at sconosciuta.",
+ "less.lint.unknownProperties.desc": "Proprietà sconosciuta.",
+ "less.lint.unknownVendorSpecificProperties.desc": "Proprietà specifica del fornitore sconosciuta.",
+ "less.lint.validProperties.desc": "Elenco di proprietà che non vengono convalidate in base alla regola `unknownProperties`.",
+ "less.lint.vendorPrefix.desc": "Quando si usa un prefisso specifico del fornitore, includere anche la proprietà standard.",
+ "less.lint.zeroUnits.desc": "Non è necessaria alcuna unità per lo zero.",
+ "less.title": "LESS",
+ "less.validate.desc": "Abilita o disabilita tutte le convalide.",
+ "less.validate.title": "Controlla la convalida LESS e le gravità dei problemi.",
+ "scss.colorDecorators.enable.deprecationMessage": "L'impostazione `scss.colorDecorators.enable` è stata deprecata e sostituita da `editor.colorDecorators`.",
+ "scss.completion.completePropertyWithSemicolon.desc": "Inserisce il punto e virgola alla fine della riga in caso di completamento delle proprietà CSS.",
+ "scss.completion.triggerPropertyValueCompletion.desc": "Per impostazione predefinita, VS Code attiva il completamento del valore della proprietà dopo la selezione di una proprietà CSS. Questa impostazione consente di disabilitare questo comportamento.",
+ "scss.format.braceStyle.desc": "Inserisci parentesi graffe nella stessa riga delle regole ('collapse') o inserisci parentesi graffe in una riga ('expand').",
+ "scss.format.enable.desc": "Abilitare/disabilitare il formattatore SCSS predefinito.",
+ "scss.format.maxPreserveNewLines.desc": "Numero massimo di interruzioni di riga da mantenere in un blocco quando è abilitato '#scss.format.preserveNewLines#'.",
+ "scss.format.newlineBetweenRules.desc": "Separare i set di regole con una riga vuota.",
+ "scss.format.newlineBetweenSelectors.desc": "Separare i selettori con una nuova riga.",
+ "scss.format.preserveNewLines.desc": "Indica se le interruzioni di riga esistenti prima di regole e dichiarazioni devono essere mantenute.",
+ "scss.format.spaceAroundSelectorSeparator.desc": "Assicurarsi che vi sia uno spazio intorno ai separatori del selettore '>', '+', '~' (ad esempio 'a > b').",
+ "scss.hover.documentation": "Mostrare la documentazione di proprietà e valori al passaggio del mouse su SCSS.",
+ "scss.hover.references": "Mostra i riferimenti a MDN al passaggio del puntatore su codice SCSS.",
+ "scss.lint.argumentsInColorFunction.desc": "Numero di parametri non valido.",
+ "scss.lint.boxModel.desc": "Non usare `width` o `height` con `padding` o `border`.",
+ "scss.lint.compatibleVendorPrefixes.desc": "Quando si usa un prefisso specifico del fornitore, assicurarsi di includere anche tutte le altre proprietà specifiche del fornitore.",
+ "scss.lint.duplicateProperties.desc": "Non usare definizioni di stile duplicate.",
+ "scss.lint.emptyRules.desc": "Non usare set di regole vuoti.",
+ "scss.lint.float.desc": "Evitare di usare `float`. Con gli elementi float si ottiene codice CSS che causa facilmente interruzioni in caso di modifica di un aspetto del layout.",
+ "scss.lint.fontFaceProperties.desc": "La regola `@font-face` deve definire le proprietà `src` e `font-family`.",
+ "scss.lint.hexColorLength.desc": "I colori esadecimali devono essere costituiti da 3, 4, 6 o 8 numeri esadecimali.",
+ "scss.lint.idSelector.desc": "I selettori non devono contenere ID perché queste regole sono strettamente accoppiate al codice HTML.",
+ "scss.lint.ieHack.desc": "Gli hack IE sono necessari solo per il supporto di IE7 e versioni precedenti.",
+ "scss.lint.importStatement.desc": "Le istruzioni Import non vengono caricate in parallelo.",
+ "scss.lint.important.desc": "Evitare di usare '!important' perché indica che la specificità dell'intero codice CSS non è più controllabile ed è necessario effettuarne il refactoring.",
+ "scss.lint.propertyIgnoredDueToDisplay.desc": "La proprietà viene ignorata a causa della visualizzazione. Ad esempio, con `display: inline`, le proprietà `width`, `height`, `margin-top`, `margin-bottom` e `float` non hanno effetto.",
+ "scss.lint.universalSelector.desc": "Il selettore universale (`*`) è notoriamente lento.",
+ "scss.lint.unknownAtRules.desc": "Regola-at (@) sconosciuta.",
+ "scss.lint.unknownProperties.desc": "Proprietà sconosciuta.",
+ "scss.lint.unknownVendorSpecificProperties.desc": "Proprietà specifica del fornitore sconosciuta.",
+ "scss.lint.validProperties.desc": "Elenco di proprietà che non vengono convalidate in base alla regola `unknownProperties`.",
+ "scss.lint.vendorPrefix.desc": "Quando si usa un prefisso specifico del fornitore, includere anche la proprietà standard.",
+ "scss.lint.zeroUnits.desc": "Non è necessaria alcuna unità per lo zero.",
+ "scss.title": "SCSS (Sass)",
+ "scss.validate.desc": "Abilita o disabilita tutte le convalide.",
+ "scss.validate.title": "Controlla la convalida SCSS e le gravità dei problemi."
+ }
+ }
+}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-it/translations/extensions/vscode.css.i18n.json b/i18n/vscode-language-pack-it/translations/extensions/vscode.css.i18n.json
index 31a0ca8aac..63318866b6 100644
--- a/i18n/vscode-language-pack-it/translations/extensions/vscode.css.i18n.json
+++ b/i18n/vscode-language-pack-it/translations/extensions/vscode.css.i18n.json
@@ -9,8 +9,8 @@
"version": "1.0.0",
"contents": {
"package": {
- "displayName": "Nozioni di base sul linguaggio CSS",
- "description": "Offre l'evidenziazione della sintassi e la corrispondenza delle parentesi nei file CSS, LESS e SCSS."
+ "description": "Offre l'evidenziazione della sintassi e la corrispondenza delle parentesi nei file CSS, LESS e SCSS.",
+ "displayName": "Nozioni di base sul linguaggio CSS"
}
}
}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-it/translations/extensions/dart.i18n.json b/i18n/vscode-language-pack-it/translations/extensions/vscode.dart.i18n.json
similarity index 100%
rename from i18n/vscode-language-pack-it/translations/extensions/dart.i18n.json
rename to i18n/vscode-language-pack-it/translations/extensions/vscode.dart.i18n.json
diff --git a/i18n/vscode-language-pack-it/translations/extensions/vscode.debug-auto-launch.i18n.json b/i18n/vscode-language-pack-it/translations/extensions/vscode.debug-auto-launch.i18n.json
new file mode 100644
index 0000000000..01956cfe81
--- /dev/null
+++ b/i18n/vscode-language-pack-it/translations/extensions/vscode.debug-auto-launch.i18n.json
@@ -0,0 +1,38 @@
+{
+ "": [
+ "--------------------------------------------------------------------------------------------",
+ "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."
+ ],
+ "version": "1.0.0",
+ "contents": {
+ "bundle": {
+ "Always": "Sempre",
+ "Auto Attach: Always": "Collegamento automatico: Sempre",
+ "Auto Attach: Disabled": "Collegamento automatico: Disabilitato",
+ "Auto Attach: Smart": "Collegamento automatico: Intelligente",
+ "Auto Attach: With Flag": "Collegamento automatico: Con flag",
+ "Auto attach is disabled and not shown in status bar": "La funzionalità di collegamento automatico è disabilitata e non viene visualizzata nella barra di stato",
+ "Auto attach to every Node.js process launched in the terminal": "Collega automaticamente a ogni processo Node.js avviato nel terminale",
+ "Auto attach when running scripts that aren't in a node_modules folder": "Collega automaticamente durante l'esecuzione di script non presenti in una cartella node_modules",
+ "Automatically attach to node.js processes in debug mode": "Connetti automaticamente ai processi di node.js in modalità debug",
+ "Debug Auto Attach": "Collegamento automatico di debug",
+ "Disabled": "Disabilitato",
+ "Only With Flag": "Solo con flag",
+ "Only auto attach when the `--inspect` flag is given": "Collega automaticamente solo quando è specificato il flag `--inspect`",
+ "Re-enable auto attach": "Abilita di nuovo il collegamento automatico",
+ "Smart": "Intelligente",
+ "Temporarily disable auto attach in this session": "Disabilita temporaneamente il collegamento automatico in questa sessione",
+ "Toggle Auto Attach": "Attiva/Disattiva collegamento automatico",
+ "Toggle auto attach in this workspace": "Attiva/Disattiva il collegamento automatico in questa area di lavoro",
+ "Toggle auto attach on this machine": "Attiva/Disattiva il collegamento automatico in questo computer"
+ },
+ "package": {
+ "description": "Helper per la funzionalità di collegamento automatico quando le estensioni di debug di Node non sono attive.",
+ "displayName": "Collegamento automatico per debug di Node",
+ "toggle.auto.attach": "Attiva/Disattiva collegamento automatico"
+ }
+ }
+}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-it/translations/extensions/vscode.debug-server-ready.i18n.json b/i18n/vscode-language-pack-it/translations/extensions/vscode.debug-server-ready.i18n.json
new file mode 100644
index 0000000000..278b09d332
--- /dev/null
+++ b/i18n/vscode-language-pack-it/translations/extensions/vscode.debug-server-ready.i18n.json
@@ -0,0 +1,31 @@
+{
+ "": [
+ "--------------------------------------------------------------------------------------------",
+ "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."
+ ],
+ "version": "1.0.0",
+ "contents": {
+ "bundle": {
+ "Format uri ('{0}') must contain exactly one substitution placeholder.": "L'URI di formato ('{0}') deve contenere esattamente un segnaposto di sostituzione.",
+ "Format uri ('{0}') uses a substitution placeholder but pattern did not capture anything.": "L'URI di formato ('{0}') usa un segnaposto di sostituzione ma con il criterio non è stato acquisito nulla."
+ },
+ "package": {
+ "debug.server.ready.action.debugWithChrome.description": "Avvia il debug con 'Debugger per Chrome'.",
+ "debug.server.ready.action.description": "Consente di indicare l'operazione da eseguire con l'URI quando il server è pronto.",
+ "debug.server.ready.action.openExternally.description": "Apre l'URI esternamente con l'applicazione predefinita.",
+ "debug.server.ready.action.startDebugging.description": "Esegue un'altra configurazione di avvio.",
+ "debug.server.ready.debugConfig.description": "Configurazione di debug da eseguire.",
+ "debug.server.ready.debugConfigName.description": "Nome della configurazione di avvio da eseguire.",
+ "debug.server.ready.killOnServerStop.description": "Arrestare la sessione figlio all'arresto della sessione padre.",
+ "debug.server.ready.pattern.description": "Il server è pronto se nella console di debug viene visualizzato questo criterio. Il primo gruppo Capture deve includere un URI o un numero di porta.",
+ "debug.server.ready.serverReadyAction.description": "Interviene su un URI quando un programma server di cui è in corso il debug è pronto (indicato dall'invio dell'output in formato 'in ascolto sulla porta 3000' o 'In ascolto su: https://localhost:5001' alla console di debug).",
+ "debug.server.ready.uriFormat.description": "Stringa di formato usata per creare l'URI da un numero di porta. Il primo '%s' è sostituito dal numero di porta.",
+ "debug.server.ready.webRoot.description": "Valore passato alla configurazione di debug per 'Debugger per Chrome'.",
+ "description": "Apre l'URI nel browser se il server di cui si esegue il debug è pronto.",
+ "displayName": "Azione per server pronto"
+ }
+ }
+}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-it/translations/extensions/diff.i18n.json b/i18n/vscode-language-pack-it/translations/extensions/vscode.diff.i18n.json
similarity index 100%
rename from i18n/vscode-language-pack-it/translations/extensions/diff.i18n.json
rename to i18n/vscode-language-pack-it/translations/extensions/vscode.diff.i18n.json
diff --git a/i18n/vscode-language-pack-it/translations/extensions/vscode.docker.i18n.json b/i18n/vscode-language-pack-it/translations/extensions/vscode.docker.i18n.json
index 269c8a4ce9..ada28d9c98 100644
--- a/i18n/vscode-language-pack-it/translations/extensions/vscode.docker.i18n.json
+++ b/i18n/vscode-language-pack-it/translations/extensions/vscode.docker.i18n.json
@@ -9,8 +9,8 @@
"version": "1.0.0",
"contents": {
"package": {
- "displayName": "Nozioni di base sul linguaggio Docker",
- "description": "Offre la sottolineatura delle sintassi e il match delle parentesi nei file Docker."
+ "description": "Offre la sottolineatura delle sintassi e il match delle parentesi nei file Docker.",
+ "displayName": "Nozioni di base sul linguaggio Docker"
}
}
}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-it/translations/extensions/vscode.dotenv.i18n.json b/i18n/vscode-language-pack-it/translations/extensions/vscode.dotenv.i18n.json
new file mode 100644
index 0000000000..237589dad6
--- /dev/null
+++ b/i18n/vscode-language-pack-it/translations/extensions/vscode.dotenv.i18n.json
@@ -0,0 +1,16 @@
+{
+ "": [
+ "--------------------------------------------------------------------------------------------",
+ "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."
+ ],
+ "version": "1.0.0",
+ "contents": {
+ "package": {
+ "description": "Offre l'evidenziazione della sintassi e la corrispondenza delle parentesi nei file Dotenv.",
+ "displayName": "Nozioni di base sul linguaggio Dotenv"
+ }
+ }
+}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-it/translations/extensions/vscode.emmet.i18n.json b/i18n/vscode-language-pack-it/translations/extensions/vscode.emmet.i18n.json
new file mode 100644
index 0000000000..11d9aaf530
--- /dev/null
+++ b/i18n/vscode-language-pack-it/translations/extensions/vscode.emmet.i18n.json
@@ -0,0 +1,83 @@
+{
+ "": [
+ "--------------------------------------------------------------------------------------------",
+ "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."
+ ],
+ "version": "1.0.0",
+ "contents": {
+ "bundle": {
+ "Emmet Abbreviation": "Abbreviazione Emmet",
+ "Enter Abbreviation": "Immettere l'abbreviazione",
+ "Invalid emmet.variables field. See https://code.visualstudio.com/docs/editor/emmet#_emmet-configuration for a valid example.": "Campo emmet.variables non valido. Per un esempio valido, vedere https://code.visualstudio.com/docs/editor/emmet#_emmet-configuration.",
+ "Invalid snippets file. See https://code.visualstudio.com/docs/editor/emmet#_using-custom-emmet-snippets for a valid example.": "File di frammenti non valido. Per un esempio valido, vedere https://code.visualstudio.com/docs/editor/emmet#_using-custom-emmet-snippets.",
+ "Invalid syntax profile. See https://code.visualstudio.com/docs/editor/emmet#_emmet-configuration for a valid example.": "Profilo di sintassi non valido. Per un esempio valido, vedere https://code.visualstudio.com/docs/editor/emmet#_emmet-configuration."
+ },
+ "package": {
+ "command.balanceIn": "Corrispondenza (interna)",
+ "command.balanceOut": "Corrispondenza (esterna)",
+ "command.decrementNumberByOne": "Riduci di 1",
+ "command.decrementNumberByOneTenth": "Riduci di 0,1",
+ "command.decrementNumberByTen": "Riduci di 10",
+ "command.evaluateMathExpression": "Valuta espressione matematica",
+ "command.incrementNumberByOne": "Aumenta di 1",
+ "command.incrementNumberByOneTenth": "Aumenta di 0,1",
+ "command.incrementNumberByTen": "Aumenta di 10",
+ "command.matchTag": "Vai alla coppia corrispondente",
+ "command.mergeLines": "Esegui merge delle righe",
+ "command.nextEditPoint": "Vai al punto di modifica successivo",
+ "command.prevEditPoint": "Vai al punto di modifica precedente",
+ "command.reflectCSSValue": "Ricopia il valore CSS",
+ "command.removeTag": "Rimuovi tag",
+ "command.selectNextItem": "Seleziona l'elemento successivo",
+ "command.selectPrevItem": "Seleziona l'elemento precedente",
+ "command.showEmmetCommands": "Mostra comandi Emmet",
+ "command.splitJoinTag": "Dividi/Unisci tag",
+ "command.toggleComment": "Attiva/Disattiva commento",
+ "command.updateImageSize": "Aggiorna dimensioni immagine",
+ "command.updateTag": "Aggiorna tag",
+ "command.wrapWithAbbreviation": "Esegui il wrapping con l'abbreviazione",
+ "description": "Supporto Emmet per VS Code",
+ "emmetExclude": "Una matrice di linguaggi dove le abbreviazioni Emmet non dovrebbero essere espanse.",
+ "emmetExtensionsPath": "Matrice di percorsi in cui ogni percorso può contenere elementi syntaxProfile e/o file di frammento Emmet.\r\nIn caso di conflitto, i profili/frammenti dei percorsi successivi eseguiranno l'override di quelli dei percorsi precedenti.\r\nPer altre informazioni e per un file di frammento di esempio, vedere https://code.visualstudio.com/docs/editor/emmet.",
+ "emmetExtensionsPathItem": "Percorso contenente elementi syntaxProfile e/o frammenti Emmet.",
+ "emmetIncludeLanguages": "Abilita le abbreviazioni Emmet in linguaggi che non sono supportati per impostazione predefinita. Aggiungere qui un mapping tra il linguaggio e il linguaggio supportato da Emmet.\r\n Ad esempio: `{\"vue-html\": \"html\", \"javascript\": \"javascriptreact\"}`",
+ "emmetOptimizeStylesheetParsing": "Se è impostato su `false`, l'intero file viene analizzato per determinare se la posizione corrente è valida per l'espansione delle abbreviazioni di Emmet. Se è impostato su `true`, viene analizzato solo il contenuto circostante alla posizione corrente nei file CSS/SCSS/Less.",
+ "emmetPreferences": "Preferenze usate per modificare il comportamento di alcune azioni e i resolver di Emmet.",
+ "emmetPreferencesAllowCompactBoolean": "Se è `true`, viene prodotta una notazione compatta degli attributi booleani.",
+ "emmetPreferencesBemElementSeparator": "Separatore di elementi usati per le classi quando si usa il filtro BEM.",
+ "emmetPreferencesBemModifierSeparator": "Separatore di modificatore usato per le classi quando si usa il filtro BEM.",
+ "emmetPreferencesCssAfter": "Simbolo da inserire alla fine della proprietà CSS quando si espandono le abbreviazioni CSS.",
+ "emmetPreferencesCssBetween": "Simbolo da inserire tra la proprietà CSS e il valore quando si espandono le abbreviazioni CSS.",
+ "emmetPreferencesCssColorShort": "Se è `true`, i valori di colore come `#f` verranno espansi in `#fff` invece di `#ffffff`.",
+ "emmetPreferencesCssFuzzySearchMinScore": "Il valore minimo (da 0 a 1) che dovrebbe raggiungere un'abbreviazione di fuzzy-match. I valori più bassi possono produrre molti falsi positivi, i valori più alti possono ridurre le possibili corrispondenze.",
+ "emmetPreferencesCssMozProperties": "Proprietà CSS delimitate da virgola che assumono il prefisso 'moz' del fornitore quando vengono usate nelle abbreviazioni Emmet che iniziano per `-`. Per evitare sempre il prefisso 'moz', impostare su una stringa vuota.",
+ "emmetPreferencesCssMsProperties": "Proprietà CSS delimitate da virgola che assumono il prefisso 'ms' del fornitore quando vengono usate nelle abbreviazioni Emmet che iniziano per `-`. Per evitare sempre il prefisso 'ms', impostare su una stringa vuota.",
+ "emmetPreferencesCssOProperties": "Proprietà CSS delimitate da virgola che assumono il prefisso 'o' del fornitore quando vengono usate nelle abbreviazioni Emmet che iniziano per `-`. Per evitare sempre il prefisso 'o', impostare su una stringa vuota.",
+ "emmetPreferencesCssWebkitProperties": "Proprietà CSS delimitate da virgola che assumono il prefisso 'webkit' del fornitore quando vengono usate in abbreviazioni Emmet che iniziano per `-`. Per evitare sempre il prefisso 'webkit', impostare su una stringa vuota.",
+ "emmetPreferencesFilterCommentAfter": "Una definizione di commento che deve essere posizionato dopo l'elemento corrispondente quando viene applicato il filtro commenti.",
+ "emmetPreferencesFilterCommentBefore": "Una definizione di commento che deve essere inserita prima dell'elemento corrispondente quando viene applicato il filtro commenti.",
+ "emmetPreferencesFilterCommentTrigger": "Elenco delimitato da virgole di nomi di attributi che dovrebbero esistere come abbreviazione per il filtro commenti da applicare.",
+ "emmetPreferencesFloatUnit": "Unità predefinita per i valori float.",
+ "emmetPreferencesFormatForceIndentTags": "Matrice di nomi di tag a cui dovrebbe sempre essere applicato il rientro interno.",
+ "emmetPreferencesFormatNoIndentTags": "Matrice di nomi di tag a cui non dovrebbe mai essere applicato il rientro interno.",
+ "emmetPreferencesIntUnit": "Unità predefinita per i valori integer.",
+ "emmetPreferencesOutputInlineBreak": "Numero di elementi inline di pari livello necessari per posizionare interruzioni di linea tra tali elementi. Se è `0`, gli elementi inline vengono sempre espansi su un'unica riga.",
+ "emmetPreferencesOutputReverseAttributes": "Se `true`, inverte le direzioni di merge degli attributi durante la risoluzione dei frammenti.",
+ "emmetPreferencesOutputSelfClosingStyle": "Stile dei tag di chiusura automatici: html (` `), xml (` `) o xhtml (` `).",
+ "emmetPreferencesSassAfter": "Simbolo da inserire alla fine della proprietà CSS quando si espandono le abbreviazioni CSS nei file Sass.",
+ "emmetPreferencesSassBetween": "Simbolo da inserire tra la proprietà CSS e il valore quando si espandono le abbreviazioni CSS nei file Sass.",
+ "emmetPreferencesStylusAfter": "Simbolo da inserire alla fine della proprietà CSS quando si espandono le abbreviazioni CSS nei file Stylus.",
+ "emmetPreferencesStylusBetween": "Simbolo da inserire tra la proprietà CSS e il valore quando si espandono le abbreviazioni CSS nei file Stylus.",
+ "emmetShowAbbreviationSuggestions": "Mostra possibili abbreviazioni Emmet come suggerimenti. Non si applica a fogli di stile o quando emmet.showExpandedAbbreviation è impostato su \"never\".",
+ "emmetShowExpandedAbbreviation": "Mostra le abbreviazioni Emmet espanse come suggerimenti.\r\nL'opzione `\"inMarkupAndStylesheetFilesOnly\"` si applica a html, haml, jade, slim, xml, xsl, css, scss, sass, less e stylus.\r\nL'opzione `\"always\"` si applica a tutte le parti del file indipendentemente da markup/css.",
+ "emmetShowSuggestionsAsSnippets": "Se è true, i suggerimenti Emmet verranno visualizzati come frammenti consentendo di ordinarli in base all'impostazione `#editor.snippetSuggestions#`.",
+ "emmetSyntaxProfiles": "Consente di definire il profilo per la sintassi specificata oppure di usare un profilo personalizzato con regole specifiche.",
+ "emmetTriggerExpansionOnTab": "Se questa opzione è abilitata, le abbreviazioni Emmet vengono espanse quando si preme TAB, anche quando i completamenti non vengono visualizzati. Se questa opzione è disabilitata, i completamenti visualizzati possono essere comunque accettati premendo TAB.",
+ "emmetUseInlineCompletions": "Se `vero`, Emmet userà i completamenti inline per suggerire espansioni. Per evitare che il fornitore di elementi di completamento non-inline appaia così spesso quando questa impostazione è `vero`, impostare `#editor.quickSuggestions#` su `inline` o `off` per l’elemento `altro`.",
+ "emmetVariables": "Variabili da usare negli frammenti Emmet."
+ }
+ }
+}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-it/translations/extensions/vscode.extension-editing.i18n.json b/i18n/vscode-language-pack-it/translations/extensions/vscode.extension-editing.i18n.json
new file mode 100644
index 0000000000..b6feff6ffc
--- /dev/null
+++ b/i18n/vscode-language-pack-it/translations/extensions/vscode.extension-editing.i18n.json
@@ -0,0 +1,33 @@
+{
+ "": [
+ "--------------------------------------------------------------------------------------------",
+ "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."
+ ],
+ "version": "1.0.0",
+ "contents": {
+ "bundle": {
+ "Data URLs are not a valid image source.": "Gli URL di dati non sono un'origine valida per le immagini.",
+ "Embedded SVGs are not a valid image source.": "Le immagini di tipo SVG incorporate non sono un'origine valida.",
+ "Error parsing the when-clause:": "Errore durante l'analisi della clausola \"when\":",
+ "Images must use the HTTPS protocol.": "Le immagini devono usare il protocollo HTTPS.",
+ "Language specific editor settings": "Impostazioni dell'editor specifiche del linguaggio",
+ "Override editor settings for language": "Esegue l'override delle impostazioni dell'editor per il linguaggio",
+ "Relative badge URLs require a repository with HTTPS protocol to be specified in this package.json.": "Notifiche con URL relativo richiedono di specificare un repository con protocollo HTTPS in questo package.json.",
+ "Relative image URLs require a repository with HTTPS protocol to be specified in the package.json.": "Immagini con URL relative richiedono di specificare un repository con protocollo HTTPS in package.json.",
+ "Remove activation event": "Rimuovi evento di attivazione",
+ "SVGs are not a valid image source.": "Le immagini di tipo SVG non sono un'origine valida.",
+ "This activation event can be removed as VS Code generates these automatically from your package.json contribution declarations.": "Questo evento di attivazione può essere rimosso poiché VS Code genera automaticamente tali eventi dalle dichiarazioni di contributo package.json.",
+ "This activation event can be removed for extensions targeting engine version ^1.75.0 as VS Code will generate these automatically from your package.json contribution declarations.": "Questo evento di attivazione può essere rimosso per le estensioni che puntano alla versione del motore ^1.75.0, perché VS Code lo genererà automaticamente dalle dichiarazioni del contributo package.json.",
+ "This activation event cannot be explicitly listed by your extension.": "Questo evento di attivazione non può essere elencato in modo esplicito dall'estensione.",
+ "This proposal cannot be used because for this extension the product defines a fixed set of API proposals. You can test your extension but before publishing you MUST reach out to the VS Code team.": "Non è possibile usare questa proposta perché per questa estensione il prodotto definisce un set fisso di proposte API. È possibile testare l'estensione, ma prima della pubblicazione è necessario contattare il team VS Code.",
+ "Using '*' activation is usually a bad idea as it impacts performance.": "L'uso dell'attivazione '*' è di solito una cattiva idea, perché influisce sulle prestazioni."
+ },
+ "package": {
+ "description": "Fornisce funzionalità di linting per la creazione di estensioni.",
+ "displayName": "Creazione estensione"
+ }
+ }
+}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-it/translations/extensions/vscode.fsharp.i18n.json b/i18n/vscode-language-pack-it/translations/extensions/vscode.fsharp.i18n.json
index 23373e90bf..5e2120406f 100644
--- a/i18n/vscode-language-pack-it/translations/extensions/vscode.fsharp.i18n.json
+++ b/i18n/vscode-language-pack-it/translations/extensions/vscode.fsharp.i18n.json
@@ -9,8 +9,8 @@
"version": "1.0.0",
"contents": {
"package": {
- "displayName": "Nozioni di base sul linguaggio F#",
- "description": "Offre i frammenti, la sottolineatura delle sintassi, la corrispondenza delle parentesi e la riduzione del codice nei file F#."
+ "description": "Offre i frammenti, la sottolineatura delle sintassi, la corrispondenza delle parentesi e la riduzione del codice nei file F#.",
+ "displayName": "Nozioni di base sul linguaggio F#"
}
}
}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-it/translations/extensions/vscode.git-base.i18n.json b/i18n/vscode-language-pack-it/translations/extensions/vscode.git-base.i18n.json
new file mode 100644
index 0000000000..0ecb199834
--- /dev/null
+++ b/i18n/vscode-language-pack-it/translations/extensions/vscode.git-base.i18n.json
@@ -0,0 +1,30 @@
+{
+ "": [
+ "--------------------------------------------------------------------------------------------",
+ "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."
+ ],
+ "version": "1.0.0",
+ "contents": {
+ "bundle": {
+ "Branch name": "Nome ramo",
+ "Choose a URL to clone from.": "Scegliere un URL da cui eseguire la clonazione.",
+ "No remote repositories found.": "Non sono stati trovati repository remoti.",
+ "Provide repository URL": "Specificare l'URL del repository",
+ "Provide repository URL or pick a repository source.": "Specificare l'URL del repository o selezionare un'origine repository.",
+ "Repository name": "Nome del repository",
+ "Repository name (type to search)": "Nome del repository (digitare per eseguire la ricerca)",
+ "URL": "URL",
+ "recently opened": "aperti di recente",
+ "remote sources": "origini remote",
+ "{0} Error: {1}": "{0} Errore: {1}"
+ },
+ "package": {
+ "command.api.getRemoteSources": "Ottieni Origini remote",
+ "description": "Contributi statici e picker di Git.",
+ "displayName": "Git Base"
+ }
+ }
+}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-it/translations/extensions/vscode.git.i18n.json b/i18n/vscode-language-pack-it/translations/extensions/vscode.git.i18n.json
new file mode 100644
index 0000000000..8f03f0151b
--- /dev/null
+++ b/i18n/vscode-language-pack-it/translations/extensions/vscode.git.i18n.json
@@ -0,0 +1,807 @@
+{
+ "": [
+ "--------------------------------------------------------------------------------------------",
+ "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."
+ ],
+ "version": "1.0.0",
+ "contents": {
+ "bundle": {
+ "\n\nAre you sure you want to discard ALL changes in {0} files?": "\nRimuovere TUTTE le modifiche nei file {0}?",
+ "\n\nAre you sure you want to discard changes in '{0}'?": "\n\nRimuovere le modifiche in '{0}'?",
+ "\n and {0} more file{1}...": "\n e {0} altri file{1}...",
+ "\"{0}\" has fingerprint \"{1}\"": "\"{0}\" ha l'impronta digitale \"{1}\"",
+ "$(info) Remote \"{0}\" has no tags.": "$(info) \"{0}\" remoto non contiene tag.",
+ "$(info) This repository has no stashes.": "$(info) Questo repository non contiene hash.",
+ "$(info) This repository has no tags.": "$(info) Non esistono tag per questo repository.",
+ "$(info) This repository has no worktrees.": "$(info) Questo repository non contiene alberi di lavoro.",
+ "A branch named \"{0}\" already exists": "Esiste già un ramo denominato \"{0}\"",
+ "A git repository was found in the parent folders of the workspace or the open file(s). Would you like to open the repository?": "È stato trovato un repository Git nelle cartelle padre dell'area di lavoro o dei file aperti. Aprire il repository?",
+ "A worktree already exists at \"{0}\".": "Un albero di lavoro esiste già in \"{0}\".",
+ "Absolute paths not supported in \"git.scanRepositories\" setting.": "I percorsi assoluti non sono supportati nell'impostazione \"git.scanRepositories\".",
+ "Add Remote": "Aggiungi repository remoto",
+ "Add a new remote...": "Aggiungi un nuovo computer remoto...",
+ "Add remote from URL": "Aggiungi repository remoto da URL",
+ "Add remote from {0}": "Aggiungi repository remoto da {0}",
+ "Add to Workspace": "Aggiungi all'Area di Lavoro",
+ "All Repositories": "Tutti gli repository",
+ "Always": "Sempre",
+ "Always Pull": "Esegui sempre il pull",
+ "Always Replace Local Tag(s)": "Sostituisci sempre tag locali",
+ "Are you sure you want to DELETE the following untracked file: '{0}'?{1}": "Eliminare il file non verificato seguente: '{0}'?{1}",
+ "Are you sure you want to DELETE the {0} untracked files?{1}": "Eliminare i {0} file non tracciati?{1}",
+ "Are you sure you want to continue connecting?": "Continuare la connessione?",
+ "Are you sure you want to create an empty commit?": "Creare un commit vuoto?",
+ "Are you sure you want to delete branch \"{0}\"? This action will permanently remove the branch reference from the repository.": "Eliminare il ramo \"{0}\"? Questa azione rimuoverà definitivamente il riferimento al ramo dal repository.",
+ "Are you sure you want to delete tag \"{0}\"? This action will permanently remove the tag reference from the repository.": "Eliminare il tag {0}? Questa azione rimuoverà definitivamente il riferimento al tag dal repository.",
+ "Are you sure you want to discard ALL changes in {0} files?\n\nThis is IRREVERSIBLE!\nYour current working set will be FOREVER LOST if you proceed.": "Rimuovere TUTTE le modifiche apportate in {0} file?\n\nQuesta operazione è IRREVERSIBILE.\nSe si procede, il set di lavoro corrente andrà PERSO DEFINITIVAMENTE.",
+ "Are you sure you want to discard changes in '{0}'?": "Rimuovere le modifiche in '{0}'?",
+ "Are you sure you want to drop ALL stashes? There are {0} stashes that will be subject to pruning, and MAY BE IMPOSSIBLE TO RECOVER.": "Rimuovere TUTTI gli accantonamenti? Sono presenti {0} accantonamenti che verranno eliminati e POTREBBERO ESSERE IMPOSSIBILI DA RECUPERARE.",
+ "Are you sure you want to drop ALL stashes? There is 1 stash that will be subject to pruning, and MAY BE IMPOSSIBLE TO RECOVER.": "Rimuovere TUTTI gli accantonamenti? È presente 1 accantonamento che verrà eliminato e POTREBBE ESSERE IMPOSSIBILE DA RECUPERARE.",
+ "Are you sure you want to drop the stash: {0}?": "Rimuovere l'accantonamento {0}?",
+ "Are you sure you want to restore '{0}'?": "Ripristinare '{0}'?",
+ "Are you sure you want to restore ALL {0} files?": "Ripristinare TUTTI i {0} file?",
+ "Are you sure you want to stage {0} files with merge conflicts?": "Preparare per il commit {0} file con conflitti di merge?",
+ "Are you sure you want to stage {0} with merge conflicts?": "Preparare per il commit {0} con conflitti di merge?",
+ "Ask Me Later": "Chiedimelo in seguito",
+ "Branch \"{0}\" already exists": "Il ramo \"{0}\" esiste già",
+ "Branch \"{0}\" is already checked out in the current repository.": "Il ramo \"{0}\" è già stato sottoposto a check-out nel repository corrente.",
+ "Branch \"{0}\" is already checked out in the current window.": "Il ramo \"{0}\" è già stato sottoposto a check-out nella finestra corrente.",
+ "Branch \"{0}\" is already checked out in the worktree at \"{1}\".": "Il ramo \"{0}\" è già stato estratto nell'albero di lavoro in \"{1}\".",
+ "Branch name": "Nome ramo",
+ "Branch name needs to match regex: {0}": "Il nome del ramo deve corrispondere all'espressione regex: {0}",
+ "Branches": "Rami",
+ "Can't force push refs to remote. The tip of the remote-tracking branch has been updated since the last checkout. Try running \"Pull\" first to pull the latest changes from the remote branch first.": "Non è possibile forzare il push dei riferimenti in remoto. L’estremità del ramo di rilevamento remoto è stata aggiornata dopo l’ultimo checkout. Provare prima a eseguire \"Pull\" per eseguire prima il pull delle modifiche più recenti dal ramo remoto.",
+ "Can't push refs to remote. Try running \"Pull\" first to integrate your changes.": "Impossibile fare push dei ref su remoto. Provare a eseguire un \"Pull\" prima, per integrare le modifiche.",
+ "Can't undo because HEAD doesn't point to any commit.": "Non è possibile annullare l'operazione perché HEAD non fa riferimento ad alcun commit.",
+ "Changes": "Modifiche",
+ "Checking Out Branch/Tag...": "Estrazione ramo/tag in corso...",
+ "Checking Out Changes...": "Estrazione delle modifiche in corso...",
+ "Checkout Branch/Tag...": "Eseguire il checkout del ramo/tag...",
+ "Choose Folder...": "Scegli cartella...",
+ "Choose a folder to clone {0} into": "Scegliere una cartella in cui clonare {0}",
+ "Choose a repository": "Scegli un repository",
+ "Choose which repository to clone": "Scegliere il repository da clonare",
+ "Choose which repository to publish": "Scegliere il repository da pubblicare",
+ "Clear whitespace characters": "Cancella spazi vuoti",
+ "Clone again": "Clona di nuovo",
+ "Clone from URL": "URL del repository",
+ "Clone from {0}": "Clona da {0}",
+ "Cloning git repository \"{0}\"...": "Clonazione del repository Git \"{0}\"...",
+ "Commit": "Esegui commit",
+ "Commit & Push Changes": "Commit e push delle modifiche",
+ "Commit & Sync Changes": "Commit e sincronizzazione delle modifiche",
+ "Commit Anyway": "Eseguire comunque il commit",
+ "Commit Changes": "Eseguire il commit delle modifiche",
+ "Commit Changes on \"{0}\"": "Esegui il commit delle modifiche su \"{0}\"",
+ "Commit Changes to New Branch": "Eseguire il commit delle modifiche apportate a un nuovo ramo",
+ "Commit Hash": "Hash del commit",
+ "Commit message": "Messaggio di commit",
+ "Commit operation was cancelled due to empty commit message.": "L'operazione di commit è stata annullata a causa di un messaggio di commit vuoto.",
+ "Commit to New Branch & Push Changes": "Eseguire commit in un nuovo ramo e push delle modifiche",
+ "Commit to New Branch & Synchronize Changes": "Esegui il commit in un nuovo ramo e sincronizza le modifiche",
+ "Commit to a New Branch": "Eseguire il commit in un nuovo ramo",
+ "Commits without verification are not allowed, please enable them with the \"git.allowNoVerifyCommit\" setting.": "I commit senza verifica non sono consentiti. Abilitarli con l'impostazione \"git.allowNoVerifyCommit\".",
+ "Committing & Pushing Changes...": "Commit e push delle modifiche in corso...",
+ "Committing & Synchronizing Changes...": "Esecuzione del commit e sincronizzazione delle modifiche in corso...",
+ "Committing Changes to New Branch...": "Esecuzione del commit delle modifiche nel nuovo ramo in corso...",
+ "Committing Changes...": "Commit delle modifiche in corso...",
+ "Committing to New Branch & Pushing Changes...": "Eseguire commit in un nuovo ramo e pushing delle modifiche in corso...",
+ "Committing to New Branch & Synchronizing Changes...": "Esecuzione il commit su un nuovo ramo e sincronizzazione delle modifiche...",
+ "Conflict: Added By Them": "Conflitto: aggiunto dall'utente",
+ "Conflict: Added By Us": "Conflitto: aggiunto da Microsoft",
+ "Conflict: Both Added": "Conflitto: aggiunto dall'utente e da Microsoft",
+ "Conflict: Both Deleted": "Conflitto: eliminato dall'utente e da Microsoft",
+ "Conflict: Both Modified": "Conflitto: modificato dall'utente e da Microsoft",
+ "Conflict: Deleted By Them": "Conflitto: eliminato dall'utente",
+ "Conflict: Deleted By Us": "Conflitto: eliminato da Microsoft",
+ "Continue Merge": "Continua merge",
+ "Continue Rebase": "Continua riassegnazione",
+ "Continuing Merge...": "Merge in corso...",
+ "Continuing Rebase...": "Continuazione della riassegnazione...",
+ "Copy Commit Hash": "Copia l'hash di commit",
+ "Could not clone your repository as Git is not installed.": "Non è stato possibile clonare il repository perché Git non è installato.",
+ "Create Empty Commit": "Crea commit vuoto",
+ "Create New Branch": "Crea nuovo ramo",
+ "Current": "Corrente",
+ "Current commit message only contains whitespace characters": "Il messaggio di commit corrente contiene solo spazi vuoti",
+ "Delete All {0} Files": "Elimina tutti i file {0}",
+ "Delete Branch": "Elimina ramo",
+ "Delete File": "Elimina file",
+ "Delete Tag": "Elimina tag",
+ "Deleted": "Eliminato",
+ "Discard 1 Tracked File": "Rimuovi 1 file di cui viene tenuta traccia",
+ "Discard All {0} Files": "Rimuovi tutti i {0} file",
+ "Discard All {0} Tracked Files": "Rimuovi tutti i {0} file tracciati",
+ "Discard File": "Rimuovi file",
+ "Don't Pull": "Non eseguire il pull",
+ "Don't Show Again": "Non visualizzare più questo messaggio",
+ "Download Git": "Scarica GIT",
+ "Enables the following features: {0}": "Abilita le funzionalità seguenti: {0}",
+ "Failed to authenticate to git remote.": "Non è stato possibile eseguire l'autenticazione al repository remoto GIT.",
+ "Failed to authenticate to git remote:\n\n{0}": "Non è stato possibile eseguire l'autenticazione al repository remoto GIT:\n\n{0}",
+ "Failed to delete using the Recycle Bin. Do you want to permanently delete instead?": "Impossibile eliminare utilizzando il Cestino. Si desidera eliminare definitivamente invece?",
+ "Failed to delete using the Trash. Do you want to permanently delete instead?": "Impossibile eliminare utilizzando il Cestino. Si desidera eliminare definitivamente invece?",
+ "Failed to open changes between \"{0}\" and \"{1}\": {2}": "Apertura delle modifiche tra \"{0}\" e \"{1}\" non riuscita: {2}",
+ "File \"{0}\" was deleted by them and modified by us.\n\nWhat would you like to do?": "Il file \"{0}\" è stato eliminato da altri utenti e modificato dall'utente corrente.\n\nCome si vuole procedere?",
+ "File \"{0}\" was deleted by us and modified by them.\n\nWhat would you like to do?": "Il file \"{0}\" è stato eliminato dall'utente corrente e modificato da altri utenti.\n\nCome si vuole procedere?",
+ "Force Checkout": "Forza checkout",
+ "Force Delete": "Forza eliminazione",
+ "Force push is not allowed, please enable it with the \"git.allowForcePush\" setting.": "Il push forzato non è consentito. Per abilitarlo, usare l'impostazione \"git.allowForcePush\".",
+ "Git Blame Information": "Informazioni errore GIT",
+ "Git History": "Cronologia GIT",
+ "Git Local Changes (Index)": "Modifiche locali Git (indice)",
+ "Git Local Changes (Working Tree)": "Modifiche locali Git (albero di lavoro)",
+ "Git error": "Errore GIT",
+ "Git not found. Install it or configure it using the \"git.path\" setting.": "Git non trovato. Installarlo o configurarlo usando l'impostazione \"git.path\".",
+ "Git repositories were found in the parent folders of the workspace or the open file(s). Would you like to open the repositories?": "I repository Git sono stati trovati nelle cartelle padre dell'area di lavoro o dei file aperti. Aprire i repository?",
+ "Git: {0}": "GIT: {0}",
+ "HEAD version of \"{0}\" is not available.": "La versione HEAD di \"{0}\" non è disponibile.",
+ "Hard wrap all lines": "Applica il ritorno a capo a tutte le righe",
+ "Hard wrap line": "Applica il ritorno a capo alla riga",
+ "Ignored": "Ignorato",
+ "Incoming": "In ingresso",
+ "Incoming Changes": "Modifiche in ingresso",
+ "Incoming Changes (added)": "Modifiche in ingresso (aggiunte)",
+ "Incoming Changes (deleted)": "Modifiche in ingresso (eliminate)",
+ "Incoming Changes (modified)": "Modifiche in ingresso (modificate)",
+ "Incoming Changes (renamed)": "Modifiche in ingresso (rinominate)",
+ "Index Added": "Indice aggiunto",
+ "Index Copied": "Indice copiato",
+ "Index Deleted": "Indice eliminato",
+ "Index Modified": "Indice modificato",
+ "Index Renamed": "Indice rinominato",
+ "Initialize Repository": "Inizializza repository",
+ "Intent to Add": "Finalità da aggiungere",
+ "Intent to Rename": "Finalità di ridenominazione",
+ "Invalid branch name": "Nome di branch non valido",
+ "It looks like the current branch \"{0}\" might have been rebased. Are you sure you still want to pull into it?": "Il ramo corrente \"{0}\" potrebbe essere stato riassegnato. Eseguire comunque il pull nel ramo?",
+ "It looks like the current branch might have been rebased. Are you sure you still want to pull into it?": "Il ramo corrente potrebbe essere stato riassegnato. Eseguire comunque il pull in esso?",
+ "It's not possible to change the commit message in the middle of a rebase. Please complete the rebase operation and use interactive rebase instead.": "Non è possibile modificare il messaggio di commit durante una riassegnazione. Completare l'operazione corrente e usare invece una riassegnazione interattiva.",
+ "Keep Our Version": "Mantieni la versione dell'utente corrente",
+ "Keep Their Version": "Mantieni la versione degli altri utenti",
+ "Learn More": "Altre informazioni",
+ "Make sure you configure your \"user.name\" and \"user.email\" in git.": "Assicurarsi di configurare \"user.name\" e \"user.email\" in GIT.",
+ "Manage Unsafe Repositories": "Gestire repository non sicuri",
+ "Merge Changes": "Esegui merge delle modifiche",
+ "Message": "Messaggio",
+ "Message (commit on \"{0}\")": "Messaggio (commit in \"{0}\")",
+ "Message ({0} to commit on \"{1}\")": "Messaggio ({0} per eseguire il commit in \"{1}\")",
+ "Message ({0} to commit)": "Messaggio ({0} per eseguire il commit)",
+ "Migrate Changes": "Eseguire la migrazione delle modifiche",
+ "Modified": "Modificato",
+ "Move to Recycle Bin": "Sposta nel Cestino",
+ "Move to Trash": "Sposta nel cestino",
+ "Never": "Mai",
+ "No": "No",
+ "No hunk found at cursor position.": "Nessun hunk trovato nella posizione del cursore.",
+ "No rebase in progress.": "Non è in corso alcuna riassegnazione.",
+ "Not Committed Yet": "Non ancora eseguito il commit",
+ "Not Committed Yet (Staged)": "Commit non ancora eseguito (a fasi)",
+ "OK": "OK",
+ "OK, Don't Ask Again": "OK, non visualizzare più questo messaggio",
+ "OK, Don't Show Again": "OK, non visualizzare più",
+ "Open": "Apri",
+ "Open Commit": "Apri commit",
+ "Open Comparison": "Apri confronto",
+ "Open Existing Repository Clone": "Apri clone del repository esistente",
+ "Open File": "Apri file",
+ "Open Git Log": "Apri log GIT",
+ "Open Merge": "Apri merge",
+ "Open Repositories In Parent Folders": "Apri repository nelle cartelle padre",
+ "Open Repository": "Apri repository",
+ "Open Settings": "Apri impostazioni",
+ "Open Worktree in Current Window": "Apri albero di lavoro nella finestra corrente",
+ "Open Worktree in New Window": "Apri albero di lavoro in una nuova finestra",
+ "Open in New Window": "Apri in una nuova finestra",
+ "Optionally provide a stash message": "Specificare un messaggio di accantonamento (facoltativo)",
+ "Passphrase": "Passphrase",
+ "Pick a branch to pull from": "Selezionare un ramo da cui eseguire il pull",
+ "Pick a provider to publish the branch \"{0}\" to:": "Selezionare un provider in cui pubblicare il ramo \"{0}\":",
+ "Pick a remote to publish the branch \"{0}\" to:": "Selezionare un repository remoto in cui pubblicare il ramo \"{0}\":",
+ "Pick a remote to pull the branch from": "Selezionare un repository remoto da cui effettuare il pull del ramo",
+ "Pick a remote to remove": "Scegliere un repository remoto da rimuovere",
+ "Pick a repository to mark as safe and open": "Selezionar un repository da contrassegnare come sicuro e aprir",
+ "Pick a repository to open": "Selezionare un repository da aprire.",
+ "Pick a repository to reopen": "Seleziona un repository da riaprire",
+ "Pick a stash to apply": "Scegli un accantonamento da applicare",
+ "Pick a stash to drop": "Selezionare un accantonamento da rimuovere",
+ "Pick a stash to pop": "Scegli un accantonamento da prelevare",
+ "Pick a stash to view": "Selezionare un accantonamento da rimuovere",
+ "Pick workspace folder to initialize git repo in": "Selezionare la cartella dell'area di lavoro in cui inizializzare il Git repo",
+ "Please check out a branch to push to a remote.": "Estrarre un ramo per eseguire il push in un elemento remoto.",
+ "Please clean your repository working tree before checkout.": "Pulire l'albero di lavoro del repository prima dell'estrazione.",
+ "Please provide a commit message": "Specificare un messaggio di commit",
+ "Please provide a message to annotate the tag": "Specificare un messaggio per aggiungere un'annotazione per il tag",
+ "Please provide a new branch name": "Specificare un nuovo nome di ramo",
+ "Please provide a remote name": "Specificare un nome di repository remoto",
+ "Please provide a tag name": "Specificare un nome di tag",
+ "Please provide a worktree path": "Specificare un percorso per l'albero di lavoro",
+ "Please provide the commit hash": "Specificare l'hash del commit",
+ "Proceed": "Continua",
+ "Proceed with migrating changes to the current repository?": "Procedere con la migrazione delle modifiche al repository corrente?",
+ "Publish Branch": "Pubblica Ramo",
+ "Publish Branch \"{0}\"/{Locked=\"Branch\"}Do not translate \"Branch\" as it is a git term": "Pubblica Branch \"{0}\"",
+ "Publish Branch/{Locked=\"Branch\"}Do not translate \"Branch\" as it is a git term": "Pubblica Branch",
+ "Publish to {0}": "Pubblica in {0}",
+ "Publish to...": "Pubblica in...",
+ "Publishing Branch \"{0}\".../{Locked=\"Branch\"}Do not translate \"Branch\" as it is a git term": "Pubblicazione del Branch \"{0}\"...",
+ "Publishing Branch.../{Locked=\"Branch\"}Do not translate \"Branch\" as it is a git term": "Pubblicazione Branch in corso...",
+ "Pull": "Esegui pull",
+ "Pull {0} and push {1} commits between {2}/{3}": "Esegui il pull di {0} e il push di {1} commit tra {2}/{3}",
+ "Pull {0} commits from {1}/{2}": "Esegui il pull di {0} commit da {1}/{2}",
+ "Push {0} commits to {1}/{2}": "Esegui il push di {0} commit in {1}/{2}",
+ "Rebasing": "Rebase in corso",
+ "Regenerate Branch Name": "Rigenera nome ramo",
+ "Remote \"{0}\" already exists.": "Il repository remoto \"{0}\" esiste già.",
+ "Remote branch at {0}": "Ramo remoto in {0}",
+ "Remote name": "Nome del repository remoto",
+ "Remote name format invalid": "Il formato del nome di repository remoto non è valido",
+ "Remote tag at {0}": "Tag remoto in {0}",
+ "Reopen Closed Repositories": "Riapri repository chiusi",
+ "Replace Local Tag(s)": "Sostituisci tag locali",
+ "Restore All {0} Files": "Ripristina tutti i file {0}",
+ "Restore File": "Ripristina file",
+ "Save All & Commit Changes": "Salva tutto ed esegui il commit delle modifiche",
+ "Save All & Stash": "Salva tutto e accantona",
+ "Select Worktree Destination": "Selezionare la destinazione dell'albero di lavoro",
+ "Select a branch or tag to checkout": "Selezionare un ramo o un tag di cui eseguire il checkout",
+ "Select a branch or tag to create the new worktree from": "Seleziona un ramo o un tag da cui creare il nuovo albero di lavoro",
+ "Select a branch or tag to merge from": "Selezionare un ramo o un tag da cui eseguire il merge",
+ "Select a branch to checkout in detached mode": "Selezionare un ramo da estrarre in modalità scollegata",
+ "Select a branch to delete": "Seleziona un ramo da cancellare",
+ "Select a branch to rebase onto": "Selezionare un ramo in base a cui eseguire la riassegnazione",
+ "Select a ref to create the branch from": "Selezionare un riferimento da cui creare il ramo",
+ "Select a reference to compare with": "Seleziona un riferimento per il confronto",
+ "Select a remote branch to delete": "Selezionare un ramo remoto da eliminare",
+ "Select a remote tag to delete": "Selezionare un tag remoto da eliminare",
+ "Select a remote to delete a tag from": "Selezionare un telecomando da cui eliminare un tag",
+ "Select a remote to fetch": "Selezionare un repository remoto da recuperare",
+ "Select a tag to delete": "Selezionare un tag da eliminare",
+ "Select a worktree to delete": "Selezionare un albero di lavoro da eliminare",
+ "Select a worktree to migrate changes from": "Seleziona un albero di lavoro da cui migrare le modifiche",
+ "Select as Repository Destination": "Seleziona come destinazione del repository",
+ "Select as Worktree Destination": "Selezionare come destinazione dell'albero di lavoro",
+ "Show Changes": "Mostra modifiche",
+ "Show Command Output": "Mostra output del comando",
+ "Staged Changes": "Modifiche preparate per il commit",
+ "Stash & Checkout": "Accantona ed esegui checkout",
+ "Stash Anyway": "Accantona comunque",
+ "Stash message": "Messaggio di accantonamento",
+ "Stashed Changes": "Modifiche archiviate",
+ "Successfully pushed.": "Push avvenuto con successo.",
+ "Synchronize Changes": "Sincronizza modifiche",
+ "Synchronizing Changes...": "Sincronizzazione delle modifiche in corso...",
+ "Syncing. Cancelling may cause serious damages to the repository": "Sincronizzazione in corso. L'annullamento dell'operazione può causare gravi danni al repository",
+ "Tag at {0}": "Tag in {0}",
+ "Tag name": "Nome tag",
+ "Tags": "Tag",
+ "The \"{0}\" repository has {1} submodules which won't be opened automatically. You can still open each one individually by opening a file within.": "Il repository \"{0}\" ha {1} sottomoduli che non verranno aperti automaticamente. È possibile comunque aprirli individualmente aprendo il file all'interno.",
+ "The \"{0}\" repository has {1} worktrees which won't be opened automatically. You can still open each one individually by opening a file within.": "Il repository \"{0}\" ha {1} alberi di lavoro che non verranno aperti automaticamente. È possibile comunque aprirli individualmente aprendo il file all'interno.",
+ "The active branch cannot be deleted.": "Impossibile eliminare il ramo attivo.",
+ "The branch \"{0}\" has no remote branch. Would you like to publish this branch?": "Il ramo \"{0}\" non dispone di un ramo remoto. Pubblicare questo ramo?",
+ "The branch \"{0}\" is not fully merged. Delete anyway?": "Il merge del ramo \"{0}\" non è completo. Eliminare comunque?",
+ "The changes are already present in the current branch.": "Le modifiche sono già presenti nel ramo corrente.",
+ "The current branch is not published to the remote. Would you like to publish it to access your changes elsewhere?": "Il ramo corrente non è pubblicato nel repository remoto. Pubblicarlo per accedere alle modifiche in un'altra posizione?",
+ "The following file has unresolved diagnostics: '{0}'.\n\nHow would you like to proceed?": "Il file seguente contiene una diagnostica non risolta: '{0}'.\n\nCome vuoi procedere?",
+ "The following file has unsaved changes which won't be included in the commit if you proceed: {0}.\n\nWould you like to save it before committing?": "Il file seguente contiene modifiche non salvate che non verranno incluse nel commit se si procede: {0}.\n\nSalvarlo prima del commit?",
+ "The following file has unsaved changes which won't be included in the stash if you proceed: {0}.\n\nWould you like to save it before stashing?": "Il file seguente contiene modifiche non salvate che non verranno incluse nell'accantonamento se si procede: {0}.\n\nSalvarlo prima dell'accantonamento?",
+ "The git repositories in the current folder are potentially unsafe as the folders are owned by someone other than the current user.": "I repository Git nella cartella corrente potrebbe non essere sicuro perché le cartelle sono di proprietà di un utente diverso dall'utente corrente.",
+ "The git repository at \"{0}\" has too many active changes, only a subset of Git features will be enabled.": "Il repository Git \"{0}\" ha troppe modifiche attive. Verrà attivato solo un sottoinsieme delle funzionalità di Git.",
+ "The git repository in the current folder is potentially unsafe as the folder is owned by someone other than the current user.": "Il repository Git nella cartella corrente potrebbe non essere sicuro perché la cartella è di proprietà di un utente diverso dall'utente corrente.",
+ "The last commit was a merge commit. Are you sure you want to undo it?": "L'ultimo commit è stato un commit di merge. Annullarlo?",
+ "The new branch will be \"{0}\"": "Il nuovo ramo sarà \"{0}\"",
+ "The remote branch of the active branch cannot be deleted.": "Impossibile eliminare il ramo remoto del ramo attivo.",
+ "The repository does not have any changes.": "Il repository non presenta modifiche.",
+ "The repository does not have any commits. Please make an initial commit before creating a stash.": "Il repository non contiene commit. Effettuare un commit iniziale prima di creare un accantonamento.",
+ "The repository does not have any staged changes.": "Il repository non presenta modifiche in corso.",
+ "The repository does not have any untracked changes.": "Il repository non presenta modifiche non tracciate.",
+ "The selection range does not contain any changes.": "L\\'intervallo di selezione non contiene modifiche.",
+ "The source repository could not be found.": "Non è possibile trovare il repository sorgente.",
+ "The worktree contains modified or untracked files. Do you want to force delete?": "L'albero di lavoro contiene file modificati o non tracciati. Forzare l'eliminazione?",
+ "There are known issues with the installed Git \"{0}\". Please update to Git >= 2.27 for the git features to work correctly.": "La versione installata \"{0}\" di Git causa problemi noti. Per il corretto funzionamento delle funzionalità Git, è necessario eseguire l'aggiornamento a GIT >= 2.27.",
+ "There are merge conflicts from migrating changes. Please resolve them before committing.": "Sono presenti conflitti di merge durante la migrazione delle modifiche. Risolverli prima di eseguire il commit.",
+ "There are merge conflicts while applying the stash. Please resolve them before committing your changes.": "Sono presenti conflitti di merge durante l'applicazione dell'accantonamento. Risolverli prima di eseguire il commit delle modifiche.",
+ "There are merge conflicts. Please resolve them before committing your changes.": "Sono presenti conflitti di merge. Risolverli prima di eseguire il commit delle modifiche.",
+ "There are no available repositories": "Non ci sono repository disponibili",
+ "There are no available repositories matching the filter": "Non sono disponibili repository corrispondenti al filtro",
+ "There are no changes between \"{0}\" and \"{1}\".": "Non sono presenti modifiche tra \"{0}\" e \"{1}\".",
+ "There are no changes in the selected worktree to migrate.": "Non sono presenti modifiche nell'albero di lavoro selezionato di cui eseguire la migrazione.",
+ "There are no changes to commit.": "Non ci sono modifiche di cui eseguire il commit.",
+ "There are no changes to stash.": "Non ci sono modifiche da accantonare.",
+ "There are no staged changes to commit.\n\nWould you like to stage all your changes and commit them directly?": "Non ci sono modifiche preparate per il commit di cui eseguire il commit.\n\nPreparare per il commit tutte le modifiche ed eseguirne il commit direttamente?",
+ "There are no staged changes to stash.": "Non sono presenti modifiche a fasi da accantonare.",
+ "There are no stashes in the repository.": "Non ci sono accantonamenti nel repository.",
+ "There are {0} files that have unresolved diagnostics.\n\nHow would you like to proceed?": "Sono presenti file {0} con diagnostica non risolta.\n\nCome vuoi procedere?",
+ "There are {0} unsaved files.\n\nWould you like to save them before committing?": "Sono presenti {0} file non salvati.\n\nSalvarli prima di eseguire il commit?",
+ "There are {0} unsaved files.\n\nWould you like to save them before stashing?": "Sono presenti {0} file non salvati.\n\nSalvarli prima dell'accantonamento?",
+ "There were merge conflicts while cherry picking the changes. Resolve the conflicts before committing them.": "Si sono verificati conflitti di merge durante la selezione delle modifiche. Risolvere i conflitti prima di eseguirne il commit.",
+ "This action will pull and push commits from and to \"{0}/{1}\".": "Questa azione eseguirà il pull e il push dei commit da e verso \"{0}/{1}\".",
+ "This is IRREVERSIBLE!\nThese files will be FOREVER LOST if you proceed.": "Questa operazione è IRREVERSIBILE.\nSe si procede, questi file andranno PERSI DEFINITIVAMENTE.",
+ "This is IRREVERSIBLE!\nThis file will be FOREVER LOST if you proceed.": "Questa operazione è IRREVERSIBILE.\nSe si procede, questo file andrà PERSO DEFINITIVAMENTE.",
+ "This repository has no remotes configured to fetch from.": "Questo repository non ha remote configurati da cui eseguire un fetch.",
+ "This will apply the worktree's changes to this repository and discard changes in the worktree.\nThis is IRREVERSIBLE!": "Verranno applicate le modifiche del albero di lavoro a questo repository e verranno rimosse le modifiche nell'albero di lavoro.\nQuesta operazione è IRREVERSIBILE.",
+ "This will create a Git repository in \"{0}\". Are you sure you want to continue?": "Questo creerà un repository Git in \"{0}\". Continuare?",
+ "Too many changes were detected. Only the first {0} changes will be shown below.": "Sono state rilevate troppe modifiche. Di seguito verranno visualizzate solo le prime {0} modifiche.",
+ "Type Changed": "Tipo modificato",
+ "Unable to pull from remote repository due to conflicting tag(s): {0}. Would you like to resolve the conflict by replacing the local tag(s)?": "Non è possibile eseguire il pull dal repository remoto a causa di tag in conflitto: {0}. Risolvere il conflitto sostituendo i tag locali?",
+ "Uncommitted Changes": "Modifiche non sottoposte a commit",
+ "Undo merge commit": "Annulla commit di merge",
+ "Untracked": "Non registrato",
+ "Untracked Changes": "Modifiche non tracciate",
+ "Update Git": "Aggiorna GIT",
+ "View Problems": "Visualizza problemi",
+ "Workspace": "Area di lavoro",
+ "Workspace: {0}": "Area di lavoro: {0}",
+ "Worktree": "Albero di lavoro",
+ "Worktree path": "Percorso dell'albero di lavoro",
+ "Would you like to add \"{0}\" to .gitignore?": "Aggiungere \"{0}\" a .gitignore?",
+ "Would you like to open the initialized repository, or add it to the current workspace?": "Aprire il repository inizializzato o aggiungerlo all'area di lavoro corrente?",
+ "Would you like to open the initialized repository?": "Aprire il repository inizializzato?",
+ "Would you like to open the repository, or add it to the current workspace?": "Aprire il repository clonato o aggiungerlo all'area di lavoro corrente?",
+ "Would you like to open the repository?": "Aprire il repository?",
+ "Would you like to publish this repository to continue working on it elsewhere?": "Pubblicare questo repository per continuare a lavorarci altrove?",
+ "Would you like {0} to [periodically run \"git fetch\"]({1})?": "Si vuole che {0} [esegua periodicamente \"git fetch\"]({1})?",
+ "Yes": "Sì",
+ "Yes, Don't Show Again": "Sì, non visualizzare più questo messaggio",
+ "You": "Utente",
+ "You are about to commit your changes without verification, this skips pre-commit hooks and can be undesirable.\n\nAre you sure to continue?": "Si sta per eseguire il commit delle modifiche senza verifica. Con questa operazione gli hook pre-commit verranno ignorati e tale comportamento può non essere quello desiderato.\n\nContinuare?",
+ "You are about to force push your changes, this can be destructive and could inadvertently overwrite changes made by others.\n\nAre you sure to continue?": "Si sta per eseguire il push forzato delle modifiche. Questa operazione può essere distruttiva e comportare la sovrascrittura accidentale di modifiche apportate da altri utenti.\n\nContinuare?",
+ "You are trying to commit to a protected branch and you might not have permission to push your commits to the remote.\n\nHow would you like to proceed?": "Si sta tentando di eseguire il commit in un ramo protetto e potrebbe non essere disponibile l'autorizzazione per eseguire il push dei commit nel ramo remoto.\n\nCome procedere?",
+ "You can restore these files from the Recycle Bin.": "È possibile ripristinare questi file dal Cestino.",
+ "You can restore these files from the Trash.": "È possibile ripristinare questi file dal Cestino.",
+ "You can restore this file from the Recycle Bin.": "È possibile ripristinare questo file dal Cestino.",
+ "You can restore this file from the Trash.": "È possibile ripristinare questo file dal Cestino.",
+ "You cannot delete the worktree you are currently in. Please switch to the main repository first.": "Non è possibile eliminare l'albero di lavoro in cui ci si sta attualmente. Passare prima al repository principale.",
+ "You seem to have git \"{0}\" installed. Code works best with git >= 2": "La versione installata di GIT è la \"{0}\". Per il corretto funzionamento di Code è consigliabile usare una versione di GIT non inferiore alla 2.",
+ "Your local changes to the following files would be overwritten by merge:\n {0}\n\nPlease stage, commit, or stash your changes in the repository before migrating changes.": "Le modifiche locali ai file seguenti vengono sovrascritte dall'unione:\n {0}\n\nEseguire staging, commit o l'eliminazione delle modifiche nel repository prima di eseguire la migrazione delle modifiche.",
+ "Your local changes would be overwritten by checkout.": "Le modifiche locali verranno sovrascritte dal checkout.",
+ "Your repository has no remotes configured to publish to.": "Il repository non contiene elementi remoti configurati come destinazione della pubblicazione.",
+ "Your repository has no remotes configured to pull from.": "Il repository non contiene elementi remoti configurati come origini del pull.",
+ "Your repository has no remotes configured to push to.": "Il repository non contiene elementi remoti configurati come destinazione del push.",
+ "Your repository has no remotes.": "Il repository non contiene repository remoti.",
+ "[main] Log level: {0}": "[main] Livello di log: {0}",
+ "[main] Skipped found git in: \"{0}\"": "[main] Il git trovato è stato ignorato in: \"{0}\"",
+ "[main] Using git \"{0}\" from \"{1}\"": "[main] Uso di \"{0}\" da \"{1}\"",
+ "[main] Validating found git in: \"{0}\"": "[main] Convalida del git trovato in: \"{0}\"",
+ "branches": "rami",
+ "in {0}": "in {0}",
+ "no": "no",
+ "now": "adesso",
+ "remote branches": "rami remoti",
+ "tags": "tag",
+ "yes": "sì",
+ "{0} (Deleted)": "{0} (eliminato)",
+ "{0} (Index)": "{0} (Indice)",
+ "{0} (Intent to add)": "{0} (Finalità da aggiungere)",
+ "{0} (Ours)": "{0} (versione utente)",
+ "{0} (Theirs)": "{0} (versione server)",
+ "{0} (Type changed)": "{0} (tipo modificato)",
+ "{0} (Untracked)": "{0} (non tracciati)",
+ "{0} (Working Tree)": "{0} (Albero di lavoro)",
+ "{0} ({1})": "{0} ({1})",
+ "{0} ({1}) ș {0} ({2})": "{0} ({1}) ș {0} ({2})",
+ "{0} Checkout detached...": "{0} checkout scollegato...",
+ "{0} Commit": "{0} Commit",
+ "{0} Commit & Push": "{0}commit e push",
+ "{0} Commit & Sync": "{0} commit e sincronizzazione",
+ "{0} Commit (Amend)": "commit{0} (modifica)",
+ "{0} Continue": "{0} Continua",
+ "{0} Create new branch from...": "{0} Crea nuovo ramo da...",
+ "{0} Create new branch...": "{0} Crea nuovo ramo...",
+ "{0} Fetch all remotes": "{0} Recupera tutti i repository remoti",
+ "{0} Publish Branch/{Locked=\"Branch\"}Do not translate \"Branch\" as it is a git term": "{0} Pubblica Branch",
+ "{0} Sync Changes{1}{2}": "{0} Sincronizza modifiche{1}{2}",
+ "{0} characters over {1} in current line": "{0} caratteri rispetto ai {1} disponibili nella riga corrente",
+ "{0} day": "{0} giorno",
+ "{0} day ago": "{0} giorno fa",
+ "{0} days": "{0} giorni",
+ "{0} days ago": "{0} giorni fa",
+ "{0} deletions{1}": "{0} eliminazioni{1}",
+ "{0} deletion{1}": "{0} eliminazione{1}",
+ "{0} file changed": "{0} file modificato",
+ "{0} files changed": "{0} file modificati",
+ "{0} hour": "{0} ora",
+ "{0} hour ago": "{0} ora fa",
+ "{0} hours": "{0} ore",
+ "{0} hours ago": "{0} ore fa",
+ "{0} hr": "{0} ora",
+ "{0} hr ago": "{0} ora fa",
+ "{0} hrs": "{0} ore",
+ "{0} hrs ago": "{0} ore fa",
+ "{0} insertions{1}": "{0} inserimenti{1}",
+ "{0} insertion{1}": "{0} inserimento{1}",
+ "{0} min": "{0} min",
+ "{0} min ago": "{0} min fa",
+ "{0} mins": "{0} min",
+ "{0} mins ago": "{0} min fa",
+ "{0} minute": "{0} minuto",
+ "{0} minute ago": "{0} minuto fa",
+ "{0} minutes": "{0} minuti",
+ "{0} minutes ago": "{0} minuti fa",
+ "{0} mo": "{0} mese",
+ "{0} mo ago": "{0} mese fa",
+ "{0} month": "{0} mese",
+ "{0} month ago": "{0} mese fa",
+ "{0} months": "{0} mesi",
+ "{0} months ago": "{0} mesi fa",
+ "{0} mos": "{0} mesi",
+ "{0} mos ago": "{0} mesi fa",
+ "{0} sec": "{0} sec",
+ "{0} sec ago": "{0} secondo fa",
+ "{0} second": "{0} secondo",
+ "{0} second ago": "{0} secondo fa",
+ "{0} seconds": "{0} secondi",
+ "{0} seconds ago": "{0} secondi fa",
+ "{0} secs": "{0} sec",
+ "{0} secs ago": "{0} secondi fa",
+ "{0} week": "{0} settimana",
+ "{0} week ago": "{0} settimana fa",
+ "{0} weeks": "{0} settimane",
+ "{0} weeks ago": "{0} settimane fa",
+ "{0} wk": "{0} sett",
+ "{0} wk ago": "{0} settimana fa",
+ "{0} wks": "{0} settimane",
+ "{0} wks ago": "{0} settimane fa",
+ "{0} year": "{0} anno",
+ "{0} year ago": "{0} anno fa",
+ "{0} years": "{0} anni",
+ "{0} years ago": "{0} anni fa",
+ "{0} yr": "{0} anno",
+ "{0} yr ago": "{0} anno fa",
+ "{0} yrs": "{0} anni",
+ "{0} yrs ago": "{0} anni fa",
+ "{0} ș {1}": "{0} ș {1}"
+ },
+ "package": {
+ "colors.added": "Colore delle risorse aggiunte.",
+ "colors.blameEditorDecoration": "Colore per la decorazione dell'editor di segnalazione di errore.",
+ "colors.conflict": "Colore delle risorse con conflitti.",
+ "colors.deleted": "Colore delle risorse eliminate.",
+ "colors.ignored": "Colore delle risorse ignorate.",
+ "colors.incomingAdded": "Colore per la risorsa in ingresso aggiunta.",
+ "colors.incomingDeleted": "Colore per la risorsa in ingresso eliminata.",
+ "colors.incomingModified": "Colore per la risorsa in ingresso modificata.",
+ "colors.incomingRenamed": "Colore per la risorsa in ingresso rinominata.",
+ "colors.modified": "Colore delle risorse modificate.",
+ "colors.renamed": "Colore delle risorse rinominate o copiate.",
+ "colors.stageDeleted": "Colore per le risorse eliminate che sono state preparate per il commit.",
+ "colors.stageModified": "Colore per le risorse modificate che sono state preparate per il commit.",
+ "colors.submodule": "Colore delle risorse sottomodulo.",
+ "colors.untracked": "Colore delle risorse non tracciate.",
+ "command.addRemote": "Aggiungi repository remoto...",
+ "command.api.getRemoteSources": "Ottieni Origini remote",
+ "command.api.getRepositories": "Ottieni Repository",
+ "command.api.getRepositoryState": "Ottieni Stato repository",
+ "command.blameToggleEditorDecoration": "Attiva/Disattiva la decorazione Editor di Git Blame",
+ "command.blameToggleStatusBarItem": "Attiva/Disattiva elemento della barra di stato di Segnalazione errore GIT",
+ "command.branch": "Crea ramo...",
+ "command.branchFrom": "Crea ramo da...",
+ "command.checkout": "Esegui checkout in...",
+ "command.checkoutDetached": "Esegui checkout in (modalità scollegata)...",
+ "command.cherryPick": "Esegui cherry-pick...",
+ "command.cherryPickAbort": "Interrompi cherry pick",
+ "command.clean": "Rimuovi modifiche",
+ "command.cleanAll": "Rimuovi tutte le modifiche",
+ "command.cleanAllTracked": "Rimuovi tutte le modifiche tracciate",
+ "command.cleanAllUntracked": "Rimuovi tutte le modifiche non tracciate",
+ "command.clone": "Clona",
+ "command.cloneRecursive": "Clona (ricorsivo)",
+ "command.close": "Chiudi repository",
+ "command.closeAllDiffEditors": "Chiudi tutti gli editor diff",
+ "command.closeAllUnmodifiedEditors": "Chiudi tutti gli editor non modificati",
+ "command.closeOtherRepositories": "Chiudi altri repository",
+ "command.commit": "Esegui commit",
+ "command.commitAll": "Esegui commit di tutto",
+ "command.commitAllAmend": "Esegui commit di tutto (modifica)",
+ "command.commitAllAmendNoVerify": "Esegui commit di tutto (modifica, nessuna verifica)",
+ "command.commitAllNoVerify": "Esegui commit di tutto (nessuna verifica)",
+ "command.commitAllSigned": "Esegui commit di tutto (approvazione)",
+ "command.commitAllSignedNoVerify": "Esegui commit di tutto (approvazione, nessuna verifica)",
+ "command.commitAmend": "Commit (modifica)",
+ "command.commitAmendNoVerify": "Esegui commit (modifica, nessuna verifica)",
+ "command.commitEmpty": "Commit vuoto",
+ "command.commitEmptyNoVerify": "Commit vuoto (nessuna verifica)",
+ "command.commitMessageAccept": "Accettare messaggio di commit",
+ "command.commitMessageDiscard": "Rimuovere messaggio di commit",
+ "command.commitNoVerify": "Esegui commit (nessuna verifica)",
+ "command.commitSigned": "Commit (disconnesso)",
+ "command.commitSignedNoVerify": "Esegui commit (approvazione, nessuna verifica)",
+ "command.commitStaged": "Esegui commit dei file preparati",
+ "command.commitStagedAmend": "Esegui commit dei file preparati (modifica)",
+ "command.commitStagedAmendNoVerify": "Esegui commit dei file preparati (modifica, nessuna verifica)",
+ "command.commitStagedNoVerify": "Esegui commit dei file preparati (nessuna verifica)",
+ "command.commitStagedSigned": "Esegui commit dei file preparati (approvazione)",
+ "command.commitStagedSignedNoVerify": "Esegui commit dei file preparati (approvazione, nessuna verifica)",
+ "command.compareWithWorkspace": "Confronta con Area di lavoro",
+ "command.continueInLocalClone": "Clona repository in locale e apri sul desktop...",
+ "command.continueInLocalClone.qualifiedName": "Continuare a lavorare nel nuovo clone locale",
+ "command.createFrom": "Crea da...",
+ "command.createTag": "Crea tag...",
+ "command.createWorktree": "Crea albero di lavoro...",
+ "command.deleteBranch": "Elimina ramo...",
+ "command.deleteRef": "Elimina",
+ "command.deleteRemoteBranch": "Elimina ramo remoto...",
+ "command.deleteRemoteTag": "Elimina tag remoto...",
+ "command.deleteTag": "Elimina tag...",
+ "command.deleteWorktree": "Elimina albero di lavoro...",
+ "command.deleteWorktree2": "Elimina albero di lavoro",
+ "command.fetch": "Recupera",
+ "command.fetchAll": "Recupera da tutti gli elementi remoti",
+ "command.fetchPrune": "Recupera (elimina)",
+ "command.git.acceptMerge": "Completa merge",
+ "command.git.openMergeEditor": "Risolvi nell'editor di merge",
+ "command.git.runGitMerge": "Conflitti di calcolo con Git",
+ "command.git.runGitMergeDiff3": "Conflitti di calcolo con GIT (Diff3)",
+ "command.graphCheckout": "Checkout",
+ "command.graphCheckoutDetached": "Checkout (scollegato)",
+ "command.graphCherryPick": "Cherry-pick",
+ "command.graphCompareRef": "Confronta con...",
+ "command.graphCompareWithMergeBase": "Confronta con base di merge",
+ "command.graphCompareWithRemote": "Confronta con remoto",
+ "command.graphDeleteBranch": "Elimina ramo",
+ "command.graphDeleteTag": "Elimina tag",
+ "command.ignore": "Aggiungi a .gitignore",
+ "command.init": "Inizializza repository",
+ "command.manageUnsafeRepositories": "Gestire repository non sicuri",
+ "command.merge": "Esegui merge...",
+ "command.merge2": "Unisci",
+ "command.mergeAbort": "Interrompi merge",
+ "command.migrateWorktreeChanges": "Eseguire la migrazione delle modifiche dell'albero di lavoro...",
+ "command.openAllChanges": "Apri tutte le modifiche",
+ "command.openChange": "Apri modifiche",
+ "command.openFile": "Apri file",
+ "command.openHEADFile": "Apri File (HEAD)",
+ "command.openRepositoriesInParentFolders": "Apri repository nelle cartelle padre",
+ "command.openRepository": "Apri repository",
+ "command.openWorktree": "Apri albero di lavoro nella finestra corrente",
+ "command.openWorktreeInNewWindow": "Apri albero di lavoro in una nuova finestra",
+ "command.publish": "Pubblica ramo...",
+ "command.pull": "Esegui pull",
+ "command.pullFrom": "Pull da...",
+ "command.pullRebase": "Esegui pull (Riassegna)",
+ "command.push": "Esegui push",
+ "command.pushFollowTags": "Esegui push (segui tag)",
+ "command.pushFollowTagsForce": "Esegui push (segui tag, forzato)",
+ "command.pushForce": "Esegui push (Forza)",
+ "command.pushTags": "Esegui push dei tag",
+ "command.pushTo": "Esegui push in...",
+ "command.pushToForce": "Push in... (Forza)",
+ "command.rebase": "Riassegna ramo...",
+ "command.rebase2": "Riassegna",
+ "command.rebaseAbort": "Interrompi riassegnazione",
+ "command.refresh": "Aggiorna",
+ "command.removeRemote": "Rimuovi repository remoto",
+ "command.rename": "Rinomina",
+ "command.renameBranch": "Rinomina Branch...",
+ "command.reopenClosedRepositories": "Riapri repository chiusi...",
+ "command.restoreCommitTemplate": "Ripristina il modello di Commit",
+ "command.revealFileInOS.linux": "Aprire cartella superiore",
+ "command.revealFileInOS.mac": "Visualizzare in Finder",
+ "command.revealFileInOS.windows": "Visualizza in Esplora file",
+ "command.revealInExplorer": "Visualizza nella vista Esplora risorse",
+ "command.revertChange": "Annulla modifica",
+ "command.revertSelectedRanges": "Ripristina intervalli selezionati",
+ "command.showOutput": "Mostra output GIT",
+ "command.stage": "Prepara modifiche per commit",
+ "command.stageAll": "Prepara tutte le modifiche per commit",
+ "command.stageAllMerge": "Prepara per il commit tutte le modifiche di merge",
+ "command.stageAllTracked": "Prepara per il commit tutte le modifiche non tracciate",
+ "command.stageAllUntracked": "Prepara per commit tutte le modifiche non tracciate",
+ "command.stageBlock": "Blocco fase",
+ "command.stageChange": "Prepara modifica per commit",
+ "command.stageSelectedRanges": "Prepara per il commit intervalli selezionati",
+ "command.stageSelection": "Selezione fase",
+ "command.stash": "Accantona",
+ "command.stashApply": "Applica Stash...",
+ "command.stashApplyEditor": "Applica accantonamento",
+ "command.stashApplyLatest": "Applica ultimo Stash",
+ "command.stashDrop": "Rimuovi accantonamento...",
+ "command.stashDropAll": "Rimuovi tutti gli accantonamenti...",
+ "command.stashDropEditor": "Rimuovi accantonamento",
+ "command.stashIncludeUntracked": "Stash (includi non tracciate)",
+ "command.stashPop": "Preleva accantonamento...",
+ "command.stashPopEditor": "Preleva accantonamento",
+ "command.stashPopLatest": "Preleva accantonamento più recente",
+ "command.stashStaged": "Accantonamento a fasi",
+ "command.stashView": "Visualizza accantonamento...",
+ "command.sync": "Sincronizza",
+ "command.syncRebase": "Sincronizza (Rebase)",
+ "command.timelineCompareWithSelected": "Confronta con selezionati",
+ "command.timelineCopyCommitId": "Copia ID commit",
+ "command.timelineCopyCommitMessage": "Copia messaggio di commit",
+ "command.timelineOpenDiff": "Apri modifiche",
+ "command.timelineSelectForCompare": "Seleziona per il confronto",
+ "command.undoCommit": "Annulla ultimo commit",
+ "command.unstage": "Annulla preparazione modifiche per commit",
+ "command.unstageAll": "Annulla preparazione di tutte le modifiche per commit",
+ "command.unstageChange": "Annulla preparazione modifica per commit",
+ "command.unstageSelectedRanges": "Annulla preparazione per il commit di intervalli selezionati",
+ "command.viewChanges": "Apri modifiche",
+ "command.viewCommit": "Apri commit",
+ "command.viewStagedChanges": "Apri modifiche preparate per il commit",
+ "command.viewUntrackedChanges": "Apri modifiche non tracciate",
+ "config.allowForcePush": "Controlla se il push forzato (con o senza lease) è abilitato.",
+ "config.allowNoVerifyCommit": "Controlla se consentire i commit senza l'esecuzione di hook pre-commit e commit-msg.",
+ "config.alwaysShowStagedChangesResourceGroup": "Mostra sempre il gruppo di risorse Modifiche preparate per il commit.",
+ "config.alwaysSignOff": "Controlla il flag di signoff per tutti i commit.",
+ "config.autoRepositoryDetection": "Configura quando il repository dovrebbe essere rilevato automaticamente.",
+ "config.autoRepositoryDetection.false": "Disabilita la scansione automatica del repository.",
+ "config.autoRepositoryDetection.openEditors": "Esegue la scansione per individuare le cartelle padre dei file aperti.",
+ "config.autoRepositoryDetection.subFolders": "Esegue la scansione per individuare le sottocartelle della cartella attualmente aperta.",
+ "config.autoRepositoryDetection.true": "Esegue la scansione per individuare le sottocartelle della cartella attualmente aperta e le cartelle padre dei file aperti.",
+ "config.autoStash": "Accantona eventuali modifiche prima del pull e le ripristina dopo un pull riuscito.",
+ "config.autofetch": "Quando è impostata su true, i commit verranno recuperati automaticamente dal repository remoto del repository GIT corrente. Se è impostata su `all`, verranno recuperati da tutti i repository remoti.",
+ "config.autofetchPeriod": "Durata in secondi tra ogni git fetch automatico, quando è abilitata l'opzione `#git.autofetch#`.",
+ "config.autorefresh": "Indica se l'aggiornamento automatico è abilitato.",
+ "config.blameEditorDecoration.enabled": "Controlla se visualizzare le informazioni di segnalazione errore nell'editor usando le decorazioni dell'editor.",
+ "config.blameEditorDecoration.template": "Modello per la decorazione dell'editor delle informazioni di blame. Variabili supportate:\r\n\r\n* 'hash': hash del commit\r\n\r\n* 'hashShort': primi N caratteri dell'hash del commit in base a '#git.commitShortHashLength#'\r\n\r\n* 'subject': prima riga del messaggio del commit\r\n\r\n* 'authorName': nome dell'autore\r\n\r\n* 'authorEmail': indirizzo e-mail dell'autore\r\n\r\n* 'authorDate': data dell'autore\r\n\r\n* 'authorDateAgo': differenza di orario tra il momento attuale e la data dell'autore\r\n\r\n",
+ "config.blameStatusBarItem.enabled": "Controlla se visualizzare le informazioni di segnalazione errore nella barra di stato.",
+ "config.blameStatusBarItem.template": "Modello per l'elemento della barra di stato delle informazioni di blame. Variabili supportate:\r\n\r\n* 'hash': hash del commit\r\n\r\n* 'hashShort': primi N caratteri dell'hash del commit in base a '#git.commitShortHashLength#'\r\n\r\n* 'subject': prima riga del messaggio del commit\r\n\r\n* 'authorName': nome dell'autore\r\n\r\n* 'authorEmail': indirizzo e-mail dell'autore\r\n\r\n* 'authorDate': data dell'autore\r\n\r\n* 'authorDateAgo': differenza di orario tra il momento attuale e la data dell'autore\r\n\r\n",
+ "config.branchPrefix": "Prefisso usato per la creazione di un nuovo ramo.",
+ "config.branchProtection": "Elenco di rami protetti. Per impostazione predefinita, viene visualizzato un prompt prima del commit delle modifiche in un ramo protetto. È possibile controllare la richiesta usando l'impostazione '#git.branchProtectionPrompt#'.",
+ "config.branchProtectionPrompt": "Controlla se viene visualizzato un prompt prima del commit delle modifiche in un ramo protetto.",
+ "config.branchProtectionPrompt.alwaysCommit": "Eseguire sempre il commit delle modifiche nel ramo protetto.",
+ "config.branchProtectionPrompt.alwaysCommitToNewBranch": "Eseguire il commit delle modifiche apportate a un nuovo ramo.",
+ "config.branchProtectionPrompt.alwaysPrompt": "Chiedere sempre conferma prima di eseguire il commit delle modifiche in un ramo protetto.",
+ "config.branchRandomNameDictionary": "Elenco di dizionari usati per il nome del ramo generato in modo casuale. Ogni valore rappresenta il dizionario utilizzato per generare il segmento del nome del ramo. Dizionari supportati: 'aggettivi', 'animali', 'colori' e 'numeri'.",
+ "config.branchRandomNameDictionary.adjectives": "Aggettivo casuale",
+ "config.branchRandomNameDictionary.animals": "Nome animale casuale",
+ "config.branchRandomNameDictionary.colors": "Nome colore casuale",
+ "config.branchRandomNameDictionary.numbers": "Un un numero casuale compreso tra 100 e 999",
+ "config.branchRandomNameEnable": "Controlla se viene generato un nome casuale durante la creazione di un nuovo ramo.",
+ "config.branchSortOrder": "Controlla l'ordinamento per i rami.",
+ "config.branchValidationRegex": "Un'espressione regolare per validare i nomi delle nuove branch.",
+ "config.branchWhitespaceChar": "Carattere per sostituire gli spazi vuoti nei nuovi nomi di ramo e per separare i segmenti di un nome di ramo generato in modo casuale.",
+ "config.checkoutType": "Controlla il tipo di riferimenti Git elencati quando si esegue `Esegui checkout in...`.",
+ "config.checkoutType.local": "Rami locali",
+ "config.checkoutType.remote": "Rami remoti",
+ "config.checkoutType.tags": "Tag",
+ "config.closeDiffOnOperation": "Controllare se l'editor diff deve essere chiuso automaticamente quando le modifiche vengono accantonate, salvate, rimosse, preparate per il commit o non preparate per il commit.",
+ "config.commandsToLog": "Elenco di comandi GIT (ad esempio commit, push) per i quali verrebbe registrato il relativo 'stdout' nel [git output](command:git.showOutput). Se per il comando GIT è configurato un hook lato client, verrà registrato anche il valore 'stdout' dell'hook lato client nel [git output](command:git.showOutput).",
+ "config.commitShortHashLength": "Controlla la lunghezza dell'hash breve di commit.",
+ "config.confirmEmptyCommits": "Conferma sempre la creazione di commit vuoti per il comando 'Git: Commit vuoto'.",
+ "config.confirmForcePush": "Controlla se chiedere conferma prima di eseguire il push forzato.",
+ "config.confirmNoVerifyCommit": "Controlla se chiedere conferma prima di eseguire il commit senza verifica.",
+ "config.confirmSync": "Confermare prima di sincronizzare i repository Git.",
+ "config.countBadge": "Controlla la notifica del conteggio GIT.",
+ "config.countBadge.all": "Esegue il conteggio di tutte le modifiche.",
+ "config.countBadge.off": "Disattiva il contatore.",
+ "config.countBadge.tracked": "Esegue il conteggio solo delle revisioni.",
+ "config.decorations.enabled": "Controlla se GIT aggiunge come contributo colori e notifiche nelle visualizzazioni Esplora risorse e Editor aperti.",
+ "config.defaultBranchName": "Nome del ramo predefinito (ad esempio principale, tronco, sviluppo) durante l'inizializzazione di un nuovo repository Git. Se impostato su vuoto, verrà usato il nome del ramo predefinito configurato in Git. **Nota:** richiede la versione Git `2.28.0` o successiva.",
+ "config.defaultCloneDirectory": "Il percorso predefinito in cui clonare un repository Git.",
+ "config.detectSubmodules": "Controlla se rilevare automaticamente i moduli secondari Git.",
+ "config.detectSubmodulesLimit": "Controlla il limite dei sottomoduli Git rilevati.",
+ "config.detectWorktrees": "Controlla se rilevare automaticamente alberi di lavoro Git.",
+ "config.detectWorktreesLimit": "Controlla il limite di alberi di lavoro Git rilevati.",
+ "config.diagnosticsCommitHook.enabled": "Controlla se verificare la presenza di diagnostica non risolta prima del commit.",
+ "config.diagnosticsCommitHook.sources": "Controlla l'elenco delle origini (**Elemento**) e la gravità minima (**Valore**) da considerare prima del commit. **Nota:** per ignorare la diagnostica da un'origine specifica, aggiungere l'origine all'elenco e imposta la gravità minima su \"none\".",
+ "config.discardAllScope": "Controlla quali modifiche vengono rimosse tramite il comando `Rimuovi tutte le modifiche`. Con `all` vengono rimosse tutte le modifiche. Con `tracked` vengono rimossi solo i file di cui viene tenuta traccia. Con `prompt` viene visualizzata una finestra di dialogo ogni volta che si esegue l'azione.",
+ "config.discardUntrackedChangesToTrash": "Controlla se l'annullamento delle modifiche non tracciate sposta i file nel Cestino (Windows), nel Cestino (macOS, Linux) invece di eliminarli definitivamente. **Nota:** questa impostazione non ha effetto quando si è connessi a una risorsa remota o quando l'esecuzione avviene in Linux come pacchetto snap.",
+ "config.enableCommitSigning": "Abilita la firma del commit con GPG, X.509, o SSH.",
+ "config.enableSmartCommit": "Eseguire il commit di tutte le modifiche quando non ci sono modifiche preparate.",
+ "config.enableStatusBarSync": "Controlla se il comando Git Sync è visualizzato nella barra di stato.",
+ "config.enabled": "Indica se Git è abilitato.",
+ "config.experimental.installGuide": "Miglioramenti sperimentali per il flusso di installazione di Git.",
+ "config.fetchOnPull": "Quando è abilitato, recupera tutti i rami durante il pulling; altrimenti recupera solo il ramo corrente.",
+ "config.followTagsWhenSync": "Eseguire il push di tutti i tag durante l'esecuzione del comando di sincronizzazione.",
+ "config.ignoreLegacyWarning": "Ignora l'avvertimento legacy di Git.",
+ "config.ignoreLimitWarning": "Ignora il messaggio di avviso quando ci sono troppe modifiche in un repository.",
+ "config.ignoreMissingGitWarning": "Ignora il messaggio di avviso quando manca GIT.",
+ "config.ignoreRebaseWarning": "Ignora l'avviso quando il ramo potrebbe essere stato riassegnato durante il pull.",
+ "config.ignoreSubmodules": "Ignora le modifiche apportate ai moduli secondari nell'albero dei file.",
+ "config.ignoreWindowsGit27Warning": "Ignora il messaggio di avviso quando Git 2.25 - 2.26 è installato in Windows.",
+ "config.ignoredRepositories": "Elenco dei repository Git da ignorare.",
+ "config.inputValidation": "Consente di determinare se visualizzare la diagnostica di convalida dell'input del messaggio di commit.",
+ "config.inputValidationLength": "Controlla la soglia di lunghezza del messaggio di commit per mostrare un avviso.",
+ "config.inputValidationSubjectLength": "Controlla la soglia relativa alla lunghezza dell'oggetto del messaggio di commit per la visualizzazione di un avviso. Annulla l'impostazione per ereditare il valore di '#git.inputValidationLength#'.",
+ "config.mergeEditor": "Apri l'editor merge per i file attualmente in conflitto.",
+ "config.openAfterClone": "Controlla se aprire automaticamente un repository dopo la clonazione.",
+ "config.openAfterClone.always": "Apri sempre nella finestra corrente.",
+ "config.openAfterClone.alwaysNewWindow": "Apri sempre in una nuova finestra.",
+ "config.openAfterClone.prompt": "Richiedi sempre l'azione da eseguire.",
+ "config.openAfterClone.whenNoFolderOpen": "Apri solo nella finestra corrente quando non è alcuna cartella.",
+ "config.openDiffOnClick": "Controlla se aprire l'editor diff quando si fa clic su una modifica; in caso contrario verrà aperto l'editor normale.",
+ "config.openRepositoryInParentFolders": "Controllare se un repository nelle cartelle padre delle aree di lavoro o dei file aperti deve essere aperto.",
+ "config.openRepositoryInParentFolders.always": "Aprire sempre un repository in cartelle padre di aree di lavoro o file aperti.",
+ "config.openRepositoryInParentFolders.never": "Non aprire mai un repository in cartelle padre di aree di lavoro o file aperti.",
+ "config.openRepositoryInParentFolders.prompt": "Chiedere conferma prima di aprire un repository nelle cartelle padre dell'area di lavoro o dei file aperti.",
+ "config.optimisticUpdate": "Controlla se aggiornare in modo ottimistico lo stato della visualizzazione Controllo del codice sorgente dopo l'esecuzione dei comandi GIT.",
+ "config.path": "Percorso e nome file dell'eseguibile GIT, ad esempio `C:\\Programmi\\Git\\bin\\git.exe` (Windows). Può trattarsi di una matrice di valori stringa che contengono più percorsi da cercare.",
+ "config.postCommitCommand": "Esegui un comando Git dopo un commit riuscito.",
+ "config.postCommitCommand.none": "Non eseguire alcun comando dopo un commit.",
+ "config.postCommitCommand.push": "Esegui 'Git Push' dopo un commit riuscito.",
+ "config.postCommitCommand.sync": "Esegui 'Git Pull' e 'Git Push' dopo un commit riuscito.",
+ "config.promptToSaveFilesBeforeCommit": "Controlla se GIT deve verificare la presenza di file non salvati prima di eseguire il commit.",
+ "config.promptToSaveFilesBeforeCommit.always": "Verifica la presenza di eventuali file non salvati.",
+ "config.promptToSaveFilesBeforeCommit.never": "Disabilita questo controllo.",
+ "config.promptToSaveFilesBeforeCommit.staged": "Verificare solo la presenza di file di stage non salvati.",
+ "config.promptToSaveFilesBeforeStash": "Controlla se GIT deve verificare la presenza di file non salvati prima di accantonare le modifiche.",
+ "config.promptToSaveFilesBeforeStash.always": "Verifica la presenza di eventuali file non salvati.",
+ "config.promptToSaveFilesBeforeStash.never": "Disabilita questo controllo.",
+ "config.promptToSaveFilesBeforeStash.staged": "Verificare solo la presenza di file di stage non salvati.",
+ "config.pruneOnFetch": "Elimina durante il recupero.",
+ "config.publishBeforeContinueOn": "Chiedi conferma per pubblicare lo stato Git non pubblicato quando si usa Continua a lavorare da un repository Git.",
+ "config.publishBeforeContinueOn.always": "Pubblica sempre lo stato Git non pubblicato quando si usa Continua a lavorare da un repository Git",
+ "config.publishBeforeContinueOn.never": "Non pubblicare mai lo stato Git non pubblicato quando si usa Continua a lavorare da un repository Git",
+ "config.publishBeforeContinueOn.prompt": "Chiedi conferma per pubblicare lo stato Git non pubblicato quando si usa Continua a lavorare da un repository Git",
+ "config.pullBeforeCheckout": "Controlla se un ramo che non dispone di commit in uscita viene inoltrato rapidamente prima di essere estratto.",
+ "config.pullTags": "Recupera tutti i tag durante il pull.",
+ "config.rebaseWhenSync": "Forza Git a usare rebase durante l'esecuzione del comando di sincronizzazione.",
+ "config.rememberPostCommitCommand": "Ricorda l'ultimo comando Git eseguito dopo un commit.",
+ "config.replaceTagsWhenPull": "Sostituisci automaticamente i tag locali con i tag remoti in caso di conflitto durante l'esecuzione del comando pull.",
+ "config.repositoryScanIgnoredFolders": "Elenco di cartelle ignorate durante l'analisi dei repository GIT quando '#git.autoRepositoryDetection#' è impostato su 'true' o 'subFolders'.",
+ "config.repositoryScanMaxDepth": "Controlla la profondità usata per l'analisi delle cartelle dell'area di lavoro per i repository GIT quando '#git.autoRepositoryDetection#' è impostato su 'true' o 'subFolders'. Può essere impostato su '-1' per nessun limite.",
+ "config.requireGitUserConfig": "Controlla se richiedere la configurazione esplicita dell'utente GIT o lasciare che sia GIT a indovinarla se non è presente.",
+ "config.scanRepositories": "Elenco dei percorsi in cui cercare i repository Git.",
+ "config.showActionButton": "Consente di controllare se è visualizzato un pulsante di azione nella visualizzazione del codice sorgente.",
+ "config.showActionButton.commit": "Mostrare un pulsante di azione per eseguire il commit delle modifiche quando il ramo locale ha modificato i file pronti per il commit.",
+ "config.showActionButton.publish": "Mostrare un pulsante di azione per pubblicare il ramo locale quando non è disponibile un ramo remoto di rilevamento.",
+ "config.showActionButton.sync": "Mostrare un pulsante di azione per sincronizzare le modifiche quando il ramo locale è avanti o dietro il ramo remoto.",
+ "config.showCommitInput": "Controlla se mostrare l'input del commit nel pannello del controllo del codice sorgente GIT.",
+ "config.showInlineOpenFileAction": "Controlla se visualizzare un'azione Apri file inline nella visualizzazione modifiche GIT.",
+ "config.showProgress": "Determina se le azioni Git devono mostrare lo stato di avanzamento.",
+ "config.showPushSuccessNotification": "Controlla se visualizzare una notifica quando un push è avvenuto con successo.",
+ "config.showReferenceDetails": "Controlla se mostrare i dettagli dell'ultimo commit per i riferimenti Git nei selettori di checkout, ramo e tag.",
+ "config.similarityThreshold": "Controlla la soglia dell'indice di somiglianza, ovvero la quantità di aggiunte/eliminazioni rispetto alle dimensioni del file, per le modifiche in una coppia di file aggiunti/eliminati da considerare per l’assegnazione di un nuovo nome. **Nota:** richiede la versione Git `2.18.0` o successiva.",
+ "config.smartCommitChanges": "Controlla quali modifiche vengono automaticamente preparate per il commit da Commit intelligente.",
+ "config.smartCommitChanges.all": "Prepara automaticamente tutte le modifiche per il commit.",
+ "config.smartCommitChanges.tracked": "Solo modifiche tracciate automaticamente preparate per il commit.",
+ "config.statusLimit": "Controlla come limitare il numero di modifiche che è possibile analizzare dal comando di stato GIT. Può essere impostato su 0 per non porre alcun limite.",
+ "config.suggestSmartCommit": "Suggerisce di abilitare il commit intelligente (eseguire il commit di tutte le modifiche quando non ci sono modifiche preparate per il commit).",
+ "config.supportCancellation": "Controlla se durante l'esecuzione dell'azione Sync viene inviata una notifica, che consente all'utente di annullare l'operazione.",
+ "config.terminalAuthentication": "Controlla se abilitare VS Code come gestore di autenticazione per i processi Git generati nel terminale integrato. Nota: per rendere effettiva una modifica di questa impostazione, è necessario riavviare i terminali.",
+ "config.terminalGitEditor": "Controlla se abilitare VS Code come gestore di autenticazione per i processi Git generati nel terminale integrato. Nota: per rendere effettiva una modifica di questa impostazione, è necessario riavviare i terminali.",
+ "config.timeline.date": "Controlla la data da usare per gli elementi nella visualizzazione Sequenza temporale.",
+ "config.timeline.date.authored": "Usa la data di creazione",
+ "config.timeline.date.committed": "Usa la data di commit",
+ "config.timeline.showAuthor": "Controlla se visualizzare l'autore del commit nella visualizzazione Sequenza temporale.",
+ "config.timeline.showUncommitted": "Controlla se visualizzare le modifiche di cui non è stato eseguito il commit nella visualizzazione Sequenza temporale.",
+ "config.untrackedChanges": "Controlla il comportamento delle modifiche non tracciate.",
+ "config.untrackedChanges.hidden": "Le modifiche non tracciate vengono nascoste ed escluse da diverse azioni.",
+ "config.untrackedChanges.mixed": "Tutte le modifiche, tracciate e non tracciate, vengono visualizzate insieme e si comportano allo stesso modo.",
+ "config.untrackedChanges.separate": "Le modifiche non tracciate vengono visualizzate separatamente nella visualizzazione Controllo del codice sorgente. Sono inoltre escluse da diverse azioni.",
+ "config.useCommitInputAsStashMessage": "Controlla se usare il messaggio della casella di input di commit come messaggio predefinito per l'accantonamento.",
+ "config.useEditorAsCommitInput": "Controlla se verrà usato un editor full-text per creare messaggi di commit ogni volta che non viene specificato alcun messaggio nella casella di input di commit.",
+ "config.useForcePushIfIncludes": "Controlla se il push forzato usa la variante più sicura di forzatura con if-includes. Nota: questa impostazione richiede l'abilitazione dell'impostazione '#git.useForcePushWithLease#' e della versione GIT '2.30.0' o successiva.",
+ "config.useForcePushWithLease": "Controlla se il push forzato usa la variante più sicura di forzatura con lease.",
+ "config.useIntegratedAskPass": "Controlla se GIT_ASKPASS deve essere sovrascritto per usare la versione integrata.",
+ "config.verboseCommit": "Abilita l'output dettagliato quando '#git.useEditorAsCommitInput#' è abilitato.",
+ "description": "Integrazione SCM su Git",
+ "displayName": "GIT",
+ "submenu.branch": "Crea ramo",
+ "submenu.changes": "Modifiche",
+ "submenu.commit": "Esegui commit",
+ "submenu.commit.amend": "Modifica",
+ "submenu.commit.signoff": "Approva",
+ "submenu.explorer": "GIT",
+ "submenu.pullpush": "Esegui pull/push",
+ "submenu.remotes": "Repository remoto",
+ "submenu.stash": "Accantona",
+ "submenu.tags": "Tag",
+ "submenu.worktrees": "Alberi di lavoro",
+ "view.workbench.cloneRepository": "È possibile clonare un repository in locale.\r\n[Clona repository](command:git.clone 'Clona un repository dopo l'attivazione dell'estensione Git')",
+ "view.workbench.learnMore": "Per altre informazioni su come usare Git e il controllo del codice sorgente in VS Code, [leggere la documentazione](https://aka.ms/vscode-scm).",
+ "view.workbench.scm.closedRepositories": "Sono stati trovati repository Git chiusi in precedenza.\r\n[Riapri i repository chiusi](command:git.reopenClosedRepositories)\r\nPer altre informazioni su come usare Git e il controllo del codice sorgente in VS Code, [leggere la documentazione](https://aka.ms/vscode-scm).",
+ "view.workbench.scm.closedRepository": "È stato trovato un repository Git chiuso in precedenza.\r\n[Riapri repository chiuso](command:git.reopenClosedRepositories)\r\nPer altre informazioni su come usare Git e il controllo del codice sorgente in VS Code, [leggere la documentazione](https://aka.ms/vscode-scm).",
+ "view.workbench.scm.disabled": "Per usare le funzionalità Git, abilitare Git in [impostazioni](command:workbench.action.openSettings?%5B%22git.enabled%22%5D).\r\nPer altre informazioni su come usare Git e il controllo del codice sorgente in VS Code, [leggere la documentazione](https://aka.ms/vscode-scm).",
+ "view.workbench.scm.empty": "Per usare le funzioni di Git, è possibile aprire una cartella contenente un repository Git o un clone da un URL.\r\n[Open Folder](command:vscode.openFolder)\r\n[Clone Repository](command:git.cloneRecursive)\r\nPer altre informazioni su come usare Git e il controllo del codice sorgente in VS Code, [leggere la documentazione](https://aka.ms/vscode-scm).",
+ "view.workbench.scm.emptyWorkspace": "L'area di lavoro attualmente aperta non contiene cartelle con repository Git.\r\n[Add Folder to Workspace](command:workbench.action.addRootFolder)\r\nPer altre informazioni su come usare Git e il controllo del codice sorgente in VS Code, [leggere la documentazione](https://aka.ms/vscode-scm).",
+ "view.workbench.scm.folder": "La cartella attualmente aperta non contiene un repository Git. È possibile inizializzare un repository che abiliterà le funzionalità di controllo del codice sorgente basate su Git.\r\n[Inizializza repository](command:git.init?%5Btrue%5D)\r\nPer altre informazioni su come usare Git e il controllo del codice sorgente in VS Code, [leggere la documentazione](https://aka.ms/vscode-scm).",
+ "view.workbench.scm.missing": "Installare Git, un sistema di controllo del codice sorgente più richiesto, per tenere traccia delle modifiche al codice e collaborare con altri utenti. Per altre informazioni, vedere le [Git guides](https://aka.ms/vscode-scm).",
+ "view.workbench.scm.missing.linux": "Il controllo del codice sorgente dipende dall'installazione di Git.\r\n[Download Git for Linux](https://git-scm.com/download/linux)\r\nDopo l'installazione, si prega di [reload](command:workbench.action.reloadWindow) (or [troubleshoot](command:git.showOutput)). È possibile installare altri provider del controllo del codice sorgente [from the Marketplace](command:workbench.extensions.search?%22%40category%3A%5C%22scm%20providers%5C%22%22).",
+ "view.workbench.scm.missing.mac": "[Scarica Git per macOS](https://git-scm.com/download/mac)\r\nDopo l'installazione, [ricaricare](command:workbench.action.reloadWindow) (o [risolvi i problemi](command:git.showOutput)). È possibile installare altri provider del controllo del codice sorgente [dal Marketplace](command:workbench.extensions.search?%22%40category%3A%5C%22scm%20providers%5C%22%22).",
+ "view.workbench.scm.missing.windows": "[Scarica Git per Windows](https://git-scm.com/download/win)\r\nDopo l'installazione, [ricaricare](command:workbench.action.reloadWindow) (o [risolvi i problemi](command:git.showOutput)). È possibile installare altri provider del controllo del codice sorgente [dal Marketplace](command:workbench.extensions.search?%22%40category%3A%5C%22scm%20providers%5C%22%22).",
+ "view.workbench.scm.repositoriesInParentFolders": "Repository git sono stati trovati nelle cartelle padre dell'area di lavoro o dei file aperti.\r\n[Apri repository](command:git.openRepositoriesInParentFolders)\r\nUsare l'impostazione [git.openRepositoryInParentFolders](command:workbench.action.openSettings?%5B%22git.openRepositoryInParentFolders%22%5D) per controllare se i repository Git nelle cartelle padre delle aree di lavoro o dei file aperti sono aperti. Per altre informazioni [leggere la documentazione](https://aka.ms/vscode-git-repository-in-parent-folders).",
+ "view.workbench.scm.repositoryInParentFolders": "Un repository Git è stato trovato nelle cartelle padre dell'area di lavoro o dei file aperti.\r\n[Apri repository](command:git.openRepositoriesInParentFolders)\r\nUsare l'impostazione [git.openRepositoryInParentFolders](command:workbench.action.openSettings?%5B%22git.openRepositoryInParentFolders%22%5D) per controllare se i repository Git nelle cartelle padre delle aree di lavoro o dei file aperti sono aperti. Per altre informazioni [leggere la documentazione](https://aka.ms/vscode-git-repository-in-parent-folders).",
+ "view.workbench.scm.scanFolderForRepositories": "Analisi della cartella per i repository Git in corso...",
+ "view.workbench.scm.scanWorkspaceForRepositories": "Analisi dell'area di lavoro per i repository Git in corso...",
+ "view.workbench.scm.unsafeRepositories": "I repository Git rilevati sono potenzialmente pericolosi perché la cartella è di proprietà di un utente diverso dall'utente corrente.\r\n[Gestisci repository non sicuri](command:git.manageUnsafeRepositories)\r\nPer altre informazioni sui repository non sicuri [leggere la nostra documentazione](https://aka.ms/vscode-git-unsafe-repository).",
+ "view.workbench.scm.unsafeRepository": "Il repository Git rilevato è potenzialmente pericoloso perché la cartella è di proprietà di un utente diverso dall'utente corrente.\r\n[Gestisci repository non sicuri](command:git.manageUnsafeRepositories)\r\nPer altre informazioni sui repository non sicuri [leggere la nostra documentazione](https://aka.ms/vscode-git-unsafe-repository).",
+ "view.workbench.scm.workspace": "L'area di lavoro attualmente aperta non contiene cartelle con repository Git. È possibile inizializzare un repository in una cartella che abiliterà le funzionalità di controllo del codice sorgente basate su Git.\r\n[Inizializza repository](command:git.init)\r\nPer altre informazioni su come usare Git e il controllo del codice sorgente in VS Code, [leggere la documentazione](https://aka.ms/vscode-scm)."
+ }
+ }
+}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-it/translations/extensions/vscode.github-authentication.i18n.json b/i18n/vscode-language-pack-it/translations/extensions/vscode.github-authentication.i18n.json
new file mode 100644
index 0000000000..ba5e8aa293
--- /dev/null
+++ b/i18n/vscode-language-pack-it/translations/extensions/vscode.github-authentication.i18n.json
@@ -0,0 +1,47 @@
+{
+ "": [
+ "--------------------------------------------------------------------------------------------",
+ "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."
+ ],
+ "version": "1.0.0",
+ "contents": {
+ "bundle": {
+ "A reload is required for the fetch setting change to take effect.": "È necessario un ricaricamento per applicare la modifica dell'impostazione di recupero.",
+ "Apple": "Apple",
+ "Continue to GitHub": "Passa a GitHub",
+ "Continue to GitHub to create a Personal Access Token (PAT)": "Passa a GitHub per creare un token di accesso personale (PAT)",
+ "Copy & Continue to {0}": "Copia e continua in {0}",
+ "GitHub": "GitHub",
+ "GitHub Authentication - Reload required": "Autenticazione GitHub - Ricaricamento necessario",
+ "GitHub Enterprise Server URI is not a valid URI: {0}": "L'URI di GitHub Enterprise Server non è un URI valido: {0}",
+ "Google": "Google",
+ "Having trouble logging in? Would you like to try a different way? ({0})": "Si sono verificati problemi durante l'accesso? Si vuole provare in un modo diverso? ({0})",
+ "No": "No",
+ "Open [{0}]({0}) in a new tab and paste your one-time code: {1}/The [{0}]({0}) will be a url and the {1} will be a code, e.g. 123-456{Locked=\"[{0}]({0})\"}": "Aprire [{0}]({0}) in una nuova scheda e incollare il time code: {1}",
+ "Reload Window": "Ricarica finestra",
+ "Sign in failed: {0}": "Accesso non riuscito: {0}",
+ "Sign out failed: {0}": "Disconnessione non riuscita: {0}",
+ "Signing in to {0}.../The {0} will be a url, e.g. github.com": "Accesso in corso a {0}...",
+ "To finish authenticating, navigate to GitHub and paste in the above one-time code.": "Per completare l'autenticazione, passare a GitHub e incollare il time code precedente.",
+ "To finish authenticating, navigate to GitHub to create a PAT then paste the PAT into the input box.": "Per completare l'autenticazione, passa a GitHub per creare un token di accesso personale (PAT), quindi incolla il token di accesso personale nella casella di input.",
+ "Yes": "Sì",
+ "You have not yet finished authorizing this extension to use GitHub. Would you like to try a different way? ({0})": "Non è ancora stata completata l'autorizzazione di questa estensione per usare GitHub. Provare in un modo diverso? ({0})",
+ "Your Code: {0}/The {0} will be a code, e.g. 123-456": "Codice: {0}",
+ "device code": "codice dispositivo",
+ "local server": "server locale",
+ "personal access token": "token di accesso personale",
+ "url handler": "gestore URL"
+ },
+ "package": {
+ "config.github-authentication.preferDeviceCodeFlow.description": "Se true, dare priorità al flusso di codice dispositivo per l'autenticazione anziché agli altri flussi disponibili. Questo è utile in ambienti come WSL, dove il server locale o i flussi del gestore URL potrebbero non funzionare come previsto.",
+ "config.github-authentication.useElectronFetch.description": "Se è true, usa la funzione di recupero integrata di Electron per le richieste HTTP. Se è false, usa la funzione di recupero globale di Node.js. Questa impostazione si applica solo quando l'esecuzione avviene nell'ambiente Electron. **Nota:** è necessario un riavvio per applicare questa impostazione.",
+ "config.github-enterprise.title": "Autenticazione server GHE.com &GitHub Enterprise",
+ "config.github-enterprise.uri.description": "URI per l'istanza di GHE.com o GitHub Enterprise Server.\r\n\r\nEsempi:\r\n* GHE.com: 'https://octocat.ghe.com`\r\n* server GitHub Enterprise: 'https://github.octocat.com`\r\n\r\n> **Nota:** questa opzione _non_ deve essere impostata su un URI di GitHub.com. Se l'account esiste in GitHub.com o è un utente gestito GitHub Enterprise, non è necessaria alcuna configurazione aggiuntiva e si può semplicemente accedere a GitHub.",
+ "description": "Provider di autenticazione GitHub",
+ "displayName": "Autenticazione GitHub"
+ }
+ }
+}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-it/translations/extensions/vscode.github.i18n.json b/i18n/vscode-language-pack-it/translations/extensions/vscode.github.i18n.json
new file mode 100644
index 0000000000..fe17c4ee4f
--- /dev/null
+++ b/i18n/vscode-language-pack-it/translations/extensions/vscode.github.i18n.json
@@ -0,0 +1,65 @@
+{
+ "": [
+ "--------------------------------------------------------------------------------------------",
+ "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."
+ ],
+ "version": "1.0.0",
+ "contents": {
+ "bundle": {
+ "Checkout on vscode.dev": "Apri in vscode.dev",
+ "Commit Changes": "Esegui il commit delle modifiche",
+ "Copy Anyway": "Copia comunque",
+ "Copy vscode.dev Link": "Copiare collegamento vscode.dev",
+ "Create Fork": "Crea fork",
+ "Create GitHub fork": "Crea fork GitHub",
+ "Create PR": "Crea richiesta pull",
+ "Creating GitHub Pull Request...": "Creazione della richiesta pull GitHub...",
+ "Creating first commit": "Creazione del primo commit",
+ "Forking \"{0}/{1}\"...": "Creazione del fork per \"{0}/{1}\"...",
+ "Learn More": "Altre informazioni",
+ "Log level: {0}": "Livello log: {0}",
+ "No": "No",
+ "No GitHub remotes found that contain this commit.": "Non sono stati trovati repository remoti GitHub che contengono questo commit.",
+ "No template": "Nessun modello",
+ "Open PR": "Apri richiesta pull",
+ "Open on GitHub": "Apri in GitHub",
+ "Pick a folder to publish to GitHub": "Seleziona una cartella da pubblicare in GitHub",
+ "Publish Branch & Copy Link": "Pubblicare il ramo e copiare il collegamento",
+ "Publishing to a private GitHub repository": "Pubblicazione in un repository GitHub privato",
+ "Publishing to a public GitHub repository": "Pubblicazione in un repository GitHub pubblico",
+ "Pull Changes & Copy Link": "Eseguire il pull delle modifiche e copiare il collegamento",
+ "Push Commits & Copy Link": "Eseguire il push dei commit e copiare il collegamento",
+ "Pushing changes...": "Push delle modifiche...",
+ "Select the Pull Request template": "Selezionare il modello di richiesta pull",
+ "Select which files should be included in the repository.": "Selezionare i file da includere nel repository.",
+ "Successfully published the \"{0}\" repository to GitHub.": "Il repository \"{0}\" è stato pubblicato in GitHub.",
+ "The PR \"{0}/{1}#{2}\" was successfully created on GitHub.": "La richiesta pull \"{0}/{1}#{2}\" è stata creata in GitHub.",
+ "The current branch has unpublished commits. Would you like to push your commits before copying a link?": "Il ramo corrente ha dei commit non pubblicati. Eseguire il push dei commit prima di copiare un collegamento?",
+ "The current branch is not published to the remote. Would you like to publish your branch before copying a link?": "Il ramo corrente non è pubblicato su remoto. Pubblicare il ramo prima di copiare un collegamento?",
+ "The current branch is not up to date. Would you like to pull before copying a link?": "Il ramo corrente non è aggiornato. Eseguire il pull prima di copiare un collegamento?",
+ "The current file has uncommitted changes. Please commit your changes before copying a link.": "Il file corrente contiene modifiche di cui non è stato eseguito il commit. Eseguire il commit delle modifiche prima di copiare un collegamento.",
+ "The fork \"{0}\" was successfully created on GitHub.": "Il fork \"{0}\" è stato creato in GitHub.",
+ "Uploading files": "Caricamento dei file",
+ "You don't have permissions to push to \"{0}/{1}\" on GitHub. Would you like to create a fork and push to it instead?": "Non si dispone delle autorizzazioni per eseguire il push in \"{0}/{1}\" in GitHub. Creare invece un fork e aggiungervi il push?",
+ "Your push to \"{0}/{1}\" was rejected by GitHub because push protection is enabled and one or more secrets were detected.": "Il push in \"{0}/{1}\" è stato rifiutato da GitHub perché la protezione push è abilitata e sono stati rilevati uno o più segreti.",
+ "{0} Open on GitHub": "{0} apri in GitHub"
+ },
+ "package": {
+ "command.copyVscodeDevLink": "Copia collegamento vscode.dev",
+ "command.openOnGitHub": "Apri in GitHub",
+ "command.openOnVscodeDev": "Open in vscode.dev",
+ "command.publish": "Pubblica in GitHub",
+ "config.branchProtection": "Controlla se eseguire query sulle regole di repository per i repository GitHub",
+ "config.gitAuthentication": "Controlla se abilitare l'autenticazione GitHub automatica per i comandi GIT all'interno di VS Code.",
+ "config.gitProtocol": "Controlla il protocollo usato per clonare un repository GitHub",
+ "config.showAvatar": "Controlla se mostrare l'avatar GitHub dell'autore del commit in vari passi del mouse (ad esempio, segnalazione errori Git, sequenza temporale, grafico del controllo del codice sorgente e così via)",
+ "description": "Funzionalità di GitHub per VS Code",
+ "displayName": "GitHub",
+ "welcome.publishFolder": "È possibile pubblicare direttamente questa cartella in un repository GitHub. Dopo la pubblicazione, sarà possibile accedere alle funzionalità di controllo del codice sorgente basate su Git e GitHub.\r\n[$(github) Pubblica in GitHub](command:github.publish)",
+ "welcome.publishWorkspaceFolder": "È possibile pubblicare direttamente una cartella dell'area di lavoro in un repository GitHub. Dopo la pubblicazione, sarà possibile accedere alle funzionalità di controllo del codice sorgente basate su Git e GitHub.\r\n[$(github) Pubblica in GitHub](command:github.publish)"
+ }
+ }
+}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-it/translations/extensions/vscode.go.i18n.json b/i18n/vscode-language-pack-it/translations/extensions/vscode.go.i18n.json
index ebbdd65710..7132a4d7d9 100644
--- a/i18n/vscode-language-pack-it/translations/extensions/vscode.go.i18n.json
+++ b/i18n/vscode-language-pack-it/translations/extensions/vscode.go.i18n.json
@@ -9,8 +9,8 @@
"version": "1.0.0",
"contents": {
"package": {
- "displayName": "Nozioni di base sul linguaggio Go",
- "description": "Offre la sottolineatura delle sintassi e il match delle parentesi nei file Go."
+ "description": "Offre la sottolineatura delle sintassi e il match delle parentesi nei file Go.",
+ "displayName": "Nozioni di base sul linguaggio Go"
}
}
}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-it/translations/extensions/vscode.groovy.i18n.json b/i18n/vscode-language-pack-it/translations/extensions/vscode.groovy.i18n.json
index 8d19ae6d9f..7bbb9bb78a 100644
--- a/i18n/vscode-language-pack-it/translations/extensions/vscode.groovy.i18n.json
+++ b/i18n/vscode-language-pack-it/translations/extensions/vscode.groovy.i18n.json
@@ -9,8 +9,8 @@
"version": "1.0.0",
"contents": {
"package": {
- "displayName": "Nozioni di base sul linguaggio Groovy",
- "description": "Offre gli snippet, la sottolineatura delle sintassi, il match delle parentesi e il folding nei file Groovy."
+ "description": "Offre gli snippet, la sottolineatura delle sintassi, il match delle parentesi e il folding nei file Groovy.",
+ "displayName": "Nozioni di base sul linguaggio Groovy"
}
}
}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-it/translations/extensions/vscode.grunt.i18n.json b/i18n/vscode-language-pack-it/translations/extensions/vscode.grunt.i18n.json
new file mode 100644
index 0000000000..f59463b033
--- /dev/null
+++ b/i18n/vscode-language-pack-it/translations/extensions/vscode.grunt.i18n.json
@@ -0,0 +1,25 @@
+{
+ "": [
+ "--------------------------------------------------------------------------------------------",
+ "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."
+ ],
+ "version": "1.0.0",
+ "contents": {
+ "bundle": {
+ "Auto detecting Grunt for folder {0} failed with error: {1}', this.workspaceFolder.name, err.error ? err.error.toString() : 'unknown": "Rilevamento automatico Grunt per la cartella {0} non riuscito con errore: {1}', this.workspaceFolder.name, err.error? err.error.toString() : 'unknown",
+ "Go to output": "Passa all'output",
+ "Problem finding grunt tasks. See the output for more information.": "Si è verificato un problema durante la ricerca delle attività di Grunt. Per altre informazioni, vedere l'output."
+ },
+ "package": {
+ "config.grunt.autoDetect": "Controlla l'abilitazione del rilevamento delle attività di Grunt. Il rilevamento delle attività di Grunt può causare l'esecuzione dei file in qualsiasi area di lavoro aperta.",
+ "description": "Estensione che aggiunge le funzionalità di Grunt a VS Code.",
+ "displayName": "Supporto di Grunt per VS Code",
+ "grunt.taskDefinition.args.description": "Argomenti della riga di comando da passare all'attività grunt",
+ "grunt.taskDefinition.file.description": "Il file di Grunt che fornisce l'attività. Può essere omesso.",
+ "grunt.taskDefinition.type.description": "L'attività di Grunt da personalizzare."
+ }
+ }
+}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-it/translations/extensions/vscode.gulp.i18n.json b/i18n/vscode-language-pack-it/translations/extensions/vscode.gulp.i18n.json
new file mode 100644
index 0000000000..4caa4566a8
--- /dev/null
+++ b/i18n/vscode-language-pack-it/translations/extensions/vscode.gulp.i18n.json
@@ -0,0 +1,24 @@
+{
+ "": [
+ "--------------------------------------------------------------------------------------------",
+ "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."
+ ],
+ "version": "1.0.0",
+ "contents": {
+ "bundle": {
+ "Auto detecting gulp for folder {0} failed with error: {1}', this.workspaceFolder.name, err.error ? err.error.toString() : 'unknown": "Rilevamento automatico gulp per la cartella {0} non riuscito con errore: {1}', this.workspaceFolder.name, err.error? err.error.toString() : 'unknown",
+ "Go to output": "Passa all'output",
+ "Problem finding gulp tasks. See the output for more information.": "Si è verificato un problema durante la ricerca delle attività di gulp. Per altre informazioni, vedere l'output."
+ },
+ "package": {
+ "config.gulp.autoDetect": "Controlla l'abilitazione del rilevamento delle attività di Gulp. Il rilevamento delle attività di Gulp può causare l'esecuzione dei file in qualsiasi area di lavoro aperta.",
+ "description": "Estensione che aggiunge le funzionalità di Gulp a VSCode.",
+ "displayName": "Supporto Gulp per VSCode",
+ "gulp.taskDefinition.file.description": "File di gulp che fornisce l'attività. Può essere omesso.",
+ "gulp.taskDefinition.type.description": "L'attività di Gulp da personalizzare."
+ }
+ }
+}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-it/translations/extensions/vscode.handlebars.i18n.json b/i18n/vscode-language-pack-it/translations/extensions/vscode.handlebars.i18n.json
index 9ca48f572b..a9829d6432 100644
--- a/i18n/vscode-language-pack-it/translations/extensions/vscode.handlebars.i18n.json
+++ b/i18n/vscode-language-pack-it/translations/extensions/vscode.handlebars.i18n.json
@@ -9,8 +9,8 @@
"version": "1.0.0",
"contents": {
"package": {
- "displayName": "Nozioni di base sul linguaggio Handlebars",
- "description": "Offre la sottolineatura delle sintassi e il match delle parentesi nei file Handlebars."
+ "description": "Offre la sottolineatura delle sintassi e il match delle parentesi nei file Handlebars.",
+ "displayName": "Nozioni di base sul linguaggio Handlebars"
}
}
}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-it/translations/extensions/vscode.hlsl.i18n.json b/i18n/vscode-language-pack-it/translations/extensions/vscode.hlsl.i18n.json
index 8522e43215..93f56b6872 100644
--- a/i18n/vscode-language-pack-it/translations/extensions/vscode.hlsl.i18n.json
+++ b/i18n/vscode-language-pack-it/translations/extensions/vscode.hlsl.i18n.json
@@ -9,8 +9,8 @@
"version": "1.0.0",
"contents": {
"package": {
- "displayName": "Nozioni di base sul linguaggio HLSL",
- "description": "Offre la sottolineatura delle sintassi e il match delle parentesi nei file HLSL."
+ "description": "Offre la sottolineatura delle sintassi e il match delle parentesi nei file HLSL.",
+ "displayName": "Nozioni di base sul linguaggio HLSL"
}
}
}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-it/translations/extensions/vscode.html-language-features.i18n.json b/i18n/vscode-language-pack-it/translations/extensions/vscode.html-language-features.i18n.json
new file mode 100644
index 0000000000..2120b653ee
--- /dev/null
+++ b/i18n/vscode-language-pack-it/translations/extensions/vscode.html-language-features.i18n.json
@@ -0,0 +1,304 @@
+{
+ "": [
+ "--------------------------------------------------------------------------------------------",
+ "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."
+ ],
+ "version": "1.0.0",
+ "contents": {
+ "bundle": {
+ "\"store\" a boolean test for later evaluation in a guard or if().": "\"memorizzare\" un test booleano per una valutazione successiva in un guard o if().",
+ "'from' expected": "Previsto 'from'",
+ "'in' expected": "'È previsto 'in'",
+ "'through' or 'to' expected": "previsto 'through' o 'to'",
+ "'{0}'": "'{0}'",
+ "( expected": "È previsto il carattere (",
+ ") expected": "È previsto il segno )",
+ "": "",
+ "@font-face": "@font-face",
+ "@font-face rule must define 'src' and 'font-family' properties": "La regola `@font-face` deve definire le proprietà `src` e `font-family`",
+ "@keyframes {0}": "@keyframes {0}",
+ "A list of properties that are not validated against the `unknownProperties` rule.": "Elenco di proprietà che non vengono convalidate in base alla regola `unknownProperties`.",
+ "Adds quotes to a string.": "Aggiunge virgolette a una stringa.",
+ "Also define the standard property '{0}' for compatibility": "Definire anche la proprietà standard '{0}' per la compatibilità",
+ "Always define standard rule '@keyframes' when defining keyframes.": "Definire sempre la regola standard '@keyframes' quando si definiscono i fotogrammi chiave.",
+ "Always include all vendor specific properties: Missing: {0}": "Includere sempre tutte le proprietà specifiche del fornitore: mancanti: {0}",
+ "Always include all vendor specific rules: Missing: {0}": "Includere sempre tutte le regole specifiche del fornitore: mancanti: {0}",
+ "Appends a single value onto the end of a list.": "Aggiunge un singolo valore alla fine di un elenco.",
+ "Appends selectors to one another without spaces in between.": "Aggiunge i selettori l\\'uno all\\'altro senza spazi intermedi.",
+ "Avoid using !important. It is an indication that the specificity of the entire CSS has gotten out of control and needs to be refactored.": "Evitare di usare !important perché indica che la specificità dell'intero codice CSS non è più controllabile ed è necessario effettuarne il refactoring.",
+ "Avoid using 'float'. Floats lead to fragile CSS that is easy to break if one aspect of the layout changes.": "Evitare di usare `float`. Con gli elementi float si ottiene codice CSS che causa facilmente interruzioni in caso di modifica di un aspetto del layout.",
+ "Causes one or more rules to be emitted at the root of the document.": "Determina l'emissione di una o più regole nella radice del documento.",
+ "Changes one or more properties of a color.": "Modifica una o più proprietà di un colore.",
+ "Changes the alpha component for a color.": "Modifica il componente alfa per un colore.",
+ "Changes the hue of a color.": "Cambia la tonalità di un colore.",
+ "Character entity representing '{0}'": "Entità del carattere che rappresenta '{0}'",
+ "Character entity representing '{0}', unicode equivalent '{1}'": "Entità carattere che rappresenta '{0}', equivalente unicode '{1}'",
+ "Closing bracket expected.": "Prevista parentesi quadra di chiusura.",
+ "Closing bracket missing.": "Parentesi chiusa mancante.",
+ "Combines several lists into a single multidimensional list.": "Combina diversi elenchi in un unico elenco multidimensionale.",
+ "Configure": "Configurare",
+ "Converts a color into the format understood by IE filters.": "Converte un colore nel formato riconosciuto dai filtri di Internet Explorer.",
+ "Converts a color to grayscale.": "Converte un colore in gradazioni di grigio.",
+ "Converts a string to lower case.": "Converte una stringa in lettere minuscole.",
+ "Converts a string to upper case.": "Converte una stringa in maiuscolo.",
+ "Converts a unitless number to a percentage.": "Converte un numero senza unità in una percentuale.",
+ "Creates a Color from hue, saturation, and lightness values.": "Crea un colore da valori di tonalità, saturazione e luminosità.",
+ "Creates a Color from hue, saturation, lightness, and alpha values.": "Crea un colore da tonalità, saturazione, luminosità e valori alfa.",
+ "Creates a Color from hue, white, and black values.": "Crea un colore dai valori di tonalità, bianco e nero.",
+ "Creates a Color from lightness, a, and b values.": "Crea un colore dai valori di luminosità, a e b.",
+ "Creates a Color from lightness, chroma, and hue values.": "Crea un colore dai valori di luminosità, crominanza e tonalità.",
+ "Creates a Color from red, green, and blue values.": "Crea un colore dai valori rosso, verde e blu.",
+ "Creates a Color from red, green, blue, and alpha values.": "Crea un colore dai valori rosso, verde, blu e alfa.",
+ "Creates a Color from the hue, saturation, and lightness values of another Color.": "Crea un colore dai valori di tonalità, saturazione e luminosità di un altro colore.",
+ "Creates a Color from the hue, white, and black values of another Color.": "Crea un colore dai valori di tonalità, bianco e nero di un altro colore.",
+ "Creates a Color from the lightness, a, and b values of another Color.": "Crea un colore dai valori di luminosità, a e b di un altro colore.",
+ "Creates a Color from the lightness, chroma, and hue values of another Color.": "Crea un colore dai valori di luminosità, crominanza e tonalità di un altro colore.",
+ "Creates a Color from the red, green, and blue values of another Color.": "Crea un colore dai valori di rosso, verde e blu di un altro colore.",
+ "Creates a Color in a specific color space from red, green, and blue values.": "Crea un colore in uno spazio colore specifico a partire dai valori di rosso, verde e blu.",
+ "Creates a Color in a specific color space from the red, green, and blue values of another Color.": "Crea un colore in uno spazio colore specifico dai valori di rosso, verde e blu di un altro colore.",
+ "Defines complex operations that can be re-used throughout stylesheets.": "Definisce operazioni complesse che possono essere riutilizzate in tutti i fogli di stile.",
+ "Defines styles that can be re-used throughout the stylesheet with `@include`.": "Definisce gli stili che possono essere riutilizzati nel foglio di stile con '@include'.",
+ "Do not use duplicate style definitions": "Non usare definizioni di stile duplicate",
+ "Do not use empty rulesets": "Non usare set di regole vuoti",
+ "Do not use width or height when using padding or border": "Non usare width o height con padding o border",
+ "Dynamically calls a Sass function.": "Chiama dinamicamente una funzione Sass.",
+ "Each loop that sets `$var` to each item in the list or map, then outputs the styles it contains using that value of `$var`.": "Ogni ciclo che imposta `$var` su ogni elemento dell\\'elenco o della mappa, quindi restituisce gli stili che contiene usando il valore `$var`.",
+ "End tag name expected.": "È previsto il nome del tag di fine.",
+ "Exposes the details of Sass’s inner workings.": "Espone i dettagli delle operazioni interne di Sass.",
+ "Extends $extendee with $extender within $selector.": "Estende $extendee con $extender all'interno di $selector.",
+ "Extracts a substring from $string.": "Estrae una sottostringa da $string.",
+ "Finds the maximum of several numbers.": "Trova il numero massimo di diversi numeri.",
+ "Finds the minimum of several numbers.": "Trova il numero minimo di diversi numeri.",
+ "Fluidly scales one or more properties of a color.": "Ridimensiona in modo fluido una o più proprietà di un colore.",
+ "Folding Region End": "Fine area di riduzione del codice",
+ "Folding Region Start": "Inizio area di riduzione del codice",
+ "For loop that repeatedly outputs a set of styles for each `$var` in the `from/through` or `from/to` clause.": "Ciclo For che restituisce ripetutamente un set di stili per ogni '$var' nella clausola 'from/through' o 'from/to'.",
+ "Generates new colors based on existing ones, making it easy to build color themes.": "Genera nuovi colori in base a quelli esistenti, semplificando la creazione di temi colore.",
+ "Gets the blue component of a color.": "Ottiene il componente blu di un colore.",
+ "Gets the green component of a color.": "Ottiene il componente verde di un colore.",
+ "Gets the hue component of a color.": "Ottiene il componente tonalità di un colore.",
+ "Gets the lightness component of a color.": "Ottiene il componente di luminosità di un colore.",
+ "Gets the opacity component of a color.": "Ottiene il componente di opacità di un colore.",
+ "Gets the red component of a color.": "Ottiene il componente rosso di un colore.",
+ "Gets the saturation component of a color.": "Ottiene il componente di saturazione di un colore.",
+ "HTML Language Server": "Server di linguaggio HTML",
+ "Hex colors must consist of three, four, six or eight hex numbers": "I colori esadecimali devono essere costituiti da tre, quattro, sei o otto numeri esadecimali",
+ "IE hacks are only necessary when supporting IE7 and older": "Gli hack IE sono necessari solo per il supporto di IE7 e versioni precedenti",
+ "Import statements do not load in parallel": "Le istruzioni Import non vengono caricate in parallelo",
+ "Includes the body if the expression does not evaluate to `false` or `null`.": "Include il corpo se l'espressione non restituisce 'false' o 'null'.",
+ "Includes the styles defined by another mixin into the current rule.": "Include gli stili definiti da un altro mixin nella regola corrente.",
+ "Increases or decreases one or more components of a color.": "Aumenta o riduce uno o più componenti di un colore.",
+ "Inherits the styles of another selector.": "Eredita gli stili di un altro selettore.",
+ "Inserts $insert into $string at $index.": "Inserisce $insert in $string a $index.",
+ "Invalid number of parameters": "Numero di parametri non valido",
+ "Joins together two lists into one.": "Unisce due elenchi in uno.",
+ "Lets you access and modify values in lists.": "Consente di accedere e modificare i valori negli elenchi.",
+ "Loads a Sass stylesheet and makes its mixins, functions, and variables available when this stylesheet is loaded with the @use rule.": "Carica un foglio di stile Sass e rende disponibili mixin, funzioni e variabili quando questo foglio di stile viene caricato con la regola di @use.",
+ "Loads mixins, functions, and variables from other Sass stylesheets as 'modules', and combines CSS from multiple stylesheets together.": "Carica mixins, funzioni e variabili da altri fogli di stile Sass come \"moduli\" e combina CSS da più fogli di stile.",
+ "Makes a color darker.": "Rende un colore più scuro.",
+ "Makes a color less saturated.": "Rende un colore meno saturo.",
+ "Makes a color lighter.": "Rende un colore più chiaro.",
+ "Makes a color more opaque.": "Rende un colore più opaco.",
+ "Makes a color more saturated.": "Rende un colore più saturo.",
+ "Makes a color more transparent.": "Rende un colore più trasparente.",
+ "Makes it easy to combine, search, or split apart strings.": "Consente facilmente di combinare, cercare o dividere le stringhe.",
+ "Makes it possible to look up the value associated with a key in a map, and much more.": "Consente di cercare il valore associato a una chiave in una mappa e molto altro ancora.",
+ "Merges two maps together into a new map.": "Unisce due mappe in una nuova mappa.",
+ "Mix two colors together in a polar color space.": "Combina due colori in uno spazio colore polare.",
+ "Mix two colors together in a rectangular color space.": "Combina due colori in uno spazio colore rettangolare.",
+ "Mixes two colors together.": "Combina due colori.",
+ "Nests selector beneath one another like they would be nested in the stylesheet.": "Annida i selettori uno sotto l\\'altro come se fossero annidati nel foglio di stile.",
+ "No unit for zero needed": "Non è necessaria alcuna unità per lo zero",
+ "Parses a selector into the format returned by &.": "Analizza un selettore nel formato restituito da &.",
+ "Prints the value of an expression to the standard error output stream. Useful for debugging complicated Sass files.": "Stampa il valore di un'espressione nel flusso di output dell'errore standard. Utile per il debug di file Sass complicati.",
+ "Prints the value of an expression to the standard error output stream. Useful for libraries that need to warn users of deprecations or recovering from minor mixin usage mistakes. Warnings can be turned off with the `--quiet` command-line option or the `:quiet` Sass option.": "Stampa il valore di un'espressione nel flusso di output degli errori standard. Utile per le librerie che devono avvisare gli utenti della deprecazione o del ripristino da errori di utilizzo mixin secondari. Gli avvisi possono essere disattivati con l'opzione della riga di comando '--quiet' o l'opzione Sass ':quiet'.",
+ "Property is ignored due to the display.": "La proprietà viene ignorata a causa della visualizzazione.",
+ "Property is ignored due to the display. With 'display: block', vertical-align should not be used.": "Proprietà ignorata a causa della visualizzazione. Con 'display: block', non usare l'allineamento verticale.",
+ "Provides access to Sass’s powerful selector engine.": "Fornisce l'accesso al motore di selezione avanzato di Sass.",
+ "Provides functions that operate on numbers.": "Fornisce funzioni che operano sui numeri.",
+ "Removes quotes from a string.": "Rimuove le virgolette da una stringa.",
+ "Rename to '{0}'": "Rinominare in '{0}'",
+ "Replaces $original with $replacement within $selector.": "Sostituisce $original con $replacement all'interno di $selector.",
+ "Replaces the nth item in a list.": "Sostituisce l\\'elemento n-esimo di un elenco.",
+ "Returns a list of all keys in a map.": "Restituisce un elenco di tutte le chiavi in una mappa.",
+ "Returns a list of all values in a map.": "Restituisce un elenco di tutti i valori in una mappa.",
+ "Returns a new map with keys removed.": "Restituisce una nuova mappa con le chiavi rimosse.",
+ "Returns a random number.": "Restituisce un numero casuale.",
+ "Returns a specific item in a list.": "Restituisce un elemento specifico in un elenco.",
+ "Returns the absolute value of a number.": "Restituisce il valore assoluto di un numero.",
+ "Returns the complement of a color.": "Restituisce il complemento di un colore.",
+ "Returns the index of the first occurance of $substring in $string.": "Restituisce l'indice della prima occorrenza di $substring in $string.",
+ "Returns the inverse of a color.": "Restituisce l'inverso di un colore.",
+ "Returns the keywords passed to a function that takes variable arguments.": "Restituisce le parole chiave passate a una funzione che accetta argomenti variabili.",
+ "Returns the length of a list.": "Restituisce la lunghezza di un elenco.",
+ "Returns the number of characters in a string.": "Restituisce il numero di caratteri in una stringa.",
+ "Returns the position of a value within a list.": "Restituisce la posizione di un valore all\\'interno di un elenco.",
+ "Returns the separator of a list.": "Restituisce il separatore di un elenco.",
+ "Returns the simple selectors that comprise a compound selector.": "Restituisce i selettori semplici che costituiscono un selettore composto.",
+ "Returns the string representation of a value as it would be represented in Sass.": "Restituisce la rappresentazione stringa di un valore rappresentato in Sass.",
+ "Returns the type of a value.": "Restituisce il tipo di un valore.",
+ "Returns the unit(s) associated with a number.": "Restituisce le unità associate a un numero.",
+ "Returns the value in a map associated with a given key.": "Restituisce il valore in una mappa associata a una chiave specificata.",
+ "Returns whether $super matches all the elements $sub does, and possibly more.": "Restituisce un valore che indica se $super corrisponde a tutti gli elementi $sub e ad altri elementi.",
+ "Returns whether a feature exists in the current Sass runtime.": "Restituisce un valore che indica se una funzionalità esiste nel runtime Sass corrente.",
+ "Returns whether a function with the given name exists.": "Restituisce un valore che indica se esiste una funzione con il nome specificato.",
+ "Returns whether a map has a value associated with a given key.": "Restituisce un valore che indica se a una mappa è associato un valore a una determinata chiave.",
+ "Returns whether a mixin with the given name exists.": "Restituisce un valore che indica se esiste un mixin con il nome specificato.",
+ "Returns whether a number has units.": "Restituisce un valore che indica se un numero contiene unità.",
+ "Returns whether a variable with the given name exists in the current scope.": "Restituisce un valore che indica se nell'ambito corrente esiste una variabile con il nome specificato.",
+ "Returns whether a variable with the given name exists in the global scope.": "Restituisce un valore che indica se nell'ambito globale esiste una variabile con il nome specificato.",
+ "Returns whether two numbers can be added, subtracted, or compared.": "Restituisce un valore che indica se è possibile aggiungere, sottrarre o confrontare due numeri.",
+ "Rounds a number down to the previous whole number.": "Arrotonda per difetto questo numero all'intero precedente.",
+ "Rounds a number to the nearest whole number.": "Arrotonda un numero all'intero più vicino.",
+ "Rounds a number up to the next whole number.": "Arrotonda per eccesso all'intero successivo.",
+ "Sass documentation": "Documentazione Sass",
+ "Selector Specificity": "Specifica del selettore",
+ "Selectors should not contain IDs because these rules are too tightly coupled with the HTML.": "I selettori non devono contenere ID perché queste regole sono strettamente accoppiate al codice HTML.",
+ "Simple HTML5 starting point": "Punto iniziale HTML5 semplice",
+ "Start tag name expected.": "È previsto il nome del tag di inizio.",
+ "Tag name must directly follow the open bracket.": "Il nome del tag deve seguire direttamente la parentesi aperta.",
+ "The universal selector (*) is known to be slow": "Il selettore universale (`*`) è notoriamente lento",
+ "Throws the value of an expression as a fatal error with stack trace. Useful for validating arguments to mixins and functions.": "Genera il valore di un\\'espressione come errore irreversibile con l’analisi dello stack. Utile per convalidare gli argomenti per mixin e funzioni.",
+ "URI expected": "URI previsto",
+ "URL encodes a string": "L'URL codifica una stringa",
+ "Unexpected character in tag.": "Carattere non previsto nel tag.",
+ "Unifies two selectors to produce a selector that matches elements matched by both.": "Unifica due selettori per produrre un selettore corrispondente a elementi corrispondenti a entrambi.",
+ "Unknown at-rule.": "Regola at-rule sconosciuta.",
+ "Unknown property.": "Proprietà sconosciuta.",
+ "Unknown property: '{0}'": "Proprietà sconosciuta '{0}'",
+ "Unknown vendor specific property.": "Proprietà specifica del fornitore sconosciuta.",
+ "VS Code now has built-in support for auto-renaming tags. Do you want to enable it?": "VS Code include ora il supporto predefinito per la ridenominazione automatica dei tag. Abilitarlo?",
+ "When using a vendor-specific prefix also include the standard property": "Quando si usa un prefisso specifico del fornitore, includere anche la proprietà standard",
+ "When using a vendor-specific prefix make sure to also include all other vendor-specific properties": "Quando si usa un prefisso specifico del fornitore, assicurarsi di includere anche tutte le altre proprietà specifiche del fornitore",
+ "While loop that takes an expression and repeatedly outputs the nested styles until the statement evaluates to `false`.": "Ciclo While che accetta un'espressione e restituisce ripetutamente gli stili annidati fino a quando l'istruzione non restituisce 'false'.",
+ "[ expected": "[ previsto",
+ "] expected": "previsto ]",
+ "absolute value of a number": "valore assoluto di un numero",
+ "arccosine - inverse of cosine function": "arcocoseno - inverso della funzione coseno",
+ "arcsine - inverse of sine function": "arcoseno - inverso della funzione seno",
+ "arctangent - inverse of tangent function": "arcotangente - inversa della funzione tangente",
+ "argument from '{0}'": "argomento da '{0}'",
+ "at-rule or selector expected": "previsto selettore o regola at",
+ "at-rule unknown": "a regola sconosciuta",
+ "bind the evaluation of a ruleset to each member of a list.": "associare la valutazione di un set di regole a ogni membro di un elenco.",
+ "calculates square root of a number": "calcola la radice quadrata di un numero",
+ "colon expected": "Sono previsti i due punti",
+ "comma expected": "virgola prevista",
+ "condition expected": "prevista condizione",
+ "converts numbers from one type into another": "converte i numeri da un tipo a un altro",
+ "converts to a %, e.g. 0.5 > 50%": "converte in %, ad esempio 0,5 > 50%",
+ "cosine function": "funzione coseno",
+ "creates a #AARRGGBB": "crea un #AARRGGBB",
+ "creates a color": "crea un colore",
+ "css.builtin.lab": "css.builtin.lab",
+ "dot expected": "previsto punto",
+ "escape string content": "contenuto della stringa di escape",
+ "expression expected": "prevista espressione",
+ "first argument modulus second argument": "modulo primo argomento secondo argomento",
+ "first argument raised to the power of the second argument": "primo argomento elevato alla potenza del secondo argomento",
+ "generate a list spanning a range of values": "genera un elenco che si estende su un intervallo di valori",
+ "identifier expected": "previsto identificatore",
+ "identifier or variable expected": "previsto identificatore o variabile",
+ "identifier or wildcard expected": "previsto identificatore o carattere jolly",
+ "inline-block is ignored due to the float. If 'float' has a value other than 'none', the box is floated and 'display' is treated as 'block'": "blocco inline ignorato a causa del valore float. Se 'float' ha un valore diverso da 'none', la casella viene resa mobile e 'display' viene considerato come 'block'",
+ "inlines a resource and falls back to `url()`": "rende inline una risorsa ed esegue il fallback a 'url()'",
+ "media query expected": "media query previsto",
+ "number expected": "previsto numero",
+ "operator expected": "previsto operatore",
+ "page directive or declaraton expected": "prevista direttiva o dichiarazione di pagina",
+ "parses a string to a color": "analizza una stringa con un colore",
+ "percentage expected": "percentuale prevista",
+ "property value expected": "valore della proprietà previsto",
+ "remove or change the unit of a dimension": "rimuovere o modificare l'unità di una dimensione",
+ "return `@color` 10% points darker": "restituisce '@color' 10% punti più scuro",
+ "return `@color` 10% points less saturated": "restituire '@color' con punti del 10% meno saturi",
+ "return `@color` 10% points less transparent": "restituisce '@color' 10% punti meno trasparenti",
+ "return `@color` 10% points lighter": "restituire '@color' con punti del 10% più chiari",
+ "return `@color` 10% points more saturated": "restituisce '@color' 10% punti in più saturi",
+ "return `@color` 10% points more transparent": "restituisce '@color' 10% punti più trasparenti",
+ "return `@color` with 50% transparency": "restituisce '@color' con trasparenza del 50%",
+ "return `@color` with a 10 degree larger in hue": "restituisce \"@color\" con una tonalità maggiore di 10 gradi",
+ "return `@darkcolor` if `@color1 is> 43% luma` otherwise return `@lightcolor`, see notes": "restituisce `@darkcolor` se `@color1 è > 43% luma` in caso contrario restituisce `@lightcolor`. Vedere le note",
+ "return a mix of `@color1` and `@color2`": "restituisce una combinazione di '@color1' e '@color2'",
+ "returns a grey, 100% desaturated color": "restituisce un colore grigio, 100% non saturo",
+ "returns a value at the specified position in the list": "restituisce un valore nella posizione specificata nell'elenco",
+ "returns one of two values depending on a condition.": "restituisce uno dei due valori a seconda di una condizione.",
+ "returns pi": "returns pi",
+ "returns the `alpha` channel of `@color`": "restituisce il canale 'alpha' di '@color'",
+ "returns the `blue` channel of `@color`": "restituisce il canale 'blue' di '@color'",
+ "returns the `green` channel of `@color`": "restituisce il canale 'green' di '@color'",
+ "returns the `hue` channel of `@color` in the HSL space": "restituisce il canale 'hue' di '@color' nello spazio HSL",
+ "returns the `hue` channel of `@color` in the HSV space": "restituisce il canale `hue` di `@color` nello spazio HSV",
+ "returns the `lightness` channel of `@color` in the HSL space": "restituisce il canale 'lightness' di '@color' nello spazio HSL",
+ "returns the `luma` value (perceptual brightness) of `@color`": "restituisce il valore 'luma' (luminosità percettiva) di '@color'",
+ "returns the `red` channel of `@color`": "restituisce il canale 'red' di '@color'",
+ "returns the `saturation` channel of `@color` in the HSL space": "restituisce il canale `saturation` di `@color` nello spazio HSL",
+ "returns the `saturation` channel of `@color` in the HSV space": "restituisce il canale 'saturation' di '@color' nello spazio HSV",
+ "returns the `value` channel of `@color` in the HSV space": "restituisce il canale 'value' di '@color' nello spazio HSV",
+ "returns the lowest of one or more values": "restituisce il valore più basso di uno o più valori",
+ "returns the number of elements in a value list": "restituisce il numero di elementi in un elenco di valori",
+ "rounds a number to a number of places": "arrotonda un numero a un numero di posizioni",
+ "rounds down to an integer": "arrotonda per difetto a un numero intero",
+ "rounds up to an integer": "arrotonda per eccesso a un numero intero",
+ "selector expected": "selettore previsto",
+ "semi-colon expected": "previsto punto e virgola",
+ "sine function": "funzione seno",
+ "string literal expected": "previsto valore letterale stringa",
+ "string replace": "sostituzione stringa",
+ "tangent function": "funzione tangente",
+ "term expected": "previsto termine",
+ "unknown keyword": "parola chiave sconosciuta",
+ "uri or string expected": "previsto uri o stringa",
+ "variable name expected": "previsto nome variabile",
+ "variable value expected": "Previsto valore variabile",
+ "whitespace expected": "previsto spazio vuoto",
+ "wildcard expected": "previsto carattere jolly",
+ "{ expected": "previsto segno {",
+ "{0}, '{1}'": "{0}, '{1}'",
+ "} expected": "previsto }"
+ },
+ "package": {
+ "description": "Fornisce un supporto avanzato del linguaggio per i file HTML e Handlebar",
+ "displayName": "Funzionalità del linguaggio HTML",
+ "html.autoClosingTags": "Abilita/Disabilita la chiusura automatica dei tag HTML.",
+ "html.autoCreateQuotes": "Abilita/disabilita la creazione automatica delle virgolette per l'assegnazione di attributi HTML. Questo tipo di virgolette può essere configurato da '#html.completion.attributeDefaultValue#'.",
+ "html.completion.attributeDefaultValue": "Controlla il valore predefinito per gli attributi quando il completamento viene accettato.",
+ "html.completion.attributeDefaultValue.doublequotes": "Il valore di attributo è impostato su \"\".",
+ "html.completion.attributeDefaultValue.empty": "Il valore di attributo non è impostato.",
+ "html.completion.attributeDefaultValue.singlequotes": "Il valore di attributo è impostato su ''.",
+ "html.customData.desc": "Elenco di percorsi di file relativi che puntano a file JSON e sono conformi al [formato dati personalizzato](https://github.com/microsoft/vscode-html-languageservice/blob/master/docs/customData.md).\r\n\r\nVS Code carica i dati personalizzati all'avvio per migliorare il supporto HTML per i tag HTML, gli attributi e i valori di attributo personalizzati specificati nei file JSON.\r\n\r\nI percorsi di file sono relativi all'area di lavoro e vengono considerate solo le impostazioni della cartella dell'area di lavoro.",
+ "html.format.contentUnformatted.desc": "Elenco di tag, delimitati da virgole, in cui il contenuto non deve essere riformattato. Per impostazione predefinita, con `null` viene usato il tag `pre`.",
+ "html.format.enable.desc": "Abilita/Disabilita il formattatore HTML predefinito.",
+ "html.format.extraLiners.desc": "Elenco di tag, delimitati da virgole, che devono essere preceduti da un carattere aggiuntivo di nuova riga. Con `null` viene usata l'impostazione predefinita `\"head, body, /html\"`.",
+ "html.format.indentHandlebars.desc": "Applica la formattazione e imposta un rientro per `{{#foo}}` e `{{/foo}}`.",
+ "html.format.indentInnerHtml.desc": "Imposta un rientro per le sezioni `` e ``.",
+ "html.format.maxPreserveNewLines.desc": "Numero massimo di interruzioni di riga da mantenere in un unico blocco. Per non impostare un numero massimo, usare `null`.",
+ "html.format.preserveNewLines.desc": "Controlla se è necessario mantenere interruzioni di riga esistenti prima degli elementi. Funziona solo prima degli elementi e non all'interno di tag o per il testo.",
+ "html.format.templating.desc": "Tag dei linguaggi per la creazione di modelli Honor Django, ERB, Handlebars e PHP.",
+ "html.format.unformatted.desc": "Elenco di tag, delimitati da virgole, che non devono essere riformattati. Con `null` viene usata l'impostazione predefinita che prevede l'uso di tutti i tag elencati in https://www.w3.org/TR/html5/dom.html#phrasing-content.",
+ "html.format.unformattedContentDelimiter.desc": "Mantiene unito il contenuto di testo tra questa stringa.",
+ "html.format.wrapAttributes.alignedmultiple": "Esegue il wrapping quando viene superata la lunghezza di riga. Allinea gli attributi verticalmente.",
+ "html.format.wrapAttributes.auto": "Esegue il wrapping degli attributi solo quando viene superata la lunghezza di riga.",
+ "html.format.wrapAttributes.desc": "Esegue il wrapping degli attributi.",
+ "html.format.wrapAttributes.force": "Esegue il wrapping di ogni attributo ad eccezione del primo.",
+ "html.format.wrapAttributes.forcealign": "Esegue il wrapping di ogni attributo ad eccezione del primo e mantiene l'allineamento.",
+ "html.format.wrapAttributes.forcemultiline": "Esegue il wrapping di ogni attributo.",
+ "html.format.wrapAttributes.preserve": "Mantiene il ritorno a capo degli attributi.",
+ "html.format.wrapAttributes.preservealigned": "Mantiene il ritorno a capo degli attributi e allinea.",
+ "html.format.wrapAttributesIndentSize.desc": "Imposta un rientro per gli attributi con ritorno a capo dopo N caratteri. Usare 'null' per usare le dimensioni predefinite del rientro. Ignorato se '#html.format.wrapAttributes#' è impostato su 'aligned'.",
+ "html.format.wrapLineLength.desc": "Numero massimo di caratteri per riga (0 = disabilita).",
+ "html.hover.documentation": "Mostra la documentazione su tag e attributi al passaggio del puntatore.",
+ "html.hover.references": "Mostra i riferimenti a MDN al passaggio del puntatore.",
+ "html.mirrorCursorOnMatchingTag": "Abilita/disabilita il mirroring del cursore in caso di tag HTML corrispondente.",
+ "html.mirrorCursorOnMatchingTagDeprecationMessage": "Deprecata e sostituita da `editor.linkedEditing`",
+ "html.suggest.hideEndTagSuggestions.desc": "Controlla se il supporto integrato per il linguaggio HTML suggerisce la chiusura dei tag. Se disabilitato, i completamenti dei tag di chiusura come \"\" non verranno mostrati.",
+ "html.suggest.html5.desc": "Controlla se il supporto del linguaggio HTML predefinito suggerisce tag, proprietà e valori di HTML5.",
+ "html.trace.server.desc": "Traccia la comunicazione tra VS Code e il server del linguaggio HTML.",
+ "html.validate.scripts": "Controlla se il supporto del linguaggio HTML predefinito convalida gli script incorporati.",
+ "html.validate.styles": "Controlla se il supporto del linguaggio HTML predefinito convalida gli stili incorporati."
+ }
+ }
+}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-it/translations/extensions/vscode.html.i18n.json b/i18n/vscode-language-pack-it/translations/extensions/vscode.html.i18n.json
index bb48ccb246..be9bee782e 100644
--- a/i18n/vscode-language-pack-it/translations/extensions/vscode.html.i18n.json
+++ b/i18n/vscode-language-pack-it/translations/extensions/vscode.html.i18n.json
@@ -9,8 +9,8 @@
"version": "1.0.0",
"contents": {
"package": {
- "displayName": "Nozioni di base sul linguaggio HTML",
- "description": "Fornisce l'evidenziazione della sintassi, la corrispondenza delle parentesi e i frammenti nei file HTML."
+ "description": "Fornisce l'evidenziazione della sintassi, la corrispondenza delle parentesi e i frammenti nei file HTML.",
+ "displayName": "Nozioni di base sul linguaggio HTML"
}
}
}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-it/translations/extensions/vscode.ini.i18n.json b/i18n/vscode-language-pack-it/translations/extensions/vscode.ini.i18n.json
index 9e96416dee..c6e65a10b7 100644
--- a/i18n/vscode-language-pack-it/translations/extensions/vscode.ini.i18n.json
+++ b/i18n/vscode-language-pack-it/translations/extensions/vscode.ini.i18n.json
@@ -9,8 +9,8 @@
"version": "1.0.0",
"contents": {
"package": {
- "displayName": "Nozioni di base sul linguaggio ini",
- "description": "Offre la sottolineatura delle sintassi e il match delle parentesi nei file Ini."
+ "description": "Offre la sottolineatura delle sintassi e il match delle parentesi nei file Ini.",
+ "displayName": "Nozioni di base sul linguaggio ini"
}
}
}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-it/translations/extensions/vscode.ipynb.i18n.json b/i18n/vscode-language-pack-it/translations/extensions/vscode.ipynb.i18n.json
new file mode 100644
index 0000000000..d8aba7317d
--- /dev/null
+++ b/i18n/vscode-language-pack-it/translations/extensions/vscode.ipynb.i18n.json
@@ -0,0 +1,29 @@
+{
+ "": [
+ "--------------------------------------------------------------------------------------------",
+ "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."
+ ],
+ "version": "1.0.0",
+ "contents": {
+ "bundle": {
+ "Insert Image as Attachment": "Inserire immagine come allegato"
+ },
+ "package": {
+ "addCellOutputToChat.title": "Aggiungi output cella alla chat",
+ "cleanInvalidImageAttachment.title": "Pulisci il riferimento all'allegato immagine non valido",
+ "copyCellOutput.title": "Copia output della cella",
+ "description": "Fornisce il supporto di base per l'apertura e la lettura dei file di notebook di Jupyter (estensione ipynb)",
+ "displayName": "Supporto .ipynb",
+ "ipynb.experimental.serialization": "Funzionalità sperimentale per serializzare Jupyter Notebook in un thread di lavoro.",
+ "ipynb.pasteImagesAsAttachments.enabled": "Abilitare/disabilitare l'incollamento delle immagini in celle Markdown nei file del notebook ipynb. Le immagini incollate vengono inserite come allegati alla cella.",
+ "markdownAttachmentRenderer.displayName": "Renderer di allegati cella Markdown-It ipynb",
+ "newUntitledIpynb.shortTitle": "Jupyter Notebook",
+ "newUntitledIpynb.title": "Nuovo Jupyter Notebook",
+ "openCellOutput.title": "Apri l'output della cella nell'editor di testo",
+ "openIpynbInNotebookEditor.title": "Apri file IPYNB nell'editor Notebook"
+ }
+ }
+}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-it/translations/extensions/vscode.jake.i18n.json b/i18n/vscode-language-pack-it/translations/extensions/vscode.jake.i18n.json
new file mode 100644
index 0000000000..723394b69b
--- /dev/null
+++ b/i18n/vscode-language-pack-it/translations/extensions/vscode.jake.i18n.json
@@ -0,0 +1,24 @@
+{
+ "": [
+ "--------------------------------------------------------------------------------------------",
+ "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."
+ ],
+ "version": "1.0.0",
+ "contents": {
+ "bundle": {
+ "Auto detecting Jake for folder {0} failed with error: {1}', this.workspaceFolder.name, err.error ? err.error.toString() : 'unknown": "Rilevamento automatico Jake per la cartella {0} non riuscito con errore: {1}', this.workspaceFolder.name, err.error? err.error.toString() : 'unknown",
+ "Go to output": "Passa all'output",
+ "Problem finding jake tasks. See the output for more information.": "Si è verificato un problema durante la ricerca delle attività di jake. Per altre informazioni, vedere l'output."
+ },
+ "package": {
+ "config.jake.autoDetect": "Controlla l'abilitazione del rilevamento delle attività di Jake. Il rilevamento delle attività di Jake può causare l'esecuzione dei file in qualsiasi area di lavoro aperta.",
+ "description": "Estensione che aggiunge le funzionalità di Jake a VS Code.",
+ "displayName": "Supporto di Jake per VS Code",
+ "jake.taskDefinition.file.description": "Il file di Jake che fornisce l'attività. Può essere omesso.",
+ "jake.taskDefinition.type.description": "L'attività di Jake da personalizzare."
+ }
+ }
+}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-it/translations/extensions/vscode.java.i18n.json b/i18n/vscode-language-pack-it/translations/extensions/vscode.java.i18n.json
index 8584e86aff..dd2d421f63 100644
--- a/i18n/vscode-language-pack-it/translations/extensions/vscode.java.i18n.json
+++ b/i18n/vscode-language-pack-it/translations/extensions/vscode.java.i18n.json
@@ -9,8 +9,8 @@
"version": "1.0.0",
"contents": {
"package": {
- "displayName": "Nozioni di base sul linguaggio Java",
- "description": "Offre i frammenti, la sottolineatura delle sintassi, la corrispondenza delle parentesi e la riduzione del codice nei file Java."
+ "description": "Offre i frammenti, la sottolineatura delle sintassi, la corrispondenza delle parentesi e la riduzione del codice nei file Java.",
+ "displayName": "Nozioni di base sul linguaggio Java"
}
}
}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-it/translations/extensions/vscode.javascript.i18n.json b/i18n/vscode-language-pack-it/translations/extensions/vscode.javascript.i18n.json
index 8c3a634386..e020f94445 100644
--- a/i18n/vscode-language-pack-it/translations/extensions/vscode.javascript.i18n.json
+++ b/i18n/vscode-language-pack-it/translations/extensions/vscode.javascript.i18n.json
@@ -9,8 +9,8 @@
"version": "1.0.0",
"contents": {
"package": {
- "displayName": "Nozioni di base sul linguaggio JavaScript",
- "description": "Offre i frammenti, la sottolineatura delle sintassi, la corrispondenza delle parentesi e la riduzione del codice nei file JavaScript."
+ "description": "Offre i frammenti, la sottolineatura delle sintassi, la corrispondenza delle parentesi e la riduzione del codice nei file JavaScript.",
+ "displayName": "Nozioni di base sul linguaggio JavaScript"
}
}
}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-it/translations/extensions/vscode.json-language-features.i18n.json b/i18n/vscode-language-pack-it/translations/extensions/vscode.json-language-features.i18n.json
new file mode 100644
index 0000000000..0b13053271
--- /dev/null
+++ b/i18n/vscode-language-pack-it/translations/extensions/vscode.json-language-features.i18n.json
@@ -0,0 +1,190 @@
+{
+ "": [
+ "--------------------------------------------------------------------------------------------",
+ "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."
+ ],
+ "version": "1.0.0",
+ "contents": {
+ "bundle": {
+ "$ref '{0}' in '{1}' can not be resolved.": "$ref '{0}' in '{1}' non può essere risolto.",
+ "": "",
+ "A default value. Used by suggestions.": "Valore predefinito. Usato dai suggerimenti.",
+ "A descriptive title of the schema.": "Titolo descrittivo dello schema.",
+ "A long description of the schema. Used in hover menus and suggestions.": "Descrizione lunga dello schema. Usato nei menu e nei suggerimenti al passaggio del mouse.",
+ "A map of property names to either an array of property names or a schema. An array of property names means the property named in the key depends on the properties in the array being present in the object in order to be valid. If the value is a schema, then the schema is only applied to the object if the property in the key exists on the object.": "Una mappa di nomi di proprietà per una matrice di nomi di proprietà o uno schema. Una matrice di nomi di proprietà indica che la proprietà denominata nella chiave dipende dalla presenza delle proprietà della matrice nell\\'oggetto per essere valida. Se il valore è uno schema, lo schema viene applicato all\\'oggetto solo se la proprietà nella chiave esiste nell\\'oggetto.",
+ "A map of property names to schemas for each property.": "Una mappa dei nomi delle proprietà e degli schemi per ogni proprietà.",
+ "A map of regular expressions on property names to schemas for matching properties.": "Una mappa di espressioni regolari sui nomi delle proprietà e sugli schemi per le proprietà corrispondenti.",
+ "A number that should cleanly divide the current value (i.e. have no remainder).": "Numero che deve dividere in modo pulito il valore corrente (ovvero non deve avere resto).",
+ "A regular expression to match the string against. It is not implicitly anchored.": "Espressione regolare rispetto a cui trovare la corrispondenza con la stringa. Non è ancorato in modo implicito.",
+ "A schema which must not match.": "Schema che non deve corrispondere.",
+ "A unique identifier for the schema.": "Identificatore univoco per lo schema.",
+ "An array instance is valid against \"contains\" if at least one of its elements is valid against the given schema.": "Un'istanza di matrice è valida per \"contains\" se almeno uno dei relativi elementi è valido per lo schema specificato.",
+ "An array of schemas, all of which must match.": "Matrice di schemi che devono essere tutti corrispondenti.",
+ "An array of schemas, exactly one of which must match.": "Matrice di schemi, esattamente uno dei quali deve corrispondere.",
+ "An array of schemas, where at least one must match.": "Matrice di schemi, in cui almeno uno deve corrispondere.",
+ "An array of strings that lists the names of all properties required on this object.": "Matrice di stringhe che elenca i nomi di tutte le proprietà necessarie per questo oggetto.",
+ "An instance validates successfully against this keyword if its value is equal to the value of the keyword.": "Un\\'istanza viene convalidata con successo rispetto a questa parola chiave se il suo valore è uguale al valore della parola chiave.",
+ "Array does not contain required item.": "La matrice non contiene l\\'elemento obbligatorio.",
+ "Array has duplicate items.": "La matrice contiene elementi duplicati.",
+ "Array has too few items that match the contains contraint. Expected {0} or more.": "La matrice contiene troppi elementi che corrispondono al limite contains. Previsti {0} o più.",
+ "Array has too few items. Expected {0} or more.": "La matrice contiene troppo pochi elementi. Previsto {0} o più.",
+ "Array has too many items according to schema. Expected {0} or fewer.": "La matrice contiene troppi elementi in base allo schema. Previsti {0} o meno.",
+ "Array has too many items that match the contains contraint. Expected {0} or less.": "La matrice contiene troppi elementi che corrispondono al limite contains. Previsti {0} o meno.",
+ "Array has too many items. Expected {0} or fewer.": "La matrice contiene troppi elementi. Previsti {0} o meno.",
+ "Colon expected": "Sono previsti i due punti",
+ "Comments are not permitted in JSON.": "I commenti non sono consentiti in JSON.",
+ "Comments from schema authors to readers or maintainers of the schema.": "Commenti dagli autori dello schema ai lettori o ai gestori dello schema.",
+ "Configure": "Configurare",
+ "Configured by extension: {0}": "Configurato dall'estensione: {0}",
+ "Configured in user settings": "Configurato nelle impostazioni utente",
+ "Configured in workspace settings": "Configurato nelle impostazioni dell'area di lavoro",
+ "Default value": "Valore predefinito",
+ "Describes the content encoding of a string property.": "Descrive la codifica dei contenuti di una proprietà stringa.",
+ "Describes the format expected for the value. By default, not used for validation": "Descrive il formato previsto per il valore. Per impostazione predefinita, non usato per la convalida",
+ "Describes the media type of a string property.": "Descrive il tipo di supporto di una proprietà stringa.",
+ "Downloading schemas is disabled in untrusted workspaces": "Il download degli schemi è disabilitato nelle aree di lavoro non attendibili",
+ "Downloading schemas is disabled through setting '{0}'": "Il download degli schemi è disabilitato tramite l'impostazione '{0}'",
+ "Downloading schemas is disabled. Click to configure.": "Il download degli schemi è disabilitato. Fare clic per configurare.",
+ "Draft-03 schemas are not supported.": "Gli schemi Draft-03 non sono supportati.",
+ "Duplicate anchor declaration: '{0}'": "Dichiarazione di ancoraggio duplicato: '{0}'",
+ "Duplicate object key": "Chiave oggetto duplicata",
+ "Either a schema or a boolean. If a schema, used to validate all properties not matched by 'properties', 'propertyNames', or 'patternProperties'. If false, any properties not defined by the adajacent keywords will cause this schema to fail.": "Schema o valore booleano. Se uno schema viene usato per convalidare tutte le proprietà non corrispondenti a 'properties', 'propertyNames', o 'patternProperties'. Se false, qualsiasi proprietà non definita dalle parole chiave adiacenti causerà l'esito negativo dello schema.",
+ "Either a string of one of the basic schema types (number, integer, null, array, object, boolean, string) or an array of strings specifying a subset of those types.": "Stringa di uno dei tipi di schema di base (numero, numero intero, null, matrice, oggetto, valore booleano, stringa) o matrice di stringhe che specificano un subset di tali tipi.",
+ "End of file expected.": "È previsto un carattere di fine file.",
+ "Expected a JSON object, array or literal.": "È previsto un oggetto JSON, una matrice o un valore letterale.",
+ "Expected comma": "Prevista virgola",
+ "Expected comma or closing brace": "Prevista virgola o parentesi graffa di chiusura",
+ "Expected comma or closing bracket": "Prevista una virgola o una parentesi quadra di chiusura",
+ "Failed to sort the JSONC document, please consider opening an issue.": "Non è stato possibile ordinare il documento JSONC. Provare ad aprire un problema.",
+ "For arrays, only when items is set as an array. If items are a schema, this schema validates items after the ones specified by the items schema. If false, additional items will cause validation to fail.": "Per le matrici, solo quando gli elementi sono impostati come matrice. Se gli elementi sono uno schema, questo schema convalida gli elementi dopo quelli specificati dallo schema di elementi. Se false, gli elementi aggiuntivi causeranno l'esito negativo della convalida.",
+ "For arrays. Can either be a schema to validate every element against or an array of schemas to validate each item against in order (the first schema will validate the first element, the second schema will validate the second element, and so on.": "Per le matrici. Può essere uno schema rispetto a cui convalidare ogni elemento o una matrice di schemi rispetto a cui convalidare ogni elemento in ordine: il primo schema convaliderà il primo elemento, il secondo schema convaliderà il secondo elemento e così via.",
+ "If all of the items in the array must be unique. Defaults to false.": "Se tutti gli elementi della matrice devono essere univoci. Il valore predefinito è false.",
+ "If the instance is an object, this keyword validates if every property name in the instance validates against the provided schema.": "Se l\\'istanza è un oggetto, questa parola chiave convalida se tutti i nomi delle proprietà dell\\'istanza sono validi rispetto allo schema specificato.",
+ "Incorrect type. Expected \"{0}\".": "Tipo non corretto. Previsto \"{0}\".",
+ "Incorrect type. Expected one of {0}.": "Tipo non corretto. Previsto uno di {0}.",
+ "Indicates that the value of the instance is managed exclusively by the owning authority.": "Indica che il valore dell\\'istanza è gestito esclusivamente dall\\'autorità proprietaria.",
+ "Invalid characters in string. Control characters must be escaped.": "Caratteri non validi nella stringa. I caratteri di controllo devono essere preceduti da un carattere di escape.",
+ "Invalid color format. Use #RGB, #RGBA, #RRGGBB or #RRGGBBAA.": "Formato colore non valido. Usare #RGB, #RGBA, #RRGGBB o #RRGGBBAA.",
+ "Invalid escape character in string.": "Carattere di escape non valido nella stringa.",
+ "Invalid number format.": "Formato numerico non valido.",
+ "Invalid unicode sequence in string.": "Sequenza Unicode non valida nella stringa.",
+ "Item does not match any validation rule from the array.": "L'elemento non corrisponde ad alcuna regola di convalida della matrice.",
+ "JSON Language Server": "Server di linguaggio JSON",
+ "JSON Outline Status": "Stato struttura JSON",
+ "JSON Validation Status": "Stato di convalida JSON",
+ "JSON schema cache cleared.": "Cache dello schema JSON cancellata.",
+ "JSON schema configured": "Schema JSON configurato",
+ "JSON: Schema Resolution Error": "JSON: Errore di risoluzione dello schema",
+ "Learn more about JSON schema configuration...": "Altre informazioni sulla configurazione dello schema JSON...",
+ "Loading JSON info": "Caricamento delle informazioni JSON in corso",
+ "Makes the maximum property exclusive.": "Rende esclusiva la proprietà massima.",
+ "Makes the minimum property exclusive.": "Rende esclusiva la proprietà minima.",
+ "Matches a schema that is not allowed.": "Corrisponde a uno schema non consentito.",
+ "Matches multiple schemas when only one must validate.": "Trova la corrispondenza con più schemi quando ne deve convalidare solo uno.",
+ "Missing property \"{0}\".": "Proprietà \"{0}\" mancante.",
+ "New array": "Nuova matrice",
+ "New object": "Nuovo oggetto",
+ "No schema configured for this file": "Nessuno schema configurato per questo file",
+ "No schema validation": "Nessuna convalida dello schema",
+ "Not used for validation. Place subschemas here that you wish to reference inline with $ref.": "Non utilizzato per la convalida. Inserire qui i sottoschema a cui si vuole fare riferimento inline con $ref.",
+ "Object has fewer properties than the required number of {0}": "L'oggetto ha meno proprietà del numero richiesto di {0}",
+ "Object has more properties than limit of {0}.": "L'oggetto ha più proprietà del limite di {0}.",
+ "Object is missing property {0} required by property {1}.": "Nell'oggetto manca la proprietà {0} richiesta dalla proprietà {1}.",
+ "Open Extension": "Apri estensione",
+ "Open Settings": "Apri impostazioni",
+ "Outline": "Struttura",
+ "Problem reading content from '{0}': UTF-8 with BOM detected, only UTF 8 is allowed.": "Problema durante la lettura dei contenuti da '{0}': UTF-8 con BOM rilevato. È consentito solo UTF 8.",
+ "Problems loading reference '{0}': {1}": "Problemi durante il caricamento del riferimento '{0}': {1}",
+ "Property expected": "Proprietà prevista",
+ "Property keys must be doublequoted": "Le chiavi di proprietà devono essere racchiuse da virgolette doppie",
+ "Property {0} is not allowed.": "La proprietà {0} non è consentita.",
+ "Reference a definition hosted on any location.": "Fare riferimento a una definizione ospitata in qualsiasi posizione.",
+ "Sample JSON values associated with a particular schema, for the purpose of illustrating usage.": "Valori JSON di esempio associati a uno schema specifico, allo scopo di illustrare l'utilizzo.",
+ "Schema not found: {0}": "Schema non trovato: {0}",
+ "Schema validated": "Schema convalidato",
+ "Select the schema to use for {0}": "Selezionare lo schema da usare per {0}",
+ "Show Schemas": "Mostrare schemi",
+ "Sort JSON": "Ordina JSON",
+ "String does not match the pattern of \"{0}\".": "La stringa non corrisponde al modello di \"{0}\".",
+ "String is longer than the maximum length of {0}.": "La stringa è più lunga della lunghezza massima di {0}.",
+ "String is not a RFC3339 date-time.": "La stringa non è una RFC3339 date-time.",
+ "String is not a RFC3339 date.": "La stringa non è una RFC3339 date.",
+ "String is not a RFC3339 time.": "La stringa non è una RFC3339 time.",
+ "String is not a URI: {0}": "La stringa non è un URI: {0}",
+ "String is not a hostname.": "La stringa non è un nome host.",
+ "String is not an IPv4 address.": "La stringa non è un indirizzo IPv4.",
+ "String is not an IPv6 address.": "La stringa non è un indirizzo IPv6.",
+ "String is not an e-mail address.": "La stringa non è un indirizzo di posta elettronica.",
+ "String is shorter than the minimum length of {0}.": "La stringa è inferiore alla lunghezza minima di {0}.",
+ "The \"else\" subschema is used for validation when the \"if\" subschema fails.": "\\\"else\\\" subschema viene usato per la convalida quando \\\"if\\\" subschema non riuscito.",
+ "The \"then\" subschema is used for validation when the \"if\" subschema succeeds.": "Il sottoschema \"then\" viene utilizzato per la convalida quando il sottoschema \"if\" ha esito positivo.",
+ "The maximum length of a string.": "Lunghezza massima di una stringa.",
+ "The maximum number of items that can be inside an array. Inclusive.": "Numero massimo di elementi che possono essere all'interno di una matrice. Incluso.",
+ "The maximum number of properties an object can have. Inclusive.": "Numero massimo di proprietà che un oggetto può avere. All inclusive.",
+ "The maximum numerical value, inclusive by default.": "Valore numerico massimo, inclusivo per impostazione predefinita.",
+ "The minimum length of a string.": "Lunghezza minima di una stringa.",
+ "The minimum number of items that can be inside an array. Inclusive.": "Numero minimo di elementi che possono essere all'interno di una matrice. Incluso.",
+ "The minimum number of properties an object can have. Inclusive.": "Numero minimo di proprietà che un oggetto può avere. Incluso.",
+ "The minimum numerical value, inclusive by default.": "Valore numerico minimo, incluso per impostazione predefinita.",
+ "The schema to verify this document against.": "Schema su cui verificare il documento.",
+ "The schema uses meta-schema features ({0}) that are not yet supported by the validator.": "Lo schema usa funzionalità meta-schema ({0}) che non sono ancora supportate dal validator.",
+ "The set of literal values that are valid.": "Set di valori letterali validi.",
+ "The validation outcome of the \"if\" subschema controls which of the \"then\" or \"else\" keywords are evaluated.": "Il risultato della convalida del sottoschema \"if\" controlla quali parole chiave \"then\" o \"else\" vengono valutate.",
+ "Trailing comma": "Virgola finale",
+ "URI expected.": "È previsto un URI.",
+ "URI is expected.": "È previsto un URI.",
+ "URI with a scheme is expected.": "È previsto un URI con schema.",
+ "Unable to compute used schemas: No document": "Impossibile calcolare gli schemi usati: nessun documento",
+ "Unable to compute used schemas: {0}": "Non è possibile calcolare gli schemi usati: {0}",
+ "Unable to download schemas in untrusted workspaces.": "Non è possibile scaricare gli schemi nelle aree di lavoro non attendibili.",
+ "Unable to load schema from '{0}'. No schema request service available": "Non è possibile caricare lo schema da \\'{0}\\'. Nessun servizio di richiesta dello schema disponibile",
+ "Unable to load schema from '{0}': No content.": "Non è possibile caricare lo schema da '{0}': nessun contenuto.",
+ "Unable to load schema from '{0}': {1}.": "Non è possibile caricare lo schema da '{0}': {1}.",
+ "Unable to load {0}": "Impossibile caricare {0}",
+ "Unable to parse content from '{0}': Parse error at offset {1}.": "Non è possibile analizzare il contenuto da '{0}': errore di analisi in corrispondenza dell'offset {1}.",
+ "Unable to resolve schema. Click to retry.": "Non è possibile risolvere lo schema. Fare clic per riprovare.",
+ "Unexpected end of comment.": "Fine del commento imprevista.",
+ "Unexpected end of number.": "Fine del numero imprevista.",
+ "Unexpected end of string.": "Fine della stringa imprevista.",
+ "Value expected": "È previsto un valore",
+ "Value is above the exclusive maximum of {0}.": "Il valore è superiore al massimo esclusivo di {0}.",
+ "Value is above the maximum of {0}.": "Il valore è superiore al valore massimo di {0}.",
+ "Value is below the exclusive minimum of {0}.": "Il valore è inferiore al minimo esclusivo di {0}.",
+ "Value is below the minimum of {0}.": "Il valore è inferiore al valore minimo di {0}.",
+ "Value is deprecated": "Il valore è deprecato",
+ "Value is not accepted. Valid values: {0}.": "Valore non accettato. Valori validi: {0}.",
+ "Value is not divisible by {0}.": "Il valore non è divisibile per {0}.",
+ "Value must be {0}.": "Il valore deve essere {0}.",
+ "multiple JSON schemas configured": "più schemi JSON configurati",
+ "no JSON schema configured": "nessuno schema JSON configurato",
+ "only {0} document symbols shown for performance reasons": "solo {0} simboli del documento visualizzati per motivi di prestazioni",
+ "{0} is a directory, not a file": "{0} è una directory, non un file"
+ },
+ "package": {
+ "description": "Fornisce supporto avanzato del linguaggio per i file JSON.",
+ "displayName": "Funzionalità del linguaggio JSON",
+ "json.clickToRetry": "Fare clic per riprovare.",
+ "json.colorDecorators.enable.deprecationMessage": "L'impostazione `json.colorDecorators.enable` è stata deprecata e sostituita da `editor.colorDecorators`.",
+ "json.colorDecorators.enable.desc": "Abilita o disabilita gli elementi Decorator di tipo colore",
+ "json.command.clearCache": "Cancella cache dello schema",
+ "json.command.sort": "Ordina documento",
+ "json.enableSchemaDownload.desc": "Se è abilitata, è possibile recuperare gli schemi JSON da posizioni HTTP e HTTPS.",
+ "json.format.enable.desc": "Abilita/Disabilita il formattatore JSON predefinito",
+ "json.format.keepLines.desc": "Mantenere tutte le nuove righe esistenti durante la formattazione.",
+ "json.maxItemsComputed.desc": "Numero massimo di simboli di struttura e aree di riduzione calcolati (limitato per motivi di prestazioni).",
+ "json.maxItemsExceededInformation.desc": "Mostra la notifica quando viene superato il numero massimo di simboli di struttura e di aree di riduzione del codice.",
+ "json.schemaResolutionErrorMessage": "Non è possibile risolvere lo schema.",
+ "json.schemas.desc": "Associa schemi a file JSON nel progetto corrente.",
+ "json.schemas.fileMatch.desc": "Matrice di modelli di file da confrontare durante la risoluzione di file JSON in schemi. '*' e '**' possono essere usati come carattere jolly. I modelli di esclusione possono anche essere definiti e iniziare con '!'. Un file corrisponde quando è presente almeno un criterio di corrispondenza e l'ultimo criterio di corrispondenza non è un criterio di esclusione.",
+ "json.schemas.fileMatch.item.desc": "Modello di file che può contenere '*' e '**' per la corrispondenza durante la risoluzione di file JSON in schemi. Quando inizia con '!', definisce un modello di esclusione.",
+ "json.schemas.schema.desc": "Definizione dello schema per l'URL specificato. È necessario specificare lo schema per evitare accessi all'URL dello schema.",
+ "json.schemas.url.desc": "URL o percorso di file assoluto di uno schema. Può essere un percorso relativo (che comincia con './') nelle impostazioni dell'area di lavoro e della cartella dell'area di lavoro.",
+ "json.tracing.desc": "Traccia le comunicazioni tra Visual Studio Code e il server di linguaggio JSON.",
+ "json.validate.enable.desc": "Abilita/disabilita la convalida JSON.",
+ "json.workspaceTrust": "L'estensione richiede l'attendibilità dell'area di lavoro per caricare gli schemi da posizioni HTTP e HTTPS."
+ }
+ }
+}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-it/translations/extensions/vscode.json.i18n.json b/i18n/vscode-language-pack-it/translations/extensions/vscode.json.i18n.json
index 4902c025d6..501d695e7c 100644
--- a/i18n/vscode-language-pack-it/translations/extensions/vscode.json.i18n.json
+++ b/i18n/vscode-language-pack-it/translations/extensions/vscode.json.i18n.json
@@ -9,8 +9,8 @@
"version": "1.0.0",
"contents": {
"package": {
- "displayName": "Nozioni di base sul linguaggio JSON",
- "description": "Fornisce l'evidenziazione della sintassi e la corrispondenza delle parentesi nei file JSON."
+ "description": "Fornisce l'evidenziazione della sintassi e la corrispondenza delle parentesi nei file JSON.",
+ "displayName": "Nozioni di base sul linguaggio JSON"
}
}
}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-it/translations/extensions/julia.i18n.json b/i18n/vscode-language-pack-it/translations/extensions/vscode.julia.i18n.json
similarity index 100%
rename from i18n/vscode-language-pack-it/translations/extensions/julia.i18n.json
rename to i18n/vscode-language-pack-it/translations/extensions/vscode.julia.i18n.json
diff --git a/i18n/vscode-language-pack-it/translations/extensions/latex.i18n.json b/i18n/vscode-language-pack-it/translations/extensions/vscode.latex.i18n.json
similarity index 100%
rename from i18n/vscode-language-pack-it/translations/extensions/latex.i18n.json
rename to i18n/vscode-language-pack-it/translations/extensions/vscode.latex.i18n.json
diff --git a/i18n/vscode-language-pack-it/translations/extensions/vscode.less.i18n.json b/i18n/vscode-language-pack-it/translations/extensions/vscode.less.i18n.json
index 8ff4b52533..d4bb6c797e 100644
--- a/i18n/vscode-language-pack-it/translations/extensions/vscode.less.i18n.json
+++ b/i18n/vscode-language-pack-it/translations/extensions/vscode.less.i18n.json
@@ -9,8 +9,8 @@
"version": "1.0.0",
"contents": {
"package": {
- "displayName": "Nozioni di base sul linguaggio Less",
- "description": "Offre la sottolineatura delle sintassi, il match delle parentesi e il folding nei file Less."
+ "description": "Offre la sottolineatura delle sintassi, il match delle parentesi e il folding nei file Less.",
+ "displayName": "Nozioni di base sul linguaggio Less"
}
}
}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-it/translations/extensions/vscode.log.i18n.json b/i18n/vscode-language-pack-it/translations/extensions/vscode.log.i18n.json
index c2c867c89f..7f1d1071dd 100644
--- a/i18n/vscode-language-pack-it/translations/extensions/vscode.log.i18n.json
+++ b/i18n/vscode-language-pack-it/translations/extensions/vscode.log.i18n.json
@@ -9,8 +9,8 @@
"version": "1.0.0",
"contents": {
"package": {
- "displayName": "LOG",
- "description": "Offre la sottolineatura delle sintassi per i file con estensione log."
+ "description": "Offre la sottolineatura delle sintassi per i file con estensione log.",
+ "displayName": "LOG"
}
}
}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-it/translations/extensions/vscode.lua.i18n.json b/i18n/vscode-language-pack-it/translations/extensions/vscode.lua.i18n.json
index 4c00b10686..f685cfa217 100644
--- a/i18n/vscode-language-pack-it/translations/extensions/vscode.lua.i18n.json
+++ b/i18n/vscode-language-pack-it/translations/extensions/vscode.lua.i18n.json
@@ -9,8 +9,8 @@
"version": "1.0.0",
"contents": {
"package": {
- "displayName": "Nozioni di base sul linguaggio Lua",
- "description": "Offre la sottolineatura delle sintassi e il match delle parentesi nei file Lua."
+ "description": "Offre la sottolineatura delle sintassi e il match delle parentesi nei file Lua.",
+ "displayName": "Nozioni di base sul linguaggio Lua"
}
}
}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-it/translations/extensions/vscode.make.i18n.json b/i18n/vscode-language-pack-it/translations/extensions/vscode.make.i18n.json
index 743dad4535..6c34766174 100644
--- a/i18n/vscode-language-pack-it/translations/extensions/vscode.make.i18n.json
+++ b/i18n/vscode-language-pack-it/translations/extensions/vscode.make.i18n.json
@@ -9,8 +9,8 @@
"version": "1.0.0",
"contents": {
"package": {
- "displayName": "Nozioni di base sul linguaggio Make",
- "description": "Offre la sottolineatura delle sintassi e il match delle parentesi nei file Make."
+ "description": "Offre la sottolineatura delle sintassi e il match delle parentesi nei file Make.",
+ "displayName": "Nozioni di base sul linguaggio Make"
}
}
}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-it/translations/extensions/vscode.markdown-language-features.i18n.json b/i18n/vscode-language-pack-it/translations/extensions/vscode.markdown-language-features.i18n.json
new file mode 100644
index 0000000000..bc22cc79c4
--- /dev/null
+++ b/i18n/vscode-language-pack-it/translations/extensions/vscode.markdown-language-features.i18n.json
@@ -0,0 +1,172 @@
+{
+ "": [
+ "--------------------------------------------------------------------------------------------",
+ "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."
+ ],
+ "version": "1.0.0",
+ "contents": {
+ "bundle": {
+ "...1 additional file not shown": "...1 altro file non visualizzato",
+ "...{0} additional files not shown": "...{0} altri file non visualizzati",
+ "Allow all content and script execution. Not recommended": "Consente l'esecuzione di tutti i contenuti e script. Scelta non consigliata",
+ "Allow insecure content": "Consenti contenuto non protetto",
+ "Allow insecure local content": "Consenti contenuto locale non protetto",
+ "Always": "Sempre",
+ "An unexpected error occurred while restoring the Markdown preview.": "Si è verificato un errore imprevisto durante il ripristino dell'anteprima di Markdown.",
+ "Checking for Markdown links to update": "Verifica dei collegamenti Markdown da aggiornare in corso",
+ "Content Disabled Security Warning": "Avviso di sicurezza contenuto disabilitato",
+ "Could not load 'markdown.styles': {0}": "Impossibile caricare 'markdown.styles': {0}",
+ "Could not open {0}": "Non è stato possibile aprire {0}",
+ "Disable": "Disabilita",
+ "Disable preview security warning in this workspace": "Disabilita anteprima degli avvisi di sicurezza in questa area di lavoro",
+ "Disable validation of Markdown links": "Disabilita la convalida dei collegamenti Markdown",
+ "Does not affect the content security level": "Non influisce sul livello di sicurezza del contenuto",
+ "Enable": "Abilita",
+ "Enable loading content over http": "Consente il caricamento di contenuti tramite HTTP",
+ "Enable loading content over http served from localhost": "Consente il caricamento di contenuti tramite HTTP servito da localhost",
+ "Enable preview security warnings in this workspace": "Abilita anteprima degli avvisi di sicurezza in questa area di lavoro",
+ "Enable validation of Markdown links": "Abilita la convalida dei collegamenti Markdown",
+ "Exclude '{0}' from link validation.": "Escludere '{0}' dalla convalida dei collegamenti.",
+ "Extract to link definition": "Estrai nella definizione del collegamento",
+ "File does not exist at path: {0}": "Il file non esiste nel percorso: {0}",
+ "Find file references failed. No resource provided.": "La ricerca dei riferimenti a file non è riuscita. Non è stata specificata alcuna risorsa.",
+ "Finding file references": "Ricerca di riferimenti a file",
+ "Follow link": "Segui il collegamento",
+ "Go to link definition": "Andare alla definizione di collegamento",
+ "Header does not exist in file: {0}": "Intestazione inesistente nel file: {0}",
+ "Insert Markdown Audio": "Inserire audio Markdown",
+ "Insert Markdown Image": "Inserire immagine Markdown",
+ "Insert Markdown Images": "Inserire immagini Markdown",
+ "Insert Markdown Images and Links": "Inserire immagini e collegamenti Markdown",
+ "Insert Markdown Link": "Inserire collegamento Markdown",
+ "Insert Markdown Links": "Inserire collegamenti Markdown",
+ "Insert Markdown Media": "Insert Markdown Media",
+ "Insert Markdown Media and Images": "Inserire media e immagini Markdown",
+ "Insert Markdown Media and Links": "Inserire media e collegamenti Markdown",
+ "Insert Markdown Video": "Inserire video Markdown",
+ "Insert image": "Inserisci immagine",
+ "Insert link": "Inserisci collegamento",
+ "Link definition for '{0}' already exists": "La definizione del collegamento per '{0}' esiste già",
+ "Link definition is unused": "La definizione del collegamento non è usata",
+ "Link is already a reference": "Il collegamento è già un riferimento",
+ "Link is also defined here": "Il collegamento è definito anche qui",
+ "Link to '# {0}' in '{1}'": "Collegamento a '# {0}' in '{1}'",
+ "Link to '{0}'": "Collegamento a '{0}'",
+ "Markdown Language Server": "Server di linguaggio Markdown",
+ "Markdown link validation disabled": "Convalida del collegamento Markdown disabilitata",
+ "Markdown link validation enabled": "Convalida del collegamento Markdown abilitata",
+ "Media": "Supporti",
+ "More Information": "Altre informazioni",
+ "Never": "Mai",
+ "No": "No",
+ "No header found: '{0}'": "Nessuna intestazione trovata: '{0}'",
+ "No link definition found: '{0}'": "Non è stata trovata alcuna definizione di collegamento: '{0}'",
+ "Not on link": "Non sul collegamento",
+ "Only load secure content": "Carica solo contenuto protetto",
+ "Paste and update pasted links": "Incolla e aggiorna collegamenti incollati",
+ "Potentially unsafe or insecure content has been disabled in the Markdown preview. Change the Markdown preview security setting to allow insecure content or enable scripts": "I contenuti potenzialmente non sicuri sono stati disabilitati nell'anteprima Markdown. Modificare l'impostazione di sicurezza dell'anteprima Markdown per consentire la visualizzazione di contenuto non sicuri o abilitare gli script",
+ "Preview {0}": "Anteprima {0}",
+ "Reference link '{0}'": "Collegamento di riferimento '{0}'",
+ "Remove duplicate link definition": "Rimuovi definizione di collegamento duplicata",
+ "Remove unused link definition": "Rimuovere la definizione di collegamento inutilizzata",
+ "Renaming is not supported here. Try renaming a header or link.": "La ridenominazione non è supportata qui. Provare a rinominare un'intestazione o un collegamento.",
+ "Select security settings for Markdown previews in this workspace": "Seleziona impostazioni di sicurezza per le anteprime Markdown in questa area di lavoro",
+ "Some content has been disabled in this document": "Alcuni contenuti sono stati disabilitati in questo documento",
+ "Strict": "Strict",
+ "Update Markdown links for '{0}'?": "Aggiornare i collegamenti Markdown per '{0}'?",
+ "Update Markdown links for the following {0} files?": "Aggiornare i collegamenti Markdown per i file di {0} seguenti?",
+ "Yes": "Sì",
+ "[Preview] {0}": "[Anteprima] {0}",
+ "{0} cannot be found": "{0} non è stato trovato"
+ },
+ "package": {
+ "configuration.copyIntoWorkspace.mediaFiles": "Provare a copiare i file di immagine e video esterni nell'area di lavoro.",
+ "configuration.copyIntoWorkspace.never": "Non copiare file esterni nell'area di lavoro.",
+ "configuration.markdown.copyFiles.destination": "Configura il percorso e il nome file dei file creati tramite copia/incolla o trascinamento della selezione. Si tratta di una mappa di GLOB che corrispondono a un percorso del documento Markdown per il percorso di destinazione in cui deve essere creato il nuovo file.\r\n\r\nIl percorso di destinazione può utilizzare le variabili seguenti:\r\n\r\n- '${documentDirName}' — Percorso assoluto della directory padre del documento Markdown, ad esempio '/Users/me/myProject/docs'.\r\n- '${documentRelativeDirName}' — Percorso della directory padre relativa del documento Markdown, ad esempio 'docs'. È uguale a '${documentDirName}' se il file non fa parte di un'area di lavoro.\r\n- '${documentFileName}' — Il nome file completo del documento Markdown, ad esempio 'README.md'.\r\n- '${documentBaseName}' — Il nome di base del documento Markdown, ad esempio 'README'.\r\n- '${documentExtName}' — L'estensione del documento Markdown, ad esempio 'md'.\r\n- '${documentFilePath}' — Percorso assoluto del documento Markdown, ad esempio '/Users/me/myProject/docs/README.md'.\r\n- '${documentRelativeFilePath}' — Percorso relativo del documento Markdown, ad esempio 'docs/README.md'. È uguale a '${documentFilePath}' se il file non fa parte di un'area di lavoro.\r\n- '${documentWorkspaceFolder}' — Cartella dell'area di lavoro per il documento Markdown, ad esempio '/Users/me/myProject'. È uguale a '${documentDirName}' se il file non fa parte di un'area di lavoro.\r\n- '${fileName}' — Nome del file rilasciato, ad esempio 'image.png'.\r\n- '${fileExtName}' — Estensione del file rilasciato, ad esempio 'png'.\r\n- '${unixTime}' — Timestamp Unix corrente in secondi.\r\n- '${isoTime}' — Ora corrente in formato ISO 8601, ad esempio '2025-06-06T08:40:32.123Z'.",
+ "configuration.markdown.copyFiles.overwriteBehavior": "Controlla se i file creati tramite un'operazione rilascio o incolla devono sovrascrivere i file esistenti.",
+ "configuration.markdown.copyFiles.overwriteBehavior.nameIncrementally": "Se esiste già un file con lo stesso nome, aggiungere un numero al nome file, ad esempio: 'image.png' diventa 'image-1.png'.",
+ "configuration.markdown.copyFiles.overwriteBehavior.overwrite": "Se esiste già un file con lo stesso nome, lo sovrascrive.",
+ "configuration.markdown.editor.drop.copyIntoWorkspace": "Controlla se i file esterni all'area di lavoro rilasciati in un Markdown editor devono essere copiati nell'area di lavoro.\r\n\r\nUsare '#markdown.copyFiles.destination#' per configurare dove creare i file rilasciati copiati.",
+ "configuration.markdown.editor.drop.enabled": "Abilitare il rilascio di file in un editor Markdown tenendo premuto MAIUSC. È necessario abilitare `#editor.dropIntoEditor.enabled#`.",
+ "configuration.markdown.editor.drop.enabled.always": "Inserire sempre collegamenti Markdown.",
+ "configuration.markdown.editor.drop.enabled.never": "Non creare mai collegamenti Markdown.",
+ "configuration.markdown.editor.drop.enabled.smart": "Crea in modo intelligente i collegamenti Markdown per impostazione predefinita quando non si sta rilasciando in un blocco di codice o in un altro elemento speciale. Usare il widget di rilascio per passare dall'operazione incolla come testo normale o come collegamenti Markdown.",
+ "configuration.markdown.editor.filePaste.audioSnippet": "Frammento usato per l'aggiunta di audio a Markdown. Questo frammento può usare le variabili seguenti:\r\n- '${src}' — Percorso risolto del file audio.\r\n- '${title}' — Titolo usato per l'audio. Per questa variabile verrà automaticamente creato un segnaposto per il frammento.",
+ "configuration.markdown.editor.filePaste.copyIntoWorkspace": "Controlla se i file esterni all'area di lavoro incollati in un Markdown editor devono essere copiati nell'area di lavoro.\r\n\r\nUsare '#markdown.copyFiles.destination#' per configurare dove creare i file copiati.",
+ "configuration.markdown.editor.filePaste.enabled": "Abilitare l'operazione per incollare i file in un Markdown editor per creare collegamenti Markdown. Richiede l'abilitazione di '#editor.pasteAs.enabled#'.",
+ "configuration.markdown.editor.filePaste.enabled.always": "Inserire sempre collegamenti Markdown.",
+ "configuration.markdown.editor.filePaste.enabled.never": "Non creare mai collegamenti Markdown.",
+ "configuration.markdown.editor.filePaste.enabled.smart": "Crea in modo intelligente i collegamenti Markdown per impostazione predefinita quando non si sta incollando in un blocco di codice o in un altro elemento speciale. Usare il widget incolla per passare dall'operazione incolla come testo normale o come collegamenti Markdown.",
+ "configuration.markdown.editor.filePaste.videoSnippet": "Frammento usato durante l’aggiunta di video a Markdown. Questo frammento può usare le variabili seguenti:\r\n- '${src}' — Percorso risolto del file video.\r\n- '${title}' — Titolo usato per il video. Per questa variabile verrà automaticamente creato un segnaposto per il frammento.",
+ "configuration.markdown.editor.pasteUrlAsFormattedLink.enabled": "Controlla se vengono creati collegamenti Markdown quando gli URL vengono incollati in un editor Markdown. Richiede l'abilitazione di '#editor.pasteAs.enabled#'.",
+ "configuration.markdown.editor.updateLinksOnPaste.enabled": "Abilitare/disabilitare un'opzione Incolla che aggiorna i collegamenti e i riferimenti nel testo copiato e incollato tra gli editor Markdown.\r\n\r\nPer usare questa funzionalità, dopo aver incollato il testo che contiene collegamenti aggiornabili, è sufficiente fare clic sul widget Incolla e selezionare 'Incolla e aggiorna collegamenti incollati'.",
+ "configuration.markdown.links.openLocation.beside": "Apre i collegamenti accanto all'editor attivo.",
+ "configuration.markdown.links.openLocation.currentGroup": "Apre i collegamenti nel gruppo di editor attivo.",
+ "configuration.markdown.links.openLocation.description": "Controlla dove aprire i collegamenti nei file Markdown.",
+ "configuration.markdown.occurrencesHighlight.enabled": "Abilita l'evidenziazione delle occorrenze dei collegamenti nel documento corrente.",
+ "configuration.markdown.preferredMdPathExtensionStyle": "Controlla se le estensioni di file (ad esempio '.md') vengono aggiunte o meno per i collegamenti ai file Markdown. Questa impostazione viene usata quando i percorsi dei file vengono aggiunti da strumenti come il completamento dei percorsi o le ridenominazione dei file.",
+ "configuration.markdown.preferredMdPathExtensionStyle.auto": "Per i percorsi esistenti, prova a mantenere lo stile dell'estensione di file. Per i nuovi percorsi, aggiungi le estensioni di file.",
+ "configuration.markdown.preferredMdPathExtensionStyle.includeExtension": "Preferisci includere l'estensione di file. Ad esempio, i completamenti del percorso di un file denominato 'file.md' inseriranno 'file.md'.",
+ "configuration.markdown.preferredMdPathExtensionStyle.removeExtension": "Preferisci rimuovere l'estensione di file. Ad esempio, i completamenti del percorso di un file denominato 'file.md' inseriranno 'file' senza '.md'.",
+ "configuration.markdown.preview.openMarkdownLinks.description": "Controlla in che modo aprire i collegamenti ad altri file Markdown nell'anteprima Markdown.",
+ "configuration.markdown.preview.openMarkdownLinks.inEditor": "Prova ad aprire i collegamenti nell'editor.",
+ "configuration.markdown.preview.openMarkdownLinks.inPreview": "Prova ad aprire i collegamenti nell'anteprima Markdown.",
+ "configuration.markdown.suggest.paths.enabled.description": "Abilitare i suggerimenti di percorso durante la scrittura di collegamenti nei file Markdown.",
+ "configuration.markdown.suggest.paths.includeWorkspaceHeaderCompletions": "Abilitare i suggerimenti per le intestazioni in altri file Markdown nell'area di lavoro corrente. Accettando uno di questi suggerimenti, si inserisce il percorso completo dell'intestazione in quel file, ad esempio: `[link text](/path/to/file.md#header)`.",
+ "configuration.markdown.suggest.paths.includeWorkspaceHeaderCompletions.never": "Disabilita i suggerimenti per l'intestazione dell'area di lavoro.",
+ "configuration.markdown.suggest.paths.includeWorkspaceHeaderCompletions.onDoubleHash": "Abilitare i suggerimenti per l'intestazione dell'area di lavoro dopo aver digitato `##` in un percorso, ad esempio: `[link text](##`).",
+ "configuration.markdown.suggest.paths.includeWorkspaceHeaderCompletions.onSingleOrDoubleHash": "Abilitare i suggerimenti di intestazione dell'area di lavoro dopo aver digitato '##' o '#' in un percorso, ad esempio: '[link text](#' o '[link text](##'.",
+ "configuration.markdown.updateLinksOnFileMove.enableForDirectories": "Abilitare l'aggiornamento dei collegamenti quando una directory viene spostata o rinominata nell'area di lavoro.",
+ "configuration.markdown.updateLinksOnFileMove.enabled": "Provare ad aggiornare i collegamenti nei file Markdown quando un file viene rinominato/spostato nell'area di lavoro. Usare `#markdown.updateLinksOnFileMove.include#` per configurare i file che attivano gli aggiornamenti dei collegamenti.",
+ "configuration.markdown.updateLinksOnFileMove.enabled.always": "Aggiornare sempre automaticamente i collegamenti.",
+ "configuration.markdown.updateLinksOnFileMove.enabled.never": "Non provare mai ad aggiornare il collegamento e non richiedere conferma.",
+ "configuration.markdown.updateLinksOnFileMove.enabled.prompt": "Richiedere conferma per ogni spostamento di file.",
+ "configuration.markdown.updateLinksOnFileMove.include": "Criteri GLOB che specificano i file che attivano gli aggiornamenti automatici dei collegamenti. Per informazioni dettagliate su questa funzionalità, vedere `#markdown.updateLinksOnFileMove.enabled#`.",
+ "configuration.markdown.updateLinksOnFileMove.include.property": "Criterio GLOB da usare per trovare percorsi file. Impostare su true per abilitare il criterio.",
+ "configuration.markdown.validate.duplicateLinkDefinitions.description": "Convalida le definizioni duplicate nel file corrente.",
+ "configuration.markdown.validate.enabled.description": "Abilitare tutte le segnalazioni di errori nei file Markdown.",
+ "configuration.markdown.validate.fileLinks.enabled.description": "Consente di convalidare i collegamenti ad altri file in file Markdown, ad esempio '[link](/path/to/file.md)'. Verifica l'esistenza dei file di destinazione. Richiede l'abilitazione di '#markdown.validate.enabled#'.",
+ "configuration.markdown.validate.fileLinks.markdownFragmentLinks.description": "Consente di convalidare la parte di frammento dei collegamenti alle intestazioni in altri file in file Markdown, ad esempio: '[link](/path/to/file.md#header)'. Eredita il valore dell'impostazione da '#markdown.validate.fragmentLinks.enabled#' per impostazione predefinita.",
+ "configuration.markdown.validate.fragmentLinks.enabled.description": "Consente di convalidare i collegamenti di frammento alle intestazioni nel file Markdown corrente, ad esempio: '[link](#header)'. Richiede l'abilitazione di '#markdown.validate.enabled#'.",
+ "configuration.markdown.validate.ignoredLinks.description": "Configurare i collegamenti che non devono essere convalidati. Ad esempio, l’aggiunta di '/about' non convalida il collegamento '[about](/about)', mentre il GLOB '/assets/**/*.svg' consente di ignorare la convalida per qualsiasi collegamento ai file '.svg' nella directory 'assets'.",
+ "configuration.markdown.validate.referenceLinks.enabled.description": "Consente di convalidare i collegamenti di riferimento nei file Markdown, ad esempio: '[link][ref]'. Richiede l'abilitazione di '#markdown.validate.enabled#'.",
+ "configuration.markdown.validate.unusedLinkDefinitions.description": "Convalida le definizioni dei collegamenti non utilizzate nel file corrente.",
+ "configuration.pasteUrlAsFormattedLink.always": "Inserire sempre collegamenti Markdown.",
+ "configuration.pasteUrlAsFormattedLink.never": "Non creare mai collegamenti Markdown.",
+ "configuration.pasteUrlAsFormattedLink.smart": "Crea in modo intelligente i collegamenti Markdown per impostazione predefinita quando non si sta incollando in un blocco di codice o in un altro elemento speciale. Usare il widget incolla per passare dall'operazione incolla come testo normale o come collegamenti Markdown.",
+ "configuration.pasteUrlAsFormattedLink.smartWithSelection": "Crea in modo intelligente i collegamenti Markdown per impostazione predefinita quando si è selezionato un testo e non si sta incollando in un blocco di codice o in un altro elemento speciale. Usare il widget incolla per passare dall'operazione incolla come testo normale o come collegamenti Markdown.",
+ "description": "Fornisce un supporto avanzato del linguaggio per Markdown.",
+ "displayName": "Funzionalità del linguaggio Markdown",
+ "markdown.copyImage.title": "Copia immagine",
+ "markdown.editor.insertImageFromWorkspace": "Inserisci immagine dall'area di lavoro",
+ "markdown.editor.insertLinkFromWorkspace": "Inserisci collegamento a file nell'area di lavoro",
+ "markdown.findAllFileReferences": "Trova riferimenti a file",
+ "markdown.openImage.title": "Apri immagine",
+ "markdown.preview.breaks.desc": "Imposta il rendering delle interruzioni di riga nell'anteprima Markdown. Se è impostato su 'true', viene creato un “ ” per i caratteri di nuova riga all'interno di paragrafi.",
+ "markdown.preview.doubleClickToSwitchToEditor.desc": "Fare doppio clic nell'anteprima Markdown per passare all'editor.",
+ "markdown.preview.fontFamily.desc": "Controlla la famiglia di caratteri usata nell'anteprima Markdown.",
+ "markdown.preview.fontSize.desc": "Controlla le dimensioni del carattere in pixel usate nell'anteprima Markdown.",
+ "markdown.preview.lineHeight.desc": "Controlla l'altezza della riga usata nell'anteprima Markdown. Questo numero è relativo alle dimensioni del carattere.",
+ "markdown.preview.linkify": "Convertire il testo di tipo URL in collegamenti nell'anteprima Markdown.",
+ "markdown.preview.markEditorSelection.desc": "Contrassegna la selezione dell'editor corrente nell'anteprima Markdown.",
+ "markdown.preview.refresh.title": "Aggiorna anteprima",
+ "markdown.preview.scrollEditorWithPreview.desc": "Quando si scorre un'anteprima Markdown, aggiorna la visualizzazione dell'editor.",
+ "markdown.preview.scrollPreviewWithEditor.desc": "Quando si scorre un editor Markdown, aggiorna la visualizzazione dell'anteprima.",
+ "markdown.preview.title": "Apri anteprima",
+ "markdown.preview.toggleLock.title": "Attiva/Disattiva blocco anteprima",
+ "markdown.preview.typographer": "Abilitare la sostituzione indipendente dalla lingua e l'adattamento delle virgolette nell'anteprima Markdown.",
+ "markdown.previewSide.title": "Apri anteprima lateralmente",
+ "markdown.server.log.desc": "Controlla il livello di registrazione del server di linguaggio Markdown.",
+ "markdown.showLockedPreviewToSide.title": "Apri anteprima bloccata lateralmente",
+ "markdown.showPreviewSecuritySelector.title": "Modifica impostazioni di sicurezza anteprima",
+ "markdown.showSource.title": "Mostra origine",
+ "markdown.styles.dec": "Elenco di URL o percorsi locali dei fogli di stile CSS da usare dall'anteprima Markdown. I percorsi relativi vengono interpretati come relativi alla cartella aperta in Esplora risorse. Se non è presente alcuna cartella aperta, vengono interpretati come relativi al percorso del file Markdown. Tutti i caratteri '\\' devono essere scritti come '\\\\'.",
+ "markdown.trace.extension.desc": "Abilita la registrazione debug per l'estensione Markdown.",
+ "markdown.trace.server.desc": "Traccia le comunicazioni tra VS Code e il server di linguaggio Markdown.",
+ "workspaceTrust": "Necessario per il caricamento degli stili configurati nell'area di lavoro."
+ }
+ }
+}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-it/translations/extensions/vscode.markdown-math.i18n.json b/i18n/vscode-language-pack-it/translations/extensions/vscode.markdown-math.i18n.json
new file mode 100644
index 0000000000..b67f0ae218
--- /dev/null
+++ b/i18n/vscode-language-pack-it/translations/extensions/vscode.markdown-math.i18n.json
@@ -0,0 +1,18 @@
+{
+ "": [
+ "--------------------------------------------------------------------------------------------",
+ "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."
+ ],
+ "version": "1.0.0",
+ "contents": {
+ "package": {
+ "config.markdown.math.enabled": "Abilita/Disabilita la matematica del rendering nell'anteprima Markdown predefinita.",
+ "config.markdown.math.macros": "Raccolta di macro personalizzate. Ogni macro è una coppia chiave-valore in cui la chiave è un nuovo nome di comando e il valore è l'espansione della macro.",
+ "description": "Aggiunge il supporto delle operazioni matematiche a Markdown nei notebook.",
+ "displayName": "Matematica Markdown"
+ }
+ }
+}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-it/translations/extensions/vscode.markdown.i18n.json b/i18n/vscode-language-pack-it/translations/extensions/vscode.markdown.i18n.json
index 4aa5cbbd89..a4c235e00a 100644
--- a/i18n/vscode-language-pack-it/translations/extensions/vscode.markdown.i18n.json
+++ b/i18n/vscode-language-pack-it/translations/extensions/vscode.markdown.i18n.json
@@ -9,8 +9,8 @@
"version": "1.0.0",
"contents": {
"package": {
- "displayName": "Nozioni di base sul linguaggio Markdown",
- "description": "Offre gli snippet e la sottolineatura delle sintassi per Markdown."
+ "description": "Offre gli snippet e la sottolineatura delle sintassi per Markdown.",
+ "displayName": "Nozioni di base sul linguaggio Markdown"
}
}
}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-it/translations/extensions/vscode.media-preview.i18n.json b/i18n/vscode-language-pack-it/translations/extensions/vscode.media-preview.i18n.json
new file mode 100644
index 0000000000..4c858e9b8d
--- /dev/null
+++ b/i18n/vscode-language-pack-it/translations/extensions/vscode.media-preview.i18n.json
@@ -0,0 +1,42 @@
+{
+ "": [
+ "--------------------------------------------------------------------------------------------",
+ "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."
+ ],
+ "version": "1.0.0",
+ "contents": {
+ "bundle": {
+ "An error occurred while loading the audio file.": "Si è verificato un errore durante il caricamento del file audio.",
+ "An error occurred while loading the image.": "Si è verificato un errore durante il caricamento dell'immagine.",
+ "An error occurred while loading the video file.": "Si è verificato un errore durante il caricamento del file video.",
+ "Image Binary Size": "Dimensioni file binario dell'immagine",
+ "Image Size": "Dimensioni dell'immagine",
+ "Image Zoom": "Zoom immagine",
+ "Open file using VS Code's standard text/binary editor?": "Aprire il file usando l'editor di testo/binario standard di VS Code?",
+ "Select zoom level": "Selezionare il livello di zoom",
+ "Whole Image": "Immagine intera",
+ "{0}B": "{0} B",
+ "{0}GB": "{0} GB",
+ "{0}KB": "{0} KB",
+ "{0}MB": "{0} MB",
+ "{0}TB": "{0} TB"
+ },
+ "package": {
+ "command.copyImage": "Copia",
+ "command.reopenAsPreview": "Riapri come anteprima dell'immagine",
+ "command.reopenAsText": "Riapri come testo di origine",
+ "command.zoomIn": "Zoom avanti",
+ "command.zoomOut": "Zoom indietro",
+ "customEditor.audioPreview.displayName": "Anteprima audio",
+ "customEditor.imagePreview.displayName": "Anteprima immagine",
+ "customEditor.videoPreview.displayName": "Anteprima video",
+ "description": "Fornisce le anteprime predefinite di VS Code per immagini, audio e video",
+ "displayName": "Anteprima multimediale",
+ "videoPreviewerAutoPlay": "Avvia automaticamente la riproduzione dei video con l’audio disattivato.",
+ "videoPreviewerLoop": "Ripetizione automatica dei video."
+ }
+ }
+}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-it/translations/extensions/vscode.merge-conflict.i18n.json b/i18n/vscode-language-pack-it/translations/extensions/vscode.merge-conflict.i18n.json
new file mode 100644
index 0000000000..9c8b679c48
--- /dev/null
+++ b/i18n/vscode-language-pack-it/translations/extensions/vscode.merge-conflict.i18n.json
@@ -0,0 +1,49 @@
+{
+ "": [
+ "--------------------------------------------------------------------------------------------",
+ "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."
+ ],
+ "version": "1.0.0",
+ "contents": {
+ "bundle": {
+ "(Current Change)": "(Modifica corrente)",
+ "(Incoming Change)": "(Modifica in ingresso)",
+ "Accept Both Changes": "Accetta entrambe le modifiche",
+ "Accept Current Change": "Accetta modifica corrente",
+ "Accept Incoming Change": "Accetta modifica in ingresso",
+ "Compare Changes": "Confronta le modifiche",
+ "Editor cursor is not within a merge conflict": "Il cursore dell'editor non si trova all'interno di un conflitto merge",
+ "Editor cursor is within the common ancestors block, please move it to either the \"current\" or \"incoming\" block": "Il cursore dell'editor si trova all'interno del blocco di predecessori comuni. Spostarlo nel blocco \"corrente\" o \"in arrivo\"",
+ "Editor cursor is within the merge conflict splitter, please move it to either the \"current\" or \"incoming\" block": "Il cursore dell'editor si trova all'interno della barra di divisione dei conflitti di merge. Spostarlo nel blocco \"corrente\" o \"in arrivo\"",
+ "No merge conflicts found in this file": "Conflitti merge non trovati in questo file",
+ "No other merge conflicts within this file": "Nessun altro conflitto merge trovato in questo file",
+ "{0}: Current Changes ↔ Incoming Changes": "{0}: modifiche correnti ⟷ modifiche in ingresso"
+ },
+ "package": {
+ "command.accept.all-both": "Accetta tutte in entrambe",
+ "command.accept.all-current": "Accetta tutte le modifiche correnti",
+ "command.accept.all-incoming": "Accetta tutte le modifiche in ingresso",
+ "command.accept.both": "Accetta entrambe",
+ "command.accept.current": "Accetta corrente",
+ "command.accept.incoming": "Accetta modifiche in ingresso",
+ "command.accept.selection": "Accetta selezione",
+ "command.category": "Esegui merge del conflitto",
+ "command.compare": "Confronta il conflitto corrente",
+ "command.next": "Conflitto successivo",
+ "command.previous": "Conflitto precedente",
+ "config.autoNavigateNextConflictEnabled": "Indica se passare automaticamente al conflitto successivo dopo la risoluzione di un conflitto di merge.",
+ "config.codeLensEnabled": "Crea le finestre di CodeLens per i blocchi di conflitti di merge all'interno dell'editor.",
+ "config.decoratorsEnabled": "Crea elementi Decorator per blocchi di conflitti di merge all'interno dell'editor.",
+ "config.diffViewPosition": "Controlla dove verrà aperta la visualizzazione differenze quando si confrontano le modifiche nei conflitti di merge.",
+ "config.diffViewPosition.below": "Apri la visualizzazione differenze sotto il gruppo di editor corrente.",
+ "config.diffViewPosition.beside": "Apri la visualizzazione differenze accanto al gruppo di editor corrente.",
+ "config.diffViewPosition.current": "Apri la visualizzazione differenze nel gruppo di editor corrente.",
+ "config.title": "Esegui merge del conflitto",
+ "description": "Evidenziazione e comandi per i conflitti di merge inline.",
+ "displayName": "Esegui merge del conflitto"
+ }
+ }
+}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-it/translations/extensions/vscode.mermaid-chat-features.i18n.json b/i18n/vscode-language-pack-it/translations/extensions/vscode.mermaid-chat-features.i18n.json
new file mode 100644
index 0000000000..4eba55d1f8
--- /dev/null
+++ b/i18n/vscode-language-pack-it/translations/extensions/vscode.mermaid-chat-features.i18n.json
@@ -0,0 +1,17 @@
+{
+ "": [
+ "--------------------------------------------------------------------------------------------",
+ "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."
+ ],
+ "version": "1.0.0",
+ "contents": {
+ "package": {
+ "config.enabled.description": "Abilita uno strumento per il rendering sperimentale del diagramma Mermaid nelle risposte della chat.",
+ "description": "Aggiunge il supporto ai diagrammi Mermaid nelle chat predefinite.",
+ "displayName": "Funzionalità chat Mermaid"
+ }
+ }
+}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-it/translations/extensions/vscode.microsoft-authentication.i18n.json b/i18n/vscode-language-pack-it/translations/extensions/vscode.microsoft-authentication.i18n.json
new file mode 100644
index 0000000000..6725cc334b
--- /dev/null
+++ b/i18n/vscode-language-pack-it/translations/extensions/vscode.microsoft-authentication.i18n.json
@@ -0,0 +1,51 @@
+{
+ "": [
+ "--------------------------------------------------------------------------------------------",
+ "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."
+ ],
+ "version": "1.0.0",
+ "contents": {
+ "bundle": {
+ "Copy & Continue to Microsoft": "Copia e continua con Microsoft",
+ "Error validating custom environment setting: {0}": "Errore durante la convalida dell'impostazione dell'ambiente personalizzato: {0}",
+ "Having trouble logging in? Would you like to try a different way? ({0})": "Si sono verificati problemi durante l'accesso? Si vuole provare in un modo diverso? ({0})",
+ "Microsoft Account configuration has been changed.": "La configurazione dell'account Microsoft è stata modificata.",
+ "Microsoft Authentication": "Autenticazione Microsoft",
+ "Microsoft Sovereign Cloud Authentication": "Autenticazione cloud sovrano Microsoft",
+ "No": "No",
+ "Open [{0}]({0}) in a new tab and paste your one-time code: {1}/The [{0}]({0}) will be a url and the {1} will be a code, e.g. 123456{Locked=\"[{0}]({0})\"}": "Aprire [{0}]({0}) in una nuova scheda e incollare il time code: {1}",
+ "Open settings": "Apri impostazioni",
+ "Reload": "Ricarica",
+ "Signing in to Microsoft...": "Accesso a Microsoft...",
+ "The environment `{0}` is not a valid environment.": "L'ambiente '{0}' non è un ambiente valido.",
+ "To finish authenticating, navigate to Microsoft and paste in the above one-time code.": "Per completare l'autenticazione, passare a Microsoft e incollare il codice monouso precedente.",
+ "Yes": "Sì",
+ "You have not yet finished authorizing this extension to use your Microsoft Account. Would you like to try a different way? ({0})": "Non è ancora stata completata l'autorizzazione all'uso dell'account Microsoft da parte di questa estensione. Provare un modo diverso? ({0})",
+ "You must also specify a custom environment in order to use the custom environment auth provider.": "È inoltre necessario specificare un ambiente personalizzato per usare il provider di autenticazione dell'ambiente personalizzato.",
+ "Your Code: {0}/The {0} will be a code, e.g. 123-456": "Codice: {0}"
+ },
+ "package": {
+ "description": "Provider di autenticazione Microsoft",
+ "displayName": "Account Microsoft",
+ "microsoft-authentication.implementation.description": "Implementazione dell'autenticazione da usare per l'accesso con un account Microsoft.",
+ "microsoft-authentication.implementation.enumDescriptions.msal": "Usa Microsoft Authentication Library (MSAL) per accedere con un account di Microsoft.",
+ "microsoft-authentication.implementation.enumDescriptions.msal-no-broker": "Usa Microsoft Authentication Library (MSAL) per accedere con un account Microsoft tramite un browser. Questa soluzione è particolarmente utile se si hanno problemi con il broker nativo.",
+ "microsoft-sovereign-cloud.customEnvironment.activeDirectoryEndpointUrl.description": "L'endpoint di Active Directory per il cloud sovrano personalizzato.",
+ "microsoft-sovereign-cloud.customEnvironment.activeDirectoryResourceId.description": "L’ID risorsa di Active Directory per il cloud sovrano personalizzato.",
+ "microsoft-sovereign-cloud.customEnvironment.description": "La configurazione personalizzata per il cloud sovrano da usare con il provider Autenticazione cloud sovrano Microsoft. Per usare questa funzionalità è necessario impostare `#microsoft-sovereign-cloud.environment#` su `custom`.",
+ "microsoft-sovereign-cloud.customEnvironment.managementEndpointUrl.description": "Endpoint di gestione per il cloud sovrano personalizzato.",
+ "microsoft-sovereign-cloud.customEnvironment.name.description": "Nome del cloud sovrano personalizzato.",
+ "microsoft-sovereign-cloud.customEnvironment.portalUrl.description": "URL del portale per il cloud sovrano personalizzato.",
+ "microsoft-sovereign-cloud.customEnvironment.resourceManagerEndpointUrl.description": "Endpoint di Resource Manager per il cloud sovrano personalizzato.",
+ "microsoft-sovereign-cloud.environment.description": "Il cloud sovrano da usare per l'autenticazione. Se si seleziona `custom`, è necessario impostare anche il parametro `#microsoft-sovereign-cloud.customEnvironment#`.",
+ "microsoft-sovereign-cloud.environment.enumDescriptions.AzureChinaCloud": "Azure Cina",
+ "microsoft-sovereign-cloud.environment.enumDescriptions.AzureUSGovernment": "Azure per enti pubblici degli Stati Uniti",
+ "microsoft-sovereign-cloud.environment.enumDescriptions.custom": "Un cloud sovrano Microsoft personalizzato",
+ "signIn": "Accedi",
+ "signOut": "Disconnetti"
+ }
+ }
+}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-it/translations/extensions/vscode.npm.i18n.json b/i18n/vscode-language-pack-it/translations/extensions/vscode.npm.i18n.json
new file mode 100644
index 0000000000..fc3926a37f
--- /dev/null
+++ b/i18n/vscode-language-pack-it/translations/extensions/vscode.npm.i18n.json
@@ -0,0 +1,127 @@
+{
+ "": [
+ "--------------------------------------------------------------------------------------------",
+ "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."
+ ],
+ "version": "1.0.0",
+ "contents": {
+ "bundle": {
+ "Could not find a valid npm script at the selection.": "Non è stato possibile trovare uno script di npm valido nella selezione.",
+ "Debug": "Debug",
+ "Debug Script": "Script di debug",
+ "Default package.json": "package.json predefinito",
+ "Do not show again": "Non visualizzare più",
+ "Latest version: {0}": "Ultima versione: {0}",
+ "Latest version: {0} published {1}": "Ultima versione: {0} pubblicata il {1}",
+ "Learn more": "Altre informazioni",
+ "Matches the most recent major version (1.x.x)": "Corrisponde alla versione principale più recente (1.x.x)",
+ "Matches the most recent minor version (1.2.x)": "Corrisponde alla versione secondaria più recente (1.2.x.x)",
+ "No scripts found.": "Non sono stati trovati script.",
+ "Npm task detection: failed to parse the file {0}": "Rilevamento attività npm: non è stato possibile analizzare il file {0}",
+ "Request to the NPM repository failed: {0}": "La richiesta al repository NPM non è riuscita: {0}",
+ "Run Script": "Esegui script",
+ "Run the script as a task": "Esegui lo script come attività",
+ "Runs the script under the debugger": "Esegue lo script nel debugger",
+ "The currently latest version of the package": "Ultima versione attualmente disponibile del pacchetto",
+ "The setting \"npm.autoDetect\" is \"off\".": "L'impostazione \"npm.autoDetect\" è \"off\".",
+ "Using {0} as the preferred package manager. Found multiple lockfiles for {1}. To resolve this issue, delete the lockfiles that don't match your preferred package manager or change the setting \"npm.packageManager\" to a value other than \"auto\".": "Uso di {0} come gestione pacchetti preferita. Sono stati trovati più file di blocco per {1}. Per risolvere questo problema, eliminare i file di blocco che non corrispondono alla gestione pacchetti preferita o modificare l'impostazione \"npm.packageManager\" su un valore diverso da \"auto\".",
+ "in {0}": "tra {0}",
+ "now": "adesso",
+ "{0} day": "{0} giorno",
+ "{0} day ago": "{0} giorno fa",
+ "{0} days": "{0} giorni",
+ "{0} days ago": "{0} giorni fa",
+ "{0} hour": "{0} ora",
+ "{0} hour ago": "{0} ora fa",
+ "{0} hours": "{0} ore",
+ "{0} hours ago": "{0} ore fa",
+ "{0} hr": "{0} ora",
+ "{0} hr ago": "{0} ora fa",
+ "{0} hrs": "{0} ore",
+ "{0} hrs ago": "{0} ore fa",
+ "{0} min": "{0} min",
+ "{0} min ago": "{0} min fa",
+ "{0} mins": "{0} min",
+ "{0} mins ago": "{0} min fa",
+ "{0} minute": "{0} minuto",
+ "{0} minute ago": "{0} minuto fa",
+ "{0} minutes": "{0} minuti",
+ "{0} minutes ago": "{0} minuti fa",
+ "{0} mo": "{0} mese",
+ "{0} mo ago": "{0} mese fa",
+ "{0} month": "{0} mese",
+ "{0} month ago": "{0} mese fa",
+ "{0} months": "{0} mesi",
+ "{0} months ago": "{0} mesi fa",
+ "{0} mos": "{0} mesi",
+ "{0} mos ago": "{0} mesi fa",
+ "{0} sec": "{0} secondo",
+ "{0} sec ago": "{0} secondo fa",
+ "{0} second": "{0} secondo",
+ "{0} second ago": "{0} secondo fa",
+ "{0} seconds": "{0} secondi",
+ "{0} seconds ago": "{0} secondi fa",
+ "{0} secs": "{0} secondi",
+ "{0} secs ago": "{0} secondi fa",
+ "{0} week": "{0} settimana",
+ "{0} week ago": "{0} settimana fa",
+ "{0} weeks": "{0} settimane",
+ "{0} weeks ago": "{0} settimane fa",
+ "{0} wk": "{0} sett",
+ "{0} wk ago": "{0} settimana fa",
+ "{0} wks": "{0} settimane",
+ "{0} wks ago": "{0} settimane fa",
+ "{0} year": "{0} anno",
+ "{0} year ago": "{0} anno fa",
+ "{0} years": "{0} anni",
+ "{0} years ago": "{0} anni fa",
+ "{0} yr": "{0} anno",
+ "{0} yr ago": "{0} anno fa",
+ "{0} yrs": "{0} anni",
+ "{0} yrs ago": "{0} anni fa"
+ },
+ "package": {
+ "command.debug": "Debug",
+ "command.openScript": "Apri",
+ "command.packageManager": "Ottieni gestione pacchetti configurati",
+ "command.refresh": "Aggiorna",
+ "command.run": "Esegui",
+ "command.runInstall": "Esegui install",
+ "command.runScriptFromFolder": "Esegui script NPM nella cartella...",
+ "command.runSelectedScript": "Esegui script",
+ "config.npm.autoDetect": "Controlla se gli script di npm devono essere rilevati automaticamente.",
+ "config.npm.enableRunFromFolder": "Abilita l'esecuzione degli script npm contenuti in una cartella dal menu di scelta rapida di Esplora risorse.",
+ "config.npm.enableScriptExplorer": "Abilita una visualizzazione di Explorer per gli script npm quando non esiste alcun file 'package.json' di primo livello.",
+ "config.npm.exclude": "Configura i modelli glob per le cartelle che dovrebbero essere escluse dalla rilevazione automatica di script.",
+ "config.npm.fetchOnlinePackageInfo": "Recupera i dati da https://registry.npmjs.org e https://registry.bower.io per fornire le funzionalità di completamento automatico e di informazioni al passaggio del mouse per le dipendenze di npm.",
+ "config.npm.packageManager": "Gestione pacchetti usato per installare le dipendenze.",
+ "config.npm.packageManager.auto": "Rileva automaticamente quale gestione pacchetti da usare in base ai file di blocco e ai gestori pacchetti installati.",
+ "config.npm.packageManager.bun": "Usa BUN come gestione pacchetti.",
+ "config.npm.packageManager.npm": "Usa NPM come gestione pacchetti.",
+ "config.npm.packageManager.pnpm": "Usa PNPM come gestione pacchetti.",
+ "config.npm.packageManager.yarn": "Usa YARN come gestione pacchetti.",
+ "config.npm.runSilent": "Eseguire comandi npm con l'opzione `--silent`.",
+ "config.npm.scriptExplorerAction": "Azione predefinita per il clic in Esplora script di NPM: 'open' o 'run'. L'impostazione predefinita è 'open'.",
+ "config.npm.scriptExplorerExclude": "Matrice di espressioni regolari che indica quali script devono essere esclusi dalla visualizzazione Script NPM.",
+ "config.npm.scriptHover": "Visualizza il passaggio del mouse con i comandi 'Esegui' e 'Debug' per gli script.",
+ "config.npm.scriptRunner": "Strumento di esecuzione script usato per eseguire gli script.",
+ "config.npm.scriptRunner.auto": "Rileva automaticamente quale strumento di esecuzione script da usare in base ai file di blocco e ai gestori pacchetti installati.",
+ "config.npm.scriptRunner.bun": "Usa il bun come script runner.",
+ "config.npm.scriptRunner.node": "Usare Node.js come script runner.",
+ "config.npm.scriptRunner.npm": "Usare npm come script runner.",
+ "config.npm.scriptRunner.pnpm": "Usare pnpm come script runner.",
+ "config.npm.scriptRunner.yarn": "Usa Yarn come script runner.",
+ "description": "Estensione che aggiunge il supporto delle attività per gli script npm.",
+ "displayName": "Supporto di npm per VS Code",
+ "npm.parseError": "Rilevamento attività npm: non è stato possibile analizzare il file {0}",
+ "taskdef.path": "Il percorso della cartella del file J.json contenente lo script può essere omesso.",
+ "taskdef.script": "Lo script di npm da personalizzare.",
+ "view.name": "Script npm",
+ "virtualWorkspaces": "La funzionalità che richiede l'esecuzione del comando 'npm' non è disponibile nelle aree di lavoro virtuali.",
+ "workspaceTrust": "Questa estensione esegue attività che richiedono attendibilità per l'esecuzione."
+ }
+ }
+}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-it/translations/extensions/vscode.objective-c.i18n.json b/i18n/vscode-language-pack-it/translations/extensions/vscode.objective-c.i18n.json
index 62f4251a1e..1b2ecb8bdc 100644
--- a/i18n/vscode-language-pack-it/translations/extensions/vscode.objective-c.i18n.json
+++ b/i18n/vscode-language-pack-it/translations/extensions/vscode.objective-c.i18n.json
@@ -9,8 +9,8 @@
"version": "1.0.0",
"contents": {
"package": {
- "displayName": "Nozioni di base sul linguaggio Objective-C",
- "description": "Offre la sottolineatura delle sintassi e il match delle parentesi nei file Objective-C."
+ "description": "Offre la sottolineatura delle sintassi e il match delle parentesi nei file Objective-C.",
+ "displayName": "Nozioni di base sul linguaggio Objective-C"
}
}
}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-it/translations/extensions/vscode.perl.i18n.json b/i18n/vscode-language-pack-it/translations/extensions/vscode.perl.i18n.json
index 3a52fad03a..7661c9e39f 100644
--- a/i18n/vscode-language-pack-it/translations/extensions/vscode.perl.i18n.json
+++ b/i18n/vscode-language-pack-it/translations/extensions/vscode.perl.i18n.json
@@ -9,8 +9,8 @@
"version": "1.0.0",
"contents": {
"package": {
- "displayName": "Nozioni di base sul linguaggio Perl",
- "description": "Offre la sottolineatura delle sintassi e il match delle parentesi nei file Perl."
+ "description": "Offre la sottolineatura delle sintassi e il match delle parentesi nei file Perl.",
+ "displayName": "Nozioni di base sul linguaggio Perl"
}
}
}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-it/translations/extensions/vscode.php-language-features.i18n.json b/i18n/vscode-language-pack-it/translations/extensions/vscode.php-language-features.i18n.json
new file mode 100644
index 0000000000..70a36a4fb0
--- /dev/null
+++ b/i18n/vscode-language-pack-it/translations/extensions/vscode.php-language-features.i18n.json
@@ -0,0 +1,31 @@
+{
+ "": [
+ "--------------------------------------------------------------------------------------------",
+ "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."
+ ],
+ "version": "1.0.0",
+ "contents": {
+ "bundle": {
+ "Cannot validate since a PHP installation could not be found. Use the setting 'php.validate.executablePath' to configure the PHP executable.": "Non può essere convalidato perché non è stata trovata un'installazione PHP. Usare l'impostazione 'php.validate.executablePath' per configurare il file eseguibile PHP.",
+ "Cannot validate since no PHP executable is set. Use the setting 'php.validate.executablePath' to configure the PHP executable.": "Non è possibile eseguire la convalida perché non è impostato alcun file eseguibile di PHP. Usare l'impostazione 'php.validate.executablePath' per convalidare il file eseguibile di PHP.",
+ "Cannot validate since {0} is not a valid php executable. Use the setting 'php.validate.executablePath' to configure the PHP executable.": "Non è possibile eseguire la convalida perché {0} non è un file eseguibile di PHP valido. Usare l'impostazione 'php.validate.executablePath' per convalidare il file eseguibile di PHP.",
+ "Failed to run php using path: {0}. Reason is unknown.": "Non è stato possibile eseguire php con il percorso {0}. Il motivo è sconosciuto.",
+ "Open Settings": "Apri impostazioni"
+ },
+ "package": {
+ "command.untrustValidationExecutable": "Non consentire la convalida di PHP eseguibile (definito come impostazione dell'area di lavoro)",
+ "commands.categroy.php": "PHP",
+ "configuration.suggest.basic": "Controlla l'abilitazione dei suggerimenti predefiniti per il linguaggio PHP. Il supporto suggerisce variabili e variabili globali PHP.",
+ "configuration.title": "PHP",
+ "configuration.validate.enable": "Abilita/Disabilita la convalida PHP predefinita.",
+ "configuration.validate.executablePath": "Punta all'eseguibile di PHP.",
+ "configuration.validate.run": "Indica se il linter viene eseguito durante il salvataggio o la digitazione.",
+ "description": "Fornisce supporto avanzato del linguaggio per i file PHP.",
+ "displayName": "Funzionalità del linguaggio PHP",
+ "workspaceTrust": "L'estensione richiede un'area di lavoro attendibile quando l'impostazione 'php.validate.executablePath' carica una versione di PHP nell'area di lavoro."
+ }
+ }
+}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-it/translations/extensions/vscode.php.i18n.json b/i18n/vscode-language-pack-it/translations/extensions/vscode.php.i18n.json
index 1aa78580cc..f3a662d538 100644
--- a/i18n/vscode-language-pack-it/translations/extensions/vscode.php.i18n.json
+++ b/i18n/vscode-language-pack-it/translations/extensions/vscode.php.i18n.json
@@ -9,8 +9,8 @@
"version": "1.0.0",
"contents": {
"package": {
- "displayName": "Nozioni di base sul linguaggio PHP",
- "description": "Offre l'evidenziazione della sintassi e la corrispondenza delle parentesi nei file PHP."
+ "description": "Offre l'evidenziazione della sintassi e la corrispondenza delle parentesi nei file PHP.",
+ "displayName": "Nozioni di base sul linguaggio PHP"
}
}
}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-it/translations/extensions/vscode.powershell.i18n.json b/i18n/vscode-language-pack-it/translations/extensions/vscode.powershell.i18n.json
index 7fc9838607..101dbfaa5e 100644
--- a/i18n/vscode-language-pack-it/translations/extensions/vscode.powershell.i18n.json
+++ b/i18n/vscode-language-pack-it/translations/extensions/vscode.powershell.i18n.json
@@ -9,8 +9,8 @@
"version": "1.0.0",
"contents": {
"package": {
- "displayName": "Nozioni di base sul linguaggio PowerShell",
- "description": "Offre i frammenti, la sottolineatura delle sintassi, la corrispondenza delle parentesi e la riduzione del codice nei file PowerShell."
+ "description": "Offre i frammenti, la sottolineatura delle sintassi, la corrispondenza delle parentesi e la riduzione del codice nei file PowerShell.",
+ "displayName": "Nozioni di base sul linguaggio PowerShell"
}
}
}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-it/translations/extensions/vscode.prompt.i18n.json b/i18n/vscode-language-pack-it/translations/extensions/vscode.prompt.i18n.json
new file mode 100644
index 0000000000..2d09f6b7ac
--- /dev/null
+++ b/i18n/vscode-language-pack-it/translations/extensions/vscode.prompt.i18n.json
@@ -0,0 +1,16 @@
+{
+ "": [
+ "--------------------------------------------------------------------------------------------",
+ "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."
+ ],
+ "version": "1.0.0",
+ "contents": {
+ "package": {
+ "description": "Evidenziazione della sintassi per i documenti di richieste e istruzioni.",
+ "displayName": "Nozioni di base sul linguaggio delle richieste"
+ }
+ }
+}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-it/translations/extensions/vscode.pug.i18n.json b/i18n/vscode-language-pack-it/translations/extensions/vscode.pug.i18n.json
index 20b4327849..bbcc66311c 100644
--- a/i18n/vscode-language-pack-it/translations/extensions/vscode.pug.i18n.json
+++ b/i18n/vscode-language-pack-it/translations/extensions/vscode.pug.i18n.json
@@ -9,8 +9,8 @@
"version": "1.0.0",
"contents": {
"package": {
- "displayName": "Nozioni di base sul linguaggio Pug",
- "description": "Offre la sottolineatura delle sintassi e il match delle parentesi nei file Pug."
+ "description": "Offre la sottolineatura delle sintassi e il match delle parentesi nei file Pug.",
+ "displayName": "Nozioni di base sul linguaggio Pug"
}
}
}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-it/translations/extensions/python.i18n.json b/i18n/vscode-language-pack-it/translations/extensions/vscode.python.i18n.json
similarity index 100%
rename from i18n/vscode-language-pack-it/translations/extensions/python.i18n.json
rename to i18n/vscode-language-pack-it/translations/extensions/vscode.python.i18n.json
diff --git a/i18n/vscode-language-pack-it/translations/extensions/vscode.r.i18n.json b/i18n/vscode-language-pack-it/translations/extensions/vscode.r.i18n.json
index 59c8f30fa4..023a9c33cb 100644
--- a/i18n/vscode-language-pack-it/translations/extensions/vscode.r.i18n.json
+++ b/i18n/vscode-language-pack-it/translations/extensions/vscode.r.i18n.json
@@ -9,8 +9,8 @@
"version": "1.0.0",
"contents": {
"package": {
- "displayName": "Nozioni di base sul linguaggio R",
- "description": "Offre la sottolineatura delle sintassi e il match delle parentesi nei file R."
+ "description": "Offre la sottolineatura delle sintassi e il match delle parentesi nei file R.",
+ "displayName": "Nozioni di base sul linguaggio R"
}
}
}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-it/translations/extensions/vscode.razor.i18n.json b/i18n/vscode-language-pack-it/translations/extensions/vscode.razor.i18n.json
index e424517b77..6830d3853a 100644
--- a/i18n/vscode-language-pack-it/translations/extensions/vscode.razor.i18n.json
+++ b/i18n/vscode-language-pack-it/translations/extensions/vscode.razor.i18n.json
@@ -9,8 +9,8 @@
"version": "1.0.0",
"contents": {
"package": {
- "displayName": "Nozioni di base sul linguaggio Razor",
- "description": "Offre la sottolineatura delle sintassi, il match delle parentesi e il folding nei file Razor."
+ "description": "Offre la sottolineatura delle sintassi, il match delle parentesi e il folding nei file Razor.",
+ "displayName": "Nozioni di base sul linguaggio Razor"
}
}
}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-it/translations/extensions/vscode.references-view.i18n.json b/i18n/vscode-language-pack-it/translations/extensions/vscode.references-view.i18n.json
new file mode 100644
index 0000000000..e9bf0d60ae
--- /dev/null
+++ b/i18n/vscode-language-pack-it/translations/extensions/vscode.references-view.i18n.json
@@ -0,0 +1,61 @@
+{
+ "": [
+ "--------------------------------------------------------------------------------------------",
+ "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."
+ ],
+ "version": "1.0.0",
+ "contents": {
+ "bundle": {
+ "Callers Of": "Chiamanti di",
+ "Calls From": "Chiamate da",
+ "No results.": "Nessun risultato.",
+ "No results. Try running a previous search again:": "Nessun risultato. Provare a eseguire di nuovo una ricerca precedente:",
+ "Open Call": "Apri chiamata",
+ "Open Reference": "Apri riferimento",
+ "Open Type": "Tipo di apertura",
+ "References": "Riferimenti",
+ "Rerun": "Esegui di nuovo",
+ "Select previous reference search": "Seleziona la ricerca di riferimento precedente",
+ "Subtypes Of": "Sottotipi di",
+ "Supertypes Of": "Supertipi di",
+ "{0} result in {1} file": "{0} risultato in {1} file",
+ "{0} result in {1} files": "{0} risultato in {1} file",
+ "{0} results in {1} file": "{0} risultati in {1} file",
+ "{0} results in {1} files": "{0} risultati in {1} file"
+ },
+ "package": {
+ "cmd.category.references": "Riferimenti",
+ "cmd.references-view.clear": "Cancella",
+ "cmd.references-view.clearHistory": "Cancella cronologia",
+ "cmd.references-view.copy": "Copia",
+ "cmd.references-view.copyAll": "Copia tutto",
+ "cmd.references-view.copyPath": "Copia percorso",
+ "cmd.references-view.findImplementations": "Trova tutte le implementazioni",
+ "cmd.references-view.findReferences": "Trova tutti i riferimenti",
+ "cmd.references-view.next": "Passa al risultato successivo",
+ "cmd.references-view.pickFromHistory": "Visualizza cronologia",
+ "cmd.references-view.prev": "Passare al riferimento precedente",
+ "cmd.references-view.refind": "Esegui di nuovo",
+ "cmd.references-view.refresh": "Aggiorna",
+ "cmd.references-view.removeCallItem": "Ignora",
+ "cmd.references-view.removeReferenceItem": "Ignora",
+ "cmd.references-view.removeTypeItem": "Ignora",
+ "cmd.references-view.showCallHierarchy": "Mostra gerarchia di chiamata",
+ "cmd.references-view.showIncomingCalls": "Mostra chiamate in arrivo",
+ "cmd.references-view.showOutgoingCalls": "Mostra chiamate in uscita",
+ "cmd.references-view.showSubtypes": "Mostra sottotipi",
+ "cmd.references-view.showSupertypes": "Mostra supertipi",
+ "cmd.references-view.showTypeHierarchy": "Mostra gerarchia del tipo",
+ "config.references.preferredLocation": "Controlla se 'Visualizza in anteprima riferimenti' o 'Trova riferimenti' viene richiamato quando si selezionano i riferimenti di CodeLens.",
+ "config.references.preferredLocation.peek": "Mostrare i riferimenti nell'editor rapido.",
+ "config.references.preferredLocation.view": "Mostra i riferimenti in una visualizzazione separata.",
+ "container.title": "Riferimenti",
+ "description": "Fare riferimento ai risultati della ricerca come visualizzazione stabile separata nella barra laterale",
+ "displayName": "Visualizzazione ricerca riferimenti",
+ "view.title": "Risultati della ricerca di riferimento"
+ }
+ }
+}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-it/translations/extensions/restructuredtext.i18n.json b/i18n/vscode-language-pack-it/translations/extensions/vscode.restructuredtext.i18n.json
similarity index 100%
rename from i18n/vscode-language-pack-it/translations/extensions/restructuredtext.i18n.json
rename to i18n/vscode-language-pack-it/translations/extensions/vscode.restructuredtext.i18n.json
diff --git a/i18n/vscode-language-pack-it/translations/extensions/vscode.ruby.i18n.json b/i18n/vscode-language-pack-it/translations/extensions/vscode.ruby.i18n.json
index 276ec0dbdf..35f6567f2c 100644
--- a/i18n/vscode-language-pack-it/translations/extensions/vscode.ruby.i18n.json
+++ b/i18n/vscode-language-pack-it/translations/extensions/vscode.ruby.i18n.json
@@ -9,8 +9,8 @@
"version": "1.0.0",
"contents": {
"package": {
- "displayName": "Nozioni di base sul linguaggio Ruby",
- "description": "Offre la sottolineatura delle sintassi e il match delle parentesi nei file Ruby."
+ "description": "Offre la sottolineatura delle sintassi e il match delle parentesi nei file Ruby.",
+ "displayName": "Nozioni di base sul linguaggio Ruby"
}
}
}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-it/translations/extensions/vscode.rust.i18n.json b/i18n/vscode-language-pack-it/translations/extensions/vscode.rust.i18n.json
index a0d73c3bbf..3afe336a61 100644
--- a/i18n/vscode-language-pack-it/translations/extensions/vscode.rust.i18n.json
+++ b/i18n/vscode-language-pack-it/translations/extensions/vscode.rust.i18n.json
@@ -9,8 +9,8 @@
"version": "1.0.0",
"contents": {
"package": {
- "displayName": "Nozioni di base sul linguaggio Rust",
- "description": "Offre la sottolineatura delle sintassi e il match delle parentesi nei file Rust."
+ "description": "Offre la sottolineatura delle sintassi e il match delle parentesi nei file Rust.",
+ "displayName": "Nozioni di base sul linguaggio Rust"
}
}
}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-it/translations/extensions/vscode.scss.i18n.json b/i18n/vscode-language-pack-it/translations/extensions/vscode.scss.i18n.json
index 67acb9dce9..0113114ceb 100644
--- a/i18n/vscode-language-pack-it/translations/extensions/vscode.scss.i18n.json
+++ b/i18n/vscode-language-pack-it/translations/extensions/vscode.scss.i18n.json
@@ -9,8 +9,8 @@
"version": "1.0.0",
"contents": {
"package": {
- "displayName": "Nozioni di base sul linguaggio SCSS",
- "description": "Offre la sottolineatura delle sintassi, il match delle parentesi e il folding nei file SCSS."
+ "description": "Offre la sottolineatura delle sintassi, il match delle parentesi e il folding nei file SCSS.",
+ "displayName": "Nozioni di base sul linguaggio SCSS"
}
}
}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-it/translations/extensions/search-result.i18n.json b/i18n/vscode-language-pack-it/translations/extensions/vscode.search-result.i18n.json
similarity index 100%
rename from i18n/vscode-language-pack-it/translations/extensions/search-result.i18n.json
rename to i18n/vscode-language-pack-it/translations/extensions/vscode.search-result.i18n.json
diff --git a/i18n/vscode-language-pack-it/translations/extensions/vscode.shaderlab.i18n.json b/i18n/vscode-language-pack-it/translations/extensions/vscode.shaderlab.i18n.json
index 9fec7aaadf..75ce486cc6 100644
--- a/i18n/vscode-language-pack-it/translations/extensions/vscode.shaderlab.i18n.json
+++ b/i18n/vscode-language-pack-it/translations/extensions/vscode.shaderlab.i18n.json
@@ -9,8 +9,8 @@
"version": "1.0.0",
"contents": {
"package": {
- "displayName": "Nozioni di base sul linguaggio Shaderlab",
- "description": "Offre la sottolineatura delle sintassi e il match delle parentesi nei file Shaderlab."
+ "description": "Offre la sottolineatura delle sintassi e il match delle parentesi nei file Shaderlab.",
+ "displayName": "Nozioni di base sul linguaggio Shaderlab"
}
}
}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-it/translations/extensions/vscode.shellscript.i18n.json b/i18n/vscode-language-pack-it/translations/extensions/vscode.shellscript.i18n.json
index 177dffb81e..981a7488c3 100644
--- a/i18n/vscode-language-pack-it/translations/extensions/vscode.shellscript.i18n.json
+++ b/i18n/vscode-language-pack-it/translations/extensions/vscode.shellscript.i18n.json
@@ -9,8 +9,8 @@
"version": "1.0.0",
"contents": {
"package": {
- "displayName": "Nozioni di base sul linguaggio Shell Script",
- "description": "Offre la sottolineatura delle sintassi e il match delle parentesi nei file Shell Script."
+ "description": "Offre la sottolineatura delle sintassi e il match delle parentesi nei file Shell Script.",
+ "displayName": "Nozioni di base sul linguaggio Shell Script"
}
}
}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-it/translations/extensions/vscode.simple-browser.i18n.json b/i18n/vscode-language-pack-it/translations/extensions/vscode.simple-browser.i18n.json
new file mode 100644
index 0000000000..e7f865cb34
--- /dev/null
+++ b/i18n/vscode-language-pack-it/translations/extensions/vscode.simple-browser.i18n.json
@@ -0,0 +1,28 @@
+{
+ "": [
+ "--------------------------------------------------------------------------------------------",
+ "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."
+ ],
+ "version": "1.0.0",
+ "contents": {
+ "bundle": {
+ "Back": "Indietro",
+ "Enter url to visit": "Immettere l'URL da visitare",
+ "Focus Lock": "Blocco stato attivo",
+ "Forward": "Avanti",
+ "Open in browser": "Apri nel browser",
+ "Open in simple browser": "Apri nel browser semplice",
+ "Reload": "Ricarica",
+ "Simple Browser": "Browser semplice",
+ "https://example.com": "https://example.com"
+ },
+ "package": {
+ "configuration.focusLockIndicator.enabled.description": "Abilita/Disabilita l'indicatore mobile che viene visualizzato quando lo stato attivo si trova nel browser semplice.",
+ "description": "Webview predefinita di base per la visualizzazione di contenuto Web.",
+ "displayName": "Browser semplice"
+ }
+ }
+}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-it/translations/extensions/vscode.sql.i18n.json b/i18n/vscode-language-pack-it/translations/extensions/vscode.sql.i18n.json
index d5e89d13e6..48ac769f71 100644
--- a/i18n/vscode-language-pack-it/translations/extensions/vscode.sql.i18n.json
+++ b/i18n/vscode-language-pack-it/translations/extensions/vscode.sql.i18n.json
@@ -9,8 +9,8 @@
"version": "1.0.0",
"contents": {
"package": {
- "displayName": "Nozioni di base sul linguaggio SQL",
- "description": "Offre la sottolineatura delle sintassi e il match delle parentesi nei file SQL."
+ "description": "Offre la sottolineatura delle sintassi e il match delle parentesi nei file SQL.",
+ "displayName": "Nozioni di base sul linguaggio SQL"
}
}
}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-it/translations/extensions/vscode.swift.i18n.json b/i18n/vscode-language-pack-it/translations/extensions/vscode.swift.i18n.json
index 9490ad8ec2..92b69c230a 100644
--- a/i18n/vscode-language-pack-it/translations/extensions/vscode.swift.i18n.json
+++ b/i18n/vscode-language-pack-it/translations/extensions/vscode.swift.i18n.json
@@ -9,8 +9,8 @@
"version": "1.0.0",
"contents": {
"package": {
- "displayName": "Nozioni di base sul linguaggio Swift",
- "description": "Offre gli snippet, la sottolineatura delle sintassi e il match delle parentesi nei file Swift."
+ "description": "Offre gli snippet, la sottolineatura delle sintassi e il match delle parentesi nei file Swift.",
+ "displayName": "Nozioni di base sul linguaggio Swift"
}
}
}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-it/translations/extensions/vscode.terminal-suggest.i18n.json b/i18n/vscode-language-pack-it/translations/extensions/vscode.terminal-suggest.i18n.json
new file mode 100644
index 0000000000..155370bd0d
--- /dev/null
+++ b/i18n/vscode-language-pack-it/translations/extensions/vscode.terminal-suggest.i18n.json
@@ -0,0 +1,18 @@
+{
+ "": [
+ "--------------------------------------------------------------------------------------------",
+ "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."
+ ],
+ "version": "1.0.0",
+ "contents": {
+ "package": {
+ "description": "Estensione per aggiungere completamenti dei terminali per i terminali zsh, bash e fish.",
+ "displayName": "Suggerimento terminale per VS Code",
+ "terminal.integrated.suggest.clearCachedGlobals": "Cancellare i suggerimenti globali memorizzati nella cache",
+ "view.name": "Suggerimento terminale"
+ }
+ }
+}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-it/translations/extensions/vscode.theme-abyss.i18n.json b/i18n/vscode-language-pack-it/translations/extensions/vscode.theme-abyss.i18n.json
index a8f3269eca..46b5af0e30 100644
--- a/i18n/vscode-language-pack-it/translations/extensions/vscode.theme-abyss.i18n.json
+++ b/i18n/vscode-language-pack-it/translations/extensions/vscode.theme-abyss.i18n.json
@@ -9,8 +9,8 @@
"version": "1.0.0",
"contents": {
"package": {
- "displayName": "Tema Abyss",
"description": "Tema Abyss per Visual Studio Code",
+ "displayName": "Tema Abyss",
"themeLabel": "Abisso"
}
}
diff --git a/i18n/vscode-language-pack-it/translations/extensions/vscode.theme-defaults.i18n.json b/i18n/vscode-language-pack-it/translations/extensions/vscode.theme-defaults.i18n.json
index 7b3b42f447..7a58299432 100644
--- a/i18n/vscode-language-pack-it/translations/extensions/vscode.theme-defaults.i18n.json
+++ b/i18n/vscode-language-pack-it/translations/extensions/vscode.theme-defaults.i18n.json
@@ -9,13 +9,16 @@
"version": "1.0.0",
"contents": {
"package": {
- "displayName": "Tema predefinito",
- "description": "I temi dark e light predefiniti in Visual Studio",
- "darkPlusColorThemeLabel": "Più scuro (predefinito scuro)",
- "lightPlusColorThemeLabel": "Più chiaro (predefinito chiaro)",
"darkColorThemeLabel": "Scuro (Visual Studio)",
+ "darkModernThemeLabel": "Moderno scuro",
+ "darkPlusColorThemeLabel": "Scuro+",
+ "description": "I temi dark e light predefiniti in Visual Studio",
+ "displayName": "Tema predefinito",
+ "hcColorThemeLabel": "Contrasto elevato scuro",
"lightColorThemeLabel": "Chiaro (Visual Studio)",
- "hcColorThemeLabel": "Contrasto elevato",
+ "lightHcColorThemeLabel": "Contrasto elevato chiaro",
+ "lightModernThemeLabel": "Moderno chiaro",
+ "lightPlusColorThemeLabel": "Chiaro+",
"minimalIconThemeLabel": "Minimo (Visual Studio Code)"
}
}
diff --git a/i18n/vscode-language-pack-it/translations/extensions/vscode.theme-kimbie-dark.i18n.json b/i18n/vscode-language-pack-it/translations/extensions/vscode.theme-kimbie-dark.i18n.json
index fe5ecb9486..31d08f7747 100644
--- a/i18n/vscode-language-pack-it/translations/extensions/vscode.theme-kimbie-dark.i18n.json
+++ b/i18n/vscode-language-pack-it/translations/extensions/vscode.theme-kimbie-dark.i18n.json
@@ -9,8 +9,8 @@
"version": "1.0.0",
"contents": {
"package": {
- "displayName": "Tema Kimbie Dark",
"description": "Tema Kimbie Dark per Visual Studio Code",
+ "displayName": "Tema Kimbie Dark",
"themeLabel": "Kimbie Dark"
}
}
diff --git a/i18n/vscode-language-pack-it/translations/extensions/vscode.theme-monokai-dimmed.i18n.json b/i18n/vscode-language-pack-it/translations/extensions/vscode.theme-monokai-dimmed.i18n.json
index 467eb118aa..25ab9cfdc1 100644
--- a/i18n/vscode-language-pack-it/translations/extensions/vscode.theme-monokai-dimmed.i18n.json
+++ b/i18n/vscode-language-pack-it/translations/extensions/vscode.theme-monokai-dimmed.i18n.json
@@ -9,8 +9,8 @@
"version": "1.0.0",
"contents": {
"package": {
- "displayName": "Tema Monokai Dimmed",
"description": "Tema Monokai Dimmed per Visual Studio Code",
+ "displayName": "Tema Monokai Dimmed",
"themeLabel": "Monokai attenuato"
}
}
diff --git a/i18n/vscode-language-pack-it/translations/extensions/vscode.theme-monokai.i18n.json b/i18n/vscode-language-pack-it/translations/extensions/vscode.theme-monokai.i18n.json
index eabac63b01..a5a83daace 100644
--- a/i18n/vscode-language-pack-it/translations/extensions/vscode.theme-monokai.i18n.json
+++ b/i18n/vscode-language-pack-it/translations/extensions/vscode.theme-monokai.i18n.json
@@ -9,8 +9,8 @@
"version": "1.0.0",
"contents": {
"package": {
- "displayName": "Tema Monokai",
"description": "Tema Monokai per Visual Studio Code",
+ "displayName": "Tema Monokai",
"themeLabel": "Monokai"
}
}
diff --git a/i18n/vscode-language-pack-it/translations/extensions/vscode.theme-quietlight.i18n.json b/i18n/vscode-language-pack-it/translations/extensions/vscode.theme-quietlight.i18n.json
index e3a9dfed01..80f56d0d88 100644
--- a/i18n/vscode-language-pack-it/translations/extensions/vscode.theme-quietlight.i18n.json
+++ b/i18n/vscode-language-pack-it/translations/extensions/vscode.theme-quietlight.i18n.json
@@ -9,8 +9,8 @@
"version": "1.0.0",
"contents": {
"package": {
- "displayName": "Tema Quiet Light",
"description": "Tema Quiet Light per Visual Studio Code",
+ "displayName": "Tema Quiet Light",
"themeLabel": "Quiet Light"
}
}
diff --git a/i18n/vscode-language-pack-it/translations/extensions/vscode.theme-red.i18n.json b/i18n/vscode-language-pack-it/translations/extensions/vscode.theme-red.i18n.json
index 57fae88515..4a0c7354d0 100644
--- a/i18n/vscode-language-pack-it/translations/extensions/vscode.theme-red.i18n.json
+++ b/i18n/vscode-language-pack-it/translations/extensions/vscode.theme-red.i18n.json
@@ -9,8 +9,8 @@
"version": "1.0.0",
"contents": {
"package": {
- "displayName": "Tema Red",
"description": "Tema Red per Visual Studio Code",
+ "displayName": "Tema Red",
"themeLabel": "Rosso"
}
}
diff --git a/i18n/vscode-language-pack-it/translations/extensions/vscode.theme-solarized-dark.i18n.json b/i18n/vscode-language-pack-it/translations/extensions/vscode.theme-solarized-dark.i18n.json
index 321204fa4c..a08b043eaa 100644
--- a/i18n/vscode-language-pack-it/translations/extensions/vscode.theme-solarized-dark.i18n.json
+++ b/i18n/vscode-language-pack-it/translations/extensions/vscode.theme-solarized-dark.i18n.json
@@ -9,8 +9,8 @@
"version": "1.0.0",
"contents": {
"package": {
- "displayName": "Tema Solarized Dark",
"description": "Tema Solarized Dark per Visual Studio Code",
+ "displayName": "Tema Solarized Dark",
"themeLabel": "Solare scuro"
}
}
diff --git a/i18n/vscode-language-pack-it/translations/extensions/vscode.theme-solarized-light.i18n.json b/i18n/vscode-language-pack-it/translations/extensions/vscode.theme-solarized-light.i18n.json
index 7715321264..17b99e0885 100644
--- a/i18n/vscode-language-pack-it/translations/extensions/vscode.theme-solarized-light.i18n.json
+++ b/i18n/vscode-language-pack-it/translations/extensions/vscode.theme-solarized-light.i18n.json
@@ -9,8 +9,8 @@
"version": "1.0.0",
"contents": {
"package": {
- "displayName": "Tema Solarized Light",
"description": "Tema Solarized Light per Visual Studio Code",
+ "displayName": "Tema Solarized Light",
"themeLabel": "Solare chiaro"
}
}
diff --git a/i18n/vscode-language-pack-it/translations/extensions/vscode.theme-tomorrow-night-blue.i18n.json b/i18n/vscode-language-pack-it/translations/extensions/vscode.theme-tomorrow-night-blue.i18n.json
index bb38ba4519..c3f103e859 100644
--- a/i18n/vscode-language-pack-it/translations/extensions/vscode.theme-tomorrow-night-blue.i18n.json
+++ b/i18n/vscode-language-pack-it/translations/extensions/vscode.theme-tomorrow-night-blue.i18n.json
@@ -9,8 +9,8 @@
"version": "1.0.0",
"contents": {
"package": {
- "displayName": "Tema Tomorrow Night Blue",
"description": "Tema Tomorrow Night Blue per Visual Studio Code",
+ "displayName": "Tema Tomorrow Night Blue",
"themeLabel": "Tomorrow Night Blue"
}
}
diff --git a/i18n/vscode-language-pack-it/translations/extensions/vscode.tunnel-forwarding.i18n.json b/i18n/vscode-language-pack-it/translations/extensions/vscode.tunnel-forwarding.i18n.json
new file mode 100644
index 0000000000..3ad01a6a51
--- /dev/null
+++ b/i18n/vscode-language-pack-it/translations/extensions/vscode.tunnel-forwarding.i18n.json
@@ -0,0 +1,27 @@
+{
+ "": [
+ "--------------------------------------------------------------------------------------------",
+ "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."
+ ],
+ "version": "1.0.0",
+ "contents": {
+ "bundle": {
+ "Continue": "Continua",
+ "Don't show again": "Non visualizzare più",
+ "Port Forwarding": "Inoltro porte",
+ "Private": "Privato",
+ "Public": "Pubblico",
+ "You're about to create a publicly forwarded port. Anyone on the internet will be able to connect to the service listening on port {0}. You should only proceed if this service is secure and non-sensitive.": "Si sta per creare una porta inoltrata pubblicamente. Chiunque su Internet sarà in grado di connettersi al servizio in ascolto sulla porta {0}. È consigliabile procedere solo se il servizio è sicuro e non sensibile."
+ },
+ "package": {
+ "category": "Inoltro porte",
+ "command.restart": "Riavviare il sistema di inoltro",
+ "command.showLog": "Mostra log",
+ "description": "Consente l'accesso tramite Internet alle porte locali di inoltro.",
+ "displayName": "Inoltro porte tunnel locale"
+ }
+ }
+}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-it/translations/extensions/vscode.typescript-language-features.i18n.json b/i18n/vscode-language-pack-it/translations/extensions/vscode.typescript-language-features.i18n.json
new file mode 100644
index 0000000000..ee66589e84
--- /dev/null
+++ b/i18n/vscode-language-pack-it/translations/extensions/vscode.typescript-language-features.i18n.json
@@ -0,0 +1,367 @@
+{
+ "": [
+ "--------------------------------------------------------------------------------------------",
+ "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."
+ ],
+ "version": "1.0.0",
+ "contents": {
+ "bundle": {
+ "(loading...)/Prefix displayed for hover entries while the server is still loading": "(caricamento in corso...)",
+ "...1 additional file not shown": "...1 altro file non visualizzato",
+ "...{0} additional files not shown": "...{0} altri file non visualizzati",
+ "1 implementation": "1 implementazione",
+ "1 reference": "1 riferimento",
+ "Acquiring typings definitions for IntelliSense./Typings refers to the *.d.ts typings files that power our IntelliSense. It should not be localized": "Acquisizione delle definizioni dei file typings per IntelliSense.",
+ "Acquiring typings.../Typings refers to the *.d.ts typings files that power our IntelliSense. It should not be localized": "Acquisizione dei file typings...",
+ "Add all missing imports": "Aggiungi tutte le importazioni mancanti",
+ "Add meaningful parameter name with AI": "Aggiungere un nome di parametro significativo con l'intelligenza artificiale",
+ "Add types to this code. Add separate interfaces when possible. Do not change the code except for adding types.": "Aggiungere tipi a questo codice. Aggiungere interfacce separate quando possibile. Non modificare il codice se non per aggiungere tipi.",
+ "Allow": "Consenti",
+ "Always": "Sempre",
+ "An error occurred while renaming file": "Si è verificato un errore durante la ridenominazione del file",
+ "Analyzing '{0}' and its dependencies": "Analisi di '{0}' e delle relative dipendenze",
+ "Checking for update of JS/TS imports": "Verifica della disponibilità di aggiornamenti per le istruzioni import JS/TS",
+ "Configure Excludes": "Configura esclusioni",
+ "Configure JSConfig": "Configura JSConfig",
+ "Configure TSConfig": "Configura TSConfig",
+ "Configure jsconfig.json": "Configura jsconfig.json",
+ "Configure tsconfig.json": "Configura tsconfig.json",
+ "Could not apply refactoring": "Non è stato possibile applicare il refactoring",
+ "Could not detect a Node installation to run TS Server.": "Non è stato possibile rilevare un'installazione del nodo per eseguire il server Servizi terminal.",
+ "Could not determine TypeScript or JavaScript project": "Non è stato possibile determinare il progetto TypeScript o JavaScript",
+ "Could not determine TypeScript or JavaScript project. Unsupported file type": "Non è stato possibile determinare il progetto TypeScript o JavaScript. Il tipo di file non è supportato",
+ "Could not determine references": "Non è stato possibile determinare i riferimenti",
+ "Could not install typings files for JavaScript language features. Please ensure that NPM is installed, or configure 'typescript.npm' in your user settings. Alternatively, check the [documentation]({0}) to learn more.": "Non è stato possibile installare i file di definizione tipi per le funzionalità del linguaggio JavaScript. Verificare che npm sia installato e o configurare 'typescript.npm' nelle impostazioni utente. In alternativa, per altre informazioni, vedere la [documentazione]({0}).",
+ "Could not load the TypeScript version at this path": "Non è stato possibile caricare la versione di TypeScript in questo percorso",
+ "Could not open TS Server log file": "Non è stato possibile aprire il file di log del server TypeScript",
+ "Disable logging": "Disabilita registrazione",
+ "Disables semantic checking in a JavaScript file. Must be at the top of a file.": "Disattiva il controllo semantico in un file JavaScript. Deve essere all'inizio del file.",
+ "Dismiss": "Ignora",
+ "Don't Show Again": "Non visualizzare più questo messaggio",
+ "Don't show again": "Non visualizzare più questo messaggio",
+ "Enable logging and restart TS server": "Abilita la registrazione e riavvia il server TypeScript",
+ "Enables semantic checking in a JavaScript file. Must be at the top of a file.": "Attiva il controllo semantico in un file JavaScript. Deve essere all'inizio del file.",
+ "Enter file path": "Immetti il percorso del file",
+ "Enter new file path...": "Immettere il nuovo percorso del file...",
+ "Extract to constant": "Estrai in costante",
+ "Extract to function": "Estrai in funzione",
+ "Failed to resolve {0} as module": "Non è stato possibile risolvere {0} come modulo",
+ "Fetching data for better TypeScript IntelliSense": "Recupero dei dati per ottimizzare IntelliSense in TypeScript",
+ "File is not part of a JavaScript project. View the [jsconfig.json documentation]({0}) to learn more.": "Il file non fa parte di un progetto JavaScript. Per altre informazioni, visualizzare il [tsconfig.json documentation]({0}).",
+ "File is not part of a TypeScript project. View the [tsconfig.json documentation]({0}) to learn more.": "Il file non fa parte di un progetto TypeScript. Per altre informazioni, visualizzare il [tsconfig.json documentation]({0}).",
+ "File is not part opened folders": "Il file non fa parte di cartelle aperte",
+ "Find file references failed. No resource provided.": "La ricerca dei riferimenti a file non è riuscita. Non è stata specificata alcuna risorsa.",
+ "Find file references failed. Requires TypeScript 4.2+.": "La ricerca dei riferimenti a file non è riuscita. È richiesto TypeScript 4.2 o versione successiva.",
+ "Find file references failed. Unknown file type.": "La ricerca dei riferimenti a file non è riuscita. Il tipo di file è sconosciuto.",
+ "Find file references failed. Unsupported file type.": "La ricerca dei riferimenti a file non è riuscita. Il tipo di file non è supportato.",
+ "Finding file references": "Ricerca di riferimenti a file",
+ "Finding source definitions": "Ricerca di definizioni di origine",
+ "Fix all fixable JS/TS issues": "Correggi tutti i problemi JS/TS risolvibili",
+ "Follow link": "Segui il collegamento",
+ "Go to Source Definition failed. No resource provided.": "Accesso alla definizione di origine non riuscito. Nessuna risorsa specificata.",
+ "Go to Source Definition failed. Requires TypeScript 4.7+.": "Accesso alla definizione di origine non riuscito. È necessario TypeScript 4.7+.",
+ "Go to Source Definition failed. Unknown file type.": "Accesso alla definizione di origine non riuscito. Tipo di file sconosciuto.",
+ "Go to Source Definition failed. Unsupported file type.": "Accesso alla definizione di origine non riuscito. Tipo di file non supportato.",
+ "Implement missing function declaration '{0}' using AI": "Implementare la dichiarazione di funzione mancante \"{0}\" usando l'intelligenza artificiale",
+ "Implement the stubbed-out class members for {0} with a useful implementation.": "Implementare i membri della classe sottoposti a stub per {0} con un'implementazione utile.",
+ "Infer types using AI": "Dedurre i tipi usando l'intelligenza artificiale",
+ "Initializing '{0}'": "Inizializzazione di '{0}'",
+ "JS/TS IntelliSense Status": "JS/TS IntelliSense Status",
+ "JSDoc comment": "Commento JSDoc",
+ "Learn More": "Altre informazioni",
+ "Learn more about JS/TS refactorings": "Altre informazioni sui refactoring JS/TS",
+ "Learn more about managing TypeScript versions": "Altre informazioni sulla gestione delle versioni di TypeScript",
+ "Loading IntelliSense status": "Caricamento dello stato di IntelliSense",
+ "Move to File": "Sposta nel file",
+ "Never": "Mai",
+ "Never in this Workspace": "Mai in questa area di lavoro",
+ "No": "No",
+ "No jsconfig": "Nessun file jsconfig",
+ "No opened folders": "Nessuna cartella aperta",
+ "No source definitions found.": "Non sono state trovate definizioni di origine.",
+ "No tsconfig": "Nessun file tsconfig",
+ "Not now": "Non adesso",
+ "Open Config File": "Apri file di configurazione",
+ "Open on GitHub": "Apri in GitHub",
+ "Organize Imports": "Organizza importazioni",
+ "Partial mode": "Modalità parziale",
+ "Paste with imports": "Incolla con importazioni",
+ "Please open a folder in VS Code to use a TypeScript or JavaScript project": "Aprire una cartella in Visual Studio Code per usare un progetto TypeScript o JavaScript",
+ "Please report an issue against Yarn PnP": "Segnalare un problema con Yarn PnP",
+ "Please update your TypeScript version": "Aggiornare la versione di TypeScript",
+ "Project wide IntelliSense not available": "IntelliSense a livello di progetto non è disponibile",
+ "Provide a reasonable implementation of the function {0} given its type and the context it's called in.": "Fornire un'implementazione adeguata della funzione {0} in base al tipo e al contesto in cui viene chiamata.",
+ "Remove Unused Imports": "Rimuovi importazioni inutilizzate",
+ "Remove all unused code": "Rimuovi tutto il codice inutilizzato",
+ "Rename the parameter {0} with a more meaningful name.": "Rinominare il parametro {0} con un nome più significativo.",
+ "Report Issue": "Segnala problema",
+ "Report issue against Yarn PnP": "Segnalare problema con Yarn PnP",
+ "Select Version": "Seleziona versione ",
+ "Select code action to apply": "Selezionare l'azione codice da applicare",
+ "Select existing file...": "Selezionare file esistente...",
+ "Select move destination": "Seleziona la destinazione di spostamento",
+ "Select the TypeScript version used for JavaScript and TypeScript language features": "Selezionare la versione di TypeScript usata per le funzionalità del linguaggio JavaScript e TypeScript",
+ "Sort Imports": "Ordina direttive import",
+ "Suppresses @ts-check errors on the next line of a file, expecting at least one to exist.": "Elimina gli errori di @ts-check sulla riga successiva di un file. Presuppone che ne esista almeno uno.",
+ "Suppresses @ts-check errors on the next line of a file.": "Elimina errori di @ts-check sulla riga successiva di un file.",
+ "TS Server has not started logging.": "Il server TypeScript non ha avviato la registrazione.",
+ "TS Server logging is currently enabled which may impact performance.": "La registrazione del server Servizi terminal è attualmente abilitata e ciò potrebbe influire sulle prestazioni.",
+ "TS Server logging is off. Please set 'typescript.tsserver.log' and restart the TS server to enable logging": "La registrazione del server TypeScript è disattivata. Per abilitarla, impostare 'typescript.tsserver.log' e riavviare il server TypeScript",
+ "The JS/TS language service crashed 5 times in the last 5 Minutes.": "Il servizio di linguaggio JS/TS si è arrestato in modo anomalo 5 volte negli ultimi 5 minuti.",
+ "The JS/TS language service crashed 5 times in the last 5 Minutes.\nThis may be caused by a plugin contributed by one of these extensions: {0}\nPlease try disabling these extensions before filing an issue against VS Code.": "Il servizio di linguaggio JS/TS si è arrestato in modo anomalo 5 volte negli ultimi 5 minuti.\nIl problema può essere causato da un plug-in fornito da una delle estensioni seguenti: {0}\nProvare a disabilitare queste estensioni prima di segnalare un problema in VS Code.",
+ "The JS/TS language service crashed.": "Arresto anomalo del servizio di linguaggio JS/TS.",
+ "The JS/TS language service crashed.\nThis may be caused by a plugin contributed by one of these extensions: {0}.\nPlease try disabling these extensions before filing an issue against VS Code.": "Arresto anomalo del servizio di linguaggio JS/TS.\nIl problema può essere causato da un plug-in fornito da una delle estensioni seguenti: {0}.\nProvare a disabilitare queste estensioni prima di segnalare un problema in VS Code.",
+ "The JS/TS language service immediately crashed 5 times. The service will not be restarted.": "Il servizio di linguaggio JS/TS si è immediatamente arrestato in modo anomalo 5 volte. Il servizio non verrà riavviato.",
+ "The JS/TS language service immediately crashed 5 times. The service will not be restarted.\nThis may be caused by a plugin contributed by one of these extensions: {0}.\nPlease try disabling these extensions before filing an issue against VS Code.": "Il servizio di linguaggio JS/TS si è immediatamente arrestato in modo anomalo 5 volte. Il servizio non verrà riavviato.\nIl problema può essere causato da un plug-in fornito da una delle estensioni seguenti: {0}.\nProvare a disabilitare queste estensioni prima di segnalare un problema in VS Code.",
+ "The TypeScript Go extension is not installed.": "L'estensione TypeScript Go non è installata.",
+ "The current selection cannot be extracted": "Non è possibile estrarre la selezione corrente",
+ "The path {0} doesn't point to a valid Node installation to run TS Server. Falling back to bundled Node.": "Il percorso {0} non punta a un’installazione del nodo valida per eseguire il server Servizi terminal. Fallback al nodo in bundle.",
+ "The path {0} doesn't point to a valid tsserver install. Falling back to bundled TypeScript version.": "Il percorso {0} non punta a un'installazione valida di tsserver. Verrà eseguito il fallback alla versione in bundle di TypeScript.",
+ "The workspace is using a version of the TypeScript Server that has been patched by Yarn PnP. This patching is a common source of bugs.": "L'area di lavoro usa una versione del server TypeScript a cui è stata applicata una patch da Yarn PnP. Questa applicazione di patch è un'origine comune di bug.",
+ "The workspace is using an old version of TypeScript ({0}).\n\nBefore reporting an issue, please update the workspace to use TypeScript {1} or newer to make sure the bug has not already been fixed.": "L’area di lavoro usa una versione precedente di TypeScript ({0}).\n\nPrima di segnalare un problema, aggiornare l'area di lavoro per l’uso di TypeScript {1} o versioni successive, per assicurarsi che il bug non sia già stato risolto.",
+ "This workspace contains a TypeScript version. Would you like to use the workspace TypeScript version for TypeScript and JavaScript language features?": "Questa area di lavoro contiene una versione di TypeScript. Usare la versione di TypeScript dell'area di lavoro per le funzionalità dei linguaggi TypeScript e JavaScript?",
+ "This workspace wants to use the Node installation at '{0}' to run TS Server. Would you like to use it?": "Questa area di lavoro vuole usare l'installazione del nodo in '{0}{0}' per eseguire il server Servizi terminal. Vuoi usarlo?",
+ "To enable project-wide JavaScript/TypeScript language features, exclude folders with many files, like: {0}": "Per abilitare le funzionalità del linguaggio JavaScript/TypeScript a livello di progetto, escludere le cartelle che contengono molti file, come {0}",
+ "To enable project-wide JavaScript/TypeScript language features, exclude large folders with source files that you do not work on.": "Per abilitare le funzionalità del linguaggio JavaScript/TypeScript a livello di progetto, escludere le cartelle di grandi dimensioni che contengono file di origine su cui non si lavora.",
+ "TypeScript Server Log": "Log del server TypeScript",
+ "TypeScript Task in tasks.json contains \"\\\\\". TypeScript tasks tsconfig must use \"/\"": "L'attività TypeScript in tasks.json contiene \"\\\\\". Per le attività TypeScript in tsconfig è necessario usare \"/\"",
+ "TypeScript Version": "Versione di TypeScript",
+ "TypeScript language server exited with error. Error message is: {0}": "Il server di linguaggio TypeScript. è stato chiuso ed è stato restituito un errore. Messaggio di errore: {0}",
+ "TypeScript version": "Versione di TypeScript",
+ "TypeScript: Configure Excludes": "TypeScript: Configura esclusioni",
+ "Update imports for '{0}'?": "Aggiornare le istruzioni import per '{0}'?",
+ "Update imports for the following {0} files?": "Aggiornare le istruzioni import per i file di {0} seguenti?",
+ "Use VS Code's Version": "Usa versione di VS Code",
+ "Use Workspace Version": "Usa versione dell'area di lavoro",
+ "VS Code's tsserver was deleted by another application such as a misbehaving virus detection tool. Please reinstall VS Code.": "Il file tsserver di VS Code è stato eliminato da un'altra applicazione, ad esempio uno strumento di rilevamento virus che non funziona correttamente. Reinstallare VS Code.",
+ "Yes": "Sì",
+ "build - {0}": "compilazione - {0}",
+ "destination files": "file di destinazione",
+ "invalid version": "versione non valida",
+ "watch - {0}": "espressione di controllo - {0}",
+ "{0} (Fix all in file)": "{0} (Correggi tutti nel file)",
+ "{0} implementations": "{0} implementazioni",
+ "{0} references": "{0} riferimenti",
+ "{0} with AI": "{0} con l'intelligenza artificiale"
+ },
+ "package": {
+ "configuration.format": "Formattazione",
+ "configuration.hover.maximumLength": "Il numero massimo di caratteri al passaggio del mouse. Se il numero è superiore a questo valore, verrà troncato. Richiede TypeScript 5.9+.",
+ "configuration.implicitProjectConfig.checkJs": "Abilita/Disabilita il controllo semantico di file JavaScript. Eventuali file `jsconfig.json` o `tsconfig.json` esistenti sovrascrivono questa impostazione.",
+ "configuration.implicitProjectConfig.experimentalDecorators": "Abilita/Disabilita gli elementi `experimentalDecorators` in file JavaScript che non fanno parte di un progetto. Eventuali file `jsconfig.json` o `tsconfig.json` esistenti sovrascrivono questa impostazione.",
+ "configuration.implicitProjectConfig.module": "Imposta il sistema di moduli per il programma. Altre informazioni: https://www.typescriptlang.org/tsconfig#module.",
+ "configuration.implicitProjectConfig.strict": "Abilita/disabilita [strict mode](https://www.typescriptlang.org/tsconfig#strict) in file JavaScript e TypeScript che non fanno parte di un progetto. Eventuali file 'jsconfig.json' o 'tsconfig.json' esistenti sovrascrivono questa impostazione.",
+ "configuration.implicitProjectConfig.strictFunctionTypes": "Abilita/Disabilita i [tipi funzione strict](https://www.typescriptlang.org/tsconfig#strictFunctionTypes) in file JavaScript e TypeScript che non fanno parte di un progetto. Eventuali file `jsconfig.json` o `tsconfig.json` esistenti sovrascrivono questa impostazione.",
+ "configuration.implicitProjectConfig.strictNullChecks": "Abilita/Disabilita i [controlli strict Null](https://www.typescriptlang.org/tsconfig#strictNullChecks) in file JavaScript e TypeScript che non fanno parte di un progetto. Eventuali file `jsconfig.json` o `tsconfig.json` esistenti sovrascrivono questa impostazione.",
+ "configuration.implicitProjectConfig.target": "Imposta la versione del linguaggio JavaScript di destinazione per JavaScript emesso e include le dichiarazioni di libreria. Altre informazioni: https://www.typescriptlang.org/tsconfig#target.",
+ "configuration.inlayHints": "Suggerimenti per l'inlay",
+ "configuration.inlayHints.enumMemberValues.enabled": "Abilita/disabilita i suggerimenti per l'inlay per i valori dei membri nelle dichiarazioni di enumerazione:\r\n```typescript\r\n\r\nenum MyValue {\r\n\tA /* = 0 */;\r\n\tB /* = 1 */;\r\n}\r\n \r\n```",
+ "configuration.inlayHints.functionLikeReturnTypes.enabled": "Abilita/disabilita i suggerimenti per l'inlay per i tipi restituiti impliciti nelle firme delle funzioni:\r\n```typescript\r\n\r\nfunction foo() /* :number */ {\r\n\treturn Date.now();\r\n} \r\n \r\n```",
+ "configuration.inlayHints.parameterNames.enabled": "Abilita/disabilita i suggerimenti per l'inlay per i nomi di parametro:\r\n```typescript\r\n\r\nparseInt(/* str: */ '123', /* radix: */ 8)\r\n \r\n```",
+ "configuration.inlayHints.parameterNames.suppressWhenArgumentMatchesName": "Eliminare i suggerimenti per il nome del parametro negli argomenti il cui testo è identico al nome del parametro.",
+ "configuration.inlayHints.parameterTypes.enabled": "Abilita/disabilita i suggerimenti per l'inlay per i tipi di parametro impliciti:\r\n```typescript\r\n\r\nel.addEventListener('click', e /* :MouseEvent */ => ...)\r\n \r\n```",
+ "configuration.inlayHints.propertyDeclarationTypes.enabled": "Abilita/disabilita i suggerimenti per l'inlay per i tipi impliciti nelle dichiarazioni di proprietà:\r\n```typescript\r\n\r\nclass Foo {\r\n\tprop /* :number */ = Date.now();\r\n}\r\n \r\n```",
+ "configuration.inlayHints.variableTypes.enabled": "Abilita/disabilita i suggerimenti per l'inlay per i tipi di variabile impliciti:\r\n```typescript\r\n\r\nconst foo /* :number */ = Date.now();\r\n \r\n```",
+ "configuration.inlayHints.variableTypes.suppressWhenTypeMatchesName": "Elimina gli hint di tipo nelle variabili il cui nome è identico al nome del tipo.",
+ "configuration.preferGoToSourceDefinition": "Fa in modo che 'Vai alla definizione' eviti, quando possibile, i file di dichiarazione del tipo, attivando 'Vai alla definizione di origine'. In questo modo è possibile attivare 'Vai alla definizione di origine' con il movimento del mouse.",
+ "configuration.preferences": "Preferenze",
+ "configuration.server": "Server TS",
+ "configuration.suggest": "Suggerimenti",
+ "configuration.suggest.autoImports": "Abilita/Disabilita i suggerimenti per le istruzioni import automatiche.",
+ "configuration.suggest.classMemberSnippets.enabled": "Abilita/disabilita i completamenti dei frammenti dai membri della classe.",
+ "configuration.suggest.completeFunctionCalls": "Completare le funzioni con la relativa firma del parametro.",
+ "configuration.suggest.completeJSDocs": "Abilita/disabilita il suggerimento per il completamento dei commenti JSDoc.",
+ "configuration.suggest.includeAutomaticOptionalChainCompletions": "Abilita/disabilita la visualizzazione dei completamenti per valori potenzialmente indefiniti che inseriscono una chiamata a catena facoltativa.Richiede l'abilitazione dei controlli strict Null.",
+ "configuration.suggest.includeCompletionsForImportStatements": "Abilita/disabilita i completamenti per gli stili a importazione automatica in istruzioni import parzialmente digitate.",
+ "configuration.suggest.jsdoc.generateReturns": "Abilita/disabilita la generazione di annotazioni '@returns' per i modelli JSDoc.",
+ "configuration.suggest.names": "Abilita/disabilita l'inclusione di nomi univoci dal file nei suggerimenti JavaScript. Tenere presente che i suggerimenti per i nomi sono sempre disabilitati nel codice JavaScript che viene controllato semanticamente con `@ts-check` o `checkJs'.",
+ "configuration.suggest.objectLiteralMethodSnippets.enabled": "Abilita/disabilita i completamenti dei frammenti per i metodi nei valori letterali di oggetto.",
+ "configuration.suggest.paths": "Abilita/disabilita i suggerimenti per i percorsi nelle istruzioni import e le chiamate require.",
+ "configuration.tsserver.experimental.enableProjectDiagnostics": "Consente la segnalazione degli errori a livello di progetto.",
+ "configuration.tsserver.maxTsServerMemory": "Quantità massima di memoria (in MB) da assegnare al processo server TypeScript. Per usare un limite di memoria superiore a 4 GB, usare '#typescript.tsserver.nodePath#' per eseguire il server Servizi terminal con un'installazione personalizzata del nodo.",
+ "configuration.tsserver.nodePath": "Eseguire il server Servizi terminal in un'installazione personalizzata del nodo. Può trattarsi di un percorso di un eseguibile node o di un 'node' se si vuole che VS Code rilevi un'installazione del nodo.",
+ "configuration.tsserver.useSeparateSyntaxServer": "Abilita/disabilita la generazione di un server TypeScript separato in grado di rispondere più rapidamente a operazioni correlate alla sintassi, come il calcolo della riduzione o l'elaborazione dei simboli del documento.",
+ "configuration.tsserver.useSyntaxServer": "Controlla se TypeScript avvia un server dedicato per gestire più rapidamente le operazioni correlate alla sintassi, ad esempio la riduzione del codice di calcolo.",
+ "configuration.tsserver.useSyntaxServer.always": "Utilizza un server di sintassi più leggero per gestire tutte le operazioni di IntelliSense. Questo server di sintassi può fornire IntelliSense solo per i file aperti.",
+ "configuration.tsserver.useSyntaxServer.auto": "Genera un server completo e un server più leggero dedicato alle operazioni di sintassi. Il server di sintassi viene usato per velocizzare le operazioni di sintassi e fornire IntelliSense durante il caricamento dei progetti.",
+ "configuration.tsserver.useSyntaxServer.never": "Non utilizzare un server di sintassi dedicato. Utilizza un singolo server per gestire tutte le operazioni di IntelliSense.",
+ "configuration.tsserver.useVsCodeWatcher": "Usa watcher dei file di VS Code invece di TypeScript. Richiede l'uso di TypeScript 5.4+ nell'area di lavoro.",
+ "configuration.tsserver.watchOptions": "Configura le strategie di controllo per tenere traccia dei file e delle directory.",
+ "configuration.tsserver.watchOptions.fallbackPolling": "Quando si usano eventi del file system, questa opzione specifica la strategia di polling da usare se il sistema esaurisce i controlli file nativi e/o non supporta controlli file nativi.",
+ "configuration.tsserver.watchOptions.fallbackPolling.dynamicPriorityPolling ": "Usa una coda dinamica in cui i file modificati meno frequentemente verranno controllati meno spesso.",
+ "configuration.tsserver.watchOptions.fallbackPolling.fixedPollingInterval": "Controlla ogni file più volte al secondo per verificare la presenza di modifiche a un intervallo fisso.",
+ "configuration.tsserver.watchOptions.fallbackPolling.priorityPollingInterval": "Controlla ogni file più volte al secondo per verificare la presenza di modifiche, ma usa l'euristica per controllare alcuni tipi di file meno frequentemente di altri.",
+ "configuration.tsserver.watchOptions.synchronousWatchDirectory": "Disabilita il controllo differito sulle directory. Il controllo differito è utile in caso di più modifiche simultanee ai file, ad esempio una modifica in node_modules in seguito all'esecuzione di npm install, ma è opportuno disabilitarlo con questo flag per alcune configurazioni meno comuni.",
+ "configuration.tsserver.watchOptions.vscode": "Usa watcher dei file di VS Code invece di TypeScript. Richiede l'uso di TypeScript 5.4+ nell'area di lavoro.",
+ "configuration.tsserver.watchOptions.watchDirectory": "Strategia di controllo di interi alberi di directory in sistemi in cui manca la funzionalità di controllo file ricorsivi.",
+ "configuration.tsserver.watchOptions.watchDirectory.dynamicPriorityPolling": "Usa una coda dinamica in cui le directory modificate meno frequentemente verranno controllate meno spesso.",
+ "configuration.tsserver.watchOptions.watchDirectory.fixedChunkSizePolling": "Esegue il polling delle directory in blocchi a intervalli regolari.",
+ "configuration.tsserver.watchOptions.watchDirectory.fixedPollingInterval": "Controlla ogni directory più volte al secondo per verificare la presenza di modifiche a un intervallo fisso.",
+ "configuration.tsserver.watchOptions.watchDirectory.useFsEvents": "Prova a usare gli eventi nativi del sistema operativo/file system per le modifiche apportate alle directory.",
+ "configuration.tsserver.watchOptions.watchFile": "Strategia per il controllo dei singoli file.",
+ "configuration.tsserver.watchOptions.watchFile.dynamicPriorityPolling": "Usa una coda dinamica in cui i file modificati meno frequentemente verranno controllati meno spesso.",
+ "configuration.tsserver.watchOptions.watchFile.fixedChunkSizePolling": "Esegue il polling dei file in blocchi a intervalli regolari.",
+ "configuration.tsserver.watchOptions.watchFile.fixedPollingInterval": "Controlla ogni file più volte al secondo per verificare la presenza di modifiche a un intervallo fisso.",
+ "configuration.tsserver.watchOptions.watchFile.priorityPollingInterval": "Controlla ogni file più volte al secondo per verificare la presenza di modifiche, ma usa l'euristica per controllare alcuni tipi di file meno frequentemente di altri.",
+ "configuration.tsserver.watchOptions.watchFile.useFsEvents": "Prova a usare gli eventi nativi del sistema operativo/file system per le modifiche apportate ai file.",
+ "configuration.tsserver.watchOptions.watchFile.useFsEventsOnParentDirectory": "Prova a usare gli eventi nativi del sistema operativo/file system per ascoltare le modifiche apportate alle directory contenitore di un file. Con questa opzione vengono usati meno controlli file, ma i risultati potrebbero essere meno accurati.",
+ "configuration.tsserver.web.projectWideIntellisense.enabled": "Abilita/disabilita IntelliSense a livello di progetto sul Web. Richiede che Visual Studio Code sia in esecuzione in un contesto attendibile.",
+ "configuration.tsserver.web.projectWideIntellisense.suppressSemanticErrors": "Consente di eliminare gli errori semantici sul Web anche quando IntelliSense a livello di progetto è abilitato. Questa opzione è sempre attiva quando IntelliSense a livello di progetto non è abilitato o disponibile. Vedere '#typescript.tsserver.web.projectWideIntellisense.enabled#'",
+ "configuration.tsserver.web.typeAcquisition.enabled": "Consente di abilitare/disabilitare l'acquisizione di pacchetti sul Web. In questo modo IntelliSense viene abilitato per i pacchetti importati. Richiede '#typescript.tsserver.web.projectWideIntellisense.enabled#'. Attualmente non supportato per Safari.",
+ "configuration.typescript": "TypeScript",
+ "configuration.updateImportsOnPaste": "Aggiorna automaticamente le importazioni quando si incolla il codice. Richiede TypeScript 5.6+.",
+ "description": "Fornisce un supporto avanzato per JavaScript e TypeScript",
+ "displayName": "Funzionalità dei linguaggi TypeScript e JavaScript",
+ "format.indentSwitchCase": "Impostare un rientro per le clausole case nelle istruzioni switch. Richiede l'uso di TypeScript 5.1+ nell'area di lavoro.",
+ "format.insertSpaceAfterCommaDelimiter": "Consente di definire la gestione dello spazio dopo una virgola di delimitazione.",
+ "format.insertSpaceAfterConstructor": "Consente di definire la gestione dello spazio dopo la parola chiave constructor.",
+ "format.insertSpaceAfterFunctionKeywordForAnonymousFunctions": "Consente di definire la gestione dello spazio dopo la parola chiave function per funzioni anonime.",
+ "format.insertSpaceAfterKeywordsInControlFlowStatements": "Consente di definire la gestione dello spazio dopo le parole chiave in un'istruzione del flusso di controllo.",
+ "format.insertSpaceAfterOpeningAndBeforeClosingEmptyBraces": "Consente di definire la gestione dello spazio dopo l'apertura e prima della chiusura di parentesi graffe vuote.",
+ "format.insertSpaceAfterOpeningAndBeforeClosingJsxExpressionBraces": "Consente di definire la gestione dello spazio dopo la parentesi graffa iniziale e prima della parentesi graffa finale dell'espressione JSX.",
+ "format.insertSpaceAfterOpeningAndBeforeClosingNonemptyBraces": "Consente di definire la gestione dello spazio dopo l'apertura e prima della chiusura di parentesi graffe non vuote.",
+ "format.insertSpaceAfterOpeningAndBeforeClosingNonemptyBrackets": "Consente di definire la gestione dello spazio dopo le parentesi quadre di apertura e di chiusura non vuote.",
+ "format.insertSpaceAfterOpeningAndBeforeClosingNonemptyParenthesis": "Consente di definire la gestione dello spazio dopo le parentesi tonde di apertura e di chiusura non vuote.",
+ "format.insertSpaceAfterOpeningAndBeforeClosingTemplateStringBraces": "Consente di definire la gestione dello spazio dopo la parentesi graffa iniziale e prima della parentesi graffa finale della stringa del modello.",
+ "format.insertSpaceAfterSemicolonInForStatements": " Consente di definire la gestione dello spazio dopo un punto e virgola in un'istruzione for.",
+ "format.insertSpaceAfterTypeAssertion": "Consente di definire la gestione dello spazio dopo le asserzioni di tipo in TypeScript.",
+ "format.insertSpaceBeforeAndAfterBinaryOperators": "Consente di definire la gestione dello spazio dopo un operatore binario.",
+ "format.insertSpaceBeforeFunctionParenthesis": "Consente di definire la gestione dello spazio prima delle parentesi dell'argomento della funzione.",
+ "format.placeOpenBraceOnNewLineForControlBlocks": "Consente di definire se una parentesi graffa di apertura viene o meno inserita su una riga per i blocchi di controllo.",
+ "format.placeOpenBraceOnNewLineForFunctions": "Consente di definire se una parentesi graffa di apertura viene o meno inserita su una riga per le funzioni.",
+ "format.semicolons": "Definisce la gestione dei punti e virgola facoltativi.",
+ "format.semicolons.ignore": "Non inserire o rimuovere punti e virgola.",
+ "format.semicolons.insert": "Inserisce i punti e virgola alla fine delle istruzioni.",
+ "format.semicolons.remove": "Rimuove i punti e virgola non necessari.",
+ "inlayHints.parameterNames.all": "Abilitare i suggerimenti per il nome del parametro per gli argomenti letterali e non letterali.",
+ "inlayHints.parameterNames.literals": "Abilitare i suggerimenti per il nome del parametro solo per gli argomenti letterali.",
+ "inlayHints.parameterNames.none": "Disabilitare i suggerimenti per il nome del parametro.",
+ "javascript.format.enable": "Abilita/Disabilita il formattatore JavaScript predefinito.",
+ "javascript.goToProjectConfig.title": "Vai a Configurazione progetto (jsconfig/tsconfig)",
+ "javascript.preferences.jsxAttributeCompletionStyle.auto": "Inserire “={}” o “=\"\"” dopo i nomi di attributo in base al tipo di proprietà. Vedere '#javascript.preferences.quoteStyle#' per controllare il tipo di virgolette usate per gli attributi stringa.",
+ "javascript.preferences.organizeImports": "Preferenze avanzate che consentono di controllare l'ordinamento delle importazioni.",
+ "javascript.referencesCodeLens.enabled": "Abilita/disabilita riferimenti CodeLens nei file JavaScript.",
+ "javascript.referencesCodeLens.showOnAllFunctions": "Abilita/disabilita le finestre CodeLens per i riferimenti in tutte le funzioni nei file JavaScript.",
+ "javascript.suggestionActions.enabled": "Abilita/Disabilita la diagnostica dei suggerimenti per i file JavaScript nell'editor.",
+ "javascript.validate.enable": "Abilita/Disabilita la convalida JavaScript.",
+ "reloadProjects.title": "Ricarica progetto",
+ "taskDefinition.tsconfig.description": "File tsconfig che definisce la compilazione TS.",
+ "typescript.autoClosingTags": "Abilita/Disabilita la chiusura automatica dei tag JSX.",
+ "typescript.check.npmIsInstalled": "Verificare se npm è installato per [acquisizione automatica del tipo](https://code.visualstudio.com/docs/nodejs/working-with-javascript#_typings-and-automatic-type-acquisition).",
+ "typescript.disableAutomaticTypeAcquisition": "Disabilita [acquisizione automatica del tipo](https://code.visualstudio.com/docs/nodejs/working-with-javascript#_typings-and-automatic-type-acquisition). L'acquisizione automatica del tipo recupera pacchetti \"@types\" dall'npm per migliorare IntelliSense per le raccolte esterne.",
+ "typescript.enablePromptUseWorkspaceTsdk": "Consente di chiedere agli utenti se usare la versione di TypeScript configurata nell'area di lavoro per IntelliSense.",
+ "typescript.findAllFileReferences": "Trova riferimenti a file",
+ "typescript.format.enable": "Abilita/Disabilita il formattatore TypeScript predefinito.",
+ "typescript.goToProjectConfig.title": "Vai a Configurazione progetto (tsconfig)",
+ "typescript.goToSourceDefinition": "Vai alla definizione di origine",
+ "typescript.implementationsCodeLens.enabled": "Abilita/Disabilita le finestre CodeLens per le implementazioni. Questa finestra CodeLens mostra gli implementatori di un'interfaccia.",
+ "typescript.implementationsCodeLens.showOnAllClassMethods": "Abilita o disabilita la visualizzazione delle implementazioni di CodeLens su tutti i metodi di classe, non solo su quelli astratti.",
+ "typescript.implementationsCodeLens.showOnInterfaceMethods": "Abilitare/disabilitare le implementazioni di CodeLens nei metodi di interfaccia.",
+ "typescript.locale": "Consente di definire le impostazioni locali usate per segnalare errori JavaScript e TypeScript. Per impostazione predefinita vengono usate le impostazioni locali di VS Code.",
+ "typescript.locale.auto": "Usa la lingua di visualizzazione configurata di VS Code.",
+ "typescript.npm": "Specifica il percorso del file eseguibile npm usato per [acquisizione automatica del tipo](https://code.visualstudio.com/docs/nodejs/working-with-javascript#_typings-and-automatic-type-acquisition).",
+ "typescript.openTsServerLog.title": "Apri il log del server TypeScript",
+ "typescript.preferences.autoImportFileExcludePatterns": "Specificare i criteri GLOB dei file da escludere dalle importazioni automatiche. I percorsi relativi vengono risolti in relazione alla radice dell'area di lavoro. I criteri vengono valutati usando la semantica tsconfig.json [`exclude`](https://www.typescriptlang.org/tsconfig#exclude).",
+ "typescript.preferences.autoImportSpecifierExcludeRegexes": "Specificare le espressioni regolari per escludere le importazioni automatiche con identificatori di importazione corrispondenti. Esempi:\r\n\r\n- `^node:`\r\n- 'lib/internal' (le barre non devono essere precedute da un carattere di escape...)\r\n- '/lib\\/internal/i' (... a meno che non siano incluse le barre circostanti per i flag 'i' o 'u')\r\n- '^lodash$' (consenti solo importazioni di sottopercorso da lodash)",
+ "typescript.preferences.importModuleSpecifier": "Stile di percorso preferito per le istruzioni import automatiche.",
+ "typescript.preferences.importModuleSpecifier.nonRelative": "Preferisce un'importazione non relativa basata sull'elemento `baseUrl` o `paths` configurato nel file `jsconfig.json`/`tsconfig.json`.",
+ "typescript.preferences.importModuleSpecifier.projectRelative": "Preferisce un'importazione non relativa solo se il percorso di importazione relativo lascia la directory del progetto o del pacchetto.",
+ "typescript.preferences.importModuleSpecifier.relative": "Preferisce un percorso relativo per la posizione del file importato.",
+ "typescript.preferences.importModuleSpecifier.shortest": "Preferisce un'importazione non relativa solo se ne è disponibile solo una con un numero di segmenti di tracciato minore rispetto a un'importazione relativa.",
+ "typescript.preferences.importModuleSpecifierEnding": "Terminazione di percorso preferita per le istruzioni import automatiche.",
+ "typescript.preferences.importModuleSpecifierEnding.auto": "Usa le impostazioni del progetto per selezionare un'impostazione predefinita.",
+ "typescript.preferences.importModuleSpecifierEnding.index": "Abbrevia `./component/index.js` in `./component/index`.",
+ "typescript.preferences.importModuleSpecifierEnding.js": "Non abbreviare le terminazioni del percorso; includere l'estensione '.js' o '.ts'.",
+ "typescript.preferences.importModuleSpecifierEnding.label.js": ".js/ .ts",
+ "typescript.preferences.importModuleSpecifierEnding.minimal": "Abbrevia `./component/index.js` in `./component`.",
+ "typescript.preferences.includePackageJsonAutoImports": "Abilita/Disabilita la ricerca delle dipendenze di `package.json` per le importazioni automatiche disponibili.",
+ "typescript.preferences.includePackageJsonAutoImports.auto": "Cerca le dipendenze in base all'impatto stimato sulle prestazioni.",
+ "typescript.preferences.includePackageJsonAutoImports.off": "Non cercare mai le dipendenze.",
+ "typescript.preferences.includePackageJsonAutoImports.on": "Cerca sempre le dipendenze.",
+ "typescript.preferences.jsxAttributeCompletionStyle": "Stile preferito per i completamenti degli attributi JSX.",
+ "typescript.preferences.jsxAttributeCompletionStyle.auto": "Inserire “={}” o “=\"\"” dopo i nomi di attributo in base al tipo di proprietà. Vedere '#typescript.preferences.quoteStyle#' per controllare il tipo di virgolette usate per gli attributi stringa.",
+ "typescript.preferences.jsxAttributeCompletionStyle.braces": "Inserire “={}” dopo i nomi di attributo.",
+ "typescript.preferences.jsxAttributeCompletionStyle.none": "Inserire solo nomi di attributo.",
+ "typescript.preferences.organizeImports": "Preferenze avanzate che consentono di controllare l'ordinamento delle importazioni.",
+ "typescript.preferences.organizeImports.accentCollation": "Richiede 'organizeImports.unicodeCollation: 'unicode''. Confronta i caratteri con segni diacritici come diversi dal carattere di base.",
+ "typescript.preferences.organizeImports.caseFirst": "Richiede 'organizeImports.unicodeCollation: 'unicode'' e 'organizeImports.caseSensitivity' non è 'caseInsensitive'. Indica se le lettere maiuscole verranno ordinate prima delle minuscole.",
+ "typescript.preferences.organizeImports.caseFirst.default": "Ordine predefinito specificato da 'locale'.",
+ "typescript.preferences.organizeImports.caseFirst.lower": "Le lettere minuscole precedono le maiuscole. Ad esempio: ' a, A, z, Z'.",
+ "typescript.preferences.organizeImports.caseFirst.upper": "Le lettere maiuscole precedono le minuscole. Ad esempio: ' A, a, B, b'.",
+ "typescript.preferences.organizeImports.caseSensitivity": "Specifica come devono essere ordinate le importazioni per quanto riguarda la distinzione tra maiuscole e minuscole. Se è stata specificata l’opzione 'auto' o non è stata specificata alcuna opzione, verrà rilevata la distinzione tra maiuscole e minuscole per ogni file",
+ "typescript.preferences.organizeImports.caseSensitivity.auto": "Distinzione tra maiuscole e minuscole per l'ordinamento delle importazioni.",
+ "typescript.preferences.organizeImports.caseSensitivity.insensitive": "Ordinare le importazioni senza distinzione tra maiuscole e minuscole.",
+ "typescript.preferences.organizeImports.caseSensitivity.sensitive": "Ordinare le importazioni con distinzione tra maiuscole e minuscole.",
+ "typescript.preferences.organizeImports.locale": "Richiede 'organizeImports.unicodeCollation: 'unicode''. Ignora le impostazioni locali usate per le regole di confronto. Specificare ‘auto’ per usare le impostazioni locali dell'interfaccia utente.",
+ "typescript.preferences.organizeImports.numericCollation": "Richiede 'organizeImports.unicodeCollation: 'unicode''. Ordina le stringhe numeriche in base al valore del numero intero.",
+ "typescript.preferences.organizeImports.typeOrder": "Specifica come devono essere ordinate le importazioni denominate solo in base al tipo.",
+ "typescript.preferences.organizeImports.typeOrder.auto": "Rileva dove ordinare le importazioni denominate solo per il tipo.",
+ "typescript.preferences.organizeImports.typeOrder.first": "Le importazioni denominate solo in base al tipo vengono ordinate all’inizio dell'elenco delle importazioni. Ad esempio, 'import { type A, type Y, B, Z } from 'module';'",
+ "typescript.preferences.organizeImports.typeOrder.inline": "Le importazioni denominate vengono ordinate solo per nome. Ad esempio, 'import { type A, B, type Y, Z } from 'module';'",
+ "typescript.preferences.organizeImports.typeOrder.last": "Le importazioni denominate solo in base al tipo vengono ordinate alla fine dell'elenco delle importazioni. Ad esempio, 'import { B, Z, type A, type Y } from 'module';'",
+ "typescript.preferences.organizeImports.unicodeCollation": "Specifica se ordinare le importazioni usando le regole di confronto Unicode o ordinali.",
+ "typescript.preferences.organizeImports.unicodeCollation.ordinal": "Ordinare le importazioni usando il valore numerico di ogni punto di codice.",
+ "typescript.preferences.organizeImports.unicodeCollation.unicode": "Ordinare le importazioni utilizzando le regole di confronto del codice Unicode.",
+ "typescript.preferences.preferTypeOnlyAutoImports": "Includere la parola chiave 'type' nelle importazioni automatiche quando possibile. Richiede l'uso di TypeScript 5.3+ nell'area di lavoro.",
+ "typescript.preferences.quoteStyle": "Stile virgolette preferito da usare per le correzioni rapide.",
+ "typescript.preferences.quoteStyle.auto": "Dedurre il tipo di virgolette dal codice esistente",
+ "typescript.preferences.quoteStyle.double": "Usare sempre virgolette doppie: `\"`",
+ "typescript.preferences.quoteStyle.single": "Usare sempre virgolette singole: `'`",
+ "typescript.preferences.renameMatchingJsxTags": "Quando si usa un tag JSX, provare a rinominare il tag corrispondente anziché rinominare il simbolo. Richiede l'uso di TypeScript 5.1+ nell'area di lavoro.",
+ "typescript.preferences.useAliasesForRenames": "Abilita/disabilita l'introduzione di alias per le proprietà a sintassi abbreviata degli oggetti durante le ridenominazioni.",
+ "typescript.problemMatchers.tsc.label": "Problemi TypeScript",
+ "typescript.problemMatchers.tscWatch.label": "Problemi TypeScript (modalità espressione di controllo)",
+ "typescript.problemMatchers.tsgo-watch.label": "Problemi TypeScript (modalità espressione di controllo)",
+ "typescript.referencesCodeLens.enabled": "Abilita/Disabilita le finestre CodeLens per i riferimenti nei file TypeScript.",
+ "typescript.referencesCodeLens.showOnAllFunctions": "Abilita/disabilita le finestre CodeLens per i riferimenti in tutte le funzioni nei file TypeScript.",
+ "typescript.removeUnusedImports": "Rimuovi importazioni inutilizzate",
+ "typescript.reportStyleChecksAsWarnings": "Segnala i controlli di stile come avvisi.",
+ "typescript.restartTsServer": "Riavvia server TS",
+ "typescript.selectTypeScriptVersion.title": "Seleziona la versione di TypeScript...",
+ "typescript.sortImports": "Ordina direttive import",
+ "typescript.suggest.enabled": "Abilita/Disabilita i suggerimenti per il completamento automatico.",
+ "typescript.suggestionActions.enabled": "Abilita/Disabilita la diagnostica dei suggerimenti per i file TypeScript nell'editor.",
+ "typescript.tsc.autoDetect": "Controlla la rilevazione automatica di attività tsc.",
+ "typescript.tsc.autoDetect.build": "Crea solo singole attività di compilazione esecuzione.",
+ "typescript.tsc.autoDetect.off": "Disabilita questa funzionalità.",
+ "typescript.tsc.autoDetect.on": "Crea attività di compilazione e di controllo.",
+ "typescript.tsc.autoDetect.watch": "Crea solo attività di compilazione e di controllo.",
+ "typescript.tsdk.desc": "Specifica il percorso della cartella dei file tsserver e `lib*.d.ts` in un'installazione di TypeScript da usare per IntelliSense, ad esempio: `./node_modules/typescript/lib`.\r\n\r\n- Quando viene specificata come impostazione utente, la versione di TypeScript di `typescript.tsdk` sostituisce automaticamente la versione predefinita di TypeScript.\r\n- Quando viene specificata come impostazione dell'area di lavoro, `typescript.tsdk` consente di passare alla versione area di lavoro di TypeScript per IntelliSense con il comando `TypeScript: selezionare la versione di TypeScript`.\r\n\r\nPer altri dettagli sulla gestione delle versioni di TypeScript, vedere la [documentazione di TypeScript](https://code.visualstudio.com/docs/typescript/typescript-compiling#_using-newer-typescript-versions).",
+ "typescript.tsserver.enableRegionDiagnostics": "Abilita la diagnostica basata sull'area in TypeScript. Richiede l'uso di TypeScript 5.6+ nell'area di lavoro.",
+ "typescript.tsserver.enableTracing": "Abilita la traccia delle prestazioni del server TypeScript in una directory. Questi file di traccia possono essere usati per diagnosticare problemi di prestazioni del server TypeScript. Il log può contenere percorsi di file, codice sorgente e altre informazioni del progetto potenzialmente riservate.",
+ "typescript.tsserver.log": "Abilita la registrazione del server TypeScript in un file. Questo log può essere usato per diagnosticare problemi del server TypeScript. Il log può contenere percorsi di file, codice sorgente e altre informazioni del progetto potenzialmente riservate.",
+ "typescript.tsserver.pluginPaths": "Percorsi aggiuntivi per individuare plug-in del servizio di linguaggio TypeScript.",
+ "typescript.tsserver.pluginPaths.item": "Percorso assoluto o relativo. Il percorso relativo verrà risolto in base alle cartelle dell'area di lavoro.",
+ "typescript.tsserver.trace": "Abilita la traccia dei messaggi inviati al server TypeScript. Questa traccia può essere usata per diagnosticare problemi del server TypeScript. La traccia può contenere percorsi di file, codice sorgente e altre informazioni del progetto potenzialmente riservate.",
+ "typescript.updateImportsOnFileMove.enabled": "Abilita/Disabilita l'aggiornamento automatico dei percorsi delle istruzioni import quando si rinomina o si sposta un file in VS Code.",
+ "typescript.updateImportsOnFileMove.enabled.always": "Aggiorna sempre i percorsi automaticamente.",
+ "typescript.updateImportsOnFileMove.enabled.never": "Non rinomina mai i percorsi senza chiedere conferma.",
+ "typescript.updateImportsOnFileMove.enabled.prompt": "Chiede conferma per ogni ridenominazione.",
+ "typescript.useTsgo": "Disabilita le funzionalità dei linguaggi TypeScript e JavaScript per consentire l'utilizzo dell'estensione sperimentale TypeScript Go. È necessaria l'installazione e la configurazione di TypeScript Go. Dopo aver modificato questa impostazione, è necessario ricaricare le estensioni.",
+ "typescript.validate.enable": "Abilita/Disabilita la convalida TypeScript.",
+ "typescript.workspaceSymbols.excludeLibrarySymbols": "Escludere i simboli provenienti dai file di libreria nei risultati 'Vai a simbolo' nell'area di lavoro. Richiede l'uso di TypeScript 5.3+ nell'area di lavoro.",
+ "typescript.workspaceSymbols.scope": "Controlla i file cercati in base a [Vai al simbolo nell'area di lavoro](https://code.visualstudio.com/docs/editor/editingevolved#_open-symbol-by-name).",
+ "typescript.workspaceSymbols.scope.allOpenProjects": "Cerca i simboli in tutti i progetti JavaScript o TypeScript aperti.",
+ "typescript.workspaceSymbols.scope.currentProject": "Cerca i simboli solo nel progetto JavaScript o TypeScript corrente.",
+ "virtualWorkspaces": "Nelle aree di lavoro virtuali, la risoluzione e la ricerca di riferimenti tra i file non sono supportate.",
+ "walkthroughs.nodejsWelcome.debugJsFile.altText": "Fai il debug ed esegui il codice JavaScript in Node.js con Visual Studio Code.",
+ "walkthroughs.nodejsWelcome.debugJsFile.description": "Dopo aver installato Node.js, è possibile eseguire programmi JavaScript in un terminale immettendo ''node your-file-name.js''\r\nUn altro modo semplice per eseguire i programmi Node.js consiste nell'usare il debugger di VS Code, che consente di eseguire il tuo codice, sospendere in punti diversi e comprendere cosa sta succedendo passo dopo passo.\r\n[Avvia debug](command:javascript-walkthrough.commands.debugJsFile)",
+ "walkthroughs.nodejsWelcome.debugJsFile.title": "Esegui e fai il debug di JavaScript",
+ "walkthroughs.nodejsWelcome.description": "Sfrutta al meglio l'esperienza JavaScript di Visual Studio Code di prima classe.",
+ "walkthroughs.nodejsWelcome.downloadNode.forLinux.description": "Node.js è un modo semplice per eseguire il codice JavaScript. È possibile usarlo per creare rapidamente app e server della riga di comando. Include anche npm, uno strumento di gestione pacchetti che semplifica il riutilizzo e la condivisione del codice JavaScript.\r\n[Installare Node.js](https://nodejs.org/en/download/package-manager/)",
+ "walkthroughs.nodejsWelcome.downloadNode.forLinux.title": "Installa Node.js",
+ "walkthroughs.nodejsWelcome.downloadNode.forMacOrWindows.description": "Node.js è un modo semplice per eseguire il codice JavaScript. È possibile usarlo per creare rapidamente app e server della riga di comando. Include anche npm, uno strumento di gestione pacchetti che semplifica il riutilizzo e la condivisione del codice JavaScript.\r\n[Installare Node.js](https://nodejs.org/en/download/)",
+ "walkthroughs.nodejsWelcome.downloadNode.forMacOrWindows.title": "Installa Node.js",
+ "walkthroughs.nodejsWelcome.learnMoreAboutJs.altText": "Altre informazioni su JavaScript e Node.js in Visual Studio Code.",
+ "walkthroughs.nodejsWelcome.learnMoreAboutJs.description": "Vuoi avere più familiarità con JavaScript, Node.js e VS Code? Assicurati di consultare i nostri documenti!\r\nSono disponibili numerose risorse per l’apprendimento [JavaScript](https://code.visualstudio.com/docs/nodejs/working-with-javascript) e [Node.js](https://code.visualstudio.com/docs/nodejs/nodejs-tutorial).\r\n\r\n[Altre informazioni](https://code.visualstudio.com/docs/nodejs/nodejs-tutorial)",
+ "walkthroughs.nodejsWelcome.learnMoreAboutJs.title": "Scopri di più",
+ "walkthroughs.nodejsWelcome.makeJsFile.description": "Scriviamo il nostro primo file JavaScript. Sarà necessario creare un nuovo file e salvarlo con l'estensione ''.js'' alla fine del nome del file.\r\n[Crea un file JavaScript](command:javascript-walkthrough.commands.createJsFile)",
+ "walkthroughs.nodejsWelcome.makeJsFile.title": "Crea un file JavaScript",
+ "walkthroughs.nodejsWelcome.title": "Introduzione a JavaScript e Node.js",
+ "workspaceTrust": "L'estensione richiede l'attendibilità dell'area di lavoro quando viene utilizzata la versione dell'area di lavoro perché esegue il codice specificato dall'area di lavoro."
+ }
+ }
+}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-it/translations/extensions/vscode.typescript.i18n.json b/i18n/vscode-language-pack-it/translations/extensions/vscode.typescript.i18n.json
index b576776b7d..adb9bb512a 100644
--- a/i18n/vscode-language-pack-it/translations/extensions/vscode.typescript.i18n.json
+++ b/i18n/vscode-language-pack-it/translations/extensions/vscode.typescript.i18n.json
@@ -9,8 +9,8 @@
"version": "1.0.0",
"contents": {
"package": {
- "displayName": "Nozioni di base sul linguaggio TypeScript",
- "description": "Offre i frammenti, la sottolineatura delle sintassi, la corrispondenza delle parentesi e la riduzione del codice nei file TypeScript."
+ "description": "Offre i frammenti, la sottolineatura delle sintassi, la corrispondenza delle parentesi e la riduzione del codice nei file TypeScript.",
+ "displayName": "Nozioni di base sul linguaggio TypeScript"
}
}
}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-it/translations/extensions/vscode.vb.i18n.json b/i18n/vscode-language-pack-it/translations/extensions/vscode.vb.i18n.json
index 9a1d1ef48d..19f2f5bfe9 100644
--- a/i18n/vscode-language-pack-it/translations/extensions/vscode.vb.i18n.json
+++ b/i18n/vscode-language-pack-it/translations/extensions/vscode.vb.i18n.json
@@ -9,8 +9,8 @@
"version": "1.0.0",
"contents": {
"package": {
- "displayName": "Nozioni di base sul linguaggio Visual Basic",
- "description": "Offre i frammenti, la sottolineatura delle sintassi, la corrispondenza delle parentesi e la riduzione del codice nei file Visual Basic."
+ "description": "Offre i frammenti, la sottolineatura delle sintassi, la corrispondenza delle parentesi e la riduzione del codice nei file Visual Basic.",
+ "displayName": "Nozioni di base sul linguaggio Visual Basic"
}
}
}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-it/translations/extensions/vscode.vscode-theme-seti.i18n.json b/i18n/vscode-language-pack-it/translations/extensions/vscode.vscode-theme-seti.i18n.json
index 058212ffdf..217ffad322 100644
--- a/i18n/vscode-language-pack-it/translations/extensions/vscode.vscode-theme-seti.i18n.json
+++ b/i18n/vscode-language-pack-it/translations/extensions/vscode.vscode-theme-seti.i18n.json
@@ -9,8 +9,8 @@
"version": "1.0.0",
"contents": {
"package": {
- "displayName": "Tema Seti per le icone dei file",
"description": "Un tema per le icone dei file creato sulla base di Seti UI",
+ "displayName": "Tema Seti per le icone dei file",
"themeLabel": "Seti (Visual Studio Code)"
}
}
diff --git a/i18n/vscode-language-pack-it/translations/extensions/vscode.xml.i18n.json b/i18n/vscode-language-pack-it/translations/extensions/vscode.xml.i18n.json
index c6722128a9..97f74f37f5 100644
--- a/i18n/vscode-language-pack-it/translations/extensions/vscode.xml.i18n.json
+++ b/i18n/vscode-language-pack-it/translations/extensions/vscode.xml.i18n.json
@@ -9,8 +9,8 @@
"version": "1.0.0",
"contents": {
"package": {
- "displayName": "Nozioni di base sul linguaggio XML",
- "description": "Offre la sottolineatura delle sintassi e il match delle parentesi nei file XML."
+ "description": "Offre la sottolineatura delle sintassi e il match delle parentesi nei file XML.",
+ "displayName": "Nozioni di base sul linguaggio XML"
}
}
}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-it/translations/extensions/vscode.yaml.i18n.json b/i18n/vscode-language-pack-it/translations/extensions/vscode.yaml.i18n.json
index 0f9dd3b0e0..dea5bc677e 100644
--- a/i18n/vscode-language-pack-it/translations/extensions/vscode.yaml.i18n.json
+++ b/i18n/vscode-language-pack-it/translations/extensions/vscode.yaml.i18n.json
@@ -9,8 +9,8 @@
"version": "1.0.0",
"contents": {
"package": {
- "displayName": "Nozioni di base sul linguaggio YAML",
- "description": "Offre la sottolineatura delle sintassi e il match delle parentesi nei file YAML."
+ "description": "Offre la sottolineatura delle sintassi e il match delle parentesi nei file YAML.",
+ "displayName": "Nozioni di base sul linguaggio YAML"
}
}
}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-it/translations/extensions/xml.i18n.json b/i18n/vscode-language-pack-it/translations/extensions/xml.i18n.json
deleted file mode 100644
index 97f74f37f5..0000000000
--- a/i18n/vscode-language-pack-it/translations/extensions/xml.i18n.json
+++ /dev/null
@@ -1,16 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "package": {
- "description": "Offre la sottolineatura delle sintassi e il match delle parentesi nei file XML.",
- "displayName": "Nozioni di base sul linguaggio XML"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-it/translations/extensions/yaml.i18n.json b/i18n/vscode-language-pack-it/translations/extensions/yaml.i18n.json
deleted file mode 100644
index dea5bc677e..0000000000
--- a/i18n/vscode-language-pack-it/translations/extensions/yaml.i18n.json
+++ /dev/null
@@ -1,16 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "package": {
- "description": "Offre la sottolineatura delle sintassi e il match delle parentesi nei file YAML.",
- "displayName": "Nozioni di base sul linguaggio YAML"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-it/translations/main.i18n.json b/i18n/vscode-language-pack-it/translations/main.i18n.json
index deaeec92e7..48edcf47f9 100644
--- a/i18n/vscode-language-pack-it/translations/main.i18n.json
+++ b/i18n/vscode-language-pack-it/translations/main.i18n.json
@@ -22,6 +22,9 @@
"dialogWarningMessage": "Avviso",
"ok": "OK"
},
+ "vs/base/browser/ui/dropdown/dropdownActionViewItem": {
+ "moreActions": "Altre azioni..."
+ },
"vs/base/browser/ui/findinput/findInput": {
"defaultLabel": "input"
},
@@ -34,14 +37,21 @@
"defaultLabel": "input",
"label.preserveCaseToggle": "Mantieni maiuscole/minuscole"
},
- "vs/base/browser/ui/iconLabel/iconLabelHover": {
- "iconLabel.loading": "Caricamento..."
+ "vs/base/browser/ui/hover/hoverWidget": {
+ "acessibleViewHint": "Ispezionarlo nella visualizzazione accessibile con {0}.",
+ "acessibleViewHintNoKbOpen": "Ispezionarlo nella visualizzazione accessibile tramite il comando Apri visualizzazione accessibile che attualmente non è attivabile tramite il tasto di scelta rapida."
+ },
+ "vs/base/browser/ui/icons/iconSelectBox": {
+ "iconSelect.noResults": "Nessun risultato",
+ "iconSelect.placeholder": "Icone di ricerca"
},
"vs/base/browser/ui/inputbox/inputBox": {
"alertErrorMessage": "Errore: {0}",
"alertInfoMessage": "Info: {0}",
"alertWarningMessage": "Avviso: {0}",
- "history.inputbox.hint": "per la cronologia"
+ "clearedInput": "Input cancellato",
+ "history.inputbox.hint.suffix.inparens": " ({0} per la cronologia)",
+ "history.inputbox.hint.suffix.noparens": " o {0} per la cronologia"
},
"vs/base/browser/ui/keybindingLabel/keybindingLabel": {
"unbound": "Non associato"
@@ -62,10 +72,17 @@
"vs/base/browser/ui/tree/abstractTree": {
"close": "Chiudi",
"filter": "Filtro",
- "not found": "Non sono stati trovati elementi.",
+ "foundResults": "{0} risultati",
+ "fuzzySearch": "Corrispondenza fuzzy",
+ "not found": "Non sono stati trovati risultati.",
+ "replFindNoResults": "Nessun risultato",
"type to filter": "Digitare per filtrare",
"type to search": "Digitare per la ricerca"
},
+ "vs/base/browser/ui/tree/asyncDataTree": {
+ "type to filter": "Digita per filtrare",
+ "type to search": "Digita per cercare"
+ },
"vs/base/browser/ui/tree/treeDefaults": {
"collapse all": "Comprimi tutto"
},
@@ -126,7 +143,18 @@
"date.fromNow.years.singular": "{0} anno",
"date.fromNow.years.singular.ago": "{0} anno fa",
"date.fromNow.years.singular.ago.fullWord": "{0} anno fa",
- "date.fromNow.years.singular.fullWord": "{0} anno"
+ "date.fromNow.years.singular.fullWord": "{0} anno",
+ "duration.d": "{0} giorni",
+ "duration.h": "{0} ore",
+ "duration.h.full": "{0} ore",
+ "duration.m": "{0} minuti",
+ "duration.m.full": "{0} minuti",
+ "duration.ms": "{0} ms",
+ "duration.ms.full": "{0} millisecondi",
+ "duration.s": "{0} s",
+ "duration.s.full": "{0} secondi",
+ "today": "Oggi",
+ "yesterday": "Ieri"
},
"vs/base/common/errorMessage": {
"error.defaultMessage": "Si è verificato un errore sconosciuto. Per altri dettagli, vedere il log.",
@@ -159,35 +187,28 @@
"windowsKey": "Windows",
"windowsKey.long": "Windows"
},
- "vs/base/common/platform": {
- "ensureLoaderPluginIsLoaded": "_"
- },
- "vs/base/node/processes": {
- "TaskRunner.UNC": "Non è possibile eseguire un comando della shell su un'unità UNC."
+ "vs/base/common/policy": {
+ "extensionsConfigurationTitle": "Estensioni",
+ "interactiveSessionConfigurationTitle": "Chat",
+ "telemetryConfigurationTitle": "Telemetria",
+ "terminalIntegratedConfigurationTitle": "Terminale integrato",
+ "updateConfigurationTitle": "Aggiorna"
},
"vs/base/node/zip": {
"incompleteExtract": "Non completato. Trovate {0} di {1} voci",
"invalid file": "Errore durante l'estrazione di {0}. File non valido.",
"notFound": "{0} non è stato trovato all'interno del file ZIP."
},
- "vs/base/parts/quickinput/browser/quickInput": {
- "custom": "Personalizzato",
- "inputModeEntry": "Premere 'INVIO' per confermare l'input oppure 'ESC' per annullare",
- "inputModeEntryDescription": "{0} (premere 'INVIO' per confermare oppure 'ESC' per annullare)",
- "ok": "OK",
- "quickInput.back": "Indietro",
- "quickInput.backWithKeybinding": "Indietro ({0})",
- "quickInput.checkAll": "Attivare/Disattivare tutte le caselle di controllo",
- "quickInput.countSelected": "{0} selezionati",
- "quickInput.steps": "{0}/{1}",
- "quickInput.visibleCount": "{0} risultati",
- "quickInputBox.ariaLabel": "Digitare per ridurre il numero di risultati."
+ "vs/editor/browser/controller/editContext/native/screenReaderSupport": {
+ "editor": "editor"
},
- "vs/base/parts/quickinput/browser/quickInputList": {
- "quickInput": "Input rapido"
+ "vs/editor/browser/controller/editContext/screenReaderUtils": {
+ "accessibilityModeOff": "L'editor non è accessibile in questo momento.",
+ "accessibilityOffAriaLabel": "{0} Per abilitare la modalità ottimizzata per l'utilità per la lettura dello schermo usare {1}",
+ "accessibilityOffAriaLabelNoKb": "{0} Per abilitare la modalità ottimizzata per l'utilità per la lettura dello schermo, aprire la selezione rapida con {1} ed eseguire il comando Attiva/Disattiva modalità di accessibilità dell'utilità per la lettura dello schermo, attualmente non attivabile tramite tastiera.",
+ "accessibilityOffAriaLabelNoKbs": "{0} Assegnare un tasto di scelta rapida per il comando Attiva/Disattiva modalità di accessibilità dell'utilità per la lettura dello schermo accedendo all'editor dei tasti di scelta rapida con {1} ed eseguirlo."
},
- "vs/editor/browser/controller/textAreaHandler": {
- "accessibilityOffAriaLabel": "L'editor non è accessibile in questo momento. Premere {0} per le opzioni.",
+ "vs/editor/browser/controller/editContext/textArea/textAreaEditContext": {
"editor": "editor"
},
"vs/editor/browser/coreCommands": {
@@ -202,22 +223,40 @@
"selectAll": "Seleziona tutto",
"undo": "Annulla azione"
},
- "vs/editor/browser/widget/codeEditorWidget": {
- "cursors.maximum": "Il numero di cursori è stato limitato a {0}."
+ "vs/editor/browser/gpu/viewGpuContext": {
+ "editor.dom.render": "Usa rendering basato su DOM"
},
- "vs/editor/browser/widget/diffEditorWidget": {
- "diff.tooLarge": "Non è possibile confrontare i file perché uno è troppo grande.",
- "diffInsertIcon": "Effetto di riga per gli inserimenti nell'editor diff.",
- "diffRemoveIcon": "Effetto di riga per le rimozioni nell'editor diff."
+ "vs/editor/browser/services/inlineCompletionsService": {
+ "action.inlineSuggest.cancelSnooze": "Annulla il rinvio dei suggerimenti inline",
+ "action.inlineSuggest.snooze": "Rinvia suggerimenti inline",
+ "inlineCompletions.snoozed": "Indica se i completamenti inline sono rinviati",
+ "snooze.placeholder": "Selezionare la durata della sospensione per i suggerimenti inline"
},
- "vs/editor/browser/widget/diffReview": {
+ "vs/editor/browser/widget/codeEditor/codeEditorWidget": {
+ "cursors.maximum": "Il numero di cursori è stato limitato a {0}. Provare a usare [Trova e sostituisci](https://code.visualstudio.com/docs/editor/codebasics#_find-and-replace) per modifiche di dimensioni maggiori o aumentare l'impostazione del limite di più cursori dell'editor.",
+ "goToSetting": "Aumentare limite multi-cursore"
+ },
+ "vs/editor/browser/widget/diffEditor/commands": {
+ "accessibleDiffViewer": "Visualizzatore differenze accessibile",
+ "collapseAllUnchangedRegions": "Comprimi tutte le aree non modificate",
+ "diffEditor": "Editor diff",
+ "editor.action.accessibleDiffViewer.next": "Vai alla differenza successiva",
+ "editor.action.accessibleDiffViewer.prev": "Vai alla differenza precedente",
+ "exitCompareMove": "Esci da Sposta confronto",
+ "revert": "Ripristina",
+ "showAllUnchangedRegions": "Mostra tutte le aree non modificate",
+ "switchSide": "Interruttore laterale",
+ "toggleCollapseUnchangedRegions": "Attiva/Disattiva comprimi aree non modificate",
+ "toggleShowMovedCodeBlocks": "Attiva/Disattiva mostra blocchi di codice spostati",
+ "toggleUseInlineViewWhenSpaceIsLimited": "Attiva/disattiva la visualizzazione inline quando lo spazio è limitato"
+ },
+ "vs/editor/browser/widget/diffEditor/components/accessibleDiffViewer": {
+ "accessibleDiffViewerCloseIcon": "Icona per \"Chiudi\" nel visualizzatore differenze accessibile.",
+ "accessibleDiffViewerInsertIcon": "Icona per \"Inserisci\" nel visualizzatore differenze accessibile.",
+ "accessibleDiffViewerRemoveIcon": "Icona per \"Rimuovi\" nel visualizzatore differenze accessibile.",
+ "ariaLabel": "Visualizzatore differenze accessibile. Usare le frecce SU e GIÙ per spostarsi.",
"blankLine": "vuota",
"deleteLine": "- {0} riga originale {1}",
- "diffReviewCloseIcon": "Icona per 'Chiudi' nella revisione diff.",
- "diffReviewInsertIcon": "Icona per 'Inserisci' nella revisione diff.",
- "diffReviewRemoveIcon": "Icona per 'Rimuovi' nella revisione diff.",
- "editor.action.diffReview.next": "Vai alla differenza successiva",
- "editor.action.diffReview.prev": "Vai alla differenza precedente",
"equalLine": "{0} riga originale {1} riga modificata {2}",
"header": "Differenza {0} di {1}: riga originale {2}, {3}, riga modificata {4}, {5}",
"insertLine": "+ {0} riga modificata {1}",
@@ -227,7 +266,10 @@
"one_line_changed": "1 riga modificata",
"unchangedLine": "{0} riga non modificata {1}"
},
- "vs/editor/browser/widget/inlineDiffMargin": {
+ "vs/editor/browser/widget/diffEditor/components/diffEditorEditors": {
+ "diff-aria-navigation-tip": " utilizzare {0} per aprire la Guida all'accessibilità."
+ },
+ "vs/editor/browser/widget/diffEditor/components/diffEditorViewZones/inlineDiffDeletedCodeMargin": {
"diff.clipboard.copyChangedLineContent.label": "Copia riga modificata ({0})",
"diff.clipboard.copyChangedLinesContent.label": "Copia righe modificate",
"diff.clipboard.copyChangedLinesContent.single.label": "Copia riga modificata",
@@ -236,18 +278,76 @@
"diff.clipboard.copyDeletedLinesContent.single.label": "Copia la riga eliminata",
"diff.inline.revertChange.label": "Ripristina questa modifica"
},
+ "vs/editor/browser/widget/diffEditor/diffEditor.contribution": {
+ "Open Accessible Diff Viewer": "Apri Visualizzatore differenze accessibile",
+ "revertHunk": "Ripristina blocco",
+ "revertSelection": "Ripristina selezione",
+ "showMoves": "Mostra blocchi di codice spostati",
+ "useInlineViewWhenSpaceIsLimited": "Usa la visualizzazione inline quando lo spazio è limitato"
+ },
+ "vs/editor/browser/widget/diffEditor/features/hideUnchangedRegionsFeature": {
+ "diff.bottom": "Fai clic o trascina per visualizzare altri elementi sotto",
+ "diff.hiddenLines.expandAll": "Fare doppio clic per espandere",
+ "diff.hiddenLines.top": "Fai clic o trascina per visualizzare altri elementi sopra",
+ "foldUnchanged": "Ridurre area non modificata",
+ "hiddenLines": "{0} righe nascoste",
+ "showUnchangedRegion": "Mostra area non modificata"
+ },
+ "vs/editor/browser/widget/diffEditor/features/movedBlocksLinesFeature": {
+ "codeMovedFrom": "Codice spostato dalla riga {0}-{1}",
+ "codeMovedFromWithChanges": "Codice spostato con modifiche dalla riga {0}-{1}",
+ "codeMovedTo": "Codice spostato alla riga {0}-{1}",
+ "codeMovedToWithChanges": "Codice spostato con modifiche alla riga {0}-{1}"
+ },
+ "vs/editor/browser/widget/diffEditor/features/revertButtonsFeature": {
+ "revertChange": "Annulla modifica",
+ "revertSelectedChanges": "Ripristina modifiche selezionate"
+ },
+ "vs/editor/browser/widget/diffEditor/registrations.contribution": {
+ "diffEditor.move.border": "Colore del bordo per il testo spostato nell'editor diff.",
+ "diffEditor.moveActive.border": "Colore del bordo attivo per il testo spostato nell'editor diff.",
+ "diffEditor.unchangedRegionShadow": "Colore dell'ombreggiatura intorno ai widget dell'area non modificata.",
+ "diffInsertIcon": "Effetto di riga per gli inserimenti nell'editor diff.",
+ "diffRemoveIcon": "Effetto di riga per le rimozioni nell'editor diff."
+ },
+ "vs/editor/browser/widget/multiDiffEditor/colors": {
+ "multiDiffEditor.background": "Colore di sfondo dell'editor diff a più file",
+ "multiDiffEditor.border": "Colore del bordo dell’editor diff multi file",
+ "multiDiffEditor.headerBackground": "Colore di sfondo dell'intestazione dell'editor diff"
+ },
+ "vs/editor/browser/widget/multiDiffEditor/multiDiffEditorWidgetImpl": {
+ "loading": "Caricamento in corso...",
+ "noChangedFiles": "Nessun file modificato"
+ },
"vs/editor/common/config/editorConfigurationSchema": {
"codeLens": "Controlla se l'editor visualizza CodeLens.",
- "detectIndentation": "Controlla se `#editor.tabSize#` e `#editor.insertSpaces#` verranno rilevati automaticamente quando un file viene aperto in base al contenuto del file.",
+ "detectIndentation": "Controlla se {0} e {1} verranno rilevati automaticamente quando un file viene aperto in base al contenuto del file.",
+ "diffAlgorithm.advanced": "Usare l'algoritmo diffing avanzato.",
+ "diffAlgorithm.legacy": "Usare l'algoritmo diffing legacy.",
+ "editor.experimental.asyncTokenization": "Controlla se la tokenizzazione deve essere eseguita in modo asincrono in un web worker.",
+ "editor.experimental.asyncTokenizationLogging": "Controlla se deve essere registrata la tokenizzazione asincrona. Solo per il debug.",
+ "editor.experimental.asyncTokenizationVerification": "Controlla se la tokenizzazione asincrona deve essere verificata rispetto alla tokenizzazione legacy in background. Potrebbe rallentare la tokenizzazione. Solo per il debug.",
+ "editor.experimental.preferTreeSitter.css": "Controlla se deve essere attivata l'analisi Tree-sitter per css. Ciò avrà la precedenza su 'editor.experimental.treeSitterTelemetry' per css.",
+ "editor.experimental.preferTreeSitter.ini": "Controlla se deve essere attivata l'analisi Tree-sitter per ini. Ciò avrà la precedenza su 'editor.experimental.treeSitterTelemetry' per ini.",
+ "editor.experimental.preferTreeSitter.regex": "Controlla se deve essere attivata l'analisi Tree-sitter per regex. Ciò avrà la precedenza su 'editor.experimental.treeSitterTelemetry' per regex.",
+ "editor.experimental.preferTreeSitter.typescript": "Controlla se deve essere attivata l'analisi Tree-sitter per TypeScript. Ciò avrà la precedenza su 'editor.experimental.treeSitterTelemetry' per TypeScript.",
+ "editor.experimental.treeSitterTelemetry": "Controlla se deve essere attivata l'analisi di Tree-sitter e se acquisire i dati di telemetria. L’impostazione di 'editor.experimental.preferTreeSitter' per linguaggi specifici avrà la precedenza.",
"editorConfigurationTitle": "Editor",
+ "hideUnchangedRegions.contextLineCount": "Controlla il numero di righe usate come contesto durante il confronto delle aree non modificate.",
+ "hideUnchangedRegions.enabled": "Controlla se l'editor diff mostra aree non modificate.",
+ "hideUnchangedRegions.minimumLineCount": "Controlla il numero minimo di righe usate per le aree non modificate.",
+ "hideUnchangedRegions.revealLineCount": "Controlla il numero di righe usate per le aree non modificate.",
"ignoreTrimWhitespace": "Se abilitato, l'editor differenze ignora le modifiche relative a spazi vuoti iniziali e finali.",
- "insertSpaces": "Inserisce spazi quando viene premuto TAB. Quando `#editor.detectIndentation#` è attivo, questa impostazione viene sostituita in base al contenuto del file.",
+ "indentSize": "Numero di spazi utilizzati per il rientro o `\"tabSize\"` per usare il valore di `#editor.tabSize#`. Questa impostazione viene sostituita in base al contenuto del file quando `#editor.detectIndentation#` è attivo.",
+ "insertSpaces": "Inserire spazi quando si preme 'TAB'. Questa impostazione viene sottoposta a override in base al contenuto del file quando {0} è attivo.",
"largeFileOptimizations": "Gestione speciale dei file di grandi dimensioni per disabilitare alcune funzionalità che fanno un uso intensivo della memoria.",
"maxComputationTime": "Timeout in millisecondi dopo il quale il calcolo delle differenze viene annullato. Usare 0 per indicare nessun timeout.",
"maxFileSize": "Dimensioni massime del file in MB per cui calcolare le differenze. Usare 0 per nessun limite.",
"maxTokenizationLineLength": "Per motivi di prestazioni le righe di lunghezza superiore non verranno tokenizzate",
+ "renderGutterMenu": "Se questa opzione è abilitata, nell'editor diff viene visualizzata una barra di navigazione speciale per le azioni di ripristino e anteprima.",
"renderIndicators": "Controlla se l'editor diff mostra gli indicatori +/- per le modifiche aggiunte/rimosse.",
"renderMarginRevertIcon": "Se questa opzione è abilitata, l'editor diff mostra le frecce nel margine del glifo per ripristinare le modifiche.",
+ "renderSideBySideInlineBreakpoint": "Se la larghezza dell'editor diff è inferiore a questo valore, verrà utilizzata la visualizzazione inline.",
"schema.brackets": "Definisce i simboli di parentesi quadra che aumentano o riducono il rientro.",
"schema.closeBracket": "Sequenza di stringa o carattere parentesi quadra di chiusura.",
"schema.colorizedBracketPairs": "Definisce le coppie di bracket colorate in base al livello di annidamento se è abilitata la colorazione delle coppie di bracket.",
@@ -256,64 +356,86 @@
"semanticHighlighting.enabled": "Controlla se l'evidenziazione semanticHighlighting è visualizzata per i linguaggi che la supportano.",
"semanticHighlighting.false": "L'evidenziazione semantica è disabilitata per tutti i temi colore.",
"semanticHighlighting.true": "L'evidenziazione semantica è abilitata per tutti i temi colore.",
+ "showEmptyDecorations": "Controlla se l'editor diff mostra decorazioni vuote per vedere dove sono stati inseriti o eliminati caratteri.",
+ "showMoves": "Controlla se l'editor diff deve mostrare gli spostamenti di codice rilevati.",
"sideBySide": "Controlla se l'editor diff mostra le differenze affiancate o incorporate.",
- "stablePeek": "Mantiene aperti gli editor rapidi anche quando si fa doppio clic sul contenuto o si preme 'ESC'.",
- "tabSize": "Numero di spazi a cui equivale una tabulazione. Quando `#editor.detectIndentation#` è attivo, questa impostazione viene sostituita in base al contenuto del file.",
+ "stablePeek": "Consente di mantenere aperti gli editor rapidi anche quando si fa doppio clic sul contenuto o si preme 'ESC'.",
+ "tabSize": "Numero di spazi a cui è uguale una scheda. Questa impostazione viene sottoposta a override in base al contenuto del file quando {0} è attivo.",
"trimAutoWhitespace": "Rimuovi gli spazi finali inseriti automaticamente.",
- "wordBasedSuggestions": "Controlla se calcolare i completamenti in base alle parole presenti nel documento.",
- "wordBasedSuggestionsMode": "Controlla i documenti da cui vengono calcolati i completamenti basati su parole.",
- "wordBasedSuggestionsMode.allDocuments": "Suggerisci parole da tutti i documenti aperti.",
- "wordBasedSuggestionsMode.currentDocument": "Suggerisci parole solo dal documento attivo.",
- "wordBasedSuggestionsMode.matchingDocuments": "Suggerisci parole da tutti i documenti aperti della stessa lingua.",
- "wordWrap.inherit": "Il ritorno a capo automatico delle righe viene applicato in base all'impostazione `#editor.wordWrap#`.",
+ "useInlineViewWhenSpaceIsLimited": "Se questa opzione è abilitata e la larghezza dell'editor è troppo piccola, verrà usata la visualizzazione inline.",
+ "useTrueInlineView": "Se questa opzione è abilitata e l'editor usa la visualizzazione inline, verrà eseguito il rendering delle modifiche delle parole inline.",
+ "wordBasedSuggestions": "Controlla se i completamenti devono essere calcolati in base alle parole nel documento e dai documenti da cui vengono calcolati.",
+ "wordBasedSuggestions.allDocuments": "Suggerisci parole da tutti i documenti aperti.",
+ "wordBasedSuggestions.currentDocument": "Suggerisci parole solo dal documento attivo.",
+ "wordBasedSuggestions.matchingDocuments": "Suggerisci parole da tutti i documenti aperti della stessa lingua.",
+ "wordBasedSuggestions.off": "Disattivare i suggerimenti basati su Word.",
+ "wordWrap.inherit": "Le righe andranno a capo in base all'impostazione {0}.",
"wordWrap.off": "Il ritorno a capo automatico delle righe non viene mai applicato.",
"wordWrap.on": "Il ritorno a capo automatico delle righe viene applicato in corrispondenza della larghezza del viewport."
},
"vs/editor/common/config/editorOptions": {
- "acceptSuggestionOnCommitCharacter": "Controlla se accettare i suggerimenti con i caratteri di commit. Ad esempio, in JavaScript il punto e virgola (`; `) può essere un carattere di commit che accetta un suggerimento e digita tale carattere.",
+ "acceptSuggestionOnCommitCharacter": "Controlla se accettare i suggerimenti con i caratteri di commit. Ad esempio, in JavaScript il punto e virgola (';') può essere un carattere di commit che accetta un suggerimento e digita tale carattere.",
"acceptSuggestionOnEnter": "Controlla se i suggerimenti devono essere accettati con 'INVIO' in aggiunta a 'TAB'. In questo modo è possibile evitare ambiguità tra l'inserimento di nuove righe e l'accettazione di suggerimenti.",
"acceptSuggestionOnEnterSmart": "Accetta un suggerimento con 'Invio' solo quando si apporta una modifica al testo.",
"accessibilityPageSize": "Controlla il numero di righe nell'Editor che possono essere lette alla volta da un utilità per la lettura dello schermo. Quando viene rilevata un'utilità per la lettura dello schermo, questo valore viene impostato su 500 per impostazione predefinita. Avviso: questa opzione può influire sulle prestazioni se il numero di righe è superiore a quello predefinito.",
- "accessibilitySupport": "Controlla se l'editor deve essere eseguito in una modalità ottimizzata per le utilità per la lettura dello schermo. Se viene attivata, il ritorno a capo automatico verrà disabilitato.",
- "accessibilitySupport.auto": "L'editor userà le API della piattaforma per rilevare quando viene collegata un'utilità per la lettura dello schermo.",
- "accessibilitySupport.off": "L'editor non verrà mai ottimizzato per l'utilizzo con un'utilità per la lettura dello schermo.",
- "accessibilitySupport.on": "L'editor verrà definitivamente ottimizzato per l'utilizzo con un'utilità per la lettura dello schermo. Il ritorno a capo automatico verrà disabilitato.",
+ "accessibilitySupport": "Controllare se l'interfaccia utente deve essere eseguito in una modalità ottimizzata per le utilità per la lettura dello schermo.",
+ "accessibilitySupport.auto": "Usare le API della piattaforma per rilevare quando viene collegata un'utilità per la lettura dello schermo.",
+ "accessibilitySupport.off": "Si presuppone che un'utilità per la lettura dello schermo non sia collegata.",
+ "accessibilitySupport.on": "Ottimizzare l'utilizzo con un'utilità per la lettura dello schermo.",
+ "allowVariableFonts": "Controlla se consentire l'uso di tipi di carattere variabili nell'editor.",
+ "allowVariableFontsInAccessibilityMode": "Controlla se consentire l'uso di tipi di carattere variabili nell'editor in modalità di accessibilità.",
+ "allowVariableLineHeights": "Controlla se consentire l'uso di altezze di riga variabili nell'editor.",
"alternativeDeclarationCommand": "ID comando alternativo eseguito quando il risultato di 'Vai a dichiarazione' è la posizione corrente.",
"alternativeDefinitionCommand": "ID comando alternativo eseguito quando il risultato di 'Vai alla definizione' è la posizione corrente.",
"alternativeImplementationCommand": "ID comando alternativo eseguito quando il risultato di 'Vai a implementazione' è la posizione corrente.",
"alternativeReferenceCommand": "ID comando alternativo eseguito quando il risultato di 'Vai a riferimento' è la posizione corrente.",
"alternativeTypeDefinitionCommand": "ID comando alternativo eseguito quando il risultato di 'Vai alla definizione di tipo' è la posizione corrente.",
"autoClosingBrackets": "Controlla se l'editor deve chiudere automaticamente le parentesi quadre dopo che sono state aperte.",
+ "autoClosingComments": "Controlla se l'editor deve chiudere automaticamente i commenti dopo che sono stati aperti.",
"autoClosingDelete": "Controlla se l'editor deve rimuovere le virgolette o le parentesi quadre di chiusura adiacenti durante l'eliminazione.",
"autoClosingOvertype": "Controlla se l'editor deve digitare su virgolette o parentesi quadre.",
"autoClosingQuotes": "Controlla se l'editor deve chiudere automaticamente le citazioni dopo che sono state aperte.",
"autoIndent": "Controlla se l'editor deve regolare automaticamente il rientro quando gli utenti digitano, incollano, spostano le righe o applicano il rientro.",
+ "autoIndentOnPaste": "Controlla se l'editor deve applicare automaticamente il rientro del contenuto incollato.",
+ "autoIndentOnPasteWithinString": "Controlla se l'editor deve applicare automaticamente il rientro del contenuto incollato all'interno di una stringa. Questa impostazione ha effetto quando autoIndentOnPaste è true.",
"autoSurround": "Controlla se l'editor deve racchiudere automaticamente le selezioni quando si digitano virgolette o parentesi quadre.",
"bracketPairColorization.enabled": "Controlla se la colorazione delle coppie di parentesi è abilitata. Usare {0} per eseguire l'override dei colori di evidenziazione delle parentesi.",
"bracketPairColorization.independentColorPoolPerBracketType": "Controlla se ogni tipo di parentesi ha un pool di colori indipendente.",
- "codeActions": "Abilita la lampadina delle azioni codice nell'editor.",
"codeLens": "Controlla se l'editor visualizza CodeLens.",
"codeLensFontFamily": "Controlla la famiglia di caratteri per CodeLens.",
- "codeLensFontSize": "Controlla le dimensioni del carattere in pixel per CodeLens. Quando è impostata su '0', viene usato il 90% del valore di '#editor.fontSize#'.",
+ "codeLensFontSize": "Controlla le dimensioni del carattere in pixel per CodeLens. Quando è impostata su 0, viene usato il 90% del valore di '#editor.fontSize#'.",
+ "colorDecoratorActivatedOn": "Controlla la condizione in modo che venga visualizzata la selezione colori da un elemento Decorator colore.",
"colorDecorators": "Controlla se l'editor deve eseguire il rendering della selezione colori e degli elementi Decorator di tipo colore inline.",
+ "colorDecoratorsLimit": "Controlla il numero massimo di elementi Decorator a colori di cui è possibile eseguire il rendering in un editor contemporaneamente.",
"columnSelection": "Abilita l'uso di mouse e tasti per la selezione delle colonne.",
"comments.ignoreEmptyLines": "Controlla se ignorare le righe vuote con le opzioni per attivare/disattivare, aggiungere o rimuovere relative ai commenti di riga.",
"comments.insertSpace": "Consente di controllare se viene inserito uno spazio quando si aggiungono commenti.",
"copyWithSyntaxHighlighting": "Controlla se l'evidenziazione della sintassi deve essere copiata negli Appunti.",
"cursorBlinking": "Controllo dello stile di animazione del cursore.",
+ "cursorHeight": "Controlla l'altezza del cursore quando \"#editor.cursorStyle#\" è impostato su \"line\". L'altezza massima del cursore dipende dall'altezza della riga.",
"cursorSmoothCaretAnimation": "Controlla se l'animazione del cursore con anti-aliasing deve essere abilitata.",
- "cursorStyle": "Controlla lo stile del cursore.",
- "cursorSurroundingLines": "Controlla il numero minimo di righe iniziali e finali visibili che circondano il cursore. Noto come 'scrollOff' o 'scrollOffset' in altri editor.",
- "cursorSurroundingLinesStyle": "Controlla quando deve essere applicato `cursorSurroundingLines`.",
+ "cursorSmoothCaretAnimation.explicit": "L'animazione con cursore uniforme è abilitata solo quando l'utente sposta il cursore con un movimento esplicito.",
+ "cursorSmoothCaretAnimation.off": "L'animazione con cursore arrotondato è disabilitata.",
+ "cursorSmoothCaretAnimation.on": "L'animazione con cursore uniforme è sempre abilitata.",
+ "cursorStyle": "Controlla lo stile del cursore in modalità di inserimento input.",
+ "cursorSurroundingLines": "Controllare il numero minimo di linee iniziali visibili (minimo 0) e finali (minimo 1) visibili che circondano il cursore. Noto come 'scrollOff' o 'scrollOffset' in altri editor.",
+ "cursorSurroundingLinesStyle": "Controlla quando deve essere applicato '#editor.cursorSurroundingLines#'.",
"cursorSurroundingLinesStyle.all": "`cursorSurroundingLines` viene sempre applicato.",
"cursorSurroundingLinesStyle.default": "`cursorSurroundingLines` viene applicato solo quando è attivato tramite la tastiera o l'API.",
"cursorWidth": "Controlla la larghezza del cursore quando `#editor.cursorStyle#` è impostato su `line`.",
+ "defaultColorDecorators": "Controllare se visualizzare le decorazioni colori incorporate usando il provider colori predefinito del documento.",
"definitionLinkOpensInPeek": "Controlla se il movimento del mouse Vai alla definizione consente sempre di aprire il widget di anteprima.",
"deprecated": "Questa impostazione è deprecata. In alternativa, usare impostazioni diverse, come 'editor.suggest.showKeywords' o 'editor.suggest.showSnippets'.",
"dragAndDrop": "Controlla se l'editor deve consentire lo spostamento di selezioni tramite trascinamento della selezione.",
- "dropIntoEditor.enabled": "Controls whether you can drag and drop a file into a text editor by holding down `shift` (instead of opening the file in an editor).",
+ "dropIntoEditor.enabled": "Controlla se è possibile trascinare un file in un editor di testo tenendo premuto il tasto “MAIUSC” (invece di aprire il file in un editor).",
+ "dropIntoEditor.showDropSelector": "Controlla se viene visualizzato un widget quando si rilasciano file nell'editor. Questo widget consente di controllare la modalità di rilascio del file.",
+ "dropIntoEditor.showDropSelector.afterDrop": "Mostra il widget del selettore di rilascio dopo il rilascio di un file nell'editor.",
+ "dropIntoEditor.showDropSelector.never": "Non visualizzare mai il widget del selettore di rilascio. Usare sempre il provider di rilascio predefinito.",
+ "editContext": "Indica se utilizzare l'API EditContext invece dell'area di testo per gestire l'input nell'editor.",
"editor.autoClosingBrackets.beforeWhitespace": "Chiudi automaticamente le parentesi solo quando il cursore si trova alla sinistra di uno spazio vuoto.",
"editor.autoClosingBrackets.languageDefined": "Usa le configurazioni del linguaggio per determinare la chiusura automatica delle parentesi.",
+ "editor.autoClosingComments.beforeWhitespace": "Chiudere automaticamente i commenti solo quando il cursore si trova alla sinistra di uno spazio vuoto.",
+ "editor.autoClosingComments.languageDefined": "Usare le configurazioni del linguaggio per determinare la chiusura automatica dei commenti.",
"editor.autoClosingDelete.auto": "Rimuove le virgolette o le parentesi quadre di chiusura adiacenti solo se sono state inserite automaticamente.",
"editor.autoClosingOvertype.auto": "Digita sopra le virgolette o le parentesi quadre di chiusura solo se sono state inserite automaticamente.",
"editor.autoClosingQuotes.beforeWhitespace": "Chiudi automaticamente le virgolette solo quando il cursore si trova alla sinistra di uno spazio vuoto.",
@@ -326,22 +448,31 @@
"editor.autoSurround.brackets": "Racchiude la selezione tra parentesi quadre ma non tra virgolette.",
"editor.autoSurround.languageDefined": "Usa le configurazioni del linguaggio per determinare quando racchiudere automaticamente le selezioni tra parentesi quadre o virgolette.",
"editor.autoSurround.quotes": "Racchiude la selezione tra virgolette ma non tra parentesi quadre.",
+ "editor.colorDecoratorActivatedOn.click": "Fare in modo che la selezione colori venga visualizzata quando si fa clic sull'elemento Decorator colore",
+ "editor.colorDecoratorActivatedOn.clickAndHover": "Fare in modo che la selezione colori venga visualizzata sia al clic che al passaggio del mouse sull’elemento Decorator colore",
+ "editor.colorDecoratorActivatedOn.hover": "Fare in modo che la selezione colori venga visualizzata al passaggio del mouse sull'elemento Decorator colore",
+ "editor.defaultColorDecorators.always": "Mostra sempre gli elementi Decorator a colori predefiniti.",
+ "editor.defaultColorDecorators.auto": "Mostra gli elementi Decorator colore predefiniti solo quando nessuna estensione fornisce elementi Decorator a colori.",
+ "editor.defaultColorDecorators.never": "Non mostrare mai elementi Decorator a colori predefiniti.",
"editor.editor.gotoLocation.multipleDeclarations": "Controlla il comportamento del comando 'Vai a dichiarazione' quando esistono più posizioni di destinazione.",
"editor.editor.gotoLocation.multipleDefinitions": "Controlla il comportamento del comando 'Vai alla definizione' quando esistono più posizioni di destinazione.",
"editor.editor.gotoLocation.multipleImplemenattions": "Controlla il comportamento del comando 'Vai a implementazioni' quando esistono più posizioni di destinazione.",
"editor.editor.gotoLocation.multipleReferences": "Controlla il comportamento del comando 'Vai a riferimenti' quando esistono più posizioni di destinazione.",
"editor.editor.gotoLocation.multipleTypeDefinitions": "Controlla il comportamento del comando 'Vai alla definizione di tipo' quando esistono più posizioni di destinazione.",
- "editor.experimental.stickyScroll": "Shows the nested current scopes during the scroll at the top of the editor.",
"editor.find.autoFindInSelection.always": "Attiva sempre automaticamente la funzione Trova nella selezione.",
"editor.find.autoFindInSelection.multiline": "Attiva automaticamente la funzione Trova nella selezione quando sono selezionate più righe di contenuto.",
"editor.find.autoFindInSelection.never": "Non attivare mai automaticamente la funzione Trova nella selezione (impostazione predefinita).",
+ "editor.find.history.never": "Non archiviare la cronologia di ricerca dal widget di ricerca.",
+ "editor.find.history.workspace": "Archivia la cronologia di ricerca nell'area di lavoro attiva",
+ "editor.find.replaceHistory.never": "Non archiviare la cronologia dal widget di sostituzione.",
+ "editor.find.replaceHistory.workspace": "Archivia la cronologia di ricerca nell'area di lavoro attiva",
"editor.find.seedSearchStringFromSelection.always": "Fornisci sempre la stringa di ricerca dalla selezione dell'editor, inclusa la parola alla posizione del cursore.",
"editor.find.seedSearchStringFromSelection.never": "Non fornire mai la stringa di ricerca dalla selezione dell'editor.",
"editor.find.seedSearchStringFromSelection.selection": "Fornisci la stringa di ricerca solo dalla selezione dell'editor.",
"editor.gotoLocation.multiple.deprecated": "Questa impostazione è deprecata. In alternativa, usare impostazioni diverse, come 'editor.editor.gotoLocation.multipleDefinitions' o 'editor.editor.gotoLocation.multipleImplementations'.",
"editor.gotoLocation.multiple.goto": "Passa al risultato principale e abilita l'esplorazione senza anteprima per gli altri",
- "editor.gotoLocation.multiple.gotoAndPeek": "Passa al risultato principale e mostra una visualizzazione rapida",
- "editor.gotoLocation.multiple.peek": "Mostra la visualizzazione rapida dei risultati (impostazione predefinita)",
+ "editor.gotoLocation.multiple.gotoAndPeek": "Passa al risultato principale e mostra una visualizzazione in anteprima",
+ "editor.gotoLocation.multiple.peek": "Mostra la visualizzazione in anteprima dei risultati (impostazione predefinita)",
"editor.guides.bracketPairs": "Controlla se le guide delle coppie di parentesi sono abilitate o meno.",
"editor.guides.bracketPairs.active": "Abilita le guide delle coppie di parentesi solo per la coppia di parentesi attive.",
"editor.guides.bracketPairs.false": "Disabilita le guide per coppie di parentesi quadre.",
@@ -356,10 +487,20 @@
"editor.guides.highlightActiveIndentation.false": "Non evidenziare la guida di rientro attiva.",
"editor.guides.highlightActiveIndentation.true": "Evidenzia la guida di rientro attiva.",
"editor.guides.indentation": "Controlla se l'editor deve eseguire il rendering delle guide con rientro.",
- "editor.inlayHints.off": "Gli hint di inlay sono disabilitati",
- "editor.inlayHints.offUnlessPressed": "Gli hint di inlay sono nascosti per impostazione predefinita e vengono visualizzati solo quando si tiene premuto 'CTRL+ALT'",
- "editor.inlayHints.on": "Gli hint di inlay sono abilitati",
- "editor.inlayHints.onUnlessPressed": "I suggerimenti di inlay vengono visualizzati per impostazione predefinita e vengono nascosti quando si tiene premuto 'CTRL+ALT'",
+ "editor.inlayHints.off": "I suggerimenti per l'inlay sono disabilitati",
+ "editor.inlayHints.offUnlessPressed": "I suggerimenti per l'inlay sono nascosti per impostazione predefinita e vengono visualizzati solo quando si tiene premuto {0}",
+ "editor.inlayHints.on": "I suggerimenti per l'inlay sono abilitati",
+ "editor.inlayHints.onUnlessPressed": "I suggerimenti per l'inlay vengono visualizzati per impostazione predefinita e vengono nascosti quando si tiene premuto {0}",
+ "editor.inlineSuggest.edits.renderSideBySide.auto": "I suggerimenti più grandi verranno mostrati visualizzati affiancati se lo spazio è sufficiente, altrimenti verranno mostrati di seguito.",
+ "editor.inlineSuggest.edits.renderSideBySide.never": "I suggerimenti più grandi non vengono mai mostrati affiancati e verranno sempre mostrati di seguito.",
+ "editor.lightbulb.enabled.off": "Disabilita il menu azione codice.",
+ "editor.lightbulb.enabled.on": "Mostra il menu azione codice quando il cursore è su righe con codice o su righe vuote.",
+ "editor.lightbulb.enabled.onCode": "Visualizza il menu azione codice quando il cursore è su righe di codice.",
+ "editor.stickyScroll.defaultModel": "Definisce il modello da utilizzare per determinare quali linee applicare. Se il modello di struttura non esiste, verrà eseguito il fallback sul modello del provider di riduzione che rientra nel modello di rientro. Questo ordine viene rispettato in tutti e tre i casi.",
+ "editor.stickyScroll.enabled": "Mostra gli ambiti correnti annidati durante lo scorrimento nella parte superiore dell'editor.",
+ "editor.stickyScroll.maxLineCount": "Definisce il numero massimo di righe permanenti da mostrare.",
+ "editor.stickyScroll.scrollWithEditor": "Abilita lo scorrimento permanente con la barra orizzontale dell'editor.",
+ "editor.suggest.matchOnWordStartOnly": "Quando è abilitato, il filtro IntelliSense richiede che il primo carattere corrisponda all'inizio di una parola, ad esempio 'c' per 'Console' o 'WebContext' ma _non_ per 'description'. Quando è disabilitato, IntelliSense mostra più risultati, ma li ordina comunque in base alla qualità della corrispondenza.",
"editor.suggest.showClasss": "Se è abilitata, IntelliSense mostra i suggerimenti relativi a `class`.",
"editor.suggest.showColors": "Se è abilitata, IntelliSense mostra i suggerimenti relativi a `color`.",
"editor.suggest.showConstants": "Se è abilitata, IntelliSense mostra i suggerimenti relativi a `constant`.",
@@ -391,12 +532,23 @@
"editor.suggest.showVariables": "Se è abilitata, IntelliSense mostra i suggerimenti relativi a `variable`.",
"editorViewAccessibleLabel": "Contenuto editor",
"emptySelectionClipboard": "Controlla se, quando si copia senza aver effettuato una selezione, viene copiata la riga corrente.",
+ "enabled": "Abilita la lampadina delle azioni codice nell'editor.",
+ "experimentalGpuAcceleration": "Controlla se usare l'accelerazione GPU sperimentale per il rendering dell'editor.",
+ "experimentalGpuAcceleration.off": "Usa il rendering regolare basato su DOM.",
+ "experimentalGpuAcceleration.on": "Usa accelerazione GPU.",
+ "experimentalWhitespaceRendering": "Controlla se viene eseguito il rendering degli spazi vuoti con un nuovo metodo sperimentale.",
+ "experimentalWhitespaceRendering.font": "Usare un nuovo metodo di rendering con tipi di caratteri.",
+ "experimentalWhitespaceRendering.off": "Usare il metodo di rendering stabile.",
+ "experimentalWhitespaceRendering.svg": "Usare un nuovo metodo di rendering con svgs.",
"fastScrollSensitivity": "Moltiplicatore della velocità di scorrimento quando si preme `Alt`.",
"find.addExtraSpaceOnTop": "Controlla se il widget Trova deve aggiungere altre righe nella parte superiore dell'editor. Quando è true, è possibile scorrere oltre la prima riga quando il widget Trova è visibile.",
"find.autoFindInSelection": "Controlla la condizione per attivare automaticamente la funzione Trova nella selezione.",
"find.cursorMoveOnType": "Controlla se il cursore deve passare direttamente alla ricerca delle corrispondenze durante la digitazione.",
+ "find.findOnType": "Controlla se il widget Trova deve cercare mentre digiti.",
"find.globalFindClipboard": "Controlla se il widget Trova deve leggere o modificare gli appunti di ricerca condivisi in macOS.",
+ "find.history": "Controlla la modalità di archiviazione della cronologia del widget di ricerca",
"find.loop": "Controlla se la ricerca viene riavviata automaticamente dall'inizio o dalla fine quando non è possibile trovare ulteriori corrispondenze.",
+ "find.replaceHistory": "Controlla come deve essere archiviata la cronologia del widget di ricerca",
"find.seedSearchStringFromSelection": "Controlla se inizializzare la stringa di ricerca nel Widget Trova con il testo selezionato nell'editor.",
"folding": "Controlla se per l'editor è abilitata la riduzione del codice.",
"foldingHighlight": "Controlla se l'editor deve evidenziare gli intervalli con riduzione del codice.",
@@ -410,6 +562,9 @@
"fontLigatures": "Abilita/Disabilita i caratteri legatura (funzionalità dei tipi di carattere 'calt' e 'liga'). Impostare su una stringa per un controllo più specifico sulla proprietà CSS 'font-feature-settings'.",
"fontLigaturesGeneral": "Consente di configurare i caratteri legatura o le funzionalità dei tipi di carattere. Può essere un valore booleano per abilitare/disabilitare le legature o una stringa per il valore della proprietà CSS 'font-feature-settings'.",
"fontSize": "Controlla le dimensioni del carattere in pixel.",
+ "fontVariationSettings": "Proprietà CSS esplicita 'font-variation-settings'. È invece possibile passare un valore booleano se è sufficiente convertire font-weight in font-variation-settings.",
+ "fontVariations": "Abilita/disabilita la conversione dada font-weight a font-variation-settings. Modificare questa impostazione in una stringa per il controllo con granularità fine della proprietà CSS Font-variation.",
+ "fontVariationsGeneral": "Configura le varianti di carattere. Può essere un valore booleano per abilitare/disabilitare la conversione da font-weight a font-variation-settings o una stringa per il valore della proprietà 'font-variation-settings' CSS.",
"fontWeight": "Controlla lo spessore del carattere. Accetta le parole chiave \"normal\" e \"bold\" o i numeri compresi tra 1 e 1000.",
"fontWeightErrorMessage": "Sono consentiti solo le parole chiave \"normal\" e \"bold\" o i numeri compresi tra 1 e 1000.",
"formatOnPaste": "Controlla se l'editor deve formattare automaticamente il contenuto incollato. Deve essere disponibile un formattatore che deve essere in grado di formattare un intervallo in un documento.",
@@ -419,13 +574,37 @@
"hover.above": "Preferisci la visualizzazione al passaggio del mouse sopra la riga, se c'è spazio.",
"hover.delay": "Controlla il ritardo in millisecondi dopo il quale viene mostrato il passaggio del mouse.",
"hover.enabled": "Controlla se mostrare l'area sensibile al passaggio del mouse.",
+ "hover.enabled.off": "Passaggio del mouse disabilitato.",
+ "hover.enabled.on": "Passaggio del mouse abilitato.",
+ "hover.enabled.onKeyboardModifier": "Il passaggio del mouse viene mostrato tenendo premuto \"{0}\" o \"Alt\" (il modificatore opposto di \"#editor.multiCursorModifier#\")",
+ "hover.hidingDelay": "Controlla il ritardo in millisecondi dopo il quale viene nascosto il passaggio del mouse. Richiede l'abilitazione di 'editor.hover.sticky'.",
"hover.sticky": "Controlla se l'area sensibile al passaggio del mouse deve rimanere visibile quando vi si passa sopra con il puntatore del mouse.",
- "inlayHints.enable": "Abilita i suggerimenti incorporati nell'Editor.",
- "inlayHints.fontFamily": "Controlla la famiglia di caratteri dei suggerimenti inlay nell'editor. Se impostato su vuoto, viene usato {0}.",
- "inlayHints.fontSize": "Controlla le dimensioni del carattere dei suggerimenti di inlay nell'editor. Per impostazione predefinita, {0} viene usato quando il valore configurato è minore di {1} o maggiore delle dimensioni del carattere dell'editor.",
- "inlayHints.padding": "Abilita il riempimento attorno ai suggerimenti incorporati nell'editor.",
+ "inertialScroll": "Rendere lo scorrimento inerziale, particolarmente utile con il touchpad in Linux.",
+ "inlayHints.enable": "Abilita i suggerimenti per l'inlay nell'editor.",
+ "inlayHints.fontFamily": "Controlla la famiglia di caratteri dei suggerimenti per l'inlay nell'editor. Se impostato su vuoto, viene usato {0}.",
+ "inlayHints.fontSize": "Controlla le dimensioni del carattere dei suggerimenti per l'inlay nell'editor. Per impostazione predefinita, {0} viene usato quando il valore configurato è minore di {1} o maggiore delle dimensioni del carattere dell'editor.",
+ "inlayHints.maximumLength": "Lunghezza complessiva massima dei suggerimenti per l'inlay, per una singola riga, prima che vengano troncati dall'editor. Impostare su `0` per non troncare mai",
+ "inlayHints.padding": "Abilita il riempimento attorno ai suggerimenti per l'inlay nell'editor.",
"inline": "I suggerimenti rapidi vengono visualizzati come testo fantasma",
+ "inlineCompletionsAccessibilityVerbose": "Controlla se l'hint di accessibilità deve essere fornito agli utenti dell'utilità per la lettura dello schermo quando viene visualizzato un completamento inline.",
+ "inlineSuggest.edits.allowCodeShifting": "Controlla se la visualizzazione di un suggerimento sposterà il codice per fare spazio al suggerimento inline.",
+ "inlineSuggest.edits.renderSideBySide": "Controlla se i suggerimenti più grandi possono essere visualizzati affiancati.",
+ "inlineSuggest.edits.showCollapsed": "Controlla se il suggerimento verrà visualizzato come compresso fino a quando non viene visualizzato.",
+ "inlineSuggest.edits.showLongDistanceHint": "Gestisce la visualizzazione dei suggerimenti inline a lunga distanza.",
+ "inlineSuggest.emptyResponseInformation": "Gestisce l'invio delle informazioni sulla richiesta dal provider di suggerimenti inline.",
"inlineSuggest.enabled": "Controlla se visualizzare automaticamente i suggerimenti inline nell'Editor.",
+ "inlineSuggest.fontFamily": "Controlla la famiglia di caratteri dei suggerimenti inline.",
+ "inlineSuggest.minShowDelay": "Controlla il ritardo minimo in millisecondi dopo il quale vengono visualizzati i suggerimenti inline dopo la digitazione.",
+ "inlineSuggest.showOnSuggestConflict": "Controlla se mostrare suggerimenti inline quando si verifica un conflitto di suggerimenti.",
+ "inlineSuggest.showToolbar": "Controlla quando mostrare la barra dei suggerimenti in linea.",
+ "inlineSuggest.showToolbar.always": "Mostra la barra degli strumenti dei suggerimenti in linea ogni volta che viene visualizzato un suggerimento in linea.",
+ "inlineSuggest.showToolbar.never": "Non mostrare mai la barra dei suggerimenti in linea.",
+ "inlineSuggest.showToolbar.onHover": "Mostra la barra degli strumenti dei suggerimenti in linea quando al passaggio del mouse su un suggerimento in linea.",
+ "inlineSuggest.suppressInSnippetMode": "Gestisce la sospensione dei suggerimenti inline in modalità frammento.",
+ "inlineSuggest.suppressInlineSuggestions": "Disabilita i completamenti inline per gli ID estensione specificati separati da virgola.",
+ "inlineSuggest.suppressSuggestions": "Controlla la modalità di interazione dei suggerimenti inline con il widget dei suggerimenti. Se questa opzione è abilitata, il widget dei suggerimenti non viene visualizzato automaticamente quando sono disponibili suggerimenti inline.",
+ "inlineSuggest.syntaxHighlightingEnabled": "Controlla se mostrare l'evidenziazione della sintassi per i suggerimenti inline nell'editor.",
+ "inlineSuggest.triggerCommandOnProviderChange": "Controlla se attivare un comando quando cambia il provider di suggerimenti inline.",
"letterSpacing": "Controlla la spaziatura tra le lettere in pixel.",
"lineHeight": "Controlla l'altezza della riga. \r\n - Usare 0 per calcolare automaticamente l'altezza della riga dalle dimensioni del carattere.\r\n - I valori compresi tra 0 e 8 verranno usati come moltiplicatore con le dimensioni del carattere.\r\n - I valori maggiori o uguali a 8 verranno usati come valori effettivi.",
"lineNumbers": "Controlla la visualizzazione dei numeri di riga.",
@@ -437,18 +616,29 @@
"links": "Controlla se l'editor deve individuare i collegamenti e renderli selezionabili.",
"matchBrackets": "Evidenzia le parentesi graffe corrispondenti.",
"minimap.autohide": "Controlla se la minimappa viene nascosta automaticamente.",
+ "minimap.autohide.mouseover": "La minimappa viene nascosta quando il mouse non si trova su di essa e viene visualizzata quando invece si trova su di essa.",
+ "minimap.autohide.none": "La minimappa è sempre visibile.",
+ "minimap.autohide.scroll": "La minimappa viene visualizzata solo quando si scorre l'editor",
"minimap.enabled": "Controlla se la minimappa è visualizzata.",
+ "minimap.markSectionHeaderRegex": "Definisce l'espressione regolare utilizzata per trovare le intestazioni di sezione nei commenti. L'espressione regolare deve contenere un gruppo di corrispondenze denominato 'label' (scritto come '(?.+)') che incapsula l'intestazione di sezione, altrimenti non funzionerà. Facoltativamente è possibile includere un altro gruppo di corrispondenze denominato 'separatore'. Usare \\n nel modello per trovare le intestazioni su più righe.",
"minimap.maxColumn": "Limita la larghezza della minimappa in modo da eseguire il rendering al massimo di un certo numero di colonne.",
"minimap.renderCharacters": "Esegue il rendering dei caratteri effettivi di una riga in contrapposizione ai blocchi colore.",
"minimap.scale": "Scala del contenuto disegnato nella minimappa: 1, 2 o 3.",
+ "minimap.sectionHeaderFontSize": "Controlla le dimensioni del carattere delle intestazioni di sezione nella minimappa.",
+ "minimap.sectionHeaderLetterSpacing": "Controllare la quantità di spazio (in pixel) tra i caratteri dell’intestazione di sezione. Ciò contribuisce alla leggibilità dell’intestazione in caratteri di piccole dimensioni.",
+ "minimap.showMarkSectionHeaders": "Controlla se i commenti MARK: vengono visualizzati come intestazioni di sezione nella minimappa.",
+ "minimap.showRegionSectionHeaders": "Controlla se le aree denominate vengono visualizzate come intestazioni di sezione nella minimappa.",
"minimap.showSlider": "Controlla se il dispositivo di scorrimento della minimappa è visualizzato.",
"minimap.side": "Definisce il lato in cui eseguire il rendering della minimappa.",
"minimap.size": "Controlla le dimensioni della minimappa.",
"minimap.size.fill": "Se necessario, la minimappa si ridurrà o si ingrandirà in modo da adattarsi all'altezza dell'editor (nessuno scorrimento).",
"minimap.size.fit": "Se necessario, la minimappa si ridurrà in modo che la larghezza non superi mai quella dell'editor (nessuno scorrimento).",
"minimap.size.proportional": "La minimappa ha le stesse dimensioni del contenuto dell'editor (e potrebbe supportare lo scorrimento).",
+ "mouseMiddleClickAction": "Controlla cosa succede quando si clicca il pulsante centrale del mouse nell'editor.",
"mouseWheelScrollSensitivity": "Moltiplicatore da usare sui valori `deltaX` e `deltaY` degli eventi di scorrimento della rotellina del mouse.",
"mouseWheelZoom": "Ingrandisce il carattere dell'editor quando si usa la rotellina del mouse e si tiene premuto 'CTRL'.",
+ "mouseWheelZoom.mac": "Ingrandisce il carattere dell’editor quando si usa la rotella del mouse e si tiene premuto `Cmd`.",
+ "multiCursorLimit": "Controlla il numero massimo di cursori che possono essere presenti in un editor attivo contemporaneamente.",
"multiCursorMergeOverlapping": "Unire i cursori multipli se sovrapposti.",
"multiCursorModifier": "Modificatore da usare per aggiungere più cursori con il mouse. I movimenti del mouse Vai alla definizione e Apri collegamento si adatteranno in modo da non entrare in conflitto con il [modificatore di selezione multipla](https://code.visualstudio.com/docs/editor/codebasics#_multicursor-modifier).",
"multiCursorModifier.alt": "Rappresenta il tasto 'Alt' in Windows e Linux e il tasto 'Opzione' in macOS.",
@@ -456,29 +646,40 @@
"multiCursorPaste": "Controlla l'operazione Incolla quando il conteggio delle righe del testo incollato corrisponde al conteggio dei cursori.",
"multiCursorPaste.full": "Ogni cursore incolla il testo completo.",
"multiCursorPaste.spread": "Ogni cursore incolla una singola riga del testo.",
- "occurrencesHighlight": "Controlla se l'editor deve evidenziare le occorrenze di simboli semantici.",
+ "occurrencesHighlight": "Controlla se le occorrenze devono essere evidenziate nei file aperti.",
+ "occurrencesHighlight.multiFile": "Sperimentale: evidenzia le occorrenze in tutti i file aperti validi.",
+ "occurrencesHighlight.off": "Non evidenzia le occorrenze.",
+ "occurrencesHighlight.singleFile": "Evidenzia le occorrenze solo nel file corrente.",
+ "occurrencesHighlightDelay": "Controlla il ritardo in millisecondi dopo il quale vengono evidenziate le occorrenze.",
"off": "I suggerimenti rapidi sono disabilitati",
"on": "I suggerimenti rapidi vengono visualizzati all'interno del widget dei suggerimenti",
+ "overtypeCursorStyle": "Controlla lo stile del cursore in modalità di inserimento input in sovrascrittura.",
+ "overtypeOnPaste": "Controlla se l'operazione Incolla deve sovrascrivere.",
"overviewRulerBorder": "Controlla se deve essere disegnato un bordo intorno al righello delle annotazioni.",
"padding.bottom": "Controlla la quantità di spazio tra il bordo inferiore dell'editor e l'ultima riga.",
"padding.top": "Controlla la quantità di spazio tra il bordo superiore dell'editor e la prima riga.",
"parameterHints.cycle": "Controlla se il menu dei suggerimenti per i parametri esegue un ciclo o si chiude quando viene raggiunta la fine dell'elenco.",
"parameterHints.enabled": "Abilita un popup che mostra documentazione sui parametri e informazioni sui tipi mentre si digita.",
+ "pasteAs.enabled": "Controlla se è possibile incollare il contenuto in modi diversi.",
+ "pasteAs.showPasteSelector": "Controlla se viene visualizzato un widget quando si incolla il contenuto nell'editor. Questo widget consente di controllare il modo in cui il file viene incollato.",
+ "pasteAs.showPasteSelector.afterPaste": "Mostra il widget del selettore dell'operazione Incolla dopo che il contenuto è stato incollato nell'editor.",
+ "pasteAs.showPasteSelector.never": "Non visualizzare mai il widget del selettore dell'operazione Incolla. Usare sempre il comportamento dell'operazione Incolla predefinito.",
"peekWidgetDefaultFocus": "Controlla se spostare lo stato attivo sull'editor inline o sull'albero nel widget di anteprima.",
"peekWidgetDefaultFocus.editor": "Sposta lo stato attivo sull'editor quando si apre l'anteprima",
"peekWidgetDefaultFocus.tree": "Sposta lo stato attivo sull'albero quando si apre l'anteprima",
- "quickSuggestions": "Controlla se i suggerimenti devono essere visualizzati automaticamente durante la digitazione. Può essere controllato per la digitazione in commenti, stringhe e altro codice. Il suggerimento rapido può essere configurato per essere visualizzato come testo fantasma o con il widget dei suggerimenti. Tenere anche conto dell'impostazione '{0}' che controlla se i suggerimenti vengono attivati dai caratteri speciali.",
+ "quickSuggestions": "Controlla se i suggerimenti devono essere visualizzati automaticamente durante la digitazione. Questo può essere controllato per digitare commenti, stringhe e altro codice. Il suggerimento rapido può essere configurato per essere visualizzato come testo fantasma o con il widget dei suggerimenti. Tenere anche conto dell'impostazione {0}che controlla se i suggerimenti vengono attivati da caratteri speciali.",
"quickSuggestions.comments": "Abilita i suggerimenti rapidi all'interno di commenti.",
"quickSuggestions.other": "Abilita i suggerimenti rapidi all'esterno di stringhe e commenti.",
"quickSuggestions.strings": "Abilita i suggerimenti rapidi all'interno di stringhe.",
"quickSuggestionsDelay": "Controlla il ritardo in millisecondi dopo il quale verranno visualizzati i suggerimenti rapidi.",
"renameOnType": "Controlla se l'editor viene rinominato automaticamente in base al tipo.",
- "renameOnTypeDeprecate": "Deprecata. In alternativa, usare `editor.linkedEditing`.",
+ "renameOnTypeDeprecate": "Deprecato. In alternativa, sa 'editor.linkedEditing'.",
"renderControlCharacters": "Controlla se l'editor deve eseguire il rendering dei caratteri di controllo.",
"renderFinalNewline": "Esegue il rendering dell'ultimo numero di riga quando il file termina con un carattere di nuova riga.",
"renderLineHighlight": "Controlla in che modo l'editor deve eseguire il rendering dell'evidenziazione di riga corrente.",
"renderLineHighlight.all": "Mette in evidenza sia la barra di navigazione sia la riga corrente.",
"renderLineHighlightOnlyWhenFocus": "Controlla se l'editor deve eseguire il rendering dell'evidenziazione della riga corrente solo quando l'editor ha lo stato attivo.",
+ "renderRichScreenReaderContent": "Indica se eseguire il rendering di contenuti avanzati dell'utilità per la lettura dello schermo quando è abilitata l'opzione 'editor.editContext'.",
"renderWhitespace": "Controlla in che modo l'editor deve eseguire il rendering dei caratteri di spazio vuoto.",
"renderWhitespace.boundary": "Esegue il rendering dei caratteri di spazio vuoto ad eccezione dei singoli spazi tra le parole.",
"renderWhitespace.selection": "Esegui il rendering dei caratteri di spazio vuoto solo nel testo selezionato.",
@@ -487,14 +688,17 @@
"rulers": "Esegue il rendering dei righelli verticali dopo un certo numero di caratteri a spaziatura fissa. Usare più valori per più righelli. Se la matrice è vuota, non viene disegnato alcun righello.",
"rulers.color": "Colore di questo righello dell'editor.",
"rulers.size": "Numero di caratteri a spaziatura fissa in corrispondenza del quale verrà eseguito il rendering di questo righello dell'editor.",
+ "screenReaderAnnounceInlineSuggestion": "Controllare se i suggerimenti inline vengono annunciati da un'utilità per la lettura dello schermo.",
"scrollBeyondLastColumn": "Controlla il numero di caratteri aggiuntivi oltre i quali l'editor scorrerà orizzontalmente.",
"scrollBeyondLastLine": "Controlla se l'editor scorrerà oltre l'ultima riga.",
+ "scrollOnMiddleClick": "Controlla se l'editor scorrerà quando si preme il pulsante centrale.",
"scrollPredominantAxis": "Scorre solo lungo l'asse predominante durante lo scorrimento verticale e orizzontale simultaneo. Impedisce la deviazione orizzontale quando si scorre in verticale su un trackpad.",
"scrollbar.horizontal": "Controlla la visibilità della barra di scorrimento orizzontale.",
"scrollbar.horizontal.auto": "La barra di scorrimento orizzontale sarà visibile solo quando necessario.",
"scrollbar.horizontal.fit": "La barra di scorrimento orizzontale sarà sempre nascosta.",
"scrollbar.horizontal.visible": "La barra di scorrimento orizzontale sarà sempre visibile.",
"scrollbar.horizontalScrollbarSize": "Altezza della barra di scorrimento orizzontale.",
+ "scrollbar.ignoreHorizontalScrollbarInContentHeight": "Se impostata, la barra di scorrimento orizzontale non aumenterà le dimensioni del contenuto dell'editor.",
"scrollbar.scrollByPage": "Controlla se i clic consentono di attivare lo scorrimento per pagina o di passare direttamente alla posizione di clic.",
"scrollbar.vertical": "Controlla la visibilità della barra di scorrimento verticale.",
"scrollbar.vertical.auto": "La barra di scorrimento verticale sarà visibile solo quando necessario.",
@@ -502,8 +706,11 @@
"scrollbar.vertical.visible": "La barra di scorrimento verticale sarà sempre visibile.",
"scrollbar.verticalScrollbarSize": "Larghezza della barra di scorrimento verticale.",
"selectLeadingAndTrailingWhitespace": "Indica se gli spazi vuoti iniziali e finali devono essere sempre selezionati.",
+ "selectSubwords": "Indica se è necessario selezionare le sottoparole ( come 'foo' in 'fooBar' o 'foo_bar').",
"selectionClipboard": "Controlla se gli appunti primari di Linux devono essere supportati.",
"selectionHighlight": "Controlla se l'editor deve evidenziare gli elementi corrispondenti simili alla selezione.",
+ "selectionHighlightMaxLength": "Controlla il numero di caratteri che possono essere presenti nella selezione prima che non vengano più evidenziate le corrispondenze simili. Impostare su zero per indicare un numero illimitato.",
+ "selectionHighlightMultiline": "Controlla se l'editor deve evidenziare corrispondenze di selezione che si estendono su più righe.",
"showDeprecated": "Controlla le variabili deprecate barrate.",
"showFoldingControls": "Controlla se i controlli di riduzione sul margine della barra di scorrimento vengono visualizzati.",
"showFoldingControls.always": "Mostra sempre i comandi di riduzione.",
@@ -519,14 +726,19 @@
"stickyTabStops": "Emula il comportamento di selezione dei caratteri di tabulazione quando si usano gli spazi per il rientro. La selezione verrà applicata alle tabulazioni.",
"suggest.filterGraceful": "Controlla se i suggerimenti di filtro e ordinamento valgono per piccoli errori di battitura.",
"suggest.insertMode": "Controlla se le parole vengono sovrascritte quando si accettano i completamenti. Tenere presente che questa opzione dipende dalle estensioni che accettano esplicitamente questa funzionalità.",
+ "suggest.insertMode.always": "Selezionare sempre un suggerimento quando si attiva automaticamente IntelliSense.",
"suggest.insertMode.insert": "Inserisce il suggerimento senza sovrascrivere il testo a destra del cursore.",
+ "suggest.insertMode.never": "Non selezionare mai un suggerimento quando si attiva automaticamente IntelliSense.",
"suggest.insertMode.replace": "Inserisce il suggerimento e sovrascrive il testo a destra del cursore.",
+ "suggest.insertMode.whenQuickSuggestion": "Selezionare un suggerimento solo quando si attiva IntelliSense durante la digitazione.",
+ "suggest.insertMode.whenTriggerCharacter": "Selezionare un suggerimento solo quando si attiva IntelliSense da un carattere di trigger.",
"suggest.localityBonus": "Controlla se l'ordinamento privilegia le parole che appaiono più vicine al cursore.",
"suggest.maxVisibleSuggestions.dep": "Questa impostazione è deprecata. Il widget dei suggerimenti può ora essere ridimensionato.",
"suggest.preview": "Controlla se visualizzare in anteprima il risultato del suggerimento nell'Editor.",
+ "suggest.selectionMode": "Controlla se viene selezionato un suggerimento quando viene visualizzato il widget. Si noti che questo si applica solo ai suggerimenti attivati automaticamente ({0} e {1}) e che un suggerimento viene sempre selezionato quando viene richiamato in modo esplicito, ad esempio tramite 'CTRL+BARRA SPAZIATRICE'.",
"suggest.shareSuggestSelections": "Controlla se condividere le selezioni dei suggerimenti memorizzati tra aree di lavoro e finestre (richiede `#editor.suggestSelection#`).",
"suggest.showIcons": "Controlla se mostrare o nascondere le icone nei suggerimenti.",
- "suggest.showInlineDetails": "Controlla se i dettagli del suggerimento vengono visualizzati inline con l'etichetta o solo nel widget dei dettagli",
+ "suggest.showInlineDetails": "Controlla se i dettagli del suggerimento vengono visualizzati inline con l'etichetta o solo nel widget dei dettagli.",
"suggest.showStatusBar": "Controlla la visibilità della barra di stato nella parte inferiore del widget dei suggerimenti.",
"suggest.snippetsPreventQuickSuggestions": "Controlla se un frammento attivo impedisce i suggerimenti rapidi.",
"suggestFontSize": "Dimensioni del carattere per il widget dei suggerimenti. Se impostato su {0}, viene usato il valore di {1}.",
@@ -540,19 +752,25 @@
"tabCompletion.off": "Disabilita le funzionalità di completamento con tasto TAB.",
"tabCompletion.on": "La funzionalità di completamento con tasto TAB inserirà il migliore suggerimento alla pressione del tasto TAB.",
"tabCompletion.onlySnippets": "Completa i frammenti con il tasto TAB quando i rispettivi prefissi corrispondono. Funziona in modo ottimale quando 'quickSuggestions' non è abilitato.",
+ "tabFocusMode": "Controlla se l'editor riceve le schede o le rinvia al workbench per lo spostamento.",
+ "trimWhitespaceOnDelete": "Controlla se l'editor eliminerà anche lo spazio vuoto di rientro della riga successiva durante l'eliminazione di una nuova riga.",
"unfoldOnClickAfterEndOfLine": "Controlla se, facendo clic sul contenuto vuoto dopo una riga ridotta, la riga viene espansa.",
"unicodeHighlight.allowedCharacters": "Definisce i caratteri consentiti che non vengono evidenziati.",
"unicodeHighlight.allowedLocales": "I caratteri Unicode comuni nelle impostazioni locali consentite non vengono evidenziati.",
"unicodeHighlight.ambiguousCharacters": "Controlla se i caratteri che possono essere confusi con i caratteri ASCII di base sono evidenziati, ad eccezione di quelli comuni nelle impostazioni locali dell'utente corrente.",
- "unicodeHighlight.includeComments": "Controlla se anche i caratteri nei commenti debbano essere soggetti a evidenziazione Unicode.",
- "unicodeHighlight.includeStrings": "Controlla se anche i caratteri nelle stringhe devono essere soggetti all'evidenziazione unicode.",
+ "unicodeHighlight.includeComments": "Controlla se anche i caratteri nei commenti devono essere soggetti a evidenziazione Unicode.",
+ "unicodeHighlight.includeStrings": "Controlla se anche i caratteri nelle stringhe devono essere soggetti all'evidenziazione Unicode.",
"unicodeHighlight.invisibleCharacters": "Controlla se i caratteri che riservano spazio o non hanno larghezza sono evidenziati.",
"unicodeHighlight.nonBasicASCII": "Controlla se tutti i caratteri ASCII non di base sono evidenziati. Solo i caratteri compresi tra U+0020 e U+007E, tabulazione, avanzamento riga e ritorno a capo sono considerati ASCII di base.",
"unusualLineTerminators": "Rimuovi caratteri di terminazione di riga insoliti che potrebbero causare problemi.",
"unusualLineTerminators.auto": "I caratteri di terminazione di riga insoliti vengono rimossi automaticamente.",
"unusualLineTerminators.off": "I caratteri di terminazione di riga insoliti vengono ignorati.",
"unusualLineTerminators.prompt": "Prompt per i caratteri di terminazione di riga insoliti da rimuovere.",
- "useTabStops": "Inserimento ed eliminazione dello spazio vuoto dopo le tabulazioni.",
+ "useTabStops": "Gli spazi e le tabulazioni vengono inseriti ed eliminati in allineamento con le tabulazioni.",
+ "wordBreak": "Controlla le regole di interruzione delle parole usate per il testo cinese/giapponese/coreano (CJK).",
+ "wordBreak.keepAll": "Le interruzioni di parola non devono essere usate per il testo cinese/giapponese/coreano (CJK). Il comportamento del testo non CJK è uguale a quello normale.",
+ "wordBreak.normal": "Usare la regola di interruzione di riga predefinita.",
+ "wordSegmenterLocales": "Impostazioni locali da usare per la segmentazione delle parole quando si eseguono operazioni o spostamenti correlati alle parole. Specifica il tag di lingua BCP 47 della parola che si vuole riconoscere (ad es. ja, zh-CN, zh-Hant-TW, ecc.).",
"wordSeparators": "Caratteri che verranno usati come separatori di parola quando si eseguono operazioni o spostamenti correlati a parole.",
"wordWrap": "Controlla il ritorno a capo automatico delle righe.",
"wordWrap.bounded": "Il ritorno a capo automatico delle righe viene applicato in corrispondenza della larghezza minima del viewport e di `#editor.wordWrapColumn#`.",
@@ -560,19 +778,28 @@
"wordWrap.on": "Il ritorno a capo automatico delle righe viene applicato in corrispondenza della larghezza del viewport.",
"wordWrap.wordWrapColumn": "Il ritorno a capo automatico delle righe viene applicato in corrispondenza di `#editor.wordWrapColumn#`.",
"wordWrapColumn": "Controlla la colonna per il ritorno a capo automatico dell'editor quando il valore di `#editor.wordWrap#` è `wordWrapColumn` o `bounded`.",
+ "wrapOnEscapedLineFeeds": "Controlla se il valore letterale `\\n` deve attivare un ritorno a capo automatico quando `#editor.wordWrap#` è abilitato.\r\n\r\nAd esempio:\r\n```c\r\nchar* str=\"hello\\nworld\"\r\n```\r\nverrà visualizzato come\r\n```c\r\nchar* str=\"hello\\n\r\n world\"\r\n```",
"wrappingIndent": "Controlla il rientro delle righe con ritorno a capo.",
"wrappingIndent.deepIndent": "Le righe con ritorno a capo hanno un rientro di +2 rispetto alla riga padre.",
"wrappingIndent.indent": "Le righe con ritorno a capo hanno un rientro di +1 rispetto alla riga padre.",
"wrappingIndent.none": "Nessun rientro. Le righe con ritorno a capo iniziano dalla colonna 1. ",
"wrappingIndent.same": "Le righe con ritorno a capo hanno lo stesso rientro della riga padre.",
- "wrappingStrategy": "Controlla l'algoritmo che calcola i punti di ritorno a capo.",
+ "wrappingStrategy": "Controlla l'algoritmo che calcola i punti di wrapping. Si noti che quando è attiva la modalità di accessibilità, la modalità avanzata verrà usata per un'esperienza ottimale.",
"wrappingStrategy.advanced": "Delega il calcolo dei punti di ritorno a capo al browser. Si tratta di un algoritmo lento che potrebbe causare blocchi con file di grandi dimensioni, ma funziona correttamente in tutti gli altri casi.",
"wrappingStrategy.simple": "Presuppone che la larghezza sia identica per tutti caratteri. Si tratta di un algoritmo veloce che funziona correttamente per i tipi di carattere a spaziatura fissa e determinati script (come i caratteri latini) in cui i glifi hanno larghezza identica."
},
"vs/editor/common/core/editorColorRegistry": {
"caret": "Colore del cursore dell'editor.",
+ "deprecatedEditorActiveIndentGuide": "'editorIndentGuide.activeBackground' è deprecato. Usare 'editorIndentGuide.activeBackground1'.",
"deprecatedEditorActiveLineNumber": "Id è deprecato. In alternativa usare 'editorLineNumber.activeForeground'.",
+ "deprecatedEditorIndentGuides": "'editorIndentGuide.background' è deprecato. Usare 'editorIndentGuide.background1'.",
"editorActiveIndentGuide": "Colore delle guide di indentazione dell'editor attivo",
+ "editorActiveIndentGuide1": "Colore delle guide di indentazione dell'editor attivo (1).",
+ "editorActiveIndentGuide2": "Colore delle guide di indentazione dell'editor attivo (2).",
+ "editorActiveIndentGuide3": "Colore delle guide di indentazione dell'editor attivo (3).",
+ "editorActiveIndentGuide4": "Colore delle guide di indentazione dell'editor attivo (4).",
+ "editorActiveIndentGuide5": "Colore delle guide di indentazione dell'editor attivo (5).",
+ "editorActiveIndentGuide6": "Colore delle guide di indentazione dell'editor attivo (6).",
"editorActiveLineNumber": "Colore del numero di riga attivo dell'editor",
"editorBracketHighlightForeground1": "Colore primo piano delle parentesi quadre (1). Richiede l'abilitazione della colorazione delle coppie di parentesi quadre.",
"editorBracketHighlightForeground2": "Colore primo piano delle parentesi quadre (2). Richiede l'abilitazione della colorazione delle coppie di parentesi quadre.",
@@ -597,18 +824,30 @@
"editorBracketPairGuide.background6": "Colore di sfondo delle guide per coppie di parentesi inattive (6). Richiede l'abilitazione delle guide per coppie di parentesi.",
"editorCodeLensForeground": "Colore primo piano delle finestre di CodeLens dell'editor",
"editorCursorBackground": "Colore di sfondo del cursore editor. Permette di personalizzare il colore di un carattere quando sovrapposto da un blocco cursore.",
+ "editorDimmedLineNumber": "Colore della riga dell'editor finale quando editor.renderFinalNewline è impostato su in grigio.",
"editorGhostTextBackground": "Colore di sfondo del testo fantasma nell'editor.",
"editorGhostTextBorder": "Colore del bordo del testo fantasma nell'Editor.",
"editorGhostTextForeground": "Colore primo piano del testo fantasma nell'Editor.",
"editorGutter": "Colore di sfondo della barra di navigazione dell'editor. La barra contiene i margini di glifo e i numeri di riga.",
"editorIndentGuides": "Colore delle guide per i rientri dell'editor.",
+ "editorIndentGuides1": "Colore delle guide per i rientri dell'editor (1).",
+ "editorIndentGuides2": "Colore delle guide per i rientri dell'editor (2).",
+ "editorIndentGuides3": "Colore delle guide per i rientri dell'editor (3).",
+ "editorIndentGuides4": "Colore delle guide per i rientri dell'editor (4).",
+ "editorIndentGuides5": "Colore delle guide per i rientri dell'editor (5).",
+ "editorIndentGuides6": "Colore delle guide per i rientri dell'editor (6).",
"editorLineNumbers": "Colore dei numeri di riga dell'editor.",
- "editorOverviewRulerBackground": "Colore di sfondo del righello delle annotazioni dell'editor. Viene usato solo quando la minimappa è abilitata e posizionata sul lato destro dell'editor.",
+ "editorMultiCursorPrimaryBackground": "Il colore di sfondo dei cursori dell'editor primario quando sono presenti più cursori. Permette di personalizzare il colore di un carattere quando sovrapposto da un blocco cursore.",
+ "editorMultiCursorPrimaryForeground": "Il colore dei cursori dell'editor primario quando sono presenti più cursori.",
+ "editorMultiCursorSecondaryBackground": "Il colore di sfondo dei cursori dell'editor secondario quando sono presenti più cursori. Permette di personalizzare il colore di un carattere quando sovrapposto da un blocco cursore.",
+ "editorMultiCursorSecondaryForeground": "Colore dei cursori dell'editor secondario quando sono presenti più cursori.",
+ "editorOverviewRulerBackground": "Colore di sfondo del righello delle annotazioni dell'editor.",
"editorOverviewRulerBorder": "Colore del bordo del righello delle annotazioni.",
"editorRuler": "Colore dei righelli dell'editor.",
"editorUnicodeHighlight.background": "Colore di sfondo usato per evidenziare i caratteri Unicode.",
"editorUnicodeHighlight.border": "Colore del bordo utilizzato per evidenziare i caratteri Unicode.",
"editorWhitespaces": "Colore dei caratteri di spazio vuoto nell'editor.",
+ "inactiveLineHighlight": "Colore di sfondo per l'evidenziazione della riga alla posizione del cursore quando l'editor non è attivo.",
"lineHighlight": "Colore di sfondo per l'evidenziazione della riga alla posizione del cursore.",
"lineHighlightBorderBox": "Colore di sfondo per il bordo intorno alla riga alla posizione del cursore.",
"overviewRuleError": "Colore del marcatore del righello delle annotazioni per gli errori.",
@@ -623,6 +862,15 @@
"unnecessaryCodeOpacity": "Opacità del codice sorgente non necessario (non usato) nell'editor. Ad esempio, con \"#000000c0\" il rendering del codice verrà eseguito con il 75% di opacità. Per i temi a contrasto elevato, usare il colore del tema 'editorUnnecessaryCode.border' per sottolineare il codice non necessario invece di opacizzarlo."
},
"vs/editor/common/editorContextKeys": {
+ "accessibleDiffViewerVisible": "Indica se il visualizzatore differenze accessibile è visibile",
+ "comparingMovedCode": "Indica se un blocco di codice spostato è selezionato per il confronto",
+ "diffEditorHasChanges": "Indica se l'editor diff ha delle modifiche",
+ "diffEditorInlineMode": "Indica se la modalità inline è attiva",
+ "diffEditorModifiedUri": "L'URI del documento modificato",
+ "diffEditorModifiedWritable": "Indica se la modifica è scrivibile nell'editor diff",
+ "diffEditorOriginalUri": "L'URI del documento originale",
+ "diffEditorOriginalWritable": "Indica se la modifica è scrivibile nell'editor diff",
+ "diffEditorRenderSideBySideInlineBreakpointReached": "Indica se viene raggiunto il punto di interruzione inline side-by-side per il rendering dell'editor diff",
"editorColumnSelection": "Indica se `editor.columnSelection` è abilitato",
"editorFocus": "Indica se l'editor o un widget dell'editor ha lo stato attivo (ad esempio, lo stato attivo si trova nel widget di ricerca)",
"editorHasCodeActionsProvider": "Indica se per l'editor esiste un provider di azioni codice",
@@ -645,6 +893,7 @@
"editorHasSelection": "Indica se per l'editor esiste testo selezionato",
"editorHasSignatureHelpProvider": "Indica se per l'editor esiste un provider della guida per la firma",
"editorHasTypeDefinitionProvider": "Indica se per l'editor esiste un provider di definizioni di tipo",
+ "editorHoverFocused": "Indica se l'area sensibile al passaggio del mouse dell'edito è attivata",
"editorHoverVisible": "Indica se il passaggio del puntatore nell'editor è visibile",
"editorLangId": "Identificatore lingua dell'editor",
"editorReadonly": "Indica se l'editor è di sola lettura",
@@ -652,8 +901,73 @@
"editorTextFocus": "Indica se il testo dell'editor ha lo stato attivo (il cursore lampeggia)",
"inCompositeEditor": "Indica se l'editor fa parte di un editor più esteso (ad esempio notebook)",
"inDiffEditor": "Indica se il contesto è un editor diff",
+ "inMultiDiffEditor": "Indica se il contesto è un editor con più differenze",
+ "isEmbeddedDiffEditor": "Indica se il contesto è un editor diff incorporato",
+ "multiDiffEditorAllCollapsed": "Indica se tutti i file nell'editor con più differenze sono compressi",
+ "standaloneColorPickerFocused": "Indicare se la selezione colori autonoma è evidenziata",
+ "standaloneColorPickerVisible": "Indicare se la selezione colori autonoma è visibile",
+ "stickyScrollFocused": "Indica se lo scorrimento permanente è attivo",
+ "stickyScrollVisible": "Indica se lo scorrimento permanente è visibile",
"textInputFocus": "Indica se un editor o un input RTF ha lo stato attivo (il cursore lampeggia)"
},
+ "vs/editor/common/languages": {
+ "Array": "matrice",
+ "Boolean": "valore booleano",
+ "Class": "classe",
+ "Constant": "costante",
+ "Constructor": "costruttore",
+ "Enum": "enumerazione",
+ "EnumMember": "membro di enumerazione",
+ "Event": "evento",
+ "Field": "campo",
+ "File": "file",
+ "Function": "funzione",
+ "Interface": "interfaccia",
+ "Key": "chiave",
+ "Method": "metodo",
+ "Module": "modulo",
+ "Namespace": "spazio dei nomi",
+ "Null": "Null",
+ "Number": "numero",
+ "Object": "oggetto",
+ "Operator": "operatore",
+ "Package": "pacchetto",
+ "Property": "proprietà",
+ "String": "stringa",
+ "Struct": "struct",
+ "TypeParameter": "parametro di tipo",
+ "Variable": "variabile",
+ "suggestWidget.kind.class": "Classe",
+ "suggestWidget.kind.color": "Colore",
+ "suggestWidget.kind.constant": "Costante",
+ "suggestWidget.kind.constructor": "Costruttore",
+ "suggestWidget.kind.customcolor": "Colore personalizzato",
+ "suggestWidget.kind.enum": "Enumerazione",
+ "suggestWidget.kind.enumMember": "Membro enumerazione",
+ "suggestWidget.kind.event": "Evento",
+ "suggestWidget.kind.field": "Campo",
+ "suggestWidget.kind.file": "File",
+ "suggestWidget.kind.folder": "Cartella",
+ "suggestWidget.kind.function": "Funzione",
+ "suggestWidget.kind.interface": "Interfaccia",
+ "suggestWidget.kind.issue": "Problema",
+ "suggestWidget.kind.keyword": "Parola chiave",
+ "suggestWidget.kind.method": "Metodo",
+ "suggestWidget.kind.module": "Modulo",
+ "suggestWidget.kind.operator": "Operatore",
+ "suggestWidget.kind.property": "Proprietà",
+ "suggestWidget.kind.reference": "Riferimento",
+ "suggestWidget.kind.snippet": "Frammento",
+ "suggestWidget.kind.struct": "Struct",
+ "suggestWidget.kind.text": "Testo",
+ "suggestWidget.kind.tool": "Strumento",
+ "suggestWidget.kind.typeParameter": "Parametro di tipo",
+ "suggestWidget.kind.unit": "Unità",
+ "suggestWidget.kind.user": "Utente",
+ "suggestWidget.kind.value": "Valore",
+ "suggestWidget.kind.variable": "Variabile",
+ "symbolAriaLabel": "{0} ({1})"
+ },
"vs/editor/common/languages/modesRegistry": {
"plainText.alias": "Testo normale"
},
@@ -661,40 +975,58 @@
"edit": "Digitazione"
},
"vs/editor/common/standaloneStrings": {
- "accessibilityHelpMessage": "Premere ALT+F1 per le opzioni di accessibilità.",
- "auto_off": "L'editor è configurato per non essere ottimizzato per l'utilizzo con un'utilità per la lettura dello schermo, che non viene usata in questo momento.",
- "auto_on": "L'editor è configurato per essere ottimizzato per l'utilizzo con un'utilità per la lettura dello schermo.",
+ "acceptSuggestAction": "Accetta il suggerimento{0} per accettare il suggerimento attualmente selezionato.",
+ "accessibilityHelpTitle": "Guida sull'accessibilità",
+ "auto_off": "L'applicazione è configurata L'applicazione è configurata per l'utilizzo con un'utilità per la lettura dello schermo.",
+ "auto_on": "L'applicazione è configurata per essere ottimizzato per l'utilizzo con un'utilità per la lettura dello schermo.",
"bulkEditServiceSummary": "Effettuate {0} modifiche in {1} file",
- "changeConfigToOnMac": "Per configurare l'editor da ottimizzare per l'utilizzo con un'utilità per la lettura dello schermo, premere Comando+E.",
- "changeConfigToOnWinLinux": "Per configurare l'editor da ottimizzare per l'utilizzo con un'utilità per la lettura dello schermo, premere CTRL+E.",
- "editableDiffEditor": "in un riquadro di un editor diff.",
- "editableEditor": " in un editor di codice",
+ "changeConfigToOnMac": "Per configurare l'applicazione e ottimizzarla nell’utilizzo di lettura dello schermo, premere CTRL+E.",
+ "changeConfigToOnWinLinux": "Per configurare l'applicazione e ottimizzarla nell’utilizzo di lettura dello schermo, premere CTRL+E.",
+ "chatEditing.navigation": "Naviga tra le modifiche nell'editor con le opzioni precedente{0} e successivo{1} e accetta{2}, rifiuta{3} o visualizza le differenze{4} per la modifica corrente. Accetta le modifiche in tutti i file{5}.",
+ "chatEditorModification": "L'editor contiene modifiche in sospeso apportate dalla chat.",
+ "chatEditorRequestInProgress": "L'editor è attualmente in attesa delle modifiche apportate dalla chat.",
+ "codeFolding": "Usare la riduzione del codice per comprimere i blocchi di codice e concentrarsi sul codice di interesse, tramite il comando Toggle Folding{0}.",
+ "debug.startDebugging": "Il comando Debug: Avvia debug {0} avvia una sessione di debug.",
+ "debugConsole.addToWatch": "Il comando Debug: Add to Watch{0} aggiungerà il testo selezionato alla vista di controllo.",
+ "debugConsole.executeSelection": "Il comando Debug: esegui selezione{0} eseguirà il testo selezionato nella console di debug.",
+ "debugConsole.setBreakpoint": "Il comando Debug: punto di interruzione in linea{0} attiverà o annullerà l'impostazione di un punto di interruzione nella posizione corrente del cursore nell’editor attivo.",
+ "defaultWindowTitleExcludingEditorState": "activeEditorState: ad esempio modificato, problemi e altro, attualmente non è incluso come parte dell'impostazione window.title per impostazione predefinita. Abilitalo con accessibility.windowTitleOptimized.",
+ "defaultWindowTitleIncludesEditorState": "activeEditorState, ad esempio modificato, problemi e altro, è incluso come parte dell'impostazione window.title per impostazione predefinita. Disabilitalo con accessibility.windowTitleOptimized.",
+ "editableDiffEditor": "Ci si trova in un riquadro di un editor diff.",
+ "editableEditor": "Ci si trova in un editor di codice.",
"editorViewAccessibleLabel": "Contenuto editor",
- "emergencyConfOn": "Modifica dell'impostazione `accessibilitySupport` in `on`.",
+ "goToSymbol": "Passare a Symbol{0} per spostarsi rapidamente tra i simboli nel file corrente.",
"gotoLineActionLabel": "Vai a Riga/Colonna...",
+ "gotoOffsetActionLabel": "Vai all'offset...",
"helpQuickAccess": "Mostra tutti i provider di accesso rapido",
"inspectTokens": "Sviluppatore: Controlla token",
- "multiSelection": "{0} selezioni",
- "multiSelectionRange": "{0} selezioni ({1} caratteri selezionati)",
- "noSelection": "Nessuna selezione",
- "openDocMac": "Premere Comando+H per aprire una finestra del browser contenente maggiori informazioni correlate all'accessibilità dell'editor.",
- "openDocWinLinux": "Premere CTRL+H per aprire una finestra del browser contenente maggiori informazioni correlate all'accessibilità dell'editor.",
- "openingDocs": "Apertura della pagina di documentazione sull'accessibilità dell'editor.",
- "outroMsg": "Per chiudere questa descrizione comando e tornare all'editor, premere ESC o MAIUSC+ESC.",
+ "intellisense": "Usare IntelliSense per migliorare l'efficienza della scrittura del codice e ridurre gli errori. Attiva suggerimento{0}.",
+ "listAnnouncementsCommand": "Esegui il comando: Elenca annunci segnale per una panoramica degli annunci e del relativo stato corrente.",
+ "listSignalSoundsCommand": "Esegui il comando: Elenca suoni dei segnali per una panoramica di tutti i suoni e del relativo stato corrente.",
+ "openingDocs": "Apertura della pagina di documentazione sull'accessibilità in corso.",
+ "quickChatCommand": "Attivare/disattivare la chat veloce{0} per aprire o chiudere una sessione di chat.",
"quickCommandActionHelp": "Mostra ed esegui comandi",
"quickCommandActionLabel": "Riquadro comandi",
"quickOutlineActionLabel": "Vai al simbolo...",
"quickOutlineByCategoryActionLabel": "Vai al simbolo per categoria...",
- "readonlyDiffEditor": "in un riquadro di sola lettura di un editor diff.",
- "readonlyEditor": " in un editor di codice di sola lettura",
+ "readonlyDiffEditor": "Ci si trova in un riquadro di sola lettura di un editor diff.",
+ "readonlyEditor": "Ci si trova in un editor di codice di sola lettura.",
+ "screenReaderModeDisabled": "Modalità ottimizzata per l'utilità per la lettura dello schermo disabilitata.",
+ "screenReaderModeEnabled": "Modalità ottimizzata per l'utilità per la lettura dello schermo abilitata.",
"showAccessibilityHelpAction": "Visualizza la Guida sull'accessibilità",
- "singleSelection": "Riga {0}, colonna {1}",
- "singleSelectionRange": "Riga {0}, colonna {1} ({2} selezionate)",
- "tabFocusModeOffMsg": "Premere TAB nell'editor corrente per inserire il carattere di tabulazione. Per attivare/disattivare questo comportamento, premere {0}.",
- "tabFocusModeOffMsgNoKb": "Premere TAB nell'editor corrente per inserire il carattere di tabulazione. Il comando {0} non può essere attualmente attivato con un tasto di scelta rapida.",
- "tabFocusModeOnMsg": "Premere TAB nell'editor corrente per spostare lo stato attivo sull'elemento con stato attivabile successivo. Per attivare/disattivare questo comportamento, premere {0}.",
- "tabFocusModeOnMsgNoKb": "Premere TAB nell'editor corrente per spostare lo stato attivo sull'elemento con stato attivabile successivo. Il comando {0} non può essere attualmente attivato con un tasto di scelta rapida.",
- "toggleHighContrast": "Attiva/disattiva tema a contrasto elevato"
+ "showOrFocusHover": "Mostra o sposta lo stato attivo al passaggio del mouse{0} per leggere informazioni sul simbolo corrente.",
+ "startInlineChatCommand": "Avviare la chat inline{0} per creare una sessione di chat nell'editor.",
+ "stickScrollKb": "Sposta lo stato attivo su Scorrimento permanente{0} per impostare lo stato attivo degli ambiti attualmente annidati.",
+ "suggestActionsKb": "Attivare il widget dei suggerimenti{0} per mostrare i suggerimenti inline disponibili.",
+ "tabFocusModeOffMsg": "Premere TAB nell'editor corrente per inserire il carattere di tabulazione. Attiva/Disattiva questo comportamento{0}.",
+ "tabFocusModeOnMsg": "Premere TAB nell'editor corrente per spostare lo stato attivo sull'elemento con stato attivabile successivo. Attiva/Disattiva questo comportamento{0}.",
+ "toggleHighContrast": "Attiva/disattiva tema a contrasto elevato",
+ "toggleSuggestionFocus": "Alterna lo stato attivo tra il widget dei suggerimenti e l'editor{0} e attiva i dettagli con{1} per altre informazioni sul suggerimento.",
+ "toolbar": "Intorno al workbench, quando l'utilità per la lettura dello schermo annuncia che sei arrivato in una barra degli strumenti, usa i tasti limitati per spostarti tra le azioni della barra degli strumenti."
+ },
+ "vs/editor/common/viewLayout/viewLineRenderer": {
+ "overflow.chars": "{0} caratteri",
+ "showMore": "Mostra di più ({0})"
},
"vs/editor/contrib/anchorSelect/browser/anchorSelect": {
"anchorSet": "Ancoraggio impostato alla posizione {0}:{1}",
@@ -708,7 +1040,9 @@
"miGoToBracket": "Vai alla parentesi &&quadra",
"overviewRulerBracketMatchForeground": "Colore del marcatore del righello delle annotazioni per la corrispondenza delle parentesi.",
"smartSelect.jumpBracket": "Vai alla parentesi quadra",
- "smartSelect.selectToBracket": "Seleziona fino alla parentesi"
+ "smartSelect.removeBrackets": "Rimuovi parentesi quadre",
+ "smartSelect.selectToBracket": "Seleziona fino alla parentesi",
+ "smartSelect.selectToBracketDescription": "Selezionare il testo all'interno includendo le parentesi o le parentesi graffe"
},
"vs/editor/contrib/caretOperations/browser/caretOperations": {
"caret.moveLeft": "Sposta testo selezionato a sinistra",
@@ -728,8 +1062,10 @@
"miPaste": "&&Incolla",
"share": "Condividi"
},
+ "vs/editor/contrib/codeAction/browser/codeAction": {
+ "applyCodeActionFailed": "Si è verificato un errore sconosciuto durante l'applicazione dell'azione del codice"
+ },
"vs/editor/contrib/codeAction/browser/codeActionCommands": {
- "applyCodeActionFailed": "Si è verificato un errore sconosciuto durante l'applicazione dell'azione del codice",
"args.schema.apply": "Controlla quando vengono applicate le azioni restituite.",
"args.schema.apply.first": "Applica sempre la prima azione codice restituita.",
"args.schema.apply.ifSingle": "Applica la prima azione codice restituita se è l'unica.",
@@ -754,30 +1090,65 @@
"editor.action.source.noneMessage.preferred.kind": "Non sono disponibili azioni origine preferite per '{0}'",
"fixAll.label": "Correggi tutto",
"fixAll.noneMessage": "Non è disponibile alcuna azione Correggi tutto",
+ "organizeImports.description": "Organizza le importazioni nel file corrente. Questa opzione viene chiamata anche \"Ottimizza importazioni\" da alcuni strumenti",
"organizeImports.label": "Organizza import",
"quickfix.trigger.label": "Correzione rapida...",
"refactor.label": "Effettua refactoring...",
- "refactor.preview.label": "Refactoring con anteprima...",
"source.label": "Azione origine..."
},
- "vs/editor/contrib/codeAction/browser/codeActionMenu": {
- "CodeActionMenuVisible": "Indica se il widget dell'elenco azioni codice è visibile",
- "label": "{0} to Refactor, {1} to Preview"
+ "vs/editor/contrib/codeAction/browser/codeActionContributions": {
+ "includeNearbyQuickFixes": "Abilita/disabilita la visualizzazione della correzione rapida più vicino all'interno di una riga quando non è attualmente in una diagnostica.",
+ "showCodeActionHeaders": "Abilita/disabilita la visualizzazione delle intestazioni gruppo nel menu Azione codice.",
+ "triggerOnFocusChange": "Abilitare l'attivazione {0} quando {1} è impostato su {2}. Le azioni codice devono essere impostate su {3} per essere attivate per le modifiche della finestra e dello stato attivo."
},
- "vs/editor/contrib/codeAction/browser/codeActionWidgetContribution": {
- "codeActionWidget": "L'abilitazione di questa opzione consente di regolare la modalità di rendering del menu azione codice."
+ "vs/editor/contrib/codeAction/browser/codeActionController": {
+ "editingNewSelection": "Contesto: {0} alla riga {1} e alla colonna {2}.",
+ "hideMoreActions": "Nascondi elementi disabilitati",
+ "showMoreActions": "Mostra elementi disabilitati"
+ },
+ "vs/editor/contrib/codeAction/browser/codeActionMenu": {
+ "codeAction.widget.id.convert": "Riscrivi",
+ "codeAction.widget.id.extract": "Estrai",
+ "codeAction.widget.id.inline": "Inline",
+ "codeAction.widget.id.more": "Altre azioni...",
+ "codeAction.widget.id.move": "Sposta",
+ "codeAction.widget.id.quickfix": "Correzione rapida",
+ "codeAction.widget.id.source": "Azione di origine",
+ "codeAction.widget.id.surround": "Racchiudi tra"
},
"vs/editor/contrib/codeAction/browser/lightBulbWidget": {
"codeAction": "Mostra Azioni codice",
+ "codeActionAutoRun": "Esegui: {0}",
"codeActionWithKb": "Mostra Azioni codice ({0})",
+ "gutterLightbulbAIFixAutoFixWidget": "Icona che genera il menu delle azioni codice dalla barra di navigazione quando non c'è spazio nell'editor e sono disponibili una correzione con l'intelligenza artificiale e una correzione rapida.",
+ "gutterLightbulbAIFixWidget": "Icona che genera il menu delle azioni codice dalla barra di navigazione quando non c'è spazio nell'editor ed è disponibile una correzione con l'intelligenza artificiale.",
+ "gutterLightbulbAutoFixWidget": "Icona che genera il menu delle azioni codice dalla barra di navigazione quando non c'è spazio nell'editor ed è disponibile una rapida.",
+ "gutterLightbulbSparkleFilledWidget": "Icona che genera il menu delle azioni codice dalla barra di navigazione quando non c'è spazio nell'editor e sono disponibili una correzione con l'intelligenza artificiale e una correzione rapida.",
+ "gutterLightbulbWidget": "Icona che genera il menu delle azioni codice dalla barra di navigazione quando non è presente spazio nell'editor.",
"preferredcodeActionWithKb": "Mostra azioni codice. Correzione rapida preferita disponibile ({0})"
},
"vs/editor/contrib/codelens/browser/codelensController": {
- "showLensOnLine": "Mostra comandi di CodeLens per la riga corrente"
+ "placeHolder": "Selezionare un comando",
+ "showLensOnLine": "Mostra comandi CodeLens per la riga corrente"
},
- "vs/editor/contrib/colorPicker/browser/colorPickerWidget": {
+ "vs/editor/contrib/colorPicker/browser/colorPickerParts/colorPickerCloseButton": {
+ "closeIcon": "Icona per chiudere la selezione colori"
+ },
+ "vs/editor/contrib/colorPicker/browser/colorPickerParts/colorPickerHeader": {
"clickToToggleColorOptions": "Fare clic per attivare/disattivare le opzioni di colore (rgb/hsl/hex)"
},
+ "vs/editor/contrib/colorPicker/browser/hoverColorPicker/hoverColorPickerParticipant": {
+ "hoverAccessibilityColorParticipant": "Qui è disponibile una selezione colori."
+ },
+ "vs/editor/contrib/colorPicker/browser/standaloneColorPicker/standaloneColorPickerActions": {
+ "hideColorPicker": "Nascondi selezione colori",
+ "hideColorPickerDescription": "Nascondere la selezione colori autonoma.",
+ "insertColorWithStandaloneColorPicker": "Inserisci colore con selezione colori autonoma",
+ "insertColorWithStandaloneColorPickerDescription": "Inserire colori hex/rgb/hs con la selezione colori autonoma con lo stato attivo.",
+ "mishowOrFocusStandaloneColorPicker": "&&Mostra o sposta lo stato attivo su selezione colori autonoma",
+ "showOrFocusStandaloneColorPicker": "Mostra o sposta lo stato attivo su selezione colori autonoma",
+ "showOrFocusStandaloneColorPickerDescription": "Mostrare o spostare lo stato attivo su una selezione colori autonoma che usa il provider di colori predefinito. Visualizza i colori hex/rgb/hsl."
+ },
"vs/editor/contrib/comment/browser/comment": {
"comment.block": "Attiva/Disattiva commento per il blocco",
"comment.line": "Attiva/disattiva commento per la riga",
@@ -788,7 +1159,7 @@
},
"vs/editor/contrib/contextmenu/browser/contextmenu": {
"action.showContextMenu.label": "Mostra il menu di scelta rapida editor",
- "context.minimap.minimap": "Minimap",
+ "context.minimap.minimap": "Minimappa",
"context.minimap.renderCharacters": "Esegui rendering dei caratteri",
"context.minimap.size": "Dimensioni verticali",
"context.minimap.size.fill": "Riempimento",
@@ -798,24 +1169,54 @@
"context.minimap.slider.always": "Sempre",
"context.minimap.slider.mouseover": "Passaggio del mouse"
},
- "vs/editor/contrib/copyPaste/browser/copyPasteContribution": {
- "pasteActions": "Abilita/disabilita l'esecuzione delle modifiche dalle estensioni quando si incolla."
- },
"vs/editor/contrib/cursorUndo/browser/cursorUndo": {
"cursor.redo": "Cursore - Ripeti",
"cursor.undo": "Cursore - Annulla"
},
- "vs/editor/contrib/dropIntoEditor/browser/dropIntoEditorContribution": {
- "dropProgressTitle": "Esecuzione dei gestori di rilascio in corso..."
+ "vs/editor/contrib/dropOrPasteInto/browser/copyPasteContribution": {
+ "pasteAs": "Incolla come...",
+ "pasteAs.kind": "Il tipo di modifica di incollaggio con cui provare l'incollaggio.\r\nEsistono più modifiche per questo tipo; l'editor mostrerà una selezione. Se non esistono modifiche di questo tipo, l'editor mostrerà un messaggio di errore.",
+ "pasteAs.preferences": "Elenco del tipo di modifica di incollaggio preferito per provare l'applicazione.\r\nVerrà applicata la prima modifica corrispondente alle preferenze.",
+ "pasteAsText": "Incolla come testo"
+ },
+ "vs/editor/contrib/dropOrPasteInto/browser/copyPasteController": {
+ "noPreferences": "vuoto",
+ "pasteAsDefault": "Configura l’azione Incolla predefinita",
+ "pasteAsError": "Non è stata trovata alcuna modifica incolla per '{0}'",
+ "pasteAsPickerPlaceholder": "Seleziona azione Incolla",
+ "pasteAsProgress": "Esecuzione dei gestori Incolla in corso",
+ "pasteIntoEditorProgress": "Esecuzione dei gestori incolla. Fare clic per annullare ed eseguire incolla di base",
+ "pasteWidgetVisible": "Indica se il widget dell'operazione Incolla viene visualizzato",
+ "postPasteWidgetTitle": "Mostra opzioni operazione Incolla...",
+ "resolveProcess": "Risoluzione della modifica incolla per '{0}'. Fare clic per annullare"
+ },
+ "vs/editor/contrib/dropOrPasteInto/browser/defaultProviders": {
+ "defaultDropProvider.uriList.path": "Inserire percorso",
+ "defaultDropProvider.uriList.paths": "Inserire percorsi",
+ "defaultDropProvider.uriList.relativePath": "Inserire percorso relativo",
+ "defaultDropProvider.uriList.relativePaths": "Inserire percorsi relativi",
+ "defaultDropProvider.uriList.uri": "Inserire l'Uri",
+ "defaultDropProvider.uriList.uris": "Inserire l'URL",
+ "pasteHtmlLabel": "Inserisci HTML",
+ "text.label": "Inserire testo normale"
+ },
+ "vs/editor/contrib/dropOrPasteInto/browser/dropIntoEditorController": {
+ "dropIntoEditorProgress": "Esecuzione dei gestori di rilascio. Fare clic per annullare",
+ "dropWidgetVisible": "Indica se il widget di rilascio viene visualizzato",
+ "postDropWidgetTitle": "Mostra opzioni di rilascio..."
+ },
+ "vs/editor/contrib/dropOrPasteInto/browser/postEditWidget": {
+ "applyError": "Errore durante l'applicazione della modifica '{0}':\r\n{1}",
+ "resolveError": "Errore durante la risoluzione della modifica '{0}':\r\n{1}"
},
"vs/editor/contrib/editorState/browser/keybindingCancellation": {
"cancellableOperation": "Indica se l'editor esegue un'operazione annullabile, ad esempio 'Anteprima riferimenti'"
},
"vs/editor/contrib/find/browser/findController": {
- "actions.find.isRegexOverride": "Esegue l'override del contrassegno \"Usa espressione regolare\".\r\nIl contrassegno non verrà salvato per il futuro.\r\n0: Non eseguire alcuna operazione\r\n1: Vero\r\n2: Falso",
- "actions.find.matchCaseOverride": "Esegue l'override del contrassegno \"Fai corrispondere maiuscole/minuscole\".\r\nIl contrassegno non verrà salvato per il futuro.\r\n0: Non eseguire alcuna operazione\r\n1: Vero\r\n2: Falso",
- "actions.find.preserveCaseOverride": "Esegue l'override del contrassegno \"Mantieni maiuscole/minuscole\".\r\nIl contrassegno non verrà salvato per il futuro.\r\n0: Non eseguire alcuna operazione\r\n1: Vero\r\n2: Falso",
- "actions.find.wholeWordOverride": "Esegue l'override del contrassegno \"Corrispondenza parola intera\".\r\nIl contrassegno non verrà salvato per il futuro.\r\n0: Non eseguire alcuna operazione\r\n1: Vero\r\n2: Falso",
+ "findMatchAction.goToMatch": "Andare a Corrispondenza...",
+ "findMatchAction.inputPlaceHolder": "Digitare un numero per passare a una corrispondenza specifica (tra 1 e {0})",
+ "findMatchAction.inputValidationMessage": "Digitare un numero compreso tra 1 e {0}",
+ "findMatchAction.noResults": "Nessuna corrispondenza. Provare a cercare qualcos'altro.",
"findNextMatchAction": "Trova successivo",
"findPreviousMatchAction": "Trova precedente",
"miFind": "&&Trova",
@@ -823,16 +1224,16 @@
"nextSelectionMatchFindAction": "Trova selezione successiva",
"previousSelectionMatchFindAction": "Trova selezione precedente",
"startFindAction": "Trova",
- "startFindWithArgsAction": "Trova con gli argomenti",
+ "startFindWithArgsAction": "Trova con argomenti",
"startFindWithSelectionAction": "Trova con selezione",
- "startReplace": "Sostituisci"
+ "startReplace": "Sostituisci",
+ "too.large.for.replaceall": "Il file è troppo grande per eseguire un'operazione di sostituzione."
},
"vs/editor/contrib/find/browser/findWidget": {
"ariaSearchNoResult": "{0} trovati per '{1}'",
"ariaSearchNoResultEmpty": "{0} trovato",
"ariaSearchNoResultWithLineNum": "{0} trovati per '{1}' alla posizione {2}",
"ariaSearchNoResultWithLineNumNoCurrentMatch": "{0} trovati per '{1}'",
- "ctrlEnter.keybindingChanged": "Il tasto di scelta rapida CTRL+INVIO ora consente di inserire l'interruzione di linea invece di sostituire tutto. Per eseguire l'override di questo comportamento, è possibile modificare il tasto di scelta rapida per editor.action.replaceAll.",
"findCollapsedIcon": "Icona per indicare che il widget di ricerca dell'editor è compresso.",
"findExpandedIcon": "Icona per indicare che il widget di ricerca dell'editor è espanso.",
"findNextMatchIcon": "Icona per 'Trova successivo' nel widget di ricerca dell'editor.",
@@ -842,6 +1243,7 @@
"findSelectionIcon": "Icona per 'Trova nella selezione' nel widget di ricerca dell'editor.",
"label.closeButton": "Chiudi",
"label.find": "Trova",
+ "label.findDialog": "Trova/Sostituisci",
"label.matchesLocation": "{0} di {1}",
"label.nextMatchButton": "Risultato successivo",
"label.noResults": "Nessun risultato",
@@ -856,44 +1258,42 @@
"title.matchesCountLimit": "Solo i primi {0} risultati vengono evidenziati, ma tutte le operazioni di ricerca funzionano su tutto il testo."
},
"vs/editor/contrib/folding/browser/folding": {
- "createManualFoldRange.label": "Create Manual Folding Range from Selection",
- "editorGutter.foldingControlForeground": "Colore del controllo di riduzione nella barra di navigazione dell'editor.",
+ "createManualFoldRange.label": "Creare intervallo di riduzione dalla selezione",
"foldAction.label": "Riduci",
"foldAllAction.label": "Riduci tutto",
"foldAllBlockComments.label": "Riduci tutti i blocchi commento",
- "foldAllExcept.label": "Riduci tutte le regioni eccetto quelle selezionate",
+ "foldAllExcept.label": "Riduci tutto tranne selezionato",
"foldAllMarkerRegions.label": "Riduci tutte le regioni",
- "foldBackgroundBackground": "Colore di sfondo degli intervalli con riduzione. Il colore non deve essere opaco per evitare di nascondere le decorazioni sottostanti.",
"foldLevelAction.label": "Livello riduzione {0}",
"foldRecursivelyAction.label": "Riduci in modo ricorsivo",
"gotoNextFold.label": "Passa all'intervallo di riduzione successivo",
"gotoParentFold.label": "Vai alla cartella principale",
"gotoPreviousFold.label": "Passa all'intervallo di riduzione precedente",
- "maximum fold ranges": "Il numero di aree riducibili è limitato a un massimo di {0}. Aumentare l'opzione di configurazione ['Numero massimo di aree riducibili'](command:workbench.action.openSettings?[\" editor.foldingMaximumRegions\"]) per abilitarne altre.",
- "removeManualFoldingRanges.label": "Remove Manual Folding Ranges",
+ "removeManualFoldingRanges.label": "Rimuovi intervalli di riduzione manuale",
"toggleFoldAction.label": "Attiva/Disattiva riduzione",
+ "toggleFoldRecursivelyAction.label": "Attiva/disattiva riduzione in modo ricorsivo",
+ "toggleImportFold.label": "Attiva/Disattiva importazione riduzione",
"unFoldRecursivelyAction.label": "Espandi in modo ricorsivo",
"unfoldAction.label": "Espandi",
"unfoldAllAction.label": "Espandi tutto",
- "unfoldAllExcept.label": "Espandi tutte le regioni eccetto quelle selezionate",
+ "unfoldAllExcept.label": "Espandi tutto tranne selezionato",
"unfoldAllMarkerRegions.label": "Espandi tutte le regioni"
},
"vs/editor/contrib/folding/browser/foldingDecorations": {
+ "collapsedTextColor": "Colore del testo compresso dopo la prima riga di un intervallo ridotto.",
+ "editorGutter.foldingControlForeground": "Colore del controllo di riduzione nella barra di navigazione dell'editor.",
+ "foldBackgroundBackground": "Colore di sfondo degli intervalli con riduzione. Il colore non deve essere opaco per evitare di nascondere le decorazioni sottostanti.",
"foldingCollapsedIcon": "Icona per gli intervalli compressi nel margine del glifo dell'editor.",
"foldingExpandedIcon": "Icona per gli intervalli espansi nel margine del glifo dell'editor.",
- "foldingManualCollapedIcon": "Icon for manually collapsed ranges in the editor glyph margin.",
- "foldingManualExpandedIcon": "Icon for manually expanded ranges in the editor glyph margin."
+ "foldingManualCollapedIcon": "Icona per gli intervalli compressi nel margine del glifo dell'editor.",
+ "foldingManualExpandedIcon": "Icona per gli intervalli espansi manualmente nel margine del glifo dell'editor.",
+ "linesCollapsed": "Fare clic per espandere l’intervallo.",
+ "linesExpanded": "Fare clic per comprimere l'intervallo."
},
"vs/editor/contrib/fontZoom/browser/fontZoom": {
- "EditorFontZoomIn.label": "Zoom avanti tipo di carattere editor",
- "EditorFontZoomOut.label": "Zoom indietro tipo di carattere editor",
- "EditorFontZoomReset.label": "Reimpostazione zoom tipo di carattere editor"
- },
- "vs/editor/contrib/format/browser/format": {
- "hint11": "È stata apportata 1 modifica di formattazione a riga {0}",
- "hint1n": "È stata apportata 1 modifica di formattazione tra le righe {0} e {1}",
- "hintn1": "Sono state apportate {0} modifiche di formattazione a riga {1}",
- "hintnn": "Sono state apportate {0} modifiche di formattazione tra le righe {1} e {2}"
+ "EditorFontZoomIn.label": "Aumenta le dimensioni del carattere dell'editor",
+ "EditorFontZoomOut.label": "Riduci le dimensioni del carattere dell'editor",
+ "EditorFontZoomReset.label": "Reimposta dimensioni carattere editor"
},
"vs/editor/contrib/format/browser/formatActions": {
"formatDocument.label": "Formatta documento",
@@ -983,8 +1383,8 @@
"vs/editor/contrib/gotoSymbol/browser/referencesModel": {
"aria.fileReferences.1": "1 simbolo in {0}, percorso completo {1}",
"aria.fileReferences.N": "{0} simboli in {1}, percorso completo {2}",
- "aria.oneReference": "simbolo in {0} alla riga {1} colonna {2}",
- "aria.oneReference.preview": "simbolo in {0} alla riga {1} colonna {2}, {3}",
+ "aria.oneReference": "in {0} alla riga {1} della colonna {2}",
+ "aria.oneReference.preview": "{0} in {1} alla riga {2} della colonna {3}",
"aria.result.0": "Non sono stati trovati risultati",
"aria.result.1": "Trovato 1 simbolo in {0}",
"aria.result.n1": "Trovati {0} simboli in {1}",
@@ -995,12 +1395,64 @@
"location": "Simbolo {0} di {1}",
"location.kb": "Simbolo {0} di {1}, {2} per il successivo"
},
- "vs/editor/contrib/hover/browser/hover": {
+ "vs/editor/contrib/gpu/browser/gpuActions": {
+ "drawGlyph.label": "Disegna glifo",
+ "gpuDebug.label": "Sviluppatore: debug renderer GPU editor",
+ "logTextureAtlasStats.label": "Statistiche foglio texture log",
+ "saveTextureAtlas.label": "Salva foglio texture"
+ },
+ "vs/editor/contrib/hover/browser/contentHoverRendered": {
+ "hoverAccessibilityStatusBar": "Questa è una barra di stato al passaggio del mouse.",
+ "hoverAccessibilityStatusBarActionWithKeybinding": "Ha un'azione con etichetta {0} e tasto di scelta rapida {1}.",
+ "hoverAccessibilityStatusBarActionWithoutKeybinding": "Ha un'azione con etichetta {0}."
+ },
+ "vs/editor/contrib/hover/browser/hoverAccessibleViews": {
+ "decreaseVerbosity": "- Il livello di dettaglio della parte con stato attivo al passaggio del mouse può essere ridotto con il comando Riduci livello di dettaglio al passaggio del mouse.",
+ "increaseVerbosity": "- Il livello di dettaglio della parte con stato attivo al passaggio del mouse può essere aumentato con il comando Aumenta livello di dettaglio al passaggio del mouse."
+ },
+ "vs/editor/contrib/hover/browser/hoverActionIds": {
+ "decreaseHoverVerbosityLevel": "Riduci livello di dettaglio al passaggio del mouse",
+ "increaseHoverVerbosityLevel": "Aumenta livello di dettaglio al passaggio del mouse"
+ },
+ "vs/editor/contrib/hover/browser/hoverActions": {
+ "goToBottomHover": "Vai in basso al passaggio del mouse",
+ "goToBottomHoverDescription": "Vai alla parte inferiore dell'editor al passaggio del mouse.",
+ "goToTopHover": "Vai in alto al passaggio del mouse",
+ "goToTopHoverDescription": "Vai alla parte superiore dell'editor al passaggio del mouse.",
+ "hideHover": "Nascondi al passaggio del mouse",
+ "pageDownHover": "Vai alla pagina successiva al passaggio del mouse",
+ "pageDownHoverDescription": "Vai alla pagina successiva dell'editor al passaggio del mouse.",
+ "pageUpHover": "Vai alla pagina precedente al passaggio del mouse",
+ "pageUpHoverDescription": "Vai alla pagina precedente dell'editor al passaggio del mouse.",
+ "scrollDownHover": "Scorri verso il basso al passaggio del mouse",
+ "scrollDownHoverDescription": "Scorri in basso nell'editor al passaggio del mouse.",
+ "scrollLeftHover": "Scorri a sinistra al passaggio del mouse",
+ "scrollLeftHoverDescription": "Scorri a sinistra dell'editor al passaggio del mouse.",
+ "scrollRightHover": "Scorri a destra al passaggio del mouse",
+ "scrollRightHoverDescription": "Scorri a destra dell'editor al passaggio del mouse.",
+ "scrollUpHover": "Scorri verso l'alto al passaggio del mouse",
+ "scrollUpHoverDescription": "Scorri verso l'alto l'editor al passaggio del mouse.",
"showDefinitionPreviewHover": "Mostra anteprima definizione al passaggio del mouse",
- "showHover": "Visualizza passaggio del mouse"
+ "showDefinitionPreviewHoverDescription": "Mostra l'anteprima della definizione nell'editor al passaggio del mouse.",
+ "showOrFocusHover": "Mostra o sposta lo stato attivo al passaggio del mouse",
+ "showOrFocusHover.focus.autoFocusImmediately": "Il passaggio del mouse assume automaticamente lo stato attivo quando viene visualizzato.",
+ "showOrFocusHover.focus.focusIfVisible": "Il passaggio del mouse attiverà lo stato attivo solo se è già visibile.",
+ "showOrFocusHover.focus.noAutoFocus": "Il passaggio del mouse non attiverà automaticamente lo stato attivo.",
+ "showOrFocusHoverDescription": "Mostra o sposta lo stato attivo sull'editor al passaggio del mouse, che mostra documentazione, riferimenti e altro contenuto per un simbolo nella posizione corrente del cursore."
+ },
+ "vs/editor/contrib/hover/browser/hoverCopyButton": {
+ "hover.copied": "Copiato negli Appunti",
+ "hover.copy": "Copia"
},
"vs/editor/contrib/hover/browser/markdownHoverParticipant": {
+ "decreaseHoverVerbosity": "Icona per ridurre il livello di dettaglio al passaggio del mouse.",
+ "decreaseVerbosity": "Riduci livello di dettaglio al passaggio del mouse",
+ "decreaseVerbosityWithKb": "Riduci livello di dettaglio al passaggio del mouse ({0})",
+ "increaseHoverVerbosity": "Icona per aumentare il livello di dettaglio al passaggio del mouse.",
+ "increaseVerbosity": "Aumenta livello di dettaglio al passaggio del mouse",
+ "increaseVerbosityWithKb": "Aumenta livello di dettaglio al passaggio del mouse ({0})",
"modesContentHover.loading": "Caricamento...",
+ "stopped rendering": "Rendering sospeso per una linea lunga per motivi di prestazioni. Può essere configurato tramite 'editor.stopRenderingLineAfter'.",
"too many characters": "Per motivi di prestazioni la tokenizzazione viene ignorata per le righe lunghe. È possibile effettuare questa configurazione tramite `editor.maxTokenizationLineLength`."
},
"vs/editor/contrib/hover/browser/markerHoverParticipant": {
@@ -1009,24 +1461,31 @@
"quick fixes": "Correzione rapida...",
"view problem": "Visualizza problema"
},
- "vs/editor/contrib/inPlaceReplace/browser/inPlaceReplace": {
- "InPlaceReplaceAction.next.label": "Sostituisci con il valore successivo",
- "InPlaceReplaceAction.previous.label": "Sostituisci con il valore precedente"
- },
"vs/editor/contrib/indentation/browser/indentation": {
+ "changeTabDisplaySize": "Modifica dimensioni visualizzazione scheda",
+ "changeTabDisplaySizeDescription": "Modifica l'equivalente della dimensione dello spazio della scheda.",
"configuredTabSize": "Dimensione tabulazione configurata",
+ "currentTabSize": "Dimensioni della scheda corrente",
+ "defaultTabSize": "Dimensioni predefinite della scheda",
"detectIndentation": "Rileva rientro dal contenuto",
+ "detectIndentationDescription": "Rilevare il rientro dal contenuto.",
"editor.reindentlines": "Imposta nuovo rientro per righe",
+ "editor.reindentlinesDescription": "Imposta nuovamente un rientro per le righe dell'editor.",
"editor.reindentselectedlines": "Re-Indenta le Linee Selezionate",
+ "editor.reindentselectedlinesDescription": "Imposta nuovamente un rientro per determinate righe dell'editor.",
"indentUsingSpaces": "Imposta rientro con spazi",
+ "indentUsingSpacesDescription": "Usa il rientro con gli spazi.",
"indentUsingTabs": "Imposta rientro con tabulazioni",
+ "indentUsingTabsDescription": "Usa il rientro con le tabulazioni.",
"indentationToSpaces": "Converti rientro in spazi",
+ "indentationToSpacesDescription": "Converti il rientro della tabulazione in spazi.",
"indentationToTabs": "Converti rientro in tabulazioni",
+ "indentationToTabsDescription": "Converti il rientro degli spazi in tabulazioni.",
"selectTabWidth": "Seleziona dimensione tabulazione per il file corrente"
},
"vs/editor/contrib/inlayHints/browser/inlayHintsHover": {
"hint.cmd": "Esegui il comando",
- "hint.dbl": "Fai doppio clic per inserire",
+ "hint.dbl": "Fare doppio clic per inserire",
"hint.def": "Vai alla definizione ({0})",
"hint.defAndCommand": "Vai alla definizione ({0}), fai clic con il pulsante destro del mouse per altre informazioni",
"links.navigate.kb.alt": "ALT+clic",
@@ -1034,27 +1493,105 @@
"links.navigate.kb.meta": "CTRL+clic",
"links.navigate.kb.meta.mac": "CMD+clic"
},
- "vs/editor/contrib/inlineCompletions/browser/ghostTextController": {
+ "vs/editor/contrib/inlineCompletions/browser/controller/commands": {
+ "accept": "Accetta",
+ "acceptLine": "Accetta riga",
+ "acceptWord": "Accetta parola",
+ "action.inlineSuggest.accept": "Accetta suggerimento inline",
+ "action.inlineSuggest.acceptNextLine": "Accetta la riga successiva del suggerimento in linea",
+ "action.inlineSuggest.acceptNextWord": "Accettare suggerimento inline per la parola successiva",
+ "action.inlineSuggest.alwaysShowToolbar": "Mostra sempre la barra degli strumenti",
+ "action.inlineSuggest.dev.extractRepro": "Sviluppatore: estrai stato suggerimenti inline",
+ "action.inlineSuggest.hide": "Nascondi suggerimento inline",
+ "action.inlineSuggest.jump": "Passa alla modifica inline successiva",
"action.inlineSuggest.showNext": "Mostrare suggerimento inline successivo",
"action.inlineSuggest.showPrevious": "Mostrare suggerimento inline precedente",
- "action.inlineSuggest.trigger": "Trigger del suggerimento inline",
+ "action.inlineSuggest.toggleShowCollapsed": "Mostra/Nascondi suggerimenti inline - Mostra compressi",
+ "action.inlineSuggest.trigger": "Attiva suggerimento inline",
+ "inlineSuggest.trigger.args": "Opzioni di attivazione dei suggerimenti inline.",
+ "inlineSuggest.trigger.description": "Attiva un suggerimento inline nell'editor.",
+ "jump": "Passare direttamente",
+ "noInlineSuggestionAvailable": "Nessun suggerimento inline disponibile.",
+ "reject": "Reject"
+ },
+ "vs/editor/contrib/inlineCompletions/browser/controller/inlineCompletionContextKeys": {
+ "cursorAtInlineEdit": "Indica se il cursore si trova in corrispondenza di una modifica inline",
+ "cursorBeforeGhostText": "Indica se il cursore si trova su testo fantasma",
+ "cursorInIndentation": "Indica se il cursore è in rientro",
+ "editor.hasSelection": "Indica se l'editor ha una selezione",
+ "inInlineEditsPreviewEditor": "Indica se l'editor di codice corrente mostra un'anteprima delle modifiche incorporate",
+ "inlineEditVisible": "Indica se una modifica inline è visibile",
"inlineSuggestionHasIndentation": "Se il suggerimento in linea inizia con spazi vuoti",
"inlineSuggestionHasIndentationLessThanTabSize": "Indica se il suggerimento inline inizia con uno spazio vuoto minore di quello che verrebbe inserito dalla tabulazione",
- "inlineSuggestionVisible": "Se è visibile un suggerimento inline"
+ "inlineSuggestionVisible": "Se è visibile un suggerimento inline",
+ "suppressSuggestions": "Indica se i suggerimenti devono essere eliminati per il suggerimento corrente",
+ "tabShouldAcceptInlineEdit": "Controlla se la scheda deve accettare la modifica inline.",
+ "tabShouldJumpToInlineEdit": "Controlla se la scheda deve passare direttamente a una modifica inline."
+ },
+ "vs/editor/contrib/inlineCompletions/browser/controller/inlineCompletionsController": {
+ "showAccessibleViewHint": "Ispezionarlo nella visualizzazione accessibile ({0})"
+ },
+ "vs/editor/contrib/inlineCompletions/browser/hintsWidget/hoverParticipant": {
+ "hoverAccessibilityStatusBar": "Qui sono disponibili completamenti inline",
+ "inlineSuggestionFollows": "Suggerimento:"
},
- "vs/editor/contrib/inlineCompletions/browser/ghostTextHoverParticipant": {
- "acceptInlineSuggestion": "Accettare",
- "inlineSuggestionFollows": "Suggerimento:",
- "showNextInlineSuggestion": "Avanti",
- "showPreviousInlineSuggestion": "Indietro"
+ "vs/editor/contrib/inlineCompletions/browser/hintsWidget/inlineCompletionsHintsWidget": {
+ "content": "{0} ({1})",
+ "next": "Avanti",
+ "parameterHintsNextIcon": "Icona per visualizzare il suggerimento del parametro successivo.",
+ "parameterHintsPreviousIcon": "Icona per visualizzare il suggerimento del parametro precedente.",
+ "previous": "Indietro"
+ },
+ "vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/components/gutterIndicatorMenu": {
+ "accept": "Accetta",
+ "goto": "Vai a",
+ "reject": "Rifiuta",
+ "settings": "Impostazioni",
+ "showCollapsed": "Mostra compresso",
+ "showExpanded": "Mostra espanso",
+ "snooze": "Posponi"
+ },
+ "vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/components/gutterIndicatorView": {
+ "inlineSuggestion": "Suggerimento inline"
+ },
+ "vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/theme": {
+ "inlineEdit.gutterIndicator.background": "Colore di sfondo per l'indicatore di navigazione di modifica inline.",
+ "inlineEdit.gutterIndicator.primaryBackground": "Colore di sfondo per l'indicatore di navigazione di modifica inline principale.",
+ "inlineEdit.gutterIndicator.primaryBorder": "Colore del bordo per l'indicatore principale di modifica inline.",
+ "inlineEdit.gutterIndicator.primaryForeground": "Colore primo piano per l'indicatore di navigazione di modifica inline principale.",
+ "inlineEdit.gutterIndicator.secondaryBackground": "Colore di sfondo per l'indicatore di navigazione di modifica inline secondario.",
+ "inlineEdit.gutterIndicator.secondaryBorder": "Colore del bordo per l'indicatore secondario di modifica inline.",
+ "inlineEdit.gutterIndicator.secondaryForeground": "Colore primo piano per l'indicatore di navigazione di modifica inline secondario.",
+ "inlineEdit.gutterIndicator.successfulBackground": "Colore di sfondo per l'indicatore di navigazione di modifica inline riuscito.",
+ "inlineEdit.gutterIndicator.successfulBorder": "Colore del bordo per l'indicatore di riuscita della modifica inline.",
+ "inlineEdit.gutterIndicator.successfulForeground": "Colore primo piano per l'indicatore di navigazione di modifica inline riuscito.",
+ "inlineEdit.modifiedBackground": "Colore di sfondo per il testo modificato nelle modifiche incorporate.",
+ "inlineEdit.modifiedBorder": "Colore del bordo per il testo modificato nelle modifiche incorporate.",
+ "inlineEdit.modifiedChangedLineBackground": "Colore di sfondo per le righe modificate nel testo modificato delle modifiche inline.",
+ "inlineEdit.modifiedChangedTextBackground": "Colore sovrapposto per il testo modificato nel testo modificato delle modifiche inline.",
+ "inlineEdit.originalBackground": "Colore di sfondo per il testo originale nelle modifiche incorporate.",
+ "inlineEdit.originalBorder": "Colore del bordo per il testo originale nelle modifiche incorporate.",
+ "inlineEdit.originalChangedLineBackground": "Colore di sfondo per le righe modificate nel testo originale delle modifiche incorporate.",
+ "inlineEdit.originalChangedTextBackground": "Colore sovrapposto per il testo modificato nel testo originale delle modifiche inline.",
+ "inlineEdit.tabWillAcceptModifiedBorder": "Colore del bordo modificato per il widget delle modifiche inline quando la scheda lo accetterà.",
+ "inlineEdit.tabWillAcceptOriginalBorder": "Colore del bordo originale per il widget delle modifiche inline sul testo originale quando la scheda lo accetterà."
+ },
+ "vs/editor/contrib/inPlaceReplace/browser/inPlaceReplace": {
+ "InPlaceReplaceAction.next.label": "Sostituisci con il valore successivo",
+ "InPlaceReplaceAction.previous.label": "Sostituisci con il valore precedente"
+ },
+ "vs/editor/contrib/insertFinalNewLine/browser/insertFinalNewLine": {
+ "insertFinalNewLine": "Inserisci nuova riga finale"
},
"vs/editor/contrib/lineSelection/browser/lineSelection": {
"expandLineSelection": "Espandere selezione riga"
},
"vs/editor/contrib/linesOperations/browser/linesOperations": {
"duplicateSelection": "Duplica selezione",
+ "editor.transformToCamelcase": "Trasforma in caso Camel",
"editor.transformToKebabcase": "Trasformare in caso Kebab",
"editor.transformToLowercase": "Converti in minuscolo",
+ "editor.transformToPascalcase": "Trasforma in Pascal Case",
"editor.transformToSnakecase": "Trasforma in snake case",
"editor.transformToTitlecase": "Trasforma in Tutte Iniziali Maiuscole",
"editor.transformToUppercase": "Converti in maiuscolo",
@@ -1072,6 +1609,7 @@
"lines.moveDown": "Sposta la riga in basso",
"lines.moveUp": "Sposta la riga in alto",
"lines.outdent": "Riduci il rientro per la riga",
+ "lines.reverseLines": "Inverti le righe",
"lines.sortAscending": "Ordinamento righe crescente",
"lines.sortDescending": "Ordinamento righe decrescente",
"lines.trimTrailingWhitespace": "Taglia spazio vuoto finale",
@@ -1114,8 +1652,8 @@
"miSelectHighlights": "Seleziona &&tutte le occorrenze",
"moveSelectionToNextFindMatch": "Sposta ultima selezione a risultato ricerca successivo",
"moveSelectionToPreviousFindMatch": "Sposta ultima selezione a risultato ricerca precedente",
- "mutlicursor.addCursorsToBottom": "Aggiungi cursori alla fine",
- "mutlicursor.addCursorsToTop": "Aggiungi cursori all'inizio",
+ "mutlicursor.addCursorsToBottom": "Aggiungi cursori in basso",
+ "mutlicursor.addCursorsToTop": "Aggiungi cursori in alto",
"mutlicursor.focusNextCursor": "Attival cursore successivo",
"mutlicursor.focusNextCursor.description": "Attiva il cursore successivo",
"mutlicursor.focusPreviousCursor": "Cursore precedente stato attivo",
@@ -1142,6 +1680,8 @@
"peekViewEditorGutterBackground": "Colore di sfondo della barra di navigazione nell'editor visualizzazione rapida.",
"peekViewEditorMatchHighlight": "Colore dell'evidenziazione delle corrispondenze nell'editor di visualizzazioni rapide.",
"peekViewEditorMatchHighlightBorder": "Bordo dell'evidenziazione delle corrispondenze nell'editor di visualizzazioni rapide.",
+ "peekViewEditorStickScrollBackground": "Colore di sfondo della barra di scorrimento permanente nell'editor visualizzazione rapida.",
+ "peekViewEditorStickyScrollGutterBackground": "Colore di sfondo della parte di rilegatura della barra di scorrimento permanente nell'editor di visualizzazione rapida.",
"peekViewResultsBackground": "Colore di sfondo dell'elenco risultati della visualizzazione rapida.",
"peekViewResultsFileForeground": "Colore primo piano dei nodi file nell'elenco risultati della visualizzazione rapida.",
"peekViewResultsMatchForeground": "Colore primo piano dei nodi riga nell'elenco risultati della visualizzazione rapida.",
@@ -1152,12 +1692,19 @@
"peekViewTitleForeground": "Colore del titolo della visualizzazione rapida.",
"peekViewTitleInfoForeground": "Colore delle informazioni del titolo della visualizzazione rapida."
},
+ "vs/editor/contrib/placeholderText/browser/placeholderText.contribution": {
+ "placeholderForeground": "Colore primo piano del testo segnaposto nell'editor."
+ },
"vs/editor/contrib/quickAccess/browser/gotoLineQuickAccess": {
- "cannotRunGotoLine": "Aprire prima un editor di testo per passare a una riga.",
- "gotoLineColumnLabel": "Vai a riga {0} e carattere {1}.",
- "gotoLineLabel": "Vai alla riga {0}.",
- "gotoLineLabelEmpty": "Riga corrente: {0}, Carattere: {1}. Digitare un numero di riga a cui passare.",
- "gotoLineLabelEmptyWithLimit": "Riga corrente: {0}, carattere: {1}. Digitare un numero di riga a cui passare compreso tra 1 e {2}."
+ "gotoLine.ariaLabel": "Posizione corrente: riga {0}, colonna {1}. {2}",
+ "gotoLine.columnPrompt": "Premere 'INVIO' per passare alla riga {0} o immettere un numero di colonna (da 1 a {1}).",
+ "gotoLine.goToPosition": "Premere 'INVIO' per passare alla riga {0} nella colonna {1}.",
+ "gotoLine.lineColumnPrompt": "Premere 'INVIO' per passare alla riga {0} o immettere due punti (:) per aggiungere un numero di colonna.",
+ "gotoLine.linePrompt": "Digitare un numero di riga a cui passare (da 1 a {0}).",
+ "gotoLine.noEditor": "Aprire prima un editor di testo per passare a una riga o an offset.",
+ "gotoLine.offsetPrompt": "Digitare la posizione del carattere a cui passare (da 1 a {0}).",
+ "gotoLine.offsetPromptZero": "Digitare la posizione del carattere a cui passare (da 0 a {0}).",
+ "gotoLineToggle": "Usa offset basato su zero"
},
"vs/editor/contrib/quickAccess/browser/gotoSymbolQuickAccess": {
"_constructor": "costruttori ({0})",
@@ -1200,6 +1747,8 @@
"vs/editor/contrib/rename/browser/rename": {
"aria": "Correttamente rinominato '{0}' in '{1}'. Sommario: {2}",
"enablePreview": "Abilita/Disabilita l'opzione per visualizzare le modifiche in anteprima prima della ridenominazione",
+ "focusNextRenameSuggestion": "Sposta lo stato attivo sul suggerimento di ridenominazione successiva",
+ "focusPreviousRenameSuggestion": "Sposta lo stato attivo sul suggerimento di ridenominazione precedente",
"label": "Ridenominazione di '{0}' in '{1}'",
"no result": "Nessun risultato.",
"quotableLabel": "Ridenominazione di {0} in {1}",
@@ -1208,10 +1757,14 @@
"rename.label": "Rinomina simbolo",
"resolveRenameLocationFailed": "Si è verificato un errore sconosciuto durante la risoluzione del percorso di ridenominazione"
},
- "vs/editor/contrib/rename/browser/renameInputField": {
+ "vs/editor/contrib/rename/browser/renameWidget": {
+ "cancelRenameSuggestionsButton": "Annulla",
+ "generateRenameSuggestionsButton": "Genera nuovi suggerimenti per i nomi",
"label": "{0} per rinominare, {1} per visualizzare in anteprima",
"renameAriaLabel": "Consente di rinominare l'input. Digitare il nuovo nome e premere INVIO per eseguire il commit.",
- "renameInputVisible": "Indica se il widget di ridenominazione input è visibile"
+ "renameInputFocused": "Indica se il widget di ridenominazione input è attivo",
+ "renameInputVisible": "Indica se il widget di ridenominazione input è visibile",
+ "renameSuggestionsReceivedAria": "{0} suggerimenti di ridenominazione ricevuti"
},
"vs/editor/contrib/smartSelect/browser/smartSelect": {
"miSmartSelectGrow": "Espan&&di selezione",
@@ -1265,6 +1818,19 @@
"Wednesday": "Mercoledì",
"WednesdayShort": "Mer"
},
+ "vs/editor/contrib/stickyScroll/browser/stickyScrollActions": {
+ "focusStickyScroll": "Focus sullo scorrimento permanente dell'editor",
+ "goToFocusedStickyScrollLine.title": "Vai alla riga di scorrimento permanente con stato attivo",
+ "miStickyScroll": "&&Scorrimento permanente",
+ "mifocusEditorStickyScroll": "&&Focus sullo scorrimento permanente dell'editor",
+ "mitoggleStickyScroll": "&&Attiva/disattiva scorrimento permanente dell'editor",
+ "selectEditor.title": "Selezionare l'editor",
+ "selectNextStickyScrollLine.title": "Seleziona la riga di scorrimento permanente successiva dell'editor",
+ "selectPreviousStickyScrollLine.title": "Seleziona la riga di scorrimento permanente precedente",
+ "stickyScroll": "Scorrimento permanente",
+ "toggleEditorStickyScroll": "Attiva/disattiva scorrimento permanente dell'editor",
+ "toggleEditorStickyScroll.description": "Attiva/disattiva/abilita lo scorrimento permanente dell'editor che mostra gli ambiti annidati nella parte superiore del riquadro di visualizzazione"
+ },
"vs/editor/contrib/suggest/browser/suggest": {
"acceptSuggestionOnEnter": "Indica se i suggerimenti vengono inseriti quando si preme INVIO",
"suggestWidgetDetailsVisible": "Indica se i dettagli dei suggerimenti sono visibili",
@@ -1279,8 +1845,8 @@
"accept.insert": "Inserisci",
"accept.replace": "Sostituisci",
"aria.alert.snippet": "In seguito all'accettazione di '{0}' sono state apportate altre {1} modifiche",
- "detail.less": "mostra dettagli",
- "detail.more": "nascondi dettagli",
+ "detail.less": "Mostra di più",
+ "detail.more": "Mostra meno",
"suggest.reset.label": "Reimposta le dimensioni del widget dei suggerimenti",
"suggest.trigger.label": "Attiva suggerimento"
},
@@ -1295,9 +1861,10 @@
"editorSuggestWidgetSelectedForeground": "Colore primo piano della voce selezionata del widget dei suggerimenti.",
"editorSuggestWidgetSelectedIconForeground": "Colore primo piano dell’icona della voce selezionata del widget dei suggerimenti.",
"editorSuggestWidgetStatusForeground": "Colore primo piano dello stato del widget dei suggerimenti.",
- "label.desc": "{0}, {1}",
- "label.detail": "{0} {1}",
- "label.full": "({0},{1}) {2}",
+ "label": "{0}, {1}",
+ "label.desc": "{0}, {1}, {2}",
+ "label.detail": "{0} {1}, {2}",
+ "label.full": "{0} {1}, {2}, {3}",
"suggest": "Suggerisci",
"suggestWidget.loading": "Caricamento...",
"suggestWidget.noSuggestions": "Non ci sono suggerimenti."
@@ -1310,8 +1877,8 @@
"readMore": "Altre informazioni",
"suggestMoreInfoIcon": "Icona per visualizzare altre informazioni nel widget dei suggerimenti."
},
- "vs/editor/contrib/suggest/browser/suggestWidgetStatus": {
- "ddd": "{0} ({1})"
+ "vs/editor/contrib/suggest/browser/wordContextKey": {
+ "desc": "Chiave di contesto true alla fine di una parola. Si noti che questa opzione è definita solo quando sono abilitati i completamenti a schede"
},
"vs/editor/contrib/symbolIcons/browser/symbolIcons": {
"symbolIcon.arrayForeground": "Colore primo piano per i simboli di matrice. Questi simboli vengono visualizzati nella struttura, nell'elemento di navigazione e nel widget dei suggerimenti.",
@@ -1349,6 +1916,7 @@
"symbolIcon.variableForeground": "Colore primo piano per i simboli di variabile. Questi simboli vengono visualizzati nella struttura, nell'elemento di navigazione e nel widget dei suggerimenti."
},
"vs/editor/contrib/toggleTabFocusMode/browser/toggleTabFocusMode": {
+ "tabMovesFocusDescriptions": "Determina se il tasto TAB sposta lo stato attivo intorno all'area di lavoro o inserisce il carattere di tabulazione nell'editor corrente. È anche denominato intercettazione delle tabulazioni, spostamento tra le tabulazioni, o modalità focus delle tabulazioni.",
"toggle.tabMovesFocus": "Attiva/Disattiva l'uso di TAB per spostare lo stato attivo",
"toggle.tabMovesFocus.off": "Se si preme TAB, verrà inserito il carattere di tabulazione",
"toggle.tabMovesFocus.on": "Se si preme TAB, lo stato attivo verrà spostato sull'elemento con stato attivabile successivo."
@@ -1356,6 +1924,9 @@
"vs/editor/contrib/tokenization/browser/tokenization": {
"forceRetokenize": "Sviluppatore: Forza retokenizzazione"
},
+ "vs/editor/contrib/unicodeHighlighter/browser/bannerController": {
+ "closeBanner": "Chiudi banner"
+ },
"vs/editor/contrib/unicodeHighlighter/browser/unicodeHighlighter": {
"action.unicodeHighlight.disableHighlightingInComments": "Disabilita l'evidenziazione dei caratteri nei commenti",
"action.unicodeHighlight.disableHighlightingInStrings": "Disabilita l'evidenziazione dei caratteri nelle stringhe",
@@ -1366,6 +1937,7 @@
"unicodeHighlight.adjustSettings": "Modificare impostazioni",
"unicodeHighlight.allowCommonCharactersInLanguage": "Consentire i caratteri Unicode più comuni nel linguaggio \"{0}\".",
"unicodeHighlight.characterIsAmbiguous": "Il carattere {0} potrebbe essere confuso con il carattere {1}, che è più comune nel codice sorgente.",
+ "unicodeHighlight.characterIsAmbiguousASCII": "Il carattere {0} potrebbe essere confuso con il carattere ASCII {1}, che è più comune nel codice sorgente.",
"unicodeHighlight.characterIsInvisible": "Il carattere {0} è invisibile.",
"unicodeHighlight.characterIsNonBasicAscii": "Il carattere {0} non è un carattere ASCII di base.",
"unicodeHighlight.configureUnicodeHighlightOptions": "Configurare opzioni evidenziazione Unicode",
@@ -1383,42 +1955,147 @@
},
"vs/editor/contrib/unusualLineTerminators/browser/unusualLineTerminators": {
"unusualLineTerminators.detail": "Il file \"\r\n\" contiene uno o più caratteri di terminazione di riga insoliti, ad esempio separatore di riga (LS) o separatore di paragrafo (PS).{0}\r\nÈ consigliabile rimuoverli dal file. È possibile configurare questa opzione tramite `editor.unusualLineTerminators`.",
- "unusualLineTerminators.fix": "Rimuovi i caratteri di terminazione di riga insoliti",
+ "unusualLineTerminators.fix": "&&Rimuovi i caratteri di terminazione di riga insoliti",
"unusualLineTerminators.ignore": "Ignora",
"unusualLineTerminators.message": "Sono stati rilevati caratteri di terminazione di riga insoliti",
"unusualLineTerminators.title": "Caratteri di terminazione di riga insoliti"
},
- "vs/editor/contrib/wordHighlighter/browser/wordHighlighter": {
+ "vs/editor/contrib/wordHighlighter/browser/highlightDecorations": {
"overviewRulerWordHighlightForeground": "Colore del marcatore del righello delle annotazioni per le evidenziazioni dei simboli. Il colore non deve essere opaco per evitare di nascondere le decorazioni sottostanti.",
"overviewRulerWordHighlightStrongForeground": "Colore del marcatore del righello delle annotazioni per le evidenziazioni dei simboli di accesso in scrittura. Il colore non deve essere opaco per evitare di nascondere le decorazioni sottostanti.",
+ "overviewRulerWordHighlightTextForeground": "Colore del marcatore del righello delle annotazioni di un'occorrenza testuale per un simbolo. Il colore non deve essere opaco per evitare di nascondere le decorazioni sottostanti.",
"wordHighlight": "Colore di sfondo di un simbolo durante l'accesso in lettura, ad esempio durante la lettura di una variabile. Il colore non deve essere opaco per evitare di nascondere le decorazioni sottostanti.",
- "wordHighlight.next.label": "Vai al prossimo simbolo evidenziato",
- "wordHighlight.previous.label": "Vai al precedente simbolo evidenziato",
- "wordHighlight.trigger.label": "Attiva/disattiva evidenziazione simbolo",
"wordHighlightBorder": "Colore del bordo di un simbolo durante l'accesso in lettura, ad esempio durante la lettura di una variabile.",
"wordHighlightStrong": "Colore di sfondo di un simbolo durante l'accesso in scrittura, ad esempio durante la scrittura in una variabile. Il colore non deve essere opaco per evitare di nascondere le decorazioni sottostanti.",
- "wordHighlightStrongBorder": "Colore del bordo di un simbolo durante l'accesso in scrittura, ad esempio durante la scrittura in una variabile."
+ "wordHighlightStrongBorder": "Colore del bordo di un simbolo durante l'accesso in scrittura, ad esempio durante la scrittura in una variabile.",
+ "wordHighlightText": "Colore di sfondo di un'occorrenza testuale per un simbolo. Il colore non deve essere opaco per evitare di nascondere le decorazioni sottostanti.",
+ "wordHighlightTextBorder": "Colore del bordo di un'occorrenza testuale per un simbolo."
+ },
+ "vs/editor/contrib/wordHighlighter/browser/wordHighlighter": {
+ "wordHighlight.next.label": "Vai al prossimo simbolo evidenziato",
+ "wordHighlight.previous.label": "Vai al precedente simbolo evidenziato",
+ "wordHighlight.trigger.label": "Attiva/disattiva evidenziazione simbolo"
},
"vs/editor/contrib/wordOperations/browser/wordOperations": {
"deleteInsideWord": "Elimina parola"
},
+ "vs/platform/accessibilitySignal/browser/accessibilitySignalService": {
+ "accessibility.signals.chatEditModifiedFile": "File modificato da modifiche della chat",
+ "accessibility.signals.chatRequestSent": "Richiesta di chat inviata",
+ "accessibility.signals.chatUserActionRequired": "È richiesta un'azione dell'utente chat",
+ "accessibility.signals.clear": "Cancella",
+ "accessibility.signals.codeActionRequestTriggered": "Richiesta di azione del codice attivata",
+ "accessibility.signals.editsKept": "Modifiche mantenute",
+ "accessibility.signals.editsUndone": "Modifiche annullate",
+ "accessibility.signals.format": "Formato",
+ "accessibility.signals.lineHasBreakpoint": "Punto di interruzione",
+ "accessibility.signals.lineHasError": "Errore sulla riga",
+ "accessibility.signals.lineHasFoldedArea": "Ridotto",
+ "accessibility.signals.lineHasWarning": "Avviso sulla riga",
+ "accessibility.signals.nextEditSuggestion": "Suggerimento di modifica successivo",
+ "accessibility.signals.noInlayHints": "Nessun suggerimento per l'inlay",
+ "accessibility.signals.notebookCellCompleted": "Cella del notebook completata",
+ "accessibility.signals.notebookCellFailed": "La cella del notebook ha avuto esito negativo",
+ "accessibility.signals.onDebugBreak": "Punto di interruzione",
+ "accessibility.signals.positionHasError": "Errore",
+ "accessibility.signals.positionHasWarning": "Avviso",
+ "accessibility.signals.progress": "Avanzamento",
+ "accessibility.signals.save": "Salva",
+ "accessibility.signals.taskCompleted": "Attività completata",
+ "accessibility.signals.taskFailed": "Attività non riuscita",
+ "accessibility.signals.terminalBell": "Campanello terminale",
+ "accessibility.signals.terminalCommandFailed": "Comando non riuscito",
+ "accessibility.signals.terminalCommandSucceeded": "Comando riuscito",
+ "accessibility.signals.terminalQuickFix": "Correzione rapida",
+ "accessibilitySignals.chatEditModifiedFile": "Modifica file modificato della chat",
+ "accessibilitySignals.chatRequestSent": "Richiesta chat inviata",
+ "accessibilitySignals.chatResponseReceived": "Risposta chat ricevuta",
+ "accessibilitySignals.chatUserActionRequired": "È richiesta un'azione dell'utente chat",
+ "accessibilitySignals.clear": "Cancella",
+ "accessibilitySignals.codeActionApplied": "Azione del codice applicata",
+ "accessibilitySignals.codeActionRequestTriggered": "Richiesta di azione del codice attivata",
+ "accessibilitySignals.diffLineDeleted": "Riga diff eliminata",
+ "accessibilitySignals.diffLineInserted": "Riga diff inserita",
+ "accessibilitySignals.diffLineModified": "Riga diff modificata",
+ "accessibilitySignals.editsKept": "Modifiche mantenute",
+ "accessibilitySignals.editsUndone": "Annulla modifiche",
+ "accessibilitySignals.format": "Formato",
+ "accessibilitySignals.lineHasBreakpoint.name": "Punto di interruzione sulla riga",
+ "accessibilitySignals.lineHasError.name": "Errore sulla riga",
+ "accessibilitySignals.lineHasFoldedArea.name": "Area piegata sulla linea",
+ "accessibilitySignals.lineHasInlineSuggestion.name": "Suggerimento inline sulla riga",
+ "accessibilitySignals.lineHasWarning.name": "Avviso sulla riga",
+ "accessibilitySignals.nextEditSuggestion.name": "Suggerimento di modifica successivo sulla riga",
+ "accessibilitySignals.noInlayHints": "Nessun suggerimento per l'inlay nella riga",
+ "accessibilitySignals.notebookCellCompleted": "Cella del notebook completata",
+ "accessibilitySignals.notebookCellFailed": "La cella del notebook ha avuto esito negativo",
+ "accessibilitySignals.onDebugBreak.name": "Debugger arrestato sul punto di interruzione",
+ "accessibilitySignals.positionHasError.name": "Errore nella funzione",
+ "accessibilitySignals.positionHasWarning.name": "Avviso nella funzione",
+ "accessibilitySignals.progress": "Avanzamento",
+ "accessibilitySignals.save": "Salva",
+ "accessibilitySignals.taskCompleted": "Attività completata",
+ "accessibilitySignals.taskFailed": "Attività non riuscita",
+ "accessibilitySignals.terminalBell": "Campanello terminale",
+ "accessibilitySignals.terminalCommandFailed": "Comando terminale non riuscito",
+ "accessibilitySignals.terminalCommandSucceeded": "Comando terminale riuscito",
+ "accessibilitySignals.terminalQuickFix.name": "Correzione rapida terminale",
+ "accessibilitySignals.voiceRecordingStarted": "Registrazione vocale avviata",
+ "accessibilitySignals.voiceRecordingStopped": "Registrazione vocale interrotta"
+ },
+ "vs/platform/action/common/actionCommonCategories": {
+ "developer": "Sviluppatore",
+ "file": "FILE",
+ "help": "Guida",
+ "preferences": "Preferenze",
+ "test": "Test",
+ "view": "Visualizza"
+ },
+ "vs/platform/actions/browser/buttonbar": {
+ "labelWithKeybinding": "{0} ({1})",
+ "moreActions": "Altre azioni"
+ },
+ "vs/platform/actions/browser/dropdownActionViewItemWithKeybinding": {
+ "titleAndKb": "{0} ({1})"
+ },
"vs/platform/actions/browser/menuEntryActionViewItem": {
+ "content": "{0} ({1})",
+ "content2": "{1} per {0}",
"titleAndKb": "{0} ({1})",
"titleAndKbAndAlt": "{0}\r\n[{1}] {2}"
},
+ "vs/platform/actions/browser/toolbar": {
+ "hide": "Nascondi",
+ "resetThisMenu": "Reimposta menu"
+ },
"vs/platform/actions/common/menuResetAction": {
- "cat": "Visualizza",
- "title": "Reimposta menu nascosti"
+ "title": "Reimposta tutti i menu"
},
"vs/platform/actions/common/menuService": {
+ "configure keybinding": "Configura tasto di scelta rapida",
"hide.label": "Nascondi '{0}'"
},
+ "vs/platform/actionWidget/browser/actionList": {
+ "customQuickFixWidget": "Widget azione",
+ "customQuickFixWidget.labels": "{0}, Motivo disabilitato: {1}",
+ "label": "{0} da applicare",
+ "label-preview": "{0} per Applica, {1} per Anteprima"
+ },
+ "vs/platform/actionWidget/browser/actionWidget": {
+ "acceptSelected.title": "Accetta l'azione selezionata",
+ "actionBar.toggledBackground": "Colore di sfondo per le azioni attivate o disattivate nella barra delle azioni.",
+ "codeActionMenuVisible": "Indica se l'elenco di widget azione è visibile",
+ "hideCodeActionWidget.title": "Nascondi widget azione",
+ "previewSelected.title": "Anteprima azione selezionata",
+ "selectNextCodeAction.title": "Seleziona azione successiva",
+ "selectPrevCodeAction.title": "Seleziona azione precedente"
+ },
"vs/platform/configuration/common/configurationRegistry": {
"config.policy.duplicate": "Impossibile registrare '{0}'. Il {1} dei criteri associato è già registrato con {2}.",
"config.property.duplicate": "Non è possibile registrare '{0}'. Questa proprietà è già registrata.",
"config.property.empty": "Non è possibile registrare una proprietà vuota",
"config.property.languageDefault": "Non è possibile registrare '{0}'. Corrisponde al criterio di proprietà '\\\\[.*\\\\]$' per la descrizione delle impostazioni dell'editor specifiche del linguaggio. Usare il contributo 'configurationDefaults'.",
- "defaultLanguageConfiguration.description": "Consente di configurare le impostazioni di cui eseguire l'override per il linguaggio {0}.",
+ "defaultLanguageConfiguration.description": "Configura le impostazioni di cui eseguire l'override per {0}.",
"defaultLanguageConfigurationOverrides.title": "Override configurazione predefinita del linguaggio",
"overrideSettings.defaultDescription": "Consente di configurare le impostazioni dell'editor di cui eseguire l'override per un linguaggio.",
"overrideSettings.errorMessage": "Questa impostazione non supporta la configurazione per lingua."
@@ -1426,38 +2103,77 @@
"vs/platform/contextkey/browser/contextKeyService": {
"getContextKeyInfo": "Comando che restituisce informazioni sulle chiavi di contesto"
},
+ "vs/platform/contextkey/common/contextkey": {
+ "contextkey.parser.error.closingParenthesis": "Parentesi chiusa ')'",
+ "contextkey.parser.error.emptyString": "Espressione chiave di contesto vuota",
+ "contextkey.parser.error.emptyString.hint": "Si è dimenticato di scrivere un'espressione? È anche possibile inserire 'false' o 'true' per restituire sempre rispettivamente false o true.",
+ "contextkey.parser.error.expectedButGot": "Previsto: {0}\r\nRicevuto: '{1}'.",
+ "contextkey.parser.error.noInAfterNot": "'in' dopo 'not'.",
+ "contextkey.parser.error.unexpectedEOF": "Fine imprevista dell'espressione",
+ "contextkey.parser.error.unexpectedEOF.hint": "Si è dimenticato di inserire una chiave di contesto?",
+ "contextkey.parser.error.unexpectedToken": "Token imprevisto",
+ "contextkey.parser.error.unexpectedToken.hint": "Si è dimenticato di inserire && o || prima del token?",
+ "contextkey.scanner.errorForLinter": "Token imprevisto.",
+ "contextkey.scanner.errorForLinterWithHint": "Token imprevisto. Suggerimento: {0}"
+ },
"vs/platform/contextkey/common/contextkeys": {
"inputFocus": "Indica se lo stato attivo della tastiera si trova all'interno di una casella di input",
"isIOS": "Indica se il sistema operativo è iOS",
"isLinux": "Indica se il sistema operativo è Linux",
"isMac": "Indica se il sistema operativo è macOS",
"isMacNative": "Indica se il sistema operativo è macOS in una piattaforma non basata su browser",
+ "isMobile": "Indica se la piattaforma è un Web browser per dispositivi mobili",
"isWeb": "Indica se la piattaforma è un Web browser",
"isWindows": "Indica se il sistema operativo è Windows",
"productQualityType": "Tipo di qualità del VS Code"
},
+ "vs/platform/contextkey/common/scanner": {
+ "contextkey.scanner.hint.didYouForgetToEscapeSlash": "Si è dimenticato di eseguire il carattere di escape '/' (slash)? Inserire due barre rovesciate prima del carattere di escape, ad esempio '\\\\/'.",
+ "contextkey.scanner.hint.didYouForgetToOpenOrCloseQuote": "Si è dimenticato di aprire o chiudere la citazione?",
+ "contextkey.scanner.hint.didYouMean1": "Si intendeva {0}?",
+ "contextkey.scanner.hint.didYouMean2": "Si intendeva {0} o {1}?",
+ "contextkey.scanner.hint.didYouMean3": "Si intendeva {0}, {1} o {2}?"
+ },
+ "vs/platform/dialogs/browser/dialog": {
+ "aboutDetail": "Versione: {0}\r\nCommit: {1}\r\nData: {2}\r\nBrowser: {3}"
+ },
"vs/platform/dialogs/common/dialogs": {
+ "cancelButton": "Annulla",
"moreFile": "...1 altro file non visualizzato",
- "moreFiles": "...{0} altri file non visualizzati"
+ "moreFiles": "...{0} altri file non visualizzati",
+ "okButton": "&&OK",
+ "yesButton": "&&Sì"
+ },
+ "vs/platform/dialogs/electron-browser/dialog": {
+ "aboutDetail": "Versione: {0}\r\nCommit: {1}\r\nData: {2}\r\nElectron: {3}\r\nElectronBuildId: {4}\r\nChromium: {5}\r\nNode.js: {6}\r\nV8: {7}\r\nSistema operativo: {8}"
},
"vs/platform/dialogs/electron-main/dialogMainService": {
"open": "Apri",
"openFile": "Apri file",
"openFolder": "Apri cartella",
"openWorkspace": "&&Apri",
- "openWorkspaceTitle": "Apri area di lavoro dal file"
+ "openWorkspaceTitle": "Apri area di lavoro dal file",
+ "selectFolder": "&&Selezionare una cartella"
},
"vs/platform/dnd/browser/dnd": {
"fileTooLarge": "Il file è troppo grande per essere aperto come editor senza titolo. Caricarlo prima in Esplora file, quindi riprovare."
},
"vs/platform/environment/node/argv": {
"add": "Aggiunge la cartella o le cartelle all'ultima finestra attiva.",
+ "addFile": "Aggiungere file come contesto alla sessione di chat.",
+ "addMcp": "Aggiunge una definizione di server MCP (Model Context Protocol) al profilo utente. Accetta input JSON nel formato '{\"name\":\"server-name\",\"command\":...}'",
"category": "Filtra le estensioni installate in base alla categoria specificata quando si usa --list-extensions.",
+ "chatMaximize": "Ingrandisci la visualizzazione della sessione di chat.",
+ "chatMode": "La modalità da usare per la sessione di chat. Opzioni disponibili: \"chiedi\", \"modifica\", \"agente\" o l'identificatore di una modalità personalizzata. L'impostazione predefinita è \"agente\".",
+ "cliDataDir": "Directory in cui devono essere archiviati i metadati dell'interfaccia della riga di comando.",
+ "cliPrompt": "richiesta",
"deprecated.useInstead": "Usare {0}.",
"diff": "Confronta due file tra loro.",
- "disableExtension": "Disabilita un'estensione.",
- "disableExtensions": "Disabilita tutte le estensioni installate.",
+ "disableChromiumSandbox": "Usare questa opzione solo quando è necessario avviare l'applicazione come utente sudo in Linux o quando viene eseguita come utente con privilegi elevati in un ambiente applocker in Windows.",
+ "disableExtension": "Disabilitare l'estensione specificata. Questa opzione non è persistente ed è valida solo quando il comando apre una nuova finestra.",
+ "disableExtensions": "Disabilitare tutte le estensioni installate. Questa opzione non è persistente ed è valida solo quando il comando apre una nuova finestra.",
"disableGPU": "Disabilita l'accelerazione hardware della GPU.",
+ "disableLCDText": "Disabilita il rendering dei tipi di carattere LCD.",
"experimentalApis": "Abilita le funzionalità API proposte per un'estensione. Può ricevere uno o più ID estensione da abilitare singolarmente.",
"extensionHomePath": "Impostare il percorso radice per le estensioni.",
"extensionsManagement": "Gestione estensioni",
@@ -1469,25 +2185,33 @@
"installExtension": "Installa o aggiorna un'estensione. L'argomento è un ID estensione o un percorso a un VSIX. L'identificatore di un'estensione è sempre '${publisher}.${name}'. Usare l'argomento '--force' per eseguire l'aggiornamento alla versione più recente. Per installare una determinata versione, specificare '@${version}', ad esempio 'vscode.csharp@1.2.3'.",
"listExtensions": "Elenca le estensioni installate.",
"locale": "Impostazioni locali da usare, ad esempio en-US o it-IT.",
- "log": "Livello di registrazione da usare. Il valore predefinito è 'info'. I valori consentiti sono 'critical, 'error', 'warn', 'info', 'debug', 'trace', 'off'.",
- "maxMemory": "Dimensione massima della memoria per una finestra (in Mbytes).",
+ "locateShellIntegrationPath": "Stampa il percorso di uno script di integrazione della shell del terminale. I valori consentiti sono 'bash', 'pwsh', 'zsh' o 'fish'.",
+ "log": "Livello di log da usare. L'impostazione predefinita è 'info'. I valori consentiti sono 'critical', 'error', 'warn', 'info', 'debug', 'trace', 'off'. È anche possibile configurare il livello di log di un'estensione passando l'ID estensione e il livello di log nel formato seguente: '${publisher}.${name}:${logLevel}'. Ad esempio: 'vscode.csharp:trace'. Può ricevere una o più voci di questo tipo.",
+ "mcp": "Protocollo contesto modello",
"merge": "Eseguire un merge a tre vie fornendo i percorsi per due versioni modificate di un file, l'origine comune delle versioni modificate e il file di output per salvare i risultati del merge.",
"newWindow": "Forza l'apertura di una nuova finestra.",
+ "newWindowForChat": "Forza l'apertura di una finestra vuota per la sessione di chat.",
"options": "opzioni",
"optionsUpperCase": "Opzioni",
"paths": "percorsi",
"prof-startup": "Eseguire il profiler della CPU durante l'avvio.",
+ "profileName": "Apre la cartella o l'area di lavoro fornita con il profilo specificato e associa il profilo all'area di lavoro. Se il profilo non esiste, ne viene creato uno nuovo vuoto.",
+ "prompt": "La richiesta da utilizzare come chat.",
+ "remove": "Rimuove le cartelle dall'ultima finestra attiva.",
"reuseWindow": "Forza l'apertura di un file o di una cartella in una finestra già aperta.",
+ "reuseWindowForChat": "Forza l'uso dell'ultima finestra attiva per la sessione di chat.",
"showVersions": "Mostra le versioni delle estensioni installate quando si usa --list-extensions.",
"status": "Stampare le informazioni di utilizzo e diagnostica di processo.",
- "stdinUnix": "Per leggere da stdin, aggiungere alla fine '-' (ad esempio 'ps aux | grep code | {0} -')",
- "stdinWindows": "Per leggere l'output da un altro programma, aggiungere alla fine '-' (ad esempio 'echo Hello World | {0} -')",
+ "stdinUsage": "Per leggere da stdin, accodare '-' (ad esempio '{0}')",
+ "subcommands": "Sottocomandi",
"telemetry": "Mostra tutti gli eventi di telemetria raccolti da VS Code.",
+ "transient": "Eseguire con dati temporanei e directory di estensione, come se fosse avviato per la prima volta.",
"troubleshooting": "Risoluzione dei problemi",
"turn sync": "Attivare o disattivare la sincronizzazione.",
"uninstallExtension": "Disinstalla un'estensione.",
"unknownCommit": "Commit sconosciuto",
"unknownVersion": "Versione sconosciuta",
+ "updateExtensions": "Aggiorna le estensioni installate.",
"usage": "Sintassi",
"userDataDir": "Specifica la directory in cui si trovano i dati utente. Può essere usata per aprire più istanze diverse di Code.",
"verbose": "Visualizza l'output dettagliato (implica --wait).",
@@ -1499,33 +2223,62 @@
"emptyValue": "L'opzione '{0}' richiede un valore non vuoto. L'opzione verrà ignorata.",
"gotoValidation": "Gli argomenti nella modalità `--goto` devono essere espressi nel formato `FILE(:LINE(:CHARACTER))`.",
"multipleValues": "L'opzione '{0}' è definita più di una volta. Verrà usato il valore '{1}'.",
- "unknownOption": "Avviso: '{0}' non è incluso nell'elenco delle opzioni note, ma viene comunque passato a Electron/Chromium."
+ "unknownOption": "Avviso: '{0}' non è incluso nell'elenco delle opzioni note, ma viene comunque passato a Electron/Chromium.",
+ "unknownSubCommandOption": "Avviso: '{0}' non è incluso nell'elenco delle opzioni note per il sottocomando '{1}'"
},
"vs/platform/extensionManagement/common/abstractExtensionManagementService": {
"MarketPlaceDisabled": "Il Marketplace non è abilitato",
- "Not a Marketplace extension": "È possibile reinstallare solo le estensioni del Marketplace",
"incompatible platform": "L'estensione '{0}' non è disponibile in {1} per {2}.",
+ "incompatibleAPI": "Non è possibile installare l'estensione \"{0}\". {1}",
+ "learn why": "Informazioni sul motivo",
"malicious extension": "Non è possibile installare l'estensione '{0}' poiché è stata segnalata come problematica.",
"multipleDependentsError": "Non è possibile disinstallare l'estensione '{0}'. Altre estensioni, tra cui '{1}' e '{2}', dipendono da tale estensione.",
"multipleIndirectDependentsError": "Non è possibile disinstallare l'estensione '{0}'. Include la disinstallazione dell'estensione '{1}' e altre estensioni, tra cui '{2}' e '{3}', dipendono da tale estensione.",
+ "not allowed to install": "Non è possibile installare questa estensione perché {0}",
"notFoundCompatibleDependency": "Non è possibile installare l'estensione '{0}' perché non è compatibile con la versione corrente di {1} (versione {2}).",
- "notFoundCompatiblePrereleaseDependency": "Non è possibile installare la versione non definitiva dell'estensione '{0}' perché non è compatibile con la versione corrente di {1} (versione {2}).",
+ "notFoundDeprecatedReplacementExtension": "Non è possibile installare l’estensione '{0}' perché è deprecata e l'estensione sostitutiva '{1}' non è stata trovata.",
"notFoundReleaseExtension": "Non è possibile installare la versione finale dell'estensione '{0}' perché non ha una versione finale.",
"singleDependentError": "Non è possibile disinstallare l'estensione '{0}'. L'estensione '{1}' dipende da tale estensione.",
"singleIndirectDependentError": "Non è possibile disinstallare l'estensione '{0}'. Include la disinstallazione dell'estensione '{1}' e l'estensione '{2}' dipende da tale estensione.",
"twoDependentsError": "Non è possibile disinstallare l'estensione '{0}'. Le estensioni '{1}' e '{2}' dipendono da tale estensione.",
"twoIndirectDependentsError": "Non è possibile disinstallare l'estensione '{0}'. Include la disinstallazione dell'estensione '{1}' e le estensioni '{2}' e '{3}' dipendono da tale estensione."
},
+ "vs/platform/extensionManagement/common/allowedExtensionsService": {
+ "extension prerelease not allowed": "le versioni non definitive di questa estensione non sono presenti in [elenco consentite]({0})",
+ "prerelease versions from this publisher not allowed": "le versioni non definitive di questa entità di pubblicazione non sono presenti in [elenco consentite]({1})",
+ "publisher not allowed": "le estensioni di questa entità di pubblicazione non sono presenti in [elenco consentiti]({1})",
+ "specific extension not allowed": "non presente in [elenco consentiti]({0})",
+ "specific version of extension not allowed": "la versione {0} di questa estensione non è presente in [elenco consentite]({1})"
+ },
"vs/platform/extensionManagement/common/extensionManagement": {
+ "extension.publisher.allow.description": "Consentire o non consentire tutte le estensioni dell'entità di pubblicazione.",
"extensions": "Estensioni",
+ "extensions.allow.all.description": "Consentire o non consentire tutte le estensioni.",
+ "extensions.allow.all.disable": "Non consente alcuna estensione.",
+ "extensions.allow.all.enable": "Consente tutte le estensioni.",
+ "extensions.allow.description": "Consentire o non consentire l'estensione.",
+ "extensions.allow.version.description": "Consentire o non consentire versioni specifiche dell'estensione. Per specificare una versione specifica della piattaforma, usare il formato 'platform@1.2.3', ad esempio 'win32-x64@1.2.3'. Le piattaforme supportate sono 'win32-x64', 'win32-arm64', 'linux-x64', 'linux-arm64', 'linux-armhf', 'alpine-x64', 'alpine-arm64', 'darwin-x64', 'darwin-arm64'",
+ "extensions.allowed": "Specifica un elenco di estensioni che possono essere utilizzate. Ciò aiuta a mantenere un ambiente di sviluppo sicuro e coerente, limitando l'uso di estensioni non autorizzate. Per altre informazioni su come configurare questa impostazione, vedere la sezione [Configurare le estensioni consentite](https://code.visualstudio.com/docs/setup/enterprise#_configure-allowed-extensions).",
+ "extensions.allowed.all": "Sono consentite tutte le estensioni.",
+ "extensions.allowed.disable.desc": "L'estensione non è consentita.",
+ "extensions.allowed.disable.stable.desc": "Consentire solo versioni stabili dell'estensione.",
+ "extensions.allowed.enable.desc": "L'estensione è consentita.",
+ "extensions.allowed.none": "Non sono consentite estensioni.",
+ "extensions.allowed.policy": "Specifica un elenco di estensioni che possono essere utilizzate. Ciò aiuta a mantenere un ambiente di sviluppo sicuro e coerente, limitando l'uso di estensioni non autorizzate. Altre informazioni: https://code.visualstudio.com/docs/setup/enterprise#_configure-allowed-extensions",
+ "extensions.publisher.allowed.disable.desc": "Tutte le estensioni dell'entità di pubblicazione non sono consentite.",
+ "extensions.publisher.allowed.disable.stable.desc": "Consentire solo le versioni stabili delle estensioni dell'entità di pubblicazione.",
+ "extensions.publisher.allowed.enable.desc": "Tutte le estensioni dell'entità di pubblicazione sono consentite.",
+ "extensionsConfigurationTitle": "Estensioni",
"preferences": "Preferenze"
},
- "vs/platform/extensionManagement/common/extensionManagementCLIService": {
+ "vs/platform/extensionManagement/common/extensionManagementCLI": {
"alreadyInstalled": "L'estensione '{0}' è già installata.",
"alreadyInstalled-checkAndUpdate": "L'estensione '{0}' v{1} è già installata. Usare l'opzione '--force' per eseguire l'aggiornamento alla versione più recente oppure specificare '@' per installare una versione specifica, ad esempio: '{2}@1.2.3'.",
"builtin": "{0}' è un'estensione predefinita e non può essere disinstallata",
- "cancelInstall": "Installazione dell'estensione '{0}' annullata.",
"cancelVsixInstall": "Installazione dell'estensione '{0}' annullata.",
+ "error while installing extensions": "Si è verificato un errore durante l'installazione delle estensioni: {0}",
+ "errorInstallingExtension": "Si è verificato un errore durante l'installazione dell'estensione {0}: {1}",
+ "errorUpdatingExtension": "Errore durante l'aggiornamento dell’estensione: {0}: {1}",
"forceDowngrade": "È già installata una versione più recente dell'estensione '{0}' versione {1}. Usare l'opzione '--force' per eseguire il downgrade alla versione precedente.",
"forceUninstall": "'{0}' è contrassegnata come estensione predefinita dall'utente. Per disinstallarla, usare l'opzione '--force'.",
"installation failed": "Non è stato possibile installare le estensioni: {0}",
@@ -1542,49 +2295,51 @@
"successInstall": "L'estensione '{0}' versione {1} è stata installata.",
"successUninstall": "L'estensione '{0}' è stata disinstallata.",
"successUninstallFromLocation": "L'estensione '{0}' è stata disinstallata da in {1}.",
+ "successUpdate": "L’estensione '{0}' versione {1} è stata aggiornata.",
"successVsixInstall": "L'estensione '{0}' è stata installata.",
"uninstalling": "Disinstallazione di {0}...",
+ "updateExtensionsNewVersionsAvailable": "Aggiornamento delle estensioni: {0}",
+ "updateExtensionsNoExtensions": "Nessuna estensione da aggiornare",
+ "updateExtensionsQuery": "Recupero delle versioni più recenti delle estensioni {0}",
"updateMessage": "Aggiornamento dell'estensione '{0}' alla versione {1}",
"useId": "Assicurarsi di usare l'ID estensione completo, incluso l'editore, ad esempio {0}"
},
+ "vs/platform/extensionManagement/common/extensionNls": {
+ "missingNLSKey": "Il messaggio per la chiave {0} non è stato trovato."
+ },
"vs/platform/extensionManagement/common/extensionsScannerService": {
"fileReadFail": "Non è possibile leggere il file {0}: {1}.",
"jsonInvalidFormat": "Formato {0} non valido: è previsto l'oggetto JSON.",
"jsonParseFail": "Non è stato analizzare {0}: [{1}, {2}] {3}.",
"jsonParseInvalidType": "Il file manifesto {0} non è valido: non è un oggetto JSON.",
- "jsonsParseReportErrors": "Non è stato possibile analizzare {0}: {1}.",
- "missingNLSKey": "Il messaggio per la chiave {0} non è stato trovato."
- },
- "vs/platform/extensionManagement/electron-sandbox/extensionTipsService": {
- "exeRecommended": "Nel sistema è installato {0}. Installare le estensioni consigliate?"
+ "jsonsParseReportErrors": "Non è stato possibile analizzare {0}: {1}."
},
"vs/platform/extensionManagement/node/extensionManagementService": {
"cannot read": "Non è possibile leggere l'estensione da {0}",
"errorDeleting": "Non è possibile eliminare la cartella esistente '{0}' durante l'installazione dell'estensione '{1}'. Eliminare la cartella manualmente e riprovare",
- "exitCode": "Non è possibile installare l'estensione. Chiudere e riavviare VS Code prima di ripetere l'installazione.",
"incompatible": "Non è possibile installare l'estensione '{0}' perché non è compatibile con VS Code '{1}'.",
- "notInstalled": "L'estensione '{0}' non è installata.",
- "quitCode": "Non è possibile installare l'estensione. Uscire e avviare VS Code prima di ripetere l'installazione.",
- "removeError": "Errore durante la rimozione dell'estensione: {0}. Chiudere e riavviare VS Code prima di riprovare.",
- "renameError": "Errore sconosciuto durante la ridenominazione di {0} in {1}",
- "restartCode": "Riavviare VS Code prima di reinstallare {0}."
+ "invalidManifest": "Non è possibile installare l'estensione '{0}' a causa della mancata corrispondenza del manifesto con il Marketplace",
+ "notAllowed": "Non è possibile installare questa estensione perché {0}",
+ "restartCode": "Riavviare VS Code prima di reinstallare {0}.",
+ "signature verification failed": "Verifica della firma non riuscita con errore '{0}'.",
+ "signature verification not executed": "Verifica della firma non eseguita."
},
"vs/platform/extensionManagement/node/extensionManagementUtil": {
"invalidManifest": "VSIX non valido: package.json non è un file JSON."
},
"vs/platform/extensions/common/extensionValidator": {
+ "apiProposalMismatch1": "Questa estensione usa la proposta API '{0}' che non è compatibile con la versione corrente di VS Code.",
+ "apiProposalMismatch2": "Questa estensione usa la proposta API '{0}' e '{1}' che non è compatibile con la versione corrente di VS Code.",
"extensionDescription.activationEvents1": "la proprietà `{0}` può essere omessa o deve essere di tipo `string[]`",
- "extensionDescription.activationEvents2": "le proprietà `{0}` e `{1}` devono essere specificate o omesse entrambi",
+ "extensionDescription.activationEvents2": "la proprietà '{0}' deve essere omessa se l'estensione non contiene una proprietà '{1}' o '{2}'.",
"extensionDescription.browser1": "la proprietà `{0}` può essere omessa o deve essere di tipo `string`",
"extensionDescription.browser2": "Valore previsto di `browser` ({0}) da includere nella cartella dell'estensione ({1}). L'estensione potrebbe non essere più portabile.",
- "extensionDescription.browser3": "le proprietà `{0}` e `{1}` devono essere specificate o omesse entrambi",
"extensionDescription.engines": "la proprietà `{0}` è obbligatoria e deve essere di tipo `object`",
"extensionDescription.engines.vscode": "la proprietà `{0}` è obbligatoria e deve essere di tipo `string`",
"extensionDescription.extensionDependencies": "la proprietà `{0}` può essere omessa o deve essere di tipo `string[]`",
"extensionDescription.extensionKind": "è possibile definire la proprietà '{0}' solo se è definita anche la proprietà 'main'.",
"extensionDescription.main1": "la proprietà `{0}` può essere omessa o deve essere di tipo `string`",
"extensionDescription.main2": "Valore previsto di `main` ({0}) da includere nella cartella dell'estensione ({1}). L'estensione potrebbe non essere più portatile.",
- "extensionDescription.main3": "le proprietà `{0}` e `{1}` devono essere specificate o omesse entrambi",
"extensionDescription.name": "la proprietà `{0}` è obbligatoria e deve essere di tipo `string`",
"extensionDescription.publisher": "l'autore della proprietà deve essere di tipo `string`.",
"extensionDescription.version": "la proprietà `{0}` è obbligatoria e deve essere di tipo `string`",
@@ -1606,9 +2361,27 @@
"fileSystemNotAllowedError": "Autorizzazioni insufficienti. Riprovare e consentire l'operazione.",
"fileSystemRenameError": "La ridenominazione è supportata solo per i file."
},
+ "vs/platform/files/browser/indexedDBFileSystemProvider": {
+ "dirIsNotEmpty": "La directory non è vuota",
+ "fileExceedsStorageQuota": "Il file supera la quota di archiviazione disponibile",
+ "fileIsDirectory": "Il file è una directory",
+ "fileNotDirectory": "Il file non è una directory",
+ "fileNotExists": "Il file non esiste",
+ "internal": "Errore interno nel provider del file system IndexedDB. ({0})"
+ },
+ "vs/platform/files/common/files": {
+ "sizeB": "{0} B",
+ "sizeGB": "{0} GB",
+ "sizeKB": "{0} KB",
+ "sizeMB": "{0} MB",
+ "sizeTB": "{0} TB",
+ "unknownError": "Errore sconosciuto"
+ },
"vs/platform/files/common/fileService": {
+ "deleteFailedAtomicUnsupported": "Non è possibile eliminare il file '{0}' in modo atomico perché il provider non lo supporta.",
"deleteFailedNonEmptyFolder": "Non è possibile eliminare la cartella non vuota '{0}'.",
"deleteFailedNotFound": "Non è possibile eliminare il file non esistente '{0}'",
+ "deleteFailedTrashAndAtomicUnsupported": "Non è possibile eliminare in modo atomico il file '{0}' perché è abilitato l'uso del cestino.",
"deleteFailedTrashUnsupported": "Non è possibile eliminare il file '{0}' tramite il Cestino perché il provider non lo supporta.",
"err.read": "Non è possibile leggere il file '{0}' ({1})",
"err.readonly": "Non è possibile modificare il file di sola lettura '{0}'",
@@ -1622,53 +2395,50 @@
"fileTooLargeError": "Non è possibile leggere il file '{0}' che è troppo grande per essere aperto",
"invalidPath": "Non è possibile risolvere il provider di file system con il percorso file relativo '{0}'",
"mkdirExistsError": "Non è possibile creare la cartella '{0}' che esiste già ma non è una directory",
- "noProviderFound": "Non sono stati trovati provider del file system per la risorsa '{0}'",
+ "noProviderFound": "ENOPRO: non è stato trovato alcun provider di file system per la risorsa '{0}'",
"unableToMoveCopyError1": "Non è possibile copiare quando l'origine '{0}' è uguale alla destinazione '{1}' e per il percorso viene usata una combinazione di maiuscole/minuscole diversa in un file system che non fa distinzione tra maiuscole e minuscole",
"unableToMoveCopyError2": "Non è possibile spostare/copiare quando l'origine '{0}' è un elemento padre della destinazione '{1}'.",
"unableToMoveCopyError3": "Non è possibile spostare/copiare '{0}' perché nella destinazione esiste già un file di destinazione '{1}'.",
"unableToMoveCopyError4": "Non è possibile spostare/copiare '{0}' in '{1}' perché un file sostituirebbe la cartella in cui è contenuto.",
+ "writeFailedAtomicUnlock": "Non è possibile sbloccare il file '{0}' perché è abilitata la scrittura atomica.",
+ "writeFailedAtomicUnsupported1": "Non è possibile scrivere il file '{0}' in modo atomico perché il provider non lo supporta.",
+ "writeFailedAtomicUnsupported2": "Impossibile scrivere il file '{0}' in modo atomico perché il provider non supporta le scritture senza buffer.",
"writeFailedUnlockUnsupported": "Non è possibile sbloccare il file '{0}' perché il provider non lo supporta."
},
- "vs/platform/files/common/files": {
- "sizeB": "{0} B",
- "sizeGB": "{0} GB",
- "sizeKB": "{0} KB",
- "sizeMB": "{0} MB",
- "sizeTB": "{0} TB",
- "unknownError": "Errore sconosciuto"
- },
"vs/platform/files/common/io": {
- "fileTooLargeError": "Il file è troppo grande per essere aperto",
- "fileTooLargeForHeapError": "Per aprire un file di queste dimensioni, è necessario riavviare e consentire l’uso di più memoria"
+ "fileTooLargeError": "Il file è troppo grande per essere aperto"
},
"vs/platform/files/electron-main/diskFileSystemProviderServer": {
- "binFailed": "Non è stato possibile spostare '{0}' nel Cestino",
- "trashFailed": "Non è stato possibile spostare '{0}' nel Cestino"
+ "binFailed": "Non è stato possibile spostare '{0}' nel cestino ({1})",
+ "trashFailed": "Non è stato possibile spostare '{0}' nel cestino ({1})"
},
"vs/platform/files/node/diskFileSystemProvider": {
"copyError": "Non è possibile copiare '{0}' in '{1}' ({2}).",
- "fileCopyErrorExists": "Il file nella destinazione esiste già",
- "fileCopyErrorPathCase": "'Non è possibile copiare il file nello stesso percorso usando un percorso con una combinazione di maiuscole/minuscole diversa",
+ "fileCopyErrorPathCase": "Non è possibile copiare il file nello stesso percorso usando un percorso con una combinazione di maiuscole/minuscole diversa",
"fileExists": "Il file esiste già",
+ "fileMoveCopyErrorExists": "Il file nella destinazione esiste già e pertanto non verrà spostato/copiato a meno che non venga specificata la sovrascrittura",
+ "fileMoveCopyErrorNotFound": "Il file da spostare/copiare non esiste",
"fileNotExists": "Il file non esiste",
"moveError": "Non è possibile spostare '{0}' in '{1}' ({2})."
},
"vs/platform/history/browser/contextScopedHistoryWidget": {
"suggestWidgetVisible": "Indica se i suggerimenti sono visibili"
},
- "vs/platform/issue/electron-main/issueMainService": {
- "cancel": "&&Annulla",
- "confirmCloseIssueReporter": "L'input non verrà salvato. Chiudere questa finestra?",
- "issueReporter": "Segnalazione problemi",
- "issueReporterWriteToClipboard": "I dati sono eccessivi per inviarli direttamente a GitHub. Verranno quindi copiati negli Appunti. Incollarli nella pagina relativa al problema visualizzata in GitHub.",
- "local": "LOCAL",
- "ok": "&&OK",
- "processExplorer": "Esplora processi",
- "yes": "&&Sì"
+ "vs/platform/hover/browser/hoverWidget": {
+ "hoverhint": "Tieni premuto il tasto {0} per passare il mouse"
+ },
+ "vs/platform/hover/browser/updatableHoverWidget": {
+ "iconLabel.loading": "Caricamento in corso..."
},
"vs/platform/keybinding/common/abstractKeybindingService": {
"first.chord": "È stato premuto ({0}). In attesa del secondo tasto...",
- "missing.chord": "La combinazione di tasti ({0}, {1}) non è un comando."
+ "missing.chord": "La combinazione di tasti ({0}, {1}) non è un comando.",
+ "next.chord": "È stato premuto ({0}). In attesa del prossimo tasto..."
+ },
+ "vs/platform/keyboardLayout/common/keyboardConfig": {
+ "dispatch": "Controlla la logica di invio delle pressioni di tasti da usare, tra `code` (scelta consigliata) e `keyCode`.",
+ "keyboardConfigurationTitle": "Tastiera",
+ "mapAltGrToCtrlAlt": "Controllare se il modificatore AltGraph+ deve essere considerato come CTRL+ALT+."
},
"vs/platform/languagePacks/common/languagePacks": {
"currentDisplayLanguage": " (Corrente)"
@@ -1681,6 +2451,9 @@
"vs/platform/list/browser/listService": {
"Fast Scroll Sensitivity": "Moltiplicatore della velocità di scorrimento quando si preme `Alt`.",
"Mouse Wheel Scroll Sensitivity": "Moltiplicatore da usare sui valori `deltaX` e `deltaY` degli eventi di scorrimento della rotellina del mouse.",
+ "defaultFindMatchTypeSettingKey": "Controlla il tipo di corrispondenza usato per la ricerca di elenchi e alberi nel workbench.",
+ "defaultFindMatchTypeSettingKey.contiguous": "Usa corrispondenza contigua durante la ricerca.",
+ "defaultFindMatchTypeSettingKey.fuzzy": "Usa la corrispondenza fuzzy durante la ricerca.",
"defaultFindModeSettingKey": "Controlla la modalità di ricerca predefinita per elenchi e alberi nel workbench.",
"defaultFindModeSettingKey.filter": "Filtra gli elementi durante la ricerca.",
"defaultFindModeSettingKey.highlight": "Evidenziare gli elementi durante la ricerca. L'ulteriore spostamento verso l'alto e verso il basso attraverserà solo gli elementi evidenziati.",
@@ -1690,23 +2463,53 @@
"keyboardNavigationSettingKey.filter": "Con lo stile di spostamento da tastiera filter verranno filtrati e nascosti tutti gli elementi che non corrispondono all'input da tastiera.",
"keyboardNavigationSettingKey.highlight": "Con lo stile di spostamento da tastiera highlight vengono evidenziati gli elementi corrispondenti all'input da tastiera. Spostandosi ulteriormente verso l'alto o verso il basso ci si sposterà solo negli elementi evidenziati.",
"keyboardNavigationSettingKey.simple": "Con lo stile di spostamento da tastiera simple lo stato attivo si trova sugli elementi che corrispondono all'input da tastiera. L'abbinamento viene effettuato solo in base ai prefissi.",
- "keyboardNavigationSettingKeyDeprecated": "Usare invece 'workbench.list.defaultFindMode'.",
+ "keyboardNavigationSettingKeyDeprecated": "In alternativa, usare 'workbench.list.defaultFindMode' e 'workbench.list.typeNavigationMode'.",
"list smoothScrolling setting": "Controlla se elenchi e alberi prevedono lo scorrimento uniforme.",
+ "list.scrollByPage": "Controlla se i clic nella barra di scorrimento scorrono pagina per pagina.",
"multiSelectModifier": "Il modificatore da utilizzare per aggiungere un elemento di alberi e liste ad una selezione multipla con il mouse (ad esempio in Esplora Risorse, apre gli editor e le viste scm). Le gesture del mouse 'Apri a lato' - se supportate - si adatteranno in modo da non creare conflitti con il modificatore di selezione multipla.",
"multiSelectModifier.alt": "Rappresenta il tasto 'Alt' in Windows e Linux e il tasto 'Opzione' in macOS.",
"multiSelectModifier.ctrlCmd": "Rappresenta il tasto 'Control' in Windows e Linux e il tasto 'Comando' in macOS.",
"openModeModifier": "Controlla l'apertura degli elementi di alberi ed elenchi tramite il mouse (se supportato). Tenere presente che alcuni alberi ed elenchi potrebbero scegliere di ignorare questa impostazione se non è applicabile.",
"render tree indent guides": "Controlla se l'albero deve eseguire il rendering delle guide per i rientri.",
+ "sticky scroll": "Controlla se lo scorrimento permanente è abilitato negli alberi.",
+ "sticky scroll maximum items": "Controlla il numero di elementi permanenti visualizzati nell'albero quando {0} è abilitato.",
"tree indent setting": "Controlla il rientro dell'albero in pixel.",
+ "typeNavigationMode2": "Controlla il funzionamento dello spostamento dei tipi in elenchi e alberi nel workbench. Se impostato su 'trigger', l'esplorazione del tipo inizia dopo l'esecuzione del comando 'list.triggerTypeNavigation'.",
"workbenchConfigurationTitle": "Workbench"
},
+ "vs/platform/log/common/log": {
+ "debug": "Debug",
+ "error": "Errore",
+ "info": "Info",
+ "off": "OFF",
+ "trace": "Analisi",
+ "warn": "Avviso"
+ },
"vs/platform/markers/common/markers": {
"sev.error": "Errore",
+ "sev.errors": "Errori",
"sev.info": "Info",
- "sev.warning": "Avviso"
+ "sev.infos": "Messaggi informativi",
+ "sev.warning": "Avviso",
+ "sev.warnings": "Avvisi"
+ },
+ "vs/platform/markers/common/markerService": {
+ "filtered": "I problemi sono sospesi perché: \"{0}\"",
+ "filtered.network": "I problemi sono sospesi perché: \"{0}\" e altri {1}"
+ },
+ "vs/platform/mcp/common/allowedMcpServersService": {
+ "mcp servers are not allowed": "I server MCP (Model Context Protocol) sono disabilitati nell'editor. Controllare le [impostazioni]({0})."
+ },
+ "vs/platform/mcp/common/mcpGalleryService": {
+ "noReadme": "Nessun README disponibile",
+ "readme.viewInBrowser": "Puoi trovare informazioni su questo server [qui]({0})"
+ },
+ "vs/platform/mcp/common/mcpManagementService": {
+ "not allowed to install": "Non è possibile installare questo server MCP perché {0}"
},
"vs/platform/menubar/electron-main/menubar": {
- "cancel": "&&Annulla",
+ "cancel": "Annulla",
+ "exit": "&&Esci",
"mAbout": "Informazioni su {0}",
"mBringToFront": "Porta tutto in primo piano",
"mEdit": "&&Modifica",
@@ -1741,42 +2544,125 @@
"miRestartToUpdate": "Riavvia per &&aggiornare",
"miSwitchWindow": "Cambia &&finestra...",
"quit": "&&Esci",
- "quitMessage": "Uscire?"
+ "quitMessage": "Uscire?",
+ "quitMessageMac": "Uscire?"
},
"vs/platform/native/electron-main/nativeHostMainService": {
- "cancel": "&&Annulla",
+ "cancel": "Annulla",
"cantCreateBinFolder": "Non è possibile installare il comando '{0}' della shell.",
"cantUninstall": "Non è possibile disinstallare il comando '{0}' della shell.",
+ "copyLink": "&&Copia collegamento",
"ok": "&&OK",
+ "openExternalErrorLinkMessage": "Si è verificato un errore durante l'apertura di un collegamento nel browser predefinito.",
+ "openExternalProgramErrorMessage": "Si è verificato un errore durante l'apertura di un programma esterno.",
"sourceMissing": "Non è possibile trovare lo script della shell in '{0}'",
+ "trace.detail": "Creare un problema e allegare manualmente il file seguente:\r\n{0}",
+ "trace.message": "Creazione del file di traccia completata",
+ "trace.ok": "&&OK",
"warnEscalation": "{0} eseguirà 'osascript' per richiedere i privilegi di amministratore per installare il comando della shell.",
"warnEscalationUninstall": "{0} eseguirà 'osascript' per richiedere i privilegi di amministratore per disinstallare il comando della shell."
},
+ "vs/platform/notification/common/notification": {
+ "severityPrefix.error": "Errore: {0}",
+ "severityPrefix.info": "Info: {0}",
+ "severityPrefix.warning": "Avviso: {0}"
+ },
+ "vs/platform/process/electron-main/processMainService": {
+ "local": "Locale"
+ },
"vs/platform/quickinput/browser/commandsQuickAccess": {
- "canNotRun": "Il comando '{0}' ha restituito un errore ({1})",
+ "canNotRun": "Il comando '{0}' ha restituito un errore",
"commandPickAriaLabelWithKeybinding": "{0}, {1}",
+ "commonlyUsed": "più usato",
"morecCommands": "altri comandi",
- "recentlyUsed": "usate di recente"
+ "recentlyUsed": "usate di recente",
+ "suggested": "comandi simili"
},
"vs/platform/quickinput/browser/helpQuickAccess": {
"helpPickAriaLabel": "{0}, {1}"
},
+ "vs/platform/quickinput/browser/quickInput": {
+ "cursorAtEndOfQuickInputBox": "Indica se il cursore nell'input rapido si trova alla fine della casella di input",
+ "inQuickInput": "Indica se lo stato attivo della tastiera si trova all'interno del controllo di input rapido",
+ "inputModeEntry": "Premere 'INVIO' per confermare l'input oppure 'ESC' per annullare",
+ "inputModeEntryDescription": "{0} (premere 'INVIO' per confermare oppure 'ESC' per annullare)",
+ "ok": "OK",
+ "quickInput.back": "Indietro",
+ "quickInput.steps": "{0}/{1}",
+ "quickInputAlignment": "L'allineamento dell'inserimento rapido",
+ "quickInputBox.ariaLabel": "Digitare per ridurre il numero di risultati.",
+ "quickInputType": "Tipo dell'input rapido attualmente visibile"
+ },
+ "vs/platform/quickinput/browser/quickInputActions": {
+ "nonQuickWidget": "Usato nel contesto di un input rapido. Se si modifica un tasto di scelta rapida per questo comando, è necessario modificare anche tutti gli altri tasti di scelta rapida (varianti del modificatore) di questo comando.",
+ "quickInput": "Usato nel contesto di qualsiasi tipo di input rapido. Se si modifica un tasto di scelta rapida per questo comando, è necessario modificare anche tutti gli altri tasti di scelta rapida (varianti del modificatore) di questo comando.",
+ "quickInput.nextSeparatorWithQuickAccessFallback": "Se è attiva la modalità di accesso rapido, si passerà all'elemento successivo. Se non è attiva la modalità di accesso rapido, si passerà al separatore successivo.",
+ "quickInput.previousSeparatorWithQuickAccessFallback": "Se è attiva la modalità di accesso rapido, si passerà all'elemento precedente. Se non è attiva la modalità di accesso rapido, si passerà al separatore precedente.",
+ "quickPick": "Usato nel contesto della selezione rapida. Se si modifica un tasto di scelta rapida per questo comando, è necessario modificare anche tutti gli altri tasti di scelta rapida (varianti del modificatore) di questo comando."
+ },
+ "vs/platform/quickinput/browser/quickInputController": {
+ "custom": "Personalizzato",
+ "ok": "OK",
+ "quickInput.back": "Indietro",
+ "quickInput.backWithKeybinding": "Indietro ({0})",
+ "quickInput.checkAll": "Attivare/Disattivare tutte le caselle di controllo",
+ "quickInput.countSelected": "{0} selezionati",
+ "quickInput.visibleCount": "{0} risultati"
+ },
+ "vs/platform/quickinput/browser/quickInputList": {
+ "quickInput": "Input rapido"
+ },
+ "vs/platform/quickinput/browser/quickInputUtils": {
+ "executeCommand": "Fare clic per eseguire il comando '{0}'"
+ },
+ "vs/platform/quickinput/browser/quickPickPin": {
+ "pinCommand": "Blocca comando",
+ "pinnedCommand": "Comando bloccato",
+ "terminal.commands.pinned": "aggiunto"
+ },
+ "vs/platform/quickinput/browser/tree/quickInputTreeAccessibilityProvider": {
+ "quickTree": "Albero rapido"
+ },
+ "vs/platform/quickinput/browser/tree/quickTree": {
+ "quickInputBox.ariaLabel": "Digitare per ridurre il numero di risultati."
+ },
+ "vs/platform/remoteTunnel/common/remoteTunnel": {
+ "remoteTunnelLog": "Servizio di tunnel remoto"
+ },
+ "vs/platform/remoteTunnel/node/remoteTunnelService": {
+ "remoteTunnelService.authorizing": "Connessione come {0} ({1})",
+ "remoteTunnelService.building": "Compilazione dell'interfaccia della riga di comando da origini",
+ "remoteTunnelService.openTunnel": "Apertura tunnel",
+ "remoteTunnelService.openTunnelWithName": "Apertura tunnel {0}",
+ "remoteTunnelService.serviceInstallFailed": "Non è stato possibile installare tunnel come servizio, avvio nella sessione in corso..."
+ },
"vs/platform/request/common/request": {
+ "electronFetch": "Controlla se deve essere abilitato l'uso dell'implementazione del recupero di Electron invece di Node.js. Tutte le estensioni locali otterranno l'implementazione del recupero di Electron per l'API di recupero globale.",
+ "fetchAdditionalSupport": "Controlla se è necessario estendere l'implementazione del recupero di Node.js con supporto aggiuntivo. Attualmente il supporto proxy ({1}) e i certificati di sistema ({2}) vengono aggiunti quando sono abilitate le impostazioni corrispondenti. Quando durante [sviluppo remoto](https://aka.ms/vscode-remote) l'impostazione {0} è disabilitata, questa impostazione può essere configurata separatamente nelle impostazioni locali e remote.",
"httpConfigurationTitle": "HTTP",
- "proxy": "Impostazione proxy da usare. Se non è impostata, verrà ereditata dalle variabili di ambiente `http_proxy` e `https_proxy`.",
- "proxyAuthorization": "Valore da inviare come intestazione `Proxy-Authorization` per ogni richiesta di rete.",
- "proxySupport": "Usa il supporto proxy per le estensioni.",
+ "networkInterfaceCheckInterval": "Controlla l'intervallo in secondi per verificare le modifiche all'interfaccia di rete e invalidare la cache del proxy. Impostare su 1 per disabilitare. Quando l'impostazione {0} è disabilitata durante lo [sviluppo remoto](https://aka.ms/vscode-remote), l'impostazione può essere configurata separatamente nelle impostazioni locali e remote.",
+ "noProxy": "Specifica i nomi di dominio di cui ignorare le impostazioni proxy per le richieste HTTP/HTTPS. Quando durante [sviluppo remoto](https://aka.ms/vscode-remote) l'impostazione {0} è disabilitata, questa impostazione può essere configurata separatamente nelle impostazioni locali e remote.",
+ "proxy": "L'impostazione del proxy da usare. Se non è impostata, verrà ereditata dalle variabili di ambiente `http_proxy` e `https_proxy`. Quando durante [sviluppo remoto](https://aka.ms/vscode-remote) l'impostazione {0} è disabilitata, questa impostazione può essere configurata separatamente nelle impostazioni locali e remote.",
+ "proxyAuthorization": "Il valore da inviare come intestazione `Proxy-Authorization` per ogni richiesta di rete. Quando durante [sviluppo remoto](https://aka.ms/vscode-remote) l'impostazione {0} è disabilitata, questa impostazione può essere configurata separatamente nelle impostazioni locali e remote.",
+ "proxyKerberosServicePrincipal": "Esegue l'override del nome servizio entità di sicurezza per l'autenticazione Kerberos con il proxy HTTP. Quando questa opzione non è impostata, viene utilizzata un'impostazione predefinita basata sul nome host del proxy. Quando durante [sviluppo remoto](https://aka.ms/vscode-remote) l'impostazione {0} è disabilitata, questa impostazione può essere configurata separatamente nelle impostazioni locali e remote.",
+ "proxySupport": "Usa il supporto proxy per le estensioni. Quando durante [sviluppo remoto](https://aka.ms/vscode-remote) l'impostazione {0} è disabilitata, questa impostazione può essere configurata separatamente nelle impostazioni locali e remote.",
"proxySupportFallback": "Abilita il supporto del proxy per le estensioni ed esegue il fallback alle opzioni della richiesta quando non è stato trovato alcun proxy.",
"proxySupportOff": "Disabilita il supporto proxy per le estensioni.",
"proxySupportOn": "Abilita il supporto proxy per le estensioni.",
"proxySupportOverride": "Abilita il supporto proxy per le estensioni ed esegue l'override delle opzioni di richiesta.",
- "strictSSL": "Controlla se il certificato del server proxy deve essere verificato in base all'elenco di CA specificate.",
- "systemCertificates": "Controlla se i certificati della CA devono essere caricati dal sistema operativo. Dopo la disattivazione in Windows e macOS è richiesto un riavvio della finestra."
+ "strictSSL": "Controlla se il certificato del server proxy deve essere verificato in base all'elenco di CA specificate. Quando durante [sviluppo remoto](https://aka.ms/vscode-remote) l'impostazione {0} è disabilitata, questa impostazione può essere configurata separatamente nelle impostazioni locali e remote.",
+ "systemCertificates": "Controlla se i certificati CA devono essere caricati dal sistema operativo. In Windows e macOS, è necessario ricaricare la finestra dopo aver disattivato questa opzione. Quando durante [sviluppo remoto](https://aka.ms/vscode-remote) l'impostazione {0} è disabilitata, questa impostazione può essere configurata separatamente nelle impostazioni locali e remote.",
+ "systemCertificatesNode": "Controlla se i certificati di sistema devono essere caricati usando il supporto integrato di Node.js. Ricaricare la finestra dopo aver modificato l'impostazione. Quando l'impostazione {0} è disabilitata durante lo [sviluppo remoto](https://aka.ms/vscode-remote), l'impostazione può essere configurata separatamente nelle impostazioni locali e remote.",
+ "systemCertificatesV2": "Controlla se è necessario abilitare il caricamento sperimentale dei certificati CA dal sistema operativo. Ciò usa un approccio più generale rispetto all'implementazione predefinita. Quando durante [sviluppo remoto](https://aka.ms/vscode-remote) l'impostazione {0} è disabilitata, questa impostazione può essere configurata separatamente nelle impostazioni locali e remote.",
+ "useLocalProxy": "Controlla se nell'host dell'estensione remota deve essere utilizzata la configurazione del proxy locale. Questa impostazione si applica solo come impostazione remota durante [sviluppo remoto](https://aka.ms/vscode-remote)."
},
"vs/platform/shell/node/shellEnv": {
"resolveShellEnvError": "Non è possibile risolvere l'ambiente della shell: {0}",
"resolveShellEnvExitError": "Codice di uscita imprevisto dalla shell generata (codice {0}, segnale {1})",
- "resolveShellEnvTimeout": "Non è possibile risolvere l'ambiente della shell in un tempo ragionevole. Verificare la configurazione della shell."
+ "resolveShellEnvTimeout": "Non è possibile risolvere l'ambiente della shell in un tempo ragionevole. Verificare la configurazione della shell e riavviare."
+ },
+ "vs/platform/telemetry/common/telemetryLogAppender": {
+ "telemetryLog": "Telemetria{0}"
},
"vs/platform/telemetry/common/telemetryService": {
"enableTelemetryDeprecated": "Se questa impostazione è false, non verranno inviati dati di telemetria indipendentemente dal valore della nuova impostazione. Deprecata e sostituita dall'impostazione {0}.",
@@ -1786,49 +2672,39 @@
"telemetry.enableTelemetry": "Abilita la raccolta dei dati di diagnostica. Consente di comprendere meglio le prestazioni di {0} e i punti in cui apportare miglioramenti.",
"telemetry.enableTelemetryMd": "Abilita la raccolta dei dati di diagnostica. Consente di comprendere meglio le prestazioni di {0} e i punti in cui apportare miglioramenti. [Altre informazioni]({1}) sui dati raccolti e sull'informativa sulla privacy.",
"telemetry.errors": "Dati di telemetria degli errori",
+ "telemetry.feedback.enabled": "Abilita meccanismi di feedback come la segnalazione di problemi, i sondaggi e altre opzioni di feedback.",
"telemetry.restart": "Per rendere effettive le modifiche apportate alle segnalazioni di arresto anomalo, è necessario riavviare completamente l'applicazione.",
"telemetry.telemetryLevel.crash": "Invia le segnalazioni di arresto anomalo a livello di sistema operativo.",
"telemetry.telemetryLevel.default": "Invia dati di utilizzo, errori e segnalazioni di arresto anomalo.",
"telemetry.telemetryLevel.deprecated": "****Nota:*** se questa impostazione è impostata su 'off', non verranno inviati dati di telemetria indipendentemente dalle altre impostazioni di telemetria. Se questa impostazione è impostata su un valore diverso da 'off' e i dati di telemetria sono disabilitati con impostazioni deprecate, non verranno inviati dati di telemetria.*",
"telemetry.telemetryLevel.error": "Invia i dati di telemetria generali e le segnalazioni di arresto anomalo del sistema.",
"telemetry.telemetryLevel.off": "Disabilita tutti i dati di telemetria del prodotto.",
+ "telemetry.telemetryLevel.policyDescription": "Controlla il livello di telemetria.",
"telemetry.telemetryLevel.tableDescription": "La tabella seguente descrive i dati inviati con ogni impostazione:",
"telemetry.telemetryLevelMd": "Controlla la telemetria {0}, la relativa estensione proprietaria e la telemetria dell'estensione di terze parti partecipante. Alcune estensioni di terze parti potrebbero non rispettare questa impostazione. Per verificarlo, è possibile consultare la documentazione dell'estensione specifica. La telemetria ci aiuta a comprendere meglio le prestazioni di {0}, dove è necessario apportare miglioramenti e come vengono usate le funzionalità.",
"telemetry.usage": "Dati di utilizzo",
"telemetryConfigurationTitle": "Telemetria"
},
+ "vs/platform/telemetry/common/telemetryUtils": {
+ "telemetryLogName": "Telemetria"
+ },
+ "vs/platform/terminal/common/terminalLogService": {
+ "terminalLoggerName": "Terminale"
+ },
"vs/platform/terminal/common/terminalPlatformConfiguration": {
- "terminal.integrated.automationProfile.linux": "Profilo del terminale da usare in Linux per l'utilizzo del terminale correlato all'automazione, ad esempio le attività e il debug. Questa impostazione verrà attualmente ignorata se è impostato {0}.",
- "terminal.integrated.automationProfile.osx": "Profilo del terminale da usare in macOS per l'utilizzo del terminale correlato all'automazione, ad esempio le attività e il debug. Questa impostazione verrà attualmente ignorata se è impostato {0}.",
- "terminal.integrated.automationProfile.windows": "Profilo del terminale da usare per l'utilizzo del terminale correlato all'automazione, ad esempio le attività e il debug. Questa impostazione verrà attualmente ignorata se è impostato {0}.",
- "terminal.integrated.automationShell.linux": "Percorso che, se impostato, eseguirà l'override di {0} e ignorerà i valori di {1} per l'utilizzo del terminale correlato all'automazione, come nel caso di attività e debug.",
- "terminal.integrated.automationShell.linux.deprecation": "Questa opzione è deprecata. Il nuovo modo consigliato per configurare la shell di automazione consiste nella creazione di un profilo di automazione terminale con {0}. Questa impostazione assumerà attualmente la priorità sulle nuove impostazioni del profilo di automazione ma ciò cambierà in futuro.",
- "terminal.integrated.automationShell.osx": "Percorso che, se impostato, eseguirà l'override di {0} e ignorerà i valori di {1} per l'utilizzo del terminale correlato all'automazione, come nel caso di attività e debug.",
- "terminal.integrated.automationShell.osx.deprecation": "Questa opzione è deprecata. Il nuovo modo consigliato per configurare la shell di automazione consiste nella creazione di un profilo di automazione terminale con {0}. Questa impostazione assumerà attualmente la priorità sulle nuove impostazioni del profilo di automazione ma ciò cambierà in futuro.",
- "terminal.integrated.automationShell.windows": "Percorso che, se impostato, eseguirà l'override di {0} e ignorerà i valori di {1} per l'utilizzo del terminale correlato all'automazione, come nel caso di attività e debug.",
- "terminal.integrated.automationShell.windows.deprecation": "Questa opzione è deprecata. Il nuovo modo consigliato per configurare la shell di automazione consiste nella creazione di un profilo di automazione terminale con {0}. Questa impostazione assumerà attualmente la priorità sulle nuove impostazioni del profilo di automazione ma ciò cambierà in futuro.",
+ "terminal.integrated.automationProfile.linux": "Profilo del terminale da usare in Linux per l'utilizzo del terminale correlato all'automazione, ad esempio le attività e il debug.",
+ "terminal.integrated.automationProfile.osx": "Profilo del terminale da usare in macOS per l'utilizzo del terminale correlato all'automazione, ad esempio le attività e il debug.",
+ "terminal.integrated.automationProfile.windows": "Profilo del terminale da usare per l'uso del terminale correlato all'automazione, ad esempio attività e debug. Questa impostazione verrà attualmente ignorata se è impostato {0} (ora deprecato).",
"terminal.integrated.confirmIgnoreProcesses": "Set di nomi di processo da ignorare quando si utilizza l'impostazione {0}.",
- "terminal.integrated.defaultProfile.linux": "Profilo predefinito usato in Linux. Questa impostazione verrà attualmente ignorata se {0} o {1} sono impostati.",
- "terminal.integrated.defaultProfile.osx": "Profilo predefinito usato in macOS. Questa impostazione verrà attualmente ignorata se {0} o {1} sono impostati.",
- "terminal.integrated.defaultProfile.windows": "Profilo predefinito usato in Windows. Questa impostazione verrà attualmente ignorata se {0} o {1} sono impostati.",
+ "terminal.integrated.defaultProfile.linux": "Profilo del terminale predefinito in Linux.",
+ "terminal.integrated.defaultProfile.osx": "Profilo del terminale predefinito in macOS.",
+ "terminal.integrated.defaultProfile.windows": "Profilo del terminale predefinito in Windows.",
"terminal.integrated.inheritEnv": "Indica se le nuove shell devono ereditare l'ambiente da VS Code. Questo comportamento potrebbe dare origine a una shell di accesso per assicurarsi che $PATH e altre variabili di sviluppo vengano inizializzate. Non ha alcun effetto in Windows.",
"terminal.integrated.persistentSessionScrollback": "Controlla il numero massimo di righe che verranno ripristinate durante la riconnessione a una sessione di terminale persistente. Se si aumenta questo valore, verranno ripristinate più righe di scorrimento all'indietro, ma aumenteranno sia la memoria richiesta che il tempo impiegato per la connessione ai terminali all'avvio. Per rendere effettiva questa impostazione, che deve essere impostata su un valore minore o uguale a `#terminal.integrated.scrollback#`, è necessario riavviare.",
- "terminal.integrated.profile.linux": "Profili Linux da presentare quando si crea un nuovo terminale tramite l'elenco a tendina del terminale. Impostare manualmente la proprietà {0} con un {1} facoltativo.\r\n\r\nImpostare un profilo esistente su {2} per nascondere il profilo dall'elenco, ad esempio: {3}.",
- "terminal.integrated.profile.osx": "Profili macOS da presentare quando si crea un nuovo terminale tramite l'elenco a tendina del terminale. Impostare la proprietà {0} manualmente con un {1} facoltativo.\r\n\r\nImpostare un profilo esistente su {2} per nascondere il profilo dall'elenco, ad esempio: {3}.",
- "terminal.integrated.profiles.windows": "Profili Windows da presentare durante la creazione di un nuovo terminale tramite l'elenco a tendina del terminale. Usare la proprietà {0} per rilevare automaticamente il percorso della shell. In alternativa, impostare la proprietà {1} manualmente con un {2} facoltativo.\r\n\r\nImpostare un profilo esistente su {3} per nascondere il profilo dall'elenco, ad esempio: {4}.",
- "terminal.integrated.shell.linux": "Percorso della shell usata dal terminale in Linux. [Altre informazioni sulla configurazione della shell](https://code.visualstudio.com/docs/editor/integrated-terminal#_terminal-profiles)",
- "terminal.integrated.shell.linux.deprecation": "Questa impostazione è deprecata. La nuova modalità consigliata per configurare la shell predefinita consiste nel creare un profilo del terminale in {0} e impostarne il nome come predefinito in {1}. In questo modo il profilo creato sarà prioritario rispetto alle impostazioni dei nuovi profili, ma questo comportamento cambierà in futuro.",
- "terminal.integrated.shell.osx": "Percorso della shell usata dal terminale in macOS. [Altre informazioni sulla configurazione della shell](https://code.visualstudio.com/docs/editor/integrated-terminal#_terminal-profiles)",
- "terminal.integrated.shell.osx.deprecation": "Questa impostazione è deprecata. La nuova modalità consigliata per configurare la shell predefinita consiste nel creare un profilo del terminale in {0} e impostarne il nome come predefinito in {1}. In questo modo il profilo creato sarà prioritario rispetto alle impostazioni dei nuovi profili, ma questo comportamento cambierà in futuro.",
- "terminal.integrated.shell.windows": "Percorso della shell usata dal terminale in Windows. [Altre informazioni sulla configurazione della shell](https://code.visualstudio.com/docs/editor/integrated-terminal#_terminal-profiles).",
- "terminal.integrated.shell.windows.deprecation": "Questa impostazione è deprecata. La nuova modalità consigliata per configurare la shell predefinita consiste nel creare un profilo del terminale in {0} e impostarne il nome come predefinito in {1}. In questo modo il profilo creato sarà prioritario rispetto alle impostazioni dei nuovi profili, ma questo comportamento cambierà in futuro.",
- "terminal.integrated.shellArgs.linux": "Argomenti della riga di comando da usare nel terminale Linux. [Altre informazioni sulla configurazione della shell](https://code.visualstudio.com/docs/editor/integrated-terminal#_terminal-profiles).",
- "terminal.integrated.shellArgs.osx": "Argomenti della riga di comando da usare nel terminale macOS. [Altre informazioni sulla configurazione della shell](https://code.visualstudio.com/docs/editor/integrated-terminal#_terminal-profiles).",
- "terminal.integrated.shellArgs.windows": "Argomenti della riga di comando da usare nel terminale Windows. [Altre informazioni sulla configurazione della shell](https://code.visualstudio.com/docs/editor/integrated-terminal#_terminal-profiles).",
- "terminal.integrated.shellArgs.windows.string": "Argomenti della riga di comando nel [formato della riga di comando](https://msdn.microsoft.com/en-au/08dfcab2-eb6e-49a4-80eb-87d4076c98c6) da usare nel terminale Windows. [Altre informazioni sulla configurazione della shell](https://code.visualstudio.com/docs/editor/integrated-terminal#_terminal-profiles).",
+ "terminal.integrated.profile": "Set di personalizzazioni dei profili del terminale per {0} che consente di aggiungere, rimuovere o modificare la modalità di avvio dei terminali. I profili sono costituiti da un percorso obbligatorio, argomenti facoltativi e altre opzioni di presentazione.\r\n\r\nPer eseguire l'override di un profilo esistente, usare il relativo nome di profilo come chiave, ad esempio:\r\n\r\n{1}\r\n\r\n{2}Altre informazioni sulla configurazione dei profili{3}.",
"terminal.integrated.showLinkHover": "Indica se visualizzare gli hover per i collegamenti nell'output del terminale.",
"terminal.integrated.useWslProfiles": "Controlla se le distribuzioni WSL vengono visualizzate o meno nell'elenco a discesa del terminale",
- "terminalAutomationProfile.path": "Singolo percorso di un eseguibile della shell.",
+ "terminalAutomationProfile.path": "Percorso di un eseguibile della shell.",
"terminalIntegratedConfigurationTitle": "Terminale integrato",
"terminalProfile.args": "Set facoltativo di argomenti con cui eseguire l'eseguibile della shell.",
"terminalProfile.color": "ID colore del tema da associare all'icona del terminale.",
@@ -1840,16 +2716,19 @@
"terminalProfile.osxExtensionId": "ID del terminale di estensione",
"terminalProfile.osxExtensionIdentifier": "L’estensione che ha contribuito a questo profilo.",
"terminalProfile.osxExtensionTitle": "Il nome del terminale di estensione",
- "terminalProfile.overrideName": "Controlla se il nome del profilo sostituisce o meno quello rilevato automaticamente.",
+ "terminalProfile.overrideName": "Indica se sostituire o meno il titolo del terminale dinamico che rileva il programma in esecuzione con il nome del profilo statico.",
"terminalProfile.path": "Singolo percorso per un eseguibile della shell o una matrice di percorsi che verrà usato come fallback quando si verifica un errore.",
"terminalProfile.windowsExtensionId": "ID del terminale di estensione",
"terminalProfile.windowsExtensionIdentifier": "L’estensione che ha contribuito a questo profilo.",
"terminalProfile.windowsExtensionTitle": "Il nome del terminale di estensione",
- "terminalProfile.windowsSource": "Origine del profilo che rileverà automaticamente i percorsi della shell."
+ "terminalProfile.windowsSource": "Un'origine profilo che rileverà automaticamente i percorsi della shell. Si noti che i percorsi degli eseguibili non standard non sono supportati e devono essere creati manualmente in un nuovo profilo."
},
"vs/platform/terminal/common/terminalProfiles": {
"terminalAutomaticProfile": "Rileva automaticamente l'impostazione predefinita"
},
+ "vs/platform/terminal/node/ptyHostMain": {
+ "ptyHost": "Pty Host"
+ },
"vs/platform/terminal/node/ptyService": {
"terminal-history-restored": "Cronologia ripristinata"
},
@@ -1859,23 +2738,26 @@
"launchFail.executableDoesNotExist": "Il percorso \"{0}\" dell'eseguibile della shell non esiste",
"launchFail.executableIsNotFileOrSymlink": "Il percorso \"{0}\" dell'eseguibile della shell non è un file di un collegamento simbolico"
},
- "vs/platform/theme/common/colorRegistry": {
+ "vs/platform/theme/common/colors/baseColors": {
"activeContrastBorder": "Un bordo supplementare intorno agli elementi attivi per contrastarli maggiormente rispetto agli altri.",
- "activeLinkForeground": "Colore dei collegamenti attivi.",
- "badgeBackground": "Colore di sfondo del badge. I badge sono piccole etichette informative, ad esempio per mostrare il conteggio dei risultati della ricerca.",
- "badgeForeground": "Colore primo piano del badge. I badge sono piccole etichette informative, ad esempio per mostrare il conteggio dei risultati di una ricerca.",
- "breadcrumbsBackground": "Colore di sfondo degli elementi di navigazione.",
- "breadcrumbsFocusForeground": "Colore degli elementi di navigazione in evidenza.",
- "breadcrumbsSelectedBackground": "Colore di sfondo del controllo di selezione elementi di navigazione.",
- "breadcrumbsSelectedForeground": "Colore degli elementi di navigazione selezionati.",
- "buttonBackground": "Colore di sfondo del pulsante.",
- "buttonBorder": "Colore del bordo del pulsante.",
- "buttonForeground": "Colore primo piano del pulsante.",
- "buttonHoverBackground": "Colore di sfondo del pulsante al passaggio del mouse.",
- "buttonSecondaryBackground": "Colore di sfondo secondario del pulsante.",
- "buttonSecondaryForeground": "Colore primo piano secondario del pulsante.",
- "buttonSecondaryHoverBackground": "Colore di sfondo secondario del pulsante al passaggio del mouse.",
- "buttonSeparator": "Colore del separatore pulsante.",
+ "contrastBorder": "Un bordo supplementare attorno agli elementi per contrastarli maggiormente rispetto agli altri.",
+ "descriptionForeground": "Colore primo piano del testo che fornisce informazioni aggiuntive, ad esempio per un'etichetta di testo.",
+ "disabledForeground": "Primo piano generale per gli elementi disabilitati. Questo colore viene usato solo e non è sostituito da quello di un componente.",
+ "errorForeground": "Colore primo piano globale per i messaggi di errore. Questo colore viene usato solo se non è sostituito da quello di un componente.",
+ "focusBorder": "Colore del bordo globale per gli elementi evidenziati. Questo colore viene usato solo se non è sostituito da quello di un componente.",
+ "foreground": "Colore primo piano generale. Questo colore viene usato solo se non è sostituito da quello di un componente.",
+ "iconForeground": "Colore predefinito per le icone nel workbench.",
+ "selectionBackground": "Il colore di sfondo delle selezioni di testo in workbench (ad esempio per i campi di input o aree di testo). Si noti che questo non si applica alle selezioni all'interno dell'editor.",
+ "textBlockQuoteBackground": "Colore di sfondo per le citazioni nel testo.",
+ "textBlockQuoteBorder": "Colore del bordo per le citazioni nel testo.",
+ "textCodeBlockBackground": "Colore di sfondo per i blocchi di codice nel testo.",
+ "textLinkActiveForeground": "Colore primo piano per i collegamenti nel testo quando vengono selezionati o al passaggio del mouse.",
+ "textLinkForeground": "Colore primo piano dei link nel testo.",
+ "textPreformatBackground": "Colore di sfondo dei segmenti di testo preformattato.",
+ "textPreformatForeground": "Colore primo piano dei segmenti di testo preformattato.",
+ "textSeparatorForeground": "Colore dei separatori di testo."
+ },
+ "vs/platform/theme/common/colors/chartsColors": {
"chartsBlue": "Colore blu usato nelle visualizzazioni grafico.",
"chartsForeground": "Colore primo piano usato nei grafici.",
"chartsGreen": "Colore verde usato nelle visualizzazioni grafico.",
@@ -1883,13 +2765,18 @@
"chartsOrange": "Colore arancione usato nelle visualizzazioni grafico.",
"chartsPurple": "Colore viola usato nelle visualizzazioni grafico.",
"chartsRed": "Colore rosso usato nelle visualizzazioni grafico.",
- "chartsYellow": "Colore giallo usato nelle visualizzazioni grafico.",
- "checkbox.background": "Colore di sfondo del widget della casella di controllo.",
- "checkbox.border": "Colore del bordo del widget della casella di controllo.",
- "checkbox.foreground": "Colore primo piano del widget della casella di controllo.",
- "contrastBorder": "Un bordo supplementare attorno agli elementi per contrastarli maggiormente rispetto agli altri.",
- "descriptionForeground": "Colore primo piano del testo che fornisce informazioni aggiuntive, ad esempio per un'etichetta di testo.",
+ "chartsYellow": "Colore giallo usato nelle visualizzazioni grafico."
+ },
+ "vs/platform/theme/common/colors/editorColors": {
+ "activeLinkForeground": "Colore dei collegamenti attivi.",
+ "breadcrumbsBackground": "Colore di sfondo degli elementi di navigazione.",
+ "breadcrumbsFocusForeground": "Colore degli elementi di navigazione in evidenza.",
+ "breadcrumbsSelectedBackground": "Colore di sfondo del controllo di selezione elementi di navigazione.",
+ "breadcrumbsSelectedForeground": "Colore degli elementi di navigazione selezionati.",
"diffDiagonalFill": "Colore del riempimento diagonale dell'editor diff. Il riempimento diagonale viene usato nelle visualizzazioni diff affiancate.",
+ "diffEditor.unchangedCodeBackground": "Colore di sfondo del codice non modificato nell'editor diff.",
+ "diffEditor.unchangedRegionBackground": "Colore di sfondo dei blocchi non modificati nell'editor diff.",
+ "diffEditor.unchangedRegionForeground": "Colore di primo piano dei blocchi non modificati nell'editor diff.",
"diffEditorBorder": "Colore del bordo tra due editor di testo.",
"diffEditorInserted": "Colore di sfondo per il testo che è stato inserito. Il colore non deve essere opaco per evitare di nascondere le decorazioni sottostanti.",
"diffEditorInsertedLineGutter": "Colore di sfondo per il margine in cui sono state inserite le righe.",
@@ -1901,16 +2788,13 @@
"diffEditorRemovedLineGutter": "Colore di sfondo per il margine in cui sono state rimosse le righe.",
"diffEditorRemovedLines": "Colore di sfondo per le righe che sono state rimosse. Il colore non deve essere opaco per evitare di nascondere le decorazioni sottostanti.",
"diffEditorRemovedOutline": "Colore del contorno del testo che è stato rimosso.",
- "disabledForeground": "Primo piano generale per gli elementi disabilitati. Questo colore viene usato solo e non è sostituito da quello di un componente.",
- "dropdownBackground": "Sfondo dell'elenco a discesa.",
- "dropdownBorder": "Bordo dell'elenco a discesa.",
- "dropdownForeground": "Primo piano dell'elenco a discesa.",
- "dropdownListBackground": "Sfondo dell'elenco a discesa.",
"editorBackground": "Colore di sfondo dell'editor.",
+ "editorCompositionBorder": "Colore del bordo per una composizione IME.",
"editorError.background": "Colore di sfondo del testo dell'errore nell'editor. Il colore non deve essere opaco per evitare di nascondere le decorazioni sottostanti.",
"editorError.foreground": "Colore primo piano degli indicatori di errore nell'editor.",
"editorFindMatch": "Colore della corrispondenza di ricerca corrente.",
"editorFindMatchBorder": "Colore del bordo della corrispondenza della ricerca corrente.",
+ "editorFindMatchForeground": "Colore del testo della corrispondenza di ricerca corrente.",
"editorForeground": "Colore primo piano predefinito dell'editor.",
"editorHint.foreground": "Colore primo piano degli indicatori di suggerimento nell'editor.",
"editorInactiveSelection": "Colore della selezione in un editor inattivo. Il colore non deve essere opaco per evitare di nascondere le decorazioni sottostanti.",
@@ -1922,43 +2806,90 @@
"editorInlayHintForeground": "Colore primo piano dei suggerimenti inline",
"editorInlayHintForegroundParameter": "Colore primo piano dei suggerimenti inline per i parametri",
"editorInlayHintForegroundTypes": "Colore primo piano dei suggerimenti inline per i tipi",
+ "editorLightBulbAiForeground": "Colore usato per l'icona dell'intelligenza artificiale con lampadina.",
"editorLightBulbAutoFixForeground": "Colore usato per l'icona delle azioni di correzione automatica con lampadina.",
"editorLightBulbForeground": "Colore usato per l'icona delle azioni con lampadina.",
"editorSelectionBackground": "Colore della selezione dell'editor.",
"editorSelectionForeground": "Colore del testo selezionato per il contrasto elevato.",
"editorSelectionHighlight": "Colore delle aree con lo stesso contenuto della selezione. Il colore non deve essere opaco per evitare di nascondere le decorazioni sottostanti.",
"editorSelectionHighlightBorder": "Colore del bordo delle regioni con lo stesso contenuto della selezione.",
- "editorStickyScrollBackground": "Sticky scroll background color for the editor",
- "editorStickyScrollHoverBackground": "Sticky scroll on hover background color for the editor",
+ "editorStickyScrollBackground": "Colore di sfondo della barra di scorrimento permanente nell'editor",
+ "editorStickyScrollBorder": "Colore del bordo della barra di scorrimento permanente nell'editor",
+ "editorStickyScrollGutterBackground": "Colore di sfondo della parte di rilegatura della barra di scorrimento permanente nell'editor",
+ "editorStickyScrollHoverBackground": "Colore di sfondo della barra di scorrimento permanente al passaggio del mouse nell'editor",
+ "editorStickyScrollShadow": " Colore ombreggiatura della barra di scorrimento permanente nell'editor",
"editorWarning.background": "Colore di sfondo del testo dell'avviso nell'editor. Il colore non deve essere opaco per evitare di nascondere le decorazioni sottostanti.",
"editorWarning.foreground": "Colore primo piano degli indicatori di avviso nell'editor.",
"editorWidgetBackground": "Colore di sfondo dei widget dell'editor, ad esempio Trova/Sostituisci.",
"editorWidgetBorder": "Colore del bordo dei widget dell'editor. Il colore viene usato solo se il widget sceglie di avere un bordo e se il colore non è sottoposto a override da un widget.",
"editorWidgetForeground": "Colore primo piano dei widget dell'editor, ad esempio Trova/Sostituisci.",
"editorWidgetResizeBorder": "Colore del bordo della barra di ridimensionamento dei widget dell'editor. Il colore viene usato solo se il widget sceglie di avere un bordo di ridimensionamento e se il colore non è sostituito da quello di un widget.",
- "errorBorder": "Colore del bordo delle caselle di errore nell'editor.",
- "errorForeground": "Colore primo piano globale per i messaggi di errore. Questo colore viene usato solo se non è sostituito da quello di un componente.",
+ "errorBorder": "Se impostato, colore delle doppie sottolineature per gli errori nell'editor.",
"findMatchHighlight": "Colore degli altri risultati della ricerca. Il colore non deve essere opaco per evitare di nascondere le decorazioni sottostanti.",
"findMatchHighlightBorder": "Colore del bordo delle altre corrispondenze della ricerca.",
+ "findMatchHighlightForeground": "Colore primo piano delle altre corrispondenze di ricerca.",
"findRangeHighlight": "Colore dell'intervallo di limite della ricerca. Il colore non deve essere opaco per evitare di nascondere le decorazioni sottostanti.",
"findRangeHighlightBorder": "Colore del bordo dell'intervallo che limita la ricerca. Il colore non deve essere opaco per evitare di nascondere le decorazioni sottostanti.",
- "focusBorder": "Colore del bordo globale per gli elementi evidenziati. Questo colore viene usato solo se non è sostituito da quello di un componente.",
- "foreground": "Colore primo piano generale. Questo colore viene usato solo se non è sostituito da quello di un componente.",
- "highlight": "Colore primo piano Elenco/Struttura ad albero delle occorrenze trovate durante la ricerca nell'Elenco/Struttura ad albero.",
- "hintBorder": "Colore del bordo delle caselle dei suggerimenti nell'editor.",
+ "hintBorder": "Se impostato, colore delle doppie sottolineature per i suggerimenti nell'editor.",
"hoverBackground": "Colore di sfondo dell'area sensibile al passaggio del mouse dell'editor.",
"hoverBorder": "Colore del bordo dell'area sensibile al passaggio del mouse dell'editor.",
"hoverForeground": "Colore primo piano dell'area sensibile al passaggio del mouse dell'editor.",
"hoverHighlight": "Evidenziazione sotto la parola per cui è visualizzata un'area sensibile al passaggio del mouse. Il colore non deve essere opaco per evitare di nascondere le decorazioni sottostanti.",
- "iconForeground": "Colore predefinito per le icone nel workbench.",
- "infoBorder": "Colore del bordo delle caselle informative nell'editor.",
- "inputBoxActiveOptionBorder": "Colore del bordo di opzioni attivate nei campi di input.",
- "inputBoxBackground": "Sfondo della casella di input.",
- "inputBoxBorder": "Bordo della casella di input.",
- "inputBoxForeground": "Primo piano della casella di input.",
- "inputOption.activeBackground": "Colore di sfondo al passaggio del mouse delle opzioni nei campi di input.",
- "inputOption.activeForeground": "Colore primo piano di opzioni attivate nei campi di input.",
- "inputOption.hoverBackground": "Colore di sfondo di opzioni attivate nei campi di input.",
+ "infoBorder": "Se impostato, colore delle doppie sottolineature per i messaggi informativi nell'editor.",
+ "mergeBorder": "Colore del bordo nelle intestazioni e sulla barra di divisione di conflitti di merge in linea.",
+ "mergeCommonContentBackground": "Sfondo del contenuto del predecessore comune nei conflitti di merge inline. Il colore non deve essere opaco per evitare di nascondere le decorazioni sottostanti.",
+ "mergeCommonHeaderBackground": "Sfondo dell'intestazione del predecessore comune nei conflitti di merge inline. Il colore non deve essere opaco per evitare di nascondere le decorazioni sottostanti.",
+ "mergeCurrentContentBackground": "Sfondo del contenuto delle modifiche correnti nei conflitti di merge inline. Il colore non deve essere opaco per evitare di nascondere le decorazioni sottostanti.",
+ "mergeCurrentHeaderBackground": "Sfondo dell'intestazione delle modifiche correnti nei conflitti di merge inline. Il colore non deve essere opaco per evitare di nascondere le decorazioni sottostanti.",
+ "mergeIncomingContentBackground": "Sfondo del contenuto delle modifiche in ingresso nei conflitti di merge inline. Il colore non deve essere opaco per evitare di nascondere le decorazioni sottostanti.",
+ "mergeIncomingHeaderBackground": "Sfondo dell'intestazione delle modifiche in ingresso nei conflitti di merge inline. Il colore non deve essere opaco per evitare di nascondere le decorazioni sottostanti.",
+ "overviewRulerCommonContentForeground": "Colore primo piano del righello delle annotazioni del predecessore comune per i conflitti di merge inline.",
+ "overviewRulerCurrentContentForeground": "Colore primo piano del righello delle annotazioni delle modifiche correnti per i conflitti di merge inline.",
+ "overviewRulerFindMatchForeground": "Colore del marcatore del righello delle annotazioni per la ricerca di corrispondenze. Il colore non deve essere opaco per evitare di nascondere le decorazioni sottostanti.",
+ "overviewRulerIncomingContentForeground": "Colore primo piano del righello delle annotazioni delle modifiche in ingresso per i conflitti di merge inline.",
+ "overviewRulerSelectionHighlightForeground": "Colore del marcatore del righello delle annotazioni per le evidenziazioni delle selezioni. Il colore non deve essere opaco per evitare di nascondere le decorazioni sottostanti.",
+ "problemsErrorIconForeground": "Colore usato per l'icona di errore dei problemi.",
+ "problemsInfoIconForeground": "Colore usato per l'icona informazioni dei problemi.",
+ "problemsWarningIconForeground": "Colore usato per l'icona di avviso dei problemi.",
+ "snippetFinalTabstopHighlightBackground": "Colore di sfondo dell'evidenziazione della tabulazione finale di un frammento.",
+ "snippetFinalTabstopHighlightBorder": "Colore del bordo dell'evidenziazione della tabulazione finale di un frammento.",
+ "snippetTabstopHighlightBackground": "Colore di sfondo dell'evidenziazione della tabulazione di un frammento.",
+ "snippetTabstopHighlightBorder": "Colore del bordo dell'evidenziazione della tabulazione di un frammento.",
+ "statusBarBackground": "Colore di sfondo della barra di stato sensibile al passaggio del mouse dell'editor.",
+ "toolbarActiveBackground": "Sfondo della barra degli strumenti quando si tiene premuto il mouse sulle azioni",
+ "toolbarHoverBackground": "Sfondo della barra degli strumenti al passaggio del mouse sulle azioni",
+ "toolbarHoverOutline": "Contorno della barra degli strumenti al passaggio del mouse sulle azioni",
+ "warningBorder": "Se impostato, colore delle doppie sottolineature per gli avvisi nell'editor.",
+ "widgetBorder": "Colore del bordo dei widget, ad es. Trova/Sostituisci all'interno dell'editor.",
+ "widgetShadow": "Colore ombreggiatura dei widget, ad es. Trova/Sostituisci all'interno dell'editor."
+ },
+ "vs/platform/theme/common/colors/inputColors": {
+ "buttonBackground": "Colore di sfondo del pulsante.",
+ "buttonBorder": "Colore del bordo del pulsante.",
+ "buttonForeground": "Colore primo piano del pulsante.",
+ "buttonHoverBackground": "Colore di sfondo del pulsante al passaggio del mouse.",
+ "buttonSecondaryBackground": "Colore di sfondo secondario del pulsante.",
+ "buttonSecondaryForeground": "Colore primo piano secondario del pulsante.",
+ "buttonSecondaryHoverBackground": "Colore di sfondo secondario del pulsante al passaggio del mouse.",
+ "buttonSeparator": "Colore del separatore pulsante.",
+ "checkbox.background": "Colore di sfondo del widget della casella di controllo.",
+ "checkbox.border": "Colore del bordo del widget della casella di controllo.",
+ "checkbox.disabled.background": "Sfondo di una casella di controllo disabilitata.",
+ "checkbox.disabled.foreground": "Primo piano di una casella di controllo disabilitata.",
+ "checkbox.foreground": "Colore primo piano del widget della casella di controllo.",
+ "checkbox.select.background": "Colore di sfondo del widget della casella di controllo quando è selezionato l'elemento in cui si trova.",
+ "checkbox.select.border": "Colore del bordo del widget della casella di controllo quando è selezionato l'elemento in cui si trova.",
+ "dropdownBackground": "Sfondo dell'elenco a discesa.",
+ "dropdownBorder": "Bordo dell'elenco a discesa.",
+ "dropdownForeground": "Primo piano dell'elenco a discesa.",
+ "dropdownListBackground": "Sfondo dell'elenco a discesa.",
+ "inputBoxActiveOptionBorder": "Colore del bordo di opzioni attivate nei campi di input.",
+ "inputBoxBackground": "Sfondo della casella di input.",
+ "inputBoxBorder": "Bordo della casella di input.",
+ "inputBoxForeground": "Primo piano della casella di input.",
+ "inputOption.activeBackground": "Colore di sfondo al passaggio del mouse delle opzioni nei campi di input.",
+ "inputOption.activeForeground": "Colore primo piano di opzioni attivate nei campi di input.",
+ "inputOption.hoverBackground": "Colore di sfondo di opzioni attivate nei campi di input.",
"inputPlaceholderForeground": "Colore primo piano di casella di input per il testo segnaposto.",
"inputValidationErrorBackground": "Colore di sfondo di convalida dell'input di tipo Errore.",
"inputValidationErrorBorder": "Colore del bordo della convalida dell'input di tipo Errore.",
@@ -1969,23 +2900,38 @@
"inputValidationWarningBackground": "Colore di sfondo di convalida dell'input di tipo Avviso.",
"inputValidationWarningBorder": "Colore del bordo della convalida dell'input di tipo Avviso.",
"inputValidationWarningForeground": "Colore primo piano di convalida dell'input di tipo Avviso.",
- "invalidItemForeground": "Colore primo piano dell'elenco/albero delle occorrenze trovate durante la ricerca nell'elenco/albero.",
"keybindingLabelBackground": "Colore di sfondo dell'etichetta del tasto di scelta rapida. L'etichetta del tasto di scelta rapida viene usata per rappresentare una scelta rapida da tastiera.",
"keybindingLabelBorder": "Colore del bordo dell'etichetta del tasto di scelta rapida. L'etichetta del tasto di scelta rapida viene usata per rappresentare una scelta rapida da tastiera.",
"keybindingLabelBottomBorder": "Colore inferiore del bordo dell'etichetta del tasto di scelta rapida. L'etichetta del tasto di scelta rapida viene usata per rappresentare una scelta rapida da tastiera.",
"keybindingLabelForeground": "Colore primo piano dell'etichetta del tasto di scelta rapida. L'etichetta del tasto di scelta rapida viene usata per rappresentare una scelta rapida da tastiera.",
+ "radioActiveBorder": "Colore del bordo del pulsante di opzione attivo.",
+ "radioActiveForeground": "Colore in primo piano del pulsante di opzione attivo.",
+ "radioBackground": "Colore di sfondo del pulsante di opzione attivo.",
+ "radioHoverBackground": "Colore di sfondo del pulsante di opzione inattivo/attivo al passaggio del mouse.",
+ "radioInactiveBackground": "Colore di sfondo del pulsante di opzione inattivo.",
+ "radioInactiveBorder": "Colore del bordo del pulsante di opzione inattivo.",
+ "radioInactiveForeground": "Colore in primo piano del pulsante di opzione inattivo."
+ },
+ "vs/platform/theme/common/colors/listColors": {
+ "editorActionListBackground": "Colore delle sfondo dell'elenco delle azioni.",
+ "editorActionListFocusBackground": "Colore dello sfondo dell’elenco di azioni per l'elemento con stato attivo.",
+ "editorActionListFocusForeground": "Colore in primo dell’elenco delle azioni per l'elemento con stato attivo.",
+ "editorActionListForeground": "Colore in primo piano dell'elenco delle azioni.",
+ "highlight": "Colore primo piano Elenco/Struttura ad albero delle occorrenze trovate durante la ricerca nell'Elenco/Struttura ad albero.",
+ "invalidItemForeground": "Colore primo piano dell'elenco/albero delle occorrenze trovate durante la ricerca nell'elenco/albero.",
"listActiveSelectionBackground": "Colore di sfondo dell'elenco/albero per l'elemento selezionato quando l'elenco/albero è attivo. Un elenco/albero attivo ha lo stato attivo della tastiera, a differenza di uno inattivo.",
"listActiveSelectionForeground": "Colore primo piano dell'elenco/albero per l'elemento selezionato quando l'elenco/albero è attivo. Un elenco/albero attivo ha lo stato attivo della tastiera, a differenza di uno inattivo.",
"listActiveSelectionIconForeground": "Colore primo piano dell’icona dell'elenco/albero per l'elemento selezionato quando l'elenco/albero è attivo. Un elenco/albero attivo ha lo stato attivo della tastiera, a differenza di uno inattivo.",
"listDeemphasizedForeground": "Colore primo piano dell'elenco/albero per gli elementi non evidenziati.",
- "listDropBackground": "Sfondo dell'elenco/albero durante il trascinamento degli elementi selezionati.",
+ "listDropBackground": "Sfondo dell'elenco/albero durante il trascinamento degli elementi su altri elementi quando si usa il mouse.",
+ "listDropBetweenBackground": "Il colore del bordo del trascinamento dell’elenco/albero durante lo spostamento di elementi quando si usa il mouse.",
"listErrorForeground": "Colore primo piano delle voci di elenco contenenti errori.",
"listFilterMatchHighlight": "Colore di sfondo della corrispondenza filtrata.",
"listFilterMatchHighlightBorder": "Colore del bordo della corrispondenza filtrata.",
"listFilterWidgetBackground": "Colore di sfondo del widget del filtro per tipo in elenchi e alberi.",
"listFilterWidgetNoMatchesOutline": "Colore del contorno del widget del filtro per tipo in elenchi e alberi quando non sono presenti corrispondenze.",
"listFilterWidgetOutline": "Colore del contorno del widget del filtro per tipo in elenchi e alberi.",
- "listFilterWidgetShadow": "Colore ombreggiatura del widget del filtro in elenchi e alberi.",
+ "listFilterWidgetShadow": "Colore ombreggiatura del widget del filtro sul tipo negli elenchi e alberi.",
"listFocusAndSelectionOutline": "Colore del contorno dell'elenco/albero per l'elemento con lo stato attivo quando l'elenco/albero è attivo e selezionato. Un elenco/albero attivo ha lo stato attivo della tastiera, a differenza di uno inattivo.",
"listFocusBackground": "Colore di sfondo dell'elenco/albero per l'elemento con lo stato attivo quando l'elenco/albero è attivo. Un elenco/albero attivo ha lo stato attivo della tastiera, a differenza di uno inattivo.",
"listFocusForeground": "Colore primo piano dell'elenco/albero per l'elemento con lo stato attivo quando l'elenco/albero è attivo. Un elenco/albero attivo ha lo stato attivo della tastiera, a differenza di uno inattivo.",
@@ -1999,82 +2945,77 @@
"listInactiveSelectionForeground": "Colore primo piano dell'elenco/albero per l'elemento selezionato quando l'elenco/albero è inattivo. Un elenco/albero attivo ha lo stato attivo della tastiera, a differenza di uno inattivo.",
"listInactiveSelectionIconForeground": "Colore primo piano dell’icona dell'elenco/albero per l'elemento selezionato quando l'elenco/albero è inattivo. Un elenco/albero attivo ha lo stato attivo della tastiera, a differenza di uno inattivo.",
"listWarningForeground": "Colore primo piano delle voci di elenco contenenti avvisi.",
+ "tableColumnsBorder": "Colore del bordo della tabella tra le colonne.",
+ "tableOddRowsBackgroundColor": "Colore di sfondo per le righe di tabella dispari.",
+ "treeInactiveIndentGuidesStroke": "Colore del tratto dell'albero per le guide di rientro non attive.",
+ "treeIndentGuidesStroke": "Colore del tratto dell'albero per le guide per i rientri."
+ },
+ "vs/platform/theme/common/colors/menuColors": {
"menuBackground": "Colore di sfondo delle voci di menu.",
"menuBorder": "Colore del bordo del menu.",
"menuForeground": "Colore primo piano delle voci di menu.",
"menuSelectionBackground": "Colore di sfondo della voce di menu selezionata nei menu.",
"menuSelectionBorder": "Colore del bordo della voce di menu selezionata nei menu.",
"menuSelectionForeground": "Colore primo piano della voce di menu selezionata nei menu.",
- "menuSeparatorBackground": "Colore di un elemento separatore delle voci di menu.",
- "mergeBorder": "Colore del bordo nelle intestazioni e sulla barra di divisione di conflitti di merge in linea.",
- "mergeCommonContentBackground": "Sfondo del contenuto del predecessore comune nei conflitti di merge inline. Il colore non deve essere opaco per evitare di nascondere le decorazioni sottostanti.",
- "mergeCommonHeaderBackground": "Sfondo dell'intestazione del predecessore comune nei conflitti di merge inline. Il colore non deve essere opaco per evitare di nascondere le decorazioni sottostanti.",
- "mergeCurrentContentBackground": "Sfondo del contenuto delle modifiche correnti nei conflitti di merge inline. Il colore non deve essere opaco per evitare di nascondere le decorazioni sottostanti.",
- "mergeCurrentHeaderBackground": "Sfondo dell'intestazione delle modifiche correnti nei conflitti di merge inline. Il colore non deve essere opaco per evitare di nascondere le decorazioni sottostanti.",
- "mergeIncomingContentBackground": "Sfondo del contenuto delle modifiche in ingresso nei conflitti di merge inline. Il colore non deve essere opaco per evitare di nascondere le decorazioni sottostanti.",
- "mergeIncomingHeaderBackground": "Sfondo dell'intestazione delle modifiche in ingresso nei conflitti di merge inline. Il colore non deve essere opaco per evitare di nascondere le decorazioni sottostanti.",
+ "menuSeparatorBackground": "Colore di un elemento separatore delle voci di menu."
+ },
+ "vs/platform/theme/common/colors/minimapColors": {
"minimapBackground": "Colore di sfondo della minimappa.",
"minimapError": "Colore del marcatore della minimappa per gli errori.",
"minimapFindMatchHighlight": "Colore del marcatore della minimappa per la ricerca delle corrispondenze.",
"minimapForegroundOpacity": "Opacità degli elementi in primo piano di cui è stato eseguito il rendering nella minimappa. Ad esempio, con \"#000000c0\" il rendering degli elementi verrà eseguito con il 75% di opacità.",
+ "minimapInfo": "Colore del marcatore della minimappa per le informazioni.",
"minimapSelectionHighlight": "Colore del marcatore della minimappa per la selezione dell'editor.",
"minimapSelectionOccurrenceHighlight": "Colore del marcatore della minimappa per le selezioni ripetute dell'editor.",
"minimapSliderActiveBackground": "Colore di sfondo del dispositivo di scorrimento della minimappa quando si fa clic con il mouse.",
"minimapSliderBackground": "Colore di sfondo del dispositivo di scorrimento della minimappa.",
"minimapSliderHoverBackground": "Colore di sfondo del dispositivo di scorrimento della minimappa al passaggio del mouse.",
- "overviewRuleWarning": "Colore del marcatore della minimappa per gli avvisi.",
- "overviewRulerCommonContentForeground": "Colore primo piano del righello delle annotazioni del predecessore comune per i conflitti di merge inline.",
- "overviewRulerCurrentContentForeground": "Colore primo piano del righello delle annotazioni delle modifiche correnti per i conflitti di merge inline.",
- "overviewRulerFindMatchForeground": "Colore del marcatore del righello delle annotazioni per la ricerca di corrispondenze. Il colore non deve essere opaco per evitare di nascondere le decorazioni sottostanti.",
- "overviewRulerIncomingContentForeground": "Colore primo piano del righello delle annotazioni delle modifiche in ingresso per i conflitti di merge inline.",
- "overviewRulerSelectionHighlightForeground": "Colore del marcatore del righello delle annotazioni per le evidenziazioni delle selezioni. Il colore non deve essere opaco per evitare di nascondere le decorazioni sottostanti.",
+ "overviewRuleWarning": "Colore del marcatore della minimappa per gli avvisi."
+ },
+ "vs/platform/theme/common/colors/miscColors": {
+ "activityErrorBadge.background": "Colore di sfondo della notifica dell'attività di errore",
+ "activityErrorBadge.foreground": "Colore primo piano della notifica dell'attività di errore",
+ "activityWarningBadge.background": "Colore di sfondo della notifica dell'attività di avviso",
+ "activityWarningBadge.foreground": "Colore primo piano della notifica dell'attività di avviso",
+ "badgeBackground": "Colore di sfondo del badge. I badge sono piccole etichette informative, ad esempio per mostrare il conteggio dei risultati della ricerca.",
+ "badgeForeground": "Colore primo piano del badge. I badge sono piccole etichette informative, ad esempio per mostrare il conteggio dei risultati di una ricerca.",
+ "chartAxis": "Colore dell'asse del grafico.",
+ "chartGuide": "Linea di guida per il grafico.",
+ "chartLine": "Colore della linea per il grafico.",
+ "progressBarBackground": "Colore di sfondo dell'indicatore di stato che può essere mostrato per operazioni a esecuzione prolungata.",
+ "sashActiveBorder": "Colore dei bordi di ridimensionamento attivi.",
+ "scrollbarBackground": "Colore di sfondo della traccia della barra di scorrimento.",
+ "scrollbarShadow": "Ombra della barra di scorrimento per indicare lo scorrimento della visualizzazione.",
+ "scrollbarSliderActiveBackground": "Colore di sfondo del cursore della barra di scorrimento quando si fa clic con il mouse.",
+ "scrollbarSliderBackground": "Colore di sfondo del cursore della barra di scorrimento.",
+ "scrollbarSliderHoverBackground": "Colore di sfondo del cursore della barra di scorrimento al passaggio del mouse."
+ },
+ "vs/platform/theme/common/colors/quickpickColors": {
"pickerBackground": "Colore di sfondo di Selezione rapida. Il widget Selezione rapida è il contenitore di selezioni quali il riquadro comandi.",
"pickerForeground": "Colore primo piano di Selezione rapida. Il widget Selezione rapida è il contenitore di selezioni quali il riquadro comandi.",
"pickerGroupBorder": "Colore di selezione rapida per il raggruppamento dei bordi.",
"pickerGroupForeground": "Colore di selezione rapida per il raggruppamento delle etichette.",
"pickerTitleBackground": "Colore di sfondo del titolo di Selezione rapida. Il widget Selezione rapida è il contenitore di selezioni quali il riquadro comandi.",
- "problemsErrorIconForeground": "Colore usato per l'icona di errore dei problemi.",
- "problemsInfoIconForeground": "Colore usato per l'icona informazioni dei problemi.",
- "problemsWarningIconForeground": "Colore usato per l'icona di avviso dei problemi.",
- "progressBarBackground": "Colore di sfondo dell'indicatore di stato che può essere mostrato per operazioni a esecuzione prolungata.",
"quickInput.list.focusBackground deprecation": "In alternativa, usare quickInputList.focusBackground",
"quickInput.listFocusBackground": "Colore di sfondo di Selezione rapida per l'elemento con lo stato attivo.",
"quickInput.listFocusForeground": "Colore primo piano di Selezione rapida per l'elemento con lo stato attivo.",
- "quickInput.listFocusIconForeground": "Colore primo piano dell’icona di Selezione rapida per l'elemento con lo stato attivo.",
- "sashActiveBorder": "Colore dei bordi di ridimensionamento attivi.",
- "scrollbarShadow": "Ombra della barra di scorrimento per indicare lo scorrimento della visualizzazione.",
- "scrollbarSliderActiveBackground": "Colore di sfondo del cursore della barra di scorrimento quando si fa clic con il mouse.",
- "scrollbarSliderBackground": "Colore di sfondo del cursore della barra di scorrimento.",
- "scrollbarSliderHoverBackground": "Colore di sfondo del cursore della barra di scorrimento al passaggio del mouse.",
+ "quickInput.listFocusIconForeground": "Colore primo piano dell’icona di Selezione rapida per l'elemento con lo stato attivo."
+ },
+ "vs/platform/theme/common/colors/searchColors": {
+ "search.resultsInfoForeground": "Colore del testo nel messaggio di completamento del viewlet di ricerca.",
"searchEditor.editorFindMatchBorder": "Colore del bordo delle corrispondenze query dell'editor della ricerca.",
- "searchEditor.queryMatch": "Colore delle corrispondenze query dell'editor della ricerca.",
- "selectionBackground": "Il colore di sfondo delle selezioni di testo in workbench (ad esempio per i campi di input o aree di testo). Si noti che questo non si applica alle selezioni all'interno dell'editor.",
- "snippetFinalTabstopHighlightBackground": "Colore di sfondo dell'evidenziazione della tabulazione finale di un frammento.",
- "snippetFinalTabstopHighlightBorder": "Colore del bordo dell'evidenziazione della tabulazione finale di un frammento.",
- "snippetTabstopHighlightBackground": "Colore di sfondo dell'evidenziazione della tabulazione di un frammento.",
- "snippetTabstopHighlightBorder": "Colore del bordo dell'evidenziazione della tabulazione di un frammento.",
- "statusBarBackground": "Colore di sfondo della barra di stato sensibile al passaggio del mouse dell'editor.",
- "tableColumnsBorder": "Colore del bordo della tabella tra le colonne.",
- "tableOddRowsBackgroundColor": "Colore di sfondo per le righe di tabella dispari.",
- "textBlockQuoteBackground": "Colore di sfondo per le citazioni nel testo.",
- "textBlockQuoteBorder": "Colore del bordo per le citazioni nel testo.",
- "textCodeBlockBackground": "Colore di sfondo per i blocchi di codice nel testo.",
- "textLinkActiveForeground": "Colore primo piano per i collegamenti nel testo quando vengono selezionati o al passaggio del mouse.",
- "textLinkForeground": "Colore primo piano dei link nel testo.",
- "textPreformatForeground": "Colore primo piano dei segmenti di testo preformattato.",
- "textSeparatorForeground": "Colore dei separatori di testo.",
- "toolbarActiveBackground": "Sfondo della barra degli strumenti quando si tiene premuto il mouse sulle azioni",
- "toolbarHoverBackground": "Sfondo della barra degli strumenti al passaggio del mouse sulle azioni",
- "toolbarHoverOutline": "Contorno della barra degli strumenti al passaggio del mouse sulle azioni",
- "treeIndentGuidesStroke": "Colore del tratto dell'albero per le guide per i rientri.",
- "warningBorder": "Colore del bordo delle caselle di avviso nell'editor.",
- "widgetShadow": "Colore ombreggiatura dei widget, ad es. Trova/Sostituisci all'interno dell'editor."
+ "searchEditor.queryMatch": "Colore delle corrispondenze query dell'editor della ricerca."
+ },
+ "vs/platform/theme/common/colorUtils": {
+ "transparecyRequired": "Questo colore deve essere trasparente, altrimenti oscurerà il contenuto",
+ "useDefault": "Usare il colore predefinito."
},
"vs/platform/theme/common/iconRegistry": {
"iconDefinition.fontCharacter": "Tipo di carattere associato alla definizione di icona.",
"iconDefinition.fontId": "ID del tipo di carattere da usare. Se non è impostato, viene usato il tipo di carattere definito per primo.",
"nextChangeIcon": "Icona per la posizione di Vai a editor successivo.",
"previousChangeIcon": "Icona per la posizione di Vai a editor precedente.",
+ "schema.fontId.formatError": "L'ID carattere deve contenere solo lettere, numeri, caratteri di sottolineatura e trattini.",
"widgetClose": "Icona dell'azione di chiusura nei widget."
},
"vs/platform/theme/common/tokenClassificationRegistry": {
@@ -2122,7 +3063,6 @@
"variable": "Stile per le variabili."
},
"vs/platform/undoRedo/common/undoRedoService": {
- "cancel": "Annulla",
"cannotResourceRedoDueToInProgressUndoRedo": "Non è stato possibile ripetere '{0}' perché è già in esecuzione un'operazione di annullamento o ripetizione.",
"cannotResourceUndoDueToInProgressUndoRedo": "Non è stato possibile annullare '{0}' perché è già in esecuzione un'operazione di annullamento o ripetizione.",
"cannotWorkspaceRedo": "Non è stato possibile ripetere '{0}' in tutti i file. {1}",
@@ -2135,12 +3075,12 @@
"cannotWorkspaceUndoDueToInProgressUndoRedo": "Non è stato possibile annullare '{0}' su tutti i file perché è già in esecuzione un'operazione di annullamento o ripetizione su {1}",
"confirmDifferentSource": "Annullare '{0}'?",
"confirmDifferentSource.no": "No",
- "confirmDifferentSource.yes": "Sì",
+ "confirmDifferentSource.yes": "&&Sì",
"confirmWorkspace": "Annullare '{0}' in tutti i file?",
"externalRemoval": "I file seguenti sono stati chiusi e modificati nel disco: {0}.",
"noParallelUniverses": "I file seguenti sono stati modificati in modo incompatibile: {0}.",
- "nok": "Annulla questo file",
- "ok": "Annulla in {0} file"
+ "nok": "Annulla questo &&file",
+ "ok": "&&Annulla in {0} file"
},
"vs/platform/update/common/update.config.contribution": {
"default": "Abilita il controllo automatico degli aggiornamenti. Code controlla periodicamente la disponibilità di aggiornamenti in modo automatico.",
@@ -2181,22 +3121,36 @@
"settingsSync.ignoredSettings": "Configura le impostazioni da ignorare durante la sincronizzazione.",
"settingsSync.keybindingsPerPlatform": "Sincronizza i tasti di scelta rapida per ogni piattaforma."
},
+ "vs/platform/userDataSync/common/userDataSyncLog": {
+ "userDataSyncLog": "Sincronizzazione impostazioni"
+ },
"vs/platform/userDataSync/common/userDataSyncMachines": {
"error incompatible": "Non è possibile leggere i dati dei computer perché la versione corrente non è compatibile. Aggiornare {0} e riprovare."
},
- "vs/platform/windows/electron-main/window": {
- "appCrashed": "Si è verificato un arresto anomalo della finestra",
- "appCrashedDetail": "Ci scusiamo per l'inconveniente. Per riprendere dal punto in cui si è verificata l'interruzione, riaprire la finestra.",
- "appCrashedDetails": "Si è verificato un arresto anomalo della finestra (motivo: '{0}', codice: '{1}')",
+ "vs/platform/userDataSync/common/userDataSyncResourceProvider": {
+ "incompatible sync data": "Non è possibile analizzare i dati di sincronizzazione perché non sono compatibili con la versione corrente."
+ },
+ "vs/platform/windows/electron-main/windowImpl": {
+ "appGone": "La finestra è terminata in modo imprevisto",
+ "appGoneDetailEmptyWindow": "Ci scusiamo per l'inconveniente. È possibile aprire una nuova finestra vuota per ricominciare.",
+ "appGoneDetailWorkspace": "Ci scusiamo per l'inconveniente. Per riprendere dal punto in cui si è verificata l'interruzione, riaprire la finestra.",
+ "appGoneDetails": "La finestra è terminata in modo imprevisto (motivo: '{0}', codice: '{1}')",
"appStalled": "La finestra non risponde",
"appStalledDetail": "È possibile riaprire la finestra, chiuderla oppure attendere.",
"close": "&&Chiudi",
"doNotRestoreEditors": "Non ripristinare gli editor",
"hiddenMenuBar": "È comunque possibile accedere alla barra dei menu premendo ALT.",
+ "newWindow": "Nuova finestra",
"reopen": "&&Riapri",
"wait": "&&Continua ad attendere"
},
"vs/platform/windows/electron-main/windowsMainService": {
+ "allow": "&&Consenti",
+ "cancel": "&&Annulla",
+ "confirmOpenDetail": "Il percorso '{0}' usa un host non consentito. A meno che non si consideri attendibile l'host, premere 'Annulla'.",
+ "confirmOpenMessage": "L'host '{0}' non è stato trovato nell'elenco degli host consentiti. Consentirlo comunque?",
+ "doNotAskAgain": "Consenti definitivamente l’host '{0}'",
+ "learnMore": "&&Altre informazioni",
"ok": "&&OK",
"pathNotExistDetail": "Il percorso '{0}' non esiste in questo computer.",
"pathNotExistTitle": "Il percorso non esiste",
@@ -2206,11 +3160,11 @@
"vs/platform/workspace/common/workspace": {
"codeWorkspace": "Area di lavoro del codice"
},
- "vs/platform/workspace/common/workspaceTrust": {
- "trusted": "Attendibile",
- "untrusted": "Modalità con restrizioni"
- },
"vs/platform/workspaces/electron-main/workspacesHistoryMainService": {
+ "cancel": "&&Annulla",
+ "clearButtonLabel": "&&Cancella",
+ "confirmClearDetail": "Questa azione è irreversibile.",
+ "confirmClearRecentsMessage": "Cancellare tutti i file e le aree di lavoro aperti di recente?",
"newWindow": "Nuova finestra",
"newWindowDesc": "Apre una nuova finestra",
"recentFolders": "Cartelle recenti",
@@ -2223,6 +3177,28 @@
"workspaceOpenedDetail": "L'area di lavoro è già aperta in un'altra finestra. Chiudere tale finestra prima di riprovare.",
"workspaceOpenedMessage": "Non è possibile salvare l'area di lavoro '{0}'"
},
+ "vs/server/node/remoteExtensionHostAgentCli": {
+ "remotecli": "Interfaccia della riga di comando remota"
+ },
+ "vs/server/node/serverEnvironmentService": {
+ "acceptLicenseTerms": "Se impostato, l'utente accetta le condizioni di licenza del server e il server verrà avviato senza una richiesta all'utente.",
+ "connection-token": "Segreto che deve essere incluso con tutte le richieste.",
+ "connection-token-file": "Percorso a un file che contiene il token di connessione.",
+ "default-folder": "Cartella dell'area di lavoro da aprire quando non viene specificato alcun input nell'URL del browser. Percorso relativo o assoluto risolto rispetto alla directory di lavoro corrente.",
+ "default-workspace": "Area di lavoro da aprire quando non viene specificato alcun input nell'URL del browser. Percorso relativo o assoluto risolto rispetto alla directory di lavoro corrente.",
+ "host": "Nome host o indirizzo IP di cui il server deve essere in ascolto. Se non è impostato, il valore predefinito è 'localhost'.",
+ "port": "Porta di cui il server deve essere in ascolto. Se viene passato 0, viene selezionata una porta libera casuale. Se viene passato un intervallo nel formato num-num, viene selezionata una porta libera dall'intervallo (entità finale inclusa).",
+ "reconnection-grace-time": "Eseguire l'override della finestra del periodo di prova per la riconnessione, espresso in secondi. Il valore predefinito è 10.800 (3 ore).",
+ "server-base-path": "Percorso in cui vengono specificati l'interfaccia utente Web e il server di codice. L'impostazione predefinita è '/'.`",
+ "serverDataDir": "Specifica la directory in cui vengono conservati i dati del server.",
+ "socket-path": "Percorso di un file socket di cui il server deve essere in ascolto.",
+ "start-server": "Avviare il server durante l'installazione o la disinstallazione delle estensioni. Da usare in combinazione con 'install-extension', 'install-builtin-extension' e 'uninstall-extension'.",
+ "telemetry-level": "Imposta il livello di telemetria iniziale. I livelli validi sono: 'off', 'crash', 'error' e 'all'. Se non viene specificato, il server invierà i dati di telemetria fino a quando un client non si connette, quindi userà l'impostazione di telemetria dei client. L'impostazione di questa opzione su 'off' equivale a --disable-telemetry",
+ "without-connection-token": "Eseguire senza un token di connessione. Usare questa opzione solo se la connessione è protetta da altri mezzi."
+ },
+ "vs/server/node/serverServices": {
+ "remoteExtensionLog": "Server"
+ },
"win32/i18n/messages": {
"AddContextMenuFiles": "Aggiungi azione \"Apri con %1\" al menu di scelta rapida file di Esplora risorse",
"AddContextMenuFolders": "Aggiungi azione \"Apri con %1\" al menu di scelta rapida directory di Esplora risorse",
@@ -2236,369 +3212,67 @@
"OpenWithCodeContextMenu": "Apr&i con %1",
"Other": "Altro:",
"RunAfter": "Esegui %1 dopo l'installazione",
- "SourceFile": "File di origine %1"
- },
- "readme.md": {
- "LanguagePackTitle": "Il Language Pack fornisce un'esperienza localizzata dell'interfaccia utente di VS Code.",
- "Usage": "Sintassi",
- "displayLanguage": "Per eseguire l'override della lingua predefinita dell'interfaccia utente, impostare in modo esplicito la lingua visualizzata di VS Code con il comando \"Configura la lingua visualizzata\".",
- "Command Palette": "Premere \"CTRL+MAIUSC+P\" per visualizzare il riquadro comandi, quindi iniziare a digitare \"visualizza\" per filtrare e visualizzare il comando \"Configura la lingua visualizzata\".",
- "ShowLocale": "Premere INVIO per visualizzare un elenco delle lingue installate in base alle impostazioni locali, con le impostazioni locali correnti evidenziate.",
- "SwtichUI": "Selezionare altre impostazioni locali per cambiare la lingua dell'interfaccia utente.",
- "DocLink": "Per altre informazioni, vedere la documentazione.",
- "Contributing": "Contributo",
- "Feedback": "Per un feedback sul miglioramento della traduzione, creare un problema nel repository \"vscode-loc\".",
- "LocPlatform": "Le stringhe di traduzione vengono gestite in Microsoft Localization Platform. È possibile apportare modifiche solo in Microsoft Localization Platform e quindi esportarle nel repository vscode-loc. Di conseguenza, la richiesta pull non verrà accettata nel repository vscode-loc.",
- "LicenseTitle": "Licenza",
- "LicenseMessage": "Il codice sorgente e le stringhe sono concessi in licenza in base alla licenza \"MIT\".",
- "Credits": "Riconoscimenti",
- "Contributed": "Questo Language Pack ha ricevuto un contributo tramite l'iniziativa di localizzazione della community \"By the community, for the community\". Un ringraziamento speciale ai collaboratori della community per averlo reso disponibile.",
- "TopContributors": "Principali collaboratori:",
- "Contributors": "Collaboratori:",
- "EnjoyLanguagePack": "Buon divertimento!"
- },
- "win32/i18n/Default": {
- "SetupAppTitle": "Installa",
- "SetupWindowTitle": "Installazione - %1",
- "UninstallAppTitle": "Disinstalla",
- "UninstallAppFullTitle": "Disinstallazione di %1",
- "InformationTitle": "Informazioni",
- "ConfirmTitle": "Conferma",
- "ErrorTitle": "Errore",
- "SetupLdrStartupMessage": "%1 verrà installato. Continuare?",
- "LdrCannotCreateTemp": "Non è possibile creare un file temporaneo. L'installazione è stata interrotta",
- "LdrCannotExecTemp": "Non è possibile eseguire il file nella directory temporanea. L'installazione è stata interrotta",
- "LastErrorMessage": "%1.%n%nErrore %2: %3",
- "SetupFileMissing": "Nella directory di installazione manca il file %1. Risolvere il problema o procurarsi una nuova copia del programma.",
- "SetupFileCorrupt": "I file di installazione sono danneggiati. Procurarsi una nuova copia del programma.",
- "SetupFileCorruptOrWrongVer": "I file di installazione sono danneggiati o sono incompatibili con questa versione del programma di installazione. Risolvere il problema o procurarsi una nuova copia del programma.",
- "InvalidParameter": "Alla riga di comando è stato passato un parametro non valido:%n%n%1",
- "SetupAlreadyRunning": "Il programma di installazione è già in esecuzione.",
- "WindowsVersionNotSupported": "Questo programma non supporta la versione di Windows in esecuzione nel computer.",
- "WindowsServicePackRequired": "Per questo programma è necessario %1 Service Pack %2 o versione successiva.",
- "NotOnThisPlatform": "Questo programma non verrà eseguito in %1.",
- "OnlyOnThisPlatform": "Questo programma deve essere eseguito in %1.",
- "OnlyOnTheseArchitectures": "Questo programma può essere installato solo in versioni di Windows progettate per le architetture di processori seguenti:%n%n%1",
- "MissingWOW64APIs": "La versione di Windows in esecuzione non include la funzionalità richiesta dal programma di installazione per eseguire un'installazione a 64 bit. Per risolvere il problema, installare il Service Pack %1.",
- "WinVersionTooLowError": "Per questo programma è necessario %1 %2 o versione successiva.",
- "WinVersionTooHighError": "Questo programma non può essere installato in %1 %2 o versione successiva.",
- "AdminPrivilegesRequired": "Per installare questo programma, è necessario aver eseguito l'accesso come amministratore.",
- "PowerUserPrivilegesRequired": "Per installare questo programma, è necessario aver eseguito l'accesso come amministratore o come membro del gruppo Power Users.",
- "SetupAppRunningError": "Il programma di installazione ha rilevato che %1 è attualmente in esecuzione.%n%nChiuderne ora tutte le istanze, quindi fare clic su OK per continuare o su Annulla per uscire.",
- "UninstallAppRunningError": "Il programma di disinstallazione ha rilevato che %1 è attualmente in esecuzione.%n%nChiuderne ora tutte le istanze, quindi fare clic su OK per continuare o su Annulla per uscire.",
- "ErrorCreatingDir": "Il programma di installazione non è riuscito a creare la directory \"%1\"",
- "ErrorTooManyFilesInDir": "Non è possibile creare un file nella directory \"%1\" perché contiene troppi file",
- "ExitSetupTitle": "Esci",
- "ExitSetupMessage": "L'installazione non è completa. Se si esce ora, il programma non verrà installato.%n%nÈ possibile eseguire di nuovo il programma di installazione in un altro momento per completare l'installazione.%n%nUscire dall'installazione?",
- "AboutSetupMenuItem": "&Informazioni sull'installazione...",
- "AboutSetupTitle": "Informazioni sull'installazione",
- "AboutSetupMessage": "%1 versione %2%n%3%n%nHome page di %1:%n%4",
- "ButtonBack": "< In&dietro",
- "ButtonNext": "&Avanti >",
- "ButtonInstall": "&Installa",
- "ButtonOK": "OK",
- "ButtonCancel": "Annulla",
- "ButtonYes": "&Sì",
- "ButtonYesToAll": "Sì a t&utti",
- "ButtonNo": "&No",
- "ButtonNoToAll": "N&o a tutti",
- "ButtonFinish": "&Fine",
- "ButtonBrowse": "Sfo&glia...",
- "ButtonWizardBrowse": "S&foglia...",
- "ButtonNewFolder": "&Crea nuova cartella",
- "SelectLanguageTitle": "Seleziona lingua di installazione",
- "SelectLanguageLabel": "Selezionare la lingua da usare durante l'installazione:",
- "ClickNext": "Fare clic su Avanti per continuare o su Annulla per uscire dall'installazione.",
- "BrowseDialogTitle": "Cerca cartella",
- "BrowseDialogLabel": "Selezionare una cartella nell'elenco seguente, quindi fare clic su OK.",
- "NewFolderName": "Nuova cartella",
- "WelcomeLabel1": "Installazione guidata di [name]",
- "WelcomeLabel2": "[name/ver] verrà installato nel computer.%n%nPrima di continuare, è consigliabile chiudere tutte le altre applicazioni.",
- "WizardPassword": "Password",
- "PasswordLabel1": "Questa installazione è protetta da password.",
- "PasswordLabel3": "Digitare la password, quindi fare clic su Avanti per continuare. Per le password viene fatta distinzione tra maiuscole e minuscole.",
- "PasswordEditLabel": "&Password:",
- "IncorrectPassword": "La password immessa non è corretta. Riprovare.",
- "WizardLicense": "Contratto di licenza",
- "LicenseLabel": "Leggere le informazioni importanti riportate di seguito prima di continuare.",
- "LicenseLabel3": "Leggere il contratto di licenza seguente. Per proseguire con l'installazione, è necessario accettare le condizioni del contratto.",
- "LicenseAccepted": "&Accetto il contratto",
- "LicenseNotAccepted": "&Non accetto il contratto",
- "WizardInfoBefore": "Informazioni",
- "InfoBeforeLabel": "Leggere le informazioni importanti riportate di seguito prima di continuare.",
- "InfoBeforeClickLabel": "Quando si è pronti per continuare con l'installazione, fare clic su Avanti.",
- "WizardInfoAfter": "Informazioni",
- "InfoAfterLabel": "Leggere le informazioni importanti riportate di seguito prima di continuare.",
- "InfoAfterClickLabel": "Quando si è pronti per continuare con l'installazione, fare clic su Avanti.",
- "WizardUserInfo": "Informazioni utente",
- "UserInfoDesc": "Immettere le informazioni personali.",
- "UserInfoName": "&Nome utente:",
- "UserInfoOrg": "&Organizzazione:",
- "UserInfoSerial": "Numero di &serie:",
- "UserInfoNameRequired": "Immettere un nome.",
- "WizardSelectDir": "Seleziona percorso di destinazione",
- "SelectDirDesc": "Specificare la cartella in cui installare [name].",
- "SelectDirLabel3": "Il programma di installazione installerà [name] nella cartella seguente.",
- "SelectDirBrowseLabel": "Per continuare, fare clic su Avanti. Per selezionare una cartella diversa, fare clic su Sfoglia.",
- "DiskSpaceMBLabel": "Sono necessari almeno [mb] MB di spazio libero su disco.",
- "CannotInstallToNetworkDrive": "Non è possibile eseguire l'installazione su un'unità di rete.",
- "CannotInstallToUNCPath": "Non è possibile eseguire l'installazione in un percorso UNC.",
- "InvalidPath": "È necessario immettere un percorso completo che include la lettera di unità, ad esempio:%n%nC:\\APP%n%noppure un percorso UNC nel formato:%n%n\\\\server\\condivisione",
- "InvalidDrive": "L'unità o la condivisione UNC selezionata non esiste o non è accessibile. Selezionarne un'altra.",
- "DiskSpaceWarningTitle": "Spazio su disco insufficiente",
- "DiskSpaceWarning": "Per l'installazione sono necessari almeno %1 KB di spazio libero, ma nell'unità selezionata sono disponibili solo %2 KB.%n%nContinuare comunque?",
- "DirNameTooLong": "Il nome o il percorso della cartella è troppo lungo.",
- "InvalidDirName": "Il nome della cartella non è valido.",
- "BadDirName32": "I nomi di cartella non possono includere nessuno dei caratteri seguenti:%n%n%1",
- "DirExistsTitle": "Cartella già esistente",
- "DirExists": "La cartella:%n%n%1%n%nesiste già. Eseguire comunque l'installazione in tale cartella?",
- "DirDoesntExistTitle": "Cartella non esistente",
- "DirDoesntExist": "La cartella:%n%n%1%n%nnon esiste. Crearla?",
- "WizardSelectComponents": "Seleziona componenti",
- "SelectComponentsDesc": "Specificare i componenti da installare.",
- "SelectComponentsLabel2": "Selezionare i componenti da installare e deselezionare quelli da non installare. Quando si è pronti, fare clic su Avanti.",
- "FullInstallation": "Installazione completa",
- "CompactInstallation": "Installazione compatta",
- "CustomInstallation": "Installazione personalizzata",
- "NoUninstallWarningTitle": "Componenti esistenti",
- "NoUninstallWarning": "Il programma di installazione ha rilevato che i componenti seguenti sono già installati nel computer:%n%n%1%n%nLa deselezione di questi componenti non ne implica la disinstallazione.%n%nContinuare comunque?",
- "ComponentSize1": "%1 KB",
- "ComponentSize2": "%1 MB",
- "ComponentsDiskSpaceMBLabel": "Con la selezione corrente sono necessari almeno [mb] MB di spazio su disco.",
- "WizardSelectTasks": "Seleziona attività aggiuntive",
- "SelectTasksDesc": "Indicare le eventuali attività aggiuntive da eseguire.",
- "SelectTasksLabel2": "Selezionare le attività aggiuntive da eseguire durante l'installazione di [name], quindi fare clic su Avanti.",
- "WizardSelectProgramGroup": "Seleziona cartella del menu Start",
- "SelectStartMenuFolderDesc": "Specificare la cartella in cui inserire i collegamenti del programma.",
- "SelectStartMenuFolderLabel3": "Il programma di installazione creerà i collegamenti del programma nella cartella del menu Start seguente.",
- "SelectStartMenuFolderBrowseLabel": "Per continuare, fare clic su Avanti. Per selezionare una cartella diversa, fare clic su Sfoglia.",
- "MustEnterGroupName": "Specificare un nome di cartella.",
- "GroupNameTooLong": "Il nome o il percorso della cartella è troppo lungo.",
- "InvalidGroupName": "Il nome della cartella non è valido.",
- "BadGroupName": "Il nome di cartella non può includere nessuno dei caratteri seguenti:%n%n%1",
- "NoProgramGroupCheck2": "&Non creare la cartella del menu Start",
- "WizardReady": "Pronto per l'installazione",
- "ReadyLabel1": "Il programma di installazione è pronto per avviare l'installazione di [name] nel computer.",
- "ReadyLabel2a": "Fare clic su Installa per continuare con l'installazione oppure su Indietro per rivedere o modificare le impostazioni.",
- "ReadyLabel2b": "Fare clic su Installa per continuare con l'installazione.",
- "ReadyMemoUserInfo": "Informazioni utente:",
- "ReadyMemoDir": "Percorso di destinazione:",
- "ReadyMemoType": "Tipo di installazione:",
- "ReadyMemoComponents": "Componenti selezionati:",
- "ReadyMemoGroup": "Cartella del menu Start:",
- "ReadyMemoTasks": "Attività aggiuntive:",
- "WizardPreparing": "Preparazione dell'installazione",
- "PreparingDesc": "Il programma di installazione sta preparando l'installazione di [name] nel computer.",
- "PreviousInstallNotCompleted": "L'installazione e/o la rimozione di un programma precedente non è stata completata. Per completarla, è necessario riavviare il computer.%n%nDopo il riavvio del computer, eseguire di nuovo il programma di installazione per completare l'installazione di [name].",
- "CannotContinue": "L'installazione non può continuare. Fare clic su Annulla per uscire.",
- "ApplicationsFound": "Le applicazioni seguenti usano file che devono essere aggiornati dal programma di installazione. È consigliabile consentire al programma di installazione di chiudere automaticamente le applicazioni.",
- "ApplicationsFound2": "Le applicazioni seguenti usano file che devono essere aggiornati dal programma di installazione. È consigliabile consentire al programma di installazione di chiudere automaticamente le applicazioni. Al termine dell'installazione, il programma di installazione proverà a riavviarle.",
- "CloseApplications": "&Chiudi automaticamente le applicazioni",
- "DontCloseApplications": "&Non chiudere le applicazioni",
- "ErrorCloseApplications": "Il programma di installazione non è riuscito a chiudere automaticamente tutte le applicazioni. Prima di continuare, è consigliabile chiudere tutte le applicazioni che usano i file da aggiornare.",
- "WizardInstalling": "Installazione",
- "InstallingLabel": "Attendere. [name] verrà installato nel computer.",
- "FinishedHeadingLabel": "Completamento dell'Installazione guidata di [name]",
- "FinishedLabelNoIcons": "Il programma di installazione ha completato l'installazione di [name] nel computer.",
- "FinishedLabel": "L'installazione di [name] nel computer è stata completata. Per avviare l'applicazione, selezionare le icone installate.",
- "ClickFinish": "Per uscire dal programma di installazione, scegliere Fine.",
- "FinishedRestartLabel": "Per completare l'installazione di [name], il programma di installazione deve riavviare il computer. Riavviare ora?",
- "FinishedRestartMessage": "Per completare l'installazione di [name], il programma di installazione deve riavviare il computer.%n%nRiavviare ora?",
- "ShowReadmeCheck": "Sì, visualizza il file README",
- "YesRadio": "&Sì, riavvia il computer ora",
- "NoRadio": "&No, non riavviare",
- "RunEntryExec": "Esegui %1",
- "RunEntryShellExec": "Visualizza %1",
- "ChangeDiskTitle": "Inserire il disco successivo",
- "SelectDiskLabel2": "Inserire il disco %1 e fare clic su OK.%n%nSe i file nel disco si trovano in una cartella diversa da quella specificata di seguito, immettere il percorso corretto oppure fare clic su Sfoglia.",
- "PathLabel": "&Percorso:",
- "FileNotInDir2": "Il file \"%1\" non è stato trovato in \"%2\". Inserire il disco corretto o selezionare un'altra cartella.",
- "SelectDirectoryLabel": "Specificare il percorso del disco successivo.",
- "SetupAborted": "L'installazione non è stata completata.%n%nRisolvere il problema ed eseguire di nuovo il programma di installazione.",
- "EntryAbortRetryIgnore": "Fare clic su Riprova per riprovare, su Ignora per procedere comunque oppure su Interrompi per annullare l'installazione.",
- "StatusClosingApplications": "Chiusura delle applicazioni...",
- "StatusCreateDirs": "Creazione delle directory...",
- "StatusExtractFiles": "Estrazione dei file...",
- "StatusCreateIcons": "Creazione dei collegamenti...",
- "StatusCreateIniEntries": "Creazione delle voci INI...",
- "StatusCreateRegistryEntries": "Creazione delle voci del Registro di sistema...",
- "StatusRegisterFiles": "Registrazione dei file...",
- "StatusSavingUninstall": "Salvataggio delle informazioni per la disinstallazione...",
- "StatusRunProgram": "Completamento dell'installazione...",
- "StatusRestartingApplications": "Riavvio delle applicazioni...",
- "StatusRollback": "Roll back delle modifiche...",
- "ErrorInternal2": "Errore interno: %1",
- "ErrorFunctionFailedNoCode": "%1 non riuscito",
- "ErrorFunctionFailed": "%1 non riuscito. Codice: %2",
- "ErrorFunctionFailedWithMessage": "%1 non riuscito. Codice %2.%n%3",
- "ErrorExecutingProgram": "Non è possibile eseguire il file:%n%1",
- "ErrorRegOpenKey": "Errore durante l'apertura della chiave del registro di sistema:%n%1\\%2",
- "ErrorRegCreateKey": "Si è verificato un errore durante la creazione della chiave del Registro di sistema:%n%1\\%2",
- "ErrorRegWriteKey": "Si è verificato un errore durante la scrittura nella chiave del Registro di sistema:%n%1\\%2",
- "ErrorIniEntry": "Si è verificato un errore durante la creazione della voce INI nel file \"%1\".",
- "FileAbortRetryIgnore": "Fare clic su Riprova per riprovare, su Ignora per ignorare questo file (scelta non consigliata) oppure su Interrompi per annullare l'installazione.",
- "FileAbortRetryIgnore2": "Fare clic su Riprova per riprovare, su Ignora per procedere comunque (scelta non consigliata) oppure su Interrompi per annullare l'installazione.",
- "SourceIsCorrupted": "Il file di origine è danneggiato",
- "SourceDoesntExist": "Il file di origine \"%1\" non esiste",
- "ExistingFileReadOnly": "Il file esistente è contrassegnato come di sola lettura.%n%nFare clic su Riprova per rimuovere l'attributo di sola lettura e riprovare, su Ignora per ignorare questo file e su Interrompi per annullare l'installazione.",
- "ErrorReadingExistingDest": "Si è verificato un errore durante il tentativo di leggere il file esistente:",
- "FileExists": "Il file esiste già.%n%nSovrascriverlo?",
- "ExistingFileNewer": "Il file esistente è più recente di quello che il programma di installazione sta provando a installare. È consigliabile mantenere il file esistente.%n%nMantenere il file esistente?",
- "ErrorChangingAttr": "Si è verificato un errore durante il tentativo di cambiare gli attributi del file esistente:",
- "ErrorCreatingTemp": "Si è verificato un errore durante il tentativo di creare un file nella directory di destinazione:",
- "ErrorReadingSource": "Si è verificato un errore durante il tentativo di leggere il file di origine:",
- "ErrorCopying": "Si è verificato un errore durante il tentativo di copiare un file:",
- "ErrorReplacingExistingFile": "Si è verificato un errore durante il tentativo di sostituire il file esistente:",
- "ErrorRestartReplace": "RestartReplace non è riuscito:",
- "ErrorRenamingTemp": "Si è verificato un errore durante il tentativo di rinominare un file nella directory di destinazione:",
- "ErrorRegisterServer": "Non è possibile registrare il file DLL/OCX: %1",
- "ErrorRegSvr32Failed": "RegSvr32 non è riuscito. Codice di uscita: %1",
- "ErrorRegisterTypeLib": "Non è possibile registrare la libreria dei tipi: %1",
- "ErrorOpeningReadme": "Si è verificato un errore durante il tentativo di aprire il file README.",
- "ErrorRestartingComputer": "Il programma di installazione non è riuscito ad avviare il computer. Eseguire manualmente questa operazione.",
- "UninstallNotFound": "Non è possibile disinstallare: il file \"%1\" non esiste.",
- "UninstallOpenError": "Non è possibile disinstallare: il file \"%1\" non può essere aperto",
- "UninstallUnsupportedVer": "Non è possibile disinstallare: il formato del file di log di disinstallazione \"%1\" non è riconosciuto in questa versione del programma di disinstallazione",
- "UninstallUnknownEntry": "Nel log di disinstallazione è stata rilevata una voce sconosciuta (%1)",
- "ConfirmUninstall": "Rimuovere completamente %1? Le estensioni e le impostazioni non verranno rimosse.",
- "UninstallOnlyOnWin64": "Questa installazione può essere disinstallata solo in Windows a 64 bit.",
- "OnlyAdminCanUninstall": "Questa installazione può essere disinstallata solo da un utente con privilegi amministrativi.",
- "UninstallStatusLabel": "Attendere. %1 verrà rimosso dal computer.",
- "UninstalledAll": "%1 è stato rimosso dal computer.",
- "UninstalledMost": "La disinstallazione di %1 è stata completata.%n%nNon è stato possibile rimuovere alcuni elementi, che possono essere rimossi manualmente.",
- "UninstalledAndNeedsRestart": "Per completare la disinstallazione di %1, è necessario riavviare il computer.%n%nRiavviare ora?",
- "UninstallDataCorrupted": "Il file \"%1\" è danneggiato. Non è possibile disinstallare",
- "ConfirmDeleteSharedFileTitle": "Rimuovere il file condiviso?",
- "ConfirmDeleteSharedFile2": "Il sistema indica che il file condiviso seguente non viene più usato da nessun programma. Disinstallare per rimuovere questo file condiviso?%n%nSe questo file viene rimosso anche se è ancora usato in altri programmi, questi potrebbero non funzionare correttamente. Se non si è certi, scegliere No. La presenza del file nel sistema non causa alcun problema.",
- "SharedFileNameLabel": "Nome file:",
- "SharedFileLocationLabel": "Posizione:",
- "WizardUninstalling": "Stato disinstallazione",
- "StatusUninstalling": "Disinstallazione di %1...",
- "ShutdownBlockReasonInstallingApp": "Installazione di %1.",
- "ShutdownBlockReasonUninstallingApp": "Disinstallazione di %1.",
- "NameAndVersion": "%1 versione %2",
- "AdditionalIcons": "Icone aggiuntive:",
- "CreateDesktopIcon": "Crea un'icona &desktop",
- "CreateQuickLaunchIcon": "Crea un'icona &Avvio veloce",
- "ProgramOnTheWeb": "%1 sul Web",
- "UninstallProgram": "Disinstalla %1",
- "LaunchProgram": "Avvia %1",
- "AssocFileExtension": "&Associa %1 all'estensione di file %2",
- "AssocingFileExtension": "Associazione di %1 all'estensione di file %2...",
- "AutoStartProgramGroupDescription": "Avvio:",
- "AutoStartProgram": "Avvia automaticamente %1",
- "AddonHostProgramNotFound": "%1 non è stato trovato nella cartella selezionata.%n%nContinuare comunque?"
- },
- "vscode/vscode/": {
- "FinishedLabel": "Il programma di installazione ha completato l'installazione di [name] nel computer. Per avviare l'applicazione, è possibile selezionare i collegamenti installati.",
- "ConfirmUninstall": "Rimuovere completamente %1 e tutti i relativi componenti?",
- "AdditionalIcons": "Icone aggiuntive:",
- "CreateDesktopIcon": "Crea un'icona &desktop",
- "CreateQuickLaunchIcon": "Crea un'icona &Avvio veloce",
- "AddContextMenuFiles": "Aggiungi azione \"Apri con %1\" al menu di scelta rapida file di Esplora risorse",
- "AddContextMenuFolders": "Aggiungi azione \"Apri con %1\" al menu di scelta rapida directory di Esplora risorse",
- "AssociateWithFiles": "Registra %1 come editor per i tipi di file supportati",
- "AddToPath": "Aggiungi a PATH (richiede il riavvio della Shell)",
- "RunAfter": "Esegui %1 dopo l'installazione",
- "Other": "Altro:",
"SourceFile": "File di origine %1",
- "OpenWithCodeContextMenu": "Apr&i con %1"
+ "UpdatingVisualStudioCode": "Aggiornamento Visual Studio Code in corso..."
},
"vs/code/electron-main/app": {
"cancel": "&&No",
"confirmOpenDetail": "Se questa richiesta non è stata avviata, potrebbe rappresentare un tentativo di attacco nel sistema. Se non è stata intrapresa un'azione esplicita per avviare questa richiesta, è consigliabile fare clic su 'No'",
- "confirmOpenMessage": "Un'applicazione esterna vuole aprire '{0}' in {1}. Aprire il file o la cartella?",
- "open": "&&Sì",
- "trace.detail": "Creare un problema e allegare manualmente il file seguente:\r\n{0}",
- "trace.message": "L'analisi è stata creata.",
- "trace.ok": "&&OK"
+ "confirmOpenMessageFileOrFolder": "Un'applicazione esterna vuole aprire '{0}' in {1}. Aprire il file o la cartella?",
+ "confirmOpenMessageFolder": "Un'applicazione esterna vuole aprire '{0}' in {1}. Aprire questa cartella?",
+ "confirmOpenMessageWorkspace": "Un'applicazione esterna vuole aprire '{0}' in {1}. Aprire il file dell'area di lavoro?",
+ "doNotAskAgainLocal": "Consenti l'apertura di percorsi locali senza chiedere conferma",
+ "doNotAskAgainRemote": "Consenti l'apertura di percorsi remoti senza chiedere conferma",
+ "open": "&&Sì"
},
"vs/code/electron-main/main": {
"close": "&&Chiudi",
- "secondInstanceAdmin": "Una seconda istanza di {0} è già in esecuzione come amministratore.",
+ "mainLog": "Principale",
+ "secondInstanceAdmin": "Un'altra istanza di {0} è già in esecuzione come amministratore.",
"secondInstanceAdminDetail": "Chiudere l'altra istanza e riprovare.",
"secondInstanceNoResponse": "Un'altra istanza di {0} è in esecuzione ma non risponde",
"secondInstanceNoResponseDetail": "Chiudere tutte le altre istanze e riprovare.",
"startupDataDirError": "Non è possibile scrivere i dati utente del programma.",
- "startupUserDataAndExtensionsDirErrorDetail": "{0}\r\n\r\nAssicurarsi che le directory seguenti siano scrivibili:\r\n\r\n{1}"
- },
- "vs/code/electron-sandbox/issue/issueReporterMain": {
- "bugDescription": "Indicare i passaggi necessari per riprodurre il problema in modo affidabile. Includere i risultati effettivi e quelli previsti. È supportato il linguaggio Markdown per GitHub. Sarà possibile modificare il problema e aggiungere screenshot quando verrà visualizzato in anteprima in GitHub.",
- "bugReporter": "Report sui bug",
- "closed": "Chiuso",
- "createOnGitHub": "Crea in GitHub",
- "description": "Descrizione",
- "disabledExtensions": "Le estensioni sono disabilitate",
- "extension": "Un'estensione",
- "featureRequest": "Richiesta di funzionalità",
- "featureRequestDescription": "Descrivere la funzionalità desiderata. È supportato il linguaggio Markdown per GitHub. Sarà possibile modificare il problema e aggiungere screenshot quando verrà visualizzato in anteprima in GitHub.",
- "hide": "nascondi",
- "loadingData": "Caricamento dei dati...",
- "marketplace": "Marketplace di Estensioni",
- "noCurrentExperiments": "Non sono presenti esperimenti correnti.",
- "noSimilarIssues": "Nessun problema simile trovato",
- "open": "Apri",
- "pasteData": "I dati necessari sono stati scritti negli appunti perché erano eccessivi per l'invio. Incollarli.",
- "performanceIssue": "Problema di prestazioni",
- "performanceIssueDesciption": "Quando si è verificato questo problema di prestazioni? All'avvio o dopo una serie specifiche di azioni? È supportato il linguaggio Markdown per GitHub. Sarà possibile modificare il problema e aggiungere screenshot quando verrà visualizzato in anteprima in GitHub.",
- "previewOnGitHub": "Anteprima in GitHub",
- "rateLimited": "Superato il limite di query GitHub. Attendere prego.",
- "selectSource": "Selezionare l'origine",
- "show": "mostra",
- "similarIssues": "Problemi simili",
- "stepsToReproduce": "Passaggi da riprodurre",
- "unknown": "Sconosciuto",
- "vscode": "Visual Studio Code"
+ "startupUserDataAndExtensionsDirErrorDetail": "{0}\r\n\r\nAssicurarsi che le directory seguenti siano scrivibili:\r\n\r\n{1}",
+ "statusWarning": "Avviso: l'argomento --status può essere usato solo se {0} è già in esecuzione. Rieseguire l'operazione dopo l'avvio di {0}."
},
- "vs/code/electron-sandbox/issue/issueReporterPage": {
- "chooseExtension": "Estensione",
- "completeInEnglish": "Completare il modulo in lingua inglese.",
- "descriptionEmptyValidation": "La descrizione è obbligatoria.",
- "details": "Immettere i dettagli.",
- "disableExtensions": "disabilitando tutte le estensioni e ricaricando la finestra",
- "disableExtensionsLabelText": "Provare a riprodurre il problema dopo {0}. Se il problema si verifica solo quando le estensioni sono attive, è probabilmente un problema legato ad un'estensione.",
- "extensionWithNoBugsUrl": "Lo strumento di segnalazione problemi non riesce a creare problemi per questa estensione, perché non specifica un URL per la segnalazione dei problemi. Vedere la pagina relativa a questa estensione nel marketplace per verificare se sono disponibili altre istruzioni.",
- "extensionWithNonstandardBugsUrl": "Lo strumento di segnalazione problemi non riesce a creare problemi per questa estensione. Per segnalare un problema, visitare {0}.",
- "issueSourceEmptyValidation": "L'origine del problema è obbligatoria.",
- "issueSourceLabel": "File in",
- "issueTitleLabel": "Titolo",
- "issueTitleRequired": "Immettere un titolo.",
- "issueTypeLabel": "Questo è un",
- "sendExperiments": "Includi informazioni sull'esperimento A/B",
- "sendExtensions": "Includi le estensioni abilitate",
- "sendProcessInfo": "Includi i processi attualmente in esecuzione",
- "sendSystemInfo": "Includi informazioni sul sistema",
- "sendWorkspaceInfo": "Includi i metadati dell'area di lavoro",
- "show": "mostra",
- "titleEmptyValidation": "Il titolo è obbligatorio.",
- "titleLengthValidation": "Il titolo è troppo lungo."
+ "vs/code/electron-utility/sharedProcess/sharedProcessMain": {
+ "networkk": "Rete",
+ "sharedLog": "Condiviso"
},
- "vs/code/electron-sandbox/processExplorer/processExplorerMain": {
- "copy": "Copia",
- "copyAll": "Copia tutto",
- "cpu": "CPU (%)",
- "debug": "Esegui debug",
- "forceKillProcess": "Forza terminazione del processo",
- "killProcess": "Termina processo",
- "memory": "Memoria (MB)",
- "name": "Nome del processo",
- "pid": "PID"
+ "vs/code/node/cliProcessMain": {
+ "cli": "Interfaccia della riga di comando"
},
"vs/workbench/api/browser/mainThreadAuthentication": {
- "accountLastUsedDate": "Ultimo utilizzo di questo account: {0}",
- "allow": "Consenti",
+ "addClientRegistrationDetails": "Aggiungere dettagli della registrazione client",
+ "allow": "&&Consenti",
"cancel": "Annulla",
+ "clientIdPlaceholder": "ID client OAuth (azye39d...)",
+ "clientIdPrompt": "Immettere un ID client esistente registrato con gli URI di reindirizzamento seguenti: http://127.0.0.1:33418, https://vscode.dev/redirect",
+ "clientIdRequired": "L'ID client è obbligatorio",
+ "clientSecretPlaceholder": "Segreto client OAuth (wer32o50f...) o lasciare il campo vuoto",
+ "clientSecretPrompt": "(facoltativo) Immettere un segreto client esistente associato all'ID client \"{0}\" o lasciare questo campo vuoto",
"confirmLogin": "L'estensione '{0}' vuole eseguire l'accesso con {1}.",
"confirmRelogin": "L'estensione '{0}' vuole eseguire di nuovo l'accesso usando {1}.",
- "manageExtensions": "Scegliere le estensioni che possono accedere a questo account",
- "manageTrustedExtensions": "Gestisci estensioni attendibili",
- "manageTrustedExtensions.cancel": "Annulla",
- "noTrustedExtensions": "Questo account non è stato usato da alcuna estensione.",
- "notUsed": "Account non usato",
- "signOut": "Disconnetti",
- "signOutMessage": "L'account '{0}' è stato usato da: \r\n\r\n{1}\r\n\r\n Disconnettersi da queste estensioni?",
- "signOutMessageSimple": "Disconnettersi da '{0}'?",
- "signedOut": "La disconnessione è riuscita."
+ "copyAndContinue": "Copia e continua",
+ "dcrCopyUrlsAndProceed": "Copia URI e procedi",
+ "dcrFailedToCopy": "Copia degli URI di reindirizzamento negli Appunti non riuscita.",
+ "dcrNotSupported": "Registrazione dinamica del client non supportata",
+ "dcrNotSupportedDetail": "Il server di autorizzazione \"{0}\" non supporta la registrazione automatica del client. Continuare specificando manualmente una registrazione client (ID client)?\r\n\r\nNota: durante la registrazione dell'applicazione OAuth, assicurarsi di includere questi URI di reindirizzamento:\r\n{1}",
+ "deviceCodeDetail": "Codice: {0}\r\n\r\nPer completare l'autenticazione, passare a {1} e inserire il codice indicato in precedenza.",
+ "deviceCodeTitle": "Autenticazione del codice dispositivo",
+ "failedToOpenUri": "Impossibile aprire {0}",
+ "incorrectAccount": "Rilevato un account non corretto",
+ "incorrectAccountDetail": "L'account scelto, {0}, non corrisponde all'account richiesto, {1}.",
+ "keep": "Mantieni \"{0}\"",
+ "learnMore": "Altre informazioni",
+ "loginWith": "Accedere con {0}",
+ "no": "No",
+ "yes": "Sì"
+ },
+ "vs/workbench/api/browser/mainThreadChatSessions": {
+ "chatEditorContributionName": "{0}",
+ "interruptActiveResponse": "Interrompere la sessione attiva?"
},
"vs/workbench/api/browser/mainThreadCLICommands": {
"cannot be installed": "Non è possibile installare l'estensione '{0}' perché è dichiarata in modo da impedirne l'esecuzione in questa configurazione."
@@ -2607,7 +3281,11 @@
"commentsViewIcon": "Icona della visualizzazione Commenti."
},
"vs/workbench/api/browser/mainThreadCustomEditors": {
- "defaultEditLabel": "Modifica"
+ "defaultEditLabel": "Modifica",
+ "vetoExtHostRestart": "Un editor fornito per '{0}' è ancora aperto che verrebbe chiuso in caso contrario."
+ },
+ "vs/workbench/api/browser/mainThreadEditSessionIdentityParticipant": {
+ "timeout.onWillCreateEditSessionIdentity": "Evento onWillCreateEditSessionIdentity interrotto dopo 10000 ms"
},
"vs/workbench/api/browser/mainThreadExtensionService": {
"disabledDep": "Non è possibile attivare l'estensione '{0}' perché si basa sull'estensione '{1}', che è disabilitata. Abilitare l'estensione e ricaricare la finestra?",
@@ -2619,11 +3297,11 @@
"reload": "Ricarica finestra",
"reload window": "Non è possibile attivare l'estensione '{0}' perché dipende dall'estensione '{1}', che non è caricata. Ricaricare la finestra per caricare l'estensione?",
"restrictedMode": "Non è possibile attivare l'estensione '{0}' perché dipende dall'estensione '{1}' che non è supportata in Modalità con restrizioni",
- "uninstalledDep": "Non è possibile attivare l'estensione '{0}' perché si basa sull'estensione '{1}', che non è installata. Installare l'estensione e ricaricare la finestra?",
+ "uninstalledDep": "Non è possibile attivare l'estensione '{0}' perché dipende dall'estensione '{1}' da '{2}', che non è installata. Installare l'estensione e ricaricare la finestra?",
"unknownDep": "Non è possibile attivare l'estensione '{0}' perché dipende da un'estensione sconosciuta '{1}'."
},
"vs/workbench/api/browser/mainThreadFileSystemEventService": {
- "again": "Non chiedere più",
+ "again": "Non visualizzare più questo messaggio",
"ask.1.copy": "L'estensione '{0}' vuole apportare modifiche al refactoring con questa copia di file",
"ask.1.create": "L'estensione '{0}' vuole apportare modifiche al refactoring con questa creazione di file",
"ask.1.delete": "L'estensione '{0}' vuole apportare modifiche al refactoring con questa eliminazione di file",
@@ -2639,15 +3317,36 @@
"msg-delete": "Esecuzione dei partecipanti di 'Eliminazione file'...",
"msg-rename": "Esecuzione dei partecipanti di 'Ridenominazione file'...",
"msg-write": "Esecuzione dei partecipanti di 'Scrittura file' in corso...",
- "ok": "OK",
- "preview": "Mostra anteprima"
+ "ok": "&&OK",
+ "preview": "Mostra &&anteprima"
+ },
+ "vs/workbench/api/browser/mainThreadLanguageModels": {
+ "confirmLanguageModelAccess": "L'estensione '{0}' vuole accedere ai modelli linguistici forniti da {1}.",
+ "languageModelsAccountId": "Modelli linguistici"
+ },
+ "vs/workbench/api/browser/mainThreadMcp": {
+ "allow": "&&Consenti",
+ "confirmLogin": "La definizione del server MCP '{0}' richiede l'autenticazione a {1}.",
+ "confirmRelogin": "La definizione del server MCP '{0}' richiede l'autenticazione dell'utente a {1}.",
+ "incorrectAccount": "Rilevato un account non corretto",
+ "incorrectAccountDetail": "L'account scelto, {0}, non corrisponde all'account richiesto, {1}.",
+ "keep": "Mantieni {0}",
+ "loginWith": "Accedi con {0}",
+ "mcpAuthSessionRemoved": "Sessione di autenticazione per {0} rimossa, arresto del server in corso"
},
"vs/workbench/api/browser/mainThreadMessageService": {
"cancel": "Annulla",
"defaultSource": "Estensione",
- "extensionSource": "{0} (estensione)",
"manageExtension": "Gestisci estensione",
- "ok": "OK"
+ "ok": "&&OK"
+ },
+ "vs/workbench/api/browser/mainThreadNotebookSaveParticipant": {
+ "timeout.onWillSave": "Evento onWillSaveNotebookDocument interrotto dopo 1750 ms"
+ },
+ "vs/workbench/api/browser/mainThreadOutputService": {
+ "status.showOutput": "Mostra output",
+ "status.showOutputAria": "Mostra canale di output {0}",
+ "status.showOutputTooltip": "Mostra canale di output {0}"
},
"vs/workbench/api/browser/mainThreadProgress": {
"manageExtension": "Gestisci estensione"
@@ -2676,7 +3375,22 @@
"folderStatusMessageRemoveMultipleFolders": "L'estensione '{0}' ha rimosso {1} cartelle dall'area di lavoro",
"folderStatusMessageRemoveSingleFolder": "L'estensione '{0}' ha rimosso 1 cartella dall'area di lavoro"
},
+ "vs/workbench/api/browser/statusBarExtensionPoint": {
+ "accessibilityInformation": "Definisce il ruolo e l’attributo aria-label da usare quando la voce della barra di stato è in stato attivo.",
+ "accessibilityInformation.label": "L'attributo aria-label della voce della barra di stato. Per impostazione predefinita, corrisponde al testo della voce.",
+ "accessibilityInformation.role": "Il ruolo della voce della barra di stato che definisce il modo in cui un’utilità per la lettura dello schermo interagisce con essa. Altre informazioni sui ruoli aria sono disponibili qui https://w3c.github.io/aria/#widget_roles.",
+ "alignment": "Allineamento della voce della barra di stato.",
+ "command": "Comando da eseguire quando si fa clic sulla voce della barra di stato.",
+ "id": "Identificatore della voce della barra di stato. Deve essere univoco all'interno dell'estensione. Quando si chiama 'vscode.window.createStatusBarItem(id, ...) è necessario usare lo stesso valore '-API",
+ "invalid": "Contributo elemento barra di stato non valido.",
+ "name": "Nome della voce, ad esempio 'Python Language Indicator', 'Git Status' e così via. Provare a mantenere breve la lunghezza del nome, ma sufficientemente descrittiva da consentire agli utenti di comprendere il contenuto dell'elemento della barra di stato.",
+ "priority": "Priorità della voce della barra di stato. Un valore più alto indica che l'elemento deve essere visualizzato più a sinistra.",
+ "text": "Testo da visualizzare per la voce. È possibile incorporare icone nel testo sfruttando la sintassi '$()', ad esempio 'Hello $(globe)!'",
+ "tooltip": "Testo della descrizione comando per la voce.",
+ "vscode.extension.contributes.statusBarItems": "Aggiunge elementi alla barra di stato."
+ },
"vs/workbench/api/browser/viewsExtensionPoint": {
+ "RequiresChatSessionsProposedAPI": "Il contenitore di visualizzazioni '{0}' richiede 'enabledApiProposals: [\"chatSessionsProvider\"]'.",
"ViewContainerDoesnotExist": "Il contenitore di visualizzazioni '{0}' non esiste e tutte le visualizzazioni registrate verranno aggiunte a 'Esplora risorse'.",
"ViewContainerRequiresProposedAPI": "La '{0}' del contenitore di visualizzazioni richiede l'aggiunta di 'enabledApiProposals: [\"contribViewsRemote\"]' a 'Remote'.",
"duplicateView1": "Non è possibile registrare più visualizzazioni con lo stesso ID `{0}`",
@@ -2688,15 +3402,25 @@
"requirenonemptystring": "la proprietà '{0}' è obbligatoria e deve essere di tipo 'string' con un valore non vuoto",
"requirestring": "la proprietà `{0}` è obbligatoria e deve essere di tipo `string`",
"unknownViewType": "Il tipo di visualizzazione `{0}` è sconosciuto.",
+ "view container id": "ID",
+ "view container location": "Dove",
+ "view container title": "Titolo",
+ "view id": "ID",
+ "view name title": "Nome",
"viewcontainer requirearray": "i contenitori di visualizzazioni devono essere una matrice",
+ "views": "Visualizzazioni",
+ "views.agentSessions": "Aggiunge come contributo visualizzazioni al contenitore Sessioni dell'agente nella barra attività. Per contribuire a questo contenitore, è necessario abilitare la proposta dell'API 'chatSessionsProvider'.",
"views.container.activitybar": "Aggiunge come contributo contenitori di visualizzazioni alla barra attività",
"views.container.panel": "Aggiunge come contributo contenitori di visualizzazioni al pannello",
+ "views.container.secondarySidebar": "Aggiunge come contributo contenitori di visualizzazioni alla barra laterale secondaria",
"views.contributed": "Aggiunge come contributo le visualizzazioni al contenitore delle visualizzazioni aggiunto come contributo",
"views.debug": "Aggiunge come contributo visualizzazioni al contenitore Debug nella barra attività",
"views.explorer": "Aggiunge come contributo visualizzazioni al contenitore Esplora risorse nella barra attività",
- "views.remote": "Aggiunge come contributo le visualizzazioni al contenitore Remote nella barra delle attività. Per aggiungere contributi a questo contenitore, è necessario abilitare enableProposedApi",
+ "views.remote": "Aggiunge come contributo visualizzazioni al contenitore Remoto nella barra attività. Per contribuire a questo contenitore, è necessario abilitare la proposta dell'API 'contribViewsRemote'.",
"views.scm": "Aggiunge come contributo visualizzazioni al contenitore Gestione controllo servizi nella barra attività",
"views.test": "Aggiunge come contributo visualizzazioni al contenitore Test nella barra attività",
+ "viewsContainers": "Visualizza contenitori",
+ "vscode.extension.contributes.view.accessibilityHelpContent": "Quando in questa visualizzazione viene richiamata la finestra di dialogo della Guida per l'accessibilità, il contenuto verrà presentato all'utente come stringa Markdown. I tasti di scelta rapida verranno risolti se specificati nel formato . Se non è presente alcun tasto di scelta rapida, ciò verrà indicato e questo comando verrà incluso in una selezione rapida per semplificare la configurazione.",
"vscode.extension.contributes.view.contextualTitle": "Contesto in formato leggibile quando la visualizzazione viene spostata dalla posizione originale. Per impostazione predefinita, verrà usato il nome contenitore della visualizzazione.",
"vscode.extension.contributes.view.group": "Gruppo nidificato nel viewlet",
"vscode.extension.contributes.view.icon": "Percorso dell'icona della visualizzazione. Le icone delle visualizzazioni vengono visualizzate quando non è possibile mostrare il nome della visualizzazione. Anche se è accettato qualsiasi tipo di file immagine, è consigliabile usare il formato SVG per le icone.",
@@ -2716,20 +3440,29 @@
"vscode.extension.contributes.views.containers.id": "ID univoco usato per identificare il contenitore in cui è possibile aggiungere visualizzazioni come contributo usando il punto di aggiunta contributo 'views'",
"vscode.extension.contributes.views.containers.title": "Stringa leggibile usata per il rendering del contenitore",
"vscode.extension.contributes.viewsContainers": "Aggiunge come contributo contenitori di visualizzazioni all'editor",
- "vscode.extension.contributs.view.size": "Dimensioni della visualizzazione. L'uso di un numero si comporterà come la proprietà css 'flex' e la dimensione imposterà le dimensioni iniziali quando la visualizzazione viene mostrata per la prima volta. L’altezza della visualizzazione è nella barra laterale."
+ "vscode.extension.contributs.view.size": "Dimensione iniziale della visualizzazione. La dimensione si comporterà come la proprietà css 'flex' e imposterà la dimensione iniziale quando la visualizzazione viene mostrata per la prima volta. Nella barra laterale, questa è l'altezza della visualizzazione. Questo valore viene rispettato solo quando la stessa estensione è proprietaria sia della visualizzazione che il contenitore di visualizzazioni."
},
"vs/workbench/api/common/configurationExtensionPoint": {
+ "accessibility": "Impostazioni di accessibilità",
+ "advanced": "Le impostazioni avanzate sono nascoste per impostazione predefinita nell'editor delle impostazioni, a meno che l'utente non scelga di visualizzarle.",
"config.property.defaultConfiguration.warning": "Impossibile registrare le impostazioni predefinite di configurazione per '{0}'. Sono supportate solo le impostazioni predefinite per le impostazioni con ambito sostituibili tramite computer, finestra, risorse e linguaggio.",
"config.property.duplicate": "Non è possibile registrare '{0}'. Questa proprietà è già registrata.",
+ "config.property.preventDefaultConfiguration.warning": "Impossibile registrare le impostazioni predefinite di configurazione per '{0}'. Questa impostazione non consente le impostazioni predefinite per la configurazione aggiunta come contributo.",
+ "default": "Predefinito",
+ "description": "Descrizione",
+ "experimental": "Le impostazioni sperimentali possono cambiare e potrebbero essere rimosse nelle versioni future.",
"invalid.allOf": "'configuration.allOf' è deprecato e non deve più essere usato. Passare invece una matrice di sezioni di configurazione al punto di aggiunta contributo 'configuration'.",
"invalid.properties": "'configuration.properties' deve essere un oggetto",
"invalid.property": "La proprietà '{0}' di configuration.properties deve essere un oggetto",
"invalid.title": "'configuration.title' deve essere una stringa",
+ "preview": "Le impostazioni di anteprima possono essere usate per provare nuove funzionalità prima che vengano finalizzate.",
"scope.application.description": "Configurazione che può essere definita solo nelle impostazioni utente.",
"scope.deprecationMessage": "Se impostata, la proprietà è contrassegnata come deprecata e viene visualizzato il messaggio con la spiegazione.",
"scope.description": "Ambito in cui la configurazione è applicabile. Gli ambiti disponibili sono `application`, `machine`, `window`, `resource` e `machine-overridable`.",
"scope.editPresentation": "Se specificato, controlla il formato di presentazione dell'opzione stringa.",
"scope.enumDescriptions": "Descrizioni dei valori di enumerazione",
+ "scope.enumItemLabels": "Etichette per i valori di enumerazione da visualizzare nell'editor impostazioni. Se specificato, i valori di {0} vengono comunque visualizzati dopo le etichette, ma in modo meno evidente.",
+ "scope.ignoreSync": "Se questa opzione è abilitata, Sincronizzazione impostazioni non sincronizzerà il valore utente di questa configurazione per impostazione predefinita.",
"scope.language-overridable.description": "Configurazione delle risorse che può essere definita nelle impostazioni specifiche della lingua.",
"scope.machine-overridable.description": "Configurazione del computer che può essere definita anche nelle impostazioni dell'area di lavoro o della cartella.",
"scope.machine.description": "Configurazione che può essere definita solo nelle impostazioni utente o solo nelle impostazioni remote.",
@@ -2740,8 +3473,13 @@
"scope.order": "Se specificato, fornisce l'ordine di questa impostazione in relazione ad altre impostazioni all'interno della stessa categoria. Le impostazioni con una proprietà ordine verranno posizionate prima delle impostazioni senza questa proprietà impostata.",
"scope.resource.description": "Configurazione che può essere definita nelle impostazioni dell'utente, dell'ambiente remoto, dell'area di lavoro o della cartella.",
"scope.singlelineText.description": "Il valore verrà visualizzato in un InputBox.",
+ "scope.tags": "Elenco di tag in cui inserire l'impostazione. Il tag può quindi essere cercato nell'editor delle impostazioni. Ad esempio, se si specifica il tag 'experimental' è possibile trovare l'impostazione cercando '@tag:experimental'.",
"scope.window.description": "Configurazione che può essere definita nelle impostazioni dell'utente, dell'area di lavoro o dell'ambiente remoto.",
+ "setting name": "ID",
+ "settings": "Impostazioni",
+ "telemetry": "Impostazioni di telemetria",
"unknownWorkspaceProperty": "La proprietà di configurazione dell'area di lavoro è sconosciuta",
+ "usesOnlineServices": "Impostazioni che usano Servizi online",
"vscode.extension.contributes.configuration": "Aggiunge come contributo le impostazioni di configurazione.",
"vscode.extension.contributes.configuration.order": "Se specificato, fornisce l'ordine di questa categoria di impostazioni relative ad altre categorie.",
"vscode.extension.contributes.configuration.properties": "Descrizione delle proprietà di configurazione.",
@@ -2751,6 +3489,7 @@
"workspaceConfig.extensions.description": "Estensioni dell'area di lavoro",
"workspaceConfig.folders.description": "Elenco di cartelle da caricare nell'area di lavoro.",
"workspaceConfig.launch.description": "Configurazioni di avvio dell'area di lavoro",
+ "workspaceConfig.mcp.description": "Configurazioni server Model Context Protocol",
"workspaceConfig.name.description": "Nome facoltativo per la cartella. ",
"workspaceConfig.path.description": "Percorso di file, ad esempio `/root/folderA` o `./folderA` per un percorso relativo che verrà risolto in base alla posizione del file dell'area di lavoro.",
"workspaceConfig.remoteAuthority": "Server remoto in cui si trova l'area di lavoro.",
@@ -2759,6 +3498,13 @@
"workspaceConfig.transient": "Un'area di lavoro temporanea verrà eliminata durante il riavvio o il ricaricamento.",
"workspaceConfig.uri.description": "URI della cartella"
},
+ "vs/workbench/api/common/extHostAuthentication": {
+ "authenticatingTo": "Autenticazione a '{0}' in corso...",
+ "completeAuth": "Completare l'autenticazione nella finestra del browser visualizzata.",
+ "continueWith": "L'autorizzazione di '{0}' non è ancora stata completata. Provare in un modo diverso? ({1})",
+ "url handler": "Gestore URL",
+ "userCanceledContinue": "Si sono verificati problemi durante l'autenticazione a '{0}'? Provare in un modo diverso? ({1})"
+ },
"vs/workbench/api/common/extHostDiagnostics": {
"limitHit": "Non verranno visualizzati altri {0} errori e avvisi."
},
@@ -2766,19 +3512,38 @@
"extensionTestError": "Il percorso {0} non punta a un Test Runner di estensioni valido.",
"extensionTestError1": "Non è possibile caricare Test Runner."
},
- "vs/workbench/api/common/extHostProgress": {
- "extensionSource": "{0} (estensione)"
+ "vs/workbench/api/common/extHostLanguageFeatures": {
+ "defaultDropLabel": "Rilascia usando l'estensione '{0}'",
+ "defaultPasteLabel": "Incolla usando l'estensione '{0}'"
+ },
+ "vs/workbench/api/common/extHostLanguageModels": {
+ "chatAccessWithJustification": "Giustificazione: {1}"
+ },
+ "vs/workbench/api/common/extHostLogService": {
+ "local": "Host dell'estensione",
+ "remote": "Host dell'estensione (remoto)",
+ "worker": "Host dell'estensione (ruolo di lavoro)"
+ },
+ "vs/workbench/api/common/extHostNotebook": {
+ "err.readonly": "Non è possibile modificare il file di sola lettura '{0}'",
+ "fileModifiedError": "File modificato da"
},
"vs/workbench/api/common/extHostStatusBar": {
"extensionLabel": "{0} (Estensione)",
"status.extensionMessage": "Stato estensione"
},
+ "vs/workbench/api/common/extHostTelemetry": {
+ "extensionTelemetryLog": "Telemetria dell'estensione{0}"
+ },
"vs/workbench/api/common/extHostTerminalService": {
"launchFail.idMissingOnExtHost": "Non è stato possibile trovare il terminale con ID {0} nell'host dell'estensione"
},
"vs/workbench/api/common/extHostTreeViews": {
- "treeView.duplicateElement": "L'elemento con id {0} è già registrato",
- "treeView.notRegistered": "Non è stata registrata alcuna visualizzazione struttura ad albero con ID '{0}'."
+ "treeView.duplicateElement": "L'elemento con id {0} è già registrato"
+ },
+ "vs/workbench/api/common/extHostTunnelService": {
+ "tunnelPrivacy.private": "Privato",
+ "tunnelPrivacy.public": "Pubblico"
},
"vs/workbench/api/common/extHostWorkspace": {
"updateerror": "L'estensione '{0}' non è riuscita ad aggiornare le cartelle dell'area di lavoro: {1}"
@@ -2787,79 +3552,118 @@
"contributes.jsonValidation": "Aggiunge come contributo la configurazione dello schema JSON.",
"contributes.jsonValidation.fileMatch": "Criteri (o matrice di criteri) dei file da soddisfare, ad esempio \"package.json\" o \"*.launch\". I criteri di esclusione iniziano con '!'",
"contributes.jsonValidation.url": "URL dello schema ('http:', 'https:') o percorso relativo della cartella delle estensioni ('./').",
+ "fileMatch": "Corrispondenza file",
"invalid.fileMatch": "'configuration.jsonValidation.fileMatch' deve essere definito come una stringa o una matrice di stringhe.",
"invalid.jsonValidation": "'configuration.jsonValidation' deve essere una matrice",
"invalid.path.1": "Valore previsto di `contributes.{0}.url` ({1}) da includere nella cartella dell'estensione ({2}). L'estensione potrebbe non essere più portatile.",
"invalid.url": "'configuration.jsonValidation.url' deve essere un URL o un percorso relativo",
"invalid.url.fileschema": "'configuration.jsonValidation.url' è un URL relativo non valido: {0}",
- "invalid.url.schema": "'configuration.jsonValidation.url' deve essere un URL assoluto o iniziare con './' per fare riferimento a schemi presenti nell'estensione."
+ "invalid.url.schema": "'configuration.jsonValidation.url' deve essere un URL assoluto o iniziare con './' per fare riferimento a schemi presenti nell'estensione.",
+ "jsonValidation": "Convalida JSON",
+ "schema": "Schema"
+ },
+ "vs/workbench/api/node/extHostAuthentication": {
+ "completeAuth": "Completare l'autenticazione nella finestra del browser visualizzata.",
+ "device code": "Codice dispositivo",
+ "loopback": "Loopback Server",
+ "waitingForAuth": "Aprire [{0}]({0}) in una nuova scheda e incollare il time code: {1}"
},
"vs/workbench/api/node/extHostDebugService": {
"debug.terminal.title": "Processo di debug"
},
- "vs/workbench/api/node/extHostTunnelService": {
- "tunnelPrivacy.private": "Privato",
- "tunnelPrivacy.public": "Pubblico"
+ "vs/workbench/api/test/browser/mainThreadTreeViews.test": {
+ "Test View 1": "Visualizzazione test 1",
+ "test": "test"
},
"vs/workbench/browser/actions/developerActions": {
+ "global": "Globale",
"inspect context keys": "Esamina le chiavi di contesto",
- "keyboardShortcutsFormat.command": "Titolo comando.",
- "keyboardShortcutsFormat.commandAndKeys": "Titolo e tasti del comando.",
- "keyboardShortcutsFormat.commandWithGroup": "Titolo del comando preceduto dal relativo gruppo.",
- "keyboardShortcutsFormat.commandWithGroupAndKeys": "Titolo e tasti del comando, con il comando preceduto dal relativo gruppo.",
- "keyboardShortcutsFormat.keys": "Tasti.",
+ "largeStorageItemDetail": "Ambito: {0}, destinazione: {1}",
"logStorage": "Registra contenuto del database di archiviazione",
"logWorkingCopies": "Registra copie di lavoro",
+ "machine": "Computer",
+ "policyDiagnostics": "Diagnostica criteri",
+ "profile": "Profilo",
+ "removeLargeStorageDatabaseEntries": "Rimuovi voci del database di archiviazione di grandi dimensioni...",
+ "removeLargeStorageEntriesButtonLabel": "&&Rimuovi",
+ "removeLargeStorageEntriesConfirmRemove": "Rimuovere le voci di archiviazione selezionate dal database?",
+ "removeLargeStorageEntriesConfirmRemoveDetail": "{0}\r\n\r\nQuesta azione è irreversibile e potrebbe causare la perdita di dati.",
+ "removeLargeStorageEntriesPickerButton": "Rimuovi",
+ "removeLargeStorageEntriesPickerDescriptionNoEntries": "Nessuna voce di archiviazione di grandi dimensioni da rimuovere.",
+ "removeLargeStorageEntriesPickerPlaceholder": "Selezionare le voci di grandi dimensioni da rimuovere dalla risorsa di archiviazione",
"screencastMode.fontSize": "Controlla le dimensioni del carattere in pixel della tastiera in modalità Screencast.",
+ "screencastMode.keyboardOptions.description": "Opzioni per personalizzare la sovrimpressione della tastiera in modalità screencast.",
+ "screencastMode.keyboardOptions.showCommandGroups": "Mostra i nomi dei gruppi di comando, quando vengono mostrati anche i comandi.",
+ "screencastMode.keyboardOptions.showCommands": "Mostra nomi comandi.",
+ "screencastMode.keyboardOptions.showKeybindings": "Mostra i tasti di scelta rapida.",
+ "screencastMode.keyboardOptions.showKeys": "Mostra chiavi non elaborate.",
+ "screencastMode.keyboardOptions.showSingleEditorCursorMoves": "Mostra i comandi di spostamento del cursore dell'editor singolo.",
"screencastMode.keyboardOverlayTimeout": "Controlla l'intervallo in millisecondi relativo alla visualizzazione della sovrimpressione della tastiera in modalità Screencast.",
- "screencastMode.keyboardShortcutsFormat": "Controlla gli elementi visualizzati nella sovrimpressione della tastiera quando vengono visualizzati i tasti di scelta rapida.",
"screencastMode.location.verticalPosition": "Controlla l'offset verticale della sovrimpressione della modalità Screencast dal basso come percentuale dell'altezza del workbench.",
"screencastMode.mouseIndicatorColor": "Controlla il colore in formato esadecimale (#RGB, #RGBA, #RRGGBB o #RRGGBBAA) dell'indicatore del mouse in modalità Screencast.",
"screencastMode.mouseIndicatorSize": "Controlla le dimensioni in pixel dell'indicatore del mouse in modalità Screencast.",
- "screencastMode.onlyKeyboardShortcuts": "Visualizza solo i tasti di scelta rapida in modalità Screencast.",
"screencastModeConfigurationTitle": "Modalità Screencast",
- "toggle screencast mode": "Attiva/disattiva modalità Screencast"
+ "snapshotTrackedDisposables": "Elementi eliminabili rilevati tramite istantanee",
+ "startTrackDisposables": "Avvia rilevamento degli elementi eliminabili",
+ "stopTrackDisposables": "Interrompi rilevamento degli elementi eliminabili",
+ "storageLogDialogDetails": "Aprire gli strumenti di sviluppo dal menu e selezionare la scheda Console.",
+ "storageLogDialogMessage": "Il contenuto del database di archiviazione è stato registrato negli strumenti di sviluppo.",
+ "toggle screencast mode": "Attiva/disattiva modalità Screencast",
+ "user": "Utente",
+ "workspace": "Area di lavoro"
},
"vs/workbench/browser/actions/helpActions": {
+ "askVScode": "Chiedi a @vscode",
+ "getStartedWithAccessibilityFeatures": "Introduzione alle funzionalità di accessibilità",
"keybindingsReference": "Riferimento per tasti di scelta rapida",
"miDocumentation": "&&Documentazione",
"miKeyboardShortcuts": "&&Riferimento per tasti di scelta rapida",
"miLicense": "&&Visualizza licenza",
"miPrivacyStatement": "&&Informativa sulla privacy",
"miTipsAndTricks": "Suggerimenti e trucc&&hi",
- "miTwitter": "Seguici su T&&witter",
"miUserVoice": "&&Cerca in richieste di funzionalità",
"miVideoTutorials": "&&Esercitazioni video",
+ "miYouTube": "&&Unisciti a noi su YouTube",
"newsletterSignup": "Iscrizione alla newsletter VS Code",
"openDocumentationUrl": "Documentazione",
"openLicenseUrl": "Visualizza licenza",
"openPrivacyStatement": "Informativa sulla privacy",
"openTipsAndTricksUrl": "Suggerimenti e trucchi",
- "openTwitterUrl": "Seguici su Twitter",
"openUserVoiceUrl": "Cerca in richieste di funzionalità",
- "openVideoTutorialsUrl": "Esercitazioni video"
+ "openVideoTutorialsUrl": "Esercitazioni video",
+ "openYouTubeUrl": "Unisciti a noi su YouTube"
},
"vs/workbench/browser/actions/layoutActions": {
"active": "Attiva",
"activityBar": "Barra attività",
"activityBarLeft": "Rappresenta la barra attività nella posizione sinistra",
"activityBarRight": "Rappresenta la barra attività nella posizione destra",
+ "alignQuickInputCenter": "Allinea al centro input rapido",
+ "alignQuickInputTop": "Allinea input rapido in alto",
+ "center": "Al centro",
"centerLayoutIcon": "Rappresenta la modalità layout centrato",
"centerPanel": "Al centro",
"centeredLayout": "Layout centrato",
"close": "Chiudi",
- "closeSidebar": "Chiudi barra laterale primaria",
"cofigureLayoutIcon": "L'icona rappresenta la configurazione del layout del workbench.",
"compositePart.hideSideBarLabel": "Nascondi barra laterale primaria",
+ "configureEditors": "Configurare gli editor",
"configureLayout": "Configurare Layout",
+ "configureTabs": "Configurare le schede",
"customizeLayout": "Personalizza layout...",
"customizeLayoutQuickPickTitle": "Personalizzare il layout",
"decreaseEditorHeight": "Riduci altezza dell'editor",
"decreaseEditorWidth": "Riduci larghezza dell'editor",
"decreaseViewSize": "Riduci dimensioni della visualizzazione corrente",
+ "editorActionsPosition": "Posizione delle azioni dell'editor",
"fullScreenIcon": "Rappresenta lo schermo intero",
"fullscreen": "Schermo intero",
- "hidden": "Nascosto",
+ "hideEditorActons": "Nascondi azioni editor",
+ "hideEditorActonsDescription": "Nascondi Editor azioni nella scheda e nella barra del titolo",
+ "hideEditorTabs": "Nascondi schede editor",
+ "hideEditorTabsDescription": "Nascondi barra delle schede",
+ "hideEditorTabsZenMode": "Nascondi schede editor in modalità Zen",
+ "hideEditorTabsZenModeDescription": "Nascondi barra delle schede in modalità Zen",
"increaseEditorHeight": "Aumenta altezza dell'editor",
"increaseEditorWidth": "Aumenta larghezza dell'editor",
"increaseViewSize": "Aumenta dimensioni della visualizzazione corrente",
@@ -2869,23 +3673,23 @@
"leftSideBar": "A sinistra",
"menuBar": "Barra dei menu",
"menuBarIcon": "Rappresenta la barra dei menu",
- "miActivityBar": "&&Activity Bar",
"miAppearance": "&&Aspetto",
- "miMenuBar": "Menu &&Bar",
- "miMenuBarNoMnemonic": "Menu Bar",
+ "miMenuBar": "&&Barra dei menu",
+ "miMenuBarNoMnemonic": "Barra dei menu",
"miMoveSidebarLeft": "&&Sposta barra laterale primaria a sinistra",
"miMoveSidebarRight": "&&Sposta barra laterale primaria a destra",
"miShowEditorArea": "Mostra area &&editor",
- "miShowSidebar": "&&Primary Side Bar",
- "miSidebarNoMnnemonic": "Primary Side Bar",
- "miStatusbar": "S&&tatus Bar",
+ "miStatusbar": "Barra di s&&tato",
"miToggleCenteredLayout": "Layout &¢rato",
"miToggleZenMode": "Modalità Zen",
"move second sidebar left": "Sposta barra laterale secondaria a sinistra",
"move second sidebar right": "Sposta barra laterale secondaria a destra",
"move side bar right": "Sposta barra laterale primaria a destra",
"move sidebar left": "Sposta barra laterale primaria a sinistra",
- "move sidebar right": "Sposta barra laterale primaria a destra",
+ "moveEditorActionsToTabBar": "Spostare le azioni dell'editor nella barra delle schede",
+ "moveEditorActionsToTabBarDescription": "Sposta Editor azioni dalla barra del titolo alla barra delle schede",
+ "moveEditorActionsToTitleBar": "Spostare le azioni dell'editor nella barra del titolo",
+ "moveEditorActionsToTitleBarDescription": "Sposta Editor azioni dalla barra delle schede alla barra del titolo",
"moveFocusedView": "Sposta visualizzazione con stato attivo",
"moveFocusedView.error.noFocusedView": "Non ci sono attualmente visualizzazioni con stato attivo.",
"moveFocusedView.error.nonMovableView": "La visualizzazione attualmente con stato attivo non può essere spostata.",
@@ -2898,6 +3702,7 @@
"moveSidebarLeft": "Sposta barra laterale primaria a sinistra",
"moveSidebarRight": "Sposta barra laterale primaria a destra",
"moveView": "Sposta visualizzazione",
+ "openAndCloseSidebar": "Apri/Mostra e chiudi/Nascondi barra laterale",
"panel": "Pannello",
"panelAlignment": "Allineamento pannello",
"panelBottom": "Rappresenta il pannello inferiore",
@@ -2910,34 +3715,60 @@
"panelLeftOff": "Rappresenta una barra laterale disattivata nella posizione sinistra",
"panelRight": "Rappresenta una barra laterale nella posizione destra",
"panelRightOff": "Rappresenta una barra laterale disattivata nella posizione destra",
+ "primary sidebar": "Barra laterale primaria",
+ "primary sidebar mnemonic": "Barra laterale &&primaria",
+ "quickInputAlignmentCenter": "Rappresenta l'allineamento rapido dell'input impostato al centro",
+ "quickInputAlignmentTop": "Rappresenta l'allineamento rapido dell'input impostato in alto",
+ "quickOpen": "Posizione input rapido",
"resetFocusedView.error.noFocusedView": "Non ci sono attualmente visualizzazioni con stato attivo.",
"resetFocusedViewLocation": "Reimposta posizione visualizzazione con stato attivo",
"resetViewLocations": "Reimposta posizioni visualizzazioni",
+ "restore defaults": "Ripristina impostazioni predefinite",
"rightPanel": "A destra",
"rightSideBar": "A destra",
"secondarySideBar": "Barra laterale secondaria",
"secondarySideBarContainer": "Barra laterale secondaria/ {0}",
+ "selectToHide": "Seleziona per nascondere",
+ "selectToShow": "Seleziona per visualizzare",
+ "showEditorActons": "Mostra azioni editor",
+ "showEditorActonsDescription": "Rendi visibili le azioni Editor.",
+ "showMultipleEditorTabs": "Mostra più schede editor",
+ "showMultipleEditorTabsDescription": "Mostra barra delle schede con più schede",
+ "showMultipleEditorTabsZenMode": "Mostra più schede dell'editor in modalità Zen",
+ "showMultipleEditorTabsZenModeDescription": "Mostra barra delle schede in modalità Zen",
+ "showSingleEditorTab": "Mostra scheda editor singolo",
+ "showSingleEditorTabDescription": "Mostra barra delle schede con una sola scheda",
+ "showSingleEditorTabZenMode": "Mostra scheda Editor singolo in modalità Zen",
+ "showSingleEditorTabZenModeDescription": "Mostra barra delle schede in modalità Zen con una sola scheda",
"sideBar": "Barra laterale primaria",
"sideBarPosition": "Posizione della barra laterale primaria",
"sidebar": "Barra laterale",
"sidebarContainer": "Barra laterale / {0}",
+ "sidebarHidden": "Barra laterale primaria nascosta",
+ "sidebarVisible": "Barra laterale primaria visualizzata",
"statusBar": "Barra di stato",
"statusBarIcon": "Rappresenta la barra di stato",
- "toggleActivityBar": "Attiva/Disattiva visibilità della barra attività",
+ "tabBar": "Barra delle schede",
"toggleCenteredLayout": "Attiva/Disattiva layout centrato",
"toggleEditor": "Attiva/Disattiva la visibilità dell'area degli editor",
"toggleMenuBar": "Attiva/Disattiva barra dei menu",
+ "toggleSeparatePinnedEditorTabs": "Separare le schede editor aggiunte",
+ "toggleSeparatePinnedEditorTabsDescription": "Attiva o disattiva la visualizzazione delle schede dell'editor bloccate in una riga separata sopra le schede sbloccate.",
"toggleSideBar": "Attiva/Disattiva barra laterale primaria",
"toggleSidebar": "Attiva/Disattiva visibilità della barra laterale primaria",
"toggleSidebarPosition": "Attiva/Disattiva posizione della barra laterale primaria",
"toggleStatusbar": "Attiva/Disattiva visibilità della barra di stato",
- "toggleTabs": "Attiva/disattiva visibilità delle schede",
"toggleVisibility": "Visibilità",
"toggleZenMode": "Attiva/Disattiva modalità Zen",
- "visible": "Visibile",
+ "top": "In alto",
"zenMode": "Modalità Zen",
"zenModeIcon": "Rappresenta la modalità Zen"
},
+ "vs/workbench/browser/actions/listCommands": {
+ "mitoggleTreeStickyScroll": "&&Attiva/disattiva scorrimento permanente albero",
+ "toggleTreeStickyScroll": "Attiva/disattiva scorrimento permanente albero",
+ "toggleTreeStickyScrollDescription": "Attiva o disattiva il widget Scorrimento permanente nella parte superiore delle strutture ad albero, ad esempio la vista Esplora file e Variabili di debug."
+ },
"vs/workbench/browser/actions/navigationActions": {
"focusNextPart": "Sposta stato attivo sulla parte successiva",
"focusPreviousPart": "Sposta stato attivo sulla parte precedente",
@@ -2950,6 +3781,7 @@
"quickNavigateNext": "Passa a successiva in Quick Open",
"quickNavigatePrevious": "Passa a precedente in Quick Open",
"quickOpen": "Vai al file...",
+ "quickOpenWithModes": "Quick Open",
"quickSelectNext": "Seleziona successiva in Quick Open",
"quickSelectPrevious": "Seleziona precedente in Quick Open"
},
@@ -2963,6 +3795,8 @@
},
"vs/workbench/browser/actions/windowActions": {
"about": "Informazioni",
+ "activeOpenedRecentlyOpenedFolder": "Cartella aperta nella finestra attiva",
+ "activeOpenedRecentlyOpenedWorkspace": "Area di lavoro aperta nella finestra attiva",
"blur": "Rimuovi lo stato attivo della tastiera dall'elemento con stato attivo",
"dirtyFolder": "Cartella con file non salvati",
"dirtyFolderConfirm": "Aprire la cartella per esaminare i file non salvati?",
@@ -2972,7 +3806,6 @@
"dirtyWorkspace": "Area di lavoro con file non salvati",
"dirtyWorkspaceConfirm": "Aprire l'area di lavoro per esaminare i file non salvati?",
"dirtyWorkspaceConfirmDetail": "Non è possibile rimuovere le aree di lavoro con file non salvati finché tutti i file non sono stati salvati o ripristinati.",
- "file": "File",
"files": "File",
"folders": "cartelle",
"miAbout": "&&Informazioni su",
@@ -2985,6 +3818,8 @@
"openRecent": "Apri recenti...",
"openRecentPlaceholder": "Selezionare per aprire (tenere premuto CTRL per forzare l'apertura di una nuova finestra oppure ALT per aprire la stessa finestra)",
"openRecentPlaceholderMac": "Selezionare per aprire (tenere premuto CMD per forzare l'apertura di una nuova finestra oppure ALT per aprire la stessa finestra)",
+ "openedRecentlyOpenedFolder": "Cartella aperta in una finestra",
+ "openedRecentlyOpenedWorkspace": "Area di lavoro aperta in una finestra",
"quickOpenRecent": "Apertura rapida recenti...",
"recentDirtyFolderAriaLabel": "{0}, cartella con modifiche non salvate",
"recentDirtyWorkspaceAriaLabel": "{0}, area di lavoro con modifiche non salvate",
@@ -2997,7 +3832,6 @@
"closeWorkspace": "Chiudi area di lavoro",
"duplicateWorkspace": "Area di lavoro duplicata",
"duplicateWorkspaceInNewWindow": "Duplica come area di lavoro nella nuova finestra",
- "filesCategory": "FILE",
"globalRemoveFolderFromWorkspace": "Rimuovi cartella dall'area di lavoro...",
"miAddFolderToWorkspace": "A&&ggiungi cartella all'area di lavoro...",
"miCloseFolder": "Chiudi &&cartella",
@@ -3021,53 +3855,70 @@
"addFolderToWorkspaceTitle": "Aggiungi cartella all'area di lavoro",
"workspaceFolderPickerPlaceholder": "Selezionare la cartella dell'area di lavoro"
},
- "vs/workbench/browser/codeeditor": {
- "openWorkspace": "Apri area di lavoro"
- },
"vs/workbench/browser/editor": {
"pinned": "{0}, aggiunto",
"preview": "{0}, anteprima"
},
- "vs/workbench/browser/parts/activitybar/activitybarActions": {
- "authProviderUnavailable": "{0} non è attualmente disponibile",
- "focusActivityBar": "Sposta stato attivo sulla barra attività",
- "hideAccounts": "Nascondi account",
- "manageTrustedExtensions": "Gestisci estensioni attendibili",
- "nextSideBarView": "Visualizzazione barra laterale primaria seguente",
- "noAccounts": "Non è stato eseguito l'accesso ad alcun account",
- "previousSideBarView": "Visualizzazione barra laterale primaria precedente",
- "signOut": "Disconnetti"
+ "vs/workbench/browser/labels": {
+ "notebookCellLabel": "{0} • Cella {1}",
+ "notebookCellOutputLabel": "{0} • Cella {1} • Output {2}",
+ "notebookCellOutputLabelSimple": "{0} • Cella {1} • Output"
},
"vs/workbench/browser/parts/activitybar/activitybarPart": {
- "accounts": "Account",
- "accounts visibility key": "Personalizzazione della visibilità delle voci degli account nella barra delle attività.",
- "accountsViewBarIcon": "Icona Account nella barra della visualizzazione.",
- "hideActivitBar": "Nascondi barra attività",
+ "activity bar position": "Posizione barra attività",
+ "bottom": "In basso",
+ "default": "Impostazione predefinita",
+ "focusActivityBar": "Sposta stato attivo sulla barra attività",
+ "hide": "Nascosto",
+ "hideActivityBar": "Nascondi barra attività",
"hideMenu": "Nascondi menu",
- "manage": "Gestisci",
"menu": "Menu",
- "pinned view containers": "Personalizzazioni della visibilità delle voci della barra attività",
- "resetLocation": "Reimposta posizione",
- "settingsViewBarIcon": "Icona Impostazioni nella barra della visualizzazione."
+ "miBottomActivityBar": "&&Inferiore",
+ "miDefaultActivityBar": "&&Impostazione predefinita",
+ "miHideActivityBar": "&&Nascosto",
+ "miTopActivityBar": "&&In alto",
+ "nextSideBarView": "Visualizzazione barra laterale primaria seguente",
+ "positionActivituBar": "Posizione barra attività",
+ "positionActivityBarBottom": "Sposta barra attività in basso",
+ "positionActivityBarDefault": "Sposta barra attività a lato",
+ "positionActivityBarTop": "Sposta barra attività in alto",
+ "previousSideBarView": "Visualizzazione barra laterale primaria precedente",
+ "top": "In alto"
},
"vs/workbench/browser/parts/auxiliarybar/auxiliaryBarActions": {
+ "auxiliaryBarHidden": "Barra laterale secondaria nascosta",
+ "auxiliaryBarVisible": "Barra laterale secondaria visualizzata",
+ "closeIcon": "Icona per chiudere la barra laterale secondaria.",
+ "closeSecondarySideBar": "Nascondi barra laterale secondaria",
"focusAuxiliaryBar": "Focus su barra laterale secondaria",
"hideAuxiliaryBar": "Nascondi barra laterale secondaria",
- "miAuxiliaryBar": "Secondary Si&&de Bar",
- "miAuxiliaryBarNoMnemonic": "Secondary Side Bar",
+ "maximizeAuxiliaryBar": "Ingrandisci la barra laterale secondaria",
+ "maximizeAuxiliaryBarTooltip": "Ingrandisci la dimensione della barra laterale secondaria",
+ "maximizeIcon": "Icona per ingrandire la barra laterale secondaria.",
+ "miCloseSecondarySideBar": "&&Barra laterale secondaria",
+ "nextAuxiliaryBarView": "Visualizzazione barra laterale secondaria successiva",
+ "openAndCloseAuxiliaryBar": "Apri/Mostra e chiudi/Nascondi barra laterale secondaria",
+ "previousAuxiliaryBarView": "Visualizzazione barra laterale secondaria precedente",
+ "restoreAuxiliaryBar": "Ripristina la barra laterale secondaria",
+ "restoreAuxiliaryBarTooltip": "Ripristina le dimensioni della barra laterale secondaria",
"toggleAuxiliaryBar": "Attiva/Disattiva visibilità barra laterale secondaria",
- "toggleAuxiliaryIconLeft": "Icona per attivare o disattivare la barra ausiliaria nella posizione sinistra.",
- "toggleAuxiliaryIconLeftOn": "Icona per attivare la barra ausiliaria nella posizione sinistra.",
- "toggleAuxiliaryIconRight": "Icona per disattivare la barra ausiliaria nella posizione destra.",
- "toggleAuxiliaryIconRightOn": "Icona per attivare la barra ausiliaria nella posizione destra.",
+ "toggleAuxiliaryIconLeft": "Icona per attivare o disattivare la barra laterale secondaria nella posizione sinistra.",
+ "toggleAuxiliaryIconLeftOn": "Icona per attivare/disattivare la barra laterale secondaria nella posizione sinistra.",
+ "toggleAuxiliaryIconRight": "Icona per attivare/disattivare la barra secondaria nella posizione destra.",
+ "toggleAuxiliaryIconRightOn": "Icona per attivare/disattivare la barra secondaria nella posizione destra.",
+ "toggleMaximizedAuxiliaryBar": "Attiva/Disattiva barra laterale secondaria ingrandita",
"toggleSecondarySideBar": "Attiva/Disattiva barra laterale secondaria"
},
"vs/workbench/browser/parts/auxiliarybar/auxiliaryBarPart": {
- "hideAuxiliaryBar": "Nascondi barra laterale secondaria",
+ "activity bar position": "Posizione barra attività",
+ "hide second side bar": "Nascondi barra laterale secondaria",
"move second side bar left": "Sposta barra laterale secondaria a sinistra",
- "move second side bar right": "Sposta barra laterale secondaria a destra"
+ "move second side bar right": "Sposta barra laterale secondaria a destra",
+ "showIcons": "Mostra icone",
+ "showLabels": "Mostra etichette"
},
"vs/workbench/browser/parts/banner/bannerPart": {
+ "closeBanner": "Chiudi banner",
"focusBanner": "Banner dello stato attivo"
},
"vs/workbench/browser/parts/compositeBar": {
@@ -3075,13 +3926,14 @@
},
"vs/workbench/browser/parts/compositeBarActions": {
"additionalViews": "Visualizzazioni aggiuntive",
- "badgeTitle": "{0} - {1}",
"hide": "Nascondi '{0}'",
+ "hideBadge": "Nascondi badge",
"keep": "Mantieni '{0}'",
- "manageExtension": "Gestisci estensione",
"numberBadge": "{0} ({1})",
+ "showBadge": "Mostra badge",
"titleKeybinding": "{0} ({1})",
- "toggle": "Attiva/Disattiva visualizzazione bloccata"
+ "toggle": "Attiva/Disattiva visualizzazione bloccata",
+ "toggleBadge": "Attiva/Disattiva badge visualizzazione"
},
"vs/workbench/browser/parts/compositePart": {
"ariaCompositeToolbarLabel": "{0} azioni",
@@ -3089,18 +3941,20 @@
"viewsAndMoreActions": "Visualizzazioni e altre azioni..."
},
"vs/workbench/browser/parts/dialogs/dialogHandler": {
- "aboutDetail": "Versione: {0}\r\nCommit: {1}\r\nData: {2}\r\nBrowser: {3}",
- "cancelButton": "Annulla",
- "copy": "Copia",
- "ok": "OK",
- "yesButton": "&&Sì"
+ "copy": "&&Copia",
+ "ok": "OK"
+ },
+ "vs/workbench/browser/parts/editor/auxiliaryEditorPart": {
+ "disableCompactAuxiliaryWindow": "Disattiva Modalità compatta",
+ "enableCompactAuxiliaryWindow": "Attiva Modalità compatta",
+ "toggleCompactAuxiliaryWindow": "Attiva/Disattiva modalità compatta finestra"
},
"vs/workbench/browser/parts/editor/binaryDiffEditor": {
"metadataDiff": "{0} ↔ {1}"
},
"vs/workbench/browser/parts/editor/binaryEditor": {
"binaryEditor": "Visualizzatore file binari",
- "binaryError": "Il file non viene visualizzato nell'editor perché è binario o usa una codifica di testo non supportata.",
+ "binaryError": "Il file non viene visualizzato nell'editor di testo perché è binario o usa una codifica di testo non supportata.",
"openAnyway": "Apri comunque"
},
"vs/workbench/browser/parts/editor/breadcrumbs": {
@@ -3151,14 +4005,24 @@
"breadcrumbsPossible": "Indica se l'editor può visualizzare le barre di navigazione",
"breadcrumbsVisible": "Indica se le barre di navigazione sono attualmente visibili",
"cmd.focus": "Percorsi di navigazione con stato attivo",
+ "cmd.focusAndSelect": "Focus e selezionare i percorsi di navigazione",
"cmd.toggle": "Attiva/Disattiva percorsi di navigazione",
+ "cmd.toggle2": "Attiva/Disattiva percorsi di navigazione",
"empty": "nessun elemento",
- "miBreadcrumbs": "&&Breadcrumbs",
+ "miBreadcrumbs2": "Percorsi di &&navigazione",
"separatorIcon": "Icona per il separatore nei percorsi di navigazione."
},
"vs/workbench/browser/parts/editor/breadcrumbsPicker": {
"breadcrumbs": "Percorsi di navigazione"
},
+ "vs/workbench/browser/parts/editor/diffEditorCommands": {
+ "compare": "Confronta",
+ "compare.nextChange": "Vai alla modifica successiva",
+ "compare.openSide": "Apri lato diff attivo",
+ "compare.previousChange": "Vai alla modifica precedente",
+ "swapDiffSides": "Scambia lato editor sinistro e destro",
+ "toggleInlineView": "Attiva/Disattiva visualizzazione inline"
+ },
"vs/workbench/browser/parts/editor/editor.contribution": {
"activeGroupEditorsByMostRecentlyUsedQuickAccess": "Mostra gli editor nel gruppo attivo in base a quello usato di recente",
"allEditorsByAppearanceQuickAccess": "Mostra tutti gli editor aperti in base all'aspetto",
@@ -3177,15 +4041,26 @@
"closeRight": "Chiudi a destra",
"closeRightEditors": "Chiudi gli editor a destra nel gruppo",
"closeSavedEditors": "Chiudi editor salvati del gruppo",
+ "configureEditors": "Configurare gli editor",
+ "configureTabs": "Configurare le schede",
+ "copyEditorGroupToNewWindow": "Copiare in nuova finestra",
+ "copyEditorToNewWindow": "Copia editor in una nuova finestra",
+ "copyToNewWindow": "Copiare in nuova finestra",
+ "editorActionsPosition": "Posizione delle azioni dell'editor",
"editorQuickAccessPlaceholder": "Digitare il nome di un editor per aprirlo.",
- "file": "File",
- "ignoreTrimWhitespace.label": "Ignora differenze spazi vuoti iniziali/finali",
+ "hidden": "Nascosto",
+ "hideTabs": "Nascosto",
+ "ignoreTrimWhitespace.label": "Mostra differenze spazi vuoti iniziali/finali",
"inlineView": "Visualizzazione inline",
"joinInGroup": "Unisci nel gruppo",
"keepEditor": "Mantieni editor",
"keepOpen": "Mantieni aperto",
+ "lockEditorGroup": "Blocca gruppo",
"lockGroup": "Blocca gruppo",
- "miClearRecentOpen": "&&Cancella elementi aperti di recente",
+ "lockGroupAction": "Blocca gruppo",
+ "maximizeGroup": "Ingrandisci gruppo",
+ "miClearRecentOpen": "&&Cancella elementi aperti di recente...",
+ "miCopyEditorToNewWindow": "&&Copia editor in una nuova finestra",
"miEditorLayout": "&&Layout editor",
"miFirstSideEditor": "&&Primo lato nell'editor",
"miFocusAboveGroup": "Gruppo &&Sopra",
@@ -3200,6 +4075,7 @@
"miJoinEditorInGroup": "Unisci nel &&gruppo",
"miJoinEditorInGroupWithoutMnemonic": "Unisci nel gruppo",
"miLastEditLocation": "&&Posizione ultima modifica",
+ "miMoveEditorToNewWindow": "&&Sposta editor in una nuova finestra",
"miNextEditor": "&&Editor successivo",
"miNextEditorInGroup": "&&Editor successivo nel gruppo",
"miNextGroup": "&&Gruppo successivo",
@@ -3241,16 +4117,27 @@
"miTwoRowsEditorLayoutWithoutMnemonic": "Due righe",
"miTwoRowsRightEditorLayout": "Due R&&ighe a destra",
"miTwoRowsRightEditorLayoutWithoutMnemonic": "Due righe a destra",
+ "moveAbove": "Sposta sopra",
+ "moveBelow": "Sposta sotto",
+ "moveEditorGroupToNewWindow": "Sposta in nuova finestra",
+ "moveEditorToNewWindow": "Sposta editor in una nuova finestra",
+ "moveLeft": "Sposta a sinistra",
+ "moveRight": "Sposta a destra",
+ "moveToNewWindow": "Sposta in nuova finestra",
+ "multipleTabs": "Più schede",
"navigate.next.label": "Modifica successiva",
"navigate.prev.label": "Modifica precedente",
+ "newWindow": "Nuova finestra",
"nextChangeIcon": "Icona per l'azione Modifica successiva nell'editor diff.",
"pin": "Aggiungi",
"pinEditor": "Aggiungi editor",
"previousChangeIcon": "Icona per l'azione Modifica precedente nell'editor diff.",
"reopenWith": "Riapri editor con...",
+ "share": "Condividi",
"showOpenedEditors": "Mostra editor aperti",
- "showTrimWhitespace.label": "Mostra differenze spazi vuoti iniziali/finali",
"sideBySideEditor": "Editor affiancato",
+ "singleTab": "Scheda singola",
+ "splitAndMoveEditor": "Dividi e sposta",
"splitDown": "Dividi Sotto",
"splitEditorDown": "Dividi editor sotto",
"splitEditorRight": "Dividi editor a destra",
@@ -3258,21 +4145,26 @@
"splitLeft": "Dividi Sinistra",
"splitRight": "Dividi Destra",
"splitUp": "Dividi Sopra",
+ "swapDiffSides": "Scambia lato sinistro e destro",
+ "tabBar": "Barra delle schede",
"textDiffEditor": "Editor diff di testo",
"textEditor": "Editor di testo",
+ "titleBar": "Barra del titolo",
"toggleLockGroup": "Blocca gruppo",
"togglePreviewMode": "Abilita editor di anteprima",
"toggleSplitEditorInGroupLayout": "Attiva/Disattiva layout",
"toggleWhitespace": "Icona per l'azione di attivazione/disattivazione spazi vuoti nell'editor diff.",
"unlockEditorGroup": "Sblocca gruppo",
"unlockGroupAction": "Sblocca gruppo",
+ "unmaximizeGroup": "Annulla la massima ottimizzazione del gruppo",
"unpin": "Rimuovi",
"unpinEditor": "Rimuovi editor"
},
"vs/workbench/browser/parts/editor/editorActions": {
"clearButtonLabel": "&&Cancella",
"clearEditorHistory": "Cancella cronologia degli editor",
- "clearRecentFiles": "Cancella elementi aperti di recente",
+ "clearEditorHistoryWithoutConfirm": "Cancella cronologia dell'Editor senza conferma",
+ "clearRecentFiles": "Cancella elementi aperti di recente...",
"closeAllEditors": "Chiudi tutti gli editor",
"closeAllGroups": "Chiudi tutti i gruppi di editor",
"closeEditor": "Chiudi editor",
@@ -3283,6 +4175,8 @@
"confirmClearDetail": "Questa azione è irreversibile.",
"confirmClearEditorHistoryMessage": "Cancellare la cronologia degli editor aperti di recente?",
"confirmClearRecentsMessage": "Cancellare tutti i file e le aree di lavoro aperti di recente?",
+ "copyEditorGroupToNewWindow": "Copia gruppo di editor in una nuova finestra",
+ "copyEditorToNewWindow": "Copia editor in una nuova finestra",
"duplicateActiveGroupDown": "Duplica gruppo di editor giù",
"duplicateActiveGroupLeft": "Duplica gruppo di editor a sinistra",
"duplicateActiveGroupRight": "Duplica gruppo di editor a destra",
@@ -3309,14 +4203,22 @@
"joinAllGroups": "Unisci tutti i gruppi di editor",
"joinTwoGroups": "Unisci gruppo di editor con il gruppo successivo",
"lastEditorInGroup": "Apri ultimo editor del gruppo",
- "maximizeEditor": "Ingrandisci gruppo di editor e nascondi barra laterale",
+ "maximizeEditorHideSidebar": "Ingrandisci gruppo di editor e nascondi barra laterale",
"miBack": "&&Indietro",
+ "miCopyEditorGroupToNewWindow": "&&Copia gruppo editor in una nuova finestra",
+ "miCopyEditorToNewWindow": "&&Copia editor in una nuova finestra",
"miForward": "&&Avanti",
- "minimizeOtherEditorGroups": "Ingrandisci gruppo di editor",
+ "miMoveEditorGroupToNewWindow": "&&Sposta gruppo editor in una nuova finestra",
+ "miMoveEditorToNewWindow": "&&Sposta editor in una nuova finestra",
+ "miNewEmptyEditorWindow": "&&Nuova finestra dell'editor vuota",
+ "miRestoreEditorsToMainWindow": "&&Ripristina editor nella finestra principale",
+ "minimizeOtherEditorGroups": "Espandere gruppo di editor",
+ "minimizeOtherEditorGroupsHideSidebar": "Espandi il gruppo di editor e nascondi le barre laterali",
"moveActiveGroupDown": "Sposta il gruppo di editor giù",
"moveActiveGroupLeft": "Sposta gruppo di editor a sinistra",
"moveActiveGroupRight": "Sposta gruppo di editor a destra",
"moveActiveGroupUp": "Sposta il gruppo di editor su",
+ "moveEditorGroupToNewWindow": "Sposta il gruppo di editor in una nuova finestra",
"moveEditorLeft": "Sposta editor a sinistra",
"moveEditorRight": "Sposta editor a destra",
"moveEditorToAboveGroup": "Sposta editor nel gruppo sopra",
@@ -3324,6 +4226,7 @@
"moveEditorToFirstGroup": "Sposta l'Editor nel primo gruppo",
"moveEditorToLastGroup": "Sposta l'editor nell'ultimo gruppo",
"moveEditorToLeftGroup": "Sposta l'editor nel gruppo di sinistra",
+ "moveEditorToNewWindow": "Sposta editor in una nuova finestra",
"moveEditorToNextGroup": "Sposta editor nel gruppo successivo",
"moveEditorToPreviousGroup": "Sposta editor nel gruppo precedente",
"moveEditorToRightGroup": "Sposta l'editor nel gruppo di destra",
@@ -3340,10 +4243,11 @@
"navigatePreviousInNavigationLocations": "Vai indietro nei percorsi di spostamento",
"navigateToLastEditLocation": "Vai all'ultima posizione di modifica",
"navigateToLastNavigationLocation": "Vai all'ultima posizione di spostamento",
- "newEditorAbove": "Nuovo gruppo di editor sopra",
- "newEditorBelow": "Nuovo gruppo di editor sotto",
- "newEditorLeft": "Nuovo gruppo di editor a sinistra",
- "newEditorRight": "Nuovo gruppo di editor a destra",
+ "newEmptyEditorWindow": "Nuova finestra dell'editor vuota",
+ "newGroupAbove": "Nuovo gruppo di editor sopra",
+ "newGroupBelow": "Nuovo gruppo di editor sotto",
+ "newGroupLeft": "Nuovo gruppo di editor a sinistra",
+ "newGroupRight": "Nuovo gruppo di editor a destra",
"nextEditorInGroup": "Apri editor successivo del gruppo",
"openNextEditor": "Apri editor successivo",
"openNextRecentlyUsedEditor": "Apri editor successivo usato di recente",
@@ -3357,7 +4261,10 @@
"quickOpenPreviousRecentlyUsedEditor": "Apri editor precedente usato di recente in Quick Open",
"quickOpenPreviousRecentlyUsedEditorInGroup": "Apri editor precedente usato di recente nel gruppo in Quick Open",
"reopenClosedEditor": "Riapri editor chiuso",
+ "reopenTextEditor": "Riapri editor con editor di testo",
+ "restoreEditorsToMainWindow": "Ripristina editor nella finestra principale",
"revertAndCloseActiveEditor": "Ripristina e chiudi editor",
+ "reverting": "Ripristino degli editor in corso...",
"showAllEditors": "Mostra tutti gli editor in base all'aspetto",
"showAllEditorsByMostRecentlyUsed": "Mostra tutti gli editor in base a quello usato di recente",
"showEditorsInActiveGroup": "Mostra gli editor nel gruppo attivo in base a quello usato di recente",
@@ -3375,19 +4282,21 @@
"splitEditorToNextGroup": "Dividi editor nel gruppo successivo",
"splitEditorToPreviousGroup": "Dividi editor nel gruppo precedente",
"splitEditorToRightGroup": "Dividi editor nel gruppo di destra",
+ "toggleEditorType": "Attiva/Disattiva tipo di editor",
"toggleEditorWidths": "Attiva/Disattiva le dimensioni del gruppo di editor",
- "unpinEditor": "Sblocca editor",
- "workbench.action.reopenTextEditor": "Riapri editor con editor di testo",
- "workbench.action.toggleEditorType": "Attiva/Disattiva tipo di editor"
+ "toggleMaximizeEditorGroup": "Attiva/disattiva ingrandisci gruppo di editor",
+ "unmaximizeGroup": "Gruppo annullamento barra ingrandita",
+ "unpinEditor": "Sblocca editor"
},
"vs/workbench/browser/parts/editor/editorCommands": {
- "compare": "Confronta",
"editorCommand.activeEditorCopy.arg.description": "Proprietà degli argomenti:\r\n\t* 'to': valore stringa che indica dove eseguire la copia.\r\n\t* 'value': valore numerico che indica il numero di posizioni o una posizione assoluta da copiare.",
"editorCommand.activeEditorCopy.arg.name": "Argomento per copia editor attivo",
"editorCommand.activeEditorCopy.description": "Consente di copiare l'editor attivo per gruppi",
"editorCommand.activeEditorMove.arg.description": "Proprietà degli argomenti:\r\n\t* 'to': valore stringa che specifica dove eseguire lo spostamento.\r\n\t* 'by': valore stringa che specifica l'unità per lo spostamento, ovvero per scheda o per gruppo.\r\n\t* 'value': valore numerico che specifica il numero di posizioni o una posizione assoluta per lo spostamento.",
"editorCommand.activeEditorMove.arg.name": "Argomento per spostamento editor attivo",
"editorCommand.activeEditorMove.description": "Consente di spostare l'editor attivo per schede o gruppi",
+ "editorGroupLayout.horizontal": "Orizzontale",
+ "editorGroupLayout.vertical": "Verticale",
"focusLeftSideEditor": "Sposta lo stato attivo sul primo lato nell'editor attivo",
"focusOtherSideEditor": "Sposta lo stato attivo sull'altro lato nell'editor attivo",
"focusRightSideEditor": "Sposta lo stato attivo sul secondo lato nell'editor attivo",
@@ -3395,16 +4304,19 @@
"lockEditorGroup": "Blocca gruppo di editor",
"splitEditorInGroup": "Dividi editor nel gruppo",
"toggleEditorGroupLock": "Attiva/disattiva blocco del gruppo di editor",
- "toggleInlineView": "Attiva/Disattiva visualizzazione inline",
"toggleJoinEditorInGroup": "Attiva/Disattiva Dividi editor nel gruppo",
"toggleSplitEditorInGroupLayout": "Attiva/Disattiva layout dell'editor di divisione nel gruppo",
"unlockEditorGroup": "Sblocca gruppo di editor"
},
"vs/workbench/browser/parts/editor/editorConfiguration": {
- "editor.editorAssociations": "Configurare i modelli glob in Editor (ad esempio,' \"*. Hex\": \"hexEditor. hexEdit\"'). Queste hanno la precedenza sul comportamento predefinito.",
+ "editor.editorAssociations": "Configurare [modelli glob](https://aka.ms/vscode-glob-patterns) negli editor ,ad esempio '\"*.hex\": \"hexEditor.hexedit\"'). Questi hanno la precedenza sul comportamento predefinito.",
+ "editorLargeFileSizeConfirmation": "Controlla le dimensioni minime di un file in MB prima di richiedere conferma all'apertura nell'editor. Si noti che questa impostazione potrebbe non essere applicabile a tutti i tipi di editor e tutti gli ambienti.",
+ "interactiveWindow": "Finestra interattiva",
+ "livePreview": "Anteprima dinamica",
"markdownPreview": "Anteprima di Markdown",
+ "simpleBrowser": "Browser semplice",
"workbench.editor.autoLockGroups": "Se un editor corrispondente a uno dei tipi elencati viene aperto per primo in un gruppo di editor ed è aperto più di un gruppo, il gruppo viene bloccato automaticamente. I gruppi bloccati verranno usati solo per l'apertura degli editor quando vengono scelti esplicitamente con un gesto dell'utente (ad esempio tramite trascinamento), ma non per impostazione predefinita. Di conseguenza è meno probabile che l'editor attivo in un gruppo bloccato venga sostituito casualmente con un editor diverso.",
- "workbench.editor.defaultBinaryEditor": "Editor predefinito per i file rilevati come binari. Se non è definito, all'utente verrà visualizzata una selezione."
+ "workbench.editor.defaultBinaryEditor": "Editor predefinito per i file rilevati come binari. Se non è definito, l'utente visualizzerà una selezione."
},
"vs/workbench/browser/parts/editor/editorDropTarget": {
"dropIntoEditorPrompt": "Tieni premuto __{0}__ per passare all'editor"
@@ -3413,12 +4325,32 @@
"ariaLabelGroupActions": "Svuota azioni del gruppo di editor",
"emptyEditorGroup": "{0} (vuoto)",
"groupAriaLabel": "Gruppo di editor {0}",
- "groupLabel": "Gruppo {0}"
+ "groupAriaLabelLong": "{0}: Gruppo di editor {1}",
+ "groupLabel": "Gruppo {0}",
+ "groupLabelLong": "{0}: Gruppo {1}",
+ "moveErrorDetails": "Salvare o ripristinare gli editor modificati ma non salvati prima di riprovare."
},
- "vs/workbench/browser/parts/editor/editorPanes": {
- "cancel": "Annulla",
+ "vs/workbench/browser/parts/editor/editorGroupWatermark": {
+ "editorLineHighlight": "Colore primo piano per le etichette nella filigrana dell'editor.",
+ "watermark.findInFiles": "Cerca nei file",
+ "watermark.newUntitledFile": "Nuovo file di testo senza titolo",
+ "watermark.openChat": "Apri chat",
+ "watermark.openFile": "Apri file",
+ "watermark.openFileFolder": "Apri file o cartella",
+ "watermark.openFolder": "Apri cartella",
+ "watermark.openRecent": "Apri recenti",
+ "watermark.openSettings": "Apri impostazioni",
+ "watermark.quickAccess": "Vai al file",
+ "watermark.showCommands": "Mostra tutti i comandi",
+ "watermark.startDebugging": "Avvia debug",
+ "watermark.toggleTerminal": "Attiva/Disattiva terminale"
+ },
+ "vs/workbench/browser/parts/editor/editorPanes": {
"editorOpenErrorDialog": "Non è possibile aprire '{0}'",
- "ok": "OK"
+ "ok": "&&OK"
+ },
+ "vs/workbench/browser/parts/editor/editorParts": {
+ "groupLabel": "Finestra {0}"
},
"vs/workbench/browser/parts/editor/editorPlaceholder": {
"errorEditor": "Editor errori",
@@ -3426,9 +4358,10 @@
"requiresFolderTrustText": "Il file non è visualizzato nell'editor perché non è stato concessa l'attendibilità alla cartella.",
"requiresWorkspaceTrustText": "Il file non è visualizzato nell'editor perché non è stato concessa l'attendibilità all'area di lavoro.",
"retry": "Riprova",
+ "showLogs": "Mostra log",
"trustRequiredEditor": "Attendibilità dell'area di lavoro obbligatoria",
"unavailableResourceErrorEditorText": "Non è stato possibile aprire l'editor perché il file non è stato trovato.",
- "unknownErrorEditorTextWithError": "Non è stato possibile aprire l'editor a causa di un errore imprevisto. {0}",
+ "unknownErrorEditorTextWithError": "Non è stato possibile aprire l'editor a causa di un errore imprevisto. Per altri dettagli, consultare il log.",
"unknownErrorEditorTextWithoutError": "Non è stato possibile aprire l'editor a causa di un errore imprevisto."
},
"vs/workbench/browser/parts/editor/editorQuickAccess": {
@@ -3442,6 +4375,8 @@
"autoDetect": "Rilevamento automatico",
"changeEncoding": "Cambia codifica file",
"changeEndOfLine": "Cambia sequenza di fine riga",
+ "changeLanguageMode.arg.name": "Nome della modalità lingua a cui passare.",
+ "changeLanguageMode.description": "Consente di modificare la modalità lingua dell'editor di testo attivo.",
"changeMode": "Cambia modalità linguaggio",
"columnSelectionModeEnabled": "Selezione colonne",
"configureAssociationsExt": "Configura associazione file per '{0}'...",
@@ -3457,6 +4392,7 @@
"guessedEncoding": "Ipotizzata dal contenuto",
"indentConvert": "converti file",
"indentView": "cambia visualizzazione",
+ "inputModeOvertype": "SSC",
"languageDescription": "({0}) - Linguaggio configurato",
"languageDescriptionConfigured": "({0})",
"languagesPicks": "linguaggi (identificatore)",
@@ -3471,12 +4407,11 @@
"pickEndOfLine": "Seleziona sequenza di fine riga",
"pickLanguage": "Seleziona modalità linguaggio",
"pickLanguageToConfigure": "Seleziona la modalità linguaggio da associare a '{0}'",
+ "reopen": "Rimuovi le modifiche e riapri",
"reopenWithEncoding": "Riapri con codifica",
+ "reopenWithEncodingDetail": "In questo modo verranno rimosse tutte le modifiche non salvate.",
+ "reopenWithEncodingWarning": "Vuoi ripristinare l'editor di testo attivo e riaprirlo con una codifica diversa?",
"saveWithEncoding": "Salva con codifica",
- "screenReaderDetected": "Ottimizzato per l'utilità per la lettura dello schermo",
- "screenReaderDetectedExplanation.answerNo": "No",
- "screenReaderDetectedExplanation.answerYes": "Sì",
- "screenReaderDetectedExplanation.question": "Si usa un'utilità per la lettura dello schermo per VS Code? Il ritorno a capo automatico è disabilitato quando si usa un'utilità per la lettura dello schermo",
"selectEOL": "Seleziona sequenza di fine riga",
"selectEncoding": "Seleziona codifica",
"selectIndentation": "Seleziona rientro",
@@ -3484,37 +4419,57 @@
"showLanguageExtensions": "Cerca '{0}' nelle estensioni del Marketplace...",
"singleSelection": "Riga {0}, colonna {1}",
"singleSelectionRange": "Ri {0}, col {1} ({2} selezionate)",
+ "spacesAndTabsSize": "Spazi: {0} (Dimensioni scheda: {1})",
"spacesSize": "Spazi: {0}",
"status.editor.columnSelectionMode": "Modalità di selezione colonne",
+ "status.editor.enableInsertMode": "Abilita modalità inserimento",
"status.editor.encoding": "Codifica editor",
"status.editor.eol": "Fine riga editor",
"status.editor.indentation": "Rientri editor",
"status.editor.info": "Informazioni sul file",
"status.editor.mode": "Lingua editor",
- "status.editor.screenReaderMode": "Modalità utilità per la lettura dello schermo",
"status.editor.selection": "Selezione editor",
"status.editor.tabFocusMode": "Modalità accessibilità",
"tabFocusModeEnabled": "TAB per spostare lo stato attivo",
"tabSize": "Dimensione tabulazione: {0}"
},
- "vs/workbench/browser/parts/editor/sideBySideEditor": {
- "sideBySideEditor": "Editor affiancato"
+ "vs/workbench/browser/parts/editor/editorTabsControl": {
+ "ariaLabelEditorActions": "Azioni dell'editor",
+ "draggedEditorGroup": "{0} (+{1})"
},
- "vs/workbench/browser/parts/editor/tabsTitleControl": {
+ "vs/workbench/browser/parts/editor/multiEditorTabsControl": {
"ariaLabelTabActions": "Azioni delle schede"
},
+ "vs/workbench/browser/parts/editor/sideBySideEditor": {
+ "sideBySideEditor": "Editor affiancato"
+ },
"vs/workbench/browser/parts/editor/textCodeEditor": {
"textEditor": "Editor di testo"
},
"vs/workbench/browser/parts/editor/textDiffEditor": {
+ "fileTooLargeForHeapErrorWithSize": "Almeno un file non viene visualizzato nell'editor di confronto del testo poiché è molto grande ({0})",
+ "fileTooLargeForHeapErrorWithoutSize": "Almeno un file non viene visualizzato nell'editor di confronto del testo perché è molto grande.",
"textDiffEditor": "Editor diff di testo"
},
"vs/workbench/browser/parts/editor/textEditor": {
"editor": "Editor"
},
- "vs/workbench/browser/parts/editor/titleControl": {
- "ariaLabelEditorActions": "Azioni dell'editor",
- "draggedEditorGroup": "{0} (+{1})"
+ "vs/workbench/browser/parts/globalCompositeBar": {
+ "accounts": "Account",
+ "accountsViewBarIcon": "Icona Account nella barra della visualizzazione.",
+ "authProviderUnavailable": "{0} non è attualmente disponibile",
+ "hideAccounts": "Nascondi account",
+ "loading": "Caricamento in corso...",
+ "manage": "Gestisci",
+ "manage profile": "Gestisci {0} (profilo)",
+ "manageDynamicAuthProviders": "Gestisci provider di autenticazione dinamica...",
+ "manageTrustedExtensions": "Gestisci estensioni attendibili",
+ "manageTrustedMCPServers": "Gestisci server MCP attendibili",
+ "signOut": "Disconnetti"
+ },
+ "vs/workbench/browser/parts/notifications/notificationAccessibleView": {
+ "clearNotification": "Cancella notifica",
+ "notification.accessibleViewSrc": "Origine {0}: {1}"
},
"vs/workbench/browser/parts/notifications/notificationsActions": {
"clearAllIcon": "Icona per l'azione Cancella tutto nelle notifiche.",
@@ -3523,15 +4478,17 @@
"clearNotifications": "Cancella tutte le notifiche",
"collapseIcon": "Icona per l'azione Comprimi nelle notifiche.",
"collapseNotification": "Comprimi notifica",
+ "configureDoNotDisturbMode": "Configura Non disturbare...",
"configureIcon": "Icona per l'azione Configura nelle notifiche.",
- "configureNotification": "Configura notifica",
+ "configureNotification": "Altre azioni...",
"copyNotification": "Copia testo",
"doNotDisturbIcon": "Icona per l'azione Disattiva l'audio di tutti nelle notifiche.",
"expandIcon": "Icona per l'azione Espandi nelle notifiche.",
"expandNotification": "Espandi notifica",
"hideIcon": "Icona per l'azione Nascondi nelle notifiche.",
"hideNotificationsCenter": "Nascondi notifiche",
- "toggleDoNotDisturbMode": "Attiva/Disattiva modalità Non disturbare"
+ "toggleDoNotDisturbMode": "Attiva/Disattiva modalità Non disturbare",
+ "toggleDoNotDisturbModeBySource": "Attiva/disattiva modalità non disturbare per origine..."
},
"vs/workbench/browser/parts/notifications/notificationsAlerts": {
"alertErrorMessage": "Errore: {0}",
@@ -3539,22 +4496,32 @@
"alertWarningMessage": "Avviso: {0}"
},
"vs/workbench/browser/parts/notifications/notificationsCenter": {
+ "moreSources": "Altro...",
"notifications": "Notifiche",
"notificationsCenterWidgetAriaLabel": "Centro notifiche",
"notificationsEmpty": "Nessuna nuova notifica",
- "notificationsToolbar": "Azioni del centro notifiche"
+ "notificationsToolbar": "Azioni del centro notifiche",
+ "turnOffNotifications": "Disabilita modalità non disturbare",
+ "turnOnNotifications": "Abilita modalità non disturbare"
},
"vs/workbench/browser/parts/notifications/notificationsCommands": {
+ "acceptNotificationPrimaryAction": "Accetta l'azione principale di notifica",
"clearAllNotifications": "Cancella tutte le notifiche",
"focusNotificationToasts": "Sposta stato attivo sull'avviso popup di notifica",
"hideNotifications": "Nascondi notifiche",
"notifications": "Notifiche",
+ "selectSources": "Selezionare le origini per cui abilitare le notifiche",
"showNotifications": "Mostra notifiche",
- "toggleDoNotDisturbMode": "Attiva/Disattiva modalità Non disturbare"
+ "toggleDoNotDisturbMode": "Attiva/Disattiva modalità Non disturbare",
+ "toggleDoNotDisturbModeBySource": "Attiva/disattiva modalità non disturbare per origine..."
},
"vs/workbench/browser/parts/notifications/notificationsList": {
+ "notificationAccessibleViewHint": "Esaminare la risposta nella visualizzazione accessibile con {0}",
+ "notificationAccessibleViewHintNoKb": "Esaminare la risposta nella visualizzazione accessibile tramite il comando Apri visualizzazione accessibile che attualmente non è attivabile tramite il tasto di scelta rapida",
"notificationAriaLabel": "{0}, notifica",
+ "notificationAriaLabelHint": "{0}, notifica {1}",
"notificationWithSourceAriaLabel": "{0}, origine: {1}, notifica",
+ "notificationWithSourceAriaLabelHint": "{0}, origine: {1}, notifica {2}",
"notificationsList": "Elenco notifiche"
},
"vs/workbench/browser/parts/notifications/notificationsStatus": {
@@ -3578,7 +4545,21 @@
"vs/workbench/browser/parts/notifications/notificationsViewer": {
"executeCommand": "Fare clic per eseguire il comando '{0}'",
"notificationActions": "Azioni notifica",
- "notificationSource": "Origine: {0}"
+ "notificationSource": "Origine: {0}",
+ "turnOffNotifications": "Disattiva notifiche di avviso e informazioni da '{0}'",
+ "turnOnNotifications": "Attiva tutte le notifiche da '{0}'"
+ },
+ "vs/workbench/browser/parts/paneCompositeBar": {
+ "auxiliarybar": "Barra laterale secondaria",
+ "moveToMenu": "Sposta in",
+ "panel": "Pannello",
+ "resetLocation": "Reimposta posizione",
+ "sidebar": "Barra laterale primaria"
+ },
+ "vs/workbench/browser/parts/paneCompositePart": {
+ "moreActions": "Altre azioni...",
+ "pane.emptyMessage": "Trascina qui una visualizzazione per visualizzarla.",
+ "views": "Visualizzazioni"
},
"vs/workbench/browser/parts/panel/panelActions": {
"alignPanel": "Allinea pannello",
@@ -3591,18 +4572,16 @@
"alignPanelRight": "Imposta allineamento del pannello a destra",
"alignPanelRightShort": "A destra",
"closeIcon": "Icona per chiudere un pannello.",
- "closePanel": "Chiudi pannello",
- "closeSecondarySideBar": "Chiudi barra laterale secondaria",
+ "closePanel": "Nascondi pannello",
"focusPanel": "Sposta lo stato attivo nel pannello",
- "hidePanel": "Nascondi pannello",
"maximizeIcon": "Icona per ingrandire un pannello.",
"maximizePanel": "Ingrandisci dimensioni del pannello",
- "miPanel": "&&Panel",
- "miPanelNoMnemonic": "Panel",
+ "miTogglePanelMnemonic": "&&Pannello",
"minimizePanel": "Ripristina dimensioni del pannello",
"movePanelToSecondarySideBar": "Spostare le visualizzazioni del pannello nella barra laterale secondaria",
"moveSidePanelToPanel": "Sposta visualizzazioni barra laterale secondaria nel pannello",
"nextPanelView": "Visualizzazione pannello successivo",
+ "openAndClosePanel": "Apri/Mostra e chiudi/Nascondi pannello",
"panelMaxNotSupported": "L'ottimizzazione del pannello è supportata solo quando è allineato al centro.",
"positionPanel": "Posizione pannello",
"positionPanelBottom": "Sposta pannello verso il basso",
@@ -3611,8 +4590,9 @@
"positionPanelLeftShort": "A sinistra",
"positionPanelRight": "Sposta pannello a destra",
"positionPanelRightShort": "A destra",
+ "positionPanelTop": "Sposta pannello in alto",
+ "positionPanelTopShort": "In alto",
"previousPanelView": "Visualizzazione pannello precedente",
- "restoreIcon": "Icona per ripristinare un pannello.",
"toggleMaximizedPanel": "Attiva/Disattiva pannello ingrandito",
"togglePanel": "Attiva/Disattiva pannello",
"togglePanelOffIcon": "Icona per disattivare il pannello quando è acceso.",
@@ -3620,37 +4600,34 @@
"togglePanelVisibility": "Attiva/Disattiva visibilità pannello"
},
"vs/workbench/browser/parts/panel/panelPart": {
+ "align panel": "Allinea pannello",
"hidePanel": "Nascondi pannello",
- "moreActions": "Altre azioni...",
- "panel.emptyMessage": "Trascina qui una visualizzazione per visualizzarla.",
- "pinned view containers": "Personalizzazioni della visibilità delle voci del pannello",
- "resetLocation": "Reimposta posizione"
+ "panel position": "Posizione pannello",
+ "showIcons": "Mostra icone",
+ "showLabels": "Mostra etichette"
},
"vs/workbench/browser/parts/sidebar/sidebarActions": {
+ "closeSidebar": "Chiudi barra laterale primaria",
"focusSideBar": "Focus su barra laterale primaria"
},
+ "vs/workbench/browser/parts/sidebar/sidebarPart": {
+ "toggleActivityBar": "Attiva/Disattiva visibilità della barra attività"
+ },
"vs/workbench/browser/parts/statusbar/statusbarActions": {
"focusStatusBar": "Sposta stato attivo sulla barra di stato",
- "hide": "Nascondi '{0}'"
- },
- "vs/workbench/browser/parts/statusbar/statusbarModel": {
- "statusbar.hidden": "Personalizzazioni della visibilità delle voci della barra di stato"
+ "hide": "Nascondi '{0}'",
+ "manageExtension": "Gestisci estensione"
},
"vs/workbench/browser/parts/statusbar/statusbarPart": {
"hideStatusBar": "Nascondi barra di stato"
},
"vs/workbench/browser/parts/titlebar/commandCenterControl": {
- "all": "Mostra modalità di ricerca...",
- "commandCenter-activeBackground": "Colore di sfondo attivo del centro comandi",
- "commandCenter-activeForeground": "Colore primo piano attivo del centro comandi",
- "commandCenter-background": "Colore di sfondo del centro comandi",
- "commandCenter-border": "Colore del bordo del centro comandi",
- "commandCenter-foreground": "Colore primo piano del centro comandi",
"label.dfl": "Cerca",
"label1": "{0} {1}",
"label2": "{0} {1}",
"title": "Cercare {0} ({1}) — {2}",
- "title2": "Cercare {0} — {1}"
+ "title2": "Cercare {0} — {1}",
+ "title3": "Centro comandi"
},
"vs/workbench/browser/parts/titlebar/menubarControl": {
"DownloadingUpdate": "Download dell'aggiornamento...",
@@ -3669,29 +4646,53 @@
"mSelection": "&&Selezione",
"mTerminal": "&&Terminale",
"mView": "&&Visualizza",
- "menubar.customTitlebarAccessibilityNotification": "Il supporto dell'accessibilità è abilitato. Per un'esperienza più accessibile, si consiglia lo stile di barra del titolo personalizzato.",
+ "menubar.customTitlebarAccessibilityNotification": "Il supporto dell'accessibilità è abilitato. Per un'esperienza più accessibile, è consigliabile utilizzare lo stile della barra del titolo personalizzato.",
"restartToUpdate": "Riavvia per &&aggiornare"
},
+ "vs/workbench/browser/parts/titlebar/titlebarActions": {
+ "accounts": "Account",
+ "hideCustomTitleBar": "Nascondi barra del titolo personalizzata",
+ "hideCustomTitleBarInFullScreen": "Nascondi barra del titolo personalizzata a schermo intero",
+ "manage": "Gestisci",
+ "showCustomTitleBar": "Mostra barra del titolo personalizzata",
+ "toggle.commandCenter": "Centro comandi",
+ "toggle.commandCenterDescription": "Attiva/disattiva la visibilità del Centro comandi nella barra del titolo",
+ "toggle.customTitleBar": "Barra del titolo personalizzata",
+ "toggle.editorActions": "Azioni dell'editor",
+ "toggle.hideCustomTitleBar": "Nascondi barra del titolo personalizzata",
+ "toggle.hideCustomTitleBarInFullScreen": "Nascondi barra del titolo personalizzata a schermo intero",
+ "toggle.layout": "Controlli layout",
+ "toggle.layoutDescription": "Attiva/Disattiva la visibilità dei controlli layout nella barra del titolo",
+ "toggle.navigation": "Controlli di spostamento",
+ "toggle.navigationDescription": "Attiva/Disattiva la visibilità dei controlli di spostamento nella barra del titolo"
+ },
"vs/workbench/browser/parts/titlebar/titlebarPart": {
- "focusTitleBar": "Stato attivo sulla barra del titolo",
- "toggle.commandCenter": "Command Center",
- "toggle.layout": "Layout Controls"
+ "ariaLabelTitleActions": "Azioni titolo",
+ "focusTitleBar": "Stato attivo sulla barra del titolo"
},
"vs/workbench/browser/parts/titlebar/windowTitle": {
"devExtensionWindowTitlePrefix": "[Host di sviluppo estensione]",
"userIsAdmin": "[Amministratore]",
"userIsSudo": "[Superutente]"
},
+ "vs/workbench/browser/parts/views/checkbox": {
+ "checked": "Selezionato",
+ "unchecked": "Deselezionato"
+ },
"vs/workbench/browser/parts/views/treeView": {
"collapseAll": "Comprimi tutto",
"command-error": "Si è verificato un errore durante l'esecuzione del comando {1}: {0}. Il problema può dipendere dall'estensione che aggiunge come contributo {1}.",
"no-dataprovider": "Non ci sono provider di dati registrati che possono fornire i dati della visualizzazione.",
"refresh": "Aggiorna",
- "treeView.enableCollapseAll": "Indica se con la visualizzazione struttura ad albero con ID {0} è abilitato il comando Comprimi tutto.",
+ "treeView.enableCollapseAll": "Indica se la visualizzazione struttura ad albero con ID {0} abilita Comprimi tutto.",
"treeView.enableRefresh": "Indica se con la visualizzazione struttura ad albero con ID {0} è abilitato il comando Aggiorna.",
"treeView.toggleCollapseAll": "Indica se il comando Comprimi tutto è attivato o meno per la visualizzazione struttura ad albero con ID {0}."
},
+ "vs/workbench/browser/parts/views/viewFilter": {
+ "more filters": "Altri filtri..."
+ },
"vs/workbench/browser/parts/views/viewPane": {
+ "viewAccessibilityHelp": "Usa ALT+F1 per la guida sull'accessibilità {0}",
"viewPaneContainerCollapsedIcon": "Icona per un contenitore del riquadro di visualizzazione compresso.",
"viewPaneContainerExpandedIcon": "Icona per un contenitore del riquadro di visualizzazione espanso.",
"viewToolbarAriaLabel": "{0} azioni"
@@ -3704,55 +4705,84 @@
"views": "Visualizzazioni",
"viewsMove": "Sposta visualizzazioni"
},
- "vs/workbench/browser/parts/views/viewsService": {
- "focus view": "Sposta stato attivo sulla visualizzazione {0}",
- "resetViewLocation": "Reimposta posizione",
- "show view": "Mostra {0}",
- "toggle view": "Attiva/Disattiva {0}"
- },
"vs/workbench/browser/quickaccess": {
"inQuickOpen": "Indica se lo stato attivo della tastiera si trova all'interno del controllo Quick Open"
},
- "vs/workbench/browser/workbench": {
- "loaderErrorNative": "Non è stato possibile caricare un file obbligatorio. Riavviare l'applicazione e riprovare. Dettagli: {0}"
+ "vs/workbench/browser/web.main": {
+ "reset": "Reimpostare dati utente",
+ "reset user data message": "Reimpostare i dati (impostazioni, tasti di scelta rapida, estensioni, frammenti e stato dell'interfaccia utente) e ricaricare?"
+ },
+ "vs/workbench/browser/window": {
+ "closeWindowButtonLabel": "&&Chiudi finestra",
+ "closeWindowMessage": "Chiudere la finestra?",
+ "doNotAskAgain": "Non visualizzare più questo messaggio",
+ "exitButtonLabel": "&&Uscita",
+ "openExternalDialogButtonInstall.v3": "&&Installa",
+ "openExternalDialogButtonRetry.v2": "&&Riprova",
+ "openExternalDialogDetail.v2": "È stato avviato {0} nel computer.\r\n\r\nSe {1} non è stato avviato, riprova o installalo di seguito.",
+ "openExternalDialogDetailNoInstall": "{0} è stato avviato nel computer.\r\n\r\nSe {1} non si è avviato, riprovare di seguito.",
+ "openExternalDialogTitle": "Tutto fatto. È possibile chiudere questa scheda ora.",
+ "quitButtonLabel": "&&Esci",
+ "quitMessage": "Uscire?",
+ "quitMessageMac": "Uscire?",
+ "reload": "&&Ricarica",
+ "retry": "&&Riprova",
+ "shutdownError": "Si è verificato un errore imprevisto che richiede un ricaricamento della pagina.",
+ "shutdownErrorDetail": "Il workbench è stato eliminato in modo imprevisto durante l'esecuzione.",
+ "unableToOpenExternal": "Il browser ha bloccato l'apertura di una nuova scheda o finestra. Premere 'Riprova' per riprovare.",
+ "unableToOpenWindowDetail": "Consentire i popup per questo sito Web nelle [impostazioni del browser]({0})."
},
"vs/workbench/browser/workbench.contribution": {
"activeEditorLong": "`${activeEditorLong}`: percorso completo del file (ad esempio /Utenti/Sviluppo/Cartella/CartellaFile/File.txt).",
"activeEditorMedium": "`${activeEditorMedium}`: percorso del file relativo alla cartella dell'area di lavoro (ad esempio Cartella/CartellaFile/File.txt).",
"activeEditorShort": "`${activeEditorShort}`: nome file (ad esempio File.txt).",
+ "activeEditorState": "'${activeEditorState}': fornisce informazioni sullo stato dell'editor attivo, ad esempio modificato. Questo valore verrà aggiunto per impostazione predefinita in modalità utilità per la lettura dello schermo con {0} abilitato.",
"activeFolderLong": "`${activeFolderLong}`: percorso completo della cartella che contiene il file (ad esempio /Utenti/Sviluppo/Cartella/CartellaFile).",
"activeFolderMedium": "`${activeFolderMedium}`: percorso della cartella che contiene il file, relativo alla cartella dell'area di lavoro (ad esempio Cartella/CartellaFile).",
"activeFolderShort": "`${activeFolderShort}`: nome della cartella in cui si trova il file (ad esempio CartellaFile).",
- "activityBarIconClickBehavior": "Controlla il comportamento del clic su un'icona della barra attività nel workbench.",
- "activityBarVisibility": "Controlla la visibilità della barra attività in Workbench.",
+ "activeRepositoryBranchName": "'${activeRepositoryBranchName}': nome del ramo attivo nel repository attivo, ad esempio main.",
+ "activeRepositoryName": "'${activeRepositoryName}': nome del repository attivo, ad esempio vscode.",
+ "activityBarIconClickBehavior": "Controlla il comportamento del clic su un'icona della barra attività nel workbench. Questo valore viene ignorato quando {0} non è impostato su {1}.",
+ "activityBarLocation": "Controlla la posizione della barra attività rispetto alle barre laterali primaria e secondaria.",
+ "alwaysShowEditorActions": "Controlla se visualizzare sempre le azioni dell'editor, anche quando il gruppo di editor non è attivo.",
"appName": "`${appName}`: ad esempio VS Code.",
+ "askChatLocation": "Controlla dove il riquadro comandi deve porre domande alla chat.",
+ "askChatLocation.chatView": "Porre domande sulla chat nella visualizzazione Chat.",
+ "askChatLocation.quickChat": "Fai domande sulla chat in Chat rapida.",
+ "browser": "Configurare il browser da usare per aprire i collegamenti HTTP o HTTPS esternamente. Può essere il nome del browser ('edge', 'chrome', 'firefox') o un percorso assoluto del file eseguibile del browser. Se non è impostata l'opzione, verrà utilizzata l'impostazione predefinita di sistema.",
"centeredLayoutAutoResize": "Controlla se il layout centrato deve essere ridimensionato automaticamente alla massima larghezza quando è aperto più di un gruppo. Quando è aperto un solo gruppo, verrà ridimensionato alla larghezza originale del layout centrato.",
+ "centeredLayoutDynamicWidth": "Controlla se il layout centrato tenta di mantenere una larghezza costante quando la finestra viene ridimensionata.",
"closeEmptyGroups": "Controlla il comportamento dei gruppi vuoti di editor quando viene chiusa l'ultima scheda nel gruppo. Quando abilitato, i gruppi vuoti si chiuderanno automaticamente. Quando disabilitato, i gruppi vuoti rimarranno parte della griglia.",
"closeOnFileDelete": "Controlla se gli editor che visualizzano un file aperto durante la sessione devono chiudersi automaticamente quando il file viene eliminato o rinominato da un altro processo. Se si disabilita questa opzione, in una simile circostanza l'editor rimarrà aperto. Tenere presente che l'eliminazione del file dall'interno dell'applicazione comporterà sempre la chiusura dell'editor e che gli editor con modifiche non salvate non verranno mai chiusi allo scopo di salvaguardare i dati.",
"closeOnFocusLost": "Controlla se Quick Open deve essere chiuso automaticamente quando perde lo stato attivo.",
"commandHistory": "Controlla il numero di comandi utilizzati di recente da mantenere nella cronologia. Impostare a 0 per disabilitare la cronologia dei comandi.",
- "confirmBeforeClose": "Controlla se visualizzare una finestra di dialogo di conferma prima di chiudere la finestra o chiudere l'applicazione.",
+ "confirmBeforeClose": "Controlla se visualizzare una finestra di dialogo di conferma prima di chiudere una finestra o chiudere l'applicazione.",
"confirmBeforeCloseWeb": "Controlla se visualizzare una finestra di dialogo di conferma prima di chiudere la scheda o la finestra del browser. Si noti che, anche se questa impostazione è abilitata, i browser possono comunque decidere di chiudere una scheda o una finestra senza conferma e che questa impostazione è solo un suggerimento che potrebbe non funzionare in tutti i casi.",
+ "customEditorLabelDescriptionExample": "Esempio: '\"**/static/**/*.html\": \"${filename} - ${dirname} (${extname})\"' eseguirà il rendering di un file 'WORKSPACE_FOLDER/static/folder/file.html` as `file - folder (html)'.",
"customMenuBarAltFocus": "Controlla se, quando si preme ALT, lo stato attivo verrà spostato sulla barra dei menu. Questa impostazione non ha effetto sull'attivazione/disattivazione della barra dei menu con ALT.",
"decorations.badges": "Controlla se le decorazioni file dell'editor devono usare le notifiche.",
"decorations.colors": "Controlla se le decorazioni file dell'editor devono usare i colori.",
"dirty": "`${dirty}`: un indicatore per il momento in cui l'editor attivo contiene modifiche non salvate.",
- "editorOpenPositioning": "Controlla la posizione in cui vengono aperti gli editor. Selezionare `left` o `right` per aprire gli editor a sinistra o a destra di quello attualmente attivo. Selezionare `first` o `last` per aprire gli editor indipendentemente da quello attualmente attivo.",
- "editorTabCloseButton": "Controlla la posizione dei pulsanti di chiusura delle schede dell'editor oppure li disabilita quando è impostata su 'off'. Questo valore viene ignorato quando `#workbench.editor.showTabs#` è disabilitato.",
+ "doubleClickTabToToggleEditorGroupSizes": "Controlla come il gruppo di editor viene ridimensionato quando si fa doppio clic su una scheda. Questo valore viene ignorato quando {0} non è impostato su {1}.",
+ "dragToOpenWindow": "Controlla se gli editor possono essere trascinati fuori dalla finestra ed aperti in una nuova finestra. Tieni premuto il tasto 'ALT' durante il trascinamento per attivare/disattivare questa opzione in modo dinamico.",
+ "editorActionsLocation": "Controlla dove vengono visualizzate le azioni dell'editor.",
+ "editorOpenPositioning": "Controlla la posizione in cui vengono aperti gli editor. Selezionare {0} o {1} per aprire gli editor a sinistra o a destra di quello attualmente attivo. Selezionare {2} o {3} per aprire gli editor indipendentemente da quello attualmente attivo.",
+ "enableDefaultVisibilityInOldWorkspace": "Abilita la visibilità predefinita della barra laterale secondaria nelle aree di lavoro più vecchie, prima che fosse disponibile il supporto per la visibilità predefinita.",
"enableMenuBarMnemonics": "Controlla se è possibile aprire i menu principali tramite tasti di scelta rapida con ALT. Disattivare i tasti di scelta se invece si intende associare i tasti di scelta rapida con ALT ai comandi dell'editor.",
- "enablePreview": "Controlla se gli editor aperti vengono visualizzati come anteprima editor. Le anteprime editor non vengono mantenute aperte, vengono riutilizzate finché non vengono impostate esplicitamente per rimanere aperte, ad esempio tramite doppio clic o modifica, e mostrano i nomi di file in corsivo.",
- "enablePreviewFromCodeNavigation": "Controlla se gli editor rimangono visualizzati in anteprima quando si avvia l'esplorazione del codice. Le anteprime editor non vengono mantenute aperte e vengono riutilizzate finché non vengono impostate esplicitamente per rimanere aperte, ad esempio tramite doppio clic o modifica. Questo valore viene ignorato quando `#workbench.editor.enablePreview#` è disabilitato.",
- "enablePreviewFromQuickOpen": "Controlla se gli editor aperti da Quick Open vengono visualizzati come anteprima editor. Le anteprime editor non vengono mantenute aperte e vengono riutilizzate finché non vengono impostate esplicitamente per rimanere aperte, ad esempio tramite doppio clic o modifica. Questo valore viene ignorato quando `#workbench.editor.enablePreview#` è disabilitato.",
- "exclude": "Configurare i [modelli GLOB](https://code.visualstudio.com/docs/editor/codebasics#_advanced-search-options) per escludere i file dalla cronologia dei file locale. La modifica di questa impostazione non ha effetto sulle voci della cronologia dei file locali esistenti.",
- "focusRecentEditorAfterClose": "Controlla se le schede vengono chiuse nell'ordine in cui sono state aperte a partire dall'ultima aperta oppure da sinistra verso destra.",
+ "enableNaturalLanguageSearch": "Controlla se il riquadro comandi deve includere comandi simili. Deve essere installata un'estensione che fornisce il supporto per il linguaggio naturale.",
+ "enablePreview": "Consente di stabilire se la modalità di anteprima deve essere usata all'apertura degli editor. È possibile avere un solo editor della modalità di anteprima per ogni gruppo di editor. Questo editor visualizza il nome del file in corsivo nella scheda o nell'etichetta del titolo e nella vista Editor aperti. Il contenuto verrà sostituito dall'editor successivo aperto in modalità anteprima. Se si modifica un editor in modalità anteprima l’editor rimarrà visualizzato così come accade facendo doppio clic sulla sua etichetta o sull'opzione \"Mantieni aperto\" nel menu di scelta rapida dell'etichetta. Aprendo un file da Esplora risorse con un doppio clic, l'editor corrispondente diventa immediatamente permanente.",
+ "enablePreviewFromCodeNavigation": "Controlla se gli editor rimangono visualizzati in anteprima quando si avvia l'esplorazione del codice. Le anteprime editor non vengono mantenute aperte e vengono riutilizzate finché non vengono impostate esplicitamente per rimanere aperte, ad esempio tramite doppio clic o modifica. Questo valore viene ignorato quando {0} non è impostato su {1}.",
+ "enablePreviewFromQuickOpen": "Controlla se gli editor aperti da Quick Open vengono visualizzati come anteprima editor. Le anteprime editor non vengono mantenute aperte e vengono riutilizzate finché non vengono impostate esplicitamente per rimanere aperte, ad esempio tramite doppio clic o modifica. Se abilitata, tenere premuto CTRL prima della selezione per aprire un editor come non in anteprima. Questo valore viene ignorato quando {0} non è impostato su {1}.",
+ "exclude": "Configurare i percorsi o [modelli glob](https://aka.ms/vscode-glob-patterns) per escludere i file dalla cronologia dei file locale. I modelli Glob vengono sempre valutati in relazione al percorso della cartella dell'area di lavoro, a meno che non siano percorsi assoluti. La modifica di questa impostazione non ha effetto sulle voci della cronologia dei file locali esistenti.",
+ "focusRecentEditorAfterClose": "Controlla se gli editor vengono chiusi nell'ordine usato più di recente o da sinistra a destra.",
+ "focusedView": "'${focusedView}': nome della visualizzazione attualmente evidenziata.",
"folderName": "`${folderName}`: nome della cartella dell'area di lavoro in cui si trova il file (ad esempio Cartella).",
"folderPath": "`${folderPath}`: percorso file della cartella dell'area di lavoro in cui si trova il file (ad esempio /Utenti/Sviluppo/Cartella).",
"fontAliasing": "Controlla il metodo di aliasing dei caratteri nell'area di lavoro.",
- "highlightModifiedTabs": "Controlla se viene disegnato un bordo superiore nelle schede dell'editor che contiene modifiche non salvate. Questo valore viene ignorato quando `#workbench.editor.showTabs#` è disabilitato.",
- "layoutControlEnabled": "Controlla se i controlli layout nella barra del titolo personalizzata siano abilitati tramite {0}.",
- "layoutControlEnabledDeprecation": "Questa impostazione è stata deprecata a favore di {0}",
+ "highlightModifiedTabs": "Controlla se viene disegnato un bordo superiore nelle schede dell'editor che contiene modifiche non salvate. Questo valore viene ignorato quando {0} non è impostato su {1}.",
+ "layoutControlEnabled": "Consente di determinare se il controllo del layout viene mostrato nella barra del titolo personalizzata. Questa impostazione ha effetto solo quando{0} non è impostato su {1}.",
+ "layoutControlEnabledWeb": "Consente di determinare se il controllo del layout nella barra del titolo viene mostrato.",
"layoutControlType": "Controlla se il controllo layout nella barra del titolo personalizzata viene visualizzato come singolo pulsante di menu o con più attivazioni dell'interfaccia utente.",
- "layoutControlTypeDeprecation": "Questa impostazione è stata deprecata a favore di {0}",
"layoutcontrol.type.both": "Mostra sia l'elenco a discesa che i pulsanti di attivazione/disattivazione.",
"layoutcontrol.type.menu": "Mostra un singolo pulsante con un elenco a discesa di opzioni di layout.",
"layoutcontrol.type.toggles": "Mostra diversi pulsanti per attivare/disattivare la visibilità dei pannelli e della barra laterale.",
@@ -3766,44 +4796,60 @@
"menuBarVisibility.mac": "Controlla la visibilità della barra dei menu. L'impostazione 'toggle' indica che la barra dei menu è nascosta e che per visualizzarla è necessario eseguire `Sposta lo stato attivo sul menu dell'applicazione`. L'impostazione 'compact' consente di spostare il menu nella barra laterale.",
"mergeWindow": "Configurare un intervallo in secondi durante il quale l'ultima voce nella cronologia dei file locali viene sostituita con la voce da aggiungere. Ciò consente di ridurre il numero complessivo di voci aggiunte, ad esempio quando è abilitato il salvataggio automatico. Questa impostazione viene applicata solo alle voci che hanno la stessa origine di origine. La modifica di questa impostazione non ha effetto sulle voci della cronologia dei file locali esistenti.",
"mouseBackForwardToNavigate": "Abilita l'uso dei pulsanti del mouse quattro e cinque per i comandi 'Vai indietro' e 'Vai avanti'.",
+ "navigationControlEnabled": "Consente di determinare se il controllo di spostamento viene mostrato nella barra del titolo personalizzata. Questa impostazione ha effetto solo quando{0} non è impostato su {1}.",
+ "navigationControlEnabledWeb": "Consente di determinare se il controllo di spostamento nella barra del titolo viene mostrato.",
"navigationScope": "Controlla l'ambito dello spostamento della cronologia negli editor per comandi come 'Vai indietro' e 'Vai avanti'.",
"openDefaultKeybindings": "Controlla se all'apertura delle impostazioni dei tasti di scelta rapida viene aperto anche un editor che mostra tutti i tasti di scelta rapida predefiniti.",
"openDefaultSettings": "Controlla se all'apertura delle impostazioni viene aperto anche un editor che mostra tutte le impostazioni predefinite.",
"openFilesInNewWindow": "Controlla se i file devono essere aperti in una nuova finestra quando si usa una riga di comando o una finestra di dialogo file.\r\nTenere presente che in alcuni casi questa impostazione viene ignorata, ad esempio quando si usa l'opzione della riga di comando `--new-window` o `--reuse-window`.",
"openFilesInNewWindowMac": "Controlla se i file devono essere aperti in una nuova finestra quando si usa una riga di comando o una finestra di dialogo file.\r\nTenere presente che in alcuni casi questa impostazione viene ignorata, ad esempio quando si usa l'opzione della riga di comando `--new-window` o `--reuse-window`.",
"openFoldersInNewWindow": "Controlla se le cartelle devono essere aperte in una nuova finestra o sostituire l'ultima finestra attiva.\r\nTenere presente che in alcuni casi questa impostazione viene ignorata, ad esempio quando si usa l'opzione della riga di comando `--new-window` o `--reuse-window`.",
- "panelDefaultLocation": "Controlla la posizione predefinita del pannello (terminale, console di debug, output, problemi) in una nuova area di lavoro. Può essere visualizzato in basso, a destra o a sinistra dell'area dell'editor.",
+ "panelDefaultLocation": "Controlla la posizione predefinita del pannello (terminale, console di debug, output, problemi) in una nuova area di lavoro. Può essere visualizzato in basso, in alto, a destra o a sinistra dell'area dell'editor.",
"panelOpensMaximized": "Controlla se il pannello viene aperto a schermo intero. Può essere sempre aperto a schermo intero, mai aperto a schermo intero oppure aperto nell'ultimo stato in cui si trovava prima di essere chiuso.",
+ "panelShowLabels": "Controlla se gli elementi attività nel titolo del pannello vengono visualizzati come etichetta o icona.",
"perEditorGroup": "Controlla se applicare il limite massimo di editor aperti al singolo gruppo di editor o a tutti i gruppi di editor.",
- "pinnedTabSizing": "Controlla il dimensionamento delle schede bloccate. Le schede bloccate sono visualizzate all'inizio di tutte le schede aperte e in genere non vengono chiuse finché non vengono rimosse. Questo valore viene ignorato quando `#workbench.editor.showTabs#` è disabilitato.",
+ "pinnedTabSizing": "Controlla le dimensioni delle schede bloccate. Le schede bloccate sono visualizzate all'inizio di tutte le schede aperte e in genere non vengono chiuse finché non vengono rimosse. Questo valore viene ignorato quando {0} non è impostato su {1}.",
"preserveInput": "Controlla se l'ultimo input digitato nel riquadro comandi deve essere ripristinato alla successiva riapertura del riquadro.",
+ "problems.visibility": "Controlla se i problemi sono visibili nell'editor e nel workbench.",
+ "profileName": "'${profileName}': nome del profilo in cui viene aperta l'area di lavoro, ad esempio Data Science (profilo). È ignorato se si utilizza il profilo predefinito.",
"remoteName": "`${remoteName}`: ad esempio SSH",
"restoreViewState": "Ripristinare l'ultimo stato di visualizzazione dell'editor, ad esempio la posizione di scorrimento, durante la riapertura degli editor dopo la chiusura. Lo stato di visualizzazione dell'editor è archiviato per gruppo di editor e viene ignorato quando un gruppo viene chiuso. Utilizzare l'impostazione {0} per usare l'ultimo stato di visualizzazione noto in tutti i gruppi di editor nel caso in cui non sia stato trovato uno stato di visualizzazione precedente per un gruppo di editor.",
- "revealIfOpen": "Controlla se un editor viene visualizzato in uno qualsiasi dei gruppi visibili quando viene aperto. Se l'opzione è disabilitata, un editor verrà aperto preferibilmente nel gruppo di editor attualmente attivo. Se è abilitata, un editor già aperto verrà visualizzato e non aperto di nuovo nel gruppo di editor attualmente attivo. Tenere presente che alcuni casi questa impostazione viene ignorata, ad esempio quando si forza l'apertura di un editor in un gruppo specifico oppure a lato del gruppo attualmente attivo.",
- "rootName": "`${rootName}`: nome della cartella o dell'area di lavoro (ad esempio Cartella o AreaDiLavoro).",
+ "revealIfOpen": "Controlla se un editor viene visualizzato in uno qualsiasi dei gruppi visibili quando viene aperto. Se l'opzione è disabilitata, un editor verrà aperto preferibilmente nel gruppo di editor attualmente attivo. Se è abilitata, un editor già aperto verrà visualizzato e non aperto di nuovo nel gruppo di editor attualmente attivo. Tenere presente che in alcuni casi questa impostazione viene ignorata, ad esempio quando si forza l'apertura di un editor in un gruppo specifico oppure a lato del gruppo attualmente attivo.",
+ "rootName": "'${rootName}': nome dell'area di lavoro con il nome remoto facoltativo e l'indicatore dell'area di lavoro, se applicabile, ad esempio cartella, cartella personale [SSH] o area di lavoro (area di lavoro).",
+ "rootNameShort": "`${rootNameShort}`: nome abbreviato dell'area di lavoro senza suffissi (ad esempio myFolder, myRemoteFolder o myWorkspace).",
"rootPath": "`${rootPath}`: percorso file della cartella o dell'area di lavoro aperta (ad esempio /Utenti/Sviluppo/AreaDiLavoro).",
- "scrollToSwitchTabs": "Controlla l'apertura delle schede durante lo scorrimento. Per impostazione predefinita, durante lo scorrimento le schede verranno visualizzate, ma non aperte. È possibile tenere premuto il tasto MAIUSC durante lo scorrimento per modificare questo comportamento per il tempo necessario. Questo valore viene ignorato quando `#workbench.editor.showTabs#` è disabilitato.",
+ "scrollToSwitchTabs": "Controlla l'apertura delle schede durante lo scorrimento. Per impostazione predefinita, durante lo scorrimento le schede verranno visualizzate, ma non aperte. È possibile tenere premuto il tasto MAIUSC durante lo scorrimento per modificare questo comportamento per il tempo necessario. Questo valore viene ignorato quando {0} non è impostato su {1}.",
+ "secondarySideBarDefaultVisibility": "Controlla la visibilità predefinita della barra laterale secondaria nelle aree di lavoro o nelle finestre vuote aperte per la prima volta.",
+ "secondarySideBarShowLabels": "Controlla se gli elementi attività nel titolo della barra laterale secondaria vengono visualizzati come etichetta o icona. Questa impostazione ha effetto solo quando {0} non è impostato su {1}.",
"separator": "`${separator}`: separatore condizionale (\" - \") visualizzato solo se circondato da variabili con valori o testo statico.",
"settings.editor.desc": "Determina l'editor di impostazioni da usare per impostazione predefinita.",
"settings.editor.json": "Usa l'editor di file JSON.",
"settings.editor.ui": "Usa l'editor dell'interfaccia utente per le impostazioni.",
- "sharedViewState": "Mantiene lo stato di visualizzazione dell'editor più recente, ad esempio la posizione di scorrimento, in tutti i gruppi di editor e ripristina tale stato se non viene trovato alcuno stato di visualizzazione editor specifico per il gruppo di editor.",
- "showEditorTabs": "Controlla se visualizzare o meno gli editor aperti in schede.",
+ "settings.showAISearchToggle": "Controlla se l'interruttore dei risultati della ricerca dell'intelligenza artificiale viene visualizzato nell'Editor impostazioni dopo aver eseguito una ricerca e quando sono disponibili i risultati della ricerca dell'intelligenza artificiale.",
+ "sharedViewState": "Mantiene lo stato di visualizzazione dell'editor più recente, ad esempio la posizione di scorrimento, in tutti i gruppi di editor e ripristina tale stato se non viene trovato alcuno stato di visualizzazione dell'editor specifico per il gruppo di editor.",
+ "showAskInChat": "Controlla se il riquadro comandi mostra l'opzione 'Chiedi nella chat' in fondo.",
+ "showEditorTabs": "Controlla se gli editor aperti devono essere visualizzati come singole schede, una singola scheda grande o se l'area del titolo non deve essere visualizzata.",
"showIcons": "Controlla se visualizzare o meno un'icona per gli editor aperti. Richiede l'abilitazione anche di un tema dell'icona di file.",
+ "showTabIndex": "Se questa opzione è abilitata, verrà mostrato l'indice delle schede. Questo valore viene ignorato quando {0} non è impostato su {1}.",
"sideBarLocation": "Controlla la posizione della barra laterale primaria e della barra attività. Possono essere visualizzate a sinistra o a destra dell'area di lavoro. La barra laterale secondaria verrà visualizzata sul lato opposto dell'area di lavoro.",
- "sideBySideDirection": "Controlla la direzione predefinita degli editor aperti affiancati, ad esempio da Esplora risorse. Per impostazione predefinita, gli editor verranno aperti sul lato destro di quello attualmente attivo. Se si modifica l'impostazione in `down`, gli editor verranno aperti sotto quello attualmente attivo.",
+ "sideBySideDirection": "Controlla la direzione predefinita degli editor aperti affiancati, ad esempio da Esplora risorse. Per impostazione predefinita, gli editor verranno aperti sul lato destro di quello attualmente attivo. Se si modifica l'impostazione in \"down\", gli editor verranno aperti sotto quello attualmente attivo. Questo parametro influisce anche sull'impostazione di divisione dell'editor nella barra degli strumenti dell'editor.",
"splitInGroupLayout": "Controlla il layout usato quando un editor viene diviso in un gruppo di editor in modo che sia verticale o orizzontale.",
"splitOnDragAndDrop": "Controlla se i gruppi di editor possono essere divisi da operazioni di trascinamento della selezione rilasciando un editor o un file sui bordi dell'area dell'editor.",
- "splitSizing": "Controlla il ridimensionamento dei gruppi di editor durante la divisione.",
+ "splitSizing": "Controlla le dimensioni dei gruppi di editor durante la divisione.",
"statusBarVisibility": "Controlla la visibilità della barra di stato nella parte inferiore del workbench.",
+ "suggestCommands": "Controllare se il riquadro comandi deve contenere un elenco di comandi usati di frequente.",
+ "swipeToNavigate": "Navigare tra i file aperti con uno scorrimento orizzontale a tre dita. Si noti che Preferenze di sistema > Trackpad > Altri movimenti deve essere impostato su 'Scorrimento con due o tre dita'.",
+ "tabActionLocation": "Controlla la posizione dei pulsanti di azione delle schede dell'editor (chiudi, rimuovi). Questo valore viene ignorato quando {0} non è impostato su {1}.",
"tabDescription": "Controlla il formato dell'etichetta per un editor.",
"tabScrollbarHeight": "Controlla l'altezza delle barre di scorrimento usate per le schede e le barre di navigazione nell'area del titolo dell'editor.",
- "tabSizing": "Controlla il dimensionamento delle schede dell'editor. Questo valore viene ignorato quando `#workbench.editor.showTabs#` è disabilitato.",
- "untitledHint": "Controlla se l'hint di testo senza titolo deve essere visibile nell'editor.",
+ "tabSizing": "Controlla le dimensioni delle schede dell'editor. Questo valore viene ignorato quando {0} non è impostato su {1}.",
+ "tips.enabled": "Quando questa opzione è abilitata, se non ci sono editor aperti, verranno visualizzati i suggerimenti filigrana.",
+ "titleScrollbarVisibility": "Controlla la visibilità delle barre di scorrimento usate per le schede e le barre di navigazione nell'area del titolo dell'editor.",
"untitledLabelFormat": "Controlla il formato dell'etichetta per un editor senza titolo.",
"useSplitJSON": "Controlla se usare l'editor JSON diviso quando si modificano impostazioni come JSON.",
"viewVisibility": "Controlla la visibilità delle azioni dell'intestazione della visualizzazione. Le azioni dell'intestazione della visualizzazione possono essere sempre visibili oppure visibili solo quando lo stato attivo è spostato sulla visualizzazione o si passa con il puntatore sulla visualizzazione.",
- "window.commandCenter": "Mostra l'avvio dei comandi con il titolo della finestra. Questa impostazione ha effetto solo quando {0} è impostato su {1}.",
+ "window.commandCenter": "È possibile mostrare lo strumento di avvio dei comandi insieme al titolo della finestra. Questa impostazione ha effetto solo quando{0} non è impostato su {1}.",
+ "window.commandCenterWeb": "È possibile mostrare lo strumento di avvio dei comandi insieme al titolo della finestra.",
"window.confirmBeforeClose.always": "Chiedi sempre conferma.",
"window.confirmBeforeClose.always.web": "Prova sempre a chiedere conferma. Si noti che i browser possono ancora decidere di chiudere una scheda o una finestra senza conferma.",
"window.confirmBeforeClose.keyboardOnly": "Richiedi conferma solo se è stato usato un tasto di scelta rapida.",
@@ -3811,7 +4857,8 @@
"window.confirmBeforeClose.never": "Non chiedere mai esplicitamente conferma.",
"window.confirmBeforeClose.never.web": "Non chiedere mai conferma in modo esplicito a meno che la perdita di dati non sia imminente.",
"window.menuBarVisibility.classic": "Il menu viene visualizzato nella parte superiore della finestra e nascosto solo nella modalità a schermo intero.",
- "window.menuBarVisibility.compact": "Il menu viene visualizzato come pulsante compatto nella barra laterale. Questo valore viene ignorato quando {0} è {1}.",
+ "window.menuBarVisibility.compact": "Il menu viene visualizzato come pulsante compatto sulla barra laterale. Questo valore viene ignorato quando {0} è {1} e {2} è {3} o {4}.",
+ "window.menuBarVisibility.compact.web": "Il menu viene visualizzato come pulsante compatto sulla barra laterale.",
"window.menuBarVisibility.hidden": "Il menu è sempre nascosto.",
"window.menuBarVisibility.toggle": "Il menu è nascosto ma può essere visualizzato nella parte superiore della finestra premendo ALT.",
"window.menuBarVisibility.toggle.mac": "Il menu è nascosto ma può essere visualizzato nella parte superiore della finestra eseguendo il comando `Sposta lo stato attivo sul menu dell'applicazione`.",
@@ -3824,11 +4871,29 @@
"window.openFoldersInNewWindow.off": "Le cartelle sostituiranno l'ultima finestra attiva.",
"window.openFoldersInNewWindow.on": "Le cartelle verranno aperte in una nuova finestra.",
"window.titleSeparator": "Separatore utilizzato da {0}.",
- "windowConfigurationTitle": "Finestra",
- "windowTitle": "Controlla il titolo della finestra in base all'editor attivo. Le variabili vengono sostituite in base al contesto:",
- "workbench.activityBar.iconClickBehavior.focus": "Sposta lo stato attivo sulla barra laterale se l'elemento selezionato è già visibile.",
- "workbench.activityBar.iconClickBehavior.toggle": "Nasconde la barra laterale se l'elemento selezionato è già visibile.",
+ "windowTitle": "Controlla il titolo della finestra in base al contesto corrente, ad esempio l'area di lavoro aperta o l'editor attivo. Le variabili vengono sostituite in base al contesto:",
+ "workbench.activityBar.iconClickBehavior.focus": "Sposta lo stato attivo sulla barra laterale primaria se l'elemento selezionato è già visibile.",
+ "workbench.activityBar.iconClickBehavior.toggle": "Nascondi la barra laterale primaria se l'elemento selezionato è già visibile.",
+ "workbench.activityBar.location.bottom": "Mostra la barra attività nella parte inferiore delle barre laterali primaria e secondaria.",
+ "workbench.activityBar.location.default": "Mostra la barra attività sul lato della barra laterale primaria e sulla parte superiore della barra laterale secondaria.",
+ "workbench.activityBar.location.hide": "Nasconde la barra attività nelle barre laterali primaria e secondaria.",
+ "workbench.activityBar.location.top": "Mostra la barra attività nella parte superiore delle barre laterali primaria e secondaria.",
+ "workbench.editor.doubleClickTabToToggleEditorGroupSizes.expand": "Il gruppo di editor occupa il maggior spazio possibile rendendo tutti gli altri gruppi di editor il più piccolo possibile.",
+ "workbench.editor.doubleClickTabToToggleEditorGroupSizes.maximize": "Tutti gli altri gruppi di editor sono nascosti e il gruppo di editor corrente è ingrandita per riprendere l'intera area degli editor.",
+ "workbench.editor.doubleClickTabToToggleEditorGroupSizes.off": "Nessun gruppo di editor viene ridimensionato quando si fa doppio clic su una scheda.",
+ "workbench.editor.editorActionsLocation.default": "Mostra le azioni dell'editor nella barra del titolo della finestra quando {0} è impostato su {1}. In caso contrario, le azioni dell'editor vengono visualizzate nella barra delle schede dell'editor.",
+ "workbench.editor.editorActionsLocation.hidden": "Le azioni dell'editor non sono visualizzate.",
+ "workbench.editor.editorActionsLocation.titleBar": "Mostra le azioni dell'editor nella barra del titolo della finestra. Se {0} è impostato su {1}, le azioni dell'editor vengono nascoste.",
+ "workbench.editor.empty.hint": "Controlla se il suggerimento testuale dell'editor di testo vuoto deve essere visibile nell'editor.",
"workbench.editor.historyBasedLanguageDetection": "Consente l'uso della cronologia dell'editor nel rilevamento della lingua. In questo modo il rilevamento automatico della lingua favorisce le lingue aperte di recente e consente il rilevamento automatico della lingua per funzionare con input più piccoli.",
+ "workbench.editor.label.dirname": "'${dirname}': nome della cartella in cui si trova il file, ad esempio 'WORKSPACE_FOLDER/folder/file.txt -> folder'.",
+ "workbench.editor.label.enabled": "Controlla se devono essere applicate le etichette dell'editor del workbench personalizzato.",
+ "workbench.editor.label.extname": "'${extname}': estensione di file, ad esempio 'WORKSPACE_FOLDER/folder/file.txt -> txt'.",
+ "workbench.editor.label.filename": "'${filename}': nome del file senza l'estensione file, ad esempio 'WORKSPACE_FOLDER/folder/file.txt -> file'.",
+ "workbench.editor.label.nthdirname": "'${dirname(N)}': nome della cartella padre in modalità ordinale in cui si trova il file, ad esempio 'N=2: WORKSPACE_FOLDER/static/folder/file.txt -> WORKSPACE_FOLDER'. È possibile selezionare le cartelle dall'inizio del percorso usando numeri negativi, ad esempio 'N=-1: WORKSPACE_FOLDER/cartella/file.txt -> WORKSPACE_FOLDER'. Se __Item__ è un percorso del modello assoluto, la prima cartella ('N=-1') fa riferimento alla prima cartella del percorso assoluto, in caso contrario corrisponde alla cartella dell'area di lavoro.",
+ "workbench.editor.label.nthextname": "'${extname(N)}': l'estensione n del file separata da '.' (ad esempio, 'N=2: WORKSPACE_FOLDER/folder/file.ext1.ext2.ext3 -> ext1'). È possibile selezionare l'estensione dall'inizio dell'estensione usando numeri negativi (ad esempio, 'N=-1: WORKSPACE_FOLDER/folder/file.ext1.ext2.ext3 -> ext2').",
+ "workbench.editor.label.patterns": "Controlla il rendering dell'etichetta dell'editor. Ogni __Item__ è un motivo che corrisponde a un percorso file. Sono supportati sia i percorsi di file relativi che assoluti. Il percorso relativo deve includere WORKSPACE_FOLDER, ad esempio 'WORKSPACE_FOLDER/src/**.tsx' o '*/src/**.tsx'. I criteri assoluti devono iniziare con '/'. Se più criteri corrispondono, verrà selezionato il percorso corrispondente più lungo. Ogni __Value__ è il modello per l'editor di cui è stato eseguito il rendering quando l' __Item__ corrisponde. Le variabili vengono sostituite in base al contesto:",
+ "workbench.editor.label.template": "Modello di cui eseguire il rendering quando il motivo corrisponde. Può includere le variabili ${dirname}, ${filename} e ${extname}.",
"workbench.editor.labelFormat.default": "Visualizza il nome del file. Quando le schede sono abilitate e due file presentano lo stesso nome in un unico gruppo, vengono aggiunte le sezioni distintive del percorso di ciascun file. Quando le schede sono disabilitate, viene visualizzato il percorso relativo alla cartella dell'area di lavoro se l'editor è attivo.",
"workbench.editor.labelFormat.long": "Visualizza il nome del file seguito dal relativo percorso assoluto.",
"workbench.editor.labelFormat.medium": "Visualizza il nome del file seguito dal percorso corrispondente relativo alla cartella dell'area di lavoro.",
@@ -3840,18 +4905,37 @@
"workbench.editor.pinnedTabSizing.compact": "Una scheda bloccata viene visualizzata in formato compatto che include solo l'icona o la prima lettera del nome dell'editor.",
"workbench.editor.pinnedTabSizing.normal": "Una scheda bloccata eredita l'aspetto delle schede non bloccate.",
"workbench.editor.pinnedTabSizing.shrink": "Una scheda bloccata viene ridotta in base a dimensioni compatte fisse che prevedono la visualizzazione di parti del nome dell'editor.",
+ "workbench.editor.pinnedTabsOnSeparateRow": "Se questa opzione è abilitata, visualizza le schede aggiunte in una riga separata sopra tutte le altre schede. Questo valore viene ignorato quando {0} non è impostato su {1}.",
"workbench.editor.preferBasedLanguageDetection": "Se questa opzione è abilitata, verrà data precedenza a un modello di rilevamento della lingua che tiene conto della cronologia dell'editor.",
+ "workbench.editor.preventPinnedEditorClose": "Controlla se gli editor aggiunti devono chiudersi quando si usa la tastiera o si fa clic con il pulsante centrale del mouse per la chiusura.",
+ "workbench.editor.preventPinnedEditorClose.always": "Impedisci sempre la chiusura dell'editor aggiunto quando si fa clic con il pulsante centrale del mouse o si usa la tastiera.",
+ "workbench.editor.preventPinnedEditorClose.never": "Non impedire mai la chiusura di un editor aggiunto.",
+ "workbench.editor.preventPinnedEditorClose.onlyKeyboard": "Impedisci la chiusura dell'editor aggiunto quando usi la tastiera.",
+ "workbench.editor.preventPinnedEditorClose.onlyMouse": "Impedisci la chiusura dell'editor aggiunto quando si fa clic con il pulsante centrale del mouse.",
"workbench.editor.showLanguageDetectionHints": "Se questa opzione è abilitata, mostra una correzione rapida della barra di stato quando la lingua dell'editor non corrisponde alla lingua del contenuto rilevata.",
"workbench.editor.showLanguageDetectionHints.editors": "Mostra negli editor di testo senza titolo",
"workbench.editor.showLanguageDetectionHints.notebook": "Mostra negli editor di notebook",
+ "workbench.editor.showTabs.multiple": "Ogni editor viene visualizzato come scheda nell'area del titolo dell'editor.",
+ "workbench.editor.showTabs.none": "L'area del titolo dell'editor non è visualizzata.",
+ "workbench.editor.showTabs.single": "L'editor attivo viene visualizzato come una singola scheda grande nell'area del titolo dell'editor.",
"workbench.editor.splitInGroupLayoutHorizontal": "Gli editor sono posizioni da sinistra verso destra.",
"workbench.editor.splitInGroupLayoutVertical": "Gli editor sono posizionati dall'alto verso il basso.",
+ "workbench.editor.splitSizingAuto": "Divide il gruppo di editor attivo in parti uguali, a meno che tutti i gruppi di editor non siano già divisi in parti uguali. In tal caso, suddivide tutti i gruppi di editor in parti uguali.",
"workbench.editor.splitSizingDistribute": "Divide tutti i gruppi di editor in parti uguali.",
"workbench.editor.splitSizingSplit": "Divide il gruppo di editor attivo in parti uguali.",
+ "workbench.editor.tabActionCloseVisibility": "Controlla la visibilità del pulsante di azione di chiusura della scheda.",
+ "workbench.editor.tabActionUnpinVisibility": "Controlla la visibilità del pulsante di azione di rimozione della scheda.",
+ "workbench.editor.tabHeight": "Controlla l'altezza delle schede dell'editor. Si applica anche alla barra di controllo del titolo quando {0} non è impostato su {1}.",
"workbench.editor.tabSizing.fit": "Adatta sempre le dimensioni delle schede in modo da visualizzare l'etichetta completa dell'editor.",
+ "workbench.editor.tabSizing.fixed": "Rendi tutte le schede della stessa dimensione, consentendo al tempo stesso di diminuire le dimensioni quando lo spazio disponibile non è sufficiente per visualizzare tutte le schede contemporaneamente.",
"workbench.editor.tabSizing.shrink": "Consente di ridurre le dimensioni delle schede quando lo spazio disponibile non è sufficiente per visualizzare tutte le schede contemporaneamente.",
+ "workbench.editor.tabSizingFixedMaxWidth": "Controlla la larghezza massima delle schede quando la dimensione {0}è impostata su {1}.",
+ "workbench.editor.tabSizingFixedMinWidth": "Controlla la larghezza massima delle schede quando la dimensione {0}è impostata su {1}.",
"workbench.editor.titleScrollbarSizing.default": "Dimensioni predefinite.",
"workbench.editor.titleScrollbarSizing.large": "Aumenta le dimensioni, in modo da facilitare la selezione con il mouse.",
+ "workbench.editor.titleScrollbarVisibility.auto": "La barra di scorrimento orizzontale sarà visibile solo quando necessario.",
+ "workbench.editor.titleScrollbarVisibility.hidden": "La barra di scorrimento orizzontale sarà sempre nascosta.",
+ "workbench.editor.titleScrollbarVisibility.visible": "La barra di scorrimento orizzontale sarà sempre visibile.",
"workbench.editor.untitled.labelFormat.content": "Il nome del file senza nome deriva dal contenuto della prima riga, a meno che ad esso non sia associato un percorso di file. Verrà usato il nome nel caso in cui la riga sia vuota o non contenga caratteri alfanumerici.",
"workbench.editor.untitled.labelFormat.name": "Il nome del file senza nome non deriva dal contenuto del file.",
"workbench.fontAliasing.antialiased": "Anti-aliasing dei caratteri a livello di pixel, invece che a livello di sub-pixel. Consente di visualizzare i caratteri più chiari.",
@@ -3860,39 +4944,54 @@
"workbench.fontAliasing.none": "Disabilita l'anti-aliasing dei caratteri. Il testo verrà visualizzato con contorni irregolari. ",
"workbench.hover.delay": "Controlla il ritardo in millisecondi dopo il quale viene visualizzato il testo al passaggio del mouse per gli elementi del workbench, ad esempio alcuni elementi della visualizzazione struttura ad albero forniti dall'estensione. Gli elementi già visibili potrebbero richiedere un aggiornamento prima di riflettere questa modifica dell'impostazione.",
"workbench.panel.opensMaximized.always": "Apri sempre il pannello a schermo intero.",
- "workbench.panel.opensMaximized.never": "Non aprire mai il pannello a schermo intero. Il pannello verrà aperto non a schermo intero.",
+ "workbench.panel.opensMaximized.never": "Non ingrandire mai il pannello quando lo apri.",
"workbench.panel.opensMaximized.preserve": "Apri il pannello nello stato in cui si trovava prima della chiusura.",
+ "workbench.panel.output": "Visualizzazione output",
"workbench.quickOpen.preserveInput": "Controlla se l'ultimo input digitato in Quick Open deve essere ripristinato alla riapertura successiva.",
"workbench.reduceMotion": "Controlla se il rendering del workbench deve essere eseguito con meno animazioni.",
"workbench.reduceMotion.auto": "Esegui il rendering con un movimento ridotto in base alla configurazione del sistema operativo.",
"workbench.reduceMotion.off": "Non eseguire il rendering con movimento ridotto",
"workbench.reduceMotion.on": "Esegui sempre il rendering con movimento ridotto.",
- "wrapTabs": "Controlla se il testo nelle schede deve essere suddiviso su più righe quando si supera lo spazio disponibile oppure se deve essere visualizzata una barra di scorrimento. Questo valore viene ignorato quando `workbench.editor.showTabs` è disabilitato.",
+ "workbench.secondarySideBar.defaultVisibility.hidden": "La barra laterale secondaria è nascosta per impostazione predefinita.",
+ "workbench.secondarySideBar.defaultVisibility.maximized": "La barra laterale secondaria viene visualizzata e ingrandita per impostazione predefinita.",
+ "workbench.secondarySideBar.defaultVisibility.maximizedInWorkspace": "La barra laterale secondaria viene visualizzata e ingrandita per impostazione predefinita se viene aperta un'area di lavoro.",
+ "workbench.secondarySideBar.defaultVisibility.visible": "La barra laterale secondaria è visibile per impostazione predefinita.",
+ "workbench.secondarySideBar.defaultVisibility.visibleInWorkspace": "La barra laterale secondaria è visibile per impostazione predefinita se viene aperta un'area di lavoro.",
+ "workbench.view.showQuietly": "Se un'estensione richiede di mostrare una visualizzazione nascosta, visualizzare un indicatore della barra di stato selezionabile.",
+ "wrapTabs": "Controlla se il testo nelle schede deve essere suddiviso su più righe quando si supera lo spazio disponibile oppure se deve essere visualizzata una barra di scorrimento. Questo valore viene ignorato quando {0} non è impostato su '{1}'.",
"zenMode.centerLayout": "Controlla se attivando la modalità Zen viene centrato anche il layout.",
"zenMode.fullScreen": "Consente di controllare se attivando la modalità Zen anche l'area di lavoro passa alla modalità schermo intero.",
"zenMode.hideActivityBar": "Controlla se attivando la modalità Zen viene nascosta anche la barra di stato a sinistra o a destra dell'area di lavoro.",
"zenMode.hideLineNumbers": "Controlla se attivando la modalità Zen vengono nascosti anche i numeri di riga dell'editor.",
"zenMode.hideStatusBar": "Controlla se attivando la modalità Zen viene nascosta anche la barra di stato nella parte inferiore del workbench.",
- "zenMode.hideTabs": "Controlla se attivando la modalità Zen vengono nascoste anche le schede del workbench.",
"zenMode.restore": "Controlla se una finestra deve essere ripristinata nella modalità Zen se è stata chiusa in questa modalità.",
- "zenMode.silentNotifications": "Controlla se le notifiche in modalità non disturbare devono essere abilitate in modalità zen. Se true, verranno mostrate solo le notifiche di errore.",
+ "zenMode.showTabs": "Controlla se l'attivazione della modalità Zen deve mostrare più schede dell'editor, una singola scheda editor o nascondere completamente l'area del titolo dell'editor.",
+ "zenMode.showTabs.multiple": "Ogni editor viene visualizzato come scheda nell'area del titolo dell'editor.",
+ "zenMode.showTabs.none": "L'area del titolo dell'editor non è visualizzata.",
+ "zenMode.showTabs.single": "L'editor attivo viene visualizzato come una singola scheda grande nell'area del titolo dell'editor.",
+ "zenMode.silentNotifications": "Controlla se le notifiche in modalità non disturbare devono essere abilitate in modalità Zen. Se true, verranno mostrate solo le notifiche di errore.",
"zenModeConfigurationTitle": "Modalità Zen"
},
- "vs/workbench/common/actions": {
- "developer": "Sviluppatore",
- "help": "Guida",
- "preferences": "Preferenze",
- "test": "Test",
- "view": "Visualizza"
- },
"vs/workbench/common/configuration": {
+ "active window": "Finestra attiva",
+ "applicationConfigurationTitle": "Applicazione",
+ "newWindowProfile": "Specifica il profilo da utilizzare all'apertura di una nuova finestra. Se viene specificato un nome di profilo, la nuova finestra userà tale profilo. Se non viene specificato alcun nome di profilo, la nuova finestra utilizzerà il profilo della finestra attiva o il profilo predefinito se non esiste alcuna finestra attiva.",
+ "problemsConfigurationTitle": "Problemi",
+ "security.allowedUNCHosts": "Set di nomi di host UNC (senza barra rovesciata iniziale o finale, ad esempio `192.168.0.1` o `my-server`) da consentire senza conferma dell'utente. Se si accede a un host UNC non consentito da questa impostazione o non riconosciuto dalla conferma dell'utente, si verificherà un errore e l'operazione verrà interrotta. Quando si modifica questa impostazione è necessario riavviare il sistema. Per altre informazioni su questa impostazione, vedere https://aka.ms/vscode-windows-unc.",
+ "security.allowedUNCHosts.patternErrorMessage": "I nomi host UNC non devono contenere barre rovesciate.",
+ "security.restrictUNCAccess": "Se l’opzione è abilitata, consente l'accesso solo ai nomi host UNC consentiti dall'impostazione `#security.allowedUNCHosts#` o dopo la conferma dell'utente. Per altre informazioni su questa impostazione, vedere https://aka.ms/vscode-windows-unc.",
+ "securityConfigurationTitle": "Sicurezza",
+ "windowConfigurationTitle": "Finestra",
"workbenchConfigurationTitle": "Workbench"
},
"vs/workbench/common/contextkeys": {
+ "SelectedEditorsInGroupFileOrUntitledResourceContextKey": "Indica se a tutti gli editor selezionati di un gruppo è associato un file o una risorsa senza titolo",
"activeAuxiliary": "Identificatore del pannello ausiliario attivo",
+ "activeCompareEditorCanSwap": "Indica se l'editor di confronto attivo può scambiare i lati",
"activeEditor": "Identificatore dell'editor attivo",
"activeEditorAvailableEditorIds": "Identificatori di editor disponibili utilizzabili per l'editor attivo",
"activeEditorCanRevert": "Indica se l'editor attivo può essere ripristinato",
+ "activeEditorCanToggleReadonly": "Indica se l'editor attivo può attivare/disattivare l'opzione di sola lettura o di scrittura",
"activeEditorGroupEmpty": "Indica se il gruppo di editor attivo è vuoto",
"activeEditorGroupIndex": "Indice del gruppo di editor attivo",
"activeEditorGroupLast": "Indica se il gruppo di editor attivo è l'ultimo gruppo",
@@ -3906,19 +5005,29 @@
"activePanel": "Identificatore del pannello attivo",
"activeViewlet": "Identificatore del viewlet attivo",
"auxiliaryBarFocus": "Indica se la barra ausiliaria ha lo stato attivo della tastiera",
+ "auxiliaryBarMaximized": "Indica se la barra ausiliaria è ingrandita",
"auxiliaryBarVisible": "Indica se la barra ausiliaria è visibile",
"bannerFocused": "Indica se il banner ha lo stato attivo della tastiera",
"dirtyWorkingCopies": "Indica se sono presenti copie di lavoro con modifiche non salvate",
- "editorAreaVisible": "Indica se l'area dell'editor è visibile",
"editorIsOpen": "Indica se un editor è aperto",
+ "editorPartEditorGroupMaximized": "La parte dell'editor ha un gruppo ingrandito",
+ "editorPartMultipleEditorGroups": "Indica se ci sono più gruppi di editor aperti in una parte dell'editor",
"editorTabsVisible": "Indica se le schede dell'editor sono visibili",
+ "embedderIdentifier": "Identificatore dell'incorporamento in base al servizio prodotto, se definito",
"focusedView": "Identificatore della visualizzazione che ha lo stato attivo della tastiera",
"groupEditorsCount": "Numero di gruppi di editor aperti",
+ "inAutomation": "Indica se VS Code è in esecuzione in un test di automazione/smoke test",
"inZenMode": "Indica se la modalità Zen è abilitata",
- "isCenteredLayout": "Indica se il layout centrato è abilitato",
+ "isAuxiliaryWindow": "La finestra è una finestra ausiliaria",
+ "isAuxiliaryWindowFocusedContext": "Indica se una finestra ausiliaria è evidenziata",
+ "isCompactTitleBar": "La barra del titolo è in modalità compatta",
"isFileSystemResource": "Indica se la risorsa è supportata da un provider di file system",
- "isFullscreen": "Indica se la finestra è visualizzata in modalità schermo intero",
+ "isFullscreen": "Indica se la finestra principale è visualizzata in modalità schermo intero",
+ "isMainEditorCenteredLayout": "Indica se il layout centrato è abilitato per l'editor principale",
+ "isWindowAlwaysOnTop": "Indica se la finestra è sempre in primo piano",
+ "mainEditorAreaVisible": "Indica se l'area dell'editor nella finestra principale è visibile",
"multipleEditorGroups": "Indica se ci sono più gruppi di editor aperti",
+ "multipleEditorsSelectedInGroup": "Indica se sono stati selezionati più editor in un gruppo di editor",
"notificationCenterVisible": "Indica se il centro notifiche è visibile",
"notificationFocus": "Indica se una notifica ha lo stato attivo della tastiera",
"notificationToastsVisible": "Indica se un avviso popup di notifica è visibile",
@@ -3941,14 +5050,20 @@
"sideBySideEditorActive": "Indica se un editor affiancato è attivo",
"splitEditorsVertically": "Indica se gli editor vengono divisi verticalmente",
"statusBarFocused": "Indica se la barra di stato ha lo stato attivo della tastiera",
+ "temporaryWorkspace": "Lo schema dell’area di lavoro attuale viene da un file system temporaneo.",
"textCompareEditorActive": "Indica se un editor di confronto testo è attivo",
"textCompareEditorVisible": "Indica se un editor di confronto testo è visibile",
- "virtualWorkspace": "Schema dell'area di lavoro corrente se è di un file system virtuale o una stringa vuota.",
+ "titleBarStyle": "Stile della barra del titolo della finestra",
+ "titleBarVisible": "Indica se la barra del titolo è visibile",
+ "twoEditorsSelectedInGroup": "Indica se sono stati selezionati esattamente due editor in un gruppo di editor",
+ "virtualWorkspace": "Lo schema dell'area di lavoro attuale proviene da un file system virtuale o da una stringa vuota.",
"workbenchState": "Tipo di area di lavoro aperta nella finestra, ovvero 'empty' (nessuna area di lavoro), 'folder' (cartella singola) oppure 'workspace' (area di lavoro con più radici)",
"workspaceFolderCount": "Numero di cartelle radice nell'area di lavoro"
},
"vs/workbench/common/editor": {
"builtinProviderDisplayName": "Predefinita",
+ "configureEditorLargeFileConfirmation": "Configura limite",
+ "openLargeFile": "Apri comunque",
"promptOpenWith.defaultEditor.displayName": "Editor di testo"
},
"vs/workbench/common/editor/diffEditorInput": {
@@ -3971,9 +5086,23 @@
"activityBarDragAndDropBorder": "Colore di feedback trascinamento della selezione per gli elementi della barra attività. La barra attività viene visualizzata all'estrema sinistra o all'estrema destra e consente di spostarsi tra le visualizzazioni della barra laterale.",
"activityBarForeground": "Colore primo piano dell'elemento della barra attività quando è attivo. La barra attività viene visualizzata all'estrema sinistra o all'estrema destra e consente di spostarsi tra le visualizzazioni della barra laterale.",
"activityBarInActiveForeground": "Colore primo piano dell'elemento della barra attività quando è inattivo. La barra attività viene visualizzata all'estrema sinistra o all'estrema destra e consente di spostarsi tra le visualizzazioni della barra laterale.",
+ "activityBarTop": "Colore primo piano attivo dell'elemento nella barra delle attività quando è in alto/basso. L'attività consente di passare da una visualizzazione all'altra della barra laterale.",
+ "activityBarTopActiveBackground": "Colore di sfondo dell'elemento attivo nella Barra attività quando è in alto o in basso. L'attività consente di passare da una visualizzazione all'altra della barra laterale.",
+ "activityBarTopActiveFocusBorder": "Colore del bordo dello stato attivo per l'elemento attivo nella Barra attività quando è in alto/basso. L'attività consente di passare da una visualizzazione all'altra della barra laterale.",
+ "activityBarTopBackground": "Colore di sfondo della barra attività quando è impostata su superiore/inferiore.",
+ "activityBarTopDragAndDropBorder": "Trascina e rilascia il colore del feedback per gli elementi nella barra attività quando è in alto/basso. L'attività consente di passare da una visualizzazione all'altra della barra laterale.",
+ "activityBarTopInActiveForeground": "Colore primo piano inattivo dell'elemento nella barra delle attività quando è in alto/basso. L'attività consente di passare da una visualizzazione all'altra della barra laterale.",
"banner.background": "Colore di sfondo del banner. Il banner viene visualizzato sotto la barra del titolo della finestra.",
"banner.foreground": "Colore primo piano del banner. Il banner viene visualizzato sotto la barra del titolo della finestra.",
"banner.iconForeground": "Colore dell'icona del banner. Il banner viene visualizzato sotto la barra del titolo della finestra.",
+ "commandCenter-activeBackground": "Colore di sfondo attivo del centro comandi",
+ "commandCenter-activeBorder": "Colore del bordo attivo del centro comandi",
+ "commandCenter-activeForeground": "Colore primo piano attivo del centro comandi",
+ "commandCenter-background": "Colore di sfondo del centro comandi",
+ "commandCenter-border": "Colore del bordo del centro comandi",
+ "commandCenter-foreground": "Colore primo piano del centro comandi",
+ "commandCenter-inactiveBorder": "Colore del bordo del centro comandi quando la finestra è inattiva",
+ "commandCenter-inactiveForeground": "Colore primo piano del centro comandi quando la finestra è inattiva",
"editorDragAndDropBackground": "Colore di sfondo quando si trascinano gli editor. Il colore dovrebbe avere una trasparenza impostata in modo che il contenuto dell'editor sia ancora visibile.",
"editorDropIntoPromptBackground": "Colore di sfondo del testo visualizzato sugli editor durante il trascinamento dei file. Questo testo informa l'utente che può tenere premuto MAIUSC per passare all'editor.",
"editorDropIntoPromptBorder": "Colore del bordo del testo visualizzato sugli editor durante il trascinamento dei file. Questo testo informa l'utente che può tenere premuto MAIUSC per passare all'editor.",
@@ -3981,7 +5110,7 @@
"editorGroupBorder": "Colore per separare più gruppi di editor l'uno dall'altro. I gruppi di editor sono i contenitori degli editor.",
"editorGroupEmptyBackground": "Colore di sfondo di un gruppo di editor vuoto. I gruppi di editor sono contenitori di editor.",
"editorGroupFocusedEmptyBorder": "Colore del bordo di un gruppo di editor vuoto con stato attivo. I gruppi di editor sono contenitori di editor.",
- "editorGroupHeaderBackground": "Colore di sfondo dell'intestazione del titolo dell'editor quando le schede sono disabilitate (`\"workbench.editor.showTabs\": false`). I gruppi di editor sono contenitori di editor.",
+ "editorGroupHeaderBackground": "Colore di sfondo dell'intestazione del titolo dell'editor quando `\"workbench.editor.showTabs\": “singolo”. I gruppi di editor sono contenitori di editor.",
"editorPaneBackground": "Colore di sfondo del riquadro degli editor visibile a sinistra e a destra del layout editor centrato.",
"editorTitleContainerBorder": "Colore del bordo dell'intestazione del titolo di gruppo di editor. I gruppi di editor sono i contenitori degli editor.",
"extensionBadge.remoteBackground": "Colore di sfondo per la notifica di remoto nella visualizzazione delle estensioni.",
@@ -4001,6 +5130,8 @@
"notificationsInfoIconForeground": "Colore usato per l'icona delle notifiche di informazioni. Le notifiche scorrono dalla parte inferiore destra della finestra.",
"notificationsLink": "Colore primo piano dei collegamenti delle notifiche. Le notifiche scorrono dalla parte inferiore destra della finestra.",
"notificationsWarningIconForeground": "Colore usato per l'icona delle notifiche di avviso. Le notifiche scorrono dalla parte inferiore destra della finestra.",
+ "outputViewBackground": "Colore di sfondo della visualizzazione output.",
+ "outputViewStickyScrollBackground": "Colore di sfondo dello scorrimento permanente della visualizzazione output.",
"panelActiveTitleBorder": "Colore del bordo per il titolo del pannello attivo. I pannelli sono visualizzati sotto l'area degli editor e contengono visualizzazioni quali quella di output e quella del terminale integrato.",
"panelActiveTitleForeground": "Colore del titolo del pannello attivo. I pannelli sono visualizzati sotto l'area degli editor e contengono visualizzazioni quali quella di output e quella del terminale integrato.",
"panelBackground": "Colore di sfondo dei pannelli. I pannelli sono visualizzati sotto l'area degli editor e contengono visualizzazioni quali quella di output e del terminale integrato.",
@@ -4013,6 +5144,15 @@
"panelSectionHeaderBackground": "Colore di sfondo dell'intestazione delle sezioni dei pannelli. I pannelli sono visualizzati sotto l'area degli editor e contengono visualizzazioni quali quella di output e del terminale integrato. Le sezioni dei pannelli sono visualizzazioni annidate nei pannelli.",
"panelSectionHeaderBorder": "Colore del bordo dell'intestazione delle sezioni dei pannelli usato quando più visualizzazioni sono distribuite con spaziatura verticale nel pannello. I pannelli sono visualizzati sotto l'area degli editor e contengono visualizzazioni quali quella di output e del terminale integrato. Le sezioni dei pannelli sono visualizzazioni annidate nei pannelli.",
"panelSectionHeaderForeground": "Colore primo piano dell'intestazione delle sezioni dei pannelli. I pannelli sono visualizzati sotto l'area degli editor e contengono visualizzazioni quali quella di output e del terminale integrato. Le sezioni dei pannelli sono visualizzazioni annidate nei pannelli.",
+ "panelStickyScrollBackground": "Colore di sfondo della barra di scorrimento permanente nel riquadro.",
+ "panelStickyScrollBorder": "Colore del bordo della barra di scorrimento permanente nel riquadro.",
+ "panelStickyScrollShadow": "Colore ombreggiatura della barra di scorrimento permanente nel riquadro.",
+ "panelTitleBadgeBackground": "Colore di sfondo del badge del titolo del pannello. I pannelli sono visualizzati sotto l'area degli editor e contengono visualizzazioni come output e terminale integrato.",
+ "panelTitleBadgeForeground": "Colore primo piano del badge del titolo del pannello. I pannelli sono visualizzati sotto l'area degli editor e contengono visualizzazioni come output e terminale integrato.",
+ "panelTitleBorder": "Colore del bordo del titolo del pannello nella parte inferiore, separando il titolo dalle visualizzazioni. I pannelli sono visualizzati sotto l'area degli editor e contengono visualizzazioni come output e terminale integrato.",
+ "profileBadgeBackground": "Colore di sfondo della notifica del profilo. La notifica del profilo viene visualizzata sopra l'icona dell'ingranaggio delle impostazioni nella barra attività.",
+ "profileBadgeForeground": "Colore primo piano del badge del profilo. La notifica del profilo viene visualizzata sopra l'icona dell'ingranaggio delle impostazioni nella barra attività.",
+ "sideBarActivityBarTopBorder": "Colore del bordo tra la barra attività in alto/in basso e le viste.",
"sideBarBackground": "Colore di sfondo della barra laterale. La barra laterale è il contenitore di visualizzazioni quali Esplora risorse e Cerca.",
"sideBarBorder": "Colore del bordo della barra laterale che la separa all'editor. La barra laterale è il contenitore per visualizzazioni come Esplora risorse e Cerca.",
"sideBarDragAndDropBackground": "Colore di feedback trascinamento della selezione per le sezioni della barra laterale. Il colore dovrebbe avere una trasparenza impostata in modo che le sezioni della barra laterale siano ancora visibili. La barra laterale è il contenitore di visualizzazioni come Esplora risorse e Cerca. Le sezioni della barra laterale sono visualizzazioni annidate nella barra laterale.",
@@ -4020,6 +5160,11 @@
"sideBarSectionHeaderBackground": "Colore di sfondo dell'intestazione di sezione della barra laterale. La barra laterale è il contenitore di visualizzazioni quali Esplora risorse e Cerca. Le sezioni della barra laterale sono visualizzazioni annidate nella barra laterale.",
"sideBarSectionHeaderBorder": "Colore del bordo dell'intestazione di sezione della barra laterale. La barra laterale è il contenitore di visualizzazioni quali Esplora risorse e Cerca. Le sezioni della barra laterale sono visualizzazioni annidate nella barra laterale.",
"sideBarSectionHeaderForeground": "Colore primo piano dell'intestazione di sezione della barra laterale. La barra laterale è il contenitore di visualizzazioni come Esplora risorse e Cerca. Le sezioni della barra laterale sono visualizzazioni annidate nella barra laterale.",
+ "sideBarStickyScrollBackground": "Colore di sfondo della barra di scorrimento permanente nella barra laterale.",
+ "sideBarStickyScrollBorder": "Colore del bordo della barra di scorrimento permanente nella barra laterale.",
+ "sideBarStickyScrollShadow": "Colore dell'ombreggiatura della barra di scorrimento permanente nella barra laterale.",
+ "sideBarTitleBackground": "Colore di sfondo del titolo della barra laterale. La barra laterale è il contenitore di visualizzazioni quali Esplora risorse e Cerca.",
+ "sideBarTitleBorder": "Colore del bordo del titolo della barra laterale nella parte inferiore, separando il titolo dalle visualizzazioni. La barra laterale è il contenitore di visualizzazioni come Esplora risorse e Cerca.",
"sideBarTitleForeground": "Colore primo piano del titolo della barra laterale. La barra laterale è il contenitore di visualizzazioni quali Esplora risorse e Cerca.",
"sideBySideEditor.horizontalBorder": "Colore per separare due editor tra loro quando vengono visualizzati affiancati in un gruppo di editor dall’alto in basso.",
"sideBySideEditor.verticalBorder": "Colore per separare due editor tra loro quando vengono visualizzati affiancati in un gruppo di editor da sinistra a destra.",
@@ -4027,22 +5172,34 @@
"statusBarBorder": "Colore del bordo della barra di stato che la separa dalla sidebar e dall'editor. La barra di stato è visualizzata nella parte inferiore della finestra.",
"statusBarErrorItemBackground": "Colore di sfondo degli elementi di errore della barra di stato. Gli elementi di errore spiccano rispetto ad altre voci della barra di stato per indicare condizioni di errore. La barra di stato è visualizzata nella parte inferiore della finestra.",
"statusBarErrorItemForeground": "Colore primo piano degli elementi di errore della barra di stato. Gli elementi di errore spiccano rispetto ad altre voci della barra di stato per indicare condizioni di errore. La barra di stato è visualizzata nella parte inferiore della finestra.",
+ "statusBarErrorItemHoverBackground": "Colore di sfondo degli elementi di errore della barra di stato al passaggio del mouse. Gli elementi di errore spiccano rispetto ad altre voci della barra di stato per indicare condizioni di errore. La barra di stato è visualizzata nella parte inferiore della finestra.",
+ "statusBarErrorItemHoverForeground": "Colore primo piano degli elementi di errore della barra di stato al passaggio del mouse. Gli elementi di errore spiccano rispetto ad altre voci della barra di stato per indicare condizioni di errore. La barra di stato è visualizzata nella parte inferiore della finestra.",
"statusBarFocusBorder": "Colore del bordo della barra di stato quando lo stato attivo è lo spostamento tramite tastiera. La barra di stato viene visualizzata nella parte inferiore della finestra.",
"statusBarForeground": "Colore primo piano quando viene aperta un'area di lavoro o una cartella. La barra di stato è visualizzata nella parte inferiore della finestra.",
"statusBarItemActiveBackground": "Colore di sfondo degli elementi della barra di stato quando si fa clic. La barra di stato è visualizzata nella parte inferiore della finestra.",
"statusBarItemCompactHoverBackground": "Colore di sfondo dell'elemento della barra di stato quando si passa il mouse su un elemento che contiene due elementi al passaggio del mouse. La barra di stato viene visualizzata nella parte inferiore della finestra.",
"statusBarItemFocusBorder": "Colore del bordo dell'elemento della barra di stato quando lo stato attivo è lo spostamento tramite tastiera. La barra di stato viene visualizzata nella parte inferiore della finestra.",
- "statusBarItemHostBackground": "Colore di sfondo per l'indicatore di remoto sulla barra di stato.",
- "statusBarItemHostForeground": "Colore primo piano per l'indicatore di remoto sulla barra di stato.",
"statusBarItemHoverBackground": "Colore di sfondo degli elementi della barra di stato al passaggio del mouse. La barra di stato è visualizzata nella parte inferiore della finestra.",
+ "statusBarItemHoverForeground": "Colore primo piano dell'elemento della barra di stato al passaggio del mouse. La barra di stato è visualizzata nella parte inferiore della finestra.",
+ "statusBarItemOfflineBackground": "Colore di sfondo dell'elemento della barra di stato quando l'area di lavoro è offline.",
+ "statusBarItemOfflineForeground": "Colore primo piano dell'elemento della barra di stato quando l'area di lavoro è offline.",
+ "statusBarItemRemoteBackground": "Colore di sfondo per l'indicatore di remoto sulla barra di stato.",
+ "statusBarItemRemoteForeground": "Colore primo piano per l'indicatore di remoto sulla barra di stato.",
"statusBarNoFolderBackground": "Colore di sfondo della barra di stato quando non ci sono cartelle aperte. La barra di stato è visualizzata nella parte inferiore della finestra.",
"statusBarNoFolderBorder": "Colore del bordo della barra di stato che la separa dalla barra laterale e dall'editor quando non ci sono cartelle aperte. La barra di stato è visualizzata nella parte inferiore della finestra.",
"statusBarNoFolderForeground": "Colore primo piano quando non ci sono cartelle aperte. La barra di stato è visualizzata nella parte inferiore della finestra.",
- "statusBarProminentItemBackground": "Colore di sfondo degli elementi rilevanti della barra di stato. Gli elementi rilevanti spiccano rispetto ad altre voci della barra di stato. Per vedere un esempio, cambiare la modalità `Toggle Tab Key Moves Focus` nella barra dei comandi. La barra di stato è visualizzata nella parte inferiore della finestra.",
- "statusBarProminentItemForeground": "Colore primo piano degli elementi rilevanti della barra di stato. Gli elementi rilevanti spiccano rispetto ad altre voci della barra di stato. Per vedere un esempio, cambiare la modalità `Attiva/Disattiva l'uso di TAB per spostare lo stato attivo` nel riquadro comandi. La barra di stato è visualizzata nella parte inferiore della finestra.",
- "statusBarProminentItemHoverBackground": "Colore di sfondo degli elementi rilevanti della barra di stato al passaggio del mouse. Gli elementi rilevanti spiccano rispetto ad altre voci della barra di stato. Per vedere un esempio, cambiare la modalità `Toggle Tab Key Moves Focus` nella barra dei comandi. La barra di stato è visualizzata nella parte inferiore della finestra.",
+ "statusBarOfflineItemHoverBackground": "Colore al passaggio del mouse sullo sfondo dell'elemento della barra di stato quando workbench è offline.",
+ "statusBarOfflineItemHoverForeground": "Colore primo piano al passaggio del mouse dell'elemento della barra di stato quando l'area di lavoro è offline.",
+ "statusBarProminentItemBackground": "Colore di sfondo degli elementi rilevanti della barra di stato. Gli elementi rilevanti spiccano rispetto ad altre voci della barra di stato. La barra di stato è visualizzata nella parte inferiore della finestra.",
+ "statusBarProminentItemForeground": "Colore primo piano degli elementi rilevanti della barra di stato. Gli elementi rilevanti spiccano rispetto ad altre voci della barra di stato. La barra di stato è visualizzata nella parte inferiore della finestra.",
+ "statusBarProminentItemHoverBackground": "Colore di sfondo degli elementi rilevanti della barra di stato al passaggio del mouse. Gli elementi rilevanti spiccano rispetto ad altre voci della barra di stato. La barra di stato è visualizzata nella parte inferiore della finestra.",
+ "statusBarProminentItemHoverForeground": "Colore primo piano degli elementi rilevanti della barra di stato al passaggio del mouse. Gli elementi rilevanti spiccano rispetto ad altre voci della barra di stato. La barra di stato è visualizzata nella parte inferiore della finestra.",
+ "statusBarRemoteItemHoverBackground": "Colore di sfondo per l'indicatore di remoto sulla barra di stato al passaggio del mouse.",
+ "statusBarRemoteItemHoverForeground": "Colore primo piano per l'indicatore di remoto sulla barra di stato al passaggio del mouse.",
"statusBarWarningItemBackground": "Colore di sfondo degli elementi di avviso della barra di stato. Gli elementi di avviso spiccano rispetto ad altre voci della barra di stato per indicare condizioni di avviso. La barra di stato è visualizzata nella parte inferiore della finestra.",
"statusBarWarningItemForeground": "Colore primo piano degli elementi di avviso della barra di stato. Gli elementi di avviso spiccano rispetto ad altre voci della barra di stato per indicare condizioni di avviso. La barra di stato è visualizzata nella parte inferiore della finestra.",
+ "statusBarWarningItemHoverBackground": "Colore di sfondo degli elementi di avviso della barra di stato al passaggio del mouse. Gli elementi di avviso spiccano rispetto ad altre voci della barra di stato per indicare condizioni di avviso. La barra di stato è visualizzata nella parte inferiore della finestra.",
+ "statusBarWarningItemHoverForeground": "Colore primo piano degli elementi di avviso della barra di stato al passaggio del mouse. Gli elementi di avviso spiccano rispetto ad altre voci della barra di stato per indicare condizioni di avviso. La barra di stato è visualizzata nella parte inferiore della finestra.",
"tabActiveBackground": "Colore di sfondo delle schede attive. Le schede sono i contenitori degli editor nell'area degli editor. È possibile aprire più schede in un gruppo di editor e possono esistere più gruppi di editor.",
"tabActiveBorder": "Bordo nella parte inferiore di una scheda attiva. Le schede sono i contenitori degli editor nell'area degli editor. È possibile aprire più schede in un gruppo di editor e possono esistere più gruppi di editor.",
"tabActiveBorderTop": "Bordo nella parte superiore di una scheda attiva. Le schede sono i contenitori degli editor nell'area degli editor. È possibile aprire più schede in un gruppo di editor e possono esistere più gruppi di editor.",
@@ -4051,12 +5208,16 @@
"tabActiveUnfocusedBorder": "Bordo nella parte inferiore di una scheda attiva in un gruppo con stato non attivo. Le schede sono i contenitori degli editor nell'area degli editor. È possibile aprire più schede in un gruppo di editor e possono esistere più gruppi di editor.",
"tabActiveUnfocusedBorderTop": "Bordo nella parte superiore di una scheda attiva in un gruppo con stato non attivo. Le schede sono i contenitori degli editor nell'area degli editor. È possibile aprire più schede in un gruppo di editor e possono esistere più gruppi di editor.",
"tabBorder": "Bordo per separare le schede l'una dall'altra. Le schede sono i contenitori degli editor nell'area degli editor. È possibile aprire più schede in un gruppo di editor e possono esistere più gruppi di editor.",
+ "tabDragAndDropBorder": "Bordo tra le schede per indicare che è possibile inserire una scheda tra due schede. Le schede sono i contenitori per gli editor nell'area degli editor. È possibile aprire più schede in un gruppo di editor. Possono esistere più gruppi di editor.",
"tabHoverBackground": "Colore di sfondo al passaggio del mouse sulle schede. Le schede sono i contenitori degli editor nell'area degli editor. È possibile aprire più schede in un gruppo di editor e possono esistere più gruppi di editor.",
"tabHoverBorder": "Bordo da utilizzare per evidenziare la scheda al passaggio del mouse. Le schede sono i contenitori degli editor nell'area degli editor. È possibile aprire più schede in un gruppo di editor e possono esistere più gruppi di editor.",
"tabHoverForeground": "Colore primo piano delle schede al passaggio del mouse. Le schede sono i contenitori degli editor nell'area degli editor. È possibile aprire più schede in un gruppo di editor e possono esistere più gruppi di editor.",
"tabInactiveBackground": "Colore di sfondo delle schede inattive. Le schede sono i contenitori degli editor nell'area degli editor. È possibile aprire più schede in un gruppo di editor e possono esistere più gruppi di editor.",
"tabInactiveForeground": "Colore di primo piano delle schede inattive in un gruppo attivo. Le schede sono i contenitori degli editor nell'area degli editor. È possibile aprire più schede in un gruppo di editor e possono esistere più gruppi di editor.",
"tabInactiveModifiedBorder": "Bordo nella parte superiore delle schede modificate inattive in un gruppo attivo. Le schede sono i contenitori degli editor nell'area degli editor. È possibile aprire più schede in un gruppo di editor e possono esistere più gruppi di editor.",
+ "tabSelectedBackground": "Sfondo di una scheda selezionata. Le schede sono i contenitori per gli editor nell'area degli editor. È possibile aprire più schede in un gruppo di editor. Possono esistere più gruppi di editor.",
+ "tabSelectedBorderTop": "Bordo nella parte superiore di una scheda selezionata. Le schede sono i contenitori per gli editor nell'area degli editor. È possibile aprire più schede in un gruppo di editor. Possono esistere più gruppi di editor.",
+ "tabSelectedForeground": "Primo piano di una scheda selezionata. Le schede sono i contenitori per gli editor nell'area degli editor. È possibile aprire più schede in un gruppo di editor. Possono esistere più gruppi di editor.",
"tabUnfocusedActiveBackground": "Colore di sfondo delle schede attive in un gruppo con stato non attivo. Le schede sono i contenitori degli editor nell'area degli editor. È possibile aprire più schede in un gruppo di editor e possono esistere più gruppi di editor.",
"tabUnfocusedActiveForeground": "Colore primo piano delle schede attive in un gruppo con stato non attivo. Le schede sono i contenitori degli editor nell'area degli editor. È possibile aprire più schede in un gruppo di editor e possono esistere più gruppi di editor.",
"tabUnfocusedHoverBackground": "Colore di sfondo al passaggio del mouse sulle schede in un gruppo non attivo. Le schede sono i contenitori degli editor nell'area degli editor. È possibile aprire più schede in un gruppo di editor e possono esistere più gruppi di editor.",
@@ -4073,30 +5234,41 @@
"titleBarInactiveForeground": "Primo piano della barra del titolo quando la finestra è inattiva.",
"unfocusedActiveModifiedBorder": "Bordo nella parte superiore delle schede attive modificate in un gruppo con stato non attivo. Le schede sono i contenitori degli editor nell'area degli editor. È possibile aprire più schede in un gruppo di editor e possono esistere più gruppi di editor.",
"unfocusedINactiveModifiedBorder": "Bordo nella parte superiore delle schede inattive modificate in un gruppo con stato non attivo. Le schede sono i contenitori degli editor nell'area degli editor. È possibile aprire più schede in un gruppo di editor e possono esistere più gruppi di editor.",
- "windowActiveBorder": "Colore usato per il bordo della finestra quando è attiva. Supportato solo nel client desktop quando si usa la barra del titolo personalizzata.",
- "windowInactiveBorder": "Colore usato per il bordo della finestra quando è inattiva. Supportato solo nel client desktop quando si usa la barra del titolo personalizzata."
+ "windowActiveBorder": "Colore usato per il bordo della finestra quando è attiva in macOS o Linux. Richiede uno stile personalizzato per la barra del titolo e controlli finestra personalizzati o nascosti in Linux.",
+ "windowInactiveBorder": "Colore usato per il bordo della finestra quando è inattiva in macOS o Linux. Richiede uno stile personalizzato per la barra del titolo e controlli finestra personalizzati o nascosti in Linux."
},
"vs/workbench/common/views": {
"defaultViewIcon": "Icona della visualizzazione predefinita.",
- "duplicateId": "Una visualizzazione con ID '{0}' è già registrata"
+ "duplicateId": "Una visualizzazione con ID '{0}' è già registrata",
+ "treeView.notRegistered": "Non è stata registrata alcuna visualizzazione struttura ad albero con ID '{0}'.",
+ "views log": "Visualizzazioni"
},
- "vs/workbench/electron-sandbox/actions/developerActions": {
+ "vs/workbench/electron-browser/actions/developerActions": {
"configureRuntimeArguments": "Configura argomenti del runtime",
"reloadWindowWithExtensionsDisabled": "Ricarica con le estensioni disabilitate",
- "toggleDevTools": "Attiva/Disattiva strumenti di sviluppo",
- "toggleSharedProcess": "Attiva/Disattiva processo condiviso"
- },
- "vs/workbench/electron-sandbox/actions/installActions": {
+ "revealUserDataFolder": "Scopri cartella dati utente",
+ "showGPUInfo": "Mostra info GPU",
+ "stopTracing": "Interrompi traccia",
+ "stopTracing.button": "&&Riavvia e abilita traccia",
+ "stopTracing.detail": "Il completamento può richiedere fino a un minuto.",
+ "stopTracing.message": "La traccia deve essere avviata con un argomento '--trace'",
+ "stopTracing.title": "Creazione del file di traccia in corso...",
+ "toggleDevTools": "Attiva/Disattiva strumenti di sviluppo"
+ },
+ "vs/workbench/electron-browser/actions/installActions": {
"install": "Installa il comando '{0}' in PATH",
- "shellCommand": "Comando della shell",
+ "shellCommand": "Comando shell",
"successFrom": "Il comando della shell '{0}' è stato disinstallato da PATH.",
"successIn": "Il comando della shell '{0}' è stato installato in PATH.",
"uninstall": "Disinstalla il comando '{0}' da PATH"
},
- "vs/workbench/electron-sandbox/actions/windowActions": {
+ "vs/workbench/electron-browser/actions/windowActions": {
"close": "Chiudi finestra",
+ "closeActive": "Chiudi finestra attiva",
"closeWindow": "Chiudi finestra",
"current": "Finestra corrente",
+ "disableWindowAlwaysOnTop": "Disattiva Sempre in primo piano",
+ "enableWindowAlwaysOnTop": "Attiva Sempre in primo piano",
"miCloseWindow": "Chiudi &&finestra",
"miZoomIn": "&&Zoom avanti",
"miZoomOut": "&&Zoom indietro",
@@ -4104,24 +5276,35 @@
"quickSwitchWindow": "Cambio rapido finestra...",
"switchWindow": "Cambia finestra...",
"switchWindowPlaceHolder": "Selezionare una finestra a cui passare",
+ "toggleWindowAlwaysOnTop": "Attiva/Disattiva finestra sempre in primo piano",
"windowDirtyAriaLabel": "{0}, finestra con modifiche non salvate",
+ "windowGroup": "gruppo di finestre",
"zoomIn": "Zoom avanti",
"zoomOut": "Zoom indietro",
"zoomReset": "Reimposta zoom"
},
- "vs/workbench/electron-sandbox/desktop.contribution": {
+ "vs/workbench/electron-browser/desktop.contribution": {
+ "application.shellEnvironmentResolutionTimeout": "Controllare il timeout in secondi prima di non risolvere l'ambiente della shell quando l'applicazione non è già avviata da un terminale. Per altre informazioni, vedere la [documentation](https://go.microsoft.com/fwlink/?linkid=2149667).",
"argv.crashReporterId": "ID univoco usato per correlare i report di arresto anomalo del sistema inviati da questa istanza dell'app.",
+ "argv.disableChromiumSandbox": "Disabilita il sandbox di Chromium. Ciò è utile quando si esegue VS Code con privilegi elevati in Linux e in esecuzione in Applocker in Windows.",
"argv.disableHardwareAcceleration": "Disabilita l'accelerazione hardware. Modificare questa opzione SOLO in caso di problemi di grafica.",
+ "argv.disableLcdText": "Disabilita l'anti-aliasing dei tipi di carattere LCD.",
"argv.enableCrashReporter": "Consente di disabilitare la segnalazione degli arresti anomali del sistema. Se si modifica il valore, è necessario riavviare l'app.",
+ "argv.enableRDPDisplayTracking": "Assicura che le finestre ingrandite vengano ripristinate per una corretta visualizzazione durante la riconnessione di RDP.",
"argv.enebleProposedApi": "Abilita le API proposte per un elenco di ID estensione, ad esempio `vscode.git`. Le API proposte sono instabili e soggette a interruzione senza preavviso in qualsiasi momento. Questa impostazione deve essere impostata solo per lo sviluppo e il test di estensioni.",
"argv.force-renderer-accessibility": "Forza il renderer ad essere accessibile. Modificarlo SOLO se si usa un'utilità per la lettura dello schermo in Linux. Su altre piattaforme il renderer sarà accessibile automaticamente. Questo flag viene impostato automaticamente se editor.accessibilitySupport è impostato su on.",
"argv.forceColorProfile": "Consente di eseguire l'override del profilo colori da usare. Se i colori non vengono visualizzati correttamente, provare a impostare questo valore su `srgb` e riavviare.",
"argv.locale": "Lingua di visualizzazione da usare. Per selezionare una lingua diversa, è necessario installare il Language Pack associato.",
- "argv.logLevel": "Livello di registrazione da usare. Il valore predefinito è 'info'. I valori consentiti sono 'critical, 'error', 'warn', 'info', 'debug', 'trace', 'off'.",
+ "argv.logLevel": "Livello di registrazione da usare. Livello predefinito: 'info'. Valori consentiti: 'error', 'warn', 'info', 'debug', 'trace', 'off'.",
+ "argv.passwordStore": "Configura il back-end usato per archiviare i segreti in Linux. Questo argomento viene ignorato in Windows > macOS.",
+ "argv.proxyBypassList": "Ignora qualsiasi proxy specificato per l'elenco di host delimitato da punto e virgola specificato. Valore di esempio \";*.microsoft.com;*foo.com;1.2.3.4:5678\", userà il server proxy per tutti gli host ad eccezione degli indirizzi locali (localhost, 127.0.0.1 e così via), microsoft.com subdomains, host che contengono il suffisso foo.com e qualsiasi altro elemento in 1.2.3.4:5678",
+ "argv.remoteDebuggingPort": "Specifica la porta da usare per il debug remoto.",
+ "argv.useInMemorySecretStorage": "Assicura che venga usato un archivio in memoria per l'archiviazione dei segreti invece di usare l'archivio credenziali del sistema operativo. Viene spesso usato quando si eseguono VS Code test dell'estensione o quando si verificano problemi con il Credential Store.",
"closeWhenEmpty": "Controlla se con la chiusura dell'ultimo editor deve essere chiusa anche la finestra. Questa impostazione viene applicata solo alle finestre che non contengono cartelle.",
- "dialogStyle": "Consente di modificare l'aspetto delle finestre di dialogo.",
+ "confirmSaveUntitledWorkspace": "Controlla se viene visualizzata una finestra di dialogo di conferma che chiede di salvare o rimuovere un'area di lavoro senza titolo aperta nella finestra quando si passa a un'altra area di lavoro. Disattivando la finestra di dialogo di conferma, l'area di lavoro senza titolo verrà sempre rimossa.",
+ "controlsStyle": "Modificare l'aspetto dei controlli finestra in modo che siano nativi del sistema operativo, personalizzati o nascosti. Per applicare le modifiche, è necessario un riavvio completo.",
+ "dialogStyle": "Regola l'aspetto delle finestre di dialogo in modo che risultino native del sistema operativo o personalizzate.",
"enableCrashReporterDeprecated": "Se questa impostazione è false, non verranno inviati dati di telemetria indipendentemente dal valore della nuova impostazione. Deprecata perché combinata nell'impostazione {0}.",
- "experimentalUseSandbox": "Sperimentale: se abilitata, la finestra avrà la modalità sandbox abilitata tramite l'API Electron.",
"keyboardConfigurationTitle": "Tastiera",
"mergeAllWindowTabs": "Unisci tutte le finestre",
"miExit": "E&&sci",
@@ -4130,19 +5313,39 @@
"newWindowDimensions": "Controlla le dimensioni relative all'apertura di una nuova finestra quando almeno un'altra finestra è già aperta. Si noti che questa impostazione non influisce sulla prima finestra aperta. La prima finestra si riaprirà sempre con le dimensioni e la posizione che aveva prima della chiusura.",
"openWithoutArgumentsInNewWindow": "Controlla se deve essere aperta una nuova finestra vuota quando si avvia una seconda istanza senza argomento o se è necessario impostare lo stato attivo sull'ultima istanza in esecuzione.\r\nTenere presente che in alcuni casi questa impostazione viene ignorata, ad esempio quando si usa l'opzione della riga di comando `--new-window` o `--reuse-window`.",
"restoreFullscreen": "Controlla se una finestra deve essere ripristinata a schermo intero se è stata chiusa in questa modalità.",
- "restoreWindows": "Controlla la modalità di riapertura delle finestre dopo il primo avvio. Questa impostazione non ha alcun effetto quando l'applicazione è già in esecuzione.",
+ "restoreWindows": "Controllare il modo in cui le finestre e gli editor all'interno vengono ripristinati all'apertura.",
+ "security.promptForLocalFileProtocolHandling": "Se questa opzione è abilitata, una finestra di dialogo chiederà conferma ogni volta che un file locale o un'area di lavoro sta per essere aperta tramite un gestore di protocollo.",
+ "security.promptForRemoteFileProtocolHandling": "Se questa opzione è abilitata, una finestra di dialogo chiederà conferma ogni volta che un file o un'area di lavoro remota sta per essere aperto tramite un gestore di protocollo.",
"showNextWindowTab": "Visualizza scheda della finestra successiva",
"showPreviousTab": "Visualizza scheda della finestra precedente",
"telemetry.enableCrashReporting": "Abilita la raccolta dei report di arresto anomalo. Consente di migliorare la stabilità. \r\nPer rendere effettiva questa opzione, è necessario riavviare.",
"telemetryConfigurationTitle": "Telemetria",
- "titleBarStyle": "Regola l'aspetto della barra del titolo della finestra. In Linux e Windows questa impostazione influisce anche sull'aspetto dell'applicazione e dei menu di scelta rapida. Per applicare le modifiche, è necessario un riavvio completo.",
+ "titleBarStyle": "Regolare l'aspetto della barra del titolo della finestra per fare in modo che sia quello nativo del sistema operativo o personalizzato. Per applicare le modifiche, è necessario un riavvio completo.",
"toggleWindowTabsBar": "Attiva/Disattiva barra delle schede delle finestre",
"touchbar.enabled": "Abilita i pulsanti della Touch Bar di macOS sulla tastiera se disponibili.",
"touchbar.ignored": "Set di identificatori per le voci della Touch Bar che non dovrebbero essere visualizzati, ad esempio `workbench.action.navigateBack`.",
+ "window.border.color": "{0}: colore specifico in formato Hex, RGB, RGBA, HSL, HSLA",
+ "window.border.default": "{0}: rispettare le impostazioni del tema colori, eseguire il fallback alle impostazioni di Windows",
+ "window.border.off": "{0}: disabilitare i colori del bordo",
+ "window.border.prefix": "Controlla il colore del bordo della finestra:",
+ "window.border.suffix": "Usa {0} per impostare colori diversi per le finestre attive e inattive. Questa impostazione viene ignorata quando {1} è impostato su {2}.",
+ "window.border.system": "{0}: rispettare solo le impostazioni di Windows",
"window.clickThroughInactive": "Se è abilitata, facendo clic su una finestra inattiva si attiverà non solo la finestra, ma anche l'elemento su cui è posizionato il puntatore del mouse se è selezionabile. Se è disabilitata, facendo clic in un punto qualsiasi in una finestra inattiva verrà attivata solo la finestra e sarà necessario fare di nuovo clic sull'elemento.",
- "window.doubleClickIconToClose": "Se è abilitata, quando si fa doppio clic sull'icona dell'applicazione nella barra del titolo la finestra viene chiusa e non è possibile trascinarla dall'icona. Questa impostazione ha effetto solo quando `#window.titleBarStyle#` è impostato su `custom`.",
+ "window.customTitleBarVisibility": "Regolare quando visualizzare la barra del titolo personalizzata. La barra del titolo personalizzata può essere nascosta in modalità schermo intero con 'windowed'. La barra del titolo personalizzata può essere nascosta solo in modalità non a schermo intero con 'never' quando {0} è impostato su 'native'.",
+ "window.customTitleBarVisibility.auto": "Modifica automaticamente la visibilità della barra del titolo personalizzata.",
+ "window.customTitleBarVisibility.never": "Nascondere la barra del titolo personalizzata quando {0} è impostato su 'nativo'.",
+ "window.customTitleBarVisibility.windowed": "Nascondi la barra del titolo personalizzata a schermo intero. Quando non è a schermo intero, modificare automaticamente la visibilità della barra del titolo personalizzata.",
+ "window.doubleClickIconToClose": "Se abilitata, questa impostazione chiuderà la finestra quando si fa doppio clic sull'icona dell'applicazione nella barra del titolo. La finestra non potrà essere trascinata dall'icona. Questa impostazione è valida solo se {0} è impostato su `custom`.",
+ "window.menuStyle": "Regolare lo stile del menu di scelta rapida in base a quello nativo del sistema operativo, personalizzato o ereditato dallo stile della barra del titolo definito in {0}. Questa operazione influisce anche sull'aspetto del menu di scelta rapida. Per applicare le modifiche, è necessario un riavvio completo.",
+ "window.menuStyle.custom": "Utilizzare il menu personalizzato.",
+ "window.menuStyle.custom.mac": "Utilizzare il menu di scelta rapida personalizzato.",
+ "window.menuStyle.inherit": "Fa corrispondere lo stile del menu allo stile della barra del titolo definito in {0}.",
+ "window.menuStyle.inherit.mac": "Fa corrispondere lo stile del menu di scelta rapida allo stile della barra del titolo definito in {0}.",
+ "window.menuStyle.mac": "Regolare l'aspetto del menu di scelta rapida affinché sia quello nativo del sistema operativo, personalizzato o ereditato dallo stile della barra del titolo definito in {0}.",
+ "window.menuStyle.native": "Utilizzare il menu nativo. Questa opzione viene ignorata quando {0} è impostato su {1}.",
+ "window.menuStyle.native.mac": "Utilizzare il menu di scelta rapida nativo.",
"window.nativeFullScreen": "Controlla se usare la modalità a schermo intero nativa in macOS. Disabilitare questa opzione per impedire a macOS di creare un nuovo spazio quando si passa alla modalità a schermo intero.",
- "window.nativeTabs": "Abilita le finestre di tab per macOS Sierra. La modifica richiede un riavvio. Eventuali personalizzazioni della barra del titolo verranno disabilitate",
+ "window.nativeTabs": "Abilita le schede delle finestre native per macOS. La modifica richiede un riavvio completo per essere applicata e le schede native disabiliteranno eventuali personalizzazioni della barra del titolo, se configurate.",
"window.newWindowDimensions.default": "Apre nuove finestre al centro della schermata.",
"window.newWindowDimensions.fullscreen": "Apre nuove finestre nella modalità a schermo intero.",
"window.newWindowDimensions.inherit": "Apre nuove finestre le cui dimensioni sono uguali a quelle dell'ultima finestra attiva.",
@@ -4150,43 +5353,41 @@
"window.newWindowDimensions.offset": "Apre nuove finestre le cui dimensioni sono uguali a quelle dell'ultima finestra attiva con una posizione di offset.",
"window.openWithoutArgumentsInNewWindow.off": "Imposta lo stato attivo sull'ultima istanza in esecuzione attiva.",
"window.openWithoutArgumentsInNewWindow.on": "Apre una nuova finestra vuota.",
- "window.reopenFolders.all": "Riapri tutte le finestre a meno che non venga aperta una cartella, un'area di lavoro o un file (ad esempio dalla riga di comando).",
- "window.reopenFolders.folders": "Riapri tutte le finestre con cartelle o aree di lavoro aperte a meno che non venga aperta una cartella, un'area di lavoro o un file (ad esempio dalla riga di comando).",
+ "window.reopenFolders.all": "Riapri tutte le finestre a meno che non venga aperta una cartella, un'area di lavoro o un file (ad esempio dalla riga di comando). Se un file viene aperto, sostituirà uno degli editor aperti in precedenza in una finestra.",
+ "window.reopenFolders.folders": "Riapri tutte le finestre con cartelle o aree di lavoro aperte a meno che non venga aperta una cartella, un'area di lavoro o un file (ad esempio dalla riga di comando). Se un file viene aperto, sostituirà uno degli editor aperti in precedenza in una finestra.",
"window.reopenFolders.none": "Non riaprire mai una finestra. A meno che non venga aperta una cartella o un'area di lavoro (ad esempio dalla riga di comando), viene visualizzata una finestra vuota.",
- "window.reopenFolders.one": "Riapri l'ultima finestra attiva a meno che non venga aperta una cartella, un'area di lavoro o un file (ad esempio dalla riga di comando).",
- "window.reopenFolders.preserve": "Riapri sempre tutte le finestre. Se si apre una cartella o un'area di lavoro (ad esempio dalla riga di comando), viene aperta come una nuova finestra a meno che non sia stata aperta in precedenza. I file vengono aperti in una delle finestre ripristinate.",
+ "window.reopenFolders.one": "Riapri l'ultima finestra attiva a meno che non venga aperta una cartella, un'area di lavoro o un file (ad esempio dalla riga di comando). Se un file viene aperto, sostituirà uno degli editor aperti in precedenza in una finestra.",
+ "window.reopenFolders.preserve": "Riapri sempre tutte le finestre. Se si apre una cartella o un'area di lavoro (ad esempio dalla riga di comando), viene aperta come una nuova finestra a meno che non sia stata aperta in precedenza. Se i file vengono aperti, verranno aperti in una delle finestre ripristinate insieme agli editor aperti in precedenza.",
"windowConfigurationTitle": "Finestra",
- "windowControlsOverlay": "Usa i controlli finestra forniti dalla piattaforma anziché i controlli finestra basati su HTML. Per applicare le modifiche, è necessario un riavvio completo.",
- "zoomLevel": "Consente di modificare il livello di zoom della finestra. Il valore originale è 0 e ogni incremento superiore (ad esempio 1) o inferiore (ad esempio -1) rappresenta un aumento o una diminuzione del 20% della percentuale di zoom. È anche possibile immettere valori decimali per modificare il livello di zoom con maggiore granularità."
+ "zoomLevel": "Regolare il livello di zoom predefinito per tutte le finestre. Ogni incremento superiore a '0' (ad esempio '1') o inferiore (ad esempio '-1') rappresenta lo zoom di '20%' più grande o più piccolo. È anche possibile immettere decimali per regolare il livello di zoom con una granularità più fine. Vedere {0} per configurare se i comandi 'Zoom avanti' e 'Zoom indietro' applicano il livello di zoom a tutte le finestre o solo alla finestra attiva.",
+ "zoomPerWindow": "Controlla se i comandi 'Zoom avanti' e 'Zoom indietro' applicano il livello di zoom a tutte le finestre o solo alla finestra attiva. Vedere {0} per configurare un livello di zoom predefinito per tutte le finestre."
},
- "vs/workbench/electron-sandbox/desktop.main": {
+ "vs/workbench/electron-browser/desktop.main": {
"join.closeStorage": "Salvataggio dello stato dell'interfaccia utente"
},
- "vs/workbench/electron-sandbox/parts/dialogs/dialogHandler": {
- "aboutDetail": "Versione: {0}\r\nCommit: {1}\r\nData: {2}\r\nElectron: {3}\r\nChromium: {4}\r\nNode.js: {5}\r\nV8: {6}\r\nSistema operativo: {7}",
- "cancelButton": "Annulla",
+ "vs/workbench/electron-browser/parts/dialogs/dialogHandler": {
"copy": "&&Copia",
- "okButton": "OK",
- "yesButton": "&&Sì"
+ "okButton": "OK"
},
- "vs/workbench/electron-sandbox/window": {
- "cancelButton": "&&Annulla",
- "closeWindowButtonLabel": "&&Chiudi finestra",
- "closeWindowMessage": "Chiudere la finestra?",
- "doNotAskAgain": "Non visualizzare più questo messaggio",
- "exitButtonLabel": "&&Uscita",
+ "vs/workbench/electron-browser/window": {
+ "appRootWarning.banner": "I file archiviati nella cartella di installazione ('{0}') possono essere SOVRASCRITTI o ELIMINATI IRREVERSIBILMENTE senza alcun avviso in fase di aggiornamento.",
+ "configure": "Configura",
+ "downloadArmBuild": "Scarica",
"keychainWriteError": "La scrittura delle informazioni di accesso al keychain non è riuscita. Errore: '{0}'.",
"learnMore": "Altre informazioni",
- "loaderCycle": "Nei moduli AMD è presente un ciclo di dipendenze che deve essere risolto.",
- "loginButton": "A&&ccedi",
+ "loginButton": "&&Accedi",
+ "macoseolmessage": "{0} su {1} presto interromperanno la ricezione degli aggiornamenti. Provare ad aggiornare la versione di macOS.",
"password": "Password",
"proxyAuthRequired": "Autenticazione proxy obbligatoria",
"proxyDetail": "Il proxy {0} richiede un nome utente e una password.",
- "quitButtonLabel": "&&Esci",
- "quitMessage": "Uscire?",
- "quitMessageMac": "Uscire?",
"rememberCredentials": "Memorizza le credenziali",
+ "resolveShellEnvironment": "Risoluzione dell'ambiente shell in corso...",
+ "restart": "Riavvia",
"runningAsRoot": "Non è consigliabile eseguire {0} come utente root.",
+ "runningTranslated": "È in esecuzione una versione emulata di {0}. Per prestazioni migliori, scaricare la versione arm64 nativa di {0} build per il computer.",
+ "sharedProcessCrash": "Un processo in background condiviso è stato terminato in modo imprevisto. Riavviare l'applicazione per eseguire il ripristino.",
+ "showArgvParseWarning": "Il file degli argomenti di runtime 'argv.json' contiene errori. Correggerli e riavviarli.",
+ "showArgvParseWarningAction": "Aprire il file",
"shutdownErrorClose": "Un errore imprevisto ha impedito la chiusura della finestra",
"shutdownErrorDetail": "Errore: {0}",
"shutdownErrorLoad": "Un errore imprevisto ha impedito di modificare l'area di lavoro",
@@ -4200,56 +5401,389 @@
"shutdownTitleLoad": "La modifica dell'area di lavoro richiede più tempo...",
"shutdownTitleQuit": "La chiusura dell'applicazione richiede più tempo...",
"shutdownTitleReload": "Il ricaricamento della finestra richiede più tempo...",
+ "status.windowZoom": "Zoom finestra",
"troubleshooting": "Guida alla risoluzione dei problemi",
"username": "Nome utente",
- "willShutdownDetail": "Le operazioni seguenti sono ancora in esecuzione: \r\n{0}"
- },
- "vs/workbench/contrib/audioCues/browser/audioCueService": {
- "audioCues.lineHasBreakpoint.name": "Punto di interruzione sulla riga",
- "audioCues.lineHasError.name": "Errore sulla riga",
- "audioCues.lineHasFoldedArea.name": "Area piegata sulla linea",
- "audioCues.lineHasInlineSuggestion.name": "Suggerimento inline sulla riga",
- "audioCues.lineHasWarning.name": "Avviso sulla riga",
- "audioCues.noInlayHints": "Nessun suggerimento per l'inlay nella riga",
- "audioCues.onDebugBreak.name": "Debugger arrestato sul punto di interruzione"
+ "willShutdownDetail": "Le operazioni seguenti sono ancora in esecuzione: \r\n{0}",
+ "zoomIn": "Zoom avanti",
+ "zoomNumber": "Livello di zoom: {0} ({1}%)",
+ "zoomOut": "Zoom indietro",
+ "zoomReset": "Reimposta",
+ "zoomResetLabel": "{0} ({1})",
+ "zoomSettings": "Impostazioni"
+ },
+ "vs/workbench/contrib/accessibility/browser/accessibilityConfiguration": {
+ "accessibility.debugWatchVariableAnnouncements": "Controlla se le modifiche alle variabili devono essere annunciate nella visualizzazione Controllo debug.",
+ "accessibility.hideAccessibleView": "Controlla se la visualizzazione accessibile è nascosta.",
+ "accessibility.openChatEditedFiles": "Controlla se i file devono essere aperti quando l'agente della chat ha applicato modifiche a tali file.",
+ "accessibility.replEditor.readLastExecutedOutput": "Controlla se viene annunciato l'output di un'esecuzione nel REPL nativo.",
+ "accessibility.signalOptions.debouncePositionChanges": "Indica se i le modifiche di posizione debbano o meno essere revocate",
+ "accessibility.signalOptions.delays.errorAtPosition.announcement": "Ritardo in millisecondi prima dell'annuncio in caso di errore nella posizione.",
+ "accessibility.signalOptions.delays.errorAtPosition.sound": "Ritardo in millisecondi prima della riproduzione di un suono in caso di errore nella posizione.",
+ "accessibility.signalOptions.delays.general.announcement": "Ritardo in millisecondi prima dell'annuncio.",
+ "accessibility.signalOptions.delays.general.sound": "Ritardo in millisecondi prima della riproduzione di un suono.",
+ "accessibility.signalOptions.delays.warningAtPosition.announcement": "Ritardo in millisecondi prima dell'annuncio in caso di avviso nella posizione.",
+ "accessibility.signalOptions.delays.warningAtPosition.sound": "Ritardo in millisecondi prima della riproduzione di un suono in caso di avviso nella posizione.",
+ "accessibility.signalOptions.volume": "Volume dei suoni in percentuale (0-100).",
+ "accessibility.signals.chatEditModifiedFile": "Riproduce un segnale audio/audio quando rivela un file con modifiche dalle modifiche della chat",
+ "accessibility.signals.chatEditModifiedFile.sound": "Riproduce un suono quando si rivela un file con le modifiche apportate alle modifiche della chat",
+ "accessibility.signals.chatRequestSent": "Riproduce un segnale, ovvero un suono (segnale audio) e/o un annuncio (avviso), quando viene effettuata una richiesta di chat.",
+ "accessibility.signals.chatRequestSent.announcement": "Riproduce un annuncio quando viene effettuata una richiesta di chat.",
+ "accessibility.signals.chatRequestSent.sound": "Riproduce un suono quando viene effettuata una richiesta di chat.",
+ "accessibility.signals.chatResponseReceived": "Riproduce un suono/segnale audio quando la risposta è stata ricevuta.",
+ "accessibility.signals.chatResponseReceived.sound": "Riproduce un suono audio quando la risposta viene ricevuta.",
+ "accessibility.signals.chatUserActionRequired": "Riproduce un segnale - suono (segnale audio) e/o annuncio (avviso) - quando è richiesto l'intervento dell'utente nella chat.",
+ "accessibility.signals.chatUserActionRequired.announcement": "Annuncia quando è richiesto l'intervento dell'utente nella chat, incluse le informazioni sull'azione e su come eseguirla.",
+ "accessibility.signals.chatUserActionRequired.sound": "Riproduce un suono quando è richiesto l'intervento dell'utente nella chat.",
+ "accessibility.signals.clear": "Riproduce un segnale, ovvero un suono (segnale audio) e/o annuncio (avviso), quando una funzionalità viene deselezionata, ad esempio, il terminale, la Console di debug o il canale di output.",
+ "accessibility.signals.clear.announcement": "Riproduce un annuncio quando una funzionalità viene deselezionata.",
+ "accessibility.signals.clear.sound": "Riproduce un suono quando una funzionalità viene deselezionata.",
+ "accessibility.signals.codeActionApplied": "Riproduce un suono/segnale audio quando viene applicata l'azione del codice.",
+ "accessibility.signals.codeActionApplied.sound": "Riproduce un suono quando viene applicata l'azione del codice.",
+ "accessibility.signals.codeActionTriggered": "Riproduce un suono/segnale audio quando viene attivata un'azione del codice.",
+ "accessibility.signals.codeActionTriggered.sound": "Riproduce un suono quando viene attivata un'azione del codice.",
+ "accessibility.signals.diffLineDeleted": "Riproduce un suono/segnale audio quando lo stato attivo viene spostato in una riga eliminata in modalità Visualizzatore differenze accessibile o nella modifica successiva/precedente.",
+ "accessibility.signals.diffLineDeleted.sound": "Riproduce un suono quando lo stato attivo si sposta su una riga eliminata in modalità Visualizzatore differenze accessibile o sulla modifica successiva/precedente.",
+ "accessibility.signals.diffLineInserted": "Riproduce un suono/segnale audio quando lo stato attivo viene spostato in una riga inserita in modalità Visualizzatore differenze accessibile o nella modifica successiva/precedente.",
+ "accessibility.signals.diffLineModified": "Riproduce un suono/segnale audio quando lo stato attivo viene spostato in una riga modificata in modalità Visualizzatore differenze accessibile o nella modifica successiva/precedente.",
+ "accessibility.signals.diffLineModified.sound": "Riproduce un suono quando lo stato attivo si sposta su una riga modificata in modalità Visualizzatore differenze accessibile o sulla modifica successiva/precedente.",
+ "accessibility.signals.editsKept": "Riproduce un segnale - suono (segnale audio) e/o annuncio (avviso), quando le modifiche vengono mantenute.",
+ "accessibility.signals.editsKept.announcement": "Annuncia quando le modifiche vengono mantenute.",
+ "accessibility.signals.editsKept.sound": "Riproduce un suono quando le modifiche vengono mantenute.",
+ "accessibility.signals.editsUndone": "Riproduce un segnale - suono (segnale audio) e/o annuncio (avviso), quando le modifiche sono state annullate.",
+ "accessibility.signals.editsUndone.announcement": "Annuncia quando le modifiche sono state annullate.",
+ "accessibility.signals.editsUndone.sound": "Riproduce un suono quando le modifiche sono state annullate.",
+ "accessibility.signals.format": "Riproduce un segnale, ovvero un suono (segnale audio) e/o annuncio (avviso), quando un file o un blocco appunti viene formattato.",
+ "accessibility.signals.format.always": "Riproduce il suono ogni volta che un file viene formattato, anche se è impostato per la formattazione durante il salvataggio, la digitazione, l'incollamento o l'esecuzione di una cella.",
+ "accessibility.signals.format.announcement": "Riproduce un annuncio quando un file o un notebook è formattato.",
+ "accessibility.signals.format.announcement.always": "Annuncia ogni volta che un file viene formattato, anche se è impostato per il formato durante il salvataggio, la digitazione, l'incollamento o l'esecuzione di una cella.",
+ "accessibility.signals.format.announcement.never": "Non annuncia mai.",
+ "accessibility.signals.format.announcement.userGesture": "Riproduce un annuncio quando un utente formatta in modo esplicito un file.",
+ "accessibility.signals.format.never": "Non riproduce mai il suono.",
+ "accessibility.signals.format.sound": "Riproduce un suono quando viene formattato un file o un blocco appunti.",
+ "accessibility.signals.format.userGesture": "Riproduce il suono quando un utente formatta un file in modo esplicito.",
+ "accessibility.signals.lineHasBreakpoint": "Riproduce un segnale, ovvero un suono (segnale audio) e/o annuncio (avviso), quando la linea attiva ha un punto di interruzione.",
+ "accessibility.signals.lineHasBreakpoint.announcement": "Riproduce un annuncio quando la riga attiva contiene un punto di interruzione.",
+ "accessibility.signals.lineHasBreakpoint.sound": "Riproduce un suono quando la riga attiva ha un punto di interruzione.",
+ "accessibility.signals.lineHasError": "Riproduce un segnale, ovvero un suono (segnale audio) e/o annuncio (avviso), quando la linea attiva presenta un errore.",
+ "accessibility.signals.lineHasError.announcement": "Riproduce un annuncio quando la riga attiva contiene un errore.",
+ "accessibility.signals.lineHasError.sound": "Riproduce un suono quando la riga attiva ha un errore.",
+ "accessibility.signals.lineHasFoldedArea": "Riproduce un segnale, ovvero un suono (segnale audio) e/o annuncio (avviso), quando la linea attiva ha un'area ridotta che può essere espansa.",
+ "accessibility.signals.lineHasFoldedArea.announcement": "Riproduce un annuncio quando la linea attiva contiene un’area ridotta che può essere aperta.",
+ "accessibility.signals.lineHasFoldedArea.sound": "Riproduce un suono quando la riga attiva ha un'area ripiegata che può essere aperta.",
+ "accessibility.signals.lineHasInlineSuggestion": "Riproduce un suono/segnale audio quando la riga attiva contiene un suggerimento inline.",
+ "accessibility.signals.lineHasInlineSuggestion.sound": "Riproduce un suono quando la riga attiva contiene un suggerimento inline.",
+ "accessibility.signals.lineHasWarning": "Riproduce un segnale, ovvero un suono (segnale audio) e/o annuncio (avviso), quando la linea attiva presenta un avviso.",
+ "accessibility.signals.lineHasWarning.announcement": "Riproduce un annuncio quando la riga attiva contiene un avviso.",
+ "accessibility.signals.lineHasWarning.sound": "Riproduce un suono quando la riga attiva ha un avviso.",
+ "accessibility.signals.nextEditSuggestion": "Riproduce un suono: segnale audio e/o annuncio (avviso) quando è presente un suggerimento di modifica successivo.",
+ "accessibility.signals.nextEditSuggestion.announcement": "Segnala quando è presente un suggerimento di modifica successivo.",
+ "accessibility.signals.nextEditSuggestion.sound": "Riproduce un suono quando è presente un suggerimento di modifica successivo.",
+ "accessibility.signals.noInlayHints": "Riproduce un segnale, ovvero un suono (segnale audio) e/o annuncio (avviso), quando si prova a leggere una riga con suggerimenti per l'inlay senza alcun suggerimento per l'inlay.",
+ "accessibility.signals.noInlayHints.announcement": "Riproduce un annuncio quando si prova a leggere una riga con suggerimenti per l'inlay che non contiene alcun suggerimento per l'inlay.",
+ "accessibility.signals.noInlayHints.sound": "Riproduce un suono durante il tentativo di lettura di una riga con suggerimenti per l'inlay che non contiene alcun suggerimento per l'inlay.",
+ "accessibility.signals.notebookCellCompleted": "Riproduce un segnale, ovvero un suono (segnale audio) e/o annuncio (avviso), quando l'esecuzione di una cella del notebook viene completata correttamente.",
+ "accessibility.signals.notebookCellCompleted.announcement": "Riproduce un annuncio quando l'esecuzione di una cella del notebook viene completata correttamente.",
+ "accessibility.signals.notebookCellCompleted.sound": "Riproduce un suono quando l'esecuzione di una cella del notebook viene completata correttamente.",
+ "accessibility.signals.notebookCellFailed": "Riproduce un segnale, ovvero un suono (segnale audio) e/o annuncio (avviso), quando l'esecuzione di una cella del notebook ha esito negativo.",
+ "accessibility.signals.notebookCellFailed.announcement": "Riproduce un annuncio quando l'esecuzione di una cella del notebook ha esito negativo.",
+ "accessibility.signals.notebookCellFailed.sound": "Riproduce un suono quando l'esecuzione di una cella del notebook ha esito negativo.",
+ "accessibility.signals.onDebugBreak": "Riproduce un segnale, ovvero un suono (segnale audio) e/o annuncio (avviso), quando il debugger si arresta in un punto di interruzione.",
+ "accessibility.signals.onDebugBreak.announcement": "Riproduce un annuncio quando il debugger si arresta in un punto di interruzione.",
+ "accessibility.signals.onDebugBreak.sound": "Riproduce un suono quando il debugger si arresta in un punto di interruzione.",
+ "accessibility.signals.positionHasError": "Riproduce un segnale, ovvero un suono (segnale audio) e/o annuncio (avviso), quando la linea attiva presenta un avviso.",
+ "accessibility.signals.positionHasError.announcement": "Riproduce un annuncio quando la riga attiva contiene un avviso.",
+ "accessibility.signals.positionHasError.sound": "Riproduce un suono quando la riga attiva ha un avviso.",
+ "accessibility.signals.positionHasWarning": "Riproduce un segnale, ovvero un suono (segnale audio) e/o annuncio (avviso), quando la linea attiva presenta un avviso.",
+ "accessibility.signals.positionHasWarning.announcement": "Riproduce un annuncio quando la riga attiva contiene un avviso.",
+ "accessibility.signals.positionHasWarning.sound": "Riproduce un suono quando la riga attiva ha un avviso.",
+ "accessibility.signals.progress": "Riproduce un segnale, ovvero un suono (segnale audio) e/o annuncio (avviso), a ciclo continuo durante l'avanzamento dell'operazione.",
+ "accessibility.signals.progress.announcement": "Avvisi in ciclo durante l'avanzamento.",
+ "accessibility.signals.progress.sound": "Riproduce un suono in ciclo durante l'avanzamento.",
+ "accessibility.signals.save": "Riproduce un segnale, ovvero un suono (segnale audio) e/o un annuncio (avviso), quando un file viene salvato.",
+ "accessibility.signals.save.announcement": "Riproduce un annuncio quando un file viene salvato.",
+ "accessibility.signals.save.announcement.always": "Annuncia ogni volta che viene salvato un file, incluso il salvataggio automatico.",
+ "accessibility.signals.save.announcement.never": "Non riproduce mai l'annuncio.",
+ "accessibility.signals.save.announcement.userGesture": "Annuncia quando un utente salva in modo esplicito un file.",
+ "accessibility.signals.save.sound": "Riproduce un suono quando un file viene salvato.",
+ "accessibility.signals.save.sound.always": "Riproduce il suono ogni volta che un file viene salvato, incluso il salvataggio automatico.",
+ "accessibility.signals.save.sound.never": "Non riproduce mai il suono.",
+ "accessibility.signals.save.sound.userGesture": "Riproduce il suono quando un utente salva un file in modo esplicito.",
+ "accessibility.signals.sound": "Riproduce un suono quando lo stato attivo si sposta su una riga inserita in modalità Visualizzatore differenze accessibile o sulla modifica successiva/precedente.",
+ "accessibility.signals.taskCompleted": "Riproduce un segnale, ovvero un suono (segnale audio) e/o un annuncio (avviso), quando un'attività viene completata.",
+ "accessibility.signals.taskCompleted.announcement": "Riproduce un annuncio quando un'attività viene completata.",
+ "accessibility.signals.taskCompleted.sound": "Riproduce un suono al termine di un'attività.",
+ "accessibility.signals.taskFailed": "Riproduce un segnale, ovvero un suono (segnale audio) e/o annuncio (avviso), quando un'attività ha esito negativo (codice di uscita diverso da zero).",
+ "accessibility.signals.taskFailed.announcement": "Riproduce un annuncio quando un’attività ha esito negativo (codice di uscita diverso da zero).",
+ "accessibility.signals.taskFailed.sound": "Riproduce un suono quando un'attività non riesce (codice di uscita diverso da zero).",
+ "accessibility.signals.terminalBell": "Riproduce un segnale, ovvero un suono (segnale audio) e/o annuncio (avviso), quando la campana del terminale suona.",
+ "accessibility.signals.terminalBell.announcement": "Riproduce un annuncio quando la campana del terminale suona.",
+ "accessibility.signals.terminalBell.sound": "Riproduce un suono quando la campana del terminale suona.",
+ "accessibility.signals.terminalCommandFailed": "Riproduce un segnale, ovvero un suono (segnale audio) e/o annuncio (avviso), quando un comando terminale non riesce (codice di uscita diverso da zero) o quando un comando con tale codice di uscita viene spostato nella vista accessibile.",
+ "accessibility.signals.terminalCommandFailed.announcement": "Riproduce un annuncio quando un comando terminale ha esito negativo (codice di uscita diverso da zero) o quando un comando con tale codice di uscita viene spostato nella vista accessibile.",
+ "accessibility.signals.terminalCommandFailed.sound": "Riproduce un suono quando un comando terminale non riesce (codice di uscita diverso da zero) o quando un comando con tale codice di uscita viene spostato nella vista accessibile.",
+ "accessibility.signals.terminalCommandSucceeded": "Riproduce un segnale, ovvero un suono (segnale audio) e/o annuncio (avviso), quando un comando terminale ha esito positivo (codice di uscita uguale a zero) o quando un comando con tale codice di uscita viene spostato nella vista accessibile.",
+ "accessibility.signals.terminalCommandSucceeded.announcement": "Riproduce un annuncio quando un comando terminale ha esito positivo (codice di uscita uguale a zero) o quando un comando con tale codice di uscita viene spostato nella vista accessibile.",
+ "accessibility.signals.terminalCommandSucceeded.sound": "Riproduce un suono quando un comando terminale ha esito positivo (codice di uscita uguale a zero) o quando un comando con tale codice di uscita viene spostato nella vista accessibile.",
+ "accessibility.signals.terminalQuickFix": "Riproduce un segnale, ovvero un suono (segnale audio) e/o annuncio (avviso), quando sono disponibili correzioni rapide del terminale.",
+ "accessibility.signals.terminalQuickFix.announcement": "Riproduce un annuncio quando sono disponibili correzioni rapide del terminale.",
+ "accessibility.signals.terminalQuickFix.sound": "Riproduce un suono quando sono disponibili correzioni rapide del terminale.",
+ "accessibility.signals.voiceRecordingStarted": "Riproduce un suono/segnale audio all'avvio della registrazione vocale.",
+ "accessibility.signals.voiceRecordingStarted.sound": "Riproduce un suono all'avvio della registrazione vocale.",
+ "accessibility.signals.voiceRecordingStopped": "Riproduce un suono/segnale audio all'arresto della registrazione vocale.",
+ "accessibility.signals.voiceRecordingStopped.sound": "Riproduce un suono all'arresto della registrazione vocale.",
+ "accessibility.underlineLinks": "Controlla se i collegamenti devono essere sottolineati nel workbench.",
+ "accessibility.verboseChatProgressUpdates": "Controlla se devono essere effettuati annunci dettagliati sullo stato di avanzamento quando è in corso una richiesta tramite chat, incluse informazioni come il testo cercato per con risultati X, il del file creato o il del file di lettura.",
+ "accessibility.voice.autoSynthesize.off": "Disabilita la funzionalità.",
+ "accessibility.voice.autoSynthesize.on": "Abilita la funzionalità. Abilitando un'utilità per la lettura dello schermo verranno disabilitati gli aggiornamenti ARIA.",
+ "accessibility.windowTitleOptimized": "Consente di controllare se {0} deve essere ottimizzato per la lettura dello schermo quando si trova nella modalità utilità per la lettura dello schermo. Se questa opzione è abilitata, al titolo della finestra verrà aggiunto {1} alla fine.",
+ "accessibilityConfigurationTitle": "Accessibilità",
+ "announcement.enabled.auto": "Abilita l'annuncio, che verrà riprodotto solo in modalità ottimizzata per la lettura dello schermo.",
+ "announcement.enabled.off": "Disabilitare annuncio.",
+ "autoSynthesize": "Indica se una risposta testuale deve essere letta automaticamente ad alta voce quando il parlato è stato usato come input. Ad esempio, in una sessione di chat una risposta viene sintetizzata automaticamente quando la voce è stata usata come richiesta di chat.",
+ "dimUnfocusedEnabled": "Indica se attenuare gli editor e i terminali con stato non attivo, in modo che sia più chiaro dove verrà inviato l'input digitato. Funziona con la maggior parte degli editor con le eccezioni rilevanti di quelli che usano iframe come notebook ed editor di webview di estensione.",
+ "dimUnfocusedOpacity": "Frazione di opacità (da 0,2 a 1,0) da usare per editor e terminali non attivati. Questa operazione avrà effetto solo quando {0} è abilitato.",
+ "replEditor.autoFocusAppendedCell": "Controlla se lo stato attivo deve essere inviato automaticamente a REPL quando viene eseguito il codice.",
+ "sound.enabled.auto": "Abilitare l'audio quando è collegata un'utilità per la lettura dello schermo.",
+ "sound.enabled.autoWindow": "Abilitare l'audio quando è collegata un'utilità per la lettura dello schermo.",
+ "sound.enabled.off": "Disabilitare l’audio.",
+ "sound.enabled.on": "Abilitare l'audio.",
+ "speechLanguage.auto": "Automatico (usa la lingua di visualizzazione)",
+ "terminal.integrated.accessibleView.closeOnKeyPress": "Al tasto di scelta rapida chiudere la visualizzazione accessibile e spostare lo stato attivo sull'elemento da cui è stato richiamato.",
+ "verbosity.chat.description": "Fornire informazioni su come accedere al menu della guida della chat sull'accessibilità del terminale quando l'input della chat è attivo.",
+ "verbosity.comments": "Fornire informazioni sulle azioni che possono essere eseguite nel widget dei commenti o in un file contenente commenti.",
+ "verbosity.debug": "Fornire informazioni su come accedere alla finestra di dialogo della Guida sull'accessibilità della console di debug quando sono evidenziati la console di debug o il viewlet di esecuzione e debug. Si noti che per rendere effettiva questa impostazione, è necessario ricaricare la finestra.",
+ "verbosity.diffEditor.description": "Fornire informazioni su come esplorare le modifiche nell'editor diff quando è attivo.",
+ "verbosity.diffEditorActive": "Indica quando un editor diff diventa l'editor attivo.",
+ "verbosity.emptyEditorHint": "Fornire informazioni sulle azioni rilevanti in un editor di testo vuoto.",
+ "verbosity.hover": "Fornire informazioni su come aprire il passaggio del mouse in una visualizzazione accessibile.",
+ "verbosity.inlineCompletions.description": "Fornire informazioni su come accedere ai completamenti inline al passaggio del mouse e alla visualizzazione accessibile.",
+ "verbosity.interactiveEditor.description": "Fornire informazioni su come accedere al menu della Guida per l'accessibilità della chat dell'editor inline e all'avviso con suggerimenti che descrivono come usare la funzionalità quando l'input è attivo.",
+ "verbosity.keybindingsEditor.description": "Fornire informazioni su come modificare un tasto di scelta rapida nell'editor dei tasti di scelta rapida quando una riga è evidenziata.",
+ "verbosity.notebook": "Fornire informazioni su come spostare lo stato attivo sul contenitore di celle o l'editor interno quando una cella del notebook è in stato attivo.",
+ "verbosity.notification": "Fornire informazioni su come aprire la notifica in una visualizzazione accessibile.",
+ "verbosity.replEditor.description": "Fornisce informazioni su come accedere al menu della Guida sull'accessibilità dell'editor REPL quando questo è attivo.",
+ "verbosity.scm": "Fornire informazioni su come accedere al menu della guida all'accessibilità del controllo del codice sorgente quando l'input è attivo.",
+ "verbosity.terminal.description": "Fornire informazioni su come accedere al menu della Guida sull'accessibilità del terminale quando il terminale è attivo.",
+ "verbosity.terminalChatOutput.description": "Fornire informazioni su come aprire l'output del terminale chat in una visualizzazione accessibile.",
+ "verbosity.walkthrough": "Fornire informazioni su come aprire la procedura dettagliata in una visualizzazione accessibile.",
+ "voice.ignoreCodeBlocks": "Indica se ignorare i frammenti di codice nella sintesi sintesi sintesi vocale.",
+ "voice.speechLanguage": "Lingua che deve essere usata per la sintesi vocale e la conversione della voce in testo scritto. Selezionare 'auto' per usare la lingua di visualizzazione configurata, se possibile. Non tutte le lingue di visualizzazione potrebbero essere supportate dal riconoscimento vocale e dai sintetizzatori.",
+ "voice.speechTimeout": "Durata in millisecondi in cui il riconoscimento vocale rimane attivo dopo aver smesso di parlare. Ad esempio, in una sessione di chat il testo trascritto viene inviato automaticamente dopo il timeout. Impostare su '0' per disabilitare questa funzionalità."
+ },
+ "vs/workbench/contrib/accessibility/browser/accessibilityStatus": {
+ "screenReaderDetected": "Ottimizzato per l'utilità per la lettura dello schermo",
+ "screenReaderDetectedExplanation.answerLearnMore": "Altre informazioni",
+ "screenReaderDetectedExplanation.answerNo": "No",
+ "screenReaderDetectedExplanation.answerYes": "Sì",
+ "screenReaderDetectedExplanation.question": "È stato rilevato l'utilizzo dell'utilità per la lettura dello schermo. Abilitare {0} per ottimizzare l'editor per l'utilizzo dell'utilità per la lettura dello schermo?",
+ "status.editor.screenReaderMode": "Modalità utilità per la lettura dello schermo"
+ },
+ "vs/workbench/contrib/accessibility/browser/accessibleView": {
+ "accessibility-help": "Guida sull'accessibilità",
+ "accessibility-help-hint": "Guida sull'accessibilità, {0}",
+ "accessible-view": "Visualizzazione accessibile",
+ "accessible-view-hint": "Visualizzazione accessibile, {0}",
+ "accessibleHelpToolbar": "Guida sull'accessibilità",
+ "accessibleViewNextPreviousHint": "Mostra l'elemento successivo{0} o precedente{1}.",
+ "accessibleViewSymbolQuickPickPlaceholder": "Digitare per cercare simboli",
+ "accessibleViewSymbolQuickPickTitle": "Passare al simbolo in Visualizzazione accessibile",
+ "accessibleViewToolbar": "Visualizzazione accessibile",
+ "acessibleViewDisableHint": "\r\nDisabilitare il livello di accessibilità per questa funzionalità{0}.",
+ "acessibleViewHint": "Ispezionarlo nella visualizzazione accessibile con {0}",
+ "acessibleViewHintNoKbEither": "Ispezionarlo nella visualizzazione accessibile tramite il comando Apri visualizzazione accessibile che attualmente non è attivabile tramite il tasto di scelta rapida.",
+ "ariaAccessibleViewActions": "Esplorare azioni come la disabilitazione di questo suggerimento (MAIUSC+TAB).",
+ "ariaAccessibleViewActionsBottom": "Esplorare le azioni come la disabilitazione di questo hint (MAIUSC+TAB), utilizzare ESC per uscire da questa finestra di dialogo.",
+ "configureKb": "\r\nConfigurare i tasti di scelta rapida per i comandi in cui non sono presenti {0}.",
+ "configureKbAssigned": "\r\nConfigurare i tasti di scelta rapida per i comandi che hanno già assegnazioni {0}.",
+ "disableAccessibilityHelp": "{0} livello di accessibilità è ora disabilitato",
+ "exit": "\r\nUscire da questa finestra di dialogo (ESC).",
+ "goToSymbolHint": "Vai a un simbolo{0}.",
+ "insertAtCursor": " - Inserisci il blocco di codice sul cursore{0}.",
+ "insertIntoNewFile": " - Inserisci il blocco di codice in un nuovo file{0}.",
+ "intro": "Nella visualizzazione accessibile è possibile:\r\n",
+ "keybindings": "Configura tasti di scelta rapida",
+ "openDoc": "\r\nAprire una finestra del browser con altre informazioni relative all'accessibilità (H){0}.",
+ "runInTerminal": " - Esegui il blocco di codice nel terminale{0}.\r\n",
+ "selectKeybinding": "Selezionare un ID comando per configurare un tasto di scelta rapida",
+ "symbolLabel": "({0}) {1}",
+ "symbolLabelAria": "({0}) {1}",
+ "toolbar": "Passa alla barra degli strumenti (MAIUSC+TAB)."
+ },
+ "vs/workbench/contrib/accessibility/browser/accessibleViewActions": {
+ "editor.action.accessibilityHelp": "Aprire guida per l’accessibilità",
+ "editor.action.accessibilityHelpConfigureAssignedKeybindings": "Guida all'accessibilità - Configurare i tasti di scelta rapida assegnati",
+ "editor.action.accessibilityHelpConfigureUnassignedKeybindings": "Guida all'accessibilità - Configurare i tasti di scelta rapida non assegnati",
+ "editor.action.accessibilityHelpOpenHelpLink": "Guida per l'accessibilità - Apri collegamento alla Guida",
+ "editor.action.accessibleView": "Apri visualizzazione accessibile",
+ "editor.action.accessibleViewAcceptInlineCompletionAction": "Accetta completamento inline",
+ "editor.action.accessibleViewDisableHint": "Disabilita hint di visualizzazione accessibile",
+ "editor.action.accessibleViewGoToSymbol": "Passare al simbolo in Visualizzazione accessibile",
+ "editor.action.accessibleViewNext": "Mostra avanti in visualizzazione accessibile",
+ "editor.action.accessibleViewNextCodeBlock": "Visualizzazione accessibile: blocco di codice successivo",
+ "editor.action.accessibleViewPrevious": "Mostra precedente in visualizzazione accessibile",
+ "editor.action.accessibleViewPreviousCodeBlock": "Visualizzazione accessibile: blocco di codice precedente"
+ },
+ "vs/workbench/contrib/accessibilitySignals/browser/commands": {
+ "accessibility.announcement.help": "Guida: Elencare gli annunci del segnale",
+ "accessibility.announcement.help.description": "Elenca tutti gli annunci/avvisi di accessibilità, gli avvisi e i messaggi braille e configura le relative impostazioni",
+ "accessibility.sound.help.description": "Elenca tutti i suoni o i segnali audio di accessibilità e configura le relative impostazioni",
+ "announcement.help.placeholder": "Seleziona un annuncio da configurare",
+ "announcement.help.placeholder.disabled": "L'utilità per la lettura dello schermo non è attiva. Gli annunci sono disabilitati per impostazione predefinita.",
+ "announcement.help.settings": "Configurare annuncio",
+ "signals.sound.help": "Guida: Elencare i suoni dei segnali",
+ "sounds.help.placeholder": "Seleziona un suono da riprodurre e configurare",
+ "sounds.help.settings": "Configura suono"
+ },
+ "vs/workbench/contrib/accessibilitySignals/browser/openDiffEditorAnnouncement": {
+ "openDiffEditorAnnouncement": "Editor diff"
+ },
+ "vs/workbench/contrib/accountEntitlements/browser/accountsEntitlements.contribution": {
+ "workbench.accounts.showEntitlements": "When enabled, available entitlements for the account will be shown in the accounts menu."
},
"vs/workbench/contrib/audioCues/browser/audioCues.contribution": {
+ "audioCues.chatRequestSent": "Riproduce un suono quando viene effettuata una richiesta di chat.",
+ "audioCues.chatResponsePending": "Riproduce un suono sul ciclo mentre la risposta è in sospeso.",
+ "audioCues.chatResponseReceived": "Riproduce un suono sul ciclo mentre la risposta è stata ricevuta.",
+ "audioCues.clear": "Riproduce un suono quando viene cancellata una funzionalità, ad esempio il terminale, la console di debug o il canale di output. Quando questa opzione è disabilitata, un avviso ARIA annuncerà 'Cancellato'.",
+ "audioCues.debouncePositionChanges": "Indica se i le modifiche di posizione debbano o meno essere revocate",
+ "audioCues.diffLineDeleted": "Riproduce un suono quando lo stato attivo si sposta su una riga eliminata in modalità Visualizzatore differenze accessibile o sulla modifica successiva/precedente.",
+ "audioCues.diffLineInserted": "Riproduce un suono quando lo stato attivo si sposta su una riga inserita in modalità Visualizzatore differenze accessibile o sulla modifica successiva/precedente.",
+ "audioCues.diffLineModified": "Riproduce un suono quando lo stato attivo si sposta su una riga modificata in modalità Visualizzatore differenze accessibile o sulla modifica successiva/precedente.",
"audioCues.enabled.auto": "Abilita segnale audio quando è collegata un'utilità per la lettura dello schermo.",
"audioCues.enabled.off": "Disabilita il segnale audio.",
"audioCues.enabled.on": "Abilita segnale audio.",
+ "audioCues.format": "Riproduce un suono quando viene formattato un file o un blocco appunti. Vedere anche {0}",
+ "audioCues.format.always": "Riproduce il segnale audio ogni volta che un file viene formattato, anche se è impostato per il formato durante il salvataggio, la digitazione, l'incollamento o l'esecuzione di una cella.",
+ "audioCues.format.never": "Non riprodurre mai il segnale audio.",
+ "audioCues.format.userGesture": "Riproduce il segnale audio quando un utente formatta un file in modo esplicito.",
"audioCues.lineHasBreakpoint": "Riproduce un suono quando la riga attiva ha un punto di interruzione.",
"audioCues.lineHasError": "Riproduce un suono quando la riga attiva ha un errore.",
"audioCues.lineHasFoldedArea": "Riproduce un suono quando la riga attiva ha un'area ripiegata che può essere aperta.",
"audioCues.lineHasInlineSuggestion": "Riproduce un suono quando la riga attiva contiene un suggerimento inline.",
"audioCues.lineHasWarning": "Riproduce un suono quando la riga attiva ha un avviso.",
"audioCues.noInlayHints": "Riproduce un suono durante il tentativo di lettura di una riga con hints di inlay senza hint di inlay.",
+ "audioCues.notebookCellCompleted": "Riproduce un suono quando l'esecuzione di una cella del notebook viene completata correttamente.",
+ "audioCues.notebookCellFailed": "Riproduce un suono quando l'esecuzione di una cella del notebook ha esito negativo.",
"audioCues.onDebugBreak": "Riproduce un suono quando il debugger si arresta in un punto di interruzione.",
+ "audioCues.save": "Riproduce un suono quando un file viene salvato. Vedere anche {0}",
+ "audioCues.save.always": "Riproduce il segnale audio ogni volta che un file viene salvato, incluso il salvataggio automatico.",
+ "audioCues.save.never": "Non riprodurre mai il segnale audio.",
+ "audioCues.save.userGesture": "Riproduce il segnale audio quando un utente salva un file in modo esplicito.",
+ "audioCues.taskCompleted": "Riproduce un suono al termine di un'attività.",
+ "audioCues.taskFailed": "Riproduce un suono quando un'attività non riesce (codice di uscita diverso da zero).",
+ "audioCues.terminalCommandFailed": "Riproduce un suono quando un comando del terminale ha esito negativo (codice di uscita diverso da zero).",
+ "audioCues.terminalQuickFix": "Riproduce un suono quando sono disponibili correzioni rapide del terminale.",
"audioCues.volume": "Volume dei segnali audio in percentuale (0-100)."
},
"vs/workbench/contrib/audioCues/browser/commands": {
+ "accessibility.alert.help": "Guida: elenco avvisi",
+ "alerts.help.placeholder": "Ispezionare e configurare lo stato di un avviso",
+ "alerts.help.settings": "Abilita/disabilita il segnale audio",
"audioCues.help": "Guida: Elenca segnali audio",
"audioCues.help.placeholder": "Seleziona un segnale audio da riprodurre",
"audioCues.help.settings": "Abilita/disabilita il segnale audio",
"disabled": "Disabilitato"
},
- "vs/workbench/contrib/backup/electron-sandbox/backupTracker": {
- "backupTrackerBackupFailed": "Non è stato possibile salvare gli editor modificati ma non salvati nel percorso di backup.",
- "backupTrackerConfirmFailed": "Non è stato possibile salvare o ripristinare gli editor modificati ma non salvati.",
- "backupErrorDetails": "Salvare o ripristinare gli editor modificati ma non salvati prima di riprovare.",
- "ok": "OK",
- "backupBeforeShutdown": "In attesa degli editor modificati ma non salvati di cui eseguire il backup...",
- "saveBeforeShutdown": "In attesa degli editor modificati ma non salvati da salvare...",
- "revertBeforeShutdown": "In attesa degli editor modificati ma non salvati da ripristinare..."
+ "vs/workbench/contrib/authentication/browser/actions/manageAccountPreferencesForExtensionAction": {
+ "accounts": "Account",
+ "currentAccount": "Account corrente",
+ "manageAccountPreferenceForExtension": "Gestisci preferenze account estensione...",
+ "noAccountUsage": "Questa estensione non ha ancora usato alcun account.",
+ "noAccounts": "Nessun account attualmente usato da questa estensione.",
+ "pickAProviderTitle": "Gestisci preferenze account estensione",
+ "placeholder v2": "Gestisci '{0}' preferenze account per {1}...",
+ "selectExtension": "Seleziona un'estensione per cui gestire le preferenze account",
+ "selectProvider": "Selezionare un provider di autenticazione per cui gestire le preferenze degli account",
+ "title": "'{0}' preferenze degli account per questa area di lavoro",
+ "use new account": "Usa un nuovo account..."
+ },
+ "vs/workbench/contrib/authentication/browser/actions/manageAccountPreferencesForMcpServerAction": {
+ "accounts": "Account",
+ "currentAccount": "Account corrente",
+ "manageAccountPreferenceForMcpServer": "Gestisci preferenze account server MCP",
+ "noAccountUsage": "Questo server MCP non ha ancora usato alcun account.",
+ "noAccounts": "Nessun account attualmente usato da questo server MCP.",
+ "pickAProviderTitle": "Gestisci preferenze account server MCP",
+ "placeholder v2": "Gestisci '{0}' preferenze account per {1}...",
+ "selectProvider": "Selezionare un provider di autenticazione per cui gestire le preferenze degli account",
+ "title": "'{0}' preferenze degli account per questa area di lavoro",
+ "use new account": "Usa un nuovo account..."
+ },
+ "vs/workbench/contrib/authentication/browser/actions/manageAccountsAction": {
+ "accounts": "Account",
+ "manageAccount": "Gestisci '{0}'",
+ "manageAccounts": "Gestisci account",
+ "manageTrustedExtensions": "Gestisci estensioni attendibili",
+ "manageTrustedMCPServers": "Gestisci server MCP attendibili",
+ "noActiveAccounts": "Non sono presenti account attivi.",
+ "pickAccount": "Selezionare un account da gestire",
+ "selectAction": "Seleziona un'azione",
+ "signOut": "Disconnetti"
+ },
+ "vs/workbench/contrib/authentication/browser/actions/manageDynamicAuthenticationProvidersAction": {
+ "authenticationCategory": "Autenticazione",
+ "clientId": "ID client: {0}",
+ "confirmDeleteDetail": "Verranno rimossi tutti i dati di autenticazione archiviati per i provider selezionati. Se si usano di nuovo questi provider, sarà necessario ripetere l'autenticazione.",
+ "confirmDeleteMultipleProviders": "Rimuovere {0} provider di autenticazione dinamica: {1}?",
+ "confirmDeleteSingleProvider": "Rimuovere il provider di autenticazione dinamica \"{0}\"?",
+ "noDynamicProviders": "Nessun provider di autenticazione dinamica",
+ "noDynamicProvidersDetail": "Non è stato ancora usato alcun provider di autenticazione dinamica.",
+ "remove": "Rimuovi",
+ "removeDynamicAuthProviders": "Rimuovi provider di autenticazione dinamica",
+ "selectProviderToRemove": "Selezionare un provider di autenticazione dinamica da rimuovere"
+ },
+ "vs/workbench/contrib/authentication/browser/actions/manageTrustedExtensionsForAccountAction": {
+ "accountLastUsedDate": "Ultimo utilizzo di questo account: {0}",
+ "accountPreferences": "Gestisci le preferenze degli account per questa estensione",
+ "accounts": "Account",
+ "manageExtensions": "Scegliere le estensioni che possono accedere a questo account",
+ "manageTrustedExtensions": "Gestisci estensioni attendibili",
+ "manageTrustedExtensions.cancel": "Annulla",
+ "manageTrustedExtensionsForAccount": "Gestire le estensioni attendibili per l'account",
+ "noTrustedExtensions": "Questo account non è stato usato da alcuna estensione.",
+ "notUsed": "Account non usato",
+ "pickAccount": "Selezionare un account per cui gestire le estensioni attendibili",
+ "trustedExtensionTooltip": "Questa estensione è considerata attendibile da Microsoft e\r\nha sempre accesso a questo account",
+ "trustedExtensions": "Considerato attendibile da Microsoft",
+ "viewExtensionDetails": "Visualizza dettagli estensione"
+ },
+ "vs/workbench/contrib/authentication/browser/actions/manageTrustedMcpServersForAccountAction": {
+ "accountLastUsedDate": "Ultimo utilizzo di questo account: {0}",
+ "accountPreferences": "Gestisci le preferenze dell'account per questo server MCP",
+ "accounts": "Account",
+ "manageMcpServers": "Scegli quali server MCP possono accedere a questo account",
+ "manageTrustedMcpServers": "Gestisci server MCP attendibili",
+ "manageTrustedMcpServers.cancel": "Annulla",
+ "manageTrustedMcpServersForAccount": "Gestisci server MCP attendibili per l'account",
+ "noTrustedMcpServers": "Questo account non è stato usato da alcun server MCP.",
+ "notUsed": "Account non usato",
+ "pickAccount": "Seleziona un account per cui gestire i server MCP attendibili",
+ "trustedMcpServerTooltip": "Questo server MCP è considerato attendibile da Microsoft e\r\nha sempre accesso a questo account",
+ "trustedMcpServers": "Considerato attendibile da Microsoft"
+ },
+ "vs/workbench/contrib/authentication/browser/actions/signOutOfAccountAction": {
+ "signOut": "&&Disconnetti",
+ "signOutMessage": "L'account '{0}' è stato usato da: \r\n\r\n{1}\r\n\r\n Disconnettersi da queste estensioni?",
+ "signOutMessageSimple": "Disconnettersi da '{0}'?",
+ "signOutOfAccount": "Disconnettiti dall'account"
+ },
+ "vs/workbench/contrib/authentication/browser/authentication.contribution": {
+ "authentication": "Autenticazione",
+ "authenticationMcpAuthorizationServers": "Server di autorizzazione MCP",
+ "authenticationid": "ID",
+ "authenticationlabel": "Etichetta"
},
"vs/workbench/contrib/bulkEdit/browser/bulkEditService": {
- "areYouSureQuiteBulkEdit": "Si vuole {0}? '{1}' è in corso.",
- "changeWorkspace": "Cambia area di lavoro",
- "closeTheWindow": "Chiudi finestra",
+ "areYouSureQuiteBulkEdit.detail": "'{0}' è in corso.",
+ "changeWorkspace.message": "Modificare l'area di lavoro?",
+ "closeTheWindow.message": "Chiudere la finestra?",
"fileOperation": "Operazione su file",
"nothing": "Non sono state apportate modifiche",
- "quit": "Esci",
+ "quitMessage": "Uscire?",
+ "quitMessageMac": "Uscire?",
"refactoring.autoSave": "Controlla se i file che facevano parte di un refactoring vengono salvati automaticamente",
- "reloadTheWindow": "Ricarica finestra",
+ "reloadTheWindow.message": "Ricaricare la finestra?",
"summary.0": "Non sono state apportate modifiche",
"summary.n0": "Effettuate {0} modifiche al testo in un file",
"summary.nm": "Effettuate {0} modifiche al testo in {1} file",
@@ -4259,9 +5793,8 @@
"vs/workbench/contrib/bulkEdit/browser/preview/bulkEdit.contribution": {
"Discard": "Rimuovi refactoring",
"apply": "Applica refactoring",
- "cancel": "Annulla",
"cat": "Anteprima refactoring",
- "continue": "Continua",
+ "continue": "&&Continua",
"detail": "Fare clic su 'Continua' per rimuovere il refactoring precedente e continuare con quello corrente.",
"groupByFile": "Raggruppa modifiche per file",
"groupByType": "Raggruppa modifiche per tipo",
@@ -4274,13 +5807,8 @@
"cancel": "Rimuovi",
"conflict.1": "Non è possibile applicare il refactoring perché nel frattempo '{0}' è stato modificato.",
"conflict.N": "Non è possibile applicare il refactoring perché nel frattempo altri {0} file sono stati modificati.",
- "create": "Crea",
- "edt.title.1": "{0} (anteprima refactoring)",
- "edt.title.2": "{0} ({1}, anteprima refactoring)",
- "edt.title.del": "{0} (eliminazione, anteprima refactoring)",
"empty.msg": "Richiamare un'azione codice, come rename, per visualizzare qui un'anteprima delle modifiche.",
- "ok": "Applica",
- "rename": "Rinomina"
+ "ok": "Applica"
},
"vs/workbench/contrib/bulkEdit/browser/preview/bulkEditPreview": {
"default": "Altro"
@@ -4329,67 +5857,1937 @@
"to": "chiamanti di {0}",
"tree.aria": "Gerarchia di chiamata"
},
- "vs/workbench/contrib/cli/node/cli.contribution": {
- "shellCommand": "Comando della shell",
- "install": "Installa il comando '{0}' in PATH",
- "not available": "Questo comando non è disponibile",
- "ok": "OK",
- "cancel2": "Annulla",
- "warnEscalation": "Visual Studio Code eseguirà 'osascript' per richiedere i privilegi di amministratore per installare il comando della shell.",
- "cantCreateBinFolder": "Non è possibile creare '/usr/local/bin'.",
- "aborted": "Operazione interrotta",
- "successIn": "Il comando della shell '{0}' è stato installato in PATH.",
- "uninstall": "Disinstalla il comando '{0}' da PATH",
- "warnEscalationUninstall": "Visual Studio Code richiederà i privilegi di amministratore per disinstallare il comando della shell con 'osascript'.",
- "cantUninstall": "Non è possibile disinstallare il comando '{0}' della shell.",
- "successFrom": "Il comando della shell '{0}' è stato disinstallato da PATH."
+ "vs/workbench/contrib/chat/browser/actions/chatAccessibilityActions": {
+ "chat.category": "Chat",
+ "chatNotReady": "Interfaccia chat non pronta.",
+ "focusChatConfirmation": "Conferma chat focus",
+ "noChatSession": "Nessuna sessione di chat attiva trovata.",
+ "noConfirmationRequired": "Nessuna conferma chat richiesta"
+ },
+ "vs/workbench/contrib/chat/browser/actions/chatAccessibilityHelp": {
+ "chat.announcement": "Le risposte alla chat verranno annunciate man mano che arrivano. Una risposta indicherà il numero di blocchi di codice, se presenti, e quindi il resto della risposta.",
+ "chat.attachments.removal": "Per rimuovere i contesti allegati, spostare lo stato attivo su un allegato e premere CANC o BACKSPACE.",
+ "chat.differencePanel": "La vista della chat del pannello è un'interfaccia permanente che supporta anche l'esplorazione delle domande di completamento suggerite, mentre la visualizzazione della chat rapida è un'interfaccia temporanea per la creazione e la visualizzazione delle richieste.",
+ "chat.differenceQuick": "La vista della chat rapida è un'interfaccia temporanea per la creazione e la visualizzazione delle richieste, mentre la vista della chat del pannello è un'interfaccia persistente che supporta anche l'esplorazione delle domande di completamento suggerite.",
+ "chat.focusMostRecentTerminal": "Per spostare lo stato attivo sull'ultimo terminale chat che ha eseguito uno strumento, richiamare il comando Sposta stato attivo sul terminale chat più recente{0}.",
+ "chat.focusMostRecentTerminalOutput": "Per spostare lo stato attivo sull'output dell'ultimo strumento del terminale chat, richiamare il comando Sposta stato attivo sull'output del terminale chat più recente{0}.",
+ "chat.inspectResponse": "Nella casella di input controllare l’ultima risposta nella visualizzazione accessibile{0}.",
+ "chat.overview": "La vista della chat rapida è costituita da una casella di input e da un elenco di richieste/risposte. La casella di input viene usata per effettuare richieste e l'elenco per visualizzare le risposte.",
+ "chat.progressVerbosity": "Durante l'elaborazione della richiesta di chat, si riceveranno aggiornamenti dettagliati sull'avanzamento se la richiesta impiega più di 4 secondi. Essi includono informazioni come il testo cercato per con X risultati, file creato o file letto . È possibile disattivare questa funzione con accessibility.verboseChatProgressUpdates.",
+ "chat.requestHistory": "Nella casella di input usare le frecce SU e GIÙ per spostarsi nella cronologia delle richieste. Modificare l'input e usare INVIO o il pulsante Invia per eseguire una nuova richiesta.",
+ "chat.showHiddenTerminals": "Se sono presenti terminali chat nascosti, è possibile visualizzarli richiamando il comando Visualizza terminali chat nascosti{0}.",
+ "chat.signals": "I segnali di accessibilità possono essere modificati tramite le impostazioni con un prefisso signals.chat. Per impostazione predefinita, se una richiesta richiede più di 4 secondi, si sentirà un suono che indica che l'avanzamento è ancora in corso.",
+ "chatAgent.acceptTool": "Per accettare un'azione dello strumento, utilizzare il comando Accetta conferma strumento{0}.",
+ "chatAgent.autoApprove": "Per approvare automaticamente le azioni degli strumenti senza conferma manuale, impostare {0} su {1} nelle impostazioni.",
+ "chatAgent.openEditedFilesSetting": "Per impostazione predefinita, quando vengono apportate modifiche ai file, questi vengono aperti. Per modificare questo comportamento, impostare accessibility.openChatEditedFiles su false nelle impostazioni.",
+ "chatAgent.overview": "La visualizzazione dell'agente chat è utilizzata per applicare modifiche tra i file nella tua area di lavoro, abilitare l'esecuzione di comandi nel terminale e altro ancora.",
+ "chatAgent.runCommand": "Per eseguire l'azione, usa il comando accept tool{0}.",
+ "chatAgent.userActionRequired": "Un avviso indicherà quando è richiesta un'azione dell'utente. Ad esempio, se l'agente desidera eseguire qualcosa nel terminale, sentirai Azione richiesta: esegui il comando nel terminale.",
+ "chatEditing.acceptAllFiles": "- Mantieni tutte le modifiche{0}.",
+ "chatEditing.acceptFile": "- Mantieni{0} e Annulla file{1}.",
+ "chatEditing.acceptHunk": "Nell'editor, Mantieni{0}, Annulla{1} o Attiva/Disattiva il diff{2} per la modifica corrente.",
+ "chatEditing.discardAllFiles": "- Annulla tutte le modifiche{0}.",
+ "chatEditing.expectation": "Quando viene effettuata una richiesta, viene riprodotto un indicatore di stato durante l'applicazione delle modifiche.",
+ "chatEditing.format": "È costituito da una casella di input e da un working set di file (MAIUSC+TAB).",
+ "chatEditing.helpfulCommands": "Alcuni comandi utili sono:",
+ "chatEditing.openFileInDiff": "- Aprire il file in Diff{0}.",
+ "chatEditing.overview": "La visualizzazione di modifica della chat viene usata per applicare le modifiche tra i file.",
+ "chatEditing.removeFileFromWorkingSet": "- Rimuovere il file dal working set{0}.",
+ "chatEditing.review": "Dopo aver applicato le modifiche, verrà riprodotto un suono per indicare che il documento è stato aperto ed è pronto per la revisione. L'audio può essere disabilitato con accessibility.signals.chatEditModifiedFile.",
+ "chatEditing.saveAllFiles": "- Salva tutti i file{0}.",
+ "chatEditing.sections": "Spostarsi tra le modifiche nell'editor esplorando le{0} precedenti e le{1} successive",
+ "chatEditing.undoKeepSounds": "I suoni verranno riprodotti quando una modifica viene accettata o annullata. I suoni possono essere disabilitati con accessibility.signals.editsKept e accessibility.signals.editsUndone.",
+ "inlineChat.access": "Può essere attivato tramite azioni del codice o direttamente usando il comando: Inline Chat: Start Chat ({0}).",
+ "inlineChat.contextActions": "Le azioni del menu di scelta rapida possono eseguire una richiesta con prefisso /. Digitare /per individuare tali comandi pronti.",
+ "inlineChat.diff": "Una volta nell'editor diff, attivare la modalità di revisione con {0}. Usare le frecce SU e GIÙ per spostarsi tra le righe con le modifiche proposte.",
+ "inlineChat.fix": "Se viene richiamata un'azione di correzione, una risposta indicherà il problema con il codice corrente. Verrà eseguito il rendering di un editor diff che può essere raggiunto tramite tabulazione.",
+ "inlineChat.inspectResponse": "Nella casella di input controllare la risposta nella visualizzazione accessibile{0}.",
+ "inlineChat.overview": "La chat inline si verifica all'interno di un editor di codice e tiene conto della selezione corrente. È utile per apportare modifiche all'editor corrente. Ad esempio, la correzione della diagnostica, la documentazione o il refactoring del codice. Tenere presente che il codice generato dall'intelligenza artificiale potrebbe non essere corretto.",
+ "inlineChat.requestHistory": "Nella casella di input, usare Mostra precedente{0} e Mostra successivo{1} per esplorare la cronologia delle richieste. Modificare l'input e usare Invio o il pulsante di invio per eseguire una nuova richiesta.",
+ "inlineChat.toolbar": "Usare TAB per raggiungere parti condizionali come comandi, stato, risposte ai messaggi e altro ancora.",
+ "workbench.action.chat.announceConfirmation": "Per focalizzare le finestre di dialogo di conferma della chat in sospeso, richiama il comando Stato conferma chat{0}.",
+ "workbench.action.chat.editing.attachFiles": "- Allega file{0}.",
+ "workbench.action.chat.focus": "Per impostare lo stato attivo sull'elenco delle richieste e risposte della chat, richiamare il comando Chat con stato attivo{0}. Lo stato attivo si sposterà sulla risposta più recente, che è possibile esplorare usando i tasti di direzione SU e GIÙ.",
+ "workbench.action.chat.focusInput": "Per spostare lo stato attivo sulla casella di input per le richieste della chat, richiamare il comando Focus Chat Input{0}.",
+ "workbench.action.chat.focusLastFocusedItem": "Per tornare all'ultima risposta della chat con lo stato attivo, richiamare il comando Sposta stato attivo sull'ultima risposta alla chat con stato attivo{0}.",
+ "workbench.action.chat.newChat": "Per creare una nuova sessione di chat, richiamare il comando Nuova chat{0}.",
+ "workbench.action.chat.nextCodeBlock": "Per spostare lo stato attivo sul blocco di codice successivo all'interno di una risposta, richiamare il comando Chat: Next Code Block{0}.",
+ "workbench.action.chat.nextUserPrompt": "Per passare alla richiesta utente successiva nella conversazione, richiamare il comando Richiesta utente successiva{0}.",
+ "workbench.action.chat.previousUserPrompt": "Per passare alla richiesta utente precedente nella conversazione, richiamare il comando Richiesta utente precedente{0}.",
+ "workbench.action.chat.undoEdits": "- Annulla modifiche{0}."
+ },
+ "vs/workbench/contrib/chat/browser/actions/chatActions": {
+ "actions.interactiveSession.focus": "Elenco chat con stato attivo",
+ "actions.interactiveSession.focusLastFocused": "Sposta lo stato attivo sull'ultimo elemento selezionato nell'elenco chat",
+ "agent.newSession": "Avviare una nuova sessione?",
+ "agent.newSession.confirm": "Sì",
+ "agent.newSessionMessage": "La modifica dell'agente terminerà la sessione di modifica corrente. Cambiare l'agente?",
+ "chat.category": "Chat",
+ "chat.clear.label": "Cancella tutte le chat dell'area di lavoro",
+ "chat.editToolApproval.description": "Modificare/gestire le preferenze di approvazione e conferma degli strumenti per gli agenti di chat IA.",
+ "chat.editToolApproval.label": "Gestisci approvazione strumento",
+ "chat.history.label": "Mostra chat...",
+ "chat.history.recent": "Chat recenti",
+ "chat.history.rename": "Rinomina",
+ "chat.history.showMore": "Mostra di più...",
+ "chat.history.showMoreAgents": "Mostra di più...",
+ "chat.openNewChatToTheSide.label": "Apri il nuovo editor di chat a lato",
+ "chat.toggleChatHistoryVisibility.label": "Cronologia della chat",
+ "chat.toggleDefaultVisibility.label": "Mostra visualizzazione per impostazione predefinita",
+ "chatAndCompletionsQuotaExceeded": "È stata raggiunta la quota mensile di messaggi di chat e suggerimenti inline.",
+ "chatQuotaExceeded": "È stata raggiunta la quota mensile di messaggi di chat. Sono ancora disponibili suggerimenti inline gratuiti.",
+ "chatQuotaExceededButton": "È stata raggiunta la quota di messaggi chat del piano gratuito di GitHub Copilot. Fare clic per informazioni dettagliate.",
+ "chatSessions.newChatInSideBar": "Apri una nuova chat nella barra laterale",
+ "chatSessions.openNewChatInNewWindow": "Apri una nuova chat in una nuova finestra",
+ "completionsQuotaExceeded": "È stata raggiunta la quota mensile di suggerimenti inline. Sono ancora disponibili messaggi di chat gratuiti.",
+ "config.label": "Configura chat",
+ "configureCompletions": "Configura suggerimenti inline...",
+ "copilotQuotaReached": "Quota GitHub Copilot raggiunta",
+ "currentChatLabel": "correnti",
+ "dismiss": "Ignora",
+ "generateCode": "Genera codice",
+ "generateInstructions": "Genera file di istruzioni dell'area di lavoro",
+ "generateInstructions.short": "Genera istruzioni chat",
+ "interactiveSession.clearHistory.label": "Cancella cronologia input",
+ "interactiveSession.focusInput.label": "Input chat con stato attivo",
+ "interactiveSession.history.clear": "Cancella tutte le chat dell'area di lavoro",
+ "interactiveSession.history.delete": "Elimina",
+ "interactiveSession.history.editor": "Aprire nell’editor",
+ "interactiveSession.history.pick": "Passa alla chat",
+ "interactiveSession.history.title": "Cronologia chat dell'area di lavoro",
+ "interactiveSession.history.titleAll": "Tutta la cronologia chat dell'area di lavoro",
+ "interactiveSession.newChatWindow": "Nuova finestra chat",
+ "interactiveSession.open": "Nuovo editor chat",
+ "manageChat": "Gestisci chat",
+ "more": "Altro...",
+ "newChatTitle": "Nuovo titolo della chat",
+ "openChat": "Apri chat",
+ "openChatFeatureSettings": "Impostazioni chat",
+ "openChatFeatureSettings.short": "Impostazioni chat",
+ "openChatMode": "Apri chat ({0})",
+ "quotaResetDate": "La quota verrà reimpostata a {0}.",
+ "resetTrustedTools": "Ripristina conferme strumenti",
+ "resetTrustedToolsSuccess": "Le preferenze di conferma dello strumento sono state reimpostate.",
+ "showCopilotUsageExtensions": "Mostra estensioni usando Copilot",
+ "signInToChatSetup": "Accedere per usare le funzionalità IA...",
+ "switchChat.confirmPhrase": "Se cambi chat, la sessione di modifica corrente verrà terminata.",
+ "switchMode.confirmPhrase": "Se cambia agente, la sessione di modifica corrente verrà terminata.",
+ "title4": "Chat",
+ "toggle.chatControl": "Controlli chat",
+ "toggle.chatControlsDescription": "Attivare/Disattivare la visibilità dei controlli chat nella barra del titolo",
+ "toggleChat": "Attiva/Disattiva chat",
+ "upgradeChat": "Aggiorna piano GitHub Copilot",
+ "upgradePlan": "Aggiorna piano GitHub Copilot",
+ "upgradePro": "Aggiornare a GitHub Copilot Pro",
+ "upgradeToPro": "Eseguire l'aggiornamento a GitHub Copilot Pro (i primi 30 giorni sono gratuiti) per:\r\n- Suggerimenti inline illimitati\r\n- Messaggi di chat illimitati\r\n- Accesso ai modelli Premium"
+ },
+ "vs/workbench/contrib/chat/browser/actions/chatCodeblockActions": {
+ "interactive.applyInEditor.label": "Applica nell'editor",
+ "interactive.applyInEditorWithURL.label": "Applica a {0}",
+ "interactive.compare.apply": "Applica modifiche",
+ "interactive.compare.discard": "Rimuovi modifiche",
+ "interactive.copyCodeBlock.label": "Copia",
+ "interactive.insertCodeBlock.label": "Inserisci in corrispondenza del cursore",
+ "interactive.insertIntoNewFile.label": "Inserisci nel nuovo file",
+ "interactive.nextCodeBlock.label": "Blocco di codice successivo",
+ "interactive.previousCodeBlock.label": "Blocco di codice precedente",
+ "interactive.runInTerminal.label": "Inserisci nel terminale"
+ },
+ "vs/workbench/contrib/chat/browser/actions/chatContext": {
+ "chatContext.attachScreenshot.labelElectron.Window": "Finestra screenshot",
+ "chatContext.attachScreenshot.labelWeb": "Screenshot",
+ "chatContext.editors": "Editor aperti",
+ "chatContext.relatedFiles": "File correlati",
+ "chatContext.tools": "Strumenti...",
+ "chatContext.tools.placeholder": "Seleziona uno strumento",
+ "imageFromClipboard": "Immagine dagli Appunti",
+ "pastedImage": "Immagine incollata",
+ "relatedFiles": "Aggiungi file correlati al set di lavoro",
+ "terminal": "Terminale"
+ },
+ "vs/workbench/contrib/chat/browser/actions/chatContextActions": {
+ "chat.insertSearchResults": "Aggiungi i risultati della ricerca alla chat",
+ "chatContext.attach.placeholder": "Cerca allegati",
+ "goBack": "Torna indietro ↩",
+ "workbench.action.chat.attachContext.label.2": "Aggiungi contesto...",
+ "workbench.action.chat.attachFile.label": "Aggiungi File alla chat",
+ "workbench.action.chat.attachFolder.label": "Aggiungi cartella alla chat",
+ "workbench.action.chat.attachSelection.label": "Aggiungere selezione alla chat"
+ },
+ "vs/workbench/contrib/chat/browser/actions/chatContinueInAction": {
+ "chat.learnMore": "Learn More",
+ "continueChatInSession": "Continua la chat in...",
+ "continueSessionIn": "Continua in {0}"
+ },
+ "vs/workbench/contrib/chat/browser/actions/chatCopyActions": {
+ "chat.copyKatexMathSource.label": "Copia origine matematica",
+ "interactive.copyAll.label": "Copia tutto",
+ "interactive.copyItem.label": "Copia"
+ },
+ "vs/workbench/contrib/chat/browser/actions/chatDeveloperActions": {
+ "workbench.action.chat.logChatIndex.label": "Registrare l'indice chat",
+ "workbench.action.chat.logInputHistory.label": "Registra la cronologia degli input chat"
+ },
+ "vs/workbench/contrib/chat/browser/actions/chatElicitationActions": {
+ "chat.acceptElicitation": "Accetta richiesta"
+ },
+ "vs/workbench/contrib/chat/browser/actions/chatExecuteActions": {
+ "actions.chat.submitWithCodebase": "Invia con {0}",
+ "chat.newChat.label": "Invia a nuova chat",
+ "chat.remove.confirmation.checkbox": "Non chiedere più",
+ "chat.remove.confirmation.message2": "Questa operazione rimuoverà tutte le richieste successive e annullerà le modifiche apportate a {0}. Continuare?",
+ "chat.remove.confirmation.multipleEdits.message": "Questa operazione rimuoverà tutte le richieste successive e annullerà le modifiche apportate ai file {0} nel set di lavoro. Continuare?",
+ "chat.remove.confirmation.primaryButton": "Sì",
+ "chat.remove.confirmation.title": "Vuoi annullare {0} modifiche?",
+ "chat.removeLast.confirmation.message2": "Questa operazione rimuoverà l'ultima richiesta e annullerà le modifiche apportate a {0}. Continuare?",
+ "chat.removeLast.confirmation.multipleEdits.message": "Questa operazione rimuoverà l'ultima richiesta e annullerà le modifiche apportate ai file {0} nel set di lavoro. Continuare?",
+ "chat.removeLast.confirmation.title": "Vuoi annullare l'ultima modifica?",
+ "edits.submit.label": "Invia",
+ "interactive.cancel.label": "Annulla",
+ "interactive.cancelEdit.label": "Annulla modifica",
+ "interactive.changeModel.label": "Modificare il modello",
+ "interactive.openChatSessionPrimaryPicker.label": "Apri selezione",
+ "interactive.openModePicker.label": "Apri selezione agenti",
+ "interactive.openModelPicker.label": "Apri selezione modello",
+ "interactive.submit.label": "Invia",
+ "interactive.submit.panel.label": "Invia alla sessione di modifica",
+ "interactive.submitWithoutDispatch.label": "Invia",
+ "interactive.switchToNextModel.label": "Passa al modello successivo",
+ "interactive.toggleAgent.label": "Passa all'agente successivo",
+ "sendToAgent": "Invia all'agente",
+ "setChatMode": "Imposta agente"
+ },
+ "vs/workbench/contrib/chat/browser/actions/chatFileTreeActions": {
+ "interactive.nextFileTree.label": "Albero file successivo",
+ "interactive.previousFileTree.label": "Albero file precedente"
+ },
+ "vs/workbench/contrib/chat/browser/actions/chatImportExport": {
+ "chat.export.label": "Esporta chat...",
+ "chat.file.label": "Sessione di chat",
+ "chat.import.label": "Importa chat..."
+ },
+ "vs/workbench/contrib/chat/browser/actions/chatLanguageModelActions": {
+ "extensionOwner": "{0}",
+ "languageModelAuthPlaceholder": "Scegli quali estensioni possono accedere ai modelli linguistici",
+ "languageModelAuthTitle": "Gestisci accesso al modello linguistico",
+ "manageLanguageModelAuthentication": "Gestisci accesso al modello linguistico...",
+ "noAccessDescription": "Nessuna estensione è attualmente autorizzata a utilizzare modelli di {0}",
+ "noAllowedExtensions": "Nessuna estensione dispone dell'accesso",
+ "noLanguageModels": "Non sono stati trovati modelli linguistici che richiedono l'autenticazione.",
+ "noLanguageModelsDetail": "Attualmente non sono presenti modelli linguistici che richiedono autenticazione.",
+ "openExtension": "Apri estensione",
+ "trustedExtension": "Considerato attendibile da Microsoft"
+ },
+ "vs/workbench/contrib/chat/browser/actions/chatMoveActions": {
+ "chat.openInEditor.label": "Sposta la chat nell'area editor",
+ "chat.openInNewWindow.label": "Sposta la chat in una nuova finestra",
+ "interactiveSession.openInPanel.label": "Sposta la chat nel pannello",
+ "interactiveSession.openInPrimarySidebar.label": "Sposta la chat nella barra laterale primaria",
+ "interactiveSession.openInSecondarySidebar.label": "Sposta la chat nella barra laterale secondaria",
+ "interactiveSession.openInSidebar.label": "Sposta la chat nella barra laterale"
+ },
+ "vs/workbench/contrib/chat/browser/actions/chatNewActions": {
+ "chat.newChat.label": "Nuova chat",
+ "chat.newEdits.label": "Nuova chat",
+ "chat.redoEdit.label": "Ripristina ultima richiesta",
+ "chat.redoEdit.label2": "Ripeti",
+ "chat.redoEdit.tooltip": "Riapplicare la chat e le modifiche all'area di lavoro rimosse",
+ "chat.undoEdit.label": "Annulla ultima richiesta"
+ },
+ "vs/workbench/contrib/chat/browser/actions/chatPromptNavigationActions": {
+ "interactive.nextUserPrompt.label": "Richiesta utente successiva",
+ "interactive.previousUserPrompt.label": "Richiesta utente precedente"
+ },
+ "vs/workbench/contrib/chat/browser/actions/chatQuickInputActions": {
+ "chat.closeQuickChat.label": "Chiudi chat veloce",
+ "chat.openInChatView.label": "Apri nella vista Chat",
+ "interactiveSession.open": "Apri chat veloce",
+ "quickChat": "Apri chat veloce",
+ "toggle.desc": "Attiva/disattiva la chat veloce",
+ "toggle.isPartialQuery": "Indica se la query è parziale; attenderà più input dell'utente",
+ "toggle.query": "Query con cui aprire la chat veloce"
+ },
+ "vs/workbench/contrib/chat/browser/actions/chatSessionActions": {
+ "chat.openSessionInNewEditorGroup.label": "Sposta la chat lateralmente",
+ "chat.openSessionInNewWindow.label": "Sposta la chat in una nuova finestra",
+ "chat.openSessionInSidebar.label": "Sposta la chat nella barra laterale",
+ "chat.sessions.gettingStarted.action": "Introduzione alle sessioni di chat",
+ "chatSessions.extensionAlreadyInstalled": "{0} è già installato",
+ "chatSessions.installExtension": "Installa \"{0}\"",
+ "chatSessions.pickPlaceholder": "Scegliere le estensioni per migliorare l'esperienza di chat",
+ "chatSessions.selectExtension": "Installa estensioni chat",
+ "chatSessions.toggleDescriptionDisplay.label": "Mostra descrizioni dettagliate",
+ "chatSessions.toggleViewLocation.label": "Combined Sessions View",
+ "deleteSession": "Elimina",
+ "deleteSession.confirm": "Eliminare questa sessione di chat?",
+ "deleteSession.delete": "Elimina",
+ "deleteSession.detail": "L'azione non può essere annullata.",
+ "interactiveSession.open": "Nuovo editor chat",
+ "openSessionInNewWindow": "Apri in una nuova finestra",
+ "openSessionInSidebar": "Apri nella barra laterale",
+ "openToSide": "Apri lateralmente",
+ "renameSession": "Rinomina",
+ "renameSession.emptyName": "Il nome non può essere vuoto.",
+ "renameSession.error": "Non è possibile rinominare la sessione di chat: {0}",
+ "renameSession.nameTooLong": "Il nome è troppo lungo (massimo 100 caratteri)",
+ "renameSession.placeholder": "Immettere un nuovo nome per la sessione di chat"
+ },
+ "vs/workbench/contrib/chat/browser/actions/chatTitleActions": {
+ "chat.retry.confirmation.checkbox": "Non visualizzare più questo messaggio",
+ "chat.retry.confirmation.message2": "Questa operazione annullerà le modifiche apportate a {0} dopo questa richiesta.",
+ "chat.retry.confirmation.primaryButton": "Sì",
+ "chat.retry.label": "Riprova",
+ "chat.retryLast.confirmation.message2": "Questa operazione annullerà le modifiche apportate ai file {0} nel set di lavoro dopo questa richiesta. Continuare?",
+ "chat.retryLast.confirmation.title2": "Ritentare l'ultima richiesta?",
+ "interactive.helpful.label": "Utile",
+ "interactive.insertIntoNotebook.label": "Inserisci nel blocco appunti",
+ "interactive.reportIssueForBug.label": "Segnala problema",
+ "interactive.unhelpful.label": "Poco utile"
+ },
+ "vs/workbench/contrib/chat/browser/actions/chatToolActions": {
+ "chat.accept": "Accetta",
+ "chat.skip": "Ignora",
+ "chat.tools.description.agent": "Gli strumenti selezionati sono configurati dall'agente personalizzato '{0}'. Le modifiche apportate agli strumenti verranno applicate anche all'agente personalizzato.",
+ "chat.tools.description.global": "Gli strumenti selezionati verranno applicati globalmente a tutte le sessioni di chat che usano l'agente predefinito.",
+ "chat.tools.description.readOnlyAgent": "Gli strumenti selezionati sono configurati dall'agente personalizzato '{0}'. Le modifiche agli strumenti verranno usate solo per questa sessione e non modificheranno l'agente personalizzato '{0}'.",
+ "chat.tools.description.session": "Gli strumenti selezionati sono stati configurati solo per questa sessione di chat.",
+ "chat.tools.placeholder.agent": "Seleziona gli strumenti per l'agente personalizzato",
+ "chat.tools.placeholder.global": "Selezionare gli strumenti disponibili per la chat.",
+ "chat.tools.placeholder.readOnlyAgent": "Seleziona gli strumenti per l'agente personalizzato",
+ "chat.tools.placeholder.session": "Seleziona gli strumenti per questa sessione di chat",
+ "chatTools.tooManyEnabled": "Più di {0} strumenti sono abilitati. È possibile che si verifichi una riduzione delle prestazioni delle chiamate degli strumenti.",
+ "label": "Configura strumenti..."
+ },
+ "vs/workbench/contrib/chat/browser/actions/chatToolPicker": {
+ "addExtensionButton": "Installare estensione...",
+ "addMcpServer": "Aggiungere server MCP...",
+ "configMcpCol": "Configura {0}",
+ "configToolSets": "Configurare i set di strumenti...",
+ "configureTools": "Configurare gli strumenti",
+ "defaultBucketLabel": "Predefinito",
+ "editUserBucket": "Modificare set di strumenti",
+ "mcpShowOutput": "Mostra output",
+ "mcpUpdate": "Aggiorna strumenti",
+ "noTools": "Aggiungi strumenti alla chat",
+ "toolLimitExceeded": "{0} strumenti sono abilitati. È possibile che si verifichi una riduzione delle prestazioni delle chiamate di strumenti con più di {1} strumenti.",
+ "userBucket": "Set di strumenti definiti dall'utente"
+ },
+ "vs/workbench/contrib/chat/browser/actions/codeBlockOperations": {
+ "activeEditor": "'{0}' editor attivo",
+ "applyCodeBlock.error": "Non è stato possibile applicare il blocco di codice: {0}",
+ "applyCodeBlock.errorOpeningFile": "Non è stato possibile aprire {0} in un editor di codice.",
+ "applyCodeBlock.fileWriteError": "Non è stato possibile creare il file: {0}",
+ "applyCodeBlock.noActiveEditor": "Per applicare questo blocco di codice, aprire un editor di codice o notebook.",
+ "applyCodeBlock.noCodeMapper": "Nessun mapper di codice disponibile.",
+ "applyCodeBlock.progress": "È in corso l'applicazione del blocco di codice usando {0}...",
+ "applyCodeBlock.readonly": "Non è possibile applicare il blocco di codice al file di sola lettura.",
+ "applyCodeBlock.readonlyNotebook": "Non è possibile applicare il blocco di codice all'editor di notebook di sola lettura.",
+ "createFile": "Nuovo file '{0}'",
+ "insertCodeBlock.noActiveEditor": "Per inserire il blocco di codice, aprire un editor di codice o un editor di notebook e impostare il cursore nella posizione in cui inserire il blocco di codice.",
+ "insertCodeBlock.readonly": "Non è possibile inserire il blocco di codice nell'editor di codice di sola lettura.",
+ "insertCodeBlock.readonlyNotebook": "Non è possibile inserire il blocco di codice nell'editor di notebook di sola lettura.",
+ "newUntitledFile": "Nuovo editor senza titolo",
+ "selectOption": "Selezionare dove applicare il blocco di codice"
+ },
+ "vs/workbench/contrib/chat/browser/actions/manageModelsActions": {
+ "manageLanguageModels": "Gestisci modelli linguistici..."
+ },
+ "vs/workbench/contrib/chat/browser/agentSessions/agentSessions": {
+ "chat.session.providerLabel.background": "Sfondo",
+ "chat.session.providerLabel.cloud": "Cloud",
+ "chat.session.providerLabel.local": "Locale"
+ },
+ "vs/workbench/contrib/chat/browser/agentSessions/agentSessionsActions": {
+ "agentSessions.filter.reset": "Reset",
+ "diffFile": "1 file",
+ "diffFiles": "{0} file",
+ "filterAgentSessions": "Filtra sessioni agente",
+ "find": "Trova sessione agente",
+ "refresh": "Aggiorna sessioni agente",
+ "showDiff": "Apri modifiche"
+ },
+ "vs/workbench/contrib/chat/browser/agentSessions/agentSessionsView": {
+ "agentSessions.newSession": "Nuova sessione",
+ "agentSessions.newSessionAriaLabel": "Nuova sessione",
+ "agentSessions.refreshing": "Aggiornamento delle sessioni dell'agente in corso...",
+ "agentSessions.view.label": "Sessioni dell'agente",
+ "chatSessions.installExtensions": "Installa estensioni chat...",
+ "newBackgroundSession": "Nuova sessione in background",
+ "newChatSessionDefault": "Nuova sessione locale",
+ "newChatSessionFromProvider": "Nuova {0}",
+ "newCloudSession": "Nuova sessione cloud"
+ },
+ "vs/workbench/contrib/chat/browser/agentSessions/agentSessionsViewer": {
+ "agentSessions": "Sessioni dell'agente",
+ "agentSessions.dragLabel": "{0} sessioni dell'agente",
+ "chat.session.status.completed": "Operazione completata",
+ "chat.session.status.completedAfter": "Completato in {0}.",
+ "chat.session.status.failed": "Non riuscita",
+ "chat.session.status.failedAfter": "Non riuscita dopo {0}.",
+ "chat.session.status.inProgress": "Elaborazione in corso...",
+ "chat.session.status.inProgressWithDuration": "Elaborazione in corso... ({0})"
+ },
+ "vs/workbench/contrib/chat/browser/agentSessions/agentSessionsViewFilter": {
+ "agentSessions.filter.archived": "Archiviata",
+ "chatSessionStatus.completed": "Completata",
+ "chatSessionStatus.failed": "Non riuscita",
+ "chatSessionStatus.inProgress": "In corso"
+ },
+ "vs/workbench/contrib/chat/browser/attachments/implicitContextAttachment": {
+ "cell.lowercase": "cella",
+ "chat.fileAttachment": "Collegato {0}, {1}",
+ "chat.fileAttachmentWithRange": "Collegato {0}, {1}, da riga {2} a riga {3}",
+ "disable": "Disabilita contesto {0} corrente",
+ "enable": "Abilita contesto {0} corrente",
+ "enableHint": "Abilita contesto {0} corrente",
+ "file.lowercase": "file",
+ "openEditor": "Contesto {0} corrente",
+ "openFile": "Contesto file corrente"
+ },
+ "vs/workbench/contrib/chat/browser/chat.contribution": {
+ "autoApprove2.description": "L'approvazione automatica globale, nota anche come \"modalità YOLO\", disabilita completamente l'approvazione manuale per tutti gli strumenti in tutte le aree di lavoro, consentendo all'agente di agire in modo totalmente autonomo. Questa condizione è estremamente pericolosa e non è *mai* consigliata, anche in ambienti in contenitori come Codespaces: nei contenitori di sviluppo, infatti, le chiavi utente vengono inoltrate nel contenitore e potrebbero essere compromesse.\r\n\r\nQuesta funzione disabilita le protezioni di sicurezza critiche e rende molto più facile per un utente malintenzionato compromettere il computer.",
+ "chat": "Chat",
+ "chat.agent.enabled.description": "Abilitare la modalità agente per la chat. Se abilitata, la modalità agente può essere attivata tramite il menu a discesa nella visualizzazione.",
+ "chat.agent.maxRequests": "Numero massimo di richieste consentite per turno durante l'uso di un agente. Quando viene raggiunto il limite, all'utente verrà chiesto di confermare per continuare.",
+ "chat.agent.thinking.collapsedTools": "Se l'opzione è abilita, le chiamate agli strumenti vengono aggiunte nella sezione di elaborazione comprimibile in base alla modalità selezionata.",
+ "chat.agent.thinking.collapsedTools.all": "Tutte le chiamate a strumenti sono state aggiunte nella sezione di elaborazione comprimibile.",
+ "chat.agent.thinking.collapsedTools.none": "Nessuna chiamata a strumenti è stata aggiunta nella sezione di elaborazione comprimibile.",
+ "chat.agent.thinking.collapsedTools.readOnly": "Nessuna chiamata a strumenti di sola lettura è stata aggiunta nella sezione di elaborazione comprimibile.",
+ "chat.agent.thinkingMode.collapsed": "Le parti di pensiero verranno compresse per impostazione predefinita.",
+ "chat.agent.thinkingMode.collapsedPreview": "Le parti di pensiero verranno espanse per prime, quindi verranno compresse quando verrà raggiunta una parte che non è di pensiero.",
+ "chat.agent.thinkingMode.fixedScrolling": "Mostrare l'elaborazione in un pannello di streaming ad altezza fissa con scorrimento automatico; cliccare sull'intestazione per espanderlo a tutta altezza.",
+ "chat.agent.thinkingStyle": "Determina come viene reso il pensiero.",
+ "chat.allowAnonymousAccess": "Controlla se l'accesso anonimo è consentito nella chat.",
+ "chat.checkpoints.enabled": "Abilita i checkpoint nella chat. I checkpoint consentono di ripristinare la chat a uno stato precedente.",
+ "chat.checkpoints.showFileChanges": "Indica se visualizzare le modifiche ai file di checkpoint della chat.",
+ "chat.codeBlock.showProgressAnimation.description": "Quando si applicano modifiche, mostra un'animazione dell'avanzamento nell'etichetta del blocco di codice. Se l'opzione è disabilitata, mostra invece la percentuale di avanzamento.",
+ "chat.commandCenter.enabled": "Controllare se il centro comandi mostra un menu per le azioni per controllare la chat (richiede {0}).",
+ "chat.detectParticipant.enabled": "Abilita il rilevamento automatico dei partecipanti alla chat per la chat del pannello.",
+ "chat.disableAIFeatures": "Disabilita e nasconde le funzionalità IA predefinite fornite da GitHub Copilot, tra cui chat e suggerimenti inline.",
+ "chat.editRequests": "Consente di modificare le richieste nella chat. Questo permette di cambiare il contenuto della richiesta e inviarlo nuovamente al modello.",
+ "chat.editing.autoAcceptDelay": "Ritardo dopo il quale le modifiche apportate dalla chat vengono accettate automaticamente. I valori sono in secondi, '0' indica disabilitato e '100' secondi è il massimo.",
+ "chat.editing.confirmEditRequestRemoval": "Indica se visualizzare una conferma prima di rimuovere una richiesta e le modifiche associate.",
+ "chat.editing.confirmEditRequestRetry": "Indica se visualizzare una conferma prima di riprovare una richiesta e le modifiche associate.",
+ "chat.edits2Enabled": "Abilitare la nuova modalità Modifiche basata sulla chiamata di strumenti. Quando questa modalità è abilitata, i modelli che non supportano la chiamata di strumenti non sono disponibili per la modalità Modifiche.",
+ "chat.emptyState.history.enabled": "Mostra la cronologia recente della chat quando lo stato della chat è vuoto.",
+ "chat.experimental.detectParticipant.enabled": "Abilita il rilevamento automatico dei partecipanti alla chat per la chat del pannello.",
+ "chat.experimental.detectParticipant.enabled.deprecated": "Questa impostazione è deprecata. Usare invece 'chat.detectParticipant.enabled'.",
+ "chat.extensionToolsEnabled": "Abilita l'uso degli strumenti forniti dalle estensioni di terze parti.",
+ "chat.extensionUnification.enabled": "Abilita l'unificazione delle estensioni GitHub Copilot. Se l'opzione è abilitata, tutte le funzionalità di GitHub Copilot sono fornite tramite l'estensione GitHub Copilot Chat. Se l'opzione disabilitata, le estensioni GitHub Copilot e GitHub Copilot Chat funzionano in modo indipendente.",
+ "chat.fontFamily": "Determina la famiglia di caratteri nei messaggi di chat.",
+ "chat.fontSize": "Determina le dimensioni del carattere in pixel nei messaggi di chat.",
+ "chat.hideNewButtonInAgentSessionsView": "Controlla se il pulsante nuova sessione è nascosto nella vista delle sessioni agente.",
+ "chat.implicitContext.enabled.1": "Abilita automaticamente l'uso dell'editor attivo come contesto di chat per le posizioni di chat specificate.",
+ "chat.implicitContext.suggestedContext": "Controlla se viene visualizzato il nuovo flusso del contesto implicito. Nelle modalità Chiedi e Modifica, il contesto verrà incluso automaticamente. Durante l'uso di un agente, il contesto verrà suggerito come allegato. Le selezioni sono sempre incluse come contesto.",
+ "chat.implicitContext.value": "Il valore per il contesto implicito.",
+ "chat.implicitContext.value.always": "Il contesto implicito è sempre abilitato.",
+ "chat.implicitContext.value.first": "Il contesto implicito è abilitato per la prima interazione.",
+ "chat.implicitContext.value.never": "Il contesto implicito non è mai abilitato.",
+ "chat.instructions.config.locations.description": "Specificare i percorsi dei file di istruzioni (\"*{0}\") che possono essere allegati nelle sessioni di chat. [Altre informazioni]({1}).\r\n\r\nI percorsi relativi vengono risolti dalle cartelle radice dell'area di lavoro.",
+ "chat.instructions.config.locations.title": "Percorsi dei file delle istruzioni",
+ "chat.mathEnabled.description": "Abilitare il rendering matematico nelle risposte della chat con KaTeX.",
+ "chat.mcp.access": "Controlla l'accesso ai server Model Context Protocol installati.",
+ "chat.mcp.access.any": "Consenti l'accesso a qualsiasi server MCP installato.",
+ "chat.mcp.access.none": "Nessun accesso ai server MCP.",
+ "chat.mcp.access.registry": "Consente l'accesso ai server MCP installati dal registro a cui VS Code è connesso.",
+ "chat.mcp.assisted.nuget.enabled.description": "Abilita i pacchetti NuGet per l'installazione dei server MCP con l'assistenza dell'intelligenza artificiale. Consente di installare i server MCP in base al nome dal registro centrale dei pacchetti .NET (NuGet.org).",
+ "chat.mcp.autostart": "Indica se i server MCP devono essere avviati automaticamente quando vengono inviati i messaggi della chat.",
+ "chat.mcp.autostart.never": "Non avviare mai automaticamente i server MCP.",
+ "chat.mcp.autostart.newAndOutdated": "Avviare automaticamente i server MCP nuovi e obsoleti che non sono ancora in esecuzione.",
+ "chat.mcp.autostart.onlyNew": "Avviare automaticamente solo i nuovi server MCP che non sono mai stati eseguiti.",
+ "chat.mcp.gallery.enabled": "Abilita il Marketplace predefinito per i server MCP (Model Context Protocol).",
+ "chat.mcp.serverSampling": "Configura quali modelli vengono esposti ai server MCP per il campionamento (effettuando richieste di modello in background). Questa impostazione può essere modificata graficamente tramite il comando '{0}'.",
+ "chat.mcp.serverSampling.allowedDuringChat": "Indica se questo server effettua richieste di campionamento durante le chiamate agli strumenti in una sessione di chat.",
+ "chat.mcp.serverSampling.allowedOutsideChat": "Indica se al server è consentito effettuare richieste di campionamento al di fuori di una sessione di chat.",
+ "chat.mcp.serverSampling.model": "Un modello a cui il server MCP ha accesso.",
+ "chat.mode.config.locations.deprecated": "Questa impostazione è deprecata e verrà rimossa nelle versioni future. Le modalità di chat ora si chiamano agenti personalizzati e si trovano in '.github/agents'",
+ "chat.mode.config.locations.description": "Specificare il percorso o i percorsi dei file della modalità chat personalizzata ('*{0}'). [Altre informazioni]({1}).\r\n\r\nI percorsi relativi vengono risolti dalle cartelle radice dell'area di lavoro.",
+ "chat.mode.config.locations.title": "Percorsi file modalità",
+ "chat.notifyWindowOnConfirmation": "Controlla se una sessione di chat deve inviare una notifica del sistema operativo all'utente quando è necessaria una conferma e la finestra non è nello stato attivo. Può essere una notifica della finestra o un avviso popup di notifica.",
+ "chat.notifyWindowOnResponseReceived": "Controlla se una sessione di chat deve inviare una notifica del sistema operativo all'utente quando viene ricevuta una risposta e la finestra non è nello stato attivo. Può essere una notifica della finestra o un avviso popup di notifica.",
+ "chat.promptFilesRecommendations.description": "Configurare i file di richiesta da consigliare nella visualizzazione di benvenuto della chat. Ogni chiave è un nome file di richiesta e il valore può essere 'true' per consigliare sempre, 'false' per non consigliare mai, oppure un'espressione di tipo [clausola when](https://aka.ms/vscode-when-clause) come 'resourceExtname == .js' o 'resourceLangId == markdown'.",
+ "chat.promptFilesRecommendations.title": "Consigli per i file di richiesta",
+ "chat.renderRelatedFiles": "Consente di controllare se i file correlati devono essere visualizzati nell'input della chat.",
+ "chat.reusablePrompts.config.locations.description": "Specificare i percorsi dei file di richiesta riutilizzabili ('*{0}') che possono essere eseguiti nelle sessioni di chat. [Altre informazioni]({1}).\r\n\r\nI percorsi relativi vengono risolti dalle cartelle radice dell'area di lavoro.",
+ "chat.reusablePrompts.config.locations.title": "Posizioni file richieste",
+ "chat.sendElementsToChat.attachCSS": "Controlla se il CSS dell'elemento selezionato verrà aggiunto alla chat. È necessaria l’abilitazione di {0}.",
+ "chat.sendElementsToChat.attachImages": "Controlla se Controlla se uno screenshot dell'elemento selezionato verrà aggiunto alla chat. È necessaria l’abilitazione di {0}.",
+ "chat.sendElementsToChat.enabled": "Controlla se gli elementi possono essere inviati alla chat dal browser semplice.",
+ "chat.sessionsViewLocation.description": "Consente di specificare dove mostrare il menu delle sessioni dell'agente.",
+ "chat.showAgentSessionsViewDescription": "Determina se le descrizioni delle sessioni vengono visualizzate in una seconda riga nella visualizzazione delle sessioni di chat.",
+ "chat.signInWithAlternateScopes": "Controlla se viene usato l'accesso con ambiti alternativi.",
+ "chat.subagentTool.customAgents": "Indica se lo strumento runSubagent può usare agenti personalizzati. Se l'opzione è abilitata, lo strumento può assumere il nome di un agente personalizzato, ma deve essergli assegnato il nome esatto dell'agente.",
+ "chat.todoListTool.descriptionField": "Se l'opzione è abilitata, gli elementi delle attività includono descrizioni dettagliate per il contesto di implementazione. Ciò fornisce più informazioni ma usa token aggiuntivi e può rallentare le risposte.",
+ "chat.todoListTool.writeOnly": "Se abilitato, lo strumento attività opera in modalità di sola scrittura, richiedendo all'agente di ricordare le attività nel contesto.",
+ "chat.toolReferenceName.description": "{0} - {1}",
+ "chat.tools.autoApprove.edits": "Controlla se le modifiche apportate dalla chat vengono approvate automaticamente. Per impostazione predefinita, vengono approvate tutte le modifiche tranne quelle apportate a determinati file che potrebbero causare effetti collaterali immediati indesiderati, ad esempio '**/.vscode/*.json'.\r\n\r\nImpostare su \"true\" per approvare automaticamente le modifiche ai file corrispondenti, e su \"false\" per richiedere sempre l'approvazione esplicita. L'ultimo modello che corrisponde a un file determina se la modifica viene approvata automaticamente.",
+ "chat.tools.eligibleForAutoApproval": "Controlla quali strumenti possono essere approvati automaticamente. Gli strumenti impostati su 'false' richiederanno sempre una conferma e non offriranno mai l'opzione di approvazione automatica. Il comportamento predefinito (o l'impostazione di uno strumento su 'true') può far sì che lo strumento proponga opzioni di approvazione automatica.",
+ "chat.tools.fetchPage.approvedUrls": "Controlla quali URL vengono approvati automaticamente quando gli strumenti di chat lo richiedono. Le chiavi sono modelli di URL e i valori possono essere 'true' per approvare sia richieste che risposte, 'false' per rifiutare oppure un oggetto con le proprietà 'approveRequest' e 'approveResponse' per un controllo più dettagliato.\r\n\r\nEsempi:\r\n- \"https://example.com\": true - Approva tutte le richieste a example.com\r\n- \"https://example.com\": true - Approva tutte le richieste a qualsiasi dominio di terzo livello di example.com\r\n- `\"https://example.com/api/*\": { \"approveRequest\": true, \"approveResponse\": false }` - Approva le richieste ma non le risposte per i percorsi example.com/api",
+ "chat.tools.todos.showWidget": "Controlla se mostrare il widget dell'elenco attività sopra l'input della chat. Se l'opzione è abilitata, il widget mostra gli elementi attività creati dall'agente e si aggiorna man mano che l'operazione avanza.",
+ "chat.undoRequests.restoreInput": "Controlla se l'input della chat deve essere ripristinato quando viene effettuata una richiesta di annullamento. L'input verrà riempito con il testo della richiesta ripristinata.",
+ "chat.useAgentMd.description": "Controlla se le istruzioni del file \"AGENTS.MD\" trovato nelle radici di un'area di lavoro vengono aggiunte a tutte le richieste di chat.",
+ "chat.useAgentMd.title": "Usare il file AGENTS.MD",
+ "chat.useClaudeSkills.description": "Controlla se le competenze di Claude trovate nell'area di lavoro e nelle directory home degli utenti sotto \".claude/skills\" sono elencate in tutte le richieste di chat. Il modello linguistico può caricare queste competenze su richiesta se è disponibile lo strumento di lettura.",
+ "chat.useClaudeSkills.title": "Usa le competenze di Claude",
+ "chat.useNestedAgentMd.description": "Controlla se le istruzioni contenute nei file annidati \"AGENTS.MD\", trovati nell'area di lavoro, sono elencate in tutte le richieste di chat. Il modello linguistico può caricare queste competenze su richiesta se è disponibile lo strumento di lettura.",
+ "chat.useNestedAgentMd.title": "Usa file AGENTS.MD annidati",
+ "clear": "Avvia una nuova chat",
+ "interactiveSession.editor.fontFamily": "Controlla la famiglia di caratteri nei blocchi di codice della chat.",
+ "interactiveSession.editor.fontSize": "Controlla le dimensioni del carattere in pixel nei blocchi di codice della chat.",
+ "interactiveSession.editor.fontWeight": "Controlla lo spessore del carattere nei blocchi di codice della chat.",
+ "interactiveSession.editor.lineHeight": "Controlla l'altezza della riga in pixel nei blocchi di codice della chat. Usare 0 per calcolare l'altezza della riga in base alle dimensioni del carattere.",
+ "interactiveSession.editor.wordWrap": "Controlla se le righe devono andare a capo nei blocchi di codice della chat.",
+ "interactiveSessionConfigurationTitle": "Chat",
+ "mcp.discovery.enabled": "Configura l'individuazione dei server MCP (Model Context Protocol) a partire dalla configurazione di diverse altre applicazioni.",
+ "mcp.gallery.serviceUrl": "Configura l'URL del servizio Galleria MCP a cui connetterti",
+ "mcp.list": "Elenca i server"
+ },
+ "vs/workbench/contrib/chat/browser/chatAccessibilityProvider": {
+ "chat": "Chat",
+ "multiCodeBlock": "{0}{1}{2} blocchi di codice: {3} {4}",
+ "multiCodeBlockHint": "{0}{1}{2}{3} blocchi di codice: {4}{5} {6}",
+ "multiFileTreeHint": "{0} alberi file ",
+ "multiTableHint": "{0} tabelle ",
+ "noCodeBlocks": "{0}{1}{2} {3}",
+ "noCodeBlocksHint": "{0}{1}{2}{3}{4} {5}",
+ "singleCodeBlock": "{0}{1}1 blocco codice: {2} {3}",
+ "singleCodeBlockHint": "{0}{1}{2}1 blocco di codice: {3} {4}{5}",
+ "singleFileTreeHint": "1 albero file ",
+ "singleTableHint": "1 tabella ",
+ "toolInvocationsHint": "Conferma chat richiesta: {0}",
+ "toolInvocationsHintDetails": "Dettagli: {0}",
+ "toolInvocationsHintKb": "Conferma chat richiesta: {0}. Premi {1} per accettare o {2} per annullare.",
+ "toolPostApprovalTitle": "Approva i risultati dello strumento"
+ },
+ "vs/workbench/contrib/chat/browser/chatAccessibilityService": {
+ "chat.untitledChat": "Chat senza nome",
+ "chatTitle": "Chat: {0}",
+ "notificationDetail": "Nuova risposta nella chat."
+ },
+ "vs/workbench/contrib/chat/browser/chatAgentHover": {
+ "reservedName": "Questa estensione della chat usa un nome riservato.",
+ "viewExtensionLabel": "Visualizza estensione"
+ },
+ "vs/workbench/contrib/chat/browser/chatAttachmentResolveService": {
+ "imageTooLarge": "L'immagine è troppo grande",
+ "imageTooLargeMessage": "L'immagine {0} è troppo grande per essere allegata."
+ },
+ "vs/workbench/contrib/chat/browser/chatAttachmentWidgets": {
+ "chat.NotebookImageAttachment": "Output del Blocco appunti collegato, {0}",
+ "chat.attachment": "Contesto allegato, {0}",
+ "chat.attachment.clearButton": "Rimuovi dal contesto",
+ "chat.clickToViewContents": "Fai clic per visualizzare il contenuto di: {0}",
+ "chat.elementAttachment": "Elemento associato, {0}",
+ "chat.fileAttachment": "File allegato, {0}",
+ "chat.fileAttachmentHover": "{0} non supporta questo tipo di file.",
+ "chat.fileAttachmentWithRange": "File allegato, {0}, da riga {1} a riga {2}",
+ "chat.imageAttachment": "Immagine allegata, {0}",
+ "chat.imageAttachmentHover": "{0} non supporta le immagini.",
+ "chat.imageAttachmentWarning": "Questa GIF è stata parzialmente omessa. Verrà inviato il frame corrente.",
+ "chat.instructionsAttachment": "Collegamento istruzioni, {0}",
+ "chat.omittedFileAttachment": "File omesso: {0}",
+ "chat.omittedImageAttachment": "Immagine omessa: {0}",
+ "chat.omittedNotebookImageAttachment": "Output del Blocco appunti omesso: {0}",
+ "chat.partiallyOmittedImageAttachment": "Immagine parzialmente omessa: {0}",
+ "chat.partiallyOmittedNotebookImageAttachment": "Output del Blocco appunti parzialmente omesso: {0}",
+ "chat.promptAttachment": "File di richiesta, {0}",
+ "chat.terminalCommand": "Comando terminale, {0}",
+ "chat.terminalCommandHoverCommandTitle": "Comando",
+ "chat.terminalCommandHoverCommandTitleExit": "Comando: {0}, codice di uscita: {1}",
+ "chat.terminalCommandHoverHint": "Fare clic per spostare lo stato attivo su questo comando nel terminale.",
+ "chat.terminalCommandHoverOutputTitle": "Output:",
+ "instructions": "Istruzioni",
+ "instructions.label": "Istruzioni aggiuntive",
+ "prompt": "Richiesta",
+ "resource": "Valore completo della risorsa di allegato alla chat, inclusi schema e percorso",
+ "tool": "{0} - {1}",
+ "toolset": "{0} - {1}"
+ },
+ "vs/workbench/contrib/chat/browser/chatContentParts/chatAgentCommandContentPart": {
+ "rerun": "Eseguire di nuovo senza {0}{1}"
+ },
+ "vs/workbench/contrib/chat/browser/chatContentParts/chatAnonymousRateLimitedPart": {
+ "anonymousRateLimited": "Continuare la conversazione effettuando l'accesso. L'account gratuito offre 50 richieste Premium al mese, oltre all'accesso a molti più modelli e funzionalità IA.",
+ "enableMoreAIFeatures": "Abilita altre funzionalità IA"
+ },
+ "vs/workbench/contrib/chat/browser/chatContentParts/chatChangesSummaryPart": {
+ "chat.viewFileChangesSummary": "Visualizza tutte le modifiche apportate ai file"
+ },
+ "vs/workbench/contrib/chat/browser/chatContentParts/chatCodeCitationContentPart": {
+ "viewMatches": "Vedi corrispondenze"
+ },
+ "vs/workbench/contrib/chat/browser/chatContentParts/chatCollapsibleContentPart": {
+ "usedReferencesCollapsed": "{0}, compresso",
+ "usedReferencesExpanded": "{0}, espanso"
+ },
+ "vs/workbench/contrib/chat/browser/chatContentParts/chatCommandContentPart": {
+ "commandButtonDisabled": "Pulsante non disponibile nella chat ripristinata"
+ },
+ "vs/workbench/contrib/chat/browser/chatContentParts/chatConfirmationContentPart": {
+ "accept": "Accetta",
+ "dismiss": "Ignora"
+ },
+ "vs/workbench/contrib/chat/browser/chatContentParts/chatConfirmationWidget": {
+ "chat.confirmationWidget.ariaLabel": "Finestra di dialogo di conferma chat {0} {1}",
+ "chat.untitledChat": "Chat senza nome",
+ "chatTitle": "Chat: {0}",
+ "notificationDetail": "È necessaria l'approvazione per continuare."
+ },
+ "vs/workbench/contrib/chat/browser/chatContentParts/chatExtensionsContentPart": {
+ "chat.extensions.loading": "Caricamento delle estensioni..."
+ },
+ "vs/workbench/contrib/chat/browser/chatContentParts/chatMarkdownContentPart": {
+ "chat.codeblock.applyingEdits": "Applicazione delle modifiche in corso...",
+ "chat.codeblock.applyingPercentage": "({0}%)...",
+ "chat.codeblock.deletions": "{0} eliminazioni",
+ "chat.codeblock.deletions.one": "1 eliminazione",
+ "chat.codeblock.edited": "Modificato",
+ "chat.codeblock.generating": "Generazione delle modifiche in corso...",
+ "chat.codeblock.insertions": "{0} inserimenti",
+ "chat.codeblock.insertions.one": "1 inserimento",
+ "summary": "{0}, {1}, {2} modificati"
+ },
+ "vs/workbench/contrib/chat/browser/chatContentParts/chatMcpServersInteractionContentPart": {
+ "mcp.skip.link": "Ignorare?",
+ "mcp.start.multiple": "I server MCP {0} potrebbero avere nuovi strumenti e richiedere l'interazione per l'avvio. [Avviarli ora?]({1})",
+ "mcp.start.single": "Il server MCP {0} potrebbe avere nuovi strumenti e richiedere l'interazione per l'avvio. [Avviarlo ora?]({1})",
+ "mcp.starting": "Avvio di {0} in corso...",
+ "mcp.starting.servers": "Avvio dei server MCP {0} in corso...",
+ "mcp.working.mcp": "Attivazione delle estensioni MCP..."
+ },
+ "vs/workbench/contrib/chat/browser/chatContentParts/chatMultiDiffContentPart": {
+ "chatEditingSession.fileCounts": "{0} righe aggiunte, {1} righe rimosse",
+ "chatMultiDiff.manyFiles": "{0} file modificati",
+ "chatMultiDiff.oneFile": "1 file modificato",
+ "chatMultiDiff.openAllChanges": "Apri modifiche",
+ "chatMultiDiffList": "Modifiche al file"
+ },
+ "vs/workbench/contrib/chat/browser/chatContentParts/chatProgressContentPart": {
+ "chat.autoapprove.lmServicePerTool.profile": "Approvato automaticamente per questo profilo",
+ "chat.autoapprove.lmServicePerTool.session": "Approvato automaticamente per questa sessione",
+ "chat.autoapprove.lmServicePerTool.workspace": "Approvato automaticamente per questa area di lavoro",
+ "chat.autoapprove.setting": "Approvato automaticamente da {0}",
+ "edit": "Modifica",
+ "toolCallUnresponsive": "In attesa della risposta dello strumento '{0}'...",
+ "workingMessage": "Elaborazione..."
+ },
+ "vs/workbench/contrib/chat/browser/chatContentParts/chatPullRequestContentPart": {
+ "chatPullRequest.seeMore": "Vedi di più"
+ },
+ "vs/workbench/contrib/chat/browser/chatContentParts/chatQuotaExceededPart": {
+ "clickToContinue": "Fare clic per riprovare",
+ "enableAdditionalUsage": "Gestisci le richieste Premium a pagamento",
+ "upgradeToCopilotPro": "Aggiornare a GitHub Copilot Pro",
+ "waitWarning": "Per rendere effettive le modifiche potrebbe essere necessario qualche minuto."
+ },
+ "vs/workbench/contrib/chat/browser/chatContentParts/chatReferencesContentPart": {
+ "addToChat": "Aggiungi file alla chat",
+ "chatCollapsibleList": "Elenco riferimenti chat espandibile",
+ "chatEditingSession.fileCounts": "{0} righe aggiunte, {1} righe rimosse",
+ "copyLink": "Copia collegamento",
+ "setting.hover": "Apri impostazione \"{0}\"",
+ "usedReferencesPlural": "Riferimenti utilizzati {0}",
+ "usedReferencesSingular": "Riferimento {0} utilizzato"
+ },
+ "vs/workbench/contrib/chat/browser/chatContentParts/chatSuggestNextWidget": {
+ "chat.currentMode": "modalità corrente",
+ "chat.proceedFrom": "Procedi da {0}",
+ "chat.suggestNext.item": "{0}"
+ },
+ "vs/workbench/contrib/chat/browser/chatContentParts/chatTextEditContentPart": {
+ "edits0": "Le modifiche sono state interrotte.",
+ "editsSummary": "Modifiche apportate."
+ },
+ "vs/workbench/contrib/chat/browser/chatContentParts/chatThinkingContentPart": {
+ "chat.thinking.fixed.done.generic": "Ho elaborato per alcuni secondi",
+ "chat.thinking.fixed.done.withHeader": "{0}{1}",
+ "chat.thinking.fixed.progress.withHeader": "Elaborazione: {0}",
+ "chat.thinking.header": "In elaborazione..."
+ },
+ "vs/workbench/contrib/chat/browser/chatContentParts/chatTodoListWidget": {
+ "chat.todoList.clearButton": "Cancella tutte le attività",
+ "chat.todoList.clearButton.disabled": "Non è possibile cancellare le attività mentre un'attività è in corso",
+ "chat.todoList.collapseButton": "Comprimi attività",
+ "chat.todoList.currentTask": "{0} ({1}/{2})",
+ "chat.todoList.expandButton": "Espandi attività",
+ "chat.todoList.item": "{0}, {1}",
+ "chat.todoList.itemWithDescription": "{0}, {1}, {2}",
+ "chat.todoList.status.completed": "completato",
+ "chat.todoList.status.inProgress": "in corso",
+ "chat.todoList.status.notStarted": "non avviato",
+ "chat.todoList.title": "Attività",
+ "chat.todoList.titleWithCount": "Attività ({0}/{1})",
+ "chatTodoList": "Elenco attività della chat"
+ },
+ "vs/workbench/contrib/chat/browser/chatContentParts/chatToolInputOutputContentPart": {
+ "chat.input": "Input",
+ "chat.output": "Output"
+ },
+ "vs/workbench/contrib/chat/browser/chatContentParts/chatToolOutputContentSubPart": {
+ "chat.saveResources": "Salva con nome...",
+ "chat.saveResources.error": "Non è stato possibile salvare {0}: {1}",
+ "chat.saveResources.progress": "Salvataggio delle risorse in corso...",
+ "chat.saveResources.reveal": "Risorse salvate in {0}",
+ "chat.saveResources.title": "Selezionare la cartella per salvare le risorse"
+ },
+ "vs/workbench/contrib/chat/browser/chatContentParts/chatTreeContentPart": {
+ "treeAriaLabel": "Albero dei file"
+ },
+ "vs/workbench/contrib/chat/browser/chatContentParts/toolInvocationParts/abstractToolConfirmationSubPart": {
+ "skip": "Ignora"
+ },
+ "vs/workbench/contrib/chat/browser/chatContentParts/toolInvocationParts/chatExtensionsInstallToolSubPart": {
+ "allow": "Consenti",
+ "cancel": "Annulla",
+ "installExtensions": "Installa estensioni",
+ "installExtensionsConfirmation": "Fare clic sul pulsante Installa nell'estensione; al termine, premere Consenti."
+ },
+ "vs/workbench/contrib/chat/browser/chatContentParts/toolInvocationParts/chatInputOutputMarkdownProgressPart": {
+ "chat.autoapprove.lmServicePerTool.profile": "Approvato automaticamente per questo profilo",
+ "chat.autoapprove.lmServicePerTool.session": "Approvato automaticamente per questa sessione",
+ "chat.autoapprove.lmServicePerTool.workspace": "Approvato automaticamente per questa area di lavoro",
+ "chat.autoapprove.setting": "Approvato automaticamente da {0}",
+ "edit": "Modifica"
+ },
+ "vs/workbench/contrib/chat/browser/chatContentParts/toolInvocationParts/chatTerminalToolConfirmationSubPart": {
+ "autoApprove.button.enable": "Abilita",
+ "autoApprove.enable": "Abilita approvazione automatica...",
+ "autoApprove.markdown": "Sarà abilitato un sottoinsieme configurabile di comandi da eseguire nel terminale in modo autonomo. Fornisce *protezione con il massimo sforzo* e presuppone che l'agente non agisca in modo malevolo.",
+ "autoApprove.markdown2": "Altre informazioni sui rischi potenziali e su come evitarli.",
+ "autoApprove.title": "Abilitare l'approvazione automatica del terminale?",
+ "newRule": "La regola di approvazione automatica {0} è stata aggiunta",
+ "newRule.plural": "Regole di approvazione automatica {0} aggiunte",
+ "ruleTooltip": "Visualizza la regola nelle impostazioni",
+ "sessionApproval": "Tutti i comandi saranno approvati automaticamente per la sessione",
+ "sessionApproval.disable": "Disabilita",
+ "skip.detail": "Procedi senza eseguire questo comando",
+ "tool.allow": "Consenti",
+ "tool.skip": "Ignora"
+ },
+ "vs/workbench/contrib/chat/browser/chatContentParts/toolInvocationParts/chatTerminalToolProgressPart": {
+ "chat.focusMostRecentTerminal": "Chat: spostare lo stato attivo sul terminale più recente",
+ "chat.focusMostRecentTerminalOutput": "Chat: imposta lo stato attivo sull'output terminale più recente",
+ "chat.terminalOutputEmpty": "Nessun output prodotto dal comando.",
+ "chat.terminalOutputTruncated": "Output troncato alle prime {0} righe.",
+ "chatTerminalOutputAccessibleViewHeader": "Comando: {0}",
+ "chatTerminalOutputAriaLabel": "Output del terminale per {0}",
+ "focusTerminal": "Spostato stato attivo su terminale",
+ "hideTerminalOutput": "Nascondi output",
+ "showTerminal": "Mostra e sposta lo stato attivo sul terminale",
+ "showTerminalOutput": "Mostra output",
+ "terminalToolCommand": "{0}"
+ },
+ "vs/workbench/contrib/chat/browser/chatContentParts/toolInvocationParts/chatToolConfirmationSubPart": {
+ "allow": "Consenti",
+ "allowReview": "Consenti e rivedi",
+ "allowSkip": "Consenti e ignora la revisione dei risultati",
+ "chat.input": "Input",
+ "seeMore": "Mostra altro",
+ "showMore": "Mostra di più",
+ "skip.detail": "Continua senza eseguire questo strumento"
+ },
+ "vs/workbench/contrib/chat/browser/chatContentParts/toolInvocationParts/chatToolOutputPart": {
+ "chat.toolOutputError": "Errore durante il rendering dell'output dello strumento",
+ "loading": "Output dello strumento di rendering in corso..."
+ },
+ "vs/workbench/contrib/chat/browser/chatContentParts/toolInvocationParts/chatToolPostExecuteConfirmationPart": {
+ "allow": "Consenti",
+ "approveToolResult": "Approva risultato strumento",
+ "noDisplayableResults": "Nessun risultato visualizzabile",
+ "noResults": "Nessun risultato da visualizzare",
+ "skip.post": "Ignora risultati"
+ },
+ "vs/workbench/contrib/chat/browser/chatContext.contribution": {
+ "chatContextExtPoint": "Aggiunge come contributo le integrazioni del contesto della chat al widget chat.",
+ "chatContextExtPoint.icon": "Icona associata all'elemento di contesto della chat.",
+ "chatContextExtPoint.id": "Identificatore univoco per questo elemento.",
+ "chatContextExtPoint.title": "Nome semplice da usare per l'elemento utilizzato per la visualizzazione nei menu."
+ },
+ "vs/workbench/contrib/chat/browser/chatDragAndDrop": {
+ "attacAsContext": "Collega {0} come contesto",
+ "dragAndDroppedImageName": "Immagine da URL",
+ "file": "File",
+ "folder": "Cartella",
+ "image": "Immagine",
+ "notebookOutput": "Output",
+ "problem": "Problema",
+ "scmHistoryItem": "Modifica",
+ "symbol": "Simbolo",
+ "url": "URL"
+ },
+ "vs/workbench/contrib/chat/browser/chatEditing/chatEditingActions": {
+ "accept": "Mantieni",
+ "accept.file": "Mantieni",
+ "acceptAllEdits": "Mantieni tutte le modifiche",
+ "addFilesFromReferences": "Aggiungi file da riferimenti",
+ "chat.editRequests.label": "Modifica richiesta",
+ "chat.editing.discardAll.confirmation.manyFiles": "Questa operazione annullerà le modifiche apportate in {0} file. Continuare?",
+ "chat.editing.discardAll.confirmation.oneFile": "Questa operazione annullerà le modifiche apportate in {0}. Continuare?",
+ "chat.editing.discardAll.confirmation.primaryButton": "Sì",
+ "chat.editing.discardAll.confirmation.title": "Annullare tutte le modifiche?",
+ "chat.openFileUpdatedBySnapshot.label": "Apri file",
+ "chat.openSnapshot.label": "Apri snapshot del file",
+ "chat.remove.confirmation.checkbox": "Non visualizzare più questo messaggio",
+ "chat.remove.confirmation.message2": "Questa operazione rimuoverà tutte le richieste successive e annullerà le modifiche apportate a {0}. Continuare?",
+ "chat.remove.confirmation.multipleEdits.message": "Questa operazione rimuoverà tutte le richieste successive e annullerà le modifiche apportate ai file {0} nel set di lavoro. Continuare?",
+ "chat.remove.confirmation.primaryButton": "Sì",
+ "chat.remove.confirmation.title": "Vuoi annullare {0} modifiche?",
+ "chat.removeLast.confirmation.message2": "Questa operazione rimuoverà l'ultima richiesta e annullerà le modifiche apportate a {0}. Continuare?",
+ "chat.removeLast.confirmation.multipleEdits.message": "Questa operazione rimuoverà l'ultima richiesta e annullerà le modifiche apportate ai file {0} nel set di lavoro. Continuare?",
+ "chat.removeLast.confirmation.title": "Vuoi annullare l'ultima modifica?",
+ "chat.restoreCheckpoint.label": "Ripristina checkpoint",
+ "chat.restoreCheckpoint.tooltip": "Ripristina l'area di lavoro e la chat a questo punto",
+ "chat.restoreLastCheckpoint.label": "Ripristina all'ultimo checkpoint",
+ "chat.undoEdits.label": "Annulla richieste",
+ "chatEditing.snapshot": "{0} (snapshot)",
+ "chatEditing.viewChanges": "Visualizza tutte le modifiche",
+ "chatEditing.viewPreviousEdits": "Visualizza modifiche precedenti",
+ "discard": "Annulla",
+ "discard.file": "Annulla",
+ "discardAllEdits": "Annulla tutte le modifiche",
+ "open.fileInDiff": "Apri modifiche nell'editor Diff"
+ },
+ "vs/workbench/contrib/chat/browser/chatEditing/chatEditingCodeEditorIntegration": {
+ "diff.generic": "{0} (modifiche dalla chat)"
+ },
+ "vs/workbench/contrib/chat/browser/chatEditing/chatEditingEditorActions": {
+ "accept": "Mantieni modifiche chat",
+ "accept2": "Mantieni",
+ "accept3": "Mantieni modifiche chat in questo file",
+ "accept4": "Mantieni tutte le modifiche",
+ "acceptAllEdits": "Mantieni tutte le modifiche della chat",
+ "acceptAllEditsTooltip": "Mantieni tutte le modifiche della chat in questa sessione",
+ "acceptHunk": "Mantieni questa modifica",
+ "acceptHunkShort": "Mantieni",
+ "accessibleDiff": "Mostra visualizzazione differenze accessibile per le modifiche della chat",
+ "diff": "Attiva/disattiva editor differenze per le modifiche della chat",
+ "discard": "Annulla modifiche chat",
+ "discard2": "Annulla",
+ "discard3": "Annulla modifiche chat in questo file",
+ "discard4": "Annulla tutte le modifiche",
+ "label": "Stato di spostamento",
+ "next": "Passare a Modifica chat successiva",
+ "prev": "Passare alla modifica della chat precedente",
+ "review": "Rivedi",
+ "undo": "Annulla questa modifica",
+ "undoShort": "Annulla"
+ },
+ "vs/workbench/contrib/chat/browser/chatEditing/chatEditingEditorContextKeys": {
+ "chat.ctxCursorInChangeRange": "Il cursore si trova all'interno di un intervallo di modifiche creato dalla modifica della chat.",
+ "chat.ctxEditSessionIsGlobal": "L'editor corrente fa parte della sessione di modifica globale",
+ "chat.ctxHasRequestInProgress": "L'editor corrente mostra un file da una sessione di modifica ancora in corso",
+ "chat.ctxReviewModeEnabled": "La modalità di revisione per le modifiche della chat è abilitata",
+ "chat.hasEditorModifications": "L'editor corrente contiene modifiche della chat",
+ "chat.isCurrentlyBeingModified": "L'editor corrente è in fase di modifica",
+ "chatEdits.requestCount": "Numero di turni per cui la sessione di modifica in questo editor ha"
+ },
+ "vs/workbench/contrib/chat/browser/chatEditing/chatEditingEditorOverlay": {
+ "0Of0": "—",
+ "nOfM": "{0} di {1}",
+ "tooltip": "{0} ({1})",
+ "tooltip_11": "1 modifica in 1 file",
+ "tooltip_1n": "1 modifica in {0} file",
+ "tooltip_busy": "{0} - Elaborazione...",
+ "tooltip_n1": "{0} modifiche in 1 file",
+ "tooltip_nm": "{0} modifiche in {1} file",
+ "working": "Elaborazione..."
+ },
+ "vs/workbench/contrib/chat/browser/chatEditing/chatEditingModifiedDocumentEntry": {
+ "chatEditing1": "Modifica chat: '{0}'",
+ "chatEditing2": "Modifica chat",
+ "default": "Modifiche chat"
+ },
+ "vs/workbench/contrib/chat/browser/chatEditing/chatEditingModifiedFileEntry": {
+ "editorSelectionBackground": "Colore delle aree di modifica in sospeso nella minimappa"
+ },
+ "vs/workbench/contrib/chat/browser/chatEditing/chatEditingModifiedNotebookEntry": {
+ "chatNotebookEdit1": "Modifica chat: '{0}'",
+ "chatNotebookEdit2": "Modifica chat"
+ },
+ "vs/workbench/contrib/chat/browser/chatEditing/chatEditingServiceImpl": {
+ "chat": "Modifica della chat",
+ "chatEditing.modified2": "Modifiche in sospeso dalla chat",
+ "join.chatEditingSession": "Salvataggio della cronologia delle modifiche della chat"
+ },
+ "vs/workbench/contrib/chat/browser/chatEditing/chatEditingSession": {
+ "multiDiffEditorInput.name": "Modifiche suggerite"
+ },
+ "vs/workbench/contrib/chat/browser/chatEditing/notebook/chatEditingNotebookEditorIntegration": {
+ "diff.generic": "{0} (modifiche dalla chat)"
+ },
+ "vs/workbench/contrib/chat/browser/chatEditing/simpleBrowserEditorOverlay": {
+ "cancelSelection": "Fai clic per annullare la selezione.",
+ "cancelSelectionLabel": "Annulla",
+ "chat.configureElements": "Configura gli allegati inviati",
+ "chat.expandOverlay": "Espandi sovrimpressione",
+ "chat.hideOverlay": "Comprimi sovrimpressione",
+ "chat.nextSelection": "Seleziona di nuovo",
+ "connectingWebviewElement": "Connessione a webview...",
+ "continuousSelectionDropdown": "Selezione continua",
+ "elementCancelMessage": "Selezione annullata",
+ "elementSelectionComplete": "Elemento aggiunto alla chat",
+ "elementSelectionInProgress": "Selezione dell'elemento in corso...",
+ "elementSelectionMessage": "Aggiungi elemento alla chat",
+ "finishSelectionLabel": "Fatto",
+ "reopenErrorWebviewElement": "Riapri l'anteprima.",
+ "selectAnElement": "Fai clic per selezionare un elemento.",
+ "selectElementDropdown": "Seleziona un elemento",
+ "startSelection": "Avvio"
+ },
+ "vs/workbench/contrib/chat/browser/chatEditor": {
+ "chatEditor.loadingSession": "Caricamento in corso..."
+ },
+ "vs/workbench/contrib/chat/browser/chatEditorInput": {
+ "chat.startEditing.confirmation.acceptEdits": "Mantieni e continua",
+ "chat.startEditing.confirmation.discardEdits": "Annulla e continua",
+ "chat.startEditing.confirmation.pending.message.2": "Mantenere le modifiche in sospeso a {0} file?",
+ "chat.startEditing.confirmation.pending.message.default": "La chiusura dell'editor chat concluderà la sessione di modifica corrente.",
+ "chat.startEditing.confirmation.pending.message.default1": "L'avvio di una nuova chat terminerà la sessione di modifica corrente.",
+ "chat.startEditing.confirmation.title": "Avviare una nuova chat?",
+ "chatEditorConfirmTitle": "Chiudi l'editor chat",
+ "chatEditorLabelIcon": "Icona dell'etichetta dell'editor di chat.",
+ "chatEditorName": "Chat"
+ },
+ "vs/workbench/contrib/chat/browser/chatFollowups": {
+ "followUpAriaLabel": "Domanda di completamento: {0}"
+ },
+ "vs/workbench/contrib/chat/browser/chatInlineAnchorWidget": {
+ "actions.attach.label": "Aggiungi file alla chat",
+ "actions.copy.label": "Copia",
+ "actions.goToDecl.label": "Vai alla definizione",
+ "actions.openToSide.label": "Apri lateralmente",
+ "goToImplementations.label": "Vai a Implementazioni",
+ "goToReferences.label": "Vai a Riferimenti",
+ "goToTypeDefinitions.label": "Vai a Definizioni di tipo",
+ "miGotoDefinition": "Vai alla &&definizione",
+ "miGotoImplementations": "Vai a &&Implementazioni",
+ "miGotoReference": "Vai a &&riferimenti",
+ "miGotoTypeDefinition": "Vai a Definizioni di &&tipo"
+ },
+ "vs/workbench/contrib/chat/browser/chatInputPart": {
+ "actions.chat.accessibiltyHelp": "Input chat {0}{1} Premere INVIO per inviare la richiesta. Usare {2} per la Guida all'accessibilità della chat.",
+ "chatAttachFiles": "Cerca file e contesto da aggiungere alla richiesta",
+ "chatEditingSession.addSuggested": "Aggiungi suggerimento",
+ "chatEditingSession.addSuggestion": "Aggiungi {0} suggerimenti",
+ "chatEditingSession.ariaLabelWithCounts": "{0}, {1} righe aggiunte {2} righe rimosse",
+ "chatEditingSession.manyFiles.1": "{0} file modificati",
+ "chatEditingSession.oneFile.1": "1 file modificato",
+ "chatEditingSession.toggleWorkingSet": "Attiva/disattiva i file modificati.",
+ "chatInput.accessibilityHelp": "Input chat {0}{1}.",
+ "chatInput.accessibilityHelpNoKb": "Input chat {0}{1} Premere INVIO per inviare la richiesta. Usare il comando Guida all'accessibilità della chat per altre informazioni.",
+ "chatInput.mode.agent": "(Agente), modificare i file nell'area di lavoro.",
+ "chatInput.mode.ask": "(Chiedi), porre domande o digitare / per gli argomenti.",
+ "chatInput.mode.custom": "({0}), {1}",
+ "chatInput.mode.edit": "(Modifica), modificare i file nell'area di lavoro.",
+ "chatInput.model": ", {0}. ",
+ "suggeste.title": "{0} - {1}"
+ },
+ "vs/workbench/contrib/chat/browser/chatListRenderer": {
+ "chatConfirmationAction": "\"{0}\" selezionato",
+ "checkpointRestore": "Checkpoint ripristinato",
+ "didNotFollowInstructions": "Istruzioni non seguite",
+ "incompleteCode": "Codice non completo",
+ "incorrectCode": "Codice suggerito non corretto",
+ "missingContext": "Contesto mancante",
+ "offensiveOrUnsafe": "Offensiva o non sicura",
+ "other": "Altro",
+ "poorlyWrittenOrFormatted": "Scritta o formattata male",
+ "refusedAValidRequest": "Richiesta valida rifiutata",
+ "renderFailMsg": "Non è stato possibile eseguire il rendering del contenuto",
+ "reportIssue": "Segnala un problema",
+ "requestMarkdownPartTitle": "Fare clic per modificare",
+ "usedAgent": "[[(riesegui senza)]]",
+ "usedAgentSlashCommand": "è stato usato {0} [[(riesegui senza)]]",
+ "working": "Operazione in corso"
+ },
+ "vs/workbench/contrib/chat/browser/chatManagement/chatManagement.contribution": {
+ "chatManagementEditor": "Editor di Gestione chat",
+ "models.clearResults": "Cancella risultati della ricerca modelli",
+ "modelsManagementEditor": "Editor di Gestione modelli",
+ "openAiManagement": "Gestisce i modelli linguistici"
+ },
+ "vs/workbench/contrib/chat/browser/chatManagement/chatManagementEditor": {
+ "chatManagementSashBorder": "Colore del bordo della barra di divisione dell'editor di Gestione chat.",
+ "enableAIFeatures": "Usa funzionalità IA",
+ "enableCopilotButton": "Abilita funzionalità IA",
+ "enableMoreAIFeatures": "Abilita altre funzionalità AI",
+ "plan.businessName": "Copilot Business",
+ "plan.copilot": "Copilot",
+ "plan.enterpriseName": "Copilot Enterprise",
+ "plan.free": "Gratuito",
+ "plan.freeName": "Copilot gratuito",
+ "plan.models": "Modelli",
+ "plan.proName": "Copilot Pro",
+ "plan.proPlusName": "Copilot Pro+",
+ "plan.upgradeToPro": "Aggiorna a Copilot Pro",
+ "plan.upgradeToProPlus": "Aggiorna a Copilot Pro+",
+ "plan.usage": "Utilizzo",
+ "sectionsListAriaLabel": "Sezioni",
+ "signInToUseAIFeatures": "Accedi per usare le funzionalità IA",
+ "upgradeToCopilotPro": "Aggiorna a Copilot Pro"
+ },
+ "vs/workbench/contrib/chat/browser/chatManagement/chatManagementEditorInput": {
+ "aiManagementEditorInputName": "Gestisci Copilot",
+ "aiManagementEditorLabelIcon": "Icona dell'etichetta dell'editor di Gestione IA.",
+ "modelsManagementEditorInputName": "Modelli linguistici",
+ "modelsManagementEditorLabelIcon": "Icona dell'etichetta dell'editor di Gestione modelli."
+ },
+ "vs/workbench/contrib/chat/browser/chatManagement/chatModelsWidget": {
+ "Search.FullTextSearchPlaceholder": "Digitare per eseguire la ricerca...",
+ "capabilities": "Funzionalità",
+ "capability.agent": "Modalità agente",
+ "capability.tools": "Strumenti",
+ "capability.vision": "Visione",
+ "clearSearch": "Cancella ricerca",
+ "collapse": "Comprimi",
+ "cost": "Moltiplicatore",
+ "expand": "Espandi",
+ "filter": "Filtro",
+ "filter.hidden": "Nascosto",
+ "filter.visible": "Visibile",
+ "filterByCapability": "Filtra per {0}",
+ "filterByProvider": "Filtra per {0}",
+ "filterByVisible": "Filtra per {0}",
+ "model.ariaLabel": "{0} da {1}",
+ "modelName": "Nome",
+ "models.agentMode": "Modalità agente",
+ "models.capabilities": "Funzionalità",
+ "models.contextSize": "Dimensione contesto",
+ "models.cost": "Moltiplicatore",
+ "models.enableModelProvider": "Aggiungi modelli...",
+ "models.hidden": "Mostra nella selezione modelli di chat",
+ "models.hide": "Nascondi",
+ "models.input": "Input",
+ "models.manageProvider": "Gestisci {0}...",
+ "models.output": "Output",
+ "models.show": "Mostra",
+ "models.toolCalling": "Strumenti",
+ "models.tools": "Strumenti",
+ "models.userSelectable": "Questo modello è nascosto nella selezione modelli di chat",
+ "models.visible": "Nascondi nella selezione modelli di chat",
+ "models.vision": "Visione",
+ "modelsTable.ariaLabel": "Modelli linguistici",
+ "tokenLimits": "Dimensione contesto",
+ "vendor.ariaLabel": "Provider di {0}"
+ },
+ "vs/workbench/contrib/chat/browser/chatManagement/chatUsageWidget": {
+ "chatsLabel": "Messaggi chat",
+ "completionsLabel": "Suggerimenti inline",
+ "plan.additionalPaidEnabled": "Le ulteriori richieste Premium a pagamento sono abilitate.",
+ "plan.allowanceResets": "La quota viene reimpostata a {0}.",
+ "plan.chatMessages": "Messaggi chat",
+ "plan.included": "Incluso",
+ "plan.inlineSuggestions": "Suggerimenti inline",
+ "plan.premiumRequests": "Richieste Premium",
+ "quotaLimited": "Limitata"
+ },
+ "vs/workbench/contrib/chat/browser/chatOutputItemRenderer": {
+ "chatOutputRenderer.mimeTypes": "Tipi MIME gestiti da questo renderer",
+ "chatOutputRenderer.viewType": "Identificatore univoco per il renderer.",
+ "vscode.extension.contributes.chatOutputRenderer": "Aggiunge un renderer per tipi MIME specifici negli output della chat"
+ },
+ "vs/workbench/contrib/chat/browser/chatParticipant.contribution": {
+ "chat.viewContainer.label": "Chat",
+ "chatCommand": "Nome breve di riferimento del comando nell'interfaccia utente, ad esempio 'fix' o * 'explain' per i comandi che consentono di risolvere un problema o di spiegare il codice. Il nome deve essere univoco tra i comandi specificati dal partecipante.",
+ "chatCommandDescription": "Una descrizione di questo comando.",
+ "chatCommandDisambiguation": "Metadati che consentono di instradare automaticamente le domande dell’utente a questo comando della chat.",
+ "chatCommandDisambiguationCategory": "Un nome dettagliato per questa categoria, ad esempio 'workspace_questions' o 'web_questions'.",
+ "chatCommandDisambiguationDescription": "Una descrizione dettagliata dei tipi di domande adatti per questo comando della chat.",
+ "chatCommandDisambiguationExamples": "Un elenco di domande di esempio rappresentative appropriate per questo comando della chat.",
+ "chatCommandSampleRequest": "Quando l'utente fa clic su questo comando in '/help', il testo viene inviato al partecipante.",
+ "chatCommandSticky": "Indica se richiamando il comando la chat viene attivata in modalità persistente, in cui il comando viene aggiunto automaticamente all'input della chat per il messaggio successivo.",
+ "chatCommandWhen": "Una condizione che deve essere True per abilitare questo comando.",
+ "chatCommandsDescription": "Comandi disponibili per questo partecipante alla chat, che l'utente può richiamare con '/'.",
+ "chatFailErrorMessage": "Il caricamento della chat non è riuscito perché la versione installata dell'estensione Chat di Copilot non è compatibile con questa versione di {0}. Assicurarsi che l'estensione Chat di Copilot sia aggiornata.",
+ "chatParticipantDescription": "Una descrizione di questo partecipante alla chat, visualizzata nell'interfaccia utente.",
+ "chatParticipantDisambiguation": "Metadati che consentono di instradare automaticamente le domande dell’utente a questo partecipante della chat.",
+ "chatParticipantDisambiguationCategory": "Un nome dettagliato per questa categoria, ad esempio 'workspace_questions' o 'web_questions'.",
+ "chatParticipantDisambiguationDescription": "Una descrizione dettagliata dei tipi di domande adatti per questo partecipante della chat.",
+ "chatParticipantDisambiguationExamples": "Un elenco di domande di esempio rappresentative appropriate per questo partecipante della chat.",
+ "chatParticipantFullName": "Nome completo di questo partecipante alla chat, che viene visualizzato come etichetta per le risposte provenienti da questo partecipante. Se non viene specificato, viene usato {0}.",
+ "chatParticipantId": "Un ID univoco per questo partecipante alla chat.",
+ "chatParticipantName": "Nome rivolto all'utente per questo partecipante alla chat. L'utente userà '@' con questo nome per richiamare il partecipante. Il nome non deve contenere spazi vuoti.",
+ "chatParticipantWhen": "Una condizione che deve essere True per abilitare questo partecipante.",
+ "chatParticipants": "Partecipanti alla chat",
+ "chatSampleRequest": "Quando l'utente fa clic su questo partecipante in '/help', il testo viene inviato al partecipante.",
+ "miToggleChat": "&&Chat",
+ "participantCommands": "Comandi",
+ "participantDescription": "Descrizione",
+ "participantFullName": "Nome e cognome",
+ "participantName": "Nome",
+ "showExtension": "Mostra estensione",
+ "vscode.extension.contributes.chatParticipant": "Fornisce un partecipante alla chat"
+ },
+ "vs/workbench/contrib/chat/browser/chatPasteProviders": {
+ "pastedAttachment.multiple": "{0} e altre {1}",
+ "pastedAttachment.multipleLines": "{0} righe",
+ "pastedAttachment.oneLine": "1 rga",
+ "pastedChatAttachments": "Inserisci richiesta e allegati",
+ "pastedCodeAttachment": "Allegato codice incollato",
+ "pastedImageAttachment": "Allegato immagine incollata",
+ "pastedImageName": "Immagine incollata"
+ },
+ "vs/workbench/contrib/chat/browser/chatQuick": {
+ "termsDisclaimer": "Continuando con Copilot {0}, si accettano le [Terms]({2}) di {1} e l'[Privacy Statement]({3})"
+ },
+ "vs/workbench/contrib/chat/browser/chatResponseAccessibleView": {
+ "toolPostApprovalA11yView": "Approvare i risultati di {0}? Risultato: "
+ },
+ "vs/workbench/contrib/chat/browser/chatSessions.contribution": {
+ "chatCommand": "Nome breve di riferimento del comando nell'interfaccia utente, ad esempio 'fix' o * 'explain' per i comandi che consentono di risolvere un problema o di spiegare il codice. Il nome deve essere univoco tra i comandi specificati dal partecipante.",
+ "chatCommandDescription": "Una descrizione di questo comando.",
+ "chatCommandWhen": "Una condizione che deve essere True per abilitare questo comando.",
+ "chatCommandsDescription": "Comandi disponibili per la sessione di chat, che l'utente può richiamare con '/'.",
+ "chatEditorContributionName": "{0}",
+ "chatSessionsExtPoint": "Aggiunge le integrazioni delle sessioni di chat al widget chat.",
+ "chatSessionsExtPoint.alternativeIds": "Identificatori alternativi per la compatibilità con le versioni precedenti.",
+ "chatSessionsExtPoint.canDelegate": "Indica se la delega è supportata. L'impostazione predefinita è true.",
+ "chatSessionsExtPoint.capabilities": "Funzionalità facoltative per questa sessione di chat.",
+ "chatSessionsExtPoint.chatSessionType": "Identificatore univoco per il tipo di sessione di chat.",
+ "chatSessionsExtPoint.description": "Descrizione della sessione di chat da utilizzare nei menu e nelle descrizioni comando.",
+ "chatSessionsExtPoint.displayName": "Nome più lungo per questo elemento, utilizzato per la visualizzazione nei menu.",
+ "chatSessionsExtPoint.icon": "Identificatore dell'icona (ID codicon) per la scheda dell'editor delle sessioni di chat. Ad esempio, \"$(github)\" o \"$(cloud)\".",
+ "chatSessionsExtPoint.inputPlaceholder": "Testo segnaposto da visualizzare nella casella di input della chat per questo tipo di sessione.",
+ "chatSessionsExtPoint.name": "Nome del partecipante alla chat registrato dinamicamente (esempio: @agent). Non deve contenere spazi vuoti.",
+ "chatSessionsExtPoint.order": "Ordine di visualizzazione dell'elemento.",
+ "chatSessionsExtPoint.supportsFileAttachments": "Indica se questa sessione di chat supporta la possibilità di allegare file o riferimenti a file.",
+ "chatSessionsExtPoint.supportsImageAttachments": "Indica se la sessione di chat supporta la possibilità di allegare immagini.",
+ "chatSessionsExtPoint.supportsInstructionAttachments": "Indica se la sessione di chat supporta la possibilità di allegare istruzioni.",
+ "chatSessionsExtPoint.supportsMCPAttachments": "Indica se la sessione di chat supporta la possibilità di allegare risorse MCP.",
+ "chatSessionsExtPoint.supportsProblemAttachments": "Indica se la sessione di chat supporta la possibilità di allegare problemi.",
+ "chatSessionsExtPoint.supportsSearchResultAttachments": "Indica se la sessione di chat supporta la possibilità di allegare risultati della ricerca.",
+ "chatSessionsExtPoint.supportsSourceControlAttachments": "Indica se la sessione di chat supporta allegati delle modifiche al controllo del codice sorgente.",
+ "chatSessionsExtPoint.supportsSymbolAttachments": "Indica se la sessione di chat supporta la possibilità di allegare simboli.",
+ "chatSessionsExtPoint.supportsToolAttachments": "Indica se questa sessione di chat supporta la possibilità di allegare strumenti o riferimenti a strumenti.",
+ "chatSessionsExtPoint.welcomeMessage": "Testo dei messaggi (supporta icone Markdown) da visualizzare nella schermata di benvenuto della chat per questo tipo di sessione.",
+ "chatSessionsExtPoint.welcomeTips": "Testo dei suggerimenti (supporta icone Markdown e del tema) da visualizzare nella schermata di benvenuto della chat per questo tipo di sessione.",
+ "chatSessionsExtPoint.welcomeTitle": "Testo del titolo da visualizzare nella schermata di benvenuto della chat per questo tipo di sessione.",
+ "chatSessionsExtPoint.when": "Condizione che deve essere vera per mostrare questo elemento.",
+ "icon.dark": "Percorso dell'icona quando viene usato un tema scuro",
+ "icon.light": "Percorso dell'icona quando viene usato un tema chiaro",
+ "interactiveSession.chatSessionSubMenuTitle": "Crea sessione di chat",
+ "interactiveSession.openNewSessionEditor": "Nuova {0}"
+ },
+ "vs/workbench/contrib/chat/browser/chatSessions/chatSessionPickerActionItem": {
+ "chat.sessionPicker.label": "Seleziona opzione"
+ },
+ "vs/workbench/contrib/chat/browser/chatSessions/localChatSessionsProvider": {
+ "chat.sessions.description.finished": "Finished",
+ "chat.sessions.description.waitingForConfirmation": "Waiting for confirmation:",
+ "chat.sessions.description.working": "Working..."
+ },
+ "vs/workbench/contrib/chat/browser/chatSessions/view/chatSessionsView": {
+ "chat.agent.sessions": "Sessioni dell'agente",
+ "chat.agent.sessions.title": "Sessioni dell'agente",
+ "chat.sessions.gettingStarted": "Introduzione",
+ "chatSessions.noResults": "Nessuna sessione dell'agente nella chat locale\r\n[Avviare una sessione dell'agente](comando:{0})"
+ },
+ "vs/workbench/contrib/chat/browser/chatSessions/view/sessionsTreeRenderer": {
+ "chat.sessions.archivedSessions": "Cronologia",
+ "chat.sessions.groupNode.multiple": "{0} sessioni",
+ "chat.sessions.groupNode.single": "1 sessione",
+ "chat.sessions.lastActivity": "Ultima attività: {0}",
+ "chatSessionInputAriaLabel": "Digitare il nome della sessione. Premere INVIO per confermare o ESC per annullare."
+ },
+ "vs/workbench/contrib/chat/browser/chatSessions/view/sessionsViewPane": {
+ "chatSession.selectOption": "Altro...",
+ "chatSessions": "Sessioni di chat",
+ "chatSessions.dragLabel": "{0} sessioni dell'agente",
+ "chatSessions.installExtensions": "Installa estensioni chat",
+ "chatSessions.learnMoreGHCodingAgent": "Altre informazioni sull'agente di codifica di GitHub Copilot",
+ "chatSessions.loading": "Caricamento delle sessioni di chat in corso...",
+ "chatSessions.refreshing": "Aggiornamento delle sessioni di chat in corso..."
+ },
+ "vs/workbench/contrib/chat/browser/chatSetup": {
+ "chat.category": "Chat",
+ "chatSetupError": "Configurazione della chat non riuscita.",
+ "chatTookLongWarning": "La chat ha impiegato troppo tempo per prepararsi. Assicurarsi di aver effettuato la registrazione a {0} e che l'estensione '{1}' sia installata e abilitata.",
+ "chatTookLongWarningAnonymous": "La chat ha impiegato troppo tempo per prepararsi. Assicurarsi che l'estensione '{0}' sia installata e abilitata.",
+ "chatWorkspaceTrust": "Le funzionalità IA sono attualmente supportate solo nelle aree di lavoro attendibili.",
+ "continueWith": "Continua con {0}",
+ "copilotUnavailableWarning": "Non è possibile ottenere una risposta. Riprovare.",
+ "enableMore": "Abilita altre funzionalità IA",
+ "enterpriseInstance": "Qual è la tua istanza di {0}?",
+ "enterpriseInstancePlaceholder": "Ad esempio \"octocat\" o \"https://octocat.ghe.com\"...",
+ "explain": "Spiega",
+ "fix": "Correggi",
+ "forceSignIn": "Accedere per usare le funzionalità IA",
+ "generate": "Genera",
+ "generateDocs": "Genera documenti",
+ "generateTests": "Genera test",
+ "hideChatSetup": "Come nascondere le funzionalità IA",
+ "installingChat": "Preparazione della chat in corso...",
+ "invalidEnterpriseInstance": "È necessario immettere un'istanza {0} valida, ad esempio \"octocat\" o \"https://octocat.ghe.com\"",
+ "manageOverages": "Gestisci le eccedenze di GitHub Copilot",
+ "managePlan": "Aggiornare a GitHub Copilot Pro",
+ "modify": "Modifica",
+ "restartExtensionHost.reason.disable": "Disabilitazione delle funzionalità di IA",
+ "restartExtensionHost.reason.enable": "Abilitazione delle funzionalità di IA",
+ "retry": "Riprova",
+ "review": "Revisione del codice",
+ "settingUpCopilotNeeded": "Per usare la chat, è necessario configurare GitHub Copilot ed effettuare l'accesso.",
+ "settings": "Continuando, si accettano le {0}[Condizioni]({1}) e l'[Informativa sulla privacy]({2}). {3} Copilot può mostrare suggerimenti di [codice pubblico]({4}) e usare i dati per migliorare il prodotto. È possibile modificare queste [impostazioni]({5}) in qualsiasi momento.",
+ "settingsAnonymous": "Continuando, si accettano le {0}[Condizioni]({1}) e l'[Informativa sulla privacy]({2}).",
+ "setupAIButton": "Usa funzionalità IA",
+ "setupChatProgress": "Preparazione della chat in corso...",
+ "setupChatSignIn2": "Accesso in corso a {0}...",
+ "setupErrorDialog": "Configurazione della chat non riuscita. Riprovare?",
+ "setupToolDisplayName": "Nuova area di lavoro",
+ "setupToolsDescription": "Eseguire lo scaffolding di una nuova area di lavoro in Visual Studio Code",
+ "signIn": "Accedi per usare le funzionalità IA",
+ "skipForNow": "Ignora per ora",
+ "startUsing": "Inizia a usare le funzionalità IA",
+ "terminalAgentDescription": "Chiedi come eseguire un’operazione nel terminale",
+ "triggerChatSetup": "Usare gratuitamente le funzionalità di intelligenza artificiale con Copilot...",
+ "triggerChatSetupFromAccounts": "Accedere per usare le funzionalità IA...",
+ "trustNeeded": "È necessario considerare attendibile questa area di lavoro per poter usare la chat.",
+ "unknownSetupError": "Si è verificato un errore durante la configurazione della chat. Riprovare?",
+ "unknownSignInError": "Non è stato possibile accedere a {0}. Riprovare?",
+ "unknownSignInErrorDetail": "Per usare le funzionalità IA, è necessario aver eseguito l'accesso.",
+ "vscodeAgentDescription": "Poni domande su VS Code",
+ "waitingChat": "Preparazione della chat in corso...",
+ "waitingChat2": "La chat è quasi pronta...",
+ "willResolveTo": "Verrà risolto in {0}",
+ "workspaceAgentDescription": "Richiedi informazioni sull'area di lavoro"
+ },
+ "vs/workbench/contrib/chat/browser/chatStatus": {
+ "activateDescription": "Configura Copilot per usare le funzionalità IA.",
+ "activeDescriptionAnonymous": "Continuando con Copilot {0}, si accettano le [Terms]({2}) di {1} e l'[Privacy Statement]({3})",
+ "additionalUsageDisabled": "Le ulteriori richieste Premium a pagamento sono disabilitate.",
+ "additionalUsageEnabled": "Le ulteriori richieste Premium a pagamento sono abilitate.",
+ "anonymousTitle": "Utilizzo di Copilot",
+ "cancelSnooze": "Annulla il rinvio",
+ "chatAgentSessionsTitle": "Sessioni dell'agente",
+ "chatAndCompletionsQuotaExceededStatus": "Quota raggiunta",
+ "chatQuotaExceededStatus": "È stata raggiunta la quota della chat",
+ "chatSessionInProgressStatus": "1 sessione dell'agente in corso",
+ "chatSessionsInProgressStatus": "{0} sessioni dell'agente in corso",
+ "chatStatus": "Stato di Copilot",
+ "chatStatusAria": "Stato di Copilot",
+ "chatsLabel": "Messaggi delle chat",
+ "completions.plus5min": "+5 min",
+ "completions.remainingTime": "rimanenti",
+ "completions.snooze5minutes": "Nascondi suggerimenti inline per 5 minuti",
+ "completions.snooze5minutesTitle": "Nascondere i suggerimenti per 5 minuti",
+ "completions.snoozeAdditional5minutes": "Posponi per altri 5 minuti",
+ "completions.snoozeTimeDescription": "I suggerimenti inline sono nascosti per la durata rimanente",
+ "completionsDisabledStatus": "Suggerimenti inline disabilitati",
+ "completionsLabel": "Suggerimenti inline",
+ "completionsQuotaExceededStatus": "Quota suggerimenti inline raggiunta",
+ "completionsSnoozedStatus": "Suggerimenti inline postposti",
+ "copilotDisabledStatus": "Copilot disabilitato",
+ "enableAIFeatures": "Usa funzionalità IA",
+ "enableAdditionalUsage": "Gestisci le richieste Premium a pagamento",
+ "enableCopilotButton": "Abilita funzionalità IA",
+ "enableDescription": "Abilita Copilot per usare le funzionalità IA.",
+ "enableMoreAIFeatures": "Abilita altre funzionalità AI",
+ "enableMoreDescription": "Accedi per abilitare altre funzionalità IA di Copilot.",
+ "finishSetup": "Completa la configurazione",
+ "gaugeBackground": "Colore di sfondo misuratore.",
+ "gaugeBorder": "Colore bordo misuratore.",
+ "gaugeErrorBackground": "Colore di sfondo errore misuratore.",
+ "gaugeErrorForeground": "Colore primo piano errore misuratore.",
+ "gaugeForeground": "Colore primo piano misuratore.",
+ "gaugeWarningBackground": "Colore di sfondo avviso misuratore.",
+ "gaugeWarningForeground": "Colore primo piano avviso misuratore.",
+ "inProgressChatSession": "$(loading~spin) {0} in corso...",
+ "inlineSuggestions": "Suggerimenti inline",
+ "learnMore": "Altre informazioni",
+ "limitQuota": "La quota viene reimpostata a {0}.",
+ "notSignedIn": "Disconnesso",
+ "premiumChatsLabel": "Richieste Premium",
+ "quotaDisplay": "{0}%",
+ "quotaDisplayWithOverage": "+{0} richieste",
+ "quotaLabel": "Gestisci chat",
+ "quotaLimited": "Limitato",
+ "quotaTooltip": "Gestisci chat",
+ "quotaUnlimited": "Incluso",
+ "settings.codeCompletions.allFiles": "Tutti i file",
+ "settings.codeCompletions.language": "{0}",
+ "settings.nextEditSuggestions": "Suggerimenti di modifica successivi",
+ "settings.snooze": "Posponi",
+ "settingsLabel": "Impostazioni",
+ "settingsTooltip": "Apri impostazioni",
+ "signInDescription": "Accedi per utilizzare le funzionalità IA di Copilot.",
+ "signInToUseAIFeatures": "Accedi per usare le funzionalità IA",
+ "upgradeToCopilotPro": "Aggiornare a GitHub Copilot Pro",
+ "usageTitle": "Utilizzo di Copilot",
+ "viewChatSessionsLabel": "Visualizza sessioni dell'agente",
+ "viewChatSessionsTooltip": "Visualizza le sessioni dell'agente"
+ },
+ "vs/workbench/contrib/chat/browser/chatWidget": {
+ "agentTitle": "Compilare utilizzando gli agenti",
+ "chat.history.list": "Cronologia della chat",
+ "chat.history.showMore": "Cronologia della chat...",
+ "chat.history.showMoreAriaLabel": "Apri la cronologia della chat",
+ "chat.history.showMoreHover": "Mostra la cronologia della chat...",
+ "chat.input.placeholder.lockedToAgent": "Chatta con {0}",
+ "chatDescription": "Consente di chiedere informazioni sul codice",
+ "chatDisclaimer": "Le risposte dell'intelligenza artificiale potrebbero non essere accurate.",
+ "chatWidget.instructions": "[Generare istruzioni agente]({0}) per eseguire l'onboarding dell'IA nella codebase.",
+ "chatWidget.promptFile.commandLabel": "{0}",
+ "chatWidget.suggestedPrompts.buildWorkspace": "Crea area di lavoro",
+ "chatWidget.suggestedPrompts.buildWorkspacePrompt": "Come posso creare questa area di lavoro?",
+ "chatWidget.suggestedPrompts.findConfig": "Mostra configurazione",
+ "chatWidget.suggestedPrompts.findConfigPrompt": "Dove è definita la configurazione per questo progetto?",
+ "chatWidget.suggestedPrompts.gettingStarted": "Chiedi @vscode",
+ "chatWidget.suggestedPrompts.gettingStartedPrompt": "@vscode Come posso cambiare il tema in modalità chiara?",
+ "chatWidget.suggestedPrompts.newProject": "Crea progetto",
+ "chatWidget.suggestedPrompts.newProjectPrompt": "Crea un progetto Hello World #new in TypeScript",
+ "codingAgentTitle": "Delegare a {0}",
+ "copilotCodingAgentMessage": "Questa sessione di chat verrà inoltrata a [coding agent]({1}) {0}, dove il lavoro verrà completato in background. ",
+ "editsTitle": "Modificare nel contesto",
+ "genericCodingAgentMessage": "Questa sessione di chat verrà inoltrata all'agente di codifica {0}, dove il lavoro verrà completato in background. ",
+ "scrollDownButtonLabel": "Scorri verso il basso",
+ "settings": "Continuando con Copilot {0}, si accettano le [Condizioni]({2}) di {1} e l'[Informativa sulla privacy]({3})."
+ },
+ "vs/workbench/contrib/chat/browser/codeBlockPart": {
+ "chat.codeBlock.toolbar": "Barra degli strumenti blocco di codice",
+ "chat.codeBlockHelp": "Blocco di codice",
+ "chat.codeBlockLabel": "Blocco di codice {0}",
+ "chat.codeBlockToolbarLabel": "Blocca il codice {0}",
+ "chat.compareCodeBlockLabel": "Modifiche al codice",
+ "chat.edits.1": "1 modifica applicato in [[``{0}``]]",
+ "chat.edits.N": "{0} modifiche applicate in [[``{1}``]]",
+ "chat.edits.rejected": "Le modifiche in [[''{0}'']] sono state rifiutate",
+ "interactive.compare.apply.confirm": "Il file originale è stato modificato.",
+ "interactive.compare.apply.confirm.detail": "Applicare comunque le modifiche?",
+ "modified": "Modifica applicata",
+ "original": "Originale",
+ "vulnerabilitiesPlural": "{0} vulnerabilità",
+ "vulnerabilitiesSingular": "{0} vulnerabilità"
+ },
+ "vs/workbench/contrib/chat/browser/contrib/chatInputCompletions": {
+ "activeFile": "File attivo",
+ "fileEntryDescription": "{0} ({1})",
+ "installLabel": "Installa estensioni chat...",
+ "mcp.prompt.error": "Errore durante la risoluzione della richiesta {0}:",
+ "mcp.prompt.image": "Immagine richiesta",
+ "mcp.prompt.resource": "Risorsa richiesta",
+ "tool_source_completion": "{0}: {1}"
+ },
+ "vs/workbench/contrib/chat/browser/contrib/chatInputEditorHover": {
+ "hoverAccessibilityChatAgent": "Qui è presente una parte con passaggio del mouse dell'agente di chat."
+ },
+ "vs/workbench/contrib/chat/browser/contrib/chatInputRelatedFilesContrib": {
+ "relatedFile": "{0} (Suggerito)"
+ },
+ "vs/workbench/contrib/chat/browser/contrib/screenshot": {
+ "screenshot": "Screenshot"
+ },
+ "vs/workbench/contrib/chat/browser/languageModelToolsConfirmationService": {
+ "allowGlobally": "Consenti sempre",
+ "allowGloballyPost": "Consenti sempre senza revisione",
+ "allowGloballyPostTooltip": "Consenti sempre l'invio dei risultati dello strumento senza conferma.",
+ "allowGloballyTooltip": "Consenti sempre l'esecuzione senza conferma di questo strumento.",
+ "allowServerGlobally": "Consenti sempre strumenti da {0}",
+ "allowServerGloballyPost": "Consenti sempre strumenti da {0} senza revisione",
+ "allowServerGloballyPostTooltip": "Consenti sempre l'invio dei risultati di tutti gli strumenti del server senza conferma.",
+ "allowServerGloballyTooltip": "Consenti sempre l'esecuzione di tutti gli strumenti del server senza conferma.",
+ "allowServerSession": "Consenti strumenti da {0} nella sessione",
+ "allowServerSessionPost": "Consenti strumenti da {0} nella sessione senza revisione",
+ "allowServerSessionPostTooltip": "Consenti l'invio dei risultati di tutti gli strumenti nella sessione senza conferma.",
+ "allowServerSessionTooltip": "Consenti l'esecuzione di tutti gli strumenti del server nella sessione senza conferma.",
+ "allowServerWorkspace": "Consenti strumenti da {0} nell'area di lavoro",
+ "allowServerWorkspacePost": "Consenti strumenti da {0} nell'area di lavoro senza revisione",
+ "allowServerWorkspacePostTooltip": "Consenti l'invio dei risultati di tutti gli strumenti del server nell'area di lavoro senza conferma.",
+ "allowServerWorkspaceTooltip": "Consenti l'esecuzione di tutti gli strumenti del server nell'area di lavoro senza conferma.",
+ "allowSession": "Consenti in questa sessione",
+ "allowSessionPost": "Consenti nella sessione senza revisione",
+ "allowSessionPostTooltip": "Consentire l'invio dei risultati dello strumento nella sessione senza conferma.",
+ "allowSessionTooltip": "Consenti l'esecuzione senza conferma di questo strumento in questa sessione.",
+ "allowWorkspace": "Consenti in questa area di lavoro",
+ "allowWorkspacePost": "Consenti nell'area di lavoro senza revisione",
+ "allowWorkspacePostTooltip": "Consenti l'invio dei risultati dello strumento nell'area di lavoro senza conferma.",
+ "allowWorkspaceTooltip": "Consenti l'esecuzione senza conferma di questo strumento in questa area di lavoro.",
+ "configureGlobalToolApprovals": "Configura le approvazioni degli strumenti globali",
+ "configureSessionToolApprovals": "Configura le approvazioni degli strumenti sessione",
+ "configureWorkspaceToolApprovals": "Configura le approvazioni degli strumenti dell'area di lavoro",
+ "continueWithoutReviewing": "Continua senza esaminare i risultati degli strumenti",
+ "continueWithoutReviewingResults": "senza rivedere il risultato",
+ "runToolsWithoutApproval": "Esegui qualsiasi strumento senza approvazione",
+ "runWithoutApproval": "senza approvazione",
+ "workspaceScope": "Configura solo per questa area di lavoro"
+ },
+ "vs/workbench/contrib/chat/browser/languageModelToolsService": {
+ "autoApprove2.button.disable": "Disabilita",
+ "autoApprove2.button.enable": "Abilita",
+ "autoApprove2.markdown": "L'approvazione automatica globale, nota anche come \"modalità YOLO\", disabilita completamente l'approvazione manuale per _tutti gli strumenti in tutte le aree di lavoro_, consentendo all'agente di agire in modo totalmente autonomo. Questa condizione è estremamente pericolosa e non è *mai* consigliata, anche in ambienti in contenitori come [Codespaces](https://github.com/features/codespaces): nei [contenitori di sviluppo](https://marketplace.visualstudio.com/items?itemName=ms-vscode-remote.remote-containers), infatti, le chiavi utente vengono inoltrate nel contenitore e potrebbero essere compromesse.\r\n\r\n**Questa funzione disabilita le [protezioni di sicurezza critiche](https://code.visualstudio.com/docs/copilot/security) e rende molto più facile per un utente malintenzionato compromettere il computer.**",
+ "autoApprove2.title": "Abilitare l'approvazione automatica globale?",
+ "copilot.toolSet.launch.description": "Launch and run code, binaries or tests in the workspace",
+ "copilot.toolSet.vscode.description": "Use VS Code features",
+ "defaultToolConfirmation.disclaimer": "L'approvazione automatica per \"{0}\" è limitata da \"{1}\".",
+ "defaultToolConfirmation.message": "Eseguire lo strumento '{0}'?",
+ "defaultToolConfirmation.title": "Consentire l'esecuzione dello strumento?"
+ },
+ "vs/workbench/contrib/chat/browser/modelPicker/modelPickerActionItem": {
+ "chat.manageModels": "Gestisci modelli...",
+ "chat.manageModels.tooltip": "Gestisce i modelli linguistici",
+ "chat.modelPicker.label": "Seleziona modello",
+ "chat.moreModels": "Aggiungi modelli linguistici",
+ "chat.moreModels.tooltip": "Aggiunge i modelli linguistici",
+ "chat.morePremiumModels": "Aggiungi modelli Premium",
+ "chat.morePremiumModels.tooltip": "Aggiungi modelli Premium"
+ },
+ "vs/workbench/contrib/chat/browser/modelPicker/modePickerActionItem": {
+ "built-in": "Predefinito",
+ "custom": "Personalizzato"
+ },
+ "vs/workbench/contrib/chat/browser/promptSyntax/attachInstructionsAction": {
+ "attach-instructions.capitalized.ellipses": "Allega istruzioni...",
+ "chatContext.attach.instructions.label": "Istruzioni...",
+ "commands.instructions.select-dialog.placeholder": "Selezionare i file di istruzioni da allegare",
+ "commands.prompt.manage-dialog.placeholder": "Selezionare il file delle istruzioni da aprire",
+ "configure-instructions": "Configura istruzioni...",
+ "configure-instructions.short": "Istruzioni chat",
+ "configureInstructions": "Configura istruzioni...",
+ "placeholder": "Selezionare i file di istruzioni da allegare"
+ },
+ "vs/workbench/contrib/chat/browser/promptSyntax/chatModeActions": {
+ "configure-agents": "Configura agenti personalizzati...",
+ "configure-agents.short": "Agenti personalizzati",
+ "configure.agent.prompts.placeholder": "Selezionare gli agenti personalizzati da aprire e configurare la visibilità nella selezione agenti",
+ "select-agent": "Configura agenti personalizzati..."
+ },
+ "vs/workbench/contrib/chat/browser/promptSyntax/newPromptFileActions": {
+ "commands.new.agent.local.title": "Nuovo agente personalizzato...",
+ "commands.new.instructions.local.title": "Nuovo file di istruzioni...",
+ "commands.new.prompt.local.title": "Nuovo file di richiesta...",
+ "commands.new.untitled.prompt.title": "Nuovo file di richiesta senza titolo",
+ "enable.capitalized": "Abilita",
+ "learnMore.capitalized": "Altre informazioni",
+ "workbench.command.prompts.create.user.enable-sync-notification": "Eseguire il backup e sincronizzare i file di richiesta, le istruzioni e i file di agenti personalizzati con Sincronizza impostazioni?"
+ },
+ "vs/workbench/contrib/chat/browser/promptSyntax/pickers/askForPromptName": {
+ "askForAgentFileName.placeholder": "Immettere un nuovo nome per il file agente",
+ "askForInstructionsFileName.placeholder": "Immettere il nome del file delle istruzioni",
+ "askForPromptFileName.error.empty": "Immettere un nome.",
+ "askForPromptFileName.error.exists": "Esiste già un file con il nome specificato.",
+ "askForPromptFileName.error.invalid": "Il nome contiene caratteri non validi.",
+ "askForPromptFileName.placeholder": "Immettere il nome del file di richieste",
+ "askForRenamedAgentFileName.placeholder": "Immettere un nuovo nome per il file agente",
+ "askForRenamedInstructionsFileName.placeholder": "Immettere un nuovo nome per il file di istruzioni",
+ "askForRenamedPromptFileName.placeholder": "Immettere un nuovo nome del file di richiesta"
+ },
+ "vs/workbench/contrib/chat/browser/promptSyntax/pickers/askForPromptSourceFolder": {
+ "agent.copy.location.placeholder": "Selezionare una posizione in cui copiare il file agente...",
+ "agent.move.location.placeholder": "Selezionare una posizione in cui spostare il file agente...",
+ "commands.agent.create.ask-folder.empty.docs-label": "Informazioni su come configurare gli agenti personalizzati",
+ "commands.agent.create.ask-folder.empty.placeholder": "Nessuna cartella di origine dell'agente trovato.",
+ "commands.instructions.create.ask-folder.empty.docs-label": "Informazioni su come configurare le istruzioni riutilizzabili",
+ "commands.instructions.create.ask-folder.empty.placeholder": "Nessuna cartella di origine delle istruzioni trovata.",
+ "commands.prompts.create.ask-folder.empty.docs-label": "Scopri come configurare richieste riutilizzabili",
+ "commands.prompts.create.ask-folder.empty.placeholder": "Nessuna cartella di origine della richiesta trovata.",
+ "commands.prompts.create.source-folder.current-workspace": "Area di lavoro corrente",
+ "current.folder": "Posizione corrente",
+ "instructions.copy.location.placeholder": "Selezionare un percorso in cui copiare il file delle istruzioni...",
+ "instructions.move.location.placeholder": "Selezionare un percorso in cui spostare il file delle istruzioni...",
+ "prompt.copy.location.placeholder": "Selezionare un percorso in cui copiare il file di richiesta...",
+ "prompt.move.location.placeholder": "Selezionare un percorso in cui spostare il file di richiesta...",
+ "workbench.command.agent.create.location.placeholder": "Selezionare una posizione in cui creare il file agente...",
+ "workbench.command.instructions.create.location.placeholder": "Selezionare una posizione in cui creare il file delle istruzioni...",
+ "workbench.command.prompt.create.location.placeholder": "Selezionare una posizione in cui creare il file di richiesta..."
+ },
+ "vs/workbench/contrib/chat/browser/promptSyntax/pickers/promptFilePickers": {
+ "commands.new-agentfile.select-dialog.label": "Crea nuovo agente personalizzato...",
+ "commands.new-instructionsfile.select-dialog.label": "Nuovo file di istruzioni...",
+ "commands.new-promptfile.select-dialog.label": "Nuovo file di richiesta...",
+ "commands.prompts.use.select-dialog.delete-prompt.confirm.message": "Eliminare '{0}'?",
+ "commands.update-instructions.select-dialog.label": "Genera istruzioni agente...",
+ "copy": "Copia",
+ "delete": "Elimina",
+ "help.agent": "Mostra la guida sui file degli agenti personalizzati",
+ "help.instructions": "Mostra guida sui file di istruzioni",
+ "help.prompt": "Mostra guida per i file di richiesta",
+ "hiddenInAgentPicker": "Nascosto dal selettore agente nella visualizzazione chat",
+ "hiddenLabelInfo": "{0} (nascosto)",
+ "makeInvisible": "Nascondi dalla selezione agenti",
+ "makeVisible": "Nascosto dal selettore agente nella visualizzazione chat. Fare clic per visualizzare.",
+ "open": "Apri nell'editor",
+ "rename": "Sposta e/o rinomina",
+ "searching": "Ricerca file system in corso...",
+ "separator.extensions": "Estensioni",
+ "separator.user": "Dati utente",
+ "separator.workspace": "Area di lavoro",
+ "separator.workspace-agent-instructions": "Istruzioni per l'agente"
+ },
+ "vs/workbench/contrib/chat/browser/promptSyntax/promptCodingAgentActionOverlay": {
+ "runPromptWithCodingAgent": "Esegui file di richiesta in un agente di codifica remoto",
+ "runWithCodingAgent.label": "{0} Delega all'agente di codifica Copilot"
+ },
+ "vs/workbench/contrib/chat/browser/promptSyntax/promptToolsCodeLensProvider": {
+ "configure-tools.capitalized.ellipsis": "Configura strumenti...",
+ "placeholder": "Seleziona strumenti"
+ },
+ "vs/workbench/contrib/chat/browser/promptSyntax/promptUrlHandler": {
+ "confirmInstallAgent": "Un'applicazione esterna vuole creare un agente personalizzato con il contenuto di un URL. Continuare selezionando una cartella di destinazione e un nome?",
+ "confirmInstallInstructions": "Un'applicazione esterna vuole creare un file di istruzioni con il contenuto di un URL. Continuare selezionando un nome e una cartella di destinazione?",
+ "confirmInstallPrompt": "Un'applicazione esterna vuole creare un file di richiesta con il contenuto da un URL. Continuare selezionando un nome e una cartella di destinazione?",
+ "confirmOpenDetail2": "Questa operazione accederà a {0}.\r\n\r\n",
+ "confirmOpenDetail3": "Se questa richiesta non è stata avviata, potrebbe rappresentare un tentativo di attacco nel sistema. Se non è stata intrapresa un'azione esplicita per avviare questa richiesta, è consigliabile fare clic su 'No'",
+ "failed": "Non è stato possibile recuperare l'URL: {0}",
+ "noButton": "No",
+ "yesButton": "&&Sì"
+ },
+ "vs/workbench/contrib/chat/browser/promptSyntax/runPromptAction": {
+ "commands.prompt.manage-dialog.placeholder": "Selezionare il file di richiesta da aprire",
+ "commands.prompt.select-dialog.placeholder": "Selezionare il file di richieste da eseguire (tenere premuto il tasto {0} per usarlo nella nuova chat)",
+ "configure-prompts": "Configura file di richiesta...",
+ "configure-prompts.short": "File di richiesta",
+ "run-prompt-in-new-chat.capitalized": "Esegui richiesta in una nuova chat",
+ "run-prompt.capitalized": "Esegui richiesta nella chat corrente",
+ "run-prompt.capitalized.ellipses": "Esegui richiesta..."
+ },
+ "vs/workbench/contrib/chat/browser/promptSyntax/saveAsPromptFileActions": {
+ "promptfile.saveAgentFile": "Salva come file agente",
+ "promptfile.saveAgentFile.description": "Salva come file agente",
+ "promptfile.saveInstructionsFile": "Salva come file di istruzioni",
+ "promptfile.saveInstructionsFile.description": "Salva come file di istruzioni",
+ "promptfile.savePromptFile": "Salva come file di richiesta",
+ "promptfile.savePromptFile.description": "Salva come file di richiesta"
+ },
+ "vs/workbench/contrib/chat/browser/tools/toolSetsContribution": {
+ "bad_name1": "Nome file non valido",
+ "bad_name2": "'{0}' non è un nome di file valido",
+ "chat.configureToolSets": "Configura set di strumenti...",
+ "chat.configureToolSets.add": "Crea nuovo file dei set di strumenti...",
+ "chat.configureToolSets.placeholder": "Selezionare un set di strumenti da configurare",
+ "chat.configureToolSets.short": "Set di strumenti",
+ "input.placeholder": "Digitare il nome del file del set di strumenti",
+ "schema.default": "Set di strumenti vuoto",
+ "schema.description": "Breve descrizione di questo set di strumenti.",
+ "schema.icon": "Icona da usare per questo set di strumenti nell'interfaccia utente. Usa la sintassi \"\\$(name)\", ad esempio \"\\$(zap)\"",
+ "schema.tools": "Elenco di strumenti o set di strumenti da includere in questo set di strumenti. Non può essere vuoto e deve fare riferimento agli strumenti nello stesso modo in cui sono citati nelle richieste.",
+ "tool.description": "{1} ({0})\r\n\r\n{2}",
+ "toolsetSchema.json": "Configurazione dei set di strumenti utente"
+ },
+ "vs/workbench/contrib/chat/browser/viewsWelcome/chatViewsWelcomeHandler": {
+ "chatViewsWelcome.content": "Il contenuto del messaggio di benvenuto. Il rendering del primo collegamento al comando verrà eseguito come pulsante.",
+ "chatViewsWelcome.icon": "Icona del messaggio di benvenuto.",
+ "chatViewsWelcome.title": "Il titolo del messaggio di benvenuto.",
+ "chatViewsWelcome.when": "Condizione quando viene visualizzato il messaggio di benvenuto.",
+ "vscode.extension.contributes.chatViewsWelcome": "Aggiunge un messaggio di benvenuto a una visualizzazione chat"
+ },
+ "vs/workbench/contrib/chat/browser/viewsWelcome/chatViewWelcomeController": {
+ "chatWidget.suggestedActions": "Azioni suggerite",
+ "editPromptFile": "Modifica file di richiesta",
+ "runPromptTitle": "Richiesta suggerita: {0}",
+ "suggestedPromptAriaLabel": "Richiesta suggerita: {0}",
+ "suggestedPromptAriaLabelWithDescription": "Richiesta suggerita: {0}, {1}"
+ },
+ "vs/workbench/contrib/chat/common/chatColors": {
+ "chat.avatarBackground": "Colore di sfondo di una avatar di chat.",
+ "chat.avatarForeground": "Colore primo piano di un comando avatar.",
+ "chat.editedFileForeground": "Colore primo piano di un file modificato dalla chat nell'elenco di file modificati.",
+ "chat.linesAddedForeground": "Colore di primo piano delle righe aggiunte nella pillola del blocco di codice della chat.",
+ "chat.linesRemovedForeground": "Colore di primo piano delle righe rimosse dalla pillola del blocco di codice della chat.",
+ "chat.requestBackground": "Colore di sfondo di una richiesta di chat.",
+ "chat.requestBorder": "Colore del bordo di una richiesta di chat.",
+ "chat.requestBubbleBackground": "Colore di sfondo della bolla della richiesta di chat.",
+ "chat.requestBubbleHoverBackground": "Colore di sfondo della bolla della richiesta di chat al passaggio del puntatore.",
+ "chat.requestCodeBorder": "Colore del bordo dei blocchi di codice all'interno della bolla della richiesta di chat.",
+ "chat.slashCommandBackground": "Colore di sfondo di un comando slash della chat.",
+ "chat.slashCommandForeground": "Colore primo piano di un comando slash della chat.",
+ "chatCheckpointSeparator": "Colore del separatore del checkpoint della chat."
+ },
+ "vs/workbench/contrib/chat/common/chatContextKeys": {
+ "agentKind": "'Tipologia' dell'agente corrente.",
+ "agentSupportsAttachments": "True quando l'agente di chat supporta allegati.",
+ "chatEditApplied": "True quando le modifiche sono state applicate al testo della chat.",
+ "chatEditingCanRedo": "True quando è possibile ripetere un'interazione nel pannello di modifica.",
+ "chatEditingCanUndo": "True quando è possibile annullare un'interazione nel pannello di modifica.",
+ "chatEditingHasElicitationRequest": "True quando una richiesta di raccolta nella chat è in sospeso.",
+ "chatEditingHasToolConfirmation": "Vero quando è presente una conferma dello strumento.",
+ "chatExtensionInvalid": "True quando l’estensione della chat installata non è valida e deve essere aggiornata.",
+ "chatHasAgents": "True quando la chat dispone di agenti personalizzati disponibili.",
+ "chatHasFileAttachments": "True quando la chat contiene file allegati.",
+ "chatInEmptyStateWithHistoryEnabled": "True quando la cronologia dello stato vuoto della chat è abilitata E la chat è in stato vuoto.",
+ "chatIsActiveSession": "True se la sessione di chat è attualmente attiva (non eliminabile).",
+ "chatIsArchivedItem": "True quando l'elemento della sessione di chat è archiviato.",
+ "chatIsEnabled": "True quando la chat è abilitata perché un partecipante della chat predefinito viene attivato con un’implementazione.",
+ "chatIsKatexMathElement": "True quando si sposta lo stato attivo su un elemento matematico KaTeX.",
+ "chatItemId": "L’ID dell'elemento della chat.",
+ "chatLastItemId": "ID dell'ultimo elemento della chat.",
+ "chatModelsAreUserSelectable": "True quando l'utente può selezionare manualmente il modello di chat.",
+ "chatPanelExtensionParticipantRegistered": "Vero quando un partecipante alla chat predefinito viene registrato per il pannello da un'estensione.",
+ "chatPanelLocation": "Posizione del pannello della chat.",
+ "chatParticipantRegistered": "True quando un partecipante della chat predefinito viene registrato per il gruppo.",
+ "chatRemoteJobCreating": "True quando viene creato un processo dell'agente di codifica remoto.",
+ "chatRequest": "L'elemento della chat è una richiesta",
+ "chatResponse": "L'elemento della chat è una risposta.",
+ "chatResponseErrored": "True quando la risposta della chat ha restituito un errore.",
+ "chatResponseFiltered": "Vero quando la risposta della chat è stata filtrata dal server.",
+ "chatResponseSupportsIssueReporting": "Vero quando la risposta della chat corrente supporta la segnalazione dei problemi.",
+ "chatSessionHasModels": "True quando la chat è in una sessione di chat aggiunta come contribuito con 'modelli' disponibili per la visualizzazione.",
+ "chatSessionResponseDetectedAgentOrCommand": "Quando l'agente o il comando è stato rilevato automaticamente",
+ "chatSessionType": "Tipo dell'elemento della sessione di chat corrente.",
+ "chatSkipRequestInProgressMessage": "Vero quando il messaggio di richiesta di chat in corso deve essere ignorato.",
+ "chatToolCount": "Numero di strumenti disponibili nell'agente corrente.",
+ "chatToolGroupingThreshold": "Numero di strumenti da cui si inizia a eseguire il raggruppamento virtuale.",
+ "enableRemoteCodingAgentPromptFileOverlay": "Indica se la funzionalità di sovrimpressione del file di richiesta dell'agente di codifica remoto è abilitata",
+ "filePartOfEditSession": "True quando il widget chat si trova in un file con una sessione di modifica.",
+ "hasRemoteCodingAgent": "Verificare se sono disponibili agenti di codifica remoti",
+ "inChat": "True quando lo stato attivo è nel widget della chat, false in caso contrario.",
+ "inChatEditor": "Indica se il focus è in un editor di chat.",
+ "inChatTerminalToolOutput": "True quando lo stato attivo è nell'area geografica di output del terminale chat.",
+ "inInteractiveInput": "True quando lo stato attivo è nell'input della chat; in caso contrario, false.",
+ "inQuickChat": "True quando l'interfaccia utente della chat veloce ha Focus; in caso contrario, false.",
+ "interactiveInputHasFocus": "È True quando l'input della chat ha lo stato attivo.",
+ "interactiveInputHasText": "True quando l'input chat contiene del testo.",
+ "interactiveSessionCurrentlyEditing": "True quando la richiesta corrente viene modificata.",
+ "interactiveSessionCurrentlyEditingInput": "Vero quando l'input della richiesta corrente in basso è in fase di modifica.",
+ "interactiveSessionRequestInProgress": "True quando la richiesta corrente è ancora in corso.",
+ "interactiveSessionResponseVote": "Quando la risposta è stata approvata, è impostata su 'up'. Quando viene espresso un voto contrario, è impostato su 'down'. In caso contrario, è una stringa vuota.",
+ "lockedToCodingAgent": "È vero quando il widget della chat è bloccato alla sessione dell'agente di codifica.",
+ "toolsCount": "Numero di strumenti disponibili nella chat.",
+ "withinEditSessionDiff": "True quando il widget chat invia messaggi alla chat della sessione di modifica."
+ },
+ "vs/workbench/contrib/chat/common/chatEditingService": {
+ "chatEditingAgentSupportsReadonlyReferences": "Indica se l'agente di modifica della chat supporta riferimenti di sola lettura (temporanei)",
+ "chatEditingWidgetFileState": "Stato corrente del file nel widget di modifica della chat"
+ },
+ "vs/workbench/contrib/chat/common/chatModel": {
+ "codeCitation": "Codice simile trovato con 1 tipo di licenza",
+ "codeCitations": "Codice simile trovato con i tipi di licenza {0}",
+ "copyrightContentRetry": "Risposta cancellata a causa di una possibile corrispondenza con il codice pubblico. Verrà effettuato un nuovo tentativo con la richiesta modificata.",
+ "editsSummary": "Sono state apportate modifiche.",
+ "filteredContentRetry": "Risposta cancellata a causa dei filtri di sicurezza dei contenuti. Verrà effettuato un nuovo tentativo con la richiesta modificata."
+ },
+ "vs/workbench/contrib/chat/common/chatModes": {
+ "agentDescription": "Descrive cosa compilare",
+ "chatDescription": "Consente di esplorare e comprendere il codice",
+ "editsDescription": "Modifica o effettua il refactoring del codice selezionato"
+ },
+ "vs/workbench/contrib/chat/common/chatProgressTypes/chatToolInvocation": {
+ "toolInvocationMessage": "Uso di {0}"
+ },
+ "vs/workbench/contrib/chat/common/chatServiceImpl": {
+ "emptyResponse": "Il provider ha restituito una risposta Null",
+ "newChat": "Nuova chat"
+ },
+ "vs/workbench/contrib/chat/common/chatSessionStore": {
+ "join.chatSessionStore": "Salvataggio della cronologia della chat",
+ "newChat": "Nuova chat"
+ },
+ "vs/workbench/contrib/chat/common/chatUrlFetchingConfirmation": {
+ "allowRequestsCheckbox": "Effettua richieste senza conferma",
+ "allowResponsesCheckbox": "Consenti risposte senza conferma",
+ "approveAll": "Approva tutto",
+ "approveRequestTo": "Consenti richieste a {0}",
+ "approveResponseFrom": "Consenti risposte da {0}",
+ "approves": "Approva {0}",
+ "delete": "Elimina",
+ "denyAll": "Rifiuta tutto",
+ "moreOptions": "Consenti l'invio di richieste a...",
+ "moreOptionsManage": "Altre opzioni...",
+ "moreOptionsMultiple": "Configura approvazioni URL...",
+ "noApprovals": "Nessuna approvazione",
+ "openSettings": "Apri impostazioni",
+ "requests": "richieste",
+ "responses": "risposte",
+ "selectApproval": "Selezionare il modello di URL da approvare"
+ },
+ "vs/workbench/contrib/chat/common/chatVariableEntries": {
+ "chat.attachment.problems.all": "Tutti i problemi",
+ "chat.attachment.problems.inFile": "Problemi in {0}"
+ },
+ "vs/workbench/contrib/chat/common/languageModels": {
+ "vscode.extension.contributes.languageModelChatProviders": "Consente di contribuire ai provider di chat basate su modelli linguistici di un fornitore specifico.",
+ "vscode.extension.contributes.languageModels.displayName": "Nome visualizzato del provider di chat basate su modelli linguistici.",
+ "vscode.extension.contributes.languageModels.emptyVendor": "Il campo del fornitore non può essere vuoto.",
+ "vscode.extension.contributes.languageModels.managementCommand": "Comando per gestire il provider di chat basate su modelli linguistici, ad esempio 'Gestisci modelli Copilot'. Viene usato nella selezione dei modelli di chat. Se non viene specificato, durante la selezione del fornitore non viene visualizzata un'icona a ingranaggio.",
+ "vscode.extension.contributes.languageModels.vendor": "Fornitore univoco a livello globale di provider di chat basate su modelli linguistici.",
+ "vscode.extension.contributes.languageModels.vendorAlreadyRegistered": "Il fornitore '{0}' è già registrato e non può essere registrato due volte",
+ "vscode.extension.contributes.languageModels.when": "Condizione che deve essere true per mostrare il provider di chat del modello linguistico nell'elenco Gestisci modelli.",
+ "vscode.extension.contributes.languageModels.whitespaceVendor": "Il campo del fornitore non può iniziare o terminare con spazi vuoti."
+ },
+ "vs/workbench/contrib/chat/common/languageModelStats": {
+ "Language Models": "Copilot",
+ "chat": "chat",
+ "languageModels": "Statistiche di utilizzo dei modelli linguistici di questa estensione."
+ },
+ "vs/workbench/contrib/chat/common/languageModelToolsService": {
+ "builtin": "Predefinito",
+ "toolResultDataPartA11y": "{0} di {1} dati binari",
+ "user": "Definito dall'utente"
+ },
+ "vs/workbench/contrib/chat/common/modelPicker/modelPickerWidget": {
+ "chat.modelPicker.other": "Altri modelli"
+ },
+ "vs/workbench/contrib/chat/common/promptSyntax/chatPromptFilesContribution": {
+ "chatContribution.property.description": "(Facoltativo) Descrizione del file.",
+ "chatContribution.property.name": "Identificatore del file. Deve essere univoco all'interno dell'estensione per questo punto di contributo.",
+ "chatContribution.property.path": "Percorso del file relativo alla radice dell'estensione.",
+ "chatContribution.schema.description": "Aggiunge un contributo {0} alle richieste di chat.",
+ "extension.invalid.name": "L'estensione '{0}' non può registrare una voce {1} con nome non valido '{2}'.",
+ "extension.invalid.path": "Il percorso della voce '{0}' di ' {1} ' nell'estensione '{2}' si risolve esternamente all'estensione.",
+ "extension.missing.description": "L'estensione '{0}' non può registrare la voce '{1}' di {2} senza descrizione.",
+ "extension.missing.path": "L'estensione '{0}' non può registrare la voce '{1}' di {2} senza percorso.",
+ "extension.registration.failed": "Non è possibile registrare la voce '{0}' di {1}: {2}"
+ },
+ "vs/workbench/contrib/chat/common/promptSyntax/computeAutomaticInstructions": {
+ "instruction.file.description.agentsmd.folder": "Istruzioni per la cartella '{0}'",
+ "instruction.file.description.agentsmd.root": "Istruzioni per l'area di lavoro",
+ "instruction.file.reason.agentsmd": "Collegato automaticamente perché l'impostazione {0} è abilitata",
+ "instruction.file.reason.allFiles": "L'associazione automatica come criterio è **",
+ "instruction.file.reason.copilot": "Collegato automaticamente perché l'impostazione {0} è abilitata",
+ "instruction.file.reason.referenced": "Riferimento da {0}",
+ "instruction.file.reason.specificFile": "L'associazione automatica come criterio {0} corrisponde a {1}"
+ },
+ "vs/workbench/contrib/chat/common/promptSyntax/languageProviders/promptCodeActions": {
+ "expandToolNames": "Expand to {0} tools",
+ "migrateToAgent": "Esegui la migrazione al file agente personalizzato",
+ "renameToAgent": "Rinomina in 'agent'",
+ "updateAllToolNames": "Aggiorna tutti i nomi degli strumenti",
+ "updateToolName": "Aggiorna a '{0}'"
+ },
+ "vs/workbench/contrib/chat/common/promptSyntax/languageProviders/promptHeaderAutocompletion": {
+ "promptHeaderAutocompletion.handoffsExample": "Esempio di handoff"
+ },
+ "vs/workbench/contrib/chat/common/promptSyntax/languageProviders/promptHovers": {
+ "modelFamily": "- Famiglia: {0}",
+ "modelName": "- Nome: {0}",
+ "modelVendor": "- Fornitore: {0}",
+ "promptHeader.agent.argumentHint": "L'attributo argument-hint descrive gli input previsti o supportati dall'agente personalizzato.",
+ "promptHeader.agent.description": "Descrizione dell'agente personalizzato, del suo funzionamento e della sua modalità di utilizzo.",
+ "promptHeader.agent.handoffs": "Possibili azioni di handoff dopo il completamento dell'attività da parte dell'agente.",
+ "promptHeader.agent.handoffs.githubCopilot": "Nota: questo attributo non viene utilizzato quando la destinazione è github-copilot.",
+ "promptHeader.agent.model": "Specificare il modello che esegue l'agente personalizzato.",
+ "promptHeader.agent.model.githubCopilot": "Nota: questo attributo non viene utilizzato quando la destinazione è github-copilot.",
+ "promptHeader.agent.name": "Nome dell'agente come mostrato nell'interfaccia utente.",
+ "promptHeader.agent.target": "Destinazione a cui si applicano gli attributi dell'intestazione al pari di quelli degli strumenti. I valori possibili sono 'github-copilot' e 'vscode'.",
+ "promptHeader.agent.tools": "Set di strumenti a cui l'agente personalizzato ha accesso.",
+ "promptHeader.instructions.applyToRange": "Uno o più criteri GLOB (delimitati da virgole) che descrivono i file a cui si applicano le istruzioni. In base a questi criteri, il file viene incluso automaticamente nella richiesta quando il contesto contiene un file che corrisponde a uno o più di questi criteri. Usare \"**\" quando si vuole che il file venga sempre aggiunto.\r\nEsempio: `**/*.ts`, `**/*.js`, `client/**`",
+ "promptHeader.instructions.description": "Descrizione del file di istruzioni. Può essere usato per fornire contesto o informazioni aggiuntive sulle istruzioni e viene passato al modello linguistico come parte della richiesta.",
+ "promptHeader.instructions.name": "Nome del file di istruzioni come mostrato nell'interfaccia utente. Se non impostato, il nome è il nome del file.",
+ "promptHeader.prompt.agent.builtInDesc": "Agente predefinito",
+ "promptHeader.prompt.agent.builtin": "**Agenti predefiniti:**",
+ "promptHeader.prompt.agent.custom": "**Agenti personalizzati**",
+ "promptHeader.prompt.agent.customDesc": "Agente personalizzato",
+ "promptHeader.prompt.agent.description": "Modalità agente da usare quando si esegue la richiesta.",
+ "promptHeader.prompt.argumentHint": "L'attributo argument-hint descrive gli input previsti o supportati dalla richiesta.",
+ "promptHeader.prompt.description": "Descrizione della richiesta riutilizzabile, del suo funzionamento e della sua modalità di utilizzo.",
+ "promptHeader.prompt.model": "Modello da usare in questa richiesta.",
+ "promptHeader.prompt.name": "Nome della richiesta. È anche il nome del comando slash che eseguirà la richiesta.",
+ "promptHeader.prompt.tools": "Strumenti da usare in questa richiesta.",
+ "toolSetName": "Set di strumenti: {0}\r\n\r\n"
+ },
+ "vs/workbench/contrib/chat/common/promptSyntax/languageProviders/promptValidator": {
+ "githubCopilotTools.customAgent": "Chiama agenti personalizzati",
+ "githubCopilotTools.edit": "Modifica file",
+ "githubCopilotTools.search": "Cerca nei file",
+ "githubCopilotTools.shell": "Esegui comandi shell",
+ "promptValidator.agentNotFound": "Agente sconosciuto '{0}'. Agenti disponibili: {1}.",
+ "promptValidator.applyToMustBeString": "L'attributo \"applyTo\" deve essere una stringa.",
+ "promptValidator.applyToMustBeValidGlob": "L'attributo \"applyTo\" deve essere un criterio GLOB valido.",
+ "promptValidator.argumentHintMustBeString": "L'attributo 'argument-hint' deve essere una stringa.",
+ "promptValidator.argumentHintShouldNotBeEmpty": "L'attributo 'argument-hint' non deve essere vuoto.",
+ "promptValidator.attributeMustBeNonEmpty": "L'attributo '{0}' deve essere una stringa non vuota.",
+ "promptValidator.attributeMustBeString": "L'attributo '{0}' deve essere una stringa.",
+ "promptValidator.chatModesRenamedToAgents": "Le modalità di chat sono state rinominate in agenti. Sposta il file in {0}",
+ "promptValidator.chatModesRenamedToAgentsNoMove": "Le modalità di chat sono state rinominate in agenti. Sposta il file in {0}",
+ "promptValidator.deprecatedVariableReference": "Lo strumento o il set di strumenti '{0}' è stato rinominato, usare invece '{1}'.",
+ "promptValidator.deprecatedVariableReferenceMultipleNames": "Tool or toolset '{0}' has been renamed, use the following tools instead: {1}",
+ "promptValidator.descriptionMustBeString": "L'attributo \"description\" deve essere una stringa.",
+ "promptValidator.descriptionShouldNotBeEmpty": "L'attributo \"description\" non deve essere vuoto.",
+ "promptValidator.disabledTool": "Nell'intestazione deve essere abilitato anche lo strumento o il set di strumenti '{0}'.",
+ "promptValidator.eachHandoffMustBeObject": "Ogni handoff nell'attributo 'handoffs' deve essere un oggetto con 'label', 'agent', 'prompt' e facoltativamente 'send'.",
+ "promptValidator.eachToolMustBeString": "Ogni nome di strumento nell'attributo \"tools\" deve essere una stringa.",
+ "promptValidator.excludeAgentMustBeArray": "L'attributo 'excludeAgent' deve essere un array.",
+ "promptValidator.fileNotFound": "Il file '{0}' non è stato trovato in '{1}'.",
+ "promptValidator.handoffAgentMustBeNonEmptyString": "La proprietà 'agent' in un handoff deve essere una stringa non vuota.",
+ "promptValidator.handoffLabelMustBeNonEmptyString": "La proprietà 'agent' in un handoff deve essere una stringa non vuota.",
+ "promptValidator.handoffPromptMustBeString": "La proprietà 'prompt' in un handoff deve essere una stringa.",
+ "promptValidator.handoffSendMustBeBoolean": "La proprietà 'send' in un handoff deve essere un valore booleano.",
+ "promptValidator.handoffsMustBeArray": "L'attributo 'handoffs' deve essere un array.",
+ "promptValidator.ignoredAttribute.vscode-agent": "L'attributo '{0}' viene ignorato quando è in corso un'esecuzione locale in VS Code.",
+ "promptValidator.invalidFileReference": "Riferimento a file \"{0}\" non valido.",
+ "promptValidator.missingHandoffProperties": "Proprietà obbligatorie mancanti {0} nell'oggetto handoff.",
+ "promptValidator.modeDeprecated": "L'attributo 'mode' è stato deprecato. Al suo posto viene usato l'attributo 'agent'.",
+ "promptValidator.modeDeprecated.useAgent": "L'attributo 'mode' è stato deprecato. Rinominarlo in 'agent'.",
+ "promptValidator.modelMustBeNonEmpty": "L'attributo \"model\" deve essere una stringa non vuota.",
+ "promptValidator.modelMustBeString": "L'attributo \"model\" deve essere una stringa.",
+ "promptValidator.modelNotFound": "Modello sconosciuto '{0}'.",
+ "promptValidator.modelNotSuited": "Il modello \"{0}\" non è adatto per la modalità agente.",
+ "promptValidator.nameMustBeString": "L'attributo 'name' deve essere una stringa.",
+ "promptValidator.nameShouldNotBeEmpty": "L'attributo ' name' non deve essere vuoto.",
+ "promptValidator.targetInvalidValue": "L'attributo 'target' deve essere in uno dei seguenti formati: {0}.",
+ "promptValidator.targetMustBeNonEmpty": "L'attributo 'target' deve essere una stringa non vuota.",
+ "promptValidator.targetMustBeString": "L'attributo 'target' deve essere una stringa.",
+ "promptValidator.toolDeprecated": "Lo strumento o il set di strumenti '{0}' è stato rinominato, usare invece '{1}'.",
+ "promptValidator.toolDeprecatedMultipleNames": "Tool or toolset '{0}' has been renamed, use the following tools instead: {1}",
+ "promptValidator.toolNotFound": "Strumento sconosciuto '{0}'.",
+ "promptValidator.toolsMustBeArrayOrMap": "L'attributo \"tools\" deve essere un array.",
+ "promptValidator.toolsOnlyInAgent": "L'attributo 'tools' è supportato solo in modalità agente. L'attributo verrà ignorato.",
+ "promptValidator.unknownAttribute.github-agent": "L'attributo '{0}' non è supportato nei file agente personalizzati di GitHub Copilot. Supportato: {1}.",
+ "promptValidator.unknownAttribute.instructions": "L'attributo '{0}' non è supportato nei file di istruzioni. Supportato: {1}.",
+ "promptValidator.unknownAttribute.prompt": "L'attributo '{0}' non è supportato nei file di richieste. Supportato: {1}.",
+ "promptValidator.unknownAttribute.vscode-agent": "L'attributo '{0}' non è supportato nei file agente di VS Code. Supportato: {1}.",
+ "promptValidator.unknownHandoffProperty": "Proprietà '{0}' sconosciuta nell'oggetto handoff. Le proprietà supportate sono 'label', 'agent', 'prompt' e facoltativamente 'send'.",
+ "promptValidator.unknownVariableReference": "Strumento o set di strumenti \"{0}\" sconosciuto."
+ },
+ "vs/workbench/contrib/chat/common/promptSyntax/service/promptsServiceImpl": {
+ "extension.with.id": "Estensione: {0}",
+ "user-data-dir.capitalized": "Dati utente"
+ },
+ "vs/workbench/contrib/chat/common/tools/languageModelToolsContribution": {
+ "canBeReferencedInPrompt": "Se true, questo strumento viene visualizzato come allegato che l'utente può aggiungere manualmente alla richiesta. I partecipanti alla chat riceveranno lo strumento in {0}.",
+ "condition": "Condizione che deve essere true perché questo strumento sia abilitato. Si noti che uno strumento può essere ancora richiamato da un'altra estensione anche quando la relativa condizione 'when' è false.",
+ "descriptions": "Descrizione",
+ "icon": "Icona che rappresenta questo strumento. Può essere un percorso di file, un oggetto con percorsi di file per temi scuri e chiari o un riferimento all'icona del tema, ad esempio \"\\$(zap)\"",
+ "icon.dark": "Percorso dell'icona quando viene usato un tema scuro",
+ "icon.light": "Percorso dell'icona quando viene usato un tema chiaro",
+ "langModelToolSets": "Set di strumenti per modelli linguistici",
+ "langModelTools": "Strumenti del modello linguistico",
+ "legacyToolReferenceFullNames": "An array of deprecated names for backwards compatibility that can also be used to reference this tool in a query. Each name must not contain whitespace. Full names are generally in the format `toolsetName/toolReferenceName` (e.g., `search/readFile`) or just `toolReferenceName` when there is no toolset (e.g., `readFile`).",
+ "name": "Nome",
+ "parametersSchema": "Uno schema JSON per l'input accettato da questo strumento. L'input deve essere un oggetto al livello superiore. Un modello linguistico particolare potrebbe non supportare tutte le funzionalità dello schema JSON. Per altre informazioni, vedere la documentazione relativa alla famiglia di modelli linguistici in uso.",
+ "reference": "Nome riferimento",
+ "toolDisplayName": "Nome leggibile per questo strumento che può essere usato per descriverlo nell'interfaccia utente.",
+ "toolModelDescription": "Descrizione di questo strumento che può essere usato da un modello linguistico per selezionarlo.",
+ "toolName": "Nome univoco per questo strumento. Questo nome deve essere un identificatore univoco globale e viene usato anche come nome quando si presenta questo strumento a un modello linguistico.",
+ "toolName2": "Se {0} è abilitato per questo strumento, l'utente può usare '#' con questo nome per richiamare lo strumento in una query. In caso contrario, il nome non è obbligatorio. Il nome non deve contenere spazi vuoti.",
+ "toolSetDescription": "Descrizione di questo set di strumenti.",
+ "toolSetIcon": "Icona che rappresenta questo set di strumenti, ad esempio '$(zap)'",
+ "toolSetLegacyFullNames": "An array of deprecated names for backwards compatibility that can also be used to reference this tool set. Each name must not contain whitespace. Full names are generally in the format `parentToolSetName/toolSetName` (e.g., `github/repo`) or just `toolSetName` when there is no parent toolset (e.g., `repo`).",
+ "toolSetName": "Nome per questo set di strumenti. Usato come riferimento e non deve contenere spazi vuoti.",
+ "toolSetTools": "Elenco di strumenti o set di strumenti da includere in questo set di strumenti. Non può essere vuoto e deve fare riferimento agli strumenti tramite il loro 'toolReferenceName'.",
+ "toolTableDescription": "Descrizione",
+ "toolTableDisplayName": "Nome visualizzato",
+ "toolTableName": "Nome",
+ "toolTags": "Set di tag che descrivono approssimativamente le funzionalità dello strumento. Un utente di strumenti può usarli per filtrare il set di strumenti in base a quelli rilevanti per l'attività in questione oppure può scegliere un tag che può essere usato per identificare solo gli strumenti forniti da questa estensione.",
+ "toolUserDescription": "Una descrizione di questo strumento che può essere mostrata all'utente.",
+ "tools": "Strumenti",
+ "vscode.extension.contributes.toolSets": "Fornisce un set di strumenti per modelli linguistici che possono essere usati insieme.",
+ "vscode.extension.contributes.tools": "Aggiunge un contributo a uno strumento che può essere richiamato da un modello linguistico in una sessione di chat o da un comando autonomo. Gli strumenti registrati possono essere usati da tutte le estensioni."
+ },
+ "vs/workbench/contrib/chat/common/tools/manageTodoListTool": {
+ "todo.added.multiple": "{0} elementi ToDo aggiunti",
+ "todo.added.single": "1 elemento ToDo aggiunto",
+ "todo.completed": "Operazioni completate: *{0}* ({1}/{2})",
+ "todo.created.multiple": "{0} elementi ToDo creati",
+ "todo.created.single": "1 elemento ToDo creato",
+ "todo.readOperation": "Leggi elenco elementi ToDo",
+ "todo.starting": "Operazioni in fase di avvio: *{0}* ({1}/{2})",
+ "todo.updated": "Elenco elementi ToDo aggiornato",
+ "todo.updatedList": "Elenco elementi ToDo aggiornato",
+ "tool.manageTodoList.displayName": "Gestire e monitorare gli elementi ToDo per la pianificazione delle attività",
+ "tool.manageTodoList.userDescription": "Manage and track todo items for task planning"
+ },
+ "vs/workbench/contrib/chat/common/tools/runSubagentTool": {
+ "tool.runSubagent.displayName": "Esegui l'agente secondario",
+ "tool.runSubagent.userDescription": "Run a task within an isolated subagent context to enable efficient organization of tasks and context window management."
+ },
+ "vs/workbench/contrib/chat/common/tools/tools": {
+ "toolset.custom-agent": "Delegate tasks to other agents"
+ },
+ "vs/workbench/contrib/chat/common/voiceChatService": {
+ "voiceChatInProgress": "È in corso una sessione di riconoscimento vocale per la chat."
+ },
+ "vs/workbench/contrib/chat/electron-browser/actions/chatDeveloperActions": {
+ "workbench.action.chat.openStorageFolder.label": "Aprire la cartella di archiviazione della chat"
+ },
+ "vs/workbench/contrib/chat/electron-browser/actions/voiceChatActions": {
+ "keywordActivation.status.active": "Ascolto di 'Hey Code'...",
+ "keywordActivation.status.inactive": "In attesa della fine della chat vocale...",
+ "keywordActivation.status.name": "Attivazione di parole chiave vocali",
+ "listening": "Sto ascoltando",
+ "scopedChatSynthesisInProgress": "Definito come posizione in cui è in corso la registrazione vocale dal microfono per la chat vocale. Questa chiave è definita solo con ambito, per contesto di chat.",
+ "scopedVoiceChatGettingReady": "Vero quando ci si prepara per ricevere l'input vocale dal microfono per la chat vocale. Questa chiave è definita solo con ambito, per contesto di chat.",
+ "scopedVoiceChatInProgress": "Definito come posizione in cui è in corso la registrazione vocale dal microfono per la chat vocale. Questa chiave è definita solo con ambito, per contesto di chat.",
+ "voice.keywordActivation": "Controlla se la frase parola chiave 'Hey Code' è riconosciuta per avviare una sessione di chat vocale. L'abilitazione di questa opzione avvierà la registrazione dal microfono, ma l'audio viene elaborato localmente e non viene mai inviato a un server.",
+ "voice.keywordActivation.chatInContext": "L'attivazione delle parole chiave è abilitata e l'ascolto di \"Hey Code\" per avviare una sessione di chat vocale nell'editor o nella visualizzazione attiva a seconda dello stato attivo della tastiera.",
+ "voice.keywordActivation.chatInView": "L'attivazione delle parole chiave è abilitata e in ascolto di 'Hey Code' per avviare una sessione di chat vocale nella visualizzazione chat.",
+ "voice.keywordActivation.inlineChat": "L'attivazione delle parole chiave è abilitata e in ascolto di 'Hey Codice' per avviare una sessione di chat vocale nell'editor attivo se possibile.",
+ "voice.keywordActivation.off": "L'attivazione di parole chiave è disabilitata.",
+ "voice.keywordActivation.quickChat": "L'attivazione delle parole chiave è abilitata e in ascolto di 'Hey Code' per avviare una sessione di chat vocale nella chat veloce.",
+ "workbench.action.chat.holdToVoiceChatInChatView.label": "Tenere premuto per passare alla Chat vocale in visualizzazione Chat",
+ "workbench.action.chat.inlineVoiceChat": "Chat vocale inline",
+ "workbench.action.chat.quickVoiceChat.label": "Chat vocale veloce",
+ "workbench.action.chat.readChatResponseAloud": "Leggi ad alta voce",
+ "workbench.action.chat.startVoiceChat.label": "Avvia chat vocale",
+ "workbench.action.chat.stopListening.label": "Interrompi ascolto",
+ "workbench.action.chat.stopListeningAndSubmit.label": "Interrompi l’ascolto e invia",
+ "workbench.action.chat.stopReadChatItemAloud": "Interrompi lettura ad alta voce",
+ "workbench.action.chat.voiceChatInView.label": "Chat vocale in visualizzazione chat",
+ "workbench.action.speech.stopReadAloud": "Interrompi lettura ad alta voce"
+ },
+ "vs/workbench/contrib/chat/electron-browser/chat.contribution": {
+ "changeWorkspace.detail": "La richiesta di chat verrà interrotta se si cambia l'area di lavoro.",
+ "changeWorkspace.message": "È in corso una richiesta di chat. Modificare l'area di lavoro?",
+ "chatRequestInProgress": "È in corso una richiesta di chat.",
+ "closeTheWindow.detail": "Chiudendo la finestra, la richiesta di chat verrà interrotta.",
+ "closeTheWindow.message": "È in corso una richiesta di chat. Chiudere la finestra?",
+ "copilotWorkspaceTrust": "Le funzionalità IA sono attualmente supportate solo nelle aree di lavoro attendibili.",
+ "exit.detail": "Uscendo, la richiesta di chat verrà interrotta.",
+ "exit.message": "È in corso una richiesta di chat. Uscire?",
+ "quit.detail": "Uscendo, la richiesta di chat verrà interrotta.",
+ "quit.message": "È in corso una richiesta di chat. Uscire?",
+ "reloadTheWindow.detail": "La richiesta di chat verrà interrotta se si ricarica la finestra.",
+ "reloadTheWindow.message": "È in corso una richiesta di chat. Ricaricare la finestra?"
+ },
+ "vs/workbench/contrib/chat/electron-browser/tools/fetchPageTool": {
+ "fetchWebPage.binaryNotSupported": "Al momenti non sono supportati file binari.",
+ "fetchWebPage.confirmationMessage.plural": "Il contenuto Web può contenere codice dannoso o tentare attacchi del tipo prompt injection.",
+ "fetchWebPage.confirmationTitle.plural": "Recuperare le pagine Web?",
+ "fetchWebPage.confirmationTitle.singular": "Recuperare la pagina Web?",
+ "fetchWebPage.invalidUrl": "URL non valido",
+ "fetchWebPage.invocationMessage.plural": "Recupero di {0} risorse",
+ "fetchWebPage.invocationMessage.singular": "Recupero di {0}",
+ "fetchWebPage.invocationMessage.singularAsLink": "Recupero di [resource]({0})",
+ "fetchWebPage.noValidUrls": "Non sono stati specificati URL validi.",
+ "fetchWebPage.pastTenseMessage.plural": "{0} risorse recuperate, ma gli URL seguenti non erano validi:\r\n\r\n{1}\r\n\r\n",
+ "fetchWebPage.pastTenseMessage.singular": "Risorsa recuperata, ma l'URL seguente non era valido:\r\n\r\n{0}\r\n\r\n",
+ "fetchWebPage.pastTenseMessageResult.plural": "{0} risorse recuperate",
+ "fetchWebPage.pastTenseMessageResult.singular": "{0} recuperata",
+ "fetchWebPage.pastTenseMessageResult.singularAsLink": "[resource]({0}) recuperata",
+ "fetchWebPage.urlsDescription": "Matrice di URL da cui recuperare il contenuto."
},
"vs/workbench/contrib/codeActions/browser/codeActionsContribution": {
- "codeActionsOnSave": "Tipi di azione codice da eseguire durante il salvataggio.",
- "codeActionsOnSave.fixAll": "Controlla se eseguire l'azione di correzione automatica al salvataggio del file.",
- "codeActionsOnSave.generic": "Controlla se eseguire le azioni '{0}' al salvataggio del file."
- },
- "vs/workbench/contrib/codeActions/common/codeActionsExtensionPoint": {
- "contributes.codeActions": "Configura l'editor da usare per una risorsa.",
- "contributes.codeActions.description": "Descrizione dello scopo dell'azione codice.",
- "contributes.codeActions.kind": "`CodeActionKind` dell'azione codice aggiunta come contributo.",
- "contributes.codeActions.languages": "Modalità del linguaggio per le quali sono abilitate le azioni codice.",
- "contributes.codeActions.title": "Etichetta dell'azione codice usata nell'interfaccia utente."
- },
- "vs/workbench/contrib/codeActions/common/documentationExtensionPoint": {
- "contributes.documentation": "Documentazione aggiunta come contributo.",
- "contributes.documentation.refactoring": "Documentazione aggiunta come contributo per il refactoring.",
- "contributes.documentation.refactoring.command": "Comando eseguito.",
- "contributes.documentation.refactoring.title": "Etichetta della documentazione usata nell'interfaccia utente.",
- "contributes.documentation.refactoring.when": "Clausola WHEN.",
- "contributes.documentation.refactorings": "Documentazione aggiunta come contributo per i refactoring."
+ "alwaysSave": "Attivare azioni di codice sui salvataggi espliciti e sui salvataggi automatici attivati da modifiche della finestra o dello stato attivo.",
+ "codeActionsOnSave.generic": "Controlla se eseguire le azioni '{0}' al salvataggio del file.",
+ "editor.codeActionsOnSave": "Esegui Azioni codice per l'editor al salvataggio. È necessario specificare Azioni codice e l'editor non deve essere in fase di arresto. Quando {0} è impostato su 'afterDelay', le Azioni codice verranno eseguite solo quando il file viene salvato in modo esplicito. Esempio: `\"source.organizeImports\": \"explicit\" `",
+ "explicit": "Attiva azioni di codice solo se salvate in modo esplicito.",
+ "explicitBoolean": "Attivare azioni di codice solo se salvate in modo esplicito. Questo valore verrà deprecato a favore di \"esplicito\".",
+ "explicitSave": "Attiva azioni di codice solo se salvate in modo esplicito",
+ "explicitSaveBoolean": "Attivare azioni di codice solo se salvate in modo esplicito. Questo valore verrà deprecato a favore di \"esplicito\".",
+ "never": "Non attiva mai azioni di codice al salvataggio.",
+ "neverBoolean": "Attivare azioni di codice solo se salvate in modo esplicito. Questo valore verrà deprecato a favore di \"mai\".",
+ "neverSave": "Non attiva mai azioni di codice al salvataggio",
+ "neverSaveBoolean": "Non attiva mai azioni di codice al salvataggio. Questo valore verrà deprecato a favore di \"mai\".",
+ "notebook.codeActionsOnSave": "Esegui una serie di Azioni codice per un notebook al salvataggio. È necessario specificare Azioni codice e l'editor non deve essere in fase di arresto. Quando {0} è impostato su 'afterDelay', le Azioni codice verranno eseguite solo quando il file viene salvato in modo esplicito. Esempio: `\"notebook.source.organizeImports\": \"explicit\"`"
},
"vs/workbench/contrib/codeEditor/browser/accessibility/accessibility": {
- "ShowAccessibilityHelpAction": "Visualizza la Guida sull'accessibilità",
- "auto_off": "L'editor è configurato per rilevare automaticamente quando è collegata un'utilità per la lettura dello schermo, che non è collegata in questo momento.",
- "auto_on": "L'editor ha rilevato automaticamente che è collegata un'utilità per la lettura dello schermo.",
- "auto_unknown": "L'editor è configurato per utilizzare le API della piattaforma per rilevare quando è collegata un'utilità per la lettura dello schermo ma il runtime corrente non lo supporta.",
- "changeConfigToOnMac": "Premere Comando+E per configurare l'editor per essere definitivamente ottimizzato per l'utilizzo con un'utilità per la lettura dello schermo.",
- "changeConfigToOnWinLinux": "Premere Control+E per configurare l'editor per essere definitivamente ottimizzato per l'utilizzo con un'utilità per la lettura dello schermo.",
- "configuredOff": "L'editor è configurato per non essere ottimizzato per l'utilizzo con un'utilità per la lettura dello schermo.",
- "configuredOn": "L'editor è configurato per essere definitivamente ottimizzato per l'utilizzo con un'utilità per la lettura dello schermo - è possibile modificare questo modificando l'impostazione 'editor.accessibilitySupport'.",
- "emergencyConfOn": "Modifica dell'impostazione `editor.accessibilitySupport` in 'on'.",
- "introMsg": "Grazie per aver provato le opzioni di accessibilità di Visual Studio Code.",
- "openDocMac": "Premere Comando+H per aprire una finestra del browser con maggiori informazioni relative all'accessibilità di VS Code.",
- "openDocWinLinux": "Premere Control+H per aprire una finestra del browser con maggiori informazioni relative all'accessibilità di VS Code.",
- "openingDocs": "Apertura della pagina di documentazione sull'accessibilità di VS Code in corso.",
- "outroMsg": "Per chiudere questa descrizione comando e tornare all'editor, premere ESC o MAIUSC+ESC.",
- "status": "Stato:",
- "tabFocusModeOffMsg": "Premere TAB nell'editor corrente per inserire il carattere di tabulazione. Per attivare/disattivare questo comportamento, premere {0}.",
- "tabFocusModeOffMsgNoKb": "Premere TAB nell'editor corrente per inserire il carattere di tabulazione. Il comando {0} non può essere attualmente attivato con un tasto di scelta rapida.",
- "tabFocusModeOnMsg": "Premere TAB nell'editor corrente per spostare lo stato attivo sull'elemento con stato attivabile successivo. Per attivare/disattivare questo comportamento, premere {0}.",
- "tabFocusModeOnMsgNoKb": "Premere TAB nell'editor corrente per spostare lo stato attivo sull'elemento con stato attivabile successivo. Il comando {0} non può essere attualmente attivato con un tasto di scelta rapida."
+ "toggleScreenReaderMode": "Attiva/Disattiva modalità di accessibilità dell'utilità per la lettura dello schermo",
+ "toggleScreenReaderModeDescription": "Attiva o disattiva una modalità ottimizzata per l'utilizzo con utilità per la lettura dello schermo, dispositivi braille e altre tecnologie assistive."
+ },
+ "vs/workbench/contrib/codeEditor/browser/dictation/editorDictation": {
+ "startDictation": "Avvia dettatura nell'editor",
+ "stopDictation": "Arresta dettatura nell'editor",
+ "stopDictationShort1": "Interrompi dettatura ({0})",
+ "stopDictationShort2": "Interrompi dettatura",
+ "voiceCategory": "Voce"
+ },
+ "vs/workbench/contrib/codeEditor/browser/diffEditorAccessibilityHelp": {
+ "msg1": "Si è in un editor diff.",
+ "msg2": "Visualizzare le differenze successive {0} o precedenti {1} nella modalità di revisione delle differenze ottimizzata per lettura dello schermo.",
+ "msg3": "Esegui il comando Diff Editor: Switch Side per {0} alternare gli editor originali e quelli modificati.",
+ "msg4": "Per controllare quali segnali di accessibilità devono essere riprodotti, è possibile configurare le impostazioni seguenti: {0}.",
+ "msg5": "L'impostazione accessibility.verbosity.diffEditorActive controlla se viene creato un annuncio dell'editor diff quando questo diventa l'editor attivo."
},
"vs/workbench/contrib/codeEditor/browser/diffEditorHelper": {
"hintTimeout": "L'algoritmo di calcolo delle differenze è stato arrestato in anticipo (dopo {0} ms).",
"hintWhitespace": "Mostra differenze spazi vuoti",
"removeTimeout": "Rimuovi il limite"
},
+ "vs/workbench/contrib/codeEditor/browser/emptyTextEditorHint/emptyTextEditorHint": {
+ "defaultHintAriaLabelWithInlineChat": "Eseguire {0} per porre una domanda o eseguire {1} per selezionare un linguaggio e iniziare. Iniziare a digitare per ignorare.",
+ "defaultHintAriaLabelWithoutInlineChat": "Eseguire {0} per selezionare un linguaggio e iniziare. Iniziare a digitare per ignorare.",
+ "disableEditorEmptyHint": "Disabilita l'hint per l'editor vuoto",
+ "disableHint": " Attiva/disattiva {0} nelle impostazioni per disabilitare questo hint.",
+ "emptyTextEditorHintWithInlineChat": "[Generare codice]] ({0}) o [[selezionare un linguaggio]] ({1}). Iniziare a digitare per ignorare il messaggio o [[non visualizzarlo]] più.",
+ "emptyTextEditorHintWithoutInlineChat": "[[Selezionare un linguaggio]] ({0}) per iniziare. Iniziare a digitare per ignorare il messaggio o [[non visualizzarlo]] più."
+ },
"vs/workbench/contrib/codeEditor/browser/find/simpleFindWidget": {
"ariaSearchNoInput": "Immettere l'input di ricerca",
"ariaSearchNoResult": "{0} trovati per '{1}'",
@@ -4399,7 +7797,8 @@
"label.find": "Trova",
"label.nextMatchButton": "Risultato successivo",
"label.previousMatchButton": "Risultato precedente",
- "placeholder.find": "Trova (⇅ per la cronologia)"
+ "placeholder.find": "Trova",
+ "simpleFindWidget.sashBorder": "Colore del bordo del bordo slash."
},
"vs/workbench/contrib/codeEditor/browser/inspectEditorTokens/inspectEditorTokens": {
"inspectEditorTokens": "Sviluppatore: Controlla token e ambiti dell'editor",
@@ -4409,7 +7808,76 @@
"workbench.action.inspectKeyMap": "Esamina Mapping dei tasti",
"workbench.action.inspectKeyMapJSON": "Esamina mapping dei tasti (JSON)"
},
- "vs/workbench/contrib/codeEditor/browser/languageConfigurationExtensionPoint": {
+ "vs/workbench/contrib/codeEditor/browser/largeFileOptimizations": {
+ "largeFile": "{0}: la tokenizzazione, il wrapping, la riduzione, i codelen, l'evidenziazione delle parole e lo scorrimento permanente sono stati disattivati per questo file di grandi dimensioni per ridurre l'utilizzo della memoria ed evitare blocchi o arresti anomali.",
+ "removeOptimizations": "Abilita le funzionalità in modo forzato",
+ "reopenFilePrompt": "Riaprire il file per rendere effettiva questa impostazione."
+ },
+ "vs/workbench/contrib/codeEditor/browser/outline/documentSymbolsOutline": {
+ "document": "Simboli documento"
+ },
+ "vs/workbench/contrib/codeEditor/browser/outline/documentSymbolsTree": {
+ "1.problem": "1 problema in questo elemento",
+ "N.problem": "{0} problemi in questo elemento",
+ "deep.problem": "Contiene elementi con problemi",
+ "title.template": "{0} ({1})"
+ },
+ "vs/workbench/contrib/codeEditor/browser/quickaccess/gotoLineQuickAccess": {
+ "gotoLine": "Vai a Riga/Colonna...",
+ "gotoLineQuickAccess": "Vai a riga/colonna",
+ "gotoLineQuickAccessPlaceholder": "Digitare il numero di riga e la colonna facoltativa a cui passare, ad esempio 42:5 per la riga 42 e la colonna 5. Digitare :: per andare a un offset di caratteri (ad esempio ::1024 per il carattere 1024 dall'inizio del file). Usare valori negativi per spostarsi indietro.",
+ "gotoOffset": "Vai all'offset...",
+ "gotoOffsetQuickAccess": "Vai all'offset"
+ },
+ "vs/workbench/contrib/codeEditor/browser/quickaccess/gotoSymbolQuickAccess": {
+ "empty": "Non ci sono voci corrispondenti",
+ "gotoSymbol": "Vai al simbolo nell'editor...",
+ "gotoSymbolByCategoryQuickAccess": "Vai al simbolo nell'editor per categoria",
+ "gotoSymbolQuickAccess": "Vai al simbolo nell'editor",
+ "gotoSymbolQuickAccessPlaceholder": "Digitare il nome di un simbolo a cui passare.",
+ "miGotoSymbolInEditor": "Vai al &&simbolo nell'editor..."
+ },
+ "vs/workbench/contrib/codeEditor/browser/saveParticipants": {
+ "codeAction.apply": "Applicazione dell'azione codice '{0}'.",
+ "codeaction": "Correzioni rapide",
+ "codeaction.get2": "Recupero delle azioni del codice da {0} ([configure]({1})).",
+ "formatting2": "Esecuzione del formattatore '{0}' ([configura]({1}))."
+ },
+ "vs/workbench/contrib/codeEditor/browser/toggleColumnSelection": {
+ "miColumnSelection": "Modalità di &&selezione colonne",
+ "toggleColumnSelection": "Attiva/Disattiva modalità di selezione colonne"
+ },
+ "vs/workbench/contrib/codeEditor/browser/toggleMinimap": {
+ "miMinimap": "&&Minimappa",
+ "toggleMinimap": "Attiva/Disattiva minimappa"
+ },
+ "vs/workbench/contrib/codeEditor/browser/toggleMultiCursorModifier": {
+ "miMultiCursorAlt": "Passare ad ALT+clic per multi-cursore",
+ "miMultiCursorCmd": "Passare a Cmd+clic per multi-cursore",
+ "miMultiCursorCtrl": "Passare a CTRL+clic per multi-cursore",
+ "toggleLocation": "Modificatore per l'attivazione/disattivazione multi-cursore"
+ },
+ "vs/workbench/contrib/codeEditor/browser/toggleOvertype": {
+ "mitoggleOvertypeInsertMode": "&>Attiva/Disattiva sovrascrittura/Modalità di inserimento",
+ "toggleOvertypeInsertMode": "Attiva/Disattiva sovrascrittura/Modalità di inserimento",
+ "toggleOvertypeMode.description": "Alterna tra sovrascrittura e modalità di inserimento"
+ },
+ "vs/workbench/contrib/codeEditor/browser/toggleRenderControlCharacter": {
+ "miToggleRenderControlCharacters": "Esegui rendering dei &&caratteri di controllo",
+ "toggleRenderControlCharacters": "Attiva/Disattiva caratteri di controllo"
+ },
+ "vs/workbench/contrib/codeEditor/browser/toggleRenderWhitespace": {
+ "miToggleRenderWhitespace": "Esegui rendering degli spazi &&vuoti",
+ "toggleRenderWhitespace": "Attiva/Disattiva rendering spazi vuoti"
+ },
+ "vs/workbench/contrib/codeEditor/browser/toggleWordWrap": {
+ "editorWordWrap": "Indica se l'editor usa attualmente il ritorno a capo automatico.",
+ "miToggleWordWrap": "&&Ritorno a capo automatico",
+ "toggle.wordwrap": "Visualizza: Attiva/Disattiva ritorno a capo automatico",
+ "unwrapMinified": "Disabilita il ritorno a capo automatico per questo file",
+ "wrapMinified": "Abilita il ritorno a capo automatico per questo file"
+ },
+ "vs/workbench/contrib/codeEditor/common/languageConfigurationExtensionPoint": {
"formatError": "{0}: formato non valido. È previsto l'oggetto JSON.",
"parseErrors": "Errori durante l'analisi di {0}: {1}",
"schema.autoCloseBefore": "Definisce i caratteri che devono trovarsi dopo il cursore per applicare la chiusura automatica di parentesi quadre o virgolette quando si usa l'impostazione di chiusura automatica 'languageDefined'. Si tratta in genere di un set di caratteri con cui non può iniziare un'espressione.",
@@ -4418,9 +7886,9 @@
"schema.blockComment.begin": "Sequenza di caratteri che indica l'inizio di un commento per il blocco.",
"schema.blockComment.end": "Sequenza di caratteri che termina i commenti per il blocco.",
"schema.blockComments": "Definisce il modo in cui sono contrassegnati i commenti per il blocco.",
- "schema.brackets": "Definisce i simboli di parentesi quadra che aumentano o riducono il rientro.",
+ "schema.brackets": "Definisce i simboli di parentesi quadra che aumentano o riducono il rientro. Quando la colorazione delle coppie di parentesi è abilitata e {0} non è definito, questa opzione definisce anche le coppie di parentesi colorate in base al livello di annidamento.",
"schema.closeBracket": "Sequenza di stringa o carattere parentesi quadra di chiusura.",
- "schema.colorizedBracketPairs": "Definisce le coppie di bracket colorate in base al livello di annidamento se è abilitata la colorazione delle coppie di bracket.",
+ "schema.colorizedBracketPairs": "Definisce le coppie di parentesi colorate in base al livello di annidamento se è abilitata la colorazione delle coppie di parentesi. Tutte le parentesi non incluse in {0} verranno incluse automaticamente in {0}.",
"schema.comments": "Definisce i simboli di commento",
"schema.folding": "Impostazioni di riduzione del codice del linguaggio.",
"schema.folding.markers": "Marcatori di riduzione del codice specifici del linguaggio, come '#region' e '#endregion'. Le espressioni regolari di inizio e fine verranno confrontate con il contenuto di tutte le righe e devono essere progettate in modo efficace",
@@ -4444,7 +7912,9 @@
"schema.indentationRules.unIndentedLinePattern.errorMessage": "Deve corrispondere al modello `/^([gimuy]+)$/`.",
"schema.indentationRules.unIndentedLinePattern.flags": "Flag di RegExp per unIndentedLinePattern.",
"schema.indentationRules.unIndentedLinePattern.pattern": "Criterio di RegExp per unIndentedLinePattern.",
- "schema.lineComment": "Sequenza di caratteri che indica l'inizio di un commento per la riga.",
+ "schema.lineComment.comment": "Sequenza di caratteri che indica l'inizio di un commento per la riga.",
+ "schema.lineComment.noIndent": "Indica se il token del commento non può essere rientrato o posizionato in corrispondenza della prima colonna. Il valore predefinito è false.",
+ "schema.lineComment.object": "Configurazione per i commenti in linea.",
"schema.onEnterRules": "Regole della lingua da valutare quando si preme INVIO.",
"schema.onEnterRules.action": "Azione da eseguire.",
"schema.onEnterRules.action.appendText": "Descrive il testo da aggiungere dopo la nuova riga e dopo il rientro.",
@@ -4473,113 +7943,36 @@
"schema.wordPattern.flags.errorMessage": "Deve corrispondere al modello `/^([gimuy]+)$/`.",
"schema.wordPattern.pattern": "Il modello di RegExp utilizzato per trovare parole."
},
- "vs/workbench/contrib/codeEditor/browser/largeFileOptimizations": {
- "largeFile": "{0}: per questo file di grandi dimensioni sono state disattivate le opzioni di tokenizzazione, ritorno a capo automatico e riduzione del codice allo scopo di ridurre l'utilizzo della memoria ed evitare blocchi o arresti anomali.",
- "removeOptimizations": "Abilita le funzionalità in modo forzato",
- "reopenFilePrompt": "Riaprire il file per rendere effettiva questa impostazione."
+ "vs/workbench/contrib/codeEditor/electron-browser/selectionClipboard": {
+ "actions.pasteSelectionClipboard": "Incolla selezione da Appunti"
},
- "vs/workbench/contrib/codeEditor/browser/outline/documentSymbolsOutline": {
- "document": "Simboli documento"
+ "vs/workbench/contrib/codeEditor/electron-browser/startDebugTextMate": {
+ "startDebugTextMate": "Avvia registrazione della grammatica per la sintassi TextMate"
},
- "vs/workbench/contrib/codeEditor/browser/outline/documentSymbolsTree": {
- "1.problem": "1 problema in questo elemento",
- "Array": "matrice",
- "Boolean": "valore booleano",
- "Class": "classe",
- "Constant": "costante",
- "Constructor": "costruttore",
- "Enum": "enumerazione",
- "EnumMember": "membro di enumerazione",
- "Event": "evento",
- "Field": "campo",
- "File": "file",
- "Function": "funzione",
- "Interface": "interfaccia",
- "Key": "chiave",
- "Method": "metodo",
- "Module": "modulo",
- "N.problem": "{0} problemi in questo elemento",
- "Namespace": "spazio dei nomi",
- "Null": "Null",
- "Number": "numero",
- "Object": "oggetto",
- "Operator": "operatore",
- "Package": "pacchetto",
- "Property": "proprietà",
- "String": "stringa",
- "Struct": "struct",
- "TypeParameter": "parametro di tipo",
- "Variable": "variabile",
- "deep.problem": "Contiene elementi con problemi",
- "title.template": "{0} ({1})"
- },
- "vs/workbench/contrib/codeEditor/browser/quickaccess/gotoLineQuickAccess": {
- "gotoLine": "Vai a Riga/Colonna...",
- "gotoLineQuickAccess": "Vai a riga/colonna",
- "gotoLineQuickAccessPlaceholder": "Digitare il numero di riga e la colonna facoltativa a cui passare, ad esempio 42:5 per la riga 42 e la colonna 5."
- },
- "vs/workbench/contrib/codeEditor/browser/quickaccess/gotoSymbolQuickAccess": {
- "empty": "Non ci sono voci corrispondenti",
- "gotoSymbol": "Vai al simbolo nell'editor...",
- "gotoSymbolByCategoryQuickAccess": "Vai al simbolo nell'editor per categoria",
- "gotoSymbolQuickAccess": "Vai al simbolo nell'editor",
- "gotoSymbolQuickAccessPlaceholder": "Digitare il nome di un simbolo a cui passare.",
- "miGotoSymbolInEditor": "Vai al &&simbolo nell'editor..."
- },
- "vs/workbench/contrib/codeEditor/browser/saveParticipants": {
- "codeAction.apply": "Applicazione dell'azione codice '{0}'.",
- "codeaction": "Correzioni rapide",
- "codeaction.get2": "Recupero delle azioni codice da '{0}' ([configura] ({1})).",
- "formatting2": "Esecuzione del formattatore '{0}' ([configura]({1}))."
- },
- "vs/workbench/contrib/codeEditor/browser/toggleColumnSelection": {
- "miColumnSelection": "Modalità di &&selezione colonne",
- "toggleColumnSelection": "Attiva/Disattiva modalità di selezione colonne"
- },
- "vs/workbench/contrib/codeEditor/browser/toggleMinimap": {
- "miMinimap": "&&Minimap",
- "toggleMinimap": "Attiva/Disattiva minimappa"
- },
- "vs/workbench/contrib/codeEditor/browser/toggleMultiCursorModifier": {
- "miMultiCursorAlt": "Passare ad ALT+clic per multi-cursore",
- "miMultiCursorCmd": "Passare a Cmd+clic per multi-cursore",
- "miMultiCursorCtrl": "Passare a CTRL+clic per multi-cursore",
- "toggleLocation": "Modificatore per l'attivazione/disattivazione multi-cursore"
- },
- "vs/workbench/contrib/codeEditor/browser/toggleRenderControlCharacter": {
- "miToggleRenderControlCharacters": "Esegui rendering dei &&caratteri di controllo",
- "toggleRenderControlCharacters": "Attiva/Disattiva caratteri di controllo"
- },
- "vs/workbench/contrib/codeEditor/browser/toggleRenderWhitespace": {
- "miToggleRenderWhitespace": "Esegui rendering degli spazi &&vuoti",
- "toggleRenderWhitespace": "Attiva/Disattiva rendering spazi vuoti"
- },
- "vs/workbench/contrib/codeEditor/browser/toggleWordWrap": {
- "editorWordWrap": "Indica se l'editor usa attualmente il ritorno a capo automatico.",
- "miToggleWordWrap": "&&Ritorno a capo automatico",
- "toggle.wordwrap": "Visualizza: Attiva/Disattiva ritorno a capo automatico",
- "unwrapMinified": "Disabilita il ritorno a capo automatico per questo file",
- "wrapMinified": "Abilita il ritorno a capo automatico per questo file"
- },
- "vs/workbench/contrib/codeEditor/browser/untitledTextEditorHint": {
- "message": "[[Selezionare una lingua]] o [[aprire un editor diverso]] per iniziare.\r\nIniziare a digitare per eliminare o [[non mostrare]] più."
- },
- "vs/workbench/contrib/codeEditor/electron-sandbox/selectionClipboard": {
- "actions.pasteSelectionClipboard": "Incolla selezione da Appunti"
- },
- "vs/workbench/contrib/codeEditor/electron-sandbox/startDebugTextMate": {
- "startDebugTextMate": "Avvia registrazione della grammatica per sintassi TextMate"
+ "vs/workbench/contrib/commands/common/commands.contribution": {
+ "runCommands": "Esegui comandi",
+ "runCommands.commands": "Comandi da eseguire",
+ "runCommands.description": "Eseguire diversi comandi",
+ "runCommands.invalidArgs": "'runCommands' ha ricevuto un argomento di tipo non corretto. Rivedere l'argomento passato al comando.",
+ "runCommands.noCommandsToRun": "'runCommands' non ha ricevuto comandi da eseguire. Si è dimenticato di passare i comandi nell'argomento 'runCommands'?"
},
"vs/workbench/contrib/comments/browser/commentColors": {
+ "commentReplyInputBackground": "Colore di sfondo per la casella di input della risposta al commento.",
"commentThreadActiveRangeBackground": "Colore di sfondo per l'intervallo di commenti attualmente selezionato o al passaggio del mouse.",
- "commentThreadActiveRangeBorder": "Colore del bordo per l'intervallo di commenti attualmente selezionato o al passaggio del mouse.",
"commentThreadRangeBackground": "Colore di sfondo per gli intervalli di commenti.",
- "commentThreadRangeBorder": "Colore del bordo per gli intervalli di commenti.",
"resolvedCommentBorder": "Colore dei bordi e della freccia per i commenti risolti.",
- "unresolvedCommentBorder": "Colore dei bordi e della freccia per i commenti non risolti."
+ "resolvedCommentIcon": "Colore dell'icona dei commenti risolti.",
+ "unresolvedCommentBorder": "Colore dei bordi e della freccia per i commenti non risolti.",
+ "unresolvedCommentIcon": "Colore dell'icona dei commenti non risolti."
},
"vs/workbench/contrib/comments/browser/commentGlyphWidget": {
- "editorGutterCommentRangeForeground": "Colore delle decorazioni della barra di navigazione dell'editor per commentare gli intervalli."
+ "editorGutterCommentDraftGlyphForeground": "Colore della decorazione della rilegatura per i glifi di commento dei thread con commenti preliminari.",
+ "editorGutterCommentGlyphForeground": "Colore della decorazione della barra di navigazione dell'editor per l'aggiunta di commenti ai glifi.",
+ "editorGutterCommentRangeForeground": "Colore delle decorazioni della barra di navigazione dell'editor per commentare gli intervalli. Questo colore deve essere opaco.",
+ "editorGutterCommentUnresolvedGlyphForeground": "Colore della decorazione di rilegatura dell'editor per i glifi di commento dei thread di commento non risolti.",
+ "editorOverviewRuler.commentDraftForeground": "Colore della decorazione del righello delle annotazioni di commento dei thread con commenti preliminari. Questo colore deve essere opaco.",
+ "editorOverviewRuler.commentForeground": "Colore dell’effetto del righello della panoramica dell'editor per i commenti risolti. Il dovrebbe deve essere opaco.",
+ "editorOverviewRuler.commentUnresolvedForeground": "Colore dell’effetto del righello dell'editor per i commenti non risolti. Il colore dovrebbe essere opaco."
},
"vs/workbench/contrib/comments/browser/commentNode": {
"commentAddReactionDefaultError": "L'eliminazione della reazione al commento non è riuscita",
@@ -4594,54 +7987,157 @@
"newComment": "Digitare un nuovo commento",
"reply": "Rispondi..."
},
- "vs/workbench/contrib/comments/browser/commentThreadBody": {
- "commentThreadAria": "Thead commenti con {0} commenti. {1}.",
- "commentThreadAria.withRange": "Thread di commenti con {0}commenti su righe {1} fino a {2}. {3}."
- },
- "vs/workbench/contrib/comments/browser/commentThreadHeader": {
- "collapseIcon": "Icona per comprimere un commento alla revisione.",
- "label.collapse": "Comprimi",
- "startThread": "Avvia discussione"
- },
"vs/workbench/contrib/comments/browser/comments.contribution": {
+ "collapseAll": "Comprimi tutto",
+ "collapseOnResolve": "Controlla se il thread di commento deve essere compresso quando il thread viene risolto.",
+ "comments.maxHeight": "Controlla se il widget dei commenti scorre o si espande.",
"comments.openPanel.deprecated": "Questa impostazione è deprecata e sostituita da 'comments.openView'.",
"comments.openView": "Controlla quando aprire la visualizzazione commenti.",
"comments.openView.file": "La visualizzazione commenti verrà aperta quando è attivo un file con commenti.",
"comments.openView.firstFile": "Se la visualizzazione commenti non è stata ancora aperta durante questa sessione, verrà aperta la prima volta durante una sessione in cui è attivo un file con commenti.",
+ "comments.openView.firstFileUnresolved": "Se la visualizzazione commenti non è stata ancora aperta durante questa sessione, e il commento non è stato risolto, verrà aperta la prima volta durante una sessione in cui è attivo un file con commenti.",
"comments.openView.never": "La visualizzazione commenti non verrà mai aperta.",
+ "comments.visible": "Controlla la visibilità della barra dei commenti e dei thread di commento negli editor con intervalli di commenti e commenti. I commenti sono ancora accessibili tramite la visualizzazione commenti e l'attivazione dei commenti verrà attivata nello stesso modo in cui viene eseguito il comando \"Commenti: Attiva/disattiva commenti editor\" per attivare o disattivare i commenti.",
"commentsConfigurationTitle": "Commenti",
+ "confirmOnCollapse": "Controlla se viene visualizzata una finestra di dialogo di conferma durante la compressione di un thread di commento.",
+ "confirmOnCollapse.never": "Non visualizzare mai una finestra di dialogo di conferma quando si comprime un thread di commento.",
+ "confirmOnCollapse.whenHasUnsubmittedComments": "Mostra una finestra di dialogo di conferma quando si comprime un thread di commento con commenti non inviati.",
+ "expandAll": "Espandi tutto",
"openComments": "Controlla l'apertura del pannello dei commenti.",
+ "reply": "Rispondi",
+ "totalUnresolvedComments": "{0} commenti non risolti",
"useRelativeTime": "Determina se il tempo relativo verrà usato nei timestamp dei commenti, ad esempio '1 giorno fa'."
},
+ "vs/workbench/contrib/comments/browser/commentsAccessibility": {
+ "addCommentNoKb": "- Aggiungi commento alla selezione corrente{0}.",
+ "commentCommands": "Alcuni comandi di commento utili includono:",
+ "escape": "- Ignora commento (escape)",
+ "intro": "L'editor contiene intervalli commentabili. Alcuni comandi utili includono:",
+ "introWidget": "Questo widget contiene un'area di testo, per la composizione di nuovi commenti e azioni, che può essere tabulata dopo l'abilitazione della modalità focus tramite il comando Attiva/Disattiva tasto TAB per spostare lo stato attivo{0}.",
+ "next": "- Vai all'intervallo di commenti successivo{0}.",
+ "nextCommentThreadKb": "- Vai al thread del commento successivo{0}.",
+ "nextCommentedRangeKb": "- Vai all'intervallo con commenti successivo{0}.",
+ "previous": "- Vai all'intervallo di commenti precedente{0}.",
+ "previousCommentThreadKb": "- Vai al thread dei commenti precedente{0}.",
+ "previousCommentedRangeKb": "- Vai all'intervallo con commenti precedente{0}.",
+ "submitComment": "- Invia commento{0}."
+ },
+ "vs/workbench/contrib/comments/browser/commentsController": {
+ "commentRange": "Riga {0}",
+ "commentRangeStart": "Righe da {0} a {1}",
+ "comments.addCommand.error": "Il cursore deve essere compreso in un intervallo di commenti per aggiungere un commento.",
+ "comments.addFileCommentCommand.error": "I commenti al file non sono consentiti in questo file.",
+ "hasCommentRanges": "L'editor include intervalli di commenti.",
+ "hasCommentRangesKb": "L'editor include intervalli di commenti, eseguire il comando Apri guida accessibilità ({0}), per ulteriori informazioni.",
+ "hasCommentRangesNoKb": "L'editor include intervalli di commento. Per altre informazioni, eseguire il comando Apri guida per l'accessibilità, che attualmente non è attivabile tramite il tasto di scelta rapida.",
+ "pickCommentService": "Seleziona provider di commenti"
+ },
"vs/workbench/contrib/comments/browser/commentsEditorContribution": {
+ "comments.NextCommentedRange": "Vai all'intervallo con commenti successivo",
"comments.addCommand": "Aggiungi commento alla selezione corrente",
+ "comments.collapseAll": "Comprimi tutti i commenti",
+ "comments.expandAll": "Espandi tutti i commenti",
+ "comments.expandUnresolved": "Espandi commenti non risolti",
+ "comments.focusCommand.error": "Il cursore deve essere su una riga con un commento per spostare lo stato attivo sul commento",
+ "comments.focusCommentOnCurrentLine": "Sposta lo stato attivo sul commento nella riga corrente",
+ "comments.nextCommentingRange": "Vai all'intervallo di commenti successivo",
+ "comments.previousCommentedRange": "Vai all'intervallo con commenti precedente",
+ "comments.previousCommentingRange": "Vai all'intervallo di commenti precedente",
"comments.toggleCommenting": "Attivare/Disattivare commento editor",
- "hasCommentingProvider": "Indicare se l'area di lavoro aperta contiene commenti o intervalli di commenti.",
- "hasCommentingRange": "Indica se la posizione in corrispondenza del cursore attivo ha un intervallo di commenti",
- "nextCommentThreadAction": "Vai al thread di commento successivo",
- "pickCommentService": "Seleziona provider di commenti",
- "previousCommentThreadAction": "Vai al thread del commento precedente"
+ "commentsCategory": "Commenti"
+ },
+ "vs/workbench/contrib/comments/browser/commentsModel": {
+ "noComments": "Non sono ancora presenti commenti in questa area di lavoro."
},
"vs/workbench/contrib/comments/browser/commentsTreeViewer": {
"commentCount": "1 commento",
"commentLine": "[Ln {0}]",
"commentRange": "[Ln {0}-{1}]",
- "commentsCount": "{0} commenti",
+ "comments.view.title": "Commenti",
+ "commentsCountReplies": "{0} risposte",
+ "commentsCountReply": "1 risposta",
"image": "Immagine",
"imageWithLabel": "Immagine: {0}",
- "lastReplyFrom": "Ultima risposta da {0}"
+ "lastReplyFrom": "Ultima risposta da {0}",
+ "outdated": "Non aggiornato"
},
"vs/workbench/contrib/comments/browser/commentsView": {
- "collapseAll": "Comprimi tutto",
- "resourceWithCommentLabel": "Commento di ${0} alla riga {1} colonna {2} in {3}, origine: {4}",
+ "accessibleViewHint": "\r\nIspezionarlo nella visualizzazione accessibile ({0}).",
+ "acessibleViewHintNoKbOpen": "\r\nIspezionarlo nella visualizzazione accessibile tramite il comando Apri visualizzazione accessibile che attualmente non è attivabile tramite il tasto di scelta rapida.",
+ "comments.filter.ariaLabel": "Filtrare commenti",
+ "comments.filter.placeholder": "Filtro (ad esempio testo, autore)",
+ "fileCommentLabel": "in {0}",
+ "multiLineCommentLabel": "da riga {0} a riga {1} in {2}",
+ "oneLineCommentLabel": "alla riga {0} colonna {1} in {2}",
+ "replyCount": " {0} risposte,",
+ "resourceWithCommentLabel": "{0}: {1}\r\n{2}\r\n{3}\r\n{4}",
+ "resourceWithCommentLabelOutdated": "Non aggiornato da {0}: {1}\r\n{2}\r\n{3}\r\n{4}",
"resourceWithCommentThreadsLabel": "Commenti in {0}, percorso completo {1}",
- "rootCommentsLabel": "Commenti per l'area di lavoro corrente"
+ "resourceWithRepliesLabel": "{0} {1}",
+ "rootCommentsLabel": "Commenti per l'area di lavoro corrente",
+ "showing filtered results": "Visualizzazione di {0} elementi su {1}"
+ },
+ "vs/workbench/contrib/comments/browser/commentsViewActions": {
+ "comment sorts": "Ordina per",
+ "comments": "Commenti",
+ "commentsClearFilterText": "Cancellare filtro testo",
+ "focusCommentsFilter": "Filtro commenti con stato attivo",
+ "focusCommentsList": "Visualizzazione commenti con stato attivo",
+ "resolved": "Mostrare risolti",
+ "sorting by position in file": "Posizione nel file",
+ "sorting by updated at": "Ora dell'aggiornamento",
+ "toggle resolved": "Mostrare risolti",
+ "toggle sorting by resource": "Posizione nel file",
+ "toggle sorting by updated at": "Ora dell'aggiornamento",
+ "toggle unresolved": "Mostrare non risolti",
+ "unresolved": "Mostrare non risolti"
+ },
+ "vs/workbench/contrib/comments/browser/commentThreadBody": {
+ "commentThreadAria": "Thead commenti con {0} commenti. {1}.",
+ "commentThreadAria.document": "Thread di commenti con {0} commenti sull'intero documento. {1}.",
+ "commentThreadAria.withRange": "Thread di commenti con {0}commenti su righe {1} fino a {2}. {3}."
+ },
+ "vs/workbench/contrib/comments/browser/commentThreadHeader": {
+ "collapseIcon": "Icona per comprimere un commento alla revisione.",
+ "label.collapse": "Comprimi",
+ "startThread": "Avvia discussione"
+ },
+ "vs/workbench/contrib/comments/browser/commentThreadWidget": {
+ "commentLabel": "Commento",
+ "commentLabelWithKeybinding": "{0}, usare ({1}) per la Guida all'accessibilità",
+ "commentLabelWithKeybindingNoKeybinding": "{0}, eseguire il comando Apri guida accessibilità che non è attualmente attivabile tramite il tasto di scelta rapida."
+ },
+ "vs/workbench/contrib/comments/browser/commentThreadZoneWidget": {
+ "confirmCollapse": "Se si comprime questo thread di commenti, i commenti non inviati andranno persi. Vuoi rimuovere questi commenti?",
+ "discard": "Rimuovi",
+ "neverAskAgain": "Non chiedermelo più"
},
"vs/workbench/contrib/comments/browser/reactionsAction": {
+ "comment.reactionLabelMany": "{0}{1} reazioni con {2}",
+ "comment.reactionLabelNone": "{0}{1} reazione",
+ "comment.reactionLabelOne": "{0} 1 reazione con {1}",
+ "comment.reactionLessThanTen": "{0}{1} hanno reagito con {2}",
+ "comment.reactionMoreThanTen": "{0}{1} e altri {2} hanno reagito con {3}",
+ "comment.toggleableReaction": "Attiva/Disattiva reazione, ",
"pickReactions": "Seleziona reazioni..."
},
- "vs/workbench/contrib/comments/common/commentModel": {
- "noComments": "Non sono ancora presenti commenti in questa area di lavoro."
+ "vs/workbench/contrib/comments/common/commentContextKeys": {
+ "comment": "Valore di contesto del commento",
+ "commentController": "ID del controller commenti associato a un thread di commento",
+ "commentFocused": "Imposta quando il commento è attivo",
+ "commentIsEmpty": "Imposta quando il commento non contiene input",
+ "commentThread": "Valore di contesto del thread di commento",
+ "commentThreadIsEmpty": "Imposta quando il thread non ha commenti",
+ "commentingEnabled": "Indica se la funzionalità di commento è abilitata",
+ "editorHasCommentingRange": "Indica se l'editor attivo ha un intervallo di commenti",
+ "hasComment": "Indica se la posizione sul cursore attivo ha un commento",
+ "hasCommentingProvider": "Indicare se l'area di lavoro aperta contiene commenti o intervalli di commenti.",
+ "hasCommentingRange": "Indica se la posizione in corrispondenza del cursore attivo ha un intervallo di commenti"
+ },
+ "vs/workbench/contrib/customEditor/browser/customEditorInput": {
+ "editorCannotMove": "Non è possibile spostare \"{0}\": l'editor contiene modifiche che possono essere salvate solo nella finestra corrente.",
+ "editorUnsupportedInWindow": "Non è possibile aprire l'editor in questa finestra: contiene modifiche che possono essere salvate solo nella finestra originale.",
+ "reopenInOriginalWindow": "Apri nella finestra originale"
},
"vs/workbench/contrib/customEditor/common/contributedCustomEditors": {
"builtinProviderDisplayName": "Predefinita"
@@ -4649,6 +8145,9 @@
"vs/workbench/contrib/customEditor/common/customEditor": {
"context.customEditor": "Tipo di visualizzazione dell'editor personalizzato attualmente attivo."
},
+ "vs/workbench/contrib/customEditor/common/customTextEditorModel": {
+ "vetoExtHostRestart": "Un editor di testo fornito dall'estensione per '{0}' è ancora aperto e verrebbe chiuso in caso contrario."
+ },
"vs/workbench/contrib/customEditor/common/extensionPoint": {
"contributes.customEditors": "Editor personalizzati aggiunti come contributo.",
"contributes.displayName": "Nome leggibile dell'editor personalizzato. Viene visualizzato agli utenti quando selezionano l'editor da usare.",
@@ -4657,7 +8156,11 @@
"contributes.priority.option": "L'editor non viene usato automaticamente quando l'utente apre una risorsa, ma può passare all'editor usando il comando `Riapri con`.",
"contributes.selector": "Set di GLOB per cui è abilitato l'editor personalizzato.",
"contributes.selector.filenamePattern": "GLOB per cui è abilitato l'editor personalizzato.",
- "contributes.viewType": "Identificatore dell'editor personalizzato. Deve essere univoco in tutti gli editor personalizzati, di conseguenza è consigliabile includere l'ID estensione in `viewType`. `viewType` viene usato quando si registrano editor personalizzati con `vscode.registerCustomEditorProvider` e nell'[evento di attivazione](https://code.visualstudio.com/api/references/activation-events) `onCustomEditor:${id}`."
+ "contributes.viewType": "Identificatore dell'editor personalizzato. Deve essere univoco in tutti gli editor personalizzati, di conseguenza è consigliabile includere l'ID estensione in `viewType`. `viewType` viene usato quando si registrano editor personalizzati con `vscode.registerCustomEditorProvider` e nell'[evento di attivazione](https://code.visualstudio.com/api/references/activation-events) `onCustomEditor:${id}`.",
+ "customEditors": "Editor personalizzati",
+ "customEditors filenamePattern": "Criterio nome file",
+ "customEditors priority": "Priorità",
+ "customEditors view type": "Tipo di visualizzazione"
},
"vs/workbench/contrib/debug/browser/baseDebugView": {
"debug.lazyButton.tooltip": "Fai clic per espandere"
@@ -4666,17 +8169,18 @@
"addBreakpoint": "Aggiungi punto di interruzione",
"addConditionalBreakpoint": "Aggiungi punto di interruzione condizionale...",
"addLogPoint": "Aggiungi punto di inserimento istruzione di registrazione...",
+ "addTriggeredBreakpoint": "Aggiungi punto di interruzione attivato...",
"breakpoint": "Punto di interruzione",
"breakpointHasConditionDisabled": "Questo {0} ha un {1} che potrebbe essere perso dopo il Rimuovi. È consigliabile attivare il {0}.",
"breakpointHasConditionEnabled": "Per questo {0} è presente un {1} che verrà perso in seguito alla rimozione. Provare invece a disabilitare il {0}.",
- "cancel": "Annulla",
+ "breakpointHelper": "Fare clic per aggiungere un punto di interruzione",
"condition": "Condizione",
"debugIcon.breakpointCurrentStackframeForeground": "Colore dell'icona per lo stack frame corrente dei punti di interruzione.",
"debugIcon.breakpointDisabledForeground": "Colore dell'icona per i punti di interruzione disabilitati.",
"debugIcon.breakpointForeground": "Colore dell'icona per i punti di interruzione.",
"debugIcon.breakpointStackframeForeground": "Colore dell'icona per tutti gli stack frame dei punti di interruzione.",
"debugIcon.breakpointUnverifiedForeground": "Colore dell'icona per i punti di interruzione non verificati.",
- "disable": "Disabilita",
+ "disable": "&&Disabilita",
"disableBreakpoint": "Disabilita {0}",
"disableBreakpointOnLine": "Disabilita punto di interruzione riga",
"disableInlineColumnBreakpoint": "Disabilita punto di interruzione in linea a colonna {0}",
@@ -4685,7 +8189,7 @@
"editBreakpoints": "Modifica punti di interruzione",
"editInlineBreakpointOnColumn": "Modifica punto di interruzione in linea a colonna {0}",
"editLineBreakpoint": "Modifica punto di interruzione riga",
- "enable": "Abilita",
+ "enable": "&&Abilita",
"enableBreakpoint": "Abilita {0}",
"enableBreakpointOnLine": "Abilita punto di interruzione riga",
"enableBreakpoints": "Abilita punto di interruzione in linea a colonna {0}",
@@ -4696,39 +8200,44 @@
"removeBreakpoints": "Rimuovi punti di interruzione",
"removeInlineBreakpointOnColumn": "Rimuovi punto di interruzione in linea a colonna {0}",
"removeLineBreakpoint": "Rimuovi punto di interruzione riga",
- "removeLogPoint": "Rimuovi {0}",
+ "removeLogPoint": "&&Rimuovi {0}",
"runToLine": "Esegui fino alla riga"
},
- "vs/workbench/contrib/debug/browser/breakpointWidget": {
- "breakpointType": "Tipo di punto di interruzione",
- "breakpointWidgetExpressionPlaceholder": "Interrompe quando l'espressione restituisce true. Premere 'INVIO' per accettare oppure 'ESC' per annullare.",
- "breakpointWidgetHitCountPlaceholder": "Interrompe quando viene soddisfatta la condizione del numero di passaggi. Premere 'INVIO' per accettare oppure 'ESC' per annullare.",
- "breakpointWidgetLogMessagePlaceholder": "Messaggio da registrare quando viene raggiunto il punto di interruzione. Le espressioni tra parentesi graffe ({}) vengono interpolate. Premere 'INVIO' per accettare, \"ESC\" per annullare.",
- "expression": "Espressione",
- "hitCount": "Numero di passaggi",
- "logMessage": "Messaggio del log"
- },
"vs/workbench/contrib/debug/browser/breakpointsView": {
"access": "Accesso",
"activateBreakpoints": "Attiva/Disattiva Attiva punti di interruzione",
+ "addDataBreakpointOnAddress": "Aggiungi punto di interruzione dati all'indirizzo",
"addFunctionBreakpoint": "Aggiungi punto di interruzione della funzione",
"breakpoint": "Punto di interruzione",
"breakpointUnsupported": "I punti di interruzione di questo tipo non sono supportati dal debugger",
"breakpoints": "Punti di interruzione",
+ "dataBreakPointExpresionAriaLabel": "Espressione del tipo. Il punto di interruzione della funzione si verificherà quando l'espressione viene valutata come True",
+ "dataBreakPointHitCountAriaLabel": "Numero di passaggi del tipo. Il punto di interruzione dei dati si verificherà quando viene raggiunto il numero di passaggi.",
"dataBreakpoint": "Punto di interruzione dei dati",
+ "dataBreakpointAccessType": "Seleziona il tipo di accesso da monitorare",
+ "dataBreakpointAddrFormat": "L'indirizzo deve essere un intervallo di numeri nel formato \"[inizio]-[fine]\" o \"[inizio] + [byte]\"",
+ "dataBreakpointAddrStartEnd": "Deve essere un numero intero decimale o un valore esadecimale che inizia con \"0x\", ottenuto {0}",
+ "dataBreakpointError": "Non è stato possibile impostare il punto di interruzione dei dati a {0}: {1}",
+ "dataBreakpointExpressionPlaceholder": "Interrompi quando l'espressione restituisce true",
+ "dataBreakpointHitCountPlaceholder": "Interrompi quando viene raggiunto il numero di passaggi",
+ "dataBreakpointMemoryRangePlaceholder": "Intervallo assoluto (0x1234 - 0x1300) o intervallo di byte dopo un indirizzo (0x1234 + 0xff)",
+ "dataBreakpointMemoryRangePrompt": "Immetti un intervallo di memoria in cui interrompere",
"dataBreakpointUnsupported": "Punti di interruzione dati non supportati da questo tipo di debug",
"dataBreakpointsNotSupported": "I punti di interruzione dati non sono supportati da questo tipo di debug",
+ "debug.decimal.address": "Indirizzo decimale: {0}",
"disableAllBreakpoints": "Disabilita tutti i punti di interruzione",
"disabledBreakpoint": "Punto di interruzione disabilitato",
"disabledLogpoint": "Punto di inserimento istruzione di registrazione disabilitato",
- "editBreakpoint": "Modifica punto di interruzione della funzione...",
+ "editBreakpoint": "Modifica condizione funzione...",
"editCondition": "Modifica condizione...",
+ "editDataBreakpointOnAddress": "Modifica indirizzo...",
"editHitCount": "Modifica numero di passaggi...",
+ "editMode": "Modalità di modifica",
"enableAllBreakpoints": "Abilita tutti i punti di interruzione",
"exceptionBreakpointAriaLabel": "Condizione punto di interruzione dell'eccezione di tipo",
"exceptionBreakpointPlaceholder": "Interrompi quando l'espressione restituisce true",
- "expression": "Condizione dell'espressione: {0}",
- "expressionAndHitCount": "Espressione: {0} | Numero di passaggi: {1}",
+ "expression": "Condizione: {0}",
+ "expressionAndHitCount": "Condizione: {0} | numero di passaggi: {1}",
"expressionCondition": "Condizione dell'espressione: {0}",
"functionBreakPointExpresionAriaLabel": "Espressione del tipo. Il punto di interruzione della funzione verrà interrotto quando l'espressione viene valutata come true",
"functionBreakPointHitCountAriaLabel": "Numero di passaggi del tipo. Il punto di interruzione della funzione verrà interrotto quando viene raggiunto il numero di passaggi.",
@@ -4744,6 +8253,7 @@
"instructionBreakpointAtAddress": "Punto di interruzione istruzione all'indirizzo {0}",
"instructionBreakpointUnsupported": "Punti di interruzione delle istruzioni non supportati da questo tipo di debug",
"logMessage": "Messaggio del log: {0}",
+ "miDataBreakpoint": "&&Punto di interruzione dei dati...",
"miDisableAllBreakpoints": "Disabilita tutti i &&punti di interruzione",
"miEnableAllBreakpoints": "A&&bilita tutti i punti di interruzione",
"miFunctionBreakpoint": "Punto di interruzione &&funzione...",
@@ -4752,11 +8262,29 @@
"reapplyAllBreakpoints": "Riapplica tutti i punti di interruzione",
"removeAllBreakpoints": "Rimuovi tutti i punti di interruzione",
"removeBreakpoint": "Rimuovi punto di interruzione",
+ "selectBreakpointMode": "Seleziona punto di interruzione",
+ "triggeredBy": "Premere dopo il punto di interruzione: {0}",
"unverifiedBreakpoint": "Punto di interruzione non verificato",
"unverifiedExceptionBreakpoint": "Punto di interruzione dell'eccezione non verificato",
"unverifiedLogpoint": "Punto di inserimento istruzione di registrazione non verificato",
"write": "Scrittura"
},
+ "vs/workbench/contrib/debug/browser/breakpointWidget": {
+ "bpMode": "Modalità",
+ "breakpointType": "Tipo di punto di interruzione",
+ "breakpointWidgetExpressionPlaceholder": "Interrompe quando l'espressione restituisce true. Premere {0}' per accettare oppure '{1}' per annullare.",
+ "breakpointWidgetHitCountPlaceholder": "Interrompe quando viene soddisfatta la condizione del numero di passaggi. Premere '{0}' per accettare oppure '{1}' per annullare.",
+ "breakpointWidgetLogMessagePlaceholder": "Messaggio da registrare quando viene raggiunto il punto di interruzione. Le espressioni tra parentesi graffe ({}) vengono interpolate. Premere '{0}' per accettare, \"{1}\" per annullare.",
+ "expression": "Espressione",
+ "hitCount": "Numero di passaggi",
+ "logMessage": "Messaggio del log",
+ "noBpSource": "Non è stato possibile caricare l'origine.",
+ "noTriggerByBreakpoint": "Nessuno",
+ "ok": "OK",
+ "selectBreakpoint": "Selezionare punto di interruzione",
+ "triggerByLoading": "Caricamento in corso...",
+ "triggeredBy": "Attendere il punto di interruzione"
+ },
"vs/workbench/contrib/debug/browser/callStackEditorContribution": {
"focusedStackFrameLineHighlight": "Colore di sfondo per l'evidenziazione della riga in corrispondenza dello stack frame attivo.",
"topStackFrameLineHighlight": "Colore di sfondo per l'evidenziazione della riga in corrispondenza della posizione iniziale dello stack frame."
@@ -4764,7 +8292,7 @@
"vs/workbench/contrib/debug/browser/callStackView": {
"callStackAriaLabel": "Esegui debug stack di chiamate",
"collapse": "Comprimi tutto",
- "loadAllStackFrames": "Carica tutti gli stack frame",
+ "loadAllStackFrames": "Carica altri stack frame",
"paused": "In pausa",
"pausedOn": "Sospeso in caso di {0}",
"restartFrame": "Riavvia frame",
@@ -4777,21 +8305,30 @@
"stackFrameAriaLabel": "Stack frame {0}, riga {1}, {2}",
"threadAriaLabel": "Thread {0} {1}"
},
+ "vs/workbench/contrib/debug/browser/callStackWidget": {
+ "failedToLoadFrames": "Non è possibile caricare gli stack frame: {0}",
+ "goToFile": "Apri file",
+ "stackFrameLocation": "Riga {0} colonna {1}",
+ "stackTrace": "Analisi dello stack",
+ "stackTraceLabel": "{0}, riga {1} in {2}"
+ },
"vs/workbench/contrib/debug/browser/debug.contribution": {
"SetNextStatement": "Imposta istruzione successiva",
- "addToWatchExpressions": "Aggiungi a espressione di controllo",
"allowBreakpointsEverywhere": "Consente di impostare punti di interruzione in qualsiasi file.",
- "always": "Visualizzare sempre debug nella barra di stato",
+ "always": "Mostrare sempre l'elemento di debug nella barra di stato",
"breakWhenValueChanges": "Interrompi quando cambia il valore",
"breakWhenValueIsAccessed": "Interrompi quando viene eseguito l'accesso al valore",
"breakWhenValueIsRead": "Interrompi quando il valore viene letto",
"breakpoints": "Punti di interruzione",
"callStack": "Stack di chiamate",
"cancel": "Annulla il debug.",
- "copyAsExpression": "Copia come espressione",
+ "closeReadonlyTabsOnEnd": "Al termine di una sessione di debug, tutte le schede di sola lettura associate a tale sessione verranno chiuse",
"copyStackTrace": "Copia stack di chiamate",
"copyValue": "Copia valore",
- "debug.autoExpandLazyVariables": "Mostra automaticamente i valori per le variabili risolte in modo differito dal debugger, ad esempio i getter.",
+ "debug.autoExpandLazyVariables": "Controlla se le variabili risolte in modo differito, ad esempio i getter, vengono risolte e espanse automaticamente dal debugger.",
+ "debug.autoExpandLazyVariables.auto": "In modalità ottimizzata per l'utilità per la lettura dello schermo, espandere automaticamente le variabili lazy.",
+ "debug.autoExpandLazyVariables.off": "Non espandere mai automaticamente le variabili lazy.",
+ "debug.autoExpandLazyVariables.on": "Espandi sempre automaticamente le variabili lazy.",
"debug.confirmOnExit": "Controlla se confermare la chiusura della finestra se sono presenti sessioni di debug attive.",
"debug.confirmOnExit.always": "Conferma sempre se sono presenti sessioni di debug.",
"debug.confirmOnExit.never": "Non confermare mai.",
@@ -4802,10 +8339,18 @@
"debug.console.fontSize": "Controllare le dimensioni del carattere in pixel nella console di debug.",
"debug.console.historySuggestions": "Controlla se la console di debug deve suggerire input digitato in precedenza.",
"debug.console.lineHeight": "Controlla l'altezza della riga in pixel nella console di debug. Usare 0 per calcolare l'altezza della riga dalle dimensioni del carattere.",
+ "debug.console.maximumLines": "Controlla il numero massimo di righe nella Console di debug.",
"debug.console.wordWrap": "Controlla se le righe devono andare a capo nella console di debug.",
"debug.disassemblyView.showSourceCode": "Mostra il codice sorgente nella visualizzazione disassembly.",
+ "debug.enableStatusBarColor": "Colore della barra di stato quando il debugger è attivo.",
"debug.focusEditorOnBreak": "Controlla se l’editor deve ricevere lo stato attivo in caso di interruzione del debugger.",
"debug.focusWindowOnBreak": "Controlla se la finestra del workbench deve ricevere lo stato attivo in caso di interruzione del debugger.",
+ "debug.gutterMiddleClickAction.conditionalBreakpoint": "Aggiungi punto di interruzione condizionale.",
+ "debug.gutterMiddleClickAction.logpoint": "Aggiungi punto di inserimento istruzione di registrazione.",
+ "debug.gutterMiddleClickAction.none": "Non eseguire alcuna azione.",
+ "debug.gutterMiddleClickAction.triggeredBreakpoint": "Aggiungi punto di interruzione attivato.",
+ "debug.hideLauncherWhileDebugging": "Nasconde il controllo 'Avvia debug' nella barra del titolo della visualizzazione 'Esegui e debug' mentre il debug è attivo. Rilevante solo quando {0} non è ancorato.",
+ "debug.hideSlowPreLaunchWarning": "Nascondere l'avviso visualizzato quando \"preLaunchTask\" è in esecuzione da un po' di tempo.",
"debug.onTaskErrors": "Controlla le operazioni da eseguire quando vengono rilevati errori dopo l'esecuzione di un'attività di preavvio.",
"debug.saveBeforeStart": "Controlla gli editor da salvare prima di avviare una sessione di debug.",
"debug.saveBeforeStart.allEditorsInActiveGroup": "Salva tutti gli editor presenti nel gruppo attivo prima di avviare una sessione di debug.",
@@ -4815,10 +8360,14 @@
"debugAnyway": "Ignora gli errori delle attività e avvia il debug.",
"debugCategory": "Debug",
"debugConfigurationTitle": "Debug",
- "debugFocusConsole": "Stato attivo su visualizzazione console di debug",
"debugPanel": "Console di debug",
+ "debugToolBar.commandCenter": "'(Sperimentale)' Mostra la barra degli strumenti di debug nel centro comandi.",
+ "debugToolBar.docked": "Mostra la barra degli strumenti di debug solo nelle visualizzazioni di debug.",
+ "debugToolBar.floating": "Mostra la barra degli strumenti di debug in tutte le visualizzazioni.",
+ "debugToolBar.hidden": "Non visualizzare la barra degli strumenti di debug.",
"disassembly": "Disassembly",
"editWatchExpression": "Modifica espressione",
+ "gutterMiddleClickAction": "Controlla l'azione da eseguire quando si fa clic sulla barra di navigazione dell'editor con il pulsante centrale del mouse.",
"inlineBreakpoint": "Punto di interruzione in linea",
"inlineValues": "Mostra i valori delle variabili inline nell'editor durante il debug.",
"inlineValues.focusNoScroll": "Mostra i valori delle variabili inline nell'editor durante il debug quando il linguaggio supporta le posizioni dei valori inline.",
@@ -4840,10 +8389,11 @@
"miStepOut": "Esci da &&istruzione/routine",
"miStepOver": "Ese&&gui istruzione/routine",
"miStopDebugging": "A&&rresta debug",
+ "miToggleBreakpoint": "Attiva/Disattiva punto di interruzione",
"miToggleDebugConsole": "Console di de&&bug",
"miViewRun": "&&Esegui",
- "never": "Non mostrare mai debug nella barra di stato",
- "onFirstSessionStart": "Mostra debug nella barra solo stato dopo il primo avvio del debug",
+ "never": "Non mostrare mai l'elemento di debug nella barra di stato",
+ "onFirstSessionStart": "Mostrare l'elemento di debug nella barra di stato solo dopo il primo avvio di debug",
"openDebug": "Controlla quando aprire la visualizzazione di debug.",
"openExplorerOnEnd": "Apre automaticamente la visualizzazione di esplorazione al termine di una sessione di debug.",
"prompt": "Chiede conferma all'utente.",
@@ -4851,18 +8401,20 @@
"restartFrame": "Riavvia frame",
"run": "Esegui o esegui debug...",
"run and debug": "Esegui con debug",
+ "runMenu": "Esegui",
"setValue": "Imposta valore",
"showBreakpointsInOverviewRuler": "Controlla se i punti di interruzione devono essere visualizzati nel righello delle annotazioni.",
"showErrors": "Mostra la visualizzazione Problemi e non avvia il debug.",
- "showInStatusBar": "Controlla quando rendere visibile la barra di stato del debug.",
+ "showInStatusBar": "Controlla quando rendere visibile l'elemento di debug nella barra di stato.",
"showInlineBreakpointCandidates": "Controlla se gli elementi Decorator candidati dei punti di interruzione inline devono essere visualizzati nell'editor durante il debug.",
"showSubSessionsInToolBar": "Controlla se le sessioni secondarie di debug vengono visualizzate nella barra degli strumenti di debug. Quando questa impostazione è false, il comando di arresto di una sessione secondaria avrà effetto anche sulla sessione padre.",
+ "showVariableTypes": "Mostra il tipo di variabile nel riquadro delle variabili durante la sessione di debug",
"startDebugPlaceholder": "Digitare il nome di una configurazione di avvio da eseguire.",
"startDebuggingHelp": "Avvia debug",
"tasksQuickAccessHelp": "Mostrare tutte le console di debug",
"tasksQuickAccessPlaceholder": "Digitare il nome di una console di debug da aprire.",
"terminateThread": "Termina thread",
- "toolBarLocation": "Controlla la posizione della barra degli strumenti di debug. Le opzioni sono: `floating`, ovvero mobile in tutte le visualizzazioni, `docked`, ovvero ancorata nella visualizzazione di debug oppure `hidden`, ovvero nascosta.",
+ "toolBarLocation": "Controlla la posizione della barra degli strumenti di debug. 'mobile' in tutte le visualizzazioni, 'ancorato' nella visualizzazione di debug, 'commandCenter' (richiede {0}) oppure 'nascosto'.",
"variables": "Variabili",
"viewMemory": "Visualizza dati binari",
"watch": "Espressione di controllo"
@@ -4870,23 +8422,26 @@
"vs/workbench/contrib/debug/browser/debugActionViewItems": {
"addConfigTo": "Aggiungi configurazione ({0})...",
"addConfiguration": "Aggiungi configurazione...",
+ "commentLabelWithKeybinding": "{0}, usare ({1}) per la Guida all'accessibilità",
+ "commentLabelWithKeybindingNoKeybinding": "{0}, eseguire il comando Apri guida accessibilità che non è attualmente attivabile tramite il tasto di scelta rapida.",
"debugLaunchConfigurations": "Configurazioni di esecuzione debug",
"debugSession": "Sessione di debug",
"noConfigurations": "Non ci sono configurazioni"
},
"vs/workbench/contrib/debug/browser/debugAdapterManager": {
"CouldNotFindLanguage": "Non è disponibile alcuna estensione per il debug di {0}. Trovare un'estensione {0} nel Marketplace?",
- "cancel": "Annulla",
"debugName": "Nome della configurazione. Viene visualizzato nel menu a discesa delle configurazioni di avvio.",
"debugNoType": "Il \"tipo\" del debugger non può essere omesso e deve essere di tipo \"string\"",
"debugPostDebugTask": "Attività da eseguire al termine della sessione di debug.",
"debugPrelaunchTask": "Attività da eseguire prima dell'avvio della sessione di debug.",
"debugServer": "Solo per lo sviluppo dell'estensione di debug: se si specifica una porta, Visual Studio Code prova a connettersi a un adattatore di debug in esecuzione in modalità server",
- "findExtension": "Trova l'estensione {0}",
+ "findExtension": "&&Trova l'estensione {0}",
"installExt": "Installa l'estensione...",
"installLanguage": "Installa un'estensione per {0}...",
+ "moreOptionsForDebugType": "Altre opzioni {0}...",
"selectDebug": "Selezionare debugger",
- "suggestedDebuggers": "Suggerito"
+ "suggestedDebuggers": "Suggerito",
+ "suppressMultipleSessionWarning": "Disabilitare l'avviso quando si tenta di avviare la stessa configurazione di debug più di una volta."
},
"vs/workbench/contrib/debug/browser/debugColors": {
"debugIcon.continueForeground": "Icona della barra degli strumenti di Debug per la continuazione.",
@@ -4903,13 +8458,19 @@
"debugToolBarBorder": "Colore del bordo della barra degli strumenti di debug."
},
"vs/workbench/contrib/debug/browser/debugCommands": {
+ "addConfiguration": "Aggiungi configurazione...",
"addInlineBreakpoint": "Aggiungi punto di interruzione in linea",
+ "addToWatchExpressions": "Aggiungi a espressione di controllo",
+ "attachToCurrentCodeRenderer": "Collega al renderer di codice corrente",
"callStackBottom": "Passare alla fine dello stack di chiamate",
"callStackDown": "Spostarsi in basso nello stack di chiamate",
"callStackTop": "Passare all'inizio dello stack di chiamate",
"callStackUp": "Spostarsi in alto nello stack di chiamate",
"chooseLocation": "Scegli il percorso specifico",
"continueDebug": "Continua",
+ "copyAddress": "Copia indirizzo",
+ "copyAsExpression": "Copia come espressione",
+ "copyValue": "Copia valore",
"debug": "Debug",
"disconnect": "Disconnetti",
"disconnectSuspend": "Disconnetti e sospendi",
@@ -4926,13 +8487,15 @@
"selectAndStartDebugging": "Seleziona e avvia il debug",
"selectDebugConsole": "Selezionare console di debug",
"selectDebugSession": "Seleziona sessione di debug",
+ "selectExceptionBreakpointsPlaceholder": "Seleziona i punti di interruzione delle eccezioni abilitati",
"startDebug": "Avvia debug",
"startWithoutDebugging": "Avvia senza eseguire debug",
"stepIntoDebug": "Esegui istruzione",
"stepIntoTargetDebug": "Esegui istruzione nella destinazione",
"stepOutDebug": "Esci da istruzione/routine",
"stepOverDebug": "Esegui istruzione/routine",
- "stop": "Arresta"
+ "stop": "Arresta",
+ "toggleExceptionBreakpoints": "Attiva/disattiva i punti di interruzione delle eccezioni"
},
"vs/workbench/contrib/debug/browser/debugConfigurationManager": {
"DebugConfig.failed": "Non è possibile creare il file 'launch.json' all'interno della cartella '.vscode' ({0}).",
@@ -4945,6 +8508,7 @@
"workbench.action.debug.startDebug": "Avviare una nuova sessione di debug"
},
"vs/workbench/contrib/debug/browser/debugEditorActions": {
+ "EditBreakpointEditorAction": "Debug: modifica punto di interruzione",
"addToWatch": "Aggiungi a espressione di controllo",
"closeExceptionWidget": "Chiudi il widget Eccezione",
"conditionalBreakpointEditorAction": "Debug: Aggiungi Punto di interruzione condizionale...",
@@ -4955,18 +8519,21 @@
"logPointEditorAction": "Debug: Aggiungi punto di inserimento istruzione di registrazione...",
"miConditionalBreakpoint": "Punto di interruzione &&condizionale...",
"miDisassemblyView": "&&DisassemblyView",
+ "miEditBreakpoint": "&&Modifica punto di interruzione",
"miLogPoint": "&&Punto di inserimento istruzione di registrazione...",
"miToggleBreakpoint": "Attiva/Disattiva &&punto di interruzione",
+ "miTriggerByBreakpoint": "&&Punto di interruzione attivato...",
"mitogglesource": "&&ToggleSource",
"openDisassemblyView": "Apri visualizzazione disassembly",
"runToCursor": "Esegui fino al cursore",
"showDebugHover": "Debug: Visualizza passaggio del mouse",
"stepIntoTargets": "Esegui istruzione nella destinazione",
"toggleBreakpointAction": "Debug: Attiva/Disattiva punto di interruzione",
- "toggleDisassemblyViewSourceCode": "Attiva/disattiva il codice sorgente nella visualizzazione disassembly"
+ "toggleDisassemblyViewSourceCode": "Attiva/disattiva il codice sorgente nella visualizzazione disassembly",
+ "toggleDisassemblyViewSourceCodeDescription": "Mostra o nasconde il codice sorgente nel disassembly",
+ "triggerByBreakpointEditorAction": "Debug: aggiungi punto di interruzione attivato..."
},
"vs/workbench/contrib/debug/browser/debugEditorContribution": {
- "addConfiguration": "Aggiungi configurazione...",
"editor.inlineValuesBackground": "Colore per lo sfondo del valore inline di debug.",
"editor.inlineValuesForeground": "Colore per il testo del valore inline di debug."
},
@@ -4996,6 +8563,7 @@
"debugBreakpointLog": "Icona per i punti di interruzione dei log.",
"debugBreakpointLogDisabled": "Icona per i punti di interruzione dei log disabilitati.",
"debugBreakpointLogUnverified": "Icona per i punti di interruzione dei log non verificati.",
+ "debugBreakpointPendingOnTrigger": "Icona per i punti di interruzione in attesa di un altro punto di interruzione.",
"debugBreakpointUnsupported": "Icona per i punti di interruzione non supportati.",
"debugBreakpointUnverified": "Icona per i punti di interruzione non verificati.",
"debugCollapseAll": "Icona per l'azione Comprimi tutto nelle visualizzazioni di debug.",
@@ -5028,6 +8596,7 @@
"variablesViewIcon": "Icona della visualizzazione Variabili.",
"watchExpressionRemove": "Icona per l'azione Rimuovi nella visualizzazione Espressione di controllo.",
"watchExpressionsAdd": "Icona dell'azione di aggiunta nella visualizzazione Espressione di controllo.",
+ "watchExpressionsAddDataBreakpoint": "Icona dell'azione di aggiunta del punto di interruzione dei dati nella visualizzazione Punti di interruzione.",
"watchExpressionsAddFuncBreakpoint": "Icona per l'azione Aggiungi punto di interruzione della funzione nella visualizzazione Espressione di controllo.",
"watchExpressionsRemoveAll": "Icona per l'azione Rimuovi tutto nella visualizzazione Espressione di controllo.",
"watchViewIcon": "Icona della visualizzazione Espressione di controllo."
@@ -5038,15 +8607,16 @@
"configure": "configura",
"contributed": "aggiunte come contributo",
"customizeLaunchConfig": "Imposta configurazione di avvio",
+ "mostRecent": "Più recenti",
"noDebugResults": "Non ci sono configurazioni di avvio corrispondenti",
"providerAriaLabel": "Configurazioni di {0} aggiunte come contributo",
"removeLaunchConfig": "Rimuovi configurazione di avvio"
},
"vs/workbench/contrib/debug/browser/debugService": {
"1activeSession": "1 sessione attiva",
+ "active debug session": "È ancora in esecuzione una sessione di debug che verrebbe terminata.",
"breakpointAdded": "Aggiunto un punto di interruzione alla riga {0} del file {1}",
"breakpointRemoved": "Rimosso un punto di interruzione alla riga {0} del file {1}",
- "cancel": "Annulla",
"compoundMustHaveConfigurations": "Per avviare più configurazioni, deve essere impostato l'attributo \"configurations\" dell'elemento compounds.",
"configMissing": "In 'launch.json' manca la configurazione '{0}'.",
"debugAdapterCrash": "Il processo dell'adattatore di debug è stato terminato in modo imprevisto ({0})",
@@ -5068,12 +8638,14 @@
},
"vs/workbench/contrib/debug/browser/debugSession": {
"debuggingStarted": "Il debug è stato avviato.",
+ "debuggingStartedNoDebug": "Esecuzione senza debug avviata.",
"debuggingStopped": "Il debug è stato arrestato.",
"noDebugAdapter": "Non è disponibile alcun debugger. Non è possibile inviare '{0}'",
+ "sessionDoesNotSupporBytesBreakpoints": "La sessione non supporta punti di interruzione con byte",
"sessionNotReadyForBreakpoints": "La sessione non è pronta per i punti di interruzione"
},
"vs/workbench/contrib/debug/browser/debugSessionPicker": {
- "moveFocusedView.selectView": "Search debug sessions by name",
+ "moveFocusedView.selectView": "Cerca per nome nelle sessioni di debug",
"workbench.action.debug.spawnFrom": "Sessione {0} generata da {1}",
"workbench.action.debug.startDebug": "Avviare una nuova sessione di debug"
},
@@ -5086,8 +8658,9 @@
"DebugTaskNotFound": "Non è stato possibile trovare l'attività specificata.",
"DebugTaskNotFoundWithTaskId": "Non è stato possibile trovare l'attività '{0}'.",
"abort": "Interrompi",
- "cancel": "Annulla",
- "debugAnyway": "Esegui comunque il debug",
+ "configureTask": "Configurare attività",
+ "debugAnyway": "&&Esegui comunque il debug",
+ "debugAnywayNoMemo": "Esegui comunque il debug",
"invalidTaskReference": "Non è possibile fare riferimento all'attività '{0}' da una configurazione di avvio che si trova in una cartella diversa dell'area di lavoro.",
"preLaunchTaskError": "È presente un errore dopo l'esecuzione di preLaunchTask '{0}'.",
"preLaunchTaskErrors": "Sono presenti errori dopo l'esecuzione di preLaunchTask '{0}'.",
@@ -5095,9 +8668,9 @@
"preLaunchTaskTerminated": "L'attività '{0}' di preLaunchTask è stata terminata.",
"remember": "Memorizza la scelta nelle impostazioni utente",
"rememberTask": "Memorizza la scelta per questa attività",
- "showErrors": "Mostra errori",
- "taskNotTracked": "Non è possibile tenere traccia dell'attività '{0}'. Assicurarsi che sia stato definito un matcher problemi.",
- "taskNotTrackedWithTaskId": "Non è possibile tenere traccia dell'attività '{0}'. Assicurarsi che sia stato definito un matcher problemi."
+ "runningTask": "In attesa di preLaunchTask \"{0}\"...",
+ "showErrors": "&&Mostra errori",
+ "taskNotTracked": "L'attività \"{0}\" non è stata chiusa e non è stato definito un elemento \"problemMatcher\". Definire un problemMatcher per le attività di controllo."
},
"vs/workbench/contrib/debug/browser/debugToolBar": {
"notebook.moreRunActionsLabel": "Altro...",
@@ -5107,6 +8680,7 @@
"vs/workbench/contrib/debug/browser/debugViewlet": {
"debugPanel": "Console di debug",
"miOpenConfigurations": "Apri &&configurazioni",
+ "openLaunchConfigDescription": "Apre il file usato per configurare la modalità di debug del programma",
"selectWorkspaceFolder": "Selezionare una cartella dell'area di lavoro in cui creare un file launch.json o aggiungerla al file di configurazione dell'area di lavoro",
"startAdditionalSession": "Avvia sessione aggiuntiva"
},
@@ -5129,10 +8703,13 @@
"vs/workbench/contrib/debug/browser/linkDetector": {
"fileLink": "CTRL+clic per {0}",
"fileLinkMac": "CMD+clic per {0}",
+ "fileLinkWithPath": "CTRL+clic per {0}{1}",
+ "fileLinkWithPathMac": "CMD+clic per {0}{1}",
"followForwardedLink": "visitare il collegamento usando la porta inoltrata",
"followLink": "visitare il collegamento"
},
"vs/workbench/contrib/debug/browser/loadedScriptsView": {
+ "collapse": "Comprimi tutto",
"loadedScriptsAriaLabel": "Script caricati da debug",
"loadedScriptsFolderAriaLabel": "Cartella {0}, script caricato, debug",
"loadedScriptsRootFolderAriaLabel": "Cartella dell'area di lavoro {0}, script caricato, debug",
@@ -5142,30 +8719,40 @@
},
"vs/workbench/contrib/debug/browser/rawDebugSession": {
"canNotStart": "Il debugger deve aprire una nuova scheda o finestra per l'oggetto del debug, ma il browser ha impedito questa operazione. È necessario concedere l'autorizzazione per continuare.",
- "cancel": "Annulla",
- "continue": "Continua",
+ "continue": "&&Continua",
"moreInfo": "Altre info",
"noDebugAdapter": "Non è stato trovato alcun debugger disponibile. Non è possibile inviare '{0}'.",
"noDebugAdapterStart": "Non è possibile avviare la sessione di debug perché non è stato trovato alcun adattatore di debug."
},
"vs/workbench/contrib/debug/browser/repl": {
- "actions.repl.acceptInput": "Accetta input da REPL",
+ "actions.repl.acceptInput": "Console di debug: Accetta input",
"actions.repl.copyAll": "Debug: copia tutto in console",
"clearRepl": "Cancella console",
+ "clearRepl.descriotion": "Cancella tutto l'output del programma dal REPL di debug",
"collapse": "Comprimi tutto",
+ "commentLabelWithKeybinding": "{0}, usare ({1}) per la Guida all'accessibilità",
+ "commentLabelWithKeybindingNoKeybinding": "{0}, eseguire il comando Apri guida accessibilità che non è attualmente attivabile tramite il tasto di scelta rapida.",
"copy": "Copia",
"copyAll": "Copia tutti",
"debugConsole": "Console di debug",
- "debugConsoleCleared": "La console di debug è stata cancellata",
- "filter": "Filtro",
+ "debugFocusConsole": "Stato attivo su visualizzazione console di debug",
"paste": "Incolla",
- "repl.action.filter": "REPL Sposta stato attivo su contenuto da filtrare",
+ "repl.action.filter": "Console di debug: Evidenzia filtro",
+ "repl.action.find": "Console di debug: Sposta stato attivo su Trova",
"selectRepl": "Seleziona console di debug",
+ "showing filtered repl lines": "Visualizzazione di {0} elementi su {1}",
"startDebugFirst": "Per valutare le espressioni, avviare una sessione di debug",
- "workbench.debug.filter.placeholder": "Filtro, ad esempio text, !exclude"
- },
- "vs/workbench/contrib/debug/browser/replFilter": {
- "showing filtered repl lines": "Visualizzazione di {0} elementi su {1}"
+ "workbench.debug.filter.placeholder": "Filtro (ad esempio, text, !exclude, \\escape)"
+ },
+ "vs/workbench/contrib/debug/browser/replAccessibilityHelp": {
+ "repl.accessibleView": "Il comando Open Accessible View{0} consentirà l'esplorazione carattere per carattere dell'output della console.",
+ "repl.clear": "Il comando Debug: Clear Console{0} cancellerà l'output della console.",
+ "repl.help": "La console di debug è un Read-Eval-Print-Loop che consente di valutare le espressioni ed eseguire comandi e può essere messa in evidenza con {0}.",
+ "repl.history": "La cronologia di output della console di debug può essere spostata con i tasti freccia SU e GIÙ.",
+ "repl.input": "È possibile passare all'input della console di debug dall'output con il comando Focus Next Widget {0}.",
+ "repl.lazyVariables": "L'impostazione \"debug.expandLazyVariables\" controlla se le variabili vengono valutate automaticamente. Questa opzione è abilitata per impostazione predefinita quando si usa un'utilità per la lettura dello schermo.",
+ "repl.output": "È possibile passare all'output della console di debug dal campo di input con il comando Focus Previous Widget {0}.",
+ "repl.showRunAndDebug": "Il comando Show Run and Debug view{0} aprirà la vista Esecuzione e debug, con ulteriori informazioni sul debug."
},
"vs/workbench/contrib/debug/browser/replViewer": {
"debugConsole": "Console di debug",
@@ -5174,25 +8761,44 @@
"replRawObjectAriaLabel": "Variabile {0} della console di debug, valore {1}",
"replVariableAriaLabel": "Variabile {0}, valore {1}"
},
+ "vs/workbench/contrib/debug/browser/runAndDebugAccessibilityHelp": {
+ "debug.continue": "- Il comando Debug: Continua {0} continua l'esecuzione fino al punto di interruzione successivo.",
+ "debug.focusBreakpoints": "- Il comando Debug: Evidenzia visualizzazione dei punti di interruzione {0} evidenzia la visualizzazione dei punti di interruzione.",
+ "debug.focusCallStack": "- Il comando Debug: Evidenzia la visualizzazione dello stack di chiamate {0} evidenzia la visualizzazione dello stack di chiamate.",
+ "debug.focusVariables": "- Il comando Debug: Evidenzia visualizzazione delle variabili {0} evidenzia la visualizzazione delle variabili.",
+ "debug.focusWatch": "- Il comando Debug: Evidenzia visualizzazione di controllo {0} evidenzia la visualizzazione di controllo.",
+ "debug.help": "Accedere all'output di debug e valutare le espressioni nella console di debug, che può essere evidenziata con {0}.",
+ "debug.restartDebugging": "- Il comando Debug: Restart Debugging{0} riavvierà la sessione di debug corrente.",
+ "debug.showRunAndDebug": "Il comando Mostra visualizzazione di esecuzione e debug {0} apre la visualizzazione corrente.",
+ "debug.startDebugging": "Il comando Debug: Avvia debug {0} avvia una sessione di debug.",
+ "debug.stepInto": "- Il comando Debug: Esegui istruzione {0} esegue la chiamata di funzione successiva.",
+ "debug.stepOut": "- Il comando Debug: Esci da istruzione {0} esce dalla chiamata di funzione corrente.",
+ "debug.stepOver": "- Il comando Debug: Esegui istruzione {0} esegue la chiamata di funzione corrente.",
+ "debug.stopDebugging": "- Il comando Debug: Stop Debugging{0} interromperà la sessione di debug corrente.",
+ "debug.views": "Il viewlet di debug è costituito da diverse visualizzazioni che possono essere evidenziate con i comandi seguenti o esplorate con i tasti di tabulazione e di direzione:",
+ "debug.watchSetting": "L'impostazione {0} controlla se vengono annunciate le modifiche delle variabili watch.",
+ "onceDebugging": "Al termine del debug, saranno disponibili i comandi seguenti:"
+ },
"vs/workbench/contrib/debug/browser/statusbarColorProvider": {
+ "commandCenter-activeBackground": "Colore di sfondo del centro comandi durante il debug di un programma",
"statusBarDebuggingBackground": "Colore di sfondo della barra di stato quando è in corso il debug di un programma. La barra di stato è visualizzata nella parte inferiore della finestra",
"statusBarDebuggingBorder": "Colore del bordo della barra di stato che la separa dalla barra laterale e dall'editor durante il debug di un programma. La barra di stato è visualizzata nella parte inferiore della finestra.",
"statusBarDebuggingForeground": "Colore primo piano della barra di stato quando è in corso il debug di un programma. La barra di stato è visualizzata nella parte inferiore della finestra"
},
"vs/workbench/contrib/debug/browser/variablesView": {
- "cancel": "Annulla",
"collapse": "Comprimi tutto",
- "install": "Installa",
+ "removeVisualizer": "Rimuovi visualizzatore",
+ "useVisualizer": "Visualizza variabile...",
"variableAriaLabel": "{0}, valore {1}",
"variableScopeAriaLabel": "Ambito {0}",
"variableValueAriaLabel": "Digitare il nuovo valore della variabile",
"variablesAriaTreeLabel": "Esegui debug variabili",
- "viewMemory.install.progress": "Installazione dell'editor esadecimale in corso...",
- "viewMemory.prompt": "L'analisi dei dati binari richiede l'estensione Hex Editor. Installarlo ora?"
+ "viewMemory.prompt": "L'analisi dei dati binari richiede questa estensione."
},
"vs/workbench/contrib/debug/browser/watchExpressionsView": {
"addWatchExpression": "Aggiungi espressione",
"collapse": "Comprimi tutto",
+ "copyWatchExpression": "Copia espressione",
"removeAllWatchExpressions": "Rimuovi tutte le espressioni",
"typeNewValue": "Digita un nuovo valore",
"watchAriaTreeLabel": "Esegui debug espressioni di controllo",
@@ -5203,12 +8809,11 @@
},
"vs/workbench/contrib/debug/browser/welcomeView": {
"allDebuggersDisabled": "Tutte le estensioni di debug sono disabilitate. Abilitare un'estensione di debug o installarne una nuova dal Marketplace.",
- "customizeRunAndDebug": "Per personalizzare Esegui con debug, [creare un file launch.json](command:{0}).",
- "customizeRunAndDebugOpenFolder": "Per personalizzare Esegui con debug, [aprire una cartella](command:{0}) e creare un file launch.json.",
- "detectThenRunAndDebug": "[Mostra tutte le configurazioni di debug automatiche](command:{0}).",
+ "customizeRunAndDebug2": "Per personalizzare Esegui con debug, [creare un file launch.json]({0}).",
+ "customizeRunAndDebugOpenFolder2": "Per personalizzare Esegui con debug, [aprire una cartella]({0}) e creare un file launch.json.",
"openAFileWhichCanBeDebugged": "[Aprire un file](command:{0}) che può essere sottoposto a debug o eseguito.",
"run": "Esegui",
- "runAndDebugAction": "[Esegui con debug{0}](command:{1})"
+ "runAndDebugAction": "Esegui con debug"
},
"vs/workbench/contrib/debug/common/abstractDebugAdapter": {
"timeout": "Timeout dopo {0} ms per '{1}'"
@@ -5217,13 +8822,15 @@
"breakWhenValueChangesSupported": "È true quando la sessione con lo stato attivo supporta l'interruzione in caso di modifica del valore.",
"breakWhenValueIsAccessedSupported": "È true quando il punto di interruzione con lo stato attivo supporta l'interruzione quando viene eseguito l'accesso al valore.",
"breakWhenValueIsReadSupported": "È true quando il punto di interruzione con lo stato attivo supporta l'interruzione quando il valore viene letto.",
- "breakpointAccessType": "Rappresenta il tipo di accesso del punto di interruzione dei dati con lo stato attivo nella visualizzazione PUNTI DI INTERRUZIONE. Ad esempio: 'read', 'readWrite', 'write'",
+ "breakpointHasModes": "Indica se il punto di interruzione ha più modalità a cui può passare.",
"breakpointInputFocused": "È true quando la casella di input ha lo stato attivo nella visualizzazione PUNTI DI INTERRUZIONE.",
+ "breakpointItemIsDataBytes": "Indica se l'elemento del punto di interruzione è un punto di interruzione dei dati in un intervallo di byte.",
"breakpointItemType": "Rappresenta il tipo di elemento dell'elemento con lo stato attivo nella visualizzazione PUNTI DI INTERRUZIONE. Ad esempio: 'breakpoint', 'exceptionBreakppint', 'functionBreakpoint', 'dataBreakpoint'",
"breakpointSupportsCondition": "È true quando il punto di interruzione con lo stato attivo supporta le condizioni.",
"breakpointWidgetVisibile": "È true quando il widget Zona dell'editor dei punto di interruzione è visibile; in caso contrario, è false.",
"breakpointsExist": "È true quando esiste almeno un punto di interruzione.",
"breakpointsFocused": "È true quando la visualizzazione PUNTI DI INTERRUZIONE ha lo stato attivo; in caso contrario, è false.",
+ "callStackFocused": "VERO quando la visualizzazione CALLSTACK è evidenziata, FALSO in caso contrario.",
"callStackItemStopped": "È true quando l'elemento con lo stato attivo in STACK DI CHIAMATE viene arrestato. Viene usato internamente per i menu inline nella visualizzazione STACK DI CHIAMATE.",
"callStackItemType": "Rappresenta il tipo di elemento dell'elemento con lo stato attivo nella visualizzazione STACK DI CHIAMATE. Ad esempio: 'session', 'thread', 'stackFrame'",
"callStackSessionHasOneThread": "È true quando la sessione con lo stato attivo nella visualizzazione STACK DI CHIAMATE include esattamente un thread. Viene usato internamente per i menu inline nella visualizzazione STACK DI CHIAMATE.",
@@ -5232,6 +8839,7 @@
"debugConfigurationType": "Tipo di debug della configurazione di avvio selezionata. Ad esempio: 'python'.",
"debugExtensionsAvailable": "Vero quando è installata e abilitata almeno un'estensione di debug.",
"debugProtocolVariableMenuContext": "Rappresenta il contesto che l'adattatore di debug imposta sulla variabile con lo stato attivo nella visualizzazione VARIABILI.",
+ "debugSetDataBreakpointAddressSupported": "È True quando la sessione con lo stato attivo supporta la richiesta 'getBreakpointInfo' su un indirizzo.",
"debugSetExpressionSupported": "È true quando la sessione con lo stato attivo supporta la richiesta 'setExpression'.",
"debugSetVariableSupported": "È true quando la sessione con lo stato attivo supporta la richiesta 'setVariable'.",
"debugState": "Stato in cui si trova la sessione di debug con lo stato attivo. Corrisponde a uno dei valori seguenti: 'inactive', 'initializing', 'stopped' o 'running'.",
@@ -5244,7 +8852,9 @@
"exceptionWidgetVisible": "È true quando il widget Eccezione è visibile.",
"expressionSelected": "È true quando una casella di input delle espressioni è aperta nella visualizzazione ESPRESSIONE DI CONTROLLO o VARIABILI; in caso contrario, è false.",
"focusedSessionIsAttach": "È true quando la sessione con lo stato attivo è 'attach'.",
+ "focusedSessionIsNoDebug": "È vero quando la sessione in evidenza viene eseguita senza debug.",
"focusedStackFrameHasInstructionReference": "True quando lo stack frame in evidenza ha un riferimento all’indicatore di misura istruzione.",
+ "hasDebugged": "True quando una sessione di debug è stata avviata almeno una volta, false in caso contrario.",
"inBreakpointWidget": "È true quando lo stato attivo si trova nel widget Zona dell'editor dei punti di interruzione; in caso contrario, è false.",
"inDebugMode": "È true durante il debug; in caso contrario, è false.",
"inDebugRepl": "È true quando lo stato attivo si trova nella console di debug; in caso contrario, è false.",
@@ -5256,16 +8866,23 @@
"multiSessionDebug": "È true quando è presente più di una sessione di debug attiva.",
"multiSessionRepl": "È true quando è presente più di una console di debug.",
"restartFrameSupported": "È true quando la sessione con lo stato attivo supporta richieste 'restartFrame'.",
- "stackFrameSupportsRestart": "È true quando lo stack frame con lo stato attivo supporta 'restartFrame'.",
+ "stackFrameSupportsRestart": "È true quando lo stack frame con lo stato attivo supporta \"restartFrame\".",
"stepBackSupported": "È true quando la sessione con lo stato attivo supporta richieste 'stepBack'.",
"stepIntoTargetsSupported": "È true quando la sessione con lo stato attivo supporta la richiesta 'stepIntoTargets'.",
"suspendDebuggeeSupported": "È true quando la sessione con lo stato attivo supporta la funzionalità di sospensione dell'oggetto del debug.",
"terminateDebuggeeSupported": "È true quando la sessione con lo stato attivo supporta la funzionalità di terminazione dell'oggetto del debug.",
+ "terminateThreadsSupported": "È true quando la sessione con lo stato attivo supporta la funzionalità di terminazione dei thread.",
"variableEvaluateNamePresent": "È true quando per la variabile con lo stato attivo è impostato un campo 'evaluateName'.",
+ "variableExtensionId": "ID estensione dell'origine variabile, presente per le clausole di visualizzazione del debug.",
+ "variableInterfaces": "Eventuali interfacce o contratti che la variabile soddisfa, presenti per le clausole di visualizzazione di debug.",
"variableIsReadonly": "È true quando la variabile con lo stato attivo è di sola lettura.",
- "variablesFocused": "È true quando la visualizzazione VARIABILI ha lo stato attivo; in caso contrario, è false",
+ "variableLanguage": "Linguaggio dell'origine variabile, presente per le clausole di visualizzazione del debug.",
+ "variableName": "Nome della variabile, presente per le clausole di visualizzazione di debug.",
+ "variableType": "Tipo di variabile, presente per le clausole di visualizzazione di debug.",
+ "variableValue": "Valore della variabile, presente per le clausole di visualizzazione di debug.",
+ "variablesFocused": "È true quando le viste VARIABILI ha lo stato attivo; in caso contrario, è false",
"watchExpressionsExist": "È true quando esiste almeno un'espressione di controllo; in caso contrario, è false.",
- "watchExpressionsFocused": "È true quando la visualizzazione ESPRESSIONE DI CONTROLLO ha lo stato attivo; in caso contrario, è false.",
+ "watchExpressionsFocused": "È true quando la vista ESPRESSIONE DI CONTROLLO ha lo stato attivo; in caso contrario, è false.",
"watchItemType": "Rappresenta il tipo di elemento dell'elemento con lo stato attivo nella visualizzazione ESPRESSIONE DI CONTROLLO. Ad esempio: 'expression', 'variable'"
},
"vs/workbench/contrib/debug/common/debugContentProvider": {
@@ -5273,10 +8890,23 @@
"canNotResolveSourceWithError": "Non è stato possibile caricare l'origine '{0}': {1}.",
"unable": "Non è possibile risolvere la risorsa senza una sessione di debug"
},
+ "vs/workbench/contrib/debug/common/debugger": {
+ "cannot.find.da": "Non è possibile trovare l'adattatore di debug per il tipo '{0}'.",
+ "debugLinuxConfiguration": "Attributi della configurazione di avvio specifici di Linux.",
+ "debugOSXConfiguration": "Attributi della configurazione di avvio specifici di OS X.",
+ "debugRequest": "Tipo della richiesta di configurazione. Può essere \"launch\" o \"attach\".",
+ "debugType": "Tipo di configurazione.",
+ "debugTypeNotRecognised": "Il tipo di debug non è riconosciuto. Assicurarsi di avere un'estensione appropriata per il debug installata e che sia abilitata.",
+ "debugWindowsConfiguration": "Attributi della configurazione di avvio specifici di Windows.",
+ "launch.config.comment1": "Usare IntelliSense per informazioni sui possibili attributi.",
+ "launch.config.comment2": "Al passaggio del mouse vengono visualizzate le descrizioni degli attributi esistenti.",
+ "launch.config.comment3": "Per altre informazioni, visitare: {0}",
+ "node2NotSupported": "\"node2\" non è più supportato. In alternativa, usare \"node\" e impostare l'attributo \"protocol\" su \"inspector\"."
+ },
"vs/workbench/contrib/debug/common/debugLifecycle": {
"debug.debugSessionCloseConfirmationPlural": "Sono presenti sessioni di debug attive. Arrestarle?",
"debug.debugSessionCloseConfirmationSingular": "È presente una sessione di debug attiva. Arrestarla?",
- "debug.stop": "Arresta debug"
+ "debug.stop": "&&Arresta debug"
},
"vs/workbench/contrib/debug/common/debugModel": {
"breakpointDirtydHover": "Punto di interruzione non verificato. Il file è stato modificato. Riavviare la sessione di debug.",
@@ -5297,6 +8927,9 @@
"app.launch.json.title": "Avvia",
"app.launch.json.version": "Versione di questo formato di file.",
"compoundPrelaunchTask": "Attività da eseguire prima dell'avvio di una qualsiasi delle configurazioni composite.",
+ "debugger name": "Nome",
+ "debugger type": "Tipo",
+ "debuggers": "Debugger",
"presentation": "Opzioni di presentazione per indicare come visualizzare questa configurazione nell'elenco a discesa delle configurazioni e nel riquadro comandi.",
"presentation.group": "Gruppo a cui appartiene questa configurazione. Viene usato per il raggruppamento e l'ordinamento nell'elenco a discesa delle configurazioni e nel riquadro comandi.",
"presentation.hidden": "Controlla se visualizzare questa configurazione nell'elenco a discesa delle configurazioni e nel riquadro comandi.",
@@ -5310,6 +8943,7 @@
"vscode.extension.contributes.debuggers.configurationAttributes": "Configurazioni dello schema JSON per la convalida di 'launch.json'.",
"vscode.extension.contributes.debuggers.configurationSnippets": "Frammenti per l'aggiunta di nuove configurazioni in 'launch.json'.",
"vscode.extension.contributes.debuggers.deprecated": "Messaggio facoltativo per contrassegnare questo tipo di debug come deprecato.",
+ "vscode.extension.contributes.debuggers.hiddenWhen": "Quando questa condizione è vera, questo tipo di debugger è nascosto nell'elenco dei debugger, ma è ancora abilitato.",
"vscode.extension.contributes.debuggers.initialConfigurations": "Configurazioni per generare la versione iniziale di 'launch.json'.",
"vscode.extension.contributes.debuggers.label": "Nome visualizzato per questo adattatore di debug.",
"vscode.extension.contributes.debuggers.languages": "Elenco dei linguaggi. per cui l'estensione di debug può essere considerata il \"debugger predefinito\".",
@@ -5320,6 +8954,8 @@
"vscode.extension.contributes.debuggers.program": "Percorso del programma dell'adattatore di debug. Il percorso è assoluto o relativo alla cartella delle estensioni.",
"vscode.extension.contributes.debuggers.runtime": "Runtime facoltativo nel caso in cui l'attributo del programma non sia un eseguibile ma richieda un runtime.",
"vscode.extension.contributes.debuggers.runtimeArgs": "Argomenti del runtime facoltativo.",
+ "vscode.extension.contributes.debuggers.strings": "Stringhe dell'interfaccia utente aggiunte da questo adattatore di debug.",
+ "vscode.extension.contributes.debuggers.strings.unverifiedBreakpoints": "Quando sono presenti punti di interruzione non verificati in una lingua supportata da questo adattatore di debug, questo messaggio verrà visualizzato al passaggio del mouse sul punto di interruzione e nella visualizzazione punti di interruzione. I collegamenti markdown e comandi sono supportati.",
"vscode.extension.contributes.debuggers.type": "Identificatore univoco per questo adattatore di debug.",
"vscode.extension.contributes.debuggers.variables": "Mapping tra le variabili interattive, ad esempio ${action.pickProcess}, in `launch.json` e un comando.",
"vscode.extension.contributes.debuggers.when": "Condizione che deve essere vera per abilitare questo tipo di debugger. Considerare l’utilizzo di “shellExecutionSupported”, “virtualWorkspace”, “resourceScheme” o una chiave di contesto definita dall'estensione a seconda dei casi.",
@@ -5329,24 +8965,12 @@
"vs/workbench/contrib/debug/common/debugSource": {
"unknownSource": "Origine sconosciuta"
},
- "vs/workbench/contrib/debug/common/debugger": {
- "cannot.find.da": "Non è possibile trovare l'adattatore di debug per il tipo '{0}'.",
- "debugLinuxConfiguration": "Attributi della configurazione di avvio specifici di Linux.",
- "debugOSXConfiguration": "Attributi della configurazione di avvio specifici di OS X.",
- "debugRequest": "Tipo della richiesta di configurazione. Può essere \"launch\" o \"attach\".",
- "debugType": "Tipo di configurazione.",
- "debugTypeNotRecognised": "Il tipo di debug non è riconosciuto. Assicurarsi di avere un'estensione appropriata per il debug installata e che sia abilitata.",
- "debugWindowsConfiguration": "Attributi della configurazione di avvio specifici di Windows.",
- "launch.config.comment1": "Usare IntelliSense per informazioni sui possibili attributi.",
- "launch.config.comment2": "Al passaggio del mouse vengono visualizzate le descrizioni degli attributi esistenti.",
- "launch.config.comment3": "Per altre informazioni, visitare: {0}",
- "node2NotSupported": "\"node2\" non è più supportato. In alternativa, usare \"node\" e impostare l'attributo \"protocol\" su \"inspector\"."
- },
"vs/workbench/contrib/debug/common/disassemblyViewInput": {
+ "disassemblyEditorLabelIcon": "Icona dell'etichetta dell'editor disassembly.",
"disassemblyInputName": "Disassembly"
},
"vs/workbench/contrib/debug/common/loadedScriptsPicker": {
- "moveFocusedView.selectView": "Cerca script caricati per nome"
+ "moveFocusedView.selectView": "Search loaded scripts by name"
},
"vs/workbench/contrib/debug/common/replModel": {
"consoleCleared": "La console è stata cancellata"
@@ -5363,68 +8987,120 @@
"bracketPairColorizer.notification.action.showMoreInfo": "Altre info",
"bracketPairColorizer.notification.action.uninstall": "Disinstalla estensione"
},
- "vs/workbench/contrib/dialogs/browser/dialogHandler": {
- "yesButton": "&&Sì",
- "cancelButton": "Annulla",
- "aboutDetail": "Versione: {0}\r\nCommit: {1}\r\nData: {2}\r\nBrowser: {3}",
- "copy": "Copia",
- "ok": "OK"
+ "vs/workbench/contrib/dropOrPasteInto/browser/commands": {
+ "configureDefaultDrop.label": "Configura l'azione Rilascia preferita...",
+ "configureDefaultPaste.label": "Configurare l'azione Incolla preferita..."
},
- "vs/workbench/contrib/dialogs/electron-sandbox/dialogHandler": {
- "yesButton": "&&Sì",
- "cancelButton": "Annulla",
- "aboutDetail": "Versione: {0}\r\nCommit: {1}\r\nData: {2}\r\nElectron: {3}\r\nChrome: {4}\r\nNode.js: {5}\r\nV8: {6}\r\nSistema operativo: {7}",
- "okButton": "OK",
- "copy": "&&Copia"
+ "vs/workbench/contrib/dropOrPasteInto/browser/configurationSchema": {
+ "dropKind": "Identificatore del tipo di modifica Rilascio.",
+ "dropPreferredDescription": "Configura il tipo di modifica preferito da usare quando si rilasciano i contenuti.\r\n\r\nQuesto è elenco ordinato di tipi di modifica. Verrà usata la prima modifica disponibile di un tipo preferito.",
+ "pasteKind": "Identificatore del tipo di modifica Incolla.",
+ "pastePreferredDescription": "Configura il tipo di modifica preferito da usare quando si incollano i contenuti.\r\n\r\nQuesto è elenco ordinato di tipi di modifica. Verrà usata la prima modifica disponibile di un tipo preferito."
},
"vs/workbench/contrib/editSessions/browser/editSessions.contribution": {
- "client too old": "Eseguire l'aggiornamento a una versione più recente di {0} per riprendere questa sessione di modifica.",
- "continue edit session": "Continua la sessione di modifica...",
+ "autoResumeWorkingChanges": "Controlla se riprendere automaticamente le modifiche di lavoro disponibili archiviate nel cloud per l'area di lavoro corrente.",
+ "autoResumeWorkingChanges.off": "Non tentare mai di riprendere le modifiche di lavoro dal cloud.",
+ "autoResumeWorkingChanges.onReload": "Riprendi automaticamente le modifiche di lavoro disponibili dal cloud al ricaricamento della finestra.",
+ "autoStoreWorkingChanges": "Archiviazione delle modifiche di lavoro correnti...",
+ "autoStoreWorkingChanges.off": "Non tentare mai di archiviare automaticamente le modifiche di lavoro nel cloud.",
+ "autoStoreWorkingChanges.onShutdown": "Archiviare automaticamente le modifiche di lavoro correnti nel cloud alla chiusura della finestra.",
+ "autoStoreWorkingChangesDescription": "Controlla se archiviare automaticamente le modifiche di lavoro disponibili nel cloud per l'area di lavoro corrente. Questa impostazione non ha effetto sul web.",
+ "check for pending cloud changes": "Verifica la presenza di modifiche del cloud in sospeso",
+ "checkingForWorkingChanges": "È in corso il controllo delle modifiche al cloud in sospeso...",
+ "client too old": "Eseguire l'aggiornamento a una versione più recente di {0} per riprendere le modifiche di lavoro dal cloud.",
+ "cloudChangesPartialMatchesEnabled": "Controlla se visualizzare le modifiche al cloud che corrispondono parzialmente alla sessione corrente.",
"continue edit session in local folder": "Apri nella cartella locale",
- "continueEditSession.openLocalFolder.title": "Selezionare una cartella locale in cui continuare la sessione di modifica",
+ "continue with cloud changes": "Selezionare se portare con sé le modifiche di lavoro",
+ "continue working on": "Continua a lavorare...",
+ "continueEditSession.openLocalFolder.title.v2": "Selezionare una cartella locale in cui continuare a lavorare",
"continueEditSessionExtPoint": "Aggiunge come contributo le opzioni per continuare la sessione di modifica corrente in un ambiente diverso",
"continueEditSessionExtPoint.command": "Identificatore del comando da eseguire. Il comando deve essere dichiarato nella sezione 'commands' e restituire un URI che rappresenta un ambiente diverso in cui è possibile continuare la sessione di modifica corrente.",
+ "continueEditSessionExtPoint.description": "URL o comando che restituisce l'URL della pagina della documentazione dell'opzione.",
"continueEditSessionExtPoint.group": "Gruppo a cui appartiene l'elemento.",
+ "continueEditSessionExtPoint.qualifiedName": "Nome completo per l'elemento utilizzato per la visualizzazione nei menu.",
+ "continueEditSessionExtPoint.remoteGroup": "Gruppo a cui appartiene questo elemento nell'indicatore remoto.",
"continueEditSessionExtPoint.when": "Condizione che deve essere vera per mostrare questo elemento.",
- "continueEditSessionItem.openInLocalFolder": "Apri nella cartella locale",
- "continueEditSessionPick.placeholder": "Scegli come vuoi continuare a lavorare",
- "continueEditSessionPick.title": "Continua la sessione di modifica...",
- "editSessionsEnabled": "Controlla se visualizzare le azioni abilitate per il cloud per archiviare e riprendere le modifiche di cui non è stato eseguito il commit quando si passa da Web, desktop o dispositivi.",
- "no edit session": "Non ci sono sessioni di modifica da riprendere.",
- "no edit session content for ref": "Non è possibile riprendere i contenuti delle sessioni di modifica della sessione per l'ID {0}.",
- "no edits to store": "La sessione di modifica di archiviazione è stata ignorata perché non sono presenti modifiche da archiviare.",
- "payload failed": "Impossibile archiviare la sessione di modifica.",
- "payload too large": "La sessione di modifica supera il limite di dimensioni e non può essere archiviata.",
- "resume edit session warning": "La ripresa della sessione di modifica potrebbe sovrascrivere le modifiche non sottoposte a commit esistenti. Continuare?",
- "resume failed": "Non è stato possibile riprendere la sessione di modifica.",
- "resume latest.v2": "Riprendere la sessione di modifica più recente",
- "resuming edit session": "Ripresa della sessione di modifica in corso...",
- "show edit session": "Show Edit Sessions",
- "store current.v2": "Archiviare la sessione di modifica corrente",
- "storing edit session": "Archiviazione della sessione di modifica in corso..."
- },
- "vs/workbench/contrib/editSessions/browser/editSessionsViews": {
- "confirm delete": "Are you sure you want to permanently delete the edit session with ref {0}? You cannot undo this action.",
- "edit sessions data": "All Sessions",
- "open file": "Open File",
- "workbench.editSessions.actions.delete": "Delete Edit Session",
- "workbench.editSessions.actions.resume": "Resume Edit Session"
- },
- "vs/workbench/contrib/editSessions/browser/editSessionsWorkbenchService": {
- "account preference": "Accedere per usare Modifica sessioni",
- "choose account placeholder": "Selezionare un account per l'accesso",
- "clear data confirm": "Sì",
- "delete all edit sessions": "Elimina tutte le sessioni di modifica archiviate dal cloud.",
+ "continueEditSessionItem.builtin": "Predefinito",
+ "continueEditSessionItem.openInLocalFolder.v2": "Apri nella cartella locale",
+ "continueEditSessionPick.title.v2": "Selezionare un ambiente di sviluppo in cui continuare a lavorare su {0} in",
+ "continueOn.installAdditional": "Installare opzioni aggiuntive per l'ambiente di sviluppo",
+ "continueOnCloudChanges": "Controlla se richiedere all'utente di archiviare le modifiche di lavoro nel cloud quando si usa Continua a lavorare.",
+ "continueOnCloudChanges.off": "Non archiviare le modifiche di lavoro nel cloud con Continua a lavorare, a meno che l'utente non abbia già attivato Modifiche al cloud.",
+ "continueOnCloudChanges.promptForAuth": "Chiedere all'utente di accedere per archiviare le modifiche di lavoro nel cloud con Continua a lavorare.",
+ "continueWorkingOn.existingLocalFolder": "Continuare a lavorare nella cartella locale esistente",
+ "editSessionPartialMatch": "Sono presenti modifiche di lavoro in sospeso nel cloud per questa area di lavoro. Riprenderle?",
+ "learnMoreTooltip": "Altre informazioni",
+ "no cloud changes": "Non sono presenti modifiche da riprendere dal cloud.",
+ "no cloud changes for ref": "Non è stato possibile riprendere le modifiche dal cloud per l'ID {0}.",
+ "no working changes to store": "L'archiviazione delle modifiche di lavoro nel cloud verrà ignorata perché non sono presenti modifiche da archiviare.",
+ "payload failed": "Non è possibile archiviare le modifiche di lavoro.",
+ "payload too large": "Le modifiche di lavoro superano il limite per le dimensioni e non possono essere archiviate.",
+ "resume": "Riprendi",
+ "resume cloud changes": "Riprendi modifiche dai dati serializzati",
+ "resume edit session warning 1": "La ripresa delle modifiche di lavoro nel cloud sovrascriverà {0}. Continuare?",
+ "resume edit session warning many": "La ripresa delle modifiche di lavoro nel cloud sovrascriverà i file {0} seguenti. Continuare?",
+ "resume failed": "Non è stato possibile riprendere le modifiche di lavoro dal cloud.",
+ "resume latest cloud changes": "Riprendi le ultime modifiche nel cloud",
+ "resuming working changes window": "Ripresa delle modifiche di lavoro...",
+ "show cloud changes": "Mostra modifiche cloud",
+ "show log": "Mostrare log",
+ "store working changes": "Archiviazione di modifiche di lavoro...",
+ "store working changes in cloud": "Archivia modifiche di lavoro nel cloud",
+ "store your working changes": "Archiviazione delle modifiche di lavoro...",
+ "storing working changes": "Archiviazione di modifiche di lavoro...",
+ "with cloud changes": "Sì, continua con le mie modifiche di lavoro",
+ "without cloud changes": "No, continua senza le mie modifiche di lavoro"
+ },
+ "vs/workbench/contrib/editSessions/browser/editSessionsStorageService": {
+ "choose account placeholder": "Selezionare un account per archiviare le modifiche di lavoro nel cloud",
+ "choose account read placeholder": "Selezionare un account per ripristinare le modifiche di lavoro dal cloud",
+ "delete all cloud changes": "Eliminare tutti i dati archiviati dal cloud.",
"others": "Altri",
- "reset auth.v2": "Sign Out of Edit Sessions",
+ "reset auth.v3": "Disattiva modifiche cloud...",
+ "sign in": "Attiva modifiche cloud...",
+ "sign in badge": "Attiva modifiche cloud... (1)",
"sign in using account": "Accedi con {0}",
- "sign out of edit sessions clear data prompt": "Disconnettersi dalle sessioni di modifica?",
+ "sign out of cloud changes clear data prompt": "Disabilitare l'archiviazione delle modifiche di lavoro nel cloud?",
"signed in": "Connesso"
},
+ "vs/workbench/contrib/editSessions/browser/editSessionsViews": {
+ "cloud changes": "Modifiche cloud",
+ "compare changes": "Confronta le modifiche",
+ "confirm delete all": "Eliminare definitivamente tutte le modifiche archiviate nel cloud?",
+ "confirm delete all detail": " Non è possibile annullare questa azione.",
+ "confirm delete detail.v2": " Non è possibile annullare questa azione.",
+ "confirm delete.v2": "Eliminare definitivamente tutte le modifiche di lavoro con rif {0}?",
+ "local copy": "Copia locale",
+ "noStoredChanges": "Non sono presenti modifiche archiviate nel cloud da visualizzare.\r\n{0}",
+ "open file": "Apri file",
+ "storeWorkingChangesTitle": "Archiviare modifiche di lavoro",
+ "workbench.editSessions.actions.delete.v2": "Eliminare modifiche di lavoro",
+ "workbench.editSessions.actions.deleteAll": "Elimina tutte le modifiche di lavoro dal cloud",
+ "workbench.editSessions.actions.resume.v2": "Riprendere modifiche di lavoro",
+ "workbench.editSessions.actions.store.v2": "Archiviare modifiche di lavoro"
+ },
"vs/workbench/contrib/editSessions/common/editSessions": {
- "edit sessions": "Edit Sessions",
- "editSessionViewIcon": "View icon of the edit sessions view.",
- "session sync": "Modifica sessioni"
+ "cloud changes": "Modifiche cloud",
+ "editSessionViewIcon": "Icona della visualizzazione delle modifiche del cloud."
+ },
+ "vs/workbench/contrib/editSessions/common/editSessionsLogService": {
+ "cloudChangesLog": "Modifiche cloud"
+ },
+ "vs/workbench/contrib/editTelemetry/browser/editStats/aiStatsStatusBar": {
+ "aiStats.statusBar.configure": "Configura",
+ "aiStatsStatusBarHeader": "Statistiche di utilizzo IA",
+ "inlineSuggestions": "Suggerimenti inline",
+ "inlineSuggestionsStatusBar": "Barra di stato dei suggerimenti inline",
+ "text1": "IA rispetto alla media di digitazione: {0}",
+ "text2": "Suggerimenti inline accettati oggi: {0}"
+ },
+ "vs/workbench/contrib/editTelemetry/browser/editTelemetry.contribution": {
+ "editTelemetry": "Modifica telemetria",
+ "editor.aiStats.enabled": "Controlla se abilitare le statistiche IA nell'editor. Il misuratore rappresenta la quantità media di codice inserito dall'IA rispetto alla digitazione manuale in un periodo di 24 ore.",
+ "telemetry.editStats.detailed.enabled": "Controlla se abilitare la telemetria per le statistiche di modifica dettagliate (invia le statistiche solo se la telemetria generale è abilitata).",
+ "telemetry.editStats.enabled": "Controlla se abilitare la telemetria per le statistiche di modifica (invia statistiche solo se la telemetria generale è abilitata).",
+ "telemetry.editStats.showDecorations": "Controlla se mostrare decorazioni per la telemetria di modifica.",
+ "telemetry.editStats.showStatusBar": "Controlla se visualizzare la barra di stato per la telemetria di modifica."
},
"vs/workbench/contrib/emmet/browser/actions/expandAbbreviation": {
"expandAbbreviationAction": "Emmet: Espandi abbreviazione",
@@ -5438,8 +9114,12 @@
"disable": "Disabilita",
"disable workspace": "Disabilita (area di lavoro)",
"errors": "{0} errori non rilevati",
+ "extensionActivating": "Estensione in fase di attivazione...",
"languageActivation": "Attivata da {1} perché è stato aperto un file {0}",
+ "requests count": "Utilizzo di {0}: {1} richieste",
+ "requests count title": "Ultima richiesta: {0}.",
"runtimeExtensions": "Estensioni di runtime",
+ "session requests count": ", {0} richieste (sessione)",
"showRuntimeExtensions": "Mostra estensioni in esecuzione",
"starActivation": "Attivata da {0} all'avvio",
"startupFinishedActivation": "Attivata da un evento {0} al termine dell'avvio",
@@ -5452,164 +9132,139 @@
"vs/workbench/contrib/extensions/browser/configBasedRecommendations": {
"exeBasedRecommendation": "Questa estensione è consigliata in considerazione della configurazione dell'area di lavoro corrente"
},
- "vs/workbench/contrib/extensions/browser/dynamicWorkspaceRecommendations": {
- "dynamicWorkspaceRecommendation": "Questa estensione potrebbe essere interessante perché viene usata da altri utenti del repository {0}."
- },
"vs/workbench/contrib/extensions/browser/exeBasedRecommendations": {
"exeBasedRecommendation": "Questa estensione è consigliata perché è stato installato {0}."
},
"vs/workbench/contrib/extensions/browser/extensionEditor": {
- "JSON Validation": "Convalida JSON ({0})",
+ "Changelog title": "Log delle modifiche",
+ "Install Info": "Installazione",
"Marketplace": "Marketplace",
- "Marketplace Info": "Altre info",
- "Notebook id": "ID",
- "Notebook mimetypes": "Tipi MIME",
- "Notebook name": "Nome",
- "Notebook renderer name": "Nome",
- "NotebookRenderers": "Renderer blocco appunti ({0})",
- "Notebooks": "Blocchi appunti ({0})",
- "activation": "Ora di attivazione",
- "activation events": "Eventi di attivazione ({0})",
- "authentication": "Autenticazione ({0})",
- "authentication.id": "ID",
- "authentication.label": "Etichetta",
+ "Marketplace Info": "Marketplace",
+ "Readme title": "Leggimi",
+ "Version": "Versione",
"builtin": "Predefinita",
+ "cache size": "Cache",
"categories": "Categorie",
"changelog": "Log delle modifiche",
"changelogtooltip": "Cronologia degli aggiornamenti dell'estensione. Rendering eseguito dal file 'CHANGELOG.md' dell'estensione",
- "codeActions": "Azioni codice ({0})",
- "codeActions.description": "Descrizione",
- "codeActions.kind": "Tipologia",
- "codeActions.languages": "Lingue",
- "codeActions.title": "Titolo",
- "colorId": "ID",
- "colorThemes": "Temi colore ({0})",
- "colors": "Colori ({0})",
- "command name": "Nome",
- "commands": "Comandi ({0})",
- "contributions": "Contributi",
- "contributionstooltip": "Elenca i contributi a VS Code aggiunti da questa estensione",
- "customEditors": "Editor personalizzati ({0})",
- "customEditors filenamePattern": "Criterio nome file",
- "customEditors priority": "Priorità",
- "customEditors view type": "Tipo di visualizzazione",
- "debugger name": "Nome",
- "debugger type": "Tipo",
- "debuggers": "Debugger ({0})",
- "default": "Predefinito",
- "defaultDark": "Predefinito scuro",
- "defaultHC": "Predefinito contrasto elevato",
- "defaultLight": "Predefinito chiaro",
"dependencies": "Dipendenze",
"dependenciestooltip": "Elenca le estensioni da cui dipende questa estensione",
- "description": "Descrizione",
"details": "Dettagli",
"detailstooltip": "Dettagli dell'estensione. Rendering eseguito dal file 'README.md' dell'estensione",
+ "disk space used": "Dimensioni cache",
"extension pack": "Pacchetto di estensione ({0})",
"extension version": "Versione dell'estensione",
"extensionpack": "Pacchetto di estensione",
"extensionpacktooltip": "Elenca le estensioni che verranno installate insieme a questa estensione",
- "file extensions": "Estensioni di file",
- "fileMatch": "Corrispondenza file",
+ "features": "Funzionalità",
+ "featurestooltip": "Elenca le funzionalità aggiunte come contributo da questa estensione",
"find": "Trova",
"find next": "Trova successivo",
"find previous": "Trova precedente",
- "grammar": "Grammatica",
- "iconThemes": "Temi icona ({0})",
"id": "Identificatore",
- "install count": "Conteggio delle installazioni",
- "keyboard shortcuts": "Tasti di scelta rapida",
- "language id": "ID",
- "language name": "Nome",
- "languages": "Linguaggi ({0})",
+ "issues": "Problemi",
+ "last released": "Ultimo rilascio",
"last updated": "Ultimo aggiornamento",
"license": "Licenza",
- "localizations": "Localizzazioni ({0})",
- "localizations language id": "ID lingua",
- "localizations language name": "Nome del linguaggio",
- "localizations localized language name": "Nome della lingua (localizzato)",
- "menuContexts": "Contesti menu",
- "messages": "Messaggi ({0})",
"name": "Nome dell'estensione",
"noChangelog": "Changelog non disponibile.",
- "noContributions": "Nessun contributo",
"noDependencies": "Nessuna dipendenza",
"noReadme": "File LEGGIMI non disponibile.",
- "noStatus": "Stato non disponibile.",
- "not yet activated": "Non ancora attivato.",
- "preRelease": "Versione non definitiva",
+ "other": "Locale",
"preview": "Anteprima",
- "productThemes": "Temi dell'icona di prodotto ({0})",
- "publisher": "Editore",
- "publisher verified tooltip": "L'autore ha verificato la proprietà di {0}",
- "rating": "Valutazione",
- "release date": "Data di rilascio",
+ "published": "Pubblicato",
"repository": "Repository",
- "resources": "Risorse estensione",
- "runtimeStatus": "Stato runtime",
- "runtimeStatus description": "Stato runtime dell'estensione",
- "schema": "Schema",
- "setting name": "Nome",
- "settings": "Impostazioni ({0})",
- "snippets": "Frammenti",
- "startup": "Avvio",
- "uncaught errors": "Errori non rilevati ({0})",
- "view container id": "ID",
- "view container location": "Dove",
- "view container title": "Titolo",
- "view id": "ID",
- "view location": "Dove",
- "view name": "Nome",
- "viewContainers": "Visualizza contenitori ({0})",
- "views": "Visualizzazioni ({0})"
+ "resources": "Risorse",
+ "size": "Dimensioni",
+ "size when installed": "Dimensioni dopo l'installazione",
+ "source": "Origine",
+ "vsix": "VSIX"
+ },
+ "vs/workbench/contrib/extensions/browser/extensionEnablementWorkspaceTrustTransitionParticipant": {
+ "restartExtensionHost.reason": "Modifica del trust dell'area di lavoro"
+ },
+ "vs/workbench/contrib/extensions/browser/extensionFeaturesTab": {
+ "accessExtensionFeature": "Abilita funzionalità '{0}'",
+ "activation": "Attivazione",
+ "cancel": "Annulla",
+ "chartDescription": "Vi sono state {0} {1} richieste da questa estensione negli ultimi 30 giorni.",
+ "disableAccessExtensionFeatureMessage": "Revocare l'estensione '{0}' per accedere alla funzionalità '{1}'?",
+ "enable": "Consenti accesso",
+ "enableAccessExtensionFeatureMessage": "Consentire l'estensione '{0}' per accedere alla funzionalità '{1}'?",
+ "extension features list": "Funzionalità dell'estensione",
+ "grant": "Consenti accesso",
+ "label": "Utilizzo di {0}",
+ "messaages": "Messaggi ({0})",
+ "noFeatures": "Nessuna funzionalità aggiunta come contributo.",
+ "revoke": "Revoca accesso",
+ "revoked": "Nessun accesso",
+ "runtime": "Stato runtime",
+ "uncaught errors": "Errori non rilevati ({0})"
},
"vs/workbench/contrib/extensions/browser/extensionRecommendationNotificationService": {
+ "donotShowAgain": "Non mostrare più questo messaggio per questo repository",
+ "donotShowAgainExtension": "Non visualizzare più per queste estensioni",
+ "donotShowAgainExtensionSingle": "Non visualizzare più per questa estensione",
+ "exeRecommended": "Nel sistema è installato {0}. Installare {1} consigliata/e?",
+ "extensionFromPublisher": "estensione '{0}' di {1}",
+ "extensionsFromMultiplePublishers": "estensioni di {0}, {1} e altri",
+ "extensionsFromPublisher": "estensioni di {0}",
+ "extensionsFromPublishers": "estensioni di {0} e {1}",
"ignoreAll": "Sì, ignora tutti",
"ignoreExtensionRecommendations": "Ignorare tutti i suggerimenti per le estensioni?",
"install": "Installa",
"install and do no sync": "Installa (non sincronizzare)",
- "neverShowAgain": "Non visualizzare più questo messaggio",
"no": "No",
+ "recommended": "Installare {0} consigliata/e per {1}?",
"show recommendations": "Mostra elementi consigliati",
- "singleExtensionRecommended": "Per questo repository è consigliata l'estensione '{0}'. Installarla?",
- "workspaceRecommended": "Installare le estensioni consigliate per questo repository?"
+ "this repository": "questo repository"
},
"vs/workbench/contrib/extensions/browser/extensions.contribution": {
"InstallFromVSIX": "Installa da VSIX...",
"InstallVSIXAction.reloadNow": "Ricarica ora",
- "InstallVSIXAction.success": "L'installazione dell'estensione {0} da VSIX è stata completata.",
- "InstallVSIXAction.successReload": "L'installazione dell'estensione {0} da VSIX è stata completata. Per abilitarla, ricaricare Visual Studio Code.",
+ "InstallVSIXAction.restartExtensions": "Riavvia estensioni",
+ "InstallVSIXAction.successNoReload": "L'installazione dell'estensione è stata completata.",
+ "InstallVSIXAction.successReload": "L'installazione dell'estensione è stata completata. Per abilitarla, ricarica Visual Studio Code.",
+ "InstallVSIXAction.successRestart": "L'installazione dell'estensione è stata completata. Per riabilitarla, riavviare le estensioni.",
+ "InstallVSIXs.successNoReload": "L'installazione delle estensioni è stata completata.",
+ "InstallVSIXs.successReload": "L'installazione delle estensioni è stata completata. Per abilitarle, ricarica Visual Studio Code.",
+ "InstallVSIXs.successRestart": "L'installazione delle estensioni è stata completata. Per abilitarle, riavviare le estensioni.",
"all": "Tutte le estensioni",
- "builtin": "'{0}' è un'estensione predefinita e non può essere installata",
+ "autoRestart": "Se attivata, le estensioni verranno riavviate automaticamente dopo un aggiornamento se la finestra non è attiva. È possibile che si verifichi una perdita di dati se sono presenti blocchi appunti o editor personalizzati aperti.",
+ "builtin": "{0}' è un'estensione predefinita e non può essere disinstallata",
"builtin filter": "Predefinito",
"checkForUpdates": "Controlla la disponibilità di aggiornamenti per le estensioni",
"clearExtensionsSearchResults": "Cancella risultati della ricerca delle estensioni",
- "configure auto updating extensions": "Aggiorna le estensioni automaticamente",
- "configureExtensionsAutoUpdate.all": "Tutte le estensioni",
- "configureExtensionsAutoUpdate.enabled": "Solo estensioni abilitate",
- "configureExtensionsAutoUpdate.none": "Nessuna",
"disableAll": "Disabilita tutte le estensioni installate",
"disableAllWorkspace": "Disabilita tutte le estensioni installate per questa area di lavoro",
"disableAutoUpdate": "Disabilitare l'aggiornamento automatico per tutte le estensioni",
+ "disablePreRleaseLabel": "Passare alla versione di rilascio",
"disabled filter": "Disabilitate",
+ "download VSIX": "Scarica VSIX",
+ "download pre-release": "Scarica la versione non definitiva di VSIX",
+ "download specific version": "Scarica versione specifica di VSIX...",
"enableAll": "Abilita tutte le estensioni",
"enableAllWorkspace": "Abilita tutte le estensioni per questa area di lavoro",
"enableAutoUpdate": "Abilitare l'aggiornamento automatico per tutte le estensioni",
+ "enablePreRleaseLabel": "Passare alla versione non definitiva",
"enabled": "Solo estensioni abilitate",
"enabled filter": "Abilitate",
"extension": "Estensione",
+ "extension updates filter": "Aggiornamenti",
"extensionInfoDescription": "Descrizione: {0}",
"extensionInfoId": "ID: {0}",
"extensionInfoName": "Nome: {0}",
"extensionInfoPublisher": "Editore: {0}",
"extensionInfoVSMarketplaceLink": "Collegamento di Visual Studio Marketplace: {0}",
"extensionInfoVersion": "Versione: {0}",
+ "extensionUpdates": "Mostra aggiornamenti delle estensioni",
"extensions": "Estensioni",
"extensions.affinity": "Configurare un'estensione da eseguire in un processo host dell’estensione diverso.",
"extensions.autoUpdate": "Controlla il comportamento di aggiornamento automatico delle estensioni. Gli aggiornamenti vengono recuperati da un servizio Microsoft online.",
- "extensions.autoUpdate.enabled": "Scarica e installa gli aggiornamenti automaticamente solo per le estensioni abilitate. Le estensioni disabilitate non verranno aggiornate automaticamente.",
+ "extensions.autoUpdate.enabled": "Scaricare e installare automaticamente gli aggiornamenti solo per le estensioni selezionate.",
"extensions.autoUpdate.false": "Le estensioni non vengono aggiornate automaticamente.",
"extensions.autoUpdate.true": "Scarica e installa automaticamente gli aggiornamenti per tutte le estensioni.",
+ "extensions.gallery.serviceUrl": "Configurare l'URL del servizio Marketplace a cui connettersi",
"extensions.supportUntrustedWorkspaces": "Consente di eseguire l'override del supporto dell'area di lavoro non attendibile di un'estensione. Le estensioni che usano `true` saranno sempre abilitate. Le estensioni che usano `limited` saranno sempre abilitate e l'estensione nasconderà le funzionalità che richiedono attendibilità. Le estensioni che usano `false` verranno abilitate solo quando l'area di lavoro è attendibile.",
"extensions.supportUntrustedWorkspaces.false": "L'estensione verrà abilitata solo quando l'area di lavoro è attendibile.",
"extensions.supportUntrustedWorkspaces.limited": "L'estensione verrà sempre abilitata e nasconderà le funzionalità che richiedono attendibilità.",
@@ -5617,12 +9272,16 @@
"extensions.supportUntrustedWorkspaces.true": "L'estensione verrà sempre abilitata.",
"extensions.supportUntrustedWorkspaces.version": "Definisce la versione dell'estensione a cui applicare l'override. Se non viene specificata, l'override verrà applicato indipendentemente dalla versione dell'estensione.",
"extensions.supportVirtualWorkspaces": "Eseguire l'override del supporto delle aree di lavoro virtuali di un'estensione.",
+ "extensions.verifySignature": "Se questa opzione è abilitata, viene verificato che le estensioni siano firmate prima dell'installazione.",
"extensionsCheckUpdates": "Se è abilitata, controlla automaticamente la disponibilità di aggiornamenti per le estensioni. Se per un'estensione è disponibile un aggiornamento, l'estensione viene contrassegnata come obsoleta nella visualizzazione Estensioni. Gli aggiornamenti vengono recuperati da un servizio Microsoft online.",
"extensionsCloseExtensionDetailsOnViewChange": "Se è abilitata, gli editor con dettagli di estensione verranno chiusi automaticamente quando si esce dalla visualizzazione delle estensioni.",
"extensionsConfigurationTitle": "Estensioni",
+ "extensionsDeferredStartupFinishedActivation": "Se l’opzione è abilitata, le estensioni che dichiarano l'evento di attivazione `onStartupFinished` verranno attivate dopo un timeout.",
"extensionsIgnoreRecommendations": "Se è abilitata, le notifiche per le estensioni consigliate non verranno mostrate.",
+ "extensionsInQuickAccess": "Se questa opzione è abilitata, è possibile cercare le estensioni tramite Accesso rapido e segnalare problemi da quella posizione.",
+ "extensionsRequestTimeout": "Impostare il timeout in millisecondi per le richieste HTTP effettuate durante il recupero delle estensioni dal Marketplace",
"extensionsShowRecommendationsOnlyOnDemand_Deprecated": "Questa impostazione è deprecata. Usare extensions.ignoreRecommendations per controllare le notifiche delle raccomandazioni. Usare le azioni di visibilità della visualizzazione Estensioni per nascondere la visualizzazione Consigliate per impostazione predefinita.",
- "extensionsUseUtilityProcess": "Se abilitata, l'host dell'estensione verrà avviato usando la nuova API UtilityProcess Electron.",
+ "extensionsSupportNodeGlobalNavigator": "Se questa opzione è abilitata, l'oggetto navigator di Node.js è esposto nell'ambito globale.",
"extensionsWebWorker": "Abilita l'host dell'estensione Web worker.",
"extensionsWebWorker.auto": "L'host dell'estensione Web Worker verrà avviato quando è richiesto da un'estensione Web.",
"extensionsWebWorker.false": "L'host dell'estensione Web Worker non verrà mai avviato.",
@@ -5630,33 +9289,36 @@
"featured filter": "In primo piano",
"filter by category": "Categoria",
"filterExtensions": "Filtra estensioni...",
+ "focusExtensions": "Focus sulla visualizzazione Estensioni",
"handleUriConfirmedExtensions": "Quando un'estensione è presente in questo elenco, non verrà visualizzata alcuna richiesta di conferma quando l'estensione gestisce un URI.",
"id required": "ID estensione obbligatorio.",
"importKeyboardShortcutsFroms": "Esegui migrazione dei tasti di scelta rapida da...",
+ "install": "Installa",
"install button": "Installa",
+ "install installAndDonotSync": "Installa (Non sincronizzare)",
"installButton": "&&Installa",
+ "installExtensionFromLocation": "Installare estensione dal percorso...",
"installExtensionQuickAccessHelp": "Installa o cerca estensioni",
"installExtensionQuickAccessPlaceholder": "Digitare il nome di un'estensione da installare o cercare.",
"installExtensions": "Installa estensioni",
- "installFromLocation": "Installa estensione Web da percorso",
+ "installFromLocation": "Installare estensione dal percorso",
"installFromLocationPlaceHolder": "Percorso dell'estensione Web",
"installFromVSIX": "Installa da VSIX",
+ "installPrereleaseAndDonotSync": "Installare la versione non definitiva (non sincronizzare)",
"installVSIX": "Installa VSIX dell'estensione",
- "installWebExtensionFromLocation": "Installa estensione Web...",
"installWorkspaceRecommendedExtensions": "Installa le estensioni consigliate per l'area di lavoro",
"installed filter": "Installate",
+ "installedExtensions": "Mostra estensioni installate",
"manageExtensionsHelp": "Gestisci estensioni",
"manageExtensionsQuickAccessPlaceholder": "Premere INVIO per gestire le estensioni.",
"miPreferencesExtensions": "&&Estensioni",
"miViewExtensions": "E&&stensioni",
- "miimportKeyboardShortcutsFrom": "Esegui &&migrazione dei tasti di scelta rapida da...",
"most popular filter": "Più usate",
"most popular recommended": "Consigliate",
"noUpdatesAvailable": "Tutte le estensioni sono aggiornate.",
"none": "Nessuna",
"notFound": "L'estensione '{0}' non è stata trovata.",
"notInstalled": "L'estensione '{0}' non è installata. Assicurarsi di usare l'ID estensione completo, incluso l'editore, ad esempio ms-vscode.csharp.",
- "outdated filter": "Non aggiornate",
"recently published filter": "Pubblicate di recente",
"recentlyPublishedExtensions": "Mostra estensioni pubblicate di recente",
"refreshExtension": "Aggiorna",
@@ -5667,43 +9329,55 @@
"showEnabledExtensions": "Mostra estensioni abilitate",
"showExtensions": "Estensioni",
"showFeaturedExtensions": "Mostra estensioni in primo piano",
- "showInstalledExtensions": "Mostra estensioni installate",
"showLanguageExtensionsShort": "Estensioni del linguaggio",
- "showOutdatedExtensions": "Mostra estensioni obsolete",
"showPopularExtensions": "Mostra estensioni più richieste",
"showRecommendedExtensions": "Mostra estensioni consigliate",
"showRecommendedKeymapExtensionsShort": "Mappature tastiera",
"showWorkspaceUnsupportedExtensions": "Mostrare estensioni non supportate dall'area di lavoro",
- "sort by date": "Data di pubblicazione",
+ "signInToMarketplace": "Eseguire l'accesso al Marketplace delle estensioni",
"sort by installs": "Conteggio delle installazioni",
"sort by name": "Nome",
+ "sort by published date": "Data di pubblicazione",
"sort by rating": "Valutazione",
+ "sort by update date": "Data aggiornamento",
"sorty by": "Ordina per",
+ "trustedPublishers": "Gestisci editori estensioni attendibili",
+ "trustedPublishersPlaceholder": "Scegliere gli autori da considerare attendibili",
"updateAll": "Aggiorna tutte le estensioni",
"workbench.extensions.action.addExtensionToWorkspaceRecommendations": "Aggiungi a raccomandazioni dell'area di lavoro",
"workbench.extensions.action.addToWorkspaceFolderIgnoredRecommendations": "Aggiungi estensione alle raccomandazioni ignorate della cartella dell'area di lavoro",
"workbench.extensions.action.addToWorkspaceFolderRecommendations": "Aggiungi estensione alle raccomandazioni della cartella dell'area di lavoro",
"workbench.extensions.action.addToWorkspaceIgnoredRecommendations": "Aggiungi estensione alle raccomandazioni ignorate dell'area di lavoro",
"workbench.extensions.action.addToWorkspaceRecommendations": "Aggiungi estensione a raccomandazioni dell'area di lavoro",
- "workbench.extensions.action.configure": "Impostazioni estensione",
+ "workbench.extensions.action.changeAccountPreference": "Preferenze account",
+ "workbench.extensions.action.configure": "Impostazioni",
+ "workbench.extensions.action.configureKeybindings": "Scelte rapide da tastiera",
"workbench.extensions.action.copyExtension": "Copia",
"workbench.extensions.action.copyExtensionId": "Copia ID estensione",
+ "workbench.extensions.action.copyLink": "Copia collegamento",
"workbench.extensions.action.ignoreRecommendation": "Ignora raccomandazione",
+ "workbench.extensions.action.manageTrustedPublishers": "Gestisci editori estensioni attendibili",
"workbench.extensions.action.removeExtensionFromWorkspaceRecommendations": "Rimuovi dalle raccomandazioni dell'area di lavoro",
+ "workbench.extensions.action.toggleApplyToAllProfiles": "Applica estensione a tutti i profili",
"workbench.extensions.action.toggleIgnoreExtension": "Sincronizza questa estensione",
"workbench.extensions.action.undoIgnoredRecommendation": "Annulla raccomandazione ignorata",
"workbench.extensions.installExtension.arg.decription": "ID estensione o URI di risorsa VSIX",
"workbench.extensions.installExtension.description": "Installa l'estensione specificata",
"workbench.extensions.installExtension.option.context": "Contesto per l'installazione. Questo è un oggetto JSON che può essere usato per passare qualsiasi informazione ai gestori di installazione. Ad esempio, '{skipWalkthrough: true}' ignorerà l'apertura della procedura dettagliata al momento dell'installazione.",
"workbench.extensions.installExtension.option.donotSync": "Se questa opzione è abilitata, VS Code non sincronizza questa estensione quando Sincronizzazione impostazioni è attivata.",
+ "workbench.extensions.installExtension.option.enable": "Se questa opzione è abilitata, l'estensione viene abilitata se è installata ma disabilitata. Se l'estensione è già abilitata, non avrà alcun effetto.",
"workbench.extensions.installExtension.option.installOnlyNewlyAddedFromExtensionPackVSIX": "Se abilitato, VS Code installa solo le nuove estensioni aggiunte dal pacchetto di estensione VSIX. Questa opzione viene considerata solo durante l'installazione di un VSIX.",
"workbench.extensions.installExtension.option.installPreReleaseVersion": "Se questa opzione è abilitata, VS Code installa la versione non definitiva dell'estensione, se disponibile.",
+ "workbench.extensions.installExtension.option.justification": "Giustificazione per l'installazione dell'estensione. Si tratta di una stringa o di un oggetto che può essere usato per passare qualsiasi informazione ai gestori di installazione. Ad esempio '{reason: 'This extension wants to open a URI', action: 'Open URI'}' mostra una finestra di messaggio con il motivo e l'azione al momento dell'installazione.",
"workbench.extensions.search.arg.name": "Query da usare nella ricerca",
"workbench.extensions.search.description": "Cerca un'estensione specifica",
"workbench.extensions.uninstallExtension.arg.name": "ID dell'estensione da disinstallare",
"workbench.extensions.uninstallExtension.description": "Disinstalla l'estensione specificata",
"workspace unsupported filter": "Area di lavoro non supportata"
},
+ "vs/workbench/contrib/extensions/browser/extensions.web.contribution": {
+ "runtimeExtension": "Estensioni in esecuzione"
+ },
"vs/workbench/contrib/extensions/browser/extensionsActions": {
"Cannot be enabled": "Questa estensione è disabilitata perché non è supportata in {0} per il Web.",
"Defined to run in desktop": "Questa estensione è disabilitata perché è definita per l'esecuzione solo in {0} per desktop.",
@@ -5711,42 +9385,39 @@
"Install in remote server to enable": "Questa estensione è disabilitata in questa area di lavoro perché è impostata per essere eseguita nell'host dell'estensione remoto. Installare l'estensione in '{0}' per abilitarla.",
"Install language pack also in remote server": "Installare l'estensione del Language Pack in '{0}' per abilitarla anche in tale posizione.",
"Install language pack also locally": "Installare l'estensione del Language Pack in locale per abilitarla anche in tale posizione.",
- "InstallVSIXAction.reloadNow": "Ricarica ora",
- "ManageExtensionAction.uninstallingTooltip": "Disinstallazione",
"OpenExtensionsFile.failed": "Non è possibile creare il file 'extensions.json' all'interno della cartella '.vscode' ({0}).",
- "ReinstallAction.success": "La reinstallazione dell'estensione {0} è stata completata.",
- "ReinstallAction.successReload": "Ricaricare Visual Studio Code per completare la reinstallazione dell'estensione {0}.",
- "Show alternate extension": "Apri {0}",
+ "Show alternate extension": "&&Apri {0}",
"Uninstalling": "Disinstallazione",
"VS Code for Web": "{0} per il Web",
+ "auto update message": "[esaminare l'estensione]({0}) e aggiornarla manualmente.",
"cancel": "Annulla",
"cannot be installed": "L'estensione '{0}' non è disponibile in {1}. Per approfondire, fare clic su 'Altre informazioni'.",
"check logs": "Per altri dettagli, vedere il [log]({0}).",
"close": "Chiudi",
- "configure in settings": "Configura impostazioni",
+ "configure in settings": "&&Configura le impostazioni",
"configureWorkspaceFolderRecommendedExtensions": "Configura estensioni consigliate (cartella dell'area di lavoro)",
"configureWorkspaceRecommendedExtensions": "Configura estensioni consigliate (area di lavoro)",
"current": "corrente",
+ "dependencies": "Mostra dipendenze",
"deprecated message": "Questa estensione è deprecata perché non viene più supportata.",
"deprecated tooltip": "Questa estensione è deprecata perché non viene più supportata.",
"deprecated with alternate extension message": "Questa estensione è deprecata. Usare l'estensione {0}.",
"deprecated with alternate extension tooltip": "Questa estensione è deprecata. Usare l'estensione {0}.",
"deprecated with alternate settings message": "Questa estensione è deprecata perché questa funzionalità è ora predefinita per VS Code.",
"deprecated with alternate settings tooltip": "Questa estensione è deprecata perché questa funzionalità è ora predefinita per VS Code. Configurare questi {0} per usare la funzionalità.",
- "disableAction": "Disabilita",
+ "disableAutoUpdate": "Aggiornamenti automatici disabilitati per",
"disableForWorkspaceAction": "Disabilita (area di lavoro)",
"disableForWorkspaceActionToolTip": "Disabilita questa estensione solo in questa area di lavoro",
"disableGloballyAction": "Disabilita",
"disableGloballyActionToolTip": "Disabilita questa estensione",
"disabled": "Disabilitato",
+ "disabled - not allowed": "Questa estensione è disabilitata perché {0}",
"disabled because of virtual workspace": "Questa estensione è stata disabilitata poiché non supporta le aree di lavoro virtuali.",
"disabled by environment": "Questa estensione viene disabilitata dall’ambiente.",
- "do no sync": "Non sincronizzare",
"do not sync": "Non sincronizzare questa estensione",
"download": "Prova a scaricare manualmente...",
- "enable locally": "Ricaricare Visual Studio Code per abilitare questa estensione in locale.",
- "enable remote": "Ricaricare Visual Studio Code per abilitare questa estensione in {0}.",
- "enableAction": "Abilita",
+ "enableAutoUpdate": "Aggiornamenti automatici abilitati per",
+ "enableAutoUpdateLabel": "Aggiornamento automatico",
"enableForWorkspaceAction": "Abilita (area di lavoro)",
"enableForWorkspaceActionToolTip": "Abilita questa estensione solo in questa area di lavoro",
"enableGloballyAction": "Abilita",
@@ -5756,44 +9427,43 @@
"enabled in web worker": "Questa estensione è abilitata nell'host dell'estensione ruolo di lavoro perché preferisce essere eseguita in tale posizione.",
"enabled locally": "Questa estensione è abilitata nell'host dell'estensione locale perché preferisce essere eseguita in tale posizione.",
"enabled remotely": "Questa estensione è abilitata nell'host dell'estensione remoto perché preferisce essere eseguita in tale posizione.",
- "extension disabled because of dependency": "Questa estensione è stata disabilitata perché dipende da un'estensione disabilitata.",
+ "extension disabled because of dependency": "Questa estensione dipende da un'estensione disabilitata.",
"extension disabled because of trust requirement": "Questa estensione è stata disabilitata perché l'area di lavoro corrente non è attendibile.",
+ "extension disabled because of unification": "Tutte le funzionalità di GitHub Copilot sono ora disponibili tramite l'estensione Copilot Chat. Per rifiutare esplicitamente temporaneamente questa unificazione delle estensioni, attivare o disattivare l'impostazione {0}.",
"extension enabled on remote": "L'estensione è abilitata in '{0}'",
"extension limited because of trust requirement": "Questa estensione ha funzionalità limitate perché l'area di lavoro corrente non è attendibile.",
"extension limited because of virtual workspace": "Questa estensione ha funzionalità limitate perché l'area di lavoro corrente è virtuale.",
+ "extensionButtonBackground": "Colore di sfondo del pulsante per le azioni di estensione.",
+ "extensionButtonForeground": "Colore primo piano del pulsante per le azioni di estensione.",
+ "extensionButtonHoverBackground": "Colore al passaggio del mouse sullo sfondo del pulsante per le azioni di estensione.",
"extensionButtonProminentBackground": "Colore di sfondo delle azioni di estensioni che si distinguono (es. pulsante Installa).",
"extensionButtonProminentForeground": "Colore primo piano di pulsanti per azioni di estensioni che si distinguono (es. pulsante Installa).",
- "extensionButtonProminentHoverBackground": "Colore di sfondo al passaggio del mouse dei pulsanti per azioni di estensione che si distinguono (es. pulsante Installa).",
+ "extensionButtonProminentHoverBackground": "Colore di sfondo dei pulsanti al passaggio del mouse per azioni di estensione che si distinguono (es. pulsante Installa).",
+ "extensionButtonSeparator": "Colore separatore pulsante per le azioni di estensione",
"finished installing": "Le estensioni sono state installate.",
"globally disabled": "Questa estensione è stata disabilitata dall'utente a livello globale.",
- "globally enabled": "Questa estensione è abilitata a livello globale.",
"ignoreExtensionRecommendation": "Non consigliare più questa estensione",
+ "ignoreExtensionUpdatePublisher": "Gli aggiornamenti pubblicati da {0} verranno ignorati.",
"ignored": "Questa estensione viene ignorata durante la sincronizzazione",
- "incompatible": "Non è possibile installare l’estensione '{0}' perché non è compatibile.",
- "incompatible platform": "L'estensione '{0}' non è disponibile in {1} per {2}.",
"install": "Installa",
- "install another version": "Installa un'altra versione...",
+ "install another version": "Installa versione specifica...",
"install anyway": "Installa comunque",
"install browser": "Installa nel browser",
"install confirmation": "Disinstallare '{0}'?",
- "install everywhere tooltip": "Installa questa estensione in tutte le istanze sincronizzate di {0}",
- "install extension in remote": "{0} in {1}",
- "install extension in remote and do not sync": "{0} in {1} ({2})",
- "install extension locally": "{0} In locale",
- "install extension locally and do not sync": "{0} In locale ({1})",
+ "install donot verify": "Installa comunque (non verificare la firma)",
"install in remote": "Installa in {0}",
"install local extensions title": "Installa estensioni locali in '{0}'",
"install locally": "Installazione locale",
"install operation": "Si è verificato un errore durante l'installazione dell'estensione '{0}'.",
"install pre-release": "Installare versione non definitiva",
"install pre-release version": "Installare versione non definitiva",
+ "install prerelease": "Installare versione non definitiva",
"install previous version": "Installa versione specifica dell'estensione...",
"install release version": "Installare versione di rilascio",
- "install release version message": "Installare la versione di rilascio?",
"install remote extensions": "Installa estensioni remote in locale",
"install vsix": "Dopo il download, installare manualmente il VSIX scaricato di '{0}'.",
+ "install workspace version": "Installa Estensione dell'area di lavoro",
"installExtensionComplete": "L'installazione dell'estensione {0} è stata completata.",
- "installExtensionCompletedAndReloadRequired": "L'installazione dell'estensione {0} è stata completata. Ricaricare Visual Studio Code per abilitarla.",
"installExtensionStart": "L'installazione dell'estensione {0} è stata avviata. Viene ora aperto un editor con maggiori dettagli su questa estensione",
"installRecommendedExtension": "Installa l'estensione consigliata",
"installVSIX": "Installa da VSIX...",
@@ -5801,25 +9471,27 @@
"installing": "Installazione",
"installing extensions": "Installazione delle estensioni...",
"learn more": "Altre informazioni",
- "learn why": "Informazioni sul motivo",
"malicious tooltip": "Questa estensione è stata segnalata come problematica.",
"manage": "Gestisci",
+ "manage access": "Gestisci accesso",
"migrate": "Esegui migrazione",
"migrate to": "Eseguire la migrazione a {0}",
"migrateExtension": "Esegui migrazione",
- "more information": "Altre informazioni",
+ "missing from gallery tooltip": "Questa estensione non è più disponibile nel marketplace delle estensioni.",
+ "more information": "&&Altre informazioni",
"no local extensions": "Non ci sono estensioni da installare.",
"no versions": "Questa estensione non ha altre versioni.",
- "not web tooltip": "L'estensione '{0}' non è disponibile in {1}.",
- "postDisableTooltip": "Ricaricare Visual Studio Code per disabilitare questa estensione.",
- "postEnableTooltip": "Ricaricare Visual Studio Code per abilitare questa estensione.",
- "postUninstallTooltip": "Ricaricare Visual Studio Code per completare la disinstallazione di questa estensione.",
- "postUpdateTooltip": "Ricaricare Visual Studio Code per abilitare l'estensione aggiornata.",
+ "not signed": "'{0}' è un'estensione di origine sconosciuta. Installare?",
+ "not signed detail": "L'estensione non è firmata.",
+ "not signed tooltip": "Questa estensione non è firmata dal Marketplace delle estensioni.",
"pre-release": "versione non definitiva",
- "reinstall": "Reinstalla estensione...",
- "reloadAction": "Ricarica",
- "reloadRequired": "Ricarica necessaria",
- "search recommendations": "Cerca nelle estensioni",
+ "reload window": "Ricarica la finestra",
+ "report issue": "Segnala problema",
+ "report issue body": "Includi il log seguente \"F1 > Apri visualizzazione... > Condiviso\" di seguito.\r\n\r\n",
+ "report issue title": "Verifica della firma dell'estensione non riuscita: {0}",
+ "restart extensions": "Riavvia estensioni",
+ "restart product": "Riavvia per aggiornare",
+ "review": "Rivedi",
"select and install local extensions": "Installa estensioni locali in '{0}'...",
"select and install remote extensions": "Installa estensioni remote in locale...",
"select color theme": "Seleziona tema colori",
@@ -5827,28 +9499,33 @@
"select file icon theme": "Seleziona il tema dell'icona file",
"select product icon theme": "Seleziona il tema dell'icona di prodotto",
"selectExtension": "Seleziona l'estensione",
- "selectExtensionToReinstall": "Seleziona l'estensione da reinstallare",
"selectVersion": "Seleziona versione da installare",
"settings": "impostazioni",
"showRecommendedExtension": "Mostra estensioni consigliate",
- "switch to pre-release version": "Passare alla versione non definitiva",
- "switch to pre-release version tooltip": "Passare alla versione non definitiva di questa estensione",
- "switch to release version": "Passare alla versione di rilascio",
- "switch to release version tooltip": "Passare alla versione di rilascio di questa estensione",
+ "switchToPreReleaseLabel": "Passare alla versione non definitiva",
+ "switchToPreReleaseTooltip": "Questa operazione passerà alla versione non definitiva e abiliterà sempre gli aggiornamenti alla versione più recente",
"sync": "Sincronizza questa estensione",
"synced": "Questa estensione è sincronizzata",
+ "toggleAutoUpdatesForPublisherLabel": "Aggiorna automaticamente tutto (da autore)",
+ "togglePreRleaseDisableLabel": "Passare alla versione di rilascio",
+ "togglePreRleaseDisableTooltip": "In questo modo gli aggiornamenti delle versioni di versione verranno spostati e abilitati",
+ "togglePreRleaseLabel": "Versione non definitiva",
"undo": "Annulla azione",
"uninstallAction": "Disinstalla",
+ "uninstallAll": "Disinstalla (tutti i profili)",
"uninstallExtensionComplete": "Ricaricare Visual Studio Code per completare la disinstallazione dell'estensione {0}.",
"uninstallExtensionStart": "La disinstallazione dell'estensione {0} è stata avviata.",
"uninstalled": "Disinstallata",
+ "update": "Aggiorna",
"update operation": "Si è verificato un errore durante l'aggiornamento dell'estensione '{0}'.",
- "updateAction": "Aggiorna",
+ "update product": "Aggiornamento {0}",
+ "update to": "Eseguire l'aggiornamento a v{0}",
"updateExtensionComplete": "L'aggiornamento dell'estensione {0} alla versione {1} è stata completata.",
+ "updateExtensionConsent": "{0}\r\n\r\nAggiornare l'estensione?",
+ "updateExtensionConsentTitle": "Aggiorna estensione {0}",
"updateExtensionStart": "L'aggiornamento dell'estensione {0} alla versione {1} è stata avviata.",
- "updateToLatestVersion": "Aggiorna a {0}",
- "updateToTargetPlatformVersion": "Aggiorna alla versione {0}.",
"updated": "Aggiornata",
+ "verification failed": "Non è possibile installare l'estensione '{0}' perché {1} non può verificare la firma dell'estensione",
"workbench.extensions.action.clearLanguage": "Cancella lingua visualizzata",
"workbench.extensions.action.setColorTheme": "Imposta tema colori",
"workbench.extensions.action.setDisplayLanguage": "Imposta lingua visualizzata",
@@ -5881,6 +9558,7 @@
"installCountIcon": "Icona visualizzata unitamente al numero di installazioni nell'editor e nella visualizzazione Estensioni.",
"installLocalInRemoteIcon": "Icona per l'azione 'Installa l'estensione locale nel repository remoto' nella visualizzazione Estensioni.",
"installWorkspaceRecommendedIcon": "Icona per l'azione 'Installa le estensioni consigliate per l'area di lavoro' nella visualizzazione Estensioni.",
+ "lockIcon": "Icona visualizzata per le estensioni private nella visualizzazione e nell'editor delle estensioni.",
"manageExtensionIcon": "Icona per l'azione 'Gestisci' nella visualizzazione Estensioni.",
"preReleaseIcon": "Icona visualizzata per le estensioni con versioni non definitive nella visualizzazione e nell'editor delle estensioni.",
"ratingIcon": "Icona visualizzata unitamente alla classificazione nell'editor e nella visualizzazione Estensioni.",
@@ -5893,7 +9571,6 @@
"syncEnabledIcon": "Icona per indicare che un'estensione è sincronizzata.",
"syncIgnoredIcon": "Icona per indicare che un'estensione viene ignorata durante la sincronizzazione.",
"trustIcon": "Icona visualizzata con un messaggio sull'attendibilità dell'area di lavoro nell'editor delle estensioni.",
- "verifiedPublisher": "Icona usata per l'autore verificato dell'estensione nella visualizzazione e nell'editor delle estensioni.",
"warningIcon": "Icona visualizzata con un messaggio di avviso nell'editor delle estensioni."
},
"vs/workbench/contrib/extensions/browser/extensionsQuickAccess": {
@@ -5905,40 +9582,57 @@
"vs/workbench/contrib/extensions/browser/extensionsViewer": {
"Unknown Extension": "Estensione sconosciuta:",
"error": "Errore",
- "extension.arialabel": "{0}, {1}, {2}, {3}",
+ "extension.arialabel.deprecated": "Deprecato",
+ "extension.arialabel.publisher": "Editore {0}",
+ "extension.arialabel.rating": "Valutato {0} su 5 stelle da {1} utenti",
+ "extension.arialabel.verifiedPublisher": "Editore verificato {0}",
"extensions": "Estensioni"
},
"vs/workbench/contrib/extensions/browser/extensionsViewlet": {
+ "access denied": "L'account non ha accesso al Marketplace delle estensioni. Contattare l'amministratore.",
+ "accessDenied": "Accesso negato al marketplace",
+ "availableUpdates": "Aggiornamenti disponibili",
"builtInThemesExtensions": "Temi",
"builtin": "Predefinite",
"builtinFeatureExtensions": "Funzionalità",
"builtinProgrammingLanguageExtensions": "Linguaggi di programmazione",
+ "click show": "Clic per visualizzare",
"deprecated": "Deprecato",
"disabled": "Disabilitate",
"disabledExtensions": "Disabilitato",
+ "dismiss": "Ignora",
"enabled": "Abilitate",
"enabledExtensions": "Abilitato",
"extensionFound": "1 estensione trovata.",
"extensionFoundInSection": "1 estensione trovata nella sezione {0}.",
+ "extensionToReload": "{0} richiede il riavvio",
+ "extensionToUpdate": "{0} richiede l'aggiornamento",
"extensionsFound": "{0} estensioni trovate.",
"extensionsFoundInSection": "{0} estensioni trovate nella sezione {1}.",
+ "extensionsToReload": "{0} richiedono il riavvio",
+ "extensionsToUpdate": "{0} richiedono l'aggiornamento",
"install remote in local": "Installa estensioni remote in locale...",
"installed": "Installate",
- "malicious warning": "L'estensione '{0}' è stata disinstallata perché è stata segnalata come problematica.",
+ "learnMore": "Altre informazioni",
+ "malicious warning": "L'estensione \"{0}\" è risultata problematica ed è stata disinstallata",
"marketPlace": "Marketplace",
"open user settings": "Apri impostazioni utente",
"otherRecommendedExtensions": "Altri consigli",
- "outdated": "Non aggiornate",
- "outdatedExtensions": "{0} estensioni obsolete",
"popularExtensions": "Più comuni",
+ "recently updated": "Aggiornato di recente",
"recommendedExtensions": "Consigliate",
"reloadNow": "Ricarica ora",
"remote": "Repository remoto",
+ "restartNow": "Riavvia estensioni",
"searchExtensions": "Cerca le estensioni nel Marketplace",
"select and install local extensions": "Installa estensioni locali in '{0}'...",
+ "show": "Mostra",
+ "sign in": "[Eseguire l'accesso al Marketplace delle estensioni]({0})",
+ "sign in enterprise marketplace": "Eseguire l'accesso al Marketplace",
+ "signInRequired": "Accesso necessario per accedere al Marketplace",
"suggestProxyError": "Marketplace ha restituito 'ECONNREFUSED'. Controllare l'impostazione 'http.proxy'.",
- "untrustedPartiallySupportedExtensions": "Limitata in modalità con restrizioni",
- "untrustedUnsupportedExtensions": "Disabilitata in modalità con restrizioni",
+ "untrustedPartiallySupportedExtensions": "Limitata in Modalità con restrizioni",
+ "untrustedUnsupportedExtensions": "Disabilitata in Modalità con restrizioni",
"virtualPartiallySupportedExtensions": "Limitata nelle aree di lavoro virtuali",
"virtualUnsupportedExtensions": "Disabilitata nelle aree di lavoro virtuali",
"workspaceRecommendedExtensions": "Consigli per l'area di lavoro",
@@ -5946,27 +9640,28 @@
},
"vs/workbench/contrib/extensions/browser/extensionsViews": {
"error": "Si è verificato un errore durante il recupero delle estensioni. {0}",
- "extension.arialabel.deprecated": "Deprecato",
- "extension.arialabel.publihser": "Editore {0}",
- "extensions": "Estensioni",
"no extensions found": "Non sono state trovate estensioni.",
"no local extensions": "Non ci sono estensioni da installare.",
"offline error": "Non è possibile eseguire ricerche nel Marketplace offline. Controllare la connessione di rete.",
- "open user settings": "Apri impostazioni utente",
- "suggestProxyError": "Marketplace ha restituito 'ECONNREFUSED'. Controllare l'impostazione 'http.proxy'."
+ "showing local extensions only": "{0} Visualizzazione delle estensioni locali.",
+ "showingExtensionsForFeature": "Estensioni che hanno usato {0} negli ultimi 30 giorni"
},
"vs/workbench/contrib/extensions/browser/extensionsWidgets": {
"Show prerelease version": "Versione non definitiva",
"activation": "Ora di attivazione",
- "dependencies": "Mostra dipendenze",
+ "extensionIcon.private": "Il colore dell'icona per le estensioni private.",
"extensionIcon.sponsorForeground": "Colore dell'icona per lo sponsor dell'estensione.",
"extensionIconStarForeground": "Colore dell'icona per le valutazioni delle estensioni.",
- "extensionIconVerifiedForeground": "Colore dell'icona per l'autore verificato dell'estensione.",
"extensionPreReleaseForeground": "Il colore dell’icona per l’estensione non definitiva.",
+ "feature access label": "{0} richieste",
+ "feature usage label": "Utilizzo di {0}",
"has prerelease": "Questa estensione ha un {0} disponibile",
+ "install count": "Conteggio installazioni",
+ "local extension": "Estensione locale",
"message": "1 messaggio",
"messages": "{0} messaggi",
- "pre-release-label": "Versione non definitiva",
+ "privateExtension": "Estensione privata",
+ "publisher": "Editore ({0})",
"publisher verified tooltip": "L'autore ha verificato la proprietà di {0}",
"ratedLabel": "Valutazione media: {0} su 5",
"recommendationHasBeenIgnored": "Si è scelto di non ricevere raccomandazioni per questa estensione.",
@@ -5974,27 +9669,92 @@
"sponsor": "Sponsor",
"startup": "Avvio",
"syncingore.label": "Questa estensione viene ignorata durante la sincronizzazione.",
+ "total": "{0} {1} richieste negli ultimi 30 giorni",
"uncaught error": "1 errore non rilevato",
- "uncaught errors": "{0} errori non rilevati"
+ "uncaught errors": "{0} errori non rilevati",
+ "updateRequired": "Ultima versione:",
+ "verified publisher": "L'autore ha verificato la proprietà di {0}",
+ "workspace extension": "Estensione dell'area di lavoro"
},
"vs/workbench/contrib/extensions/browser/extensionsWorkbenchService": {
"Manifest is not found": "Il manifesto non è stato trovato",
+ "allplatforms": "Tutte le piattaforme",
+ "cannot be installed": "Non è possibile installare l'estensione '{0}' perché non è disponibile in questa installazione.",
+ "confirmDisableAutoUpdate": "Disabilitare l'aggiornamento automatico per tutte le estensioni?",
+ "confirmEnableAutoUpdate": "Abilitare l'aggiornamento automatico per tutte le estensioni?",
+ "confirmEnableDisableAutoUpdate": "Aggiorna le estensioni automaticamente",
+ "confirmEnableDisableAutoUpdateDetail": "Le impostazioni di aggiornamento automatico impostate per le singole estensioni verranno reimpostate.",
+ "consentRequiredToUpdate": "L'aggiornamento per l'estensione {0} introduce il codice eseguibile, che non è presente nella versione attualmente installata.",
+ "consentRequiredToUpdateRepublishedExtension": "I metadati del Marketplace di questa estensione sono stati modificati, probabilmente a causa di una ripubblicazione.",
+ "deprecated extensions": "Sono state rilevate estensioni deprecate. Controllarle ed eseguire la migrazione alle alternative.",
"disable all": "Disabilita tutto",
+ "disableDependents": "Disinstalla estensione con dipendenti",
+ "disallowed": "L’installazione di questa estensione non è consentita.",
+ "disallowed extensions": "Some extensions are disabled because they are configured not to be allowed.",
+ "disallowed extensions by policy": "Some extensions are disabled because they are not allowed by your system administrator.",
+ "download": "Scaricare",
+ "download title": "Selezionare la cartella in cui scaricare VSIX",
+ "download.completed": "Download di VSIX completato",
+ "download.failed": "Errore durante il download di VSIX: {0}",
+ "downloading...": "Download di VSIX...",
+ "enable locally": "Please {0} per abilitare questa estensione a livello locale.",
+ "enable remote": "{0} per abilitare questa estensione in {1}.",
+ "enableButtonLabel": "&&Abilita estensione",
+ "enableButtonLabelWithAction": "&&Abilita estensione e {0}",
+ "enableExtensionMessage": "Abilitare l'estensione \"{0}\"?",
+ "enableExtensionTitle": "Abilita estensione",
+ "extension not found": "L'estensione '{0}' non è stata trovata.",
+ "extensionsAutoRestart": "Le estensioni sono state riavviate automaticamente per abilitare gli aggiornamenti.",
+ "incompatible": "Non è possibile installare l’estensione '{0}' perché non è compatibile.",
+ "incompatibleExtensions": "Alcune estensioni sono disabilitate a causa di incompatibilità di versione. Controllarle e aggiornarle.",
+ "installButtonLabel": "&&Installa estensione",
+ "installButtonLabelWithAction": "&&Installa estensione e {0}",
+ "installExtensionMessage": "Installare l'estensione \"{0}\" da \"{1}\"?",
+ "installExtensionTitle": "Installa estensione",
+ "installVSIXMessage": "Installare l'estensione?",
"installing extension": "Installazione dell'estensione...",
"installing named extension": "Installazione dell'estensione '{0}'...",
+ "invalidExtensions": "Sono state rilevate estensioni non valide. Controllarle.",
"malicious": "Questa estensione è segnalata come problematica.",
"multipleDependentsError": "Non è possibile disabilitare solo l'estensione '{0}' perché da essa dipendono '{1}', '{2}' e altre estensioni. Disabilitare tutte queste estensioni?",
- "not found": "Non è possibile installare l'estensione '{0}' perché la versione richiesta '{1}' non è stata trovata.",
+ "multipleDependentsUninstallError": "Non è possibile disinstallare solo l'estensione '{0}' perché da essa dipendono le estensioni '{1}', '{2}' e altre. Disinstallare tutte queste estensioni?",
+ "no versions": "Questa estensione non ha altre versioni.",
+ "not an extension": "L’oggetto specificato non è un’estensione.",
+ "not found": "Non è possibile installare l’estensione '{0}' perché non è stata trovata.",
+ "not found version": "Non è possibile installare l’estensione '{0}' perché la versione richiesta '{1}' non è stata trovata.",
+ "not signed": "Questa estensione non è firmata.",
+ "open": "Apri estensione",
+ "platform placeholder": "Selezionare la piattaforma per cui si vuole scaricare VSIX",
+ "postDisableTooltip": "{0} per disabilitare questa estensione.",
+ "postEnableTooltip": "{0} per abilitare questa estensione.",
+ "postUninstallTooltip": "{0} per completare la disinstallazione di questa estensione.",
+ "postUpdateDownloadTooltip": "Aggiorna {0} per abilitare l'estensione aggiornata.",
+ "postUpdateRestartTooltip": "Riavvia {0} per abilitare l'estensione aggiornata.",
+ "postUpdateTooltip": "{0} per abilitare l'estensione aggiornata.",
+ "postUpdateUpdateTooltip": "Aggiorna {0} per abilitare l'estensione aggiornata.",
+ "pre-release": "versione non definitiva",
+ "reload": "ricarica la finestra",
+ "report issue": "Se il problema persiste, segnalarlo a {0}",
+ "restart": "Modifica dell'abilitazione dell'estensione",
+ "restart extensions": "riavvia le estensioni",
+ "selectVersion": "Seleziona la versione da scaricare",
"singleDependentError": "Non è possibile disabilitare solo l'estensione '{0}' perché da essa dipende l'estensione '{1}'. Disabilitare tutte queste estensioni?",
+ "singleDependentUninstallError": "Non è possibile disinstallare solo l'estensione '{0}' perché da essa dipende l'estensione '{1}'. Disinstallare tutte queste estensioni?",
+ "sync extension": "Sincronizza questa estensione",
"twoDependentsError": "Non è possibile disabilitare solo l'estensione '{0}' perché da essa dipendono le estensioni '{1}' e '{2}'. Disabilitare tutte queste estensioni?",
- "uninstallingExtension": "Disinstallazione estensione in corso..."
+ "twoDependentsUninstallError": "Non è possibile disinstallare solo l'estensione '{0}' perché da essa dipendono le estensioni '{1}' e '{2}'. Disinstallare tutte queste estensioni?",
+ "uninstallAll": "Disinstalla tutto",
+ "uninstallAllProfiles": "Disinstalla (tutti i profili)",
+ "uninstallApplicationScoped": "Disinstalla estensione",
+ "uninstallApplicationScopedMessage": "Disinstallare {0} da tutti i profili?",
+ "uninstallDependents": "Disinstalla estensione con dipendenti",
+ "uninstallingExtension": "Disinstallazione dell'estensione...",
+ "unknown": "Non è possibile installare l'estensione",
+ "updatingExtensions": "Aggiornamento stato di aggiornamento automatico estensioni"
},
"vs/workbench/contrib/extensions/browser/fileBasedRecommendations": {
- "dontShowAgainExtension": "Non visualizzare più per i file '.{0}'",
"fileBasedRecommendation": "Questa estensione è consigliata in base ai file aperti di recente.",
- "reallyRecommended": "Installare le estensioni consigliate per {0}?",
- "searchMarketplace": "Cerca nel Marketplace",
- "showLanguageExtensions": "Nel Marketplace sono presenti estensioni utili per i file '.{0}'"
+ "languageName": "la lingua {0}"
},
"vs/workbench/contrib/extensions/browser/webRecommendations": {
"reason": "Questa estensione è consigliata per {0} per il Web"
@@ -6002,6 +9762,9 @@
"vs/workbench/contrib/extensions/browser/workspaceRecommendations": {
"workspaceRecommendation": "Questa estensione è consigliata dagli utenti dell'area di lavoro corrente."
},
+ "vs/workbench/contrib/extensions/common/extensions": {
+ "extensions": "Estensioni"
+ },
"vs/workbench/contrib/extensions/common/extensionsFileTemplate": {
"app.extension.identifier.errorMessage": "Formato imprevisto '${publisher}.${name}'. Esempio: 'vscode.csharp'.",
"app.extensions.json.recommendations": "Elenco delle estensioni che dovrebbero essere consigliate per gli utenti di questa area di lavoro. L'identificatore di un'estensione è sempre '${publisher}.${name}'. Ad esempio: 'vscode.csharp'.",
@@ -6009,6 +9772,7 @@
"app.extensions.json.unwantedRecommendations": "Elenco delle estensioni consigliate da VS Code che non dovrebbero essere consigliate per gli utenti di questa area di lavoro. L'identificatore di un'estensione è sempre '${publisher}.${name}'. Ad esempio: 'vscode.csharp'."
},
"vs/workbench/contrib/extensions/common/extensionsInput": {
+ "extensionsEditorLabelIcon": "Icona dell'etichetta dell'editor delle estensioni.",
"extensionsInputName": "Estensione: {0}"
},
"vs/workbench/contrib/extensions/common/extensionsUtils": {
@@ -6016,19 +9780,37 @@
"no": "No",
"yes": "Sì"
},
- "vs/workbench/contrib/extensions/common/runtimeExtensionsInput": {
- "extensionsInputName": "Estensioni in esecuzione"
+ "vs/workbench/contrib/extensions/common/installExtensionsTool": {
+ "installExtensionsTool.confirmationMessage": "Esaminare le estensioni suggerite e fare clic sul pulsante **Installa** per ogni estensione da aggiungere. Al termine dell'installazione delle estensioni selezionate, fare clic su **Continua** per procedere.",
+ "installExtensionsTool.confirmationTitle": "Installa estensioni",
+ "installExtensionsTool.displayName": "Installa estensioni",
+ "installExtensionsTool.noResultMessage": "Nessuna estensione installata.",
+ "installExtensionsTool.resultMessage": "Sono state installate le seguenti estensioni: {0}",
+ "installExtensionsTool.userDescription": "Strumento per l'installazione delle estensioni"
},
- "vs/workbench/contrib/extensions/electron-sandbox/debugExtensionHostAction": {
- "cancel": "&&Annulla",
- "debugExtensionHost": "Avvia debug host dell'estensione",
- "debugExtensionHost.launch.name": "Collega host dell'estensione",
- "restart1": "Profila estensioni",
- "restart2": "Per profilare le estensioni, è richiesto un riavvio. Riavviare '{0}' ora?",
- "restart3": "&&Riavvia"
+ "vs/workbench/contrib/extensions/common/reportExtensionIssueAction": {
+ "reportExtensionIssue": "Segnala problema"
},
- "vs/workbench/contrib/extensions/electron-sandbox/extensionProfileService": {
- "cancel": "&&Annulla",
+ "vs/workbench/contrib/extensions/common/runtimeExtensionsInput": {
+ "extensionsInputName": "Estensioni in esecuzione",
+ "runtimeExtensionEditorLabelIcon": "Icona dell'etichetta dell'editor delle estensioni di runtime."
+ },
+ "vs/workbench/contrib/extensions/common/searchExtensionsTool": {
+ "searchExtensionsTool.displayName": "Cerca estensioni",
+ "searchExtensionsTool.noInput": "Specificare una categoria o le parole chiave o gli ID da cercare.",
+ "searchExtensionsTool.userDescription": "Cerca estensioni di VS Code"
+ },
+ "vs/workbench/contrib/extensions/electron-browser/debugExtensionHostAction": {
+ "debugExtensionHost": "Esegui il debug dell'host dell'estensione in una nuova finestra",
+ "debugExtensionHost.launch.name": "Collegare host dell'estensione",
+ "debugExtensionHost.progress": "Collegamento del debugger all'host dell'estensione",
+ "openDevToolsForExtensionHost": "Esegui il debug dell'host di estensione negli strumenti di sviluppo",
+ "restart1": "Debug delle estensioni",
+ "restart2": "Per il debug delle estensioni è necessario il riavvio. Riavviare \"{0}\" ora?",
+ "restart3": "&&Riavviare",
+ "selectExtensionHost": "Seleziona host dell'estensione"
+ },
+ "vs/workbench/contrib/extensions/electron-browser/extensionProfileService": {
"profilingExtensionHost": "Profilatura dell'host dell'estensione",
"profilingExtensionHostTime": "Profilatura dell'host dell'estensione ({0} sec)",
"restart1": "Profila estensioni",
@@ -6037,48 +9819,47 @@
"selectAndStartDebug": "Fare clic per arrestare la profilatura.",
"status.profiler": "Profiler estensione"
},
- "vs/workbench/contrib/extensions/electron-sandbox/extensions.contribution": {
+ "vs/workbench/contrib/extensions/electron-browser/extensions.contribution": {
"runtimeExtension": "Estensioni in esecuzione"
},
- "vs/workbench/contrib/extensions/electron-sandbox/extensionsActions": {
+ "vs/workbench/contrib/extensions/electron-browser/extensionsActions": {
+ "cleanUpExtensionsFolder": "Cartella Pulizia estensioni",
"openExtensionsFolder": "Apri cartella estensioni"
},
- "vs/workbench/contrib/extensions/electron-sandbox/extensionsAutoProfiler": {
+ "vs/workbench/contrib/extensions/electron-browser/extensionsAutoProfiler": {
"show": "Mostra estensioni",
"unresponsive-exthost": "L'estensione '{0}' ha richiesto molto tempo per completare l'ultima operazione e ha impedito l'esecuzione di altre estensioni."
},
- "vs/workbench/contrib/extensions/electron-sandbox/extensionsSlowActions": {
+ "vs/workbench/contrib/extensions/electron-browser/extensionsSlowActions": {
"attach.msg": "Questo è un promemoria per assicurarsi di non aver dimenticato di allegare '{0}' al problema appena creato.",
"attach.msg2": "Questo è un promemoria per assicurarsi di non aver dimenticato di allegare '{0}' a un problema di prestazioni esistente.",
"attach.title": "Il profilo della CPU è stato collegato?",
- "cmd.report": "Segnala problema",
+ "cmd.report": "Segnalare problema",
"cmd.reportOrShow": "Problema di prestazioni",
"cmd.show": "Mostra problemi"
},
- "vs/workbench/contrib/extensions/electron-sandbox/reportExtensionIssueAction": {
- "reportExtensionIssue": "Segnala problema"
- },
- "vs/workbench/contrib/extensions/electron-sandbox/runtimeExtensionsEditor": {
+ "vs/workbench/contrib/extensions/electron-browser/runtimeExtensionsEditor": {
"extensionHostProfileStart": "Avvia profilo host dell'estensione",
+ "openExtensionHostProfile": "Apri profilo host dell'estensione",
"saveExtensionHostProfile": "Salva profilo host dell'estensione",
"saveprofile.dialogTitle": "Salva profilo host dell'estensione",
- "saveprofile.saveButton": "Salva",
"stopExtensionHostProfileStart": "Arresta profilo host dell'estensione"
},
"vs/workbench/contrib/externalTerminal/browser/externalTerminal.contribution": {
- "scopedConsoleAction": "Apri nel terminale",
+ "scopedConsoleAction.Integrated": "Apri nel terminale integrato",
"scopedConsoleAction.external": "Apri nel terminale esterno",
- "scopedConsoleAction.integrated": "Apri nel terminale integrato",
"scopedConsoleAction.wt": "Apri in Terminale Windows"
},
- "vs/workbench/contrib/externalTerminal/electron-sandbox/externalTerminal.contribution": {
- "explorer.openInTerminalKind": "Quando si apre un file dall'esploratore in un terminale, determina quale tipo di terminale verrà avviato.",
+ "vs/workbench/contrib/externalTerminal/electron-browser/externalTerminal.contribution": {
+ "explorer.openInTerminalKind": "Quando si apre un file da Esplora risorse in un terminale, determina quale tipo di terminale verrà avviato.",
"globalConsoleAction": "Apri nuovo terminale esterno",
- "terminal.explorerKind.external": "Usare il terminale esterno configurato. ",
- "terminal.explorerKind.integrated": "Usare il terminale integrato di VS Code. ",
+ "sourceControlRepositories.openInTerminalKind": "Quando si apre un repository dalla visualizzazione Repository del controllo del codice sorgente in un terminale, determina il tipo di terminale che verrà avviato",
"terminal.external.linuxExec": "Personalizza il terminale da eseguire in Linux.",
"terminal.external.osxExec": "Personalizza l'applicazione di terminale da eseguire in macOS.",
"terminal.external.windowsExec": "Personalizza il terminale da eseguire in Windows.",
+ "terminal.kind.both": "Mostra le azioni del terminale integrato e di quello esterno.",
+ "terminal.kind.external": "Mostra l'azione del terminale esterno.",
+ "terminal.kind.integrated": "Mostra l'azione del terminale integrato.",
"terminalConfigurationTitle": "Terminale esterno"
},
"vs/workbench/contrib/externalUriOpener/common/configuration": {
@@ -6120,16 +9901,17 @@
},
"vs/workbench/contrib/files/browser/editors/textFileEditor": {
"createFile": "Crea file",
- "fileIsDirectoryError": "Il file è una directory",
- "fileNotFoundError": "File non trovato",
- "ok": "OK",
- "reveal": "Visualizza nella vista Esplora risorse",
- "textFileEditor": "Editor file di testo"
+ "fileIsDirectory": "Il file non viene visualizzato nell'editor di testo perché è una directory.",
+ "fileTooLargeForHeapErrorWithSize": "Il file non viene visualizzato nell'editor di testo perché è molto grande ({0}).",
+ "fileTooLargeForHeapErrorWithoutSize": "Il file non viene visualizzato nell'editor di testo perché è molto grande.",
+ "openFolder": "Apri cartella",
+ "reveal": "Visualizza cartella",
+ "textFileEditor": "Editor file di testo",
+ "unavailableResourceErrorEditorText": "Non è stato possibile aprire l'editor perché il file non è stato trovato."
},
"vs/workbench/contrib/files/browser/editors/textFileSaveErrorHandler": {
"compareChanges": "Confronta",
"configure": "Configura",
- "discard": "Scarta",
"dontShowAgain": "Non visualizzare più questo messaggio",
"genericSaveError": "Non è stato possibile salvare '{0}': {1}",
"learnMore": "Altre informazioni",
@@ -6142,6 +9924,7 @@
"readonlySaveErrorAdmin": "Non è stato possibile salvare '{0}': il file è di sola lettura. Selezionare 'Sovrascrivi come Admin' per riprovare come amministratore.",
"readonlySaveErrorSudo": "Non è stato possibile salvare '{0}': il file è di sola lettura. Selezionare 'Sovrascrivi come Sudo' per riprovare come utente con privilegi avanzati.",
"retry": "Riprova",
+ "revert": "Ripristina",
"saveConflictDiffLabel": "{0} (nel file) ↔ {1} (in {2}) - Risolvi conflitto di salvataggio",
"saveElevated": "Riprova come amministratore...",
"saveElevatedSudo": "Riprova come Sudo...",
@@ -6167,7 +9950,11 @@
"binFailed": "Impossibile eliminare utilizzando il Cestino. Si desidera eliminare definitivamente invece?",
"clipboardComparisonLabel": "Appunti ↔ {0}",
"closeGroup": "Chiudi gruppo",
+ "compareFileWithMeta": "Apre un selettore per selezionare un file da aprire con l'editor diff attivo.",
+ "compareNewUntitledTextFiles": "Confrontare nuovi file di testo senza titolo",
+ "compareNewUntitledTextFilesMeta": "Apre un nuovo editor diff con due file senza titolo.",
"compareWithClipboard": "Confronta il file attivo con gli appunti",
+ "compareWithClipboardMeta": "Apre un nuovo editor diff per confrontare il file attivo coni contenuti degli Appunti.",
"confirmDeleteMessageFile": "Eliminare definitivamente '{0}'?",
"confirmDeleteMessageFilesAndDirectories": "Eliminare definitivamente i {0} file/directory seguenti e il relativo contenuto?",
"confirmDeleteMessageFolder": "Eliminare definitivamente '{0}' e il relativo contenuto?",
@@ -6178,6 +9965,11 @@
"confirmMoveTrashMessageFolder": "Eliminare '{0}' e il relativo contenuto?",
"confirmMoveTrashMessageMultiple": "Sei sicuro di voler eliminarei seguenti {0} file?",
"confirmMoveTrashMessageMultipleDirectories": "Eliminare le {0} directory seguenti e il relativo contenuto?",
+ "confirmMultiPasteNative": "Incollare i {0} elementi seguenti?",
+ "confirmOverwrite": "Nella cartella di destinazione esiste già un file o una cartella denominata '{0}'. Sovrascrivere?",
+ "confirmPasteNative": "Incollare '{0}'?",
+ "continueButtonLabel": "Continua",
+ "continueDetail": "Se si continua, la protezione di sola lettura verrà sostituita.",
"copyBulkEdit": "Incolla {0} file",
"copyFile": "Copia",
"copyFileBulkEdit": "Incolla {0}",
@@ -6208,6 +10000,7 @@
"fileNameStartsWithSlashError": "Un nome di file o cartella non può iniziare con una barra.",
"fileNameWhitespaceWarning": "Sono stati rilevati spazi vuoti iniziali e finali nel nome del file o della cartella.",
"focusFilesExplorer": "Stato attivo su Esplora file",
+ "focusFilesExplorerMetadata": "Sposta lo stato attivo sul contenitore di visualizzazioni di Esplora file.",
"globalCompareFile": "Confronta file attivo con...",
"invalidFileNameError": "Il nome **{0}** non è valido per un nome file o un nome di cartella. Scegliere un nome diverso.",
"irreversible": "Questa azione è irreversibile.",
@@ -6215,21 +10008,33 @@
"moveFileBulkEdit": "Sposta {0}",
"movingBulkEdit": "Spostamento di {0} file",
"movingFileBulkEdit": "Spostamento di {0}",
- "newFile": "Nuovo file",
- "newFolder": "Nuova cartella",
- "openFileInNewWindow": "Apri file attivo in un'altra finestra",
+ "newFile": "Nuovo file...",
+ "newFolder": "Nuova cartella...",
+ "openFileInEmptyWorkspace": "Aprire l'editor attivo in una nuova area di lavoro vuota",
+ "openFileInEmptyWorkspaceMetadata": "Apre l'editor attivo in una nuova finestra senza cartelle aperte.",
"openFileToShowInNewWindow.unsupportedschema": "L'editor attivo deve contenere una risorsa apribile.",
+ "pasteButtonLabel": "&&Incolla",
"pasteFile": "Incolla",
- "rename": "Rinomina",
+ "readonlyMessageFilesDelete": "Si stanno eliminando i file configurati per essere di sola lettura. Continuare?",
+ "readonlyMessageFolderDelete": "Si sta eliminando un file {0} configurato per essere di sola lettura. Continuare?",
+ "readonlyMessageFolderOneDelete": "Si sta eliminando una cartella {0} configurata per essere di sola lettura. Continuare?",
+ "rename": "Rinomina...",
"renameBulkEdit": "Rinomina {0} in {1}",
"renamingBulkEdit": "Ridenominazione di {0} in {1}",
- "restore": "È possibile ripristinare questo file usando il comando Annulla",
- "restorePlural": "È possibile ripristinare questi file usando il comando Annulla",
+ "replaceButtonLabel": "&&Sostituisci",
+ "resetActiveEditorReadonlyInSession": "Reimposta l'editor attivo di sola lettura nella sessione",
+ "restore": "È possibile ripristinare questo file usando il comando Annulla.",
+ "restorePlural": "È possibile ripristinare questi file usando il comando Annulla.",
"retry": "Riprova",
"retryButtonLabel": "&&Riprova",
"saveAllInGroup": "Salva tutto nel gruppo",
+ "setActiveEditorReadonlyInSession": "Imposta l'editor attivo di sola lettura nella sessione",
+ "setActiveEditorWriteableInSession": "Imposta editor attivo scrivibile nella sessione",
"showInExplorer": "Visualizza file attivo nella visualizzazione Esplora risorse",
+ "showInExplorerMetadata": "Visualizza e seleziona il file attivo nella visualizzazione Explorer.",
+ "toggleActiveEditorReadonlyInSession": "Attiva/Disattiva l'editor attivo di sola lettura nella sessione",
"toggleAutoSave": "Attiva/Disattiva salvataggio automatico",
+ "toggleAutoSaveDescription": "Attivare/disattivare la possibilità di salvare automaticamente i file dopo la digitazione",
"trashFailed": "Impossibile eliminare utilizzando il Cestino. Si desidera eliminare definitivamente invece?",
"undoBin": "È possibile ripristinare questo file dal Cestino.",
"undoBinFiles": "È possibile ripristinare questi file dal Cestino.",
@@ -6244,6 +10049,7 @@
"closeOthers": "Chiudi altri",
"closeSaved": "Chiudi salvati",
"compareActiveWithSaved": "Confronta file attivo con file salvato",
+ "compareActiveWithSavedMeta": "Apre un nuovo editor diff per confrontare il file attivo con la versione su disco.",
"compareSelected": "Confronta selezionati",
"compareSource": "Seleziona per il confronto",
"compareWithSaved": "Confronta con file salvato",
@@ -6255,7 +10061,6 @@
"cut": "Taglia",
"deleteFile": "Elimina definitivamente",
"explorerOpenWith": "Apri con...",
- "filesCategory": "File",
"miAutoSave": "Salvataggio a&&utomatico",
"miCloseEditor": "Chiudi &&editor",
"miGotoFile": "Vai al &&file...",
@@ -6265,8 +10070,10 @@
"miSaveAll": "Salva &&tutto",
"miSaveAs": "Salva &&con nome...",
"newFile": "Nuovo file di testo",
+ "newFolderDescription": "Creare una nuova cartella o directory",
"openFile": "Apri file...",
"openToSide": "Apri lateralmente",
+ "reopenWith": "Riapri editor con...",
"revealInSideBar": "Visualizza nella vista Esplora risorse",
"revert": "Ripristina file",
"revertLocalChanges": "Annulla le modifiche e torna al contenuto del file",
@@ -6275,15 +10082,16 @@
"saveFiles": "Salva tutti i file"
},
"vs/workbench/contrib/files/browser/fileCommands": {
- "discard": "Rimuovi",
"genericRevertError": "Impossibile ripristinare '{0}': {1}",
"genericSaveError": "Non è stato possibile salvare '{0}': {1}",
"modifiedLabel": "{0} (nel file) ↔ {1}",
"newFileCommand.saveLabel": "Crea file",
- "retry": "Riprova"
+ "retry": "Riprova",
+ "revert": "Ripristina",
+ "revertAll": "Ripristina tutto"
},
"vs/workbench/contrib/files/browser/fileConstants": {
- "newUntitledFile": "Nuovo file senza nome",
+ "newUntitledFile": "Nuovo file di testo senza titolo",
"removeFolderFromWorkspace": "Rimuovi cartella dall'area di lavoro",
"save": "Salva",
"saveAll": "Salva tutto",
@@ -6293,7 +10101,6 @@
"vs/workbench/contrib/files/browser/fileImportExport": {
"addFolder": "&&Aggiungi cartella all'area di lavoro",
"addFolders": "&&Aggiungi cartelle all'area di lavoro",
- "cancel": "Annulla",
"chooseWhereToDownload": "Scegli il percorso di download",
"confirmManyOverwrites": "I {0} file e/o cartelle seguenti esistono già nella cartella di destinazione. Sostituirli?",
"confirmOverwrite": "Nella cartella di destinazione esiste già un file o una cartella denominata '{0}'. Sovrascrivere?",
@@ -6326,26 +10133,38 @@
},
"vs/workbench/contrib/files/browser/files.contribution": {
"askUser": "Il salvataggio non verrà eseguito e verrà chiesto di risolvere il conflitto.",
- "associations": "Consente di configurare le associazioni tra file e linguaggi, ad esempio `\"*.extension\": \"html\"`. Queste hanno la precedenza sulle associazioni predefinite dei linguaggi installati.",
+ "associations": "Configurare [modelli GLOB](https://aka.ms/vscode-GLOB-patterns) di associazioni di file ai linguaggi (ad esempio '\"*.extension\": \"html\"'). I criteri corrispondono al percorso assoluto di un file se contengono un separatore di percorso e corrispondono al nome del file in caso contrario. Hanno la precedenza sulle associazioni predefinite delle lingue installate.",
"autoGuessEncoding": "Se l'opzione è abilitata, l'editor tenterà di indovinare la codifica del set di caratteri durante l'apertura dei file. L’impostazione può essere configurata anche per ciascuna lingua. Si tenga presente che l'impostazione non viene rispettata durante la ricerca di testo. Solo {0} viene rispettato.",
+ "autoOpenDroppedFile": "Controlla se Esplora risorse deve aprire automaticamente un file quando viene eliminato in Esplora risorse",
"autoReveal": "Controlla se Esplora risorse deve visualizzare e selezionare automaticamente i file all'apertura.",
"autoReveal.focusNoScroll": "Lo scorrimento dei file non è attivo nella visualizzazione, ma lo stato attivo verrà applicato ugualmente.",
"autoReveal.off": "I file non verranno visualizzati e selezionati.",
"autoReveal.on": "I file verranno visualizzati e selezionati.",
+ "autoRevealExclude": "Configurare percorsi o [modelli glob](https://aka.ms/vscode-glob-patterns) per escludere i file e le cartelle dalla visualizzazione e dalla selezione in Esplora risorse quando vengono aperti. I modelli Glob vengono sempre valutati in relazione al percorso della cartella dell'area di lavoro, a meno che non siano percorsi assoluti.",
"autoSave": "Controlla [auto save](https://code.visualstudio.com/docs/editor/codebasics#_save-auto-save) il salvataggio automatico degli editor che contengono modifiche non salvate.",
"autoSaveDelay": "Controlla il ritardo in ms in seguito al quale un editor con modifiche non salvate viene salvato automaticamente. Si applica solo quando `#files.autoSave#` è impostato su `{0}`.",
+ "autoSaveWhenNoErrors": "Se abilitata, limiterà il [salvataggio automatico](https://code.visualstudio.com/docs/editor/codebasics#_save-auto-save) degli editor ai file in cui non sono stati segnalati errori al momento dell'attivazione del salvataggio automatico. Si applica solo quando {0} è abilitato.",
+ "autoSaveWorkspaceFilesOnly": "Se abilitata, limiterà il [salvataggio automatico](https://code.visualstudio.com/docs/editor/codebasics#_save-auto-save) degli editor ai file all'interno dell'area di lavoro aperta. Si applica solo quando {0} è abilitato.",
"binaryFileEditor": "Editor file binari",
+ "candidateGuessEncodings": "Elenco di codifiche di set di caratteri che l'editor deve tentare di indovinare nell'ordine in cui sono elencate. Nel caso in cui non possa essere determinato, {0} viene rispettato",
"compressSingleChildFolders": "Controlla se Esplora risorse deve eseguire il rendering delle cartelle in formato compatto. In tale formato le cartelle figlio verranno compresse in un elemento albero combinato. Utile, ad esempio, per strutture di pacchetti Java.",
"confirmDelete": "Controlla se Esplora risorse deve chiedere conferma quando si elimina un file tramite il cestino.",
"confirmDragAndDrop": "Controlla se Esplora risorse deve chiedere conferma prima di spostare file e cartelle tramite il trascinamento della selezione.",
- "confirmUndo": "Controlla se l'esploratore deve richiedere conferma durante l'annullamento.",
+ "confirmPasteNative": "Controlla se Esplora risorse deve chiedere conferma quando si incollano file e cartelle nativi.",
+ "confirmUndo": "Controlla se Esplora risorse deve chiedere conferma quando viene annullato.",
+ "copyPathSeparator": "Il carattere di separazione del percorso usato per la copia dei percorsi file.",
+ "copyPathSeparator.auto": "Usare il carattere di separazione del percorso specifico del sistema operativo.",
+ "copyPathSeparator.backslash": "Usare la barra rovesciata come carattere di separazione del percorso.",
+ "copyPathSeparator.slash": "Usare la barra come carattere di separazione del percorso.",
"copyRelativePathSeparator": "Carattere di separazione del percorso utilizzato per la copia dei percorsi dei file relativi.",
"copyRelativePathSeparator.auto": "Usare il carattere di separazione del percorso specifico del sistema operativo.",
"copyRelativePathSeparator.backslash": "Usare la barra rovesciata come carattere di separazione del percorso.",
"copyRelativePathSeparator.slash": "Usare la barra come carattere di separazione del percorso.",
"defaultLanguage": "Identificatore linguaggio predefinito assegnato ai nuovi file. Se è configurato su `${activeEditorLanguage}`, verrà usato l’identificatore linguaggio dell'editor di testo attualmente attivo se presente.",
+ "defaultPathErrorMessage": "Il percorso predefinito per le finestre di dialogo dei file deve essere un percorso assoluto , ad esempio C:\\\\myFolder o /myFolder.",
+ "disabled": "Disabilita la denominazione incrementale. Se esistono due file con lo stesso nome, verrà richiesto di sovrascrivere il file esistente.",
"enableDragAndDrop": "Controlla se Esplora risorse deve consentire lo spostamento di file e cartelle tramite il trascinamento della selezione. Questa impostazione ha effetto solo sul trascinamento della selezione in Esplora risorse.",
- "enableUndo": "Controlla se l'esploratore deve supportare operazioni di annullamento di file e cartelle.",
+ "enableUndo": "Controlla se Esplora risorse deve supportare operazioni di annullamento di file e cartelle.",
"enableUndo.default": "Esploratore mostrerà una richiesta di conferma prima delle operazioni di annullamento distruttive.",
"enableUndo.light": "Esploratore non richiederà conferma prima di annullare le operazioni con lo stato attivo abilitato.",
"enableUndo.verbose": "Esploratore mostrerà una richiesta di conferma prima di tutte le operazioni di annullamento.",
@@ -6355,18 +10174,21 @@
"eol.LF": "LF",
"eol.auto": "Usa il carattere di fine riga specifico del sistema operativo.",
"everything": "Formatta l'intero file.",
- "exclude": "Consente di configurare [glob patterns](https://code.visualstudio.com/docs/editor/codebasics#_advanced-search-options) per escludere file e cartelle. Ad esempio, la funzionalità Esplora file stabilisce quali file e cartelle mostrare o nascondere in base a questa impostazione. Fare riferimento all'impostazione `#search.exclude#`, per definire esclusioni specifiche della ricerca.",
- "excludeGitignore": "Controlla se le voci in .gitignore devono essere analizzate ed escluse dallo strumento di esplorazione. Simile a {0}.",
+ "exclude": "Configurare i [modelli glob](https://aka.ms/vscode-glob-patterns) per escludere file e cartelle. Ad esempio, la funzionalità Esplora file stabilisce quali file e cartelle mostrare o nascondere in base a questa impostazione. Fare riferimento all'impostazione '#search.exclude#' per definire esclusioni specifiche della ricerca. Fare riferimento all'impostazione '#explorer.excludeGitIgnore#' per ignorare i file in base a '.gitignore'.",
+ "excludeGitignore": "Controlla se le voci in .gitignore devono essere analizzate ed escluse da Esplora risorse. Simile a {0}.",
"expandSingleFolderWorkspaces": "Controlla se Esplora risorse deve espandere aree di lavoro multi-radice contenenti solo una sola cartella durante l'inizializzazione",
+ "explorer.autoRevealExclude.boolean": "Criterio GLOB da usare per trovare percorsi file. Impostare su True o False per abilitare o disabilitare il criterio.",
+ "explorer.autoRevealExclude.when": "Controllo aggiuntivo sugli elementi di pari livello di un file corrispondente. Usare $(basename) come variabile del nome file corrispondente.",
"explorer.decorations.badges": "Controlli se le decorazioni file devono usare le notifiche.",
"explorer.decorations.colors": "Controlla se le decorazioni file devono usare i colori.",
- "explorer.incrementalNaming": "Controlla la strategia di denominazione da usare quando si assegna un nuovo nome a un elemento di Explorer duplicato in seguito a un'operazione Incolla.",
+ "explorer.incrementalNaming": "Controlla quale strategia di denominazione usare quando si assegna un nuovo nome a un elemento di Explorer duplicato in seguito a un'operazione Incolla.",
"explorerConfigurationTitle": "Esplora file",
"falseDescription": "Disabilita il criterio.",
+ "fileDialogDefaultPath": "Percorso predefinito per le finestre di dialogo del file, che esegue l'override del percorso home dell'utente. Viene usato solo in assenza di un percorso specifico di contesto, ad esempio il file o la cartella aperti più di recente.",
"fileNesting.description": "Ogni criterio chiave può contenere un singolo carattere '*' corrispondente a qualsiasi stringa.",
- "fileNestingEnabled": "Controlla se l'annidamento file è abilitato nell’esploratore. L'annidamento dei file consente di raggruppare visivamente i file correlati in una directory in un singolo file padre.",
+ "fileNestingEnabled": "Controlla se l'annidamento dei file è abilitato in Esplora risorse. L'annidamento dei file consente di raggruppare visivamente i file correlati in una directory in un singolo file padre.",
"fileNestingExpand": "Controlla se gli annidamenti di file vengono espansi automaticamente. {0} deve essere impostato per rendere effettiva questa impostazione.",
- "fileNestingPatterns": "Controlla l'annidamento dei file in Esplora risorse. Ogni __Item__ rappresenta un criterio padre e può contenere un singolo carattere '*' che corrisponde a qualsiasi stringa. Ogni __Value__ rappresenta un elenco delimitato da virgole dei modelli figlio che devono essere visualizzati annidati sotto un determinato elemento padre. I modelli figlio possono contenere diversi token speciali:\r\n- '${capture}': corrisponde al valore risolto di '*' dal modello padre\r\n- '${basename}': corrisponde al nome di base del file padre, 'file' in 'file.ts'\r\n- '${extname}': corrisponde all'estensione del file padre, 'ts' in 'file.ts'\r\n- '${dirname}': corrisponde al nome della directory del file padre, 'src' in 'src/file.ts'\r\n- '*': corrisponde a qualsiasi stringa, può essere usato una sola volta per criterio figlio",
+ "fileNestingPatterns": "Controlla l'annidamento dei file in Esplora risorse. {0} deve essere impostato per rendere effettiva questa impostazione. Ogni __Item__ rappresenta un criterio padre e può contenere un singolo carattere '*' che corrisponde a qualsiasi stringa. Ogni __Value__ rappresenta un elenco delimitato da virgole dei modelli figlio che devono essere visualizzati annidati sotto un determinato elemento padre. I modelli figlio possono contenere diversi token speciali:\r\n- '${capture}': corrisponde al valore risolto di '*' dal modello padre\r\n- '${basename}': corrisponde al nome di base del file padre, 'file' in 'file.ts'\r\n- '${extname}': corrisponde all'estensione del file padre, 'ts' in 'file.ts'\r\n- '${dirname}': corrisponde al nome della directory del file padre, 'src' in 'src/file.ts'\r\n- '*': corrisponde a qualsiasi stringa, può essere usato una sola volta per criterio figlio",
"files.autoSave.afterDelay": "Un editor con modifiche viene salvato automaticamente dopo l'istruzione configurata `#files.autoSaveDelay#`.",
"files.autoSave.off": "Un editor con modifiche non viene mai salvato automaticamente.",
"files.autoSave.onFocusChange": "Un editor con modifiche viene salvato automaticamente quando perde lo stato attivo.",
@@ -6376,26 +10198,28 @@
"files.participants.timeout": "Timeout in millisecondi dopo il quale i partecipanti file per le operazioni di creazione, ridenominazione ed eliminazione vengono annullati. Usare `0` per disabilitare i partecipanti.",
"files.restoreUndoStack": "Ripristina lo stack di annullamento alla riapertura di un file.",
"files.saveConflictResolution": "Può verificarsi un conflitto di salvataggio quando un file viene salvato su disco che nel frattempo è stato modificato da un altro programma. Per evitare la perdita di dati, all'utente viene chiesto di confrontare le modifiche nell'editor con la versione su disco. Questa impostazione deve essere modificata solo se si verificano errori di conflitto di salvataggio frequenti e può causare la perdita di dati se usata senza prestare la dovuta attenzione.",
- "files.simpleDialog.enable": "Abilita la finestra di dialogo semplice dei file. Tale finestra sostituisce quella di sistema se abilitata.",
+ "files.simpleDialog.enable": "Abilita la finestra di dialogo semplice dei file per aprire e salvare file e cartelle. Se abilitata, la finestra di dialogo semplice dei file sostituisce la finestra di dialogo dei file di sistema.",
"filesConfigurationTitle": "File",
- "formatOnSave": "Formatta un file durante il salvataggio. Deve essere disponibile un formattatore, il file non deve essere salvato dopo il ritardo e l'editor non deve essere in fase di arresto.",
+ "filesReadonlyExclude": "Configurare i percorsi o [modelli glob](https://aka.ms/vscode-glob-patterns) da escludere dall'essere contrassegnati come di sola lettura se corrispondono come risultato dell'impostazione '#files.readonlyInclude#'. I modelli Glob vengono sempre valutati in relazione al percorso della cartella dell'area di lavoro, a meno che non siano percorsi assoluti. I file dei provider di file system di sola lettura saranno sempre di sola lettura indipendentemente da questa impostazione.",
+ "filesReadonlyFromPermissions": "Contrassegna i file come di sola lettura quando le relative autorizzazioni per i file lo indicano. È possibile eseguire l'override di questa opzione tramite le impostazioni '#files.readonlyInclude#' e '#files.readonlyExclude#'.",
+ "filesReadonlyInclude": "Configurare percorsi o [modelli glob](https://aka.ms/vscode-glob-patterns) per contrassegnare come di sola lettura. I modelli Glob vengono sempre valutati in relazione al percorso della cartella dell'area di lavoro, a meno che non siano percorsi assoluti. È possibile escludere i percorsi corrispondenti tramite l'impostazione '#files.readonlyExclude#'. I file dei provider di file system di sola lettura saranno sempre di sola lettura indipendentemente da questa impostazione.",
+ "formatOnSave": "Formatta un file al salvataggio. È necessario che sia disponibile un formattatore e che l'editor non sia in fase di arresto. Quando {0} è impostato su 'afterDelay', il file verrà formattato solo se salvato in modo esplicito.",
"formatOnSaveMode": "Controlla se con Formatta dopo salvataggio viene formattato l'intero file o vengono formattate solo le modifiche. Si applica solo quando `#editor.formatOnSave#` è abilitato.",
- "hotExit": "Controlla se i file non salvati verranno memorizzati tra una sessione e l'altra, consentendo di ignorare il prompt di salvataggio alla chiusura dell'editor.",
+ "hotExit": "[Hot Exit](https://aka.ms/vscode-hot-exit) controlla se i file non salvati verranno memorizzati tra una sessione e l'altra, consentendo di ignorare il prompt di salvataggio alla chiusura dell'editor.",
"hotExit.off": "Disabilitare Hot Exit. Verrà visualizzato un prompt quando si prova a chiudere una finestra con editor che contengono modifiche non salvate.",
"hotExit.onExit": "La funzionalità Hot Exit verrà attivata quando si chiude l'ultima finestra in Windows/Linux o quando si attiva il comando `workbench.action.quit` (riquadro comandi, tasto di scelta rapida, menu). Tutte le finestre senza cartelle aperte verranno ripristinate al successivo avvio. Per accedere a un elenco di finestre aperte in precedenza che includono file non salvati, fare clic su `File > Apri recenti > Altro...`",
"hotExit.onExitAndWindowClose": "La funzionalità Hot Exit verrà attivata quando si chiude l'ultima finestra in Windows/Linux o quando si attiva il comando `workbench.action.quit` (riquadro comandi, tasto di scelta rapida, menu), nonché per qualsiasi finestra con una cartella aperta indipendentemente dal fatto che sia l'ultima. Tutte le finestre senza cartelle aperte verranno ripristinate al successivo avvio. Per accedere a un elenco di finestre aperte in precedenza che includono file non salvati, fare clic su `File > Apri recenti > Altro...`",
"hotExit.onExitAndWindowCloseBrowser": "La funzionalità Hot Exit verrà attivata alla chiusura del browser o di una finestra o una scheda.",
"insertFinalNewline": "Se è abilitato, inserisce un carattere di nuova riga finale alla fine del file durante il salvataggio.",
- "maxMemoryForLargeFilesMB": "Controlla la memoria disponibile per VS Code dopo il riavvio durante il tentativo di aprire file di grandi dimensioni. Il risultato è uguale a quando si specifica `--max-memory=NEWSIZE` sulla riga di comando.",
"modification": "Formatta le modifiche (richiede il controllo del codice sorgente).",
"modificationIfAvailable": "Tenterà di formattare solo le modifiche (richiede il controllo del codice sorgente). Se non è possibile usare il controllo del codice sorgente, verrà formattato tutto il file.",
"openEditorsSortOrder": "Controlla l'ordinamento degli editor nel riquadro Editor aperti.",
- "openEditorsVisible": "Numero massimo di editor visualizzati nel riquadro degli Editor aperti. Impostarlo su 0 per nascondere il riquadro.",
- "openEditorsVisibleMin": "Numero minimo di slot editor visualizzati nel riquadro Editor aperti. Se impostato su 0, il riquadro Editor aperti verrà ridimensionato in modo dinamico in base al numero di editor.",
+ "openEditorsVisible": "Numero massimo iniziale di editor visualizzato nel riquadro Editor aperti. Se si supera questo limite, verrà visualizzata una barra di scorrimento e sarà possibile ridimensionare il riquadro per visualizzare più elementi.",
+ "openEditorsVisibleMin": "Numero minimo di slot editor preallocati nel riquadro Editor aperti. Se impostato su 0, il riquadro Editor aperti verrà ridimensionato in modo dinamico in base al numero di editor.",
"overwriteFileOnDisk": "Per risolvere il conflitto di salvataggio, il file su disco verrà sovrascritto con le modifiche nell'editor.",
- "simple": "Aggiunge la parola \"copy\" alla fine del nome duplicato potenzialmente seguito da un numero",
- "smart": "Aggiunge un numero alla fine del nome duplicato. Se il nome file include già un numero, prova a incrementare tale numero",
- "sortOrder": "Controllare l'ordinamento basato sulle proprietà di file e cartelle nell'esploratore. Quando '#explorer.fileNesting.enabled#' è abilitato, controlla anche l'ordinamento dei file annidati.",
+ "simple": "Aggiunge la parola \"copy\" alla fine del nome duplicato potenzialmente seguito da un numero.",
+ "smart": "Aggiunge un numero alla fine del nome duplicato. Se il nome file include già un numero, prova a incrementare tale numero.",
+ "sortOrder": "Controlla l'ordinamento basato sulle proprietà di file e cartelle in Esplora risorse. Quando '#explorer.fileNesting.enabled#' è abilitato, controlla anche l'ordinamento dei file annidati.",
"sortOrder.alphabetical": "Gli editor sono ordinati alfabeticamente in base al nome della scheda all'interno di ogni gruppo di editor.",
"sortOrder.default": "I file e le cartelle sono ordinati in base ai relativi nomi. Le cartelle sono visualizzate prima dei file.",
"sortOrder.editorOrder": "Gli editor sono visualizzati nello stesso ordine in cui vengono visualizzate le schede dell'editor.",
@@ -6410,28 +10234,33 @@
"sortOrderLexicographicOptions.lower": "I nomi in minuscolo vengono raggruppati prima dei nomi in maiuscolo.",
"sortOrderLexicographicOptions.unicode": "I nomi sono ordinati in ordine Unicode.",
"sortOrderLexicographicOptions.upper": "I nomi in maiuscolo vengono raggruppati prima dei nomi in minuscolo.",
+ "sortOrderReverse": "Consente di stabilire se il tipo di ordinamento di file e cartelle deve essere invertito.",
+ "textFileEditor": "Editor file di testo",
"trimFinalNewlines": "Se è abilitato, taglia tutte le nuove righe dopo il carattere di nuova riga finale alla fine del file durante il salvataggio.",
"trimTrailingWhitespace": "Se è abilitato, taglierà lo spazio vuoto quando si salva un file.",
+ "trimTrailingWhitespaceInRegexAndStrings": "Se questa opzione è abilitata, gli spazi vuoti finali vengono rimossi dalle stringhe su più righe e le espressioni regolari vengono rimosse al salvataggio o durante l'esecuzione di 'editor.action.trimTrailingWhitespace'. Ciò può impedire il taglio degli spazi vuoti dalle righe quando non sono presenti informazioni aggiornate sui token.",
"trueDescription": "Abilita il criterio.",
"useTrash": "Sposta i file e/o le cartelle nel cestino del sistema operativo (Cestino in Windows) quando vengono eliminati. La disabilitazione di questa opzione comporta l'eliminazione definitiva di file e/o cartelle.",
- "watcherExclude": "Consente di configurare i percorsi o i criteri GLOB da escludere dal controllo dei file. I percorsi relativi, ad esempio `build/output`, verranno risolti in un percorso assoluto usando l'area di lavoro attualmente aperta. Per una corretta corrispondenza, i criteri GLOB devono corrispondere a percorsi assoluti, ad esempio aggiungere come prefisso `**/` oppure il percorso completo e il suffisso `/**` per trovare i file in un percorso, ad esempio `**/build/output/**` o `/Users/name/workspaces/project/build/output/**`. Quando si nota che il watcher dei file utilizza una notevole quantità di CPU, assicurarsi di escludere le cartelle di grandi dimensioni a cui si è meno interessati, ad esempio le cartelle di output della compilazione.",
+ "watcherExclude": "Configurare i percorsi o [modelli glob](https://aka.ms/vscode-glob-patterns) da escludere dal controllo dei file. I percorsi possono essere relativi alla cartella osservata o assoluti. I modelli Glob vengono relativamente alla cartella osservata. Se il processo di osservazione dei file consuma molta CPU, assicurarsi di escludere le cartelle di grandi dimensioni che sono di minore interesse (ad esempio le cartelle di output di compilazione).",
"watcherInclude": "Consente di configurare percorsi aggiuntivi per controllare le modifiche all'interno dell'area di lavoro. Per impostazione predefinita, tutte le cartelle dell'area di lavoro verranno controllate in modo ricorsivo, ad eccezione delle cartelle che costituiscono collegamenti simbolici. È possibile aggiungere in modo esplicito percorsi assoluti o relativi per supportare il controllo delle cartelle che costituiscono collegamenti simbolici. I percorsi relativi verranno risolti in un percorso assoluto usando l'area di lavoro attualmente aperta."
},
"vs/workbench/contrib/files/browser/views/emptyView": {
"noWorkspace": "Nessuna cartella aperta"
},
"vs/workbench/contrib/files/browser/views/explorerDecorationsProvider": {
- "canNotResolve": "Non è possibile risolvere la cartella dell'area di lavoro",
+ "canNotResolve": "Non è possibile risolvere la cartella dell'area di lavoro ({0})",
"label": "Esplora risorse",
"symbolicLlink": "Collegamento simbolico",
"unknown": "Tipo di file sconosciuto"
},
"vs/workbench/contrib/files/browser/views/explorerView": {
"collapseExplorerFolders": "Comprimi cartelle in Explorer",
- "createNewFile": "Nuovo file",
- "createNewFolder": "Nuova cartella",
+ "collapseExplorerFoldersMetadata": "Riduce tutte le cartelle in Explorer.",
+ "createNewFile": "Nuovo file...",
+ "createNewFolder": "Nuova cartella...",
"explorerSection": "Sezione di Esplora risorse: {0}",
- "refreshExplorer": "Aggiorna Explorer"
+ "refreshExplorer": "Aggiorna Explorer",
+ "refreshExplorerMetadata": "Forza un aggiornamento di Explorer."
},
"vs/workbench/contrib/files/browser/views/explorerViewer": {
"confirmMove": "Spostare '{0}' in '{1}'?",
@@ -6441,12 +10270,14 @@
"copy": "Copia {0}",
"copying": "Copia di {0}",
"doNotAskAgain": "Non visualizzare più questo messaggio",
+ "explorerHighlightFolderBadgeTitle": "La directory contiene {0} corrispondenze",
"fileInputAriaLabel": "Digitare il nome file. Premere INVIO per confermare oppure ESC per annullare.",
"move": "Sposta {0}",
"moveButtonLabel": "&&Sposta",
"moving": "Spostamento di {0}",
"numberOfFiles": "{0} file",
"numberOfFolders": "{0} cartelle",
+ "searchMaxResultsWarning": "Il set di risultati contiene solo un subset di tutte le corrispondenze. Eseguire una ricerca più specifica per ridurre il numero di risultati.",
"treeAriaLabel": "Esplora file"
},
"vs/workbench/contrib/files/browser/views/openEditorsView": {
@@ -6454,11 +10285,11 @@
"flipLayout": "Attiva/Disattiva il layout editor verticale/orizzontale",
"miToggleEditorLayout": "Inverti &&layout",
"miToggleEditorLayoutWithoutMnemonic": "Inverti layout",
- "newUntitledFile": "Nuovo file senza nome",
+ "newUntitledFile": "Nuovo file di testo senza titolo",
"openEditors": "Editor aperti"
},
"vs/workbench/contrib/files/browser/workspaceWatcher": {
- "enospcError": "Non è possibile controllare la presenza di modifiche apportate ai file in questa cartella di grandi dimensioni dell'area di lavoro. Per risolvere questo problema, seguire il collegamento alle istruzioni.",
+ "enospcError": "Non è possibile controllare le modifiche ai file. Per risolvere questo problema, seguire il collegamento alle istruzioni.",
"eshutdownError": "Arresto imprevisto del controllo modifiche file. Ricaricare la finestra può abilitare di nuovo il watcher a meno che non sia possibile controllare l'area di lavoro per verificare le modifiche ai file.",
"learnMore": "Istruzioni",
"reload": "Ricarica"
@@ -6468,58 +10299,59 @@
"dirtyFiles": "{0} file non salvati"
},
"vs/workbench/contrib/files/common/files": {
+ "explorerFindProviderActive": "È True quando nella struttura di Explorer viene usato il provider di ricerca.",
"explorerResourceCut": "È true quando un elemento in ESPLORA RISORSE è stata tagliato per un'operazione taglia e incolla.",
"explorerResourceIsFolder": "È true quando l'elemento con lo stato attivo in ESPLORA RISORSE è una cartella.",
"explorerResourceIsRoot": "È true quando l'elemento con lo stato attivo in ESPLORA RISORSE è una cartella radice.",
"explorerResourceMoveableToTrash": "È true quando l'elemento con lo stato attivo in ESPLORA RISORSE può essere spostato nel cestino.",
- "explorerResourceReadonly": "È true quando l'elemento con lo stato attivo in ESPLORA RISORSE è di sola lettura.",
+ "explorerResourceParentReadonly": "È True quando l'elemento con lo stato attivo nell’elemento padre di EXPLORER è di sola lettura.",
+ "explorerResourceReadonly": "È True quando l'elemento con lo stato attivo in ESPLORA RISORSE è di sola lettura.",
"explorerViewletCompressedFirstFocus": "È true quando lo stato attivo si trova all'interno della prima parte di un elemento compatto nella visualizzazione ESPLORA RISORSE.",
"explorerViewletCompressedFocus": "È true quando l'elemento con lo stato attivo nella visualizzazione ESPLORA RISORSE è un elemento compatto.",
"explorerViewletCompressedLastFocus": "È true quando lo stato attivo si trova all'interno dell'ultima parte di un elemento compatto nella visualizzazione ESPLORA RISORSE.",
"explorerViewletFocus": "È true quando lo stato attivo si trova all'interno del viewlet ESPLORA RISORSE.",
"explorerViewletVisible": "È true quando il viewlet ESPLORA RISORSE è visibile.",
"filesExplorerFocus": "È true quando lo stato attivo si trova all'interno della visualizzazione ESPLORA RISORSE.",
+ "foldersViewVisible": "True quando la visualizzazione CARTELLE (l'albero dei file all'interno del contenitore della visualizzazione Explorer) è visibile.",
"openEditorsFocus": "È true quando lo stato attivo si trova all'interno della visualizzazione EDITOR APERTI.",
- "openEditorsVisible": "È true quando la visualizzazione EDITOR APERTI è visibile.",
"viewHasSomeCollapsibleItem": "True quando un'area di lavoro nella visualizzazione ESPLORA RISORSE include un elemento figlio radice comprimibile."
},
- "vs/workbench/contrib/files/electron-sandbox/fileActions.contribution": {
+ "vs/workbench/contrib/files/electron-browser/fileActions.contribution": {
"filesCategory": "File",
+ "miShare": "Condividi",
"openContainer": "Apri cartella superiore",
"revealInMac": "Visualizza in Finder",
"revealInWindows": "Visualizza in Esplora file"
},
- "vs/workbench/contrib/files/electron-sandbox/files.contribution": {
- "textFileEditor": "Editor file di testo"
- },
- "vs/workbench/contrib/files/electron-sandbox/textFileEditor": {
- "configureMemoryLimit": "Configura limite di memoria",
- "fileTooLargeForHeapError": "Per aprire un file di queste dimensioni, è necessario riavviare e consentire a {0} di usare più memoria",
- "relaunchWithIncreasedMemoryLimit": "Riavvia con {0} MB"
+ "vs/workbench/contrib/folding/browser/folding.contribution": {
+ "formatter.default": "Definisce un provider di intervalli di riduzione predefinito che ha la precedenza su tutti gli altri provider di intervalli di riduzione. Deve essere l'identificatore di un'estensione che contribuisce a un provider di intervalli di riduzione.",
+ "null": "Tutto",
+ "nullFormatterDescription": "Tutti i provider di intervalli di riduzione attivi"
},
"vs/workbench/contrib/format/browser/formatActionsMultiple": {
- "cancel": "Annulla",
"config": "Configura il formattatore predefinito...",
"config.bad": "L'estensione '{0}' è configurata come formattatore, ma non è disponibile. Per continuare, selezionare un altro formattatore predefinito.",
"config.needed": "Sono disponibili più formattatori per i file '{0}'. Uno di essi deve essere configurato come formattatore predefinito.",
"def": "(Predefinita)",
- "do.config": "Configura...",
+ "do.config": "&&Configura...",
+ "do.config.command": "Configura...",
+ "do.config.notification": "Configura...",
"format.placeHolder": "Selezionare un formattatore",
"formatDocument.label.multiple": "Formatta documento con...",
"formatSelection.label.multiple": "Formatta selezione con...",
"formatter": "Formattazione",
"formatter.default": "Consente di definire un formattatore predefinito che ha la precedenza su tutte le altre impostazioni di formattatore. Deve essere l'identificatore di un'estensione che contribuisce a un formattatore.",
- "miss": "L'estensione '{0}' è configurata come formattatore ma non può formattare i file '{1}'",
- "miss.1": "Configura il formattatore predefinito",
+ "miss": "Configura il formattatore predefinito",
+ "miss.1": "L'estensione '{0}' è configurata come formattatore ma non può formattare i file '{1}'",
+ "miss.2": "L'estensione '{0}' è configurata come formattatore, ma può formattare solo i file '{1}' nel loro insieme, non selezioni o parti di esso.",
"null": "Nessuna",
"nullFormatterDescription": "Nessuno",
"select": "Selezionare un formattatore predefinito per i file '{0}'",
"summary": "Conflitti formattatore"
},
"vs/workbench/contrib/format/browser/formatActionsNone": {
- "cancel": "Annulla",
"formatDocument.label.multiple": "Formatta documento",
- "install.formatter": "Installa formattatore...",
+ "install.formatter": "&&Installa formattatore...",
"no.provider": "Non è installato alcun formattatore per i file '{0}'.",
"too.large": "Non è possibile formattare questo file perché è troppo grande"
},
@@ -6527,52 +10359,447 @@
"formatChanges": "Formatta righe modificate"
},
"vs/workbench/contrib/inlayHints/browser/inlayHintsAccessibilty": {
- "description": "Codice con informazioni su suggerimenti inlay",
- "isReadingLineWithInlayHints": "Indica se la riga corrente e i relativi suggerimenti inlay sono attualmente evidenziati",
- "read.title": "Leggi riga con suggerimenti inline",
- "stop.title": "Interrompi lettura suggerimenti inlay"
+ "description": "Codice con informazioni su suggerimenti per l'inlay",
+ "isReadingLineWithInlayHints": "Indica se la riga corrente e i relativi suggerimenti per l'inlay sono attualmente evidenziati",
+ "read.title": "Leggi riga con suggerimenti per l'inlay",
+ "stop.title": "Interrompi lettura suggerimenti per l'inlay"
+ },
+ "vs/workbench/contrib/inlineChat/browser/inlineChat.contribution": {
+ "cancel": "Annulla richiesta",
+ "cancelShort": "Annulla",
+ "send.edit": "Modifica codice",
+ "send.generate": "Genera"
+ },
+ "vs/workbench/contrib/inlineChat/browser/inlineChatActions": {
+ "Keep": "Mantieni",
+ "apply1": "Accetta modifiche",
+ "apply2": "Accetta",
+ "arrowDown": "Cursore giù",
+ "arrowUp": "Cursore su",
+ "cat": "Chat inline",
+ "chat.rerun.label": "Esegui di nuovo la richiesta",
+ "close": "Chiudi",
+ "close2": "Chiudi",
+ "configure": "Configura chat inline",
+ "discard": "Rimuovi",
+ "focus": "Input dello stato attivo",
+ "moveToNextHunk": "Passa alla modifica successiva",
+ "moveToPreviousHunk": "Passa alla modifica precedente",
+ "rerun": "Riesegui",
+ "run": "Apri chat in linea",
+ "showChanges": "Attiva/Disattiva modifiche",
+ "startInlineChat": "Icona che genera la chat inline dalla barra degli strumenti editor.",
+ "unstash": "Riprendi ultima chat inline ignorata",
+ "viewInChat": "Visualizza nella chat"
+ },
+ "vs/workbench/contrib/inlineChat/browser/inlineChatController": {
+ "askOrEditInContext": "Chiedi o modifica nel contesto",
+ "create.fail": "Non è stato possibile avviare la chat dell'editor",
+ "empty": "Nessun risultato. Affinare l'input e riprovare.",
+ "err.apply": "Non è stato possibile applicare le modifiche.",
+ "err.discard": "Non è stato possibile rimuovere le modifiche.",
+ "fix1": "Risolvi il problema allegato",
+ "fixN": "Risolvi il problema allegato",
+ "loading": "Elaborazione in corso...",
+ "placeholder": "Modifica, effettua il refactoring e genera codice",
+ "responseWasEmpty": "Risposta vuota",
+ "welcome.2": "Preparazione..."
+ },
+ "vs/workbench/contrib/inlineChat/browser/inlineChatSessionServiceImpl": {
+ "chat.remove.confirmation.checkbox": "Non chiederlo più",
+ "confirm": "Vuoi continuare nella visualizzazione Chat?",
+ "confirm.cancel": "Annulla",
+ "confirm.detail": "La chat inline è pensata per apportare modifiche al codice in un singolo file. Continua la richiesta nella visualizzazione Chat o riformulala per la chat inline.",
+ "confirm.title": "Vuoi continuare nella visualizzazione Chat?",
+ "confirm.yes": "Continua nella visualizzazione Chat",
+ "name": "Sposta chat inline nella chat del pannello",
+ "resetChoice.label": "Reimposta la scelta per 'Sposta chat inline nella chat del pannello'"
+ },
+ "vs/workbench/contrib/inlineChat/browser/inlineChatWidget": {
+ "aria-label": "Input chat inline",
+ "feedbackThanks": "Grazie per i commenti e suggerimenti inviati!",
+ "inlineChat.accessibilityHelp": "Input chat inline, usa {0} per la Guida all'accessibilità della chat inline.",
+ "inlineChat.accessibilityHelpNoKb": "Input chat inline, esegui il comando Guida sull'accessibilità della chat inline per altre informazioni.",
+ "termsDisclaimer": "Continuando con Copilot {0}, si accettano le [Terms]({2}) di {1} e l'[Privacy Statement]({3})"
+ },
+ "vs/workbench/contrib/inlineChat/browser/inlineChatZoneWidget": {
+ "inlineChatClosed": "Widget chat inline chiuso"
+ },
+ "vs/workbench/contrib/inlineChat/common/inlineChat": {
+ "accessibleDiffView": "Indica se la chat inline esegue anche il rendering di un visualizzatore differenze accessibile per le modifiche.",
+ "accessibleDiffView.auto": "Il visualizzatore differenze accessibile è basato sulla modalità di lettura dello schermo abilitata.",
+ "accessibleDiffView.off": "Il visualizzatore differenze accessibile non è mai abilitato.",
+ "accessibleDiffView.on": "Il visualizzatore differenze accessibile è sempre abilitato.",
+ "editorMinimap.inlineChatInserted": "Colore del marcatore della minimappa per il contenuto inserito della chat inline.",
+ "editorOverviewRuler.inlineChatInserted": "Colore del marcatore del righello della panoramica per il contenuto inserito nella chat inline.",
+ "editorOverviewRuler.inlineChatRemoved": "Colore del marcatore del righello della panoramica per il contenuto rimosso dalla chat inline.",
+ "enableV2": "Indica se utilizzare la prossima versione della chat inline.",
+ "finishOnType": "Indica se terminare una sessione di chat inline durante la digitazione all'esterno delle aree modificate.",
+ "holdToSpeech": "Indica se il tasto di scelta rapida della chat inline abiliterà automaticamente il riconoscimento vocale.",
+ "inlineChat.background": "Colore di sfondo del widget dell'editor interattivo",
+ "inlineChat.border": "Colore del bordo del widget dell'editor interattivo",
+ "inlineChat.foreground": "Colore primo piano del widget dell'editor interattivo",
+ "inlineChat.shadow": "Colore ombreggiatura del widget dell'editor interattivo",
+ "inlineChatChangeHasDiff": "Indica se la modifica corrente supporta la visualizzazione di una differenza",
+ "inlineChatChangeShowsDiff": "Indica se la modifica corrente mostra una differenza",
+ "inlineChatDiff.inserted": "Colore di sfondo del testo inserito nell'input dell'editor interattivo",
+ "inlineChatDiff.removed": "Colore di sfondo del testo rimosso nell'input dell'editor interattivo",
+ "inlineChatEditing": "Indica se l'utente sta attualmente modificando o scrivendo codice nella chat online",
+ "inlineChatEmpty": "Indica se l'input dell'editor interattivo è vuoto",
+ "inlineChatFocused": "Indica se l'input dell'editor interattivo è in evidenza",
+ "inlineChatHasEditsAgent": "Indica se esiste un agente per editor interattivi inline",
+ "inlineChatHasNotebookAgent": "Indica se esiste un agente per le celle del notebook",
+ "inlineChatHasNotebookInline": "Indica se esiste un agente per le celle del notebook",
+ "inlineChatHasPossible": "Indica se esiste un provider per la chat inline e se un editor per la chat inline è aperto",
+ "inlineChatHasProvider": "Indica se esiste un provider per gli editor interattivi",
+ "inlineChatHasStashedSession": "Indica se l'editor interattivo ha mantenuto una sessione per il ripristino rapido",
+ "inlineChatInnerCursorFirst": "Indica se il cursore dell'input dell'editor interattivo si trova sulla prima riga",
+ "inlineChatInnerCursorLast": "Indica se il cursore dell'input dell'editor interattivo si trova sull'ultima riga",
+ "inlineChatInput.background": "Colore di sfondo di input dell'editor interattivo",
+ "inlineChatInput.border": "Colore del bordo dell'input dell'editor interattivo",
+ "inlineChatInput.focusBorder": "Colore del bordo dell'input dell'editor interattivo quando in evidenza",
+ "inlineChatInput.placeholderForeground": "Colore primo piano del segnaposto di input dell'editor interattivo",
+ "inlineChatOuterCursorPosition": "Indica se il cursore dell'editor esterno si trova sopra o sotto l'input dell'editor interattivo",
+ "inlineChatRequestInProgress": "Indica se è attualmente in corso una richiesta di chat inline",
+ "inlineChatResponseFocused": "Indica se la risposta del widget interattivo è evidenziata",
+ "inlineChatResponseTypes": "Tipo di risposte ricevute, niente ancora, solo messaggi o modifiche e messaggi locali",
+ "inlineChatVisible": "Indica se l'input dell'editor interattivo è visibile",
+ "notebookAgent": "Abilita un comportamento simile a un agente del widget chat inline nei notebook."
+ },
+ "vs/workbench/contrib/inlineChat/electron-browser/inlineChatActions": {
+ "holdForSpeech": "Tenere premuto per Voce"
+ },
+ "vs/workbench/contrib/inlineCompletions/browser/inlineCompletionLanguageStatusBarContribution": {
+ "inlineCompletionAvailable": "Completamento inline disponibile",
+ "inlineEditAvailable": "Modifica inline disponibile",
+ "inlineSuggestionLoading": "Caricamento in corso...",
+ "inlineSuggestions": "Suggerimenti inline",
+ "inlineSuggestionsSmall": "Suggerimenti inline",
+ "noInlineSuggestionAvailable": "Nessun suggerimento inline disponibile"
},
"vs/workbench/contrib/interactive/browser/interactive.contribution": {
"interactive.activeCodeBorder": "Colore bordo per la cella di codice interattiva corrente quando l'editor ha lo stato attivo.",
"interactive.execute": "Eseguire codice",
- "interactive.history.focus": "Cronologia dello stato attivo nella finestra interattiva",
+ "interactive.history.focus": "Cronologia dello stato attivo",
"interactive.history.next": "Valore successivo nella cronologia",
"interactive.history.previous": "Valore precedente nella cronologia",
"interactive.inactiveCodeBorder": "Colore bordo per la cella di codice interattiva corrente quando l'editor non ha lo stato attivo.",
"interactive.input.clear": "Cancella il contenuto dell'editor di input della finestra interattiva",
- "interactive.input.focus": "Editor di input dello stato attivo nella finestra interattiva",
+ "interactive.input.focus": "Editor di input dello stato attivo",
"interactive.open": "Apri finestra interattiva",
"interactiveScrollToBottom": "Scorri alla fine",
"interactiveScrollToTop": "Scorri all'inizio",
+ "interactiveWindow": "Finestra interattiva",
"interactiveWindow.alwaysScrollOnNewCell": "Scorri automaticamente la finestra interattiva per visualizzare l'output dell'ultima istruzione eseguita. Se questo valore è false, la finestra scorrerà solo se l'ultima cella era già quella in cui è stata eseguito lo scorrimento.",
- "interactiveWindow.restore": "Controls whether the Interactive Window sessions/history should be restored across window reloads. Whether the state of controllers used in Interactive Windows is persisted across window reloads are controlled by extensions contributing controllers."
- },
- "vs/workbench/contrib/interactive/browser/interactiveEditor": {
- "interactiveInputPlaceHolder": "Digitare qui il codice '{0}' e premere {1} per eseguire"
- },
- "vs/workbench/contrib/issue/electron-sandbox/issue.contribution": {
- "miOpenProcessExplorerer": "Apri &&Process Explorer",
- "miReportIssue": "&&Segnala problema",
- "reportIssueInEnglish": "Segnala problema..."
- },
- "vs/workbench/contrib/issue/electron-sandbox/issueActions": {
- "openProcessExplorer": "Apri Esplora processi",
- "reportPerformanceIssue": "Segnala problema di prestazioni..."
- },
- "vs/workbench/contrib/keybindings/browser/keybindings.contribution": {
- "toggleKeybindingsLog": "Attiva/Disattiva risoluzione dei problemi per tasti di scelta rapida"
- },
- "vs/workbench/contrib/languageDetection/browser/languageDetection.contribution": {
- "detectlang": "Rilevare la lingua dal contenuto",
- "langDetection.aria": "Cambia in lingua rilevata: {0}",
- "langDetection.name": "Rilevamento lingua",
+ "interactiveWindow.executeWithShiftEnter": "Eseguire la casella di input della finestra interattiva (REPL) con MAIUSC+INVIO, in modo che sia possibile usare INVIO per creare una nuova riga.",
+ "interactiveWindow.promptToSaveOnClose": "Richiedi di salvare quando viene chiusa la finestra interattiva. Questa modifica dell'impostazione influirà solo sulle nuove finestre interattive.",
+ "interactiveWindow.showExecutionHint": "Visualizzare un hint nella casella di input Interactive Window (REPL) per indicare come eseguire il codice."
+ },
+ "vs/workbench/contrib/interactive/browser/replInputHintContentWidget": {
+ "ReplInputAriaLabelHelp": "Usare {0} per la Guida all'accessibilità. ",
+ "ReplInputAriaLabelHelpNoKb": "Per altre informazioni, eseguire il comando Apri Guida per l'accessibilità. ",
+ "disableHint": " Attiva/disattiva {0} nelle impostazioni per disabilitare questo hint.",
+ "emptyHintText": "Premere {0} per eseguire. "
+ },
+ "vs/workbench/contrib/interactiveEditor/browser/interactiveEditorActions": {
+ "accept": "Effettua richiesta",
+ "actions.interactiveSession.accessibiltyHelpEditor": "Guida all'accessibilità dell'editor di sessioni interattive",
+ "apply1": "Accetta modifiche",
+ "apply2": "Accetta",
+ "arrowDown": "Cursore giù",
+ "arrowUp": "Cursore su",
+ "cancel": "Annulla",
+ "cat": "Editor interattivo",
+ "contractMessage": "Messaggio del contratto",
+ "copyRecordings": "(Sviluppatore) Scrivere Exchange negli Appunti",
+ "discard": "Rimuovi",
+ "discardMenu": "Rimuovi...",
+ "expandMessage": "Espandi messaggio",
+ "feedback.helpful": "Utile",
+ "feedback.unhelpful": "Poco utile",
+ "focus": "Input dello stato attivo",
+ "label": "Completamento di '{0}' e {1} ({2})",
+ "nextFromHistory": "Successivo dalla cronologia",
+ "previousFromHistory": "Precedente dalla cronologia",
+ "run": "Avvia chat del codice",
+ "stop": "Interrompi richiesta",
+ "toggleDiff": "Attiva/Disattiva Diff",
+ "toggleDiff2": "Mostra differenze inline",
+ "undo.clipboard": "Rimuovi negli Appunti",
+ "undo.newfile": "Rimuovi in un nuovo file",
+ "unstash": "Riprendi ultima chat del codice ignorato",
+ "viewInChat": "Visualizza nella chat"
+ },
+ "vs/workbench/contrib/interactiveEditor/browser/interactiveEditorController": {
+ "create.fail": "Non è stato possibile avviare la chat dell'editor",
+ "create.fail.detail": "Consultare il log degli errori e riprovare più tardi.",
+ "default.placeholder": "Inviare una domanda",
+ "default.placeholder.history": "{0} ({1}, {2} per la cronologia)",
+ "empty": "Nessun risultato. Affinare l'input e riprovare.",
+ "err.apply": "Non è stato possibile applicare le modifiche.",
+ "err.discard": "Non è stato possibile rimuovere le modifiche.",
+ "thinking": "In elaborazione...",
+ "welcome.1": "Il codice generato dall'intelligenza artificiale potrebbe non essere corretto"
+ },
+ "vs/workbench/contrib/interactiveEditor/browser/interactiveEditorStrategies": {
+ "lines.0": "Nessuna modifica",
+ "lines.1": "Modificata 1 riga",
+ "lines.N": "Modificate {0} righe"
+ },
+ "vs/workbench/contrib/interactiveEditor/browser/interactiveEditorWidget": {
+ "aria-label": "Input editor interattivo",
+ "interactiveEditor.accessibilityHelp": "Input editor interattivo. Usare {0} per la Guida all'accessibilità dell'editor interattivo.",
+ "interactiveSessionInput.accessibilityHelpNoKb": "Input editor interattivo. Per ulteriori informazioni, eseguire il comando Guida all'accessibilità dell'editor interattivo.",
+ "modified": "Modificato",
+ "original": "Originale"
+ },
+ "vs/workbench/contrib/interactiveEditor/common/interactiveEditor": {
+ "editMode": "Configurare se le modifiche apportate nell'editor interattivo vengono applicate direttamente al documento o vengono prima visualizzate per prima cosa in anteprima.",
+ "editMode.live": "Le modifiche vengono applicate direttamente al documento, ma possono essere evidenziate tramite differenze inline. Se si termina una sessione, le modifiche verranno conservate.",
+ "editMode.livePreview": "Le modifiche vengono applicate direttamente al documento e vengono evidenziate visivamente tramite differenze inline o affiancate. Se si termina una sessione, le modifiche verranno conservate.",
+ "editMode.preview": "Le modifiche sono disponibili solo in anteprima e devono essere accettate tramite il pulsante Applica. Se si termina una sessione, le modifiche verranno rimosse.",
+ "interactiveEditor.border": "Colore del bordo del widget dell'editor interattivo",
+ "interactiveEditor.regionHighlight": "Evidenziazione dello sfondo dell'area interattiva corrente. Deve essere trasparente.",
+ "interactiveEditor.shadow": "Colore ombreggiatura del widget dell'editor interattivo",
+ "interactiveEditorDidEdit": "Indica se l'editor interattivo ha modificato il codice",
+ "interactiveEditorDiff": "Indica se l'editor interattivo mostra diff inline per le modifiche",
+ "interactiveEditorDiff.inserted": "Colore di sfondo del testo inserito nell'input dell'editor interattivo",
+ "interactiveEditorDiff.removed": "Colore di sfondo del testo rimosso nell'input dell'editor interattivo",
+ "interactiveEditorDocumentChanged": "Indica se il documento è stato modificato contemporaneamente",
+ "interactiveEditorEmpty": "Indica se l'input dell'editor interattivo è vuoto",
+ "interactiveEditorFocused": "Indica se l'input dell'editor interattivo è in evidenza",
+ "interactiveEditorHasActiveRequest": "Indica se l'editor interattivo ha una richiesta attiva",
+ "interactiveEditorHasProvider": "Indica se esiste un provider per gli editor interattivi",
+ "interactiveEditorHasStashedSession": "Indica se l'editor interattivo ha mantenuto una sessione per il ripristino rapido",
+ "interactiveEditorInnerCursorFirst": "Indica se il cursore dell'input dell'editor interattivo si trova sulla prima riga",
+ "interactiveEditorInnerCursorLast": "Indica se il cursore dell'input dell'editor interattivo si trova sull'ultima riga",
+ "interactiveEditorInput.background": "Colore di sfondo di input dell'editor interattivo",
+ "interactiveEditorInput.border": "Colore del bordo dell'input dell'editor interattivo",
+ "interactiveEditorInput.focusBorder": "Colore del bordo dell'input dell'editor interattivo quando in evidenza",
+ "interactiveEditorInput.placeholderForeground": "Colore primo piano del segnaposto di input dell'editor interattivo",
+ "interactiveEditorLastFeedbackKind": "Ultimo tipo di feedback fornito",
+ "interactiveEditorMarkdownMessageCropState": "Indica se il messaggio dell'editor interattivo è ritagliato, non ritagliato o espanso",
+ "interactiveEditorOuterCursorPosition": "Indica se il cursore dell'editor esterno si trova sopra o sotto l'input dell'editor interattivo",
+ "interactiveEditorResponseType": "Qual è stato l'ultimo tipo di risposta della sessione corrente dell'editor interattivo",
+ "interactiveEditorVisible": "Indica se l'input dell'editor interattivo è visibile"
+ },
+ "vs/workbench/contrib/interactiveSession/browser/actions/interactiveSessionActions": {
+ "actions.ineractiveSession.acceptInput": "Sessione interattiva Accetta input",
+ "actions.interactiveSession.focus": "Sessione interattiva dello stato attivo",
+ "interactiveSession.category": "Sessione interattiva",
+ "interactiveSession.clear.label": "Cancella",
+ "interactiveSession.clearHistory.label": "Cancella cronologia input",
+ "interactiveSession.focusInput.label": "Input dello stato attivo",
+ "interactiveSession.history.label": "Visualizza cronologia",
+ "interactiveSession.history.pick": "Selezionare una sessione di chat da ripristinare",
+ "interactiveSession.open": "Apri Editor ({0})"
+ },
+ "vs/workbench/contrib/interactiveSession/browser/actions/interactiveSessionCodeblockActions": {
+ "interactive.copyCodeBlock.label": "Copia",
+ "interactive.insertCodeBlock.label": "Inserisci in corrispondenza del cursore",
+ "interactive.insertIntoNewFile.label": "Inserisci in un nuovo file",
+ "interactive.runInTerminal.label": "Esegui nel terminale"
+ },
+ "vs/workbench/contrib/interactiveSession/browser/actions/interactiveSessionCopyActions": {
+ "interactive.copyAll.label": "Copia tutto",
+ "interactive.copyItem.label": "Copia"
+ },
+ "vs/workbench/contrib/interactiveSession/browser/actions/interactiveSessionExecuteActions": {
+ "interactive.cancel.label": "Annulla",
+ "interactive.submit.label": "Invia"
+ },
+ "vs/workbench/contrib/interactiveSession/browser/actions/interactiveSessionTitleActions": {
+ "interactive.voteDown.label": "Voto negativo",
+ "interactive.voteUp.label": "Voto positivo"
+ },
+ "vs/workbench/contrib/interactiveSession/browser/contrib/interactiveSessionInputEditorContrib": {
+ "interactive.input.placeholderNoCommands": "Invia una domanda",
+ "interactive.input.placeholderWithCommands": "Porre una domanda o digitare '/' per gli argomenti"
+ },
+ "vs/workbench/contrib/interactiveSession/browser/interactiveSession.contribution": {
+ "interactiveSession": "Sessione interattiva",
+ "interactiveSession.editor.fontFamily": "Controlla la famiglia di tipi di carattere nelle sessioni interattive.",
+ "interactiveSession.editor.fontSize": "Controlla le dimensioni del carattere in pixel nelle sessioni interattive.",
+ "interactiveSession.editor.fontWeight": "Controlla lo spessore del carattere nelle sessioni interattive.",
+ "interactiveSession.editor.lineHeight": "Controlla l'altezza della riga in pixel nelle sessioni interattive. Usare 0 per calcolare l'altezza della riga rispetto alle dimensioni del carattere.",
+ "interactiveSession.editor.wordWrap": "Controlla se le righe devono essere a capo nelle sessioni interattive.",
+ "interactiveSessionConfigurationTitle": "Sessione interattiva"
+ },
+ "vs/workbench/contrib/interactiveSession/browser/interactiveSessionContributionServiceImpl": {
+ "vscode.extension.contributes.interactiveSession": "Aggiunge un contributo a un provider di sessioni interattive",
+ "vscode.extension.contributes.interactiveSession.icon": "Icona per questo provider di sessioni interattive.",
+ "vscode.extension.contributes.interactiveSession.id": "Identificatore univoco per questo provider di sessioni interattive.",
+ "vscode.extension.contributes.interactiveSession.label": "Nome visualizzato per questo provider di sessioni interattive.",
+ "vscode.extension.contributes.interactiveSession.when": "Condizione che deve essere true per abilitare questo provider di sessioni interattive."
+ },
+ "vs/workbench/contrib/interactiveSession/browser/interactiveSessionEditorInput": {
+ "interactiveSessionEditorName": "Sessione interattiva"
+ },
+ "vs/workbench/contrib/interactiveSession/browser/interactiveSessionInputPart": {
+ "interactiveSessionInput": "Input di sessione interattiva"
+ },
+ "vs/workbench/contrib/interactiveSession/browser/interactiveSessionListRenderer": {
+ "interactiveSession": "Sessione interattiva"
+ },
+ "vs/workbench/contrib/interactiveSession/browser/interactiveSessionWidget": {
+ "clear": "Cancella la sessione"
+ },
+ "vs/workbench/contrib/interactiveSession/common/interactiveSessionColors": {
+ "interactive.requestBackground": "Colore di sfondo di una richiesta interattiva.",
+ "interactive.requestBorder": "Colore bordo di una richiesta interattiva."
+ },
+ "vs/workbench/contrib/interactiveSession/common/interactiveSessionContextKeys": {
+ "hasInteractiveSessionProvider": "True quando è stato registrato un provider di sessioni interattive.",
+ "inInteractiveInput": "True quando lo stato attivo è nell'input interattivo; in caso contrario, false.",
+ "inInteractiveSession": "True quando lo stato attivo è nel widget della sessione interattiva; in caso contrario è false.",
+ "interactiveInputHasText": "True quando l'input interattivo contiene testo.",
+ "interactiveSessionRequestInProgress": "True quando la richiesta corrente è ancora in corso.",
+ "interactiveSessionResponseHasProviderId": "True quando il provider ha assegnato un ID a questa risposta.",
+ "interactiveSessionResponseVote": "Quando la risposta è stata approvata, è impostata su 'up'. Quando viene espresso un voto contrario, è impostato su 'down'. In caso contrario, è una stringa vuota."
+ },
+ "vs/workbench/contrib/interactiveSession/common/interactiveSessionServiceImpl": {
+ "emptyResponse": "Il provider ha restituito una risposta Null"
+ },
+ "vs/workbench/contrib/interactiveSession/common/interactiveSessionViewModel": {
+ "thinking": "Elaborazione in corso"
+ },
+ "vs/workbench/contrib/issue/browser/baseIssueReporterService": {
+ "acknowledge": "Conferma riconoscimento versione",
+ "bugDescription": "Indicare i passaggi necessari per riprodurre il problema in modo affidabile. Includere i risultati effettivi e quelli previsti. È supportato il linguaggio Markdown per GitHub. Sarà possibile modificare il problema e aggiungere screenshot quando verrà visualizzato in anteprima in GitHub.",
+ "bugReporter": "Report sui bug",
+ "closed": "Chiuso",
+ "create": "Crea in GitHub",
+ "createInternally": "Crea internamente",
+ "createOnGitHub": "Crea in GitHub",
+ "description": "Descrizione",
+ "disabledExtensions": "Le estensioni sono disabilitate",
+ "elsewhereDescription": "L'estensione '{0}' preferisce usare un Reporter di problemi esterno. Per visualizzare l'esperienza di segnalazione dei problemi, fare clic sul pulsante seguente.",
+ "extension": "Estensione di VS Code",
+ "extensionPlaceholder": "Ad esempio, Testo alternativo mancante nell'immagine leggimi dell'estensione",
+ "featureRequest": "Richiesta di funzionalità",
+ "featureRequestDescription": "Descrivere la funzionalità desiderata. È supportato il linguaggio Markdown per GitHub. Sarà possibile modificare il problema e aggiungere screenshot quando verrà visualizzato in anteprima in GitHub.",
+ "handlesIssuesElsewhere": "Questa estensione gestisce i problemi all'esterno di VS Code",
+ "hide": "nascondi",
+ "internalPreviewMessage": "Se i log di debug di Copilot contengono informazioni riservate:",
+ "marketplace": "Marketplace estensioni",
+ "marketplacePlaceholder": "Ad esempio, non è possibile disabilitare l'estensione installata",
+ "open": "Apri",
+ "openIssueReporter": "Aprire Reporter",
+ "pasteData": "I dati necessari sono stati scritti negli appunti perché erano eccessivi per l'invio. Incollarli.",
+ "performanceIssue": "Problema di prestazioni (blocco, rallentamento, arresto anomalo)",
+ "performanceIssueDesciption": "Quando si è verificato questo problema di prestazioni? All'avvio o dopo una serie specifiche di azioni? È supportato il linguaggio Markdown per GitHub. Sarà possibile modificare il problema e aggiungere screenshot quando verrà visualizzato in anteprima in GitHub.",
+ "preview": "Anteprima in GitHub",
+ "previewOnGitHub": "Anteprima in GitHub",
+ "privateCreate": "Crea internamente",
+ "saveExtensionData": "Salva dati estensione",
+ "selectExtension": "Selezionare l'estensione",
+ "selectSource": "Selezionare l'origine",
+ "show": "mostra",
+ "similarIssues": "Problemi simili",
+ "stepsToReproduce": "Passaggi da riprodurre",
+ "undefinedPlaceholder": "Immettere un titolo",
+ "unknown": "Sconosciuto",
+ "vscode": "Visual Studio Code",
+ "vscodePlaceholder": "Ad esempio, in Workbench non è presente il pannello relativo ai problemi"
+ },
+ "vs/workbench/contrib/issue/browser/issue.contribution": {
+ "statusUnsupported": "L'argomento --status non è ancora supportato nei browser."
+ },
+ "vs/workbench/contrib/issue/browser/issueFormService": {
+ "cancel": "Annulla",
+ "confirmCloseIssueReporter": "L'input non verrà salvato. Chiudere questa finestra?",
+ "issueReporterWriteToClipboard": "I dati sono eccessivi per inviarli direttamente a GitHub. Verranno quindi copiati negli Appunti. Incollarli nella pagina relativa al problema visualizzata in GitHub.",
+ "ok": "&&OK",
+ "yes": "&&Sì"
+ },
+ "vs/workbench/contrib/issue/browser/issueQuickAccess": {
+ "contributedIssuePage": "Pagina Estensione aperta",
+ "extensions": "Estensioni",
+ "reportExtensionMarketplace": "Marketplace delle estensioni"
+ },
+ "vs/workbench/contrib/issue/browser/issueReporterPage": {
+ "acknowledgements": "Confermo che la versione di VS Code non è stata aggiornata e questo problema potrebbe essere chiuso.",
+ "chooseExtension": "Estensione",
+ "completeInEnglish": "Completare il modulo in lingua inglese.",
+ "descriptionEmptyValidation": "La descrizione è obbligatoria.",
+ "descriptionTooShortValidation": "Fornire una descrizione più lunga.",
+ "details": "Immettere i dettagli.",
+ "disableExtensions": "disabilitando tutte le estensioni e ricaricando la finestra",
+ "disableExtensionsLabelText": "Provare a riprodurre il problema dopo {0}. Se il problema si verifica solo quando le estensioni sono attive, è probabilmente un problema legato ad un'estensione.",
+ "downloadExtensionData": "Scarica i dati dell'estensione",
+ "extensionData": "L'estensione non contiene dati aggiuntivi da includere.",
+ "extensionWithNoBugsUrl": "Lo strumento di segnalazione problemi non riesce a creare problemi per questa estensione, perché non specifica un URL per la segnalazione dei problemi. Vedere la pagina relativa a questa estensione nel marketplace per verificare se sono disponibili altre istruzioni.",
+ "extensionWithNonstandardBugsUrl": "Lo strumento di segnalazione problemi non riesce a creare problemi per questa estensione. Per segnalare un problema, visitare {0}.",
+ "issueSourceEmptyValidation": "L'origine del problema è obbligatoria.",
+ "issueSourceLabel": "Per",
+ "issueTitleLabel": "Titolo",
+ "issueTitleRequired": "Immettere un titolo.",
+ "issueTypeLabel": "Questo è un",
+ "reviewGuidanceLabel": "Prima di segnalare un problema qui, rivedere le indicazioni fornite . Completare il modulo in lingua inglese.",
+ "sendExperiments": "Includi informazioni sull'esperimento A/B",
+ "sendExtensionData": "Includi altre informazioni sull'estensione",
+ "sendExtensions": "Includi le estensioni abilitate",
+ "sendProcessInfo": "Includi i processi attualmente in esecuzione",
+ "sendSystemInfo": "Includi informazioni sul sistema",
+ "sendWorkspaceInfo": "Includi i metadati dell'area di lavoro",
+ "show": "mostra",
+ "titleEmptyValidation": "Il titolo è obbligatorio.",
+ "titleLengthValidation": "Il titolo è troppo lungo."
+ },
+ "vs/workbench/contrib/issue/browser/issueReporterService": {
+ "undefinedPlaceholder": "Immettere un titolo"
+ },
+ "vs/workbench/contrib/issue/browser/issueTroubleshoot": {
+ "I cannot reproduce": "Non è possibile riprodurre",
+ "Stop": "Arresta",
+ "This is Bad": "È possibile riprodurre",
+ "ask to download insiders": "Prova a scaricare e riprodurre il problema in {0} Insiders.",
+ "ask to reproduce issue": "Prova a riprodurre il problema in {0} Insiders e conferma se il problema esiste.",
+ "bad": "Posso riprodurre",
+ "detail.start": "La risoluzione dei problemi è un processo che consente di identificare la causa di un problema. La causa di un problema può essere una configurazione errata a causa di un'estensione o essere {0} stesso.\r\n\r\nDurante il processo, la finestra viene ricaricata ripetutamente. Ogni volta è necessario confermare se il problema persiste.",
+ "download insiders": "Scarica {0} Insiders",
+ "empty.profile": "La risoluzione dei problemi è attiva e ha reimpostato temporaneamente le configurazioni sulle impostazioni predefinite. Verificare se è ancora possibile riprodurre il problema e continuare selezionando una di queste opzioni.",
+ "good": "Non posso riprodurre",
+ "issue is in core": "La risoluzione dei problemi ha rilevato che il problema riguarda {0}.",
+ "issue is with configuration": "La risoluzione dei problemi ha rilevato che il problema è causato dalle configurazioni. Segnalare il problema esportando le configurazioni usando il comando \"Export Profile\" e condividere il file nel report sul problema.",
+ "msg": "&&Risoluzione dei problemi",
+ "profile.extensions.disabled": "La risoluzione dei problemi è attiva e ha temporaneamente disabilitato tutte le estensioni installate. Verificare se è ancora possibile riprodurre il problema e continuare selezionando una di queste opzioni.",
+ "report anyway": "Segnala comunque il problema",
+ "stop": "Arresta",
+ "title.stop": "Arresta Risoluzione dei problemi",
+ "troubleshoot issue": "Risoluzione dei problemi",
+ "troubleshootIssue": "Risoluzione dei problemi...",
+ "use insiders": "Ciò probabilmente significa che il problema è già stato risolto e sarà disponibile in una versione futura. È possibile usare {0} Insiders in modo sicuro fino a quando non sarà disponibile una nuova versione stabile."
+ },
+ "vs/workbench/contrib/issue/common/issue.contribution": {
+ "miReportIssue": "&&Segnala problema",
+ "reportIssueInEnglish": "Segnala problema..."
+ },
+ "vs/workbench/contrib/issue/electron-browser/issue.contribution": {
+ "openIssueReporter": "Apri segnalazione problemi",
+ "reportPerformanceIssue": "Segnala problema di prestazioni...",
+ "tasksQuickAccessPlaceholder": "Digitare il nome di un'estensione per la segnalazione."
+ },
+ "vs/workbench/contrib/issue/electron-browser/issueReporterService": {
+ "noCurrentExperiments": "Al momento non sono presenti esperimenti.",
+ "pasteData": "I dati necessari sono stati scritti negli appunti perché erano eccessivi per l'invio. Incollarli.",
+ "saveExtensionData": "Salva i dati dell'estensione",
+ "undefinedPlaceholder": "Immettere un titolo",
+ "updateAvailable": "È disponibile una nuova versione di {0}."
+ },
+ "vs/workbench/contrib/keybindings/browser/keybindings.contribution": {
+ "toggleKeybindingsLog": "Attiva/Disattiva risoluzione dei problemi per tasti di scelta rapida"
+ },
+ "vs/workbench/contrib/languageDetection/browser/languageDetection.contribution": {
+ "detectlang": "Rilevare la lingua dal contenuto",
+ "langDetection.aria": "Cambia in lingua rilevata: {0}",
+ "langDetection.name": "Rilevamento lingua",
"noDetection": "Non è possibile rilevare la lingua dell'editor",
"status.autoDetectLanguage": "Accetta lingua rilevata: {0}"
},
- "vs/workbench/contrib/languageStatus/browser/languageStatus.contribution": {
+ "vs/workbench/contrib/languageStatus/browser/languageStatus": {
"aria.1": "{0}, {1}",
"aria.2": "{0}",
- "cat": "Visualizzazione",
"langStatus.aria": "Stato linguaggio dell'editor: {0}",
"langStatus.name": "Stato linguaggio dell'editor",
"name.pattern": "{0} (Stato linguaggio)",
@@ -6580,6 +10807,27 @@
"reset": "Reimposta contatore interazione stato lingua",
"unpin": "Rimuovi dalla barra di stato"
},
+ "vs/workbench/contrib/limitIndicator/browser/limitIndicator.contribution": {
+ "colorDecoratorsStatusItem.name": "Stato elementi Decorator a colori",
+ "colorDecoratorsStatusItem.source": "Elementi Decorator a colori",
+ "foldingRangesStatusItem.name": "Stato riduzione",
+ "foldingRangesStatusItem.source": "Riduzione",
+ "status.button.configure": "Configura",
+ "status.limited.details": "solo {0} visualizzati per motivi di prestazioni",
+ "status.limitedColorDecorators.short": "Decoratori a colori",
+ "status.limitedFoldingRanges.short": "Intervalli di riduzione"
+ },
+ "vs/workbench/contrib/list/browser/listResizeColumnAction": {
+ "list": "Elenco",
+ "list.resizeColumn": "Ridimensiona colonna"
+ },
+ "vs/workbench/contrib/list/browser/tableColumnResizeQuickPick": {
+ "table.column.resizeValue.invalidRange": "Immettere un numero maggiore di 0 e minore o uguale a 100.",
+ "table.column.resizeValue.invalidType": "Digitare un numero intero.",
+ "table.column.resizeValue.placeHolder": "Ad esempio, 20, 60, 100...",
+ "table.column.resizeValue.prompt": "Immettere una larghezza in percentuale per la colonna '{0}'.",
+ "table.column.selection": "Selezionare la colonna da ridimensionare, digitare per filtrare."
+ },
"vs/workbench/contrib/localHistory/browser/localHistory": {
"localHistoryIcon": "Icona per una voce della cronologia locale nella visualizzazione sequenza temporale.",
"localHistoryRestore": "Icona per il ripristino dei contenuti di una voce della cronologia locale."
@@ -6606,6 +10854,7 @@
"localHistory.rename": "Rinomina",
"localHistory.restore": "Ripristina contenuti",
"localHistory.restoreViaPicker": "Trova voce da ripristinare",
+ "localHistory.restoreViaPickerMenu": "Cronologia locale: trovare voce da ripristinare...",
"localHistory.selectForCompare": "Seleziona per il confronto",
"localHistoryCompareToFileEditorLabel": "{0} ({1} • {2}) ↔ {3}",
"localHistoryCompareToPreviousEditorLabel": "{0} ({1} • {2}) ↔ {3} ({4} • {5})",
@@ -6621,34 +10870,16 @@
"vs/workbench/contrib/localHistory/browser/localHistoryTimeline": {
"localHistory": "Cronologia locale"
},
- "vs/workbench/contrib/localHistory/electron-sandbox/localHistoryCommands": {
+ "vs/workbench/contrib/localHistory/electron-browser/localHistoryCommands": {
"openContainer": "Apri cartella superiore",
"revealInMac": "Visualizza in Finder",
"revealInWindows": "Visualizza in Esplora file"
},
- "vs/workbench/contrib/localization/browser/localizationsActions": {
- "available": "Disponibile",
- "chooseLocale": "Seleziona lingua visualizzata",
- "clearDisplayLanguage": "Cancella preferenza lingua di visualizzazione",
- "configureLocale": "Configura la lingua visualizzata",
- "installed": "Installato"
- },
- "vs/workbench/contrib/localization/electron-sandbox/localeService": {
- "argvInvalid": "Impossibile scrivere la lingua di visualizzazione. Aprire le impostazioni di runtime, correggere errori/avvisi e riprovare.",
- "installing": "Installazione del supporto del linguaggio {0}...",
- "openArgv": "Apri impostazioni di runtime",
- "restart": "&&Riavvia",
- "restartDisplayLanguageDetail": "Fare clic sul pulsante per riavviare {0} e cambiare la lingua visualizzata in {1}.",
- "restartDisplayLanguageMessage": "Per cambiare la lingua di visualizzazione, è necessario riavviare {0}"
- },
- "vs/workbench/contrib/localization/electron-sandbox/localization.contribution": {
- "activateLanguagePack": "Per poter usare VS Code in {0}, è necessario riavviare l'applicazione.",
- "changeAndRestart": "Cambia lingua e riavvia",
- "doNotChangeAndRestart": "Non cambiare lingua",
- "doNotRestart": "Non riavviare",
- "neverAgain": "Non visualizzare più questo messaggio",
- "restart": "Riavvia",
- "updateLocale": "Cambiare la lingua dell'interfaccia utente di VS Code in {0} e riavviare?",
+ "vs/workbench/contrib/localization/common/localization.contribution": {
+ "language id": "ID lingua",
+ "localizations": "Language Pack",
+ "localizations language name": "Nome del linguaggio",
+ "localizations localized language name": "Nome della lingua (localizzato)",
"vscode.extension.contributes.localizations": "Aggiunge come contributo le localizzazioni all'editor",
"vscode.extension.contributes.localizations.languageId": "Id della lingua in cui sono tradotte le stringhe visualizzate.",
"vscode.extension.contributes.localizations.languageName": "Nome della lingua in inglese.",
@@ -6658,81 +10889,77 @@
"vscode.extension.contributes.localizations.translations.id.pattern": "L'ID deve essere 'vscode' o essere nel formato 'publisherId.extensionName' per tradurre rispettivamente VS Code o un'estensione.",
"vscode.extension.contributes.localizations.translations.path": "Percorso relativo di un file che contiene le traduzioni per la lingua."
},
- "vs/workbench/contrib/localization/electron-sandbox/minimalTranslations": {
- "installAndRestart": "Installa e riavvia",
- "installAndRestartMessage": "Consente di installare il Language Pack per impostare la lingua visualizzata su {0}.",
- "searchMarketplace": "Cerca nel Marketplace",
- "showLanguagePackExtensions": "Consente di cercare i Language Pack nel Marketplace per impostare la lingua visualizzata su {0}."
+ "vs/workbench/contrib/localization/common/localizationsActions": {
+ "available": "Disponibile",
+ "chooseLocale": "Seleziona lingua visualizzata",
+ "clearDisplayLanguage": "Cancella preferenza lingua di visualizzazione",
+ "configureLocale": "Configura la lingua visualizzata",
+ "configureLocaleDescription": "Modifica le impostazioni locali del VS Code in base ai Language Pack installati. Le lingue comuni includono francese, cinese, spagnolo, giapponese, tedesco, coreano e altro ancora.",
+ "installed": "Installato",
+ "moreInfo": "Altre info"
},
- "vs/workbench/contrib/localizations/browser/localizations.contribution": {
- "activateLanguagePack": "Per poter usare VS Code in {0}, è necessario riavviare l'applicazione.",
+ "vs/workbench/contrib/localization/electron-browser/localization.contribution": {
"changeAndRestart": "Cambia lingua e riavvia",
- "doNotChangeAndRestart": "Non cambiare lingua",
- "doNotRestart": "Non riavviare",
- "neverAgain": "Non visualizzare più questo messaggio",
- "restart": "Riavvia",
- "updateLocale": "Cambiare la lingua dell'interfaccia utente di VS Code in {0} e riavviare?",
- "vscode.extension.contributes.localizations": "Aggiunge come contributo le localizzazioni all'editor",
- "vscode.extension.contributes.localizations.languageId": "Id della lingua in cui sono tradotte le stringhe visualizzate.",
- "vscode.extension.contributes.localizations.languageName": "Nome della lingua in inglese.",
- "vscode.extension.contributes.localizations.languageNameLocalized": "Nome della lingua nella lingua stessa.",
- "vscode.extension.contributes.localizations.translations": "Elenco delle traduzioni associate alla lingua.",
- "vscode.extension.contributes.localizations.translations.id": "ID di VS Code o dell'estensione cui si riferisce questa traduzione. L'ID di VS Code è sempre 'vscode' e quello di un'estensione deve essere nel formato 'publisherId.extensionName'.",
- "vscode.extension.contributes.localizations.translations.id.pattern": "L'ID deve essere 'vscode' o essere nel formato 'publisherId.extensionName' per tradurre rispettivamente VS Code o un'estensione.",
- "vscode.extension.contributes.localizations.translations.path": "Percorso relativo di un file che contiene le traduzioni per la lingua."
- },
- "vs/workbench/contrib/localizations/browser/localizationsActions": {
- "chooseDisplayLanguage": "Seleziona lingua visualizzata",
- "configureLocale": "Configura la lingua visualizzata",
- "installAdditionalLanguages": "Installazione di lingue aggiuntive in corso...",
- "relaunchDisplayLanguageDetail": "Fare clic sul pulsante di riavvio per riavviare {0} e cambiare la lingua visualizzata.",
- "relaunchDisplayLanguageMessage": "Per rendere effettiva la modifica relativa alla lingua visualizzata, è necessario riavviare il sistema.",
- "restart": "&&Riavvia"
+ "neverAgain": "Non visualizzare più",
+ "updateLocale": "Si desidera cambiare la lingua dell'interfaccia utente di {0} in {1} e riavviare?"
},
- "vs/workbench/contrib/localizations/browser/minimalTranslations": {
+ "vs/workbench/contrib/localization/electron-browser/minimalTranslations": {
"installAndRestart": "Installa e riavvia",
"installAndRestartMessage": "Consente di installare il Language Pack per impostare la lingua visualizzata su {0}.",
"searchMarketplace": "Cerca nel Marketplace",
"showLanguagePackExtensions": "Consente di cercare i Language Pack nel Marketplace per impostare la lingua visualizzata su {0}."
},
"vs/workbench/contrib/logs/common/logs.contribution": {
- "editSessionsLog": "Modifica sessioni",
- "rendererLog": "Finestra",
- "show window log": "Mostra log della finestra",
- "telemetryLog": "Telemetria",
- "userDataSyncLog": "Sincronizzazione impostazioni"
+ "remote name": "{0} (remoto)",
+ "setDefaultLogLevel": "Imposta livello di log predefinito",
+ "show window log": "Mostra log della finestra"
},
"vs/workbench/contrib/logs/common/logsActions": {
- "critical": "Errori critici",
+ "all": "Tutto",
"current": "Corrente",
- "debug": "Debug",
"default": "Predefinito",
- "default and current": "Predefinito e corrente",
- "err": "Errore",
- "info": "Info",
+ "extensionLogs": "Log estensioni",
"log placeholder": "Seleziona file di log",
- "off": "OFF",
+ "loggers": "Log",
"openSessionLogFile": "Apri file di log della finestra (sessione)...",
+ "resetLogLevel": "Imposta come livello di log predefinito",
"selectLogLevel": "Seleziona il livello log",
+ "selectLogLevelFor": " {0}: seleziona il livello di log",
+ "selectlog": "Imposta il livello di log",
"sessions placeholder": "Seleziona sessione",
- "setLogLevel": "Imposta livello log...",
- "trace": "Analisi",
- "warn": "Avviso"
- },
- "vs/workbench/contrib/logs/electron-sandbox/logs.contribution": {
- "mainLog": "Principale",
- "sharedLog": "Condiviso"
+ "setLogLevel": "Imposta livello log..."
},
- "vs/workbench/contrib/logs/electron-sandbox/logsActions": {
+ "vs/workbench/contrib/logs/electron-browser/logsActions": {
"openExtensionLogsFolder": "Apri cartella dei log dell'estensione",
"openLogsFolder": "Apri cartella dei log"
},
+ "vs/workbench/contrib/markdown/browser/markdownSettingRenderer": {
+ "alreadysetBoolFalse": "\"{0}: {1}\" è già disabilitato",
+ "alreadysetBoolTrue": "\"{0}: {1}\" è già abilitato",
+ "alreadysetNum": "\"{0}: {1}\" è già impostato su {2}",
+ "alreadysetString": "\"{0}: {1}\" è già impostato su \"{2}\"",
+ "changeSettingTitle": "Visualizza o modifica l'impostazione",
+ "copySettingId": "Copia ID impostazione",
+ "falseMessage": "Disabilita \"{0}: {1}\"",
+ "numberValue": "Imposta \"{0}: {1}\" su {2}",
+ "restorePreviousValue": "Ripristina valore di \"{0}: {1}\"",
+ "stringValue": "Imposta \"{0}: {1}\" su \"{2}\"",
+ "trueMessage": "Abilita \"{0}: {1}\"",
+ "viewInSettings": "Visualizza in Impostazioni",
+ "viewInSettingsDetailed": "Visualizza \"{0}: {1}\" in Impostazioni"
+ },
+ "vs/workbench/contrib/markdown/common/markdownColors": {
+ "markdownAlertCautionForeground": "Colore primo piano per gli avvisi di attenzione in Markdown.",
+ "markdownAlertImportantForeground": "Colore primo piano per gli avvisi importanti in Markdown.",
+ "markdownAlertNoteForeground": "Colore primo piano per gli avvisi di nota in Markdown.",
+ "markdownAlertTipForeground": "Colore primo piano per gli avvisi di suggerimento in Markdown.",
+ "markdownAlertWarningForeground": "Colore primo piano per gli avvisi di avvertimento in Markdown."
+ },
"vs/workbench/contrib/markers/browser/markers.contribution": {
"clearFiltersText": "Cancella il testo dei filtri",
"collapseAll": "Comprimi tutto",
"copyMarker": "Copia",
"copyMessage": "Copia messaggio ",
- "filter": "Filtro",
"focusProblemsFilter": "Stato attivo su filtro problemi",
"focusProblemsList": "Stato attivo su visualizzazione problemi",
"manyProblems": "Più di 10.000",
@@ -6740,19 +10967,39 @@
"miMarker": "&&Problemi",
"noProblems": "Nessun problema",
"problems": "Problemi",
+ "show active file": "Mostra solo file attivo",
+ "show errors": "Mostra errori",
+ "show excluded files": "Mostra file esclusi",
+ "show infos": "Mostra informazioni",
"show multiline": "Mostra il messaggio su più righe",
"show singleline": "Mostra il messaggio su un'unica riga",
+ "show warnings": "Mostra avvisi",
"status.problems": "Problemi",
+ "status.problemsVisibility": "Visibilità dei problemi",
+ "status.problemsVisibilityOff": "I problemi sono stati disattivati. Fare clic per aprire le impostazioni.",
+ "toggleActiveFileDescription": "Nella visualizzazione dei problemi, mostrare o nascondere i problemi (errori, avvisi, informazioni) solo del file attivo.",
+ "toggleErrorsDescription": "Mostrare o nascondere gli errori nella visualizzazione dei problemi.",
+ "toggleExcludedFilesDescription": "Mostrare o nascondere i file esclusi nella visualizzazione dei problemi.",
+ "toggleInfosDescription": "Mostrare o nascondere le informazioni nella visualizzazione dei problemi.",
+ "toggleWarningsDescription": "Mostrare o nascondere gli avvisi nella visualizzazione dei problemi.",
"totalErrors": "Errori: {0}",
"totalInfos": "Messaggi informativi: {0}",
"totalProblems": "Totale {0} problemi",
"totalWarnings": "Avvisi: {0}",
"viewAsTable": "Visualizza come tabella",
- "viewAsTree": "Visualizza come albero"
+ "viewAsTableDescription": "Mostrare la visualizzazione dei problemi come tabella.",
+ "viewAsTree": "Visualizza come albero",
+ "viewAsTreeDescription": "Mostrare la visualizzazione dei problemi come struttura ad albero."
+ },
+ "vs/workbench/contrib/markers/browser/markersChatContext": {
+ "chatContext.diagnstic": "Problemi...",
+ "chatContext.diagnstic.placeholder": "Seleziona un problema da allegare",
+ "markers.panel.allErrors": "Tutti i problemi",
+ "markers.panel.at.ln.col.number": "[Riga {0}, colonna {1}]"
},
"vs/workbench/contrib/markers/browser/markersFileDecorations": {
"label": "Problemi",
- "markers.showOnFile": "Mostra errori e avvisi relativi a file e cartella.",
+ "markers.showOnFile": "Mostrare errori e avvisi per file e cartella. Sovrascritto da {0} quando è disattivato.",
"tooltip.1": "1 problema in questo file ",
"tooltip.N": "{0} problemi in questo file"
},
@@ -6772,10 +11019,7 @@
"vs/workbench/contrib/markers/browser/markersView": {
"No problems filtered": "Visualizza {0} problemi",
"clearFilter": "Rimuovi i filtri",
- "problems filtered": "Visualizza il problema {0} di {1}"
- },
- "vs/workbench/contrib/markers/browser/markersViewActions": {
- "filterIcon": "Icona per la configurazione del filtro nella visualizzazione Marcatori.",
+ "problems filtered": "Visualizza il problema {0} di {1}",
"showing filtered problems": "Visualizzazione di {0} elementi su {1}"
},
"vs/workbench/contrib/markers/browser/messages": {
@@ -6813,91 +11057,628 @@
"problems.panel.configuration.showCurrentInStatus": "Se è abilitato, mostra il problema corrente nella barra di stato.",
"problems.panel.configuration.title": "Visualizzazione Problemi",
"problems.panel.configuration.viewMode": "Controlla la modalità di visualizzazione predefinita della visualizzazione Problemi.",
- "problems.tree.aria.label.error.marker": "Errore generato da {0}: {1} a riga {2} e carattere {3}.{4}",
+ "problems.tree.aria.label.error.marker": "Errore: {0} a riga {1} e carattere {2}.{3} generato da {4}",
"problems.tree.aria.label.error.marker.nosource": "Errore: {0} a riga {1} e carattere {2}.{3}",
- "problems.tree.aria.label.info.marker": "Messaggio informativo generato da {0}: {1} a riga {2} e carattere {3}.{4}",
+ "problems.tree.aria.label.info.marker": "Messaggio informativo: {0} a riga {1} e carattere {2}.{3} generato da {4}",
"problems.tree.aria.label.info.marker.nosource": "Messaggio informativo: {0} a riga {1} e carattere {2}.{3}",
- "problems.tree.aria.label.marker": "Problema generato da {0}: {1} a riga {2} e carattere {3}.{4}",
+ "problems.tree.aria.label.marker": "Problema: {0} a riga {1} e carattere {2}.{3} generato da {4}",
"problems.tree.aria.label.marker.nosource": "Problema: {0} a riga {1} e carattere {2}.{3}",
"problems.tree.aria.label.marker.relatedInformation": " Questo problema include riferimenti a {0} percorsi.",
"problems.tree.aria.label.relatedinfo.message": "{0} a riga {1} e carattere {2} in {3}",
"problems.tree.aria.label.resource": "{0} problemi nel file {1} della cartella {2}",
- "problems.tree.aria.label.warning.marker": "Avviso generato da {0}: {1} a riga {2} e carattere {3}.{4}",
+ "problems.tree.aria.label.warning.marker": "Avviso: {0} a riga {1} e carattere {2}.{3} generato da {4}",
"problems.tree.aria.label.warning.marker.nosource": "Avviso: {0} a riga {1} e carattere {2}.{3}",
"problems.view.focus.label": "Sposta lo stato attivo su problemi (Errori, Avvisi, Informazioni)",
"problems.view.toggle.label": "Attiva/Disattiva Problemi (Errori, Avvisi, Informazioni)"
},
+ "vs/workbench/contrib/mcp/browser/mcp.contribution": {
+ "mcp.quickaccess.add": "Risorse del server MCP",
+ "mcp.quickaccess.placeholder": "Filtra in base a una risorsa MCP",
+ "mcpServer": "Server MCP"
+ },
+ "vs/workbench/contrib/mcp/browser/mcpAddContextContribution": {
+ "mcp.addContext": "Risorse MCP...",
+ "mcp.addContext.placeholder": "Seleziona risorsa MCP..."
+ },
+ "vs/workbench/contrib/mcp/browser/mcpCommands": {
+ "mcp.actions.resources": "Risorse",
+ "mcp.actions.sampling": "Campionamento",
+ "mcp.actions.status": "Stato",
+ "mcp.addConfiguration": "Aggiungi server...",
+ "mcp.addConfiguration.description": "Installa un nuovo MCP (Model Context Protocol) nelle impostazioni mcp.json",
+ "mcp.addServer": "Aggiungi server",
+ "mcp.addServer.description": "Aggiungere una nuova configurazione del server",
+ "mcp.autoStart": "Avvio automatico dei server MCP quando si invia un messaggio di chat",
+ "mcp.browseResources": "Sfoglia risorse...",
+ "mcp.command.browse": "Server MCP",
+ "mcp.command.browse.mcp": "Sfoglia server MCP",
+ "mcp.command.browse.tooltip": "Sfoglia server MCP",
+ "mcp.command.openRemoteUserMcp": "Apri configurazione per l'utente remoto",
+ "mcp.command.openUserMcp": "Apri configurazione per l'utente",
+ "mcp.command.openWorkspaceFolderMcp": "Apri configurazione MCP per la cartella dell'area di lavoro",
+ "mcp.command.openWorkspaceMcp": "Apri configurazione MCP per l'area di lavoro",
+ "mcp.command.restartServer": "Riavvia server",
+ "mcp.command.show.installed": "Mostra server installati",
+ "mcp.command.showConfiguration": "Mostra configurazione",
+ "mcp.command.showOutput": "Mostra output",
+ "mcp.command.startServer": "Avvia il server",
+ "mcp.command.stopServer": "Arresta il server",
+ "mcp.config": "Mostra configurazione",
+ "mcp.configAccess": "Configura l'accesso al modello",
+ "mcp.configureSamplingModels": "Configura modello di campionamento",
+ "mcp.configureSamplingModels.ph": "Selezionare i modelli a cui {0} può accedere tramite il campionamento MCP",
+ "mcp.disconnect": "Disconnetti account",
+ "mcp.editStoredInput": "Modifica input archiviato",
+ "mcp.err.md.multi": "Non è possibile avviare più server MCP:\r\n\r\n{0}",
+ "mcp.err.md.single": "Non è possibile avviare il server {0} MCP.",
+ "mcp.list": "Elenca i server",
+ "mcp.newTools": "Nuovi strumenti disponibili ({0})",
+ "mcp.newTools.md.multi": "I server MCP sono stati aggiornati e potrebbero avere nuovi strumenti disponibili:\r\n\r\n{0}",
+ "mcp.newTools.md.single": "Il server {0} MCP è stato aggiornato e potrebbe avere nuovi strumenti disponibili.",
+ "mcp.options": "Opzioni server",
+ "mcp.resetCachedTools": "Reimposta strumenti memorizzati nella cache",
+ "mcp.resetTrust": "Reimposta attendibilità",
+ "mcp.resources": "Sfoglia risorse",
+ "mcp.restart": "Riavvia server",
+ "mcp.samplingLog": "Mostra richieste di campionamento",
+ "mcp.samplingLog.description": "Mostra le richieste di campionamento per questo server",
+ "mcp.samplingLog.title": "Campionamento MCP: {0}",
+ "mcp.selectAction": "Selezionare un'azione per '{0}'",
+ "mcp.selectServer": "Seleziona un server MCP",
+ "mcp.servers": "Server MCP",
+ "mcp.showOutput": "Mostra output",
+ "mcp.showOutput.description": "Imposta i modelli che il server può utilizzare tramite il campionamento MCP",
+ "mcp.signOut": "Esci",
+ "mcp.skipCurrentAutostart": "Ignora avvio automatico corrente",
+ "mcp.start": "Avvia server",
+ "mcp.startPromptingServer": "Avvia server di richiesta",
+ "mcp.stop": "Arresta server",
+ "mcp.toolError": "Errore durante il caricamento di {0} strumento/i",
+ "mcp.toolRefresh": "Individuazione degli strumenti..."
+ },
+ "vs/workbench/contrib/mcp/browser/mcpCommandsAddConfiguration": {
+ "allow": "Consenti",
+ "cancel": "Annulla",
+ "install.error": "Errore durante l'installazione del server MCP {0}: {1}",
+ "install.newName": "Immetti il nuovo nome",
+ "install.rename": "Rinomina \"{0}\"",
+ "install.show": "Mostra configurazione",
+ "install.start": "Installa il server",
+ "install.title": "Installa il server MCP {0}",
+ "mcp.command.placeholder": "Comando da eseguire (con argomenti facoltativi)",
+ "mcp.command.title": "Immetti comando",
+ "mcp.confirmPublish": "Installare {0}{1} da {2}?",
+ "mcp.docker.placeholder": "Nome immagine (ad esempio, mcp/imagename)",
+ "mcp.docker.title": "Immetto nome immagine Docker",
+ "mcp.error.openHelpUri": "Apri l'URL della guida",
+ "mcp.error.retry": "Prova con un pacchetto diverso",
+ "mcp.loading.title": "Caricamento dettagli pacchetto...",
+ "mcp.npm.placeholder": "Nome pacchetto (ad esempio @org/package)",
+ "mcp.npm.title": "Immetti il nome pacchetto NPM",
+ "mcp.nuget.placeholder": "Nome pacchetto (ad esempio Package.Name)",
+ "mcp.nuget.title": "Immetti il nome del pacchetto NuGet",
+ "mcp.pip.placeholder": "Nome pacchetto (ad esempio package-name)",
+ "mcp.pip.title": "Immetti il nome del pacchetto PIP",
+ "mcp.serverId.placeholder": "Identificatore univoco per questo server",
+ "mcp.serverId.title": "Immetti l'ID server",
+ "mcp.serverType.command": "Comando (stdio)",
+ "mcp.serverType.command.description": "Esegui un comando locale che implementa il protocollo MCP",
+ "mcp.serverType.copilot": "Assistito da modello",
+ "mcp.serverType.docker": "Immagine Docker",
+ "mcp.serverType.docker.description": "Installa da un'immagine Docker",
+ "mcp.serverType.http": "HTTP (HTTP o eventi inviati dal server)",
+ "mcp.serverType.http.description": "Connetti a un server HTTP remoto che implementa il protocollo MCP",
+ "mcp.serverType.manual": "Installazione manuale",
+ "mcp.serverType.npm": "Pacchetto NPM",
+ "mcp.serverType.npm.description": "Installa da un nome pacchetto NPM",
+ "mcp.serverType.nuget": "Pacchetto NuGet",
+ "mcp.serverType.nuget.description": "Installa da un nome pacchetto NuGet",
+ "mcp.serverType.pip": "Pacchetto PIP",
+ "mcp.serverType.pip.description": "Installa da un nome pacchetto PIP",
+ "mcp.serverType.placeholder": "Scegli il tipo di server MCP da aggiungere",
+ "mcp.servers.browse": "Sfogliare i server MCP...",
+ "mcp.servers.discovery": "Aggiungi da un'altra applicazione...",
+ "mcp.target..remote.description": "Disponibile in questo computer remoto, eseguito in {0}",
+ "mcp.target.placeholder": "Selezionare il target della configurazione",
+ "mcp.target.remote": "Remoto",
+ "mcp.target.title": "Aggiungi server MCP",
+ "mcp.target.user": "Globale",
+ "mcp.target.user.description": "Disponibile in tutte le aree di lavoro, eseguito in locale",
+ "mcp.target.workspace": "Area di lavoro",
+ "mcp.target.workspace.description": "Disponibile in questa area di lavoro, eseguito in locale",
+ "mcp.target.workspace.description.remote": "Disponibile in questa area di lavoro, eseguito in {0}",
+ "mcp.url.placeholder": "URL del server MCP (ad esempio http://localhost:3000)",
+ "mcp.url.title": "Immetti l'URL del server"
+ },
+ "vs/workbench/contrib/mcp/browser/mcpElicitationService": {
+ "mcp.elicit.accept": "Rispondi",
+ "mcp.elicit.cancel": "Annulla",
+ "mcp.elicit.enum.none": "Nessuno",
+ "mcp.elicit.enum.none.description": "Nessuna selezione",
+ "mcp.elicit.give": "Risposta",
+ "mcp.elicit.reject": "Annulla",
+ "mcp.elicit.source": "Server MCP ({0})",
+ "mcp.elicit.title": "Richiesta di input",
+ "mcp.elicit.url.instruction": "Aprire questo URL?",
+ "mcp.elicit.url.instruction2": "Si aprirà {0}",
+ "mcp.elicit.url.open": "Apri {0}",
+ "mcp.elicit.url.open2": "Apri URL",
+ "mcp.elicit.url.title": "Autorizzazione necessaria",
+ "mcp.elicit.useDefault": "Valore predefinito",
+ "mcp.elicit.validation.date": "Immettere valore di data (AAAA-MM-GG) valido",
+ "mcp.elicit.validation.dateTime": "Immettere valore di data-ora valido",
+ "mcp.elicit.validation.email": "Immettere un indirizzo di posta elettronica valido",
+ "mcp.elicit.validation.integer": "Immettere un numero intero valido",
+ "mcp.elicit.validation.maxLength": "Lunghezza massima è {0}",
+ "mcp.elicit.validation.maximum": "Il valore massimo è {0}",
+ "mcp.elicit.validation.minLength": "La lunghezza minima è {0}",
+ "mcp.elicit.validation.minimum": "Il valore minimo è {0}",
+ "mcp.elicit.validation.number": "Immettere un numero valido",
+ "mcp.elicit.validation.uri": "Immettere un URI valido",
+ "msg.subtitle": "{0} (Server MCP)",
+ "optional": "Facoltativo"
+ },
+ "vs/workbench/contrib/mcp/browser/mcpLanguageFeatures": {
+ "cancel": "Annulla",
+ "clear": "Cancella",
+ "clearAll": "Deseleziona tutto",
+ "edit": "Modifica",
+ "mcp.debug": "Debug",
+ "mcp.restart": "Riavvia",
+ "mcp.server.more": "Altro...",
+ "mcp.start": "Inizio",
+ "mcp.stop": "Arresta",
+ "mcp.variableNotFound": "La variabile '{0}' non è stata trovata. Intendevi ${{1}}?",
+ "server.error": "Errore",
+ "server.promptcount": "{0} richieste",
+ "server.running": "In esecuzione",
+ "server.starting": "Avvio",
+ "server.toolCount": "Strumenti {0}"
+ },
+ "vs/workbench/contrib/mcp/browser/mcpMigration": {
+ "mcp.migration.openRemoteConfig": "Apri configurazione MCP per l'utente remoto",
+ "mcp.migration.openUserConfig": "Apri configurazione MCP per l'utente",
+ "mcp.migration.remoteConfigFound": "I server MCP non devono più essere configurati nelle impostazioni utente remoto. Utilizzare invece la configurazione MCP dedicata.",
+ "mcp.migration.update": "Aggiorna adesso",
+ "mcp.migration.userConfigFound": "I server MCP non devono più essere configurati nelle impostazioni utente. Utilizzare invece la configurazione MCP dedicata."
+ },
+ "vs/workbench/contrib/mcp/browser/mcpPromptArgumentPick": {
+ "loading": "Caricamento in corso...",
+ "mcp.arg.activeFile": "File attivo",
+ "mcp.arg.activeFiles": "File attivo",
+ "mcp.arg.asCommand": "Esegui come comando",
+ "mcp.arg.asCommand.description": "Inserisce l'output del comando come argomento della richiesta",
+ "mcp.arg.asText": "Inserisci come testo",
+ "mcp.arg.files": "File",
+ "mcp.arg.required": "Questo argomento è obbligatorio",
+ "mcp.arg.selectedText": "Testo selezionato",
+ "mcp.arg.selectedText.multiLine": "{0} righe",
+ "mcp.arg.selectedText.singleLine": "riga {0}",
+ "mcp.arg.suggestions": "Suggerimenti",
+ "mcp.prompt.pick.title": "Valore per: {0}",
+ "mcp.terminal.name": "Terminale MCP",
+ "optional": "Facoltativo"
+ },
+ "vs/workbench/contrib/mcp/browser/mcpResourceQuickAccess": {
+ "goBack": "Torna indietro ↩",
+ "mcp.quickaccess.attach": "Allega alla chat",
+ "mcp.quickaccess.placeholder": "Cerca risorse",
+ "mcp.resource.template": "Modello di risorsa: {0}",
+ "mcp.resource.template.empty": "",
+ "mcp.resource.template.notFound": "Risorsa {0} non trovata.",
+ "mcp.resource.template.optional": "Facoltativo",
+ "mcp.resource.template.placeholder": "Valore per ${0} in {1}"
+ },
+ "vs/workbench/contrib/mcp/browser/mcpServerActions": {
+ "config": "Mostrare la configurazione",
+ "configJson": "Mostra configurazione (JSON)",
+ "install": "Installare",
+ "install in workspace folder": "Cartella dell'area di lavoro",
+ "installInRemote": "Installa (remoto)",
+ "installInRemoteLabel": "Installa in {0}",
+ "installInWorkspace": "Installa nell'area di lavoro",
+ "installing": "Installazione",
+ "manage": "Gestire",
+ "mcp.configAccess": "Configura accesso al modello",
+ "mcp.disconnect": "Disconnetti account",
+ "mcp.resources": "Esplora risorse",
+ "mcp.samplingLog": "Mostra richieste di campionamento",
+ "mcp.samplingLog.title": "Campionamento MCP: {0}",
+ "mcp.signOut": "Esci",
+ "mcp.target.title": "Scegli dove installare il server MCP",
+ "mcp.target.workspace": "Area di lavoro",
+ "mcpServerInstallation": "Installazione del server MCP {0} avviata. Un editor è ora aperto con altri dettagli su questo server MCP",
+ "output": "Mostrare output",
+ "restart": "Riavviare il server",
+ "start": "Avviare il server",
+ "stop": "Arrestare il server",
+ "uninstall": "Disinstallare"
+ },
+ "vs/workbench/contrib/mcp/browser/mcpServerEditor": {
+ "Install Info": "Installazione",
+ "Marketplace Info": "Marketplace",
+ "Readme title": "Leggimi",
+ "Version": "Versione",
+ "arguments": "Argomenti:",
+ "command": "Comando:",
+ "configuration": "Configurazione",
+ "configurationtooltip": "Dettagli configurazione server",
+ "details": "Dettagli",
+ "detailstooltip": "Dettagli dell'estensione. Rendering eseguito dal file 'README.md' dell'estensione",
+ "environmentVariables": "Variabili di ambiente:",
+ "headers": "Intestazioni:",
+ "id": "Identificatore",
+ "last updated": "Ultimo rilascio",
+ "manifest": "Manifesto",
+ "manifesttooltip": "Dettagli del manifesto del server",
+ "name": "Nome dell'estensione",
+ "noConfig": "Nessuna configurazione disponibile per questo server MCP.",
+ "noManifest": "Nessun manifesto disponibile per questo server MCP.",
+ "noReadme": "File LEGGIMI non disponibile.",
+ "packageName": "Pacchetto:",
+ "packagearguments": "Argomenti del pacchetto:",
+ "packages": "Pacchetti",
+ "published": "Pubblicati",
+ "remotes": "Remoto",
+ "repository": "Repository",
+ "resources": "Risorse",
+ "runtimeargs": "Argomenti del runtime:",
+ "serverName": "Nome:",
+ "serverType": "Tipo:",
+ "support": "Contatta il supporto",
+ "tags": "Tag",
+ "transport": "Trasporto:",
+ "url": "URL:"
+ },
+ "vs/workbench/contrib/mcp/browser/mcpServerEditorInput": {
+ "extensionsInputName": "Server MCP: {0}",
+ "mcpServerEditorLabelIcon": "Icona dell'editor del server MCP."
+ },
+ "vs/workbench/contrib/mcp/browser/mcpServerIcons": {
+ "licenseIcon": "Icona visualizzata insieme allo stato della licenza.",
+ "mcpServer": "Icona utilizzata per il server MCP.",
+ "mcpServerRemoteIcon": "Icona che indica che un server MCP è riservato all'ambito dell'utente remoto.",
+ "mcpServerWorkspaceIcon": "Icona che indica che un server MCP è riservato all'ambito dell'area di lavoro.",
+ "starredIcon": "Icona visualizzata insieme allo stato contrassegnato."
+ },
+ "vs/workbench/contrib/mcp/browser/mcpServersView": {
+ "mcp": "Server MCP",
+ "mcp servers": "Server MCP",
+ "mcp-installed": "Server MCP - Installati",
+ "mcp.gallery.enableDialog.cancel": "Annulla",
+ "mcp.gallery.enableDialog.enable": "Abilita",
+ "mcp.gallery.enableDialog.setting": "Questa funzionalità è attualmente in anteprima. È possibile disattivarla in qualsiasi momento usando l'impostazione {0}.",
+ "mcp.gallery.enableDialog.title": "Abilitare il Marketplace dei server MCP?",
+ "mcp.welcome.descriptionWithLink": "Sfogliare e installare i server [Model Context Protocol (MCP)](https://code.visualstudio.com/docs/copilot/customization/mcp-servers) direttamente da VS Code per ampliare la modalità agente con strumenti extra per accedere ai database, chiamare API ed eseguire attività specializzate.",
+ "mcp.welcome.enableGalleryButton": "Abilitare il Marketplace dei server MCP",
+ "mcp.welcome.settings.tooltip": "Apri impostazioni",
+ "mcp.welcome.title": "Server MCP",
+ "no extensions found": "Nessun server MCP trovato."
+ },
+ "vs/workbench/contrib/mcp/browser/mcpServerWidgets": {
+ "mcpIconStarForeground": "Colore dell'icona per MCP contrassegnato con la stella.",
+ "publisher": "Editore ({0})",
+ "remote user extension": "Server MCP remoto",
+ "verified publisher": "L'autore ha verificato la proprietà di {0}",
+ "workspace extension": "Server MCP dell'area di lavoro"
+ },
+ "vs/workbench/contrib/mcp/browser/mcpWorkbenchService": {
+ "cannot be installed": "Non è possibile installare il server MCP '{0}' perché non è disponibile in questa installazione.",
+ "disabled - all not allowed": "Questo server MCP è disabilitato perché i server MCP sono configurati per essere disabilitati nell'Editor. Controllare le [impostazioni]({0}).",
+ "disabled - some not allowed": "Questo server MCP è disabilitato perché è configurato per essere disabilitato nell'Editor. Controllare le [impostazioni]({0}).",
+ "mcp.configuration.userLocalValue": "Globale in {0}",
+ "not an extension": "L'oggetto specificato non è un server mcp.",
+ "overwriting": "Sovrascrittura del server MCP '{0}' da {1} con {2}."
+ },
+ "vs/workbench/contrib/mcp/common/discovery/extensionMcpDiscovery": {
+ "invalidData": "È prevista una matrice di raccolte MCP",
+ "invalidId": "È previsto che 'id' non sia una stringa vuota.",
+ "invalidLabel": "È previsto che 'label' non sia una stringa vuota.",
+ "invalidWhen": "È previsto che \"when\" non sia una stringa vuota."
+ },
+ "vs/workbench/contrib/mcp/common/discovery/nativeMcpDiscoveryAbstract": {
+ "onRemoteLabel": " il {0}"
+ },
+ "vs/workbench/contrib/mcp/common/mcpConfiguration": {
+ "app.mcp.args.command": "Argomenti passati al server.",
+ "app.mcp.dev": "Modalità di sviluppo abilitata per il server. Se presente, il server verrà avviato in modo proattivo e l'output sarà incluso nel relativo output. Le proprietà all'interno dell'oggetto 'dev' possono configurare un comportamento aggiuntivo.",
+ "app.mcp.dev.debug": "Se impostato, esegue il debug del server MCP utilizzando all'avvio il runtime specificato.",
+ "app.mcp.dev.debug.debugpyPath": "Percorso per l'eseguibile debugpy.",
+ "app.mcp.dev.debug.type.node": "Eseguire il debug del server MCP utilizzando Node.js.",
+ "app.mcp.dev.debug.type.python": "Eseguire il debug del server MCP con Python e debugpy.",
+ "app.mcp.dev.watch": "Un criterio GLOB o un elenco di criteri GLOB relativi alla cartella dell'area di lavoro da seguire. Il server MCP verrà riavviato quando questi file cambiano.",
+ "app.mcp.env.command": "Variabili di ambiente passate al server.",
+ "app.mcp.envFile.command": "Percorso di un file contenente variabili d'ambiente per il server.",
+ "app.mcp.json.command": "Il comando per eseguire il server.",
+ "app.mcp.json.cwd": "La directory di lavoro per questo comando server. Quando eseguita in un'area di lavoro, il valore predefinito è la cartella dell'area di lavoro.",
+ "app.mcp.json.headers": "Intestazioni aggiuntive inviate al server.",
+ "app.mcp.json.title": "Server MCP (Model Context Protocol)",
+ "app.mcp.json.type": "Il tipo del server.",
+ "app.mcp.json.url": "L'URL dell'endpoint HTTP o SSE trasmissibile in streaming.",
+ "app.mcp.json.url.pattern": "L'URL deve iniziare con 'http://' o 'https://'.",
+ "id": "ID",
+ "mcp.discovery.source.claude-desktop": "Desktop Claude",
+ "mcp.discovery.source.claude-desktop.config": "Configurazione desktop claude ('claude_desktop_config.json')",
+ "mcp.discovery.source.cursor-global": "Cursore (Globale)",
+ "mcp.discovery.source.cursor-global.config": "Configurazione globale del cursore ('~/.cursor/mcp.json')",
+ "mcp.discovery.source.cursor-workspace": "Cursore (Area di lavoro)",
+ "mcp.discovery.source.cursor-workspace.config": "Configurazione dell'area di lavoro del cursore ('.cursor/mcp.json')",
+ "mcp.discovery.source.windsurf": "Windsurf",
+ "mcp.discovery.source.windsurf.config": "Configurazioni windsurf ('~/.codeium/windsurf/mcp_config.json')",
+ "mcpServerDefinitionProviders": "Server MCP",
+ "name": "Nome",
+ "vscode.extension.contributes.mcp": "Contribuisce ai server MCP (Model Context Protocol). Gli utenti devono usare anche `vscode.lm.registerMcpServerDefinitionProvider`.",
+ "vscode.extension.contributes.mcp.id": "ID univoco per la raccolta.",
+ "vscode.extension.contributes.mcp.label": "Nome visualizzato per la raccolta.",
+ "vscode.extension.contributes.mcp.when": "Una condizione che deve essere true per abilitare questa raccolta."
+ },
+ "vs/workbench/contrib/mcp/common/mcpContextKeys": {
+ "mcp.hasServersWithErrors.description": "Indica se esistono server MCP con errori.",
+ "mcp.hasUnknownTools.description": "Indica se esistono server MCP con strumenti sconosciuti.",
+ "mcp.serverCount.description": "Chiave di contesto con il numero di server MCP registrati",
+ "mcp.toolsCount.description": "Chiave di contesto con il numero di strumenti MCP registrati"
+ },
+ "vs/workbench/contrib/mcp/common/mcpDevMode": {
+ "mcp.debug.nodeBinReq": "Il server MCP deve essere avviato con l'eseguibile \"node\" per abilitare il debug, ma è stato avviato con \"{0}\"",
+ "mcp.debug.pythonBinReq": "Il server MCP deve essere avviato con l'eseguibile \"python\" per abilitare il debug, ma è stato avviato con \"{0}\""
+ },
+ "vs/workbench/contrib/mcp/common/mcpLanguageModelToolContribution": {
+ "mcp.tool.warning": "Tenere presente che i server MCP o i contenuti dannosi delle conversazioni potrebbero tentare di utilizzare in modo improprio '{0}' tramite gli strumenti.",
+ "mcp.toolset": "{0}: tutti gli strumenti",
+ "msg.ran": "{0} eseguito ",
+ "msg.run": "{0} in esecuzione",
+ "msg.subtitle": "{0} (Server MCP)",
+ "msg.title": "Esegui {0}"
+ },
+ "vs/workbench/contrib/mcp/common/mcpRegistry": {
+ "mcp.launchError": "Errore durante l'avvio di {0}: {1}",
+ "mcp.launchError.openConfig": "Apri configurazione",
+ "mcp.trust.details": "Il server MCP {0} è stato aggiornato. I server MCP possono aggiungere contesto alla sessione di chat e causare comportamenti imprevisti. Vuoi considerare attendibile ed eseguire questo server?",
+ "mcp.trust.detailsMulti": "Sono stati individuati diversi server MCP aggiornati:\r\n\r\n{0}\r\n\r\n I server MCP possono aggiungere contesto alla sessione di chat e causare comportamenti imprevisti. Vuoi considerare attendibile ed eseguire questi server?",
+ "mcp.trust.no": "Non considerare attendibile",
+ "mcp.trust.pick": "Seleziona Attendibile",
+ "mcp.trust.yes": "Attendibilità",
+ "trustFromExt": "da {0}",
+ "trustTitleWithOrigin": "Vuoi considerare attendibile ed eseguire {0}?",
+ "trustTitleWithOriginMulti": "Vuoi considerare attendibile ed eseguire {0}?"
+ },
+ "vs/workbench/contrib/mcp/common/mcpSamplingLog": {
+ "mcp.sampling.rpd": "{0} richieste totali negli ultimi 7 giorni."
+ },
+ "vs/workbench/contrib/mcp/common/mcpSamplingService": {
+ "cancel": "Annulla",
+ "configure": "Configura",
+ "mcp.sampling.allow.always": "Sempre",
+ "mcp.sampling.allow.inSession": "Consenti in questa sessione",
+ "mcp.sampling.allow.never": "Mai",
+ "mcp.sampling.allow.notNow": "Non ora",
+ "mcp.sampling.allowDuringChat.desc": "Il server MCP \"{0}\" ha inviato una richiesta per effettuare una chiamata al modello linguistico. Consentirgli l'invio di richieste durante la chat?",
+ "mcp.sampling.allowDuringChat.title": "Consentire agli strumenti MCP di \"{0}\" di effettuare richieste di modelli linguistici di grandi dimensioni?",
+ "mcp.sampling.allowOutsideChat.desc": "Il server MCP \"{0}\" ha inviato una richiesta per effettuare una chiamata al modello linguistico. Consentirgli l'invio di richieste al di fuori delle chiamate degli strumenti durante la chat?",
+ "mcp.sampling.allowOutsideChat.title": "Consentire al server MCP \"{0}\" di effettuare richieste di modelli linguistici di grandi dimensioni?",
+ "mcp.sampling.needsModels": "Il server MCP \"{0}\" ha attivato una richiesta di modello linguistico, ma non dispone di modelli autorizzati."
+ },
+ "vs/workbench/contrib/mcp/common/mcpServer": {
+ "mcp.command.showOutput": "Mostra output",
+ "mcpBadSchema": "Il server MCP '{0}' contiene strumenti con parametri non validi che verranno omessi.",
+ "mcpBadSchema.show": "Mostra",
+ "mcpBadSchema.tool": "Lo strumento '{0}' contiene parametri JSON non validi:",
+ "mcpDebugPyHelp": "Il comando \"{0}\" non è stato trovato. È possibile specificare il percorso per debugpy nell'opzione 'dev.debug.debugpyPath'.",
+ "mcpServerError": "Non è stato possibile avviare il server MCP {0}: {1}",
+ "mcpServerInstall": "Installa {0}",
+ "mcpServerNotFound": "Il comando \"{0}\" necessario per eseguire {1} non è stato trovato.",
+ "mcpViewDocs": "Visualizzare i documenti"
+ },
+ "vs/workbench/contrib/mcp/common/mcpServerConnection": {
+ "mcpServer.starting": "Avvio del server {0}",
+ "mcpServer.state": "Stato connessione: {0}",
+ "mcpServer.stopping": "Arresto del server {0}"
+ },
+ "vs/workbench/contrib/mcp/common/mcpTypes": {
+ "mcpstate.error": "Errore {0}",
+ "mcpstate.running": "In esecuzione",
+ "mcpstate.starting": "Avvio",
+ "mcpstate.stopped": "Arrestato"
+ },
"vs/workbench/contrib/mergeEditor/browser/commands/commands": {
"layout.column": "Layout di colonna",
"layout.mixed": "Layout misto",
- "merge.acceptAllInput1": "Accept All Changes from Left",
- "merge.acceptAllInput2": "Accept All Changes from Right",
- "merge.goToNextConflict": "Andare al conflitto successivo",
- "merge.goToPreviousConflict": "Andare al conflitto precedente",
+ "layout.showBase": "Mostra base",
+ "layout.showBaseCenter": "Mostra centro base",
+ "layout.showBaseTop": "Mostra parte superiore base",
+ "merge.acceptAllInput1": "Accettare tutte le modifiche in ingresso da sinistra",
+ "merge.acceptAllInput2": "Accettare tutte le modifiche correnti da destra",
+ "merge.goToNextUnhandledConflict": "Vai al conflitto successivo non gestito",
+ "merge.goToPreviousUnhandledConflict": "Vai a Conflitto precedente non gestito",
"merge.openBaseEditor": "Apri file di base",
"merge.toggleCurrentConflictFromLeft": "Attiva/Disattiva conflitto corrente da sinistra",
"merge.toggleCurrentConflictFromRight": "Attiva/Disattiva conflitto corrente da destra",
"mergeEditor": "Editor merge",
+ "mergeEditor.acceptAllCombination": "Accetta tutte le combinazioni",
+ "mergeEditor.acceptMerge": "Completa merge",
+ "mergeEditor.acceptMerge.unhandledConflicts.accept": "&&Completa con conflitti",
+ "mergeEditor.acceptMerge.unhandledConflicts.detail": "Il file contiene conflitti non gestiti.",
+ "mergeEditor.acceptMerge.unhandledConflicts.message": "Completare il merge di {0}?",
"mergeEditor.compareInput1WithBase": "Confrontare input 1 con base",
"mergeEditor.compareInput2WithBase": "Confrontare input 2 con base",
"mergeEditor.compareWithBase": "Confronta con base",
+ "mergeEditor.resetChoice": "Reimposta la scelta per 'Chiudi con conflitti'",
+ "mergeEditor.resetResultToBaseAndAutoMerge": "Reimposta risultato",
+ "mergeEditor.resetResultToBaseAndAutoMerge.short": "Reimposta",
+ "mergeEditor.toggleBetweenInputs": "Passare da un input all'altro dell'Editor unione",
"openfile": "Apri file",
+ "showNonConflictingChanges": "Mostra modifiche non in conflitto",
"title": "Apri editor merge"
},
"vs/workbench/contrib/mergeEditor/browser/commands/devCommands": {
"merge.dev.copyState": "Copiare lo stato dell'editor merge come JSON",
- "merge.dev.openState": "Aprire lo stato dell'editor merge da JSON",
- "mergeEditor.enterJSON": "Immettere i dati JSON",
+ "merge.dev.loadContentsFromFolder": "Caricare lo stato dell'editor di merge dalla cartella",
+ "merge.dev.saveContentsToFolder": "Salvare lo stato dell'editor di merge nella cartella",
+ "mergeEditor": "Editor merge (sviluppo)",
"mergeEditor.name": "Editor merge",
"mergeEditor.noActiveMergeEditor": "Nessun editor merge attivo",
- "mergeEditor.successfullyCopiedMergeEditorContents": "Copia dello stato dell'editor merge completata"
+ "mergeEditor.selectFolderToSaveTo": "Selezionare la cartella in cui salvare",
+ "mergeEditor.successfullyCopiedMergeEditorContents": "Copia dello stato dell'editor merge completata",
+ "mergeEditor.successfullySavedMergeEditorContentsToFolder": "Lo stato dell'editor di merge è stato salvato nella cartella"
},
"vs/workbench/contrib/mergeEditor/browser/mergeEditor.contribution": {
+ "diffAlgorithm.advanced": "Usare l'algoritmo diffing avanzato.",
+ "diffAlgorithm.legacy": "Usare l'algoritmo diffing legacy.",
"name": "Editor merge"
},
+ "vs/workbench/contrib/mergeEditor/browser/mergeEditorAccessibilityHelp": {
+ "msg1": "Sei in un editor di unione.",
+ "msg2": "Naviga tra i conflitti di unione usando i comandi Vai al conflitto non gestito successivo{0} e Vai al conflitto non gestito precedente{1}.",
+ "msg3": "Eseguire il comando Editor unione: accettare tutte le modifiche in ingresso da sinistra{0} e Editor unione: accettare tutte le modifiche da destra{1}",
+ "msg4": "Completamento unione{0}.",
+ "msg5": "Alternare gli input dell'Editor unione, le modifiche in ingresso e le modifiche correnti {0}."
+ },
"vs/workbench/contrib/mergeEditor/browser/mergeEditorInput": {
- "name": "Unione: {0}",
- "unhandledConflicts.cancel": "Annulla",
- "unhandledConflicts.detail1": "I conflitti di merge in questo editor rimarranno non gestiti.",
- "unhandledConflicts.detailN": "I conflitti di merge in {0} rimarranno non gestiti.",
- "unhandledConflicts.discard": "Rimuovere modifiche di merge",
- "unhandledConflicts.ignore": "Continua con i conflitti",
- "unhandledConflicts.msg": "Continuare con conflitti non gestiti?",
- "unhandledConflicts.saveAndIgnore": "Salva e continua con i conflitti"
+ "mergeEditor.input1": "Input in ingresso, sinistro",
+ "mergeEditor.input2": "Input corrente, destro",
+ "mergeEditor.result": "Risultato unione",
+ "name": "Unione: {0}"
+ },
+ "vs/workbench/contrib/mergeEditor/browser/mergeEditorInputModel": {
+ "acceptMerge": "&&Accetta merge",
+ "detail1": "Il risultato dell'unione andrà perso se non viene salvato.",
+ "detail1Conflicts": "Il file contiene conflitti non gestiti. Il risultato dell'unione andrà perso se non salvato.",
+ "detailN": "I risultati dell'unione andranno persi se non vengono salvati.",
+ "detailNConflicts": "I file contengono conflitti non gestiti. I risultati dell'unione andranno persi se non salvati.",
+ "discard": "&&Non salvare",
+ "merge-editor.source": "Prima di risolvere i conflitti nell'editor di merge",
+ "message1": "Mantenere il risultato dell'unione dei {0}?",
+ "messageN": "Mantenere il risultato dell'unione dei file {0}?",
+ "noMoreWarn": "Non visualizzare più questo messaggio",
+ "save": "&&Salva",
+ "saveTempFile.detail": "In questo modo il risultato dell'unione verrà scritto nel file originale e verrà chiuso l'editor merge.",
+ "saveTempFile.message": "Accettare il risultato del merge?",
+ "saveWithConflict": "&&Salva con conflitti",
+ "workspace.close": "&&Chiudi",
+ "workspace.closeWithConflicts": "&&Chiudi con conflitti",
+ "workspace.detail1.handled": "Le modifiche apportate andranno perse se non vengono salvate.",
+ "workspace.detail1.unhandled": "Il file contiene conflitti non gestiti. Le modifiche andranno perse se non salvate.",
+ "workspace.detail1.unhandled.nonDirty": "Il file contiene conflitti non gestiti.",
+ "workspace.detailN.handled": "Le modifiche apportate andranno perse se non vengono salvate.",
+ "workspace.detailN.unhandled": "I file contengono conflitti non gestiti. Le modifiche andranno perse se non salvate.",
+ "workspace.detailN.unhandled.nonDirty": "I file contengono conflitti non gestiti.",
+ "workspace.doNotSave": "&&Non salvare",
+ "workspace.message1": "Salvare le modifiche apportate a {0}?",
+ "workspace.message1.nonDirty": "Chiudere l'editor merge per {0}?",
+ "workspace.messageN": "Salvare le modifiche apportate a {0} file?",
+ "workspace.messageN.nonDirty": "Chiudere l'editor merge per {0}?",
+ "workspace.save": "&&Salva",
+ "workspace.saveWithConflict": "&&Salva con conflitti"
+ },
+ "vs/workbench/contrib/mergeEditor/browser/mergeMarkers/mergeMarkersController": {
+ "conflictingLine": "1 riga in conflitto",
+ "conflictingLines": "{0} righe in conflitto"
+ },
+ "vs/workbench/contrib/mergeEditor/browser/model/mergeEditorModel": {
+ "setInputHandled": "Impostare input gestito",
+ "undoMarkAsHandled": "Annullare contrassegno come gestito"
},
"vs/workbench/contrib/mergeEditor/browser/view/colors": {
"mergeEditor.change.background": "Colore di sfondo per le modifiche.",
"mergeEditor.change.word.background": "Il colore di sfondo per le modifiche di parole.",
+ "mergeEditor.changeBase.background": "Colore di sfondo per le modifiche nella base.",
+ "mergeEditor.changeBase.word.background": "Colore di sfondo per le modifiche di parole nella base.",
"mergeEditor.conflict.handled.minimapOverViewRuler": "Colore primo piano per le modifiche nell'input 1.",
"mergeEditor.conflict.handledFocused.border": "Colore del bordo dei conflitti in evidenza gestiti.",
"mergeEditor.conflict.handledUnfocused.border": "Colore del bordo dei conflitti non in evidenza gestiti.",
+ "mergeEditor.conflict.input1.background": "Colore di sfondo delle decorazioni nell'input 1.",
+ "mergeEditor.conflict.input2.background": "Colore di sfondo delle decorazioni nell'input 2.",
"mergeEditor.conflict.unhandled.minimapOverViewRuler": "Colore primo piano per le modifiche nell'input 1.",
"mergeEditor.conflict.unhandledFocused.border": "Colore del bordo dei conflitti in evidenza non gestiti.",
- "mergeEditor.conflict.unhandledUnfocused.border": "Colore del bordo dei conflitti non in evidenza non gestiti."
+ "mergeEditor.conflict.unhandledUnfocused.border": "Colore del bordo dei conflitti non in evidenza non gestiti.",
+ "mergeEditor.conflictingLines.background": "Lo sfondo del testo \"Righe in conflitto\"."
+ },
+ "vs/workbench/contrib/mergeEditor/browser/view/conflictActions": {
+ "accept": "Accettare {0}",
+ "acceptBoth": "Accetta combinazione",
+ "acceptBoth0First": "Accetta combinazione ({0} prima)",
+ "acceptBothTooltip": "Accettare una combinazione automatica di entrambi i lati nel documento dei risultati.",
+ "acceptTooltip": "Accettare {0} nel documento dei risultati.",
+ "append": "Accoda {0}",
+ "appendTooltip": "Aggiungere {0} al documento dei risultati.",
+ "combine": "Accetta combinazione",
+ "ignore": "Ignora",
+ "manualResolution": "Risoluzione manuale",
+ "manualResolutionTooltip": "Il conflitto è stato risolto manualmente.",
+ "markAsHandledTooltip": "Non accettare questo aspetto del conflitto.",
+ "noChangesAccepted": "Nessuna modifica accettata",
+ "noChangesAcceptedTooltip": "L'attuale risoluzione del conflitto equivale al predecessore comune delle modifiche di destra e di sinistra.",
+ "remove": "Rimuovi {0}",
+ "removeTooltip": "Rimuovere {0} dal documento dei risultati.",
+ "resetToBase": "Reimposta alla base",
+ "resetToBaseTooltip": "Reimpostare questo conflitto sul predecessore comune delle modifiche di destra e di sinistra."
+ },
+ "vs/workbench/contrib/mergeEditor/browser/view/editors/baseCodeEditorView": {
+ "base": "Base",
+ "compareWith": "Confronto con {0}",
+ "compareWithTooltip": "Le differenze sono evidenziate con un colore di sfondo."
},
"vs/workbench/contrib/mergeEditor/browser/view/editors/inputCodeEditorView": {
- "accept": "Accettare",
+ "accept.conflicting": "Accetta (risultato modificato)",
+ "accept.excluded": "Accettare",
+ "accept.first": "Annulla accettazione",
+ "accept.second": "Annulla accettazione (attualmente secondo)",
+ "input1": "Input 1",
+ "input2": "Input 2",
"mergeEditor.accept": "Accettare {0}",
"mergeEditor.acceptBoth": "Accettare entrambe",
"mergeEditor.markAsHandled": "Contrassegnare come gestito",
"mergeEditor.swap": "Scambiare"
},
"vs/workbench/contrib/mergeEditor/browser/view/editors/resultCodeEditorView": {
+ "allConflictHandled": "Tutti i conflitti gestiti. È ora possibile completare il merge.",
+ "goToNextConflict": "Vai al conflitto successivo",
"mergeEditor.remainingConflict": "{0} conflitti rimanenti ",
- "mergeEditor.remainingConflicts": "{0} conflitto rimanente"
+ "mergeEditor.remainingConflicts": "{0} conflitto rimanente",
+ "result": "Risultato"
},
"vs/workbench/contrib/mergeEditor/browser/view/mergeEditor": {
- "editor.mergeEditor.label": "Editor merge",
- "input1": "Input 1",
- "input2": "Input 2",
- "mergeEditor": "Editor unione testo",
- "result": "Risultato"
+ "mergeEditor": "Editor unione testo"
+ },
+ "vs/workbench/contrib/mergeEditor/browser/view/viewModel": {
+ "noConflictMessage": "Attualmente non è presente alcun conflitto con stato attivo che può essere attivato o disattivato."
},
"vs/workbench/contrib/mergeEditor/common/mergeEditor": {
"baseUri": "URI del baser di un editor merge",
"editorLayout": "Modalità layout di un editor merge",
"is": "L'editor è un editor merge",
- "resultUri": "URI del risultato di un editor merge"
+ "isr": "L'editor è il risultato di un editor merge.",
+ "resultUri": "URI del risultato di un editor merge",
+ "showBase": "Se l'editor di merge mostra la versione di base",
+ "showBaseAtTop": "Se la base deve essere visualizzata in alto",
+ "showNonConflictingChanges": "Se l'editor merge mostra modifiche non in conflitto"
+ },
+ "vs/workbench/contrib/mergeEditor/electron-browser/devCommands": {
+ "merge.dev.openSelectionInTemporaryMergeEditor": "Apri la selezione nell'editor di merge temporaneo",
+ "merge.dev.openState": "Aprire lo stato dell'editor merge da JSON",
+ "mergeEditor": "Editor Merge (sviluppo)",
+ "mergeEditor.enterJSON": "Immetti JSON"
+ },
+ "vs/workbench/contrib/multiDiffEditor/browser/actions": {
+ "ExpandAllDiffs": "Espandi tutte le differenze",
+ "collapseAllDiffs": "Comprimi tutte le differenze",
+ "goToFile": "Apri file",
+ "goToNextChange": "Vai alla modifica successiva",
+ "goToPreviousChange": "Vai alla modifica precedente"
+ },
+ "vs/workbench/contrib/multiDiffEditor/browser/icons.contribution": {
+ "multiDiffEditorLabelIcon": "Icona dell’etichetta dell'editor multi diff."
+ },
+ "vs/workbench/contrib/multiDiffEditor/browser/multiDiffEditor.contribution": {
+ "name": "Editor diff multiplo"
+ },
+ "vs/workbench/contrib/multiDiffEditor/browser/multiDiffEditorInput": {
+ "name": "Editor diff multiplo",
+ "nameWithFiles": "{0} (file {1})",
+ "nameWithOneFile": "{0} (1 file)"
+ },
+ "vs/workbench/contrib/multiDiffEditor/browser/scmMultiDiffSourceResolver": {
+ "openChanges": "Apri modifiche"
},
"vs/workbench/contrib/notebook/browser/contrib/cellCommands/cellCommands": {
"notebookActions.changeCellToCode": "Modifica cella in codice",
@@ -6914,22 +11695,41 @@
"notebookActions.expandCellOutput": "Espandi output delle celle",
"notebookActions.joinCellAbove": "Unisci con cella precedente",
"notebookActions.joinCellBelow": "Unisci con cella successiva",
+ "notebookActions.joinSelectedCells": "Unire le celle selezionate",
"notebookActions.moveCellDown": "Sposta cella in basso",
"notebookActions.moveCellUp": "Sposta cella in alto",
"notebookActions.splitCell": "Dividi cella",
- "notebookActions.toggleOutputs": "Attiva/Disattiva output"
+ "notebookActions.toggleOutputs": "Attiva/Disattiva output",
+ "notebookActions.toggleScrolling": "Attiva/Disattiva scorrimento dell'output della cella"
+ },
+ "vs/workbench/contrib/notebook/browser/contrib/cellDiagnostics/cellDiagnosticsActions": {
+ "cellCommands.quickFix.noneMessage": "Azioni codice non disponibili",
+ "notebookActions.cellFailureActions": "Mostra azioni di errore cella",
+ "notebookActions.chatExplainCellError": "Spiega errore di cella",
+ "notebookActions.chatFixCellError": "Correggi errore di cella"
+ },
+ "vs/workbench/contrib/notebook/browser/contrib/cellDiagnostics/diagnosticCellStatusBarContrib": {
+ "notebook.cell.status.diagnostic": "Azioni rapide {0}"
},
"vs/workbench/contrib/notebook/browser/contrib/cellStatusBar/executionStatusBarItemController": {
"notebook.cell.status.executing": "In esecuzione",
"notebook.cell.status.failed": "Non riuscito",
"notebook.cell.status.pending": "In sospeso",
- "notebook.cell.status.success": "Operazione completata"
+ "notebook.cell.status.success": "Operazione completata",
+ "notebook.cell.statusBar.timerTooltip": "**Ultima esecuzione** {0}\r\n\r\n**Tempo di esecuzione** {1}\r\n\r\n**Tempo di strumentazione** {2}\r\n\r\n**Tempi di rendering**\r\n\r\n{3}",
+ "notebook.cell.statusBar.timerTooltip.reportIssueFootnote": "Usare i collegamenti precedenti per inviare un problema usando segnalazione problemi.",
+ "notebook.cell.statusBar.timerVerbose": "Ultima esecuzione: {0}, Durata: {1}"
},
"vs/workbench/contrib/notebook/browser/contrib/cellStatusBar/statusBarProviders": {
"notebook.cell.status.autoDetectLanguage": "Accetta lingua rilevata: {0}",
- "notebook.cell.status.language": "Seleziona modalità linguaggio della cella"
+ "notebook.cell.status.language": "Seleziona modalità linguaggio della cella",
+ "notebook.cell.status.searchLanguageExtensions": "Lingua della cella sconosciuta. Fare clic per cercare le estensioni \"{0}\""
+ },
+ "vs/workbench/contrib/notebook/browser/contrib/chat/notebookChatUtils": {
+ "notebookOutputCellLabel": "{0} • Cella {1} • Output {2}"
},
"vs/workbench/contrib/notebook/browser/contrib/clipboard/notebookClipboard": {
+ "notebook.cell.output.selectAll": "Seleziona tutto",
"notebookActions.copy": "Copia cella",
"notebookActions.cut": "Taglia cella",
"notebookActions.paste": "Incolla cella",
@@ -6937,25 +11737,19 @@
"toggleNotebookClipboardLog": "Attiva/Disattiva risoluzione dei problemi degli Appunti del blocco appunti"
},
"vs/workbench/contrib/notebook/browser/contrib/editorStatusBar/editorStatusBar": {
- "current1": "Attualmente selezionato",
- "current2": "{0} - (attualmente selezionato)",
- "installSuggestedKernel": "Installare le estensioni suggerite",
"kernel.select.label": "Selezionare Kernel",
"notebook.activeCellStatusName": "Selezioni editor blocco appunti",
+ "notebook.indentation": "Rientro notebook",
"notebook.info": "Informazioni kernel del blocco appunti",
"notebook.multiActiveCellIndicator": "Cella {0} ({1} selezionata)",
"notebook.select": "Selezione kernel del blocco appunti",
"notebook.singleActiveCellIndicator": "Cella {0} di {1}",
- "notebookActions.selectKernel": "Seleziona kernel del notebook",
- "notebookActions.selectKernel.args": "Argomenti kernel del notebook",
- "otherKernelKinds": "Altro",
- "prompt.placeholder.change": "Cambia il kernel per ' {0}'",
- "prompt.placeholder.select": "Selezionare Kernel per '{0}'",
- "searchForKernels": "Sfogliare il marketplace per le estensioni del kernel",
- "suggestedKernels": "Suggerito",
+ "selectNotebookIndentation": "Seleziona rientro",
"tooltop": "{0} (suggerimento)"
},
"vs/workbench/contrib/notebook/browser/contrib/find/notebookFind": {
+ "notebook.findNext.fromWidget": "Trova successivo",
+ "notebook.findPrevious.fromWidget": "Trova precedente",
"notebookActions.findInNotebook": "Trova nel notebook",
"notebookActions.hideFind": "Nascondi Trova nel notebook"
},
@@ -6969,9 +11763,10 @@
"label.replaceAllButton": "Sostituisci tutto",
"label.replaceButton": "Sostituisci",
"label.toggleReplaceButton": "Attiva/Disattiva sostituzione",
+ "label.toggleSelectionFind": "Trova nella selezione",
"notebook.find.filter.filterAction": "Trova filtri",
"notebook.find.filter.findInCodeInput": "Origine cella di codice",
- "notebook.find.filter.findInCodeOutput": "Output cella",
+ "notebook.find.filter.findInCodeOutput": "Output cella di codice",
"notebook.find.filter.findInMarkupInput": "Origine di Markdown",
"notebook.find.filter.findInMarkupPreview": "Markdown sottoposto a rendering",
"placeholder.find": "Trova",
@@ -6985,6 +11780,7 @@
"vs/workbench/contrib/notebook/browser/contrib/format/formatting": {
"format.title": "Formatta notebook",
"formatCell.label": "Formatta cella",
+ "formatCells.label": "Formatta celle",
"label": "Formatta notebook"
},
"vs/workbench/contrib/notebook/browser/contrib/gettingStarted/notebookGettingStarted": {
@@ -6993,6 +11789,13 @@
"vs/workbench/contrib/notebook/browser/contrib/layout/layoutActions": {
"notebook.toggleCellToolbarPosition": "Attivare o disattivare la posizione barra degli strumenti cella"
},
+ "vs/workbench/contrib/notebook/browser/contrib/multicursor/notebookMulticursor": {
+ "addFindMatchToSelection": "Aggiungi selezione a risultato ricerca successivo",
+ "deleteLeftMultiSelection": "Elimina a sinistra",
+ "deleteRightMultiSelection": "Elimina a destra",
+ "exitMultiSelection": "Uscire dalla modalità multi-cursore",
+ "selectAllFindMatches": "Seleziona tutte le occorrenze del risultato ricerca"
+ },
"vs/workbench/contrib/notebook/browser/contrib/navigation/arrow": {
"cursorMoveDown": "Sposta lo stato attivo sull'editor celle successivo",
"cursorMoveUp": "Sposta lo stato attivo sull'editor celle precedente",
@@ -7004,21 +11807,90 @@
"focusLastCell": "Sposta stato attivo sull'ultima cella",
"focusOutput": "Abilita stato attivo per output della cella attiva",
"focusOutputOut": "Disabilita stato attivo per output della cella attiva",
+ "notebook.cell.webviewHandledEvents": "Tasti di scelta rapida che devono essere gestiti dall'elemento con lo stato attivo nell'output della cella.",
"notebook.navigation.allowNavigateToSurroundingCells": "Quando il cursore abilitato può passare alla cella successiva/precedente quando il cursore corrente nell'editor delle celle si trova alla prima/ultima riga.",
"notebookActions.centerActiveCell": "Centra cella attiva"
},
+ "vs/workbench/contrib/notebook/browser/contrib/notebookVariables/notebookInlineVariables": {
+ "clearAllInlineValues": "Cancella tutti i valori inline"
+ },
+ "vs/workbench/contrib/notebook/browser/contrib/notebookVariables/notebookVariableCommands": {
+ "copyWorkspaceVariableValue": "Copia valore",
+ "executeNotebookVariableProvider": "Esegui provider di variabili del notebook"
+ },
+ "vs/workbench/contrib/notebook/browser/contrib/notebookVariables/notebookVariables": {
+ "notebookVariables": "Variabili notebook"
+ },
+ "vs/workbench/contrib/notebook/browser/contrib/notebookVariables/notebookVariablesDataSource": {
+ "notebook.indexedChildrenLimitReached": "È stato raggiunto il limite di visualizzazione"
+ },
+ "vs/workbench/contrib/notebook/browser/contrib/notebookVariables/notebookVariablesTree": {
+ "notebook.ReplVariables": "Variabili REPL",
+ "notebook.notebookVariables": "Variabili notebook",
+ "notebookVariableAriaLabel": "Variabile {0}, valore {1}"
+ },
"vs/workbench/contrib/notebook/browser/contrib/outline/notebookOutline": {
- "breadcrumbs.showCodeCells": "Se è abilitata, gli elementi di navigazione contengono le celle del codice.",
- "empty": "cella vuota",
- "outline.showCodeCells": "Se è abilitata, la struttura del notebook mostra le celle del codice."
+ "breadcrumbs.showCodeCells": "Se è abilitata, gli elementi di navigazione del notebook contengono le celle del codice.",
+ "filter": "Filtra voci",
+ "notebook.gotoSymbols.showAllSymbols": "Se abilitata, l'indicatore rapido dei simboli Go to visualizza i simboli del codice completo del notebook, nonché le intestazioni Markdown.",
+ "outline.showCodeCellSymbols": "Se questa opzione è abilitata, la struttura del blocco appunti i simboli delle celle del codice. Si basa sull'abilitazione di '#notebook.outline.showCodeCells#'.",
+ "outline.showCodeCells": "Se è abilitata, la struttura del notebook mostra le celle del codice.",
+ "outline.showMarkdownHeadersOnly": "Se questa opzione è abilitata, la struttura del notebook mostra solo le celle Markdown contenenti un'intestazione.",
+ "toggleCodeCellSymbols": "Simboli cella di codice",
+ "toggleCodeCells": "Celle codice",
+ "toggleShowMarkdownHeadersOnly": "Solo intestazioni Markdown"
},
"vs/workbench/contrib/notebook/browser/contrib/profile/notebookProfile": {
"setProfileTitle": "Impostare profilo"
},
+ "vs/workbench/contrib/notebook/browser/contrib/saveParticipants/saveParticipants": {
+ "codeAction.apply": "Applicazione dell'azione codice '{0}'.",
+ "codeaction.get2": "Recupero delle azioni codice da '{0}' ([configura]({1})).",
+ "formatNotebook": "Formatta notebook",
+ "insertFinalNewLine": "Inserisci nuova riga finale",
+ "notebookFormatSave.formatting": "Formattazione",
+ "notebookSaveParticipants.cellCodeActions": "Esecuzione delle azioni del codice 'Cell'",
+ "notebookSaveParticipants.formatCodeActions": "Esecuzione delle azioni codice 'Format'",
+ "notebookSaveParticipants.notebookCodeActions": "Esecuzione azioni del codice 'Notebook'",
+ "trimNotebookNewlines": "Taglia nuove righe finali",
+ "trimNotebookWhitespace": "Spazi vuoti finali Notebook"
+ },
"vs/workbench/contrib/notebook/browser/contrib/troubleshoot/layout": {
"workbench.notebook.clearNotebookEdtitorTypeCache": "Cancella cache dei tipi di editor di notebook",
"workbench.notebook.inspectLayout": "Ispeziona layout del notebook",
- "workbench.notebook.toggleLayoutTroubleshoot": "Attiva/Disattiva risoluzione dei problemi di layout"
+ "workbench.notebook.toggleLayoutTroubleshoot": "Attiva/Disattiva risoluzione dei problemi di layout del notebook"
+ },
+ "vs/workbench/contrib/notebook/browser/controller/cellOperations": {
+ "notebookActions.joinSelectedCells": "Non è possibile unire celle di tipi diversi",
+ "notebookActions.joinSelectedCells.label": "Unire celle del notebook"
+ },
+ "vs/workbench/contrib/notebook/browser/controller/cellOutputActions": {
+ "imageFiles": "File di immagine",
+ "notebookActions.copyOutput": "Copia output della cella",
+ "notebookActions.openOutputInEditor": "Apri l'output della cella nell'editor di testo",
+ "notebookActions.openOutputInNotebookOutputEditor": "Apri nell'Anteprima di output",
+ "notebookActions.saveOutputImage": "Salva immagine",
+ "notebookActions.showAllOutput": "Mostra output vuoti"
+ },
+ "vs/workbench/contrib/notebook/browser/controller/chat/cellChatActions": {
+ "notebook.apply1": "Accetta ed esegui",
+ "notebook.apply2": "Accetta ed esegui",
+ "notebook.apply3": "Accetta le modifiche ed esegui la cella",
+ "notebookActions.menu.insertCode.ontoolbar": "Genera",
+ "notebookActions.menu.insertCode.tooltip": "Avvia chat per generare codice",
+ "notebookActions.menu.insertCodeCellWithChat": "Genera",
+ "notebookActions.menu.insertCodeCellWithChat.tooltip": "Avvia chat per generare codice"
+ },
+ "vs/workbench/contrib/notebook/browser/controller/chat/notebook.chat.contribution": {
+ "chatContext.notebook.kernelVariable": "Variabile kernel...",
+ "chatContext.notebook.kernelVariable.placeholder": "Seleziona una variabile kernel",
+ "noKernelVariables": "Non sono state trovate variabili del kernel",
+ "notebookActions.addOutputToChat": "Aggiungi output cella alla chat",
+ "pickKernelVariableLabel": "Selezionare una variabile dal kernel",
+ "selectKernelVariablePlaceholder": "Seleziona una variabile kernel"
+ },
+ "vs/workbench/contrib/notebook/browser/controller/chat/notebookChatContext": {
+ "notebookChatAgentRegistered": "Indica se un agente di chat per il blocco appunti è registrato"
},
"vs/workbench/contrib/notebook/browser/controller/coreActions": {
"miShare": "Condividi",
@@ -7029,17 +11901,28 @@
"vs/workbench/contrib/notebook/browser/controller/editActions": {
"autoDetect": "Rilevamento automatico",
"changeLanguage": "Cambia linguaggio della cella",
- "clearAllCellsOutputs": "Cancella output di tutte le celle",
+ "clearAllCellsOutputs": "Cancella tutti gli output",
"clearCellOutputs": "Cancella output della cella",
+ "commentSelectedCells": "Commenta celle selezionate",
+ "confirmDeleteButton": "Elimina",
+ "confirmDeleteButtonMessage": "La cella è in esecuzione. Eliminarla?",
"detectLanguage": "Accetta lingua rilevata per la cella",
+ "doNotAskAgain": "Non visualizzare più questo messaggio",
+ "indentConvert": "converti file",
+ "indentView": "cambia visualizzazione",
"languageDescription": "({0}) - Linguaggio corrente",
"languageDescriptionConfigured": "({0})",
"languagesPicks": "lingue (identificatore)",
"noDetection": "Non è possibile rilevare la lingua delle celle",
+ "noNotebookEditor": "Al momento non ci sono editor di notebook attivi",
+ "noWritableCodeEditor": "L'editor di notebook attivo è di sola lettura.",
"notebookActions.deleteCell": "Elimina cella",
"notebookActions.editCell": "Modifica cella",
"notebookActions.quitEdit": "Arresta modifica della cella",
- "pickLanguageToConfigure": "Seleziona modalità linguaggio"
+ "notebookActions.quitEditAllCells": "Interrompi la modifica di tutte le celle",
+ "pickAction": "Seleziona azione",
+ "pickLanguageToConfigure": "Seleziona modalità linguaggio",
+ "selectNotebookIndentation": "Seleziona rientro"
},
"vs/workbench/contrib/notebook/browser/controller/executeActions": {
"notebookActions.cancel": "Arresta esecuzione della cella",
@@ -7051,10 +11934,11 @@
"notebookActions.executeAndSelectBelow": "Esegui cella del notebook e seleziona in basso",
"notebookActions.executeBelow": "Eseguire cella e sotto",
"notebookActions.executeNotebook": "Eseguire tutti",
+ "notebookActions.interruptNotebook": "Interrompi",
"notebookActions.renderMarkdown": "Esegui rendering di tutte le celle Markdown",
"revealLastFailedCell": "Vai alla cella con errori più recente",
- "revealLastFailedCellShort": "Vai a",
- "revealRunningCell": "Go to Running Cell",
+ "revealLastFailedCellShort": "Vai alla cella con errori più recente",
+ "revealRunningCell": "Vai alla cella in esecuzione",
"revealRunningCellShort": "Vai a"
},
"vs/workbench/contrib/notebook/browser/controller/foldingController": {
@@ -7081,16 +11965,48 @@
},
"vs/workbench/contrib/notebook/browser/controller/layoutActions": {
"customizeNotebook": "Personalizza notebook...",
+ "mitoggleNotebookStickyScroll": "&&Attiva/disattiva scorrimento permanente blocco appunti",
"notebook.placeholder": "File di impostazioni in cui salvare",
"notebook.saveMimeTypeOrder": "Salva ordine di visualizzazione Mimetype",
- "notebook.showLineNumbers": "Visualizzare i numeri di riga del blocco appunti",
+ "notebook.showLineNumbers": "Numeri di riga notebook",
"notebook.toggleBreadcrumb": "Attiva/Disattiva percorsi di navigazione",
"notebook.toggleCellToolbarPosition": "Attivare o disattivare la posizione barra degli strumenti cella",
"notebook.toggleLineNumbers": "Attivare o disattivare i numeri di riga del blocco appunti",
+ "notebookStickyScroll": "Attiva/disattiva scorrimento permanente blocco appunti",
"saveTarget.machine": "Impostazioni utente",
"saveTarget.workspace": "Impostazioni area di lavoro",
+ "toggleStickyScroll": "Attiva/disattiva scorrimento permanente blocco appunti",
"workbench.notebook.layout.configure.label": "Personalizzare il layout del blocco appunti",
- "workbench.notebook.layout.select.label": "Selezionare il layout del blocco appunti"
+ "workbench.notebook.layout.select.label": "Selezionare il layout del blocco appunti",
+ "workbench.notebook.layout.webview.reset.label": "Reimposta webview notebook"
+ },
+ "vs/workbench/contrib/notebook/browser/controller/notebookIndentationActions": {
+ "changeTabDisplaySize": "Modifica dimensioni visualizzazione scheda",
+ "convertIndentation": "Converti rientro",
+ "convertIndentationToSpaces": "Converti rientro in spazi",
+ "convertIndentationToTabs": "Converti rientro in tabulazioni",
+ "indentUsingSpaces": "Imposta rientro con spazi",
+ "indentUsingTabs": "Imposta rientro con tabulazioni",
+ "selectTabWidth": "Seleziona dimensione tabulazione per il file corrente"
+ },
+ "vs/workbench/contrib/notebook/browser/controller/sectionActions": {
+ "expandSection": "Espandi sezione",
+ "foldSection": "Riduci sezione",
+ "miexpandSection": "&&Espandi sezione",
+ "mifoldSection": "&&Riduci sezione",
+ "mirunCell": "&&Esegui cella",
+ "mirunCellsInSection": "&&Esegui celle nella sezione",
+ "runCell": "Esegui cella",
+ "runCellsInSection": "Esegui celle nella sezione"
+ },
+ "vs/workbench/contrib/notebook/browser/controller/variablesActions": {
+ "notebookActions.openVariablesView": "Variabili"
+ },
+ "vs/workbench/contrib/notebook/browser/diff/diffComponents": {
+ "hiddenCell": "{0} cella nascosta",
+ "hiddenCells": "{0} celle nascoste",
+ "hideUnchangedCells": "Nascondi celle non modificate",
+ "showUnchangedCells": "Mostra celle non modificate"
},
"vs/workbench/contrib/notebook/browser/diff/diffElementOutputs": {
"builtinRenderInfo": "predefinito",
@@ -7102,81 +12018,142 @@
"promptChooseMimeTypeInSecure.placeHolder": "Selezionare il tipo MIME per il rendering dell'output corrente. I tipi MIME avanzati sono disponibili solo quando il notebook è attendibile"
},
"vs/workbench/contrib/notebook/browser/diff/notebookDiffActions": {
+ "goToCell": "Vai alla cella",
+ "hideUnchangedCells": "Nascondi celle non modificate",
+ "ignoreTrimWhitespace.label": "Mostra differenze spazi vuoti iniziali/finali",
+ "notebook.diff.action.next.title": "Mostra modifica successiva",
+ "notebook.diff.action.previous.title": "Mostra modifica precedente",
"notebook.diff.cell.revertInput": "Ripristina input",
"notebook.diff.cell.revertMetadata": "Ripristina metadati",
"notebook.diff.cell.revertOutputs": "Ripristina output",
"notebook.diff.cell.switchOutputRenderingStyleToText": "Cambia rendering dell'output",
+ "notebook.diff.cell.toggleCollapseUnchangedRegions": "Comprimi/decomprimi aree non modificate",
"notebook.diff.ignoreMetadata": "Nascondi differenze metadati",
"notebook.diff.ignoreOutputs": "Nascondi differenze output",
+ "notebook.diff.inline.toggle.title": "Attiva/Disattiva visualizzazione inline",
+ "notebook.diff.openFile": "Apri file",
+ "notebook.diff.revertMetadata": "Ripristina metadati notebook",
"notebook.diff.showMetadata": "Mostra differenze metadati",
"notebook.diff.showOutputs": "Mostra differenze output",
- "notebook.diff.switchToText": "Apri editor diff di testo"
+ "notebook.diff.switchToText": "Apri editor diff di testo",
+ "notebook.diff.toggleInline": "Abilita il comando per attivare/disattivare l'editor diff inline del notebook sperimentale.",
+ "showUnchangedCells": "Mostra celle non modificate"
},
- "vs/workbench/contrib/notebook/browser/diff/notebookTextDiffEditor": {
+ "vs/workbench/contrib/notebook/browser/diff/notebookDiffEditor": {
"notebookTreeAriaLabel": "Differenze di testo notebook"
},
- "vs/workbench/contrib/notebook/browser/extensionPoint": {
- "contributes.notebook.provider": "Aggiunge come contributo il provider di documenti del notebook.",
- "contributes.notebook.provider.displayName": "Nome leggibile del notebook.",
- "contributes.notebook.provider.selector": "Set di GLOB per cui è viene usato il notebook.",
- "contributes.notebook.provider.selector.filenamePattern": "GLOB per cui è abilitato il notebook.",
- "contributes.notebook.provider.viewType": "Tipo di notebook.",
- "contributes.notebook.renderer": "Aggiunge come contributo il provider di renderer di output del notebook.",
- "contributes.notebook.renderer.displayName": "Nome leggibile del renderer di output del notebook.",
- "contributes.notebook.renderer.entrypoint": "File da caricare nella Webview per eseguire il rendering dell'estensione.",
- "contributes.notebook.renderer.entrypoint.extends": "Renderer esistente esteso da questo.",
- "contributes.notebook.renderer.hardDependencies": "Elenco delle dipendenze del kernel richieste dal renderer. Se una delle dipendenze è presente in ' NotebookKernel. preloads ', è possibile usare il renderer.",
- "contributes.notebook.renderer.optionalDependencies": "Elenco delle dipendenze del kernel soft di cui il renderer può avvalersi. Se una delle dipendenze è presente in `NotebookKernel.preloads`, il renderer verrà preferito rispetto ai renderer che non interagiscono con il kernel.",
- "contributes.notebook.renderer.requiresMessaging": "Definisce la modalità e le circostanze in cui il renderer deve comunicare con un host di estensione tramite `createRendererMessaging`. I renderer con requisiti di messaggistica più robusti potrebbero non funzionare in tutti gli ambienti.",
- "contributes.notebook.renderer.requiresMessaging.always": "La messaggistica è obbligatoria. Il renderer verrà usato solo quando fa parte di un'estensione che può essere eseguita in un host di estensione.",
- "contributes.notebook.renderer.requiresMessaging.never": "Il renderer non richiede la messaggistica.",
- "contributes.notebook.renderer.requiresMessaging.optional": "Il renderer è migliore con la messaggistica disponibile, ma non è obbligatorio.",
- "contributes.notebook.renderer.viewType": "Identificatore univoco del renderer di output del notebook.",
- "contributes.notebook.selector": "Set di GLOB per cui è viene usato il notebook.",
- "contributes.notebook.selector.provider.excludeFileNamePattern": "GLOB per cui è disabilitato il notebook.",
- "contributes.priority": "Controlla se l'editor personalizzato viene abilitato automaticamente quando l'utente apre un file. Gli utenti possono eseguirne l'override usando l'impostazione `workbench.editorAssociations`.",
- "contributes.priority.default": "L'editor viene usato automaticamente quando l'utente apre una risorsa, purché non siano stati registrati altri editor personalizzati predefiniti per tale risorsa.",
- "contributes.priority.option": "L'editor non viene usato automaticamente quando l'utente apre una risorsa, ma può passare all'editor usando il comando `Riapri con`."
+ "vs/workbench/contrib/notebook/browser/diff/notebookDiffEditorBrowser": {
+ "notebook.diffEditor.allCollapsed": "Indica se tutte le celle nell'editor differenze notebook sono compresse",
+ "notebook.diffEditor.hasUnchangedCells": "Indica se nell'editor differenze del notebook sono presenti celle non modificate",
+ "notebook.diffEditor.item.kind": "Tipo di elemento nell'editor delle differenze del notebook, cella, metadati o output",
+ "notebook.diffEditor.item.state": "Stato diff dell'elemento nell'editor delle differenze del notebook, eliminazione, inserimento, modifica o modifica",
+ "notebook.diffEditor.unchangedCellsAreHidden": "Indica se le celle non modificate nell'editor differenze del notebook sono nascoste"
+ },
+ "vs/workbench/contrib/notebook/browser/diff/notebookDiffList": {
+ "notebook.diff.hiddenCells.expandAll": "Fare doppio clic per mostrare"
+ },
+ "vs/workbench/contrib/notebook/browser/diff/notebookMultiDiffEditor": {
+ "notebookCellLabel": "Cella {0}",
+ "notebookCellMetadataLabel": "Metadati",
+ "notebookCellOutputLabel": "Output"
},
"vs/workbench/contrib/notebook/browser/notebook.contribution": {
"insertToolbarLocation.betweenCells": "Barra degli strumenti visualizzata al passaggio del mouse tra le celle.",
"insertToolbarLocation.both": "Entrambe le barre degli strumenti.",
"insertToolbarLocation.hidden": "Le azioni di inserimento non vengono visualizzate in alcun punto.",
"insertToolbarLocation.notebookToolbar": "Barra degli strumenti nella parte superiore dell'editor del blocco appunti.",
+ "notebook.VariablesView.description": "Abilitare la visualizzazione delle variabili del blocco aoounti sperimentale all'interno del pannello di debug.",
+ "notebook.backup.sizeLimit": "Limite delle dimensioni di output del notebook in kilobyte (KB) in cui non verrà più eseguito il backup dei file notebook per il ricaricamento rapido. Usa 0 per un numero illimitato.",
+ "notebook.cellExecutionTimeVerbosity.default.description": "La durata di esecuzione della cella è visibile, con informazioni avanzate nella descrizione del comando al passaggio del mouse.",
+ "notebook.cellExecutionTimeVerbosity.description": "Controlla il livello di dettaglio del tempo di esecuzione della cella nella barra di stato della cella.",
+ "notebook.cellExecutionTimeVerbosity.verbose.description": "Il timestamp e la durata dell'ultima esecuzione della cella sono visibili, con informazioni avanzate nella descrizione del comando al passaggio del mouse.",
+ "notebook.cellFailureDiagnostics": "Mostra la diagnostica disponibile per gli errori delle celle.",
+ "notebook.cellGenerate": "Abilitare l'azione di generazione sperimentale per creare una cella di codice con la chat inline abilitata.",
"notebook.cellToolbarLocation.description": "Indica la posizione in cui visualizzare la barra degli strumenti della cella o se deve essere nascosta.",
"notebook.cellToolbarLocation.viewType": "Configurare la posizione della barra degli strumenti delle celle per i tipi di file specifici",
"notebook.cellToolbarVisibility.description": "Indica se la barra degli strumenti della cella deve essere presente nel passaggio del mouse o fare clic.",
"notebook.compactView.description": "Controlla se l'editor del blocco appunti deve essere sottoposto a rendering in formato compatto. Ad esempio, se l’opzione è attivata, diminuisce la larghezza del margine sinistro.",
+ "notebook.confirmDeleteRunningCell": "Controllare se è necessaria una richiesta di conferma per eliminare una cella in esecuzione.",
"notebook.consolidatedOutputButton.description": "Controllare se è necessario eseguire il rendering dell'azione Outputs nella barra degli strumenti di output.",
"notebook.consolidatedRunButton.description": "Controllare se le azioni aggiuntive vengono visualizzate in un elenco a discesa accanto al pulsante Esegui.",
+ "notebook.diff.enableOverviewRuler.description": "Indica se eseguire il rendering del righello delle annotazioni nell'editor diff per il blocco appunti.",
"notebook.diff.enablePreview.description": "Indica se usare l'editor diff di testo avanzato per il notebook.",
+ "notebook.disableOutputFilePathLinks": "Controllare se disabilitare i collegamenti di percorso file nell'output delle celle del blocco appunti.",
"notebook.displayOrder.description": "Elenco di priorità per i tipi MIME di output",
"notebook.dragAndDrop.description": "Controlla se l'editor del blocco appunti deve consentire lo spostamento delle celle tramite il trascinamento della selezione.",
"notebook.editorOptions.experimentalCustomization": "Impostazioni per gli editor di codice usati nei blocchi appunti. Può essere usato per personalizzare la maggior parte delle impostazioni dell'editor. *.",
- "notebook.focusIndicator.description": "Controlla dove eseguire il rendering dell'indicatore di messa a fuoco, ovvero lungo i bordi delle celle o sulla rilegatura sinistra",
+ "notebook.findFilters": "Personalizzare il comportamento del widget Trova per la ricerca all'interno delle celle del notebook. Quando l'origine markup e l'anteprima di markup sono abilitate, il widget Trova eseguirà la ricerca nel codice sorgente o nell'anteprima in base allo stato corrente della cella.",
+ "notebook.focusIndicator.description": "Controlla dove eseguire il rendering dell'indicatore di messa a fuoco, ovvero lungo i bordi delle celle o sulla rilegatura sinistra.",
+ "notebook.formatOnCellExecution": "Formattare una cella del notebook al momento dell'esecuzione. Un formattatore deve essere disponibile.",
+ "notebook.formatOnSave": "Formatta un blocco appunti al salvataggio. È necessario che sia disponibile un formattatore e che l'editor non sia in fase di arresto. Quando {0} è impostato su 'afterDelay', il file verrà formattato solo se salvato in modo esplicito.",
"notebook.globalToolbar.description": "Controllare se eseguire il rendering di una barra degli strumenti globale all'interno dell'editor del blocco appunti.",
"notebook.globalToolbarShowLabel": "Controlla se le azioni sulla barra degli strumenti del notebook devono eseguire il rendering dell'etichetta.",
+ "notebook.inlineValues.auto": "Mostra valori inline solo quando è registrato un provider di valori inline.",
+ "notebook.inlineValues.description": "Controlla se visualizzare i valori inline all'interno delle celle di codice del notebook dopo l'esecuzione della cella. I valori rimarranno finché la cella non viene modificata, rieseguire o cancellata in modo esplicito tramite il pulsante Cancella tutti gli output o il comando 'Notebook: Cancella valori inline'.",
+ "notebook.inlineValues.off": "Non mostrare mai valori inline.",
+ "notebook.inlineValues.on": "Mostra sempre i valori inline, con un fallback regex se non è registrato alcun provider di valori inline. Nota: se si utilizza il fallback, potrebbe verificarsi un impatto sulle prestazioni nelle celle più grandi.",
+ "notebook.insertFinalNewline": "Se questa opzione è abilitata, inserire una nuova riga finale alla fine delle celle di codice quando si salva un blocco appunti.",
"notebook.insertToolbarPosition.description": "Controlla dove visualizzare le azioni di inserimento cella.",
"notebook.interactiveWindow.collapseCodeCells": "Controlla se le celle di codice nella finestra interattiva sono compresse per impostazione predefinita.",
+ "notebook.markdown.lineHeight": "Controlla l'altezza della riga in pixel delle celle Markdown nei blocchi appunti. Se questa opzione è impostata su {0}, verrà usato {1}",
+ "notebook.markup.fontFamily": "Controlla la famiglia di caratteri del markup di cui è stato eseguito il rendering nei blocchi appunti. Se lasciato vuoto, verrà eseguito il fallback alla famiglia di caratteri workbench predefinita.",
"notebook.markup.fontSize": "Controlla le dimensioni del carattere del markup di cui è stato eseguito il rendering nei blocchi appunti. Se impostato su {0}, viene usato il 120% di {1}.",
- "notebook.outputFontFamily": "Famiglia di caratteri per il testo di output delle celle del notebook. Se impostato su vuoto, viene usato {0}.",
- "notebook.outputFontSize": "Dimensioni del carattere per il testo di output per le celle del blocco appunti. Se impostato su {0}, viene usato {1}.",
- "notebook.outputLineHeight": "Altezza della riga del testo di output per le celle del blocco appunti.\r\n - I valori compresi tra 0 e 8 verranno usati come moltiplicatore con le dimensioni del carattere.\r\n - I valori maggiori o uguali a 8 verranno usati come valori effettivi.",
+ "notebook.minimalErrorRendering": "Controllare se eseguire il rendering dell'output degli errori con uno stile minimo.",
+ "notebook.multiCursor.enabled": "Sperimentale. Abilita un set limitato di controlli con più cursori tra più celle nell'editor di notebook. Sono attualmente supportati le azioni principali dell'editor (digitazione/taglia/copia/incolla/composizione) e un sottoinsieme limitato di comandi dell'editor.",
+ "notebook.outputFontFamily": "Famiglia di caratteri del testo di output all'interno delle celle del blocco appunti. Se impostato su vuoto, viene usato {0}.",
+ "notebook.outputFontSize": "Dimensioni del carattere per il testo di output all'interno delle celle del blocco appunti. Se impostato su 0, viene usato {0}.",
+ "notebook.outputLineHeight": "Altezza della riga del testo di output all'interno delle celle del blocco appunti.\r\n - Se impostato su 0, viene usata l'altezza della riga dell'editor.\r\n - I valori compresi tra 0 e 8 verranno usati come moltiplicatore con le dimensioni del carattere.\r\n - I valori maggiori o uguali a 8 verranno usati come valori effettivi.",
+ "notebook.outputScrolling": "Eseguire inizialmente il rendering degli output del notebook in un'area scorrevole quando superano il limite.",
+ "notebook.outputWordWrap": "Controlla se le righe dell'output devono andare a capo.",
+ "notebook.remoteSaving": "Consente il salvataggio incrementale di notebook tra processi e connessioni remote. Se questa opzione è abilitata, all'host dell'estensione vengono inviate solo le modifiche al blocco appunti, migliorando le prestazioni per i notebook di grandi dimensioni e le connessioni di rete lente.",
+ "notebook.scrolling.revealNextCellOnExecute.description": "Distanza di scorrimento quando si rivela la cella successiva durante l'esecuzione di {0}.",
+ "notebook.scrolling.revealNextCellOnExecute.firstLine.description": "Scorrere per visualizzare la prima riga della cella successiva.",
+ "notebook.scrolling.revealNextCellOnExecute.fullCell.description": "Scorrere per visualizzare completamente la cella successiva.",
+ "notebook.scrolling.revealNextCellOnExecute.none.description": "Non scorrere.",
"notebook.showCellStatusbar.description": "Indica se visualizzare la barra di stato della cella.",
"notebook.showCellStatusbar.hidden.description": "La barra di stato della cella è sempre nascosta.",
"notebook.showCellStatusbar.visible.description": "La barra di stato della cella è sempre visibile.",
"notebook.showCellStatusbar.visibleAfterExecute.description": "La barra di stato della cella è nascosta fino all'esecuzione della cella. Diventa quindi visibile per mostrare lo stato di esecuzione.",
"notebook.showFoldingControls.description": "Controlla quando visualizzare la freccia di riduzione dell'intestazione Markdown.",
- "notebook.textOutputLineLimit": "Verificare il numero di righe di testo di cui viene eseguito il rendering in un output di testo.",
+ "notebook.stickyScrollEnabled.description": "Sperimentale. Controlla se eseguire il rendering delle intestazioni dello scorrimento permanente nell'editor del notebook.",
+ "notebook.stickyScrollMode.description": "Controlla se le linee permanenti annidate vengono visualizzate in pila piana o rientrata.",
+ "notebook.stickyScrollMode.flat": "Le linee adesive annidate appaiono piatte.",
+ "notebook.stickyScrollMode.indented": "Le linee adesive annidate appaiono rientrate.",
+ "notebook.textOutputLineLimit": "Controlla il numero di righe di testo visualizzate in un output di testo. Se {0} è abilitata, questa impostazione viene usata per determinare l'altezza di scorrimento dell'output.",
"notebook.undoRedoPerCell.description": "Indica se utilizzare il gruppo di annullamento/ripetizione separato per ogni cella.",
"notebookConfigurationTitle": "Blocco appunti",
+ "notebookFormatter.default": "Consente di definire un formattatore di blocco appunti predefinito che ha la precedenza su tutte le altre impostazioni di formattatore. Deve essere l'identificatore di un'estensione che contribuisce a un formattatore.",
"showFoldingControls.always": "I controlli di riduzione sono sempre visibili.",
"showFoldingControls.mouseover": "I controlli di riduzione sono visibili solo al passaggio del mouse.",
"showFoldingControls.never": "Non visualizzare mai i controlli di riduzione e diminuire le dimensioni della barra di navigazione."
},
+ "vs/workbench/contrib/notebook/browser/notebookAccessibilityHelp": {
+ "notebook.cell.edit": "Il comando Modifica cella{0} attiverà l'input della cella.",
+ "notebook.cell.executeAndFocusContainer": "Il comando Esegui cella{0} esegue la cella con lo stato attivo.",
+ "notebook.cell.focusInOutput": "Il comando Attiva output{0} imposterà l’attivazione nell'output della cella.",
+ "notebook.cell.insertCodeCellBelowAndFocusContainer": "I comandi Inserisci cella sopra{0} e Inserisci cella sotto{1} creeranno nuove celle di codice vuote.",
+ "notebook.cell.quitEdit": "Il comando Esci da modifica{0} imposterà l’attivazione sul contenitore di celle. Potrebbe essere necessario premere due volte il tasto predefinito (ESC) per uscire prima dal cursore virtuale, se attivo.",
+ "notebook.cellNavigation": "Le frecce su e giù spostano anche lo stato attivo tra le celle mentre sono attive nel contenitore delle celle esterne.",
+ "notebook.changeCellType": "I comandi Cambia cella in Codice/Markdown vengono usati per passare da un tipo di cella all'altro.",
+ "notebook.focusNextEditor": "Il comando Attiva editor cella successiva{0} imposterà l’attivazione nell'editor della cella successiva.",
+ "notebook.focusPreviousEditor": "Il comando Attiva editor cella precedente{0} imposterà l’attivazione nell'editor della cella precedente.",
+ "notebook.overview": "La visualizzazione blocco appunti è una raccolta di celle di codice e markdown. Le celle di codice possono essere eseguite e genereranno l'output direttamente sotto la cella."
+ },
+ "vs/workbench/contrib/notebook/browser/notebookAccessibilityProvider": {
+ "notebookTreeAriaLabel": "Notebook",
+ "notebookTreeAriaLabelHelp": "{0}\r\nUsare {1} per la Guida all'accessibilità",
+ "notebookTreeAriaLabelHelpNoKb": "{0}\r\nPer altre informazioni, eseguire il comando Apri Guida per l'accessibilità",
+ "replHistoryTreeAriaLabel": "Cronologia editor REPL"
+ },
"vs/workbench/contrib/notebook/browser/notebookEditor": {
"fail.noEditor": "Non è possibile aprire la risorsa con il tipo di editor di notebook '{0}'. Verificare che l'estensione corretta sia installata e abilitata.",
- "notebookOpenInTextEditor": "Apri nell'editor di testo"
+ "fail.noEditor.extensionMissing": "Non è possibile aprire la risorsa con il tipo di editor di notebook '{0}'. Verificare che l'estensione corretta sia installata e abilitata.",
+ "notebookOpenAsText": "Apri come testo",
+ "notebookOpenEnableMissingViewType": "Abilitare l'estensione per '{0}'",
+ "notebookOpenInTextEditor": "Apri nell'editor di testo",
+ "notebookOpenInstallMissingViewType": "Installare estensione per '{0}'",
+ "notebookTooLargeForHeapErrorWithSize": "Il blocco appunti non viene visualizzato nell'editor del blocco appunti perché è molto grande ({0}).",
+ "notebookTooLargeForHeapErrorWithoutSize": "Il blocco appunti non viene visualizzato nell'editor del blocco appunti perché è molto grande."
},
"vs/workbench/contrib/notebook/browser/notebookEditorWidget": {
"focusedCellBackground": "Colore di sfondo di una cella con lo stato attivo.",
@@ -7195,22 +12172,52 @@
"notebook.outputContainerBorderColor": "Colore del bordo del contenitore di output del notebook.",
"notebook.selectedCellBorder": "Colore del bordo superiore e inferiore della cella quando è selezionata ma non con lo stato attivo.",
"notebook.symbolHighlightBackground": "Colore di sfondo della cella evidenziata",
+ "notebookEditorOverviewRuler.runningCellForeground": "Colore dell'effetto cella in esecuzione nel righello delle annotazioni dell'editor di notebook.",
"notebookScrollbarSliderActiveBackground": "Colore di sfondo del cursore della barra di scorrimento del notebook quando si fa clic con il mouse.",
"notebookScrollbarSliderBackground": "Colore di sfondo del cursore della barra di scorrimento del notebook.",
"notebookScrollbarSliderHoverBackground": "Colore di sfondo del cursore della barra di scorrimento del notebook al passaggio del mouse.",
"notebookStatusErrorIcon.foreground": "Colore dell'icona di errore delle celle del notebook nella barra di stato delle celle.",
"notebookStatusRunningIcon.foreground": "Colore dell'icona di esecuzione delle celle del notebook nella barra di stato delle celle.",
"notebookStatusSuccessIcon.foreground": "Colore dell'icona di errore delle celle del notebook nella barra di stato delle celle.",
- "notebookTreeAriaLabel": "Notebook",
"selectedCellBackground": "Colore di sfondo di una cella quando viene selezionata."
},
- "vs/workbench/contrib/notebook/browser/notebookExecutionServiceImpl": {
- "notebookRunTrust": "L'esecuzione di una cella del blocco appunti eseguirà il codice da questa area di lavoro."
+ "vs/workbench/contrib/notebook/browser/notebookExtensionPoint": {
+ "Notebook id": "ID",
+ "Notebook mimetypes": "Tipi MIME",
+ "Notebook name": "Nome",
+ "Notebook renderer name": "Nome",
+ "contributes.notebook.provider": "Aggiunge come contributo il provider di documenti del notebook.",
+ "contributes.notebook.provider.displayName": "Nome leggibile del notebook.",
+ "contributes.notebook.provider.selector": "Set di GLOB per cui è viene usato il notebook.",
+ "contributes.notebook.provider.selector.filenamePattern": "GLOB per cui è abilitato il notebook.",
+ "contributes.notebook.provider.viewType": "Tipo di notebook.",
+ "contributes.notebook.renderer": "Aggiunge come contributo il provider di renderer di output del notebook.",
+ "contributes.notebook.renderer.displayName": "Nome leggibile del renderer di output del notebook.",
+ "contributes.notebook.renderer.entrypoint": "File da caricare nella Webview per eseguire il rendering dell'estensione.",
+ "contributes.notebook.renderer.entrypoint.extends": "Renderer esistente esteso da questo.",
+ "contributes.notebook.renderer.hardDependencies": "Elenco delle dipendenze del kernel richieste dal renderer. Se una delle dipendenze è presente in ' NotebookKernel. preloads ', è possibile usare il renderer.",
+ "contributes.notebook.renderer.optionalDependencies": "Elenco delle dipendenze del kernel soft di cui il renderer può avvalersi. Se una delle dipendenze è presente in `NotebookKernel.preloads`, il renderer verrà preferito rispetto ai renderer che non interagiscono con il kernel.",
+ "contributes.notebook.renderer.requiresMessaging": "Definisce la modalità e le circostanze in cui il renderer deve comunicare con un host di estensione tramite `createRendererMessaging`. I renderer con requisiti di messaggistica più robusti potrebbero non funzionare in tutti gli ambienti.",
+ "contributes.notebook.renderer.requiresMessaging.always": "La messaggistica è obbligatoria. Il renderer verrà usato solo quando fa parte di un'estensione che può essere eseguita in un host di estensione.",
+ "contributes.notebook.renderer.requiresMessaging.never": "Il renderer non richiede la messaggistica.",
+ "contributes.notebook.renderer.requiresMessaging.optional": "Il renderer è migliore con la messaggistica disponibile, ma non è obbligatorio.",
+ "contributes.notebook.renderer.viewType": "Identificatore univoco del renderer di output del notebook.",
+ "contributes.notebook.selector": "Set di GLOB per cui è viene usato il notebook.",
+ "contributes.notebook.selector.provider.excludeFileNamePattern": "GLOB per cui è disabilitato il notebook.",
+ "contributes.preload.entrypoint": "Percorso del file caricato nella visualizzazione Web.",
+ "contributes.preload.localResourceRoots": "Percorsi delle risorse aggiuntive che devono essere consentite nella webview.",
+ "contributes.preload.provider": "Aggiunge come contributo i precaricamenti del notebook.",
+ "contributes.preload.provider.viewType": "Tipo di notebook.",
+ "contributes.priority": "Controlla se l'editor personalizzato viene abilitato automaticamente quando l'utente apre un file. Gli utenti possono eseguirne l'override usando l'impostazione `workbench.editorAssociations`.",
+ "contributes.priority.default": "L'editor viene usato automaticamente quando l'utente apre una risorsa, purché non siano stati registrati altri editor personalizzati predefiniti per tale risorsa.",
+ "contributes.priority.option": "L'editor non viene usato automaticamente quando l'utente apre una risorsa, ma può passare all'editor usando il comando `Riapri con`.",
+ "notebookRenderer": "Renderer notebook",
+ "notebooks": "Notebooks"
},
"vs/workbench/contrib/notebook/browser/notebookIcons": {
"clearIcon": "Icona per cancellare l'output delle celle negli editor di notebook.",
"collapsedIcon": "Icona per annotare una sezione compressa negli editor di notebook.",
- "configureKernel": "Icona di configurazione nel widget di configurazione del kernel degli editor di notebook.",
+ "copyIcon": "Icona per copiare il contenuto negli Appunti",
"deleteCellIcon": "Icona per eliminare una cella negli editor di notebook.",
"editIcon": "Icona per modificare una cella negli editor di notebook.",
"errorStateIcon": "Icona per indicare uno stato di errore negli editor di notebook.",
@@ -7223,26 +12230,50 @@
"mimetypeIcon": "Icona per un tipo MIME negli editor di notebook.",
"moveDownIcon": "Icona per spostare verso il basso una cella negli editor di notebook.",
"moveUpIcon": "Icona per spostare verso l'alto una cella negli editor di notebook.",
+ "nextChangeIcon": "Icona per l'azione Modifica successiva nell'editor diff.",
"openAsTextIcon": "Icona per aprire il notebook in un editor di testo.",
"pendingStateIcon": "Icona per indicare uno stato in sospeso negli editor di blocco appunti.",
+ "previousChangeIcon": "Icona per l'azione Modifica precedente nell'editor diff.",
"renderOutputIcon": "Icona per eseguire il rendering dell'output nell'editor diff.",
"revertIcon": "Icona per il ripristino negli editor di notebook.",
+ "saveIcon": "Icona per salvare contenuti su disco",
"selectKernelIcon": "Icona di configurazione per selezionare un kernel negli editor di notebook.",
"splitCellIcon": "Icona per dividere una cella negli editor di notebook.",
"stopEditIcon": "Icona per arrestare la modifica di una cella negli editor di notebook.",
"stopIcon": "Icona per arrestare un'esecuzione negli editor di notebook.",
"successStateIcon": "Icona per indicare uno stato di operazione riuscita negli editor di notebook.",
- "unfoldIcon": "Icona per espandere una cella negli editor di notebook."
+ "toggleWhitespace": "Icona per l'azione di attivazione/disattivazione spazi vuoti nell'editor diff.",
+ "variablesViewIcon": "Icona della visualizzazione Variabili."
+ },
+ "vs/workbench/contrib/notebook/browser/outputEditor/notebookOutputEditor": {
+ "empty": "La cella non ha output",
+ "noRenderer.2": "Non è stato possibile trovare alcun renderer per l'output. Include i tipi MIME seguenti: {0}",
+ "notebookOutputEditor": "Editor di output del Blocco appunti"
+ },
+ "vs/workbench/contrib/notebook/browser/outputEditor/notebookOutputEditorInput": {
+ "notebookOutputEditorInput": "Anteprima di output del Blocco appunti"
+ },
+ "vs/workbench/contrib/notebook/browser/services/notebookExecutionServiceImpl": {
+ "notebookRunTrust": "L'esecuzione di una cella del blocco appunti eseguirà il codice da questa area di lavoro."
+ },
+ "vs/workbench/contrib/notebook/browser/services/notebookKernelHistoryServiceImpl": {
+ "workbench.notebook.clearNotebookKernelsMRUCache": "Cancellare cache MRU del kernel del notebook"
},
"vs/workbench/contrib/notebook/browser/services/notebookKeymapServiceImpl": {
"disableOtherKeymapsConfirmation": "Disabilitare altre mappature tastiera ({0}) per evitare conflitti tra tasti di scelta rapida?",
"no": "No",
"yes": "Sì"
},
+ "vs/workbench/contrib/notebook/browser/services/notebookLoggingServiceImpl": {
+ "renderChannelName": "Notebook"
+ },
+ "vs/workbench/contrib/notebook/browser/services/notebookServiceImpl": {
+ "notebookOpenInstallMissingViewType": "Installare estensione per '{0}'"
+ },
"vs/workbench/contrib/notebook/browser/view/cellParts/cellEditorOptions": {
"notebook.cell.toggleLineNumbers.title": "Mostra numeri di riga delle celle",
"notebook.lineNumbers": "Controlla la visualizzazione dei numeri di riga nell'editor celle.",
- "notebook.showLineNumbers": "Visualizzare i numeri di riga del blocco appunti",
+ "notebook.showLineNumbers": "Numeri di riga notebook",
"notebook.toggleLineNumbers": "Attivare o disattivare i numeri di riga del blocco appunti"
},
"vs/workbench/contrib/notebook/browser/view/cellParts/cellOutput": {
@@ -7261,7 +12292,7 @@
},
"vs/workbench/contrib/notebook/browser/view/cellParts/codeCellExecutionIcon": {
"notebook.cell.status.executing": "In esecuzione",
- "notebook.cell.status.failed": "Non riuscito",
+ "notebook.cell.status.failure": "Operazione non riuscita",
"notebook.cell.status.pending": "In sospeso",
"notebook.cell.status.success": "Operazione completata"
},
@@ -7277,122 +12308,173 @@
"hiddenCellsLabel": "1 cella nascosta...",
"hiddenCellsLabelPlural": "{0} celle nascoste..."
},
- "vs/workbench/contrib/notebook/browser/view/cellParts/markdownCell": {
+ "vs/workbench/contrib/notebook/browser/view/cellParts/markupCell": {
"cellExpandInputButtonLabel": "Espandi input delle celle ({0})",
"cellExpandInputButtonLabelWithDoubleClick": "Fare doppio clic per espandere l'input delle celle ({0})"
},
"vs/workbench/contrib/notebook/browser/view/renderers/backLayerWebView": {
"notebook.emptyMarkdownPlaceholder": "Cella Markdown vuota. Fare doppio clic o premere INVIO per modificare.",
- "notebook.error.rendererNotFound": "Non è stato trovato alcun renderer per '$0' a"
+ "notebook.error.rendererFallbacksExhausted": "Non è stato possibile eseguire il rendering del contenuto per '$0'",
+ "notebook.error.rendererNotFound": "Non è stato trovato alcun renderer per '$0'",
+ "webview title": "Contenuto visualizzazione Web notebook"
},
"vs/workbench/contrib/notebook/browser/view/renderers/cellRenderer": {
"cellExecutionOrderCountLabel": "Ordine di esecuzione"
},
- "vs/workbench/contrib/notebook/browser/viewParts/notebookKernelActionViewItem": {
- "select": "Selezionare Kernel"
+ "vs/workbench/contrib/notebook/browser/viewModel/notebookOutlineEntryFactory": {
+ "empty": "cella vuota"
+ },
+ "vs/workbench/contrib/notebook/browser/viewParts/notebookKernelQuickPickStrategy": {
+ "current1": "Attualmente selezionato",
+ "current2": "{0} - (attualmente selezionato)",
+ "installSuggestedKernel": "Installa/Abilita le estensioni suggerite",
+ "kernels.detecting": "Rilevamento dei kernel",
+ "kernels.selectedKernelAndKernelDetectionRunning": "Kernel selezionato: {0} (attività di rilevamento kernel in esecuzione)",
+ "learnMoreTooltip": "Altre informazioni",
+ "prompt.placeholder.change": "Cambia il kernel per ' {0}'",
+ "prompt.placeholder.select": "Selezionare Kernel per '{0}'",
+ "searchForKernels": "Sfogliare il marketplace per le estensioni del kernel",
+ "select": "Selezionare Kernel",
+ "selectAnotherKernel": "Selezionare un altro kernel",
+ "selectAnotherKernel.more": "Seleziona un altro kernel...",
+ "selectKernel.placeholder": "Digitare per scegliere un\\'origine kernel",
+ "selectKernelFromExtension": "Selezionare kernel da {0}"
+ },
+ "vs/workbench/contrib/notebook/browser/viewParts/notebookKernelView": {
+ "notebookActions.selectKernel": "Seleziona kernel del notebook",
+ "notebookActions.selectKernel.args": "Argomenti kernel del notebook"
+ },
+ "vs/workbench/contrib/notebook/browser/viewParts/notebookViewZones": {
+ "workbench.notebook.developer.addViewZones": "Attiva/Disattiva le zone di visualizzazione del Blocco appunti"
+ },
+ "vs/workbench/contrib/notebook/common/notebookEditorInput": {
+ "vetoAutoExtHostRestart": "Un blocco appunti fornito per l'estensione per '{0}' è ancora aperto che verrebbe chiuso in caso contrario.",
+ "vetoExtHostRestart": "Non è stato possibile salvare un blocco appunti fornito dall'estensione per '{0}'."
},
- "vs/workbench/contrib/notebook/common/notebookEditorModel": {
- "notebook.staleSaveError": "Il contenuto del file è cambiato nel disco. Aprire la versione aggiornata oppure sovrascrivere il file con le modifiche apportate?",
- "notebook.staleSaveError.overwrite.": "Sovrascrivi",
- "notebook.staleSaveError.revert": "Ripristina"
+ "vs/workbench/contrib/offline/browser/offline.contribution": {
+ "offline": "La rete sembra offline, alcune funzionalità potrebbero non essere disponibili.",
+ "statusBarOfflineBackground": "Colore di sfondo della barra di stato quando workbench è offline. La barra di stato viene mostrata nella parte inferiore della finestra",
+ "statusBarOfflineBorder": "Colore del bordo della barra di stato che separa la barra laterale dall'editor quando workbench è offline. La barra di stato viene mostrata nella parte inferiore della finestra",
+ "statusBarOfflineForeground": "Colore primo piano della barra di stato quando workbench è offline. La barra di stato viene mostrata nella parte inferiore della finestra"
},
"vs/workbench/contrib/outline/browser/outline.contribution": {
- "filteredTypes.array": "Se è abilitata, la struttura mostra i simboli relativi a `array`.",
- "filteredTypes.boolean": "Se è abilitata, la struttura mostra i simboli relativi a `boolean`.",
- "filteredTypes.class": "Se è abilitata, la struttura mostra i simboli relativi a `class`.",
- "filteredTypes.constant": "Se è abilitata, la struttura mostra i simboli relativi a `constant`.",
- "filteredTypes.constructor": "Se è abilitata, la struttura mostra i simboli relativi a `constructor`.",
- "filteredTypes.enum": "Se è abilitata, la struttura mostra i simboli relativi a `enum`.",
- "filteredTypes.enumMember": "Se è abilitata, la struttura mostra i simboli relativi a `enumMember`.",
- "filteredTypes.event": "Se è abilitata, la struttura mostra i simboli relativi a `event`.",
- "filteredTypes.field": "Se è abilitata, la struttura mostra i simboli relativi a `field`.",
- "filteredTypes.file": "Se è abilitata, la struttura mostra i simboli relativi a `file`.",
- "filteredTypes.function": "Se è abilitata, la struttura mostra i simboli relativi a `function`.",
- "filteredTypes.interface": "Se è abilitata, la struttura mostra i simboli relativi a `interface`.",
- "filteredTypes.key": "Se è abilitata, la struttura mostra i simboli relativi a `key`.",
- "filteredTypes.method": "Se è abilitata, la struttura mostra i simboli relativi a `method`.",
- "filteredTypes.module": "Se è abilitata, la struttura mostra i simboli relativi a `module`.",
- "filteredTypes.namespace": "Se è abilitata, la struttura mostra i simboli relativi a `namespace`.",
- "filteredTypes.null": "Se è abilitata, la struttura mostra i simboli relativi a `null`.",
- "filteredTypes.number": "Se è abilitata, la struttura mostra i simboli relativi a `number`.",
- "filteredTypes.object": "Se è abilitata, la struttura mostra i simboli relativi a `object`.",
- "filteredTypes.operator": "Se è abilitata, la struttura mostra i simboli relativi a `operator`.",
- "filteredTypes.package": "Se è abilitata, la struttura mostra i simboli relativi a `package`.",
- "filteredTypes.property": "Se è abilitata, la struttura mostra i simboli relativi a `property`.",
- "filteredTypes.string": "Se è abilitata, la struttura mostra i simboli relativi a `string`.",
- "filteredTypes.struct": "Se è abilitata, la struttura mostra i simboli relativi a `struct`.",
- "filteredTypes.typeParameter": "Se è abilitata, la struttura mostra i simboli relativi a `typeParameter`.",
- "filteredTypes.variable": "Se è abilitata, la struttura mostra i simboli relativi a `variable`.",
+ "filteredTypes.array": "Se è abilitata, la struttura mostra i simboli relativi a 'array'.",
+ "filteredTypes.boolean": "Se è abilitata, la struttura mostra i simboli relativi a 'boolean'.",
+ "filteredTypes.class": "Se è abilitata, la struttura mostra i simboli relativi a 'class'.",
+ "filteredTypes.constant": "Se è abilitata, la struttura mostra i simboli relativi a 'constant'.",
+ "filteredTypes.constructor": "Se è abilitata, la struttura mostra i simboli relativi a 'constructor'.",
+ "filteredTypes.enum": "Se è abilitata, la struttura mostra i simboli relativi a 'enum'.",
+ "filteredTypes.enumMember": "Se è abilitata, la struttura mostra i simboli relativi a 'enumMember'.",
+ "filteredTypes.event": "Se è abilitata, la struttura mostra i simboli relativi a 'event'.",
+ "filteredTypes.field": "Se è abilitata, la struttura mostra i simboli relativi a 'field'.",
+ "filteredTypes.file": "Se è abilitata, la struttura mostra i simboli relativi a 'file'.",
+ "filteredTypes.function": "Se è abilitata, la struttura mostra i simboli relativi a 'function'.",
+ "filteredTypes.interface": "Se è abilitata, la struttura mostra i simboli relativi a 'interface'.",
+ "filteredTypes.key": "Se è abilitata, la struttura mostra i simboli relativi a 'key'.",
+ "filteredTypes.method": "Se è abilitata, la struttura mostra i simboli relativi a 'method'.",
+ "filteredTypes.module": "Se è abilitata, la struttura mostra i simboli relativi a 'module'.",
+ "filteredTypes.namespace": "Se è abilitata, la struttura mostra i simboli relativi a 'namespace'.",
+ "filteredTypes.null": "Se è abilitata, la struttura mostra i simboli relativi a 'null'.",
+ "filteredTypes.number": "Se è abilitata, la struttura mostra i simboli relativi a 'number'.",
+ "filteredTypes.object": "Se è abilitata, la struttura mostra i simboli relativi a 'object'.",
+ "filteredTypes.operator": "Se è abilitata, la struttura mostra i simboli relativi a 'operator'.",
+ "filteredTypes.package": "Se è abilitata, la struttura mostra i simboli relativi a 'package'.",
+ "filteredTypes.property": "Se è abilitata, la struttura mostra i simboli relativi a 'property'.",
+ "filteredTypes.string": "Se è abilitata, la struttura mostra i simboli relativi a 'string'.",
+ "filteredTypes.struct": "Se è abilitata, la struttura mostra i simboli relativi a 'struct'.",
+ "filteredTypes.typeParameter": "Se è abilitata, la struttura mostra i simboli relativi a 'typeParameter'.",
+ "filteredTypes.variable": "Se è abilitata, la struttura mostra i simboli relativi a 'variable'.",
"name": "Struttura",
- "outline.problem.colors": "Usa i colori per errori e avvisi.",
- "outline.problems.badges": "Usa le notifiche per errori e avvisi.",
- "outline.showIcons": "Esegui il rendering degli elementi di contorno con le icone.",
- "outline.showProblem": "Mostra errori e avvisi su elementi della struttura.",
+ "outline.initialState": "Controlla se gli elementi della struttura sono compressi o espansi.",
+ "outline.initialState.collapsed": "Comprimi tutti gli elementi.",
+ "outline.initialState.expanded": "Espandi tutti gli elementi.",
+ "outline.problem.colors": "Usare i colori per errori e avvisi sugli elementi della struttura. Sovrascritto da {0} quando è disattivato.",
+ "outline.problems.badges": "Usare le notifiche per errori e avvisi sugli elementi della struttura. Sovrascritto da {0} quando è disattivato.",
+ "outline.showIcons": "Esegue il rendering degli elementi della struttura con icone.",
+ "outline.showProblem": "Mostrare errori e avvisi sugli elementi della struttura. Sovrascritto da {0} quando è disattivato.",
"outlineConfigurationTitle": "Struttura",
"outlineViewIcon": "Icona della visualizzazione Struttura."
},
- "vs/workbench/contrib/outline/browser/outlinePane": {
+ "vs/workbench/contrib/outline/browser/outlineActions": {
"collapse": "Comprimi tutto",
+ "expand": "Espandi tutto",
"filterOnType": "Filtra per tipo",
"followCur": "Segui il cursore",
- "loading": "Caricamento dei simboli del documento per '{0}'...",
- "no-editor": "L'editor attivo non può fornire informazioni sulla struttura.",
- "no-symbols": "Non sono stati trovati simboli nel documento '{0}'",
"sortByKind": "Ordina per: Categoria",
"sortByName": "Ordina per: Nome",
"sortByPosition": "Ordina Per: Posizione"
},
- "vs/workbench/contrib/output/browser/logViewer": {
- "logViewerAriaLabel": "Visualizzatore Log"
+ "vs/workbench/contrib/outline/browser/outlinePane": {
+ "loading": "Caricamento dei simboli del documento per '{0}'...",
+ "no-editor": "L'editor attivo non può fornire informazioni sulla struttura.",
+ "no-symbols": "Non sono stati trovati simboli nel documento '{0}'"
},
"vs/workbench/contrib/output/browser/output.contribution": {
+ "addCompoundLog": "Aggiungi log composto...",
+ "clearFiltersText": "Cancella filtri testo",
"clearOutput.label": "Cancella output",
- "logViewer": "Visualizzatore Log",
+ "exportLogs": "Esporta i log...",
+ "extensionLogs": "Log estensioni",
+ "importLog": "Importa log...",
+ "importLogFile": "Importa file di log",
+ "logFile": "ID del file di log da aprire, ad esempio '\"window\"'. Attualmente il modo migliore per ottenere questo valore consiste nell’ottener l'ID controllando i comandi `workbench.action.output.show.`.",
+ "logFiles": "File di log",
+ "logLevel.label": "Imposta livello log...",
+ "logLevelDefault.label": "Imposta come predefinito",
"miToggleOutput": "&&Output",
- "openActiveLogOutputFile": "Apri file di output del log",
- "openLogFile": "Apri file di Log...",
+ "nocustumoutput": "Nessun output personalizzato da rimuovere.",
+ "openActiveOutputFile": "Apri output nell'editor",
+ "openActiveOutputFileInNewWindow": "Apri output in una nuova finestra",
+ "openLogFile": "Apri log...",
"output": "Output",
"output.smartScroll.enabled": "Abilita/Disabilita lo scorrimento intelligente nella visualizzazione di output. Lo scorrimento intelligente consente di bloccare automaticamente lo scorrimento quando si fa clic nella visualizzazione di output e di sbloccarlo quando si fa clic nell'ultima riga.",
- "outputCleared": "L'output è stato cancellato",
"outputScrollOff": "Disattiva scorrimento automatico",
"outputScrollOn": "Attiva scorrimento automatico",
"outputViewIcon": "Icona della visualizzazione Output.",
+ "removeLog": "Rimuovi output...",
+ "saveActiveOutputAs": "Salva output con nome...",
+ "selectOutput": "Seleziona canale di output",
"selectlog": "Seleziona il log",
"selectlogFile": "Seleziona file di log",
"showLogs": "Mostra log...",
- "switchToOutput.label": "Passa all'output",
- "toggleAutoScroll": "Attiva/disattiva scorrimento automatico"
+ "showOutputChannels": "Mostra canali di output...",
+ "switchBetweenOutputs.label": "Cambia output",
+ "switchToOutput.label": "Cambia output",
+ "toggleAutoScroll": "Attiva/disattiva scorrimento automatico",
+ "toggleTraceDescription": "Mostra o nasconde {0} messaggi nell'output",
+ "userLogs": "Log utente"
+ },
+ "vs/workbench/contrib/output/browser/outputServices": {
+ "saveLog.dialogTitle": "Salva output con nome"
},
"vs/workbench/contrib/output/browser/outputView": {
"channel": "Canale Output per '{0}'",
- "logChannel": "Log ({0})",
"output": "Output",
"output model title": "{0} - Output",
- "outputChannels": "Canali di uscita",
- "outputViewAriaLabel": "Pannello di output",
- "outputViewWithInputAriaLabel": "{0}, Pannello di output"
+ "outputView.filter.placeholder": "Filtro",
+ "outputViewAriaLabel": "Pannello di output"
},
"vs/workbench/contrib/performance/browser/performance.contribution": {
+ "cycles": "Cicli del servizio di stampa",
+ "emitter": "Profili emettitore di stampa",
+ "insta.trace": "Analisi del servizio di stampa",
"show.label": "Prestazioni all'avvio"
},
"vs/workbench/contrib/performance/browser/perfviewEditor": {
"name": "Prestazioni all'avvio"
},
- "vs/workbench/contrib/performance/electron-sandbox/startupProfiler": {
+ "vs/workbench/contrib/performance/electron-browser/performance.contribution": {
+ "experimental.rendererProfiling": "Se abilitati, i renderer lenti vengono profilati automaticamente."
+ },
+ "vs/workbench/contrib/performance/electron-browser/startupProfiler": {
"prof.detail": "Creare un problema e allegare manualmente i file seguenti:\r\n{0}",
"prof.detail.restart": "È necessario un riavvio finale per continuare a usare '{0}'. Grazie per il contributo.",
"prof.message": "I profili sono stati creati.",
- "prof.restart": "&&Riavvia",
+ "prof.restart": "Riavvia",
"prof.restart.button": "&&Riavvia",
"prof.restartAndFileIssue": "&&Crea problema e riavvia",
"prof.thanks": "Grazie per l'aiuto."
},
- "vs/workbench/contrib/preferences/browser/keybindingWidgets": {
- "defineKeybinding.chordsTo": "premi contemporaneamente per",
- "defineKeybinding.existing": "Questo tasto di scelta rapida è assegnato a {0} comandi esistenti",
- "defineKeybinding.initial": "Premere la combinazione di tasti desiderata, quindi INVIO.",
- "defineKeybinding.oneExists": "Questo tasto di scelta rapida è assegnato a 1 comando esistente"
- },
"vs/workbench/contrib/preferences/browser/keybindingsEditor": {
"SearchKeybindings.FullTextSearchPlaceholder": "Digitare per cercare nei tasti di scelta rapida",
"SearchKeybindings.KeybindingsSearchPlaceholder": "Registrazione dei tasti. Premere ESC per uscire",
@@ -7409,10 +12491,13 @@
"editKeybindingLabelWithKey": "Cambia tasto di scelta rapida {0}",
"editWhen": "Cambia espressione when",
"error": "Si è verificato l'errore '{0}' durante la modifica del tasto di scelta rapida. Aprire il file 'keybindings.json' e verificare la presenza di errori.",
+ "extension label": "Estensione ({0})",
+ "foundResults": "{0} risultati",
"keybinding": "Tasto di scelta rapida",
"keybindingsLabel": "Tasti di scelta rapida",
- "noKeybinding": "Non è stato assegnato alcun tasto di scelta rapida.",
- "noWhen": "Non esiste alcun contesto per Quando.",
+ "keyboard shortcuts aria label": "usare lo spazio o INVIO per modificare il tasto di scelta rapida.",
+ "noKeybinding": "Nessun tasto di scelta rapida assegnato",
+ "noWhen": "Nessun contesto “Quando” definito",
"recordKeysLabel": "Registra tasti",
"recording": "Registrazione dei tasti",
"removeLabel": "Rimuovi tasto di scelta rapida",
@@ -7423,25 +12508,44 @@
"sortByPrecedeneLabel": "Ordina per precedenza (prima il più alto)",
"source": "ORIGINE",
"title": "{0} ({1})",
- "when": "Quando",
- "whenContextInputAriaLabel": "Digitare il contesto per when. Premere INVIO per confermare oppure ESC per annullare."
+ "when": "Quando"
},
"vs/workbench/contrib/preferences/browser/keybindingsEditorContribution": {
"defineKeybinding.kbLayoutErrorMessage": "Non sarà possibile produrre questa combinazione di tasti con il layout di tastiera corrente.",
"defineKeybinding.kbLayoutLocalAndUSMessage": "**{0}** per il layout di tastiera corrente (**{1}** per quello standard US).",
- "defineKeybinding.kbLayoutLocalMessage": "**{0}** per il layout di tastiera corrente.",
- "defineKeybinding.start": "Definisci tasto di scelta rapida"
+ "defineKeybinding.kbLayoutLocalMessage": "**{0}** per il layout di tastiera corrente."
+ },
+ "vs/workbench/contrib/preferences/browser/keybindingWidgets": {
+ "defineKeybinding.chordsTo": "premi contemporaneamente per",
+ "defineKeybinding.existing": "Questo tasto di scelta rapida è assegnato a {0} comandi esistenti",
+ "defineKeybinding.initial": "Premere la combinazione di tasti desiderata, quindi INVIO.",
+ "defineKeybinding.oneExists": "Questo tasto di scelta rapida è assegnato a 1 comando esistente"
+ },
+ "vs/workbench/contrib/preferences/browser/keyboardLayoutPicker": {
+ "autoDetect": "Rilevamento automatico",
+ "configureKeyboardLayout": "Configurare layout di tastiera",
+ "displayLanguage": "Definisce il layout di tastiera usato in VS Code nell'ambiente del browser.",
+ "doc": "Aprire VS Code ed eseguire \"Developer: Inspect Key Mappings (JSON)\" dal riquadro comandi.",
+ "fail.createSettings": "Non è possibile creare '{0}' ({1}).",
+ "keyboard.chooseLayout": "Cambiare layout di tastiera",
+ "keyboardLayout": "Layout: {0}",
+ "layoutPicks": "Layout di tastiera ({0})",
+ "pickKeyboardLayout": "Selezionare layout di tastiera",
+ "status.workbench.keyboardLayout": "Layout di tastiera"
},
"vs/workbench/contrib/preferences/browser/preferences.contribution": {
- "Keyboard Shortcuts": "Tasti di scelta rapida",
"clear": "Cancella risultati della ricerca",
"clearHistory": "Cancella cronologia ricerche scelte rapide da tastiera",
+ "defineKeybinding.start": "Definisci tasto di scelta rapida",
"filterUntrusted": "Mostrare le impostazioni dell'area di lavoro non attendibili",
"keybindingsEditor": "Editor tasti di scelta rapida",
+ "keyboardShortcuts": "Tasti di scelta rapida",
"miOpenOnlineSettings": "Impostazioni servizi &&online",
"miOpenSettings": "&&Impostazioni",
+ "miOpenTelemetrySettings": "&&Impostazioni di telemetria",
"miPreferences": "&&Preferenze",
- "openCurrentProfileSettingsJson": "Apri impostazioni profilo corrente (JSON)",
+ "openAccessibilitySettings": "Apri impostazioni accessibilità",
+ "openApplicationSettingsJson": "Apri impostazioni applicazione (JSON)",
"openDefaultKeybindingsFile": "Apri tasti di scelta rapida predefiniti (JSON)",
"openFolderSettings": "Apri impostazioni cartella",
"openFolderSettingsFile": "Apri impostazioni cartella (JSON)",
@@ -7457,6 +12561,7 @@
"openWorkspaceSettings": "Apri impostazioni area di lavoro",
"openWorkspaceSettingsFile": "Apri impostazioni area di lavoro (JSON)",
"preferences": "Preferenze",
+ "preferencesEditor": "Editor Preferenze",
"settings": "Impostazioni",
"settings.clearResults": "Cancella risultati della ricerca impostazioni",
"settings.focusFile": "Sposta lo stato attivo sul file di impostazioni",
@@ -7466,42 +12571,51 @@
"settings.focusSettingsList": "Sposta lo stato attivo sull'elenco impostazioni",
"settings.focusSettingsTOC": "Sposta stato attivo sul sommario impostazioni",
"settings.showContextMenu": "Mostra il menu di scelta rapida impostazioni",
+ "settings.toggleAiSearch": "Attiva/Disattiva ricerca impostazioni IA",
"settingsEditor2": "Editor impostazioni 2",
- "showDefaultKeybindings": "Mostra tasti di scelta rapida predefiniti",
+ "showDefaultKeybindings": "Mostra tasti di scelta rapida di sistema",
"showExtensionKeybindings": "Mostra tasti di scelta rapida dell'estensione",
- "showTelemtrySettings": "Impostazioni di telemetria",
- "showUserKeybindings": "Mostra tasti di scelta rapida utente"
+ "showUserKeybindings": "Mostra tasti di scelta rapida utente",
+ "workbench.action.openSettingsJson.description": "Apre il file JSON contenente le impostazioni correnti del profilo utente"
},
"vs/workbench/contrib/preferences/browser/preferencesActions": {
"configureLanguageBasedSettings": "Configura impostazioni specifiche del linguaggio...",
"languageDescriptionConfigured": "({0})",
"pickLanguage": "Seleziona linguaggio"
},
+ "vs/workbench/contrib/preferences/browser/preferencesEditor": {
+ "FullTextSearchPlaceholder": "Cerca {0}",
+ "preferencesTabSwitcherBarAriaLabel": "Selettore scheda Preferenze"
+ },
"vs/workbench/contrib/preferences/browser/preferencesIcons": {
"keybindingsAddIcon": "Icona per l'azione di aggiunta nell'interfaccia utente del tasto di scelta rapida.",
"keybindingsEditIcon": "Icona per l'azione di modifica nell'interfaccia utente del tasto di scelta rapida.",
"keybindingsRecordKeysIcon": "Icona per l'azione 'Registra tasti' nell'interfaccia utente del tasto di scelta rapida.",
"keybindingsSortIcon": "Icona per l'interruttore 'Ordina per Precedenza' nell'interfaccia utente del tasto di scelta rapida.",
+ "preferencesAiResults": "Icona per visualizzare i risultati IA nell'interfaccia utente delle impostazioni.",
"preferencesClearInput": "Icona per cancellare l'input nell'interfaccia utente di Impostazioni e tasti di scelta rapida.",
"preferencesDiscardIcon": "Icona per l'azione di rimozione nell'interfaccia utente di Impostazioni.",
"preferencesOpenSettings": "Icona per aprire i comandi delle impostazioni.",
- "settingsAddIcon": "Icona per l'azione di aggiunta nell'interfaccia utente di Impostazioni.",
"settingsEditIcon": "Icona per l'azione di modifica nell'interfaccia utente di Impostazioni.",
"settingsFilter": "Icona per il pulsante che suggerisce i filtri per l'interfaccia utente impostazioni.",
- "settingsGroupCollapsedIcon": "Icona per una sezione compressa nell'Editor impostazioni JSON diviso.",
- "settingsGroupExpandedIcon": "Icona per una sezione espansa nell'Editor impostazioni JSON diviso.",
"settingsMoreActionIcon": "Icona per l'azione 'Altre azioni' nell'interfaccia utente di Impostazioni.",
"settingsRemoveIcon": "Icona per l'azione di rimozione nell'interfaccia utente di Impostazioni.",
"settingsScopeDropDownIcon": "Icona per il pulsante a discesa della cartella nell'Editor impostazioni JSON diviso."
},
"vs/workbench/contrib/preferences/browser/preferencesRenderers": {
+ "allProfileSettingWhileInNonDefaultProfileSetting": "Non è possibile applicare questa impostazione perché è configurata per l'applicazione in tutti i profili con l'impostazione {0}. Verrà invece usato il valore del profilo predefinito.",
"copyDefaultValue": "Copia nelle impostazioni",
"defaultProfileSettingWhileNonDefaultActive": "Non è possibile applicare questa impostazione mentre è attivo un profilo non predefinito. Verrà applicato quando il profilo predefinito è attivo.",
"editTtile": "Modifica",
"manage workspace trust": "Gestire attendibilità dell'area di lavoro",
+ "mcp.renderer.openRemoteConfig": "Apri configurazione MCP per l'utente remoto",
+ "mcp.renderer.openUserConfig": "Apri configurazione MCP per l'utente",
+ "mcp.renderer.remoteConfigFound": "I server MCP non devono essere configurati nelle impostazioni utente remoto. Utilizzare invece la configurazione MCP dedicata.",
+ "mcp.renderer.userConfigFound": "I server MCP non devono essere configurati nelle impostazioni utente. Utilizzare invece la configurazione MCP dedicata.",
"replaceDefaultValue": "Sostituisci nelle impostazioni",
"unknown configuration setting": "Impostazione di configurazione sconosciuta",
- "unsupportedApplicationSetting": "Questa impostazione ha un ambito di applicazione e può essere impostata solo nel file di impostazioni utente.",
+ "unsupportLanguageOverrideSetting": "Impossibile applicare questa impostazione perché non è registrata come impostazione di sostituzione della lingua.",
+ "unsupportedApplicationSetting": "Questa impostazione ha un ambito di applicazione e può essere impostata solo nel file delle impostazioni del profilo predefinito.",
"unsupportedMachineSetting": "Questa impostazione può essere applicata solo nelle impostazioni utente nella finestra locale o nelle impostazioni dell'ambiente remoto nella finestra dell'ambiente remoto.",
"unsupportedPolicySetting": "Impossibile applicare questa impostazione perché è configurata nei criteri di sistema.",
"unsupportedProperty": "Proprietà non supportata",
@@ -7523,13 +12637,20 @@
"filterInput": "Impostazioni filtro",
"lastSyncedLabel": "Ultima sincronizzazione: {0}",
"moreThanOneResult": "{0} impostazioni trovate",
+ "moreThanOneResultWithAiAvailable": "{0} impostazioni trovate. Risultati IA disponibili",
+ "noAiResults": "Al momento non sono disponibili risultati IA.",
"noResults": "Non sono state trovate impostazioni",
+ "noResultsWithAiAvailable": "Non sono state trovate impostazioni. Risultati IA disponibili",
"oneResult": "1 impostazione trovata",
+ "oneResultWithAiAvailable": "1 impostazione trovata. Risultati IA disponibili",
"settings": "Impostazioni",
"settings require trust": "Attendibilità dell'area di lavoro",
- "turnOnSyncButton": "Attiva Sincronizzazione impostazioni"
+ "showAiResultsDisabled": "Al momento non sono disponibili risultati dell'IA...",
+ "showAiResultsEnabled": "Mostra risultati consigliati dall'IA",
+ "turnOnSyncButton": "Impostazioni di backup e sincronizzazione"
},
"vs/workbench/contrib/preferences/browser/settingsEditorSettingIndicators": {
+ "advancedLabel": "Avanzate",
"alsoConfiguredElsewhere": "Modificata anche altrove",
"alsoConfiguredIn": "Modificato anche in",
"alsoModifiedInScopes": "L'impostazione è stata modificata anche nei seguenti ambiti:",
@@ -7538,32 +12659,47 @@
"applicationSettingDescriptionAccessible": "Valore di impostazione mantenuto durante il cambio profilo",
"configuredElsewhere": "Modificata altrove",
"configuredIn": "Modificato in",
- "defaultOverriddenDetails": "Valore predefinito sostituito da {0}",
+ "defaultOverriddenDetails": "Valore dell’impostazione predefinito sostituito da ‘{0}’",
"defaultOverriddenDetailsAriaLabel": "{0} sostituisce il valore predefinito",
"defaultOverriddenLabel": "Valore predefinito modificato",
"defaultOverriddenLanguagesList": "Esistono valori predefiniti specifici della lingua per {0}",
+ "experimentalLabel": "Sperimentale",
"extensionSyncIgnoredLabel": "Non sincronizzato",
"hasDefaultOverridesForLanguages": "Le lingue seguenti presentano override predefiniti:",
+ "manageWorkspaceTrust": "Gestire attendibilità dell'area di lavoro",
"modifiedInScopeForLanguage": "Ambito {0} per {1}",
"modifiedInScopeForLanguageMidSentence": "ambito {0} per {1}",
"modifiedInScopes": "L'impostazione è stata modificata nei seguenti ambiti:",
+ "multipleDefaultOverriddenDetailsAriaLabel": "Ignora il valore predefinito {0}",
+ "multipledefaultOverriddenDetails": "Un valore predefinito è stato impostato da {0}",
+ "policyDescription": "Questa impostazione è gestita dall'organizzazione e il relativo valore applicato non può essere modificato.",
+ "policyDescriptionAccessible": "Gestito dai criteri dell'organizzazione. Valore dell'impostazione non applicato",
+ "policyFilterLink": "Impostazioni di visualizzazione del criterio",
+ "policyLabelText": "Gestito dall'organizzazione",
+ "previewLabel": "Anteprima",
"remote": "Remoto",
"syncIgnoredAriaLabel": "Impostazione ignorata durante la sincronizzazione",
"syncIgnoredTitle": "Questa impostazione viene ignorata durante la sincronizzazione",
+ "trustLabel": "Il valore dell'impostazione può essere applicato solo in un'area di lavoro attendibile.",
"user": "Utente",
- "workspace": "Area di lavoro"
+ "workspace": "Area di lavoro",
+ "workspaceUntrustedAriaLabel": "Area di lavoro non attendibile. Valore dell'impostazione non applicato",
+ "workspaceUntrustedLabel": "Richiede l'attendibilità dell'area di lavoro"
},
"vs/workbench/contrib/preferences/browser/settingsLayout": {
+ "accessibility": "Accessibilità",
+ "accessibility.signals": "Segnali di accessibilità",
"appearance": "Aspetto",
"application": "Applicazione",
- "audioCues": "Segnali audio",
"breadcrumbs": "Percorsi di navigazione",
+ "chat": "Chat",
"comments": "Commenti",
"commonlyUsed": "Più usate",
"cursor": "Cursore",
"debug": "Debug",
"diffEditor": "Editor diff",
"editorManagement": "Gestione editor",
+ "experimental": "Sperimentale",
"extensions": "Estensioni",
"features": "Funzionalità",
"fileExplorer": "Esplora risorse",
@@ -7571,10 +12707,14 @@
"find": "Trova",
"font": "Tipo di carattere",
"formatting": "Formattazione",
+ "issueReporter": "Segnalazione problemi",
"keyboard": "Tastiera",
+ "mergeEditor": "Editor merge",
"minimap": "Minimappa",
+ "multiDiffEditor": "Editor diff multi file",
"newWindow": "Nuova finestra",
"notebook": "Notebook",
+ "other": "Altro",
"output": "Output",
"problems": "Problemi",
"proxy": "Proxy",
@@ -7599,51 +12739,67 @@
"zenMode": "Modalità Zen"
},
"vs/workbench/contrib/preferences/browser/settingsSearchMenu": {
+ "advancedSettingsSearch": "Avanzate",
+ "advancedSettingsSearchTooltip": "Mostra le impostazioni avanzate",
+ "experimental": "Sperimentale",
+ "experimentalSettingsSearchTooltip": "Mostra le impostazioni sperimentali",
"extSettingsSearch": "ID estensione...",
"extSettingsSearchTooltip": "Aggiungi filtro ID estensione",
"featureSettingsSearch": "Caratteristica...",
"featureSettingsSearchTooltip": "Aggiungi filtro funzionalità",
+ "idSettingsSearch": "ID impostazione...",
+ "idSettingsSearchTooltip": "Aggiungi filtro ID impostazione",
"langSettingsSearch": "Lingua...",
"langSettingsSearchTooltip": "Aggiungi filtro ID lingua",
"modifiedSettingsSearch": "Modificato",
"modifiedSettingsSearchTooltip": "Aggiungi o rimuovi il filtro delle impostazioni modificate",
"onlineSettingsSearch": "Servizi online",
"onlineSettingsSearchTooltip": "Mostra impostazioni per i servizi online",
- "policySettingsSearch": "Servizi criteri",
- "policySettingsSearchTooltip": "Mostra impostazioni per i servizi online",
+ "policySettingsSearch": "Criteri dell'organizzazione",
+ "policySettingsSearchTooltip": "Mostra le impostazioni dei criteri dell'organizzazione",
+ "previewSettings": "Anteprima",
+ "previewSettingsSearchTooltip": "Mostra le impostazioni di anteprima",
+ "stableSettings": "Stabile",
+ "stableSettingsSearchTooltip": "Mostra le impostazioni stabili",
"tagSettingsSearch": "Tag...",
"tagSettingsSearchTooltip": "Aggiungi un filtro per i tag"
},
"vs/workbench/contrib/preferences/browser/settingsTree": {
+ "applyToAllProfiles": "Applica impostazione a tutti i profili",
"copySettingAsJSONLabel": "Copia impostazione come JSON",
+ "copySettingAsURLLabel": "Copia impostazione come URL",
"copySettingIdLabel": "Copia ID impostazione",
+ "dismiss": "Ignora",
"editInSettingsJson": "Modifica in settings.json",
"editLanguageSettingLabel": "Modifica impostazioni per {0}",
"extensions": "Estensioni",
- "manageWorkspaceTrust": "Gestire attendibilità dell'area di lavoro",
"modified": "L'impostazione è stata configurata nell'ambito corrente.",
"newExtensionsButtonLabel": "Mostra le estensioni corrispondenti",
- "policyLabel": "Questa impostazione è gestita dall’organizzazione.",
"resetSettingLabel": "Reimposta impostazione",
"settings": "Impostazioni",
"settings.Default": "impostazione predefinita",
"settings.Modified": "Modificate.",
"settingsContextMenuTitle": "Altre azioni...",
+ "showExtension": "Mostra estensione",
"stopSyncingSetting": "Sincronizza questa impostazione",
- "trustLabel": "Questa opzione può essere applicata solo a un'area di lavoro attendibile.",
- "validationError": "Errore di convalida.",
- "viewPolicySettings": "Impostazioni di visualizzazione del criterio"
+ "validationError": "Errore di convalida."
},
"vs/workbench/contrib/preferences/browser/settingsWidgets": {
"addItem": "Aggiungi elemento",
"addPattern": "Aggiungi criterio",
"cancelButton": "Annulla",
"editExcludeItem": "Modifica elemento di esclusione",
+ "editIncludeItem": "Modifica elemento di inclusione",
"editItem": "Modifica elemento",
+ "excludeIncludeSource": ". Valore predefinito fornito da `{0}`",
"excludePatternHintLabel": "Escludi i file corrispondenti a '{0}'",
"excludePatternInputPlaceholder": "Escludi criterio...",
"excludeSiblingHintLabel": "Escludi i file corrispondenti a '{0}', solo quando è presente un file corrispondente a '{1}'",
"excludeSiblingInputPlaceholder": "Quando il criterio è presente...",
+ "includePatternHintLabel": "Includi i file corrispondenti a '{0}'",
+ "includePatternInputPlaceholder": "Includi modello...",
+ "includeSiblingHintLabel": "Includi i file corrispondenti a '{0}', solo quando è presente un file corrispondente a '{1}'",
+ "includeSiblingInputPlaceholder": "Quando il criterio è presente...",
"itemInputPlaceholder": "Elemento...",
"listSiblingHintLabel": "Voce di elenco `{0}` con elemento di pari livello `${1}`",
"listSiblingInputPlaceholder": "Elemento di pari livello...",
@@ -7651,10 +12807,12 @@
"objectKeyHeader": "Elemento",
"objectKeyInputPlaceholder": "Chiave",
"objectPairHintLabel": "La proprietà `{0}` è impostata su `{1}`.",
+ "objectPairHintLabelWithSource": "La proprietà `{0}` è impostata su `{1}` da `{2}`.",
"objectValueHeader": "Valore",
"objectValueInputPlaceholder": "Valore",
"okButton": "OK",
"removeExcludeItem": "Rimuovi elemento Exclude",
+ "removeIncludeItem": "Rimuovi elemento di inclusione",
"removeItem": "Rimuovi elemento",
"resetItem": "Reimposta elemento"
},
@@ -7662,10 +12820,15 @@
"groupRowAriaLabel": "{0}, gruppo",
"settingsTOC": "Sommario impostazioni"
},
+ "vs/workbench/contrib/preferences/common/preferences": {
+ "advancedIndicatorDescription": "Impostazione avanzata: questa opzione è pensata per scenari e configurazioni avanzati. Modificarla solo se si sa esattamente cosa fa.",
+ "experimentalIndicatorDescription": "Impostazione sperimentale: questa impostazione controlla una nuova funzionalità in fase di sviluppo e potrebbe essere instabile. È soggetta a modifica o rimozione.",
+ "previewIndicatorDescription": "Impostazione in anteprima: questa impostazione controlla una nuova funzionalità ancora in fase di perfezionamento ma pronta per l'uso. Il feedback è bene accetto."
+ },
"vs/workbench/contrib/preferences/common/preferencesContribution": {
"enableNaturalLanguageSettingsSearch": "Controlla se abilitare la modalità di ricerca in linguaggio naturale per le impostazioni. La ricerca in linguaggio naturale è fornita da un servizio Microsoft online.",
- "settingsSearchTocBehavior": "Controlla il comportamento del sommario dell'editor impostazioni durante la ricerca.",
- "settingsSearchTocBehavior.filter": "Filtra il sommario in modo da visualizzare solo le categorie con impostazioni corrispondenti. Fare clic su una categoria per filtrare i risultati in base a tale categoria.",
+ "settingsSearchTocBehavior": "Controlla il comportamento del sommario dell'editor impostazioni durante la ricerca. Se si modifica questa impostazione nell'editor impostazioni, l'impostazione avrà effetto dopo la modifica della query di ricerca.",
+ "settingsSearchTocBehavior.filter": "Filtra il sommario in modo da visualizzare solo le categorie con impostazioni corrispondenti. Se si fa clic su una categoria, verranno filtrati i risultati per tale categoria.",
"settingsSearchTocBehavior.hide": "Nasconde il sommario durante la ricerca.",
"splitSettingsEditorLabel": "Dividi Editor impostazioni"
},
@@ -7686,28 +12849,45 @@
"settingsDropdownForeground": "Primo piano dell'elenco a discesa dell'editor impostazioni.",
"settingsDropdownListBorder": "Bordo dell'elenco a discesa dell'editor impostazioni. Racchiude le opzioni e le separa dalla descrizione.",
"settingsHeaderBorder": "Colore del bordo del contenitore dell'intestazione.",
+ "settingsHeaderHoverForeground": "Colore primo piano di un'intestazione di sezione o un titolo attivo.",
"settingsSashBorder": "Colore del bordo della barra di divisione dell'editor delle impostazioni.",
"textInputBoxBackground": "Sfondo della casella di input di testo dell'editor impostazioni.",
"textInputBoxBorder": "Bordo della casella di input di testo dell'editor impostazioni.",
"textInputBoxForeground": "Primo piano della casella di input di testo dell'editor impostazioni."
},
- "vs/workbench/contrib/profiles/common/profilesActions": {
- "confiirmation message": "In questo modo verranno sostituite le impostazioni correnti. Continuare?",
- "export profile": "Esporta Impostazioni come profilo...",
- "export profile dialog": "Salva profilo",
- "export success": "{0}: Esportazione completata.",
- "import profile": "Importare le impostazioni da un profilo...",
- "import profile dialog": "Importa profilo",
- "import profile placeholder": "Specificare l'URL del profilo o selezionare il file di profilo da importare",
- "import profile quick pick title": "Importare le impostazioni da un profilo",
- "import profile title": "Importare le impostazioni da un profilo",
- "select from file": "Importare dal file del profilo",
- "select from url": "Importa da URL"
+ "vs/workbench/contrib/processExplorer/browser/processExplorer.contribution": {
+ "miOpenProcessExplorerer": "Apri &&Esplora processo",
+ "openProcessExplorer": "Apri Esplora processo",
+ "promptOpenWith.processExplorer.displayName": "Esplora processo"
+ },
+ "vs/workbench/contrib/processExplorer/browser/processExplorer.web.contribution": {
+ "processExplorer": "Esplora processo"
+ },
+ "vs/workbench/contrib/processExplorer/browser/processExplorerControl": {
+ "copy": "Copia",
+ "copyAll": "Copia tutto",
+ "debug": "Debug",
+ "forceKillProcess": "Forza terminazione del processo",
+ "killProcess": "Termina processo",
+ "processCpu": "CPU (%)",
+ "processExplorer": "Esplora processo",
+ "processMemory": "Memoria (MB)",
+ "processName": "Nome del processo",
+ "processPid": "PID"
+ },
+ "vs/workbench/contrib/processExplorer/browser/processExplorerEditorInput": {
+ "processExplorerEditorLabelIcon": "Icona dell'etichetta dell'editor Esplora processo.",
+ "processExplorerInputName": "Esplora processo"
+ },
+ "vs/workbench/contrib/processExplorer/electron-browser/processExplorer.contribution": {
+ "processExplorer": "Esplora processo"
},
"vs/workbench/contrib/quickaccess/browser/commandsQuickAccess": {
"clearButtonLabel": "&&Cancella",
"clearCommandHistory": "Cancella cronologia dei comandi",
"commandWithCategory": "{0}: {1}",
+ "commandsQuickAccess.askInChat": "Chiedi nella chat: {0}",
+ "commandsQuickAccess.configureAskInChatSetting": "Configura visibilità",
"configure keybinding": "Configura tasto di scelta rapida",
"confirmClearDetail": "Questa azione è irreversibile.",
"confirmClearMessage": "Cancellare la cronologia dei comandi usati di recente?",
@@ -7724,13 +12904,13 @@
"miGotoLine": "Vai a &&riga/colonna...",
"miOpenView": "&&Apri visualizzazione...",
"miShowAllCommands": "Mostra tutti i comandi",
+ "more": "Altro",
"viewQuickAccess": "Apri visualizzazione",
"viewQuickAccessPlaceholder": "Digitare il nome di una visualizzazione, un canale di output o un terminale da aprire."
},
"vs/workbench/contrib/quickaccess/browser/viewQuickAccess": {
"channels": "Output",
"debugConsoles": "Console di debug",
- "logChannel": "Log ({0})",
"noViewResults": "Non ci sono visualizzazioni corrispondenti",
"openView": "Apri visualizzazione",
"panels": "Pannello",
@@ -7746,19 +12926,13 @@
"relaunchSettingMessage": "È necessario riavviare per rendere effettiva un'impostazione modificata.",
"relaunchSettingMessageWeb": "Per rendere effettiva un'impostazione modificata, è necessario riavviare.",
"restart": "&&Riavvia",
+ "restartExtensionHost.reason": "Modifica delle cartelle dell'area di lavoro",
"restartWeb": "&&Ricarica"
},
"vs/workbench/contrib/remote/browser/explorerViewItems": {
- "remote.explorer.switch": "Cambia computer remoto",
- "remotes": "Cambia computer remoto"
+ "switchRemote.label": "Cambia computer remoto"
},
"vs/workbench/contrib/remote/browser/remote": {
- "RemoteHelpInformationExtPoint": "Aggiunge come contributo le informazioni della Guida per Remote",
- "RemoteHelpInformationExtPoint.documentation": "URL o comando che restituisce l'URL della pagina della documentazione del progetto",
- "RemoteHelpInformationExtPoint.feedback": "URL o comando che restituisce l'URL della pagina per l'invio di feedback del progetto",
- "RemoteHelpInformationExtPoint.getStarted": "URL o comando che restituisce l'URL della pagina Attività iniziali del progetto",
- "RemoteHelpInformationExtPoint.issues": "URL o comando che restituisce l'URL dell'elenco dei problemi del progetto",
- "cancel": "Annulla",
"connectionLost": "Connessione persa",
"pickRemoteExtension": "Selezionare l'URL da aprire",
"reconnectNow": "Riconnetti ora",
@@ -7767,25 +12941,39 @@
"reconnectionWaitMany": "Verrà effettuato un tentativo di riconnessione tra {0} secondi...",
"reconnectionWaitOne": "Verrà effettuato un tentativo di riconnessione tra {0} secondo...",
"reloadWindow": "Ricarica finestra",
+ "reloadWindow.dialog": "&&Ricarica finestra",
"remote.explorer": "Explorer remoto",
"remote.help": "Guida e commenti",
"remote.help.documentation": "Leggi la documentazione",
- "remote.help.feedback": "Invia commenti e suggerimenti",
"remote.help.getStarted": "Per iniziare",
"remote.help.issues": "Esamina problemi",
"remote.help.report": "Segnala problema",
"remotehelp": "Guida per il repository remoto"
},
+ "vs/workbench/contrib/remote/browser/remoteConnectionHealth": {
+ "allow": "&&Consenti",
+ "learnMore": "&&Altre informazioni",
+ "remember": "Non visualizzare più",
+ "unsupportedGlibcBannerLearnMore": "Altre informazioni",
+ "unsupportedGlibcWarning": "Si sta per effettuare una connessione a una versione del sistema operativo non supportata da {0}.",
+ "unsupportedGlibcWarning.banner": "Si è connessi a una versione del sistema operativo non supportata da {0}."
+ },
"vs/workbench/contrib/remote/browser/remoteExplorer": {
"1forwardedPort": "1 porta inoltrata",
"nForwardedPorts": "{0} porte inoltrate",
+ "noRemoteNoPorts": "Nessuna porta inoltrata. Inoltrare una porta per accedere ai servizi in esecuzione in locale tramite Internet.\r\n[Inoltra una porta]({0})",
"ports": "Porte",
+ "remote.autoForwardPortsSource.fallback": "Sono state inoltrate automaticamente oltre 20 porte. L’inoltro porte automatico basato su 'processo' è stato impostato su 'ibrido' nelle impostazioni. Alcune porte potrebbero non essere più rilevate.",
+ "remote.autoForwardPortsSource.fallback.showPortSourceSetting": "Mostra impostazione",
+ "remote.autoForwardPortsSource.fallback.switchBack": "Annulla",
"remote.forwardedPorts.statusbarTextNone": "Nessuna porta inoltrata",
"remote.forwardedPorts.statusbarTooltip": "Porte inoltrate: {0}",
- "remote.tunnelsView.automaticForward": "L'applicazione in esecuzione sulla porta {0} è disponibile. ",
+ "remote.tunnelsView.automaticForward": "L'applicazione{0} in esecuzione sulla porta {1} è disponibile. ",
"remote.tunnelsView.elevationButton": "Usa la porta {0} come sudo...",
"remote.tunnelsView.elevationMessage": "Per usare la porta {0} in locale, è necessario eseguire il programma come utente con privilegi avanzati. ",
- "remote.tunnelsView.notificationLink2": "[Visualizza tutte le porte inoltrate] ({0})",
+ "remote.tunnelsView.makePublic": "Rendi pubblica",
+ "remote.tunnelsView.notificationLink2": "[Visualizza tutte le porte inoltrate]({0})",
+ "remoteNoPorts": "Nessuna porta inoltrata. Inoltrare una porta per accedere ai servizi in esecuzione localmente.\r\n[Inoltra una porta]({0})",
"status.forwardedPorts": "Porte inoltrate"
},
"vs/workbench/contrib/remote/browser/remoteIcons": {
@@ -7814,17 +13002,29 @@
"host.open": "Apertura del computer remoto...",
"host.reconnecting": "Riconnessione a {0}...",
"host.tooltip": "Modifica in {0}",
- "installRemotes": "Installa estensioni remote aggiuntive...",
"miCloseRemote": "Chiudi connessione re&&mota",
+ "networkStatusHighLatencyTooltip": "La rete sembra avere una latenza elevata ({0}ms per ultimo, {1}media ms), alcune funzionalità potrebbero rispondere lentamente.",
+ "networkStatusOfflineTooltip": "La rete sembra offline, alcune funzionalità potrebbero non essere disponibili.",
"noHost.tooltip": "Apre una finestra remota",
"reloadWindow": "Ricarica finestra",
"remote.category": "Remoto",
"remote.close": "Chiudi connessione remota",
"remote.install": "Installa estensioni per lo sviluppo remoto",
+ "remote.showExtensionRecommendations": "Se questa opzione è abilitata, le estensioni remote consigliate vengono visualizzate nel menu Indicatore remoto.",
"remote.showMenu": "Mostra menu remoto",
+ "remote.startActions.help": "Altre informazioni",
+ "remote.startActions.install": "Installa",
+ "remote.startActions.installingExtension": "Installazione dell'estensione in corso... ",
+ "remoteActions": "Selezionare un'opzione per aprire una finestra remota",
"remoteHost": "Host remoto",
+ "retry": "Riprova",
+ "unknownSetupError": "Si è verificato un errore durante la configurazione di {0}. Riprovare?",
"workspace.tooltip": "Modifica in {0}",
- "workspace.tooltip2": "Alcune [funzionalità non sono disponibili] ({0}) per le risorse che si trovano in un file system virtuale."
+ "workspace.tooltip2": "Alcune [funzionalità non sono disponibili]({0}) per le risorse che si trovano in un file system virtuale."
+ },
+ "vs/workbench/contrib/remote/browser/remoteStartEntry": {
+ "remote.category": "Remoto",
+ "remote.showWebStartEntryActions": "Mostra voce di avvio remoto per il Web"
},
"vs/workbench/contrib/remote/browser/tunnelFactory": {
"tunnelPrivacy.private": "Privato",
@@ -7847,6 +13047,7 @@
"remote.tunnel.copyAddressPlaceholdter": "Scegliere una porta inoltrata",
"remote.tunnel.forward": "Inoltra una porta",
"remote.tunnel.forwardError": "Non è possibile inoltrare {0}:{1}. L'host potrebbe non essere disponibile o la porta remota potrebbe essere stata già inoltrata",
+ "remote.tunnel.forwardErrorProvided": "Impossibile inoltrare {0}:{1}. {2}",
"remote.tunnel.forwardItem": "Inoltra porta",
"remote.tunnel.forwardPrompt": "Numero di porta o indirizzo (ad esempio 3000 o 10.10.10.10:2000).",
"remote.tunnel.label": "Imposta etichetta per la porta",
@@ -7869,10 +13070,10 @@
"remote.tunnelsView.labelPlaceholder": "Etichetta della porta",
"remote.tunnelsView.portNumberToHigh": "Il numero di porta deve essere ≥ 0 e < {0}.",
"remote.tunnelsView.portNumberValid": "Il valore della porta inoltrata deve essere un numero o una combinazione host:porta.",
- "tunnel.addressColumn.label": "Indirizzo locale",
+ "remote.tunnelsView.portShouldBeNumber": "La porta locale deve essere un numero.",
+ "tunnel.addressColumn.label": "Indirizzo inoltrato",
"tunnel.addressColumn.tooltip": "Indirizzo a cui la porta inoltrata è disponibile in locale.",
"tunnel.focusContext": "Indica se lo stato attivo si trova nella visualizzazione Porte.",
- "tunnel.forwardedPortsViewEnabled": "Indica se la visualizzazione Porte è abilitata.",
"tunnel.iconColumn.notRunning": "Non ci sono processi in esecuzione.",
"tunnel.iconColumn.running": "La porta ha un processo in esecuzione.",
"tunnel.originColumn.label": "Origine",
@@ -7891,17 +13092,21 @@
"tunnelView.runningProcess.inacessable": "Le informazioni sul processo non sono disponibili"
},
"vs/workbench/contrib/remote/common/remote.contribution": {
- "invalidWorkspaceCancel": "&&Annulla",
- "invalidWorkspaceDetail": "L'area di lavoro non esiste. Selezionare un'altra area di lavoro da aprire.",
+ "invalidWorkspaceDetail": "Selezionare un'altra area di lavoro da aprire.",
"invalidWorkspaceMessage": "L'area di lavoro non esiste",
"invalidWorkspacePrimary": "A&&pri area di lavoro...",
"pauseSocketWriting": "Connessione: sospendi scrittura socket",
"remote": "Remoto",
- "remote.autoForwardPorts": "Con questa opzione abilitata, verranno identificati i nuovi processi in esecuzione e le porte in ascolto verranno inoltrate automaticamente. La disabilitazione di questa impostazione non eviterà l'inoltro di tutte le porte. Anche se disabilitate, le estensioni comporteranno l'inoltro delle porte, come anche l'apertura di alcuni URL.",
- "remote.autoForwardPortsSource": "Consente di impostare l'origine da cui vengono inoltrate automaticamente le porte quando {0} è impostato su True. In repository remoti Windows e Mac l'opzione `process` non ha effetto e verrà usata l'opzione `output`. È necessario ricaricare per rendere effettiva questa impostazione.",
+ "remote.autoForwardPortFallback": "Numero delle porte inoltrate automaticamente che attiverà il passaggio da 'process' a 'hybrid' quando l'inoltro automatico delle porte e di 'remote.autoForwardPortsSource' è impostato su 'process' per impostazione predefinita. Impostare su '0' per disabilitare il fallback. Quando 'remote.autoForwardPortsFallback' non è stato configurato, ma è presente 'remote.autoForwardPortsSource', 'remote.autoForwardPortsFallback' verrà considerato come se fosse impostato su '0'.",
+ "remote.autoForwardPorts": "Con questa opzione abilitata, verranno identificati i nuovi processi in esecuzione e le porte in ascolto verranno inoltrate automaticamente. La disabilitazione di questa impostazione non eviterà l'inoltro di tutte le porte. Anche se disabilitate, le estensioni comporteranno l'inoltro delle porte, come anche l'apertura di alcuni URL. Vedere anche {0}.",
+ "remote.autoForwardPortsSource": "Consente di impostare l'origine da cui vengono inoltrate automaticamente le porte quando {0} è impostato su Vero. Quando {0} è falso, {1} verrà usato per trovare informazioni sulle porte che sono già state inoltrate. In repository remoti Windows e macOS le opzioni “process” e “hybrid” non hanno effetto e verrà usata l'opzione “output”.",
+ "remote.autoForwardPortsSource.hybrid": "Le porte verranno inoltrate automaticamente quando vengono individuate leggendo l'output del terminale e del debug. Non tutti i processi che usano le porte verranno stampati sul terminale integrato o sulla console di debug, pertanto alcune porte non saranno disponibili. L'inoltro delle porte verrà annullato controllando che i processi in ascolto su tali porte vengano terminati.",
"remote.autoForwardPortsSource.output": "Le porte verranno inoltrate automaticamente quando vengono individuate leggendo l'output del terminale e del debug. Non tutti i processi che usano le porte verranno stampati sul terminale integrato o sulla console di debug, pertanto alcune porte non saranno disponibili. L'inoltro delle porte inoltrate in base all'output non verrà annullato finché non si esegue il ricaricamento oppure finché la porta non viene chiusa dall'utente nella visualizzazione Porte.",
"remote.autoForwardPortsSource.process": "Le porte verranno inoltrate automaticamente quando vengono individuate controllando i processi avviati e che includono una porta.",
+ "remote.defaultExtensionsIfInstalledLocally.invalidFormat": "L'identificatore dell'estensione deve essere nel formato \"publisher.name\".",
+ "remote.defaultExtensionsIfInstalledLocally.markdownDescription": "Elenco di estensioni da installare al momento della connessione a un computer remoto quando sono già installate localmente.",
"remote.extensionKind": "Esegue l'override di un'estensione. Le estensioni `ui` vengono installate ed eseguite nel computer locale, mentre quelle `workspace` vengono eseguite nel computer remoto. Quando si esegue l'override del tipo predefinito di un'estensione, si specifica che l'estensione deve essere installata e abilitata in locale o in remoto.",
+ "remote.forwardOnClick": "Controlla se gli URL locali con una porta verranno inoltrati all'apertura dal terminale e dalla console di debug.",
"remote.localPortHost": "Consente di specificare il nome host locale che verrà usato per l'inoltro porte.",
"remote.portsAttributes": "Consente di impostare le proprietà applicate quando viene inoltrato un numero di porta specifico, ad esempio:\r\n\r\n```\r\n\"3000\": {\r\n \"label\": \"Application\"\r\n},\r\n\"40000-55000\": {\r\n \"onAutoForward\": \"ignore\"\r\n},\r\n\".+\\\\/server.js\": {\r\n \"onAutoForward\": \"openPreview\"\r\n}\r\n```",
"remote.portsAttributes.defaults": "Impostare le proprietà predefinite applicate a tutte le porte che non recuperano le proprietà dall'impostazione {0}. Ad esempio:\r\n\r\n```\r\n{\r\n \"onAutoForward\": \"ignore\"\r\n}\r\n```",
@@ -7920,41 +13125,125 @@
"remote.portsAttributes.requireLocalPort": "Quando è true, verrà visualizzata una finestra di dialogo modale se la porta locale scelta non viene usata per l'inoltro.",
"remote.portsAttributes.silent": "Non visualizza alcuna notifica e non esegue alcuna azione quando questa porta viene inoltrata automaticamente.",
"remote.restoreForwardedPorts": "Ripristina le porte inoltrate in un'area di lavoro.",
- "remoteExtensionLog": "Server remoto",
- "remotePtyHostLog": "Host PTY remoto",
"triggerReconnect": "Connessione: riconnessione trigger",
"ui": "Tipo di estensione UI. In una finestra remota tali estensioni sono abilitate solo se disponibili nel computer locale.",
"workspace": "Tipo di estensione workspace. In una finestra remota tali estensioni sono abilitate solo se disponibili nel computer remoto."
},
- "vs/workbench/contrib/remote/electron-sandbox/remote.contribution": {
+ "vs/workbench/contrib/remote/electron-browser/remote.contribution": {
"remote": "Remoto",
- "remote.downloadExtensionsLocally": "Se è abilitato, le estensioni vengono scaricate in locale e installate nel computer remoto."
+ "remote.actions.closeUnusedPorts": "Chiudi porte inoltrate non usate",
+ "remote.category": "Remoto",
+ "remote.downloadExtensionsLocally": "Se è abilitato, le estensioni vengono scaricate in locale e installate nel computer remoto.",
+ "wslFeatureInstalled": "Indica se la piattaforma ha la funzionalità WSL installata"
+ },
+ "vs/workbench/contrib/remoteCodingAgents/browser/remoteCodingAgents.contribution": {
+ "remoteCodingAgentsExtPoint": "Aggiunge integrazioni dell'agente di codifica remoto al widget della chat.",
+ "remoteCodingAgentsExtPoint.command": "Identificatore del comando da eseguire. Il comando deve essere dichiarato nella sezione 'commands'.",
+ "remoteCodingAgentsExtPoint.description": "Descrizione dell'agente remoto da utilizzare nei menu e nelle descrizioni comando.",
+ "remoteCodingAgentsExtPoint.displayName": "Nome semplice da usare per l'elemento utilizzato per la visualizzazione nei menu.",
+ "remoteCodingAgentsExtPoint.followUpRegex": "L'ultima occorrenza del modello in una conversazione chat esistente viene inviata all'estensione utilizzata per facilitare le risposte di completamento.",
+ "remoteCodingAgentsExtPoint.id": "Identificatore univoco per questo elemento.",
+ "remoteCodingAgentsExtPoint.when": "Condizione che deve essere vera per mostrare questo elemento."
+ },
+ "vs/workbench/contrib/remoteTunnel/electron-browser/remoteTunnel.contribution": {
+ "accountPreference.placeholder": "Accedere a un account per abilitare l'accesso remoto",
+ "action.copyToClipboard": "Copia Browser Link negli Appunti",
+ "action.doNotShowAgain": "Non visualizzare più",
+ "action.showExtension": "Mostra estensione",
+ "enable": "&&Abilita",
+ "initialize.progress.title": "[Ricerca di tunnel remoto](comando:{0})",
+ "manage.placeholder": "Selezionare un comando da richiamare",
+ "manage.showLog": "Mostra log",
+ "manage.title.attached": "Accesso tunnel remoto abilitato per {0} (avviato esternamente)",
+ "manage.title.off": "Accesso tunnel remoto non abilitato",
+ "manage.title.orunning": "Accesso tunnel remoto abilitato per {0}",
+ "manage.tunnelName": "Modifica nome tunnel",
+ "others": "Altri",
+ "progress.turnOn.failed": "Non è possibile attivare l'accesso al tunnel remoto. Per informazioni dettagliate, controllare il log del Servizio tunnel remoto.",
+ "progress.turnOn.final": "Ora è possibile accedere a questo computer ovunque tramite il tunnel protetto [{0}](comando:{4}). Per connettersi tramite un altro computer, usare il collegamento [{1}]({2}) generato o l'estensione [{6}]({7}) nel desktop o nel Web. È possibile [configurare](comando:{3}) o [disattivare](comando:{5}) questo accesso tramite il menu Account VS Code.",
+ "recommend.remoteExtension": "Il tunnel '{0}' è disponibile per l'accesso remoto. L'estensione {1} può essere usata per connettersi a essa.",
+ "remoteTunnel.actions.configure": "Configurare nome del tunnel...",
+ "remoteTunnel.actions.copyToClipboard": "Copiare l'URI del browser negli Appunti",
+ "remoteTunnel.actions.learnMore": "Introduzione ai tunnel",
+ "remoteTunnel.actions.manage.connecting": "L'accesso al tunnel remoto è in connessione",
+ "remoteTunnel.actions.manage.on.v2": "Accesso al tunnel remoto attivato",
+ "remoteTunnel.actions.showLog": "Mostra log del servizio Tunnel remoto",
+ "remoteTunnel.actions.turnOff": "Disattiva Accesso al tunnel remoto...",
+ "remoteTunnel.actions.turnOn": "Attiva Accesso al tunnel remoto...",
+ "remoteTunnel.category": "Tunnel remoti",
+ "remoteTunnel.serviceInstallFailed": "L'installazione come servizio non è riuscita ed è stata ripristinata l’esecuzione del tunnel per questa sessione. Per informazioni dettagliate, vedere il [error log](command:{0}).",
+ "remoteTunnel.turnOff.confirm": "Disattivare Accesso tunnel remoto?",
+ "remoteTunnel.turnOffAttached.confirm": "Disattivare Accesso tunnel remoto? Verrà arrestato anche il servizio avviato esternamente.",
+ "remoteTunnelAccess.machineName": "Nome con cui è registrato l'accesso al tunnel remoto. Se non è impostato, viene usato il nome host.",
+ "remoteTunnelAccess.machineNameRegex": "Il nome deve essere composto solo da lettere, numeri, caratteri di sottolineatura e trattini. Non deve iniziare con un trattino.",
+ "remoteTunnelAccess.preventSleep": "Impedisci la sospensione del computer quando l'accesso remoto a tunnel è attivato.",
+ "sign in using account": "Accedi con {0}",
+ "signed in": "Connesso",
+ "startTunnel.progress.title": "[Avvio tunnel remoto](comando:{0})",
+ "tunnel.enable.placeholder": "Seleziona come abilitare l'accesso",
+ "tunnel.enable.service": "Installa come servizio",
+ "tunnel.enable.service.description": "Esegui ogni volta che accedi",
+ "tunnel.enable.session": "Attiva per questa sessione",
+ "tunnel.enable.session.description": "Esegui ogni volta che {0} è aperto",
+ "tunnel.preview": "Tunnel remoti è attualmente in anteprima. Per segnalare eventuali problemi, usare il comando \"Guida: Segnala problema\"."
+ },
+ "vs/workbench/contrib/replNotebook/browser/repl.contribution": {
+ "repl.execute": "Esegui input REPL",
+ "repl.focusLastReplOutput": "Sposta lo stato attivo sull’esecuzione REPL più recente",
+ "repl.input.focus": "Editor di input dello stato attivo"
+ },
+ "vs/workbench/contrib/replNotebook/browser/replEditor": {
+ "replEditorInput": "Input REPL"
+ },
+ "vs/workbench/contrib/replNotebook/browser/replEditorAccessibilityHelp": {
+ "replEditor.accessibilityView": "Eseguire il comando Aprire visualizzazione per l’accessibilità{0} mentre si esplora la cronologia per individuare una visualizzazione accessibile dell'output dell'elemento.",
+ "replEditor.autoFocusRepl": "L'impostazione ‘accessibility.replEditor.autoFocusReplExecution’ controlla se lo stato attivo verrà spostato automaticamente su REPL dopo l'esecuzione del codice.",
+ "replEditor.cellNavigation": "Il comando Esci da modifica{0} sposta lo stato attivo sul contenitore delle celle, in cui anche le frecce SU e GIÙ consentono di spostare lo stato attivo tra le celle della cronologia.",
+ "replEditor.configReadExecution": "L'impostazione 'accessibility.replEditor.readLastExecutionOutput' controlla se l'output verrà letto automaticamente al termine dell'esecuzione.",
+ "replEditor.execute": "Il comando Esegui{0} valuterà l'espressione nella casella di input.",
+ "replEditor.focusCellEditor": "Il comando Modifica cella{0} sposta lo stato attivo sull'editor di sola lettura per l'input della cella.",
+ "replEditor.focusInOutput": "Il comando Sposta stato attivo sull’output{0} imposterà lo stato attivo sull'output quando lo stato attivo è su un elemento eseguito in precedenza.",
+ "replEditor.focusLastItemAdded": "Il comando Ultima esecuzione dello stato attivo{0} sposterà lo stato attivo sull'ultimo elemento eseguito nella cronologia REPL.",
+ "replEditor.focusReplInput": "Il comando Editor di input dello stato attivo{0} ripristinerà lo stato attivo sull’editor.",
+ "replEditor.focusReplInputFromHistory": "Il comando Sposta stato attivo sull’editor di input{0} sposterà lo stato attivo nella casella di input REPL.",
+ "replEditor.historyOverview": "Si è in una cronologia REPL, ovvero un elenco di celle eseguite in REPL. Ogni cella include un input, un output e il contenitore di celle.",
+ "replEditor.inputAccessibilityView": "Quando si esegue il comando Aprire visualizzazione per l’accessibilità{0} da questa casella di input, l'output dell'ultima esecuzione verrà visualizzato nella visualizzazione accessibilità.",
+ "replEditor.inputOverview": "Si è in una casella di input dell'editor REPL che accetta codice da eseguire in REPL."
+ },
+ "vs/workbench/contrib/replNotebook/browser/replEditorInput": {
+ "replEditorLabelIcon": "Icona dell'etichetta dell'editor REPL."
},
"vs/workbench/contrib/sash/browser/sash.contribution": {
"sashHoverDelay": "Controlla il ritardo del feedback al passaggio del mouse in millisecondi dell'area di trascinamento tra visualizzazioni/editor.",
"sashSize": "Controlla le dimensioni dell'area di feedback in pixel dell'area di trascinamento tra visualizzazioni/editor. Impostarla su un valore più elevato se si ritiene che il ridimensionamento delle visualizzazioni con il mouse non sia agevole."
},
"vs/workbench/contrib/scm/browser/activity": {
+ "scmActiveResourceHasChanges": "Indica se la risorsa attiva ha modifiche",
+ "scmActiveResourceRepository": "Repository della risorsa attiva",
"scmPendingChangesBadge": "{0} modifiche in sospeso",
- "status.scm": "Controllo del codice sorgente"
+ "status.scm": "Controllo del codice sorgente",
+ "status.scm.provider": "Provider del controllo del codice sorgente"
},
- "vs/workbench/contrib/scm/browser/dirtydiffDecorator": {
- "change": "{0} di {1} modifica",
- "changes": "{0} di {1} modifiche",
- "editorGutterAddedBackground": "Colore di sfondo della barra di navigazione dell'editor per le righe che sono state aggiunte.",
- "editorGutterDeletedBackground": "Colore di sfondo della barra di navigazione dell'editor per le righe che sono state cancellate.",
- "editorGutterModifiedBackground": "Colore di sfondo della barra di navigazione dell'editor per le righe che sono state modificate.",
+ "vs/workbench/contrib/scm/browser/menus": {
+ "miShare": "Condividi"
+ },
+ "vs/workbench/contrib/scm/browser/quickDiffDecorator": {
+ "diffAdded": "Righe aggiunte",
+ "diffDeleted": "Righe rimosse",
+ "diffModified": "Righe modificate"
+ },
+ "vs/workbench/contrib/scm/browser/quickDiffWidget": {
+ "change": "{0} - {1} di {2} modifica",
+ "changes": "{0} - {1} di {2} modifiche",
"label.close": "Chiudi",
- "miGotoNextChange": "Modifica &&successiva",
- "miGotoPreviousChange": "Modifica &&precedente",
- "minimapGutterAddedBackground": "Colore di sfondo del margine della minimappa per le righe che sono state aggiunte.",
- "minimapGutterDeletedBackground": "Colore di sfondo del margine della minimappa per le righe che sono state eliminate.",
- "minimapGutterModifiedBackground": "Colore di sfondo del margine della minimappa per le righe che sono state modificate.",
+ "miGotoNextChange": "Modifi&&ca successiva",
+ "miGotoPreviousChange": "Modifi&&ca precedente",
"move to next change": "Vai alla modifica successiva",
"move to previous change": "Vai alla modifica precedente",
- "overviewRulerAddedForeground": "Colore del marcatore del righello delle annotazioni per il contenuto aggiunto.",
- "overviewRulerDeletedForeground": "Colore del marcatore del righello delle annotazioni per il contenuto eliminato.",
- "overviewRulerModifiedForeground": "Colore del marcatore del righello delle annotazioni per il contenuto modificato.",
+ "multiChange": "{0} di {1} modifica",
+ "multiChanges": "{0} di {1} modifiche",
+ "quickDiff.base.switch": "Cambia Quick Diff Base",
+ "remotes": "Cambia quick diff base",
"show next change": "Mostra modifica successiva",
"show previous change": "Mostra modifica precedente"
},
@@ -7970,16 +13259,22 @@
"diffGutterWidth": "Controlla la larghezza (px) delle decorazioni diff nella barra di navigazione (aggiunte e modificate).",
"inputFontFamily": "Controlla il tipo di carattere del messaggio di input. Usare `default` per la famiglia di caratteri dell'interfaccia utente di Workbench, `editor` per il valore di `#editor.fontFamily#` oppure una famiglia di caratteri personalizzata.",
"inputFontSize": "Controlla le dimensioni del carattere in pixel per il messaggio di input.",
+ "inputMaxLines": "Controlla il numero massimo di righe in cui verrà incrementato automaticamente l'input.",
+ "inputMinLines": "Controlla il numero minimo di righe da cui verrà incrementato automaticamente l'input.",
"manageWorkspaceTrustAction": "Gestire l'attendibilità dell'area di lavoro",
"miViewSCM": "Controllo &&sorgente",
+ "no history items": "Il provider del controllo del codice sorgente selezionato non ha alcun elemento della cronologia del controllo del codice sorgente.",
"no open repo": "Non esistono provider di controllo del codice sorgente registrati.",
- "no open repo in an untrusted workspace": "Nessuno dei provider di controllo del codice sorgente registrati funziona in modalità con restrizioni.",
- "open in terminal": "Apri nel terminale",
- "providersVisible": "Consente di controllare il numero di repository visibili nella sezione Repository del controllo del codice sorgente. Impostare su `0` per poter ridimensionare manualmente la visualizzazione.",
+ "no open repo in an untrusted workspace": "Nessuno dei provider di controllo del codice sorgente registrati funziona in Modalità con restrizioni.",
+ "open in external terminal": "Apri nel terminale esterno",
+ "open in integrated terminal": "Apri nel terminale integrato",
+ "providersVisible": "Consente di controllare il numero di repository visibili nella sezione Repository del controllo del codice sorgente. Impostare su 0 per poter ridimensionare manualmente la visualizzazione.",
+ "quickDiffDecoration": "Decorazioni Diff",
"repositoriesSortOrder": "Controlla l'ordinamento dei repository nella visualizzazione repository del controllo del codice sorgente.",
"scm accept": "Controllo del codice sorgente: accetta input",
"scm view next commit": "Controllo del codice sorgente: visualizza commit successivo",
"scm view previous commit": "Controllo del codice sorgente: visualizza commit precedente",
+ "scm.compactFolders": "Controlla se la vista Controllo del codice sorgente deve eseguire il rendering delle cartelle in formato compatto. In tale formato, le singole cartelle figlio verranno compresse in un elemento ad albero combinato.",
"scm.countBadge": "Controlla la notifica di conteggio sull'icona Controllo del codice sorgente sulla barra attività.",
"scm.countBadge.all": "Visualizza la somma di tutte le notifiche di conteggio di Provider di controllo del codice sorgente.",
"scm.countBadge.focused": "Mostra la notifica del conteggio del provider del controllo del codice sorgente evidenziato.",
@@ -8005,32 +13300,138 @@
"scm.diffDecorationsIgnoreTrimWhitespace.false": "Non ignora gli spazi vuoti iniziali e finali.",
"scm.diffDecorationsIgnoreTrimWhitespace.inherit": "Eredita da 'diffEditor.ignoreTrimWhitespace'.",
"scm.diffDecorationsIgnoreTrimWhitespace.true": "Ignora gli spazi vuoti iniziali e finali.",
- "scm.providerCountBadge": "Controlla le notifiche di conteggio sulle intestazioni di Provider di controllo del codice sorgente. Tali intestazioni vengono visualizzate solo quando è presente più di un provider.",
+ "scm.graph.badges": "Controlla quali notifiche vengono visualizzate nella visualizzazione Grafico del controllo del codice sorgente. Le notifiche vengono visualizzate sul lato destro del grafico a indicare i nomi dei gruppi di elementi della cronologia.",
+ "scm.graph.badges.all": "Mostra le notifiche di tutti i gruppi di elementi della cronologia nella visualizzazione Grafico del controllo del codice sorgente.",
+ "scm.graph.badges.filter": "Mostrare solo le notifiche dei gruppi di elementi della cronologia usati come filtro nella visualizzazione Grafico del controllo del codice sorgente.",
+ "scm.graph.pageOnScroll": "Controlla se la visualizzazione Grafico del controllo del codice sorgente caricherà la pagina successiva di elementi quando si scorre fino alla fine dell'elenco.",
+ "scm.graph.pageSize": "Numero di elementi da visualizzare nella visualizzazione Grafico del controllo del codice sorgente per impostazione predefinita e durante il caricamento di altri elementi.",
+ "scm.graph.showIncomingChanges": "Controlla se visualizzare le modifiche in ingresso nella visualizzazione Grafico del controllo del codice sorgente.",
+ "scm.graph.showOutgoingChanges": "Controlla se visualizzare le modifiche in uscita nella visualizzazione Grafico del controllo del codice sorgente.",
+ "scm.providerCountBadge": "Controlla le notifiche di conteggio nelle intestazioni del provider del controllo del codice sorgente. Queste intestazioni vengono visualizzate nella visualizzazione Controllo del codice sorgente quando è presente più di un provider o quando l'impostazione {0} è abilitata e nella visualizzazione Repository del controllo del codice sorgente.",
"scm.providerCountBadge.auto": "Mostra la notifica di conteggio per Provider di controllo del codice sorgente solo quando è diversa da zero.",
"scm.providerCountBadge.hidden": "Nasconde le notifiche di conteggio di Provider di controllo del codice sorgente.",
"scm.providerCountBadge.visible": "Mostra le notifiche di conteggio di Provider di controllo del codice sorgente.",
+ "scm.repositories.explorer": "Controlla se mostrare gli artefatti del repository nella visualizzazione Repository del controllo del codice sorgente. Questa funzionalità è sperimentale e funziona solo quando {0} è impostato su '{1}'.",
+ "scm.repositories.selectionMode": "Controlla la modalità di selezione dei repository nella visualizzazione Repository del controllo del codice sorgente.",
+ "scm.repositories.selectionMode.multiple": "È possibile selezionare più repository contemporaneamente.",
+ "scm.repositories.selectionMode.single": "È possibile selezionare un solo repository alla volta.",
"scm.repositoriesSortOrder.discoveryTime": "I repository nella visualizzazione Repository del controllo del codice sorgente vengono ordinati in base all'ora di individuazione. I repository nella visualizzazione Controllo del codice sorgente sono ordinati nell'ordine in cui sono stati selezionati.",
"scm.repositoriesSortOrder.name": "I repository nei repository del controllo del codice sorgente e nelle visualizzazioni del controllo del codice sorgente vengono ordinati in base al nome del repository.",
"scm.repositoriesSortOrder.path": "I repository nei repository del controllo del codice sorgente e nelle visualizzazioni del controllo del codice sorgente vengono ordinati in base al percorso del repository.",
+ "scm.workingSets.default": "Controlla il set di lavoro da usare quando si passa a un gruppo di elementi della cronologia del controllo del codice sorgente in cui non è presente un set di lavoro.",
+ "scm.workingSets.default.current": "Usa un set di lavoro corrente quando si passa a un gruppo di elementi della cronologia del controllo del codice sorgente in cui non è presente un set di lavoro.",
+ "scm.workingSets.default.empty": "Usa un set di lavoro vuoto quando si passa a un gruppo di elementi della cronologia del controllo del codice sorgente in cui non è presente un set di lavoro.",
+ "scm.workingSets.enabled": "Controlla se archiviare i set di lavoro dell'editor durante il passaggio tra i gruppi di elementi della cronologia del controllo del codice sorgente.",
+ "scmActiveRepositoryAutoDescription": "Il repository attivo viene aggiornato in base all'editor attivo",
+ "scmActiveRepositoryPlaceHolder": "Selezionare il repository attivo, digitare per filtrare tutti i repository",
+ "scmChanges": "Modifiche",
"scmConfigurationTitle": "Controllo del codice sorgente",
+ "scmEditorResolveMergeConflict": "Risolvere i conflitti con l'IA",
+ "scmGraph": "Grafo",
+ "scmRepositories": "Repository",
"showActionButton": "Controlla se è possibile visualizzare un pulsante di azione nella visualizzazione del codice sorgente.",
+ "showInputActionButton": "Controlla se è possibile visualizzare un pulsante di azione nell’input del controllo del codice sorgente.",
"source control": "Controllo del codice sorgente",
+ "source control graph": "Grafico del controllo del codice sorgente",
"source control repositories": "Repository del controllo del codice sorgente",
+ "source control view": "Controllo del codice sorgente",
"sourceControlViewIcon": "Icona della visualizzazione Controllo del codice sorgente."
},
+ "vs/workbench/contrib/scm/browser/scmAccessibilityHelp": {
+ "disabled": "disabilitato",
+ "enabled": "abilitato",
+ "scm-graph-msg1": "Utilizzare il comando \"Controllo del codice sorgente: Stato attivo sulla visualizzazione grafico del controllo del codice sorgente\" per aprire la visualizzazione Grafico del controllo del codice sorgente.",
+ "scm-graph-msg2": "Nella visualizzazione Grafico del controllo del codice sorgente sono visualizzati gli elementi della cronologia del grafico del repository. Se l'area di lavoro contiene più di un repository, elenca gli elementi della cronologia del repository attivo.",
+ "scm-graph-msg3": "Dopo l'apertura della visualizzazione Grafico del controllo del codice sorgente è possibile:",
+ "scm-graph-msg4": " - Usare le frecce SU/GIÙ per spostarsi nell'elenco degli elementi della cronologia.",
+ "scm-graph-msg5": " - Usare la barra spaziatrice per aprire i dettagli dell'elemento della cronologia nell'editor diff multifile.",
+ "scm-msg1": "Utilizzare il comando \"Controllo del codice sorgente: Stato attivo sulla visualizzazione controllo del codice sorgente\" per aprire la visualizzazione Controllo del codice sorgente.",
+ "scm-msg2": "Nella visualizzazione Controllo del codice sorgente sono visualizzati i gruppi di risorse e le risorse del repository. Se l'area di lavoro contiene più repository, elenca i gruppi di risorse e le risorse dei repository selezionati nella visualizzazione Repository del controllo del codice sorgente.",
+ "scm-msg3": "Dopo l'apertura della visualizzazione Controllo del codice sorgente è possibile:",
+ "scm-msg4": " - Usare i tasti freccia SU/GIÙ per spostarsi nell'elenco di repository, gruppi di risorse e risorse.",
+ "scm-msg5": " - Usare la barra spaziatrice per espandere o comprimere un gruppo di risorse.",
+ "scm-repositories-msg1": "Usare il comando \"Controllo del codice sorgente: Stato attivo sulla visualizzazione Repository del controllo del codice sorgente\" per aprire la visualizzazione Repository del controllo del codice sorgente.",
+ "scm-repositories-msg2": "La visualizzazione Repository del controllo del codice sorgente elenca tutti i repository dell'area di lavoro e viene visualizzata solo quando l'area di lavoro contiene più repository.",
+ "scm-repositories-msg3": "Dopo aver aperto la visualizzazione Repository del controllo del codice sorgente, è possibile:",
+ "scm-repositories-msg4": " - Usare le frecce SU/GIÙ per spostarsi nell'elenco dei repository.",
+ "scm-repositories-msg5": " - Usare INVIO o BARRA SPAZIATRICE per selezionare un repository.",
+ "scm-repositories-msg6": " - Usare MAIUSC + SU/GIÙ tasti per selezionare più repository.",
+ "state-msg1": "Repository visibili: {0}",
+ "state-msg2": "Repository: {0}",
+ "state-msg3": "Riferimento all'elemento della cronologia: {0}",
+ "state-msg4": "Messaggio di commit: {0}",
+ "state-msg5": "Pulsante di azione: {0}, {1}",
+ "state-msg6": "Gruppi di risorse: {0}"
+ },
+ "vs/workbench/contrib/scm/browser/scmHistory": {
+ "incomingChanges": "Modifiche in ingresso",
+ "outgoingChanges": "Modifiche in uscita",
+ "scmGraph.HistoryItemHoverAdditionsForeground": "Colore di primo piano per le aggiunte degli elementi della cronologia al passaggio del puntatore.",
+ "scmGraph.HistoryItemHoverDeletionsForeground": "Colore di primo piano per le eliminazioni degli elementi della cronologia al passaggio del puntatore.",
+ "scmGraphForeground1": "Colore primo piano del grafico del controllo del codice sorgente (1).",
+ "scmGraphForeground2": "Colore primo piano del grafico del controllo del codice sorgente (2).",
+ "scmGraphForeground3": "Colore primo piano del grafico del controllo del codice sorgente (3).",
+ "scmGraphForeground4": "Colore di primo piano del grafico del controllo del codice sorgente (4).",
+ "scmGraphForeground5": "Colore di primo piano del grafico del controllo del codice sorgente (5).",
+ "scmGraphHistoryItemBaseRefColor": "Colore dei riferimenti di base agli elementi della cronologia.",
+ "scmGraphHistoryItemHoverDefaultLabelBackground": "Colore di sfondo per l'etichetta predefinita degli elementi della cronologia al passaggio del puntatore.",
+ "scmGraphHistoryItemHoverDefaultLabelForeground": "Colore di primo piano per l'etichetta predefinita degli elementi della cronologia al passaggio del puntatore.",
+ "scmGraphHistoryItemHoverLabelForeground": "Colore in primo piano dell'etichetta del gruppo di elementi della cronologia al passaggio del mouse a passaggio del puntatore.",
+ "scmGraphHistoryItemRefColor": "Colore dei riferimenti agli elementi della cronologia.",
+ "scmGraphHistoryItemRemoteRefColor": "Colore dei riferimenti remoti agli elementi della cronologia."
+ },
+ "vs/workbench/contrib/scm/browser/scmHistoryChatContext": {
+ "chat.action.scmHistoryItemContext": "Aggiungere alla chat",
+ "chat.action.scmHistoryItemSummarize": "Spiegare le modifiche",
+ "chatContext.scmHistoryItems": "Controllo del codice sorgente...",
+ "chatContext.scmHistoryItems.placeholder": "Seleziona una modifica",
+ "files": "file"
+ },
+ "vs/workbench/contrib/scm/browser/scmHistoryViewPane": {
+ "activeRepository": "Mostra il grafico del controllo del codice sorgente per il repository attivo",
+ "all": "Tutto",
+ "allHistoryItemRefs": "Tutti i riferimenti agli elementi della cronologia",
+ "auto": "Automatico",
+ "currentHistoryItemRef": "Riferimenti a elementi della cronologia correnti",
+ "goToCurrentHistoryItem": "Vai all'elemento della cronologia corrente",
+ "incomingChanges": "Modifiche in ingresso",
+ "items": "{0} elementi",
+ "loadMore": "{0} Caricare altro...",
+ "openChanges": "Apri modifiche",
+ "openFile": "Aprire il file",
+ "outgoingChanges": "Modifiche in uscita",
+ "referencePicker": "Selezione dei riferimenti agli elementi della cronologia",
+ "refreshGraph": "Aggiorna",
+ "repositoryPicker": "Selezione repository",
+ "scm history": "Cronologia nel controllo del codice sorgente",
+ "scmGraphHistoryItemRef": "Selezionare uno o più riferimenti a elementi della cronologia da visualizzare, digitare per filtrare",
+ "scmGraphRepository": "Selezionare il repository da visualizzare, digitare per filtrare tutti i repository",
+ "scmGraphViewOutdated": "Aggiornare il grafico usando l'azione di aggiornamento ($(refresh)).",
+ "setListViewMode": "Visualizza come elenco",
+ "setTreeViewMode": "Visualizza come albero"
+ },
"vs/workbench/contrib/scm/browser/scmRepositoriesViewPane": {
"scm": "Repository del controllo del codice sorgente"
},
"vs/workbench/contrib/scm/browser/scmViewPane": {
"collapse all": "Comprimi tutti i repository",
"expand all": "Espandi tutti i repository",
- "input": "Input controllo del codice sorgente",
+ "label.close": "Chiudi",
"repositories": "Repository",
+ "repositoryMultiSelectionMode": "Seleziona più repository",
+ "repositorySingleSelectionMode": "Seleziona un singolo repository",
"repositorySortByDiscoveryTime": "Ordina per ora di individuazione",
"repositorySortByName": "Ordina per nome",
"repositorySortByPath": "Ordina per percorso",
"scm": "Gestione controllo del codice sorgente",
- "scm.providerBorder": "Bordo del separatore del provider Gestione controllo servizi.",
+ "scmInput": "Input controllo del codice sorgente",
+ "scmInput.accessibilityHelp": "{0}, utilizzare {1} per aprire la Guida all'accessibilità del controllo del codice sorgente.",
+ "scmInput.accessibilityHelpNoKb": "{0}, eseguire il comando per aprire la Guida all'accessibilità per altre informazioni.",
+ "scmInputCancelAction": "Annulla",
+ "scmInputGenerateCommitMessage": "Genera messaggio di commit",
+ "scmInputMoreActions": "Altre azioni...",
+ "scmInputRow.accessibilityHelp": "Input del controllo del codice sorgente. Utilizzare {0} per aprire la Guida all'accessibilità del controllo del codice sorgente.",
+ "scmInputRow.accessibilityHelpNoKb": "Input controllo del codice sorgente, eseguire il comando per aprire la guida per l'accessibilità per altre informazioni.",
"setListViewMode": "Visualizza come elenco",
"setTreeViewMode": "Visualizza come albero",
"sortAction": "Visualizza e ordina",
@@ -8038,14 +13439,41 @@
"sortChangesByPath": "Filtra modifiche per percorso",
"sortChangesByStatus": "Filtra modifiche per stato"
},
- "vs/workbench/contrib/scm/browser/scmViewPaneContainer": {
- "source control": "Controllo del codice sorgente"
+ "vs/workbench/contrib/scm/browser/scmViewService": {
+ "auto": "Automatico"
+ },
+ "vs/workbench/contrib/scm/common/quickDiff": {
+ "editorGutterAddedBackground": "Colore di sfondo della barra di navigazione dell'editor per le righe che sono state aggiunte.",
+ "editorGutterAddedSecondaryBackground": "Colore di sfondo secondario della barra di navigazione dell'editor per le righe che sono state aggiunte.",
+ "editorGutterDeletedBackground": "Colore di sfondo della barra di navigazione dell'editor per le righe che sono state cancellate.",
+ "editorGutterDeletedSecondaryBackground": "Colore di sfondo secondario della barra di navigazione dell'editor per le righe che sono state cancellate.",
+ "editorGutterItemBackground": "Colore delle decorazioni dell'editor per lo sfondo degli elementi di decorazione. Questo colore deve essere opaco.",
+ "editorGutterItemGlyphForeground": "Colore delle decorazioni dell'editor per i glifi degli elementi di decorazione.",
+ "editorGutterModifiedBackground": "Colore di sfondo della barra di navigazione dell'editor per le righe che sono state modificate.",
+ "editorGutterModifiedSecondaryBackground": "Colore di sfondo secondario della barra di navigazione dell'editor per le righe che sono state modificate.",
+ "minimapGutterAddedBackground": "Colore di sfondo del margine della minimappa per le righe che sono state aggiunte.",
+ "minimapGutterDeletedBackground": "Colore di sfondo del margine della minimappa per le righe che sono state eliminate.",
+ "minimapGutterModifiedBackground": "Colore di sfondo del margine della minimappa per le righe che sono state modificate.",
+ "overviewRulerAddedForeground": "Colore del marcatore del righello delle annotazioni per il contenuto aggiunto.",
+ "overviewRulerDeletedForeground": "Colore del marcatore del righello delle annotazioni per il contenuto eliminato.",
+ "overviewRulerModifiedForeground": "Colore del marcatore del righello delle annotazioni per il contenuto modificato."
+ },
+ "vs/workbench/contrib/scrollLocking/browser/scrollLocking": {
+ "holdLockedScrolling": "Tenere premuto lo scorrimento bloccato tra gli editor",
+ "miHoldLockedScrolling": "Scorrimento bloccato",
+ "miToggleLockedScrolling": "Scorrimento bloccato",
+ "mouseLockScrollingEnabled": "Scorrimento bloccato abilitato",
+ "mouseScrolllingLocked": "Scorrimento bloccato",
+ "synchronizeScrolling": "Sincronizza editor di scorrimento",
+ "toggleLockedScrolling": "Attiva/Disattiva scorrimento bloccato tra gli editor"
},
"vs/workbench/contrib/search/browser/anythingQuickAccess": {
+ "chat": "Apri chat veloce",
"closeEditor": "Rimuovi dagli elementi aperti di recente",
"fileAndSymbolResultsSeparator": "risultati per file e simboli",
"filePickAriaLabelDirty": "{0} modifiche non salvate",
"fileResultsSeparator": "risultati dei file",
+ "helpPickAriaLabel": "{0}, {1}",
"noAnythingResults": "Non ci sono risultati corrispondenti",
"openToBottom": "Apri in basso",
"openToSide": "Apri lateralmente",
@@ -8056,68 +13484,74 @@
"onlySearchInOpenEditors": "Cerca solo in Editor aperti",
"useExcludesAndIgnoreFilesDescription": "Usa impostazioni di esclusione e file ignorati"
},
+ "vs/workbench/contrib/search/browser/quickTextSearch/textSearchQuickAccess": {
+ "QuickSearchMore": "Altro",
+ "QuickSearchOpenInFile": "Apri file",
+ "QuickSearchSeeMoreFiles": "Visualizza altri file",
+ "enterSearchTerm": "Immettere un termine da cercare tra i file.",
+ "goToSearch": "Apri in Visualizzazione ricerca",
+ "noAnythingResults": "Non ci sono risultati corrispondenti",
+ "showMore": "Apri in Visualizzazione ricerca"
+ },
"vs/workbench/contrib/search/browser/replaceService": {
"fileReplaceChanges": "{0} ↔ {1} (Anteprima sostituzione)",
"searchReplace.source": "Trova e sostituisci"
},
"vs/workbench/contrib/search/browser/search.contribution": {
- "CancelSearchAction.label": "Annulla ricerca",
- "ClearSearchResultsAction.label": "Cancella risultati della ricerca",
- "CollapseDeepestExpandedLevelAction.label": "Comprimi tutto",
- "ExpandAllAction.label": "Espandi tutto",
- "RefreshAction.label": "Aggiorna",
"anythingQuickAccess": "Vai al file",
"anythingQuickAccessPlaceholder": "Cerca i file per nome (aggiungere {0} per passare alla riga oppure {1} per passare al simbolo)",
- "clearSearchHistoryLabel": "Cancella cronologia di ricerca",
- "copyAllLabel": "Copia tutti",
- "copyMatchLabel": "Copia",
- "copyPathLabel": "Copia percorso",
- "exclude": "Consente di configurare [glob patterns](https://code.visualstudio.com/docs/editor/codebasics#_advanced-search-options) per escludere file e cartelle nelle ricerche full-text e in Quick Open. Eredita tutti i criteri GLOB dall'impostazione `#files.exclude#`.",
+ "exclude": "Consente di configurare [glob patterns](https://code.visualstudio.com/docs/editor/codebasics#_advanced-search-options) per escludere file e cartelle nelle ricerche full-text e in Quick Open. Per escludere i file dall'elenco dei file aperti di recente in Quick Open, i criteri devono essere assoluti, ad esempio '**/node_modules/**'. Eredita tutti i criteri GLOB dall'impostazione '#files.exclude#'.",
"exclude.boolean": "Criterio GLOB da usare per trovare percorsi file. Impostare su True o False per abilitare o disabilitare il criterio.",
"exclude.when": "Controllo aggiuntivo sugli elementi di pari livello di un file corrispondente. Usare \\$(basename) come variabile del nome file corrispondente.",
"filterSortOrder": "Controlla l'ordinamento della cronologia dell'editor in Quick Open quando viene applicato il filtro.",
"filterSortOrder.default": "Le voci della cronologia sono ordinate per pertinenza in base al valore di filtro usato. Le voci più pertinenti vengono visualizzate per prime.",
"filterSortOrder.recency": "Le voci della cronologia sono ordinate in base alla data. Le voci aperte più di recente vengono visualizzate per prime.",
- "findInFiles": "Cerca nei file",
- "findInFiles.args": "Set di opzioni per la ricerca",
- "findInFiles.description": "Apre una ricerca nell'area di lavoro",
- "findInFolder": "Trova nella cartella...",
- "findInWorkspace": "Trova nell'area di lavoro...",
- "focusSearchListCommandLabel": "Elenco con stato attivo",
"maintainFileSearchCacheDeprecated": "La cache di ricerca viene mantenuta nell'host dell'estensione, che non viene mai arrestata, quindi questa impostazione non è più necessaria.",
- "miFindInFiles": "Cerca nei &&file",
- "miGotoSymbolInWorkspace": "Vai al &&simbolo nell'area di lavoro...",
- "miReplaceInFiles": "Sostituisci nei &&file",
"miViewSearch": "&&Cerca",
- "name": "Cerca",
- "revealInSideBar": "Visualizza nella vista Esplora risorse",
+ "scm.defaultViewMode.list": "Mostra i risultati della ricerca come un elenco.",
+ "scm.defaultViewMode.tree": "Mostra i risultati della ricerca come un albero.",
"search": "Cerca",
- "search.actionsPosition": "Controlla il posizionamento in righe della barra azioni nella visualizzazione di ricerca.",
- "search.actionsPositionAuto": "Posiziona la barra azioni a destra quando la visualizzazione di ricerca è stretta e subito dopo il contenuto quando la visualizzazione di ricerca è ampia.",
+ "search.actionsPosition": "Controllare il posizionamento della barra azioni sulle righe nella visualizzazione di ricerca.",
+ "search.actionsPositionAuto": "Posizionare la barra azioni a destra quando la visualizzazione di ricerca è stretta e subito dopo il contenuto quando tale visualizzazione è ampia.",
"search.actionsPositionRight": "Posiziona sempre la barra azioni a destra.",
"search.collapseAllResults": "Controlla se i risultati della ricerca verranno compressi o espansi.",
"search.collapseResults.auto": "I file con meno di 10 risultati vengono espansi. Gli altri vengono compressi.",
+ "search.decorations.badges": "Controlla se le decorazioni dei file di ricerca devono usare le notifiche.",
+ "search.decorations.colors": "Controlla se le decorazioni dei file di ricerca devono usare colori.",
+ "search.defaultViewMode": "Controlla la modalità di visualizzazione dei risultati di ricerca predefinita.",
+ "search.experimental.closedNotebookResults": "Mostra i risultati del contenuto avanzato dell'editor di notebook per i blocchi appunti chiusi. Aggiornare i risultati della ricerca dopo aver modificato questa impostazione.",
"search.followSymlinks": "Controlla se seguire i collegamenti simbolici durante la ricerca.",
- "search.globalFindClipboard": "Controlla se il viewlet di ricerca deve leggere o modificare gli appunti di ricerca condivisi in macOS.",
+ "search.globalFindClipboard": "Controllare se la visualizzazione di ricerca deve leggere o modificare gli appunti di ricerca condivisi in macOS.",
"search.location": "Controlla se la ricerca verrà mostrata come visualizzazione nella barra laterale o come pannello nell'area pannelli per ottenere più spazio orizzontale.",
"search.location.deprecationMessage": "Questa impostazione è deprecata. È possibile trascinare l'icona di ricerca in una nuova posizione.",
"search.maintainFileSearchCache": "Se abilitato, il processo searchService verrà mantenuto attivo invece di essere arrestato dopo un'ora di inattività. In questo modo la cache di ricerca dei file rimarrà in memoria.",
"search.maxResults": "Controlla il numero massimo di risultati della ricerca, che può essere impostato su 'Null' (vuoto) per restituire risultati illimitati.",
- "search.mode": "Controlla la posizione in cui si verificano le nuove operazioni 'Cerca: Trova nei file' e 'Trova nella cartella': nella visualizzazione di ricerca o in un editor di ricerca",
+ "search.mode": "Controllare la posizione in cui si verificano le nuove operazioni 'Cerca: Trova nei file' e 'Trova nella cartella', ovvero nella visualizzazione di ricerca o in un editor di ricerca.",
"search.mode.newEditor": "Esegue la ricerca in un nuovo editor della ricerca.",
"search.mode.reuseEditor": "Esegue la ricerca in un editor della ricerca esistente, se presente, altrimenti in un nuovo editor della ricerca.",
"search.mode.view": "Cercare nella visualizzazione di ricerca, nel pannello o nelle barre laterali.",
+ "search.quickAccess.preserveInput": "Controlla se l'ultimo input digitato nella ricerca rapida deve essere ripristinato alla riapertura successiva.",
"search.quickOpen.includeHistory": "Indica se includere i risultati di file aperti di recente nel file dei risultati per Quick Open.",
"search.quickOpen.includeSymbols": "Indica se includere i risultati di una ricerca di simboli globale nei risultati dei file per Quick Open.",
+ "search.ripgrep.maxThreads": "Numero di thread da usare per la ricerca. Se impostato su 0, il motore determina automaticamente questo valore.",
"search.searchEditor.defaultNumberOfContextLines": "Numero predefinito delle righe di contesto circostanti da usare durante la creazione di nuovi editor di ricerca. Se si usa `#search.searchEditor.reusePriorSearchConfiguration#`, può essere impostato su `null` (vuoto) per usare la configurazione precedente dell'editor di ricerca.",
- "search.searchEditor.doubleClickBehaviour": "Configura l'effetto del doppio clic su un risultato nell'editor della ricerca.",
+ "search.searchEditor.doubleClickBehaviour": "Configurare l'effetto del doppio clic su un risultato nell'editor della ricerca.",
"search.searchEditor.doubleClickBehaviour.goToLocation": "Facendo doppio clic il risultato viene aperto nel gruppo di editor attivo.",
"search.searchEditor.doubleClickBehaviour.openLocationToSide": "Facendo doppio clic il risultato viene aperto nel gruppo di editor laterale e viene creato un gruppo se non esiste ancora.",
"search.searchEditor.doubleClickBehaviour.selectWord": "Facendo doppio clic viene selezionata la parola sotto il cursore.",
+ "search.searchEditor.focusResultsOnSearch": "Quando si attiva una ricerca, sposta lo stato attivo sui risultati dell'editor della ricerca anziché sull'input dell'editor della ricerca.",
"search.searchEditor.reusePriorSearchConfiguration": "Se è abilitata, i nuovi editor della ricerca riutilizzeranno le impostazioni include, excludes e flag dell'editor della ricerca aperto in precedenza.",
+ "search.searchEditor.singleClickBehaviour": "Configurare l'effetto del clic singolo su un risultato nell'editor della ricerca.",
+ "search.searchEditor.singleClickBehaviour.default": "Il clic singolo non esegue alcuna operazione.",
+ "search.searchEditor.singleClickBehaviour.peekDefinition": "Se si fa clic con un solo clic, viene aperta una finestra Visualizza in anteprima la definizione.",
"search.searchOnType": "Cerca in tutti i file durante la digitazione.",
"search.searchOnTypeDebouncePeriod": "Se {0} è abilitato, controlla il timeout in millisecondi tra la digitazione di un carattere e l'avvio della ricerca. Non ha effetto quando {0} è disabilitato.",
- "search.seedOnFocus": "Aggiorna la query di ricerca in base al testo selezionato dell'editor quando lo stato attivo si trova nella visualizzazione di ricerca. Si verifica in caso di clic o quando si attiva il comando `workbench.views.search.focus`.",
+ "search.searchView.keywordSuggestions": "Abilitare i suggerimenti per le parole chiave nella visualizzazione di ricerca.",
+ "search.searchView.semanticSearchBehavior": "Consente di controllare il comportamento dei risultati della ricerca semantica mostrati nella visualizzazione di ricerca.",
+ "search.searchView.semanticSearchBehavior.auto": "Richiedere i risultati semantici automaticamente a ogni ricerca.",
+ "search.searchView.semanticSearchBehavior.manual": "Richiedere i risultati della ricerca semantica solo manualmente.",
+ "search.searchView.semanticSearchBehavior.runOnEmpty": "Richiedere i risultati semantici automaticamente solo quando i risultati della ricerca di testo sono vuoti.",
+ "search.seedOnFocus": "Aggiornare la query di ricerca in base al testo selezionato dell'editor quando lo stato attivo si trova nella visualizzazione di ricerca. Ciò si verifica in caso di clic o di attivazione del comando `workbench.views.search.focus`.",
"search.seedWithNearestWord": "Abilita il seeding della ricerca a partire dalla parola più vicina al cursore quando non ci sono selezioni nell'editor attivo.",
"search.showLineNumbers": "Controlla se visualizzare i numeri di riga per i risultati della ricerca.",
"search.smartCase": "Esegue la ricera senza fare distinzione tra maiuscole/minuscole se il criterio è tutto minuscolo, in caso contrario esegue la ricerca facendo distinzione tra maiuscole/minuscole.",
@@ -8131,24 +13565,91 @@
"searchSortOrder.filesOnly": "I risultati vengono visualizzati in ordine alfabetico in base ai nomi file ignorando l'ordine delle cartelle.",
"searchSortOrder.modified": "I risultati vengono visualizzati in ordine decrescente in base alla data dell'ultima modifica del file.",
"searchSortOrder.type": "I risultati vengono visualizzati in ordine alfabetico in base all'estensione del file.",
- "showTriggerActions": "Vai al simbolo nell'area di lavoro...",
"symbolsQuickAccess": "Vai al simbolo nell'area di lavoro",
"symbolsQuickAccessPlaceholder": "Digitare il nome di un simbolo da aprire.",
- "useGlobalIgnoreFiles": "Controlla se usare i file `.gitignore` e `.ignore` globali durante la ricerca di file. Richiede l'abilitazione di `#search.useIgnoreFiles#`.",
+ "textSearchPickerHelp": "Cerca testo",
+ "textSearchPickerPlaceholder": "Cerca testo nei file dell'area di lavoro.",
+ "useGlobalIgnoreFiles": "Controlla se usare il file gitignore globale, (ad esempio, da '$HOME/.config/git/ignore') durante la ricerca di file. Richiede l'abilitazione di {0}.",
"useIgnoreFiles": "Controlla se utilizzare i file `.gitignore` e `.ignore` durante la ricerca di file.",
"usePCRE2Deprecated": "Deprecata. PCRE2 verrà usato automaticamente se si usano funzionalità regex supportate solo da PCRE2.",
- "useParentIgnoreFiles": "Controlla se usare i file `.gitignore` e `.ignore` nelle directory padre durante la ricerca di file. Richiede l'abilitazione di `#search.useIgnoreFiles#`.",
+ "useParentIgnoreFiles": "Controlla se usare i file `.gitignore` e `.ignore` nelle directory padre durante la ricerca di file. Richiede l'abilitazione di {0}.",
"useRipgrep": "Questa impostazione è deprecata. Verrà ora eseguito il fallback a \"search.usePCRE2\".",
"useRipgrepDeprecated": "Deprecata. Per il supporto della funzionalità avanzate delle espressioni regex provare a usare \"search.usePCRE2\"."
},
- "vs/workbench/contrib/search/browser/searchActions": {
+ "vs/workbench/contrib/search/browser/searchActionsBase": {
+ "search": "Cerca"
+ },
+ "vs/workbench/contrib/search/browser/searchActionsCopy": {
+ "copyAllLabel": "Copia tutti",
+ "copyMatchLabel": "Copia",
+ "copyPathLabel": "Copia percorso",
+ "getSearchResultsLabel": "Ottieni risultati della ricerca"
+ },
+ "vs/workbench/contrib/search/browser/searchActionsFind": {
+ "excludeFileTypeFromSearch": "Escludere il tipo di file da Cerca",
+ "excludeFolderFromSearch": "Escludi cartella dalla ricerca",
+ "findInFiles": "Cerca nei file",
+ "findInFiles.args": "Set di opzioni per la ricerca",
+ "findInFiles.description": "Apre una ricerca nell'area di lavoro",
+ "findInFolder": "Trova nella cartella...",
+ "findInWorkspace": "Trova nell'area di lavoro...",
+ "includeFileTypeInSearch": "Includere il tipo di file da Cerca",
+ "miFindInFiles": "Cerca nei &&file",
+ "restrictResultsToFolder": "Limita ricerca alla cartella",
+ "revealInSideBar": "Visualizza nella vista Esplora risorse",
+ "search.expandRecursively": "Espandi in modo ricorsivo"
+ },
+ "vs/workbench/contrib/search/browser/searchActionsNav": {
+ "AddCursorsAtSearchResults.label": "Aggiungi cursori nei risultati della ricerca",
+ "CloseReplaceWidget.label": "Chiudi widget sostituisci",
+ "FocusNextInputAction.label": "Input successivo stato attivo",
"FocusNextSearchResult.label": "Sposta lo stato attivo sul risultato della ricerca successivo",
+ "FocusPreviousInputAction.label": "Input precedente stato attivo",
"FocusPreviousSearchResult.label": "Sposta lo stato attivo sul risultato della ricerca precedente",
+ "FocusSearchFromResults.label": "Ricerca dello stato attivo dai risultati",
+ "OpenMatch.label": "Apri corrispondenza",
+ "OpenMatchToSide.label": "Apri corrispondenza a lato",
+ "ToggleCaseSensitiveCommandId.label": "Attiva/Disattiva distinzione tra maiuscole e minuscole",
+ "TogglePreserveCaseId.label": "Attiva/Disattiva maiuscole/minuscole",
+ "ToggleQueryDetailsAction.label": "Attiva/Disattiva dettagli query",
+ "ToggleRegexCommandId.label": "Attiva/Disattiva regex",
+ "ToggleWholeWordCommandId.label": "Attiva/Disattiva parola intera",
+ "focusSearchListCommandLabel": "Elenco con stato attivo",
+ "replaceInFiles": "Sostituire nei file",
+ "toggleTabs": "Attiva/Disattiva ricerca durante la digitazione"
+ },
+ "vs/workbench/contrib/search/browser/searchActionsRemoveReplace": {
"RemoveAction.label": "Chiudi",
"file.replaceAll.label": "Sostituisci tutto",
- "match.replace.label": "Sostituisci",
- "replaceInFiles": "Sostituisci nei file",
- "toggleTabs": "Attiva/Disattiva ricerca durante la digitazione"
+ "match.replace.label": "Sostituisci"
+ },
+ "vs/workbench/contrib/search/browser/searchActionsSymbol": {
+ "miGotoSymbolInWorkspace": "Vai al &&simbolo nell'area di lavoro...",
+ "showTriggerActions": "Vai al simbolo nell'area di lavoro..."
+ },
+ "vs/workbench/contrib/search/browser/searchActionsTextQuickAccess": {
+ "quickTextSearch": "Ricerca rapida"
+ },
+ "vs/workbench/contrib/search/browser/searchActionsTopBar": {
+ "CancelSearchAction.label": "Annulla ricerca",
+ "ClearSearchResultsAction.label": "Cancella risultati della ricerca",
+ "CollapseDeepestExpandedLevelAction.label": "Comprimi tutto",
+ "ExpandAllAction.label": "Espandi tutto",
+ "RefreshAction.label": "Aggiorna",
+ "SearchWithAIAction.label": "Cerca con l'IA",
+ "ViewAsListAction.label": "Visualizza come elenco",
+ "ViewAsTreeAction.label": "Visualizza come albero",
+ "clearSearchHistoryLabel": "Cancella cronologia di ricerca"
+ },
+ "vs/workbench/contrib/search/browser/searchChatContext": {
+ "chatContext.attach.files.placeholder": "Cercare il file o la cartella per nome",
+ "chatContext.folder": "File e cartelle...",
+ "chatContext.searchResults": "Risultati della ricerca",
+ "select.symb": "Selezionare un simbolo",
+ "symbols": "Simboli..."
+ },
+ "vs/workbench/contrib/search/browser/searchFindInput": {
+ "searchFindInputNotebookFilter.label": "Filtro ricerca notebook"
},
"vs/workbench/contrib/search/browser/searchIcons": {
"searchClearIcon": "Icona per Cancella i risultati nella visualizzazione di ricerca.",
@@ -8157,12 +13658,18 @@
"searchExpandAllIcon": "Icona per Espandi risultati nella visualizzazione di ricerca.",
"searchHideReplaceIcon": "Icona per comprimere la sezione di sostituzione nella visualizzazione di ricerca.",
"searchNewEditorIcon": "Icona per l'azione di apertura di un nuovo editor di ricerca.",
+ "searchOpenInFile": "Icona dell'azione che consente di passare al file del risultato della ricerca corrente.",
"searchRefreshIcon": "Icona per aggiornare nella visualizzazione di ricerca.",
"searchRemoveIcon": "Icona per rimuovere un risultato della ricerca.",
"searchReplaceAllIcon": "Icona per Sostituisci tutto nella visualizzazione di ricerca.",
"searchReplaceIcon": "Icona per Sostituisci nella visualizzazione di ricerca.",
+ "searchSeeMoreIcon": "Icona per visualizzare più contesto nella visualizzazione di ricerca.",
+ "searchShowAsList": "Icona per visualizzare i risultati come un elenco nella visualizzazione di ricerca.",
+ "searchShowAsTree": "Icona per visualizzare i risultati come albero nella visualizzazione di ricerca.",
"searchShowContextIcon": "Icona per attivare/disattivare il contesto nell'editor della ricerca.",
"searchShowReplaceIcon": "Icona per espandere la sezione di sostituzione nella visualizzazione di ricerca.",
+ "searchSparkleEmpty": "Icona per nascondere i risultati dell'intelligenza artificiale nella ricerca.",
+ "searchSparkleFilled": "Icona per visualizzare i risultati dell'intelligenza artificiale nella ricerca",
"searchStopIcon": "Icona per Arresta nella visualizzazione di ricerca.",
"searchViewIcon": "Icona della visualizzazione Ricerca."
},
@@ -8176,29 +13683,31 @@
"lineNumStr": "Da riga {0}",
"numLinesStr": "Altre {0} righe",
"otherFilesAriaLabel": "{0} corrispondenze esterne all'area di lavoro. Risultato della ricerca",
- "replacePreviewResultAria": "Sostituisce il termine {0} con {1} alla colonna {2} in linea con il testo {3}",
+ "replacePreviewResultAria": "'{0}' alla colonna {1} sostituire {2} con {3}",
"search": "Cerca",
"searchFileMatch": "{0} file trovato",
"searchFileMatches": "{0} file trovati",
+ "searchFolderMatch.aiText.label": "Risultati assistiti dall'IA",
"searchFolderMatch.other.label": "Altri file",
+ "searchFolderMatch.plainText.label": "Risultati in formato testo",
"searchMatch": "{0} corrispondenza trovata",
"searchMatches": "{0} corrispondenze trovate",
- "searchResultAria": "Trovato termine {0} alla colonna {1} in linea con il testo {2}"
+ "searchResultAria": "'{0}' alla colonna {1} trovato {2}"
},
"vs/workbench/contrib/search/browser/searchView": {
- "ariaSearchResultsClearStatus": "I risultati della ricerca sono stati cancellati",
"ariaSearchResultsStatus": "La ricerca ha restituito {0} risultati in {1} file",
"disableOpenEditors": "Cerca nell'intera area di lavoro",
"emptySearch": "Ricerca vuota",
"excludes.enable": "abilita",
"forTerm": " - Ricerca: {0}",
+ "keywordSuggestion.message": "Cerca invece: ",
"moreSearch": "Attiva/Disattiva dettagli ricerca",
"noOpenEditorResultsExcludes": "Non sono stati trovati risultati negli editor aperti escludendo '{0}' - ",
- "noOpenEditorResultsFound": "Non sono stati trovati risultati negli editor aperti. Rivedere le impostazioni relative alle esclusioni configurate e verificare i file gitignore - ",
+ "noOpenEditorResultsFound": "Non sono stati trovati risultati negli editor aperti. Rivedere le esclusioni configurate e verificare i file gitignore - ",
"noOpenEditorResultsIncludes": "Negli editor aperti non sono stati trovati risultati corrispondenti a '{0}' - ",
"noOpenEditorResultsIncludesExcludes": "Negli editor aperti non sono stati trovati risultati corrispondenti a '{0}' escludendo '{1}' - ",
"noResultsExcludes": "Non sono stati trovati risultati escludendo '{0}' - ",
- "noResultsFound": "Non sono stati trovati risultati. Rivedere le impostazioni relative alle esclusioni configurate e verificare i file gitignore -",
+ "noResultsFound": "Nessun risultato trovato. Rivedere le esclusioni configurate e verificare i file gitignore - ",
"noResultsIncludes": "Non sono stati trovati risultati in '{0}' - ",
"noResultsIncludesExcludes": "Non sono stati trovati risultati in '{0}' escludendo '{1}' - ",
"onlyOpenEditors": "ricerca solo in file aperti",
@@ -8206,7 +13715,6 @@
"openFolder": "Apri cartella",
"openInEditor.message": "Apri nell'editor",
"openInEditor.tooltip": "Copia i risultati della ricerca corrente in un editor",
- "openSettings.learnMore": "Altre informazioni",
"openSettings.message": "Apri impostazioni",
"placeholder.excludes": "ad esempio *.ts, src/**/exclude",
"placeholder.includes": "ad esempio *.ts, src/**/include",
@@ -8239,7 +13747,9 @@
"searchPathNotFoundError": "Percorso di ricerca non trovato: {0}",
"searchScope.excludes": "file da escludere",
"searchScope.includes": "file da includere",
+ "searchWithAIButtonTooltip": "Cerca con l'IA",
"searchWithoutFolder": "Non è stata ancora aperta o specificata alcuna cartella. La ricerca verrà eseguita solo nei file aperti -",
+ "triggerAISearch.tooltip": "Cerca con l'IA.",
"useExcludesAndIgnoreFilesDescription": "Usa impostazioni di esclusione e file ignorati",
"useIgnoresAndExcludesDisabled": "le opzioni per escludere le impostazioni e ignorare i file sono disabilitate"
},
@@ -8276,7 +13786,7 @@
"search.action.focusFilesToInclude": "Spostare lo stato attivo su File dell'editor di ricerca da includere",
"search.action.focusQueryEditorWidget": "Sposta stato attivo sull'input dell'editor della ricerca",
"search.openNewEditor": "Apri nuovo editor della ricerca",
- "search.openNewEditorToSide": "Apri nuovo editor della ricerca a lato",
+ "search.openNewEditorToSide": "Aprire nuovo editor della ricerca di lato",
"search.openNewSearchEditor": "Nuovo editor della ricerca",
"search.openResultsInEditor": "Apri risultati nell'editor",
"search.openSearchEditor": "Apri editor della ricerca",
@@ -8292,6 +13802,7 @@
"searchEditor.deleteResultBlock": "Elimina risultati dei file"
},
"vs/workbench/contrib/searchEditor/browser/searchEditorInput": {
+ "searchEditorLabelIcon": "Icona dell’etichetta dell’editor di ricerca.",
"searchTitle": "Cerca",
"searchTitle.withQuery": "Ricerca: {0}"
},
@@ -8304,30 +13815,20 @@
"oneResult": "1 risultato",
"searchMaxResultsWarning": "Il set di risultati contiene solo un subset di tutte le corrispondenze. Eseguire una ricerca più specifica per ridurre il numero di risultati."
},
- "vs/workbench/contrib/sessionSync/browser/sessionSync.contribution": {
- "apply edit session warning": "L'applicazione della sessione di modifica potrebbe sovrascrivere le modifiche non sottoposte a commit esistenti. Continuare?",
- "apply failed": "Non è stato possibile applicare la sessione di modifica.",
- "applying edit session": "Applicazione della sessione di modifica in corso...",
- "client too old": "Eseguire l'aggiornamento a una versione più recente di {0} per applicare questa sessione di modifica.",
- "continue edit session": "Continua la sessione di modifica...",
- "continue edit session in local folder": "Apri nella cartella locale",
- "continueEditSession.openLocalFolder.title": "Selezionare una cartella locale in cui continuare la sessione di modifica",
- "continueEditSessionExtPoint": "Aggiunge come contributo le opzioni per continuare la sessione di modifica corrente in un ambiente diverso",
- "continueEditSessionExtPoint.command": "Identificatore del comando da eseguire. Il comando deve essere dichiarato nella sezione 'commands' e restituire un URI che rappresenta un ambiente diverso in cui è possibile continuare la sessione di modifica corrente.",
- "continueEditSessionExtPoint.group": "Gruppo a cui appartiene l'elemento.",
- "continueEditSessionExtPoint.when": "Condizione che deve essere vera per mostrare questo elemento.",
- "continueEditSessionItem.openInLocalFolder": "Apri nella cartella locale",
- "continueEditSessionPick.placeholder": "Scegli come vuoi continuare a lavorare",
- "continueEditSessionPick.title": "Continua la sessione di modifica...",
- "editSessionsEnabled": "Controlla se visualizzare le azioni abilitate per il cloud per archiviare e riprendere le modifiche di cui non è stato eseguito il commit quando si passa da Web, desktop o dispositivi.",
- "no edit session": "Non ci sono sessioni di modifica da applicare.",
- "no edit session content for ref": "Non è possibile applicare i contenuti delle sessioni di modifica della sessione per l'ID {0}.",
- "no edits to store": "La sessione di modifica di archiviazione è stata ignorata perché non sono presenti modifiche da archiviare.",
- "payload failed": "Impossibile archiviare la sessione di modifica.",
- "payload too large": "La sessione di modifica supera il limite di dimensioni e non può essere archiviata.",
- "resume latest": "Riprendere la sessione di modifica più recente",
- "store current": "Archiviare la sessione di modifica corrente",
- "storing edit session": "Archiviazione della sessione di modifica in corso..."
+ "vs/workbench/contrib/share/browser/share.contribution": {
+ "close": "Chiudi",
+ "experimental.share.enabled": "Controlla se eseguire il rendering dell'azione Condividi accanto al centro comandi quando {0} è {1}.",
+ "generating link": "Generazione collegamento...",
+ "open link": "Aprire collegamento",
+ "share": "Condividi...",
+ "shareSuccess": "Collegamento copiato negli Appunti!",
+ "shareTextSuccess": "Testo copiato negli Appunti!"
+ },
+ "vs/workbench/contrib/share/browser/shareService": {
+ "shareProviderCount": "Numero di provider di condivisione disponibili",
+ "toggle.share": "Condividi",
+ "toggle.shareDescription": "Attiva/Disattiva la visibilità dell'azione Condividi nella barra del titolo",
+ "type to filter": "Scegli come condividere {0}"
},
"vs/workbench/contrib/snippets/browser/commands/abstractSnippetsActions": {
"snippets": "Frammenti"
@@ -8336,22 +13837,23 @@
"bad_name1": "Nome file non valido",
"bad_name2": "'{0}' non è un nome di file valido",
"bad_name3": "'{0}' esiste già",
+ "detail.label": "({0}) {1}",
"global.1": "({0})",
"global.scope": "(globale)",
"group.global": "Frammenti esistenti",
- "miOpenSnippets": "&&Frammenti utente",
+ "miOpenSnippets": "&&Frammenti di codice",
"name": "Digitare il nome file del frammento",
"new.folder": "Nuovo file di frammenti per '{0}'...",
"new.global": "Nuovo file di Frammenti globali...",
"new.global.sep": "Nuovi frammenti di codice",
"new.global_scope": "GLOBAL",
"new.workspace_scope": "Area di lavoro {0}",
- "openSnippet.label": "Configura Frammenti utente",
+ "openSnippet.label": "Configura frammenti di codice",
"openSnippet.pickLanguage": "Seleziona file di frammenti o crea frammenti",
- "userSnippets": "Frammenti utente"
+ "userSnippets": "Frammenti di codice"
},
"vs/workbench/contrib/snippets/browser/commands/fileTemplateSnippets": {
- "label": "Popola file da frammento",
+ "label": "Riempi file con frammento",
"placeholder": "Selezionare un frammento"
},
"vs/workbench/contrib/snippets/browser/commands/insertSnippet": {
@@ -8361,7 +13863,8 @@
"label": "Racchiudi tra frammento..."
},
"vs/workbench/contrib/snippets/browser/snippetCodeActionProvider": {
- "codeAction": "Racchiudi tra: {0}",
+ "codeAction": "{0}",
+ "more": "Altro...",
"overflow.start.title": "Inizia con frammento",
"title": "Inizia con: {0}"
},
@@ -8379,7 +13882,7 @@
"sep.workspaceSnippet": "Frammenti area di lavoro"
},
"vs/workbench/contrib/snippets/browser/snippets.contribution": {
- "editor.snippets.codeActions.enabled": "Controlla se gli snippet surround-with-snippet o gli snippet dei modelli di file vengono visualizzati come azioni codice.",
+ "editor.snippets.codeActions.enabled": "Controlla se gli snippet racchiudi con o gli snippet dei modelli di file vengono visualizzati come azioni codice.",
"snippetSchema.json": "Configurazione del frammento utente",
"snippetSchema.json.body": "Contenuto del frammento. Usare '$1', '${1:defaultText}' per definire le posizioni del cursore e '$0' per la posizione finale del cursore. Inserire i valori delle variabili con '${varName}' e '${varName:defaultText}', ad esempio 'Nome del file: $TM_FILENAME'.",
"snippetSchema.json.default": "Frammento vuoto",
@@ -8404,30 +13907,54 @@
"vscode.extension.contributes.snippets-language": "Identificatore di linguaggio per cui si aggiunge come contributo questo frammento.",
"vscode.extension.contributes.snippets-path": "Percorso del file snippets. È relativo alla cartella delle estensioni e in genere inizia con './snippets/'."
},
- "vs/workbench/contrib/surveys/browser/ces.contribution": {
- "cesSurveyQuestion": "Il team di VS Code vorrebbe ricevere feedback sull'esperienza utente di VS Code.",
- "giveFeedback": "Invia feedback",
- "remindLater": "Visualizza più tardi"
+ "vs/workbench/contrib/speech/browser/speechService": {
+ "speechProviderDescription": "Descrizione di questo provider Servizio cognitivo di Azure per la voce, visualizzata nell'interfaccia utente.",
+ "speechProviderName": "Nome univoco per questo provider di comandi vocali.",
+ "vscode.extension.contributes.speechProvider": "Fornisce un provider di comandi vocali"
+ },
+ "vs/workbench/contrib/speech/common/speechService": {
+ "hasSpeechProvider": "Un provider di comandi vocali è registrato nel servizio voce.",
+ "speechLanguage.da-DK": "Danese (Danimarca)",
+ "speechLanguage.de-DE": "Tedesco (Germania)",
+ "speechLanguage.en-AU": "Inglese (Australia)",
+ "speechLanguage.en-CA": "Inglese (Canada)",
+ "speechLanguage.en-GB": "Inglese (Regno Unito)",
+ "speechLanguage.en-IE": "Inglese (Irlanda)",
+ "speechLanguage.en-IN": "Inglese (India)",
+ "speechLanguage.en-NZ": "Inglese (Nuova Zelanda)",
+ "speechLanguage.en-US": "Inglese (Stati Uniti)",
+ "speechLanguage.es-ES": "Spagnolo (Spagna)",
+ "speechLanguage.es-MX": "Spagnolo (Messico)",
+ "speechLanguage.fr-CA": "Francese (Canada)",
+ "speechLanguage.fr-FR": "Francese (Francia)",
+ "speechLanguage.hi-IN": "Hindi (India)",
+ "speechLanguage.it-IT": "Italiano (Italia)",
+ "speechLanguage.ja-JP": "Giapponese (Giappone)",
+ "speechLanguage.ko-KR": "Coreano (Corea del Sud)",
+ "speechLanguage.nl-NL": "Olandese (Paesi Bassi)",
+ "speechLanguage.pt-BR": "Portoghese (Brasile)",
+ "speechLanguage.pt-PT": "Portoghese (Portogallo)",
+ "speechLanguage.ru-RU": "Russo (Russia)",
+ "speechLanguage.sv-SE": "Svedese (Svezia)",
+ "speechLanguage.tr-TR": "Turco (Turchia)",
+ "speechLanguage.zh-CN": "Cinese (semplificato, Cina)",
+ "speechLanguage.zh-HK": "Cinese (tradizionale, RAS di Hong Kong)",
+ "speechLanguage.zh-TW": "Cinese tradizionale (Taiwan)",
+ "speechToTextInProgress": "È in corso una sessione di riconoscimento vocale.",
+ "textToSpeechInProgress": "È in corso una sessione di sintesi vocale."
},
"vs/workbench/contrib/surveys/browser/languageSurveys.contribution": {
"helpUs": "Aiutaci a migliorare il nostro supporto all'{0}",
"neverAgain": "Non visualizzare più questo messaggio",
- "remindLater": "Visualizza più tardi",
+ "remindLater": "Ricordamelo più tardi",
"takeShortSurvey": "Partecipa a un breve sondaggio"
},
"vs/workbench/contrib/surveys/browser/nps.contribution": {
"neverAgain": "Non visualizzare più questo messaggio",
- "remindLater": "Visualizza più tardi",
+ "remindLater": "Ricordamelo più tardi",
"surveyQuestion": "Partecipare a un breve sondaggio?",
"takeSurvey": "Partecipa a sondaggio"
},
- "vs/workbench/contrib/tags/electron-browser/workspaceTagsService": {
- "workspaceFound": "Questa cartella contiene il file dell'area di lavoro '{0}'. Aprirlo? [Altre informazioni]({1}) sui file dell'area di lavoro.",
- "openWorkspace": "Apri area di lavoro",
- "workspacesFound": "Questa cartella contiene più file nell'area di lavoro. Vuoi aprire uno? [Ulteriori informazioni] ({0}) sui file nell'area di lavoro.",
- "selectWorkspace": "Seleziona area di lavoro",
- "selectToOpen": "Selezionare un'area di lavoro da aprire"
- },
"vs/workbench/contrib/tasks/browser/abstractTaskService": {
"ConfigureTaskRunnerAction.label": "Configura attività",
"TaskServer.folderIgnored": "La cartella {0} viene ignorata poiché utilizza attività (task) versione 0.1.0",
@@ -8443,18 +13970,23 @@
"TaskService.fetchingBuildTasks": "Recupero delle attività di compilazione...",
"TaskService.fetchingTestTasks": "Recupero delle attività di test...",
"TaskService.ignoredFolder": "Le cartelle dell'area di lavoro seguenti verranno ignorate perché usano la versione 0.1.0 delle attività: {0}",
+ "TaskService.instanceToTerminate": "Seleziona un'istanza da terminare",
"TaskService.noBuildTask": "Nessuna attività di compilazione da eseguire trovato. Configurare l'attività di compilazione...",
"TaskService.noBuildTask1": "Non è stata definita alcuna attività di compilazione. Contrassegnare un'attività con 'isBuildCommand' nel file tasks.json.",
"TaskService.noBuildTask2": "Non è stata definita alcuna attività di compilazione. Contrassegnare un'attività come gruppo 'build' nel file tasks.json.",
- "TaskService.noConfiguration": "Errore: il rilevamento attività {0} non ha aggiunto come contributo un'attività per la configurazione seguente:\r\n{1}\r\nL'attività verrà ignorata.\r\n",
+ "TaskService.noConfiguration": "Errore: il rilevamento attività {0} non ha aggiunto come contributo un'attività per la configurazione seguente:\r\n{1}\r\nL'attività verrà ignorata.",
"TaskService.noEntryToRun": "Configurare un'attività",
+ "TaskService.noInstanceRunning": "Nessuna istanza è attualmente in esecuzione",
+ "TaskService.noRunningTasks": "Nessuna attività in corso da riavviare",
"TaskService.noTaskIsRunning": "Non ci sono attività in esecuzione",
"TaskService.noTaskRunning": "Non ci sono attività attualmente in esecuzione",
"TaskService.noTaskToRestart": "Non ci sono attività da riavviare",
+ "TaskService.noTasks": "Nessuna attività permanente da riconnettere.",
"TaskService.noTestTask1": "Non è stata definita alcuna attività di test. Contrassegnare un'attività con 'isTestCommand' nel file tasks.json.",
"TaskService.noTestTask2": "Non è stata definita alcuna attività di test. Contrassegnare un'attività come gruppo 'test' nel file tasks.json.",
"TaskService.noTestTaskTerminal": "Non è stata trovata alcuna attività di test da eseguire. Configurare le attività...",
"TaskService.notAgain": "Non visualizzare più questo messaggio",
+ "TaskService.notConnecting": "Impostazione del valore configurato per le attività connesse {0}. Le attività sono già state riconnesse {1}",
"TaskService.openJsonFile": "Apri il file tasks.json",
"TaskService.pickBuildTask": "Selezionare l'attività di compilazione da eseguire",
"TaskService.pickBuildTaskForLabel": "Selezionare l'attività di compilazione (non è presente alcuna attività di compilazione predefinita)",
@@ -8464,19 +13996,24 @@
"TaskService.pickShowTask": "Selezionare l'attività di cui mostrare l'output",
"TaskService.pickTask": "Selezionare un'attività da configurare",
"TaskService.pickTestTask": "Selezionare l'attività di test da eseguire",
- "TaskService.providerUnavailable": "Avviso: le attività {0} non sono disponibili nell'ambiente corrente.\r\n",
+ "TaskService.providerUnavailable": "Avviso: le attività {0} non sono disponibili nell'ambiente corrente.",
+ "TaskService.reconnected": "Riconnesso alle attività in esecuzione.",
+ "TaskService.reconnecting": "Riconnessione alle attività in esecuzione in corso...",
+ "TaskService.reconnectingTasks": "Riconnessione a {0} attività...",
"TaskService.requestTrust": "Per elencare ed eseguire attività, è necessario che alcuni dei file in questa area di lavoro vengano eseguiti come codice.",
+ "TaskService.skippingReconnection": "La tipologia di avvio non consente il ricaricamento delle finestre, l'impostazione delle attività connesse e la rimozione di attività permanenti",
"TaskService.taskToRestart": "Selezionare l'attività da riavviare",
"TaskService.taskToTerminate": "Selezionare un'attività da terminare",
"TaskService.template": "Seleziona un modello di attività",
"TaskService.terminateAllRunningTasks": "Tutte le attività in esecuzione",
+ "TaskSystem.InstancePolicy.warn": "È stato raggiunto il limite massimo di istanze per questa attività.",
"TaskSystem.active": "Esiste già un'attività in esecuzione. Terminarla prima di eseguirne un'altra.",
- "TaskSystem.activeSame.noBackground": "L'attività '{0}' è già attiva.",
"TaskSystem.configurationErrors": "Errore: la configurazione delle attività specificata contiene errori di convalida e non è utilizzabile. Correggere prima gli errori.",
- "TaskSystem.invalidTaskJson": "Errore: nel contenuto del file tasks.json sono presenti errori di sintassi. Correggerli prima di eseguire un'attività.\r\n",
- "TaskSystem.invalidTaskJsonOther": "Errore: nel contenuto del file tasks.json in {0} sono presenti errori di sintassi. Correggerli prima di eseguire un'attività.\r\n",
+ "TaskSystem.invalidTaskJson": "Errore: nel contenuto del file tasks.json sono presenti errori di sintassi. Correggerli prima di eseguire un'attività.",
+ "TaskSystem.invalidTaskJsonOther": "Errore: nel contenuto del file tasks.json in {0}sono presenti errori di sintassi. Correggerli prima di eseguire un'attività.",
"TaskSystem.restartFailed": "Non è stato possibile terminare e riavviare l'attività {0}",
"TaskSystem.saveBeforeRun.prompt.title": "Salvare tutti gli editor?",
+ "TaskSystem.taskNoLongerExists": "L'attività {0} non esiste più o è stata modificata. Riavvio non riuscito.",
"TaskSystem.unknownError": "Si è verificato un errore durante l'esecuzione di un'attività. Per dettagli, vedere il log attività.",
"TaskSystem.versionSettings": "Nelle impostazioni utente sono consentite solo attività della versione 2.0.0.",
"TaskSystem.versionWorkspaceFile": "Nei file di configurazione dell'area di lavoro sono consentite solo attività della versione 2.0.0.",
@@ -8490,44 +14027,55 @@
"customizeParseErrors": "La configurazione dell'attività corrente presenta errori. Per favore correggere gli errori prima di personalizzazione un'attività.",
"detail": "Salvare tutti gli editor prima di eseguire l'attività?",
"detected": "attività rilevate",
- "moreThanOneBuildTask": "Nel file tasks.json sono definite molte attività di compilazione. Verrà eseguita la prima.\r\n",
+ "moreThanOneBuildTask": "Nel file tasks.json sono definite molte attività di compilazione. Verrà eseguita la prima.",
"recentlyUsed": "attività usate di recente",
- "restartTask": "Riavvia attività",
"runTask.arg": "Filtrare le attività visualizzate nella selezione rapida",
"runTask.label": "Etichetta dell'attività o del termine in base a cui filtrare",
- "runTask.task": "The task's label or a term to filter by",
+ "runTask.task": "Etichetta dell'attività o del termine in base a cui filtrare",
"runTask.type": "Tipo di attività aggiunta come contributo",
- "saveBeforeRun.dontSave": "Non salvare",
- "saveBeforeRun.save": "Salva",
+ "saveBeforeRun.dontSave": "&&Non salvare",
+ "saveBeforeRun.save": "&&Salva",
+ "savePersistentTask": "Salvataggio delle attività persistenti: {0}",
"selectProblemMatcher": "Selezionare il tipo di errori e di avvisi per cui analizzare l'output dell'attività",
"showOutput": "Mostra output",
+ "task.longRunningTaskCompleted": "Attività completata in {0}.",
+ "task.longRunningTaskCompletedWithLabel": "Attività \"{0}\" completata in {1}.",
+ "task.longRunningTaskDurationMinutes": "{0} min",
+ "task.longRunningTaskDurationMinutesSeconds": "{0} min {1} sec",
+ "task.longRunningTaskDurationSeconds": "{0} sec",
+ "taskEvent": "Tipo di evento attività: {0}",
"taskQuickPick.userSettings": "Utente",
- "taskService.ignoreingFolder": "Le configurazioni delle attività per la cartella {0} dell'area di lavoro verranno ignorate. Per il supporto delle attività delle aree di lavoro in più cartelle è necessario usare la versione 2.0.0 delle attività per tutte le cartelle\r\n",
+ "taskService.getSavedTasks": "Recupero delle attività dall'archiviazione delle attività.",
+ "taskService.getSavedTasks.error": "Recupero attività dall’archivio attività non riuscito: {0}.",
+ "taskService.getSavedTasks.reading": "Lettura delle attività da archiviazione attività, {0}, {1}, {2}",
+ "taskService.getSavedTasks.resolved": "Attività risolte {0}",
+ "taskService.getSavedTasks.unresolved": "Non è possibile risolvere l’attività {0} ",
+ "taskService.gettingCachedTasks": "Restituzione delle attività memorizzate nella cache {0}",
+ "taskService.ignoringFolder": "Le configurazioni delle attività per la cartella {0}dell'area di lavoro verranno ignorate. Per il supporto delle attività delle aree di lavoro in più cartelle è necessario usare la versione 2.0.0 delle attività per tutte le cartelle",
"taskService.openDiff": "Aprire diff",
"taskService.openDiffs": "Aprire diff",
+ "taskService.removePersistentTask": "Rimozione attività permanente {0}",
+ "taskService.setPersistentTask": "Impostazione di attività permanente {0}",
"taskService.upgradeVersion": "La versione 0.1.0 delle attività deprecate è stata rimossa. Le attività sono state aggiornate alla versione 2.0.0. Aprire il diff per verificare l'aggiornamento.",
"taskService.upgradeVersionPlural": "La versione 0.1.0 delle attività deprecate è stata rimossa. Le attività sono state aggiornate alla versione 2.0.0. Aprire i diff per verificare l'aggiornamento.",
"taskServiceOutputPrompt": "Sono presenti errori nell'attività. Per maggiori dettagli, vedere l'output.",
+ "taskServiceOutputPromptChat": "Sono presenti errori nell'attività. Usa la chat per correggerli o visualizza l'output per i dettagli.",
"tasks": "Attività",
"tasksJsonComment": "\t// Vedere https://go.microsoft.com/fwlink/?LinkId=733558 \r\n\t// per la documentazione relativa al formato tasks.json",
- "terminateTask": "Termina attività",
+ "troubleshootWithChat": "Correggi con l'IA",
"unexpectedTaskType": "Il provider di attività per le attività \"{0}\" ha fornito in modo imprevisto un'attività di tipo \"{1}\".\r\n"
},
"vs/workbench/contrib/tasks/browser/runAutomaticTasks": {
- "allow": "Consenti ed esegui",
- "disallow": "Non consentire",
- "openTask": "Apri file",
- "openTasks": "Apri i file",
- "tasks.run.allowAutomatic": "Per questa area di lavoro esistono attività ({0}) definite ({1}) che vengono eseguite automaticamente all'apertura dell'area di lavoro. Consentire l'esecuzione di attività automatiche all'apertura di questa area di lavoro?",
- "workbench.action.tasks.allowAutomaticTasks": "Consenti attività automatiche nella cartella",
- "workbench.action.tasks.disallowAutomaticTasks": "Non consentire attività automatiche nella cartella",
- "workbench.action.tasks.manageAutomaticRunning": "Gestisci attività automatiche nella cartella"
+ "workbench.action.tasks.allowAutomaticTasks": "Consenti le attività automatiche",
+ "workbench.action.tasks.disallowAutomaticTasks": "Non consentire le attività automatiche",
+ "workbench.action.tasks.manageAutomaticRunning": "Gestisci le attività automatiche"
},
"vs/workbench/contrib/tasks/browser/task.contribution": {
"BuildAction.label": "Esegui attività di compilazione",
"ConfigureDefaultBuildTask.label": "Configura attività di compilazione predefinita",
"ConfigureDefaultTestTask.label": "Configura attività di test predefinita",
"ReRunTaskAction.label": "Ripeti ultima attività",
+ "RerunAllRunningTasksAction.label": "Eseguire di nuovo tutte le attività in corso",
"RestartTaskAction.label": "Riavvia attività in esecuzione",
"RunTaskAction.label": "Esegui attività",
"ShowLogAction.label": "Mostra log attività",
@@ -8545,12 +14093,12 @@
"numberOfRunningTasks": "{0} attività in esecuzione",
"runningTasks": "Mostra attività in esecuzione",
"status.runningTasks": "Attività in esecuzione",
+ "task.NotifyWindowOnTaskCompletion": "Controlla il tempo minimo di esecuzione dell'attività in millisecondi prima di mostrare una notifica del sistema operativo al termine dell'attività, quando la finestra non è nello stato attivo. Impostare su -1 per disabilitare le notifiche. Impostare su 0 per visualizzare sempre le notifiche. Può essere una notifica della finestra o un avviso popup di notifica.",
"task.SaveBeforeRun.prompt": "Chiede se salvare gli editor prima dell'esecuzione.",
- "task.allowAutomaticTasks": "Abilitare le attività automatiche nella cartella.",
- "task.allowAutomaticTasks.auto": "Richiedere l'autorizzazione per ogni cartella",
+ "task.allowAutomaticTasks": "È possibile abilitare le attività automatiche. Si noti che le attività non verranno eseguite in un'area di lavoro non attendibile.",
"task.allowAutomaticTasks.off": "Mai",
+ "task.allowAutomaticTasks.on": "Sempre",
"task.autoDetect": "Controlla l'abilitazione di `provideTasks` per l'estensione del provider di tutte le attività. Se il comando Attività: Esegui attività è lento, può essere utile disabilitare il rilevamento automatico per i provider attività. Le singole estensioni possono anche fornire impostazioni che disabilitano il rilevamento automatico.",
- "task.experimental.reconnection": "On window reload, reconnect to running watch/background tasks. Note that this is experimental, so you could encounter issues.",
"task.problemMatchers.neverPrompt": "Configura se visualizzare o meno il prompt del matcher problemi durante l'esecuzione di un'attività. Impostare su `true` per non visualizzare mai il prompt oppure usare un dizionario dei tipi di attività per disattivare il prompt solo per tipi di attività specifici.",
"task.problemMatchers.neverPrompt.array": "Oggetto contenente coppie booleane di tipi di attività per i quali non chiedere mai i matcher problemi.",
"task.problemMatchers.neverPrompt.boolean": "Imposta il comportamento dei suggerimenti del matcher problemi per tutte le attività.",
@@ -8558,24 +14106,25 @@
"task.quickOpen.history": "Controlla il numero di elementi recenti di cui viene tenuto traccia nella finestra di dialogo Quick Open dell'attività.",
"task.quickOpen.showAll": "Fa in modo che il comando Attività: Esegui attività usi il comportamento più lento \"Mostra tutto\" invece del selettore a due livelli più rapido in cui le attività vengono raggruppate in base al provider.",
"task.quickOpen.skip": "Controlla se la selezione rapida delle attività viene ignorata in presenza di una sola attività da selezionare.",
+ "task.reconnection": "Durante il ricaricamento della finestra riconnettersi alle attività con matcher di problemi.",
"task.saveBeforeRun": "Salva tutti gli editor modificati ma non salvati prima di eseguire un'attività.",
"task.saveBeforeRun.always": "Salva sempre tutti gli editor prima dell'esecuzione.",
"task.saveBeforeRun.never": "Non salva mai gli editor prima dell'esecuzione.",
- "task.showDecorations": "Mostra le decorazioni in corrispondenza dei punti di interesse nel buffer del terminale, ad esempio il primo problema rilevato tramite un'attività di controllo. Si noti che questa operazione avrà effetto solo per le attività future.",
"task.slowProviderWarning": "Configura la visualizzazione di un avviso quando un provider è lento",
"task.slowProviderWarning.array": "Matrice di tipi di attività per cui non visualizzare mai l'avviso di provider lento.",
"task.slowProviderWarning.boolean": "Imposta l'avviso di provider lento per tutte le attività.",
+ "task.verboseLogging": "Abilitare la registrazione dettagliata per le attività.",
+ "tasks": "Attività",
"tasksConfigurationTitle": "Attività",
"tasksQuickAccessHelp": "Esegui attività",
"tasksQuickAccessPlaceholder": "Digitare il nome di un'attività da eseguire.",
- "ttask.allowAutomaticTasks.on": "Sempre",
"workbench.action.tasks.openUserTasks": "Apri attività utente",
- "workbench.action.tasks.openWorkspaceFileTasks": "Apri attività area di lavoro"
+ "workbench.action.tasks.openWorkspaceFileTasks": "Apri attività area di lavoro",
+ "workbench.action.tasks.rerunForActiveTerminal": "Riesegui attività"
},
"vs/workbench/contrib/tasks/browser/taskQuickPick": {
- "TaskQuickPick.changeSettingDetails": "Il rilevamento di attività {0} comporta che i file siano eseguiti come codice in qualsiasi area di lavoro venga aperta. L'abilitazione del rilevamento attività {0} è un'opzione utente e verrà applicata a qualsiasi area di lavoro aperta. Si vuole abilitare il rilevamento delle attività {0} per tutte le aree di lavoro?",
+ "TaskQuickPick.changeSettingDetails": "Il rilevamento di attività per attività {0} fa in modo che i file in qualsiasi area di lavoro aperta vengano eseguiti come codice. L'abilitazione del rilevamento attività {0} è un'impostazione utente e verrà applicata a qualsiasi area di lavoro aperta. \r\n\r\n Abilitare rilevamento attività {0} per tutte le aree di lavoro?",
"TaskQuickPick.changeSettingNo": "No",
- "TaskQuickPick.changeSettingYes": "Sì",
"TaskQuickPick.changeSettingsOptions": "Il rilevamento dell'attività $(gear) {0} è disattivato. Abilitare il rilevamento dell'attività {1}...",
"TaskQuickPick.goBack": "Torna indietro ↩",
"TaskQuickPick.noTasksForType": "Non sono state trovate attività di tipo {0}. Torna indietro ↩",
@@ -8591,6 +14140,13 @@
"taskQuickPick.showAll": "Mostra tutte le attività...",
"taskType": "Tutte le attività {0}"
},
+ "vs/workbench/contrib/tasks/browser/taskService": {
+ "taskService.processTaskSystem": "Il sistema di attività di elaborazione non è supportato sul Web."
+ },
+ "vs/workbench/contrib/tasks/browser/tasksQuickAccess": {
+ "TaskService.pickRunTask": "Selezionare l'attività da eseguire",
+ "noTaskResults": "Non ci sono attività corrispondenti"
+ },
"vs/workbench/contrib/tasks/browser/taskTerminalStatus": {
"task.watchFirstError": "Inizio degli errori rilevati per questa esecuzione",
"taskTerminalStatus.active": "È in corso l'esecuzione dell'attività",
@@ -8603,10 +14159,6 @@
"taskTerminalStatus.warnings": "L'attività contiene avvisi",
"taskTerminalStatus.warningsInactive": "L'attività contiene avvisi ed è in attesa..."
},
- "vs/workbench/contrib/tasks/browser/tasksQuickAccess": {
- "TaskService.pickRunTask": "Selezionare l'attività da eseguire",
- "noTaskResults": "Non ci sono attività corrispondenti"
- },
"vs/workbench/contrib/tasks/browser/terminalTaskSystem": {
"TerminalTaskSystem": "Non è possibile eseguire un comando della shell su un'unità UNC con cmd.exe.",
"TerminalTaskSystem.nonWatchingMatcher": "L'attività {0} è un'attività in background ma usa un matcher problemi senza un criterio di background",
@@ -8615,46 +14167,14 @@
"closeTerminal": "Premere un tasto qualsiasi per chiudere il terminale.",
"dependencyCycle": "È presente un ciclo di dipendenze. Vedere l'attività \"{0}\".",
"dependencyFailed": "Non è stato possibile risolvere l'attività dipendente '{0}' nella cartella dell'area di lavoro '{1}'",
+ "rerunTask": "Riesegui attività",
"reuseTerminal": "Terminale verrà riutilizzato dalle attività, premere un tasto qualsiasi per chiuderlo.",
"task.executing": "Esecuzione dell'attività: {0}",
+ "task.executing.shell-integration": "Esecuzione dell'attività: {0}",
+ "task.executing.shellIntegration": "Esecuzione dell'attività: {0}",
"task.executingInFolder": "Esecuzione dell'attività nella cartella {0}: {1}",
"unknownProblemMatcher": "Il matcher problemi {0} non può essere risolto e verrà ignorato"
},
- "vs/workbench/contrib/tasks/common/jsonSchemaCommon": {
- "JsonSchema.args": "Argomenti aggiuntivi passati al comando.",
- "JsonSchema.background": "Indica se l'attività eseguita viene mantenuta attiva ed è in esecuzione in background.",
- "JsonSchema.command": "Comando da eseguire. Può essere un programma esterno o un comando della shell.",
- "JsonSchema.echoCommand": "Controlla se l'eco del comando eseguito viene incluso nell'output. Il valore predefinito è false.",
- "JsonSchema.matchers": "Matcher problemi da usare. Può essere una stringa oppure una definizione di matcher problemi oppure una matrice di stringhe e matcher problemi.",
- "JsonSchema.options": "Opzioni dei comandi aggiuntive",
- "JsonSchema.options.cwd": "Directory di lavoro corrente del programma o dello script eseguito. Se omesso, viene usata la radice dell'area di lavoro corrente di Visual Studio Code.",
- "JsonSchema.options.env": "Ambiente della shell o del programma eseguito. Se omesso, viene usato l'ambiente del processo padre.",
- "JsonSchema.promptOnClose": "Indica se viene visualizzato un prompt utente quando Visual Studio Code viene chiuso con un'attività in background in esecuzione.",
- "JsonSchema.shell.args": "Argomenti della shell.",
- "JsonSchema.shell.executable": "Shell da usare.",
- "JsonSchema.shellConfiguration": "Configura la shell da usare.",
- "JsonSchema.showOutput": "Controlla la visualizzazione dell'output dell'attività in esecuzione. Se omesso, viene usato 'always'.",
- "JsonSchema.suppressTaskName": "Controlla se il nome dell'attività viene aggiunto come argomento al comando. Il valore predefinito è false.",
- "JsonSchema.taskSelector": "Prefisso per indicare che un argomento è l'attività.",
- "JsonSchema.tasks": "Configurazioni dell'attività. In genere si tratta di arricchimenti dell'attività già definite nello strumento di esecuzione attività esterno.",
- "JsonSchema.tasks.args": "Argomenti passati al comando quando viene richiamata questa attività.",
- "JsonSchema.tasks.background": "Indica se l'attività eseguita viene mantenuta attiva ed è in esecuzione in background.",
- "JsonSchema.tasks.build": "Esegue il mapping di questa attività al comando di compilazione predefinito di Visual Studio Code.",
- "JsonSchema.tasks.linux": "Configurazione dei comandi specifica di Linux",
- "JsonSchema.tasks.mac": "Configurazione dei comandi specifica di Mac",
- "JsonSchema.tasks.matcherError": "Matcher problemi non riconosciuto. L'estensione che contribuisce a questo matcher problemi è installata?",
- "JsonSchema.tasks.matchers": "Matcher problemi da usare. Può essere una stringa o una definizione di matcher problemi oppure una matrice di stringhe e matcher problemi.",
- "JsonSchema.tasks.promptOnClose": "Indica se viene visualizzato un prompt utente quando VS Code viene chiuso con un'attività in esecuzione.",
- "JsonSchema.tasks.showOutput": "Controlla la visualizzazione dell'output dell'attività in esecuzione. Se omesso, viene usato il valore definito globalmente.",
- "JsonSchema.tasks.suppressTaskName": "Controlla se il nome dell'attività viene aggiunto come argomento al comando. Se omesso, viene usato il valore definito globalmente.",
- "JsonSchema.tasks.taskName": "Nome dell'attività",
- "JsonSchema.tasks.test": "Esegue il mapping di questa attività al comando di test predefinito di Visual Studio Code.",
- "JsonSchema.tasks.watching": "Indica se l'attività eseguita viene mantenuta attiva e controlla il file system.",
- "JsonSchema.tasks.watching.deprecation": "Deprecato. In alternativa, usare isBackground.",
- "JsonSchema.tasks.windows": "Configurazione dei comandi specifica di Windows",
- "JsonSchema.watching": "Indica se l'attività eseguita viene mantenuta attiva e controlla il file system.",
- "JsonSchema.watching.deprecation": "Deprecato. In alternativa, usare isBackground."
- },
"vs/workbench/contrib/tasks/common/jsonSchema_v1": {
"JsonSchema._runner": "La proprietà runner è stata promossa. Usare quella ufficiale",
"JsonSchema.linux": "Configurazione dei comandi specifica di Linux",
@@ -8703,6 +14223,12 @@
"JsonSchema.tasks.identifier": "Identificatore definito dall'utente per fare riferimento all'attività in launch.json o in una clausola dependsOn.",
"JsonSchema.tasks.identifier.deprecated": "Gli identificatori definiti dall'utente sono deprecati. Per attività personalizzate utilizzare il nome come riferimento e per le attività fornite dalle estensioni utilizzare il relativo identificatore di attività definito.",
"JsonSchema.tasks.instanceLimit": "Numero di istanze dell'attività che possono essere eseguite contemporaneamente.",
+ "JsonSchema.tasks.instancePolicy": "Criterio da applicare quando viene raggiunto il limite di istanze.",
+ "JsonSchema.tasks.instancePolicy.prompt": "Chiede quale istanza terminare.",
+ "JsonSchema.tasks.instancePolicy.silent": "Non esegue alcuna operazione.",
+ "JsonSchema.tasks.instancePolicy.terminateNewest": "Termina l'istanza più recente.",
+ "JsonSchema.tasks.instancePolicy.terminateOldest": "Termina l'istanza meno recente.",
+ "JsonSchema.tasks.instancePolicy.warn": "Non esegue alcuna operazione, ma avvisa che è stato raggiunto il limite di istanze.",
"JsonSchema.tasks.isBuildCommand.deprecated": "La proprietà isBuildCommand è deprecata. In alternativa, usare la proprietà group. Vedere anche le note sulla versione 1.14.",
"JsonSchema.tasks.isShellCommand.deprecated": "La proprietà isShellCommand è deprecata. Usare la proprietà type dell'attività e la proprietà shell nelle opzioni. Vedere anche le note sulla versione 1.14.",
"JsonSchema.tasks.isTestCommand.deprecated": "La proprietà isTestCommand è deprecata. In alternativa, usare la proprietà group. Vedere anche le note sulla versione 1.14.",
@@ -8715,6 +14241,7 @@
"JsonSchema.tasks.presentation.focus": "Controlla se il pannello riceve lo stato attivo. Il valore predefinito è false. Se è impostato su true, il pannello viene anche visualizzato.",
"JsonSchema.tasks.presentation.group": "Controlla se l'attività viene eseguita in uno gruppo di terminali specifico usando riquadri divisi.",
"JsonSchema.tasks.presentation.instance": "Controlli se il pannello è condiviso tra le attività, dedicato a quest'attività o se ne viene creato uno nuovo a ogni esecuzione.",
+ "JsonSchema.tasks.presentation.preserveTerminalName": "Controlla se mantenere il nome dell'attività nel terminale al termine dell'attività.",
"JsonSchema.tasks.presentation.reveal": "Controlla se il terminale che esegue l'attività viene visualizzato o meno. È possibile eseguirne l'override con l'opzione \"revealProblems\". L'impostazione predefinita è \"always\".",
"JsonSchema.tasks.presentation.reveal.always": "Visualizza sempre il terminale quando viene eseguita questa attività.",
"JsonSchema.tasks.presentation.reveal.never": "Non visualizza mai il terminale quando viene eseguita questa attività.",
@@ -8742,6 +14269,41 @@
"JsonSchema.version": "Numero di versione della configurazione.",
"JsonSchema.windows": "Configurazione dei comandi specifica di Windows"
},
+ "vs/workbench/contrib/tasks/common/jsonSchemaCommon": {
+ "JsonSchema.args": "Argomenti aggiuntivi passati al comando.",
+ "JsonSchema.background": "Indica se l'attività eseguita viene mantenuta attiva ed è in esecuzione in background.",
+ "JsonSchema.command": "Comando da eseguire. Può essere un programma esterno o un comando della shell.",
+ "JsonSchema.echoCommand": "Controlla se l'eco del comando eseguito viene incluso nell'output. Il valore predefinito è false.",
+ "JsonSchema.matchers": "Matcher problemi da usare. Può essere una stringa oppure una definizione di matcher problemi oppure una matrice di stringhe e matcher problemi.",
+ "JsonSchema.options": "Opzioni dei comandi aggiuntive",
+ "JsonSchema.options.cwd": "Directory di lavoro corrente del programma o dello script eseguito. Se omesso, viene usata la radice dell'area di lavoro corrente di Visual Studio Code.",
+ "JsonSchema.options.env": "Ambiente della shell o del programma eseguito. Se omesso, viene usato l'ambiente del processo padre.",
+ "JsonSchema.promptOnClose": "Indica se viene visualizzato un prompt utente quando Visual Studio Code viene chiuso con un'attività in background in esecuzione.",
+ "JsonSchema.shell.args": "Argomenti della shell.",
+ "JsonSchema.shell.executable": "Shell da usare.",
+ "JsonSchema.shellConfiguration": "Configura la shell da usare.",
+ "JsonSchema.showOutput": "Controlla la visualizzazione dell'output dell'attività in esecuzione. Se omesso, viene usato 'always'.",
+ "JsonSchema.suppressTaskName": "Controlla se il nome dell'attività viene aggiunto come argomento al comando. Il valore predefinito è false.",
+ "JsonSchema.taskSelector": "Prefisso per indicare che un argomento è l'attività.",
+ "JsonSchema.tasks": "Configurazioni dell'attività. In genere si tratta di arricchimenti dell'attività già definite nello strumento di esecuzione attività esterno.",
+ "JsonSchema.tasks.args": "Argomenti passati al comando quando viene richiamata questa attività.",
+ "JsonSchema.tasks.background": "Indica se l'attività eseguita viene mantenuta attiva ed è in esecuzione in background.",
+ "JsonSchema.tasks.build": "Esegue il mapping di questa attività al comando di compilazione predefinito di Visual Studio Code.",
+ "JsonSchema.tasks.linux": "Configurazione dei comandi specifica di Linux",
+ "JsonSchema.tasks.mac": "Configurazione dei comandi specifica di Mac",
+ "JsonSchema.tasks.matcherError": "Matcher problemi non riconosciuto. L'estensione che contribuisce a questo matcher problemi è installata?",
+ "JsonSchema.tasks.matchers": "Matcher problemi da usare. Può essere una stringa o una definizione di matcher problemi oppure una matrice di stringhe e matcher problemi.",
+ "JsonSchema.tasks.promptOnClose": "Indica se viene visualizzato un prompt utente quando VS Code viene chiuso con un'attività in esecuzione.",
+ "JsonSchema.tasks.showOutput": "Controlla la visualizzazione dell'output dell'attività in esecuzione. Se omesso, viene usato il valore definito globalmente.",
+ "JsonSchema.tasks.suppressTaskName": "Controlla se il nome dell'attività viene aggiunto come argomento al comando. Se omesso, viene usato il valore definito globalmente.",
+ "JsonSchema.tasks.taskName": "Nome dell'attività",
+ "JsonSchema.tasks.test": "Esegue il mapping di questa attività al comando di test predefinito di Visual Studio Code.",
+ "JsonSchema.tasks.watching": "Indica se l'attività eseguita viene mantenuta attiva e controlla il file system.",
+ "JsonSchema.tasks.watching.deprecation": "Deprecato. In alternativa, usare isBackground.",
+ "JsonSchema.tasks.windows": "Configurazione dei comandi specifica di Windows",
+ "JsonSchema.watching": "Indica se l'attività eseguita viene mantenuta attiva e controlla il file system.",
+ "JsonSchema.watching.deprecation": "Deprecato. In alternativa, usare isBackground."
+ },
"vs/workbench/contrib/tasks/common/problemMatcher": {
"LegacyProblemMatcherSchema.watchedBegin": "Espressione regolare con cui viene segnalato l'avvio dell'esecuzione di un'attività controllata attivato tramite il controllo dei file.",
"LegacyProblemMatcherSchema.watchedBegin.deprecated": "Questa proprietà è deprecata. In alternativa, usare la proprietà watching.",
@@ -8767,22 +14329,23 @@
"ProblemMatcherParser.unknownSeverity": "Info: la gravità {0} è sconosciuta. I valori validi sono error, warning e info.\r\n",
"ProblemMatcherSchema.applyTo": "Controlla se un problema segnalato in un documento di testo è valido solo per i documenti aperti o chiusi oppure per tutti i documenti.",
"ProblemMatcherSchema.background": "Criteri per tenere traccia dell'inizio e della fine di un matcher attivo su un'attività in background.",
- "ProblemMatcherSchema.background.activeOnStart": "Se è impostato su true, il monitoraggio in background è in modalità attiva all'avvio dell'attività. Equivale a inviare una riga che corrisponde a beginPattern",
+ "ProblemMatcherSchema.background.activeOnStart": "Se impostato su true, il monitoraggio in background viene avviato in modalità attiva. Equivale all'output di una riga che corrisponde a beginPattern all'avvio dell'attività.",
"ProblemMatcherSchema.background.beginsPattern": "Se corrisponde nell'output, viene segnalato l'avvio di un'attività in background.",
"ProblemMatcherSchema.background.endsPattern": "Se corrisponde nell'output, viene segnalata la fine di un'attività in background.",
"ProblemMatcherSchema.base": "Nome di un matcher problemi di base da usare.",
- "ProblemMatcherSchema.fileLocation": "Consente di definire come interpretare i nomi file indicati in un criterio di problema. Un elemento fileLocation relativo può essere una matrice, in cui il secondo elemento della matrice è il percorso file relativo.",
+ "ProblemMatcherSchema.fileLocation": "Consente di definire il modo in cui devono essere interpretati i nomi di file segnalati in un criterio di problema. La modalità relative fileLocation relativo potrebbe essere una matrice, in cui il secondo elemento della matrice è la posizione del percorso file relativo. La modalità search fileLocation esegue una ricerca approfondita e probabilmente intensa del file system nelle directory specificate dalle proprietà di inclusione/esclusione del secondo elemento o nella directory dell'area di lavoro corrente se non è specificato alcun valore.",
"ProblemMatcherSchema.owner": "Proprietario del problema in Visual Studio Code. Può essere omesso se si specifica base. Se è omesso e non si specifica base, viene usato il valore predefinito 'external'.",
"ProblemMatcherSchema.severity": "Gravità predefinita per i problemi di acquisizione. Viene usato se il criterio non definisce un gruppo di corrispondenze per la gravità.",
"ProblemMatcherSchema.source": "Stringa in formato leggibile che descrive l'origine di questa diagnostica, ad esempio 'typescript' o 'super lint'.",
"ProblemMatcherSchema.watching": "Criteri per tenere traccia dell'inizio e della fine di un matcher watching.",
- "ProblemMatcherSchema.watching.activeOnStart": "Se impostato su true, indica che il watcher è in modalità attiva all'avvio dell'attività. Equivale a inviare una riga che corrisponde al criterio di avvio",
+ "ProblemMatcherSchema.watching.activeOnStart": "Se impostato su true, il watcher viene avviato in modalità attiva. Equivale all'output di una riga che corrisponde a beginPattern all'avvio dell'attività.",
"ProblemMatcherSchema.watching.beginsPattern": "Se corrisponde nell'output, viene segnalato l'avvio di un'attività di controllo.",
"ProblemMatcherSchema.watching.deprecated": "La proprietà watching è deprecata. In alternativa, utilizzare background (sfondo).",
"ProblemMatcherSchema.watching.endsPattern": "Se corrisponde nell'output, viene segnalata la fine di un'attività di controllo.",
"ProblemPatternExtPoint": "Aggiunge come contributo i criteri di problema",
"ProblemPatternParser.invalidRegexp": "Errore: la stringa {0} non è un'espressione regolare valida.\r\n",
"ProblemPatternParser.loopProperty.notLast": "La proprietà loop è supportata solo sul matcher dell'ultima riga.",
+ "ProblemPatternParser.problemPattern.emptyPattern": "Il modello di problema non è valido. Deve contenere almeno un criterio.",
"ProblemPatternParser.problemPattern.kindProperty.notFirst": "Il criterio del problema non è valido. La proprietà kind deve essere specificata solo nel primo elemento",
"ProblemPatternParser.problemPattern.missingLocation": "Il criterio del problema non è valido. Il tipo deve essere \"file\" oppure deve il criterio deve includere un gruppo di corrispondenze di tipo line o posizione.",
"ProblemPatternParser.problemPattern.missingProperty": "Il criterio del problema non è valido. Deve includere almeno un file e un messaggio.",
@@ -8832,15 +14395,24 @@
"vs/workbench/contrib/tasks/common/taskDefinitionRegistry": {
"TaskDefinition.description": "Tipo di attività effettivo. Notare che i tipi che iniziano con il carattere '$' sono riservati per l'utilizzo interno.",
"TaskDefinition.properties": "Proprietà aggiuntive del tipo di attività",
- "TaskDefinition.when": "Condition which must be true to enable this type of task. Consider using `shellExecutionSupported`, `processExecutionSupported`, and `customExecutionSupported` as appropriate for this task definition. See the [API documentation](https://code.visualstudio.com/api/extension-guides/task-provider#when-clause) for more information.",
+ "TaskDefinition.when": "Condizione che deve essere vera per abilitare questo tipo di attività. Provare a usare 'shellExecutionSupported', 'processExecutionSupported' e 'customExecutionSupported' a seconda dei casi per questa definizione di attività. Per altre informazioni, vedere il [API documentation](https://code.visualstudio.com/api/extension-guides/task-provider#when-clause).",
"TaskDefinitionExtPoint": "Aggiunge come contributo i tipi di attività",
"TaskTypeConfiguration.noType": "Nella configurazione del tipo di attività manca la proprietà obbligatoria 'taskType'"
},
+ "vs/workbench/contrib/tasks/common/tasks": {
+ "TaskDefinition.missingRequiredProperty": "Errore: nell'identificatore di attività '{0}' manca la proprietà obbligatoria '{1}'. L'identificatore di attività verrà ignorato.",
+ "rerunTaskIcon": "Icona per visualizzare l'attività rieseguita.",
+ "taskTerminalActive": "Indica se il terminale attivo è un terminale attività.",
+ "tasks.taskRunningContext": "Indica se un'attività è attualmente in esecuzione.",
+ "tasksCategory": "Attività"
+ },
"vs/workbench/contrib/tasks/common/taskService": {
"tasks.customExecutionSupported": "Indica se le attività CustomExecution sono supportate. Provare a usarle nella clausola when di un contributo 'taskDefinition'.",
"tasks.processExecutionSupported": "Indica se le attività ProcessExecution sono supportate. Provare a usarle nella clausola when di un contributo 'taskDefinition'.",
+ "tasks.serverlessWebContext": "Vero quando è presente sul Web senza autorità remota.",
"tasks.shellExecutionSupported": "Indica se le attività ShellExecution sono supportate. Provare a usarle nella clausola when di un contributo 'taskDefinition'.",
- "tasks.taskCommandsRegistered": "Indica se i comandi dell'attività sono stati già registrati"
+ "tasks.taskCommandsRegistered": "Indica se i comandi dell'attività sono stati già registrati",
+ "tasks.tasksAvailable": "Indica se sono disponibili attività nell'area di lavoro."
},
"vs/workbench/contrib/tasks/common/taskTemplates": {
"Maven": "Consente di eseguire comandi Maven comuni",
@@ -8848,114 +14420,68 @@
"externalCommand": "Esempio per eseguire un comando esterno arbitrario",
"msbuild": "Esegue la destinazione di compilazione"
},
- "vs/workbench/contrib/tasks/common/tasks": {
- "TaskDefinition.missingRequiredProperty": "Errore: nell'identificatore di attività '{0}' manca la proprietà obbligatoria '{1}'. L'identificatore di attività verrà ignorato.",
- "tasks.taskRunningContext": "Indica se un'attività è attualmente in esecuzione.",
- "tasksCategory": "Attività"
- },
- "vs/workbench/contrib/tasks/electron-sandbox/taskService": {
- "TaskSystem.exitAnyways": "&&Esci comunque",
+ "vs/workbench/contrib/tasks/electron-browser/taskService": {
+ "TaskSystem.exitAnyways": "&&Uscire comunque",
"TaskSystem.noProcess": "L'attività avviata non esiste più. Se l'attività implica la generazione di processi in background, uscendo da Visual Studio Code potrebbero essere presenti processi orfani. Per evitarlo, avviare l'ultimo processo in background con un flag di attesa.",
"TaskSystem.runningTask": "È presente un'attività in esecuzione. Terminarla?",
- "TaskSystem.terminateTask": "&&Termina attività"
+ "TaskSystem.terminateTask": "&&Terminare attività"
+ },
+ "vs/workbench/contrib/telemetry/browser/telemetry.contribution": {
+ "showTelemetry": "Mostra telemetria"
},
"vs/workbench/contrib/terminal/browser/baseTerminalBackend": {
- "nonResponsivePtyHost": "La connessione al processo host pty del terminale non risponde. È possibile che i terminali non funzionino più.",
- "restartPtyHost": "Riavvia host pty"
+ "nonResponsivePtyHost": "La connessione al processo pty host del terminale non risponde, i terminali potrebbero smettere di funzionare. Fare clic per riavviare manualmente l'host pty.",
+ "ptyHostStatus": "Stato Pty Host",
+ "ptyHostStatus.ariaLabel": "Pty Host non risponde",
+ "ptyHostStatus.short": "Pty Host"
},
"vs/workbench/contrib/terminal/browser/environmentVariableInfo": {
- "extensionEnvironmentContributionChanges": "Le estensioni vogliono apportare le modifiche seguenti all'ambiente del terminale:",
- "extensionEnvironmentContributionInfo": "Le estensioni hanno apportato modifiche all'ambiente di questo terminale",
- "extensionEnvironmentContributionRemoval": "Le estensioni vogliono rimuovere queste modifiche esistenti dall'ambiente del terminale:",
- "relaunchTerminalLabel": "Riavvia il terminale"
- },
- "vs/workbench/contrib/terminal/browser/links/terminalLink": {
- "focusFolder": "Sposta lo stato attivo sulla cartella in Esplora risorse",
- "openFile": "Apri file nell'editor",
- "openFolder": "Apri cartella in una nuova finestra"
- },
- "vs/workbench/contrib/terminal/browser/links/terminalLinkDetectorAdapter": {
- "focusFolder": "Sposta lo stato attivo sulla cartella in Esplora risorse",
- "followLink": "Segui il collegamento",
- "openFile": "Apri file nell'editor",
- "openFolder": "Apri cartella in una nuova finestra",
- "searchWorkspace": "Cerca nell'area di lavoro"
- },
- "vs/workbench/contrib/terminal/browser/links/terminalLinkManager": {
- "followForwardedLink": "Segui il collegamento usando la porta inoltrata",
- "followLink": "Segui il collegamento",
- "followLinkUrl": "Collegamento",
- "terminalLinkHandler.followLinkAlt": "ALT+clic",
- "terminalLinkHandler.followLinkAlt.mac": "Opzione+clic",
- "terminalLinkHandler.followLinkCmd": "CMD+clic",
- "terminalLinkHandler.followLinkCtrl": "CTRL+clic"
- },
- "vs/workbench/contrib/terminal/browser/links/terminalLinkQuickpick": {
- "terminal.integrated.localFileLinks": "File locale",
- "terminal.integrated.openDetectedLink": "Seleziona il collegamento da aprire",
- "terminal.integrated.searchLinks": "Ricerca area di lavoro",
- "terminal.integrated.showMoreLinks": "Mostra altri collegamenti",
- "terminal.integrated.urlLinks": "Url"
+ "ScopedEnvironmentContributionInfo": "Area di lavoro",
+ "extensionEnvironmentContributionInfoActive": "Le estensioni seguenti hanno contribuito all'ambiente di questo terminale:",
+ "extensionEnvironmentContributionInfoStale": "Le estensioni seguenti vogliono riavviare il terminale per contribuire all'ambiente:",
+ "relaunchTerminalLabel": "Riavvia il terminale",
+ "showEnvironmentContributions": "Mostra contributi ambiente"
},
"vs/workbench/contrib/terminal/browser/terminal.contribution": {
"miToggleIntegratedTerminal": "&&Terminale",
- "tasksQuickAccessHelp": "Mostra tutti i terminali aperti",
- "tasksQuickAccessPlaceholder": "Digitare il nome di un terminale da aprire.",
"terminal": "Terminale"
},
"vs/workbench/contrib/terminal/browser/terminalActions": {
"emptyTerminalNameInfo": "Se non si specifica alcun nome, verrà ripristinato il valore predefinito",
+ "newWithProfile.location": "Posizione in cui creare il terminale",
+ "newWithProfile.location.editor": "Crea il terminale nell'editor",
+ "newWithProfile.location.view": "Crea il terminale nella vista terminale",
"noUnattachedTerminals": "Non ci sono terminali scollegati a cui collegarsi",
- "quickAccessTerminal": "Cambia terminale attivo",
"showTerminalTabs": "Mostra schede",
"terminalLaunchHelp": "Apri Guida",
"workbench.action.terminal.attachToSession": "Associa a sessione",
"workbench.action.terminal.clear": "Cancella",
- "workbench.action.terminal.clearCommandHistory": "Cancella cronologia dei comandi",
"workbench.action.terminal.clearSelection": "Cancella selezione",
- "workbench.action.terminal.copyLastCommand": "Copia ultimo comando",
- "workbench.action.terminal.copySelection": "Copia selezione",
- "workbench.action.terminal.copySelectionAsHtml": "Copia selezione come HTML",
"workbench.action.terminal.createTerminalEditor": "Crea nuovo terminale nell'area dell'editor",
"workbench.action.terminal.createTerminalEditorSide": "Crea nuovo terminale nell'area dell'editor lateralmente",
"workbench.action.terminal.detachSession": "Scollega sessione",
- "workbench.action.terminal.findNext": "Trova successivo",
- "workbench.action.terminal.findPrevious": "Trova precedente",
"workbench.action.terminal.focus.tabsView": "Sposta lo stato attivo sulla visualizzazione delle schede dei terminali",
- "workbench.action.terminal.focusFind": "Sposta stato attivo su Trova",
"workbench.action.terminal.focusNext": "Sposta lo stato attivo sul gruppo di terminale successivo",
"workbench.action.terminal.focusNextPane": "Spostare lo stato attivo sul terminale successivo nel gruppo di terminale",
"workbench.action.terminal.focusPrevious": "Sposta lo stato attivo sul gruppo di terminale precedente",
"workbench.action.terminal.focusPreviousPane": "Spostare lo stato attivo sul terminale precedente nel gruppo di terminale",
- "workbench.action.terminal.goToRecentDirectory": "Vai alla directory recente...",
- "workbench.action.terminal.hideFind": "Nascondi Trova",
- "workbench.action.terminal.join": "Unisci terminali",
+ "workbench.action.terminal.join": "Unisci terminali...",
"workbench.action.terminal.join.insufficientTerminals": "Terminali insufficienti per l'azione di partecipazione",
"workbench.action.terminal.join.onlySplits": "Tutti i terminali sono già aggiunti",
"workbench.action.terminal.joinInstance": "Unisci terminali",
"workbench.action.terminal.kill": "Termina istanza attiva del terminale",
"workbench.action.terminal.killAll": "Termina tutti i terminali",
"workbench.action.terminal.killEditor": "Termina terminale attivo nell'area dell'editor",
- "workbench.action.terminal.navigationModeExit": "Esci da modalità di spostamento",
- "workbench.action.terminal.navigationModeFocusNext": "Sposta stato attivo sulla riga successiva (modalità di spostamento)",
- "workbench.action.terminal.navigationModeFocusNextPage": "Sposta stato attivo sulla pagina successiva (modalità di spostamento)",
- "workbench.action.terminal.navigationModeFocusPrevious": "Sposta stato attivo sulla riga precedente (modalità di spostamento)",
- "workbench.action.terminal.navigationModeFocusPreviousPage": "Sposta stato attivo sulla pagina precedente (modalità di spostamento)",
"workbench.action.terminal.new": "Crea nuovo terminale",
"workbench.action.terminal.newInActiveWorkspace": "Crea nuovo terminale (nell'area di lavoro attiva)",
- "workbench.action.terminal.newWithCwd": "Crea nuovo terminale avviato in una directory di lavoro personalizzata",
"workbench.action.terminal.newWithCwd.cwd": "Directory con cui avviare il terminale",
"workbench.action.terminal.newWithProfile": "Crea nuovo terminale (con profilo)",
"workbench.action.terminal.newWithProfile.profileName": "Nome del profilo da creare",
"workbench.action.terminal.newWorkspacePlaceholder": "Selezionare la cartella di lavoro corrente per un nuovo terminale.",
- "workbench.action.terminal.openDetectedLink": "Aprire collegamento rilevato",
- "workbench.action.terminal.openLastLocalFileLink": "Apri collegamento ultimo file locale",
- "workbench.action.terminal.openLastUrlLink": "Apri collegamento all'ultimo URL",
"workbench.action.terminal.openSettings": "Configura impostazioni del terminale",
- "workbench.action.terminal.paste": "Incolla nel terminale attivo",
- "workbench.action.terminal.pasteSelection": "Incolla selezione nel terminale attivo",
+ "workbench.action.terminal.overriddenCwdDescription": "(Override eseguito) {0}",
"workbench.action.terminal.relaunch": "Riavvia terminale attivo",
- "workbench.action.terminal.renameWithArg": "Rinomina il terminale attualmente attivo",
+ "workbench.action.terminal.rename.prompt": "Immettere il nome del terminale",
"workbench.action.terminal.renameWithArg.name": "Nuovo nome del terminale",
"workbench.action.terminal.renameWithArg.noName": "Non è stato specificato alcun argomento per il nome",
"workbench.action.terminal.resizePaneDown": "Ridimensiona terminale verso il basso",
@@ -8964,46 +14490,24 @@
"workbench.action.terminal.resizePaneUp": "Ridimensiona terminale verso l’alto",
"workbench.action.terminal.runActiveFile": "Esegui file attivo nel terminale attivo",
"workbench.action.terminal.runActiveFile.noFile": "Nel terminale è possibile eseguire solo file su disco",
- "workbench.action.terminal.runRecentCommand": "Esegui comando recente...",
"workbench.action.terminal.runSelectedText": "Esegui testo selezionato nel terminale attivo",
"workbench.action.terminal.scrollDown": "Scorri giù (riga)",
"workbench.action.terminal.scrollDownPage": "Scorri giù (pagina)",
"workbench.action.terminal.scrollToBottom": "Scorri alla fine",
- "workbench.action.terminal.scrollToNextCommand": "Scorri al comando successivo",
- "workbench.action.terminal.scrollToPreviousCommand": "Scorri al comando precedente",
"workbench.action.terminal.scrollToTop": "Scorri all'inizio",
"workbench.action.terminal.scrollUp": "Scorri su (riga)",
"workbench.action.terminal.scrollUpPage": "Scorri su (pagina)",
- "workbench.action.terminal.searchWorkspace": "Cerca nell'area di lavoro",
"workbench.action.terminal.selectAll": "Seleziona tutto",
"workbench.action.terminal.selectDefaultShell": "Seleziona profilo predefinito",
- "workbench.action.terminal.selectToNextCommand": "Aggiungi selezione a comando successivo",
- "workbench.action.terminal.selectToNextLine": "Aggiungi selezione a riga successiva",
- "workbench.action.terminal.selectToPreviousCommand": "Aggiungi selezione a comando precedente",
- "workbench.action.terminal.selectToPreviousLine": "Aggiungi selezione a riga precedente",
- "workbench.action.terminal.sendSequence": "Invia sequenza personalizzata al terminale",
+ "workbench.action.terminal.selectToNextCommand": "Seleziona comando successivo",
+ "workbench.action.terminal.selectToNextLine": "Seleziona riga successiva",
+ "workbench.action.terminal.selectToPreviousCommand": "Seleziona un comando precedente",
+ "workbench.action.terminal.selectToPreviousLine": "Seleziona riga precedente",
"workbench.action.terminal.setFixedDimensions": "Imposta dimensioni fisse",
- "workbench.action.terminal.showEnvironmentInformation": "Mostra informazioni sull'ambiente",
- "workbench.action.terminal.showTabs": "Mostra schede",
- "workbench.action.terminal.sizeToContentWidth": "Attiva/Disattiva dimensioni in larghezza contenuto",
"workbench.action.terminal.splitInActiveWorkspace": "Terminale diviso (nell'area di lavoro attiva)",
- "workbench.action.terminal.switchTerminal": "Cambia terminale",
- "workbench.action.terminal.toggleEscapeSequenceLogging": "Attiva/Disattiva sequenza di escape",
- "workbench.action.terminal.toggleFindCaseSensitive": "Attiva/Disattiva ricerca con distinzione tra maiuscole e minuscole",
- "workbench.action.terminal.toggleFindRegex": "Attiva/Disattiva ricerca con espressioni regex",
- "workbench.action.terminal.toggleFindWholeWord": "Attiva/Disattiva ricerca con parole intere",
- "workbench.action.terminal.writeDataToTerminal": "Scrivere i dati sul terminale",
- "workbench.action.terminal.writeDataToTerminal.prompt": "Immettere i dati da scrivere direttamente sul terminale, ignorando il pty"
- },
- "vs/workbench/contrib/terminal/browser/terminalConfigHelper": {
- "install": "Installa",
- "useWslExtension.title": "Per aprire un terminale in WSL, è consigliata l'estensione '{0}'."
- },
- "vs/workbench/contrib/terminal/browser/terminalDecorationsProvider": {
- "label": "Terminale"
+ "workbench.action.terminal.switchTerminal": "Cambia terminale"
},
"vs/workbench/contrib/terminal/browser/terminalEditorInput": {
- "cancel": "Annulla",
"confirmDirtyTerminal.button": "&&Termina",
"confirmDirtyTerminal.detail": "La chiusura terminerà i processi in esecuzione in questo terminale.",
"confirmDirtyTerminal.message": "Terminare i processi in esecuzione?",
@@ -9014,122 +14518,129 @@
"killTerminalIcon": "Icona per terminare un'istanza del terminale.",
"newTerminalIcon": "Icona per creare una nuova istanza del terminale.",
"renameTerminalIcon": "Icona per la ridenominazione nel menu rapido del terminale.",
+ "terminalCommandHistoryFuzzySearch": "Icona per attivare o disattivare la ricerca fuzzy della cronologia dei comandi.",
+ "terminalCommandHistoryOpenFile": "Icona per l'apertura di un file di cronologia della shell.",
+ "terminalCommandHistoryOutput": "Icona per visualizzare l'output di un comando del terminale.",
+ "terminalCommandHistoryRemove": "Icona per la rimozione di un comando del terminale dalla cronologia dei comandi.",
+ "terminalDecorationError": "Icona per la decorazione del terminale con un comando che ha generato un errore.",
+ "terminalDecorationIncomplete": "Icona per la decorazione del terminale con un comando incompleto.",
+ "terminalDecorationMark": "Icona di un segno decorativo per il terminale.",
+ "terminalDecorationSuccess": "Icona per la decorazione del terminale con un comando riuscito.",
"terminalViewIcon": "Icona della visualizzazione Terminale."
},
"vs/workbench/contrib/terminal/browser/terminalInstance": {
"bellStatus": "Campana",
+ "changeColor": "Seleziona un colore per il terminale",
"configureTerminalSettings": "Configura impostazioni del terminale",
- "confirmMoveTrashMessageFilesAndDirectories": "Incollare {0} righe di testo nel terminale?",
"disconnectStatus": "Connessione al processo persa",
- "doNotAskAgain": "Non visualizzare più questo messaggio",
"keybindingHandling": "Alcuni tasti di scelta rapida non vengono inviate al terminale per impostazione predefinita e vengono gestiti {0}.",
"launchFailed.errorMessage": "Non è stato possibile avviare il processo del terminale: {0}.",
"launchFailed.exitCodeAndCommandLine": "Non è stato possibile avviare il processo del terminale \"{0}\". Codice di uscita: {1}.",
"launchFailed.exitCodeOnly": "Non è stato possibile avviare il processo del terminale (codice di uscita: {0}).",
"launchFailed.exitCodeOnlyShellIntegration": "La disabilitazione dell'integrazione della shell nelle impostazioni utente potrebbe essere utile.",
- "multiLinePasteButton": "&&Incolla",
- "preview": "Anteprima:",
- "removeCommand": "Rimuovi dalla cronologia dei comandi",
- "selectRecentCommand": "Selezionare un comando da eseguire (tenere premuto ALT per modificare il comando)",
- "selectRecentCommandMac": "Selezionare un comando da eseguire (tenere premuto il tasto Opzione per modificare il comando)",
- "selectRecentDirectory": "Selezionare una directory in cui andare (tenere premuto ALT per modificare il comando)",
- "selectRecentDirectoryMac": "Selezionare una directory in cui andare (tenere premuto il tasto Opzione per modificare il comando)",
"setTerminalDimensionsColumn": "Imposta dimensioni fisse: colonna",
"setTerminalDimensionsRow": "Imposta dimensioni fisse: riga",
- "shellFileHistoryCategory": "Cronologia di {0}",
"shellIntegration.learnMore": "Altre informazioni sull'integrazione della shell",
"shellIntegration.openSettings": "Aprire impostazioni utente",
- "terminal.contiguousSearch": "Usa ricerca contigua",
- "terminal.fuzzySearch": "Usa ricerca fuzzy",
"terminal.integrated.a11yPromptLabel": "Input di terminale",
- "terminal.integrated.a11yTooMuchOutput": "Troppo output da annunciare. Per leggere, spostarsi manualmente nelle righe",
- "terminal.integrated.copySelection.noSelection": "Il terminale non contiene alcuna selezione da copiare",
+ "terminal.integrated.useAccessibleBuffer": "Usare il buffer accessibile {0} per esaminare manualmente l'output",
+ "terminal.integrated.useAccessibleBufferNoKb": "Usare il comando Terminale: attiva buffer accessibile per esaminare manualmente l'output",
"terminal.requestTrust": "La creazione di un processo terminale richiede l'esecuzione del codice",
- "terminalNavigationMode": "Usare {0} e {1} per spostarsi nel buffer del terminale",
+ "terminalHelpAriaLabel": "Usa {0} per la Guida all'accessibilità del terminale",
+ "terminalScreenReaderMode": "Eseguire il comando: attiva/disattiva modalità di accessibilità dell'utilità per la lettura dello schermo per un'esperienza di lettura dello schermo ottimizzata",
"terminalStaleTextBoxAriaLabel": "L'ambiente del terminale {0} è obsoleto. Per altre informazioni, eseguire il comando 'Mostra informazioni sull'ambiente'",
"terminalTextBoxAriaLabel": "Terminale {0}",
"terminalTextBoxAriaLabelNumberAndTitle": "Terminale {0}, {1}",
- "terminalTypeLocal": "Locale",
- "terminalTypeTask": "Attività",
"terminated.exitCodeAndCommandLine": "Il processo del terminale \"{0}\" è stato terminato. Codice di uscita: {1}.",
"terminated.exitCodeOnly": "Il processo del terminale è stato terminato. Codice di uscita: {0}.",
- "viewCommandOutput": "Visualizza output del comando",
- "workbench.action.terminal.rename.prompt": "Immettere il nome del terminale",
"workspaceNotTrustedCreateTerminal": "Non è possibile avviare un processo del terminale in un'area di lavoro non attendibile",
"workspaceNotTrustedCreateTerminalCwd": "Non è possibile avviare un processo del terminale in un'area di lavoro non attendibile con cwd {0} e userHome {1}"
},
- "vs/workbench/contrib/terminal/browser/terminalMainContribution": {
- "ptyHost": "Pty Host"
- },
"vs/workbench/contrib/terminal/browser/terminalMenus": {
"defaultTerminalProfile": "{0} (Predefinito)",
+ "launchProfile": "Avvia profilo...",
+ "miNewInNewWindow": "Nuova &&finestra terminale",
"miNewTerminal": "&&Nuovo terminale",
"miRunActiveFile": "Esegui &&file attivo",
"miRunSelectedText": "Esegui testo &&selezionato",
"miSplitTerminal": "Terminale &&diviso",
- "splitTerminal": "Terminale diviso",
- "terminal.new": "Nuovo terminale",
+ "split.profile": "Dividi terminale con profilo",
+ "workbench.action.tasks.configureTaskRunner": "Configura attività...",
+ "workbench.action.tasks.runTask": "Esegui attività...",
"workbench.action.terminal.changeColor": "Cambia colore...",
"workbench.action.terminal.changeIcon": "Cambia icona...",
"workbench.action.terminal.clear": "Cancella",
+ "workbench.action.terminal.clearLong": "Cancella terminale",
"workbench.action.terminal.copySelection.short": "Copia",
"workbench.action.terminal.copySelectionAsHtml": "Copia come HTML",
"workbench.action.terminal.joinInstance": "Unisci terminali",
- "workbench.action.terminal.new.short": "Nuovo terminale",
- "workbench.action.terminal.newWithProfile.short": "Nuovo terminale con profilo",
+ "workbench.action.terminal.newWithProfile.short": "Nuovo terminale con profilo...",
"workbench.action.terminal.openSettings": "Configura impostazioni del terminale",
"workbench.action.terminal.paste.short": "Incolla",
"workbench.action.terminal.renameInstance": "Rinomina...",
+ "workbench.action.terminal.runActiveFile": "Esegui file attivo",
+ "workbench.action.terminal.runSelectedText": "Esegui testo selezionato",
"workbench.action.terminal.selectAll": "Seleziona tutto",
"workbench.action.terminal.selectDefaultProfile": "Seleziona profilo predefinito",
- "workbench.action.terminal.showsTabs": "Mostra schede",
- "workbench.action.terminal.sizeToContentWidthInstance": "Attiva/Disattiva dimensioni in larghezza contenuto",
+ "workbench.action.terminal.startVoice": "Avvia dettatura",
+ "workbench.action.terminal.startVoiceEditor": "Avvia dettatura",
+ "workbench.action.terminal.stopVoice": "Interrompi dettatura",
+ "workbench.action.terminal.stopVoiceEditor": "Interrompi dettatura",
"workbench.action.terminal.switchTerminal": "Cambia terminale"
},
"vs/workbench/contrib/terminal/browser/terminalProcessManager": {
+ "killportfailure": "Non è stato possibile terminare l'attesa del processo sulla porta {0}. Il comando è stato terminato con l'errore {1}",
"ptyHostRelaunch": "Riavvio del terminale perché la connessione al processo della shell è stata persa..."
},
"vs/workbench/contrib/terminal/browser/terminalProfileQuickpick": {
"ICreateContributedTerminalProfileOptions": "aggiunto come contributo",
+ "cancel": "Annulla",
"createQuickLaunchProfile": "Configura profilo del terminale",
"enterTerminalProfileName": "Immettere il nome del profilo del terminale",
"terminal.integrated.chooseDefaultProfile": "Selezionare il profilo del terminale predefinito",
"terminal.integrated.selectProfileToCreate": "Selezionare il profilo del terminale da creare",
"terminalProfileAlreadyExists": "Esiste già un profilo del terminale con lo stesso nome",
"terminalProfiles": "profili",
- "terminalProfiles.detected": "rilevati"
- },
- "vs/workbench/contrib/terminal/browser/terminalProfileResolverService": {
- "migrateToProfile": "Esegui migrazione",
- "terminalProfileMigration": "Il terminale usa impostazioni deprecate di shell/shellArgs. Eseguire la migrazione a un profilo?"
- },
- "vs/workbench/contrib/terminal/browser/terminalQuickAccess": {
- "renameTerminal": "Rinomina terminale",
- "workbench.action.terminal.newWithProfilePlus": "Crea nuovo terminale con profilo",
- "workbench.action.terminal.newplus": "Crea nuovo terminale"
+ "terminalProfiles.detected": "rilevati",
+ "unsafePathWarning": "Questo profilo del terminale usa un percorso potenzialmente non sicuro che può essere modificato da un altro utente: {0}. Si vuole usarlo?",
+ "yes": "Sì"
},
"vs/workbench/contrib/terminal/browser/terminalService": {
"localTerminalRemote": "⚠: questa shell è in esecuzione nel computer {0}locale{1}, non nel computer remoto connesso",
"localTerminalVirtualWorkspace": "⚠: questa shell è aperta in una cartella {0}locale {1}, non nella cartella virtuale",
"terminalService.terminalCloseConfirmationPlural": "Terminare la {0} sessione di terminale attiva?",
"terminalService.terminalCloseConfirmationSingular": "Terminare la sessione di terminale attiva?",
- "terminate": "Termina"
+ "terminate": "&&Termina"
},
"vs/workbench/contrib/terminal/browser/terminalTabbedView": {
"hideTabs": "Nascondi schede",
"moveTabsLeft": "Sposta schede a sinistra",
"moveTabsRight": "Sposta schede a destra"
},
+ "vs/workbench/contrib/terminal/browser/terminalTabsChatEntry": {
+ "terminal.tabs.chatEntryAriaLabelPlural": "Visualizza {0} terminali chat nascosti",
+ "terminal.tabs.chatEntryAriaLabelSingle": "Visualizza 1 terminale chat nascosto",
+ "terminal.tabs.chatEntryLabelPlural": "{0} Terminali nascosti",
+ "terminal.tabs.chatEntryLabelSingle": "{0} Terminale nascosto",
+ "terminal.tabs.chatEntryTooltip": "Visualizza terminali chat nascosti"
+ },
"vs/workbench/contrib/terminal/browser/terminalTabsList": {
+ "label": "Terminale",
"splitTerminalAriaLabel": "Terminale {0} {1}, suddivisione {2} di {3}",
"terminal.tabs": "Schede dei terminale",
"terminalAriaLabel": "Terminale {0} {1}",
"terminalInputAriaLabel": "Digitare il nome del terminale. Premere INVIO per confermare oppure ESC per annullare."
},
"vs/workbench/contrib/terminal/browser/terminalTooltip": {
- "launchFailed.exitCodeOnlyShellIntegration": "Impossibile avviare il processo del terminale. Potrebbe essere utile disabilitare l'integrazione della shell con terminal.integrated.shellIntegration.en.",
- "shellIntegration.activationFailed": "Non è stato possibile attivare l'integrazione della shell",
- "shellIntegration.enabled": "Integrazione shell attivata"
+ "hideDetails": "Nascondi dettagli",
+ "shellIntegration": "Integrazione shell",
+ "shellIntegration.basic": "Basic",
+ "shellIntegration.injectionFailed": "Attivazione dell'inserimento non riuscita",
+ "shellIntegration.no": "No",
+ "shellIntegration.rich": "Avanzato",
+ "shellProcessTooltip.commandLine": "Riga di comando: {0}",
+ "shellProcessTooltip.processId": "ID processo ({0}): {1}",
+ "showDetails": "Mostra dettagli"
},
"vs/workbench/contrib/terminal/browser/terminalView": {
"terminal.monospaceOnly": "Il terminale supporta solo tipi di carattere a spaziatura fissa. Assicurarsi di riavviare VS Code se si tratta di un tipo di carattere appena installato.",
@@ -9138,41 +14649,48 @@
"terminals": "Apri i terminali."
},
"vs/workbench/contrib/terminal/browser/xterm/decorationAddon": {
- "changeDefaultIcon": "Cambia icona predefinita",
- "changeErrorIcon": "Modifica icona di errore",
- "changeSuccessIcon": "Modifica icona di operazione riuscita",
"gutter": "Effetti del comando di navigazione",
+ "no": "No",
"overviewRuler": "Effetti dei comandi del righello delle annotazioni",
- "terminal.configureCommandDecorations": "Configura effetti comandi",
+ "rerun": "Eseguire il comando: {0}",
+ "terminal.attachToChat": "Allega alla chat",
"terminal.copyCommand": "Copia comando",
+ "terminal.copyCommandAndOutput": "Copia comando e output",
"terminal.copyOutput": "Copia output",
"terminal.copyOutputAsHtml": "Copia output come HTML",
"terminal.learnShellIntegration": "Informazioni sull'integrazione della shell",
"terminal.rerunCommand": "Riesegui il confronto",
+ "toggleVisibility": "Attiva/Disattiva visibilità",
+ "workbench.action.terminal.goToRecentDirectory": "Vai alla directory recente",
+ "workbench.action.terminal.runRecentCommand": "Esegui comando recente",
+ "workbench.action.terminal.toggleVisibility": "Attiva/Disattiva visibilità",
+ "yes": "Sì"
+ },
+ "vs/workbench/contrib/terminal/browser/xterm/decorationStyles": {
+ "terminalCommandDecoration.running": "In esecuzione",
+ "terminalCommandDecoration.unknown": "Sconosciuto",
"terminalPromptCommandFailed": "Comando eseguito {0} e non riuscito",
+ "terminalPromptCommandFailed.duration": "Comando eseguito: {0}. Tempo impiegato: {1}. Non riuscito",
"terminalPromptCommandFailedWithExitCode": "Comando eseguito {0} e non riuscito (codice di uscita {1})",
- "terminalPromptCommandSuccess": "Comando eseguito {0}",
- "terminalPromptContextMenu": "Mostra azioni dei comandi",
- "toggleVisibility": "Attiva/Disattiva visibilità"
+ "terminalPromptCommandFailedWithExitCode.duration": "Comando eseguito: {0} . Tempo impiegato: {1}. Non riuscito (codice di uscita {2})",
+ "terminalPromptCommandSuccess": "Comando eseguito {0} ora",
+ "terminalPromptCommandSuccess.": "Comando eseguito {0} ",
+ "terminalPromptCommandSuccess.duration": "Comando eseguito: {0}. Tempo impiegato: {1}",
+ "terminalPromptContextMenu": "Mostra azioni dei comandi"
},
"vs/workbench/contrib/terminal/browser/xterm/xtermTerminal": {
- "dontShowAgain": "Non visualizzare più questo messaggio",
- "no": "No",
- "terminal.slowRendering": "L'accelerazione GPU del terminale sembra lenta nel computer. Si vuole disabilitarla per migliorare le prestazioni? [Altre informazioni sulle impostazioni del terminale](https://code.visualstudio.com/docs/editor/integrated-terminal#_changing-how-the-terminal-is-rendered).",
- "yes": "Sì"
+ "terminal.integrated.copySelection.noSelection": "Il terminale non contiene alcuna selezione da copiare"
},
"vs/workbench/contrib/terminal/common/terminal": {
- "terminalCategory": "Terminale",
"vscode.extension.contributes.terminal": "Aggiunge come contributo la funzionalità del terminale.",
+ "vscode.extension.contributes.terminal.completionProviders": "Definisce i provider di completamento del terminale che verranno registrati al momento dell'attivazione dell'estensione.",
+ "vscode.extension.contributes.terminal.completionProviders.description": "Descrizione di cosa fa il provider di completamento. Verrà mostrata nell'interfaccia utente delle impostazioni.",
"vscode.extension.contributes.terminal.profiles": "Definisce i profili di terminale aggiuntivi che l'utente può creare.",
"vscode.extension.contributes.terminal.profiles.id": "ID del provider di profili del terminale.",
"vscode.extension.contributes.terminal.profiles.title": "Titolo di questo profilo di terminale.",
- "vscode.extension.contributes.terminal.types": "Definisce i tipi di terminale aggiuntivi che l'utente può creare.",
- "vscode.extension.contributes.terminal.types.command": "Comando da eseguire quando l'utente crea questo tipo di terminale.",
"vscode.extension.contributes.terminal.types.icon": "Codicon, URI oppure URI chiaro e scuro da associare a questo tipo di terminale.",
"vscode.extension.contributes.terminal.types.icon.dark": "Percorso dell'icona quando viene usato un tema scuro",
- "vscode.extension.contributes.terminal.types.icon.light": "Percorso dell'icona quando viene usato un tema chiaro",
- "vscode.extension.contributes.terminal.types.title": "Titolo di questo tipo di terminale."
+ "vscode.extension.contributes.terminal.types.icon.light": "Percorso dell'icona quando viene usato un tema chiaro"
},
"vs/workbench/contrib/terminal/common/terminalColorRegistry": {
"terminal.ansiColor": "'{0}' colori ANSI nel terminale. ",
@@ -9184,6 +14702,8 @@
"terminal.findMatchHighlightBackground": "Colore delle altre corrispondenze di ricerca nel terminale. Il colore non deve essere opaco per non nascondere il contenuto del terminale sottostante.",
"terminal.findMatchHighlightBorder": "Colore bordo delle altre corrispondenze di ricerca nel terminale.",
"terminal.foreground": "Il colore di primo piano del terminale.",
+ "terminal.hoverHighlightBackground": "Evidenziazione sotto la parola per cui è visualizzata un'area sensibile al passaggio del mouse. Il colore non deve essere opaco per evitare di nascondere le decorazioni sottostanti.",
+ "terminal.inactiveSelectionBackground": "Colore di sfondo di selezione del terminale quando non ha lo stato attivo.",
"terminal.selectionBackground": "Colore di sfondo di selezione del terminale.",
"terminal.selectionForeground": "Colore primo piano della selezione del terminale. Se è Null, il primo piano di selezione verrà conservato e verrà applicata la funzionalità rapporto di contrasto minimo.",
"terminal.tab.activeBorder": "Bordo sul lato della scheda del terminale nel pannello. Per impostazione predefinita, viene impostato su tab.activeBorder.",
@@ -9192,40 +14712,52 @@
"terminalCommandDecoration.successBackground": "Il colore di sfondo della decorazione dei comandi del terminale per i comandi riusciti.",
"terminalCursor.background": "Colore di sfondo del cursore del terminale. Permette di personalizzare il colore di un carattere quando sovrapposto da un blocco cursore.",
"terminalCursor.foreground": "Colore di primo piano del cursore del terminale.",
+ "terminalInitialHintForeground": "Colore primo piano dell'hint iniziale del terminale.",
+ "terminalOverviewRuler.border": "Colore del bordo sinistro del righello delle annotazioni.",
"terminalOverviewRuler.cursorForeground": "Colore del cursore del righello delle annotazioni.",
"terminalOverviewRuler.findMatchHighlightForeground": "Colore indicatore righello panoramica per trovare corrispondenze nel terminale."
},
"vs/workbench/contrib/terminal/common/terminalConfiguration": {
- "cwd": "la directory di lavoro corrente del terminale",
+ "cwd": "la directory di lavoro corrente del terminale.",
"cwdFolder": "la directory di lavoro corrente del terminale, visualizzata per le aree di lavoro multi-radice o in una singola area di lavoro radice quando il valore è diverso dalla directory di lavoro iniziale. In Windows questa opzione verrà visualizzata solo quando è abilitata l'integrazione della shell.",
- "local": "indica un terminale locale in un'area di lavoro remota",
+ "enableFileLinks.notRemote": "Abilitare solo quando non si è in un'area di lavoro remota.",
+ "enableFileLinks.off": "Sempre disattivato.",
+ "enableFileLinks.on": "Sempre attivo.",
+ "hideOnStartup.always": "Nascondere sempre il terminale, anche quando sono presenti sessioni permanenti ripristinate.",
+ "hideOnStartup.never": "Non nascondere mai la visualizzazione del terminale all'avvio.",
+ "hideOnStartup.whenEmpty": "Nascondere solo il terminale, quando non sono presenti sessioni permanenti ripristinate.",
+ "local": "indica un terminale locale in un'area di lavoro remota.",
"openDefaultSettingsJson": "Apri il file JSON delle impostazioni predefinite",
"openDefaultSettingsJson.capitalized": "Apri impostazioni predefinite (JSON)",
- "process": "il nome del processo del terminale",
- "separator": "un separatore condizionale (“ - “) visualizzato solo se circondato da variabili con valori o testo statici.",
- "sequence": "il nome fornito al terminale dal processo",
- "task": "indica che il terminale è associato a un'attività",
+ "process": "il nome del processo del terminale.",
+ "progress": "lo stato di avanzamento come riportato dalla sequenza 'OSC 9;4'.",
+ "separator": "un separatore condizionale {0} visualizzato solo se racchiuso tra variabili con valori o testo statici.",
+ "sequence": "il nome fornito al terminale dal processo.",
+ "shellCommand": "il comando eseguito in base all'integrazione della shell. Richiede anche un'elevata confidenza nella riga di comando rilevata, che potrebbe non funzionare in alcuni framework di prompt.",
+ "shellPromptInput": "input del prompt completo della shell in base all'integrazione della shell.",
+ "shellType": "il tipo di shell rilevato.",
+ "task": "indica che il terminale è associato a un'attività.",
"terminal.integrated.allowChords": "Indica se consentire o meno i tasti di scelta rapida nel terminale. Si tenga presente che quando è True e il tasto di scelta rapida restituisce una pressione contemporanea, ignorerà {0}. Impostare su False è particolarmente utile se si vuole usare CTRL+K per passare alla shell (non VS Code).",
"terminal.integrated.allowMnemonics": "Indica se consentire i tasti di scelta della barra dei menu, ad esempio ALT+F, per attivare l'apertura della barra dei menu. Se è impostata su true, tutte le sequenze di tasti con ALT ignoreranno la shell. Non ha alcun effetto in macOS.",
+ "terminal.integrated.allowedLinkSchemes": "Una matrice di stringhe contenenti gli schemi URI per cui il terminale è autorizzato ad aprire collegamenti. Per impostazione predefinita, ai fini della sicurezza è consentito solo un piccolo sottoinsieme di possibili schemi.",
"terminal.integrated.altClickMovesCursor": "Se è abilitata, la combinazione ALT/Opzione+clic consentirà di riposizionare il cursore del prompt sotto il mouse quando {0} è impostato su {1} (valore predefinito). Questa impostazione potrebbe non funzionare in modo affidabile a seconda della shell.",
- "terminal.integrated.autoReplies": "Un set di messaggi a cui risponderà automaticamente quando viene rilevato nel terminale. Se il messaggio fornito è sufficientemente specifico, ciò contribuirà ad automatizzare le risposte comuni.\r\n\r\nNote:\r\n\r\n- Usare {0} per rispondere automaticamente alla richiesta di terminazione del processo batch in Windows.\r\n: il messaggio include sequenze di escape in modo che la risposta non venga eseguita con testo con stile.\r\n: ogni risposta può essere eseguita una sola volta al secondo.\r\n: usare {1} nella risposta per indicare il tasto INVIO.\r\n: per annullare l'impostazione di una chiave predefinita, impostare il valore su Null.\r\n- Riavviare VS Code se non sono applicabili nuove impostazioni.",
- "terminal.integrated.autoReplies.reply": "Risposta da inviare al processo.",
"terminal.integrated.bellDuration": "Numero di millisecondi per visualizzare la campana all'interno di una scheda del terminale quando viene attivata.",
"terminal.integrated.commandsToSkipShell": "Un set di ID comando i cui tasti di scelta rapida non verranno inviati alla shell, ma gestiti sempre da VS Code. In questo modo i tasti di scelta rapida che verrebbero normalmente utilizzati dalla shell si comportano come quando il terminale non si trova nello stato attivo, ad esempio con `CTRL+P` viene avviato Quick Open.\r\n\r\n \r\n\r\nMolti comandi vengono ignorati per impostazione predefinita. Per sostituire un'impostazione predefinita e passare il tasto di scelta rapida del comando alla shell, aggiungere prima del comando il prefisso `-`. Ad esempio, aggiungere `-workbench.action.quickOpen` per consentire a `CTRL+P` di usare la shell.\r\n\r\n \r\n\r\nL'elenco seguente di comandi ignorati predefiniti è troncato quando viene visualizzato in Editor impostazioni. Per visualizzare l'elenco completo, {1} e cercare il primo comando nell'elenco seguente.\r\n \r\n\r\nComandi ignorati predefiniti:\r\n\r\n\r\n{0}",
- "terminal.integrated.confirmOnExit": "Controlla se confermare la chiusura della finestra se sono presenti sessioni terminale attive.",
+ "terminal.integrated.confirmOnExit": "Controlla se confermare la chiusura della finestra in presenza di sessioni del terminale attive. I terminali in background come quelli avviati da alcune estensioni non attiveranno la conferma.",
"terminal.integrated.confirmOnExit.always": "Confermare sempre se sono presenti terminali.",
"terminal.integrated.confirmOnExit.hasChildProcesses": "Confermare se sono presenti terminali con processi figlio.",
"terminal.integrated.confirmOnExit.never": "Non confermare mai.",
- "terminal.integrated.confirmOnKill": "Controlla se confermare la terminazione dei terminali quando hanno processi figlio. Se impostato su Editor, i terminali nell'area dell'editor verranno contrassegnati come modificati quando hanno processi figlio. Si noti che il rilevamento dei processi figlio potrebbe non funzionare correttamente per shell come Git Bash che non eseguono i processi come processi figlio della shell.",
+ "terminal.integrated.confirmOnKill": "Controlla se confermare la terminazione dei terminali quando hanno processi figlio. Se impostato su Editor, i terminali nell'area dell'editor verranno contrassegnati come modificati quando hanno processi figlio. Si noti che il rilevamento dei processi figlio potrebbe non funzionare correttamente per shell come Git Bash che non eseguono i processi come processi figlio della shell. I terminali in background come quelli avviati da alcune estensioni non attiveranno la conferma.",
"terminal.integrated.confirmOnKill.always": "Confermare se il terminale è presente nell'editor o nel pannello.",
"terminal.integrated.confirmOnKill.editor": "Confermare se il terminale è presente nell'editor.",
"terminal.integrated.confirmOnKill.never": "Non confermare mai.",
"terminal.integrated.confirmOnKill.panel": "Confermare se il terminale è presente nel pannello.",
"terminal.integrated.copyOnSelection": "Controlla se il testo selezionato nel terminale verrà copiato negli Appunti.",
"terminal.integrated.cursorBlinking": "Controlla se il cursore del terminale è intermittente.",
- "terminal.integrated.cursorStyle": "Controlla lo stile del cursore del terminale.",
+ "terminal.integrated.cursorStyle": "Controlla lo stile del cursore del terminale quando il terminale è attivo.",
+ "terminal.integrated.cursorStyleInactive": "Controlla lo stile del cursore del terminale quando il terminale non è attivo.",
"terminal.integrated.cursorWidth": "Controlla la larghezza del cursore quando {0} è impostato su {1}.",
- "terminal.integrated.customGlyphs": "Indica se disegnare glifi personalizzati per i caratteri di disegno caselle e di elementi blocco invece di usare il tipo di carattere, che in genere restituisce un rendering migliore con le linee continue. Tenere presente che non funziona con il renderer DOM",
+ "terminal.integrated.customGlyphs": "Indica se disegnare glifi personalizzati per i caratteri di disegno degli elementi di blocco e caselle, anziché usare il tipo di carattere, che in genere restituisce un rendering migliore con linee continue. Si noti che non funziona quando {0} è disabilitato.",
"terminal.integrated.cwd": "Percorso di avvio esplicito in cui verrà avviato il terminale. Viene usato come directory di lavoro corrente (cwd) per il processo della shell. Può risultare particolarmente utile nelle impostazioni dell'area di lavoro se la directory radice non costituisce una directory di lavoro corrente comoda.",
"terminal.integrated.defaultLocation": "Verifica la posizione in cui verranno visualizzati i terminali appena creati.",
"terminal.integrated.defaultLocation.editor": "Crea terminali nell'editor",
@@ -9234,70 +14766,81 @@
"terminal.integrated.detectLocale.auto": "Imposta la variabile di ambiente `$LANG` se quella esistente non è presente o non termina con `'.UTF-8'`.",
"terminal.integrated.detectLocale.off": "Non imposta la variabile di ambiente `$LANG`.",
"terminal.integrated.detectLocale.on": "Imposta sempre la variabile di ambiente `$LANG`.",
+ "terminal.integrated.developer.devMode": "Abilitare la modalità sviluppatore per il terminale. Mostra informazioni di debug e visualizzazioni aggiuntive per le sequenze di integrazione della shell.",
+ "terminal.integrated.developer.ptyHost.latency": "Latenza simulata in millisecondi applicata a tutte le chiamate effettuate all'host pty. Utile per testare il comportamento del terminale in condizioni di latenza elevata.",
+ "terminal.integrated.developer.ptyHost.startupDelay": "Ritardo di avvio simulato in millisecondi per il processo host pty. Utile per testare l'inizializzazione del terminale in condizioni di avvio lento.",
"terminal.integrated.drawBoldTextInBrightColors": "Controlla se il testo in grassetto nel terminale userà sempre la variante di colore ANSI \"bright\".",
- "terminal.integrated.enableBell": "Controlla se il segnale acustico di avviso del terminale è abilitato. È contraddistinto dall'icona di una campanella accanto al nome del terminale.",
- "terminal.integrated.enableFileLinks": "Indica se abilitare i collegamenti di file nel terminale. I collegamenti possono essere lenti se si usa un'unità di rete, in particolare perché ogni collegamento di file viene verificato in base al file system. La modifica di questa impostazione ha effetto solo nel nuovi terminali.",
- "terminal.integrated.enableMultiLinePasteWarning": "Visualizzare una finestra di dialogo di avviso quando si incollano più righe nel terminale. La finestra di dialogo non viene visualizzata quando:\r\n\r\n- La modalità Incolla tra parentesi quadre è abilitata (la shell supporta l'operazione incolla su più righe in modo nativo)\r\n- L'operazione Incolla viene gestita dalla riga di lettura della shell (nel caso di pwsh)",
+ "terminal.integrated.enableBell": "Questa impostazione ora è deprecata. Usare invece le impostazioni 'terminal.integrated.enableVisualBell' e 'accessibility.signals.terminalBell'.",
+ "terminal.integrated.enableFileLinks": "Indica se abilitare i collegamenti di file nei terminali. I collegamenti possono essere lenti se si usa un'unità di rete, in particolare perché ogni collegamento di file viene verificato in base al file system. La modifica di questa impostazione ha effetto solo nel nuovi terminali.",
+ "terminal.integrated.enableImages": "Abilita il supporto delle immagini nel terminale. Funzionerà solo quando è abilitata {0}. Il protocollo di immagine inline di sixel e iTerm è supportato sia in Linux che in macOS. Questa operazione funzionerà solo in Windows per le versioni di ConPTY >= v2 fornite con Windows stesso. Vedere anche {1}. Le immagini non verranno ripristinate tra i ricaricamento/riconnessioni della finestra.",
+ "terminal.integrated.enableMultiLinePasteWarning": "Controlla se visualizzare una finestra di dialogo di avviso quando si incollano più righe nel terminale.",
+ "terminal.integrated.enableMultiLinePasteWarning.always": "Visualizza sempre l'avviso se il testo contiene una nuova riga.",
+ "terminal.integrated.enableMultiLinePasteWarning.auto": "Abilita l'avviso ma non visualizzarlo quando:\r\n\r\n- La modalità Incolla tra parentesi quadre è abilitata (la shell supporta l'operazione incolla su più righe in modo nativo)\r\n- L'operazione Incolla viene gestita dalla riga di lettura della shell (nel caso di pwsh)",
+ "terminal.integrated.enableMultiLinePasteWarning.never": "Non visualizzare mai l'avviso.",
"terminal.integrated.enablePersistentSessions": "Abilita la persistenza delle sessioni del terminale per l'area di lavoro tra un ricaricamento e l'altro della finestra.",
+ "terminal.integrated.enableVisualBell": "Controllare se la campana visiva del terminale è abilitata. Viene visualizzato accanto al nome del terminale.",
"terminal.integrated.env.linux": "Oggetto con variabili di ambiente che verrà aggiunto al processo VS Code per essere usato dal terminale in Linux. Impostare su `null` per eliminare la variabile di ambiente.",
"terminal.integrated.env.osx": "Oggetto con variabili di ambiente che verrà aggiunto al processo VS Code per essere usato dal terminale in macOS. Impostare su `null` per eliminare la variabile di ambiente.",
"terminal.integrated.env.windows": "Oggetto con variabili di ambiente che verrà aggiunto al processo VS Code per essere usato dal terminale in Windows. Impostare su `null` per eliminare la variabile di ambiente.",
- "terminal.integrated.environmentChangesIndicator": "Indica se visualizzare in ogni terminale l'indicatore delle modifiche dell'ambiente che spiega se sono state create estensioni o se si vogliono apportare modifiche all'ambiente del terminale.",
- "terminal.integrated.environmentChangesIndicator.off": "Disabilita l'indicatore.",
- "terminal.integrated.environmentChangesIndicator.on": "Abilita l'indicatore.",
- "terminal.integrated.environmentChangesIndicator.warnonly": "Mostra solo l'indicatore di avviso quando lo stato dell'ambiente di un terminale è 'stale' e non l'indicatore di informazioni che mostra quando un'estensione ha modificato un terminale.",
- "terminal.integrated.environmentChangesRelaunch": "Indica se riavviare automaticamente i terminali se l'estensione vuole contribuire al relativo ambiente e non c'è stata ancora alcuna interazione.",
+ "terminal.integrated.environmentChangesRelaunch": "Indica se riavviare automaticamente i terminali, in caso l'estensione volesse contribuire al relativo ambiente e non c'è stata ancora alcuna interazione.",
"terminal.integrated.fastScrollSensitivity": "Moltiplicatore della velocità di scorrimento quando si preme `Alt`.",
- "terminal.integrated.fontFamily": "Controlla la famiglia di caratteri del terminale. L'impostazione predefinita è il valore di {0}.",
+ "terminal.integrated.focusAfterRun": "Controlla se il terminale, il buffer accessibile o nessuno dei due sarà attivo dopo l'esecuzione di `Terminale: Eseguire testo selezionato nel terminale attivo`.",
+ "terminal.integrated.focusAfterRun.accessible-buffer": "Sposta sempre lo stato attivo sul buffer accessibile.",
+ "terminal.integrated.focusAfterRun.none": "Non eseguire alcuna operazione.",
+ "terminal.integrated.focusAfterRun.terminal": "Sposta sempre lo stato attivo sul terminale.",
+ "terminal.integrated.fontFamily": "Controlla la famiglia di caratteri del terminale. Imposta il valore di {0} come predefinito.",
+ "terminal.integrated.fontLigatures.enabled": "Controlla se i caratteri legatura sono abilitati nel terminale. Le legature funzioneranno solo se supportate dal {0} configurato.",
+ "terminal.integrated.fontLigatures.fallbackLigatures": "Quando {0} è abilitato e non è possibile analizzare la {1} specifica, si tratta del set di sequenze di caratteri che verranno sempre tracciate insieme. Consente l'uso di un set fisso di legature anche quando il tipo di carattere non è supportato.",
+ "terminal.integrated.fontLigatures.featureSettings": "Gestisce quali impostazioni delle funzionalità del tipo di carattere vengono impiegate quando le legature sono abilitate, nel formato della proprietà CSS `font-feature-settings`. Alcuni esempi che possono essere validi a seconda del tipo di carattere:",
"terminal.integrated.fontSize": "Controlla le dimensioni del carattere in pixel del terminale.",
"terminal.integrated.fontWeight": "Spessore del carattere da usare nel terminale per il testo non in grassetto. Accetta le parole chiave \"normal\" e \"bold\" o i numeri compresi tra 1 e 1000.",
"terminal.integrated.fontWeightBold": "Spessore del carattere da usare nel terminale per il testo in grassetto. Accetta le parole chiave \"normal\" e \"bold\" o i numeri compresi tra 1 e 1000.",
"terminal.integrated.fontWeightError": "Sono consentiti solo le parole chiave \"normal\" e \"bold\" o i numeri compresi tra 1 e 1000.",
"terminal.integrated.gpuAcceleration": "Controlla se il terminale sfrutterà la GPU per eseguire il rendering.",
"terminal.integrated.gpuAcceleration.auto": "Consente che sia VS Code a rilevare il renderer che offre l'esperienza migliore.",
- "terminal.integrated.gpuAcceleration.canvas": "Usare il renderer canvas di fallback del terminale che usa un contesto 2d anziché webgl e che può offrire prestazioni migliori in alcuni sistemi. Si noti che alcune funzionalità del renderer canvas sono limitate, ad esempio la selezione opaca.",
"terminal.integrated.gpuAcceleration.off": "Disabilitare l'accelerazione GPU all'interno del terminale. Il rendering del terminale sarà molto più lento quando l'accelerazione GPU è disattivata, ma dovrebbe funzionare in modo affidabile in tutti i sistemi.",
"terminal.integrated.gpuAcceleration.on": "Abilita l'accelerazione GPU all'interno del terminale.",
- "terminal.integrated.letterSpacing": "Controlla la spaziatura delle lettere del terminale. Si tratta di un valore intero che rappresenta il numero di pixel da aggiungere tra i caratteri.",
- "terminal.integrated.lineHeight": "Controlla l'altezza della riga del terminale. Questo numero è moltiplicato per le dimensioni del carattere del terminale per ottenere l'altezza effettiva della riga in pixel.",
- "terminal.integrated.localEchoEnabled": "Quando è necessario abilitare l'eco locale. Verrà eseguito l'override di {0}",
- "terminal.integrated.localEchoEnabled.auto": "Abilitato solo per le aree di lavoro remote",
- "terminal.integrated.localEchoEnabled.off": "Sempre disabilitato",
- "terminal.integrated.localEchoEnabled.on": "Sempre abilitato",
- "terminal.integrated.localEchoExcludePrograms": "L'eco locale verrà disabilitato quando uno di questi nomi di programma viene trovato nel titolo del terminale.",
- "terminal.integrated.localEchoLatencyThreshold": "Durata del ritardo di rete, in millisecondi, in cui l'eco delle modifiche locali verrà visualizzato nel terminale senza attendere la conferma del server. Se è '0', l'eco locale sarà sempre attivo, se è '-1' sarà disabilitato.",
- "terminal.integrated.localEchoStyle": "Stile terminale del testo con eco locale, ovvero uno stile di carattere o un colore RGB.",
+ "terminal.integrated.hideOnLastClosed": "Indica se nascondere la visualizzazione del terminale alla chiusura dell'ultimo terminale. Questo problema si verifica solo quando il terminale è l'unica visualizzazione visibile nel contenitore di visualizzazioni.",
+ "terminal.integrated.hideOnStartup": "Indica se nascondere la visualizzazione del terminale all'avvio, evitando la creazione di un terminale quando non sono presenti sessioni permanenti.",
+ "terminal.integrated.ignoreBracketedPasteMode": "Controlla se il terminale ignorerà la modalità incolla tra parentesi quadre anche se il terminale è stato inserito nella modalità, omettendo le sequenze di {0} e {1} durante l'operazione Incolla. È utile quando la shell non rispetta la modalità che può verificarsi nelle shell secondarie, ad esempio.",
+ "terminal.integrated.letterSpacing": "Controlla la spaziatura delle lettere del terminale. Questo è un valore intero che rappresenta il numero di pixel aggiuntivi da aggiungere tra i caratteri.",
+ "terminal.integrated.lineHeight": "Controlla l'altezza della linea del terminale. Questo numero viene moltiplicato per le dimensioni del carattere del terminale per ottenere l'altezza effettiva della riga in pixel.",
"terminal.integrated.macOptionClickForcesSelection": "Controlla se forzare la selezione quando si usa Opzione+clic in macOS. In questo modo viene forzata la selezione normale (riga) impedendo l'uso della modalità di selezione colonna ed è possibile copiare e incollare usando la selezione normale del terminale quando, ad esempio, è abilitata la modalità mouse in tmux.",
"terminal.integrated.macOptionIsMeta": "Controlla se usare il tasto opzione come tasto meta nel terminale in macOS.",
+ "terminal.integrated.middleClickBehavior": "Controlla la reazione del terminale quando viene fatto clic con il pulsante destro del mouse.",
+ "terminal.integrated.middleClickBehavior.default": "La piattaforma predefinita per lo stato attivo del terminale. In Linux verrà incollata anche la selezione.",
+ "terminal.integrated.middleClickBehavior.paste": "Incolla facendo clic con il pulsante centrale del mouse.",
"terminal.integrated.minimumContrastRatio": "Quando impostato, il colore di primo piano di ogni cella verrà modificato per provare a soddisfare il rapporto di contrasto specificato. Questo non si applica ai caratteri `powerline` per #146406. Valori di esempio:\r\n\r\n- 1: non eseguire alcuna operazione e usare i colori del tema standard.\r\n- 4.5: [conformità WCAG AA (minimo)](https://www.w3.org/TR/UNDERSTANDING-WCAG20/visual-audio-contrast-contrast.html) (impostazione predefinita).\r\n- 7: [conformità WCAG AAA (avanzata)](https://www.w3.org/TR/UNDERSTANDING-WCAG20/visual-audio-contrast7.html).\r\n- 21: bianco su nero o nero su bianco.",
"terminal.integrated.mouseWheelScrollSensitivity": "Moltiplicatore da usare sul valore `deltaY` degli eventi di scorrimento della rotellina del mouse.",
- "terminal.integrated.persistentSessionReviveProcess": "Quando il processo del terminale deve essere arrestato, ad esempio alla chiusura della finestra o dell'applicazione, determina quando deve essere ripristinato il contenuto della sessione del terminale precedente e ricreati i processi alla successiva apertura dell'area di lavoro.\r\n\r\n Avvertenze: \r\n\r\n- Il ripristino della directory di lavoro corrente del processo dipende dal fatto che sia supportato dalla shell. \r\n- Il tempo di salvataggio permanente della sessione durante l'arresto è limitato, quindi potrebbe essere interrotto quando si utilizzano connessioni remote ad alta latenza.",
+ "terminal.integrated.persistentSessionReviveProcess": "Questo determina quando ripristinare il contenuto o la cronologia della sessione del terminale precedente e ricreare i processi alla successiva apertura dell'area di lavoro quando il processo del terminale deve essere arrestato, ad esempio alla chiusura della finestra o dell'applicazione.\r\n\r\nAvvertenze:\r\n\r\n- Il ripristino della directory di lavoro corrente del processo dipende dal fatto che sia supportato dalla shell.\r\n- Il tempo necessario per mantenere la sessione durante l'arresto è limitato, quindi potrebbe essere interrotto quando si usano connessioni remote ad alta latenza.",
"terminal.integrated.persistentSessionReviveProcess.never": "Non ripristinare mai i buffer del terminale o ricreare il processo.",
"terminal.integrated.persistentSessionReviveProcess.onExit": "Consente di ripristinare i processi dopo la chiusura dell'ultima finestra in Windows/Linux o quando viene attivato il comando “workbench.action.quit” (riquadro comandi, tasto di scelta rapida, menu).",
"terminal.integrated.persistentSessionReviveProcess.onExitAndWindowClose": "Consente di ripristinare i processi dopo la chiusura dell'ultima finestra in Windows/Linux o quando viene attivato il comando “workbench.action.quit” (riquadro comandi, tasto di scelta rapida, menu) o quando la finestra viene chiusa.",
+ "terminal.integrated.rescaleOverlappingGlyphs": "Indica se ridimensionare orizzontalmente i glifi di larghezza pari a una singola cella, ma con sovrapposizioni sulle celle successive. Ciò si verifica in genere per i caratteri di larghezza ambigua (ad esempio i caratteri numerici romani a partire da U+2160) che non sono presenti nei tipi di carattere a spaziatura fissa. I glifi emoji non vengono mai ridimensionati.",
"terminal.integrated.rightClickBehavior": "Controlla la reazione del terminale quando viene fatto clic con il pulsante destro del mouse.",
"terminal.integrated.rightClickBehavior.copyPaste": "Copia in presenza di una selezione, in caso contrario incolla.",
"terminal.integrated.rightClickBehavior.default": "Mostra il menu di scelta rapida.",
"terminal.integrated.rightClickBehavior.nothing": "Non eseguire alcuna operazione e passare l'evento al terminale.",
"terminal.integrated.rightClickBehavior.paste": "Incolla con il pulsante destro del mouse.",
"terminal.integrated.rightClickBehavior.selectWord": "Seleziona la parola sotto il cursore e mostra il menu di scelta rapida.",
- "terminal.integrated.scrollback": "Controlla il numero massimo di righe che il terminale mantiene nel buffer.",
+ "terminal.integrated.scrollback": "Controlla il numero massimo di righe che il terminale mantiene nel buffer. La memoria viene preallocata in base a questo valore per garantire un'esperienza ottimale. Di conseguenza, all'aumentare del valore, aumenterà anche la quantità di memoria.",
"terminal.integrated.sendKeybindingsToShell": "Invia la maggior parte dei tasti di scelta rapida al terminale anziché al Workbench, eseguendo l'override di {0}, che può essere usato in alternativa per l'ottimizzazione.",
- "terminal.integrated.shellIntegration.decorationIcon": "Controlla l'icona che verrà usata per i comandi ignorati/vuoti. Impostare su {0} per nascondere l'icona o disabilitare gli effetti con {1}.",
- "terminal.integrated.shellIntegration.decorationIconError": "Controlla l'icona che verrà usata per ogni comando nei terminali con l'integrazione della shell abilitata che dispone di un codice di uscita associato. Impostare su {0} per nascondere l'icona o per disabilitare gli effetti con {1}.",
- "terminal.integrated.shellIntegration.decorationIconSuccess": "Controlla l'icona che verrà usata per ogni comando nei terminali con l'integrazione della shell abilitata che non ha un codice di uscita associato. Impostare su {0} per nascondere l'icona o per disabilitare gli effetti con {1}.",
"terminal.integrated.shellIntegration.decorationsEnabled": "Quando l'integrazione della shell è abilitata, aggiunge una decorazione per ogni comando.",
"terminal.integrated.shellIntegration.decorationsEnabled.both": "Mostrare gli effetti nella barra di navigazione (sinistra) e nel righello delle annotazioni (destra)",
"terminal.integrated.shellIntegration.decorationsEnabled.gutter": "Mostra gli effetti della barra di navigazione a sinistra del terminale",
"terminal.integrated.shellIntegration.decorationsEnabled.never": "Non mostrare effetti",
"terminal.integrated.shellIntegration.decorationsEnabled.overviewRuler": "Mostra gli effetti del righello delle annotazioni a destra del terminale",
- "terminal.integrated.shellIntegration.enabled": "Determina se l'integrazione della shell viene inserita automaticamente per supportare le funzionalità come il rilevamento avanzato dei comandi e il rilevamento della directory di lavoro corrente. \r\n\r\nL'integrazione della shell consente di inserirla con uno script di avvio. Lo script fornisce informazioni dettagliate di VS Code su ciò che accade all'interno del terminale.\r\n\r\nShell supportate:\r\n\r\n- Linux/macOS: bash, pwsh, zsh\r\n - Windows: pwsh\r\n\r\nQuesta impostazione si applica solo quando vengono creati i terminali, quindi sarà necessario riavviare i terminali per renderla effettiva.\r\n\r\nSi noti che l'inserimento dello script potrebbe non funzionare se nel profilo del terminale sono definiti argomenti personalizzati, un elemento [bash complesso 'PROMPT_COMMAND'](https://code.visualstudio.com/docs/editor/integrated-terminal#_complex-bash-promptcommand), o un'altra installazione non supportata. Per disabilitare gli effetti, vedere {0}",
- "terminal.integrated.shellIntegration.history": "Controlla il numero di comandi utilizzati di recente da mantenere nella cronologia dei comandi del terminale. Impostare a 0 per disabilitare la cronologia dei comandi del terminale.",
+ "terminal.integrated.shellIntegration.enabled": "Determina se l'integrazione della shell viene inserita automaticamente per supportare le funzionalità come il rilevamento avanzato dei comandi e il rilevamento della directory di lavoro corrente. \r\n\r\nL'integrazione della shell consiste nell'inserirla con uno script di avvio. Lo script fornisce informazioni dettagliate di VS Code su ciò che accade all'interno del terminale.\r\n\r\nShell supportate:\r\n\r\n- Linux/macOS: bash, fish, pwsh, zsh\r\n - Windows: pwsh, git bash\r\n\r\nQuesta impostazione si applica solo quando vengono creati i terminali, quindi sarà necessario riavviare i terminali per renderla effettiva.\r\n\r\n Si noti che l'inserimento dello script potrebbe non funzionare se nel profilo del terminale sono definiti argomenti personalizzati, sono stati abilitati{1}, si dispone di un elemento [bash complesso 'PROMPT_COMMAND'](https://code.visualstudio.com/docs/editor/integrated-terminal#_complex-bash-promptcommand) o un'altra installazione non supportata. Per disabilitare gli effetti, vedere {0}",
+ "terminal.integrated.shellIntegration.environmentReporting": "Controlla se segnalare l'ambiente della shell, abilitandone l'utilizzo in funzionalità quali {0}. Ciò potrebbe causare un rallentamento durante la stampa della richiesta della shell.",
+ "terminal.integrated.shellIntegration.quickFixEnabled": "Quando l'integrazione della shell è abilitata, attiva le correzioni rapide per i comandi del terminale, visualizzate come un'icona a forma di lampadina o scintilla a sinistra della richiesta.",
+ "terminal.integrated.shellIntegration.timeout": "Configura la durata in millisecondi da attendere per l'integrazione della shell dopo l'avvio, prima di dichiararne l'assenza. Impostare su {0} per attendere il tempo minimo (500 ms). Il valore predefinito {1} indica che il tempo di attesa varia in base all'abilitazione dell'inserimento dell'integrazione della shell e del fatto che si tratti o meno di una finestra remota. Valutare la possibilità di impostare un valore basso se l'integrazione della shell è stata disabilitata intenzionalmente o un valore alto se la shell si avvia molto lentamente.",
"terminal.integrated.showExitAlert": "Controlla se mostrare l'avviso \"Il processo del terminale è stato terminato. Codice di uscita\" quando il codice di uscita è diverso da zero.",
+ "terminal.integrated.smoothScrolling": "Controlla se il terminale scorrerà usando un'animazione.",
"terminal.integrated.splitCwd": "Controlla la directory di lavoro con cui avviare un terminale diviso.",
"terminal.integrated.splitCwd.inherited": "In macOS e Linux un nuovo terminale diviso userà la directory di lavoro del terminale padre. In Windows il comportamento è uguale a quello iniziale.",
"terminal.integrated.splitCwd.initial": "Un nuovo terminale diviso userà la directory di lavoro con cui è stato avviato il terminale padre.",
"terminal.integrated.splitCwd.workspaceRoot": "Un nuovo terminale diviso userà la radice dell'area di lavoro come directory di lavoro. In un'area di lavoro con più radici è possibile scegliere la cartella radice da usare.",
+ "terminal.integrated.tabStopWidth": "Numero di celle in una tabulazione.",
"terminal.integrated.tabs.defaultColor": "ID colore del tema da associare alle icone del terminale per impostazione predefinita.",
"terminal.integrated.tabs.defaultIcon": "ID codicon da associare alle icone del terminale per impostazione predefinita.",
"terminal.integrated.tabs.enableAnimation": "Controllare se gli stati delle schede del terminale supportano l'animazione (ad esempio, le attività in corso).",
@@ -9312,40 +14855,46 @@
"terminal.integrated.tabs.location": "Controlla la posizione delle schede dei terminali, a sinistra o a destra dei terminali effettivi.",
"terminal.integrated.tabs.location.left": "Mostra la visualizzazione delle schede dei terminali a sinistra del terminale",
"terminal.integrated.tabs.location.right": "Mostra la visualizzazione delle schede dei terminali a destra del terminale",
- "terminal.integrated.tabs.separator": "Separatore utilizzato da {0} e {0}.",
+ "terminal.integrated.tabs.separator": "Separatore utilizzato da {0} e {1}.",
"terminal.integrated.tabs.showActions": "Verifica se i pulsanti Diviti e Termina del terminale vengono visualizzati accanto al nuovo pulsante del terminale.",
"terminal.integrated.tabs.showActions.always": "Mostra sempre le azioni",
"terminal.integrated.tabs.showActions.never": "Non mostrare mai le azioni",
"terminal.integrated.tabs.showActions.singleTerminal": "Mostra le azioni quando è l'unico terminale aperto",
"terminal.integrated.tabs.showActions.singleTerminalOrNarrow": "Mostra le azioni quando è l'unico terminale aperto o quando la visualizzazione delle schede si trova nello stato Senza testo ravvicinato",
- "terminal.integrated.tabs.showActiveTerminal": "Mostra le informazioni sul terminale attivo nella visualizzazione. Ciò risulta particolarmente utile quando il titolo all'interno delle schede non è visibile.",
+ "terminal.integrated.tabs.showActiveTerminal": "Mostra le informazioni sul terminale attivo nella visualizzazione. Questo è particolarmente utile quando il titolo all'interno delle schede non è visibile.",
"terminal.integrated.tabs.showActiveTerminal.always": "Mostra sempre il terminale attivo",
"terminal.integrated.tabs.showActiveTerminal.never": "Non mostrare mai il terminale attivo",
"terminal.integrated.tabs.showActiveTerminal.singleTerminal": "Mostra il terminale attivo quando è l'unico terminale aperto",
"terminal.integrated.tabs.showActiveTerminal.singleTerminalOrNarrow": "Mostra il terminale attivo quando è l'unico terminale aperto o quando la visualizzazione delle schede si trova nello stato stretto senza testo",
"terminal.integrated.unicodeVersion": "Controlla la versione di Unicode da usare per valutare la larghezza dei caratteri nel terminale. È consigliabile provare a modificare questa impostazione se emoji o altri caratteri wide non occupano la quantità di spazio corretta oppure premendo BACKSPACE viene cancellato un numero eccessivo o ridotto di caratteri.",
- "terminal.integrated.unicodeVersion.eleven": "Versione 11 di Unicode. Questa versione offre un migliore supporto in sistemi moderni che usano versioni moderne di Unicode.",
- "terminal.integrated.unicodeVersion.six": "Versione 6 di Unicode. Si tratta di una versione precedente che dovrebbe funzionare meglio in sistemi meno recenti.",
+ "terminal.integrated.unicodeVersion.eleven": "Versione 11 di Unicode: questa versione offre un supporto migliore nei sistemi moderni che usano versioni moderne di Unicode.",
+ "terminal.integrated.unicodeVersion.six": "Versione 6 di Unicode: questa è una versione precedente che dovrebbe funzionare meglio nei sistemi meno recenti.",
"terminal.integrated.windowsEnableConpty": "Indica se usare ConPTY per le comunicazioni dei processi di terminale Windows (richiede almeno Windows 10 numero di build 18309). Se è false verrà usato Winpty.",
- "terminal.integrated.wordSeparators": "Stringa contenente tutti i caratteri da considerare come separatori di parole quando si fa doppio clic per selezionare la funzionalità per parola.",
+ "terminal.integrated.windowsUseConptyDll": "Stabilire se usare il file conpty.dll sperimentale (v1.22.250204002) fornito con VS Code anziché quello fornito in bundle con Windows.",
+ "terminal.integrated.wordSeparators": "Stringa contenente tutti i caratteri da considerare separatori di parola quando si fa doppio clic per selezionare la parola e nel rilevamento del collegamento 'word' di fallback. Poiché viene usato per il rilevamento dei collegamenti, inclusi caratteri come ':' usati per il rilevamento dei collegamenti, la parte di riga e colonna dei collegamenti come 'file:10:5' verrà ignorata.",
"terminalDescription": "Controlla la descrizione del terminale, visualizzata a destra del titolo. Le variabili vengono sostituite in base al contesto:",
"terminalIntegratedConfigurationTitle": "Terminale integrato",
"terminalTitle": "Controlla il titolo del terminale. Le variabili vengono sostituite in base al contesto:",
- "workspaceFolder": "l'area di lavoro in cui è stato avviato il terminale"
+ "workspaceFolder": "l'area di lavoro in cui è stato avviato il terminale.",
+ "workspaceFolderName": "il 'nome' dell'area di lavoro in cui è stato avviato il terminale."
},
"vs/workbench/contrib/terminal/common/terminalContextKey": {
"inTerminalRunCommandPickerContextKey": "Indica se la selezione dell'esecuzione del comando del terminale è attualmente aperta.",
"isSplitTerminalContextKey": "Indica se il terminale della scheda evidenziata è un terminale diviso.",
+ "splitPaneActive": "Indica se il terminale attivo è un pannello diviso.",
"terminalAltBufferActive": "Indica se il buffer alternativo del terminale è attivo.",
"terminalCountContextKey": "Numero corrente di terminali.",
"terminalEditorFocusContextKey": "Indica se un terminale nell'area dell'editor è evidenziato.",
"terminalFocusContextKey": "Indica se lo stato in evidenza si trova sul terminale.",
+ "terminalFocusInAnyContextKey": "Indica se un terminale è in stato attivo, inclusi i terminali scollegati usati in un'altra interfaccia utente.",
"terminalProcessSupportedContextKey": "Indica se i processi del terminale possono essere avviati nell'area di lavoro corrente.",
"terminalShellIntegrationEnabled": "Indica se l'integrazione della shell è abilitata nel terminale attivo",
- "terminalShellTypeContextKey": "Tipo di shell del terminale attivo, impostato sull'ultimo valore noto quando non sono presenti terminali.",
+ "terminalShellTypeContextKey": "Tipo di shell del terminale attivo. Viene impostato se è possibile rilevare il tipo.",
+ "terminalSuggestWidgetVisible": "Indica se il widget dei suggerimenti del terminale è visibile.",
"terminalTabsFocusContextKey": "Indica se lo stato in evidenza si trova sul widget delle schede del terminale.",
"terminalTabsSingularSelectedContextKey": "Indica se un terminale è selezionato nell'elenco delle schede del terminale.",
"terminalTextSelectedContextKey": "Indica se il testo è selezionato nel terminale attivo.",
+ "terminalTextSelectedInFocusedContextKey": "Indica se il testo è selezionato in un terminale con stato attivo.",
"terminalViewShowing": "Indica se la visualizzazione del terminale è visualizzata"
},
"vs/workbench/contrib/terminal/common/terminalStrings": {
@@ -9353,79 +14902,753 @@
"doNotShowAgain": "Non visualizzare più questo messaggio",
"killTerminal": "Chiudi il terminale",
"killTerminal.short": "Termina",
+ "local": "Locale",
+ "moveIntoNewWindow": "Sposta terminale in una nuova finestra",
"moveToEditor": "Sposta il terminale nell'area dell'editor",
+ "newInNewWindow": "Nuova finestra terminale",
"previousSessionCategory": "sessione precedente",
"splitTerminal": "Terminale diviso",
"splitTerminal.short": "Dividi",
+ "task": "Attività",
"terminal": "Terminale",
+ "terminal.new": "Nuovo terminale",
+ "terminalCategory": "Terminale",
"unsplitTerminal": "Annulla divisione del terminale",
"workbench.action.terminal.changeColor": "Cambia colore...",
"workbench.action.terminal.changeIcon": "Cambia icona...",
"workbench.action.terminal.focus": "Sposta stato attivo su terminale",
+ "workbench.action.terminal.focusAndHideAccessibleBuffer": "Sposta lo stato attivo sul terminale e nascondi buffer accessibile",
+ "workbench.action.terminal.focusHover": "Stato attivo al passaggio del mouse",
+ "workbench.action.terminal.focusInstance": "Terminale con stato attivo",
"workbench.action.terminal.moveToTerminalPanel": "Sposta il terminale nel pannello",
+ "workbench.action.terminal.newWithCwd": "Crea nuovo terminale avviato in una directory di lavoro personalizzata",
"workbench.action.terminal.rename": "Rinomina...",
+ "workbench.action.terminal.renameWithArg": "Rinomina il terminale attualmente attivo",
+ "workbench.action.terminal.revealCommand": "Visualizza comando nel terminale",
+ "workbench.action.terminal.scrollToNextCommand": "Scorri al comando successivo",
+ "workbench.action.terminal.scrollToPreviousCommand": "Scorri al comando precedente",
"workbench.action.terminal.sizeToContentWidthInstance": "Attiva/Disattiva dimensioni in larghezza contenuto"
},
- "vs/workbench/contrib/terminal/electron-sandbox/terminalRemote": {
+ "vs/workbench/contrib/terminal/electron-browser/terminalRemote": {
"workbench.action.terminal.newLocal": "Crea nuovo terminale integrato (locale)"
},
+ "vs/workbench/contrib/terminalContrib/accessibility/browser/terminal.accessibility.contribution": {
+ "workbench.action.terminal.accessibleBufferGoToNextCommand": "Buffer accessibile Vai al comando successivo",
+ "workbench.action.terminal.accessibleBufferGoToPreviousCommand": "Buffer accessibile Vai al comando precedente",
+ "workbench.action.terminal.focusAccessibleBuffer": "Visualizzazione terminale accessibile con stato attivo",
+ "workbench.action.terminal.scrollToBottomAccessibleView": "Scorri fino alla visualizzazione accessibile in basso",
+ "workbench.action.terminal.scrollToTopAccessibleView": "Scorri fino alla visualizzazione accessibile in alto"
+ },
+ "vs/workbench/contrib/terminalContrib/accessibility/browser/terminalAccessibilityHelp": {
+ "commandPromptMigration": "Provare a usare PowerShell invece del prompt dei comandi per un'esperienza migliorata",
+ "focusAccessibleTerminalView": "Il comando Visualizzazione terminale accessibile con stato attivo consente alle utilità per la lettura dello schermo di leggere il contenuto del terminale.",
+ "focusAfterRun": "Configurare gli elementi evidenziati dopo l'esecuzione del testo selezionato nel terminale con '{0}'.",
+ "focusViewOnExecution": "Abilitare 'terminal.integrated.accessibleViewFocusOnCommandExecution' per attivare automaticamente la visualizzazione accessibile del terminale quando viene eseguito un comando nel terminale.",
+ "goToNextCommand": "Vai a comando successivo nella visualizzazione accessibile",
+ "goToPreviousCommand": "Vai a comando precedente nella visualizzazione accessibile",
+ "goToRecentDirectory": "Vai alla directory recente",
+ "goToSymbol": "Vai a simbolo",
+ "newWithProfile": "Il comando Crea nuovo terminale (con profilo) consente di creare facilmente un terminale usando un profilo specifico.",
+ "noShellIntegration": "L'integrazione della shell non è abilitata. Alcune funzionalità di accessibilità potrebbero non essere disponibili.",
+ "openDetectedLink": "Il comando Apri collegamento rilevato consente alle utilità per la lettura dello schermo di aprire facilmente i collegamenti trovati nel terminale.",
+ "preserveCursor": "Personalizzare il comportamento del cursore quando si passa dal terminale alla visualizzazione accessibile con 'terminal.integrated.accessibleViewPreserveCursorPosition'.",
+ "runRecentCommand": "Esegui comando recente",
+ "shellIntegration": "Il terminale include una funzionalità denominata integrazione shell che offre un'esperienza avanzata, oltre a comandi pratici per le utilità per la lettura dello schermo, ad esempio:",
+ "suggest": "Quando è attivo il widget dei suggerimenti del terminale è attivo:",
+ "suggestCommands": "- Accettare il suggerimento e configurare le impostazioni dei suggerimenti.",
+ "suggestCommandsMore": "- Passare dal widget al terminale e attivare/disattivare i dettagli per visualizzare altre informazioni sul suggerimento.",
+ "suggestConfigure": "- Configurare le impostazioni dei suggerimenti ",
+ "suggestLearnMore": "- Altre informazioni sul suggerimento.",
+ "suggestTrigger": "Il comando di completamento delle richieste del terminale può essere richiamato manualmente, ma viene visualizzato anche durante la digitazione."
+ },
+ "vs/workbench/contrib/terminalContrib/accessibility/common/terminalAccessibilityConfiguration": {
+ "terminal.integrated.accessibleViewFocusOnCommandExecution": "Spostare lo stato attivo sulla visualizzazione accessibile del terminale quando viene eseguito un comando.",
+ "terminal.integrated.accessibleViewPreserveCursorPosition": "Mantiene la posizione del cursore alla riapertura della visualizzazione accessibile del terminale anziché impostarla sulla parte inferiore del buffer."
+ },
+ "vs/workbench/contrib/terminalContrib/autoReplies/common/terminalAutoRepliesConfiguration": {
+ "terminal.integrated.autoReplies": "Un insieme di messaggi a cui verrà automaticamente data risposta quando vengono rilevati nel terminale. Se il messaggio è sufficientemente specifico, ciò consente di automatizzare le risposte comuni.\r\n\r\nNote:\r\n\r\n- Usare {0} per rispondere automaticamente alla richiesta di terminazione del processo batch in Windows.\r\n- Il messaggio include sequenze di escape in modo che la risposta non venga eseguita con testo con stile.\r\n- Ogni risposta può essere eseguita una sola volta al secondo.\r\n- Usare {1} nella risposta per indicare il tasto INVIO.\r\n- Per annullare l'impostazione di una chiave predefinita, impostare il valore su Null.\r\n- Riavviare VS Code se non sono applicabili nuove impostazioni.",
+ "terminal.integrated.autoReplies.reply": "Risposta da inviare al processo."
+ },
+ "vs/workbench/contrib/terminalContrib/chat/browser/terminal.initialHint.contribution": {
+ "disableHint": " Attiva/disattiva {0} nelle impostazioni per disabilitare questo hint.",
+ "disableInitialHint": "Disabilita suggerimento iniziale",
+ "emptyHintText": "Aprire la chat {0}. ",
+ "hintTextDismiss": "Inizia a digitare per ignorare.",
+ "inlineChatHint": "[[Aprire la chat]] o iniziare a digitare per ignorare."
+ },
+ "vs/workbench/contrib/terminalContrib/chat/browser/terminalChat": {
+ "chatAgentRegisteredContextKey": "Indica se un agente di chat è registrato per la posizione del terminale.",
+ "chatFocusedContextKey": "Indica se la visualizzazione della chat è attiva.",
+ "chatInputHasTextContextKey": "Se l'input chat contiene del testo.",
+ "chatRequestActiveContextKey": "Indica se è presente una richiesta di chat attiva.",
+ "chatResponseContainsCodeBlockContextKey": "Indica se la risposta della chat contiene un blocco di codice.",
+ "chatResponseContainsMultipleCodeBlocksContextKey": "Indica se la risposta della chat contiene più blocchi di codice.",
+ "chatVisibleContextKey": "Indica se la visualizzazione chat è visibile.",
+ "terminalHasChatTerminals": "Indica se sono presenti terminali chat.",
+ "terminalHasHiddenChatTerminals": "Indica se sono presenti terminali chat nascosti."
+ },
+ "vs/workbench/contrib/terminalContrib/chat/browser/terminalChatAccessibilityHelp": {
+ "chat.signals": "I segnali di accessibilità possono essere modificati tramite le impostazioni con un prefisso signals.chat. Per impostazione predefinita, se una richiesta richiede più di 4 secondi, si sentirà un suono che indica che l'avanzamento è ancora in corso.",
+ "inlineChat.access": "Può essere attivato usando il comando Terminale: Avvia chat ({0}), che attiverà la casella di input.",
+ "inlineChat.focusInput": "Raggiungi la casella di input dalla risposta ({0}).",
+ "inlineChat.focusInputNoKb": "Raggiungi la risposta dalla casella di input tramite MAIUSC+tabulazione o assegnazione di un tasto di scelta rapida per il comando: input del terminale su stato attivo.",
+ "inlineChat.focusResponse": "Raggiungi la risposta dalla casella di input ({0}).",
+ "inlineChat.focusResponseNoKb": "Raggiungi la risposta dalla casella di input tramite tabulazione o assegnazione di un tasto di scelta rapida per il comando: risposta del terminale su stato attivo.",
+ "inlineChat.input": "La casella di input indica il punto in cui l'utente può digitare una richiesta e può effettuare la richiesta ({0}). Quando viene premuto il tasto ESC, il widget verrà chiuso e tutto il contenuto verrà rimosso, e il terminale acquisirà nuovamente lo stato attivo.",
+ "inlineChat.inputNoKb": "La casella di input consente all'utente di digitare una richiesta e di effettuare la richiesta tramite tabulazione sul pulsante Crea richiesta, che non è attualmente attivabile tramite tasti di scelta rapida. Quando viene premuto il tasto ESC, il widget verrà chiuso e tutto il contenuto verrà rimosso, e il terminale acquisirà nuovamente lo stato attivo.",
+ "inlineChat.insertCommand": "Con lo stato attivo nell'editor dei comandi della casella di input, l'azione Terminale: Inserisci comando chat ({0}).",
+ "inlineChat.insertCommandNoKb": "Inserisci un comando tramite tabulazione sul pulsante perché l'azione non è attualmente attivabile da un tasto di scelta rapida.",
+ "inlineChat.inspectResponseMessage": "La risposta può essere ispezionata nella visualizzazione accessibile ({0}).",
+ "inlineChat.inspectResponseNoKb": "Con la casella di input evidenziata, controllare la risposta nella visualizzazione accessibile tramite il comando Apri visualizzazione accessibile, che non è attualmente attivabile da un tasto di scelta rapida.",
+ "inlineChat.overview": "La chat inline si verifica all'interno di un terminale. È utile per suggerire comandi del terminale. Tenere presente che il codice generato dall'intelligenza artificiale potrebbe essere errato.",
+ "inlineChat.runCommand": "Con lo stato attivo nella casella di input o nell'editor di comandi, l'azione Terminale: Esegui comando chat ({0}).",
+ "inlineChat.runCommandNoKb": "Esegui un comando tramite tabulazione sul pulsante perché l'azione non è attualmente attivabile da un tasto di scelta rapida.",
+ "inlineChat.toolbar": "Usare TAB per raggiungere parti condizionali come comandi, stato, risposte ai messaggi e altro ancora."
+ },
+ "vs/workbench/contrib/terminalContrib/chat/browser/terminalChatActions": {
+ "chat.rerun.label": "Esegui di nuovo la richiesta",
+ "chatTerminal.lastCommand": "Ultima: {0}",
+ "closeChat": "Chiudi",
+ "insert": "Inserisci",
+ "insertCommand": "Inserisci comando chat",
+ "insertFirst": "Inserisci per primo",
+ "insertFirstCommand": "Inserisci per primo comando chat",
+ "run": "Esegui",
+ "runCommand": "Esegui comando chat",
+ "runFirst": "Esegui per primo",
+ "runFirstCommand": "Esegui primo comando chat",
+ "selectChatTerminal": "Selezionare un terminale chat da mostrare e mettere a fuoco",
+ "showChatTerminals.title": "Terminali chat",
+ "startChat": "Apri chat in linea",
+ "terminalCategory": "Terminale",
+ "terminalCategory2": "Terminale",
+ "viewHiddenChatTerminals": "Visualizza terminali chat nascosti",
+ "viewInChat": "Visualizza nella chat"
+ },
+ "vs/workbench/contrib/terminalContrib/chat/browser/terminalChatWidget": {
+ "askAboutCommands": "Chiedi informazioni sui comandi"
+ },
+ "vs/workbench/contrib/terminalContrib/chat/common/terminalInitialHintConfiguration": {
+ "terminal.integrated.initialHint": "Controlla se il primo terminale senza input mostrerà un suggerimento sulle azioni disponibili quando è attivo."
+ },
+ "vs/workbench/contrib/terminalContrib/chatAgentTools/browser/runInTerminalHelpers": {
+ "allowSession": "Consentire tutti i comandi in questa sessione",
+ "allowSessionTooltip": "Consenti l'esecuzione senza conferma di questo strumento in questa sessione.",
+ "autoApprove.baseCommand": "Consenti sempre comandi: {0}",
+ "autoApprove.baseCommandSingle": "Consenti sempre comando: {0}",
+ "autoApprove.configure": "Configura approvazione automatica...",
+ "autoApprove.exactCommand": "Consenti sempre riga di comando esatta"
+ },
+ "vs/workbench/contrib/terminalContrib/chatAgentTools/browser/terminal.chatAgentTools.contribution": {
+ "addTerminalSelection": "Aggiungi selezione terminale alla chat",
+ "terminalSelection": "Selezione terminale",
+ "toolset.shell": "Run commands in the terminal"
+ },
+ "vs/workbench/contrib/terminalContrib/chatAgentTools/browser/tools/commandLineAnalyzer/commandLineAutoApproveAnalyzer": {
+ "autoApprove.global": "Approvato automaticamente dall'impostazione {0}",
+ "autoApprove.rule": "Approvato automaticamente dalla regola {0}",
+ "autoApprove.rules": "Approvato automaticamente dalle regole {0}",
+ "autoApprove.session": "Approvato automaticamente per questa sessione",
+ "autoApprove.session.disable": "Disabilita",
+ "autoApproveDenied.rule": "Approvazione automatica negata dalla regola {0}",
+ "autoApproveDenied.rules": "Approvazione automatica negata dalle regole {0}",
+ "ruleTooltip": "Visualizza regola nelle impostazioni",
+ "ruleTooltip.global": "Visualizza impostazioni",
+ "runInTerminal.promptInjectionDisclaimer": "Il contenuto Web può contenere codice dannoso o tentare attacchi del tipo prompt injection."
+ },
+ "vs/workbench/contrib/terminalContrib/chatAgentTools/browser/tools/commandLineAnalyzer/commandLineFileWriteAnalyzer": {
+ "runInTerminal.fileWriteBlockedDisclaimer": "Rilevate operazioni di scrittura su file che non possono essere approvate automaticamente: {0}",
+ "runInTerminal.fileWriteDisclaimer": "Operazioni di scrittura di file rilevate: {0}"
+ },
+ "vs/workbench/contrib/terminalContrib/chatAgentTools/browser/tools/getTerminalLastCommandTool": {
+ "getTerminalLastCommand.past": "È stato ottenuto l'ultimo comando del terminale",
+ "getTerminalLastCommand.progressive": "Acquisizione dell'ultimo comando del terminale",
+ "terminalLastCommandTool.displayName": "Ottieni l'ultimo comando del terminale"
+ },
+ "vs/workbench/contrib/terminalContrib/chatAgentTools/browser/tools/getTerminalOutputTool": {
+ "bg.past": "Output del terminale in background controllato",
+ "bg.progressive": "Controllo dell'output del terminale in background",
+ "getTerminalOutputTool.displayName": "Ottieni l'output del terminale"
+ },
+ "vs/workbench/contrib/terminalContrib/chatAgentTools/browser/tools/getTerminalSelectionTool": {
+ "getTerminalSelection.past": "Leggi selezione terminale",
+ "getTerminalSelection.progressive": "Lettura selezione terminale",
+ "terminalSelectionTool.displayName": "Ottieni selezione terminale"
+ },
+ "vs/workbench/contrib/terminalContrib/chatAgentTools/browser/tools/monitoring/outputMonitor": {
+ "poll.terminal.accept": "Sì",
+ "poll.terminal.acceptRun": "Consenti",
+ "poll.terminal.confirmRequired": "Il terminale è in attesa di input.",
+ "poll.terminal.confirmRunDetail": "{0}\r\n Inviare '{1}'{2} seguito da 'INVIO' al terminale?",
+ "poll.terminal.enterInput": "Stato attivo sul terminale",
+ "poll.terminal.inputRequest": "Il terminale è in attesa di input.",
+ "poll.terminal.polling": "In tal modo si continuerà a controllare l'output per determinare quando il terminale diventa inattivo per un massimo di 2 minuti.",
+ "poll.terminal.reject": "No",
+ "poll.terminal.rejectRun": "Stato attivo su terminale",
+ "poll.terminal.requireInput": "{0}\r\nFornire l'input richiesto nel terminale.\r\n\r\n",
+ "poll.terminal.waiting": "Continuare ad attendere '{0}'?"
+ },
+ "vs/workbench/contrib/terminalContrib/chatAgentTools/browser/tools/runInTerminalConfirmationTool": {
+ "confirmTerminalCommandTool.displayName": "Conferma comando terminale",
+ "confirmTerminalCommandTool.userDescription": "Strumento per confermare i comandi del terminale"
+ },
+ "vs/workbench/contrib/terminalContrib/chatAgentTools/browser/tools/runInTerminalTool": {
+ "runInTerminal": "Eseguire il comando '{0}'?",
+ "runInTerminal.background": "Eseguire il comando '{0}'? (terminale in background)",
+ "runInTerminalTool.displayName": "Esegui nel terminale",
+ "runInTerminalTool.userDescription": "Run commands in the terminal"
+ },
+ "vs/workbench/contrib/terminalContrib/chatAgentTools/browser/tools/task/createAndRunTaskTool": {
+ "allowTaskCreationExecution": "Consentire la creazione e l'esecuzione di attività?",
+ "alreadyRunning": "L'attività '{0}' è già in esecuzione.",
+ "copilotChat.fetchingTask": "Risoluzione dell'attività",
+ "copilotChat.noTerminal": "L'attività è stata avviata ma non è stato trovato alcun terminale per: `{0}`",
+ "copilotChat.runningTask": "L'attività '{0}' è in esecuzione",
+ "copilotChat.taskNotFound": "Attività non trovata: `{0}`",
+ "createAndRunTask.displayName": "Creare ed eseguire un'attività",
+ "createAndRunTask.userDescription": "Crea ed esegui un'attività nell'area di lavoro",
+ "createTask": "Verrà creata un'attività \"{0}\" con il comando \"{1}\"{2}.",
+ "createdTask": "L'attività '{0}' è stata creata",
+ "createdTaskPast": "L'attività '{0}' è stata creata",
+ "taskExists": "L'attività \"{0}\" esiste già.",
+ "taskExistsPast": "L'attività \"{0}\" esiste già."
+ },
+ "vs/workbench/contrib/terminalContrib/chatAgentTools/browser/tools/task/getTaskOutputTool": {
+ "copilotChat.checkedTerminalOutput": "Output controllato per l'attività '{0}'",
+ "copilotChat.checkingTerminalOutput": "Controllo dell'output per l'attività '{0}' in corso...",
+ "copilotChat.taskAlreadyRunning": "L'attività `{0}` è già in esecuzione.",
+ "copilotChat.taskNotFound": "Attività non trovata: `{0}`",
+ "copilotChat.terminalNotFound": "Terminale non trovato per l'attività `{0}`",
+ "getTaskOutputTool.displayName": "Ottieni output attività"
+ },
+ "vs/workbench/contrib/terminalContrib/chatAgentTools/browser/tools/task/runTaskTool": {
+ "chat.allowTaskRunMsg": "Consentire l'esecuzione dell'attività \"{0}\"?",
+ "chat.allowTaskRunTitle": "Consentire l'esecuzione dell'attività?",
+ "chat.noTerminal": "L'attività è stata avviata ma non è stato trovato alcun terminale per: `{0}`",
+ "chat.ranTask": "\"{0}\" eseguita",
+ "chat.runningTask": "Esecuzione di \"{0}\"",
+ "chat.startedTask": "\"{0}\" avviata",
+ "chat.taskAlreadyActive": "L'attività è già in esecuzione.",
+ "chat.taskAlreadyRunning": "L'attività `{0}` è già in esecuzione.",
+ "chat.taskIsAlreadyRunning": "`{0}` è già in esecuzione.",
+ "chat.taskNotFound": "Attività non trovata: `{0}`",
+ "chat.taskWasAlreadyRunning": "`{0}` era già in esecuzione.",
+ "runInTerminalTool.displayName": "Esegui attività",
+ "runInTerminalTool.userDescription": "Run tasks in the workspace"
+ },
+ "vs/workbench/contrib/terminalContrib/chatAgentTools/browser/tools/task/taskHelpers": {
+ "copilotChat.taskFailedWithExitCode": "Attività '{0}' non riuscita con codice di uscita {1}."
+ },
+ "vs/workbench/contrib/terminalContrib/chatAgentTools/common/terminalChatAgentToolsConfiguration": {
+ "autoApprove.defaults": "Tenere presente che esiste un set predefinito di regole per consentire e rifiutare i comandi. Valutare di impostare {0} su {1} per ignorare tutte le regole predefinite e assicurarsi che non siano presenti conflitti con le regole personalizzate. Procedere con cautela: le regole di rifiuto predefinite sono pensate per proteggere gli utenti dall'esecuzione di comandi pericolosi.",
+ "autoApprove.deprecated": "Usare invece {0}",
+ "autoApprove.description.commandLine": "È possibile usare un oggetto per effettuare la corrispondenza con la riga di comando completa invece dei comandi secondari e inline corrispondenti, ad esempio {0}. Per ottenere l'approvazione automatica, sia il sottocomando che la riga di comando non devono essere esplicitamente negati;è quindi necessario che siano approvati tutti i sottocomandi o la riga di comando.",
+ "autoApprove.description.examples.binTest": "Consenti tutti i comandi che corrispondono al percorso {0} ({1}, {2} ecc.)",
+ "autoApprove.description.examples.description": "Descrizione",
+ "autoApprove.description.examples.mkdir": "Consenti tutti i comandi che iniziano con {0}",
+ "autoApprove.description.examples.npmRunBuild": "Consenti tutti i comandi che iniziano con {0}",
+ "autoApprove.description.examples.ps1": "Richiedi l'approvazione esplicita per qualsiasi _command line_ che contiene {0} indipendentemente dalla combinazione di maiuscole e minuscole",
+ "autoApprove.description.examples.regexAll": "Consenti tutti i comandi (i comandi negati richiedono comunque l'approvazione)",
+ "autoApprove.description.examples.regexCase": "consentirà {0} comandi indipendentemente dalla combinazione di maiuscole e minuscole",
+ "autoApprove.description.examples.regexGit": "Consenti {0} e tutti i comandi che iniziano con {1}",
+ "autoApprove.description.examples.rm": "Richiedi l'approvazione esplicita per tutti i comandi a partire da {0}",
+ "autoApprove.description.examples.rmUnset": "Annulla il valore predefinito {0} per {1}",
+ "autoApprove.description.examples.title": "Esempi:",
+ "autoApprove.description.examples.value": "Valore",
+ "autoApprove.description.intro": "Elenco di comandi o espressioni regolari che consentono di verificare se l'esecuzione dei comandi dello strumento terminale richiede un'approvazione esplicita. Verranno confrontati con l'inizio di un comando. È possibile specificare un'espressione regolare racchiudendo la stringa tra {0} caratteri seguiti da eventuali flag facoltativi, come {1} per la distinzione tra maiuscole e minuscole.",
+ "autoApprove.description.subCommands": "Tenere presente che questi comandi ed espressioni regolari vengono valutati per ogni _sub-command_ all'interno di una _command line_ completa, quindi {0}, ad esempio, richiederà che sia {1} sia {2} corrispondano a una voce {3} e non corrispondano a una voce {4} per essere approvati automaticamente. Anche i comandi inline, come {5} (sostituzione processo) devono essere rilevati.",
+ "autoApprove.description.values": "Imposta su {0} per approvare automaticamente i comandi, su {1} per richiedere sempre l'approvazione esplicita o su {2} per rimuovere il valore impostato.",
+ "autoApprove.false": "Richiedere l'approvazione esplicita per il criterio.",
+ "autoApprove.key": "L'inizio di un comando con cui effettuare una corrispondenza. È possibile specificare un'espressione regolare racchiudendo la stringa tra caratteri '/'.",
+ "autoApprove.matchCommandLine": "Indica se effettuare la corrispondenza con la riga di comando completa, anziché suddividere in comandi secondari e comandi inline.",
+ "autoApprove.matchCommandLine.false": "Confronta i comandi secondari e i comandi inline, ad esempio, 'foo && bar' dovrà corrispondere sia a 'foo' sia a 'bar'.",
+ "autoApprove.matchCommandLine.true": "Trova la corrispondenza con la riga di comando completa, ad esempio 'foo && bar'.",
+ "autoApprove.null": "Ignorare il criterio: è utile per annullare l'impostazione dello stesso criterio definito in un ambito superiore.",
+ "autoApprove.true": "Approvare automaticamente il criterio.",
+ "autoApproveMode.description": "Controlla se consentire l'approvazione automatica nell'esecuzione dello strumento terminale.",
+ "autoReplyToPrompts.key": "Indica se rispondere automaticamente alle richieste nel terminale, come \"Conferma? s/n\". Si tratta di una funzionalità sperimentale e potrebbe non funzionare in tutti gli scenari.",
+ "blockFileWrites.all": "Bloccare tutte le scritture di file rilevate.",
+ "blockFileWrites.description": "Controllare se le operazioni di scrittura su file rilevate vengono bloccate nello strumento di esecuzione nel terminale. Quando rilevate, sarà necessaria un'approvazione esplicita, indipendentemente dal fatto che il comando venga normalmente approvato automaticamente. Tenere presente che non è possibile rilevare tutti i metodi possibili di scrittura dei file; attualmente viene rilevato quanto segue:\r\n\r\n- Reindirizzamento file (rilevato tramite la grammatica bash o il parser ad albero di PowerShell)",
+ "blockFileWrites.never": "Consentire tutte le scritture di file rilevate.",
+ "blockFileWrites.outsideWorkspace": "Bloccare le scritture di file rilevate al di fuori dell'area di lavoro. Questo dipende dal corretto funzionamento della funzionalità di integrazione della shell per determinare la directory di lavoro corrente del terminale.",
+ "ignoreDefaultAutoApproveRules.description": "Indica se ignorare le regole di approvazione automatica predefinite integrate usate dallo strumento di esecuzione nel terminale come definite in {0}. Quando questa impostazione è attivata, lo strumento di esecuzione nel terminale ignorerà tutte le regole provenienti dal set predefinito, ma continuerà a rispettare le regole definite nelle impostazioni utente, remote e dell'area di lavoro. Usare questa impostazione con cautela: le regole di approvazione automatica predefinite sono pensate per proteggere gli utenti dall'esecuzione di comandi pericolosi.",
+ "outputLocation.description": "Indica se mostrare l'output della sessione di esecuzione nello strumento terminale.",
+ "outputLocation.none": "Non mostrare automaticamente il terminale.",
+ "outputLocation.terminal": "Mostrare il terminale durante l'esecuzione del comando.",
+ "shellIntegrationTimeout.deprecated": "Usare invece {0}",
+ "shellIntegrationTimeout.description": "Configura la durata in millisecondi dell'attesa per il rilevamento dell'integrazione della shell quando l'esecuzione nello strumento del terminale avvia un nuovo terminale. Imposta su '0' per attendere il tempo minimo; il valore predefinito '-1' indica che il tempo di attesa è variabile in base al valore di {0} e se è una finestra remota. Un valore elevato può essere utile se la shell inizia molto lentamente e un valore basso se non si usa intenzionalmente l'integrazione della shell.",
+ "terminalChatAgentProfile.linux": "Profilo del terminale da usare su Linux per l'esecuzione dell'agente chat nello strumento terminale.",
+ "terminalChatAgentProfile.osx": "Profilo del terminale da usare su macOS per l'esecuzione dell'agente chat nello strumento terminale.",
+ "terminalChatAgentProfile.path": "Percorso di un eseguibile della shell.",
+ "terminalChatAgentProfile.windows": "Profilo del terminale da usare su Windows per l'esecuzione dell'agente chat nello strumento terminale."
+ },
+ "vs/workbench/contrib/terminalContrib/clipboard/browser/terminal.clipboard.contribution": {
+ "workbench.action.terminal.copyAndClearSelection": "Copiare e cancellare selezione",
+ "workbench.action.terminal.copyLastCommand": "Copia ultimo comando",
+ "workbench.action.terminal.copyLastCommandAndOutput": "Copia ultimo comando e output",
+ "workbench.action.terminal.copyLastCommandOutput": "Copia l'output dell'ultimo comando",
+ "workbench.action.terminal.copySelection": "Copia selezione",
+ "workbench.action.terminal.copySelectionAsHtml": "Copia selezione come HTML",
+ "workbench.action.terminal.paste": "Incolla nel terminale attivo",
+ "workbench.action.terminal.pasteSelection": "Incolla selezione nel terminale attivo"
+ },
+ "vs/workbench/contrib/terminalContrib/clipboard/browser/terminalClipboard": {
+ "confirmMoveTrashMessageFilesAndDirectories": "Incollare {0} righe di testo nel terminale?",
+ "doNotAskAgain": "Non visualizzare più questo messaggio",
+ "multiLinePasteButton": "&&Incolla",
+ "multiLinePasteButton.oneLine": "Incolla come &&>una riga",
+ "preview": "Anteprima:"
+ },
+ "vs/workbench/contrib/terminalContrib/commandGuide/browser/terminal.commandGuide.contribution": {
+ "terminalCommandGuide.foreground": "Colore in primo piano nella guida dei comandi del terminale visualizzata a sinistra di un comando e relativo output al passaggio del puntatore del mouse."
+ },
+ "vs/workbench/contrib/terminalContrib/commandGuide/common/terminalCommandGuideConfiguration": {
+ "showCommandGuide": "Indica se visualizzare la guida dei comandi al passaggio del puntatore del mouse su un comando nel terminale."
+ },
+ "vs/workbench/contrib/terminalContrib/developer/browser/terminal.developer.contribution": {
+ "workbench.action.terminal.recordSession": "Registra sessione terminale",
+ "workbench.action.terminal.recordSession.recording": "Registrazione della sessione del terminale in corso...",
+ "workbench.action.terminal.restartPtyHost": "Riavvia Pty Host",
+ "workbench.action.terminal.showTextureAtlas": "Mostra atlante texture del terminale",
+ "workbench.action.terminal.writeDataToTerminal": "Scrivere i dati sul terminale",
+ "workbench.action.terminal.writeDataToTerminal.prompt": "Immettere i dati da scrivere direttamente sul terminale, ignorando il pty"
+ },
+ "vs/workbench/contrib/terminalContrib/environmentChanges/browser/terminal.environmentChanges.contribution": {
+ "ScopedEnvironmentContributionInfo": "Area di lavoro",
+ "envChanges": "Modifiche all'ambiente del terminale",
+ "extension": "Estensione: {0}",
+ "workbench.action.terminal.showEnvironmentContributions": "Mostra contributi ambiente"
+ },
+ "vs/workbench/contrib/terminalContrib/find/browser/terminal.find.contribution": {
+ "workbench.action.terminal.findNext": "Trova successivo",
+ "workbench.action.terminal.findPrevious": "Trova precedente",
+ "workbench.action.terminal.focusFind": "Sposta stato attivo su Trova",
+ "workbench.action.terminal.hideFind": "Nascondi Trova",
+ "workbench.action.terminal.searchWorkspace": "Cerca nell'area di lavoro",
+ "workbench.action.terminal.toggleFindCaseSensitive": "Attiva/Disattiva ricerca con distinzione tra maiuscole e minuscole",
+ "workbench.action.terminal.toggleFindRegex": "Attiva/Disattiva ricerca con espressioni regex",
+ "workbench.action.terminal.toggleFindWholeWord": "Attiva/Disattiva ricerca con parole intere"
+ },
+ "vs/workbench/contrib/terminalContrib/history/browser/terminal.history.contribution": {
+ "goToRecentDirectory.metadata": "Passa a una cartella recente",
+ "workbench.action.terminal.clearPreviousSessionHistory": "Cancella cronologia sessioni precedenti",
+ "workbench.action.terminal.goToRecentDirectory": "Vai alla directory recente...",
+ "workbench.action.terminal.runRecentCommand": "Esegui comando recente..."
+ },
+ "vs/workbench/contrib/terminalContrib/history/browser/terminalRunRecentQuickPick": {
+ "openShellHistoryFile": "Apri file",
+ "removeCommand": "Rimuovi dalla cronologia dei comandi",
+ "selectRecentCommand": "Selezionare un comando da eseguire (tenere premuto ALT per modificare il comando)",
+ "selectRecentCommandMac": "Selezionare un comando da eseguire (tenere premuto il tasto Opzione per modificare il comando)",
+ "selectRecentDirectory": "Selezionare una directory in cui andare (tenere premuto ALT per modificare il comando)",
+ "selectRecentDirectoryMac": "Selezionare una directory in cui andare (tenere premuto il tasto Opzione per modificare il comando)",
+ "shellFileHistoryCategory": "Cronologia {0}",
+ "viewCommandOutput": "Visualizza output comando"
+ },
+ "vs/workbench/contrib/terminalContrib/history/common/terminal.history": {
+ "terminal.integrated.shellIntegration.history": "Controlla il numero di comandi utilizzati di recente da mantenere nella cronologia dei comandi del terminale. Impostare a 0 per disabilitare la cronologia dei comandi del terminale."
+ },
+ "vs/workbench/contrib/terminalContrib/links/browser/terminal.links.contribution": {
+ "workbench.action.terminal.openDetectedLink": "Aprire collegamento rilevato",
+ "workbench.action.terminal.openLastLocalFileLink": "Apri collegamento ultimo file locale",
+ "workbench.action.terminal.openLastUrlLink": "Apri collegamento all'ultimo URL",
+ "workbench.action.terminal.openLastUrlLink.description": "Apre l'ultimo URL/collegamento URI rilevato nel terminale"
+ },
+ "vs/workbench/contrib/terminalContrib/links/browser/terminalLinkDetectorAdapter": {
+ "focusFolder": "Sposta lo stato attivo sulla cartella in Esplora risorse",
+ "followLink": "Segui il collegamento",
+ "openFile": "Apri file nell'editor",
+ "openFolder": "Apri cartella in una nuova finestra",
+ "searchWorkspace": "Cerca nell'area di lavoro"
+ },
+ "vs/workbench/contrib/terminalContrib/links/browser/terminalLinkManager": {
+ "allow": "Consenti {0}",
+ "followForwardedLink": "Segui il collegamento usando la porta inoltrata",
+ "followLink": "Segui il collegamento",
+ "followLinkUrl": "Collegamento",
+ "scheme": "L'apertura degli URI può non essere sicura. Consentire l'apertura di collegamenti con lo schema {0}?",
+ "terminalLinkHandler.followLinkAlt": "ALT+clic",
+ "terminalLinkHandler.followLinkAlt.mac": "Opzione+clic",
+ "terminalLinkHandler.followLinkCmd": "CMD+clic",
+ "terminalLinkHandler.followLinkCtrl": "CTRL+clic"
+ },
+ "vs/workbench/contrib/terminalContrib/links/browser/terminalLinkQuickpick": {
+ "terminal.integrated.localFileLinks": "File",
+ "terminal.integrated.localFolderLinks": "Cartella",
+ "terminal.integrated.openDetectedLink": "Selezionare il collegamento da aprire, digitare per filtrare tutti i collegamenti",
+ "terminal.integrated.searchLinks": "Ricerca area di lavoro",
+ "terminal.integrated.urlLinks": "Url"
+ },
+ "vs/workbench/contrib/terminalContrib/quickAccess/browser/terminal.quickAccess.contribution": {
+ "quickAccessTerminal": "Cambia terminale attivo",
+ "tasksQuickAccessHelp": "Mostra tutti i terminali aperti",
+ "tasksQuickAccessPlaceholder": "Digitare il nome di un terminale da aprire."
+ },
+ "vs/workbench/contrib/terminalContrib/quickAccess/browser/terminalQuickAccess": {
+ "renameTerminal": "Rinomina terminale",
+ "workbench.action.terminal.newWithProfilePlus": "Crea nuovo terminale con profilo...",
+ "workbench.action.terminal.newplus": "Crea nuovo terminale"
+ },
+ "vs/workbench/contrib/terminalContrib/quickFix/browser/quickFixAddon": {
+ "codeAction.widget.id.quickfix": "Correzione rapida",
+ "quickFix.command": "Esegui: {0}",
+ "quickFix.opener": "Apri: {0}"
+ },
+ "vs/workbench/contrib/terminalContrib/quickFix/browser/terminal.quickFix.contribution": {
+ "workbench.action.terminal.showQuickFixes": "Mostrare correzioni rapide terminale"
+ },
+ "vs/workbench/contrib/terminalContrib/quickFix/browser/terminalQuickFixBuiltinActions": {
+ "terminal.createPR": "Crea richiesta pull {0}",
+ "terminal.freePort": "Porta disponibile {0}"
+ },
+ "vs/workbench/contrib/terminalContrib/quickFix/browser/terminalQuickFixService": {
+ "vscode.extension.contributes.terminalQuickFixes": "Aggiunge come contributo soluzioni rapide del terminale.",
+ "vscode.extension.contributes.terminalQuickFixes.commandExitResult": "Risultato di uscita del comando per cui trovare una corrispondenza",
+ "vscode.extension.contributes.terminalQuickFixes.commandLineMatcher": "Espressione regolare o stringa su cui testare la riga di comando",
+ "vscode.extension.contributes.terminalQuickFixes.id": "ID del provider di correzione rapida",
+ "vscode.extension.contributes.terminalQuickFixes.kind": "Tipo di correzione rapida risultante. In questo modo viene modificata la modalità di presentazione della correzione rapida. L'impostazione predefinita è {0}.",
+ "vscode.extension.contributes.terminalQuickFixes.outputMatcher": "Espressione regolare o stringa con cui trovare una corrispondenza con una singola riga dell'output, che fornisce i gruppi a cui fare riferimento in terminalCommand e uri.\r\n\r\n Ad esempio:\r\n\r\n 'lineMatcher: /git push --set-upstream origin (?[^s]+)/;'\r\n\r\nterminalCommand: 'git push --set-upstream origin ${group:branchName}';'\r\n"
+ },
+ "vs/workbench/contrib/terminalContrib/sendSequence/browser/terminal.sendSequence.contribution": {
+ "sendSequence": "Invia sequenza",
+ "sendSequence.text.desc": "Sequenza di testo da inviare al terminale",
+ "workbench.action.terminal.sendSequence.prompt": "Immettere la sequenza da inviare al terminale"
+ },
+ "vs/workbench/contrib/terminalContrib/sendSignal/browser/terminal.sendSignal.contribution": {
+ "SIGCONT": "Continua processo",
+ "SIGHUP": "Interrompi",
+ "SIGINT": "Interrompi processo (Ctrl+C)",
+ "SIGKILL": "Forza terminazione del processo",
+ "SIGQUIT": "Esci dal processo",
+ "SIGSTOP": "Arresta processo",
+ "SIGTERM": "Terminare il processo normalmente",
+ "SIGUSR1": "Segnale definito dall'utente 1",
+ "SIGUSR2": "Segnale definito dall'utente 2",
+ "enterSignal": "Immettere il nome del segnale (ad esempio, SIGTERM, SIGKILL)",
+ "manualSignal": "Immettere il segnale manualmente",
+ "selectSignal": "Selezionare il segnale da inviare al processo del terminale",
+ "sendSignal": "Invia segnale",
+ "sendSignal.signal.desc": "Segnale da inviare al processo del terminale (ad esempio, 'SIGTERM', 'SIGINT', 'SIGKILL')"
+ },
+ "vs/workbench/contrib/terminalContrib/stickyScroll/browser/terminal.stickyScroll.contribution": {
+ "miStickyScroll": "&&Scorrimento permanente",
+ "stickyScroll": "Scorrimento permanente",
+ "workbench.action.terminal.toggleStickyScroll": "Attiva/disattiva scorrimento permanente"
+ },
+ "vs/workbench/contrib/terminalContrib/stickyScroll/browser/terminalStickyScrollColorRegistry": {
+ "terminalStickyScroll.background": "Colore di sfondo della sovrapposizione di scorrimento permanente nel terminale.",
+ "terminalStickyScroll.border": "Bordo della sovrimpressione di scorrimento permanente nel terminale.",
+ "terminalStickyScrollHover.background": "Colore di sfondo della sovrapposizione di scorrimento permanente nel terminale al passaggio del mouse."
+ },
+ "vs/workbench/contrib/terminalContrib/stickyScroll/browser/terminalStickyScrollOverlay": {
+ "labelWithKeybinding": "{0} ({1})",
+ "stickyScrollHoverTitle": "Passa a Comando"
+ },
+ "vs/workbench/contrib/terminalContrib/stickyScroll/common/terminalStickyScrollConfiguration": {
+ "stickyScroll.enabled": "Mostra il comando corrente nella parte superiore del terminale. Questa funzionalità richiede l'attivazione di [shell integration]({0}). Vedere {1}.",
+ "stickyScroll.maxLineCount": "Definisce il numero massimo di righe permanenti da mostrare. Le righe di scorrimento permanente non supereranno mai il 40% del riquadro di visualizzazione indipendentemente da questa impostazione."
+ },
+ "vs/workbench/contrib/terminalContrib/suggest/browser/terminal.suggest.contribution": {
+ "workbench.action.terminal.acceptSelectedSuggestion": "Inserisci",
+ "workbench.action.terminal.acceptSelectedSuggestionEnter": "Accetta i suggerimenti selezionati (INVIO)",
+ "workbench.action.terminal.configureSuggestSettings": "Configura",
+ "workbench.action.terminal.hideSuggestWidget": "Nascondi widget suggerimenti",
+ "workbench.action.terminal.hideSuggestWidgetAndNavigateHistory": "Nascondi il widget dei suggerimenti ed esplora la cronologia",
+ "workbench.action.terminal.learnMore": "Altre informazioni",
+ "workbench.action.terminal.resetSuggestWidgetSize": "Reimposta le dimensioni del widget dei suggerimenti",
+ "workbench.action.terminal.selectNextPageSuggestion": "Selezionare il suggerimento per la pagina successiva",
+ "workbench.action.terminal.selectNextSuggestion": "Seleziona il suggerimento successivo",
+ "workbench.action.terminal.selectPrevPageSuggestion": "Seleziona il suggerimento per pagina precedente",
+ "workbench.action.terminal.selectPrevSuggestion": "Seleziona il suggerimento precedente",
+ "workbench.action.terminal.suggestToggleDetails": "Suggerisci/Nascondi dettagli",
+ "workbench.action.terminal.suggestToggleDetailsFocus": "Suggerisci Attiva/Disattiva stato attivo per i suggerimenti",
+ "workbench.action.terminal.suggestToggleExplainMode": "Suggerisci/Nascondi modalità esplicativa",
+ "workbench.action.terminal.triggerSuggest": "Attiva suggerimento"
+ },
+ "vs/workbench/contrib/terminalContrib/suggest/browser/terminalSuggestAddon": {
+ "alias": "Alias",
+ "argument": "Argomento",
+ "branch": "Ramo",
+ "commit": "Commit",
+ "file": "File",
+ "flag": "Flag",
+ "folder": "Cartella",
+ "inlineSuggestion": "Suggerimento inline",
+ "inlineSuggestionAlwaysOnTop": "Suggerimento inline",
+ "method": "Metodo",
+ "option": "Opzione",
+ "optionValue": "Valore dell'opzione",
+ "pullRequest": "Richiesta pull",
+ "pullRequestDone": "Richiesta pull (completata)",
+ "remote": "Elemento remoto",
+ "stash": "Accantona",
+ "symbolicLinkFile": "File SYLK",
+ "symbolicLinkFolder": "Cartella di collegamento simbolico",
+ "tag": "Tag"
+ },
+ "vs/workbench/contrib/terminalContrib/suggest/browser/terminalSymbolIcons": {
+ "terminalSymbolAliasIcon": "Icona per gli alias nel widget di suggerimenti del terminale.",
+ "terminalSymbolArgumentIcon": "Icona per gli argomenti nel widget di suggerimenti del terminale.",
+ "terminalSymbolBranchIcon": "Icona per i rami nel widget di suggerimenti del terminale.",
+ "terminalSymbolCommitIcon": "Icona per i commit nel widget di suggerimenti del terminale.",
+ "terminalSymbolFileIcon": "Icona per i file nel widget di suggerimenti del terminale.",
+ "terminalSymbolFlagIcon": "Icona per i flag nel widget di suggerimenti del terminale.",
+ "terminalSymbolFolderIcon": "Icona per le cartelle nel widget di suggerimenti del terminale.",
+ "terminalSymbolIcon.aliasForeground": "Colore primo piano per un'icona alias. Queste icone appariranno nel widget dei suggerimenti del terminale.",
+ "terminalSymbolIcon.argumentForeground": "Il colore primo piano per un'icona argomento. Queste icone appariranno nel widget dei suggerimenti del terminale.",
+ "terminalSymbolIcon.branchForeground": "Il colore primo piano per l'icona di un ramo. Queste icone appariranno nel widget di suggerimenti del terminale.",
+ "terminalSymbolIcon.commitForeground": "Il colore primo piano per un'icona di commit. Queste icone appariranno nel widget di suggerimenti del terminale.",
+ "terminalSymbolIcon.enumMemberForeground": "Il colore primo piano per un'icona di membro enumerazione. Queste icone appariranno nel widget dei suggerimenti del terminale.",
+ "terminalSymbolIcon.fileForeground": "Il colore primo piano per un'icona file. Queste icone appariranno nel widget dei suggerimenti del terminale.",
+ "terminalSymbolIcon.flagForeground": "Colore primo piano per un'icona bandiera. Queste icone appariranno nel widget dei suggerimenti del terminale.",
+ "terminalSymbolIcon.folderForeground": "Il colore primo piano per un'icona cartella. Queste icone appariranno nel widget dei suggerimenti del terminale.",
+ "terminalSymbolIcon.inlineSuggestionForeground": "Il colore primo piano per un'icona di suggerimenti inline. Queste icone appariranno nel widget dei suggerimenti del terminale.",
+ "terminalSymbolIcon.methodForeground": "Il colore primo piano per un'icona metodo. Queste icone appariranno nel widget dei suggerimenti del terminale.",
+ "terminalSymbolIcon.optionForeground": "Il colore primo piano per un'icona opzione. Queste icone appariranno nel widget dei suggerimenti del terminale.",
+ "terminalSymbolIcon.pullRequestDoneForeground": "Colore primo piano per l'icona di una richiesta pull completata. Queste icone verranno visualizzate nel widget di suggerimenti del terminale.",
+ "terminalSymbolIcon.pullRequestForeground": "Colore primo piano per l'icona di una richiesta pull. Queste icone verranno visualizzate nel widget di suggerimenti del terminale.",
+ "terminalSymbolIcon.remoteForeground": "Il colore primo piano per un'icona di elemento remoto. Queste icone appariranno nel widget di suggerimenti del terminale.",
+ "terminalSymbolIcon.stashForeground": "Il colore primo piano per l'icona di un accantonamento. Queste icone appariranno nel widget di suggerimenti del terminale.",
+ "terminalSymbolIcon.symbolTextForeground": "Il colore primo piano per un suggerimento in testo non crittografato. Queste icone verranno visualizzate nel widget di suggerimenti del terminale.",
+ "terminalSymbolIcon.symbolicLinkFileForeground": "Colore primo piano per un'icona di cartella di file SYLK. Queste icone appariranno nel widget dei suggerimenti del terminale.",
+ "terminalSymbolIcon.symbolicLinkFolderForeground": "Colore primo piano per un'icona di cartella di collegamento simbolico. Queste icone appariranno nel widget dei suggerimenti del terminale.",
+ "terminalSymbolIcon.tagForeground": "Il colore primo piano per un'icona di tag. Queste icone appariranno nel widget di suggerimenti del terminale.",
+ "terminalSymbolInlineSuggestionIcon": "Icona per i suggerimenti in linea nel widget dei suggerimenti del terminale.",
+ "terminalSymbolMethodIcon": "Icona per i metodi nel widget di suggerimenti del terminale.",
+ "terminalSymbolOptionIcon": "Icona per le opzioni nel widget di suggerimenti del terminale.",
+ "terminalSymbolOptionValue": "Icona per i membri di enumerazione nel widget dei suggerimenti del terminale.",
+ "terminalSymbolPullRequestDoneIcon": "Icona per le richieste pull completate nel widget di suggerimenti del terminale.",
+ "terminalSymbolPullRequestIcon": "Icona per le richieste pull nel widget di suggerimenti del terminale.",
+ "terminalSymbolRemoteIcon": "Icona per gli elementi remoti nel widget di suggerimenti del terminale.",
+ "terminalSymbolStashIcon": "Icona per gli accantonamenti nel widget di suggerimenti del terminale.",
+ "terminalSymbolSymboTextIcon": "Icona per i suggerimenti in testo normale nel widget dei suggerimenti del terminale.",
+ "terminalSymbolSymbolicLinkFileIcon": "Icona per i file di collegamento simbolico nel widget di suggerimenti del terminale.",
+ "terminalSymbolSymbolicLinkFolderIcon": "Icona per le cartelle di collegamento simbolico nel widget di suggerimenti del terminale.",
+ "terminalSymbolTagIcon": "Icona per i tag nel widget di suggerimenti del terminale."
+ },
+ "vs/workbench/contrib/terminalContrib/suggest/common/terminalSuggestConfiguration": {
+ "runOnEnter.always": "Esegui sempre dopo \"INVIO\".",
+ "runOnEnter.exactMatch": "Esegui dopo \"INVIO\" se il suggerimento è stato digitato per intero.",
+ "runOnEnter.exactMatchIgnoreExtension": "Esegui dopo \"INVIO\" se il suggerimento è stato digitato per intero o se viene immesso il nome di un file senza l’estensione.",
+ "runOnEnter.never": "Non eseguire mai dopo \"INVIO\".",
+ "suggest.cdPath": "Controlla se abilitare $CDPATH supporto che espone gli elementi figlio delle cartelle nella variabile $CDPATH indipendentemente dalla directory di lavoro corrente. $CDPATH devono essere separati da punto e virgola in Windows e separati da due punti in altre piattaforme.",
+ "suggest.cdPath.absolute": "Abilitare la funzionalità e usare percorsi assoluti. Questa opzione è utile quando la shell non supporta in modo nativo '$CDPATH'.",
+ "suggest.cdPath.off": "Disabilita la funzionalità.",
+ "suggest.cdPath.relative": "Abilitare la funzionalità e usare percorsi relativi.",
+ "suggest.enabled": "Abilita i suggerimenti IntelliSense del terminale (anteprima) per le shell supportate ({0}) quando è impostato {1} su {2}.",
+ "suggest.inlineSuggestion": "Controlla se il suggerimento inline della shell deve essere rilevato e come ne viene eseguito l'punteggio.",
+ "suggest.inlineSuggestion.alwaysOnTop": "Abilita la funzionalità e aggiungi sempre il suggerimento inline all'inizio.",
+ "suggest.inlineSuggestion.alwaysOnTopExceptExactMatch": "Abilita la funzionalità e ordina il suggerimento inline senza forzarlo a essere in primo piano. Ciò significa che le corrispondenze esatte saranno superiori al suggerimento inline.",
+ "suggest.inlineSuggestion.off": "Disabilita la funzionalità.",
+ "suggest.insertTrailingSpace": "Controlla se viene inserito automaticamente uno spazio dopo aver accettato un suggerimento e se i suggerimenti vengono riattivati. Alle cartelle e alle cartelle di collegamenti simbolici non verrà mai aggiunto uno spazio finale.",
+ "suggest.provider.lsp.description": "Mostrare suggerimenti dai server di linguaggio.",
+ "suggest.provider.title": "Mostrare suggerimenti da {0}.",
+ "suggest.providers": "I provider sono abilitati per impostazione predefinita. Ometterli impostando l'ID del provider su 'false'.",
+ "suggest.providersEnabledByDefault": "Controlla quali suggerimenti vengono mostrati automaticamente durante la digitazione. I provider di suggerimenti sono abilitati per impostazione predefinita.",
+ "suggest.quickSuggestions": "Controlla se i suggerimenti devono essere visualizzati automaticamente durante la digitazione. Tenere anche conto dell'impostazione {0} che controlla se i suggerimenti vengono attivati dai caratteri speciali.",
+ "suggest.quickSuggestions.arguments": "Abilita i suggerimenti rapidi per gli argomenti, qualsiasi elemento dopo la prima parola in un input della riga di comando.",
+ "suggest.quickSuggestions.commands": "Abilita i suggerimenti rapidi per i comandi, la prima parola in un input della riga di comando.",
+ "suggest.quickSuggestions.unknown": "Abilita i suggerimenti rapidi quando non è chiaro qual è il suggerimento migliore, se si tratta di file e cartelle verranno suggeriti come fallback.",
+ "suggest.runOnEnter": "Controlla se i suggerimenti devono essere eseguiti immediatamente quando si preme \"INVIO\" (non il tasto \"TAB\") per accettare il risultato.",
+ "suggest.showStatusBar": "Controlla se visualizzare la barra di stato dei suggerimenti del terminale.",
+ "suggest.suggestOnTriggerCharacters": "Controlla se i suggerimenti devono essere visualizzati automaticamente durante la digitazione dei caratteri trigger.",
+ "suggest.upArrowNavigatesHistory": "Determina se il tasto freccia su consente di esplorare la cronologia dei comandi quando il focus è sul primo suggerimento e la navigazione non è ancora avvenuta. Se impostato su false, la freccia su sposterà il focus sull'ultimo suggerimento.",
+ "terminal.integrated.selectionMode": "È possibile controllare la modalità di funzionamento della selezione dei suggerimenti nel terminale integrato.",
+ "terminal.integrated.selectionMode.always": "Selezionare sempre un suggerimento quando si attiva automaticamente IntelliSense. È possibile usare \"INVIO\" o \"TAB\" per accettare il primo suggerimento.",
+ "terminal.integrated.selectionMode.never": "Non selezionare mai un suggerimento quando si attiva automaticamente IntelliSense. È necessario spostarsi nell'elenco tramite \"Giù\" prima di poter usare \"INVIO\" o \"TAB\" per accettare il suggerimento attivo.",
+ "terminal.integrated.selectionMode.partial": "Selezionare parzialmente un suggerimento quando si attiva automaticamente IntelliSense. È possibile usare \"TAB\" per accettare il primo suggerimento; solo dopo aver esplorato i suggerimenti tramite \"Giù\", sarà possibile usare \"INVIO\" per accettare anche il suggerimento attivo.",
+ "terminalSuggestProvidersConfigurationTitle": "Provider suggerimenti terminale",
+ "terminalWindowsExecutableSuggestionSetting": "Set di estensioni eseguibili dei comandi di Windows che verranno incluse come suggerimenti nel terminale.\r\n\r\nMolti eseguibili sono inclusi per impostazione predefinita, elencati di seguito:\r\n\r\n{0}.\r\n\r\nPer escludere un'estensione, impostarla su 'false'\r\n\r\n. Per includerne uno non nell'elenco, aggiungerlo e impostarlo su 'true'."
+ },
+ "vs/workbench/contrib/terminalContrib/typeAhead/common/terminalTypeAheadConfiguration": {
+ "terminal.integrated.localEchoEnabled": "Quando è necessario abilitare l'eco locale. Verrà eseguito l'override di {0}",
+ "terminal.integrated.localEchoEnabled.auto": "Abilitato solo per le aree di lavoro remote",
+ "terminal.integrated.localEchoEnabled.off": "Sempre disabilitato",
+ "terminal.integrated.localEchoEnabled.on": "Sempre abilitato",
+ "terminal.integrated.localEchoExcludePrograms": "L'eco locale verrà disabilitato quando uno di questi nomi di programma viene trovato nel titolo del terminale.",
+ "terminal.integrated.localEchoLatencyThreshold": "Durata del ritardo di rete, in millisecondi, in cui l'eco delle modifiche locali verrà visualizzato nel terminale senza attendere la conferma del server. Se è '0', l'eco locale sarà sempre attivo, se è '-1' sarà disabilitato.",
+ "terminal.integrated.localEchoStyle": "Stile terminale del testo con eco locale, ovvero uno stile di carattere o un colore RGB."
+ },
+ "vs/workbench/contrib/terminalContrib/voice/browser/terminalVoice": {
+ "terminalVoiceTextInserted": "{0} inserito"
+ },
+ "vs/workbench/contrib/terminalContrib/voice/browser/terminalVoiceActions": {
+ "enableExtension": "Abilita estensione",
+ "installExtension": "Installa estensione",
+ "terminal.voice.detail": "Il supporto del microfono richiede questa estensione.",
+ "terminal.voice.enableSpeechExtension": "Abilitare l'estensione per il riconoscimento vocale?",
+ "terminal.voice.installSpeechExtension": "Installare l'estensione \"VS Code Speech\" di Microsoft'?",
+ "workbench.action.terminal.startDictation": "Avvia dettatura nel terminale",
+ "workbench.action.terminal.stopDictation": "Arresta dettatura nel terminale"
+ },
+ "vs/workbench/contrib/terminalContrib/wslRecommendation/browser/terminal.wslRecommendation.contribution": {
+ "install": "Installa",
+ "useWslExtension.title": "Per aprire un terminale in WSL, è consigliata l'estensione '{0}'."
+ },
+ "vs/workbench/contrib/terminalContrib/zoom/browser/terminal.zoom.contribution": {
+ "fontZoomIn": "Aumenta dimensione carattere",
+ "fontZoomOut": "Riduci dimensione carattere",
+ "fontZoomReset": "Ripristina dimensione carattere"
+ },
+ "vs/workbench/contrib/terminalContrib/zoom/common/terminal.zoom": {
+ "terminal.integrated.mouseWheelZoom": "Ingrandisce il carattere del terminale quando si usa la rotellina del mouse e si tiene premuto 'CTRL'.",
+ "terminal.integrated.mouseWheelZoom.mac": "Ingrandisce il carattere del terminale quando si usa la rotellina del mouse e si tiene premuto 'CTRL'."
+ },
+ "vs/workbench/contrib/testing/browser/codeCoverageDecorations": {
+ "coverage.branchCovered": "Il ramo {0} in {1} è stato eseguito {2} volta/e.",
+ "coverage.branchCoveredYes": "È stato eseguito il ramo {0} in {1}.",
+ "coverage.branchNotCovered": "Il ramo {0} nel {1} non è stato analizzato.",
+ "coverage.branches": "{0} di {1} rami in {2} sono stati analizzati.",
+ "coverage.declExecutedCount": "'{0}' è stata eseguita {1} volta/e.",
+ "coverage.declExecutedNo": "Esecuzione di \"{0}\" non avvenuta.",
+ "coverage.declExecutedYes": "Esecuzione di {0} avvenuta.",
+ "coverage.hideInline": "Nascondi copertura inline",
+ "coverage.toggleInline": "Attiva/Disattiva code coverage inline",
+ "testing.coverageForTestAvailable": "{0} test con esecuzione completata di codice in questo file",
+ "testing.filterActionLabel": "Filtra copertura da testare",
+ "testing.goToNextMissedLine": "Vai alla riga non coperta successiva",
+ "testing.goToNextMissedLineDesc": "Passare alla riga successiva non coperta dai test.",
+ "testing.goToPreviousMissedLine": "Vai alla riga non coperta precedente",
+ "testing.goToPreviousMissedLineDesc": "Passare alla riga precedente non coperta dai test.",
+ "testing.hideCoverageInExplorer": "Nascondi copertura in Esplora",
+ "testing.hideInlineCoverage": "Nascondi copertura inline",
+ "testing.rerun": "Riesegui",
+ "testing.showInlineCoverage": "Mostra copertura inline",
+ "testing.toggleCoverageInExplorerDesc": "Attiva/disattiva la visualizzazione della copertura dei test nella visualizzazione Esplora risorse.",
+ "testing.toggleCoverageInExplorerTitle": "Attiva/disattiva copertura in Esplora",
+ "testing.toggleInlineCoverage": "Attiva/Disattiva inline",
+ "testing.toggleToolbarDesc": "Consente di attivare o disattivare la barra di copertura permanente nell'editor.",
+ "testing.toggleToolbarTitle": "Barra degli strumenti Copertura test"
+ },
+ "vs/workbench/contrib/testing/browser/codeCoverageDisplayUtils": {
+ "changePerTestFilter": "Fare clic per visualizzare la copertura per un singolo test",
+ "testing.allTests": "Tutti i test",
+ "testing.coverageForTest": "Visualizzazione di \"{0}\"",
+ "testing.percentCoverage": "{0} di copertura",
+ "testing.pickTest": "Selezionare un test per visualizzare la copertura per"
+ },
"vs/workbench/contrib/testing/browser/icons": {
"filterIcon": "Icona per l'azione 'Filtro' nella visualizzazione Test.",
"hiddenIcon": "Icona visualizzata accanto ai test nascosti, quando sono stati visualizzati.",
"testViewIcon": "Icona della visualizzazione Test.",
"testingCancelIcon": "Icona per annullare le esecuzioni dei test in corso.",
"testingCancelRefreshTests": "Icona sul pulsante per annullare l'aggiornamento dei test.",
+ "testingCoverage": "Icona che rappresenta la copertura del test",
+ "testingCoverageIcon": "Icona dell'azione \"Esegui test con code coverage\".",
"testingDebugAllIcon": "Icona dell'azione \"Esegui il debug di tutti i test\".",
"testingDebugIcon": "Icona dell'azione \"Esegui debug del test\".",
"testingErrorIcon": "Icona visualizzata per i test che presentano un errore.",
"testingFailedIcon": "Icona visualizzata per i test non superati.",
+ "testingMissingBranch": "Icona che rappresenta un blocco non analizzato senza un intervallo",
"testingPassedIcon": "Icona visualizzata per i test superati.",
"testingQueuedIcon": "Icona visualizzata per i test accodati.",
"testingRefreshTests": "Icona sul pulsante per aggiornare i test.",
+ "testingRerunIcon": "Icona dell'azione \"rerun tests\".",
+ "testingResultsIcon": "Icone per i risultati del test.",
"testingRunAllIcon": "Icona dell'azione \"Esegui tutti i test\".",
+ "testingRunAllWithCoverageIcon": "Icona dell'azione \"Esegui tutti i test con code coverage\".",
"testingRunIcon": "Icona dell'azione \"Esegui test\".",
"testingShowAsList": "Icona visualizzata quando la struttura ad albero di Esplora test è disabilitata.",
"testingShowAsTree": "Icona visualizzata quando l'elenco di Esplora test è disabilitato.",
"testingSkippedIcon": "Icona visualizzata per i test ignorati.",
+ "testingTurnContinuousRunIsOn": "Icona quando l'esecuzione continua è attiva per un elemento del test.",
+ "testingTurnContinuousRunOff": "Icona per disattivare le esecuzioni continue di test.",
+ "testingTurnContinuousRunOn": "Icona per attivare le esecuzioni continue di test.",
"testingUnsetIcon": "Icona visualizzata per i test che si trovano in uno stato annullato.",
- "testingUpdateProfiles": "Icona visualizzata per aggiornare i profili di test."
+ "testingUpdateProfiles": "Icona visualizzata per aggiornare i profili di test.",
+ "testingWasCovered": "Icona che rappresenta l’analisi di un elemento"
+ },
+ "vs/workbench/contrib/testing/browser/testCoverageBars": {
+ "branchCoverage": "{0}/{1} rami coperti ({2})",
+ "functionCoverage": "{0}/{1} funzioni trattate ({2})",
+ "statementCoverage": "{0}/{1} istruzioni trattate ({2})"
+ },
+ "vs/workbench/contrib/testing/browser/testCoverageView": {
+ "filteredToTest": "Visualizzazione della copertura per \"{0}\"",
+ "functionsWithoutCoverage": "{0} dichiarazioni senza copertura...",
+ "loadingCoverageDetails": "Caricamento dei dettagli di code coverage...",
+ "testCoverageItemLabel": "{0} copertura: {0}%",
+ "testCoverageTreeLabel": "Esplora copertura del test",
+ "testing.changeCoverageFilter": "Filtra copertura per test",
+ "testing.changeCoverageSort": "Cambia ordinamento",
+ "testing.coverageCollapseAll": "Comprimi tutta la copertura",
+ "testing.coverageSortByCoverage": "Ordina per code coverage",
+ "testing.coverageSortByCoverageDescription": "I file e le dichiarazioni sono ordinati per copertura totale",
+ "testing.coverageSortByLocation": "Ordina per posizione",
+ "testing.coverageSortByLocationDescription": "I file sono ordinati alfabeticamente, le dichiarazioni sono ordinate per posizione",
+ "testing.coverageSortByName": "Ordina per nome",
+ "testing.coverageSortByNameDescription": "I file e le dichiarazioni sono ordinati alfabeticamente",
+ "testing.coverageSortPlaceholder": "Ordina la visualizzazione code coverage dei test..."
},
"vs/workbench/contrib/testing/browser/testExplorerActions": {
"configureProfile": "Selezionare un profilo da aggiornare",
+ "coverageSelectedTests": "Esegui test con code coverage",
"debug test": "Esegui debug del test",
"debugAllTests": "Esegui debug di tutti i test",
"debugSelectedTests": "Esegui debug dei test",
"discoveringTests": "Individuazione dei test",
+ "getExplorerSelection": "Ottieni selezione explorer",
+ "getSelectedProfiles": "Ottieni profili selezionati",
"hideTest": "Nascondi il test",
+ "noCoverageTestProvider": "Non sono stati trovati test con strumenti di esecuzione di code coverage in questa area di lavoro. Potrebbe essere necessario installare un'estensione del provider di test",
"noDebugTestProvider": "Non sono stati trovati test sottoponibili a debug in questa area di lavoro. Potrebbe essere necessario installare un'estensione del provider di test",
+ "noRelatedCode": "Nessun codice correlato trovato.",
+ "noTestFound": "Non sono stati trovati test correlati.",
"noTestProvider": "Non sono stati trovati test in questa area di lavoro. Potrebbe essere necessario installare un'estensione del provider di test",
+ "noTests": "Non sono stati trovati test nel file o nella cartella selezionata",
+ "noTestsAtCursor": "Nessun test trovato",
+ "noTestsInFile": "Nel file non sono stati trovati test",
+ "relatedCode": "Codice correlato",
+ "relatedTests": "Test correlati",
"run test": "Esegui test",
+ "run with cover test": "Esegui test con code coverage",
"runAllTests": "Esegui tutti i test",
+ "runAllWithCoverage": "Esegui tutti i test con code coverage",
"runSelectedTests": "Esegui test",
"testing.cancelRun": "Annulla esecuzione dei test",
"testing.cancelTestRefresh": "Annulla aggiornamento test",
+ "testing.clearCoverage": "Cancella code coverage",
"testing.clearResults": "Cancella tutti i risultati",
"testing.collapseAll": "Comprimi tutti i test",
"testing.configureProfile": "Configurare i profili di test",
+ "testing.coverageAtCursor": "Esegui test al cursore con code coverage",
+ "testing.coverageCurrentFile": "Esegui test con code coverage nel file corrente",
+ "testing.coverageLastRun": "Esegui di nuovo l'ultima esecuzione con code coverage",
"testing.debugAtCursor": "Esegui debug del test alla posizione del cursore",
"testing.debugCurrentFile": "Esegui debug dei test nel file corrente",
"testing.debugFailTests": "Esegui debug dei test non superati",
+ "testing.debugFailedFromLastRun": "Eseguire il debug di test non superati dall'ultima esecuzione",
"testing.debugLastRun": "Esegui debug dell'ultima esecuzione",
"testing.editFocusedTest": "Passa al test",
+ "testing.goToRelatedCode": "Vai al codice correlato",
+ "testing.goToRelatedTest": "Vai al test correlato",
+ "testing.noCoverage": "Nessuna informazione di code coverage disponibile nell'ultima esecuzione dei test.",
+ "testing.noProfiles": "Non sono stati trovati profili abilitati per l'esecuzione continua di test",
+ "testing.openCoverage": "Apri code coverage",
"testing.openOutputPeek": "Visualizza output in anteprima",
+ "testing.peekToRelatedCode": "Visualizza codice correlato",
+ "testing.peekToRelatedTest": "Visualizza test correlato",
"testing.reRunFailTests": "Ripeti i test non superati",
+ "testing.reRunFailedFromLastRun": "Riesegui test non superati dall'ultima esecuzione",
"testing.reRunLastRun": "Ripeti l'ultima esecuzione",
"testing.refreshTests": "Aggiorna test",
"testing.runAtCursor": "Esegui test alla posizione del cursore",
"testing.runCurrentFile": "Esegui test nel file corrente",
"testing.runUsing": "Eseguire con profilo...",
"testing.searchForTestExtension": "Cerca estensione di test",
+ "testing.selectContinuousProfiles": "Selezionare i profili da eseguire quando i file cambiano:",
"testing.selectDefaultTestProfiles": "Seleziona profilo predefinito",
"testing.showMostRecentOutput": "Mostra output",
"testing.sortByDuration": "Ordina per durata",
"testing.sortByLocation": "Ordina per posizione",
"testing.sortByStatus": "Ordina per stato",
+ "testing.startContinuous": "Avviare l’esecuzione continua",
+ "testing.startContinuousRunUsing": "Avvia esecuzione continua con...",
+ "testing.stopContinuous": "Arrestare l’esecuzione continua",
+ "testing.toggleContinuousRunOff": "Disattiva esecuzione continua",
+ "testing.toggleContinuousRunOn": "Attiva esecuzione continua",
"testing.toggleInlineTestOutput": "Attiva/Disattiva output del test inline",
+ "testing.toggleResultsViewLayout": "Attiva/disattiva posizione albero",
"testing.viewAsList": "Visualizza come elenco",
"testing.viewAsTree": "Visualizza come albero",
"unhideAllTests": "Scopri tutti i test",
@@ -9436,7 +15659,9 @@
"noTestProvidersRegistered": "In questa area di lavoro non sono ancora stati trovati test.",
"searchForAdditionalTestExtensions": "Installa estensioni di test aggiuntive...",
"test": "Test",
- "testExplorer": "Esplora test"
+ "testCoverage": "Copertura dei test",
+ "testExplorer": "Esplora test",
+ "testResultsPanelName": "Risultato del test"
},
"vs/workbench/contrib/testing/browser/testingConfigurationUi": {
"testConfigurationUi.pick": "Selezionare un profilo di test da usare",
@@ -9444,6 +15669,7 @@
},
"vs/workbench/contrib/testing/browser/testingDecorations": {
"actual.title": "Effettivo",
+ "coverage test": "Esecuzione con code coverage",
"debug all test": "Esegui il debug di tutti i test",
"debug test": "Esegui debug del test",
"expected.title": "Previsto",
@@ -9451,19 +15677,24 @@
"peekTestOutout": "Visualizza in anteprima l'output del test",
"reveal test": "Visualizza in Esplora test",
"run all test": "Esegui tutti i test",
+ "run all test with coverage": "Esegui tutti i test con code coverage",
"run test": "Esegui test",
+ "selectTestToRun": "Seleziona un test da eseguire",
+ "testOverflowItems": "{0} altri test...",
+ "testing.cancelRun": "Annulla esecuzione test",
"testing.gutterMsg.contextMenu": "Fare clic per le opzioni test",
+ "testing.gutterMsg.coverage": "Fai clic per eseguire i test con code coverage oppure fai clic con il pulsante destro del mouse per altre opzioni",
"testing.gutterMsg.debug": "Fare clic per eseguire il debug del test oppure fare clic con il pulsante destro del mouse per altre opzioni",
"testing.gutterMsg.run": "Fare clic per eseguire i test oppure fare clic con il pulsante destro del mouse per altre opzioni",
"testing.runUsing": "Eseguire con profilo..."
},
"vs/workbench/contrib/testing/browser/testingExplorerFilter": {
- "filter": "Filtro",
"testExplorerFilter": "Filtro, ad esempio text, !exclude, @tag",
"testExplorerFilterLabel": "Filtra testo per i test in Esplora risorse",
"testing.filters.currentFile": "Mostra solo nel file attivo",
"testing.filters.fuzzyMatch": "Corrispondenza fuzzy",
"testing.filters.menu": "Altri filtri...",
+ "testing.filters.openedFiles": "Mostra solo nei file aperti",
"testing.filters.removeTestExclusions": "Scopri tutti i test",
"testing.filters.showExcludedTests": "Mostra i test nascosti",
"testing.filters.showOnlyExecuted": "Mostra solo i test eseguiti",
@@ -9472,86 +15703,139 @@
"vs/workbench/contrib/testing/browser/testingExplorerView": {
"configureTestProfiles": "Configurare i profili di test",
"defaultTestProfile": "{0} (predefinito)",
+ "noResults": "Ancora nessun risultato di test.",
"selectDefaultConfigs": "Seleziona profilo predefinito",
"testExplorer": "Esplora test",
"testing.treeElementLabelDuration": "{0}, in {1}",
+ "testing.treeElementLabelOutdated": "{0}, risultato obsoleto",
+ "testingContinuousBadge": "I test vengono monitorati per le modifiche",
+ "testingCountBadgeFailed": "{0} test non superati",
+ "testingCountBadgePassed": "{0} test superati",
+ "testingCountBadgeSkipped": "{0} test ignorati",
"testingFindExtension": "Mostra i test dell'area di lavoro",
- "testingNoTest": "Nel file non sono stati trovati test."
+ "testingNoTest": "Nel file non sono stati trovati test.",
+ "testingSelectConfig": "Seleziona configurazione..."
},
"vs/workbench/contrib/testing/browser/testingOutputPeek": {
"close": "Chiudi",
- "debug test": "Esegui debug del test",
- "messageMoreLines1": "+ 1 altra riga",
- "messageMoreLinesN": "+ {0} altre righe",
- "run test": "Esegui test",
- "testUnnamedTask": "Attività senza nome",
- "testing.debugLastRun": "Esegui debug del test",
- "testing.goToFile": "Vai al file",
+ "testOutputTitle": "Output del test",
+ "testing.collapsePeekStack": "Comprimi stack frame",
"testing.goToNextMessage": "Passa al test non riuscito successivo",
+ "testing.goToNextMessage.description": "Mostra il messaggio di errore successivo nel file",
"testing.goToPreviousMessage": "Passa al test non riuscito precedente",
+ "testing.goToPreviousMessage.description": "Mostra il messaggio di errore precedente nel file",
+ "testing.markdownPeekError": "Non è stato possibile aprire l'anteprima markdown: {0}.\r\n\r\n Assicurarsi che l'estensione markdown sia abilitata.",
"testing.openMessageInEditor": "Apri nell'editor",
- "testing.reRunLastRun": "Esegui di nuovo il test",
- "testing.revealInExplorer": "Visualizza in Esplora test",
- "testing.showResultOutput": "Mostra output risultati",
"testing.toggleTestingPeekHistory": "Attiva/Disattiva cronologia test in anteprima",
- "testingOutputActual": "Risultato effettivo",
- "testingOutputExpected": "Risultato previsto",
- "testingPeekLabel": "Messaggi dei risultati del test"
- },
- "vs/workbench/contrib/testing/browser/testingOutputTerminalService": {
- "runFinished": "Esecuzione dei test terminata a {0}",
- "runNoOutout": "L'esecuzione dei test non ha registrato alcun output.",
- "testNoRunYet": "\r\nNon è stato ancora eseguito alcun test.\r\n",
- "testOutputTerminalTitle": "Output del test",
- "testOutputTerminalTitleWithDate": "Output del test a {0}"
- },
- "vs/workbench/contrib/testing/browser/testingProgressUiService": {
- "testProgress.completed": "{0}/{1} test superati ({2}%)",
- "testProgress.running": "Esecuzione dei test. {0}/{1} superati ({2}%)",
- "testProgress.runningInitial": "Esecuzione dei test...",
- "testProgressWithSkip.completed": "{0}/{1} test superati ({2}%, {3} ignorato/i)",
- "testProgressWithSkip.running": "Esecuzione dei test. {0}/{1} test superati ({2}%, {3} ignorati)"
+ "testing.toggleTestingPeekHistory.description": "Mostra o nasconde la cronologia delle esecuzioni dei test nella visualizzazione in anteprima"
},
"vs/workbench/contrib/testing/browser/testingViewPaneContainer": {
"testing": "Test"
},
+ "vs/workbench/contrib/testing/browser/testResultsView/testResultsOutput": {
+ "caseNoOutput": "Il test case non ha segnalato alcun output.",
+ "runNoOutput": "L'esecuzione dei test non ha registrato alcun output.",
+ "runNoOutputForPast": "L'output del test è disponibile solo per le nuove esecuzioni dei test.",
+ "testingOutputActual": "Risultato effettivo",
+ "testingOutputExpected": "Risultato previsto"
+ },
+ "vs/workbench/contrib/testing/browser/testResultsView/testResultsTree": {
+ "closeTestCoverage": "Chiudi copertura di test",
+ "debug test": "Test di debug",
+ "messageMoreLines1": "+ 1 altra riga",
+ "messageMoreLinesN": "+ {0} altre righe",
+ "nOlderResults": "{0} risultati meno recenti",
+ "oneOlderResult": "1 risultato meno recente",
+ "openTestCoverage": "Visualizza copertura del test",
+ "run test": "Esegui test",
+ "testing.cancelRun": "Annulla esecuzione test",
+ "testing.debugFailedFromLastRun": "Esegui debug dei test non superati",
+ "testing.debugLastRun": "Esegui debug dell'ultima esecuzione",
+ "testing.debugTest": "Test di debug",
+ "testing.goToError": "Passa all'errore",
+ "testing.goToTest": "Passa al test",
+ "testing.reRunFailedFromLastRun": "Ripetere i test non superati",
+ "testing.reRunLastRun": "Ripeti l'ultima esecuzione",
+ "testing.reRunTest": "Esegui di nuovo il test",
+ "testing.revealInExplorer": "Visualizza in Esplora test",
+ "testing.showResultOutput": "Mostra output risultati",
+ "testingPeekLabel": "Messaggi dei risultati del test"
+ },
+ "vs/workbench/contrib/testing/browser/testResultsView/testResultsViewContent": {
+ "testFollowup.more": "+ altri {0}...",
+ "testing.callStack.debug": "Test di debug",
+ "testing.callStack.run": "Esegui di nuovo il test"
+ },
"vs/workbench/contrib/testing/browser/theme": {
+ "testing.coverCountBadgeBackground": "Sfondo per la notifica che indica il numero di esecuzioni",
+ "testing.coverCountBadgeForeground": "Primo piano per la notifica che indica il numero di esecuzioni",
+ "testing.coveredBackground": "Colore di sfondo del testo che è stato analizzato.",
+ "testing.coveredBorder": "Colore del bordo del testo senza analisi.",
+ "testing.coveredGutterBackground": "Colore della barra di navigazione delle aree in cui è stato analizzato il codice.",
"testing.iconErrored": "Colore per l'icona 'In errore' in Esplora test.",
+ "testing.iconErrored.retired": "Colore ritirato per l'icona \"In errore\" in Esplora test.",
"testing.iconFailed": "Colore per l'icona 'Non superato' in Esplora test.",
+ "testing.iconFailed.retired": "Colore ritirato per l'icona \"Non superato\" in Esplora test.",
"testing.iconPassed": "Colore per l'icona 'Superato' in Esplora test.",
+ "testing.iconPassed.retired": "Colore ritirato per l'icona \"Superato\" in Esplora test.",
"testing.iconQueued": "Colore per l'icona 'Accodato' in Esplora test.",
+ "testing.iconQueued.retired": "Colore ritirato per l'icona \"In coda\" in Esplora test.",
"testing.iconSkipped": "Colore per l'icona 'Ignorato' in Esplora test.",
+ "testing.iconSkipped.retired": "Colore ritirato per l'icona \"Ignorato\" in Esplora test.",
"testing.iconUnset": "Colore per l'icona 'Annullato' in Esplora test.",
- "testing.message.error.decorationForeground": "Colore del testo dei messaggi di errore dei test visualizzati inline nell'editor.",
+ "testing.iconUnset.retired": "Colore ritirato per l'icona \"Annullato\" in Esplora test.",
+ "testing.message.error.badgeBackground": "Colore di sfondo del testo dei messaggi di errore dei test visualizzati inline nell'editor.",
+ "testing.message.error.badgeBorder": "Colore del bordo dei messaggi di errore dei test visualizzati inline nell'editor.",
+ "testing.message.error.badgeForeground": "Colore del testo dei messaggi di errore dei test visualizzati inline nell'editor.",
"testing.message.error.marginBackground": "Colore del margine accanto ai messaggi di errore visualizzati inline nell'editor.",
"testing.message.info.decorationForeground": "Colore del testo dei messaggi informativi dei test visualizzati inline nell'editor.",
"testing.message.info.marginBackground": "Colore del margine accanto ai messaggi informativi visualizzati inline nell'editor.",
+ "testing.messagePeekBorder": "Colore dei bordi e della freccia della visualizzazione rapida quando si visualizza un messaggio registrato.",
+ "testing.messagePeekHeaderBackground": "Colore dei bordi e della freccia della visualizzazione rapida quando si visualizza un messaggio registrato.",
"testing.peekBorder": "Colore dei bordi e della freccia della visualizzazione rapida.",
- "testing.runAction": "Colore delle icone 'Esegui' nell'editor."
+ "testing.runAction": "Colore delle icone 'Esegui' nell'editor.",
+ "testing.uncoveredBackground": "Colore di sfondo del testo che non è stato analizzato.",
+ "testing.uncoveredBorder": "Colore del bordo del testo che non è stato analizzato.",
+ "testing.uncoveredBranchBackground": "Sfondo del widget visualizzato per un ramo non analizzato.",
+ "testing.uncoveredGutterBackground": "Colore della barra di navigazione delle aree in cui non è stato analizzato il codice."
},
"vs/workbench/contrib/testing/common/configuration": {
"testConfigurationTitle": "Test",
- "testing.alwaysRevealTestOnStateChange": "Visualizzare sempre il test eseguito quando '#testing.followRunningTest#' è attivo. Se questa impostazione è disattivata, verranno rivelati solo i test non superati.",
- "testing.autoRun.delay": "Indica l'intervallo di attesa in millisecondi dal momento in cui un test viene contrassegnato come obsoleto a quando viene avviata una nuova esecuzione.",
- "testing.autoRun.mode": "Controlla i test che vengono eseguiti automaticamente.",
- "testing.autoRun.mode.allInWorkspace": "Esegue automaticamente tutti i test rilevati quando viene attivata l'esecuzione automatica. Ripete i singoli test quando vengono modificati.",
- "testing.autoRun.mode.onlyPreviouslyRun": "Ripete i singoli test quando vengono modificati. Non esegue automaticamente i test che non sono già stati eseguiti.",
+ "testing.ShowCoverageInExplorer": "Indica se la copertura di test deve essere inattiva nella visualizzazione Esplora file.",
+ "testing.alwaysRevealTestOnStateChange": "Rivela sempre il test eseguito quando {0} è attivato. Se questa impostazione è disattivata, verranno rivelati solo i test non superati.",
"testing.automaticallyOpenPeekView": "Consente di configurare l'apertura automatica della visualizzazione in anteprima dell'errore.",
"testing.automaticallyOpenPeekView.failureAnywhere": "Apre automaticamente, indipendentemente dal punto in cui si è verificato l'errore.",
"testing.automaticallyOpenPeekView.failureInVisibleDocument": "Apre automaticamente quando un test non viene superato in un documento visibile.",
"testing.automaticallyOpenPeekView.never": "Non aprire mai automaticamente.",
- "testing.automaticallyOpenPeekViewDuringAutoRun": "Controlla se aprire automaticamente la visualizzazione in anteprima durante la modalità di esecuzione automatica.",
+ "testing.automaticallyOpenPeekViewDuringContinuousRun": "Controlla se aprire automaticamente la Visualizzazione in anteprima durante la modalità di esecuzione continua.",
+ "testing.countBadge": "Controlla la notifica del conteggio sull'icona Test sulla barra attività.",
+ "testing.countBadge.failed": "Mostra il numero di test non superati",
+ "testing.countBadge.off": "Disabilita la notifica del conteggio dei test",
+ "testing.countBadge.passed": "Mostra il numero di test superati",
+ "testing.countBadge.skipped": "Mostra il numero di test ignorati",
+ "testing.coverageBarThresholds": "Configura i colori usati per le percentuali nelle barre di copertura dei test.",
+ "testing.coverageToolbarEnabled": "Controlla se la barra degli strumenti di copertura viene visualizzata nell'editor.",
"testing.defaultGutterClickAction": "Verifica l'azione da eseguire quando si fa clic con il pulsante sinistro del mouse su un effetto del test nella rilegatura.",
"testing.defaultGutterClickAction.contextMenu": "Per altre opzioni, aprire il menu di scelta rapida.",
+ "testing.defaultGutterClickAction.coverage": "Esegui test con code coverage.",
"testing.defaultGutterClickAction.debug": "Esegui il debug del test.",
"testing.defaultGutterClickAction.run": "Esegui il test.",
- "testing.followRunningTest": "Controllare se il test in esecuzione deve essere seguito nella visualizzazione Esplora test",
+ "testing.displayedCoveragePercent": "Configura la percentuale visualizzata per impostazione predefinita per la copertura dei test.",
+ "testing.displayedCoveragePercent.minimum": "Valore minimo di istruzione, funzione e copertura dei rami.",
+ "testing.displayedCoveragePercent.statement": "Copertura dell'istruzione.",
+ "testing.displayedCoveragePercent.totalCoverage": "Calcolo dell'istruzione combinata, della funzione e della copertura dei rami.",
+ "testing.followRunningTest": "Controllare se il test in esecuzione deve essere seguito nella visualizzazione Esplora test.",
"testing.gutterEnabled": "Controlla se le decorazioni dei test sono visualizzate nella barra di navigazione dell'editor.",
"testing.openTesting": "Controlla quando aprire la visualizzazione di test.",
"testing.openTesting.neverOpen": "Non aprire mai automaticamente la visualizzazione test",
- "testing.openTesting.openOnTestFailure": "Aprire la visualizzazione dei test in caso di errore del test",
- "testing.openTesting.openOnTestStart": "Aprire la visualizzazione dei test all'avvio dei test",
- "testing.saveBeforeTest": "Controlla se salvare tutti gli editor modificati ma non salvati prima di eseguire un test."
+ "testing.openTesting.openExplorerOnTestStart": "Apri Esplora test all'avvio dei test",
+ "testing.openTesting.openOnTestFailure": "Aprire la visualizzazione dei risultati del test in caso di errore del test",
+ "testing.openTesting.openOnTestStart": "Aprire la visualizzazione dei risultati dei test all'avvio dei test",
+ "testing.resultsView.layout": "Controlla il layout della vista Risultati test.",
+ "testing.resultsView.layout.treeLeft": "Mostra l'albero dell'esecuzione dei test a sinistra con i dettagli a destra.",
+ "testing.resultsView.layout.treeRight": "Mostra l'albero dell'esecuzione dei test a destra con i dettagli a sinistra.",
+ "testing.saveBeforeTest": "Controlla se salvare tutti gli editor modificati ma non salvati prima di eseguire un test.",
+ "testing.showAllMessages": "Controlla se visualizzare i messaggi di tutte le esecuzioni dei test."
},
"vs/workbench/contrib/testing/common/constants": {
"testGroup.coverage": "Copertura",
@@ -9566,65 +15850,123 @@
"testState.unset": "Non ancora eseguito",
"testing.treeElementLabel": "{0} ({1})"
},
- "vs/workbench/contrib/testing/common/testResult": {
- "runFinished": "Esecuzione dei test a ({0})"
- },
- "vs/workbench/contrib/testing/common/testServiceImpl": {
- "testError": "Si è verificato un errore durante il tentativo di esecuzione dei test: {0}",
- "testTrust": "I test in esecuzione possono eseguire codice nell'area di lavoro."
+ "vs/workbench/contrib/testing/common/testingChatAgentTool": {
+ "runTestTool.confirm.all": "Il modello vuole eseguire tutti i test.",
+ "runTestTool.confirm.invocation": "Esecuzione dei test in corso...",
+ "runTestTool.confirm.message": "Il modello vuole eseguire i test in {0}.",
+ "runTestTool.confirm.title": "Consentire l'esecuzione dei test?",
+ "runTestTool.invoke.cancelled": "Esecuzione dei test annullata.",
+ "runTestTool.invoke.filesProgress": "Individuazione dei test in corso...",
+ "runTestTool.invoke.filterProgress": "Filtraggio dei test in corso...",
+ "runTestTool.invoke.progress": "Avvio dell'esecuzione dei test in corso...",
+ "runTestTool.noRunStarted": "Nessuna esecuzione dei test è stata avviata. Il problema potrebbe derivare dal test runner o dall'estensione.",
+ "runTestTool.noTests": "Non sono stati trovati test nei file",
+ "runTestTool.userDescription": "Run unit tests (optionally with coverage)"
+ },
+ "vs/workbench/contrib/testing/common/testingContentProvider": {
+ "runNoOutout": "L'esecuzione dei test non ha registrato alcun output."
},
"vs/workbench/contrib/testing/common/testingContextKeys": {
+ "testing.activeEditorHasTests": "Indica se nell'editor corrente sono presenti test",
+ "testing.canGoToRelatedCode": "Indica se un controller implementa una funzionalità per trovare il codice correlato a un test",
+ "testing.canGoToRelatedTest": "Indica se un controller implementa una funzionalità per trovare i test correlati al codice",
"testing.canRefresh": "Indica se a un test controller è associato un gestore di aggiornamento.",
"testing.controllerId": "ID controller dell'elemento di test corrente",
+ "testing.coverageToolbarEnabled": "Indica se la barra degli strumenti di copertura è abilitata",
+ "testing.cursorInsideTestRange": "Indica se il cursore si trova attualmente all'interno di un intervallo di test",
"testing.hasConfigurableConfig": "Indica se è possibile configurare una configurazione di test",
"testing.hasCoverableTests": "Indica se un test controller ha registrato una configurazione di copertura",
+ "testing.hasCoverageInFile": "Indica che la copertura è stata riportata nell'editor corrente.",
"testing.hasDebuggableTests": "Indica se un test controller ha registrato una configurazione di debug",
+ "testing.hasInlineCoverageDetails": "Indica se la copertura dettagliata per riga è disponibile per la visualizzazione inline",
"testing.hasNonDefaultConfig": "Indica se un test controller ha registrato una configurazione non predefinita",
+ "testing.hasPerTestCoverage": "Indica se la copertura per test è disponibile",
"testing.hasRunnableTests": "Indica se un test controller ha registrato una configurazione di esecuzione",
+ "testing.inlineCoverageEnabled": "Indica se viene visualizzata la copertura inline",
+ "testing.isContinuousModeOn": "Indica se la modalità di test continua è attiva.",
+ "testing.isCoverageFilteredToTest": "Indica se la copertura è stata filtrata in base a un singolo test",
+ "testing.isParentRunningContinuously": "Indica se l'elemento padre di un test viene eseguito continuamente, impostato nel menu di scelta rapida degli elementi del test",
"testing.isRefreshing": "Indica se un test controller sta aggiornando i test.",
+ "testing.isTestCoverageOpen": "Indica se un report di copertura del test è aperto",
+ "testing.peekHasStack": "Indica se il messaggio visualizzato in un'anteprima rapida presenta un'analisi dello stack",
"testing.peekItemType": "Tipo dell'elemento nella visualizzazione dell'output in anteprima, \"test\", \"messaggio\", \"attività\" o \"risultato\".",
+ "testing.profile.context.group": "Tipo di menu in cui è presente il sottomenu Configura profilo di test. \"esecuzione\", \"debug\" o \"copertura\"",
+ "testing.supportsContinuousRun": "Indica se l'esecuzione continua di test è supportata",
"testing.testId": "ID dell'elemento di test corrente, impostato durante la creazione o l'apertura di menu in elementi di test",
"testing.testItemHasUri": "Valore booleano che indica se l'elemento di test contiene un URI definito",
- "testing.testItemIsHidden": "Valore booleano che indica se l'elemento di test è nascosto"
+ "testing.testItemIsHidden": "Valore booleano che indica se l'elemento di test è nascosto",
+ "testing.testMessage": "Valore impostato in `testMessage.contextValue`, disponibile in editor/contenuto e test/messaggio/contesto",
+ "testing.testResultOutdated": "Valore disponibile in editor/contenuto e test/messaggio/contesto quando il risultato è obsoleto",
+ "testing.testResultState": "Valore disponibile per test/elemento/risultato che indica lo stato dell'elemento."
+ },
+ "vs/workbench/contrib/testing/common/testingProgressMessages": {
+ "testProgress.completed": "{0}/{1} test superati ({2}%)",
+ "testProgress.running": "Esecuzione dei test. {0}/{1} superati ({2}%)",
+ "testProgress.runningInitial": "Esecuzione dei test in corso...",
+ "testProgressWithSkip.completed": "{0}/{1} test superati ({2}%, {3} ignorato/i)",
+ "testProgressWithSkip.running": "Esecuzione dei test. {0}/{1} test superati ({2}%, {3} ignorati)"
+ },
+ "vs/workbench/contrib/testing/common/testResult": {
+ "runFinished": "Esecuzione dei test a ({0})",
+ "testUnnamedTask": "Attività senza nome"
+ },
+ "vs/workbench/contrib/testing/common/testServiceImpl": {
+ "testError": "Si è verificato un errore durante il tentativo di esecuzione dei test: {0}",
+ "testTrust": "I test in esecuzione possono eseguire codice nell'area di lavoro."
+ },
+ "vs/workbench/contrib/testing/common/testTypes": {
+ "testing.runProfileBitset.coverage": "Copertura",
+ "testing.runProfileBitset.debug": "Esegui debug",
+ "testing.runProfileBitset.run": "Esegui"
},
"vs/workbench/contrib/themes/browser/themes.contribution": {
+ "browseColorThemeInMarketPlace.label": "Sfoglia temi colore nel Marketplace",
"browseColorThemes": "Esplora altri temi a colori...",
"browseProductIconThemes": "Sfogliare temi dell'icona di prodotto aggiuntivi...",
+ "cannotToggle": "Non è possibile passare da un tema chiaro a uno scuro quando l'impostazione `{0}` è abilitata nelle impostazioni.",
"defaultProductIconThemeLabel": "Predefinito",
"fileIconThemeCategory": "temi icona file",
"generateColorTheme.label": "Genera tema colore da impostazioni correnti",
+ "goToSetting": "Apri impostazioni",
"installColorThemes": "Installa temi colori aggiuntivi...",
+ "installExtension.button.ok": "OK",
+ "installExtension.confirm": "Verrà installata l'estensione '{0}' pubblicata da '{1}'. Continuare?",
"installIconThemes": "Installa temi dell'icona file aggiuntivi...",
"installProductIconThemes": "Installa temi dell'icona di prodotto aggiuntivi...",
"installing extensions": "Installazione dell'estensione {0}...",
"manage extension": "Gestisci estensione",
"manageExtensionIcon": "Icona per l'azione 'Gestisci' nella selezione rapida del tema.",
- "miSelectColorTheme": "Tema &&colori",
- "miSelectIconTheme": "Tema &&icona file",
- "miSelectProductIconTheme": "&&Tema dell'icona di prodotto",
+ "miSelectTheme": "&&Temi",
"noIconThemeDesc": "Disabilita icone di file",
"noIconThemeLabel": "Nessuno",
"productIconThemeCategory": "temi dell'icona di prodotto",
+ "search.error": "Errore durante la ricerca dei temi: {0}",
"selectIconTheme.label": "Tema icona file",
"selectProductIconTheme.label": "Tema dell'icona di prodotto",
"selectTheme.label": "Tema colori",
+ "themes": "Temi",
"themes.category.dark": "temi scuri",
"themes.category.hc": "temi a contrasto elevato",
"themes.category.light": "temi chiari",
+ "themes.configure.switchingDisabled": "Rileva la modalità colore di sistema disabilitata. Fare clic per configurare.",
+ "themes.configure.switchingEnabled": "Rilevare la modalità colore di sistema abilitata. Fare clic per configurare.",
"themes.selectIconTheme": "Selezionare il tema dell'icona del file (tasti SU/GIÙ per visualizzare l'anteprima)",
"themes.selectIconTheme.label": "Tema icona file",
"themes.selectMarketplaceTheme": "Digitare per cercare altro. Selezionare per installare. Tasti SU/GIÙ per l'anteprima",
"themes.selectProductIconTheme": "Selezionare il tema dell'icona del prodotto (tasti SU/GIÙ per visualizzare l'anteprima)",
"themes.selectProductIconTheme.label": "Tema dell'icona di prodotto",
- "themes.selectTheme": "Selezionare il Tema colori (tasti su/giù per anteprima)",
+ "themes.selectTheme.darkHC": "Seleziona il tema colori per la modalità scura a contrasto elevato",
+ "themes.selectTheme.darkScheme": "Seleziona il tema colori per la modalità scura del sistema",
+ "themes.selectTheme.default": "Seleziona il tema colori (rileva la modalità colore di sistema disabilitata)",
+ "themes.selectTheme.lightHC": "Seleziona il tema colori per la modalità chiara a contrasto elevato",
+ "themes.selectTheme.lightScheme": "Seleziona il tema colori per la modalità chiara del sistema",
"toggleLightDarkThemes.label": "Alternare i temi chiaro/scuro"
},
"vs/workbench/contrib/timeline/browser/timeline.contribution": {
"files.openTimeline": "Apri sequenza temporale",
"filterTimeline": "Sequenza temporale filtro",
- "timeline.excludeSources": "Matrice di origini Sequenza temporale che devono essere escluse dalla visualizzazione Sequenza temporale.",
- "timeline.pageOnScroll": "Sperimentale. Controlla se la visualizzazione Sequenza temporale caricherà la pagina successiva di elementi quando si scorre fino alla fine dell'elenco.",
- "timeline.pageSize": "Numero di elementi da mostrare nella visualizzazione Sequenza temporale per impostazione predefinita e durante il caricamento di altri elementi. Se si imposta su `null` (impostazione predefinita), le dimensioni della pagina verranno selezionate automaticamente in base all'area visibile della visualizzazione Sequenza temporale.",
+ "timeline.pageOnScroll": "Controlla se la visualizzazione Sequenza temporale caricherà la pagina successiva di elementi quando si scorre fino alla fine dell'elenco.",
+ "timeline.pageSize": "Numero di elementi da mostrare nella visualizzazione Sequenza temporale per impostazione predefinita e durante il caricamento di altri elementi. Impostando `null`, si sceglieranno automaticamente le dimensioni della pagina in base all'area visibile della visualizzazione Sequenza temporale.",
"timelineConfigurationTitle": "Sequenza temporale",
"timelineFilter": "Icona per l'azione di filtro della sequenza temporale.",
"timelineOpenIcon": "Icona per l'azione di apertura della sequenza temporale.",
@@ -9638,7 +15980,11 @@
"timeline.loadMore": "Carica altro",
"timeline.loading": "Caricamento della sequenza temporale per {0}...",
"timeline.loadingMore": "Caricamento...",
+ "timeline.noLocalHistoryYet": "La cronologia locale tiene traccia delle modifiche recenti durante il salvataggio, a meno che il file non sia stato escluso o sia troppo grande.",
+ "timeline.noSCM": "Controllo del codice sorgente non configurato.",
"timeline.noTimelineInfo": "Non sono state specificate informazioni sulla sequenza temporale.",
+ "timeline.noTimelineInfoFromEnabledSources": "Non sono state fornite informazioni filtrate sulla sequenza temporale.",
+ "timeline.noTimelineSourcesEnabled": "Tutte le origini della sequenza temporale sono state filtrate.",
"timeline.toggleFollowActiveEditorCommand.follow": "Aggiungi la sequenza temporale corrente",
"timeline.toggleFollowActiveEditorCommand.unfollow": "Rimuovi la sequenza temporale corrente",
"timelinePin": "Icona per l'azione di aggiunta della sequenza temporale.",
@@ -9671,51 +16017,61 @@
},
"vs/workbench/contrib/update/browser/releaseNotesEditor": {
"releaseNotesInputName": "Note sulla versione: {0}",
+ "showOnUpdate": "Mostra note sulla versione dopo un aggiornamento",
"unassigned": "non assegnato"
},
"vs/workbench/contrib/update/browser/update": {
"DownloadingUpdate": "Download dell'aggiornamento...",
- "cancel": "Annulla",
"checkForUpdates": "Controlla la disponibilità di aggiornamenti...",
- "checkingForUpdates": "Controllo della disponibilità di aggiornamenti...",
+ "checkingForUpdates": "Verifica della disponibilità di aggiornamenti {0}...",
+ "checkingForUpdates2": "Controllo della disponibilità di aggiornamenti in corso...",
"download update": "Scarica aggiornamento",
"download update_1": "Scarica aggiornamento (1)",
- "downloading": "Download in corso...",
+ "downloading": "Download dell'aggiornamento {0}...",
"installUpdate": "Installa aggiornamento",
"installUpdate...": "Installa aggiornamento... (1)",
"installingUpdate": "Installazione dell'aggiornamento...",
"later": "In seguito",
+ "learn more": "Altre informazioni",
"noUpdatesAvailable": "Al momento non sono disponibili aggiornamenti.",
"read the release notes": "Benvenuti in {0} versione {1}. Leggere le note sulla versione?",
- "relaunchDetailInsiders": "Fare clic sul pulsante Ricarica per passare alla versione Insider di VS Code.",
+ "relaunchDetailInsiders": "Fare clic sul pulsante Ricarica per passare alla versione Insiders di VS Code.",
"relaunchDetailStable": "Fare clic sul pulsante Ricarica per passare alla versione stabile di VS Code.",
"relaunchMessage": "Per rendere effettiva la modifica della versione, è necessario ricaricare",
"releaseNotes": "Note sulla versione",
"reload": "&&Ricarica",
"restartToUpdate": "Riavvia per aggiornare (1)",
- "selectSyncService.detail": "Con la versione Insider di VS Code verranno sincronizzate le impostazioni, i tasti di scelta rapida, le estensioni, i frammenti e lo stato dell'interfaccia utente tramite un servizio separato di sincronizzazione delle impostazioni Insider per impostazione predefinita.",
+ "selectSyncService.detail": "Con la versione Insiders di VS Code, per impostazione predefinita le impostazioni, i tasti di scelta rapida, le estensioni, i frammenti e lo stato dell'interfaccia utente verranno sincronizzati tramite un servizio separato di sincronizzazione delle impostazioni Insiders.",
"selectSyncService.message": "Scegliere il servizio di sincronizzazione delle impostazioni da usare dopo la modifica della versione",
- "showReleaseNotes": "Mostra note sulla versione",
- "switchToInsiders": "Passa alla versione Insider...",
+ "showUpdateReleaseNotes": "Mostra note sulla versione dell'aggiornamento",
+ "switchToInsiders": "Passa alla versione Insiders...",
"switchToStable": "Passa alla versione stabile...",
"thereIsUpdateAvailable": "È disponibile un aggiornamento.",
"update service": "Aggiorna servizio",
+ "update service disabled": "Gli aggiornamenti sono disabilitati perché si esegue l'installazione dell'ambito utente di {0} come amministratore.",
"update.noReleaseNotesOnline": "Per questa versione di {0} non esistono note sulla versione online",
"updateAvailable": "È disponibile un aggiornamento: {0} {1}",
"updateAvailableAfterRestart": "Riavviare {0} per applicare l'aggiornamento più recente.",
"updateIsReady": "Nuovo aggiornamento per {0} disponibile.",
"updateNow": "Aggiorna adesso",
- "updating": "Aggiornamento in corso...",
- "use insiders": "Insider",
- "use stable": "Stabile (corrente)"
+ "updating": "Aggiornamento di {0} in corso...",
+ "use insiders": "&&Insiders",
+ "use stable": "&&Stabile (corrente)"
},
"vs/workbench/contrib/update/browser/update.contribution": {
"applyUpdate": "Applica aggiornamento...",
+ "checkForUpdates": "Controlla la disponibilità di aggiornamenti...",
+ "developerCategory": "Sviluppatore",
"downloadUpdate": "Scarica aggiornamento",
"installUpdate": "Installa aggiornamento",
- "miReleaseNotes": "&&Note sulla versione",
+ "mshowReleaseNotes": "Mostra note sulla &&versione",
+ "openDownloadPage": "Scarica {0}",
"pickUpdate": "Applica aggiornamento",
+ "releaseNotesFromFileNone": "Non è possibile aprire il file corrente come note sulla versione",
"restartToUpdate": "Riavvia per aggiornare",
+ "showReleaseNotes": "Mostra note sulla versione",
+ "showReleaseNotesCurrentFile": "Apri file corrente come note sulla versione",
+ "update.noReleaseNotesOnline": "Per questa versione di {0} non esistono note sulla versione online",
"updateButton": "&&Aggiorna"
},
"vs/workbench/contrib/url/browser/trustedDomains": {
@@ -9727,10 +16083,9 @@
"trustedDomain.trustSubDomain": "Considera attendibile {0} e tutti i relativi sottodomini"
},
"vs/workbench/contrib/url/browser/trustedDomainsValidator": {
- "cancel": "Annulla",
- "configureTrustedDomains": "Configura domini attendibili",
- "copy": "Copia",
- "open": "Apri",
+ "configureTrustedDomains": "Configura &&domini attendibili",
+ "copy": "&&Copia",
+ "open": "&&Apri",
"openExternalLinkAt": "Si vuole che {0} apra il sito Web esterno?"
},
"vs/workbench/contrib/url/browser/url.contribution": {
@@ -9739,108 +16094,186 @@
"workbench.trustedDomains.promptInTrustedWorkspace": "Se questa impostazione è abilitata, verranno visualizzate richieste di dominio attendibile durante l'apertura dei collegamenti in aree di lavoro attendibili."
},
"vs/workbench/contrib/userDataProfile/browser/userDataProfile": {
- "currentProfile": "Il profilo impostazioni corrente è {0}",
- "manageProfiles": "{0} ({1})",
- "profileTooltip": "{0}: {1}",
- "settingsProfilesIcon": "Icona per i profili impostazioni.",
- "statusBarItemSettingsProfileBackground": "Colore di sfondo per la voce del profilo impostazioni sulla barra di stato.",
- "statusBarItemSettingsProfileForeground": "Colore primo piano per la voce del profilo impostazioni sulla barra di stato.",
- "workbench.experimental.settingsProfiles.enabled": "Controlla se abilitare la funzionalità di anteprima del profili delle impostazioni."
- },
- "vs/workbench/contrib/userDataProfile/common/userDataProfileActions": {
- "cleanup profile": "Pulisci profili impostazioni",
- "confiirmation message": "In questo modo verranno sostituite le impostazioni correnti. Continuare?",
- "create and enter empty profile": "Crea un profilo vuoto...",
- "create empty profile": "Crea un profilo impostazioni vuoto...",
- "create profile": "Crea...",
- "create settings profile": "{0}: Crea...",
+ "New Profile Window": "Nuova finestra con profilo",
+ "change profile": "Passa al profilo {0}",
+ "create profile": "Nuovo profilo...",
"current": "Corrente",
- "delete profile": "Elimina...",
- "edit settings profile": "Rinomina profilo impostazioni...",
- "export profile": "Esporta...",
- "export profile dialog": "Salva profilo",
- "export success": "{0}: Esportazione completata.",
- "import profile": "Importa...",
- "import profile dialog": "Importa profilo",
- "import profile placeholder": "Specificare l'URL del profilo o selezionare il file di profilo da importare",
- "import profile quick pick title": "Importare le impostazioni da un profilo",
- "import profile title": "Importare le impostazioni da un profilo",
- "name": "Nome del profilo",
- "pick profile": "Seleziona profilo impostazioni",
- "pick profile to delete": "Selezionare i profili impostazioni da eliminare",
- "pick profile to rename": "Selezionare il profilo impostazioni da rinominare",
- "rename profile": "Rinomina...",
- "save profile as": "Crea da profilo impostazioni corrente...",
- "select from file": "Importare dal file del profilo",
- "select from url": "Importa da URL",
- "switch profile": "Passa a..."
+ "delete profile": "Elimina profilo...",
+ "delete specific profile": "Elimina profilo...",
+ "export profile": "Esportare profilo...",
+ "export profile in share": "Esporta profilo ({0})...",
+ "manage profiles": "Profili",
+ "miOpenProfiles": "&&Profili",
+ "new window with profile": "Nuova finestra con profilo",
+ "newWindowWithProfile": "Nuova finestra con profilo...",
+ "open": "Apri profilo {0}",
+ "open profile": "Apri nuova finestra con profilo {0}",
+ "open profiles": "Apri profili (interfaccia utente)",
+ "openShort": "{0}",
+ "pick profile": "Seleziona profilo",
+ "pick profile to delete": "Selezionare i profili da eliminare",
+ "profiles": "Profilo ({0})",
+ "save profile as": "Salva profilo corrente con nome...",
+ "selectProfile": "Selezionare profilo",
+ "switchProfile": "Cambia profilo...",
+ "userdataprofilesEditor": "Editor profili"
+ },
+ "vs/workbench/contrib/userDataProfile/browser/userDataProfileActions": {
+ "cleanup profile": "Profili di pulizia",
+ "create temporary profile": "Nuova finestra con profilo temporaneo",
+ "reset workspaces": "Reimpostare le associazioni dei profili dell'area di lavoro"
+ },
+ "vs/workbench/contrib/userDataProfile/browser/userDataProfilesEditor": {
+ "activeProfile": "Attivo",
+ "addButton": "Aggiungi cartella",
+ "addFolder": "Aggiungi cartella",
+ "addFolderTitle": "Seleziona cartelle da aggiungere",
+ "change profile": "Cambia profilo",
+ "changeIcon": "Fare clic per cambiare l'icona",
+ "contents": "Sommario",
+ "contents source description": "Configurare l'origine del contenuto per il profilo\r\n",
+ "copy description": "Copia",
+ "copy from default": "{0} (Copia)",
+ "copy from description": "Selezionare l'origine del profilo da cui copiare il contenuto",
+ "copy from profile description": "Copia {0} dal profilo {1}",
+ "copy info": "- *{0}:* copia contenuto dal profilo {1}\r\n",
+ "copy profile from": "Copia profilo da",
+ "create from": "Copia da",
+ "current description": "Usa {0} dal profilo {1}",
+ "default": "Impostazione predefinita",
+ "default description": "Usa {0} dal profilo predefinito",
+ "default info": "- *Predefinito:* usa il contenuto del profilo predefinito\r\n",
+ "default profile contents description": "Visualizzare il contenuto di questo profilo\r\n",
+ "defaultProfileIcon": "Non è possibile modificare l'icona per il profilo predefinito",
+ "defaultProfileName": "Non è possibile modificare il nome per il profilo predefinito",
+ "deleteTrustedUri": "Elimina percorso",
+ "editIcon": "Icona per l'icona di modifica della cartella nell'editor dei profili.",
+ "empty profile": "Nessuno",
+ "enable for current window": "Usare questo profilo per la finestra corrente",
+ "enable for new windows": "Usa questo profilo come predefinito per le nuove finestre",
+ "extensions": "Estensioni",
+ "folders_workspaces": "Cartelle e aree di lavoro",
+ "folders_workspaces_description": "Le cartelle e le aree di lavoro seguenti usano questo profilo",
+ "from existing profiles": "Profili esistenti",
+ "from template": "Dal modello",
+ "from templates": "Modelli di profilo",
+ "hostColumnLabel": "Host",
+ "icon": "Icona profilo",
+ "icon-description": "Icona del profilo da visualizzare nella barra attività",
+ "icon-label": "Icona",
+ "import from file": "Seleziona file...",
+ "import from url": "Importa da URL",
+ "import profile dialog": "Selezionare il file del modello di profilo",
+ "import profile placeholder": "Specificare l'URL del modello di profilo",
+ "import profile quick pick title": "Importare da modello di profilo...",
+ "importProfile": "Importa profilo...",
+ "keybindings": "Scelte rapide da tastiera",
+ "localAuthority": "Locale",
+ "mcp": "Server MCP",
+ "name": "Nome",
+ "name required": "Il nome del profilo è obbligatorio e deve essere un valore non vuoto.",
+ "new from template": "Nuovo profilo da modello",
+ "newProfile": "Nuovo profilo",
+ "no_folder_description": "Nessuna cartella o area di lavoro usa questo profilo",
+ "none": "Nessuno",
+ "none description": "Crea {0} vuoto",
+ "none info": "- *Nessuno:* Crea contenuto vuoto\r\n",
+ "open": "Apri in una nuova finestra",
+ "options": "Origine",
+ "pathColumnLabel": "Percorso",
+ "profileExists": "Il profilo con nome {0} esiste già.",
+ "profileName": "Nome profilo",
+ "profiles": "Profili",
+ "profilesSashBorder": "Colore del bordo della barra di divisione dell'editor dei Profili.",
+ "removeIcon": "Icona per l'icona di rimozione della cartella nell'editor dei profili.",
+ "settings": "Impostazioni",
+ "snippets": "Frammenti di codice",
+ "tasks": "Attività",
+ "trustedFolderAriaLabel": "{0}, attendibile",
+ "trustedFolderWithHostAriaLabel": "{0} su {1}, attendibile",
+ "trustedFoldersAndWorkspaces": "Cartelle e aree di lavoro attendibili",
+ "use for curren window": "Usa per la finestra corrente",
+ "use for new windows": "Usa per nuove finestre",
+ "userDataProfiles": "Profili"
+ },
+ "vs/workbench/contrib/userDataProfile/browser/userDataProfilesEditorModel": {
+ "active": "Usare questo profilo per la finestra corrente",
+ "applyToAllProfiles": "Applica estensione a tutti i profili",
+ "cancel": "Annulla",
+ "copy from": "{0} (Copia)",
+ "copyFromProfile": "Duplicare...",
+ "create": "Crea",
+ "delete": "Elimina",
+ "deleteProfile": "Eliminare il profilo \"{0}\"?",
+ "discard": "Rimuovi e crea",
+ "export": "Esporta...",
+ "import in desktop": "Crea in {0}",
+ "invalid configurations": "Il profilo deve contenere almeno una configurazione.",
+ "name required": "Il nome del profilo è obbligatorio e deve essere un valore non vuoto.",
+ "new profile exists": "È già in corso la creazione di un nuovo profilo. Rimuoverlo e crearne uno nuovo?",
+ "open": "Apri lateralmente",
+ "open new window": "Apri nuova finestra con questo profilo",
+ "preview": "Anteprima",
+ "profileExists": "Il profilo con nome {0} esiste già.",
+ "replace": "Sostituisci",
+ "untitled": "Senza titolo"
},
"vs/workbench/contrib/userDataSync/browser/userDataSync": {
- "Theirs": "Versione server",
- "Yours": "Personale",
"accept failed": "Si è verificato un errore durante l'accettazione delle modifiche. Per altri dettagli, vedere i [log]({0}).",
- "accept merges title": "Accetta merge",
- "ask to turn on in global": "Sincronizzazione impostazioni è disattivata (1)",
"auth failed": "Si è verificato un errore durante l'attivazione di Sincronizzazione impostazioni: l'autenticazione non è riuscita.",
- "cancel": "Annulla",
- "change later": "È sempre possibile modificare questa impostazione in un secondo momento.",
+ "cancel turning on sync": "Annulla",
+ "complete merges title": "Completa merge",
"configure": "Configura...",
- "configure and turn on sync detail": "Accedere per sincronizzare i dati tra i dispositivi.",
- "configure sync": "{0}: Configura...",
+ "configure and turn on sync detail": "Accedi per eseguire il backup e sincronizzare i dati tra i dispositivi.",
+ "configure sync": "Configura...",
"configure sync placeholder": "Scegliere gli elementi da sincronizzare",
+ "configure sync title": "{0}: Configura...",
"conflicts detected": "Non è possibile eseguire la sincronizzazione a causa di conflitti in {0}. Risolverli prima di continuare.",
"default": "Predefiniti",
+ "download sync activity complete": "L'attività sincronizzazione impostazioni è stata scaricata.",
"error reset required": "La sincronizzazione delle impostazioni è disabilitata perché i dati nel cloud sono precedenti a quelli del client. Prima di attivare la sincronizzazione, cancellare i dati nel cloud.",
"error reset required while starting sync": "Non è possibile attivare la sincronizzazione delle impostazioni perché i dati nel cloud sono meno recenti rispetto a quelli del client. Prima di attivare la sincronizzazione, cancellare i dati nel cloud.",
"error upgrade required": "La sincronizzazione delle impostazioni è disabilitata perché la versione corrente ({0}, {1}) non è compatibile con il servizio di sincronizzazione. Aggiornare prima di attivare la sincronizzazione.",
"error upgrade required while starting sync": "Non è possibile attivare la sincronizzazione delle impostazioni perché la versione corrente ({0}, {1}) non è compatibile con il servizio di sincronizzazione. Aggiornare prima di attivare la sincronizzazione.",
"errorInvalidConfiguration": "Non è possibile sincronizzare {0} perché il contenuto del file non è valido. Aprire il file e correggerlo.",
- "global activity turn on sync": "Attiva Sincronizzazione impostazioni...",
+ "global activity turn on sync": "Impostazioni di backup e sincronizzazione...",
"has conflicts": "{0}: Rilevati conflitti",
- "insiders": "Insider",
- "learn more": "Altre informazioni",
- "localResourceName": "{0} (locale)",
+ "insiders": "Insiders",
+ "method not found": "La sincronizzazione delle impostazioni è disabilitata perché il client sta effettuando richieste non valide. Segnalare un problema con i log.",
"no authentication providers": "Non sono disponibili provider di autenticazione.",
"open file": "Apri il file {0}",
"operationId": "ID operazione: {0}",
- "per platform": "per ogni piattaforma",
- "remoteResourceName": "{0} (remoto)",
"replace local": "Sostituisci locale",
"replace remote": "Sostituisci remoto",
+ "report issue": "Segnala problema",
"reset": "Cancella dati nel cloud...",
- "resolveConflicts_global": "{0}: Mostra le impostazioni in conflitto (1)",
- "resolveKeybindingsConflicts_global": "{0}: Mostra i tasti di scelta rapida in conflitto (1)",
- "resolveSnippetsConflicts_global": "{0}: Mostra i frammenti utente in conflitto ({1})",
- "resolveTasksConflicts_global": "{0}: Mostra conflitti tra attività utente (1)",
+ "resolveConflicts_global": "Mostra conflitti ({0})",
"service changed and turned off": "La sincronizzazione delle impostazioni è stata disattivata perché {0} usa ora un servizio separato. Attivare di nuovo la sincronizzazione.",
- "service switched to insiders": "La sincronizzazione delle impostazioni è stata impostata sul servizio Insider",
+ "service switched to insiders": "La sincronizzazione delle impostazioni è stata impostata sul servizio Insiders",
"service switched to stable": "La sincronizzazione delle impostazioni è stata impostata sul servizio Stabile",
"session expired": "La sincronizzazione delle impostazioni è stata disattivata perché la sessione corrente è scaduta. Eseguire di nuovo l'accesso per attivare la sincronizzazione.",
- "settings sync is off": "Sincronizzazione impostazioni è disattivata",
"show conflicts": "Mostra conflitti",
"show sync log title": "{0}: Mostra log",
"show sync log toolrip": "Mostra log",
- "show synced data": "{0}: Mostra dati sincronizzati",
+ "show sync logs": "Mostra log",
+ "show synced data": "Mostra dati sincronizzati",
"show synced data action": "Mostra dati sincronizzati",
- "showConflicts": "{0}: Mostra le impostazioni in conflitto",
- "showKeybindingsConflicts": "{0}: Mostra i tasti di scelta rapida in conflitto",
- "showSnippetsConflicts": "{0}: Mostra i frammenti utente in conflitto",
- "showTasksConflicts": "{0}: Mostra conflitti tra attività utente",
"sign in accounts": "Accedi per sincronizzare le impostazioni (1)",
- "sign in and turn on": "Accedi e attiva",
+ "sign in and turn on": "Accedi",
"sign in global": "Accedi per sincronizzare le impostazioni",
"sign in to sync": "Accedi per sincronizzare le impostazioni",
"stable": "Stabile",
- "stop sync": "{0}: Disattiva",
+ "stop sync": "Disattiva",
"switchSyncService.description": "Assicurarsi di usare lo stesso servizio di sincronizzazione delle impostazioni quando si esegue la sincronizzazione con più ambienti",
"switchSyncService.title": "{0}: Seleziona servizio",
"sync is on": "La sincronizzazione delle impostazioni è attiva",
- "sync now": "{0}: Sincronizza ora",
- "sync settings": "{0}: Mostra impostazioni",
+ "sync now": "Sincronizza ora",
+ "sync settings": "Mostra impostazioni",
"synced with time": "ora di sincronizzazione {0}",
"syncing": "sincronizzazione",
"too large": "La sincronizzazione di {0} è stata disabilitata perché le dimensioni del file {1} da sincronizzare sono maggiori di {2}. Aprire il file e ridurre le dimensioni, quindi abilitare la sincronizzazione",
"too large while starting sync": "Non è possibile attivare la sincronizzazione delle impostazioni perché le dimensioni del file {0} sono maggiori di {1}. Aprire il file e ridurre le dimensioni, quindi attivare la sincronizzazione",
+ "too many profiles": "La sincronizzazione dei profili è stata disabilitata perché ci sono troppi profili da sincronizzare. Sincronizzazione impostazioni supporta la sincronizzazione di un massimo di 20 profili. Ridurre il numero di profili e abilitare la sincronizzazione",
"turn off": "&&Disattiva",
"turn off failed": "Si è verificato un errore durante la disattivazione di Sincronizzazione impostazioni. Per altri dettagli, vedere i [log]({0}).",
"turn off sync confirmation": "Disattivare la sincronizzazione?",
@@ -9848,15 +16281,11 @@
"turn off sync everywhere": "Disattiva la sincronizzazione in tutti i dispositivi e cancella i dati dal cloud.",
"turn on failed": "Si è verificato un errore durante l'attivazione della sincronizzare delle impostazioni. {0}",
"turn on failed with user data sync error": "Si è verificato un errore durante l'attivazione di Sincronizzazione impostazioni. Per altri dettagli, vedere i [log]({0}).",
- "turn on settings sync": "Attiva Sincronizzazione impostazioni",
"turn on sync": "Attiva Sincronizzazione impostazioni...",
- "turn on sync with category": "{0}: Attiva...",
"turned off": "La sincronizzazione delle impostazioni è stata disattivata da un altro dispositivo. Attivare di nuovo la sincronizzazione.",
- "turnin on sync": "Attivazione di Sincronizzazione impostazioni...",
+ "turning on sync": "Attivazione di Sincronizzazione impostazioni...",
"turning on syncing": "Attivazione di Sincronizzazione impostazioni...",
- "turnon sync after initialization message": "Le impostazioni, i tasti di scelta rapida, le estensioni, i frammenti e lo stato dell'interfaccia utente sono stati inizializzati ma non sono stati sincronizzati. Attivare Sincronizzazione impostazioni?",
- "using separate service": "Per la sincronizzazione delle impostazioni si usa ora un apposito servizio. Per altre informazioni, vedere la [documentazione sulla sincronizzazione delle impostazioni](https://aka.ms/vscode-settings-sync-help#_syncing-stable-versus-insiders).",
- "workbench.action.showSyncRemoteBackup": "Mostra dati sincronizzati",
+ "using separate service": "Per la sincronizzazione delle impostazioni si usa ora un apposito servizio. Per altre informazioni, vedi la [documentazione sulla sincronizzazione delle impostazioni](https://aka.ms/vscode-settings-sync-help#_syncing-stable-versus-insiders).",
"workbench.actions.syncData.reset": "Cancella dati nel cloud..."
},
"vs/workbench/contrib/userDataSync/browser/userDataSync.contribution": {
@@ -9869,38 +16298,24 @@
"settings sync": "Sincronizzazione impostazioni. ID operazione: {0}",
"show sync logs": "Mostra log"
},
- "vs/workbench/contrib/userDataSync/browser/userDataSyncMergesView": {
- "accept local": "Accetta locale",
- "accept merges": "Accetta merge",
- "accept remote": "Accetta remoto",
- "accepted": "Accettato",
- "cancel": "Annulla",
- "conflict": "Rilevati conflitti",
- "conflicts detected": "Rilevati conflitti",
- "explanation": "Esaminare le singole voci ed eseguire il merge per abilitare la sincronizzazione.",
- "label": "UserDataSyncResources",
- "leftResourceName": "{0} (remoto)",
- "merges": "{0} (merge)",
- "preview": "{0} (anteprima)",
- "resolve": "Non è possibile eseguire il merge a causa di conflitti. Risolverli prima di continuare.",
- "rightResourceName": "{0} (locale)",
- "sideBySideDescription": "Sincronizzazione impostazioni",
- "sideBySideLabels": "{0} ↔ {1}",
- "turn on sync": "Attiva Sincronizzazione impostazioni",
- "turning on": "Attivazione...",
+ "vs/workbench/contrib/userDataSync/browser/userDataSyncConflictsView": {
+ "Theirs": "Loro",
+ "Yours": "Personale",
+ "explanation": "Esamina le singole voci ed esegui il merge per risolvere i conflitti.",
+ "localResourceName": "{0} (Locale)",
+ "remoteResourceName": "{0} (Remoto)",
"workbench.actions.sync.acceptLocal": "Accetta locale",
"workbench.actions.sync.acceptRemote": "Accetta remoto",
- "workbench.actions.sync.discard": "Rimuovi",
- "workbench.actions.sync.merge": "Esegui merge",
- "workbench.actions.sync.showChanges": "Apri modifiche"
+ "workbench.actions.sync.openConflicts": "Mostra conflitti"
},
"vs/workbench/contrib/userDataSync/browser/userDataSyncViews": {
"confirm replace": "Sostituire i dati correnti di {0} locale con la versione selezionata?",
+ "conflicts": "Conflitti",
"current": "Corrente",
+ "downloaded sync activity title": "Attività di sincronizzazione (sviluppatore)",
"last sync states": "Ultimi elementi remoti sincronizzati",
"leftResourceName": "{0} (remoto)",
"local sync activity title": "Attività di sincronizzazione (locale)",
- "merges": "Merge",
"no machines": "Nessun computer",
"not found": "non è stato trovato alcun computer con ID: {0}",
"placeholder": "Immettere il nome del computer",
@@ -9908,6 +16323,7 @@
"remoteToLocalDiff": "{0} ↔ {1}",
"reset": "Reimposta dati sincronizzati",
"rightResourceName": "{0} (locale)",
+ "select sync activity file": "Seleziona file o cartella attività di sincronizzazione",
"sideBySideLabels": "{0} ↔ {1}",
"sync logs": "Log",
"synced machines": "Computer sincronizzati",
@@ -9918,24 +16334,21 @@
"valid message": "Il nome del computer deve essere univoco e non vuoto",
"workbench.actions.sync.compareWithLocal": "Confronta con versione locale",
"workbench.actions.sync.editMachineName": "Modifica nome",
+ "workbench.actions.sync.loadActivity": "Attività di sincronizzazione del carico",
"workbench.actions.sync.replaceCurrent": "Ripristina",
- "workbench.actions.sync.resolveResourceRef": "Mostra i dati sincronizzati JSON non elaborati",
+ "workbench.actions.sync.resolveResourceRef": "Mostra i dati sincronizzati in formato JSON non elaborato",
"workbench.actions.sync.turnOffSyncOnMachine": "Disattiva Sincronizzazione impostazioni"
},
- "vs/workbench/contrib/userDataSync/electron-sandbox/userDataSync.contribution": {
+ "vs/workbench/contrib/userDataSync/electron-browser/userDataSync.contribution": {
"Open Backup folder": "Apri cartella dei backup locale",
- "no backups": "La cartella dei backup locale non esiste"
- },
- "vs/workbench/contrib/views/browser/treeView": {
- "no-dataprovider": "Non ci sono provider di dati registrati che possono fornire i dati della visualizzazione.",
- "refresh": "Aggiorna",
- "collapseAll": "Comprimi tutto",
- "command-error": "Si è verificato un errore durante l'esecuzione del comando {1}: {0}. Il problema può dipendere dall'estensione che aggiunge come contributo {1}."
+ "download sync activity complete": "L'attività sincronizzazione impostazioni è stata scaricata.",
+ "no backups": "La cartella dei backup locale non esiste",
+ "open": "Apri cartella"
},
"vs/workbench/contrib/watermark/browser/watermark": {
"tips.enabled": "Quando questa opzione è abilitata, se non ci sono editor aperti, verranno visualizzati i suggerimenti filigrana.",
"watermark.findInFiles": "Cerca nei file",
- "watermark.newUntitledFile": "Nuovo file senza nome",
+ "watermark.newUntitledFile": "Nuovo file di testo senza titolo",
"watermark.openFile": "Apri file",
"watermark.openFileFolder": "Apri file o cartella",
"watermark.openFolder": "Apri cartella",
@@ -9952,288 +16365,46 @@
"cut": "Tagliare",
"paste": "Incollare"
},
- "vs/workbench/contrib/webview/browser/webviewElement": {
- "fatalErrorMessage": "Si è verificato un errore durante il caricamento della webview: {0}"
- },
- "vs/workbench/contrib/webview/electron-sandbox/webviewCommands": {
- "iframeWebviewAlert": "Uso di strumenti di sviluppo standard per eseguire il debug di webview basato su iframe",
- "openToolsLabel": "Apri strumenti di sviluppo Webview"
- },
- "vs/workbench/contrib/webviewPanel/browser/webviewCommands": {
- "editor.action.webvieweditor.findNext": "Trova successivo",
- "editor.action.webvieweditor.findPrevious": "Trova precedente",
- "editor.action.webvieweditor.hideFind": "Interrompi ricerca",
- "editor.action.webvieweditor.showFind": "Mostra ricerca",
- "refreshWebviewLabel": "Ricarica webview"
- },
- "vs/workbench/contrib/webviewPanel/browser/webviewPanel.contribution": {
- "webview.editor.label": "editor webview"
- },
- "vs/workbench/contrib/welcome/common/newFile.contribution": {
- "Built-In": "Predefinito",
- "Create": "Crea",
- "change keybinding": "Configura tasto di scelta rapida",
- "createNew": "Crea nuovo...",
- "file": "FILE",
- "miNewFile2": "File di testo",
- "notebook": "Blocco appunti",
- "welcome.newFile": "Nuovo file..."
- },
- "vs/workbench/contrib/welcome/common/viewsWelcomeContribution": {
- "ViewsWelcomeExtensionPoint.proposedAPI": "Il contributo viewsWelcome in '{0}' richiede 'enabledApiProposals: [\"contribViewsWelcome\"]' per usare la proprietà proposta 'group'."
- },
- "vs/workbench/contrib/welcome/common/viewsWelcomeExtensionPoint": {
- "contributes.viewsWelcome": "Contenuto di benvenuto delle visualizzazioni aggiunte come contributo. Il rendering del contenuto di benvenuto verrà eseguito quando nelle visualizzazioni ad albero non ci sono contenuti significativi da visualizzare, ad esempio Esplora file quando non ci sono cartelle aperte. Tale contenuto può essere usato come documentazione interna al prodotto per invitare gli utenti a usare determinate funzionalità prima che siano disponibili. Un valido esempio è il pulsante `Clona repository` nella visualizzazione di benvenuto di Esplora file.",
- "contributes.viewsWelcome.view": "Contenuto di benvenuto aggiunto come contributo per una visualizzazione specifica.",
- "contributes.viewsWelcome.view.contents": "Contenuto di benvenuto da visualizzare. Il formato del contenuto è un sottoinsieme di Markdown e include solo il supporto per i collegamenti.",
- "contributes.viewsWelcome.view.enablement": "Condizione per cui i pulsanti e i collegamenti dei comandi del contenuto di benvenuto devono essere abilitati.",
- "contributes.viewsWelcome.view.group": "Gruppo a cui appartiene questo contenuto di benvenuto. API proposta.",
- "contributes.viewsWelcome.view.view": "Identificatore visualizzazione di destinazione per questo contenuto di benvenuto. Sono supportate solo le visualizzazioni ad albero.",
- "contributes.viewsWelcome.view.when": "Condizione in cui visualizzare il contenuto di benvenuto."
- },
- "vs/workbench/contrib/welcome/gettingStarted/browser/gettingStarted": {
- "allDone": "Contrassegna come completato",
- "checkboxTitle": "Se selezionata, questa pagina verrà visualizzata all'avvio.",
- "close": "Nascondi",
- "footer": "{0} raccoglie i dati di utilizzo. Leggi i {1} e Scopri come {2}.",
- "getStarted": "Attività iniziali",
- "gettingStarted.allStepsComplete": "Tutti i {0} passaggi sono stati completati.",
- "gettingStarted.editingEvolved": "Evoluzione dell'editor",
- "gettingStarted.someStepsComplete": "{0} di {1} passaggi completati",
- "imageShowing": "Immagine che mostra {0}",
- "new": "Nuovo",
- "newItems": "Aggiornato",
- "nextOne": "Sezione successiva",
- "optOut": "Rifiuta esplicitamente",
- "pickWalkthroughs": "Apri procedura dettagliata...",
- "privacy statement": "informativa sulla privacy",
- "recent": "Recenti",
- "show more recents": "Mostra tutte le cartelle recenti {0}",
- "showAll": "Altro...",
- "start": "Inizia",
- "walkthroughs": "Procedure dettagliate",
- "welcomeAriaLabel": "Panoramica su come iniziare subito a usare l'editor.",
- "welcomePage.openFolderWithPath": "Apri la cartella {0} con percorso {1}",
- "welcomePage.showOnStartup": "Mostra la pagina iniziale all'avvio"
- },
- "vs/workbench/contrib/welcome/gettingStarted/browser/gettingStarted.contribution": {
- "getStarted": "Attività iniziali",
- "help": "Guida",
- "miGetStarted": "Attività iniziali",
- "pickWalkthroughs": "Apri procedura dettagliata...",
- "welcome.goBack": "Indietro",
- "welcome.markStepComplete": "Contrassegna il passaggio come completato",
- "welcome.markStepInomplete": "Contrassegna il passaggio come incompleto",
- "welcome.showAllWalkthroughs": "Apri procedura dettagliata...",
- "workbench.welcomePage.preferReducedMotion": "Se questa opzione è abilitata, riduce il movimento nella pagina iniziale.",
- "workbench.welcomePage.walkthroughs.openOnInstall": "Se abilitata, la procedura dettagliata di un'estensione verrà aperta al momento dell'installazione dell'estensione.",
- "workspacePlatform": "Piattaforma dell'area di lavoro corrente, che nei contesti remoti o serverless può essere diversa dalla piattaforma dell'interfaccia utente"
- },
- "vs/workbench/contrib/welcome/gettingStarted/browser/gettingStartedColors": {
- "welcomePage.background": "Colore di sfondo della pagina di benvenuto.",
- "welcomePage.progress.background": "Colore primo piano delle barre di avanzamento della pagina di benvenuto.",
- "welcomePage.progress.foreground": "Colore di sfondo delle barre di avanzamento della pagina di benvenuto.",
- "welcomePage.tileBackground": "Colore di sfondo dei riquadri nella pagina Attività iniziali.",
- "welcomePage.tileHoverBackground": "Colore di sfondo al passaggio del mouse dei riquadri nella pagina Attività iniziali.",
- "welcomePage.tileShadow": "Colore ombreggiatura dei pulsanti di categoria della procedura dettagliata della pagina iniziale."
- },
- "vs/workbench/contrib/welcome/gettingStarted/browser/gettingStartedExtensionPoint": {
- "pathDeprecated": "Deprecata. In alternativa, usare `image` o `markdown`",
- "title": "Titolo",
- "walkthroughs": "Aggiunge procedure dettagliate come contributi per consentire agli utenti di iniziare a usare l'estensione.",
- "walkthroughs.description": "Descrizione della procedura dettagliata.",
- "walkthroughs.featuredFor": "Le procedure dettagliate che corrispondono a uno di questi modelli glob vengono visualizzate come 'In primo piano' nelle aree di lavoro con i file specificati. Ad esempio, una procedura dettagliata per i progetti TypeScript potrebbe specificare 'tsconfig.json '.",
- "walkthroughs.id": "Identificatore univoco per questa procedura dettagliata.",
- "walkthroughs.steps": "Passaggi da completare in questa procedura dettagliata.",
- "walkthroughs.steps.button.deprecated.interpolated": "Deprecato. Utilizzare i collegamenti Markdown nella descrizione invece, ad esempio {0}, {1} o {2}",
- "walkthroughs.steps.completionEvents": "Eventi che devono attivare il contrassegno di completamento per questo passaggio. Se è vuoto o non è definito, il passaggio risulterà completato quando si fa clic su uno dei pulsanti o dei collegamenti del passaggio. Se nel passaggio non sono presenti pulsanti o collegamenti, verrà eseguita una verifica quando viene selezionato.",
- "walkthroughs.steps.completionEvents.extensionInstalled": "Contrassegna il passaggio come completato quando viene installata un'estensione con l'ID specificato. Se l'estensione è già installata, il passaggio verrà avviato già con il contrassegno di completamento.",
- "walkthroughs.steps.completionEvents.onCommand": "Contrassegna il passaggio come completato quando si esegue un comando specificato in una posizione qualsiasi in VS Code.",
- "walkthroughs.steps.completionEvents.onContext": "Contrassegna il passaggio come completato quando un'espressione chiave di contesto è vera.",
- "walkthroughs.steps.completionEvents.onLink": "Contrassegna il passaggio come completato quando viene aperto un collegamento specificato tramite un passaggio della procedura dettagliata.",
- "walkthroughs.steps.completionEvents.onSettingChanged": "Contrassegna il passaggio come completato quando un'impostazione specificata viene modificata",
- "walkthroughs.steps.completionEvents.onView": "Contrassegna il passaggio come completato quando viene aperta una visualizzazione specifica",
- "walkthroughs.steps.completionEvents.stepSelected": "Contrassegna il passaggio come completato non appena viene selezionato.",
- "walkthroughs.steps.description.interpolated": "Descrizione del passaggio. Supporta testo ``preformattato``, in __corsivo e in **grassetto**. Usare i collegamenti di tipo Markdown per comandi o collegamenti esterni:{0}, {1}, o {2}. I collegamenti sulla relativa riga verranno visualizzati come pulsanti.",
- "walkthroughs.steps.doneOn": "Segnale per contrassegnare il passaggio come completato.",
- "walkthroughs.steps.doneOn.deprecation": "doneOn è deprecata. Per impostazione predefinita, i passaggi verranno contrassegnati come completati quando vengono selezionati i relativi pulsanti per la configurazione di completionEvents per utilizzi futuri",
- "walkthroughs.steps.id": "Identificatore univoco per questo passaggio. Viene usato per tenere traccia dei passaggi completati.",
- "walkthroughs.steps.media": "File multimediali da visualizzare con questo passaggio; può essere un'immagine o contenuto Markdown.",
- "walkthroughs.steps.media.altText": "Testo alternativo da visualizzare quando non è possibile caricare l'immagine oppure nelle utilità per la lettura dello schermo.",
- "walkthroughs.steps.media.image.path.dark.string": "Percorso dell'immagine per i temi scuri, relativo alla directory dell'estensione.",
- "walkthroughs.steps.media.image.path.hc.string": "Percorso dell'immagine per i temi a contrasto elevato, relativo alla directory dell'estensione.",
- "walkthroughs.steps.media.image.path.light.string": "Percorso dell'immagine per i temi chiari, relativo alla directory dell'estensione.",
- "walkthroughs.steps.media.image.path.string": "Percorso di un'immagine o di un oggetto costituito dai percorsi delle immagini chiare, scure e a contrasto elevato relativi alla directory dell'estensione. A seconda del contesto, l'immagine verrà visualizzata con una larghezza compresa tra 400 px e 800 px, con limiti simili per l'altezza. Per supportare i display HIDPI, il rendering dell'immagine verrà eseguito con un ridimensionamento di 1,5 volte, ad esempio un'immagine la cui larghezza è pari a 900 pixel fisici verrà visualizzata come se la larghezza fosse pari a 600 pixel logici.",
- "walkthroughs.steps.media.image.path.svg": "Il percorso di un token di colore svg è supportato nelle variabili per supportare il tema in modo che corrisponda al workbench.",
- "walkthroughs.steps.media.markdown.path": "Percorso del documento Markdown, relativo alla directory dell'estensione.",
- "walkthroughs.steps.oneOn.command": "Contrassegna il passaggio come completato quando viene eseguito il comando specificato.",
- "walkthroughs.steps.title": "Titolo del passaggio.",
- "walkthroughs.steps.when": "Espressione chiave di contesto per controllare la visibilità di questo passaggio.",
- "walkthroughs.title": "Titolo della procedura dettagliata.",
- "walkthroughs.when": "Espressione chiave di contesto per controllare la visibilità di questa procedura dettagliata."
- },
- "vs/workbench/contrib/welcome/gettingStarted/browser/gettingStartedIcons": {
- "gettingStartedChecked": "Usata per rappresentare i passaggi della procedura dettagliata che sono stati completati",
- "gettingStartedUnchecked": "Usata per rappresentare i passaggi della procedura dettagliata che non sono stati completati"
- },
- "vs/workbench/contrib/welcome/gettingStarted/browser/gettingStartedInput": {
- "getStarted": "Attività iniziali"
- },
- "vs/workbench/contrib/welcome/gettingStarted/browser/gettingStartedService": {
- "builtin": "Predefinito"
- },
- "vs/workbench/contrib/welcome/gettingStarted/common/gettingStartedContent": {
- "browseLangExts": "Sfoglia le estensioni del linguaggio",
- "browsePopular": "Sfoglia estensioni Web più richieste",
- "browseRecommended": "Sfoglia le estensioni consigliate",
- "cloneRepo": "Clona repository",
- "commandPalette": "Apri il riquadro comandi",
- "enableSync": "Abilita Sincronizzazione impostazioni",
- "enableTrust": "abilita attendibilità",
- "getting-started-beginner-icon": "Icona usata per la categoria principiante della home page",
- "getting-started-intermediate-icon": "Icona usata per la categoria intermedia della home page",
- "getting-started-setup-icon": "Icona usata per la categoria di configurazione della home page",
- "gettingStarted.beginner.description": "Passa direttamente a VS Code per una panoramica delle funzionalità necessarie.",
- "gettingStarted.beginner.title": "Informazioni sulle nozioni fondamentali",
- "gettingStarted.commandPalette.description.interpolated": "I comandi consentono di eseguire qualsiasi attività in VS Code usando la tastiera. Per **fare pratica**, cercare i comandi frequenti per risparmiare tempo.\r\n{0}\r\n__Provare a cercare 'attiva/disattiva visualizzazione'.__",
- "gettingStarted.commandPalette.title": "Un solo collegamento per accedere a tutto",
- "gettingStarted.debug.description.interpolated": "Accelerare il ciclo di modifica, build, test e debug configurando una configurazione di avvio.\r\n{0}",
- "gettingStarted.debug.title": "Guarda il codice in azione",
- "gettingStarted.extensions.description.interpolated": "Le estensioni sono potenziamenti di VS Code. Spaziano da pratici strumenti per la produttività, all'espansione di funzionalità già pronte all'uso, fino all'aggiunta di funzionalità completamente nuove.\r\n{0}",
- "gettingStarted.extensions.title": "Estendibilità senza limiti",
- "gettingStarted.extensionsWeb.description.interpolated": "Le estensioni sono potenziamenti di VS Code. Il numero di quelle disponibili nel Web è in continuo aumento.\r\n{0}",
- "gettingStarted.findLanguageExts.description.interpolated": "È possibile scrivere codice in modo più intelligente con evidenziazione della sintassi, completamento del codice, linting e debug. Anche se molti linguaggi sono predefiniti, è possibile aggiungerne altri come estensioni.\r\n{0}",
- "gettingStarted.findLanguageExts.title": "Supporto completo per tutti i linguaggi",
- "gettingStarted.installGit.description.interpolated": "Installare GIT per tenere traccia delle modifiche apportate nei progetti.\r\n{0}",
- "gettingStarted.installGit.title": "Installa GIT",
- "gettingStarted.intermediate.description": "Suggerimenti e consigli per ottimizzare il flusso di lavoro di sviluppo.",
- "gettingStarted.intermediate.title": "Migliora la produttività",
- "gettingStarted.menuBar.description.interpolated": "La barra dei menu completa è disponibile nel menu a discesa per dare più spazio al codice. Attivarne/Disattivarne la visualizzazione per accedervi più rapidamente. \r\n{0}",
- "gettingStarted.menuBar.title": "Solo i componenti dell'interfaccia utente necessari",
- "gettingStarted.newFile.description": "Aprire un nuovo file senza titolo, un notebook o un editor personalizzato.",
- "gettingStarted.newFile.title": "Nuovo file...",
- "gettingStarted.notebook.title": "Personalizza notebook",
- "gettingStarted.notebookProfile.description": "Consente di modificare il funzionamento dei notebook nel modo preferito",
- "gettingStarted.notebookProfile.title": "Seleziona il layout per i notebook",
- "gettingStarted.openFile.description": "Consente di aprire un file per iniziare a lavorare",
- "gettingStarted.openFile.title": "Apri file...",
- "gettingStarted.openFolder.description": "Consente di aprire una cartella per iniziare a lavorare",
- "gettingStarted.openFolder.title": "Apri cartella...",
- "gettingStarted.openMac.description": "Consente di aprire un file o una cartella per iniziare a lavorare",
- "gettingStarted.openMac.title": "Apri...",
- "gettingStarted.pickColor.description.interpolated": "La combinazione di colori corretta consente di concentrarsi sul codice, non affatica gli occhi ed è facile e divertente da usare.\r\n{0}",
- "gettingStarted.pickColor.title": "Scegli l'aspetto desiderato",
- "gettingStarted.playground.description.interpolated": "Si vuole codificare in modo più rapido e intelligente? Esercitarsi con potenti caratteristiche di modifica del codice nel playground interattivo.\r\n{0}",
- "gettingStarted.playground.title": "Ridefinisci le competenze di modifica",
- "gettingStarted.quickOpen.description.interpolated": "Basta premere un tasto per spostarsi rapidamente tra i file. Suggerimento: per aprire più file, premere il tasto freccia DESTRA.",
- "gettingStarted.quickOpen.title": "Spostamenti rapidi tra i file",
- "gettingStarted.scm.description.interpolated": "Non è più necessario cercare i comandi GIT. I flussi di lavoro GIT e GitHub sono integrati.\r\n{0}",
- "gettingStarted.scm.title": "Tieni traccia del codice con GIT",
- "gettingStarted.scmClone.description.interpolated": "È possibile configurare il controllo della versione predefinito per il progetto per tenere traccia delle modifiche e collaborare con altri utenti.\r\n{0}",
- "gettingStarted.scmSetup.description.interpolated": "È possibile configurare il controllo della versione predefinito per il progetto per tenere traccia delle modifiche e collaborare con altri utenti.\r\n{0}",
- "gettingStarted.settings.description.interpolated": "È possibile modificare ogni aspetto di VS Code e delle estensioni. Per facilitare l'uso, le impostazioni usate più di frequente vengono elencate per prime.\r\n{0}",
- "gettingStarted.settings.title": "Ottimizza le impostazioni personali",
- "gettingStarted.settingsSync.description.interpolated": "È possibile creare il backup delle personalizzazioni essenziali di VS Code per mantenerle aggiornate in tutti i dispositivi.\r\n{0}",
- "gettingStarted.settingsSync.title": "Sincronizza da e verso altri dispositivi",
- "gettingStarted.setup.OpenFolder.description.interpolated": "È tutto impostato per iniziare a scrivere codice. Aprire una cartella di progetto per aggiungere i file al codice VS.\r\n{0}",
- "gettingStarted.setup.OpenFolder.title": "Apri il codice",
- "gettingStarted.setup.OpenFolderWeb.description.interpolated": "La configurazione è stata completata ed è possibile iniziare a scrivere codice. È possibile aprire un progetto locale o un repository remoto per aggiungere i file in VS Code.\r\n{0}\r\n{1}",
- "gettingStarted.setup.description": "Consente di individuare le migliori opzioni per personalizzare VS Code.",
- "gettingStarted.setup.title": "Introduzione a VS Code",
- "gettingStarted.setupWeb.description": "Consente di individuare le migliori opzioni per personalizzare VS Code nel Web.",
- "gettingStarted.setupWeb.title": "Introduzione a VS Code nel Web",
- "gettingStarted.shortcuts.description.interpolated": "Una volta individuati i comandi preferiti, è possibile creare scelte rapide da tastiera personalizzate per l'accesso immediato.\r\n{0}",
- "gettingStarted.shortcuts.title": "Personalizza i collegamenti",
- "gettingStarted.splitview.description.interpolated": "È possibile sfruttare al meglio lo spazio di visualizzazione aprendo i file affiancati, verticalmente e orizzontalmente.\r\n{0}",
- "gettingStarted.splitview.title": "Modifica affiancata",
- "gettingStarted.tasks.description.interpolated": "È possibile creare attività per i flussi di lavoro comuni e sfruttare l'esperienza integrata di esecuzione di script e controllo automatico dei risultati.\r\n{0}",
- "gettingStarted.tasks.title": "Automatizza le attività di progetto",
- "gettingStarted.terminal.description.interpolated": "È possibile eseguire rapidamente i comandi della shell e monitorare l'output di compilazione, proprio accanto al codice.\r\n{0}",
- "gettingStarted.terminal.title": "Comodo terminale integrato",
- "gettingStarted.topLevelGitClone.description": "Clona un repository remoto in una cartella locale",
- "gettingStarted.topLevelGitClone.title": "Clona repository GIT...",
- "gettingStarted.topLevelGitOpen.description": "Consente di connettersi a un repository remoto o a una richiesta pull per esplorare, cercare, modificare ed eseguire il commit",
- "gettingStarted.topLevelGitOpen.title": "Apri repository...",
- "gettingStarted.topLevelShowWalkthroughs.description": "Visualizza una procedura dettagliata nell'editor o in un'estensione",
- "gettingStarted.topLevelShowWalkthroughs.title": "Apri una procedura dettagliata...",
- "gettingStarted.videoTutorial.description.interpolated": "Prima di una serie di brevi e pratiche esercitazioni video sulle funzionalità principali di VS Code.\r\n{0}",
- "gettingStarted.videoTutorial.title": "Introduzione alle funzionalità",
- "gettingStarted.workspaceTrust.description.interpolated": "{0} consente di decidere se le cartelle di progetto devono **consentire o limitare** l'esecuzione automatica di codice ·(necessario per estensioni, debug e così via)·.\r\nL'apertura di un file o una cartella chiede di concedere l'attendibilità. È sempre possibile {1}in seguito.",
- "gettingStarted.workspaceTrust.title": "Esplora e modifica il codice in modo sicuro",
- "initRepo": "Inizializza repository GIT",
- "installGit": "Installa GIT",
- "keyboardShortcuts": "Tasti di scelta rapida",
- "openEditorPlayground": "Apri Playground editor",
- "openFolder": "Apri cartella",
- "openRepository": "Apri repository",
- "openSCM": "Apri controllo del codice sorgente",
- "pickFolder": "Seleziona una cartella",
- "quickOpen": "Apri un file con Quick Open",
- "runProject": "Esegui il progetto",
- "runTasks": "Esegui attività rilevate automaticamente",
- "showTerminal": "Mostra pannello del terminale",
- "splitEditor": "Dividi editor",
- "titleID": "Sfoglia temi colore",
- "toggleMenuBar": "Attiva/Disattiva barra dei menu",
- "tweakSettings": "Perfeziona le impostazioni personali",
- "watch": "Guarda l'esercitazione",
- "workspaceTrust": "Attendibilità dell'area di lavoro"
- },
- "vs/workbench/contrib/welcome/gettingStarted/common/media/example_markdown_media": {
- "HighContrast": "Contrasto elevato",
- "dark": "Scuro",
- "light": "Chiaro",
- "seeMore": "Visualizza altri temi..."
+ "vs/workbench/contrib/webview/browser/webviewElement": {
+ "fatalErrorMessage": "Si è verificato un errore durante il caricamento della webview: {0}"
},
- "vs/workbench/contrib/welcome/gettingStarted/common/media/notebookProfile": {
- "colab": "Colab",
- "default": "Predefinito",
- "jupyter": "Jupyter"
+ "vs/workbench/contrib/webview/electron-browser/webviewCommands": {
+ "iframeWebviewAlert": "Uso di strumenti di sviluppo standard per eseguire il debug di webview basato su iframe",
+ "openToolsDescription": "Apre Strumenti di sviluppo per le webview attive",
+ "openToolsLabel": "Apri strumenti di sviluppo Webview"
},
- "vs/workbench/contrib/welcome/overlay/browser/welcomeOverlay": {
- "hideWelcomeOverlay": "Nascondi panoramica interfaccia",
- "welcomeOverlay": "Panoramica interfaccia utente",
- "welcomeOverlay.commandPalette": "Trova ed esegui tutti i comandi",
- "welcomeOverlay.debug": "Avvia ed esegui il debug",
- "welcomeOverlay.explorer": "Esplora file",
- "welcomeOverlay.extensions": "Gestisci le estensioni",
- "welcomeOverlay.git": "Gestione del codice sorgente",
- "welcomeOverlay.notifications": "Mostra notifiche",
- "welcomeOverlay.problems": "Visualizza errori e avvisi",
- "welcomeOverlay.search": "Cerca nei file",
- "welcomeOverlay.terminal": "Attiva/Disattiva terminale integrato "
+ "vs/workbench/contrib/webviewPanel/browser/webviewCommands": {
+ "editor.action.webvieweditor.findNext": "Trova successivo",
+ "editor.action.webvieweditor.findPrevious": "Trova precedente",
+ "editor.action.webvieweditor.hideFind": "Interrompi ricerca",
+ "editor.action.webvieweditor.showFind": "Mostra ricerca",
+ "refreshWebviewLabel": "Ricarica webview"
},
- "vs/workbench/contrib/welcome/page/browser/welcomePage.contribution": {
- "workbench.startupEditor": "Controlla quale editor viene visualizzato all'avvio se non ne viene ripristinato nessuno dalla sessione precedente.",
- "workbench.startupEditor.newUntitledFile": "Apre un nuovo file senza nome. Valido solo quando si apre una finestra vuota.",
- "workbench.startupEditor.none": "Avvia senza un editor.",
- "workbench.startupEditor.readme": "Aprire il file LEGGIMI all'apertura di una cartella che ne contiene uno, altrimenti tornare a 'welcomePage'. Nota: questa operazione viene eseguita solo come ccnfiguration globale. Verrà ignorata se impostata in un'area di lavoro o in un percorso di configurazione di una cartella.",
- "workbench.startupEditor.welcomePage": "Consente di aprire la home page che include contenuto utile per iniziare a usare VS Code e le estensioni.",
- "workbench.startupEditor.welcomePageInEmptyWorkbench": "Aprire la pagina di benvenuto quando si apre un'area di lavoro vuota."
+ "vs/workbench/contrib/webviewPanel/browser/webviewEditor": {
+ "context.activeWebviewId": "ViewType del pannello webview attualmente attivo."
},
- "vs/workbench/contrib/welcome/walkThrough/browser/editor/editorWalkThrough": {
- "editorWalkThrough": "Playground editor interattivo",
- "editorWalkThrough.title": "Playground editor"
+ "vs/workbench/contrib/webviewPanel/browser/webviewPanel.contribution": {
+ "webview.editor.label": "editor webview"
},
- "vs/workbench/contrib/welcome/walkThrough/browser/walkThrough.contribution": {
- "miPlayground": "Playgrou&&&nd editor",
- "walkThrough.editor.label": "Playground"
+ "vs/workbench/contrib/welcomeDialog/browser/welcomeDialog.contribution": {
+ "workbench.welcome.dialog": "Se l’opzione è abilitata, nell'editor viene visualizzato un widget di benvenuto"
},
- "vs/workbench/contrib/welcome/walkThrough/browser/walkThroughPart": {
- "walkThrough.embeddedEditorBackground": "Colore di sfondo degli editor incorporati nel playground interattivo.",
- "walkThrough.gitNotFound": "Sembra che GIT non sia installato nel sistema.",
- "walkThrough.unboundCommand": "non associato"
+ "vs/workbench/contrib/welcomeDialog/browser/welcomeWidget": {
+ "dialogClose": "Chiudi finestra di dialogo"
},
"vs/workbench/contrib/welcomeGettingStarted/browser/gettingStarted": {
+ "acessibleViewHint": "Ispezionarlo nella visualizzazione accessibile ({0}).\r\n",
+ "acessibleViewHintNoKbOpen": "Ispezionarlo nella visualizzazione accessibile tramite il comando Apri visualizzazione accessibile che attualmente non è attivabile tramite il tasto di scelta rapida.\r\n",
"allDone": "Contrassegna come completato",
"checkboxTitle": "Se selezionata, questa pagina verrà visualizzata all'avvio.",
"close": "Nascondi",
+ "closeAriaLabel": "Nascondi",
"footer": "{0} raccoglie i dati di utilizzo. Leggi i {1} e Scopri come {2}.",
- "getStarted": "Attività iniziali",
"gettingStarted.allStepsComplete": "Tutti i {0} passaggi sono stati completati.",
"gettingStarted.editingEvolved": "Evoluzione dell'editor",
"gettingStarted.keyboardTip": "Suggerimento: usare tasti di scelta rapida ",
"gettingStarted.someStepsComplete": "{0} di {1} passaggi completati",
+ "goBack": "Indietro",
"imageShowing": "Immagine che mostra {0}",
"new": "Nuovo",
"newItems": "Aggiornato",
@@ -10247,40 +16418,51 @@
"show more recents": "Mostra tutte le cartelle recenti {0}",
"showAll": "Altro...",
"start": "Avvia",
+ "stepDone": "Casella di controllo per il passaggio {0}: completato",
+ "stepNotDone": "Casella di controllo per il passaggio {0}: non completato",
"toStart": "all'inizio.",
+ "videoAltText": "Video per {0}",
+ "videoShowing": "Video che mostra {0}",
"walkthroughs": "Procedure dettagliate",
+ "welcome": "Introduzione",
"welcomeAriaLabel": "Panoramica su come iniziare subito a usare l'editor.",
"welcomePage.openFolderWithPath": "Apri la cartella {0} con percorso {1}",
"welcomePage.showOnStartup": "Mostra la pagina iniziale all'avvio"
},
"vs/workbench/contrib/welcomeGettingStarted/browser/gettingStarted.contribution": {
"deprecationMessage": "Deprecato. Usare il valore globale 'workbench.reduceMotion'.",
- "getStarted": "Attività iniziali",
- "help": "Guida",
- "miGetStarted": "Attività iniziali",
- "pickWalkthroughs": "Apri procedura dettagliata...",
+ "miWelcome": "Introduzione",
+ "minWelcomeDescription": "Apre una procedura dettagliata per iniziare a usare VS Code.",
+ "pickWalkthroughs": "Selezionare una procedura dettagliata da aprire",
+ "welcome": "Introduzione",
"welcome.goBack": "Indietro",
"welcome.markStepComplete": "Contrassegna il passaggio come completato",
"welcome.markStepInomplete": "Contrassegna il passaggio come incompleto",
"welcome.showAllWalkthroughs": "Apri procedura dettagliata...",
"workbench.startupEditor": "Controlla quale editor viene visualizzato all'avvio se non ne viene ripristinato nessuno dalla sessione precedente.",
- "workbench.startupEditor.newUntitledFile": "Apre un nuovo file senza nome. Valido solo quando si apre una finestra vuota.",
+ "workbench.startupEditor.newUntitledFile": "Aprire un nuovo file di testo senza nome. Valido solo quando si apre una finestra vuota.",
"workbench.startupEditor.none": "Avvia senza un editor.",
"workbench.startupEditor.readme": "Aprire il file LEGGIMI all'apertura di una cartella che ne contiene uno, altrimenti tornare a 'welcomePage'. Nota: questa operazione viene eseguita solo come ccnfiguration globale. Verrà ignorata se impostata in un'area di lavoro o in un percorso di configurazione di una cartella.",
+ "workbench.startupEditor.terminal": "Aprire un nuovo terminale nell'area degli editor.",
"workbench.startupEditor.welcomePage": "Consente di aprire la home page che include contenuto utile per iniziare a usare VS Code e le estensioni.",
"workbench.startupEditor.welcomePageInEmptyWorkbench": "Aprire la pagina di benvenuto quando si apre un'area di lavoro vuota.",
"workbench.welcomePage.preferReducedMotion": "Se questa opzione è abilitata, riduce il movimento nella pagina iniziale.",
- "workbench.welcomePage.videoTutorials": "Se questa opzione è abilitata, la pagina Guida introduttiva contiene collegamenti aggiuntivi alle esercitazioni video.",
"workbench.welcomePage.walkthroughs.openOnInstall": "Se abilitata, la procedura dettagliata di un'estensione verrà aperta al momento dell'installazione dell'estensione.",
"workspacePlatform": "Piattaforma dell'area di lavoro corrente, che nei contesti remoti o serverless può essere diversa dalla piattaforma dell'interfaccia utente"
},
+ "vs/workbench/contrib/welcomeGettingStarted/browser/gettingStartedAccessibleView": {
+ "gettingStarted.description": "Descrizione: {0}",
+ "gettingStarted.step": "{0}\r\n{1}",
+ "gettingStarted.title": "Titolo: {0}"
+ },
"vs/workbench/contrib/welcomeGettingStarted/browser/gettingStartedColors": {
+ "walkthrough.stepTitle.foreground": "Colore primo piano dell'intestazione di ogni passaggio della procedura dettagliata",
"welcomePage.background": "Colore di sfondo della pagina di benvenuto.",
"welcomePage.progress.background": "Colore primo piano delle barre di avanzamento della pagina di benvenuto.",
"welcomePage.progress.foreground": "Colore di sfondo delle barre di avanzamento della pagina di benvenuto.",
- "welcomePage.tileBackground": "Colore di sfondo dei riquadri nella pagina Attività iniziali.",
- "welcomePage.tileHoverBackground": "Colore di sfondo al passaggio del mouse dei riquadri nella pagina Attività iniziali.",
- "welcomePage.tileShadow": "Colore ombreggiatura dei pulsanti di categoria della procedura dettagliata della pagina iniziale."
+ "welcomePage.tileBackground": "Colore di sfondo per i riquadri nella pagina iniziale.",
+ "welcomePage.tileBorder": "Colore del bordo per i riquadri nella pagina iniziale.",
+ "welcomePage.tileHoverBackground": "Colore di sfondo al passaggio del mouse per i riquadri nella schermata iniziale."
},
"vs/workbench/contrib/welcomeGettingStarted/browser/gettingStartedExtensionPoint": {
"pathDeprecated": "Deprecata. In alternativa, usare `image` o `markdown`",
@@ -10288,6 +16470,7 @@
"walkthroughs": "Aggiunge procedure dettagliate come contributi per consentire agli utenti di iniziare a usare l'estensione.",
"walkthroughs.description": "Descrizione della procedura dettagliata.",
"walkthroughs.featuredFor": "Le procedure dettagliate che corrispondono a uno di questi modelli glob vengono visualizzate come 'In primo piano' nelle aree di lavoro con i file specificati. Ad esempio, una procedura dettagliata per i progetti TypeScript potrebbe specificare 'tsconfig.json '.",
+ "walkthroughs.icon": "Percorso relativo all'icona della procedura dettagliata. Il percorso è relativo alla posizione dell'estensione. Se non specificato, l'icona verrà impostata sull'icona dell'estensione per impostazione predefinita, se disponibile.",
"walkthroughs.id": "Identificatore univoco per questa procedura dettagliata.",
"walkthroughs.steps": "Passaggi da completare in questa procedura dettagliata.",
"walkthroughs.steps.button.deprecated.interpolated": "Deprecato. Utilizzare i collegamenti Markdown nella descrizione invece, ad esempio {0}, {1} o {2}",
@@ -10323,44 +16506,76 @@
"gettingStartedUnchecked": "Usata per rappresentare i passaggi della procedura dettagliata che non sono stati completati"
},
"vs/workbench/contrib/welcomeGettingStarted/browser/gettingStartedInput": {
- "getStarted": "Attività iniziali"
+ "getStarted": "Introduzione",
+ "walkthroughPageTitle": "Procedura dettagliata: {0}"
},
"vs/workbench/contrib/welcomeGettingStarted/browser/gettingStartedService": {
"builtin": "Predefinito",
"developer": "Developer",
+ "resetGettingStartedProgressDescription": "Reimposta lo stato di tutti i passaggi della procedura dettagliata nella home page per visualizzarli come se fossero visualizzati per la prima volta, fornendo un nuovo inizio per l'esperienza iniziale.",
"resetWelcomePageWalkthroughProgress": "Reimpostare stato della procedura dettagliata della pagina iniziale"
},
+ "vs/workbench/contrib/welcomeGettingStarted/browser/startupPage": {
+ "startupPage.markdownPreviewError": "Non è stato possibile aprire l'anteprima markdown: {0}.\r\n\r\n Assicurarsi che l'estensione markdown sia abilitata.",
+ "welcome.displayName": "Pagina iniziale"
+ },
"vs/workbench/contrib/welcomeGettingStarted/common/gettingStartedContent": {
"browseLangExts": "Sfoglia le estensioni del linguaggio",
- "browsePopular": "Sfoglia estensioni Web più richieste",
- "browseRecommended": "Sfoglia le estensioni consigliate",
+ "browsePopular": "Sfoglia estensioni più richieste",
+ "browsePopularWeb": "Sfoglia estensioni Web più richieste",
"cloneRepo": "Clona repository",
"commandPalette": "Apri il riquadro comandi",
- "enableSync": "Abilita Sincronizzazione impostazioni",
+ "enableSync": "Impostazioni di backup e sincronizzazione",
"enableTrust": "abilita attendibilità",
"getting-started-beginner-icon": "Icona usata per la categoria principiante della home page",
- "getting-started-intermediate-icon": "Icona usata per la categoria intermedia della home page",
"getting-started-setup-icon": "Icona usata per la categoria di configurazione della home page",
- "gettingStarted.beginner.description": "Passa direttamente a VS Code per una panoramica delle funzionalità necessarie.",
+ "gettingStarted.accessibilityHelp.description.interpolated": "La finestra di dialogo della Guida sull'accessibilità fornisce informazioni su cosa aspettarsi da una funzionalità e sui comandi/tasti di scelta rapida per utilizzarli.\r\n Con lo stato attivo in un editor, un terminale, un blocco appunti, una risposta alla chat, un commento o una console di debug, la finestra di dialogo pertinente può essere aperta con il comando Apri Guida sull'accessibilità.\r\n{0}",
+ "gettingStarted.accessibilityHelp.title": "Usare la finestra di dialogo della Guida sull'accessibilità per informazioni sulle funzionalità",
+ "gettingStarted.accessibilitySettings.description.interpolated": "Le impostazioni di accessibilità possono essere configurate eseguendo il comando Apri impostazioni accessibilità.\r\n{0}",
+ "gettingStarted.accessibilitySettings.title": "Configura impostazioni accessibilità",
+ "gettingStarted.accessibilitySignals.description.interpolated": "I suoni e gli annunci di accessibilità vengono riprodotti in tutto il workbench per eventi diversi.\r\n È possibile individuare e configurare tali elementi usando i comandi Elenca suoni segnale e Elenca annunci segnale.\r\n{0}\r\n{1}",
+ "gettingStarted.accessibilitySignals.title": "Ottimizzare i segnali di accessibilità da ricevere tramite audio o un dispositivo Braille",
+ "gettingStarted.accessibleView.description.interpolated": "La visualizzazione accessibile è disponibile per il terminale, il passaggio del mouse, le notifiche, i commenti, l'output del notebook, le risposte della chat, i completamenti inline e l'output della console di debug.\r\n Con lo stato attivo in una di queste funzionalità, si può aprire con il comando Apri visualizzazione accessibile.\r\n{0}",
+ "gettingStarted.accessibleView.title": "Gli utenti di utilità per la lettura dello schermo possono esaminare il contenuto riga per riga, carattere per carattere nella visualizzazione accessibile.",
+ "gettingStarted.beginner.description": "Ottieni una panoramica delle funzionalità più essenziali",
"gettingStarted.beginner.title": "Informazioni sulle nozioni fondamentali",
- "gettingStarted.commandPalette.description.interpolated": "I comandi consentono di eseguire qualsiasi attività in VS Code usando la tastiera. Per **fare pratica**, cercare i comandi frequenti per risparmiare tempo.\r\n{0}\r\n__Provare a cercare 'attiva/disattiva visualizzazione'.__",
- "gettingStarted.commandPalette.title": "Un solo collegamento per accedere a tutto",
+ "gettingStarted.beginner.walkthroughPageTitle": "Funzionalità essenziali",
+ "gettingStarted.codeFolding.description.interpolated": "Ridurre o espandere una sezione di codice con il comando Attiva/Disattiva riduzione.\r\n{0}\r\n Ridurre o espandere ricorsivamente con il comando Attiva/Disattiva riduzione in modo ricorsivo\r\n{1}\r\n",
+ "gettingStarted.codeFolding.title": "Usare il code folding per comprimere blocchi di codice e concentrarsi sul codice a cui si è interessati.",
+ "gettingStarted.commandPalette.description.interpolated": "Consente di eseguire comandi senza raggiungere il mouse per eseguire alcuna attività in VS Code.\r\n{0}",
+ "gettingStarted.commandPalette.title": "Sblocca la produttività con il riquadro comandi ",
+ "gettingStarted.commandPaletteAccessibility.description.interpolated": "Esegui comandi senza il mouse per eseguire qualunque attività in VS Code.\r\n{0}",
+ "gettingStarted.commandPaletteAccessibility.title": "Sblocca la produttività con il riquadro comandi ",
+ "gettingStarted.copilotSetup.description": "Puoi usare [Copilot]({0}) per generare codice in più file, correggere gli errori, porre domande sul codice e molto altro ancora usando il linguaggio naturale.",
+ "gettingStarted.copilotSetup.terms": "Continuando con Copilot {0}, si accettano le [Terms]({2}) di {1} e l'[Privacy Statement]({3})",
+ "gettingStarted.copilotSetup.title": "Usa gratuitamente funzionalità di intelligenza artificiale con Copilot",
"gettingStarted.debug.description.interpolated": "Accelerare il ciclo di modifica, build, test e debug configurando una configurazione di avvio.\r\n{0}",
"gettingStarted.debug.title": "Guarda il codice in azione",
+ "gettingStarted.dictation.description.interpolated": "La dettatura consente di scrivere codice e testo usando la voce. Può essere attivata con il comando Voce: Avvia dettatura nell'editor.\r\n{0}\r\n Per la dettatura nel terminale, usare i comandi Voce: Avvia dettatura nel terminale e Voce: Arresta dettatura nel terminale.\r\n{1}\r\n{2}",
+ "gettingStarted.dictation.title": "Usare la dettatura per scrivere codice e testo nell’editor e nel terminale",
"gettingStarted.extensions.description.interpolated": "Le estensioni sono potenziamenti di VS Code. Spaziano da pratici strumenti per la produttività, all'espansione di funzionalità già pronte all'uso, fino all'aggiunta di funzionalità completamente nuove.\r\n{0}",
- "gettingStarted.extensions.title": "Estendibilità senza limiti",
+ "gettingStarted.extensions.title": "Codice con estensioni",
"gettingStarted.extensionsWeb.description.interpolated": "Le estensioni sono potenziamenti di VS Code. Il numero di quelle disponibili nel Web è in continuo aumento.\r\n{0}",
- "gettingStarted.findLanguageExts.description.interpolated": "È possibile scrivere codice in modo più intelligente con evidenziazione della sintassi, completamento del codice, linting e debug. Anche se molti linguaggi sono predefiniti, è possibile aggiungerne altri come estensioni.\r\n{0}",
+ "gettingStarted.findLanguageExts.description.interpolated": "Scrivi codice in modo più intelligente con evidenziazione della sintassi, suggerimenti inline, linting e debug. Anche se molti linguaggi sono predefiniti, è possibile aggiungerne molti altri come estensioni.\r\n{0}",
"gettingStarted.findLanguageExts.title": "Supporto completo per tutti i linguaggi",
- "gettingStarted.installGit.description.interpolated": "Installare GIT per tenere traccia delle modifiche apportate nei progetti.\r\n{0}",
+ "gettingStarted.goToSymbol.description.interpolated": "Il comando Vai al simbolo è utile per spostarsi tra punti di riferimento importanti in un documento.\r\n{0}",
+ "gettingStarted.goToSymbol.title": "Passare ai simboli in un file",
+ "gettingStarted.hover.description.interpolated": "Mentre è in stato attivo nell'editor su una variabile o un simbolo, è possibile evidenziare il puntatore del mouse con il comando Mostra o Apri al passaggio del mouse.\r\n{0}",
+ "gettingStarted.hover.title": "Accedere al passaggio del mouse nell'editor per ottenere altre informazioni su una variabile o un simbolo",
+ "gettingStarted.installGit.description.interpolated": "Installare Git per tenere traccia delle modifiche nei progetti.\r\n{0}\r\n{1}la finestra Ricarica{2} dopo l'installazione per completare l'installazione di Git.",
"gettingStarted.installGit.title": "Installa GIT",
- "gettingStarted.intermediate.description": "Suggerimenti e consigli per ottimizzare il flusso di lavoro di sviluppo.",
- "gettingStarted.intermediate.title": "Migliora la produttività",
+ "gettingStarted.intellisense.description.interpolated": "I suggerimenti di Intellisense possono essere aperti con il comando Attiva Intellisense.\r\n{0}\r\n I suggerimenti inline di IntelliSense possono essere attivati con Attiva suggerimento inline\r\n{1}\r\n Le impostazioni utili includono editor.inlineCompletionsAccessibilityVerbose and editor.screenReaderAnnounceInlineSuggestion.",
+ "gettingStarted.intellisense.title": "Usare IntelliSense per migliorare l'efficienza della scrittura di codice.",
+ "gettingStarted.keyboardShortcuts.description.interpolated": "Una volta individuati i comandi preferiti, crea tasti di scelta rapida personalizzati per l'accesso istantaneo.\r\n{0}",
+ "gettingStarted.keyboardShortcuts.title": "Personalizza i tasti di scelta rapida",
"gettingStarted.menuBar.description.interpolated": "La barra dei menu completa è disponibile nel menu a discesa per dare più spazio al codice. Attivarne/Disattivarne la visualizzazione per accedervi più rapidamente. \r\n{0}",
"gettingStarted.menuBar.title": "Solo i componenti dell'interfaccia utente necessari",
- "gettingStarted.newFile.description": "Aprire un nuovo file senza titolo, un notebook o un editor personalizzato.",
+ "gettingStarted.newFile.description": "Aprire un nuovo file di testo senza titolo, un notebook o un editor personalizzato.",
"gettingStarted.newFile.title": "Nuovo file...",
+ "gettingStarted.newWorkspaceChat.description": "Consente di chattare per creare una nuova area di lavoro",
+ "gettingStarted.newWorkspaceChat.title": "Genera nuova area di lavoro...",
"gettingStarted.notebook.title": "Personalizza notebook",
+ "gettingStarted.notebook.walkthroughPageTitle": "Notebooks",
"gettingStarted.notebookProfile.description": "Consente di modificare il funzionamento dei notebook nel modo preferito",
"gettingStarted.notebookProfile.title": "Seleziona il layout per i notebook",
"gettingStarted.openFile.description": "Consente di aprire un file per iniziare a lavorare",
@@ -10369,63 +16584,80 @@
"gettingStarted.openFolder.title": "Apri cartella...",
"gettingStarted.openMac.description": "Consente di aprire un file o una cartella per iniziare a lavorare",
"gettingStarted.openMac.title": "Apri...",
- "gettingStarted.pickColor.description.interpolated": "La combinazione di colori corretta consente di concentrarsi sul codice, non affatica gli occhi ed è facile e divertente da usare.\r\n{0}",
- "gettingStarted.pickColor.title": "Scegli l'aspetto desiderato",
- "gettingStarted.playground.description.interpolated": "Si vuole codificare in modo più rapido e intelligente? Esercitarsi con potenti caratteristiche di modifica del codice nel playground interattivo.\r\n{0}",
- "gettingStarted.playground.title": "Ridefinisci le competenze di modifica",
+ "gettingStarted.pickColor.description.interpolated": "Il tema corretto consente di concentrarsi sul codice, non affatica gli occhi ed è facile e divertente da usare.\r\n{0}",
+ "gettingStarted.pickColor.title": "Scegli il tema",
"gettingStarted.quickOpen.description.interpolated": "Basta premere un tasto per spostarsi rapidamente tra i file. Suggerimento: per aprire più file, premere il tasto freccia DESTRA.",
"gettingStarted.quickOpen.title": "Spostamenti rapidi tra i file",
"gettingStarted.scm.description.interpolated": "Non è più necessario cercare i comandi GIT. I flussi di lavoro GIT e GitHub sono integrati.\r\n{0}",
"gettingStarted.scm.title": "Tieni traccia del codice con GIT",
"gettingStarted.scmClone.description.interpolated": "È possibile configurare il controllo della versione predefinito per il progetto per tenere traccia delle modifiche e collaborare con altri utenti.\r\n{0}",
"gettingStarted.scmSetup.description.interpolated": "È possibile configurare il controllo della versione predefinito per il progetto per tenere traccia delle modifiche e collaborare con altri utenti.\r\n{0}",
- "gettingStarted.settings.description.interpolated": "È possibile modificare ogni aspetto di VS Code e delle estensioni. Per facilitare l'uso, le impostazioni usate più di frequente vengono elencate per prime.\r\n{0}",
"gettingStarted.settings.title": "Ottimizza le impostazioni personali",
- "gettingStarted.settingsSync.description.interpolated": "È possibile creare il backup delle personalizzazioni essenziali di VS Code per mantenerle aggiornate in tutti i dispositivi.\r\n{0}",
- "gettingStarted.settingsSync.title": "Sincronizza da e verso altri dispositivi",
- "gettingStarted.setup.OpenFolder.description.interpolated": "È tutto impostato per iniziare a scrivere codice. Aprire una cartella di progetto per aggiungere i file al codice VS.\r\n{0}",
+ "gettingStarted.settingsAndSync.description.interpolated": "Personalizzare ogni aspetto di VS Code e [sync](command:workbench.userDataSync.actions.turnOn) le personalizzazioni tra i dispositivi.\r\n{0}",
+ "gettingStarted.settingsSync.description.interpolated": "È possibile creare il backup delle personalizzazioni essenziali di per mantenerle aggiornate in tutti i dispositivi.\r\n{0}",
+ "gettingStarted.settingsSync.title": "Sincronizzazione delle impostazioni tra più dispositivi",
"gettingStarted.setup.OpenFolder.title": "Apri il codice",
"gettingStarted.setup.OpenFolderWeb.description.interpolated": "La configurazione è stata completata ed è possibile iniziare a scrivere codice. È possibile aprire un progetto locale o un repository remoto per aggiungere i file in VS Code.\r\n{0}\r\n{1}",
- "gettingStarted.setup.description": "Consente di individuare le migliori opzioni per personalizzare VS Code.",
+ "gettingStarted.setup.description": "Personalizza l'editor, scopri le nozioni di base e inizia a scrivere codice",
"gettingStarted.setup.title": "Introduzione a VS Code",
- "gettingStarted.setupWeb.description": "Consente di individuare le migliori opzioni per personalizzare VS Code nel Web.",
- "gettingStarted.setupWeb.title": "Introduzione a VS Code nel Web",
+ "gettingStarted.setup.walkthroughPageTitle": "Configurare VS Code",
+ "gettingStarted.setupAccessibility.description": "Informazioni sugli strumenti e i collegamenti che rendono accessibile VS Code. Si noti che alcune azioni non sono utilizzabili nel contesto della procedura dettagliata.",
+ "gettingStarted.setupAccessibility.title": "Introduzione alle funzionalità di accessibilità",
+ "gettingStarted.setupAccessibility.walkthroughPageTitle": "Configurare accessibilità VS Code",
+ "gettingStarted.setupWeb.description": "Personalizza l'editor, scopri le nozioni di base e inizia a scrivere codice",
+ "gettingStarted.setupWeb.title": "Introduzione a VS Code per il Web",
+ "gettingStarted.setupWeb.walkthroughPageTitle": "Configurare VS Code Web",
"gettingStarted.shortcuts.description.interpolated": "Una volta individuati i comandi preferiti, è possibile creare scelte rapide da tastiera personalizzate per l'accesso immediato.\r\n{0}",
"gettingStarted.shortcuts.title": "Personalizza i collegamenti",
- "gettingStarted.splitview.description.interpolated": "È possibile sfruttare al meglio lo spazio di visualizzazione aprendo i file affiancati, verticalmente e orizzontalmente.\r\n{0}",
- "gettingStarted.splitview.title": "Modifica affiancata",
"gettingStarted.tasks.description.interpolated": "È possibile creare attività per i flussi di lavoro comuni e sfruttare l'esperienza integrata di esecuzione di script e controllo automatico dei risultati.\r\n{0}",
"gettingStarted.tasks.title": "Automatizza le attività di progetto",
"gettingStarted.terminal.description.interpolated": "È possibile eseguire rapidamente i comandi della shell e monitorare l'output di compilazione, proprio accanto al codice.\r\n{0}",
- "gettingStarted.terminal.title": "Comodo terminale integrato",
+ "gettingStarted.terminal.title": "Terminale predefinito",
"gettingStarted.topLevelGitClone.description": "Clona un repository remoto in una cartella locale",
"gettingStarted.topLevelGitClone.title": "Clona repository GIT...",
"gettingStarted.topLevelGitOpen.description": "Consente di connettersi a un repository remoto o a una richiesta pull per esplorare, cercare, modificare ed eseguire il commit",
"gettingStarted.topLevelGitOpen.title": "Apri repository...",
- "gettingStarted.topLevelShowWalkthroughs.description": "Visualizza una procedura dettagliata nell'editor o in un'estensione",
- "gettingStarted.topLevelShowWalkthroughs.title": "Apri una procedura dettagliata...",
- "gettingStarted.topLevelVideoTutorials.description": "Guarda la nostra serie di brevi e pratiche esercitazioni video sulle funzionalità principali di VS Code.",
- "gettingStarted.topLevelVideoTutorials.title": "Guarda le esercitazioni video",
+ "gettingStarted.topLevelOpenTunnel.description": "Connettersi a un computer remoto tramite un tunnel",
+ "gettingStarted.topLevelOpenTunnel.title": "Apri tunnel...",
+ "gettingStarted.topLevelRemoteOpen.description": "Connetti alle aree di lavoro di sviluppo remoto.",
+ "gettingStarted.topLevelRemoteOpen.title": "Connetti a...",
+ "gettingStarted.verbositySettings.description.interpolated": "Le impostazioni del livello di dettaglio per le utilità per la lettura dello schermo sono disponibili per le funzionalità del workbench in modo che, una volta acquisita familiarità con una funzionalità, si possa evitare di ascoltare suggerimenti su come utilizzarla. Ad esempio, le funzionalità per cui esiste una finestra di dialogo della Guida all'accessibilità indicheranno come aprire la finestra di dialogo finché non verrà disabilitata l'impostazione del livello di dettaglio per tale funzionalità.\r\n Queste e altre impostazioni di accessibilità possono essere configurate eseguendo il comando Apri impostazioni accessibilità.\r\n{0}",
+ "gettingStarted.verbositySettings.title": "Controllare il livello di dettaglio delle etichette aria",
"gettingStarted.videoTutorial.description.interpolated": "Prima di una serie di brevi e pratiche esercitazioni video sulle funzionalità principali di VS Code.\r\n{0}",
- "gettingStarted.videoTutorial.title": "Introduzione alle funzionalità",
+ "gettingStarted.videoTutorial.title": "Guarda le esercitazioni video",
"gettingStarted.workspaceTrust.description.interpolated": "{0} consente di decidere se le cartelle di progetto devono **consentire o limitare** l'esecuzione automatica di codice ·(necessario per estensioni, debug e così via)·.\r\nL'apertura di un file o una cartella chiede di concedere l'attendibilità. È sempre possibile {1}in seguito.",
"gettingStarted.workspaceTrust.title": "Esplora e modifica il codice in modo sicuro",
"initRepo": "Inizializza repository GIT",
"installGit": "Installa GIT",
"keyboardShortcuts": "Tasti di scelta rapida",
- "openEditorPlayground": "Apri Playground editor",
+ "listSignalAnnouncements": "Elenca annunci segnale",
+ "listSignalSounds": "Elenca suoni segnale",
+ "openAccessibilityHelp": "Aprire guida all’accessibilità",
+ "openAccessibilitySettings": "Apri impostazioni accessibilità",
+ "openAccessibleView": "Apri visualizzazione accessibile",
"openFolder": "Apri cartella",
+ "openGoToSymbol": "Vai al simbolo",
"openRepository": "Apri repository",
"openSCM": "Apri controllo del codice sorgente",
- "pickFolder": "Seleziona una cartella",
+ "openVerbositySettings": "Apri impostazioni accessibilità",
"quickOpen": "Apri un file con Quick Open",
"runProject": "Esegui il progetto",
"runTasks": "Esegui attività rilevate automaticamente",
- "showTerminal": "Mostra pannello del terminale",
- "splitEditor": "Dividi editor",
+ "settings": "{0} Copilot può mostrare suggerimenti di [codice pubblico]({1}) e usare i dati per migliorare il prodotto. È possibile modificare queste [impostazioni]({2}) in qualsiasi momento.",
+ "setupCopilotButton.chatWithCopilot": "Inizia a chattare",
+ "setupCopilotButton.setup": "Usa funzionalità IA",
+ "showOrFocusHover": "Mostra o sposta lo stato attivo al passaggio del mouse",
+ "showTerminal": "Apri terminale",
+ "terminalStartDictation": "Terminale: Avvia dettatura nel terminale",
+ "terminalStopDictation": "Terminale: Arresta dettatura nel terminale",
"titleID": "Sfoglia temi colore",
+ "toggleDictation": "Voce: Avvia dettatura nell'editor",
+ "toggleFold": "Attiva/Disattiva riduzione",
+ "toggleFoldRecursively": "Attiva/Disattiva riduzione in modo ricorsivo",
"toggleMenuBar": "Attiva/Disattiva barra dei menu",
- "tweakSettings": "Perfeziona le impostazioni personali",
+ "triggerInlineSuggestion": "Attiva suggerimento inline",
+ "triggerIntellisense": "Attivare IntelliSense",
+ "tweakSettings": "Aprire Impostazioni",
"watch": "Guarda l'esercitazione",
"workspaceTrust": "Attendibilità dell'area di lavoro"
},
@@ -10437,10 +16669,16 @@
"vs/workbench/contrib/welcomeGettingStarted/common/media/theme_picker": {
"HighContrast": "Contrasto elevato scuro",
"HighContrastLight": "Contrasto elevato chiaro",
- "dark": "Scuro",
- "light": "Chiaro",
+ "dark": "Moderno scuro",
+ "light": "Moderno chiaro",
"seeMore": "Visualizza altri temi..."
},
+ "vs/workbench/contrib/welcomeGettingStarted/common/media/theme_picker_small": {
+ "HighContrast": "Contrasto elevato scuro",
+ "HighContrastLight": "Contrasto elevato chiaro",
+ "dark": "Moderno scuro",
+ "light": "Moderno chiaro"
+ },
"vs/workbench/contrib/welcomeOverlay/browser/welcomeOverlay": {
"hideWelcomeOverlay": "Nascondi panoramica interfaccia",
"welcomeOverlay": "Panoramica interfaccia utente",
@@ -10452,15 +16690,8 @@
"welcomeOverlay.notifications": "Mostra notifiche",
"welcomeOverlay.problems": "Visualizza errori e avvisi",
"welcomeOverlay.search": "Cerca nei file",
- "welcomeOverlay.terminal": "Attiva/Disattiva terminale integrato"
- },
- "vs/workbench/contrib/welcomePage/browser/welcomePage.contribution": {
- "workbench.startupEditor": "Controlla quale editor viene visualizzato all'avvio se non ne viene ripristinato nessuno dalla sessione precedente.",
- "workbench.startupEditor.newUntitledFile": "Apre un nuovo file senza nome. Valido solo quando si apre una finestra vuota.",
- "workbench.startupEditor.none": "Avvia senza un editor.",
- "workbench.startupEditor.readme": "Aprire il file LEGGIMI all'apertura di una cartella che ne contiene uno, altrimenti tornare a 'welcomePage'. Nota: questa operazione viene eseguita solo come ccnfiguration globale. Verrà ignorata se impostata in un'area di lavoro o in un percorso di configurazione di una cartella.",
- "workbench.startupEditor.welcomePage": "Consente di aprire la home page che include contenuto utile per iniziare a usare VS Code e le estensioni.",
- "workbench.startupEditor.welcomePageInEmptyWorkbench": "Aprire la pagina di benvenuto quando si apre un'area di lavoro vuota."
+ "welcomeOverlay.terminal": "Attiva/Disattiva terminale integrato",
+ "welcomeOverlayBackground": "Colore di sfondo welcomeOverlay."
},
"vs/workbench/contrib/welcomeViews/common/newFile.contribution": {
"Built-In": "Predefinito",
@@ -10468,9 +16699,10 @@
"change keybinding": "Configura tasto di scelta rapida",
"file": "File",
"miNewFile2": "File di testo",
- "miNewFileWithName": "Nuovo file ({0})",
+ "miNewFileWithName": "Crea nuovo file ({0})",
+ "newFilePlaceholder": "Seleziona tipo di file o immetti nome file...",
+ "newFileTitle": "Nuovo file...",
"notebook": "Blocco appunti",
- "selectFileType": "Seleziona tipo di file...",
"welcome.newFile": "Nuovo file..."
},
"vs/workbench/contrib/welcomeViews/common/viewsWelcomeContribution": {
@@ -10487,68 +16719,68 @@
},
"vs/workbench/contrib/welcomeWalkthrough/browser/editor/editorWalkThrough": {
"editorWalkThrough": "Playground editor interattivo",
- "editorWalkThrough.title": "Playground editor"
+ "editorWalkThrough.title": "Playground editor",
+ "editorWalkThroughMetadata": "Apre un playground interattivo per esplorare l'editor."
},
"vs/workbench/contrib/welcomeWalkthrough/browser/walkThrough.contribution": {
"miPlayground": "Playgrou&&nd editor",
"walkThrough.editor.label": "Playground"
},
"vs/workbench/contrib/welcomeWalkthrough/browser/walkThroughPart": {
- "walkThrough.embeddedEditorBackground": "Colore di sfondo degli editor incorporati nel playground interattivo.",
"walkThrough.gitNotFound": "Sembra che GIT non sia installato nel sistema.",
"walkThrough.unboundCommand": "non associato"
},
+ "vs/workbench/contrib/welcomeWalkthrough/common/walkThroughUtils": {
+ "walkThrough.embeddedEditorBackground": "Colore di sfondo degli editor incorporati nel playground interattivo."
+ },
"vs/workbench/contrib/workspace/browser/workspace.contribution": {
- "addWorkspaceFolderDetail": "È in corso l'aggiunta di file a un'area di lavoro attendibile che non è attualmente attendibile. Si ritengono gli autori di questi nuovi file attendibili?",
+ "addWorkspaceFolderDetail": "È in corso l'aggiunta di file che non sono attualmente attendibili a un'area di lavoro attendibile. Si ritengono gli autori di questi nuovi file attendibili?",
"addWorkspaceFolderMessage": "Si considerano attendibili gli autori dei file in questa cartella?",
- "cancel": "Annulla",
"cancelWorkspaceTrustButton": "Annulla",
"checkboxString": "Considerare attendibili gli autori di tutti i file nella cartella padre '{0}'",
- "configureWorkspaceTrust": "Configurare area di lavoro",
- "dontTrustFolderOptionDescription": "Sfogliare la cartella in modalità con restrizioni",
- "dontTrustOption": "No, non mi fido degli autori",
- "dontTrustWorkspaceOptionDescription": "Esplora area di lavoro in modalità con restrizioni",
+ "configureWorkspaceTrustSettings": "Configurare le impostazioni di attendibilità dell'area di lavoro",
+ "dontTrustFolderOptionDescription": "Sfoglia la cartella in Modalità con restrizioni",
+ "dontTrustOption": "&&No, non mi fido degli autori",
+ "dontTrustWorkspaceOptionDescription": "Esplora area di lavoro in Modalità con restrizioni",
"folderStartupTrustDetails": "{0} fornisce funzionalità che possono eseguire automaticamente i file in questa cartella.",
"folderTrust": "Si considerano attendibili gli autori dei file in questa cartella?",
- "grantFolderTrustButton": "Cartella attendibile e continua",
- "grantWorkspaceTrustButton": "Considera attendibile l'area di lavoro e continua",
- "immediateTrustRequestLearnMore": "If you don't trust the authors of these files, we do not recommend continuing as the files may be malicious. See [our docs](https://aka.ms/vscode-workspace-trust) to learn more.",
+ "grantFolderTrustButton": "&&Considera attendibile la cartella e continua",
+ "grantWorkspaceTrustButton": "&&Considera attendibile l'area di lavoro e continua",
+ "immediateTrustRequestLearnMore": "Se non si considerano attendibili gli autori di questi file, non è consigliabile continuare perché i file possono essere dannosi. Vedere [our docs](https://aka.ms/vscode-workspace-trust) per altre informazioni.",
"immediateTrustRequestMessage": "Una funzionalità che si sta provando a usare potrebbe rappresentare un rischio per la sicurezza se non si considera attendibile l'origine dei file o delle cartelle attualmente aperti.",
"manageWorkspaceTrust": "Gestisci attendibilità dell'area di lavoro",
- "manageWorkspaceTrustButton": "Gestisci",
- "newWindow": "Apri in Modalità con restrizioni",
+ "manageWorkspaceTrustButton": "&&Gestisci",
+ "newWindow": "Apri in &&Modalità con restrizioni",
"no": "No",
- "open": "Apri",
- "openLooseFileLearnMore": "Se non si considerano attendibili gli autori di questi file, è consigliabile aprirli in Modalità con restrizioni in una nuova finestra perché i file possono essere dannosi. Per altre informazioni, vedere la [documentazione](https://aka.ms/vscode-workspace-trust).",
- "openLooseFileMesssage": "Si considerano attendibili gli autori di questi file?",
+ "open": "&&Apri",
+ "openLooseFileLearnMore": "Se non ritieni attendibili gli autori dei file, ti consigliamo di aprirli in Modalità con restrizioni in una nuova finestra in quanto i file potrebbero essere dannosi. Per altre informazioni, vedi la [documentazione](https://aka.ms/vscode-workspace-trust).",
"openLooseFileWindowDetails": "Si sta provando ad aprire file non attendibili in una finestra attendibile.",
+ "openLooseFileWindowMesssage": "Consentire l'accesso a file non attendibili in questa finestra?",
"openLooseFileWorkspaceCheckbox": "Memorizza la decisione per tutte le aree di lavoro",
"openLooseFileWorkspaceDetails": "Si sta provando ad aprire file non attendibili in un'area di lavoro attendibile.",
- "restrictedModeBannerAriaLabelFolder": "La modalità con restrizioni è destinata all'esplorazione del codice sicuro. Considerare attendibile questa cartella per abilitare tutte le funzionalità. Usare i tasti di spostamento per accedere alle azioni del banner.",
- "restrictedModeBannerAriaLabelWindow": "La modalità con restrizioni è destinata all'esplorazione del codice sicuro. Considerare attendibile questa finestra per abilitare tutte le funzionalità. Usare i tasti di spostamento per accedere alle azioni del banner.",
- "restrictedModeBannerAriaLabelWorkspace": "La modalità con restrizioni è destinata all'esplorazione del codice sicuro. Considerare attendibile quest’area di lavoro per abilitare tutte le funzionalità. Usare i tasti di spostamento per accedere alle azioni del banner.",
+ "openLooseFileWorkspaceMesssage": "Consentire l'accesso a file non attendibili in questa area di lavoro?",
+ "restrictedModeBannerAriaLabelFolder": "La Modalità con restrizioni è destinata all'esplorazione del codice sicuro. Considera attendibile questa cartella per abilitare tutte le funzionalità. Usa i tasti di spostamento per accedere alle azioni del banner.",
+ "restrictedModeBannerAriaLabelWindow": "La Modalità con restrizioni è destinata all'esplorazione del codice sicuro. Considera attendibile questa finestra per abilitare tutte le funzionalità. Usa i tasti di spostamento per accedere alle azioni del banner.",
+ "restrictedModeBannerAriaLabelWorkspace": "La Modalità con restrizioni è destinata all'esplorazione del codice sicuro. Considera attendibile quest’area di lavoro per abilitare tutte le funzionalità. Usa i tasti di spostamento per accedere alle azioni del banner.",
"restrictedModeBannerLearnMore": "Altre informazioni",
"restrictedModeBannerManage": "Gestisci",
- "restrictedModeBannerMessageFolder": "La modalità con restrizioni è destinata all'esplorazione del codice sicuro. Considerare attendibile questa cartella per abilitare tutte le funzionalità.",
- "restrictedModeBannerMessageWindow": "La modalità con restrizioni è destinata all'esplorazione del codice sicuro. Considerare attendibile questa finestra per abilitare tutte le funzionalità.",
- "restrictedModeBannerMessageWorkspace": "La modalità con restrizioni è destinata all'esplorazione del codice sicuro. Considerare attendibile quest’area di lavoro per abilitare tutte le funzionalità.",
- "securityConfigurationTitle": "Sicurezza",
- "startupTrustRequestLearnMore": "If you don't trust the authors of these files, we recommend to continue in restricted mode as the files may be malicious. See [our docs](https://aka.ms/vscode-workspace-trust) to learn more.",
+ "restrictedModeBannerMessageFolder": "La Modalità con restrizioni è destinata all'esplorazione del codice sicuro. Considera attendibile questa cartella per abilitare tutte le funzionalità.",
+ "restrictedModeBannerMessageWindow": "La Modalità con restrizioni è destinata all'esplorazione del codice sicuro. Considera attendibile questa finestra per abilitare tutte le funzionalità.",
+ "restrictedModeBannerMessageWorkspace": "La Modalità con restrizioni è destinata all'esplorazione del codice sicuro. Considera attendibile quest'area di lavoro per abilitare tutte le funzionalità.",
+ "startupTrustRequestLearnMore": "Se non consideri attendibili gli autori di questi file, ti consigliamo di continuare in Modalità con restrizioni perché i file possono essere dannosi. Vedi [our docs](https://aka.ms/vscode-workspace-trust) per altre informazioni.",
"status.WorkspaceTrust": "Attendibilità dell'area di lavoro",
- "status.ariaTrustedFolder": "Questa cartella è attendibile.",
- "status.ariaTrustedWindow": "La finestra è attendibile.",
- "status.ariaTrustedWorkspace": "Questa area di lavoro è attendibile.",
"status.ariaUntrustedFolder": "Modalità con restrizioni: alcune funzionalità sono disabilitate perché questa cartella non è attendibile.",
"status.ariaUntrustedWindow": "Modalità con restrizioni: alcune funzionalità sono disabilitate perché questa finestra non è attendibile.",
- "status.ariaUntrustedWorkspace": "Modalità con restrizioni: alcune funzionalità sono disabilitate perché quest’area di lavoro non è attendibile.",
- "status.tooltipUntrustedFolder2": "In esecuzione in modalità con restrizioni\r\n\r\nAlcune [funzionalità sono disabilitate]({0}) perché questa [cartella non è attendibile]({1}).",
- "status.tooltipUntrustedWindow2": "In esecuzione in modalità con restrizioni\r\n\r\nAlcune [funzionalità sono disabilitate]({0}) perché questa [finestra non è attendibile]({1}).",
- "status.tooltipUntrustedWorkspace2": "In esecuzione in modalità con restrizioni\r\n\r\nAlcune [funzionalità sono disabilitate]({0}) perché questa [area di lavoro non è attendibile]({1}).",
+ "status.ariaUntrustedWorkspace": "Modalità con restrizioni: alcune funzionalità sono disabilitate perché quest'area di lavoro non è attendibile.",
+ "status.tooltipUntrustedFolder2": "In esecuzione in Modalità con restrizioni\r\n\r\nAlcune [funzionalità sono disabilitate]({0}) perché questa [cartella non è attendibile]({1}).",
+ "status.tooltipUntrustedWindow2": "In esecuzione in Modalità con restrizioni\r\n\r\nAlcune [funzionalità sono disabilitate]({0}) perché questa [finestra non è attendibile]({1}).",
+ "status.tooltipUntrustedWorkspace2": "In esecuzione in Modalità con restrizioni\r\n\r\nAlcune [funzionalità sono disabilitate]({0}) perché questa [area di lavoro non è attendibile]({1}).",
"trustFolderOptionDescription": "Cartella attendibile e Abilita tutte le funzionalità",
- "trustOption": "Sì, mi fido degli autori",
+ "trustOption": "&&Sì, mi fido degli autori",
"trustWorkspaceOptionDescription": "Considera attendibile l'area di lavoro e abilita tutte le funzionalità",
+ "untrusted": "Modalità con restrizioni",
"workspace.trust.banner.always": "Mostra il banner ogni volta che viene aperta un'area di lavoro non attendibile.",
- "workspace.trust.banner.description": "Controllare quando viene visualizzato il banner in modalità con restrizioni.",
+ "workspace.trust.banner.description": "Controlla quando viene visualizzato il banner in Modalità con restrizioni.",
"workspace.trust.banner.never": "Non mostrare il banner quando viene aperta un'area di lavoro non attendibile.",
"workspace.trust.banner.untilDismissed": "Mostra il banner fino a quando un'area di lavoro non attendibile aperta non viene chiusa.",
"workspace.trust.description": "Controlla se l'attendibilità dell'area di lavoro è abilitata all'interno di VS Code.",
@@ -10558,14 +16790,13 @@
"workspace.trust.startupPrompt.never": "Non richiedere attendibilità ogni volta che viene aperta un'area di lavoro non attendibile.",
"workspace.trust.startupPrompt.once": "Richiedi attendibilità la prima volta che viene aperta un'area di lavoro non attendibile.",
"workspace.trust.untrustedFiles.description": "Controlla come gestire l'apertura di file non attendibili in un'area di lavoro attendibile. Questa impostazione si applica anche all'apertura di file in una finestra vuota resa attendibile tramite '#{0}#'.",
- "workspace.trust.untrustedFiles.newWindow": "Aprire sempre i file non attendibili in una finestra separata in modalità con restrizioni senza chiedere conferma.",
+ "workspace.trust.untrustedFiles.newWindow": "Apri sempre i file non attendibili in una finestra separata in Modalità con restrizioni senza chiedere conferma.",
"workspace.trust.untrustedFiles.open": "Consentire sempre l'introduzione di file non attendibili in un'area di lavoro attendibile senza chiedere conferma.",
"workspace.trust.untrustedFiles.prompt": "Chiedere come gestire i file non attendibili per ogni area di lavoro. Una volta introdotti i file non attendibili in un'area di lavoro attendibile, non verrà visualizzata di nuovo la richiesta.",
"workspaceStartupTrustDetails": "{0} fornisce funzionalità che possono eseguire automaticamente i file in quest’area di lavoro.",
"workspaceTrust": "Si considerano attendibili gli autori dei file in quest’area di lavoro?",
"workspaceTrustEditor": "Editor attendibilità dell'area di lavoro",
- "workspacesCategory": "Aree di lavoro",
- "yes": "Sì"
+ "workspacesCategory": "Aree di lavoro"
},
"vs/workbench/contrib/workspace/browser/workspaceTrustEditor": {
"addButton": "Aggiungi cartella",
@@ -10577,6 +16808,7 @@
"folderPickerIcon": "Icona per l'icona di selezione della cartella nell'editor attendibilità dell'area di lavoro.",
"hostColumnLabel": "Host",
"invalidTrust": "Non è possibile considerare attendibili singole cartelle all'interno di un repository.",
+ "keyboardShortcut": "Tasti di scelta rapida: {0}",
"localAuthority": "Locale",
"no untrustedSettings": "Le impostazioni dell'area di lavoro che richiedono attendibilità non sono applicate",
"noTrustedFoldersDescriptions": "Non sono ancora stati considerati attendibili file di area di lavoro o cartelle.",
@@ -10594,7 +16826,7 @@
"trustUri": "Cartella attendibile",
"trustedDebugging": "Il debug è abilitato",
"trustedDescription": "Tutte le funzionalità sono abilitate perché è stata concessa l’attendibilità all'area di lavoro.",
- "trustedExtensions": "Tutte le estensioni sono abilitate",
+ "trustedExtensions": "Tutte le estensioni abilitate sono attive",
"trustedFolder": "In una cartella attendibile",
"trustedFolderAriaLabel": "{0}, attendibile",
"trustedFolderSubtitle": "Si considerano attendibili gli autori dei file nella cartella corrente. Tutte le caratteristiche sono abilitate:",
@@ -10613,18 +16845,18 @@
"trustedWorkspace": "In un'area di lavoro attendibile",
"trustedWorkspaceSubtitle": "Si considerano attendibili gli autori dei file nell'area di lavoro corrente. Tutte le caratteristiche sono abilitate:",
"untrustedDebugging": "Il debug è disabilitato.",
- "untrustedDescription": "{0} è in modalità limitata per l'esplorazione del codice gestito.",
+ "untrustedDescription": "{0} è in Modalità con restrizioni per l'esplorazione del codice gestito.",
"untrustedExtensions": "[{0} Estensioni]({1}) sono disabilitate o con funzionalità limitate",
"untrustedFolderReason": "Questa cartella è attendibile tramite le voci in grassetto nelle cartelle attendibili seguenti.",
"untrustedFolderSubtitle": "Gli autori dei file nella cartella corrente non sono attendibili. Le funzionalità seguenti sono disabilitate:",
- "untrustedHeader": "Ci si trova in modalità con restrizioni",
+ "untrustedHeader": "Ti trovi in Modalità con restrizioni",
"untrustedSettings": "[{0} impostazioni dell’area di lavoro]({1}) non sono applicate",
"untrustedTasks": "Le attività non sono consentite per l'esecuzione",
"untrustedWindowSubtitle": "Gli autori dei file nella finestra corrente non sono attendibili. Le funzionalità seguenti sono disabilitate:",
- "untrustedWorkspace": "In modalità con restrizioni",
+ "untrustedWorkspace": "In Modalità con restrizioni",
"untrustedWorkspaceReason": "Questa area di lavoro è attendibile tramite le voci in grassetto nelle cartelle attendibili seguenti.",
"untrustedWorkspaceSubtitle": "Gli autori dei file nell’area di lavoro corrente non sono attendibili. Le funzionalità seguenti sono disabilitate:",
- "workspaceTrustEditorHeaderActions": "[Configure your settings]({0}) or [learn more](https://aka.ms/vscode-workspace-trust).",
+ "workspaceTrustEditorHeaderActions": "[Configure your settings] ({0}) o [learn more](https://aka.ms/vscode-workspace-trust).",
"xListIcon": "Icona per la croce nell'editor attendibilità dell'area di lavoro."
},
"vs/workbench/contrib/workspace/common/workspace": {
@@ -10632,53 +16864,90 @@
"workspaceTrustedCtx": "Indica se l'area di lavoro corrente è stata considerata attendibile dall'utente."
},
"vs/workbench/contrib/workspaces/browser/workspaces.contribution": {
+ "alreadyOpen": "Questa area di lavoro è già aperta.",
+ "foundWorkspace": "Questa cartella contiene il file dell'area di lavoro '{0}'. Aprirlo? [Altre informazioni]({1}) sui file dell'area di lavoro.",
+ "foundWorkspaces": "Questa cartella contiene più file dell'area di lavoro. Vuoi aprirne uno? [Ulteriori informazioni]({0}) sui file dell'area di lavoro.",
"openWorkspace": "Apri area di lavoro",
"selectToOpen": "Selezionare un'area di lavoro da aprire",
- "selectWorkspace": "Seleziona area di lavoro",
- "workspaceFound": "Questa cartella contiene il file dell'area di lavoro '{0}'. Aprirlo? [Altre informazioni]({1}) sui file dell'area di lavoro.",
- "workspacesFound": "Questa cartella contiene più file nell'area di lavoro. Vuoi aprire uno? [Ulteriori informazioni] ({0}) sui file nell'area di lavoro."
+ "selectWorkspace": "Seleziona area di lavoro"
+ },
+ "vs/workbench/services/accounts/common/defaultAccount": {
+ "sign in": "Accedi"
},
"vs/workbench/services/actions/common/menusExtensionPoint": {
+ "command name": "ID",
+ "command title": "Titolo",
+ "commands": "Comandi",
"comment.actions": "Menu di scelta rapida del commento aggiunto come contributo, visualizzato sotto forma di pulsanti sotto l'editor dei commenti",
+ "comment.commentContext": "Menu di scelta rapida del commento aggiunto, visualizzato come menu di scelta rapida in un singolo commento nella visualizzazione di anteprima del thread del commento.",
"comment.title": "Menu del titolo del commento aggiunto come contributo",
"commentThread.actions": "Menu di scelta rapida del thread del commento aggiunto come contributo, visualizzato sotto forma di pulsanti sotto l'editor dei commenti",
+ "commentThread.editorActions": "Azioni dell'editor dei commenti che hanno contribuito",
"commentThread.title": "Menu del titolo del thread del commento aggiunto come contributo",
- "dup": "Il comando `{0}` è presente più volte nella sezione `commands`.",
+ "commentThread.titleContext": "Menu di scelta rapida di anteprima del titolo del thread del commento aggiunto, visualizzato come menu di scelta rapida nel titolo di anteprima del thread del commento.",
+ "commentsView.threadActions": "Menu a comparsa del thread di commento aggiunto come contributo nella visualizzazione commenti",
+ "dup0": "Il comando '{0}' è già stato registrato",
+ "dup1": "Il comando '{0}' è già stato registrato da {1} ({2})",
"dupe.command": "La voce di menu fa riferimento allo stesso comando come comando predefinito e come comando alternativo",
+ "editorLineNumberContext": "Menu di scelta rapida del numero di riga dell'editor aggiunto come contributo",
"file.newFile": "Selezione rapida 'Nuovo file' visualizzata nella pagina iniziale e nel menu File.",
"inlineCompletions.actions": "Azioni visualizzate durante il passaggio del mouse su un completamento inline",
"interactive.cell.title": "Menu del titolo della cella interattiva aggiunto come contributo",
"interactive.toolbar": "Menu della barra degli strumenti interattivo aggiunto come contributo",
+ "issue.reporter": "Menu del reporter del problema aggiunto",
+ "keyboard shortcuts": "Tasti di scelta rapida",
+ "menuContexts": "Contesti menu",
+ "menus.artifactContext": "Menu di scelta rapida dell'artefatto del controllo del codice sorgente",
+ "menus.artifactGroupContext": "Menu di scelta rapida del gruppo di artefatti del controllo del codice sorgente",
"menus.changeTitle": "Menu delle modifiche inline del codice sorgente",
+ "menus.chatMultiDiffContext": "Menu contestuale Multi-Diff della chat.",
+ "menus.chatSessions": "Menu Sessioni chat.",
+ "menus.chatSessionsNewSession": "Menu per le nuove sessioni di chat.",
+ "menus.chatTextEditor": "Sottomenu Chat nel menu di scelta rapida dell'editor di testo.",
"menus.commandPalette": "Riquadro comandi",
"menus.debugCallstackContext": "Menu di scelta rapida per la visualizzazione dello stack di chiamate di debug",
+ "menus.debugCreateConfiguation": "Menu di configurazione per la creazione del debug",
"menus.debugToolBar": "Menu della barra degli strumenti di debug",
"menus.debugVariablesContext": "Menu di scelta rapida per la visualizzazione delle variabili di debug",
+ "menus.debugWatchContext": "Menu a comparsa per la visualizzazione del controllo di debug",
+ "menus.diffEditorGutterToolBarMenus": "Barra degli strumenti di rilegatura nell'editor diff",
"menus.editorContext": "Menu di scelta rapida dell'editor",
"menus.editorContextCopyAs": "Sottomenu 'Copia con nome' nel menu di scelta rapida dell'editor",
"menus.editorContextShare": "Sottomenu 'Condividi' nel menu di scelta rapida dell'editor",
"menus.editorTabContext": "Menu di scelta rapida delle schede dell'editor",
"menus.editorTitle": "Menu del titolo dell'editor",
+ "menus.editorTitleContextShare": "Sottomenu 'Condividi' all'interno del menu di scelta rapida del titolo dell'editor",
"menus.editorTitleRun": "Esegui il sottomenu nel menu del titolo dell'editor",
"menus.explorerContext": "Menu di scelta rapida Esplora file",
+ "menus.explorerContextShare": "Sottomenu 'Condividi' nel menu di scelta rapida di Esplora file",
"menus.extensionContext": "Menu di scelta rapida dell'estensione",
+ "menus.historyItemContext": "Menu di scelta rapida della voce della cronologia del controllo del codice sorgente",
+ "menus.historyItemRefContext": "Menu di scelta rapida di riferimento della voce della cronologia del controllo del codice sorgente",
"menus.home": "Menu di scelta rapida dell'indicatore della home page (solo Web)",
+ "menus.input": "Menu della casella di input del controllo del codice sorgente",
+ "menus.mergeEditorResult": "Barra degli strumenti dei risultati dell'editor di merge",
+ "menus.multiDiffEditorResource": "Barra degli strumenti delle risorse nell'editor diff multiplo",
+ "menus.notebookVariablesContext": "Menu di scelta rapida per la visualizzazione delle variabili di debug",
"menus.opy": "Sottomenu 'Copia come' nel menu Modifica di primo livello",
"menus.resourceFolderContext": "Menu di scelta rapida della cartella delle risorse del controllo del codice sorgente",
"menus.resourceGroupContext": "Menu di scelta rapida del gruppo di risorse del controllo del codice sorgente",
"menus.resourceStateContext": "Menu di scelta rapida dello stato delle risorse del controllo del codice sorgente",
+ "menus.scmHistoryTitle": "Menu del titolo della cronologia del codice sorgente",
"menus.scmSourceControl": "Menu del controllo del codice sorgente",
+ "menus.scmSourceControlInline": "Menu del repository del controllo del codice sorgente",
+ "menus.scmSourceControlTitle": "Menu del titolo dei repository del controllo del codice sorgente",
"menus.scmTitle": "Menu del titolo del controllo del codice sorgente",
"menus.share": "Sottomenu Condividi visualizzato nel menu File di primo livello.",
"menus.statusBarRemoteIndicator": "Menu dell'indicatore di remoto sulla barra di stato",
+ "menus.terminalContext": "Menu di scelta rapida del terminale",
+ "menus.terminalTabContext": "Menu di scelta rapida delle schede del terminale",
"menus.touchBar": "La Touch Bar (solo Mac OS)",
- "merge.toolbar": "Botton rilevante nell'editor merge",
+ "merge.toolbar": "Il pulsante in primo piano in un editor che si sovrappone al contenuto",
"missing.altCommand": "La voce di menu fa riferimento a un comando alternativo `{0}` che non è definito nella sezione 'commands'.",
"missing.command": "La voce di menu fa riferimento a un comando `{0}` che non è definito nella sezione 'commands'.",
"missing.submenu": "La voce di menu fa riferimento a un sottomenu `{0}` che non è definito nella sezione 'submenus'.",
"nonempty": "è previsto un valore non vuoto.",
"notebook.cell.execute": "Menu di esecuzione della cella del notebook aggiunto come contributo",
- "notebook.cell.executePrimary": "Menu di esecuzione della cella del notebook aggiunto come contributo",
"notebook.cell.title": "Menu del titolo della cella del notebook aggiunto come contributo",
"notebook.kernelSource": "Menu delle origini del kernel del notebook aggiunto come contributo",
"notebook.toolbar": "Menu della barra degli strumenti del notebook aggiunto come contributo",
@@ -10691,13 +16960,19 @@
"requirearray": "le voci di sottomenu devono essere una matrice",
"requirestring": "la proprietà `{0}` è obbligatoria e deve essere di tipo `string`",
"requirestrings": "le proprietà `{0}` e `{1}` sono obbligatorie e devono essere di tipo `string`",
+ "searchPanel.aiResultsCommands": "Comandi che contribuiranno al menu di cui è stato eseguito il rendering come pulsanti accanto al titolo della ricerca di intelligenza artificiale",
"submenuId.duplicate.id": "Il sottomenu `{0}` è già stato registrato in precedenza.",
"submenuId.invalid.id": "`{0}` non è un identificatore di sottomenu valido",
"submenuId.invalid.label": "`{0}` non è un'etichetta di sottomenu valida",
"submenuItem.duplicate": "Il sottomenu `{0}` è già stato aggiunto come contributo al menu `{1}`.",
"testing.item.context": "Menu dell'elemento di test aggiunto come contributo",
"testing.item.gutter.title": "Menu di una decorazione di rilegatura per un elemento di test",
+ "testing.item.result.title": "Menu di un elemento nella visualizzazione Risultati test o nella visualizzazione in anteprima.",
+ "testing.message.content.title": "Menu di scelta rapida per il messaggio nell'albero dei risultati",
+ "testing.message.context.title": "Un pulsante importante che si sovrappone al contenuto dell'editor in cui viene visualizzato il messaggio",
+ "testing.profiles.context.title": "Menu per la configurazione dei profili di test.",
"unsupported.submenureference": "La voce di menu fa riferimento a un sottomenu di un menu per cui non sono supportati sottomenu.",
+ "view.containerTitle": "Menu del titolo del contenitore della visualizzazione aggiunto come contributo",
"view.itemContext": "Menu di scelta rapida dell'elemento visualizzazione aggiunto come contributo",
"view.timelineContext": "Menu di scelta rapida dell'elemento visualizzazione Sequenza temporale",
"view.timelineTitle": "Menu del titolo della visualizzazione Sequenza temporale",
@@ -10705,9 +16980,10 @@
"view.tunnelOriginInline": "Menu inline di origine dell'elemento visualizzazione Porte",
"view.tunnelPortInline": "Menu inline della porta dell'elemento visualizzazione Porte",
"view.viewTitle": "Menu del titolo della visualizzazione aggiunto come contributo",
+ "viewContainerTitle.when": "Il contributo del menu {0} deve controllare {1} nella clausola {2}.",
"vscode.extension.contributes.commandType.category": "(Facoltativo) Stringa di categoria in base a cui è raggruppato il comando nell'interfaccia utente",
"vscode.extension.contributes.commandType.command": "Identificatore del comando da eseguire",
- "vscode.extension.contributes.commandType.icon": "(Facoltativo) Icona usata per rappresentare il comando nell'interfaccia utente. Può essere un percorso di file, un oggetto con percorsi di file per temi scuri e chiari o riferimenti a un'icona del tema, ad esempio `\\$(zap)`",
+ "vscode.extension.contributes.commandType.icon": "(Facoltativo) Icona usata per rappresentare il comando nell'interfaccia utente. Può essere un percorso di file, un oggetto con percorsi di file per temi scuri e chiari o riferimenti a un'icona del tema, ad esempio \"\\$(zap)\"",
"vscode.extension.contributes.commandType.icon.dark": "Percorso dell'icona quando viene usato un tema scuro",
"vscode.extension.contributes.commandType.icon.light": "Percorso dell'icona quando viene usato un tema chiaro",
"vscode.extension.contributes.commandType.precondition": "(Facoltativo) Condizione che deve essere vera per abilitare il comando nell'interfaccia utente (menu e tasti di scelta rapida). Non impedisce l'esecuzione del comando in altri modi, come `executeCommand`-api.",
@@ -10720,7 +16996,7 @@
"vscode.extension.contributes.menuItem.submenu": "Identificatore del sottomenu da visualizzare in questo elemento.",
"vscode.extension.contributes.menuItem.when": "Condizione che deve essere vera per mostrare questo elemento",
"vscode.extension.contributes.menus": "Aggiunge come contributo le voci di menu all'editor",
- "vscode.extension.contributes.submenu.icon": "(Facoltativo) Icona usata per rappresentare il sottomenu nell'interfaccia utente. Può essere un percorso di file, un oggetto con percorsi di file per temi scuri e chiari o riferimenti a un'icona del tema, ad esempio `\\$(zap)`",
+ "vscode.extension.contributes.submenu.icon": "(Facoltativo) Icona usata per rappresentare il sottomenu nell'interfaccia utente. Può essere un percorso di file, un oggetto con percorsi di file per temi scuri e chiari o riferimenti a un'icona del tema, ad esempio \"\\$(zap)\"",
"vscode.extension.contributes.submenu.icon.dark": "Percorso dell'icona quando viene usato un tema scuro",
"vscode.extension.contributes.submenu.icon.light": "Percorso dell'icona quando viene usato un tema chiaro",
"vscode.extension.contributes.submenu.id": "Identificatore del menu da visualizzare come sottomenu.",
@@ -10728,38 +17004,78 @@
"vscode.extension.contributes.submenus": "Aggiunge come contributo le voci di sottomenu all'editor",
"webview.context": "Menu di scelta rapida di webview"
},
- "vs/workbench/services/authentication/browser/authenticationService": {
+ "vs/workbench/services/activity/common/activity": {
+ "activityErrorBadge.background": "Colore di sfondo della notifica dell'attività di errore",
+ "activityErrorBadge.foreground": "Colore primo piano della notifica dell'attività di errore",
+ "activityWarningBadge.background": "Colore di sfondo della notifica dell'attività di avviso",
+ "activityWarningBadge.foreground": "Colore primo piano della notifica dell'attività di avviso"
+ },
+ "vs/workbench/services/assignment/common/assignmentService": {
+ "workbench.enableExperiments": "Recupera gli esperimenti da eseguire da un servizio online Microsoft."
+ },
+ "vs/workbench/services/authentication/browser/authenticationExtensionsService": {
"accessRequest": "Concedere l'accesso a {0} per {1}... (1)",
- "allow": "Consenti",
- "authentication.Placeholder": "Non sono ancora stati richiesti account...",
- "authentication.id": "ID del provider di autenticazione.",
- "authentication.idConflict": "L'ID autenticazione '{0}' è già stato registrato",
- "authentication.label": "Nome leggibile del provider di autenticazione.",
- "authentication.missingId": "Un contributo di autenticazione deve specificare un ID.",
- "authentication.missingLabel": "Un contributo di autenticazione deve specificare un'etichetta.",
- "authenticationExtensionPoint": "Aggiunge come contributo l'autenticazione",
- "cancel": "Annulla",
+ "allow": "&&Consenti",
"confirmAuthenticationAccess": "L'estensione '{0}' prova ad accedere alle informazioni di autenticazione per l'account '{2}' di {1}.",
- "deny": "Nega",
+ "deny": "&&Nega",
"getSessionPlateholder": "Selezionare un account utilizzabile da '{0}' oppure premere ESC per annullare",
- "loading": "Caricamento…",
"selectAccount": "L'estensione '{0}' vuole accedere a un account {1}",
"sign in": "È richiesto l'accesso",
"signInRequest": "Accedere con {0} per usare {1} (1)",
"useOtherAccount": "Accedi a un altro account"
},
- "vs/workbench/services/bulkEdit/browser/bulkEditService": {
- "summary.0": "Non sono state effettuate modifiche",
- "summary.nm": "Effettuate {0} modifiche al testo in {1} file",
- "summary.n0": "Effettuate {0} modifiche al testo in un file",
- "workspaceEdit": "Modifica area di lavoro",
- "nothing": "Non sono state effettuate modifiche"
+ "vs/workbench/services/authentication/browser/authenticationMcpService": {
+ "accessRequest": "Concedere l'accesso a {0} per {1}... (1)",
+ "allow": "&&Consenti",
+ "confirmAuthenticationAccess": "Il server MCP \"{0}\" vuole accedere all'account {1} \"{2}\".",
+ "deny": "&&Nega",
+ "getSessionPlateholder": "Selezionare un account utilizzabile da '{0}' oppure premere ESC per annullare",
+ "selectAccount": "Il server MCP \"{0}\" vuole accedere a un account {1}",
+ "sign in": "Accesso richiesto",
+ "signInRequest": "Accedere con {0} per usare {1} (1)",
+ "useOtherAccount": "Accedi a un altro account"
+ },
+ "vs/workbench/services/authentication/browser/authenticationService": {
+ "authentication.authorizationServerGlobs": "Un elenco di glob che corrispondono ai server di autorizzazione supportati da questo provider.",
+ "authentication.authorizationServerGlobsDescription": "Un elenco di glob che corrispondono ai server di autorizzazione supportati da questo provider.",
+ "authentication.id": "ID del provider di autenticazione.",
+ "authentication.idConflict": "L'ID autenticazione '{0}' è già stato registrato",
+ "authentication.label": "Nome leggibile del provider di autenticazione.",
+ "authentication.missingId": "Un contributo di autenticazione deve specificare un ID.",
+ "authentication.missingLabel": "Un contributo di autenticazione deve specificare un'etichetta.",
+ "authenticationExtensionPoint": "Contribuisce all'autenticazione"
+ },
+ "vs/workbench/services/auxiliaryWindow/browser/auxiliaryWindowService": {
+ "lifecycleVeto": "Le modifiche apportate potrebbero non essere salvate. Selezionare \"Annulla\" e riprovare.",
+ "retry": "&&Riprova",
+ "unableToOpenWindow": "Il browser ha bloccato l'apertura di una nuova finestra. Premere \"Riprova\" per riprovare.",
+ "unableToOpenWindowDetail": "Consentire i popup per questo sito Web nelle [impostazioni del browser]({0}).",
+ "unableToOpenWindowError": "Impossibile aprire una nuova finestra."
+ },
+ "vs/workbench/services/auxiliaryWindow/electron-browser/auxiliaryWindowService": {
+ "backupErrorDetails": "Provare prima a salvare o ripristinare gli editor con modifiche e riprovare."
+ },
+ "vs/workbench/services/chat/common/chatEntitlementService": {
+ "learnMore": "Altre informazioni",
+ "ok": "OK",
+ "retry": "Riprovare",
+ "signUpInvalidResponseError": "Contenuti della risposta non validi.",
+ "signUpNoResponseContentsError": "La risposta è senza contenuto.",
+ "signUpNoResponseError": "Nessuna risposta ricevuta.",
+ "signUpUnexpectedStatusError": "Codice stato imprevisto {0}.",
+ "unknownSignUpError": "Si è verificato un errore durante l'iscrizione al piano gratuito di GitHub Copilot. Riprovare?",
+ "unprocessableSignUpError": "Si è verificato un errore durante l'iscrizione al piano gratuito di GitHub Copilot."
+ },
+ "vs/workbench/services/clipboard/browser/clipboardService": {
+ "clipboardError": "Non è possibile leggere dagli Appunti del browser. Assicurarsi di aver concesso l'accesso per questo sito Web per la lettura dagli Appunti.",
+ "learnMore": "Altre informazioni",
+ "retry": "Riprovare"
},
"vs/workbench/services/configuration/browser/configurationService": {
"configurationDefaults.description": "Contribuire con le impostazioni predefinite per le configurazioni",
- "experimental": "Esperimenti"
+ "setting description": "Configurare le impostazioni da applicare a tutti i profili."
},
- "vs/workbench/services/configuration/common/configurationEditingService": {
+ "vs/workbench/services/configuration/common/configurationEditing": {
"errorConfigurationFileDirty": "Non è possibile scrivere nelle impostazioni utente perché il file contiene modifiche non salvate. Salvare prima il file delle impostazioni utente, quindi riprovare.",
"errorConfigurationFileDirtyFolder": "Non è possibile scrivere nelle impostazioni della cartella perché il file contiene modifiche non salvate. Salvare il file delle impostazioni della cartella '{0}' e riprovare.",
"errorConfigurationFileDirtyWorkspace": "Non è possibile scrivere nelle impostazioni dell'area di lavoro perché il file contiene modifiche non salvate. Salvare prima il file delle impostazioni dell'area di lavoro, quindi riprovare.",
@@ -10772,6 +17088,7 @@
"errorInvalidFolderConfiguration": "Impossibile scrivere nella cartella impostazioni perché {0} non supporta l'ambito di risorsa della cartella.",
"errorInvalidFolderTarget": "Impossibile scrivere nella cartella impostazioni perché non viene fornita alcuna risorsa.",
"errorInvalidLaunchConfiguration": "Non è possibile scrivere nel file di configurazione di avvio. Aprirlo per correggere eventuali errori/avvisi e riprovare.",
+ "errorInvalidMCPConfiguration": "Non è possibile scrivere nel file di configurazione MCP. Aprilo per correggere eventuali errori/avvisi e riprova.",
"errorInvalidRemoteConfiguration": "Non è possibile scrivere nelle impostazioni utente remote. Aprire le impostazioni utente remote per correggere eventuali errori/avvisi e riprovare.",
"errorInvalidResourceLanguageConfiguration": "Non è possibile scrivere in Impostazioni lingua perché {0} non è un'impostazione di lingua risorse.",
"errorInvalidTaskConfiguration": "Non è possibile scrivere nel file di configurazione delle attività. Aprirlo per correggere eventuali errori/avvisi e riprovare.",
@@ -10781,6 +17098,8 @@
"errorInvalidWorkspaceTarget": "Impossibile scrivere nell'area di lavoro perché {0} non supporta l'ambito globale in un'area di lavoro a cartelle multiple.",
"errorLaunchConfigurationFileDirty": "Non è possibile scrivere nel file di configurazione di avvio perché il file contiene modifiche non salvate. Per prima cosa salvarlo, quindi riprovare.",
"errorLaunchConfigurationFileModifiedSince": "Non è possibile scrivere nel file di configurazione di avvio perché il contenuto del file è più recente.",
+ "errorMCPConfigurationFileDirty": "Non è possibile scrivere nel file di configurazione MCP perché il file contiene modifiche non salvate. Salvalo prima e poi riprova.",
+ "errorMCPConfigurationFileModifiedSince": "Non è possibile scrivere nel file di configurazione MCP perché il contenuto del file è più recente.",
"errorNoWorkspaceOpened": "Impossibile scrivere su {0} poiché nessuna area di lavoro è aperta. Si prega di aprire un'area di lavoro e riprovare.",
"errorPolicyConfiguration": "Impossibile scrivere {0} perché è configurato nei criteri di sistema.",
"errorRemoteConfigurationFileDirty": "Non è possibile scrivere nelle impostazioni utente remoto perché il file contiene modifiche non salvate. Salvare prima il file delle impostazioni utente remoto, quindi riprovare.",
@@ -10790,8 +17109,10 @@
"errorUnknown": "Impossibile scrivere in {0} a causa di un errore interno.",
"errorUnknownKey": "Impossibile scrivere {0} perché {1} non è una configurazione registrata.",
"folderTarget": "Impostazioni cartella",
+ "fsError": "Errore durante la scrittura in {0}. {1}",
"open": "Apri impostazioni",
"openLaunchConfiguration": "Apri configurazione di avvio",
+ "openMcpConfiguration": "Apri configurazione MCP",
"openTasksConfiguration": "Apri configurazione attività",
"remoteUserTarget": "Impostazioni utente remote",
"saveAndRetry": "Salva e riprova",
@@ -10799,7 +17120,6 @@
"workspaceTarget": "Impostazioni area di lavoro"
},
"vs/workbench/services/configuration/common/jsonEditingService": {
- "errorFileDirty": "Impossibile scrivere nel file perché il file contiene modifiche non salvate. Salvare il file e riprovare.",
"errorInvalidFile": "Impossibile scrivere nel file. Si prega di aprire il file per correggere eventuali errori o avvisi nel file e riprovare."
},
"vs/workbench/services/configurationResolver/browser/baseConfigurationResolverService": {
@@ -10832,6 +17152,7 @@
},
"vs/workbench/services/configurationResolver/common/variableResolver": {
"canNotFindFolder": "Non è possibile risolvere la variabile {0}. La cartella '{1}' non esiste.",
+ "canNotResolveColumnNumber": "Non è possibile risolvere la variabile {0}. Assicurarsi che sia selezionata una colonna nell'editor attivo.",
"canNotResolveFile": "Non è possibile risolvere la variabile {0}. Aprire un editor.",
"canNotResolveFolderForFile": "Variabile {0}: non è possibile trovare la cartella dell'area di lavoro di '{1}'.",
"canNotResolveLineNumber": "Non è possibile risolvere la variabile {0}. Assicurarsi che sia selezionata una riga nell'editor attivo.",
@@ -10852,7 +17173,6 @@
},
"vs/workbench/services/dialogs/browser/abstractFileDialogService": {
"allFiles": "Tutti i file",
- "cancel": "Annulla",
"dontSave": "&&Non salvare",
"filterName.workspace": "Area di lavoro",
"noExt": "Nessuna estensione",
@@ -10868,21 +17188,35 @@
"saveChangesMessages": "Salvare le modifiche apportate ai file seguenti di {0}?",
"saveFileAs.title": "Salva con nome"
},
+ "vs/workbench/services/dialogs/browser/fileDialogService": {
+ "learnMore": "&&Altre informazioni",
+ "openFiles": "Apri &&file...",
+ "openRemote": "&&Apri elemento remoto...",
+ "pickFolderAndOpen": "Non è possibile aprire le cartelle. Provare ad aggiungere una cartella all'area di lavoro.",
+ "pickWorkspaceAndOpen": "Non è possibile aprire le aree di lavoro. Provare ad aggiungere una cartella all'area di lavoro.",
+ "unsupportedBrowserDetail": "Il browser non supporta l'apertura di cartelle locali.\r\nÈ possibile aprire singoli file o un repository remoto.",
+ "unsupportedBrowserMessage": "L'apertura di cartelle locali non è supportata"
+ },
"vs/workbench/services/dialogs/browser/simpleFileDialog": {
"openLocalFile": "Apri file locale...",
"openLocalFileFolder": "Apri locale...",
"openLocalFolder": "Apri cartella locale...",
- "remoteFileDialog.badPath": "Il percorso non esiste.",
+ "remoteFileDialog.badPath": "Il percorso non esiste. Usa ~ per passare alla home directory.",
"remoteFileDialog.cancel": "Annulla",
+ "remoteFileDialog.hideDotFiles": "Nascondi file dot",
"remoteFileDialog.invalidPath": "Immettere un percorso valido.",
"remoteFileDialog.local": "Mostra locale",
"remoteFileDialog.notConnectedToRemote": "Il provider del file system per {0} non è disponibile.",
+ "remoteFileDialog.placeholder": "Percorso della cartella",
+ "remoteFileDialog.showDotFiles": "Mostra file dot",
"remoteFileDialog.validateBadFilename": "Immettere un nome di file valido.",
+ "remoteFileDialog.validateCreateDirectory": "La cartella {0} non esiste. Si desidera crearla?",
"remoteFileDialog.validateExisting": "Il file {0} esiste già. Sovrascriverlo?",
"remoteFileDialog.validateFileOnly": "Selezionare un file.",
"remoteFileDialog.validateFolder": "La cartella esiste già. Usare un nuovo nome file.",
"remoteFileDialog.validateFolderOnly": "Selezionare una cartella.",
"remoteFileDialog.validateNonexistentDir": "Immettere un percorso esistente.",
+ "remoteFileDialog.validateReadonlyFolder": "Impossibile utilizzare questa cartella come destinazione di salvataggio. Scegliere un'altra cartella",
"remoteFileDialog.windowsDriveLetter": "Iniziare il percorso con una lettera di unità.",
"saveLocalFile": "Salva file locale..."
},
@@ -10898,27 +17232,28 @@
"promptOpenWith.updateDefaultPlaceHolder": "Selezionare il nuovo editor predefinito per ' {0}'"
},
"vs/workbench/services/editor/common/editorResolverService": {
- "editor.editorAssociations": "Configurare i modelli glob in Editor (ad esempio,' \"*. Hex\": \"hexEditor. hexEdit\"'). Queste hanno la precedenza sul comportamento predefinito."
+ "editor.editorAssociations": "Configurare [modelli glob](https://aka.ms/vscode-glob-patterns) negli editor ,ad esempio '\"*.hex\": \"hexEditor.hexedit\"'). Questi hanno la precedenza sul comportamento predefinito."
},
"vs/workbench/services/extensionManagement/browser/extensionBisect": {
+ "I cannot reproduce": "Non posso riprodurre",
+ "This is Bad": "Posso riprodurre",
"bisect": "La funzionalità Bisezione estensioni è attiva e ha disabilitato {0} estensioni. Verificare se è ancora possibile riprodurre il problema e procedere selezionando una di queste opzioni.",
"bisect.plural": "La funzionalità Bisezione estensioni è attiva e ha disabilitato {0} estensioni. Verificare se è ancora possibile riprodurre il problema e procedere selezionando una di queste opzioni.",
"bisect.singular": "La funzionalità Bisezione estensioni è attiva e ha disabilitato 1 estensione. Verificare se è ancora possibile riprodurre il problema e continuare selezionando una di queste opzioni.",
+ "continue": "Continua",
"detail.start": "La funzionalità Bisezione estensioni userà la ricerca binaria per trovare un'estensione che causa un problema. Durante il processo la finestra viene ricaricata ripetutamente (circa {0} volte). Ogni volta è necessario confermare se i problemi sono ancora presenti.",
- "done": "Continua",
"done.detail": "La funzionalità Bisezione estensioni è stata eseguita e ha riscontrato che il problema è causato dall'estensione {0}.",
"done.detail2": "La funzionalità Bisezione estensioni è stata eseguita ma non è stata identificata alcuna estensione. Il problema potrebbe dipendere da {0}.",
"done.disbale": "Mantieni disabilitata questa estensione",
"done.msg": "Bisezione estensioni",
- "help": "Guida",
"msg.next": "Bisezione estensioni",
"msg.start": "Bisezione estensioni",
- "msg2": "Avvia Bisezione estensioni",
- "next.bad": "Errore",
- "next.cancel": "Annulla",
- "next.good": "Corretto",
- "next.stop": "Arresta bisezione",
- "report": "Segnala problema e continua",
+ "msg2": "&&Avvia Bisezione estensioni",
+ "next.bad": "Posso &&riprodurre",
+ "next.cancel": "&&Annulla bisezione",
+ "next.good": "No&&n posso riprodurre",
+ "next.stop": "&&Arresta bisezione",
+ "report": "&&Segnala problema e continua",
"title.isBad": "Continua Bisezione estensioni",
"title.start": "Avvia Bisezione estensioni",
"title.stop": "Arresta Bisezione estensioni"
@@ -10926,47 +17261,93 @@
"vs/workbench/services/extensionManagement/browser/extensionEnablementService": {
"Reload": "Ricarica e abilita le estensioni",
"cannot change disablement environment": "Non è possibile modificare l’abilitazione dell’estensione {0} perché è disabilitata nell’ambiente",
+ "cannot change disallowed extension enablement": "Non è possibile modificare l'abilitazione dell'estensione {0} perché non è consentita",
"cannot change enablement dependency": "Non è possibile abilitare l'estensione “{0}” perché dipende dall'estensione “{1}” che non può essere abilitata",
"cannot change enablement environment": "Non è possibile modificare l’abilitazione dell’estensione {0} perché è abilitata nell’ambiente",
"cannot change enablement extension kind": "Non è possibile modificare l'abilitazione dell'estensione {0} a causa del relativo tipo di estensione",
+ "cannot change enablement malicious": "Non è possibile modificare l'abilitazione dell'estensione {0} perché è dannosa",
"cannot change enablement virtual workspace": "Non è possibile modificare l'abilitazione dell'estensione {0} perché non supporta le aree di lavoro virtuali",
+ "cannot change invalid extension enablement": "Non è possibile modificare l'abilitazione dell'estensione {0} perché non è valida",
"cannot disable auth extension": "Non è possibile modificare l'abilitazione dell'estensione {0} perché da essa dipende Sincronizzazione impostazioni.",
"cannot disable auth extension in workspace": "Non è possibile modificare l'abilitazione dell'estensione {0} nell'area di lavoro perché aggiunge come contributo i provider di autenticazione",
"cannot disable language pack extension": "Non è possibile modificare l'abilitazione dell'estensione {0} perché aggiunge come contributo i Language Pack.",
"extensionsDisabled": "Tutte le estensioni installate sono temporaneamente disabilitate.",
"noWorkspace": "Non esiste alcuna area di lavoro."
},
+ "vs/workbench/services/extensionManagement/browser/webExtensionsScannerService": {
+ "not a web extension": "Non è possibile aggiungere '{0}' perché questa estensione non è un'estensione Web.",
+ "openInstalledWebExtensionsResource": "Apri risorsa di Estensioni Web installata"
+ },
+ "vs/workbench/services/extensionManagement/common/extensionFeaturesManagemetService": {
+ "accessExtensionFeature": "Accedi alla funzionalità '{0}'",
+ "accessExtensionFeatureMessage": "L'estensione '{0}' vuole accedere alla funzionalità '{1}'.",
+ "allow": "Consenti",
+ "disallow": "Non consentire"
+ },
+ "vs/workbench/services/extensionManagement/common/extensionManagementServerService": {
+ "browser": "Browser",
+ "remote": "Remoto"
+ },
"vs/workbench/services/extensionManagement/common/extensionManagementService": {
"Manifest is not found": "Non è stato possibile installare l'estensione {0}: il manifesto non è stato trovato.",
"VS Code for Web": "{0} per il Web",
- "cancel": "Annulla",
+ "allUnverifed": "Tutti gli editori sono [**non** verificati]({0}).",
"cannot be installed": "Non è possibile installare l'estensione '{0}' perché non è disponibile in questa installazione.",
+ "cannot be installed in server": "Non è possibile installare l’estensione '{0}' perché non è disponibile nell’installazione '{1}'.",
+ "checkAllTrustedPublishersTitle": "Si considera attendibile l'autore \"{0}\" e {1} altri?",
+ "checkTrustedPublisherTitle": "Considerare attendibile l'\"{0}\" dell'editore?",
+ "checkTwoTrustedPublishersTitle": "Si considerano attendibili gli autori \"{0}\" e \"{1}\"?",
+ "extension published by message": "L'estensione {0} è pubblicata da {1}.",
"extensionInstallWorkspaceTrustButton": "Area di lavoro e installazione attendibili",
"extensionInstallWorkspaceTrustContinueButton": "Installare",
"extensionInstallWorkspaceTrustManageButton": "Altre informazioni",
"extensionInstallWorkspaceTrustMessage": "Per abilitare questa estensione è necessaria un'area di lavoro attendibile.",
- "install": "Installa",
- "install and do no sync": "Installa (non sincronizzare)",
- "install anyways": "Installa comunque",
+ "firstTimeInstallingMessage": "Questa è la prima volta che installi le estensioni di questi editori.",
+ "install": "&&Installa",
+ "install and do no sync": "Installa (&&non sincronizzare)",
+ "install anyways": "&&Installa comunque",
"install extension": "Installa estensione",
"install extensions": "Installa estensioni",
"install multiple extensions": "Installare e sincronizzare le estensioni tra i dispositivi?",
"install single extension": "Installare e sincronizzare l'estensione '{0}' tra i dispositivi?",
+ "learnMore": "A&<re informazioni",
"limited support": "'{0}' presenta funzionalità limitate in {1}.",
+ "main.notFound": "Non è possibile eseguire l'attivazione perché non è stato possibile trovare {0}",
+ "manifest is not found": "Il manifesto non è stato trovato",
+ "message1": "L'estensione {0} è pubblicata da {1}. Questa è la prima estensione che stai installando da questo editore.",
+ "message2": "{0} non ha alcun controllo sul comportamento delle estensioni di terze parti, incluso il modo in cui gestiscono i tuoi dati personali. Continuare solo se si considera attendibile l'autore.",
+ "message3": "L'installazione di questa estensione comporterà anche l'installazione delle [estensioni]({0}) pubblicate da {1} e {2}.",
+ "message4": "{0} non ha alcun controllo sul comportamento delle estensioni di terze parti, incluso il modo in cui gestiscono i tuoi dati personali. Continuare solo se si considerano attendibili gli editori.",
+ "multiInstallMessage": "Questa è la prima volta che si installano estensioni da editori {0} e {1}.",
"multipleDependentsError": "Non è possibile disinstallare l'estensione '{0}'. Alcune estensioni, tra cui '{1}' e '{2}' dipendono da tale estensione.",
"non web extensions": "'{0}' contiene estensioni non supportate in {1}.",
"non web extensions detail": "Contiene estensioni non supportate.",
- "showExtensions": "Mostra estensioni",
+ "showExtensions": "&&Mostra estensioni",
"singleDependentError": "Non è possibile disinstallare l'estensione '{0}'. L'estensione '{1}' dipende da tale estensione.",
- "twoDependentsError": "Non è possibile disinstallare l'estensione '{0}'. Le estensioni '{1}' e '{2}' dipendono da tale estensione."
+ "singleUntrustedPublisher": "L'installazione di questa estensione comporterà anche l'installazione delle [estensioni]({0}) pubblicate da {1}.",
+ "trust and install": "Considera attendibile il server di pubblicazione e l'installazione",
+ "trust publishers and install": "Autori attendibili &&> Installa",
+ "twoDependentsError": "Non è possibile disinstallare l'estensione '{0}'. Le estensioni '{1}' e '{2}' dipendono da tale estensione.",
+ "unverifiedPublisherWithName": "{0} è [**non** verificato]({1}).",
+ "unverifiedPublishers": "{0} e {1} sono [**non** verificati]({2}).",
+ "verifiedPublisherWithName": "{0} ha verificato la proprietà di {1}."
+ },
+ "vs/workbench/services/extensionManagement/common/extensionsIcons": {
+ "extensionDefault": "Icona usata per l'estensione predefinita nella visualizzazione estensioni e nell'editor.",
+ "extensionIconVerifiedForeground": "Colore dell'icona per l'autore verificato dell'estensione.",
+ "verifiedPublisher": "Icona usata per l'autore verificato dell'estensione nella visualizzazione e nell'editor delle estensioni."
},
- "vs/workbench/services/extensionManagement/electron-sandbox/extensionManagementServerService": {
- "local": "LOCAL",
+ "vs/workbench/services/extensionManagement/electron-browser/extensionGalleryManifestService": {
+ "extensionGalleryManifestService.accountChange": "{0} è ora configurato per un Marketplace differente. Riavviare per applicare le modifiche.",
+ "restart": "&&Riavvia"
+ },
+ "vs/workbench/services/extensionManagement/electron-browser/extensionManagementServerService": {
+ "local": "Locale",
"remote": "Remoto"
},
- "vs/workbench/services/extensionManagement/electron-sandbox/remoteExtensionManagementService": {
+ "vs/workbench/services/extensionManagement/electron-browser/remoteExtensionManagementService": {
+ "incompatibleAPI": "Non è possibile installare l'estensione \"{0}\". {1}",
"notFoundCompatibleDependency": "Non è possibile installare l'estensione '{0}' perché non è compatibile con la versione corrente di {1} (versione {2}).",
- "notFoundCompatiblePrereleaseDependency": "Non è possibile installare la versione non definitiva dell'estensione '{0}' perché non è compatibile con la versione corrente di {1} (versione {2}).",
"notFoundReleaseExtension": "Non è possibile installare la versione finale dell'estensione '{0}' perché non ha una versione finale."
},
"vs/workbench/services/extensionRecommendations/common/workspaceExtensionsConfig": {
@@ -10976,33 +17357,36 @@
"workspace folder": "Cartella dell'area di lavoro"
},
"vs/workbench/services/extensions/browser/extensionUrlHandler": {
- "Installing": "Installazione dell'estensione '{0}'...",
- "confirmUrl": "Consentire a un'estensione di aprire questo URI?",
- "enableAndHandle": "L'estensione '{0}' è disabilitata. Abilitare l'estensione e aprire l'URL?",
- "enableAndReload": "&&Abilita e apri",
+ "confirmUrl": "Consentire a un'estensione '{0}' di aprire questo URI?",
"extensions": "Estensioni",
- "install and open": "&&Installa e apri",
- "installAndHandle": "L'estensione '{0}' non è installata. Installare l'estensione e aprire l'URL?",
+ "installDetail": "L'estensione vuole aprire un URI:",
"manage": "Gestisci URI delle estensioni autorizzate...",
"no": "Al momento non sono presenti URI di estensione autorizzati.",
"open": "&&Apri",
+ "openUri": "Apri URI",
"reloadAndHandle": "L'estensione '{0}' non è caricata. Ricaricare la finestra per caricare l'estensione e aprire l'URL?",
"reloadAndOpen": "&&Ricarica la finestra e apri",
- "rememberConfirmUrl": "Non chiedere più per questa estensione."
- },
- "vs/workbench/services/extensions/browser/webWorkerExtensionHost": {
- "name": "Host dell'estensione worker"
+ "rememberConfirmUrl": "Non visualizzare più questo messaggio per questa estensione"
},
"vs/workbench/services/extensions/common/abstractExtensionService": {
+ "activation": "Eventi di attivazione",
+ "disconnectRemote": "Disconnetti agente remoto",
"extensionService.autoRestart": "L'host dell'estensione remoto è stato terminato in modo imprevisto. Riavvio in corso...",
"extensionService.crash": "L'host dell'estensione è stato terminato in modo imprevisto 3 volte negli ultimi 5 minuti.",
+ "extensionStopVetoError": "{0} (Errore: {1})",
+ "extensionStopVetoMessage": "Conferma il riavvio delle estensioni.",
"extensionTestError": "Non è stato trovato alcun host dell'estensione in grado di avviare Test Runner alla posizione {0}.",
"looping": "Le estensioni seguenti contengono cicli di dipendenza e sono state disabilitate: {0}",
- "restart": "Riavvio host dell'estensione remoto"
+ "proceedAnyways": "Riavvia comunque",
+ "restart": "Riavvio host dell'estensione remoto",
+ "stopExtensionHosts": "Arresto host estensione"
},
"vs/workbench/services/extensions/common/extensionHostManager": {
"measureExtHostLatency": "Misura latenza host dell'estensione"
},
+ "vs/workbench/services/extensions/common/extensionsProposedApi": {
+ "enabledProposedAPIs": "Proposte API"
+ },
"vs/workbench/services/extensions/common/extensionsRegistry": {
"extensionKind": "Definisce il tipo di un'estensione. Le estensioni `ui` vengono installate ed eseguite nel computer locale, mentre quelle `workspace` vengono eseguite nel computer remoto.",
"extensionKind.empty": "Definire un'estensione che non può essere eseguita in un contesto remoto, né in locale, né nel computer remoto.",
@@ -11014,6 +17398,7 @@
"ui": "Tipo di estensione UI. In una finestra remota tali estensioni sono abilitate solo se disponibili nel computer locale.",
"vscode.extension.activationEvents": "Eventi di attivazione per l'estensione Visual Studio Code.",
"vscode.extension.activationEvents.onAuthenticationRequest": "Evento di attivazione creato ogni volta che il provider di autenticazione specificato richiede sessioni.",
+ "vscode.extension.activationEvents.onChatParticipant": "Evento di attivazione generato quando viene richiamato il partecipante della chat specificato.",
"vscode.extension.activationEvents.onCommand": "Un evento di attivazione emesso ogni volta che viene invocato il comando specificato.",
"vscode.extension.activationEvents.onCustomEditor": "Evento di attivazione generato ogni volta che l'editor personalizzato specificato diventa visibile.",
"vscode.extension.activationEvents.onDebug": "Un evento di attivazione emesso ogni volta che un utente sta per avviare il debug o sta per impostare le configurazioni di debug.",
@@ -11021,22 +17406,31 @@
"vscode.extension.activationEvents.onDebugDynamicConfigurations": "Evento di attivazione generato ogni volta che è necessario creare un elenco di tutte le configurazioni di debug (ed è necessario chiamare tutti i metodi provideDebugConfigurations per l'ambito \"dynamic\").",
"vscode.extension.activationEvents.onDebugInitialConfigurations": "Un evento di attivazione emesso ogni volta che un \"launch.json\" deve essere creato (e tutti i metodi di provideDebugConfigurations devono essere chiamati).",
"vscode.extension.activationEvents.onDebugResolve": "Un evento di attivazione emesso ogni volta che una sessione di debug di tipo specifico sta per essere lanciata (e un corrispondente metodo resolveDebugConfiguration deve essere chiamato).",
+ "vscode.extension.activationEvents.onEditSession": "Evento di attivazione generato ogni volta che si accede a una sessione di modifica con lo schema specificato.",
"vscode.extension.activationEvents.onFileSystem": "Un evento di attivazione emesso ogni volta che si accede a un file o a una cartella con lo schema specificato.",
- "vscode.extension.activationEvents.onIdentity": "Evento di attivazione creato ogni volta che si usa l'identità utente specificata.",
+ "vscode.extension.activationEvents.onIssueReporterOpened": "Evento di attivazione generato all'apertura del reporter problemi.",
"vscode.extension.activationEvents.onLanguage": "Un evento di attivazione emesso ogni volta che viene aperto un file che risolve nella lingua specificata.",
+ "vscode.extension.activationEvents.onLanguageModelChatProvider": "Un evento di attivazione emesso quando viene richiesto un provider di modelli di chat per il fornitore specificato.",
+ "vscode.extension.activationEvents.onLanguageModelTool": "Evento di attivazione generato quando viene richiamato lo strumento del modello linguistico specificato.",
+ "vscode.extension.activationEvents.onMcpCollection": "Un evento di attivazione emesso ogni volta che viene richiesto uno strumento dal server MCP.",
"vscode.extension.activationEvents.onNotebook": "Evento di attivazione generato ogni volta che viene aperto il documento del notebook specificato.",
"vscode.extension.activationEvents.onOpenExternalUri": "Evento di attivazione creato ogni volta che si apre un URI esterno, ad esempio un collegamento http o https.",
"vscode.extension.activationEvents.onRenderer": "Evento di attivazione emesso ogni volta che viene usato un renderer di output per notebook.",
"vscode.extension.activationEvents.onSearch": "Un evento di attivazione emesso ogni volta che viene avviata una ricerca nella cartella con lo schema specificato.",
"vscode.extension.activationEvents.onStartupFinished": "Evento di attivazione generato al termine dell'avvio (dopo l'attivazione di tutte le estensioni attivate tramite `*`).",
"vscode.extension.activationEvents.onTaskType": "Evento di attivazione generato ogni volta che le attività di un determinato tipo devono essere elencate o risolte.",
+ "vscode.extension.activationEvents.onTerminal": "Evento di attivazione generato quando viene aperto un terminale del tipo di shell specificato.",
"vscode.extension.activationEvents.onTerminalProfile": "Evento di attivazione emesso quando viene avviato un profilo del terminale specifico.",
+ "vscode.extension.activationEvents.onTerminalQuickFixRequest": "Evento di attivazione generato quando un comando corrisponde al selettore associato a questo ID",
+ "vscode.extension.activationEvents.onTerminalShellIntegration": "Evento di attivazione generato quando viene attivata l'integrazione della shell del terminale per il tipo di shell specificato.",
"vscode.extension.activationEvents.onUri": "Un evento di attivazione emesso ogni volta che viene aperto un URI a livello di sistema indirizzato a questa estensione.",
"vscode.extension.activationEvents.onView": "Un evento di attivazione emesso ogni volta che la visualizzazione specificata viene espansa.",
"vscode.extension.activationEvents.onWalkthrough": "Evento di attivazione creato quando viene aperta una procedura dettagliata specificata.",
"vscode.extension.activationEvents.onWebviewPanel": "Evento di attivazione generato quando viene caricata una visualizzazione Web di un determinato viewType",
"vscode.extension.activationEvents.star": "Un evento di attivazione emesso all'avvio di VS Code. Per garantire la migliore esperienza per l'utente finale, sei pregato di utilizzare questo evento di attivazione nella tua estensione solo quando nessun'altra combinazione di eventi di attivazione funziona nel tuo caso.",
"vscode.extension.activationEvents.workspaceContains": "Un evento di attivazione emesso ogni volta che si apre una cartella che contiene almeno un file corrispondente al criterio GLOB specificato.",
+ "vscode.extension.api": "Descrivere l'API fornita da questa estensione. Per altri dettagli, vedere: https://code.visualstudio.com/api/advanced-topics/remote-extensions#handling-dependencies-with-remote-extensions",
+ "vscode.extension.api.none": "Consente di non consentire completamente l'esportazione di API. Consente l'esecuzione di altre estensioni che dipendono da questa estensione in un processo host di estensione separato o in un computer remoto.",
"vscode.extension.badges": "Matrice di notifiche da visualizzare nella barra laterale della pagina delle estensioni del Marketplace.",
"vscode.extension.badges.description": "Descrizione della notifica.",
"vscode.extension.badges.href": "Collegamento della notifica.",
@@ -11071,8 +17465,10 @@
"vscode.extension.galleryBanner.color": "Colore del banner nell'intestazione pagina del marketplace di Visual Studio Code.",
"vscode.extension.galleryBanner.theme": "Tema colori per il tipo di carattere usato nel banner.",
"vscode.extension.icon": "Percorso di un'icona da 128x128 pixel.",
+ "vscode.extension.l10n": "Percorso relativo di una cartella contenente file di localizzazione (bundle.l10n.*.json). Deve essere specificato se si usa l'vscode.l10n API.",
"vscode.extension.markdown": "Controlla il motore di rendering di Markdown usato nel Marketplace. Può essere github (impostazione predefinita) o standard.",
"vscode.extension.preview": "Imposta l'estensione in modo che venga contrassegnata come Anteprima nel Marketplace.",
+ "vscode.extension.pricing": "Informazioni sui prezzi per l'estensione. Può essere Gratuito (impostazione predefinita) o Versione di valutazione. Per altri dettagli, visita: https://code.visualstudio.com/api/working-with-extensions/publishing-extension#extension-pricing-label",
"vscode.extension.publisher": "Editore dell'estensione Visual Studio Code.",
"vscode.extension.qna": "Controlla il collegamento alle domande frequenti nel Marketplace. Impostare su marketplace per abilitare il sito predefinito delle domande frequenti nel Marketplace. Impostare su una stringa per specificare l'URL di un sito personalizzato di domande frequenti. Impostare su false per disabilitare la sezione delle domande frequenti.",
"vscode.extension.scripts.prepublish": "Script eseguito prima che il pacchetto venga pubblicato come estensione Visual Studio Code.",
@@ -11081,17 +17477,23 @@
},
"vs/workbench/services/extensions/common/extensionsUtil": {
"extensionUnderDevelopment": "Caricamento dell'estensione di sviluppo in {0}",
- "overwritingExtension": "Sovrascrittura dell'estensione {0} con {1}."
+ "overwritingExtension": "Sovrascrittura dell'estensione {0} con {1}.",
+ "overwritingWithWorkspaceExtension": "Sovrascrittura {0} con estensione area di lavoro {1}."
},
- "vs/workbench/services/extensions/common/remoteExtensionHost": {
- "remote extension host Log": "Host dell'estensione remoto"
- },
- "vs/workbench/services/extensions/electron-sandbox/cachedExtensionScanner": {
+ "vs/workbench/services/extensions/electron-browser/cachedExtensionScanner": {
"extensionCache.invalid": "Le estensioni sono state modificate sul disco. Ricaricare la finestra.",
+ "extensionUnderDevelopment.invalid": "Non è possibile caricare l'estensione '{0}' in fase di sviluppo perché non è valida: {1}",
+ "extensionsUnderDevelopment.invalid": "Non è possibile caricare le estensioni {0} in fase di sviluppo perché non sono valide: {1}",
+ "reloadWindow": "Ricarica finestra"
+ },
+ "vs/workbench/services/extensions/electron-browser/localProcessExtensionHost": {
+ "extensionHost.startupFail": "L'host dell'estensione non è stato avviato entro 10 secondi. Potrebbe essersi verificato un problema.",
+ "extensionHost.startupFailDebug": "L'host dell'estensione non è stato avviato entro 10 secondi. Potrebbe essersi arrestato alla prima riga e richiedere un debugger per continuare.",
+ "join.extensionDevelopment": "Terminazione della sessione di debug dell'estensione",
"reloadWindow": "Ricarica finestra"
},
- "vs/workbench/services/extensions/electron-sandbox/electronExtensionService": {
- "devTools": "Apri strumenti di sviluppo",
+ "vs/workbench/services/extensions/electron-browser/nativeExtensionService": {
+ "devTools": "Apri Strumenti di sviluppo",
"enable": "Abilita e ricarica",
"enableResolver": "Per aprire la finestra remota, è necessaria l'estensione '{0}'.\r\nAbilitarla?",
"extensionService.autoRestart": "L'host dell'estensione è stato terminato in modo imprevisto. Riavviare...",
@@ -11100,89 +17502,28 @@
"getEnvironmentFailure": "Non è stato possibile recuperare l'ambiente remoto",
"install": "Installa e ricarica",
"installResolver": "Per aprire la finestra remota, occorre l'estensione '{0}'.\r\nSi vuole installare l'estensione?",
- "looping": "Le estensioni seguenti contengono cicli di dipendenza e sono state disabilitate: {0}",
+ "learnMore": "Altre informazioni",
"relaunch": "Riavvia VS Code",
"resolverExtensionNotFound": "`{0}` non trovato nel Marketplace",
"restart": "Riavvia host dell'estensione",
- "restartExtensionHost": "Riavvia host dell'estensione"
- },
- "vs/workbench/services/extensions/electron-sandbox/localProcessExtensionHost": {
- "extension host Log": "Host dell'estensione",
- "extensionHost.error": "Errore restituito dall'host dell'estensione: {0}",
- "extensionHost.startupFail": "L'host dell'estensione non è stato avviato entro 10 secondi. Potrebbe essersi verificato un problema.",
- "extensionHost.startupFailDebug": "L'host dell'estensione non è stato avviato entro 10 secondi. Potrebbe essersi arrestato alla prima riga e richiedere un debugger per continuare.",
- "join.extensionDevelopment": "Terminazione della sessione di debug dell'estensione",
- "reloadWindow": "Ricarica finestra"
+ "restartExtensionHost": "Riavvia host dell'estensione",
+ "restartExtensionHost.reason": "Una richiesta esplicita",
+ "startBisect": "Avvia Bisezione estensioni"
},
"vs/workbench/services/files/electron-browser/diskFileSystemProvider": {
- "binFailed": "Non è stato possibile spostare '{0}' nel Cestino",
- "trashFailed": "Non è stato possibile spostare '{0}' nel Cestino"
- },
- "vs/workbench/services/gettingStarted/common/gettingStartedContent": {
- "getting-started-setup-icon": "Icona usata per la categoria Configurazione di Attività iniziali",
- "getting-started-beginner-icon": "Icona usata per la categoria Principiante di Attività iniziali",
- "getting-started-codespaces-icon": "Icona usata per la categoria Codespace di Attività iniziali",
- "gettingStarted.newFile.title": "Nuovo file",
- "gettingStarted.newFile.description": "Consente di iniziare con un nuovo file vuoto",
- "gettingStarted.openMac.title": "Apri...",
- "gettingStarted.openMac.description": "Consente di aprire un file o una cartella per iniziare a lavorare",
- "gettingStarted.openFile.title": "Apri file...",
- "gettingStarted.openFile.description": "Consente di aprire un file per iniziare a lavorare",
- "gettingStarted.openFolder.title": "Apri cartella...",
- "gettingStarted.openFolder.description": "Consente di aprire una cartella per iniziare a lavorare",
- "gettingStarted.cloneRepo.title": "Clona repository GIT...",
- "gettingStarted.cloneRepo.description": "Clona un repository GIT",
- "gettingStarted.topLevelCommandPalette.title": "Esegui un comando...",
- "gettingStarted.topLevelCommandPalette.description": "Usare il riquadro comandi per visualizzare ed eseguire tutti i comandi di VS Code",
- "gettingStarted.codespaces.title": "Primer in Codespaces",
- "gettingStarted.codespaces.description": "Ambiente di codice istantaneo per essere subito operativi.",
- "gettingStarted.runProject.title": "Compila ed esegui l'app",
- "gettingStarted.runProject.description": "Consente di compilare, eseguire ed eseguire il debug del codice nel cloud direttamente dal browser.",
- "gettingStarted.runProject.button": "Avvia debug (F5)",
- "gettingStarted.forwardPorts.title": "Accedi all'applicazione in esecuzione",
- "gettingStarted.forwardPorts.description": "Le porte in esecuzione nel codespace vengono inoltrate automaticamente al web, per consentirne l'apertura nel browser.",
- "gettingStarted.forwardPorts.button": "Mostra pannello Porte",
- "gettingStarted.pullRequests.title": "Richieste pull a portata di mano",
- "gettingStarted.pullRequests.description": "È possibile allineare il codice al flusso di lavoro GitHub in modo da visualizzare richieste pull, aggiungere commenti, unire i rami ed eseguire altre operazioni.",
- "gettingStarted.pullRequests.button": "Apri la visualizzazione GitHub",
- "gettingStarted.remoteTerminal.title": "Esegui le attività nel terminale integrato",
- "gettingStarted.remoteTerminal.description": "Consente di eseguire attività rapide da riga di comando usando il terminale predefinito.",
- "gettingStarted.remoteTerminal.button": "Sposta lo stato attivo sul terminale",
- "gettingStarted.openVSC.title": "Sviluppa in modalità remota in VS Code",
- "gettingStarted.openVSC.description": "È possibile sfruttare tutta la potenza dell'ambiente di sviluppo cloud dall'istanza locale di VS Code. Per configurare tale istanza, installare l'estensione GitHub Codespaces e connettere l'account GitHub.",
- "gettingStarted.openVSC.button": "Apri in VS Code",
- "gettingStarted.setup.title": "Configurazione rapida",
- "gettingStarted.setup.description": "È possibile estendere e personalizzare VS Code in base alle esigenze.",
- "gettingStarted.pickColor.title": "Personalizza l'aspetto con i temi",
- "gettingStarted.pickColor.description": "Consente di selezionare un tema colori in base alle preferenze utente durante la scrittura del codice.",
- "gettingStarted.pickColor.button": "Seleziona un tema",
- "gettingStarted.findLanguageExts.title": "Scrittura di codice in qualsiasi linguaggio senza cambiare editor",
- "gettingStarted.findLanguageExts.description": "VS Code supporta oltre 50 linguaggi di programmazione. Molti sono già incorporati, ma basta un clic per installarne facilmente altri sotto forma di estensioni.",
- "gettingStarted.findLanguageExts.button": "Sfoglia le estensioni del linguaggio",
- "gettingStarted.settingsSync.title": "Sincronizza la configurazione preferita",
- "gettingStarted.settingsSync.description": "Per non perdere la configurazione perfetta di VS Code, è possibile usare Sincronizzazione impostazioni, che consente di eseguire il backup e condividere impostazioni, tasti di scelta rapida ed estensioni installate in diverse istanze di VS Code.",
- "gettingStarted.settingsSync.button": "Abilita Sincronizzazione impostazioni",
- "gettingStarted.setup.OpenFolder.title": "Apri il progetto",
- "gettingStarted.setup.OpenFolder.description": "Per iniziare, crea una cartella di progetto.",
- "gettingStarted.setup.OpenFolder.button": "Seleziona cartella",
- "gettingStarted.setup.OpenFolder.description2": "Per iniziare, aprire una cartella.",
- "gettingStarted.beginner.title": "Informazioni sulle nozioni fondamentali",
- "gettingStarted.beginner.description": "Collegamenti e funzionalità imperdibili per risparmiare tempo.",
- "gettingStarted.commandPalette.title": "Trova ed esegui comandi",
- "gettingStarted.commandPalette.description": "Il modo più semplice per cercare e scoprire tutte le funzionalità e i collegamenti di VS Code.",
- "gettingStarted.commandPalette.button": "Apri riquadro comandi",
- "gettingStarted.terminal.title": "Esegui le attività nel terminale integrato",
- "gettingStarted.terminal.description": "È possibile eseguire rapidamente i comandi della shell e monitorare l'output di compilazione, proprio accanto al codice.",
- "gettingStarted.terminal.button": "Apri terminale",
- "gettingStarted.extensions.title": "Estendibilità senza limiti",
- "gettingStarted.extensions.description": "Le estensioni sono potenziamenti di VS Code. Spaziano da pratici strumenti per la produttività, all'espansione di funzionalità già pronte all'uso, fino all'aggiunta di funzionalità completamente nuove.",
- "gettingStarted.extensions.button": "Sfoglia le estensioni consigliate",
- "gettingStarted.settings.title": "Ottimizza con le impostazioni",
- "gettingStarted.settings.description": "È possibile ottimizzare ogni aspetto di VS Code in base alle esigenze. Abilitare Sincronizzazione impostazioni per condividere le modifiche personali tra i computer.",
- "gettingStarted.settings.button": "Perfeziona le impostazioni personali",
- "gettingStarted.videoTutorial.title": "Introduzione alle funzionalità",
- "gettingStarted.videoTutorial.description": "Prima di una serie di brevi e pratiche esercitazioni video sulle funzionalità principali di VS Code.",
- "gettingStarted.videoTutorial.button": "Guarda l'esercitazione"
+ "fileWatcher": "Watcher file"
+ },
+ "vs/workbench/services/files/electron-browser/elevatedFileService": {
+ "fileNotTrusted": "L'area di lavoro non è attendibile.",
+ "fileNotTrustedMessagePosix": "Si sta per salvare \"{0}\" come utente con privilegi avanzati.",
+ "fileNotTrustedMessageWindows": "Si sta per salvare \"{0}\" come amministratore."
+ },
+ "vs/workbench/services/filesConfiguration/common/filesConfigurationService": {
+ "configuredReadonly": "L'editor è di sola lettura perché il file è stato impostato in sola lettura tramite le impostazioni. [Fare clic qui](command:{0}) per configurare o [attivare/disattivare per questa sessione](command:{1}).",
+ "fileLocked": "L'editor è di sola lettura a causa delle autorizzazioni per i file. [Fare clic qui](command:{0}) per impostare comunque scrivibile.",
+ "fileReadonly": "L'editor è di sola lettura perché il file è di sola lettura.",
+ "providerReadonly": "L'editor è di sola lettura perché il file system del file è di sola lettura.",
+ "sessionReadonly": "L'editor è di sola lettura perché il file è stato impostato in sola lettura in questa sessione. [Fare clic qui](command:{0}) per impostare scrivibile."
},
"vs/workbench/services/history/browser/historyService": {
"canNavigateBack": "Indica se è possibile tornare indietro nella cronologia degli editor",
@@ -11195,20 +17536,51 @@
"canNavigateToLastNavigationLocation": "Indica se è possibile passare all'ultima posizione di spostamento dell'editor",
"canReopenClosedEditor": "Indica se è possibile riaprire l'ultimo editor chiuso"
},
- "vs/workbench/services/integrity/electron-sandbox/integrityService": {
+ "vs/workbench/services/host/browser/browserHostService": {
+ "retry": "&&Riprova",
+ "unableToOpenExternal": "Il browser ha bloccato l'apertura di una nuova scheda o finestra. Premi 'Riprova' per riprovare.",
+ "unableToOpenExternalWorkspace": "Il browser ha bloccato l'apertura di una nuova scheda o finestra per '{0}'. Premi 'Riprova' per riprovare.",
+ "unableToOpenWindowDetail": "Consenti i popup per questo sito Web nelle [impostazioni del browser]({0})."
+ },
+ "vs/workbench/services/hover/browser/hoverWidget": {
+ "hoverhint": "Tieni premuto il tasto {0} per passare il mouse"
+ },
+ "vs/workbench/services/integrity/electron-browser/integrityService": {
"integrity.dontShowAgain": "Non visualizzare più questo messaggio",
"integrity.moreInformation": "Altre informazioni",
"integrity.prompt": "L'installazione di {0} sembra danneggiata. Reinstallare."
},
+ "vs/workbench/services/issue/browser/issueTroubleshoot": {
+ "I cannot reproduce": "Non è possibile riprodurre",
+ "Stop": "Arresta",
+ "This is Bad": "È possibile riprodurre",
+ "ask to download insiders": "Prova a scaricare e riprodurre il problema in {0} insider.",
+ "ask to reproduce issue": "Prova a riprodurre il problema in {0} insider e confermare se il problema esiste.",
+ "bad": "Posso riprodurre",
+ "detail.start": "La risoluzione dei problemi è un processo che consente di identificare la causa di un problema. La causa di un problema può essere una configurazione errata a causa di un'estensione o essere {0} stesso.\r\n\r\nDurante il processo, la finestra viene ricaricata ripetutamente. Ogni volta è necessario confermare se il problema persiste.",
+ "download insiders": "Scarica {0} Insider",
+ "empty.profile": "La risoluzione dei problemi è attiva e ha reimpostato temporaneamente le configurazioni sulle impostazioni predefinite. Verificare se è ancora possibile riprodurre il problema e continuare selezionando una di queste opzioni.",
+ "good": "Non posso riprodurre",
+ "issue is in core": "La risoluzione dei problemi ha rilevato che il problema riguarda {0}.",
+ "issue is with configuration": "La risoluzione dei problemi ha rilevato che il problema è causato dalle configurazioni. Segnalare il problema esportando le configurazioni usando il comando \"Export Profile\" e condividere il file nel report sul problema.",
+ "msg": "&&Risoluzione dei problemi",
+ "profile.extensions.disabled": "La risoluzione dei problemi è attiva e ha temporaneamente disabilitato tutte le estensioni installate. Verificare se è ancora possibile riprodurre il problema e continuare selezionando una di queste opzioni.",
+ "report anyway": "Segnala comunque il problema",
+ "stop": "Arresta",
+ "title.stop": "Arresta Risoluzione dei problemi",
+ "troubleshoot issue": "Risoluzione dei problemi",
+ "troubleshootIssue": "Risoluzione dei problemi...",
+ "use insiders": "Ciò probabilmente significa che il problema è già stato risolto e sarà disponibile in una versione futura. È possibile usare {0} insider in modo sicuro fino a quando non sarà disponibile la nuova versione stabile."
+ },
"vs/workbench/services/keybinding/browser/keybindingService": {
- "dispatch": "Controlla la logica di invio delle pressioni di tasti da usare, tra `code` (scelta consigliata) e `keyCode`.",
"invalid.keybindings": "Il valore di `contributes.{0}` non è valido: {1}",
+ "keybindings.commandsIsArray": "Tipo non corretto. Previsto \"{0}\". Il campo 'command' non supporta l'esecuzione di più comandi. Usare il comando 'runCommands' per passare più comandi da eseguire.",
"keybindings.json.args": "Argomenti da passare al comando da eseguire.",
"keybindings.json.command": "Nome del comando da eseguire",
"keybindings.json.key": "Tasto o sequenza di tasti (separati da spazio)",
+ "keybindings.json.removalCommand": "Nome del comando per il quale rimuovere la scelta rapida da tastiera",
"keybindings.json.title": "Configurazione dei tasti di scelta rapida",
"keybindings.json.when": "Condizione quando il tasto è attivo.",
- "keyboardConfigurationTitle": "Tastiera",
"nonempty": "è previsto un valore non vuoto.",
"optstring": "la proprietà `{0}` può essere omessa o deve essere di tipo `string`",
"requirestring": "la proprietà `{0}` è obbligatoria e deve essere di tipo `string`",
@@ -11222,6 +17594,10 @@
"vscode.extension.contributes.keybindings.when": "Condizione quando il tasto è attivo.",
"vscode.extension.contributes.keybindings.win": "Tasto o sequenza di tasti specifica di Windows."
},
+ "vs/workbench/services/keybinding/browser/keyboardLayoutService": {
+ "keyboard.layout.config": "Controllare il layout della tastiera usato nel Web.",
+ "keyboardConfigurationTitle": "Tastiera"
+ },
"vs/workbench/services/keybinding/common/keybindingEditing": {
"emptyKeybindingsHeader": "Inserire in questo file i tasti di scelta rapida per eseguire l'override di quelli predefiniti",
"errorInvalidConfiguration": "Non è possibile scrivere nel file di configurazione dei tasti di scelta rapida. Contiene un oggetto non di tipo Array. Aprire il file per pulirlo e riprovare.",
@@ -11244,8 +17620,13 @@
"workspaceNameVerbose": "{0} (Area di lavoro)"
},
"vs/workbench/services/language/common/languageService": {
+ "file extensions": "Estensioni di file",
+ "grammar": "Grammatica",
"invalid": "Il valore di `contributes.{0}` non è valido. È prevista una matrice.",
"invalid.empty": "Il valore di `contributes.{0}` è vuoto",
+ "language id": "ID",
+ "language name": "Nome",
+ "languages": "Linguaggi di programmazione",
"opt.aliases": "la proprietà `{0}` può essere omessa e deve essere di tipo `string[]`",
"opt.configuration": "la proprietà `{0}` può essere omessa e deve essere di tipo `string`",
"opt.extensions": "la proprietà `{0}` può essere omessa e deve essere di tipo `string[]`",
@@ -11254,6 +17635,7 @@
"opt.icon": "la proprietà '{0}' può essere omessa e deve essere di tipo 'object' con le proprietà '{1}' e '{2}' di tipo 'string'",
"opt.mimetypes": "la proprietà `{0}` può essere omessa e deve essere di tipo `string[]`",
"require.id": "la proprietà `{0}` è obbligatoria e deve essere di tipo `string`",
+ "snippets": "Frammenti",
"vscode.extension.contributes.languages": "Aggiunge come contributo le dichiarazioni di linguaggio.",
"vscode.extension.contributes.languages.aliases": "Alias di nome per il linguaggio.",
"vscode.extension.contributes.languages.configuration": "Percorso relativo di un file che contiene le opzioni di configurazione per il linguaggio.",
@@ -11267,41 +17649,37 @@
"vscode.extension.contributes.languages.id": "ID del linguaggio.",
"vscode.extension.contributes.languages.mimetypes": "Tipi MIME associati al linguaggio."
},
- "vs/workbench/services/lifecycle/electron-sandbox/lifecycleService": {
- "errorClose": "È stato generato un errore imprevisto durante il tentativo di chiudere la finestra ({0}).",
- "errorLoad": "È stato generato un errore imprevisto durante il tentativo di modificare l'area di lavoro della finestra ({0}).",
- "errorQuit": "È stato generato un errore imprevisto durante il tentativo di uscire dall'applicazione ({0}).",
- "errorReload": "È stato generato un errore imprevisto durante il tentativo di ricaricare la finestra ({0})."
+ "vs/workbench/services/lifecycle/browser/lifecycleService": {
+ "lifecycleVeto": "Le modifiche apportate potrebbero non essere salvate. Selezionare \"Annulla\" e riprovare."
},
- "vs/workbench/services/mode/common/workbenchLanguageService": {
- "invalid": "Il valore di `contributes.{0}` non è valido. È prevista una matrice.",
- "invalid.empty": "Il valore di `contributes.{0}` è vuoto",
- "opt.aliases": "la proprietà `{0}` può essere omessa e deve essere di tipo `string[]`",
- "opt.configuration": "la proprietà `{0}` può essere omessa e deve essere di tipo `string`",
- "opt.extensions": "la proprietà `{0}` può essere omessa e deve essere di tipo `string[]`",
- "opt.filenames": "la proprietà `{0}` può essere omessa e deve essere di tipo `string[]`",
- "opt.firstLine": "la proprietà `{0}` può essere omessa e deve essere di tipo `string`",
- "opt.mimetypes": "la proprietà `{0}` può essere omessa e deve essere di tipo `string[]`",
- "require.id": "la proprietà `{0}` è obbligatoria e deve essere di tipo `string`",
- "vscode.extension.contributes.languages": "Aggiunge come contributo le dichiarazioni di linguaggio.",
- "vscode.extension.contributes.languages.aliases": "Alias di nome per il linguaggio.",
- "vscode.extension.contributes.languages.configuration": "Percorso relativo di un file che contiene le opzioni di configurazione per il linguaggio.",
- "vscode.extension.contributes.languages.extensions": "Estensioni di file associate al linguaggio.",
- "vscode.extension.contributes.languages.filenamePatterns": "Criteri GLOB dei nomi file associati al linguaggio.",
- "vscode.extension.contributes.languages.filenames": "Nomi file associati al linguaggio.",
- "vscode.extension.contributes.languages.firstLine": "Espressione regolare corrispondente alla prima riga di un file del linguaggio.",
- "vscode.extension.contributes.languages.id": "ID del linguaggio.",
- "vscode.extension.contributes.languages.mimetypes": "Tipi MIME associati al linguaggio."
+ "vs/workbench/services/localization/browser/localeService": {
+ "clearDisplayLanguageDetail": "Premere il pulsante Ricarica per aggiornare la pagina e usare la lingua del browser.",
+ "clearDisplayLanguageMessage": "Per modificare la lingua di visualizzazione, è necessario ricaricare {0}",
+ "relaunchDisplayLanguageDetail": "Premere il pulsante Ricarica per aggiornare la pagina e impostare la lingua di visualizzazione su {0}.",
+ "relaunchDisplayLanguageMessage": "Per modificare la lingua di visualizzazione, è necessario ricaricare {0}",
+ "reload": "&&Ricarica"
+ },
+ "vs/workbench/services/localization/electron-browser/localeService": {
+ "argvInvalid": "Impossibile scrivere la lingua di visualizzazione. Aprire le impostazioni di runtime, correggere errori/avvisi e riprovare.",
+ "installing": "Installazione del supporto del linguaggio {0}...",
+ "openArgv": "Apri impostazioni di runtime",
+ "restart": "&&Riavvia",
+ "restartDisplayLanguageDetail1": "Per cambiare la lingua di visualizzazione in {0}, è necessario riavviare {1}.",
+ "restartDisplayLanguageMessage1": "Riavviare {0} per passare a {1}?"
+ },
+ "vs/workbench/services/log/common/logConstants": {
+ "window": "Finestra"
},
"vs/workbench/services/notification/common/notificationService": {
"neverShowAgain": "Non visualizzare più questo messaggio"
},
"vs/workbench/services/preferences/browser/keybindingsEditorInput": {
+ "keybindingsEditorLabelIcon": "Icona dell’etichetta dell’editor dei tasti di scelta rapida.",
"keybindingsInputName": "Tasti di scelta rapida"
},
"vs/workbench/services/preferences/browser/keybindingsEditorModel": {
"cat.title": "{0}: {1}",
- "default": "Predefinito",
+ "default": "Sistema",
"extension": "Estensione",
"meta": "meta",
"option": "Opzione",
@@ -11314,7 +17692,10 @@
"openFolderFirst": "Aprire prima una cartella o un'area di lavoro per creare le impostazioni dell'area di lavoro o della cartella."
},
"vs/workbench/services/preferences/common/preferencesEditorInput": {
- "settingsEditor2InputName": "Impostazioni"
+ "preferencesEditorInputName": "Preferenze",
+ "preferencesEditorLabelIcon": "Icona dell'etichetta dell'editor delle preferenze.",
+ "settingsEditor2InputName": "Impostazioni",
+ "settingsEditorLabelIcon": "Icona dell’etichetta dell'editor delle impostazioni."
},
"vs/workbench/services/preferences/common/preferencesModels": {
"commonlyUsed": "Più usate",
@@ -11322,6 +17703,7 @@
},
"vs/workbench/services/preferences/common/preferencesValidation": {
"invalidTypeError": "Il tipo dell'impostazione non è valido. È previsto {0}. Correggerlo in JSON.",
+ "regexParsingError": "Errore durante l’analisi dell'espressione regolare seguente con e senza il flag u:",
"validations.arrayIncorrectType": "Tipo non corretto. È prevista una matrice.",
"validations.booleanIncorrectType": "Tipo non corretto. È previsto \"boolean\".",
"validations.colorFormat": "Formato colore non valido. Usare #RGB, #RGBA, #RRGGBB o #RRGGBBAA.",
@@ -11350,14 +17732,6 @@
"validations.uriMissing": "È previsto un URI.",
"validations.uriSchemeMissing": "È previsto un URI con schema."
},
- "vs/workbench/services/profiles/common/profile": {
- "profile": "Profilo impostazioni",
- "settings profiles": "Profilo impostazioni"
- },
- "vs/workbench/services/profiles/common/profileService": {
- "applied profile": "{0}: sono stati applicati.",
- "profiles.applying": "{0}: Applicazione..."
- },
"vs/workbench/services/progress/browser/progressService": {
"cancel": "Annulla",
"dismiss": "Chiudi",
@@ -11366,32 +17740,102 @@
"progress.title3": "[{0}] {1}: {2}",
"status.progress": "Messaggio di stato"
},
+ "vs/workbench/services/remote/browser/remoteAgentService": {
+ "connectionError": "Si è verificato un errore imprevisto che richiede un ricaricamento della pagina.",
+ "connectionErrorDetail": "Il workbench non è riuscito a connettersi al server (Errore: {0})",
+ "reload": "&&Ricarica"
+ },
"vs/workbench/services/remote/common/remoteExplorerService": {
+ "RemoteHelpInformationExtPoint": "Aggiunge come contributo le informazioni della Guida per Remote",
+ "RemoteHelpInformationExtPoint.documentation": "URL o comando che restituisce l'URL della pagina della documentazione del progetto",
+ "RemoteHelpInformationExtPoint.feedback": "URL o comando che restituisce l'URL della pagina per l'invio di feedback del progetto",
+ "RemoteHelpInformationExtPoint.feedback.deprecated": "Usare {0}",
+ "RemoteHelpInformationExtPoint.getStarted": "URL o comando che restituisce l'URL della pagina introduttiva del progetto oppure un ID procedura dettagliata fornito dall'estensione del progetto",
+ "RemoteHelpInformationExtPoint.issues": "URL o comando che restituisce l'URL dell'elenco dei problemi del progetto",
+ "RemoteHelpInformationExtPoint.reportIssue": "URL o comando che restituisce l'URL dello strumento di segnalazione problemi del progetto",
+ "getStartedWalkthrough.id": "ID di una procedura dettagliata introduttiva da aprire."
+ },
+ "vs/workbench/services/remote/common/tunnelModel": {
"remote.localPortMismatch.single": "Non è stato possibile usare la porta locale {0} per l'inoltro alla porta remota {1}.\r\n\r\nQuesto in genere si verifica quando un altro processo sta già usando la porta locale {0}.\r\n\r\nÈ stato invece usato il numero di porta {2}.",
+ "tunnel.forwardedPortsViewEnabled": "Indica se la visualizzazione Porte è abilitata.",
"tunnel.source.auto": "A inoltro automatico",
"tunnel.source.user": "Inoltrata dall'utente",
"tunnel.staticallyForwarded": "A inoltro statico"
},
- "vs/workbench/services/remote/electron-sandbox/remoteAgentService": {
+ "vs/workbench/services/remote/electron-browser/remoteAgentService": {
"connectionError": "Non è stato possibile connettersi al server host dell'estensione remota (errore: {0})",
- "devTools": "Apri strumenti di sviluppo",
+ "devTools": "Apri Strumenti di sviluppo",
"directUrl": "Apri nel browser"
},
+ "vs/workbench/services/request/browser/requestService": {
+ "network": "Rete"
+ },
+ "vs/workbench/services/request/electron-browser/requestService": {
+ "network": "Rete"
+ },
+ "vs/workbench/services/search/browser/searchService": {
+ "errorSearchFile": "Non è possibile eseguire la ricerca con lo strumento di ricerca file ruolo di lavoro",
+ "errorSearchText": "Non è possibile eseguire la ricerca con lo strumento di ricerca testo ruolo di lavoro"
+ },
"vs/workbench/services/search/common/queryBuilder": {
"search.noWorkspaceWithName": "La cartella dell'area di lavoro non esiste: {0}"
},
- "vs/workbench/services/sessionSync/browser/sessionSyncWorkbenchService": {
- "account preference": "Accedere per usare Modifica sessioni",
- "choose account placeholder": "Selezionare un account per l'accesso",
- "others": "Altri",
- "reset auth": "Disconnetti",
- "sign in using account": "Accedi con {0}",
- "signed in": "Connesso"
+ "vs/workbench/services/secrets/electron-browser/secretStorageService": {
+ "encryptionNotAvailableJustTroubleshootingGuide": "Non è stato possibile identificare un keyring del sistema operativo per archiviare i dati correlati alla crittografia nell'ambiente desktop corrente.",
+ "isGnome": "È in esecuzione in un ambiente GNOME, ma il keyring del sistema operativo non è disponibile per la crittografia. Assicurarsi di avere installato ed eseguito il keyring GNOME o un'altra implementazione compatibile con libsecret.",
+ "isKwallet": "È in esecuzione in un ambiente KDE, ma il keyring del sistema operativo non è disponibile per la crittografia. Assicurarsi di avere kwallet in esecuzione.",
+ "troubleshootingButton": "Apri la guida alla risoluzione dei problemi",
+ "usePlainText": "Usare una crittografia più debole",
+ "usePlainTextExtraSentence": "Aprire la guida alla risoluzione dei problemi per risolvere questo problema oppure è possibile usare una crittografia più debole che non usa il keyring del sistema operativo."
+ },
+ "vs/workbench/services/suggest/browser/simpleSuggestWidget": {
+ "ariaCurrenttSuggestionReadDetails": "{0}, documenti: {1}",
+ "label": "{0}, {1}",
+ "label.desc": "{0}, {1} {2}",
+ "label.detail": "{0}{1} {2}",
+ "label.full": "{0}{1}, {2} {3}",
+ "simpleSuggestWidgetFirstSuggestionFocused": "Indica se il primo suggerimento semplice è evidenziato",
+ "simpleSuggestWidgetHasFocusedSuggestion": "Indica se i suggerimenti sono evidenziati",
+ "simpleSuggestWidgetHasNavigated": "Indica se il widget di suggerimento semplice è stato esplorato verso il basso",
+ "suggest": "Suggerisci",
+ "suggestWidget.loading": "Caricamento in corso...",
+ "suggestWidget.noSuggestions": "Nessun suggerimento."
+ },
+ "vs/workbench/services/suggest/browser/simpleSuggestWidgetDetails": {
+ "details.close": "Chiudi",
+ "loading": "Caricamento in corso..."
+ },
+ "vs/workbench/services/textfile/browser/textFileService": {
+ "confirmMakeWriteable": "'{0}' è di sola lettura. Salvare comunque?",
+ "confirmMakeWriteableDetail": "I percorsi possono essere configurati come di sola lettura tramite le impostazioni.",
+ "confirmOverwrite": "'{0}' esiste già. Sostituirlo?",
+ "deleted": "Eliminato",
+ "fileBinaryError": "Il file sembra essere binario e non può essere aperto come file di testo",
+ "makeWriteableButtonLabel": "&&Sposta comunque",
+ "overwriteIrreversible": "Nella cartella '{1}' esiste già un file o una cartella denominata {0}. Sostituendo il file o la cartella, il relativo contenuto verrà sovrascritto.",
+ "readonly": "Di sola lettura",
+ "readonlyAndDeleted": "Eliminato, di sola lettura",
+ "replaceButtonLabel": "&&Sostituisci",
+ "textFileCreate.source": "File creato",
+ "textFileModelDecorations": "Decorazioni modello di file di testo",
+ "textFileOverwrite.source": "File sostituito"
},
- "vs/workbench/services/sessionSync/common/sessionSync": {
- "session sync": "Modifica sessioni"
+ "vs/workbench/services/textfile/common/textFileEditorModel": {
+ "saveParticipants": "Salvataggio di \"{0}\"",
+ "saveTextFile": "Scrittura nel file in corso",
+ "textFileCreate.source": "Codifica file modificata"
+ },
+ "vs/workbench/services/textfile/common/textFileEditorModelManager": {
+ "genericSaveError": "Non è stato possibile salvare '{0}': {1}"
+ },
+ "vs/workbench/services/textfile/common/textFileSaveParticipant": {
+ "saveParticipants1": "Esecuzione di azioni codice e formattatori in corso...",
+ "skip": "Ignora"
+ },
+ "vs/workbench/services/textfile/electron-browser/nativeTextFileService": {
+ "join.textFiles": "Salvataggio dei file di testo"
},
- "vs/workbench/services/textMate/browser/abstractTextMateService": {
+ "vs/workbench/services/textMate/browser/textMateTokenizationFeatureImpl": {
"alreadyDebugging": "Registrazione già in corso.",
"invalid.embeddedLanguages": "Il valore in `contributes.{0}.embeddedLanguages` non è valido. Deve essere un mapping di oggetti tra nome ambito e linguaggio. Valore specificato: {1}",
"invalid.injectTo": "Il valore in `contributes.{0}.injectTo` non è valido. Deve essere una matrice di nomi di ambito del linguaggio. Valore specificato: {1}",
@@ -11415,30 +17859,6 @@
"vscode.extension.contributes.grammars.tokenTypes": "Mapping tra nome di ambito e tipi di token.",
"vscode.extension.contributes.grammars.unbalancedBracketScopes": "Definisce quali nomi di ambito non contengono parentesi quadre bilanciate."
},
- "vs/workbench/services/textfile/browser/textFileService": {
- "confirmOverwrite": "'{0}' esiste già. Sostituirlo?",
- "deleted": "Eliminato",
- "fileBinaryError": "Il file sembra essere binario e non può essere aperto come file di testo",
- "irreversible": "Nella cartella '{1}' esiste già un file o una cartella denominata {0}. Sostituendo il file o la cartella, il relativo contenuto verrà sovrascritto.",
- "readonly": "Sola lettura",
- "readonlyAndDeleted": "Eliminato, sola lettura",
- "replaceButtonLabel": "&&Sostituisci",
- "textFileCreate.source": "File creato",
- "textFileModelDecorations": "Decorazioni modello di file di testo",
- "textFileOverwrite.source": "File sostituito"
- },
- "vs/workbench/services/textfile/common/textFileEditorModel": {
- "textFileCreate.source": "Codifica file modificata"
- },
- "vs/workbench/services/textfile/common/textFileEditorModelManager": {
- "genericSaveError": "Non è stato possibile salvare '{0}': {1}"
- },
- "vs/workbench/services/textfile/common/textFileSaveParticipant": {
- "saveParticipants": "Salvataggio di '{0}'"
- },
- "vs/workbench/services/textfile/electron-sandbox/nativeTextFileService": {
- "join.textFiles": "Salvataggio dei file di testo"
- },
"vs/workbench/services/themes/browser/fileIconThemeData": {
"error.cannotparseicontheme": "Si sono verificati problemi durante l'analisi del file delle icone dei file: {0}",
"error.invalidformat": "Formato non valido per il file di tema delle icone dei file: è previsto un oggetto."
@@ -11451,7 +17871,7 @@
"error.fontStyle": "Stile del carattere non valido nel tipo di carattere '{0}'. L'impostazione verrà ignorata.",
"error.fontWeight": "Spessore del carattere non valido nel tipo di carattere '{0}'. L'impostazione verrà ignorata.",
"error.icon.font": "La definizione dell'icona '{0}' verrà ignorata. ID carattere sconosciuto.",
- "error.icon.fontCharacter": "La definizione dell'icona '{0}' verrà ignorata. Tipo di carattere sconosciuto.",
+ "error.icon.fontCharacter": "La definizione dell'icona '{0}' verrà ignorata: è necessario definirla",
"error.invalidformat": "Formato non valido per il file di tema delle icone dei prodotti: è previsto un oggetto.",
"error.missingProperties": "Formato non valido per il file di tema delle icone di prodotto: deve contenere iconDefinitions e fonts.",
"error.noFontSrc": "Nessuna origine di carattere valida nel tipo di carattere '{0}'. La definizione del tipo di carattere verrà ignorata.",
@@ -11461,6 +17881,7 @@
"error.cannotloadtheme": "Non è possibile caricare {0}: {1}"
},
"vs/workbench/services/themes/common/colorExtensionPoint": {
+ "colors": "Colori",
"contributes.color": "Aggiunge come contributo i colori con tema definiti dall'estensione",
"contributes.color.description": "Descrizione del colore che supporta i temi",
"contributes.color.id": "Identificatore del colore che supporta i temi",
@@ -11469,6 +17890,11 @@
"contributes.defaults.highContrast": "Colore predefinito per i temi scuri a contrasto elevato. Un valore di colore in esadecimale (#RRGGBB[AA]) o l'identificatore di un colore a tema che fornisce l'impostazione predefinita. Se non viene specificato, il colore 'scuro' viene usato come impostazione predefinita per i temi scuri a contrasto elevato.",
"contributes.defaults.highContrastLight": "Colore predefinito per i temi chiari a contrasto elevato. Un valore di colore in esadecimale (#RRGGBB[AA]) o l'identificatore di un colore a tema che fornisce l'impostazione predefinita. Se non specificato, il colore 'chiaro' viene usato come impostazione predefinita per i temi chiari a contrasto elevato.",
"contributes.defaults.light": "Colore predefinito per i temi chiari. Può essere un valore di colore in formato esadecimale (#RRGGBB[AA]) oppure l'identificativo di un colore che supporta i temi e fornisce l'impostazione predefinita.",
+ "defaultDark": "Predefinito scuro",
+ "defaultHC": "Predefinito contrasto elevato",
+ "defaultLight": "Predefinito chiaro",
+ "description": "Descrizione",
+ "id": "ID",
"invalid.colorConfiguration": "'configuration.colors' deve essere un array",
"invalid.default.colorType": "{0} deve essere un valore di colore in formato esadecimale (#RRGGBB [AA] o #RGB[A]) o l'identificativo di un colore che supporta i temi e che fornisce il valore predefinito. ",
"invalid.defaults": "'configuration.colors.defaults' deve essere definito e deve contenere 'chiaro' e 'scuro'",
@@ -11517,7 +17943,7 @@
"schema.folderNamesExpanded": "Associa i nomi delle cartelle alle icone per le cartelle espanse. La chiave di oggetto è il nome della cartella, segmenti di percorso esclusi. I modelli o i caratteri jolly non sono consentiti. La corrispondenza di nomi di cartella è case insensitive.",
"schema.font-format": "Formato del tipo di carattere.",
"schema.font-path": "Percorso del tipo di carattere, relativo al file di tema delle icone dei file corrente.",
- "schema.font-size": "Dimensioni predefinite del tipo di carattere. Per i valori validi, vedere https://developer.mozilla.org/en-US/docs/Web/CSS/font-size.",
+ "schema.font-size": "Dimensioni predefinite del carattere. È consigliabile usare un valore percentuale, ad esempio: 125%.",
"schema.font-style": "Stile del tipo di carattere. Per i valori validi, vedere https://developer.mozilla.org/en-US/docs/Web/CSS/font-style.",
"schema.font-weight": "Peso del tipo di carattere. Per i valori validi, vedere https://developer.mozilla.org/en-US/docs/Web/CSS/font-weight.",
"schema.fontCharacter": "Quando si usa un tipo di carattere glifo: carattere nel tipo di carattere da usare.",
@@ -11531,15 +17957,19 @@
"schema.iconDefinitions": "Descrizione di tutte le icone utilizzabili quando si associano file a icone.",
"schema.iconPath": "Quando si usa un file SVG o PNG: percorso dell'immagine. Il percorso è relativo al file impostato dell'icona.",
"schema.id": "ID del tipo di carattere.",
- "schema.id.formatError": "L'ID deve contenere solo lettere, numeri, caratteri di sottolineatura e trattini.",
"schema.languageId": "ID della definizione di icona per l'associazione.",
"schema.languageIds": "Associa i linguaggi alle icone. La chiave dell'oggetto è l'ID linguaggio definito nel punto di aggiunta contributo del linguaggio.",
"schema.light": "Associazioni facoltative per le icone di file nei temi colori chiari.",
+ "schema.rootFolder": "Icona della cartella per le cartelle radice compresse e, se la cartella radice espansa non è impostato, anche per le cartelle radice espanse.",
+ "schema.rootFolderExpanded": "Icona di cartella radice per le cartelle espanse. L'icona di cartella radice espansa è facoltativa. Se non è impostata, verrà visualizzata l'icona definita per la cartella radice.",
+ "schema.rootFolderNameExpanded": "ID della definizione di icona per l'associazione.",
+ "schema.rootFolderNames": "Associa i nomi delle cartelle radice alle icone. La chiave oggetto è il nome delle cartelle radice. I modelli o i caratteri jolly non sono consentiti. La corrispondenza di nomi di cartella radice è senza distinzione maiuscole/minuscole.",
+ "schema.rootFolderNamesExpanded": "Associa i nomi delle cartelle radice alle icone per le cartelle radice espanse. La chiave oggetto è il nome delle cartelle radice. I modelli o i caratteri jolly non sono consentiti. La corrispondenza di nomi di cartella radice è senza distinzione maiuscole/minuscole.",
"schema.showLanguageModeIcons": "Consente di configurare se utilizzare le icone della lingua predefinita se il tema non definisce un'icona per una lingua.",
"schema.src": "Percorso del tipo di carattere."
},
"vs/workbench/services/themes/common/iconExtensionPoint": {
- "contributes.icon.default": "Impostazione predefinita dell'icona. È un riferimento a un oggetto ThemeIcon esistente oppure un'icona in un tipo di carattere icona.",
+ "contributes.icon.default": "L'impostazione predefinita dell'icona. Un riferimento a un oggetto ThemeIcon esistente o un'icona in un tipo di carattere icona.",
"contributes.icon.default.fontCharacter": "Carattere per l'icona nel tipo carattere icona.",
"contributes.icon.default.fontPath": "Percorso del tipo di carattere icona che definisce l'icona.",
"contributes.icon.description": "Descrizione dell'icona che supporta i temi",
@@ -11560,16 +17990,15 @@
"schema.font-weight": "Peso del tipo di carattere. Per i valori validi, vedere https://developer.mozilla.org/en-US/docs/Web/CSS/font-weight.",
"schema.iconDefinitions": "Associazione del nome dell'icona a un tipo di carattere.",
"schema.id": "ID del tipo di carattere.",
- "schema.id.formatError": "L'ID deve contenere solo lettere, numeri, caratteri di sottolineatura e trattini.",
"schema.src": "Percorso del tipo di carattere."
},
"vs/workbench/services/themes/common/themeConfiguration": {
- "autoDetectHighContrast": "Se è abilitata, passa automaticamente a un tema a contrasto elevato se il sistema operativo usa un tema di questo tipo. Il tema a contrasto elevato da usare viene specificato da `#{0}#` e `#{1}#`",
- "colorTheme": "Specifica il tema colori usato nell'area di lavoro.",
+ "autoDetectHighContrast": "Se è abilitata, passa automaticamente a un tema a contrasto elevato se il sistema operativo usa un tema di questo tipo. Il tema a contrasto elevato da usare viene specificato da {0} e {1}.",
+ "colorTheme": "Specifica il tema colori usato nel workbench quando l'impostazione {0} non è abilitata.",
"colorThemeError": "Il tema è sconosciuto o non è installato.",
"defaultProductIconThemeDesc": "Predefinito",
"defaultProductIconThemeLabel": "Predefinito",
- "detectColorScheme": "Se è impostata, passa automaticamente al tema colori preferito in base all'aspetto del sistema operativo. Se l'aspetto del sistema operativo è scuro, viene usato il tema specificato in `#{0}#`, mentre per quello chiaro viene usato quello in `#{1}#`.",
+ "detectColorScheme": "Se l'impostazione è abilitata, verrà selezionato automaticamente un tema colori in base alla modalità colore di sistema. Se la modalità colore di sistema è scura, viene usata l'impostazione {0}, altrimenti {1}.",
"editorColors": "Sostituisce i colori della sintassi dell'editor e lo stile del tipo di carattere nel tema colori attualmente selezionato.",
"editorColors.comments": "Imposta i colori e gli stili per i commenti",
"editorColors.functions": "Imposta i colori e gli stili per i riferimenti e le dichiarazioni di funzioni.",
@@ -11577,7 +18006,7 @@
"editorColors.numbers": "Imposta i colori e stili per i valori letterali numerici.",
"editorColors.semanticHighlighting": "Indica se abilitare l'evidenziazione semantica per questo tema.",
"editorColors.semanticHighlighting.deprecationMessage": "In alternativa usare `enabled` nell'impostazione `editor.semanticTokenColorCustomizations`.",
- "editorColors.semanticHighlighting.deprecationMessageMarkdown": "In alternativa, usare `enabled` nell'impostazione `#editor.semanticTokenColorCustomizations#`.",
+ "editorColors.semanticHighlighting.deprecationMessageMarkdown": "Usa invece \"abilitato\" nell'impostazione {0}.",
"editorColors.semanticHighlighting.enabled": "Indica se l'evidenziazione semantica è abilitata o disabilitata per questo tema",
"editorColors.semanticHighlighting.rules": "Regole di definizione dello stile dei token semantici per questo tema.",
"editorColors.strings": "Imposta i colori e gli stili per i valori letterali stringa.",
@@ -11588,20 +18017,24 @@
"iconThemeError": "Il tema dell'icona file è sconosciuto o non è installato.",
"noIconThemeDesc": "Non ci sono icone di file",
"noIconThemeLabel": "Nessuno",
- "preferredDarkColorTheme": "Specifica il tema colori preferito per l'aspetto scuro del sistema operativo quando `#{0}#` è abilitato.",
- "preferredHCDarkColorTheme": "Specifica il tema colori preferito per la modalità scura a contrasto elevato quando `#{0}#` è abilitato.",
- "preferredHCLightColorTheme": "Specifica il tema colori preferito per la modalità chiara a contrasto elevato quando `#{0}#` è abilitato.",
- "preferredLightColorTheme": "Specifica il tema colori preferito per l'aspetto chiaro del sistema operativo quando è abilitata l'impostazione `#{0}#`.",
+ "preferredDarkColorTheme": "Specifica il tema colori quando la modalità colore di sistema è in modalità scura e l'impostazione {0} è abilitata.",
+ "preferredHCDarkColorTheme": "Specifica il tema colori quando la modalità colore di sistema è scura e l'impostazione {0} è abilitata.",
+ "preferredHCLightColorTheme": "Specifica il tema colori quando è attiva la modalità chiara a contrasto elevato e l'impostazione {0} è abilitata.",
+ "preferredLightColorTheme": "Specifica il tema colori quando la modalità colore di sistema è in modalità chiara e l'impostazione {0} è abilitata.",
"productIconTheme": "Specifica il tema delle icone dei prodotti usato.",
"productIconThemeError": "Il tema delle icone dei prodotti è sconosciuto o non è stato installato.",
"semanticTokenColors": "Esegue l'override del colore e degli stili dei token semantici dell'editor nel tema colori attualmente selezionato.",
"workbenchColors": "Sostituisce i colori del tema colori attualmente selezionato."
},
"vs/workbench/services/themes/common/themeExtensionPoints": {
+ "color themes": "Temi colore",
+ "file icon themes": "Temi icona file",
"invalid.path.1": "Valore previsto di `contributes.{0}.path` ({1}) da includere nella cartella dell'estensione ({2}). L'estensione potrebbe non essere più portatile.",
+ "product icon themes": "Temi icona prodotto",
"reqarray": "Il punto di estensione `{0}` deve essere una matrice.",
"reqid": "È previsto un valore stringa in `contributes.{0}.id`. Valore specificato: {1}",
"reqpath": "È previsto un valore stringa in `contributes.{0}.path`. Valore specificato: {1}",
+ "themes": "Temi",
"vscode.extension.contributes.iconThemes": "Aggiunge come contributo i temi dell'icona del file.",
"vscode.extension.contributes.iconThemes.id": "ID del tema dell'icona di file usato nelle impostazioni utente.",
"vscode.extension.contributes.iconThemes.label": "Etichetta del tema dell'icona di file visualizzata nell'interfaccia utente.",
@@ -11642,87 +18075,191 @@
"invalid.semanticTokenTypeConfiguration": "'configuration.semanticTokenType' deve essere una matrice",
"invalid.superType.format": "'configuration.{0}.superType' deve essere conforme al formato letteraOCifra[-_letteraOCifra]*"
},
+ "vs/workbench/services/themes/electron-browser/themes.contribution": {
+ "window.systemColorTheme": "Impostare la modalità colore per gli elementi nativi dell'interfaccia utente, ad esempio le finestre di dialogo native, i menu e la barra del titolo. Anche se il sistema operativo è configurato in modalità colore chiaro, è possibile selezionare tema di colore scuro del sistema per la finestra. È anche possibile configurare la regolazione automatica in base all'impostazione {0}.\r\n\r\nNota: questa impostazione viene ignorata quando {1} è abilitata.",
+ "window.systemColorTheme.auto": "Usare i colori chiari dei widget nativi per i temi con colori chiaro e scuri per i temi di colore scuro.",
+ "window.systemColorTheme.dark": "Usare i colori scuri dei widget nativi.",
+ "window.systemColorTheme.default": "I colori del widget nativo corrispondono ai colori di sistema.",
+ "window.systemColorTheme.light": "Usare i colori chiari dei widget nativi."
+ },
+ "vs/workbench/services/userDataProfile/browser/extensionsResource": {
+ "all profiles and disabled": "Tutti i profili",
+ "exclude": "Seleziona {0} estensione",
+ "extensions": "Estensioni",
+ "installingExtension": "Installazione dell'estensione {0} in corso..."
+ },
+ "vs/workbench/services/userDataProfile/browser/globalStateResource": {
+ "globalState": "Stato interfaccia utente"
+ },
+ "vs/workbench/services/userDataProfile/browser/keybindingsResource": {
+ "keybindings": "Tasti di scelta rapida"
+ },
+ "vs/workbench/services/userDataProfile/browser/mcpProfileResource": {
+ "mcp": "Server MCP"
+ },
+ "vs/workbench/services/userDataProfile/browser/settingsResource": {
+ "settings": "Impostazioni"
+ },
+ "vs/workbench/services/userDataProfile/browser/snippetsResource": {
+ "exclude": "Seleziona frammento {0}",
+ "snippets": "Frammenti"
+ },
+ "vs/workbench/services/userDataProfile/browser/tasksResource": {
+ "tasks": "Attività"
+ },
+ "vs/workbench/services/userDataProfile/browser/userDataProfileImportExportService": {
+ "applying global state": "Applicazione dello stato dell'interfaccia utente in corso...",
+ "close": "Chiudi",
+ "copy": "&&Copia collegamento",
+ "create from profile": "Crea profilo: {0}",
+ "create keybindings": "Creazione delle scelte rapide da tastiera in corso...",
+ "create snippets": "Creazione dei frammenti in corso...",
+ "create tasks": "Creazione delle attività in corso...",
+ "creating settings": "Creazione delle impostazioni in corso...",
+ "export profile dialog": "Salva profilo",
+ "export profile name": "Assegna un nome al profilo",
+ "export profile title": "Esporta profilo",
+ "export success": "Esportazione del profilo '{0}' completata.",
+ "file": "file",
+ "from default": "Dal profilo predefinito",
+ "installing extensions": "Installazione delle estensioni...",
+ "invalid profile content": "Questo profilo non è valido.",
+ "local": "Locale",
+ "open": "&&Apri collegamento",
+ "open in": "&&Apri in {0}",
+ "overwrite": "&&Sostituisci",
+ "profile already exists": "Il profilo con nome '{0}' esiste già. Sostituire i contenuti?",
+ "profile name required": "È necessario specificare il nome del profilo.",
+ "profiles.exporting": "{0}: in fase di esportazione...",
+ "progress extensions": "Applicazione delle estensioni in corso...",
+ "progress global state": "Applicazione dello stato in corso...",
+ "progress keybindings": "Applicazione delle scelte rapide da tastiera in corso...",
+ "progress settings": "Applicazione delle impostazioni...",
+ "progress snippets": "Applicazione dei frammenti...",
+ "progress tasks": "Applicazione delle attività in corso...",
+ "select": "Seleziona {0}",
+ "select profile": "Seleziona profilo",
+ "select profile content handler": "Esportare profilo '{0}' come...",
+ "switching profile": "Cambio profilo...",
+ "troubleshoot issue": "Risoluzione dei problemi",
+ "troubleshoot profile progress": "Configurazione del profilo di risoluzione dei problemi: {0}"
+ },
"vs/workbench/services/userDataProfile/browser/userDataProfileManagement": {
- "cannotDeleteDefaultProfile": "Non è possibile eliminare il profilo impostazioni predefinito",
- "cannotRenameDefaultProfile": "Non è possibile rinominare il profilo impostazioni predefinito",
+ "cannotDeleteDefaultProfile": "Non è possibile eliminare l'area predefinita {0}.",
+ "cannotRenameDefaultProfile": "Non è possibile rinominare il profilo predefinito.",
"reload button": "&&Ricarica",
- "reload message": "Per cambiare un profilo impostazioni è necessario ricaricare VS Code.",
- "reload message when removed": "Il profilo impostazioni corrente è stato rimosso. Ricaricare per tornare al profilo impostazioni predefinito"
+ "reload message": "Per cambiare profilo è necessario ricaricare VS Code.",
+ "reload message when removed": "Il profilo corrente è stato rimosso. Ricaricare per tornare al profilo predefinito",
+ "reload message when switched": "L'area di lavoro corrente è stata rimossa dal profilo corrente. Ricaricare per tornare al profilo aggiornato",
+ "reload message when updated": "Il profilo corrente è stato aggiornato. Ricaricare per tornare al profilo aggiornato",
+ "switch profile": "Passaggio a un profilo utente"
},
"vs/workbench/services/userDataProfile/common/userDataProfile": {
- "profile": "Profilo impostazioni",
- "settings profiles": "Profili Impostazioni"
+ "defaultProfileIcon": "Icona per il profilo predefinito.",
+ "profile": "Profilo",
+ "profiles": "Profili"
},
- "vs/workbench/services/userDataProfile/common/userDataProfileImportExportService": {
- "applied profile": "{0}: sono stati applicati.",
- "imported profile": "{0}: l'importazione è stata completata.",
- "name": "Nome del profilo",
- "profiles.applying": "{0}: Applicazione...",
- "profiles.importing": "{0}: Importazione...",
- "save profile as": "Crea dal profilo corrente..."
+ "vs/workbench/services/userDataProfile/common/userDataProfileIcons": {
+ "settingsViewBarIcon": "Icona Impostazioni nella barra della visualizzazione."
},
"vs/workbench/services/userDataSync/browser/userDataSyncWorkbenchService": {
- "cancel": "Annulla",
+ "and": " e ",
"choose account placeholder": "Selezionare un account per l'accesso",
- "conflicts detected": "Rilevati conflitti",
- "first time sync detail": "L'ultima sincronizzazione è stata eseguita da un altro computer.\r\nEseguire il merge o sostituire con i dati nel cloud?",
+ "conflicts detected": "Conflitti rilevati in {0}",
+ "download sync activity dialog open label": "Salva",
+ "download sync activity dialog title": "Selezionare la cartella per scaricare l'attività Di sincronizzazione impostazioni",
"last used": "Ultimo usato con la sincronizzazione",
- "merge": "Unisci",
- "merge Manually": "Esegui merge manuale...",
- "merge or replace": "Esegui merge o sostituisci",
- "no": "&&No",
+ "no": "No",
"no account": "Non ci sono account disponibili",
"no authentication providers": "Non è possibile attivare la sincronizzazione delle impostazioni perché non sono disponibili provider di autenticazione.",
+ "no authentication providers during signin": "Impossibile accedere: non sono disponibili provider di autenticazione.",
"others": "Altri",
- "replace local": "Sostituisci locale",
+ "replace local": "Accetta &&remoto",
+ "replace local single": "Accetta &&{0} remoto",
+ "replace remote": "Accetta &&locale",
+ "replace remote single": "Accetta &&{0} locale",
"reset": "I dati verranno cancellati dal cloud e la sincronizzazione verrà arrestata in tutti i dispositivi.",
"reset title": "Cancella",
"resetButton": "&&Reimposta",
- "resolve": "Non è possibile eseguire il merge a causa di conflitti. Per continuare, eseguire il merge manualmente...",
+ "resolve": "Risolvi i conflitti da attivare...",
+ "resolving conflicts": "Risoluzione dei conflitti in corso...",
"settings sync": "Sincronizzazione impostazioni",
- "show log": "mostra log",
- "sign in": "Accedi",
+ "show conflicts": "&&Mostra conflitti",
"sign in using account": "Accedi con {0}",
"signed in": "Accesso eseguito",
- "successive auth failures": "La sincronizzazione delle impostazioni è sospesa a causa di ripetuti errori di autorizzazione. Eseguire di nuovo l'accesso per continuare la sincronizzazione",
"sync in progress": "La funzionalità Sincronizzazione impostazioni verrà attivata. Annullarla?",
"sync turned on": "{0} è attivata",
- "syncing resource": "Sincronizzazione di {0}...",
+ "syncing...": "Attivazione...",
"turning on": "Attivazione...",
"yes": "&&Sì"
},
"vs/workbench/services/userDataSync/common/userDataSync": {
+ "download sync activity title": "Attività di sincronizzazione delle impostazioni di download",
"extensions": "Estensioni",
"keybindings": "Tasti di scelta rapida",
+ "mcp": "Server MCP",
+ "profiles": "Profili",
+ "prompts": "Richieste e istruzioni",
"settings": "Impostazioni",
- "snippets": "Frammenti utente",
+ "snippets": "Frammenti di codice",
"sync category": "Sincronizzazione impostazioni",
"syncViewIcon": "Icona della visualizzazione Sincronizzazione impostazioni.",
- "tasks": "Attività utente",
- "ui state label": "Stato interfaccia utente"
+ "tasks": "Attività",
+ "ui state label": "Stato interfaccia utente",
+ "workspace state label": "Stato dell'area di lavoro"
},
"vs/workbench/services/views/browser/viewDescriptorService": {
- "cachedViewContainerPositions": "Visualizzazioni delle personalizzazioni dei percorsi dei contenitori",
- "cachedViewPositions": "Visualizzare le personalizzazioni dei percorsi",
"hideView": "Nascondi '{0}'",
- "resetViewLocation": "Reimposta posizione"
+ "hideViewDescription": "Nasconde la visualizzazione {0} se è visibile e il contenitore di visualizzazioni in cui si trova è visibile",
+ "resetViewLocation": "Reimposta posizione",
+ "toggleVisibilityDescription": "Attiva o disattiva la visibilità della visualizzazione {0} se il contenitore di visualizzazioni in cui si trova è visibile",
+ "user": "Contenitore visualizzazione utente"
+ },
+ "vs/workbench/services/views/browser/viewsService": {
+ "editor": "Editor di testo",
+ "focus view": "Sposta stato attivo sulla visualizzazione {0}",
+ "open view": "Apre la visualizzazione {0}",
+ "preserveFocus": "Indica se mantenere lo stato attivo esistente all'apertura della visualizzazione.",
+ "resetViewLocation": "Reimposta posizione",
+ "show view": "Mostra {0}",
+ "toggle view": "Attiva/Disattiva {0}"
},
- "vs/workbench/services/views/common/viewContainerModel": {
- "globalViewsStateStorageId": "Visualizzazioni delle personalizzazioni della visibilità nel contenitore di visualizzazioni {0}"
+ "vs/workbench/services/views/test/browser/viewContainerModel.test": {
+ "Test View 1": "Visualizzazione test 1",
+ "Test View 2": "Visualizzazione test 2",
+ "Test View 3": "Visualizzazione test 3",
+ "Test View 4": "Visualizzazione test 4",
+ "Test View 5": "Visualizzazione test 5",
+ "test": "test"
+ },
+ "vs/workbench/services/views/test/browser/viewDescriptorService.test": {
+ "Test View 1": "Visualizzazione test 1",
+ "Test View 2": "Visualizzazione test 2",
+ "Test View 3": "Visualizzazione test 3",
+ "Test View 4": "Visualizzazione test 4",
+ "test": "test"
+ },
+ "vs/workbench/services/voiceRecognition/electron-sandbox/workbenchVoiceRecognitionService": {
+ "voiceTranscription": "Trascrizione vocale",
+ "voiceTranscriptionError": "Trascrizione vocale non riuscita: {0}",
+ "voiceTranscriptionGettingReady": "Preparazione del microfono in corso...",
+ "voiceTranscriptionRecording": "Registrazione dal microfono in corso..."
},
"vs/workbench/services/workingCopy/common/fileWorkingCopyManager": {
+ "confirmMakeWriteable": "'{0}' è di sola lettura. Salvare comunque?",
+ "confirmMakeWriteableDetail": "I percorsi possono essere configurati come di sola lettura tramite le impostazioni.",
"confirmOverwrite": "'{0}' esiste già. Sostituirlo?",
"deleted": "Eliminato",
"fileWorkingCopyCreate.source": "File creato",
"fileWorkingCopyDecorations": "Decorazioni della copia di lavoro del file",
"fileWorkingCopyReplace.source": "File sostituito",
- "irreversible": "Nella cartella '{1}' esiste già un file o una cartella denominata {0}. Sostituendo il file o la cartella, il relativo contenuto verrà sovrascritto.",
- "readonly": "Sola lettura",
- "readonlyAndDeleted": "Eliminato, Sola lettura",
+ "makeWriteableButtonLabel": "&&Sposta comunque",
+ "overwriteIrreversible": "Nella cartella '{1}' esiste già un file o una cartella denominata {0}. Sostituendo il file o la cartella, il relativo contenuto verrà sovrascritto.",
+ "readonly": "Di sola lettura",
+ "readonlyAndDeleted": "Eliminato, di sola lettura",
"replaceButtonLabel": "&&Sostituisci"
},
"vs/workbench/services/workingCopy/common/storedFileWorkingCopy": {
- "discard": "Rimuovere",
"genericSaveError": "Non è stato possibile salvare '{0}': {1}",
"overwrite": "Sovrascrivere",
"overwriteElevated": "Sovrascrivere come admin...",
@@ -11733,55 +18270,62 @@
"readonlySaveErrorAdmin": "Non è stato possibile salvare '{0}': il file è di sola lettura. Selezionare 'Sovrascrivi come Admin' per riprovare come amministratore.",
"readonlySaveErrorSudo": "Non è stato possibile salvare '{0}': il file è di sola lettura. Selezionare 'Sovrascrivi come Sudo' per riprovare come utente con privilegi avanzati.",
"retry": "Riprova",
+ "revert": "Ripristina",
"saveAs": "Salva con nome...",
"saveElevated": "Riprova come amministratore...",
"saveElevatedSudo": "Riprova come Sudo...",
+ "saveParticipants": "Salvataggio di '{0}'",
+ "saveTextFile": "Scrittura nel file in corso...",
"staleSaveError": "Non è stato possibile salvare \"{0}\": il contenuto del file è più recente. Si vuole sovrascrivere il file con le modifiche?"
},
"vs/workbench/services/workingCopy/common/storedFileWorkingCopyManager": {
"join.fileWorkingCopyManager": "Salvataggio delle copie di lavoro"
},
"vs/workbench/services/workingCopy/common/storedFileWorkingCopySaveParticipant": {
- "saveParticipants": "Salvataggio di '{0}'"
+ "saveParticipants1": "Esecuzione di azioni codice e formattatori in corso...",
+ "skip": "Ignora"
},
"vs/workbench/services/workingCopy/common/workingCopyHistoryService": {
"default.source": "File salvato",
+ "join.workingCopyHistory": "Salvataggio della cronologia locale",
"moved.source": "File spostato",
"renamed.source": "File rinominato"
},
"vs/workbench/services/workingCopy/common/workingCopyHistoryTracker": {
"undoRedo.source": "Annulla/Ripeti"
},
- "vs/workbench/services/workingCopy/electron-sandbox/workingCopyBackupService": {
+ "vs/workbench/services/workingCopy/electron-browser/workingCopyBackupService": {
"join.workingCopyBackups": "Backup copie di lavoro"
},
- "vs/workbench/services/workingCopy/electron-sandbox/workingCopyBackupTracker": {
+ "vs/workbench/services/workingCopy/electron-browser/workingCopyBackupTracker": {
"backupBeforeShutdownDetail": "Fare clic su 'Annulla' per interrompere l'attesa e salvare o ripristinare gli editor con modifiche non salvate.",
"backupBeforeShutdownMessage": "Il backup degli editor con modifiche non salvate richiede più tempo...",
"backupErrorDetails": "Provare prima a salvare o ripristinare gli editor con modifiche e riprovare.",
"backupTrackerBackupFailed": "Non è stato possibile salvare nella posizione di backup i seguenti editor con modifiche non salvate.",
"backupTrackerConfirmFailed": "Non è stato possibile salvare o ripristinare i seguenti editor con modifiche non salvate.",
"discardBackupsBeforeShutdown": "L'eliminazione dei backup richiede più tempo...",
+ "ok": "&&OK",
"revertBeforeShutdown": "Il ripristino degli editor con modifiche non salvate richiede più tempo...",
- "saveBeforeShutdown": "Il salvataggio degli editor con modifiche non salvate richiede più tempo..."
- },
- "vs/workbench/services/workingCopy/electron-sandbox/workingCopyHistoryService": {
- "join.workingCopyHistory": "Salvataggio della cronologia locale"
+ "saveBeforeShutdown": "Il salvataggio degli editor con modifiche non salvate richiede più tempo...",
+ "shutdownForceClose": "Chiudi comunque",
+ "shutdownForceQuit": "Esci comunque",
+ "shutdownForceReload": "Ricarica comunque"
},
"vs/workbench/services/workspaces/browser/abstractWorkspaceEditingService": {
"errorInvalidTaskConfiguration": "Impossibile scrivere nel file di configurazione dell'area di lavoro. Si prega di aprire il file per correggere eventuali errori/avvisi e riprovare.",
- "errorWorkspaceConfigurationFileDirty": "Impossibile scrivere nel file di configurazione dell'area di lavoro perché il file contiene modifiche non salvate. Salvarlo e riprovare.",
"openWorkspaceConfigurationFile": "Apri configurazione dell'area di lavoro",
"save": "Salva",
"saveWorkspace": "Salva area di lavoro"
},
"vs/workbench/services/workspaces/browser/workspaceTrustEditorInput": {
- "workspaceTrustEditorInputName": "Attendibilità dell'area di lavoro"
+ "workspaceTrustEditorInputName": "Attendibilità dell'area di lavoro",
+ "workspaceTrustEditorLabelIcon": "Icona dell'etichetta dell'editor di attendibilità dell'area di lavoro."
},
- "vs/workbench/services/workspaces/electron-sandbox/workspaceEditingService": {
- "cancel": "Annulla",
- "doNotSave": "Non salvare",
- "save": "Salva",
+ "vs/workbench/services/workspaces/electron-browser/workspaceEditingService": {
+ "doNotAskAgain": "Rimuovi sempre le aree di lavoro senza titolo senza chiederlo",
+ "doNotSave": "&&Non salvare",
+ "restartExtensionHost.reason": "Apertura di un'area di lavoro multi-radice",
+ "save": "&&Salva",
"saveWorkspaceDetail": "Salvare l'area di lavoro se si prevede di aprirla di nuovo.",
"saveWorkspaceMessage": "Salvare la configurazione dell'area di lavoro in un file?",
"workspaceOpenedDetail": "L'area di lavoro è già aperta in un'altra finestra. Chiudere tale finestra prima di riprovare.",
diff --git a/i18n/vscode-language-pack-ja/package.json b/i18n/vscode-language-pack-ja/package.json
index f420fd9df9..d6217c14e0 100644
--- a/i18n/vscode-language-pack-ja/package.json
+++ b/i18n/vscode-language-pack-ja/package.json
@@ -2,7 +2,7 @@
"name": "vscode-language-pack-ja",
"displayName": "Japanese Language Pack for Visual Studio Code",
"description": "Language pack extension for Japanese",
- "version": "1.70.0",
+ "version": "1.108.0",
"publisher": "MS-CEINTL",
"repository": {
"type": "git",
@@ -10,12 +10,15 @@
},
"license": "SEE MIT LICENSE IN LICENSE.md",
"engines": {
- "vscode": "^1.70.0"
+ "vscode": "^1.108.0"
},
"icon": "languagepack.png",
"categories": [
"Language Packs"
],
+ "keywords": [
+ "日本語"
+ ],
"contributes": {
"localizations": [
{
@@ -27,601 +30,369 @@
"id": "vscode",
"path": "./translations/main.i18n.json"
},
+ {
+ "id": "ms-vscode.js-debug",
+ "path": "./translations/extensions/ms-vscode.js-debug.i18n.json"
+ },
{
"id": "vscode.bat",
- "path": "./translations/extensions/bat.i18n.json"
+ "path": "./translations/extensions/vscode.bat.i18n.json"
+ },
+ {
+ "id": "vscode.builtin-notebook-renderers",
+ "path": "./translations/extensions/vscode.builtin-notebook-renderers.i18n.json"
},
{
"id": "vscode.clojure",
- "path": "./translations/extensions/clojure.i18n.json"
+ "path": "./translations/extensions/vscode.clojure.i18n.json"
},
{
"id": "vscode.coffeescript",
- "path": "./translations/extensions/coffeescript.i18n.json"
+ "path": "./translations/extensions/vscode.coffeescript.i18n.json"
},
{
"id": "vscode.configuration-editing",
- "path": "./translations/extensions/configuration-editing.i18n.json"
+ "path": "./translations/extensions/vscode.configuration-editing.i18n.json"
},
{
"id": "vscode.cpp",
- "path": "./translations/extensions/cpp.i18n.json"
+ "path": "./translations/extensions/vscode.cpp.i18n.json"
},
{
"id": "vscode.csharp",
- "path": "./translations/extensions/csharp.i18n.json"
+ "path": "./translations/extensions/vscode.csharp.i18n.json"
},
{
"id": "vscode.css-language-features",
- "path": "./translations/extensions/css-language-features.i18n.json"
+ "path": "./translations/extensions/vscode.css-language-features.i18n.json"
},
{
"id": "vscode.css",
- "path": "./translations/extensions/css.i18n.json"
+ "path": "./translations/extensions/vscode.css.i18n.json"
},
{
"id": "vscode.dart",
- "path": "./translations/extensions/dart.i18n.json"
+ "path": "./translations/extensions/vscode.dart.i18n.json"
},
{
"id": "vscode.debug-auto-launch",
- "path": "./translations/extensions/debug-auto-launch.i18n.json"
+ "path": "./translations/extensions/vscode.debug-auto-launch.i18n.json"
},
{
"id": "vscode.debug-server-ready",
- "path": "./translations/extensions/debug-server-ready.i18n.json"
+ "path": "./translations/extensions/vscode.debug-server-ready.i18n.json"
},
{
"id": "vscode.diff",
- "path": "./translations/extensions/diff.i18n.json"
+ "path": "./translations/extensions/vscode.diff.i18n.json"
},
{
"id": "vscode.docker",
- "path": "./translations/extensions/docker.i18n.json"
+ "path": "./translations/extensions/vscode.docker.i18n.json"
+ },
+ {
+ "id": "vscode.dotenv",
+ "path": "./translations/extensions/vscode.dotenv.i18n.json"
},
{
"id": "vscode.emmet",
- "path": "./translations/extensions/emmet.i18n.json"
+ "path": "./translations/extensions/vscode.emmet.i18n.json"
},
{
"id": "vscode.extension-editing",
- "path": "./translations/extensions/extension-editing.i18n.json"
+ "path": "./translations/extensions/vscode.extension-editing.i18n.json"
},
{
"id": "vscode.fsharp",
- "path": "./translations/extensions/fsharp.i18n.json"
+ "path": "./translations/extensions/vscode.fsharp.i18n.json"
},
{
"id": "vscode.git-base",
- "path": "./translations/extensions/git-base.i18n.json"
- },
- {
- "id": "vscode.git-ui",
- "path": "./translations/extensions/git-ui.i18n.json"
+ "path": "./translations/extensions/vscode.git-base.i18n.json"
},
{
"id": "vscode.git",
- "path": "./translations/extensions/git.i18n.json"
+ "path": "./translations/extensions/vscode.git.i18n.json"
},
{
"id": "vscode.github-authentication",
- "path": "./translations/extensions/github-authentication.i18n.json"
- },
- {
- "id": "vscode.github-browser",
- "path": "./translations/extensions/github-browser.i18n.json"
+ "path": "./translations/extensions/vscode.github-authentication.i18n.json"
},
{
"id": "vscode.github",
- "path": "./translations/extensions/github.i18n.json"
+ "path": "./translations/extensions/vscode.github.i18n.json"
},
{
"id": "vscode.go",
- "path": "./translations/extensions/go.i18n.json"
+ "path": "./translations/extensions/vscode.go.i18n.json"
},
{
"id": "vscode.groovy",
- "path": "./translations/extensions/groovy.i18n.json"
+ "path": "./translations/extensions/vscode.groovy.i18n.json"
},
{
"id": "vscode.grunt",
- "path": "./translations/extensions/grunt.i18n.json"
+ "path": "./translations/extensions/vscode.grunt.i18n.json"
},
{
"id": "vscode.gulp",
- "path": "./translations/extensions/gulp.i18n.json"
+ "path": "./translations/extensions/vscode.gulp.i18n.json"
},
{
"id": "vscode.handlebars",
- "path": "./translations/extensions/handlebars.i18n.json"
+ "path": "./translations/extensions/vscode.handlebars.i18n.json"
},
{
"id": "vscode.hlsl",
- "path": "./translations/extensions/hlsl.i18n.json"
+ "path": "./translations/extensions/vscode.hlsl.i18n.json"
},
{
"id": "vscode.html-language-features",
- "path": "./translations/extensions/html-language-features.i18n.json"
+ "path": "./translations/extensions/vscode.html-language-features.i18n.json"
},
{
"id": "vscode.html",
- "path": "./translations/extensions/html.i18n.json"
- },
- {
- "id": "vscode.image-preview",
- "path": "./translations/extensions/image-preview.i18n.json"
+ "path": "./translations/extensions/vscode.html.i18n.json"
},
{
"id": "vscode.ini",
- "path": "./translations/extensions/ini.i18n.json"
+ "path": "./translations/extensions/vscode.ini.i18n.json"
},
{
"id": "vscode.ipynb",
- "path": "./translations/extensions/ipynb.i18n.json"
+ "path": "./translations/extensions/vscode.ipynb.i18n.json"
},
{
"id": "vscode.jake",
- "path": "./translations/extensions/jake.i18n.json"
+ "path": "./translations/extensions/vscode.jake.i18n.json"
},
{
"id": "vscode.java",
- "path": "./translations/extensions/java.i18n.json"
+ "path": "./translations/extensions/vscode.java.i18n.json"
},
{
"id": "vscode.javascript",
- "path": "./translations/extensions/javascript.i18n.json"
+ "path": "./translations/extensions/vscode.javascript.i18n.json"
},
{
"id": "vscode.json-language-features",
- "path": "./translations/extensions/json-language-features.i18n.json"
+ "path": "./translations/extensions/vscode.json-language-features.i18n.json"
},
{
"id": "vscode.json",
- "path": "./translations/extensions/json.i18n.json"
+ "path": "./translations/extensions/vscode.json.i18n.json"
},
{
"id": "vscode.julia",
- "path": "./translations/extensions/julia.i18n.json"
+ "path": "./translations/extensions/vscode.julia.i18n.json"
},
{
"id": "vscode.latex",
- "path": "./translations/extensions/latex.i18n.json"
+ "path": "./translations/extensions/vscode.latex.i18n.json"
},
{
"id": "vscode.less",
- "path": "./translations/extensions/less.i18n.json"
+ "path": "./translations/extensions/vscode.less.i18n.json"
},
{
"id": "vscode.log",
- "path": "./translations/extensions/log.i18n.json"
+ "path": "./translations/extensions/vscode.log.i18n.json"
},
{
"id": "vscode.lua",
- "path": "./translations/extensions/lua.i18n.json"
+ "path": "./translations/extensions/vscode.lua.i18n.json"
},
{
"id": "vscode.make",
- "path": "./translations/extensions/make.i18n.json"
- },
- {
- "id": "vscode.markdown-basics",
- "path": "./translations/extensions/markdown-basics.i18n.json"
+ "path": "./translations/extensions/vscode.make.i18n.json"
},
{
"id": "vscode.markdown-language-features",
- "path": "./translations/extensions/markdown-language-features.i18n.json"
+ "path": "./translations/extensions/vscode.markdown-language-features.i18n.json"
},
{
"id": "vscode.markdown-math",
- "path": "./translations/extensions/markdown-math.i18n.json"
- },
- {
- "id": "vscode.markdown-notebook-math",
- "path": "./translations/extensions/markdown-notebook-math.i18n.json"
- },
- {
- "id": "vscode.merge-conflict",
- "path": "./translations/extensions/merge-conflict.i18n.json"
- },
- {
- "id": "vscode.microsoft-authentication",
- "path": "./translations/extensions/microsoft-authentication.i18n.json"
+ "path": "./translations/extensions/vscode.markdown-math.i18n.json"
},
{
- "id": "vscode.ms-vscode.github-browser",
- "path": "./translations/extensions/ms-vscode.github-browser.i18n.json"
- },
- {
- "id": "vscode.ms-vscode.js-debug",
- "path": "./translations/extensions/ms-vscode.js-debug.i18n.json"
- },
- {
- "id": "vscode.ms-vscode.node-debug",
- "path": "./translations/extensions/ms-vscode.node-debug.i18n.json"
+ "id": "vscode.markdown",
+ "path": "./translations/extensions/vscode.markdown.i18n.json"
},
{
- "id": "vscode.ms-vscode.node-debug2",
- "path": "./translations/extensions/ms-vscode.node-debug2.i18n.json"
+ "id": "vscode.media-preview",
+ "path": "./translations/extensions/vscode.media-preview.i18n.json"
},
{
- "id": "vscode.ms-vscode.remotehub",
- "path": "./translations/extensions/ms-vscode.remotehub.i18n.json"
+ "id": "vscode.merge-conflict",
+ "path": "./translations/extensions/vscode.merge-conflict.i18n.json"
},
{
- "id": "vscode.notebook-markdown-extensions",
- "path": "./translations/extensions/notebook-markdown-extensions.i18n.json"
+ "id": "vscode.mermaid-chat-features",
+ "path": "./translations/extensions/vscode.mermaid-chat-features.i18n.json"
},
{
- "id": "vscode.notebook-renderers",
- "path": "./translations/extensions/notebook-renderers.i18n.json"
+ "id": "vscode.microsoft-authentication",
+ "path": "./translations/extensions/vscode.microsoft-authentication.i18n.json"
},
{
"id": "vscode.npm",
- "path": "./translations/extensions/npm.i18n.json"
+ "path": "./translations/extensions/vscode.npm.i18n.json"
},
{
"id": "vscode.objective-c",
- "path": "./translations/extensions/objective-c.i18n.json"
+ "path": "./translations/extensions/vscode.objective-c.i18n.json"
},
{
"id": "vscode.perl",
- "path": "./translations/extensions/perl.i18n.json"
+ "path": "./translations/extensions/vscode.perl.i18n.json"
},
{
"id": "vscode.php-language-features",
- "path": "./translations/extensions/php-language-features.i18n.json"
+ "path": "./translations/extensions/vscode.php-language-features.i18n.json"
},
{
"id": "vscode.php",
- "path": "./translations/extensions/php.i18n.json"
+ "path": "./translations/extensions/vscode.php.i18n.json"
},
{
"id": "vscode.powershell",
- "path": "./translations/extensions/powershell.i18n.json"
+ "path": "./translations/extensions/vscode.powershell.i18n.json"
+ },
+ {
+ "id": "vscode.prompt",
+ "path": "./translations/extensions/vscode.prompt.i18n.json"
},
{
"id": "vscode.pug",
- "path": "./translations/extensions/pug.i18n.json"
+ "path": "./translations/extensions/vscode.pug.i18n.json"
},
{
"id": "vscode.python",
- "path": "./translations/extensions/python.i18n.json"
+ "path": "./translations/extensions/vscode.python.i18n.json"
},
{
"id": "vscode.r",
- "path": "./translations/extensions/r.i18n.json"
+ "path": "./translations/extensions/vscode.r.i18n.json"
},
{
"id": "vscode.razor",
- "path": "./translations/extensions/razor.i18n.json"
+ "path": "./translations/extensions/vscode.razor.i18n.json"
},
{
"id": "vscode.references-view",
- "path": "./translations/extensions/references-view.i18n.json"
+ "path": "./translations/extensions/vscode.references-view.i18n.json"
},
{
"id": "vscode.restructuredtext",
- "path": "./translations/extensions/restructuredtext.i18n.json"
+ "path": "./translations/extensions/vscode.restructuredtext.i18n.json"
},
{
"id": "vscode.ruby",
- "path": "./translations/extensions/ruby.i18n.json"
+ "path": "./translations/extensions/vscode.ruby.i18n.json"
},
{
"id": "vscode.rust",
- "path": "./translations/extensions/rust.i18n.json"
+ "path": "./translations/extensions/vscode.rust.i18n.json"
},
{
"id": "vscode.scss",
- "path": "./translations/extensions/scss.i18n.json"
+ "path": "./translations/extensions/vscode.scss.i18n.json"
},
{
"id": "vscode.search-result",
- "path": "./translations/extensions/search-result.i18n.json"
+ "path": "./translations/extensions/vscode.search-result.i18n.json"
},
{
"id": "vscode.shaderlab",
- "path": "./translations/extensions/shaderlab.i18n.json"
+ "path": "./translations/extensions/vscode.shaderlab.i18n.json"
},
{
"id": "vscode.shellscript",
- "path": "./translations/extensions/shellscript.i18n.json"
+ "path": "./translations/extensions/vscode.shellscript.i18n.json"
},
{
"id": "vscode.simple-browser",
- "path": "./translations/extensions/simple-browser.i18n.json"
+ "path": "./translations/extensions/vscode.simple-browser.i18n.json"
},
{
"id": "vscode.sql",
- "path": "./translations/extensions/sql.i18n.json"
+ "path": "./translations/extensions/vscode.sql.i18n.json"
},
{
"id": "vscode.swift",
- "path": "./translations/extensions/swift.i18n.json"
+ "path": "./translations/extensions/vscode.swift.i18n.json"
},
{
- "id": "vscode.testing-editor-contributions",
- "path": "./translations/extensions/testing-editor-contributions.i18n.json"
+ "id": "vscode.terminal-suggest",
+ "path": "./translations/extensions/vscode.terminal-suggest.i18n.json"
},
{
"id": "vscode.theme-abyss",
- "path": "./translations/extensions/theme-abyss.i18n.json"
+ "path": "./translations/extensions/vscode.theme-abyss.i18n.json"
},
{
"id": "vscode.theme-defaults",
- "path": "./translations/extensions/theme-defaults.i18n.json"
+ "path": "./translations/extensions/vscode.theme-defaults.i18n.json"
},
{
"id": "vscode.theme-kimbie-dark",
- "path": "./translations/extensions/theme-kimbie-dark.i18n.json"
+ "path": "./translations/extensions/vscode.theme-kimbie-dark.i18n.json"
},
{
"id": "vscode.theme-monokai-dimmed",
- "path": "./translations/extensions/theme-monokai-dimmed.i18n.json"
+ "path": "./translations/extensions/vscode.theme-monokai-dimmed.i18n.json"
},
{
"id": "vscode.theme-monokai",
- "path": "./translations/extensions/theme-monokai.i18n.json"
+ "path": "./translations/extensions/vscode.theme-monokai.i18n.json"
},
{
"id": "vscode.theme-quietlight",
- "path": "./translations/extensions/theme-quietlight.i18n.json"
+ "path": "./translations/extensions/vscode.theme-quietlight.i18n.json"
},
{
"id": "vscode.theme-red",
- "path": "./translations/extensions/theme-red.i18n.json"
- },
- {
- "id": "vscode.theme-seti",
- "path": "./translations/extensions/theme-seti.i18n.json"
+ "path": "./translations/extensions/vscode.theme-red.i18n.json"
},
{
"id": "vscode.theme-solarized-dark",
- "path": "./translations/extensions/theme-solarized-dark.i18n.json"
+ "path": "./translations/extensions/vscode.theme-solarized-dark.i18n.json"
},
{
"id": "vscode.theme-solarized-light",
- "path": "./translations/extensions/theme-solarized-light.i18n.json"
+ "path": "./translations/extensions/vscode.theme-solarized-light.i18n.json"
},
{
"id": "vscode.theme-tomorrow-night-blue",
- "path": "./translations/extensions/theme-tomorrow-night-blue.i18n.json"
+ "path": "./translations/extensions/vscode.theme-tomorrow-night-blue.i18n.json"
},
{
- "id": "vscode.typescript-basics",
- "path": "./translations/extensions/typescript-basics.i18n.json"
+ "id": "vscode.tunnel-forwarding",
+ "path": "./translations/extensions/vscode.tunnel-forwarding.i18n.json"
},
{
"id": "vscode.typescript-language-features",
- "path": "./translations/extensions/typescript-language-features.i18n.json"
- },
- {
- "id": "vscode.vb",
- "path": "./translations/extensions/vb.i18n.json"
- },
- {
- "id": "vscode.vscode-chrome-debug-core",
- "path": "./translations/extensions/vscode-chrome-debug-core.i18n.json"
- },
- {
- "id": "ms-vscode.node-debug",
- "path": "./translations/extensions/vscode-node-debug.i18n.json"
- },
- {
- "id": "ms-vscode.node-debug2",
- "path": "./translations/extensions/vscode-node-debug2.i18n.json"
+ "path": "./translations/extensions/vscode.typescript-language-features.i18n.json"
},
{
- "id": "vscode.vscode.bat",
- "path": "./translations/extensions/vscode.bat.i18n.json"
- },
- {
- "id": "vscode.vscode.clojure",
- "path": "./translations/extensions/vscode.clojure.i18n.json"
- },
- {
- "id": "vscode.vscode.coffeescript",
- "path": "./translations/extensions/vscode.coffeescript.i18n.json"
- },
- {
- "id": "vscode.vscode.cpp",
- "path": "./translations/extensions/vscode.cpp.i18n.json"
- },
- {
- "id": "vscode.vscode.csharp",
- "path": "./translations/extensions/vscode.csharp.i18n.json"
- },
- {
- "id": "vscode.vscode.css",
- "path": "./translations/extensions/vscode.css.i18n.json"
- },
- {
- "id": "vscode.vscode.docker",
- "path": "./translations/extensions/vscode.docker.i18n.json"
- },
- {
- "id": "vscode.vscode.fsharp",
- "path": "./translations/extensions/vscode.fsharp.i18n.json"
- },
- {
- "id": "vscode.vscode.go",
- "path": "./translations/extensions/vscode.go.i18n.json"
- },
- {
- "id": "vscode.vscode.groovy",
- "path": "./translations/extensions/vscode.groovy.i18n.json"
- },
- {
- "id": "vscode.vscode.handlebars",
- "path": "./translations/extensions/vscode.handlebars.i18n.json"
- },
- {
- "id": "vscode.vscode.hlsl",
- "path": "./translations/extensions/vscode.hlsl.i18n.json"
- },
- {
- "id": "vscode.vscode.html",
- "path": "./translations/extensions/vscode.html.i18n.json"
- },
- {
- "id": "vscode.vscode.ini",
- "path": "./translations/extensions/vscode.ini.i18n.json"
- },
- {
- "id": "vscode.vscode.java",
- "path": "./translations/extensions/vscode.java.i18n.json"
- },
- {
- "id": "vscode.vscode.javascript",
- "path": "./translations/extensions/vscode.javascript.i18n.json"
- },
- {
- "id": "vscode.vscode.json",
- "path": "./translations/extensions/vscode.json.i18n.json"
- },
- {
- "id": "vscode.vscode.less",
- "path": "./translations/extensions/vscode.less.i18n.json"
- },
- {
- "id": "vscode.vscode.log",
- "path": "./translations/extensions/vscode.log.i18n.json"
- },
- {
- "id": "vscode.vscode.lua",
- "path": "./translations/extensions/vscode.lua.i18n.json"
- },
- {
- "id": "vscode.vscode.make",
- "path": "./translations/extensions/vscode.make.i18n.json"
- },
- {
- "id": "vscode.vscode.markdown",
- "path": "./translations/extensions/vscode.markdown.i18n.json"
- },
- {
- "id": "vscode.vscode.objective-c",
- "path": "./translations/extensions/vscode.objective-c.i18n.json"
- },
- {
- "id": "vscode.vscode.perl",
- "path": "./translations/extensions/vscode.perl.i18n.json"
- },
- {
- "id": "vscode.vscode.php",
- "path": "./translations/extensions/vscode.php.i18n.json"
- },
- {
- "id": "vscode.vscode.powershell",
- "path": "./translations/extensions/vscode.powershell.i18n.json"
- },
- {
- "id": "vscode.vscode.pug",
- "path": "./translations/extensions/vscode.pug.i18n.json"
- },
- {
- "id": "vscode.vscode.r",
- "path": "./translations/extensions/vscode.r.i18n.json"
- },
- {
- "id": "vscode.vscode.razor",
- "path": "./translations/extensions/vscode.razor.i18n.json"
- },
- {
- "id": "vscode.vscode.ruby",
- "path": "./translations/extensions/vscode.ruby.i18n.json"
- },
- {
- "id": "vscode.vscode.rust",
- "path": "./translations/extensions/vscode.rust.i18n.json"
- },
- {
- "id": "vscode.vscode.scss",
- "path": "./translations/extensions/vscode.scss.i18n.json"
- },
- {
- "id": "vscode.vscode.shaderlab",
- "path": "./translations/extensions/vscode.shaderlab.i18n.json"
- },
- {
- "id": "vscode.vscode.shellscript",
- "path": "./translations/extensions/vscode.shellscript.i18n.json"
- },
- {
- "id": "vscode.vscode.sql",
- "path": "./translations/extensions/vscode.sql.i18n.json"
- },
- {
- "id": "vscode.vscode.swift",
- "path": "./translations/extensions/vscode.swift.i18n.json"
- },
- {
- "id": "vscode.vscode.theme-abyss",
- "path": "./translations/extensions/vscode.theme-abyss.i18n.json"
- },
- {
- "id": "vscode.vscode.theme-defaults",
- "path": "./translations/extensions/vscode.theme-defaults.i18n.json"
- },
- {
- "id": "vscode.vscode.theme-kimbie-dark",
- "path": "./translations/extensions/vscode.theme-kimbie-dark.i18n.json"
- },
- {
- "id": "vscode.vscode.theme-monokai-dimmed",
- "path": "./translations/extensions/vscode.theme-monokai-dimmed.i18n.json"
- },
- {
- "id": "vscode.vscode.theme-monokai",
- "path": "./translations/extensions/vscode.theme-monokai.i18n.json"
- },
- {
- "id": "vscode.vscode.theme-quietlight",
- "path": "./translations/extensions/vscode.theme-quietlight.i18n.json"
- },
- {
- "id": "vscode.vscode.theme-red",
- "path": "./translations/extensions/vscode.theme-red.i18n.json"
- },
- {
- "id": "vscode.vscode.theme-solarized-dark",
- "path": "./translations/extensions/vscode.theme-solarized-dark.i18n.json"
- },
- {
- "id": "vscode.vscode.theme-solarized-light",
- "path": "./translations/extensions/vscode.theme-solarized-light.i18n.json"
- },
- {
- "id": "vscode.vscode.theme-tomorrow-night-blue",
- "path": "./translations/extensions/vscode.theme-tomorrow-night-blue.i18n.json"
- },
- {
- "id": "vscode.vscode.typescript",
+ "id": "vscode.typescript",
"path": "./translations/extensions/vscode.typescript.i18n.json"
},
{
- "id": "vscode.vscode.vb",
+ "id": "vscode.vb",
"path": "./translations/extensions/vscode.vb.i18n.json"
},
{
- "id": "vscode.vscode.vscode-theme-seti",
+ "id": "vscode.vscode-theme-seti",
"path": "./translations/extensions/vscode.vscode-theme-seti.i18n.json"
},
- {
- "id": "vscode.vscode.xml",
- "path": "./translations/extensions/vscode.xml.i18n.json"
- },
- {
- "id": "vscode.vscode.yaml",
- "path": "./translations/extensions/vscode.yaml.i18n.json"
- },
{
"id": "vscode.xml",
- "path": "./translations/extensions/xml.i18n.json"
+ "path": "./translations/extensions/vscode.xml.i18n.json"
},
{
"id": "vscode.yaml",
- "path": "./translations/extensions/yaml.i18n.json"
+ "path": "./translations/extensions/vscode.yaml.i18n.json"
}
]
}
diff --git a/i18n/vscode-language-pack-ja/translations/extensions/bat.i18n.json b/i18n/vscode-language-pack-ja/translations/extensions/bat.i18n.json
deleted file mode 100644
index 9693fec29e..0000000000
--- a/i18n/vscode-language-pack-ja/translations/extensions/bat.i18n.json
+++ /dev/null
@@ -1,16 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "package": {
- "description": "Windows batch ファイル内でスニペット、構文ハイライト、かっこ一致、折りたたみを提供します。",
- "displayName": "Windows バッチ言語の基礎"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-ja/translations/extensions/clojure.i18n.json b/i18n/vscode-language-pack-ja/translations/extensions/clojure.i18n.json
deleted file mode 100644
index 5446e95b9d..0000000000
--- a/i18n/vscode-language-pack-ja/translations/extensions/clojure.i18n.json
+++ /dev/null
@@ -1,16 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "package": {
- "description": "Clojure ファイル内で構文ハイライト、かっこ一致を提供します。",
- "displayName": "Clojure の基本言語サポート"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-ja/translations/extensions/coffeescript.i18n.json b/i18n/vscode-language-pack-ja/translations/extensions/coffeescript.i18n.json
deleted file mode 100644
index 2ea3a3cf5b..0000000000
--- a/i18n/vscode-language-pack-ja/translations/extensions/coffeescript.i18n.json
+++ /dev/null
@@ -1,16 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "package": {
- "description": "CoffeScript ファイル内でスニペット、構文ハイライト、かっこ一致、折りたたみを提供します。",
- "displayName": "CoffeeScript の基本言語サポート"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-ja/translations/extensions/configuration-editing.i18n.json b/i18n/vscode-language-pack-ja/translations/extensions/configuration-editing.i18n.json
deleted file mode 100644
index dca5103658..0000000000
--- a/i18n/vscode-language-pack-ja/translations/extensions/configuration-editing.i18n.json
+++ /dev/null
@@ -1,70 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "dist/configurationEditingMain": {
- "cwd": "タスク ランナー起動時の作業ディレクトリ",
- "defaultBuildTask": "既定のビルド タスクの名前。既定のビルド タスクが 1 つもない場合は、ビルド タスクを選択するためのクイック ピックが表示されます。",
- "extensionInstallFolder": "拡張機能がインストールされているパス。",
- "file": "現在開いているファイル",
- "fileBasename": "現在開いているファイルのベース名",
- "fileBasenameNoExtension": "現在開いているファイルの拡張子を含まないベース名",
- "fileDirname": "現在開いているファイルのディレクトリ名",
- "fileExtname": "現在開いているファイルの拡張子",
- "lineNumber": "アクティブなファイル内で選択している行の番号",
- "pathSeparator": "オペレーティング システムがファイル パス内のコンポーネントを分離するために使用する文字",
- "relativeFile": "${workspaceFolder} に相対的な現在開いているファイル",
- "relativeFileDirname": "現在開いているファイルの、${workspaceFolder} からの相対 dirname",
- "selectedText": "アクティブなファイル内で選択しているテキスト",
- "workspaceFolder": "VS Code で開いているフォルダーのパス",
- "workspaceFolderBasename": "スラッシュ (/) を含まない VS Code で開いているフォルダーのパス"
- },
- "dist/extensionsProposals": {
- "exampleExtension": "例"
- },
- "dist/settingsDocumentHelper": {
- "activeEditor": "現在アクティブなテキスト エディターがある場合は、そのテキスト エディターの言語を使用する",
- "activeEditorLong": "ファイルの完全なパス (例: /Users/Development/myFolder/myFileFolder/myFile.txt)",
- "activeEditorMedium": "ワークスペース フォルダーに対して相対的なファイルのパス (例: myFolder/myFileFolder/myFile.txt)",
- "activeEditorShort": "ファイル名 (例: myFile.txt)",
- "activeFolderLong": "ファイルが含まれているフォルダーの完全なパス (例: /Users/Development/myFolder/myFileFolder)",
- "activeFolderMedium": "ワークスペース フォルダーに相対的な、ファイルが入っているフォルダーのパス (例: myFolder/myFileFolder)",
- "activeFolderShort": "ファイルが入っているフォルダーの名前 (例: myFileFolder)",
- "appName": "例: VS Code",
- "assocDescriptionFile": "ファイル名が glob パターンに一致するすべてのファイルを、指定された識別子の言語にマップします。",
- "assocDescriptionPath": "絶対パスの glob パターンがパスに一致するすべてのファイルを、指定した識別子の言語にマップします。",
- "assocLabelFile": "当該拡張子のファイル",
- "assocLabelPath": "当該パスのファイル",
- "derivedDescription": "名前が同じで拡張子が異なる兄弟を持つファイルと一致します。",
- "derivedLabel": "同じ名前の兄弟があるファイル",
- "dirty": "アクティブなエディターの変更が保存されていない場合を示すインジケーター",
- "fileDescription": "特定のファイル拡張子を持つすべてのファイルと一致します。",
- "fileLabel": "特定の拡張子のファイル",
- "filesDescription": "いずれかのファイル拡張子を持つすべてのファイルと一致します。",
- "filesLabel": "複数の拡張子のファイル",
- "folderDescription": "任意の場所にある特定の名前のフォルダーと一致します。",
- "folderLabel": "特定の名前のフォルダー (任意の場所)",
- "folderName": "ファイルが含まれているワークスペース フォルダーの名前 (例: myFolder)",
- "folderPath": "ファイルが含まれているワークスペース フォルダーのファイル パス (例: /Users/Development/myFolder)",
- "remoteName": "例: SSH",
- "rootName": "ワークスペースの名前 (例: myFolder または myWorkspace)",
- "rootPath": "ワークスペースのファイル パス (例: /Users/Development/myWorkspace)",
- "separator": "値のある変数で囲まれた場合にのみ表示される条件付き区切り記号 (' - ')",
- "siblingsDescription": "名前が同じで拡張子が異なる兄弟を持つファイルと一致します。",
- "topFolderDescription": "特定の名前の最上位にあるフォルダーと一致します。",
- "topFolderLabel": "特定の名前のフォルダー (最上位)",
- "topFoldersDescription": "複数の最上位フォルダーと一致します。",
- "topFoldersLabel": "複数の名前のフォルダー (最上位)"
- },
- "package": {
- "description": "設定、起動、拡張機能の推奨事項ファイルといった、構成ファイルの機能 (高度な IntelliSense、auto-fixing など) を提供します。",
- "displayName": "設定の編集機能"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-ja/translations/extensions/cpp.i18n.json b/i18n/vscode-language-pack-ja/translations/extensions/cpp.i18n.json
deleted file mode 100644
index 18f5f2f06c..0000000000
--- a/i18n/vscode-language-pack-ja/translations/extensions/cpp.i18n.json
+++ /dev/null
@@ -1,16 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "package": {
- "description": "C/C++ ファイル内でスニペット、構文ハイライト、かっこ一致、折りたたみを提供します。",
- "displayName": "C/C++ の基本言語サポート"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-ja/translations/extensions/csharp.i18n.json b/i18n/vscode-language-pack-ja/translations/extensions/csharp.i18n.json
deleted file mode 100644
index 08d5fbf149..0000000000
--- a/i18n/vscode-language-pack-ja/translations/extensions/csharp.i18n.json
+++ /dev/null
@@ -1,16 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "package": {
- "description": "C# ファイル内でスニペット、構文ハイライト、かっこ一致、折りたたみを提供します。",
- "displayName": "C# の基本言語サポート"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-ja/translations/extensions/css-language-features.i18n.json b/i18n/vscode-language-pack-ja/translations/extensions/css-language-features.i18n.json
deleted file mode 100644
index e8aa7a4065..0000000000
--- a/i18n/vscode-language-pack-ja/translations/extensions/css-language-features.i18n.json
+++ /dev/null
@@ -1,128 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "client\\dist\\node/cssClient": {
- "cssserver.name": "CSS 言語サーバー",
- "folding.end": "折りたたみ領域の終了",
- "folding.start": "折りたたみ領域の開始"
- },
- "package": {
- "css.colorDecorators.enable.deprecationMessage": "設定 `css.colorDecorators.enable` は使用されなくなりました。`editor.colorDecorators` を使用してください。",
- "css.completion.completePropertyWithSemicolon.desc": "CSS プロパティの完了時に行末にセミコロンを挿入します。",
- "css.completion.triggerPropertyValueCompletion.desc": "既定では、VS Codeは CSS プロパティが選択されるとプロパティ値の補完をトリガーします。この設定を使うことで、この動作は無効にできます。",
- "css.customData.desc": "[カスタム データ形式](https://github.com/microsoft/vscode-css-languageservice/blob/master/docs/customData.md) に従って JSON ファイルを指す相対ファイル パスの一覧。\r\n\r\nVS Code では、起動時にカスタム データを読み込んで、ユーザーが JSON ファイルに指定するカスタム CSS プロパティ、ディレクティブ、擬似クラス、擬似要素の CSS サポートを強化します。\r\n\r\nファイル パスはワークスペースに対して相対的であり、ワークスペース フォルダーの設定のみが考慮されます。",
- "css.format.braceStyle.desc": "ルールと同じ行に中かっこを配置するか ('collapse')、または中かっこを独自の行 ('expand') に配置します。",
- "css.format.enable.desc": "既定の CSS フォーマッタを有効または無効にします。",
- "css.format.maxPreserveNewLines.desc": "'#css.format.preserveNewLines#' が有効な場合に、1 つのチャンクに保持される改行の最大数。",
- "css.format.newlineBetweenRules.desc": "ルールセットを空白行で区切ります。",
- "css.format.newlineBetweenSelectors.desc": "セレクターを改行で区切ります。",
- "css.format.preserveNewLines.desc": "要素の前に既存の改行を保持するかどうか。",
- "css.format.spaceAroundSelectorSeparator.desc": "セレクターの区切り記号 '>'、'+'、'~' (例: 'a > b') の周囲に空白文字を付けます。",
- "css.hover.documentation": "CSS ホバー時にタグと属性のドキュメントを表示します。",
- "css.hover.references": "CSS ホバー時に MDN への参照を表示します。",
- "css.lint.argumentsInColorFunction.desc": "パラメーター数が無効です。",
- "css.lint.boxModel.desc": "`padding` や `border` を使用するときに `width` や `height` を使用しないでください",
- "css.lint.compatibleVendorPrefixes.desc": "ベンダー プレフィックス を使用するときは、他すべてのベンダー プレフィックスも必ず含めてください。",
- "css.lint.duplicateProperties.desc": "重複するスタイル定義を使用しないでください。",
- "css.lint.emptyRules.desc": "空の規則セットを使用しないでください。",
- "css.lint.float.desc": "`float` の使用を避けてください。float は脆弱な CSS につながり、レイアウトの一部が変更されたときに CSS が破損しやすくなります。",
- "css.lint.fontFaceProperties.desc": "`@font-face` 規則で `src` プロパティと `font-family` プロパティを定義する必要があります。",
- "css.lint.hexColorLength.desc": "Hex には 3 つまたは 6 つの 16 進数が含まれる必要があります。",
- "css.lint.idSelector.desc": "セレクターには ID を含めないでください。これらの規則と HTML の結合が密接すぎます。",
- "css.lint.ieHack.desc": "IE ハックは、IE7 以前をサポートする場合にのみ必要です。",
- "css.lint.importStatement.desc": "複数の Import ステートメントを同時に読み込むことはできません。",
- "css.lint.important.desc": "`!important` の使用を避けてください。これは CSS 全体の特定性が制御不能になり、リファクタリングが必要になります。",
- "css.lint.propertyIgnoredDueToDisplay.desc": "display によってプロパティを無視します。例: `display: inline` の場合、`width`、`height`、`margin-top`、`margin-bottom`、`float` プロパティには効果がありません。",
- "css.lint.universalSelector.desc": "ユニバーサル セレクター (`*`) を使用すると処理速度が低下することが知られています。",
- "css.lint.unknownAtRules.desc": "不明な @ 規則。",
- "css.lint.unknownProperties.desc": "不明なプロパティ。",
- "css.lint.unknownVendorSpecificProperties.desc": "不明なベンダー固有のプロパティ。",
- "css.lint.validProperties.desc": "`UnknownProperties` ルールに対して検証されていないプロパティの一覧です。",
- "css.lint.vendorPrefix.desc": "ベンダー プレフィックスを使用するとき、標準のプロパティーも含めます。",
- "css.lint.zeroUnits.desc": "0 に単位は必要ありません。",
- "css.title": "CSS",
- "css.trace.server.desc": "VS Code と CSS 言語サーバー間の通信をトレースします。",
- "css.validate.desc": "すべての検証を有効または無効にします。",
- "css.validate.title": "CSS の検証と問題の重大度を制御します。",
- "description": "CSS、LESS、SCSS ファイルに豊富な言語サポートを提供。",
- "displayName": "CSS 言語機能",
- "less.colorDecorators.enable.deprecationMessage": "設定 `less.colorDecorators.enable` は使用されなくなりました。`editor.colorDecorators` を使用してください。",
- "less.completion.completePropertyWithSemicolon.desc": "CSS プロパティの完了時に行末にセミコロンを挿入します。",
- "less.completion.triggerPropertyValueCompletion.desc": "既定では、VS Codeは CSS プロパティが選択されるとプロパティ値の補完をトリガーします。この設定を使うことで、この動作は無効にできます。",
- "less.format.braceStyle.desc": "ルールと同じ行に中かっこを配置するか ('collapse')、または中かっこを独自の行 ('expand') に配置します。",
- "less.format.enable.desc": "既定の LESS フォーマッタを有効または無効にします。",
- "less.format.maxPreserveNewLines.desc": "'#less.format.preserveNewLines#' が有効な場合に、1 つのチャンクに保持される改行の最大数。",
- "less.format.newlineBetweenRules.desc": "ルールセットを空白行で区切ります。",
- "less.format.newlineBetweenSelectors.desc": "セレクターを改行で区切ります。",
- "less.format.preserveNewLines.desc": "要素の前に既存の改行を保持するかどうか。",
- "less.format.spaceAroundSelectorSeparator.desc": "セレクターの区切り記号 '>'、'+'、'~' (例: 'a > b') の周囲に空白文字を付けます。",
- "less.hover.documentation": "LESS ホバー時にタグと属性のドキュメントを表示します。",
- "less.hover.references": "LESS ホバー時に MDN への参照を表示します。",
- "less.lint.argumentsInColorFunction.desc": "パラメーター数が無効です。",
- "less.lint.boxModel.desc": "`padding` や `border` を使用するときに `width` や `height` を使用しないでください",
- "less.lint.compatibleVendorPrefixes.desc": "ベンダー プレフィックス を使用するときは、他すべてのベンダー プレフィックスも必ず含めてください。",
- "less.lint.duplicateProperties.desc": "重複するスタイル定義を使用しないでください。",
- "less.lint.emptyRules.desc": "空の規則セットを使用しないでください。",
- "less.lint.float.desc": "`float` の使用を避けてください。float は脆弱な CSS につながり、レイアウトの一部が変更されたときに CSS が破損しやすくなります。",
- "less.lint.fontFaceProperties.desc": "`@font-face` 規則で `src` プロパティと `font-family` プロパティを定義する必要があります。",
- "less.lint.hexColorLength.desc": "Hex には 3 つまたは 6 つの 16 進数が含まれる必要があります。",
- "less.lint.idSelector.desc": "セレクターには ID を含めないでください。これらの規則と HTML の結合が密接すぎます。",
- "less.lint.ieHack.desc": "IE ハックは、IE7 以前をサポートする場合にのみ必要です。",
- "less.lint.importStatement.desc": "複数の Import ステートメントを同時に読み込むことはできません。",
- "less.lint.important.desc": "`!important` の使用を避けてください。これは CSS 全体の特定性が制御不能になり、リファクタリングが必要になります。",
- "less.lint.propertyIgnoredDueToDisplay.desc": "display によってプロパティを無視します。例: `display: inline` の場合、`width`、`height`、`margin-top`、`margin-bottom`、`float` プロパティには効果がありません。",
- "less.lint.universalSelector.desc": "ユニバーサル セレクター (`*`) を使用すると処理速度が低下することが知られています。",
- "less.lint.unknownAtRules.desc": "不明な @ 規則。",
- "less.lint.unknownProperties.desc": "不明なプロパティ。",
- "less.lint.unknownVendorSpecificProperties.desc": "不明なベンダー固有のプロパティ。",
- "less.lint.validProperties.desc": "`UnknownProperties` ルールに対して検証されていないプロパティの一覧です。",
- "less.lint.vendorPrefix.desc": "ベンダー プレフィックスを使用するとき、標準のプロパティーも含めます。",
- "less.lint.zeroUnits.desc": "0 に単位は必要ありません。",
- "less.title": "LESS",
- "less.validate.desc": "すべての検証を有効または無効にします。",
- "less.validate.title": "LESS の検証と問題の重大度を制御します。",
- "scss.colorDecorators.enable.deprecationMessage": "設定 `scss.colorDecorators.enable` は使用されなくなりました。`editor.colorDecorators` を使用してください。",
- "scss.completion.completePropertyWithSemicolon.desc": "CSS プロパティの完了時に行末にセミコロンを挿入します。",
- "scss.completion.triggerPropertyValueCompletion.desc": "既定では、VS Codeは CSS プロパティが選択されるとプロパティ値の補完をトリガーします。この設定を使うことで、この動作は無効にできます。",
- "scss.format.braceStyle.desc": "ルールと同じ行に中かっこを配置するか ('collapse')、または中かっこを独自の行 ('expand') に配置します。",
- "scss.format.enable.desc": "既定の SCSS フォーマッタを有効または無効にします。",
- "scss.format.maxPreserveNewLines.desc": "'#scss.format.preserveNewLines#' が有効な場合に、1 つのチャンクに保持される改行の最大数。",
- "scss.format.newlineBetweenRules.desc": "ルールセットを空白行で区切ります。",
- "scss.format.newlineBetweenSelectors.desc": "セレクターを改行で区切ります。",
- "scss.format.preserveNewLines.desc": "要素の前に既存の改行を保持するかどうか。",
- "scss.format.spaceAroundSelectorSeparator.desc": "セレクターの区切り記号 '>'、'+'、'~' (例: 'a > b') の周囲に空白文字を付けます。",
- "scss.hover.documentation": "SCSS ホバー時にタグと属性のドキュメントを表示します。",
- "scss.hover.references": "SCSS ホバー時に MDN への参照を表示します。",
- "scss.lint.argumentsInColorFunction.desc": "パラメーター数が無効です。",
- "scss.lint.boxModel.desc": "`padding` や `border` を使用するときに `width` や `height` を使用しないでください",
- "scss.lint.compatibleVendorPrefixes.desc": "ベンダー プレフィックス を使用するときは、他すべてのベンダー プレフィックスも必ず含めてください。",
- "scss.lint.duplicateProperties.desc": "重複するスタイル定義を使用しないでください。",
- "scss.lint.emptyRules.desc": "空の規則セットを使用しないでください。",
- "scss.lint.float.desc": "`float` の使用を避けてください。float は脆弱な CSS につながり、レイアウトの一部が変更されたときに CSS が破損しやすくなります。",
- "scss.lint.fontFaceProperties.desc": "`@font-face` 規則で `src` プロパティと `font-family` プロパティを定義する必要があります。",
- "scss.lint.hexColorLength.desc": "Hex には 3 つまたは 6 つの 16 進数が含まれる必要があります。",
- "scss.lint.idSelector.desc": "セレクターには ID を含めないでください。これらの規則と HTML の結合が密接すぎます。",
- "scss.lint.ieHack.desc": "IE ハックは、IE7 以前をサポートする場合にのみ必要です。",
- "scss.lint.importStatement.desc": "複数の Import ステートメントを同時に読み込むことはできません。",
- "scss.lint.important.desc": "`!important` の使用を避けてください。これは CSS 全体の特定性が制御不能になり、リファクタリングが必要になります。",
- "scss.lint.propertyIgnoredDueToDisplay.desc": "display によってプロパティを無視します。例: `display: inline` の場合、`width`、`height`、`margin-top`、`margin-bottom`、`float` プロパティには効果がありません。",
- "scss.lint.universalSelector.desc": "ユニバーサル セレクター (`*`) を使用すると処理速度が低下することが知られています。",
- "scss.lint.unknownAtRules.desc": "不明な @ 規則。",
- "scss.lint.unknownProperties.desc": "不明なプロパティ。",
- "scss.lint.unknownVendorSpecificProperties.desc": "不明なベンダー固有のプロパティ。",
- "scss.lint.validProperties.desc": "`UnknownProperties` ルールに対して検証されていないプロパティの一覧です。",
- "scss.lint.vendorPrefix.desc": "ベンダー プレフィックスを使用するとき、標準のプロパティーも含めます。",
- "scss.lint.zeroUnits.desc": "0 に単位は必要ありません。",
- "scss.title": "SCSS (Sass)",
- "scss.validate.desc": "すべての検証を有効または無効にします。",
- "scss.validate.title": "SCSS の検証と問題の重大度を制御します。"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-ja/translations/extensions/css.i18n.json b/i18n/vscode-language-pack-ja/translations/extensions/css.i18n.json
deleted file mode 100644
index 4db5296131..0000000000
--- a/i18n/vscode-language-pack-ja/translations/extensions/css.i18n.json
+++ /dev/null
@@ -1,16 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "package": {
- "description": "CSS、LESS、SCSS ファイル内で構文ハイライト、かっこ一致を提供します。",
- "displayName": "CSS の基本言語サポート"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-ja/translations/extensions/debug-auto-launch.i18n.json b/i18n/vscode-language-pack-ja/translations/extensions/debug-auto-launch.i18n.json
deleted file mode 100644
index 6ae9430e59..0000000000
--- a/i18n/vscode-language-pack-ja/translations/extensions/debug-auto-launch.i18n.json
+++ /dev/null
@@ -1,38 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "dist/extension": {
- "debug.javascript.autoAttach.always.description": "ターミナルで起動されるすべての Node.js プロセスに自動アタッチします",
- "debug.javascript.autoAttach.always.label": "常時",
- "debug.javascript.autoAttach.disabled.description": "自動アタッチが無効で、ステータス バーに表示されません",
- "debug.javascript.autoAttach.disabled.label": "無効",
- "debug.javascript.autoAttach.onlyWithFlag.description": "`--inspect` フラグが指定されている場合にのみ自動アタッチします",
- "debug.javascript.autoAttach.onlyWithFlag.label": "フラグ付きのみ",
- "debug.javascript.autoAttach.smart.description": "node_modules フォルダーにないスクリプトを実行しているときに自動アタッチします",
- "debug.javascript.autoAttach.smart.label": "スマート",
- "scope.global": "このマシンの自動アタッチを切り替えます",
- "scope.workspace": "このワークスペースで自動アタッチを切り替えます",
- "status.name.auto.attach": "自動アタッチのデバッグ",
- "status.text.auto.attach.always": "自動アタッチ: 常時",
- "status.text.auto.attach.disabled": "自動アタッチ: 無効",
- "status.text.auto.attach.smart": "自動アタッチ: スマート",
- "status.text.auto.attach.withFlag": "自動アタッチ: フラグ付き",
- "status.tooltip.auto.attach": "デバッグ モードで node.js プロセスに自動的にアタッチ",
- "tempDisable.disable": "このセッションでは自動アタッチを一時的に無効にする",
- "tempDisable.enable": "自動アタッチを再度有効にする",
- "tempDisable.suffix": "自動アタッチ: 無効"
- },
- "package": {
- "description": "node-debug 拡張がアクティブではないときに自動的にアタッチする機能を補助します。",
- "displayName": "Node デバッグの自動アタッチ",
- "toggle.auto.attach": "自動アタッチの切り替え"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-ja/translations/extensions/debug-server-ready.i18n.json b/i18n/vscode-language-pack-ja/translations/extensions/debug-server-ready.i18n.json
deleted file mode 100644
index f5104f5296..0000000000
--- a/i18n/vscode-language-pack-ja/translations/extensions/debug-server-ready.i18n.json
+++ /dev/null
@@ -1,29 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "dist/extension": {
- "server.ready.nocapture.error": "URI ('{0}') 形式では代入プレースホルダーを使用していますが、パターンによって何も取り込まれませんでした。",
- "server.ready.placeholder.error": "URI ('{0}') 形式には代入プレースホルダーを 1 つだけ含める必要があります。"
- },
- "package": {
- "debug.server.ready.action.debugWithChrome.description": "'Chrome用のデバッガー' でデバッグを開始します。",
- "debug.server.ready.action.description": "サーバーの準備が整ったときにURIをどうするか。",
- "debug.server.ready.action.openExternally.description": "既定のアプリケーションで外部 URI を開きます。",
- "debug.server.ready.action.startDebugging.description": "別の起動構成を実行してください。",
- "debug.server.ready.debugConfigName.description": "実行する起動構成の名前です。",
- "debug.server.ready.pattern.description": "このパターンがデバッグコンソールに表示される場合、サーバーは準備完了です。最初のキャプチャーグループはURIまたはポート番号を含める必要があります。",
- "debug.server.ready.serverReadyAction.description": "デバッグ中のサーバー プログラムの準備ができたら URI に対して実行します (準備が整うと 'listening on port 3000' または 'Now listening on: https://localhost:5001' の形式でデバッグ コンソールに出力が送信されます)。",
- "debug.server.ready.uriFormat.description": "ポート番号から URI を構築するときに使用する書式設定文字列。最初の '%s' は、ポート番号に置き換えられます。",
- "debug.server.ready.webRoot.description": "'Chrome用デバッガー' のデバッグ構成に値が渡されます。",
- "description": "デバッグ対象のサーバーが準備完了になったら、URI をブラウザーで開きます。",
- "displayName": "サーバーの準備完了アクション"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-ja/translations/extensions/docker.i18n.json b/i18n/vscode-language-pack-ja/translations/extensions/docker.i18n.json
deleted file mode 100644
index d870c23f15..0000000000
--- a/i18n/vscode-language-pack-ja/translations/extensions/docker.i18n.json
+++ /dev/null
@@ -1,16 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "package": {
- "description": "Docker ファイル内で構文ハイライト、かっこ一致を提供します。",
- "displayName": "Docker ファイルの基本言語サポート"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-ja/translations/extensions/emmet.i18n.json b/i18n/vscode-language-pack-ja/translations/extensions/emmet.i18n.json
deleted file mode 100644
index fced64e536..0000000000
--- a/i18n/vscode-language-pack-ja/translations/extensions/emmet.i18n.json
+++ /dev/null
@@ -1,79 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "dist\\node/abbreviationActions": {
- "wrapWithAbbreviationPrompt": "省略形を入力してください"
- },
- "package": {
- "command.balanceIn": "バランス (内側)",
- "command.balanceOut": "バランス (外側)",
- "command.decrementNumberByOne": "1 ずつ減少",
- "command.decrementNumberByOneTenth": "0.1 ずつ減少",
- "command.decrementNumberByTen": "10 ずつ減少",
- "command.evaluateMathExpression": "数式の評価",
- "command.incrementNumberByOne": "1 ずつ増加",
- "command.incrementNumberByOneTenth": "0.1 ずつ増加",
- "command.incrementNumberByTen": "10 ずつ増加",
- "command.matchTag": "一致するペアに移動",
- "command.mergeLines": "行のマージ",
- "command.nextEditPoint": "次の編集点に移動",
- "command.prevEditPoint": "前の編集点に移動",
- "command.reflectCSSValue": "CSS 値を反映",
- "command.removeTag": "タグの削除",
- "command.selectNextItem": "次の項目を選択",
- "command.selectPrevItem": "前の項目を選択",
- "command.showEmmetCommands": "Emmet コマンドの表示",
- "command.splitJoinTag": "タグの分割/結合",
- "command.toggleComment": "コメントの切り替え",
- "command.updateImageSize": "イメージ サイズの更新",
- "command.updateTag": "タグの更新",
- "command.wrapWithAbbreviation": "ラップ変換",
- "description": "VSCode の Emmet サポート",
- "emmetExclude": "Emmet 省略記法を展開すべきでない言語の配列。",
- "emmetExtensionsPath": "各パスに Emmet の syntaxProfile や snippet ファイルを含めることができるパスの配列。\r\n競合が発生した場合、後のパスのプロファイルまたはスニペットが前のパスのプロファイルまたはスニペットを上書きします。\r\n詳細およびスニペット ファイルの例については、https://code.visualstudio.com/docs/editor/emmet を参照してください。",
- "emmetExtensionsPathItem": "Emmet syntaxProfiles やスニペットを含むパス。",
- "emmetIncludeLanguages": "既定ではサポートされていない言語の emmet 省略記法を有効にします。言語と Emmet でサポートされる言語との間のマッピングをこちらに追加してください。\r\n 例: `{\"vue-html\": \"html\", \"javascript\": \"javascriptreact\"}`",
- "emmetOptimizeStylesheetParsing": "`false` に設定すると、現在位置が emmet 省略記法の展開に有効かどうかを判別するためにファイル全体が解析されます。`true` に設定すると、CSS、SCSS、Less ファイルでの現在位置周辺のコンテンツのみが解析されます。",
- "emmetPreferences": "Emmet の一部のアクションやリゾルバーの動作の変更に使用される基本設定。",
- "emmetPreferencesAllowCompactBoolean": "`true` の場合、ブール属性の短縮表記が生成されます。",
- "emmetPreferencesBemElementSeparator": "BEM フィルターを利用時にクラス使用する Element の区切り文字。",
- "emmetPreferencesBemModifierSeparator": "BEM フィルターを利用時にクラス使用する Modifier の区切り文字。",
- "emmetPreferencesCssAfter": "CSS 省略形を展開するときに CSS プロパティの最後に配置するシンボル。",
- "emmetPreferencesCssBetween": "CSS の略語を展開するときに CSS プロパティと値の間に配置されるシンボル。",
- "emmetPreferencesCssColorShort": "'true' の場合、#f のような色の値は #ffffff ではなく #fff に拡張されます。",
- "emmetPreferencesCssFuzzySearchMinScore": "あいまい検索の省略形が達成すべき (0 から 1 の) 最小スコア。値が低ければ多くの誤検出が発生する可能性があります。値が高ければ一致する見込みが減る可能性があります。",
- "emmetPreferencesCssMozProperties": "Emmet 省略記法で使用される場合に `-` で始まる 'moz' ベンダー プレフィックスを取得するカンマ区切りの CSS プロパティ。常に 'moz' プレフィックスを避ける場合は空の文字列に設定します。",
- "emmetPreferencesCssMsProperties": "Emmet 省略記法で使用される場合に `-` で始まる 'ms' ベンダー プレフィックスを取得するカンマ区切りの CSS プロパティ。常に 'ms' プレフィックスを避ける場合は空の文字列に設定します。",
- "emmetPreferencesCssOProperties": "Emmet 省略記法で使用される場合に `-` で始まる 'o' ベンダー プレフィックスを取得するカンマ区切りの CSS プロパティ。常に 'o' プレフィックスを避ける場合は空の文字列に設定します。",
- "emmetPreferencesCssWebkitProperties": "Emmet 省略記法で使用される場合に `-` で始まる 'webkit' ベンダー プレフィックスを取得するカンマ区切りの CSS プロパティ。常に 'webkit' プレフィックスを避ける場合は空の文字列に設定します。",
- "emmetPreferencesFilterCommentAfter": "コメント フィルター使用時、一致した要素の後に配置するコメントの定義。",
- "emmetPreferencesFilterCommentBefore": "コメント フィルター使用時、一致した要素の前に配置するコメントの定義。",
- "emmetPreferencesFilterCommentTrigger": "コメント フィルターに適用される略語に存在する属性名のカンマ区切りのリスト。",
- "emmetPreferencesFloatUnit": "float 値に使用する既定の単位。",
- "emmetPreferencesFormatForceIndentTags": "内部インデントを常に取得するタグ名の配列。",
- "emmetPreferencesFormatNoIndentTags": "内部インデントを常に取得しないタグ名の配列。",
- "emmetPreferencesIntUnit": "整数値に使用する既定の単位。",
- "emmetPreferencesOutputInlineBreak": "兄弟インライン要素の間に改行を配置するために必要なそれらの要素の数。`0` の場合、インライン要素は常に 1 行に展開されます。",
- "emmetPreferencesOutputReverseAttributes": "'true' の場合、スニペットを解決するときに属性を結合する方向を反転します。",
- "emmetPreferencesOutputSelfClosingStyle": "自己終了タグのスタイル: html (' ')、xml (' ') または xhtml (' ')。",
- "emmetPreferencesSassAfter": "Sass ファイルで CSS 略語を展開するときに CSS プロパティの末尾に配置されるシンボル。",
- "emmetPreferencesSassBetween": "Sass ファイルで CSS の略語を展開するときに CSS プロパティと値の間に配置されるシンボル。",
- "emmetPreferencesStylusAfter": "Stylus ファイルで CSS 略語を展開するときに CSS プロパティの末尾に配置されるシンボル。",
- "emmetPreferencesStylusBetween": "Stylus ファイルで CSS の略語を展開するときに CSS プロパティと値の間に配置されるシンボル。",
- "emmetShowAbbreviationSuggestions": "利用できる Emmet 省略記法を候補として表示します。スタイルシートや emmet.showExpandedAbbreviation を `\"never\"` に設定していると適用されません。",
- "emmetShowExpandedAbbreviation": "展開された Emmet 省略形を候補として表示します。\r\nオプション `\"inMarkupAndStylesheetFilesOnly\"` は、html、haml、jade、slim、xml、xsl、css、scss、sass、less、stylus に適用されます。\r\nオプション `\"always\"` は、マークアップと css に関係なくファイルのすべての部分に適用されます。",
- "emmetShowSuggestionsAsSnippets": "`true` の場合、Emmet 候補をスニペットとして表示して `#editor.snippetSuggestions#` 設定に従ってそれらを並び替えます。",
- "emmetSyntaxProfiles": "指定した構文に対してプロファイルを定義するか、特定の規則がある独自のプロファイルをご使用ください。",
- "emmetTriggerExpansionOnTab": "有効にすると、TAB キーを押したときに Emmet 省略記法が展開されます。",
- "emmetUseInlineCompletions": "'true' の場合、Emmet はインライン補完を使用して拡張を提案します。この設定が 'true' の間にインライン以外の完了項目プロバイダーが頻繁に表示されないようにするには、'#editor.quickSuggestions#' を 'inline' に、あるいは 'other' 項目を 'off' にします。",
- "emmetVariables": "Emmet のスニペットで使用される変数。"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-ja/translations/extensions/extension-editing.i18n.json b/i18n/vscode-language-pack-ja/translations/extensions/extension-editing.i18n.json
deleted file mode 100644
index 3febc13e62..0000000000
--- a/i18n/vscode-language-pack-ja/translations/extensions/extension-editing.i18n.json
+++ /dev/null
@@ -1,30 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "dist/extensionLinter": {
- "apiProposalNotListed": "この拡張機能では、製品によって API 提案の固定一式が定義されているため、この提案は使用できません。拡張機能はテストできますが、公開する前に、VS Code チームに連絡する必要があります。",
- "dataUrlsNotValid": "Data URL は無効な画像のソースです。",
- "embeddedSvgsNotValid": "埋め込み SVG は無効な画像のソースです。",
- "httpsRequired": "画像には HTTPS プロトコルを使用する必要があります。",
- "relativeBadgeUrlRequiresHttpsRepository": "相対的なバッジ URL では、HTTPS プロトコルのリポジトリが package.json で指定されている必要があります。",
- "relativeIconUrlRequiresHttpsRepository": "アイコンは、HTTPS プロトコルのリポジトリがこの package.json で指定されている必要があります。",
- "relativeUrlRequiresHttpsRepository": "相対的な画像 URL では、HTTPS プロトコルのリポジトリが package.json で指定されている必要があります。",
- "svgsNotValid": "SVG は無効な画像のソースです。"
- },
- "dist/packageDocumentHelper": {
- "languageSpecificEditorSettings": "言語固有のエディター設定",
- "languageSpecificEditorSettingsDescription": "言語に対するエディター設定を上書きします"
- },
- "package": {
- "description": "拡張機能を作成するためのリンティング機能を提供します。",
- "displayName": "拡張機能の作成"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-ja/translations/extensions/fsharp.i18n.json b/i18n/vscode-language-pack-ja/translations/extensions/fsharp.i18n.json
deleted file mode 100644
index a23209893c..0000000000
--- a/i18n/vscode-language-pack-ja/translations/extensions/fsharp.i18n.json
+++ /dev/null
@@ -1,16 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "package": {
- "description": "F# ファイル内でスニペット、構文ハイライト、かっこ一致、折りたたみを提供します。",
- "displayName": "F# の基本言語サポート"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-ja/translations/extensions/git-base.i18n.json b/i18n/vscode-language-pack-ja/translations/extensions/git-base.i18n.json
deleted file mode 100644
index a9a83dca5b..0000000000
--- a/i18n/vscode-language-pack-ja/translations/extensions/git-base.i18n.json
+++ /dev/null
@@ -1,30 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "dist/remoteSource": {
- "branch name": "ブランチ名",
- "error": "{0} エラー: {1}",
- "none found": "リモート リポジトリが見つかりません。",
- "pick url": "複製元の URL を選択します。",
- "provide url": "リポジトリ URL を指定する",
- "provide url or pick": "リポジトリ URL を指定するか、リポジトリ ソースを選択します。",
- "recently opened": "最近開いたもの",
- "remote sources": "リモート ソース",
- "type to filter": "リポジトリ名",
- "type to search": "リポジトリ名 (検索するテキストを入力)",
- "url": "URL"
- },
- "package": {
- "command.api.getRemoteSources": "リモート ソースの取得",
- "description": "Git の静的コントリビューションとピッカー。",
- "displayName": "Git ベース"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-ja/translations/extensions/git-ui.i18n.json b/i18n/vscode-language-pack-ja/translations/extensions/git-ui.i18n.json
deleted file mode 100644
index 2308717acc..0000000000
--- a/i18n/vscode-language-pack-ja/translations/extensions/git-ui.i18n.json
+++ /dev/null
@@ -1,16 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "package": {
- "displayName": "Git UI",
- "description": "Git SCM UI 統合"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-ja/translations/extensions/git.i18n.json b/i18n/vscode-language-pack-ja/translations/extensions/git.i18n.json
deleted file mode 100644
index 4a4e6e66e5..0000000000
--- a/i18n/vscode-language-pack-ja/translations/extensions/git.i18n.json
+++ /dev/null
@@ -1,577 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "dist/actionButton": {
- "scm button commit and push title": "{0} コミットしてプッシュ",
- "scm button commit and push tooltip": "変更点をコミットしてプッシュ",
- "scm button commit and sync title": "{0} コミットして同期",
- "scm button commit and sync tooltip": "変更点をコミットして同期",
- "scm button commit title": "{0} コミット",
- "scm button commit to new branch and push tooltip": "新しいブランチにコミットして変更をプッシュする",
- "scm button commit to new branch and sync tooltip": "新しいブランチにコミットして変更を同期する",
- "scm button commit to new branch tooltip": "新しいブランチに変更をコミットする",
- "scm button commit tooltip": "変更点のコミット",
- "scm button committing and pushing tooltip": "変更点をコミットしてプッシュしています...",
- "scm button committing and synching tooltip": "変更点をコミットして同期しています...",
- "scm button committing to new branch and pushing tooltip": "新しいブランチにコミットして変更をプッシュしています...",
- "scm button committing to new branch and synching tooltip": "新しいブランチにコミットして変更を同期しています...",
- "scm button committing to new branch tooltip": "新しいブランチに変更をコミットしています...",
- "scm button committing tooltip": "変更点をコミットしています...",
- "scm button continue title": "{0} Continue",
- "scm button continue tooltip": "Continue Rebase",
- "scm button continuing tooltip": "Continuing Rebase...",
- "scm button publish branch": "Branch を発行",
- "scm button publish branch running": "Branch を公開しています...",
- "scm button sync description": "{0}変更の同期{1}{2}",
- "scm publish branch action button title": "{0} Branch の発行",
- "scm secondary button commit": "コミット",
- "syncing changes": "変更を同期しています..."
- },
- "dist/askpass-main": {
- "missOrInvalid": "資格情報が見つからないか、無効です。"
- },
- "dist/autofetch": {
- "no": "いいえ",
- "not now": "後で通知する",
- "suggest auto fetch": "Code が [定期的に 'git fetch']({0}) を実行してもよろしいですか?",
- "yes": "はい"
- },
- "dist/commands": {
- "HEAD not available": "'{0}' の HEAD バージョンは利用できません。",
- "Theirs": "他ユーザー用",
- "Yours": "自分用",
- "add": "ワークスペースに追加",
- "add remote": "新しいリモートを追加...",
- "addFrom": "URL からリモートを追加する",
- "addfrom": "{0} からリモートを追加する",
- "addremote": "リモートを追加する",
- "always": "常に行う",
- "are you sure": "'{0}' に Git リポジトリを作成します。続行してもよろしいですか?",
- "auth failed": "Git リモートに対して認証できませんでした。",
- "auth failed specific": "Git リモートに対して認証できませんでした:\r\n\r\n{0}",
- "branch already exists": "ブランチ名 '{0}' は既に存在します",
- "branch name": "ブランチ名",
- "branch name does not match sanitized": "新しいブランチは '{0}' になります",
- "branch name format invalid": "ブランチ名は次の正規表現に一致する必要があります: {0}",
- "cant push": "参照仕様をリモートにプッシュできません。最初に 'Pull' を実行して変更を統合してください。",
- "checkout detached": "チェックアウトがデタッチされました...",
- "choose": "フォルダーを選択...",
- "clean repo": "チェックアウトの前に、リポジトリの作業ツリーを消去してください。",
- "clonefrom": "{0} から複製",
- "cloning": "Git リポジトリ '{0}' をクローンしています...",
- "commit": "ステージされている変更のコミット",
- "commit anyway": "空のコミットの作成",
- "commit changes": "このままコミット",
- "commit hash": "コミット ハッシュ",
- "commit message": "コミット メッセージ",
- "commit to branch": "新しいブランチにコミットする",
- "commitMessageWithHeadLabel2": "メッセージ ('{0}' でコミット)",
- "confirm branch protection commit": "保護されたブランチにコミットしようとしていますが、コミットをリモートにプッシュするアクセス許可がない可能性があります。\r\n\r\n続行しますか?",
- "confirm delete": "{0} を削除しますか?\r\nこれは元に戻すことはできません。\r\n続行すると、このファイルは完全に失われます。",
- "confirm delete multiple": "{0} 個のファイルを削除しますか?\r\nこれは元に戻すことができません。\r\n続行すると、このファイルは完全に失われます。",
- "confirm discard": "{0} の変更を破棄しますか?",
- "confirm discard all": "{0} 個のファイルのすべての変更を破棄してもよろしいですか?\r\nこれは元に戻すことができません。\r\n続行すると、現在のワーキング セットは完全に失われます。",
- "confirm discard all 2": "{0}\r\n\r\nこの変更は元に戻すことはできません。現在のワーキング セットは永久に失われます。",
- "confirm discard all single": "{0} の変更を破棄しますか?",
- "confirm discard multiple": "{0} 個のファイルの変更内容を破棄しますか?",
- "confirm empty commit": "Are you sure you want to create an empty commit?",
- "confirm force delete branch": "ブランチ '{0}' はマージされていません。それでも削除しますか?",
- "confirm force push": "変更の強制プッシュを行おうとしていますが、これは破壊的なことがあり、他人の変更を誤って上書きする可能性があります。\r\n\r\n続行しますか?",
- "confirm no verify commit": "確認せずに変更をコミットしようとしています。これは、コミット前のフックをスキップするため、望ましくない場合があります。\r\n\r\n続行しますか?",
- "confirm publish branch": "'{0}' ブランチにリモート ブランチはありません。このブランチを公開しますか?",
- "confirm restore": "{0} を復元しますか?",
- "confirm restore multiple": "{0} 個のファイルを復元しますか?",
- "confirm stage file with merge conflicts": "マージの競合がある {0} をステージしてもよろしいですか?",
- "confirm stage files with merge conflicts": "マージの競合がある {0} 個のファイルをステージしてもよろしいですか?",
- "create branch": "新しい分岐の作成...",
- "create branch from": "新しい分岐の作成元...",
- "create repo": "リポジトリの初期化",
- "current": "現在のマシン",
- "default": "既定",
- "delete": "ファイルを削除",
- "delete branch": "ブランチの削除",
- "delete file": "ファイルを削除",
- "delete files": "複数のファイルを削除",
- "deleted by them": "ファイル '{0}' は、他者が削除し、こちらが更新しました。\r\n\r\nどのように処理しますか?",
- "deleted by us": "ファイル '{0}' は、こちらが削除し、他者が更新しました。\r\n\r\nどのように処理しますか?",
- "discard": "変更を破棄",
- "discardAll": "{0} 個のファイルをすべて破棄",
- "discardAll multiple": "1 つのファイルを破棄",
- "drop all stashes": "すべての一時退避を削除しますか? 削除の対象となる可能性のある {0} 個の一時退避があり、それらは回復できない可能性があります。",
- "drop one stash": "すべての一時退避を削除しますか? 削除の対象となる可能性のある 1 個の一時退避があり、それらは回復できない可能性があります。",
- "empty commit": "コミット メッセージが空だったため、コミット操作がキャンセルされました。",
- "force": "チェックアウトの強制",
- "force push not allowed": "強制的なプッシュは禁止されています。'git.allowForcePush' 設定で有効にしてください。",
- "git error": "Git エラー",
- "git error details": "Git: {0}",
- "git.timeline.openDiffCommand": "比較を開く",
- "git.title.diff": "{0} ↔ {1}",
- "git.title.diffRefs": "{0} ({1}) ↔ {0} ({2})",
- "git.title.index": "{0} (インデックス)",
- "git.title.ref": "{0} ({1})",
- "git.title.workingTree": "{0} (作業ツリー)",
- "init": "Git リポジトリを初期化するワークスペース フォルダーを選択してください",
- "init repo": "リポジトリの初期化",
- "invalid branch name": "無効なブランチ名",
- "keep ours": "自分 (Our) を維持する",
- "keep theirs": "相手 (Their) を維持する",
- "learn more": "詳細を表示",
- "local changes": "ローカルの変更は、チェックアウトによって上書きされます。",
- "merge commit": "最後のコミットはマージ コミットでした。元に戻しますか?",
- "merge conflicts": "マージの競合があります。コミットする前にこれを解決してください。",
- "missing user info": "Git の 'user.name' と 'user.email' を構成していることを確認してください。",
- "never": "行わない",
- "never again": "OK、今後は表示しない",
- "never ask again": "今後は確認しない",
- "no changes": "コミットする必要のある変更はありません。",
- "no changes stash": "一時退避する変更がありません。",
- "no more": "HEAD が任意のコミットを明示しないため、元に戻すことはできません。",
- "no rebase": "進行中のリベースはありません。",
- "no remotes added": "リポジトリにリモートが含まれていません。",
- "no remotes to fetch": "リポジトリには、フェッチ元として構成されているリモートがありません。",
- "no remotes to publish": "リポジトリには、発行先として構成されているリモートがありません。",
- "no remotes to pull": "リポジトリには、プル元として構成されているリモートがありません。",
- "no remotes to push": "リポジトリには、プッシュ先として構成されているリモートがありません。",
- "no staged changes": "ステージされている変更がなく、コミットできません。\r\n\r\nすべての変更をステージして、直接コミットしますか?",
- "no stashes": "リポジトリ内に一時退避内容はありません。",
- "no tags": "このリポジトリにはタグがありません。",
- "no verify commit not allowed": "確認なしのコミットは許可されていません。'git.allowNoVerifyCommit' 設定を使用して有効にしてください。",
- "nobranch": "リモートにプッシュするブランチをチェックアウトしてください。",
- "ok": "OK",
- "open git log": "Git ログを開く",
- "open repo": "リポジトリを開く",
- "openrepo": "開く",
- "openreponew": "新しいウィンドウで開く",
- "pick branch pull": "プル元のブランチを選択",
- "pick provider": "ブランチ '{0}' を以下へ発行するプロバイダーを選択する:",
- "pick remote": "リモートを選んで、ブランチ '{0}' を次の場所に公開します:",
- "pick remote pull repo": "リモートを選んで、ブランチを次からプルします",
- "pick stash to apply": "適用する一時退避内容を選択してください",
- "pick stash to drop": "ドロップする一時退避を削除する",
- "pick stash to pop": "適用して削除する一時退避内容を選択してください",
- "proposeopen": "クローンしたリポジトリを開きますか?",
- "proposeopen init": "初期化済みのリポジトリを開きますか?",
- "proposeopen2": "複製したリポジトリを開きますか? または現在のワークスペースに追加しますか?",
- "proposeopen2 init": "初期化済みのリポジトリを開きますか? または現在のワークスペースへ追加しますか?",
- "provide branch name": "新しいブランチ名を入力してください",
- "provide commit hash": "コミット ハッシュを指定してください",
- "provide commit message": "コミット メッセージを入力してください",
- "provide remote name": "リモート名を入力してください。",
- "provide stash message": "必要に応じて一時退避メッセージを入力してください",
- "provide tag message": "注釈付きタグにつけるメッセージを入力してください",
- "provide tag name": "タグ名を入力してください",
- "publish to": "{0} に発行する",
- "remote already exists": "リモート '{0}' は既に存在します。",
- "remote branch at": "{0} でのリモート ブランチ",
- "remote name": "リモート名",
- "remote name format invalid": "リモート名の形式が無効です",
- "remove remote": "削除するリモートを選択",
- "repourl": "リポジトリの URL",
- "restore file": "ファイルを復元",
- "restore files": "複数のファイルを復元",
- "save and commit": "すべてのコミットを保存",
- "save and stash": "すべてを保存して一時退避する",
- "select a branch to merge from": "マージ元のブランチを選択",
- "select a branch to rebase onto": "リベース先のブランチを選択",
- "select a ref to checkout": "チェックアウトする参照を選択",
- "select a ref to checkout detached": "デタッチ モードでチェックアウトする参照を選択する",
- "select a ref to create a new branch from": "'{0}' ブランチの作成元 ref を選択",
- "select a tag to delete": "削除するタグを選択する",
- "select branch to delete": "削除するブランチの選択",
- "select log level": "ログ レベルを選択",
- "selectFolder": "リポジトリの場所を選択",
- "show command output": "コマンド出力を表示する",
- "stash": "このまま一時退避",
- "stash merge conflicts": "一時退避内容を適用している間に、マージの競合がありました。",
- "stash message": "一時退避メッセージ",
- "stashcheckout": "一時退避してチェックアウト",
- "sure drop": "一時退避内容 {0} を削除しますか?",
- "sync is unpredictable": "このアクションは、'{0}/{1}' との間でコミットをプルおよびプッシュします。",
- "tag at": "{0} のタグ",
- "tag message": "メッセージ",
- "tag name": "タグ名",
- "there are untracked files": "破棄すると {0} 個の未追跡ファイルがディスクから削除されます。",
- "there are untracked files single": "破棄すると次の未追跡ファイルがディスクから削除されます: {0}。",
- "undo commit": "マージ コミットの取り消し",
- "unsaved files": "{0} 個の保存されていないファイルがあります。\r\n\r\nコミット前に保存しますか?",
- "unsaved files single": "次のファイルには保存されていない変更があり、続行するとコミットに含まれません: {0}。\r\n\r\nコミットする前に保存しますか?",
- "unsaved stash files": "{0} 個の保存されていないファイルがあります。\r\n\r\n一時退避する前に保存しますか?",
- "unsaved stash files single": "次のファイルには保存されていない変更があり、続行すると stash に含められません: {0}。\r\n\r\n一時退避する前に保存しますか?",
- "warn untracked": "{0} 個の追跡されていないファイルが削除されます。\r\n元に戻すことはできません。\r\nこれらのファイルは完全に失われます。",
- "yes": "はい",
- "yes discard tracked": "1 つの追跡ファイルを破棄",
- "yes discard tracked multiple": "{0} 個の追跡ファイルを破棄",
- "yes never again": "はい、今後は表示しません"
- },
- "dist/log": {
- "gitLogLevel": "ログ レベル: {0}"
- },
- "dist/main": {
- "downloadgit": "Git のダウンロード",
- "git20": "Git {0} がインストールされているようです。Code は Git 2 以上で最適に動作します",
- "git2526": "インストールされている Git {0} には既知の問題があります。Git 機能を正常に動作させるために、Git を 2.27 以上に更新してください。",
- "neverShowAgain": "今後表示しない",
- "notfound": "Git が見つかりません。Git をインストールするか 'git.path' 設定でパスを構成してください。",
- "skipped": "Git のスキップが検出されました: {0}",
- "updateGit": "Git の更新",
- "using git": "{1} から Git {0} を使用しています",
- "validating": "Git の検証が検出されました: {0}"
- },
- "dist/model": {
- "no repositories": "利用可能なリポジトリがありません",
- "not supported": "'git.scanRepositories' 設定は絶対パスをサポートしていません。",
- "pick repo": "リポジトリの選択",
- "repoOnHomeDriveRootWarning": "'{0}' で Git リポジトリを自動的に開くことができません。その Git リポジトリを開くには、VS Code のフォルダーとして直接開きます。",
- "too many submodules": "'{0}' リポジトリに {1} 個のサブモジュールがあり、自動では開かれません。 ファイルを開くことで、それぞれを個別に開くことができます。"
- },
- "dist/postCommitCommands": {
- "scm secondary button commit and push": "コミットしてプッシュ",
- "scm secondary button commit and sync": "コミットして同期"
- },
- "dist/repository": {
- "add known": ".gitignore に '{0}' を追加しますか。",
- "added by them": "競合: 他者が追加",
- "added by us": "競合: こちらが追加",
- "always pull": "常にプル",
- "both added": "競合: 両方追加",
- "both deleted": "競合: 両方削除",
- "both modified": "競合: 両方変更",
- "changes": "変更",
- "commit": "コミット",
- "commit in rebase": "リベースの最中にコミット メッセージは変更できません。リベースの操作を終了してから、代わりに interactive rebase を使用してください。",
- "commitMessage": "メッセージ (コミットするための {0})",
- "commitMessageCountdown": "現在の行で残り {0} 文字",
- "commitMessageWarning": "現在の行で {1} から {0} 文字オーバー",
- "commitMessageWhitespacesOnlyWarning": "現在のコミット メッセージには空白文字のみが含めています",
- "commitMessageWithHeadLabel": "メッセージ ('{1}' でコミットするための {0})",
- "deleted": "削除済み",
- "deleted by them": "競合: 他者が削除",
- "deleted by us": "競合: こちらが削除",
- "dont pull": "プルしない",
- "git.title.deleted": "{0} (削除済み)",
- "git.title.index": "{0} (インデックス)",
- "git.title.ours": "{0} (自分たちの)",
- "git.title.theirs": "{0} (他のユーザー)",
- "git.title.untracked": "{0} (未追跡)",
- "git.title.workingTree": "{0} (作業ツリー)",
- "huge": "'{0}' のGit リポジトリにアクティブな変更が多いため、 Git 機能の一部のみが有効になります。",
- "ignored": "無視",
- "index added": "インデックスの追加",
- "index copied": "インデックスをコピー",
- "index deleted": "削除されたインデックス",
- "index modified": "変更されたインデックス",
- "index renamed": "インデックスの名前変更",
- "intent to add": "追加する目的",
- "merge changes": "変更のマージ",
- "modified": "変更済み",
- "neveragain": "今後表示しない",
- "no": "いいえ",
- "ok": "OK",
- "open": "開く",
- "open.merge": "マージを開く",
- "pull": "プル",
- "pull branch maybe rebased": "現在のブランチ '{0}' がリベースされた可能性があります。そこへプルしますか?",
- "pull maybe rebased": "現在のブランチがリベースされた可能性があります。そこへプルしますか?",
- "pull n": "{1}/{2} から {0} 件のコミットをプルします",
- "pull push n": "{2}/{3} の間で {0} 件のコミットをプルし、{1} 件のコミットをプッシュします",
- "push n": "{1}/{2} に {0} 件のコミットをプッシュします",
- "push success": "正常にプッシュされました。",
- "staged changes": "ステージされている変更",
- "sync changes": "変更の同期",
- "sync is unpredictable": "同期中です。キャンセルすると、リポジトリに重大な損傷を与える可能性があります",
- "tooManyChangesWarning": "検出された変更が多すぎます。最初の {0} の変更のみが下に表示されます。",
- "untracked": "追跡対象外",
- "untracked changes": "追跡対象外の変更",
- "yes": "はい"
- },
- "dist/statusbar": {
- "checkout": "ブランチまたはタグのチェックアウト...",
- "publish branch": "ブランチを発行...",
- "publish to": "{0} に発行する",
- "publish to...": "以下に発行する...",
- "rebasing": "リベースしています",
- "syncing changes": "変更を同期しています..."
- },
- "dist/timelineProvider": {
- "git.timeline.email": "メール",
- "git.timeline.openComparison": "比較を開く",
- "git.timeline.source": "Git 履歴",
- "git.timeline.stagedChanges": "ステージング済みの変更",
- "git.timeline.uncommitedChanges": "コミットされていない変更",
- "git.timeline.you": "自分"
- },
- "package": {
- "colors.added": "追加したリソースの配色。",
- "colors.conflict": "リソースが競合する場合の配色",
- "colors.deleted": "リソースを検出した場合の配色",
- "colors.ignored": "リソースを無視する場合の配色",
- "colors.modified": "リソースを改変した場合の配色",
- "colors.renamed": "名前変更またはコピーされたリソースの色。",
- "colors.stageDeleted": "ステージングされた削除済みリソースの色。",
- "colors.stageModified": "ステージングされた変更済みリソースの色。",
- "colors.submodule": "サブモジュールの配色。",
- "colors.untracked": "リソースを追跡しない場合の配色",
- "command.addRemote": "リモートの追加...",
- "command.api.getRemoteSources": "リモート ソースの取得",
- "command.api.getRepositories": "リポジトリの取得",
- "command.api.getRepositoryState": "リポジトリ状態の取得",
- "command.branch": "分岐の作成...",
- "command.branchFrom": "ブランチの作成元...",
- "command.checkout": "チェックアウト先...",
- "command.checkoutDetached": "チェックアウト先 (デタッチ済み)...",
- "command.cherryPick": "チェリーピック...",
- "command.clean": "変更を破棄",
- "command.cleanAll": "すべての変更を破棄",
- "command.cleanAllTracked": "変更履歴をすべて破棄",
- "command.cleanAllUntracked": "追跡対象外のすべての変更を破棄",
- "command.clone": "クローン",
- "command.cloneRecursive": "複製 (再帰)",
- "command.close": "リポジトリを閉じる",
- "command.closeAllDiffEditors": "すべての差分エディターを閉じる",
- "command.commit": "コミット",
- "command.commitAll": "すべてコミット",
- "command.commitAllAmend": "すべてコミット (修正)",
- "command.commitAllAmendNoVerify": "すべてコミット (修正、確認なし)",
- "command.commitAllNoVerify": "すべてコミット (確認なし)",
- "command.commitAllSigned": "すべてコミット (Signed Off)",
- "command.commitAllSignedNoVerify": "すべてコミット (サインオフ、確認なし)",
- "command.commitEmpty": "空のコミット",
- "command.commitEmptyNoVerify": "空のコミット (確認なし)",
- "command.commitMessageAccept": "コミット メッセージを受け入れる",
- "command.commitMessageDiscard": "コミット メッセージの破棄",
- "command.commitNoVerify": "コミット (確認なし)",
- "command.commitStaged": "ステージング済みをコミット",
- "command.commitStagedAmend": "ステージング済をコミット (修正)",
- "command.commitStagedAmendNoVerify": "ステージング済みをコミット (修正、確認なし)",
- "command.commitStagedNoVerify": "ステージング済みをコミット (確認なし)",
- "command.commitStagedSigned": "コミットしてステージング (サインオフ)",
- "command.commitStagedSignedNoVerify": "ステージング済みをコミット (サインオフ、確認なし)",
- "command.createTag": "タグを作成",
- "command.deleteBranch": "ブランチの削除...",
- "command.deleteTag": "タグの削除",
- "command.fetch": "フェッチ",
- "command.fetchAll": "すべてのリモートからフェッチ",
- "command.fetchPrune": "フェッチ (Prune)",
- "command.git.acceptMerge": "マージの許可",
- "command.ignore": ".gitignore に追加",
- "command.init": "リポジトリの初期化",
- "command.merge": "ブランチをマージ...",
- "command.openAllChanges": "すべての変更を開く",
- "command.openChange": "変更を開く",
- "command.openFile": "ファイルを開く",
- "command.openHEADFile": "ファイル (HEAD) を開く",
- "command.openRepository": "リポジトリを開く",
- "command.publish": "ブランチを発行...",
- "command.pull": "プル",
- "command.pullFrom": "指定元からプル...",
- "command.pullRebase": "プル (リベース)",
- "command.push": "プッシュ",
- "command.pushFollowTags": "プッシュ (タグをフォロー)",
- "command.pushFollowTagsForce": "プッシュ (タグをフォロー、強制)",
- "command.pushForce": "プッシュ (強制)",
- "command.pushTags": "タグをプッシュ",
- "command.pushTo": "プッシュ先...",
- "command.pushToForce": "プッシュ先... (強制)",
- "command.rebase": "ブランチのリベース...",
- "command.rebaseAbort": "リベースを中止する",
- "command.refresh": "最新の情報に更新",
- "command.removeRemote": "リモートの削除",
- "command.rename": "名前の変更",
- "command.renameBranch": "ブランチ名の変更...",
- "command.restoreCommitTemplate": "コミット テンプレートを復元する",
- "command.revealFileInOS.linux": "含まれているフォルダーを開く",
- "command.revealFileInOS.mac": "Finder で表示します",
- "command.revealFileInOS.windows": "エクスプローラーで表示する",
- "command.revealInExplorer": "エクスプローラーで表示",
- "command.revertChange": "変更を元に戻す",
- "command.revertSelectedRanges": "選択範囲を元に戻す",
- "command.setLogLevel": "ログ レベルの設定...",
- "command.showOutput": "Git 出力の表示",
- "command.stage": "変更をステージ",
- "command.stageAll": "すべての変更をステージ",
- "command.stageAllMerge": "すべてのマージ変更をステージする",
- "command.stageAllTracked": "すべての変更履歴をステージングする",
- "command.stageAllUntracked": "すべての追跡対象外の変更のステージング",
- "command.stageChange": "変更のステージング",
- "command.stageSelectedRanges": "選択した範囲をステージする",
- "command.stash": "一時退避",
- "command.stashApply": "一時退避内容を適用...",
- "command.stashApplyLatest": "最新の一時退避内容を適用",
- "command.stashDrop": "一時退避を削除する...",
- "command.stashDropAll": "すべての一時退避を削除...",
- "command.stashIncludeUntracked": "一時退避 (未追跡ファイルを含む)",
- "command.stashPop": "一時退避内容を適用して削除...",
- "command.stashPopLatest": "最新の一時退避内容を適用して削除",
- "command.sync": "同期",
- "command.syncRebase": "同期 (Rebase)",
- "command.timelineCompareWithSelected": "選択項目と比較",
- "command.timelineCopyCommitId": "コミット ID のコピー",
- "command.timelineCopyCommitMessage": "コミット メッセージのコピー",
- "command.timelineOpenDiff": "変更を開く",
- "command.timelineSelectForCompare": "比較対象の選択",
- "command.undoCommit": "前回のコミットを元に戻す",
- "command.unstage": "変更のステージング解除",
- "command.unstageAll": "すべての変更のステージング解除",
- "command.unstageSelectedRanges": "選択した範囲のステージを解除",
- "config.allowForcePush": "強制的なプッシュ (--force-with-lease の有無にかかわらず) を有効にするかどうかを制御します。",
- "config.allowNoVerifyCommit": "pre-commit と commit-msg フックを実行しないコミットを許可するかどうかを制御します。",
- "config.alwaysShowStagedChangesResourceGroup": "ステージ済み変更のリソース グループを常に表示します。",
- "config.alwaysSignOff": "すべてのコミットのサインオフ フラグを制御します。",
- "config.autoRepositoryDetection": "レポジトリを自動的に検出するかどうかを構成します。",
- "config.autoRepositoryDetection.false": "リポジトリの自動的なスキャンを無効にします。",
- "config.autoRepositoryDetection.openEditors": "開いているファイルの親フォルダーをスキャンします。",
- "config.autoRepositoryDetection.subFolders": "現在開いているフォルダーのサブフォルダーをスキャンします。",
- "config.autoRepositoryDetection.true": "現在開いているフォルダーのサブフォルダーと、開いているファイルの親フォルダーの両方をスキャンします。",
- "config.autoStash": "プルする前にすべての変更を一時退避し、プル成功後に復元します。",
- "config.autofetch": "true に設定すると、現在の Git リポジトリの既定のリモートからコミットが自動的にフェッチされます。[すべて] に設定すると、すべてのリモートからフェッチされます。",
- "config.autofetchPeriod": "`#git.autofetch#` が有効な場合の git の自動フェッチ間隔 (秒単位)。",
- "config.autorefresh": "自動更新の有効/無効。",
- "config.branchPrefix": "新しいブランチを作成するときに使用されるプレフィックス。",
- "config.branchProtection": "保護されたブランチのリスト。既定では、変更が保護されたブランチにコミットされる前にプロンプトが表示されます。プロンプトは、'#git.branchProtectionPrompt#' 設定を使用して制御できます。",
- "config.branchProtectionPrompt": "変更が保護されたブランチにコミットされる前にプロンプトを表示するかどうかを制御します。",
- "config.branchProtectionPrompt.alwaysCommit": "常に保護されたブランチに変更をコミットします。",
- "config.branchProtectionPrompt.alwaysCommitToNewBranch": "新しいブランチへの変更をコミットします。",
- "config.branchProtectionPrompt.alwaysPrompt": "変更が保護されたブランチにコミットされる前に、常にプロンプトを表示します。",
- "config.branchRandomNameDictionary": "ランダムに生成されたブランチ名に使用されるディクショナリの一覧。各値は、ブランチ名のセグメントを生成するために使用されるディクショナリを表します。サポートされている辞書: `adjectives`, `animals`, `colors`, `numbers`。",
- "config.branchRandomNameDictionary.adjectives": "ランダムな形容詞",
- "config.branchRandomNameDictionary.animals": "ランダムな動物の名前",
- "config.branchRandomNameDictionary.colors": "ランダムな色の名前",
- "config.branchRandomNameDictionary.numbers": "100 と 999 の間のランダムな数",
- "config.branchRandomNameEnable": "新しいブランチの作成時にランダムな名前を生成するかどうかを制御します。",
- "config.branchSortOrder": "ブランチの並べ替え順序を制御します。",
- "config.branchValidationRegex": "新しいブランチ名を検証するための正規表現。",
- "config.branchWhitespaceChar": "新しいブランチ名の空白文字を置き換え、ランダムに生成されたブランチ名のセグメントを区切る文字。",
- "config.checkoutType": "'チェックアウト先...' を実行するとき、どの種類の Git 参照を一覧表示するか制御します。",
- "config.checkoutType.local": "ローカル ブランチ",
- "config.checkoutType.remote": "リモート ブランチ",
- "config.checkoutType.tags": "タグ",
- "config.closeDiffOnOperation": "変更を一時退避、コミット、破棄、ステージング、またはステージング解除する場合に差分エディターを自動的に閉じるかどうかを制御します。",
- "config.commandsToLog": "'stdout' のログが[git output](command:git.showOutput) に記録される Git コマンドの一覧 (commit、push など)。Git コマンドでクライアント側フックが構成されている場合、クライアント側フックの 'stdout' のログも[git output](command:git.showOutput) に記録されます。",
- "config.confirmEmptyCommits": "'Git: Commit Empty' コマンドの空のコミットの作成を常に確認します。",
- "config.confirmForcePush": "強制的なプッシュの前に確認を求めるかどうかを制御します。",
- "config.confirmNoVerifyCommit": "確認せずにコミットする前に確認メッセージを表示するかどうかを制御します。",
- "config.confirmSync": "Git リポジトリを同期する前に確認します。",
- "config.countBadge": "Git カウント バッジを制御します。",
- "config.countBadge.all": "すべての変更をカウントします。",
- "config.countBadge.off": "カウンターをオフにします。",
- "config.countBadge.tracked": "追跡済みの変更のみカウントします。",
- "config.decorations.enabled": "Git が配色とバッジをエクスプローラーと [開いているエディター] ビューに提供するかどうかを制御します。",
- "config.defaultCloneDirectory": "Git リポジトリをクローンする既定の場所。",
- "config.detectSubmodules": "git サブモジュールを自動的に検出するかどうかを制御します。",
- "config.detectSubmodulesLimit": "検出する git サブモジュール数の制限を制御します。",
- "config.discardAllScope": "'すべての変更を破棄' コマンドによってどの変更が破棄されるかを制御します。'all' はすべての変更を破棄します。 'tracked' は追跡されているファイルだけを破棄します。 'prompt' は、アクションが実行されるたびにプロンプト ダイアログを表示します。",
- "config.enableCommitSigning": "GPG または X.509 によるコミットの署名を有効にします。",
- "config.enableSmartCommit": "ステージされた変更がない場合はすべての変更をコミットします。",
- "config.enableStatusBarSync": "ステータス バーに Git Sync コマンドを表示するかどうかを制御します。",
- "config.enabled": "Git が有効になっているかどうか。",
- "config.experimental.installGuide": "Git のセットアップ フローの試験的な改善。",
- "config.fetchOnPull": "有効にすると、プル時にすべてのブランチをフェッチします。それ以外の場合は、現在のブランチだけをフェッチします。",
- "config.followTagsWhenSync": "同期コマンドを実行するときに、すべてのタグをフォロー プッシュします。",
- "config.ignoreLegacyWarning": "古い Git である警告を無視します。",
- "config.ignoreLimitWarning": "リポジトリ内に変更が多い場合の警告を無視します。",
- "config.ignoreMissingGitWarning": "Git が見つからない場合の警告を無視します。",
- "config.ignoreRebaseWarning": "ブランチがプル時にリベースされた可能性があると思われる場合、警告を無視します。",
- "config.ignoreSubmodules": "ファイル ツリーでのサブモジュールの変更を無視します。",
- "config.ignoreWindowsGit27Warning": "Git 2.25 - 2.26 が Windows にインストールされている場合は警告を無視します。",
- "config.ignoredRepositories": "無視する git リポジトリの一覧。",
- "config.inputValidation": "コミット メッセージの入力検証をいつ表示するかを制御します。",
- "config.inputValidationLength": "警告を表示するコミット メッセージの長さのしきい値を制御します。",
- "config.inputValidationSubjectLength": "警告を表示するためのコミット メッセージの件名長のしきい値を制御します。'config.inputValidationLength' の値を継承する場合には設定解除します。",
- "config.logLevel": "[git output](command:git.showOutput) にログに記録する情報の量 (ある場合) を指定します。",
- "config.logLevel.critical": "クリティカルな情報のみをログに記録する",
- "config.logLevel.debug": "デバッグ、情報、警告、エラー、およびクリティカルな情報のみをログに記録する",
- "config.logLevel.error": "エラーとクリティカルな情報のみをログに記録する",
- "config.logLevel.info": "情報、警告、エラー、およびクリティカルな情報のみをログに記録する",
- "config.logLevel.off": "何もログに記録しない",
- "config.logLevel.trace": "すべての情報をログに記録する",
- "config.logLevel.warn": "警告、エラー、およびクリティカルな情報のみをログに記録する",
- "config.mergeEditor": "現在競合しているファイルのマージ エディターを開きます。",
- "config.openAfterClone": "複製後にリポジトリを自動的に開くかどうかを制御します。",
- "config.openAfterClone.always": "常に現在のウィンドウで開きます。",
- "config.openAfterClone.alwaysNewWindow": "常に新しいウィンドウで開きます。",
- "config.openAfterClone.prompt": "常にアクションを確認します。",
- "config.openAfterClone.whenNoFolderOpen": "開いているフォルダーがない場合は現在のウィンドウでのみ開きます。",
- "config.openDiffOnClick": "変更をクリックすると差分エディターを開くかどうかを制御します。そうでなければ通常のエディターを開きます。",
- "config.path": "Git 実行可能ファイルのパスとファイル名 (例: Windows の場合は `C:\\Program Files\\Git\\bin\\git.exe`)。検索する複数のパスを含む文字列値の配列を指定することもできます。",
- "config.postCommitCommand": "コミットの成功後、git コマンドを実行します。",
- "config.postCommitCommand.none": "コミット後、任意のコマンドを実行しません。",
- "config.postCommitCommand.push": "コミットの成功後、'Git Push' を実行します。",
- "config.postCommitCommand.sync": "コミットの成功後、'Git Sync' を実行します。",
- "config.promptToSaveFilesBeforeCommit": "コミット前に Git が保存していないファイルを確認すべきかどうかを制御します。",
- "config.promptToSaveFilesBeforeCommit.always": "保存されていないファイルがないか確認します。",
- "config.promptToSaveFilesBeforeCommit.never": "このチェックを無効にします。",
- "config.promptToSaveFilesBeforeCommit.staged": "保存されていないステージング済みファイルのみを確認します。",
- "config.promptToSaveFilesBeforeStash": "変更を一時退避する前に Git で保存していないファイルを確認すべきかどうかを制御します。",
- "config.promptToSaveFilesBeforeStash.always": "保存されていないファイルがないか確認します。",
- "config.promptToSaveFilesBeforeStash.never": "このチェックを無効にします。",
- "config.promptToSaveFilesBeforeStash.staged": "保存されていないステージング済みファイルのみを確認します。",
- "config.pruneOnFetch": "フェッチ時に取り除きます。",
- "config.pullTags": "プルするときにすべてのタグをフェッチします。",
- "config.rebaseWhenSync": "同期コマンドを実行するときに、Git リベースを強制します。",
- "config.repositoryScanIgnoredFolders": "`#git.autoRepositoryDetection#` が `true` または `subFolders` に設定されている場合に Git リポジトリのスキャン中に無視されるフォルダーのリスト。",
- "config.repositoryScanMaxDepth": "'#git.autoRepositoryDetection#' が 'true' もしくは 'subFolders' であるとき、Git リポジトリのワークスペース フォルダーをスキャンする際に使用される深さを制御します。制限なしとするためには、'-1' として設定可能です。",
- "config.requireGitUserConfig": "明示的な Git ユーザーの構成が必要かどうかを制御するか、指定されていない場合は Git による推測を許可します。",
- "config.scanRepositories": "Git リポジトリを検索するパスのリスト。",
- "config.showActionButton": "ソース管理ビューにアクション ボタンを表示するかどうかを制御します。",
- "config.showActionButton.commit": "ローカル ブランチがコミットする準備ができているファイルを変更したときに、変更をコミットするアクション ボタンを表示します。",
- "config.showActionButton.publish": "追跡リモート ブランチがない場合にローカル ブランチを発行するアクション ボタンを表示します。",
- "config.showActionButton.sync": "ローカル ブランチがリモート ブランチの前方または背後にある場合に、変更を同期するアクション ボタンを表示します。",
- "config.showCommitInput": "Git ソース管理パネルにコミットの入力を表示するかどうかを制御します。",
- "config.showInlineOpenFileAction": "Git 変更の表示内にインラインのファイルを開くアクションを表示するかどうかを制御します。",
- "config.showProgress": "Git 操作の進行状況を表示するかどうかを制御します。",
- "config.showPushSuccessNotification": "プッシュが成功したときに通知を表示するかどうかを制御します。",
- "config.smartCommitChanges": "スマート コミットで変更を自動的にステージングするかどうかを制御します。",
- "config.smartCommitChanges.all": "すべての変更を自動的にステージします。",
- "config.smartCommitChanges.tracked": "自動的にステージングされた変更箇所のみ。",
- "config.statusLimit": "Git 状態コマンドで解析できる変更回数の制限方法を制御します。0 に設定すると制限なしにすることができます。",
- "config.suggestSmartCommit": "スマート コミットを有効にすることを推奨します (ステージング済み変更がない場合、すべての変更をコミットします)。",
- "config.supportCancellation": "ユーザーが操作を中止できる同期アクションの実行時に通知が表示されるかどうかを制御します。",
- "config.terminalAuthentication": "統合ターミナルで生成される Git プロセスの認証ハンドラーとして VS Code を有効にするかどうかを制御します。注意: この設定の変更を反映させるには、ターミナルを再起動する必要があります。",
- "config.terminalGitEditor": "統合ターミナルで生成される Git プロセスの Git エディターとして VS Code を有効にするかどうかを制御します。注意: この設定の変更を反映させるには、ターミナルを再起動する必要があります。",
- "config.timeline.date": "タイムライン ビューでアイテムに使用する日付を制御します。",
- "config.timeline.date.authored": "作成日を使用する",
- "config.timeline.date.committed": "コミットされた日付を使用する",
- "config.timeline.showAuthor": "タイムライン ビューにコミット作成者を表示するかどうかを制御します。",
- "config.timeline.showUncommitted": "コミットされていない変更をタイムライン ビューに表示するかどうかを制御します。",
- "config.untrackedChanges": "追跡対象外の変更の動作を制御します。",
- "config.untrackedChanges.hidden": "追跡対象外の変更は非表示になり、複数のアクションから除外されます。",
- "config.untrackedChanges.mixed": "追跡対象および追跡対象外のすべての変更は、一緒に表示され、均等に動作します。",
- "config.untrackedChanges.separate": "追跡されていない変更は、ソース管理ビューに個別に表示されます。それらは、複数のアクションからも除外されます。",
- "config.useCommitInputAsStashMessage": "コミット入力ボックスからのメッセージを既定の stash メッセージとして使用するかどうかを制御します。",
- "config.useEditorAsCommitInput": "コミット入力ボックスにメッセージが指定されていない場合に、コミット メッセージの作成にフル テキスト エディターを使用するかどうかを制御します。",
- "config.useForcePushWithLease": "force プッシュより安全な force-with-lease 方式を使用するかどうかを制御します。",
- "config.useIntegratedAskPass": "統合バージョンを使用するために GIT_ASKPASS を上書きするかどうかを制御します。",
- "config.verboseCommit": "「#git.useEditorAsCommitInput#」が有効になっている場合は、冗長出力を有効化してください。",
- "description": "Git SCM統合",
- "displayName": "Git",
- "submenu.branch": "ブランチ",
- "submenu.changes": "変更",
- "submenu.commit": "コミット",
- "submenu.commit.amend": "修正",
- "submenu.commit.signoff": "サインオフ",
- "submenu.explorer": "Git",
- "submenu.pullpush": "プル、プッシュ",
- "submenu.remotes": "リモート",
- "submenu.stash": "一時退避",
- "submenu.tags": "タグ",
- "view.workbench.cloneRepository": "リポジトリをローカルに複製できます。\r\n[リポジトリの複製](command:git.clone 'Git 拡張機能がアクティブ化されたらリポジトリを複製する')",
- "view.workbench.learnMore": "VS Code で Git とソース管理を使用する方法の詳細については、[ドキュメントをご覧ください](https://aka.ms/vscode-scm)。",
- "view.workbench.scm.disabled": "git 機能を使用する場合、[設定](command:workbench.action.openSettings?%5B%22git.enabled%22%5D)で git を有効にしてください。\r\nGit とソース コントロールを VS Code で使用する方法の詳細については、[ドキュメントをご覧ください](https://aka.ms/vscode-scm)。",
- "view.workbench.scm.empty": "Git 機能を使用するために、Git リポジトリを含むフォルダーを開くか、URL からクローンを作成することができます。\r\n[フォルダーを開く](command:vscode.openFolder)\r\n[リポジトリのクローン](command:git.clone)\r\nVS Code で Git とソース管理を使用する方法の詳細については、[ドキュメントをご覧ください](https://aka.ms/vscode-scm)。",
- "view.workbench.scm.emptyWorkspace": "現在開いているワークスペースには、Git リポジトリを含むフォルダーがありません。\r\n[ワークスペースにフォルダーを追加します](command:workbench.action.addRootFolder)\r\nVS Code で Git とソース管理を使用する方法の詳細については、[ドキュメントをご覧ください](https://aka.ms/vscode-scm)。",
- "view.workbench.scm.folder": "現在開いているフォルダーには Git リポジトリがありません。Git を利用したソース管理機能を有効にするリポジトリを初期化できます。\r\n[リポジトリを初期化する](command:git.init?%5Btrue%5D)\r\nVS Code で Git とソース管理を使用する方法の詳細については、[ドキュメントをご覧ください](https://aka.ms/vscode-scm)。",
- "view.workbench.scm.missing": "一般的なソース管理システムである Git をインストールして、コードの変更を追跡し、他のユーザーと共同作業を行います。詳細については、[Git ガイド](https://aka.ms/vscode-scm) を参照してください。",
- "view.workbench.scm.missing.linux": "ソース管理は、インストールされている Git に依存しています。\r\n[Linux 用 Git のダウンロード](https://git-scm.com/download/linux) \r\nインストール後、[再読み込み](command:workbench.action.reloadWindow) (または [トラブルシューティング](command:git.showOutput)) してください。追加のソース管理プロバイダーを [Marketplace から] インストールできます(command:workbench.extensions.search?%22%40category%3A%5C%22scm%20providers%5C%22%22)。",
- "view.workbench.scm.missing.mac": "[macOS 用 Git のダウンロード](https://git-scm.com/download/mac) \r\nインストール後、[再読み込み](command:workbench.action.reloadWindow) (または [トラブルシューティング](command:git.showOutput)) してください。追加のソース管理プロバイダーを [Marketplace から] インストールできます (command:workbench.extensions.search?%22%40category%3A%5C%22scm%20providers%5C%22%22)。",
- "view.workbench.scm.missing.windows": "[Windows 用 Git のダウンロード](https://git-scm.com/download/win) \r\nインストール後、[再読み込み](command:workbench.action.reloadWindow) (または [トラブルシューティング](command:git.showOutput)) してください。追加のソース管理プロバイダーを [Marketplace から] インストールできます (command:workbench.extensions.search?%22%40category%3A%5C%22scm%20providers%5C%22%22)。",
- "view.workbench.scm.workspace": "現在開いているワークスペースには、Git リポジトリを含むフォルダーはありません。フォルダーにあるリポジトリを初期化して、Git を利用したソース管理機能を有効にすることができます。\r\n[リポジトリの初期化](command:git.init)\r\nVS Code で Git とソース管理を使用する方法の詳細については、[ドキュメントをご覧ください](https://aka.ms/vscode-scm)。"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-ja/translations/extensions/github-authentication.i18n.json b/i18n/vscode-language-pack-ja/translations/extensions/github-authentication.i18n.json
deleted file mode 100644
index 083a19fbc1..0000000000
--- a/i18n/vscode-language-pack-ja/translations/extensions/github-authentication.i18n.json
+++ /dev/null
@@ -1,27 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "dist/githubServer": {
- "code.detail": "認証を完了するには、GitHub に移動し、上記のワンタイム コードを貼り付けます。",
- "code.title": "コード: {0}",
- "no": "いいえ",
- "otherReasonMessage": "GitHub を使用するためのこの拡張機能の承認がまだ完了していません。引き続き試しますか?",
- "progress": "新しいタブで [{0}]({0}) を開き、ワンタイム コードを貼り付けます: {1}",
- "signingIn": "github.com にサインインしています...",
- "signingInAnotherWay": "github.com にサインインしています...",
- "userCancelledMessage": "ログインに問題がありますか? 別の方法を試しますか?",
- "yes": "はい"
- },
- "package": {
- "description": "GitHub 認証プロバイダー",
- "displayName": "GitHub 認証"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-ja/translations/extensions/github-browser.i18n.json b/i18n/vscode-language-pack-ja/translations/extensions/github-browser.i18n.json
deleted file mode 100644
index 69ba0225e6..0000000000
--- a/i18n/vscode-language-pack-ja/translations/extensions/github-browser.i18n.json
+++ /dev/null
@@ -1,19 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "package": {
- "displayName": "GitHub ブラウザー",
- "description": "GitHub リポジトリをリモートから参照します"
- },
- "dist/scm": {
- "no changes": "コミットする必要のある変更はありません。"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-ja/translations/extensions/github.i18n.json b/i18n/vscode-language-pack-ja/translations/extensions/github.i18n.json
deleted file mode 100644
index c388e73a4a..0000000000
--- a/i18n/vscode-language-pack-ja/translations/extensions/github.i18n.json
+++ /dev/null
@@ -1,46 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "dist/publish": {
- "ignore": "どのファイルをリポジトリに含めるかを選択します。",
- "openingithub": "GitHub 上で開く",
- "pick folder": "GitHub に発行するフォルダーを選択します",
- "publishing_done": "GitHub に '{0}' リポジトリが正常に発行されました。",
- "publishing_firstcommit": "最初のコミットを作成しています",
- "publishing_private": "プライベート GitHub リポジトリへ発行しています",
- "publishing_public": "パブリック GitHub リポジトリへ発行しています",
- "publishing_uploading": "ファイルをアップロードしています"
- },
- "dist/pushErrorHandler": {
- "create a fork": "フォークの作成",
- "create fork": "GitHub フォークの作成",
- "createghpr": "GitHub pull request を作成しています...",
- "createpr": "PR の作成",
- "donepr": "PR '{0}/{1}#{2}' が GitHub で正常に作成されました。",
- "fork": "GitHub で '{0}/{1}' にプッシュするためのアクセス許可がありません。代わりに、フォークを作成してそれにプッシュしますか?",
- "forking": "'{0}/{1}' をフォークしています...",
- "forking_done": "フォーク '{0}' が GitHub で正常に作成されました。",
- "forking_pushing": "変更をプッシュしています...",
- "no": "いいえ",
- "no pr template": "テンプレートなし",
- "openingithub": "GitHub 上で開く",
- "openpr": "PR を開く",
- "select pr template": "pull request テンプレートを選択する"
- },
- "package": {
- "config.gitAuthentication": "VS Code 内で Git コマンドの自動 GitHub 認証を有効にするかどうかを制御します。",
- "config.gitProtocol": "GitHub リポジトリの複製に使用するプロトコルを制御します",
- "description": "VS Code 用 GitHub 機能",
- "displayName": "GitHub",
- "welcome.publishFolder": "このフォルダーを GitHub リポジトリに直接公開することもできます。公開後、Git と GitHub を利用したソース管理機能にアクセスできるようになります。\r\n[$(github) GitHub に公開](command:github.publish)",
- "welcome.publishWorkspaceFolder": "ワークスペース フォルダーを GitHub リポジトリに直接公開することもできます。公開後、Git と GitHub を利用したソース管理機能にアクセスできるようになります。\r\n[$(github) GitHub に公開](command:github.publish)"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-ja/translations/extensions/go.i18n.json b/i18n/vscode-language-pack-ja/translations/extensions/go.i18n.json
deleted file mode 100644
index b4b014e33f..0000000000
--- a/i18n/vscode-language-pack-ja/translations/extensions/go.i18n.json
+++ /dev/null
@@ -1,16 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "package": {
- "description": "Go ファイル内で構文ハイライト、かっこ一致を提供します。",
- "displayName": "Go 言語の基礎"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-ja/translations/extensions/groovy.i18n.json b/i18n/vscode-language-pack-ja/translations/extensions/groovy.i18n.json
deleted file mode 100644
index 98bce82fe7..0000000000
--- a/i18n/vscode-language-pack-ja/translations/extensions/groovy.i18n.json
+++ /dev/null
@@ -1,16 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "package": {
- "description": "Groovy ファイル内でスニペット、構文ハイライト、かっこ一致を提供します。",
- "displayName": "Groovy の基本言語サポート"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-ja/translations/extensions/grunt.i18n.json b/i18n/vscode-language-pack-ja/translations/extensions/grunt.i18n.json
deleted file mode 100644
index a7fe65d45a..0000000000
--- a/i18n/vscode-language-pack-ja/translations/extensions/grunt.i18n.json
+++ /dev/null
@@ -1,25 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "dist/main": {
- "execFailed": "フォルダー {0} でGrunt のエラーによる失敗を自動検出: {1}",
- "gruntShowOutput": "出力に移動",
- "gruntTaskDetectError": "Grunt タスクの検出で問題が発生しました。詳しくは、出力をご覧ください。"
- },
- "package": {
- "config.grunt.autoDetect": "Grunt タスク検出の有効化を制御します。Grunt タスク検出を行うと、開いているワークスペース内のファイルが実行される可能性があります。",
- "description": "VS Code に Grunt 機能を追加する拡張機能。",
- "displayName": "VS Code の Grunt サポート",
- "grunt.taskDefinition.args.description": "grunt タスクに渡すコマンド ライン引数",
- "grunt.taskDefinition.file.description": "タスクを提供する Grunt ファイル。省略できます。",
- "grunt.taskDefinition.type.description": "カスタマイズする Grunt タスク。"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-ja/translations/extensions/gulp.i18n.json b/i18n/vscode-language-pack-ja/translations/extensions/gulp.i18n.json
deleted file mode 100644
index 0f503c2f0c..0000000000
--- a/i18n/vscode-language-pack-ja/translations/extensions/gulp.i18n.json
+++ /dev/null
@@ -1,24 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "dist/main": {
- "execFailed": "フォルダー {0} でgulp のエラーによる失敗を自動検出: {1}",
- "gulpShowOutput": "出力に移動",
- "gulpTaskDetectError": "gulp タスクを検出するときに問題が発生しました。詳細については、出力をご覧ください。"
- },
- "package": {
- "config.gulp.autoDetect": "Gulp タスク検出の有効化を制御します。Gulp タスク検出を行うと、開いているワークスペース内のファイルが実行される可能性があります。",
- "description": "VS Code に Gulp 機能を追加する拡張機能。",
- "displayName": "VSCode の Gulp サポート",
- "gulp.taskDefinition.file.description": "タスクを提供する Gulp ファイル。省略できます。",
- "gulp.taskDefinition.type.description": "カスタマイズする Gulp タスク。"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-ja/translations/extensions/handlebars.i18n.json b/i18n/vscode-language-pack-ja/translations/extensions/handlebars.i18n.json
deleted file mode 100644
index b258b3efd3..0000000000
--- a/i18n/vscode-language-pack-ja/translations/extensions/handlebars.i18n.json
+++ /dev/null
@@ -1,16 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "package": {
- "description": "Handlebars ファイル内で構文ハイライト、かっこ一致を提供します。",
- "displayName": "Handlebars の基本言語サポート"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-ja/translations/extensions/hlsl.i18n.json b/i18n/vscode-language-pack-ja/translations/extensions/hlsl.i18n.json
deleted file mode 100644
index b4fced2cb8..0000000000
--- a/i18n/vscode-language-pack-ja/translations/extensions/hlsl.i18n.json
+++ /dev/null
@@ -1,16 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "package": {
- "description": "HLSL ファイル内で構文ハイライト、かっこ一致を提供します。",
- "displayName": "HLSL の基本言語サポート"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-ja/translations/extensions/html-language-features.i18n.json b/i18n/vscode-language-pack-ja/translations/extensions/html-language-features.i18n.json
deleted file mode 100644
index 6d22f3e9f6..0000000000
--- a/i18n/vscode-language-pack-ja/translations/extensions/html-language-features.i18n.json
+++ /dev/null
@@ -1,59 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "client\\dist\\node/htmlClient": {
- "configureButton": "構成",
- "folding.end": "折りたたみ領域の終了",
- "folding.html": "簡単な HTML5 の出発点",
- "folding.start": "折りたたみ領域の開始",
- "htmlserver.name": "HTML 言語サーバー",
- "linkedEditingQuestion": "VS Code に、自動名前変更タグの組み込みサポートが追加されました。これを有効にしますか?"
- },
- "package": {
- "description": "HTML と Handlebar ファイルに豊富な言語サポートを提供します",
- "displayName": "HTML 言語機能",
- "html.autoClosingTags": "HTML タグの自動クローズを有効/無効にします。",
- "html.autoCreateQuotes": "HTML 属性割り当ての引用符の自動作成を有効または無効にします。引用符の型は、'#html.completion.attributeDefaultValue#' で構成できます。",
- "html.completion.attributeDefaultValue": "完了が承認された場合の属性の既定値を制御します。",
- "html.completion.attributeDefaultValue.doublequotes": "属性値が \"\" に設定されています。",
- "html.completion.attributeDefaultValue.empty": "属性値が設定されていません。",
- "html.completion.attributeDefaultValue.singlequotes": "属性値が '' に設定されています。",
- "html.customData.desc": "[カスタム データ形式](https://github.com/microsoft/vscode-html-languageservice/blob/master/docs/customData.md) に従って JSON ファイルを指す相対ファイル パスの一覧。\r\n\r\nVS Code では、起動時にカスタム データを読み込んで、ユーザーが JSON ファイルに指定するカスタム HTML タグ、属性、属性値の HTML サポートを強化します。\r\n\r\nファイル パスはワークスペースを基準とした相対パスであり、ワークスペース フォルダーの設定のみが考慮されます。",
- "html.format.contentUnformatted.desc": "コンテンツを再フォーマットしてはならないタグの、コンマ区切りの一覧。`null` は、既定値の `pre` タグを表します。",
- "html.format.enable.desc": "既定の HTML フォーマッタを有効/無効にします。",
- "html.format.extraLiners.desc": "直前に改行を 1 つ入れるタグの、コンマで区切られたリストです。`null` は、既定値の `head, body, /html` を表します。",
- "html.format.indentHandlebars.desc": "{{#foo}}` から `{{/foo}}` をフォーマットしてインデントします。",
- "html.format.indentInnerHtml.desc": "'' および '' セクションをインデントします。",
- "html.format.maxPreserveNewLines.desc": "1 つのチャンク内に保持できる改行の最大数。無制限にするには、`null` を使います。",
- "html.format.preserveNewLines.desc": "要素の前にある既存の改行を保持するかどうかを制御します。要素の前でのみ機能し、タグの内側やテキストに対しては機能しません。",
- "html.format.templating.desc": "Django、ERB、Handlebars、PHP テンプレート言語のタグを優先します。",
- "html.format.unformatted.desc": "再フォーマットしてはならないタグの、コンマ区切りの一覧。`null` の場合、既定で https://www.w3.org/TR/html5/dom.html#phrasing-content にリストされているすべてのタグになります。",
- "html.format.unformattedContentDelimiter.desc": "テキスト コンテンツをこの文字列の間にまとめます。",
- "html.format.wrapAttributes.alignedmultiple": "行の長さが超過したときに、属性を垂直方向に整列させます。",
- "html.format.wrapAttributes.auto": "行の長さが超過した場合のみ属性を折り返します。",
- "html.format.wrapAttributes.desc": "属性を折り返します。",
- "html.format.wrapAttributes.force": "先頭以外の各属性を折り返します。",
- "html.format.wrapAttributes.forcealign": "先頭以外の各属性を折り返して位置を合わせます。",
- "html.format.wrapAttributes.forcemultiline": "各属性を折り返します。",
- "html.format.wrapAttributes.preserve": "属性の折り返しを保持します。",
- "html.format.wrapAttributes.preservealigned": "属性の折り返しを保持しますが、整列させます。",
- "html.format.wrapAttributesIndentSize.desc": "ラップされた属性を N 文字後にインデントします。既定のインデント サイズを使用するには、'null' を使用します。'#html.format.wrapAttributes#' が 'aligned' に設定されている場合は無視されます。",
- "html.format.wrapLineLength.desc": "1 行あたりの最大文字数 (0 = 無効にする)。",
- "html.hover.documentation": "ホバー時にタグと属性のドキュメントを表示します。",
- "html.hover.references": "ホバー時に MDN への参照を表示します。",
- "html.mirrorCursorOnMatchingTag": "対応する HTML タグでカーソルのミラーリングを有効または無効にします。",
- "html.mirrorCursorOnMatchingTagDeprecationMessage": "`editor.linkedEditing` のために非推奨",
- "html.suggest.html5.desc": "ビルトイン HTML 言語サポートが HTML5 のタグ、プロパティ、および値を候補表示するかどうかを制御します。",
- "html.trace.server.desc": "VS Code と HTML 言語サーバー間の通信をトレースします。",
- "html.validate.scripts": "ビルトイン HTML 言語サポートが埋め込みスクリプトを検証するかどうかを制御します。",
- "html.validate.styles": "ビルトイン HTML 言語サポートが埋め込みスタイルを検証するかどうかを制御します。"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-ja/translations/extensions/html.i18n.json b/i18n/vscode-language-pack-ja/translations/extensions/html.i18n.json
deleted file mode 100644
index cacd37f9b9..0000000000
--- a/i18n/vscode-language-pack-ja/translations/extensions/html.i18n.json
+++ /dev/null
@@ -1,16 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "package": {
- "description": "HTML ファイルで、構文の強調表示、かっこの対応付け、スニペットを提供します。",
- "displayName": "HTML の基本言語サポート"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-ja/translations/extensions/image-preview.i18n.json b/i18n/vscode-language-pack-ja/translations/extensions/image-preview.i18n.json
deleted file mode 100644
index 862084bbd4..0000000000
--- a/i18n/vscode-language-pack-ja/translations/extensions/image-preview.i18n.json
+++ /dev/null
@@ -1,39 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "dist/binarySizeStatusBarEntry": {
- "sizeB": "{0}B",
- "sizeGB": "{0}GB",
- "sizeKB": "{0}KB",
- "sizeMB": "{0}MB",
- "sizeStatusBar.name": "イメージ バイナリ サイズ",
- "sizeTB": "{0}TB"
- },
- "dist/preview": {
- "preview.imageLoadError": "イメージの読み込み中にエラーが発生しました。",
- "preview.imageLoadErrorLink": "VS Code の標準テキストまたはバイナリ エディターを使用してファイルを開きますか?"
- },
- "dist/sizeStatusBarEntry": {
- "sizeStatusBar.name": "イメージ サイズ"
- },
- "dist/zoomStatusBarEntry": {
- "zoomStatusBar.name": "イメージのズーム",
- "zoomStatusBar.placeholder": "ズーム レベルの選択",
- "zoomStatusBar.wholeImageLabel": "画像全体"
- },
- "package": {
- "command.zoomIn": "拡大",
- "command.zoomOut": "縮小",
- "customEditors.displayName": "イメージ プレビュー",
- "description": "VS Code の組み込みイメージ プレビューを提供します",
- "displayName": "画像プレビュー"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-ja/translations/extensions/ini.i18n.json b/i18n/vscode-language-pack-ja/translations/extensions/ini.i18n.json
deleted file mode 100644
index 948d17da3d..0000000000
--- a/i18n/vscode-language-pack-ja/translations/extensions/ini.i18n.json
+++ /dev/null
@@ -1,16 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "package": {
- "description": "Ini ファイル内で構文ハイライト、かっこ一致を提供します。",
- "displayName": "Ini の基本言語サポート"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-ja/translations/extensions/ipynb.i18n.json b/i18n/vscode-language-pack-ja/translations/extensions/ipynb.i18n.json
deleted file mode 100644
index 87e06a3d63..0000000000
--- a/i18n/vscode-language-pack-ja/translations/extensions/ipynb.i18n.json
+++ /dev/null
@@ -1,16 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "package": {
- "description": "Jupyter の .ipynb ノートブック ファイルを開いて読み取るための基本サポートを提供します",
- "displayName": ".ipynb のサポート"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-ja/translations/extensions/jake.i18n.json b/i18n/vscode-language-pack-ja/translations/extensions/jake.i18n.json
deleted file mode 100644
index 708bb6c52f..0000000000
--- a/i18n/vscode-language-pack-ja/translations/extensions/jake.i18n.json
+++ /dev/null
@@ -1,24 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "dist/main": {
- "execFailed": "フォルダー {0} でJake のエラーによる失敗を自動検出: {1}",
- "jakeShowOutput": "出力に移動",
- "jakeTaskDetectError": "jake タスクを検索するときに問題が発生しました。詳細は、出力をご覧ください。"
- },
- "package": {
- "config.jake.autoDetect": "Jake タスク検出の有効化を制御します。Jake タスク検出を行うと、開いているワークスペース内のファイルが実行される可能性があります。",
- "description": "VS Code に Jake 機能を追加する拡張機能。",
- "displayName": "VS Code の Jake サポート",
- "jake.taskDefinition.file.description": "タスクを提供する Jake ファイル。省略できます。",
- "jake.taskDefinition.type.description": "カスタマイズする Jake タスク。"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-ja/translations/extensions/java.i18n.json b/i18n/vscode-language-pack-ja/translations/extensions/java.i18n.json
deleted file mode 100644
index 3a97783642..0000000000
--- a/i18n/vscode-language-pack-ja/translations/extensions/java.i18n.json
+++ /dev/null
@@ -1,16 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "package": {
- "description": "Java ファイル内でスニペット、構文ハイライト、かっこ一致、折りたたみを提供します。",
- "displayName": "Java の基本言語サポート"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-ja/translations/extensions/javascript.i18n.json b/i18n/vscode-language-pack-ja/translations/extensions/javascript.i18n.json
deleted file mode 100644
index 8dcd23dfe4..0000000000
--- a/i18n/vscode-language-pack-ja/translations/extensions/javascript.i18n.json
+++ /dev/null
@@ -1,16 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "package": {
- "description": "JavaScript ファイル内でスニペット、構文ハイライト、かっこ一致、折りたたみを提供します。",
- "displayName": "JavaScript の基本言語サポート"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-ja/translations/extensions/json-language-features.i18n.json b/i18n/vscode-language-pack-ja/translations/extensions/json-language-features.i18n.json
deleted file mode 100644
index f115e46ac1..0000000000
--- a/i18n/vscode-language-pack-ja/translations/extensions/json-language-features.i18n.json
+++ /dev/null
@@ -1,73 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "client\\dist\\node/jsonClient": {
- "json.clearCache.completed": "JSON スキーマ キャッシュがクリアされました。",
- "json.resolveError": "JSON: スキーマ解決エラー",
- "json.schemaResolutionDisabledMessage": "スキーマのダウンロードは無効になっています。構成するには、クリックしてください。",
- "json.schemaResolutionErrorMessage": "スキーマを解決できません。クリックして、もう一度お試しください。",
- "jsonserver.name": "JSON 言語サーバー",
- "schemaDownloadDisabled": "スキーマのダウンロードは、設定 '{0}' によって無効になっています",
- "untitled.schema": "{0} を読み込めません"
- },
- "client\\dist\\node/languageStatus": {
- "documentColorsStatusItem.name": "JSON のカラー シンボルの状態",
- "documentSymbolsStatusItem.name": "JSON のアウトラインの状態",
- "foldingRangesStatusItem.name": "JSON の折りたたみの状態",
- "openExtension": "拡張機能を開く",
- "openSettings": "設定を開く",
- "pending.detail": "JSON 情報を読み込んでいます",
- "schema.noSchema": "このファイルにスキーマが構成されていません",
- "schema.showdocs": "JSON スキーマの構成に関する詳細情報...",
- "schemaFromFolderSettings": "ワークスペース設定で構成済み",
- "schemaFromUserSettings": "ユーザー設定で構成済み",
- "schemaFromextension": "拡張機能で構成済み: {0}",
- "schemaPicker.title": "{0}に使用される JSON スキーマ",
- "status.button.configure": "構成",
- "status.error": "使用されたスキーマを計算できません",
- "status.limitedDocumentColors.details": "{0} のカラー デコレーターのみが表示されています",
- "status.limitedDocumentColors.short": "カラー シンボルの制限あり",
- "status.limitedDocumentSymbols.details": "{0} のドキュメント シンボルのみが表示されています",
- "status.limitedDocumentSymbols.short": "アウトラインの制限あり",
- "status.limitedFoldingRanges.details": "{0} の折りたたみ範囲のみが表示されています",
- "status.limitedFoldingRanges.short": "折りたたみ範囲の制限あり",
- "status.multipleSchema": "複数の JSON スキーマが構成されています",
- "status.noSchema": "JSON スキーマが構成されていません",
- "status.noSchema.short": "スキーマ検証なし",
- "status.notJSON": "JSON エディターではありません",
- "status.openSchemasLink": "スキーマの表示",
- "status.singleSchema": "JSON スキーマが構成されています",
- "status.withSchema.short": "スキーマ検証済み",
- "status.withSchemas.short": "スキーマ検証済み",
- "statusItem.name": "JSON 検証状態"
- },
- "package": {
- "description": "JSON ファイルに豊富な言語サポートを提供。",
- "displayName": "JSON 言語機能",
- "json.clickToRetry": "クリックして、もう一度お試しください。",
- "json.colorDecorators.enable.deprecationMessage": "設定 `json.colorDecorators.enable` は使用されなくなりました。`editor.colorDecorators` を使用してください。",
- "json.colorDecorators.enable.desc": "カラー デコレーターを有効または無効にします",
- "json.command.clearCache": "スキーマ キャッシュのクリア",
- "json.enableSchemaDownload.desc": "有効にすると、JSON スキーマを http および https の場所からフェッチできるようになります。",
- "json.format.enable.desc": "既定の JSON フォーマッタを有効/無効にします",
- "json.format.keepLines.desc": "書式設定時に既存の改行をすべて保持します。",
- "json.maxItemsComputed.desc": "計算されたアウトライン記号と折りたたまれた領域の最大数 (パフォーマンス上の理由から制限されています)。",
- "json.maxItemsExceededInformation.desc": "アウトライン記号と折りたたみ領域の最大値を超えたときに通知を表示します。",
- "json.schemaResolutionErrorMessage": "スキーマを解決できません。",
- "json.schemas.desc": "スキーマを現在のプロジェクトの JSON ファイルに関連付けます。",
- "json.schemas.fileMatch.desc": "JSON ファイルをスキーマに解決するときに照合するファイル パターンの配列。'*' をワイルドカードとして使用できます。除外パターンを定義して '!' で始めることもできます。一致するパターンが少なくとも 1 つあり、最後に一致するパターンが除外パターンでない場合、そのファイルは一致します。",
- "json.schemas.fileMatch.item.desc": "JSON ファイルをスキーマに解決するときに突き合わせる、'*' を含められるファイル パターンです。",
- "json.schemas.schema.desc": "指定された URL のスキーマ定義です。スキーマは、スキーマ URL へのアクセスを避けるためにのみ指定する必要があります。",
- "json.schemas.url.desc": "スキーマへの URL または現在のディレクトリ内のスキーマへの相対パス",
- "json.tracing.desc": "VS Code と JSON 言語サーバー間の通信をトレースします。",
- "json.validate.enable.desc": "JSON 検証を有効または無効にします。"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-ja/translations/extensions/json.i18n.json b/i18n/vscode-language-pack-ja/translations/extensions/json.i18n.json
deleted file mode 100644
index 48e85179dc..0000000000
--- a/i18n/vscode-language-pack-ja/translations/extensions/json.i18n.json
+++ /dev/null
@@ -1,16 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "package": {
- "description": "JSON ファイルで、構文の強調表示とかっこの対応付けを提供します。",
- "displayName": "JSON の基本言語サポート"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-ja/translations/extensions/less.i18n.json b/i18n/vscode-language-pack-ja/translations/extensions/less.i18n.json
deleted file mode 100644
index 03bb901cae..0000000000
--- a/i18n/vscode-language-pack-ja/translations/extensions/less.i18n.json
+++ /dev/null
@@ -1,16 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "package": {
- "description": "Less ファイルで構文ハイライト、かっこ一致、折りたたみを提供します。",
- "displayName": "Less の基本言語サポート"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-ja/translations/extensions/log.i18n.json b/i18n/vscode-language-pack-ja/translations/extensions/log.i18n.json
deleted file mode 100644
index ff1c88d0f3..0000000000
--- a/i18n/vscode-language-pack-ja/translations/extensions/log.i18n.json
+++ /dev/null
@@ -1,16 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "package": {
- "description": ".log 拡張子を持つファイルの構文ハイライトを提供します。",
- "displayName": "ログ"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-ja/translations/extensions/lua.i18n.json b/i18n/vscode-language-pack-ja/translations/extensions/lua.i18n.json
deleted file mode 100644
index 744d3fb79a..0000000000
--- a/i18n/vscode-language-pack-ja/translations/extensions/lua.i18n.json
+++ /dev/null
@@ -1,16 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "package": {
- "description": "Lua ファイル内で構文ハイライト、かっこ一致を提供します。",
- "displayName": "Lua の基本言語サポート"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-ja/translations/extensions/make.i18n.json b/i18n/vscode-language-pack-ja/translations/extensions/make.i18n.json
deleted file mode 100644
index 161975eeaf..0000000000
--- a/i18n/vscode-language-pack-ja/translations/extensions/make.i18n.json
+++ /dev/null
@@ -1,16 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "package": {
- "description": "Make ファイル内で構文ハイライト、かっこ一致を提供します。",
- "displayName": "Make の基本言語サポート"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-ja/translations/extensions/markdown-basics.i18n.json b/i18n/vscode-language-pack-ja/translations/extensions/markdown-basics.i18n.json
deleted file mode 100644
index 4a44865a91..0000000000
--- a/i18n/vscode-language-pack-ja/translations/extensions/markdown-basics.i18n.json
+++ /dev/null
@@ -1,16 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "package": {
- "description": "Markdown のスニペット、構文ハイライトを提供します。",
- "displayName": "Markdown の基本言語サポート"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-ja/translations/extensions/markdown-language-features.i18n.json b/i18n/vscode-language-pack-ja/translations/extensions/markdown-language-features.i18n.json
deleted file mode 100644
index fdd0a1ce4c..0000000000
--- a/i18n/vscode-language-pack-ja/translations/extensions/markdown-language-features.i18n.json
+++ /dev/null
@@ -1,90 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "dist/client": {
- "markdownServer.name": "Markdown 言語サーバー"
- },
- "dist/languageFeatures/diagnostics": {
- "ignoreLinksQuickFix.title": "リンクの検証から '{0}' を除外します。"
- },
- "dist/languageFeatures/fileReferences": {
- "error.noResource": "ファイル参照の検索に失敗しました。リソースが指定されていません。",
- "progress.title": "ファイル参照の検索中"
- },
- "dist/preview/documentRenderer": {
- "preview.notFound": "{0} が見つかりません",
- "preview.securityMessage.label": "セキュリティが無効なコンテンツの警告",
- "preview.securityMessage.text": "このドキュメントで一部のコンテンツが無効になっています",
- "preview.securityMessage.title": "安全でない可能性があるか保護されていないコンテンツは、Markdown プレビューで無効化されています。保護されていないコンテンツを許可するかスクリプトを有効にするには、Markdown プレビューのセキュリティ設定を変更してください"
- },
- "dist/preview/preview": {
- "lockedPreviewTitle": "[プレビュー] {0}",
- "onPreviewStyleLoadError": "'markdown.styles' を読み込むことができません: {0}",
- "preview.clickOpenFailed": "{0} を開くことができません。",
- "previewTitle": "プレビュー {0}"
- },
- "dist/preview/security": {
- "disable.description": "すべてのコンテンツとスクリプトの実行を許可します。推奨されません。",
- "disable.title": "無効にする",
- "disableSecurityWarning.title": "このワークスペースでプレビューのセキュリティ警告を有効にする",
- "enableSecurityWarning.title": "このワークスペースでプレビューのセキュリティ警告を有効にする",
- "insecureContent.description": "HTTP を介したコンテンツの読み込みを有効にする",
- "insecureContent.title": "セキュリティで保護されていないコンテンツを許可する",
- "insecureLocalContent.description": "localhost から http で提供されるコンテンツの読み込みを有効にします",
- "insecureLocalContent.title": "安全でないローカル コンテンツを許可する",
- "moreInfo.title": "詳細情報",
- "preview.showPreviewSecuritySelector.title": "ワークスペースのマークダウン プレビューに関するセキュリティ設定を選択",
- "strict.description": "セキュリティで保護されたコンテンツのみを読み込む",
- "strict.title": "高レベル",
- "toggleSecurityWarning.description": "コンテンツのセキュリティ レベルに影響しません"
- },
- "package": {
- "configuration.markdown.editor.drop.enabled": "Enable/disable dropping into the markdown editor to insert shift. Requires enabling `#editor.dropIntoEditor.enabled#`.",
- "configuration.markdown.editor.pasteLinks.enabled": "Markdown エディターへのファイルの貼り付け機能を有効または無効にすると、Markdown リンクが挿入されます。'#editor.experimental.pasteActions.enabled#' を有効にする必要があります。",
- "configuration.markdown.experimental.validate.enabled.description": "Markdown ファイル内のすべてのエラー報告を有効または無効にします。",
- "configuration.markdown.experimental.validate.fileLinks.enabled.description": "Markdown ファイル内の他のファイルへのリンク (例: `[link](/path/to/file.md)`) を検証します。これにより、ターゲット ファイルが存在するかどうかが確認されます。`#markdown.experimental.validate.enabled#` を有効にする必要があります。",
- "configuration.markdown.experimental.validate.fileLinks.markdownFragmentLinks.description": "マークダウン ファイルで、他のファイルのヘッダーへのリンクのフラグメント部分を検証します。例: '[link](/path/to/file.md#header)'。既定では、'#markdown.experimental.validate.fragmentLinks.enabled#' から設定値を継承します。",
- "configuration.markdown.experimental.validate.fragmentLinks.enabled.description": "現在のマークダウン ファイルで、ヘッダーへのフラグメント リンクを検証します (例: `[link](#header)`)。`#markdown.experimental.validate.enabled#` を有効にする必要があります。",
- "configuration.markdown.experimental.validate.ignoreLinks.description": "検証しないリンクを校正します。たとえば、`/about` を指定すると、リンク `[about](/about)` が検証されません。glob `/assets/**/*.svg` を指定すると、`assets` ディレクトリ下の `.svg` ファイルへのリンクの検証をスキップできます。",
- "configuration.markdown.experimental.validate.referenceLinks.enabled.description": "Markdown ファイルの参照リンクを検証します (例: `[link][ref]`)。 `#markdown.experimental.validate.enabled#` を有効にする必要があります。",
- "configuration.markdown.links.openLocation.beside": "アクティブなエディターの横にあるリンクを開きます。",
- "configuration.markdown.links.openLocation.currentGroup": "アクティブなエディター グループ内にリンクを開きます。",
- "configuration.markdown.links.openLocation.description": "マークダウン ファイル内のリンクを開く場所を制御します。",
- "configuration.markdown.preview.openMarkdownLinks.description": "Markdown プレビューで他のマークダウン ファイルへのリンクを開く方法を制御します。",
- "configuration.markdown.preview.openMarkdownLinks.inEditor": "エディターでリンクを開こうとします。",
- "configuration.markdown.preview.openMarkdownLinks.inPreview": "Markdown プレビューでリンクを開こうとします。",
- "configuration.markdown.suggest.paths.enabled.description": "Markdown リンクのパス候補を有効または無効にします",
- "description": "Markdown に豊富な言語サポートを提供。",
- "displayName": "Markdown 言語機能",
- "markdown.findAllFileReferences": "ファイル参照の検索",
- "markdown.preview.breaks.desc": "Markdown プレビューで改行を表現する方法を設定します。'true' に設定すると、段落内の改行に対して が作成されます。",
- "markdown.preview.doubleClickToSwitchToEditor.desc": "Markdown プレビューでダブルクリックすると、エディターに切り替わります。",
- "markdown.preview.fontFamily.desc": "Markdown プレビューで使用されるフォント ファミリを制御します。",
- "markdown.preview.fontSize.desc": "Markdown プレビューで使用されるフォント サイズ (ピクセル単位) を制御します。",
- "markdown.preview.lineHeight.desc": "Markdown プレビューで使用される行の高さを制御します。この数値はフォント サイズを基準とします。",
- "markdown.preview.linkify": "Markdown プレビューで URL 形式のテキストからリンクへの変換を有効または無効にします。",
- "markdown.preview.markEditorSelection.desc": "Markdown プレビューに、エディターの現在の選択範囲を示すマークが付きます。",
- "markdown.preview.refresh.title": "プレビューを更新",
- "markdown.preview.scrollEditorWithPreview.desc": "Markdown プレビューをスクロールすると、エディターのビューが更新されます。",
- "markdown.preview.scrollPreviewWithEditor.desc": "Markdown エディターをスクロールすると、プレビューのビューが更新されます。",
- "markdown.preview.title": "プレビューを開く",
- "markdown.preview.toggleLock.title": "プレビュー ロックの切り替え",
- "markdown.preview.typographer": "Markdown プレビューで、特定の言語に依存しない置換と引用符の美化を有効または無効にします。",
- "markdown.previewSide.title": "プレビューを横に表示",
- "markdown.showLockedPreviewToSide.title": "ロックされたプレビューを横に表示",
- "markdown.showPreviewSecuritySelector.title": "プレビュー のセキュリティ設定を変更",
- "markdown.showSource.title": "ソースの表示",
- "markdown.styles.dec": "Markdown プレビューから使用する CSS スタイル シートへの URL またはローカル パスの一覧。相対パスは、エクスプローラーで開いているフォルダーを基準に解釈されます。開いているフォルダーがない場合は、Markdown ファイルの場所を基準にして解釈されます。すべての '\\' は '\\\\' として記述する必要があります。",
- "markdown.trace.extension.desc": "Markdown 拡張機能のデバッグ ログを有効にします。",
- "markdown.trace.server.desc": "VS Code と Markdown 言語サーバー間の通信をトレースします。",
- "workspaceTrust": "ワークスペースに構成されているスタイルを読み込むのに必要です。"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-ja/translations/extensions/markdown-math.i18n.json b/i18n/vscode-language-pack-ja/translations/extensions/markdown-math.i18n.json
deleted file mode 100644
index 91f870ec64..0000000000
--- a/i18n/vscode-language-pack-ja/translations/extensions/markdown-math.i18n.json
+++ /dev/null
@@ -1,17 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "package": {
- "config.markdown.math.enabled": "組み込みのマークダウン プレビューでの数式のレンダリングを有効/無効にします。",
- "description": "ノートブックのマークダウンに数式サポートを追加します。",
- "displayName": "Markdown 数式"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-ja/translations/extensions/markdown-notebook-math.i18n.json b/i18n/vscode-language-pack-ja/translations/extensions/markdown-notebook-math.i18n.json
deleted file mode 100644
index 5c23a7c94d..0000000000
--- a/i18n/vscode-language-pack-ja/translations/extensions/markdown-notebook-math.i18n.json
+++ /dev/null
@@ -1,16 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "package": {
- "displayName": "Markdown の Notebook の数式",
- "description": "Markdown に豊富な言語サポートを提供。"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-ja/translations/extensions/merge-conflict.i18n.json b/i18n/vscode-language-pack-ja/translations/extensions/merge-conflict.i18n.json
deleted file mode 100644
index a6e21536cf..0000000000
--- a/i18n/vscode-language-pack-ja/translations/extensions/merge-conflict.i18n.json
+++ /dev/null
@@ -1,35 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "package": {
- "command.accept.all-both": "両方をすべて取り込む",
- "command.accept.all-current": "現在の方をすべて取り込む",
- "command.accept.all-incoming": "入力側のすべてを取り込む",
- "command.accept.both": "両方を取り込む",
- "command.accept.current": "現在の方を取り込む",
- "command.accept.incoming": "入力側を取り込む",
- "command.accept.selection": "選択項目を取り込む",
- "command.category": "マージの競合",
- "command.compare": "現在の競合を比較",
- "command.next": "次の競合",
- "command.previous": "前の競合",
- "config.autoNavigateNextConflictEnabled": "マージ競合を解決した後で、次のマージの競合に自動的に移動するかどうか。",
- "config.codeLensEnabled": "エディター内のマージ競合ブロックのコード レンズを作成します。",
- "config.decoratorsEnabled": "エディター内のマージ競合ブロック用デコレータを作成します。",
- "config.diffViewPosition": "マージの競合の変更を比較するときに、差分ビューを開く場所を制御します。",
- "config.diffViewPosition.below": "現在のエディター グループの下にある差分ビューを開きます。",
- "config.diffViewPosition.beside": "現在のエディター グループの隣に差分ビューを開きます。",
- "config.diffViewPosition.current": "現在のエディター グループで差分ビューを開きます。",
- "config.title": "マージの競合",
- "description": "行内マージ競合のハイライト、コマンドを提供します。",
- "displayName": "マージの競合"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-ja/translations/extensions/microsoft-authentication.i18n.json b/i18n/vscode-language-pack-ja/translations/extensions/microsoft-authentication.i18n.json
deleted file mode 100644
index 7672f6be40..0000000000
--- a/i18n/vscode-language-pack-ja/translations/extensions/microsoft-authentication.i18n.json
+++ /dev/null
@@ -1,24 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "dist/AADHelper": {
- "pasteCodePlaceholder": "Paste authorization code here...",
- "pasteCodePrompt": "Provide the authorization code to complete the sign in flow.",
- "pasteCodeTitle": "Microsoft Authentication",
- "signOut": "保存された認証情報を読み取ることができなかったため、サインアウトされました。"
- },
- "package": {
- "description": "Microsoft 認証プロバイダー",
- "displayName": "Microsoft アカウント",
- "signIn": "サインイン",
- "signOut": "サインアウト"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-ja/translations/extensions/ms-vscode.github-browser.i18n.json b/i18n/vscode-language-pack-ja/translations/extensions/ms-vscode.github-browser.i18n.json
deleted file mode 100644
index ac6fdfbe30..0000000000
--- a/i18n/vscode-language-pack-ja/translations/extensions/ms-vscode.github-browser.i18n.json
+++ /dev/null
@@ -1,16 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "package": {
- "displayName": "GitHub ブラウザー",
- "description": "GitHub リポジトリをリモートから参照します"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-ja/translations/extensions/ms-vscode.js-debug.i18n.json b/i18n/vscode-language-pack-ja/translations/extensions/ms-vscode.js-debug.i18n.json
index 5a3b815f4e..b577e0e116 100644
--- a/i18n/vscode-language-pack-ja/translations/extensions/ms-vscode.js-debug.i18n.json
+++ b/i18n/vscode-language-pack-ja/translations/extensions/ms-vscode.js-debug.i18n.json
@@ -8,281 +8,14 @@
],
"version": "1.0.0",
"contents": {
- "/src/adapter/breakpoints/userDefinedBreakpoint": {
- "breakpoint.provisionalBreakpoint": "バインドされていないブレークポイント"
- },
- "/src/adapter/console/queryObjectsMessage": {
- "queryObject.couldNotQuery": "指定されたオブジェクトを照会できませんでした",
- "queryObject.errorPreview": "プレビューを生成できませんでした: {0}",
- "queryObject.invalidObject": "照会できるのはオブジェクトのみです"
- },
- "/src/adapter/console/textualMessage": {
- "console.assert": "アサーションの失敗"
- },
- "/src/adapter/customBreakpoints": {
- "breakpoint.animationFrameFired": "アニメーション フレームの発生",
- "breakpoint.cancelAnimationFrame": "アニメーション フレームの取り消し",
- "breakpoint.closeAudioContext": "AudioContext を閉じる",
- "breakpoint.createAudioContext": "AudioContext の作成",
- "breakpoint.createCanvasContext": "キャンバス コンテキストの作成",
- "breakpoint.cspViolation": "コンテンツ セキュリティ ポリシーによってスクリプトがブロックされた",
- "breakpoint.cspViolationNamed": "CSP 違反 \"{0}\"",
- "breakpoint.cspViolationNamedDetails": "コンテンツ セキュリティ ポリシー違反のインストルメンテーション ブレークポイントで一時停止しました (ディレクティブ \"{0}\")",
- "breakpoint.eventListenerNamed": "\"{1}\" でトリガーされたイベント リスナー ブレークポイント \"{0}\" で一時停止",
- "breakpoint.instrumentationNamed": "インストルメンテーション ブレークポイント \"{0}\" で一時停止",
- "breakpoint.requestAnimationFrame": "アニメーション フレームの要求",
- "breakpoint.resumeAudioContext": "AudioContext の再開",
- "breakpoint.scriptFirstStatement": "スクリプトの最初のステートメント",
- "breakpoint.setInnerHtml": "innerHTML の設定",
- "breakpoint.setIntervalFired": "setInterval が発生",
- "breakpoint.setTimeoutFired": "setTimeout が発生",
- "breakpoint.suspendAudioContext": "AudioContext が中断",
- "breakpoint.webglErrorFired": "WebGL エラーが発生",
- "breakpoint.webglErrorNamed": "WebGL エラー \"{0}\"",
- "breakpoint.webglErrorNamedDetails": "WebGL エラー インストルメンテーション ブレークポイントで一時停止 (エラー \"{0}\")",
- "breakpoint.webglWarningFired": "WebGL 警告が発生"
- },
- "/src/adapter/debugAdapter": {
- "breakpoint.caughtExceptions": "キャッチされた例外",
- "breakpoint.caughtExceptions.description": "後でキャッチされた場合でも、すべてのスロー エラーで中断します。",
- "breakpoint.uncaughtExceptions": "キャッチされない例外",
- "error.cannotPrettyPrint": "再フォーマットできません",
- "error.sourceContentDidFail": "ソース コンテンツを取得できません",
- "error.sourceNotFound": "ソースが見つかりません",
- "error.variableNotFound": "変数が見つかりません"
- },
- "/src/adapter/profiling/basicCpuProfiler": {
- "profile.cpu.description": "Chrome DevTools で開くことができる、.cpuprofile ファイルを生成します",
- "profile.cpu.label": "CPU プロファイル"
- },
- "/src/adapter/profiling/basicHeapProfiler": {
- "profile.heap.description": "Chrome DevTools で開くことができる .heapprofile ファイルを 1 つ生成します",
- "profile.heap.label": "ヒープ プロファイル"
- },
- "/src/adapter/profiling/heapDumpProfiler": {
- "profile.heap.description": "Chrome DevTools で開くことができる、.heapsnapshot ファイルを生成します",
- "profile.heap.label": "ヒープのスナップショット"
- },
- "/src/adapter/sources": {
- "source.skipFiles": "skipFiles によってスキップされました"
- },
- "/src/adapter/stackTrace": {
- "scope.block": "ブロック",
- "scope.catch": "Catch ブロック",
- "scope.closure": "クロージャ",
- "scope.closureNamed": "クロージャ ({0})",
- "scope.eval": "Eval",
- "scope.global": "GLOBAL",
- "scope.local": "LOCAL",
- "scope.module": "モジュール",
- "scope.returnValue": "戻り値",
- "scope.script": "スクリプト",
- "scope.with": "With ブロック",
- "smartStepSkipLabel": "smartStep によりスキップされました",
- "source.skipFiles": "skipFiles によってスキップされました"
- },
- "/src/adapter/threads": {
- "error.evaluateDidFail": "評価できません",
- "error.evaluateOnAsyncStackFrame": "非同期スタック フレームで評価できません",
- "error.pauseDidFail": "一時停止できません",
- "error.restartFrameAsync": "非同期フレームを再起動できません",
- "error.resumeDidFail": "再開できません",
- "error.stackFrameNotFound": "スタック フレームが見つかりません",
- "error.stepInDidFail": "ステップ インできません",
- "error.stepOutDidFail": "ステップ アウトできません",
- "error.stepOverDidFail": "次のステップに進むことができません",
- "error.threadNotPaused": "スレッドが一時停止されていません",
- "error.threadNotPausedOnException": "スレッドが例外で一時停止されていません",
- "error.unknownRestartError": "フレームを再起動できませんでした",
- "pause.DomBreakpoint": "DOM ブレークポイントで一時停止しました",
- "pause.assert": "アサートで一時停止しました",
- "pause.breakpoint": "ブレークポイントで一時停止しました",
- "pause.debugCommand": "debug() 呼び出しで一時停止しました",
- "pause.default": "一時停止しました",
- "pause.eventListener": "イベント リスナーで一時停止しました",
- "pause.exception": "例外で一時停止しました",
- "pause.instrumentation": "インストルメンテーション ブレークポイントで一時停止しました",
- "pause.oom": "メモリ不足の例外の前に一時停止しました",
- "pause.promiseRejection": "Promise の拒否で一時停止しました",
- "pause.xhr": "XMLHttpRequest またはフェッチで一時停止しました",
- "reason.description.restart": "フレーム エントリで一時停止しました",
- "warnings.handleSourceMapPause.didNotWait": "警告: {0} のソース マップの処理に {1} ミリ秒より長くかかったため、スクリプトのすべてのブレークポイントが設定されるのを待たずに実行を継続しました。"
- },
- "/src/adapter/variableStore": {
- "error.customValueDescriptionGeneratorFailed": "{0} (説明できませんでした: {1})",
- "error.emptyExpression": "空の値は設定できません",
- "error.invalidExpression": "無効な式です",
- "error.setVariableDidFail": "変数値を設定できません",
- "error.unknown": "不明なエラー",
- "error.variableNotFound": "変数が見つかりません"
- },
- "/src/binder": {
- "breakpoint.provisionalBreakpoint": "バインドされていないブレークポイント"
- },
- "/src/dap/errors": {
- "NVM_HOME.not.found.message": "'runtimeVersion' 属性には Node.js バージョン マネージャー 'nvm-windows' または 'nvs' が必要です。",
- "NVS_HOME.not.found.message": "属性 'runtimeVersion' を使用するには、Node.js バージョン マネージャー 'nvs' または 'nvm' をインストールする必要があります。",
- "VSND2011": "ターミナル ({0}) でデバッグ ターゲットを起動できません。",
- "VSND2029": "ファイル ({0}) から環境変数を読み込めません。",
- "asyncScopesNotAvailable": "非同期スタックでは変数を使用できません",
- "breakpointSyntaxError": "行 {1} での条件 {0} のブレークポイントの設定で構文エラーが発生しました: {2}",
- "browserVersionNotFound": "{0} バージョン {1} が見つかりません。自動検出された使用可能なバージョン: {2}。launch.json で \"runtimeExecutable\" をそれらのうちの 1 つに設定するか、またはブラウザーの実行可能ファイルへの絶対パスを指定することができます。",
- "error.browserAttachError": "ブラウザーにアタッチできません",
- "error.browserLaunchError": "ブラウザーを起動できません: \"{0}\"",
- "error.threadNotFound": "ターゲット ページが見つかりません。デバッグするページと一致するように \"urlFilter\" を更新する必要がある場合があります。",
- "invalidHitCondition": "ヒット条件 \"{0}\" が無効です。\"> 42\" または \"== 2\" のような式が必要です。",
- "noBrowserInstallFound": "システムにブラウザーのインストールが見つかりません。インストールするか、launch.json の \"runtimeExecutable\" でブラウザーへの絶対パスを指定してみてください。",
- "noUwpPipeFound": "UWP Web ビュー パイプに接続できませんでした。Web ビューがデバッグ モードでホストされていること、および 'launch.json' の 'pipeName' が正しいことを確認してください。",
- "profile.error.concurrent": "新しいプロファイルを開始するのは、実行中のものを停止した後にしてください。",
- "profile.error.generic": "ターゲットからのプロファイルの取得でエラーが発生しました。",
- "runtime.node.notfound": "Node.js バイナリ \"{0}\" が見つかりません: {1}。Node.js がインストールされていて PATH に含まれていることを確認するか、launch.json で \"runtimeExecutable\" を設定してください",
- "runtime.node.outdated": "\"{0}\" にある Node のバージョンが古くなっています (バージョン {1})。少なくとも Node 8.x が必要です。",
- "runtime.version.not.found.message": "Node.js バージョン '{0}' は、バージョン マネージャー {1} を使用してインストールされていません。",
- "sourcemapParseError": "{0} のソース マップを読み取れませんでした: {1}",
- "uwpPipeNotAvailable": "UWP WebView デバッグは、お使いのプラットフォームでは使用できません。"
- },
- "/src/debugServer": {
- "breakpoint.provisionalBreakpoint": "バインドされていないブレークポイント"
- },
- "/src/targets/browser/browserAttacher": {
- "attach.cannotConnect": "{0} でターゲットに接続できません: {1}",
- "chrome.targets.placeholder": "タブを選択してください"
- },
- "/src/targets/node/nodeAttacher": {
- "node.attach.restart.message": "デバッグ対象への接続が失われました。{0} ミリ秒以内に再接続します\r\n"
- },
- "/src/targets/node/nodeBinaryProvider": {
- "outOfDate": "{0} このままデバッグしますか?",
- "runtime.node.notfound.enoent": "パスが存在しません",
- "runtime.node.notfound.spawnErr": "バージョンの取得でエラーが発生しました: {0}",
- "warning.16bpIssue": "一部のブレークポイントは、お使いのバージョンの Node.js では動作しない可能性があります。最新のバグ、パフォーマンス、セキュリティの修正プログラムのためにアップグレードすることをお勧めします。詳細情報: https://aka.ms/AAcsvqm",
- "warning.8outdated": "古いバージョンの Node.js を実行しています。最新のバグ、パフォーマンス、およびセキュリティ修正プログラムのために、アップグレードすることをお勧めします。",
- "yes": "はい"
- },
- "/src/ui/autoAttach": {
- "details": "詳細"
- },
- "/src/ui/companionBrowserLaunch": {
- "cannotDebugInBrowser": "こちらからデバッグ モードでブラウザーを起動することはできません。デバッグを有効にするには、このワークスペースをデスクトップ上の VS Code で開きます。"
- },
- "/src/ui/configuration/chromiumDebugConfigurationProvider": {
- "chrome.launch.name": "localhost に対して Chrome を起動する",
- "existingBrowser.alert": "ブラウザーは既に {0} から実行されているようです。それを閉じてからデバッグしてみてください。それ以外の場合は、VS Code がそれに接続できない可能性があります。",
- "existingBrowser.debugAnyway": "このままデバッグ",
- "existingBrowser.location.default": "古いデバッグ セッション",
- "existingBrowser.location.userDataDir": "構成された userDataDir"
- },
- "/src/ui/configuration/edgeDebugConfigurationProvider": {
- "chrome.launch.name": "localhost に対して Edge を起動する"
- },
- "/src/ui/configuration/nodeDebugConfigurationProvider": {
- "debug.terminal.label": "JavaScript デバッグ ターミナル",
- "node.launch.currentFile": "現在のファイルの実行",
- "node.launch.script": "スクリプトの実行: {0}"
- },
- "/src/ui/configuration/nodeDebugConfigurationResolver": {
- "cwd.notFound": "構成された 'cwd' {0} が存在しません。",
- "mern.starter.explanation": "'{0}' プロジェクトのための起動構成を生成しました。",
- "node.launch.config.name": "プログラムの起動",
- "outFiles.explanation": "生成された JavaScript をカバーするように、 'outFiles' 属性で glob パターンを調整します。",
- "program.guessed.from.package.json.explanation": "'package.json' を基に起動構成を生成しました。",
- "program.not.found.message": "デバッグするプログラムが見つかりません"
- },
- "/src/ui/debugLinkUI": {
- "debugLink.invalidUrl": "指定された URL が無効です",
- "debugLink.savePrompt": "後で簡単にアクセスできるように、launch.json の構成を保存しますか?",
- "never": "なし",
- "no": "いいえ",
- "yes": "はい"
- },
- "/src/ui/debugNpmScript": {
- "debug.npm.noScripts": "package.json に npm スクリプトがありません",
- "debug.npm.noWorkspaceFolder": "npm スクリプトをデバッグするには、ワークスペース フォルダーを開く必要があります。",
- "debug.npm.notFound.open": "package.json を編集",
- "debug.npm.parseError": "{0} を読み取ることができませんでした: {1}"
- },
- "/src/ui/debugTerminalUI": {
- "terminal.cwdpick": "新しいターミナルの作業ディレクトリを選択してください"
- },
- "/src/ui/diagnosticsUI": {
- "inspectSessionEnded": "デバッグ セッションは既に終了しているようです。もう一度デバッグを試してから、[デバッグ: ブレークポイントの問題の診断] コマンドを実行します。",
- "never": "なし",
- "notNow": "後で",
- "selectInspectSession": "検査するセッションを選択します。",
- "yes": "はい"
- },
- "/src/ui/disableSourceMapUI": {
- "always": "常時",
- "disableSourceMapUi.msg": "これはソースマップで参照されている、不足しているファイル パスです。代わりにコンパイル済みのバージョンをデバッグしますか?",
- "no": "いいえ",
- "yes": "はい"
- },
- "/src/ui/edgeDevToolOpener": {
- "selectEdgeToolSession": "devtools を開くページを選択します"
- },
- "/src/ui/linkedBreakpointLocationUI": {
- "ignore": "無視する",
- "readMore": "詳細を参照"
- },
- "/src/ui/longPredictionUI": {
- "longPredictionWarning.disable": "今後は表示しない",
- "longPredictionWarning.message": "ブレークポイントの構成に時間がかかっています。launch.json で 'outFiles' を更新することによって、スピードアップさせることができます。",
- "longPredictionWarning.noFolder": "開いているワークスペース フォルダーがありません。",
- "longPredictionWarning.open": "launch.json を開く"
- },
- "/src/ui/processPicker": {
- "cannot.enable.debug.mode.error": "プロセスに添付: プロセス '{0}' ({1}) に対してデバッグ モードを有効にできません。",
- "pickNodeProcess": "アタッチする node.js プロセスを選択してください",
- "process.id.error": "プロセスにアタッチ: '{0}' はプロセス ID ではないようです。",
- "process.id.port.signal": "プロセス ID: {0}、デバッグ ポート: {1} ({2})",
- "process.id.signal": "プロセス ID: {0} ({1})",
- "process.picker.error": "プロセス ピッカーが失敗しました ({0})"
- },
- "/src/ui/profiling/breakpointTerminationCondition": {
- "breakpointTerminationWarnConfirm": "了解",
- "breakpointTerminationWarnSlow": "ブレークポイントを有効にしてプロファイルを実行すると、コードのパフォーマンスが変化することがあります。\"期間\" または \"手動\" の終了条件で結果を検証するとよい場合があります。",
- "profile.termination.breakpoint.description": "特定のブレークポイントにヒットするまで実行します",
- "profile.termination.breakpoint.label": "ブレークポイントの選択"
- },
- "/src/ui/profiling/durationTerminationCondition": {
- "profile.termination.duration.description": "特定の期間にわたって実行します",
- "profile.termination.duration.inputTitle": "プロファイルの期間",
- "profile.termination.duration.invalidFormat": "数を入力してください",
- "profile.termination.duration.invalidLength": "1 より大きい数値を入力してください",
- "profile.termination.duration.label": "期間",
- "profile.termination.duration.placeholder": "プロファイルの期間 (秒) (例: \"5\")"
- },
- "/src/ui/profiling/manualTerminationCondition": {
- "profile.termination.duration.description": "手動で停止されるまで実行します",
- "profile.termination.duration.label": "手動"
- },
- "/src/ui/profiling/uiProfileManager": {
- "no": "いいえ",
- "profile.alreadyRunning": "プロファイル セッションは既に実行中です。これを停止して、新しいセッションを開始しますか?",
- "profile.sessionState": "プロファイル",
- "profile.status.default": "$(loading~spin) プロファイリングを停止するにはクリックしてください",
- "profile.status.multiSession": "$(loading~spin) プロファイリングを停止するにはクリックしてください ({0} 個のセッション)",
- "profile.status.single": "$(loading~spin) プロファイリングを停止するにはクリックしてください ({0})",
- "profile.termination.title": "プロファイルの実行期間:",
- "profile.type.title": "プロファイルの種類:",
- "yes": "はい"
- },
- "/src/ui/profiling/uiProfileSession": {
- "profile.saving": "保存しています",
- "progress.profile.start": "プロファイルを開始しています...",
- "progress.profile.stop": "プロファイルを停止しています..."
- },
- "/src/ui/terminalLinkHandler": {
- "cantOpenChromeOnWeb": "こちらからデバッグ モードでブラウザーを起動することはできません。この Web ページをデバッグする場合は、デスクトップ上の VS Code からこのワークスペースを開いてください。",
- "terminalLinkHover.debug": "URL のデバッグ"
- },
- "/src/vsDebugServer": {
- "session.rootSessionName": "JavaScript デバッグ アダプター"
- },
"package": {
- "add.browser.breakpoint": "ブラウザー ブレークポイントの追加",
+ "add.eventListener.breakpoint": "イベント リスナーのブレークポイントを切り替える",
+ "add.xhr.breakpoint": "XHR/fetch ブレークポイントの追加",
"attach.node.process": "Node のプロセスにアタッチ",
"base.cascadeTerminateToConfigurations.label": "このデバッグ セッションの終了と同時に停止するデバッグ セッションの一覧。",
+ "base.enableDWARF.label": "デバッガーが WebAssembly から DWARF デバッグ シンボルの読み取りを試みるかどうかを切り替えます。これはリソースを集中的に消費する可能性があります。`ms-vscode.wasm-dwarf-debugging` 拡張機能が機能する必要があります。",
+ "breakpoint.xhr.any": "任意の XHR/fetch",
+ "breakpoint.xhr.contains": "URL に次が含まれている場合に中断します:",
"browser.address.description": "デバッグ対象のブラウザーがリッスンしている IP アドレスまたはホスト名。",
"browser.attach.port.description": "ブラウザーをリモート デバッグするために使用するポート。ブラウザーの起動時に '--remote-debugging-port' として指定します。",
"browser.baseUrl.description": "パス baseUrl を解決するためのベース URL。URL をディスク上のファイルにマップする場合、baseURL はトリミングされます。既定では、起動 URL ドメインに設定されます。",
@@ -294,7 +27,9 @@
"browser.env.description": "ブラウザーの環境キーと値のペアから成るディクショナリ (省略可能)。",
"browser.file.description": "ブラウザーで開くローカル HTML ファイル",
"browser.includeDefaultArgs.description": "(デバッグを困難にする可能性のある機能を無効にする) 既定のブラウザー起動引数を起動に含めるかどうか。",
+ "browser.includeLaunchArgs.description": "詳細設定: ブラウザーで既定の起動/デバッグ引数を設定するかどうかを指定します。デバッガーでは、ブラウザーが '--remote-debugging-pipe' で提供されているようなパイプ デバッグを使用することを前提としています。",
"browser.inspectUri.description": "inspectUri の書き換えに使用する形式: '{curlyBraces}' 内にキーを補間するテンプレート文字列です。使用できるキーは以下のとおりです。\r\n - 'url.*' は、実行中のアプリケーションの解析されたアドレスです。例: '{url.port}', '{url.hostname}'\r\n - 'port' は、Chrome がリッスンするデバッグ ポートです。\r\n - 'browserInspectUri' は、起動したブラウザーのインスペクター URI です。\r\n - 'browserInspectUriPath' は起動したブラウザーのインスペクター URI のパス部分です (例: \"/devtools/browser/e9ec0098-306e-472a-8133-5e42488929c2\")。\r\n - 'wsProtocol' は、示唆される WebSocket プロトコルです。元の URL が 'https' の場合は 'wss' に設定され、それ以外の場合は 'ws' に設定されます。\r\n",
+ "browser.killBehavior.description": "'cleanUp: wholeBrowser' を使用してセッションを停止するときにブラウザー プロセスを強制終了する方法を構成します。以下を指定できます:\r\n\r\n- forceful (既定): プロセス ツリーを強制的に終了します。Posix では SIGKILL を、Windows では 'taskkill.exe /F' を 送信します。\r\n- polite: プロセス ツリーを正常に終了します。この方法でシャットダウンした後も、誤動作しているプロセスが実行され続ける可能性があります。posix では SIGTERM を、Windows では '/F' (force) フラグなしの`taskkill.exe` を送信します。\r\n- none: 終了は発生しません。",
"browser.launch.port.description": "ブラウザーがリッスンするポート。既定値は \"0\" で、パイプを介してブラウザーをデバッグするようになります。一般にこれはセキュリティに優れているため、別のツールからブラウザーに接続する必要がなければ、これを選択してください。",
"browser.pathMapping.description": "ブラウザーのスクリプトをディスク上のスクリプトに解決するための、ローカル フォルダーへの URL またはパスのマッピング",
"browser.perScriptSourcemaps.description": "ソース ファイルのベース名を含む一意のソースマップを使用してスクリプトを個別に読み込むかどうか。これは、多数の小さなスクリプトを処理するときに、ソースマップの処理を最適化するために設定できます。\"auto\" に設定すると、これが適切である既知のケースが自動的に検出されます。",
@@ -305,7 +40,7 @@
"browser.runtimeExecutable.description": "'カナリア'、'安定'、'カスタム'、ブラウザー実行可能ファイルのパスのいずれか。[カスタム] は、カスタム ラッパー、カスタム ビルド、または CHROME_PATH 環境変数を意味します。",
"browser.runtimeExecutable.edge.description": "'canary'、'stable'、'dev'、'custom'、ブラウザーの実行可能ファイルへのパスのいずれかです。custom は、カスタム ラッパー、カスタム ビルド、または EDGE_PATH 環境変数を指します。",
"browser.server.description": "起動する Web サーバーを構成します。'ノード' 起動タスクと同じ構成になります。",
- "browser.skipFiles.description": "デバッグ時にスキップする、ファイル名またはフォルダー名の配列、またはパス glob。",
+ "browser.skipFiles.description": "デバッグ時にスキップするファイル名またはフォルダー名の配列、またはパス glob: スター パターンと否定は許可されます。たとえば、'[\"**/node_modules/**\"、\"!**/node_modules/my-module/**\"]`",
"browser.smartStep.description": "ソースマップ化されたファイル内のマッピングされていない行を自動的にステップ実行します。たとえば、async/await または他の機能をダウンコンパイルする際に TypeScript が自動的に生成するコードです。",
"browser.sourceMapPathOverrides.description": "ソース ファイルの場所をソースマップに指定されている内容からディスク上の場所へ書き換えるための一連のマッピング。詳しくは Readme をご覧ください。",
"browser.sourceMapRenames.description": "ソースマップで \"names\" マッピングを使用するかどうかを指定します。これを使用するには、ソース コンテンツを要求する必要がありますが、これは特定のデバッガーでは速度が低下する可能性があります。",
@@ -330,6 +65,12 @@
"commands.callersRemoveAll.label": "除外されたすべての呼び出し元を削除する",
"commands.disableSourceMapStepping.label": "ソース マップ ステッピングを無効にする",
"commands.enableSourceMapStepping.label": "ソース マップ ステッピングを有効にする",
+ "commands.networkClear.label": "ネットワーク ログをクリアします",
+ "commands.networkCopyURI.label": "要求 ID をコピーします",
+ "commands.networkOpenBody.label": "応答本文を開きます",
+ "commands.networkOpenBodyInHexEditor.label": "応答本文を 16 進数エディターで開きます",
+ "commands.networkReplayXHR.label": "要求を再生します",
+ "commands.networkViewRequest.label": "要求を cURL として表示します",
"configuration.autoAttachMode": "'#debug.node.autoAttach#' がオンの場合に、自動的にアタッチしてデバッグするプロセスを構成します。'--inspect' フラグで起動されるノード プロセスは、この設定に関係なく、常にアタッチされます。",
"configuration.autoAttachMode.always": "ターミナルで起動されるすべての Node.js プロセスに自動アタッチします。",
"configuration.autoAttachMode.disabled": "オート アタッチが無効で、ステータス バーに表示されません。",
@@ -340,9 +81,10 @@
"configuration.breakOnConditionalError": "条件付きブレークポイントでエラーが発生したときに停止するかどうかを指定します。",
"configuration.debugByLinkOptions": "デバッグ時に使用したオプションによって、デバッグ ターミナル内からクリックしたリンクが開きます。\"false\" に設定にすると、この動作を無効にできます。",
"configuration.defaultRuntimeExecutables": "指定されていない場合に起動構成に使用される、既定の 'runtimeExecutable'。これは、Node.js またはブラウザーのインストールのカスタム パスを構成するために使用できます。",
+ "configuration.enableNetworkView": "それをサポートするターゲットの試験的なネットワーク ビューを有効にします。",
"configuration.npmScriptLensLocation": "npm スクリプトで \"実行\" と \"デバッグ\" のコード レンズが表示される場所。\"すべて\" のスクリプトまたはスクリプト セクションの \"上\" に表示するか、\"表示しない\" を指定できます。",
"configuration.pickAndAttachOptions": "'デバッグ: Node.js のプロセスにアタッチ' コマンドでプロセスをデバッグするときに使用する既定のオプション",
- "configuration.resourceRequestOptions": "Request options to use when loading resources, such as source maps, in the debugger. You may need to configure this if your sourcemaps require authentication or use a self-signed certificate, for instance. Options are used to create a request using the [`got`](https://github.com/sindresorhus/got) library.\r\n\r\nA common case to disable certificate verification can be done by passing `{ \"https\": { \"rejectUnauthorized\": false } }`.",
+ "configuration.resourceRequestOptions": "デバッガーでソース マップなどのリソースを読み込むときに使用する要求オプションです。ソースマップで認証が必要な場合または自己署名証明書を使用する場合などに、これを構成する必要がある可能性があります。オプションは、[`got`](https://github.com/sindresorhus/got) ライブラリを使用して要求を作成するために使用されます。\r\n\r\n通常、証明書の検証を無効にするためには、`{ \"https\": { \"rejectUnauthorized\": false } }` をパスします。",
"configuration.terminalOptions": "JavaScript デバッグ ターミナルおよび npm スクリプトの既定の起動オプション。",
"configuration.unmapMissingSources": "元のファイルを読み取ることができない sourcemapped ファイルが自動的にマップ解除されるかどうかを構成します。これが False (既定) の場合は、プロンプトが表示されます。",
"createDiagnostics.label": "ブレークポイントの問題を診断する",
@@ -359,8 +101,8 @@
"debug.terminal.snippet.label": "デバッグ ターミナルで \"npm start\" を実行する",
"debug.terminal.toggleAuto": "ターミナル Node.js の自動アタッチの切り替え",
"debug.terminal.welcome": "[JavaScript デバッグ ターミナル](command:extension.js-debug.createDebuggerTerminal)\r\n\r\nJavaScript デバッグ ターミナルを使用して、コマンド ラインで実行される Node.js プロセスをデバッグできます。",
- "debug.terminal.welcomeWithLink": "[JavaScript デバッグ ターミナル] (コマンド: extension.js-debug.createDebuggerTerminal)\r\n\r\nJavaScript デバッグ ターミナルを使用して、コマンド ラインで実行される Node.js プロセスをデバッグできます。\r\n\r\n[デバッグ URL] (コマンド: xtension.js-debug.debugLink)",
- "debug.unverifiedBreakpoints": "ブレークポイントの一部を設定できませんでした。問題が発生している場合は、(command:extension.js-debug.createDiagnostics) を [起動構成のトラブルシューング] できます。",
+ "debug.terminal.welcomeWithLink": "[JavaScript デバッグ ターミナル](command:extension.js-debug.createDebuggerTerminal)\r\n\r\nJavaScript デバッグ ターミナルを使用して、コマンド ラインで実行される Node.js プロセスをデバッグできます。\r\n\r\n[デバッグ URL](command:extension.js-debug.debugLink)",
+ "debug.unverifiedBreakpoints": "ブレークポイントの一部を設定できませんでした。問題が発生している場合は、[起動構成のトラブルシューング](command:extension.js-debug.createDiagnostics) できます。",
"debugLink.label": "リンクを開く",
"edge.address.description": "Web ビューのデバッグ時に、Web ビューがリッスンしている IP アドレスまたはホスト名。設定しない場合、自動的に検出されます。",
"edge.attach.description": "Microsoft Edge のインスタンスへのアタッチは既にデバッグ モードです",
@@ -371,6 +113,7 @@
"edge.port.description": "Web ビューのデバッグ時に、Web ビュー デバッガーがリッスンしているポート。設定しない場合、自動的に検出されます。",
"edge.useWebView.attach.description": "UWP でホストされている Webview2 向けデバッグ パイプの 'pipeName' を含むオブジェクト。これはパイプ \"\\\\.\\pipe\\LOCAL\\MyTestSharedMemory\" 作成時の \"MyTestSharedMemory\" です",
"edge.useWebView.launch.description": "'true' の場合、デバッガーはランタイム実行可能ファイルを WebView を含むホスト アプリケーションとして処理するため、ユーザーは WebView スクリプトの内容をデバッグできます。",
+ "edit.xhr.breakpoint": "XHR/fetch ブレークポイントの編集",
"enableContentValidation.description": "ディスク上のファイルの内容が、ランタイムに読み込まれたものと一致していることを Microsoft が確認するかどうかを切り替えます。これは、さまざまなシナリオで役立ち、一部のシナリオでは必須です。ただし、一例としてスクリプトのサーバー側変換がある場合に問題が発生する可能性があります。",
"errors.timeout": "{0}: {1} ミリ秒後にタイムアウト",
"extension.description": "Node.js プログラムと Chrome をデバッグするための拡張機能。",
@@ -382,6 +125,8 @@
"extensionHost.launch.rendererDebugOptions": "レンダラー プロセスにアタッチするときに使用される Chrome の起動オプション ('debugWebviews' または 'debugWebWorkerHost' を使用)。",
"extensionHost.launch.runtimeExecutable.description": "VS Code への絶対パス。",
"extensionHost.launch.stopOnEntry.description": "起動後に拡張機能ホストを自動的に停止します。",
+ "extensionHost.launch.testConfiguration": "[テスト CLI](https://code.visualstudio.com/api/working-with-extensions/testing-extension#quick-setup-the-test-cli) のテスト構成ファイルへのパス。",
+ "extensionHost.launch.testConfigurationLabel": "ファイルから実行する単一の構成。指定しない場合は、選択するように求められる場合があります。",
"extensionHost.snippet.launch.description": "デバッグ モードで VS Code 拡張機能を起動します",
"extensionHost.snippet.launch.label": "VS Code 拡張機能の開発",
"getDiagnosticLogs.label": "診断 JS デバッグ ログの保存",
@@ -399,9 +144,11 @@
"node.attachSimplePort.description": "設定した場合、指定したポート経由でプロセスにアタッチされます。Node.js プログラムでは一般にもはやこれは不要になっており、子プロセスをデバッグする機能が失われますが、Deno や Docker による起動など、より複雑なシナリオで役立つことがあります。0 に設定されている場合は、ランダムのポートが選択され、--inspect-brk が起動引数に自動的に追加されます。",
"node.console.title": "Node デバッグ コンソール",
"node.disableOptimisticBPs.description": "どのファイルについても、そのファイルのソースマップが読み込まれるまではブレークポイントを設定しないでください。",
+ "node.enableTurboSourcemaps.description": "ソースマップ検出に新しい高速メカニズムを使用するかどうかを構成します",
+ "node.experimentalNetworking.description": "Node.js で試験的な検査を有効にします。`自動` に設定すると、これをサポートするバージョンの Node.js に対して有効になります。明示的に有効または無効にするには、`オン` または `オフ` に設定できます。",
"node.killBehavior.description": "セッションの停止時にデバッグ プロセスを中止する方法を構成します。以下を指定できます:\r\n\r\n- forceful (既定): プロセス ツリーを強制的に停止します。posix 上では SIGKILL を、Windows 上では 'taskkill.exe /F' を 送信します。\r\n- polite: プロセス ツリーを正常に終了します。この方法でシャットダウンした後、不適切なプロセスが引き続き実行される可能性があります。posix 上では SIGTERM を、Windows 上では '/F' (force) フラグなしの taskkill.exe を送信します。\r\n-none: 終了は発生しません。",
"node.label": "Node.js",
- "node.launch.args.description": "Command line arguments passed to the program.\r\n\r\nCan be an array of strings or a single string. When the program is launched in a terminal, setting this property to a single string will result in the arguments not being escaped for the shell.",
+ "node.launch.args.description": "プログラムに渡されるコマンド ライン引数。\r\n\r\n文字列の配列または 1 つの文字列を指定できます。プログラムがターミナルで起動される場合、このプロパティを単一の文字列に設定すると、シェルの引数がエスケープされません。",
"node.launch.autoAttachChildProcesses.description": "デバッガーを自動的に新しい子プロセスにアタッチします。",
"node.launch.config.name": "起動",
"node.launch.console.description": "デバッグ ターゲットの起動場所です。",
@@ -419,7 +166,7 @@
"node.launch.restart.description": "ゼロ以外の終了コードでプログラムが終了した場合は、プログラムを再起動してみてください。",
"node.launch.runtimeArgs.description": "省略可能な引数がランタイム実行可能ファイルに渡されました。",
"node.launch.runtimeExecutable.description": "使用するランタイム。絶対パス、または PATH 上で使用可能なランタイムの名前のいずれかです。省略した場合は、`node` とみなされます。",
- "node.launch.runtimeSourcemapPausePatterns": "A list of patterns at which to manually insert entrypoint breakpoints. This can be useful to give the debugger an opportunity to set breakpoints when using sourcemaps that don't exist or can't be detected before launch, such as [with the Serverless framework](https://github.com/microsoft/vscode-js-debug/issues/492).",
+ "node.launch.runtimeSourcemapPausePatterns": "エントリポイント ブレークポイントを手動で挿入するパターンの一覧。これは、[Serverless Framework を使用する場合](https://github.com/microsoft/vscode-js-debug/issues/492) のように、存在しない、または起動前には検出できないソースマップを使用している場合に、デバッガーでブレークポイントを設定できるようにするために役立ちます。",
"node.launch.runtimeVersion.description": "使用する `node` ランタイムのバージョン。`nvm` が必要です。",
"node.launch.useWSL.deprecation": "'useWSL' は廃止され、サポートが終了されます。代わりに 'Remote - WSL' 拡張機能を使用します。",
"node.launch.useWSL.description": "Windows Subsystem for Linux を使用します。",
@@ -428,6 +175,7 @@
"node.port.description": "アタッチ先のデバッグ ポート。既定値は 9229 です。",
"node.processattach.config.name": "プロセスにアタッチ",
"node.profileStartup.description": "true にすると、プロセスが起動したときすぐにプロファイルが開始されます",
+ "node.remote.host.header.description": "インスペクターの websocket に接続するときに使用する明示的な Host ヘッダー。指定しない場合、ホスト ヘッダーは 'localhost' に設定されます。これは、特定の Host ヘッダーのみを受け入れるプロキシの背後でインスペクターが実行されている場合に便利です。",
"node.remoteRoot.description": "プログラムの入ったリモート ディレクトリへの絶対パス。",
"node.resolveSourceMapLocations.description": "ソース マップを使用してローカル ファイルを解決できる場所 (フォルダーと URL) の minimatch パターンの一覧。これを使用すると、外部ソースのマップされたコードの誤った破損を回避できます。パターンは、その先頭に \"!\" を付けて除外できます。制約を避けるために、空の配列または null に設定できます。",
"node.showAsyncStacks.description": "現在の呼び出し履歴にまで至った非同期呼び出しを表示します。",
@@ -462,8 +210,9 @@
"pretty.print.script": "デバッグ用の整形出力",
"profile.start": "パフォーマンス プロファイルの取得",
"profile.stop": "パフォーマンス プロファイルの停止",
- "remove.browser.breakpoint": "ブラウザー ブレークポイントの削除",
- "remove.browser.breakpoint.all": "すべてのブラウザー ブレークポイントを削除",
+ "remove.eventListener.breakpoint.all": "すべてのイベント リスナー ブレークポイントの削除",
+ "remove.xhr.breakpoint": "XHR/fetch ブレークポイントの削除",
+ "remove.xhr.breakpoint.all": "すべての XHR/フェッチ ブレークポイントの削除",
"requestCDPProxy.label": "デバッグ セッションの CDP プロキシを要求する",
"skipFiles.description": "デバッグ時にスキップするファイルの glob パターンの配列。パターン `/**` はすべての内部 Node.js モジュールに一致します。",
"smartStep.description": "元のソースにマップできない生成コードを自動的にステップスルーします。",
@@ -481,6 +230,230 @@
"trace.logFile.description": "ディスク上のログが書き込まれる場所を構成します。",
"trace.stdio.description": "起動したアプリケーションまたはブラウザーからトレース データを返すかどうか。",
"workspaceTrust.description": "このワークスペースでコードをデバッグするには、信頼が必要です。"
+ },
+ "bundle": {
+ "A profiling session is already running, would you like to stop it and start a new session?": "プロファイル セッションは既に実行中です。これを停止して、新しいセッションを開始しますか?",
+ "Add XHR Breakpoint": "XHR ブレークポイントの追加",
+ "Add new URL...": "新しい URL を追加...",
+ "Adjust glob pattern(s) in the 'outFiles' attribute so that they cover the generated JavaScript.": "生成された JavaScript をカバーするように、 'outFiles' 属性で glob パターンを調整します。",
+ "Always": "常に",
+ "Always in this Workspace": "常にこのワークスペースに",
+ "An error occurred taking a profile from the target.": "ターゲットからのプロファイルの取得でエラーが発生しました。",
+ "Animation Frame Fired": "アニメーション フレームの発生",
+ "Any XHR or fetch": "任意の XHR またはフェッチ",
+ "Assertion failed": "アサーションに失敗しました",
+ "Attach to process: '{0}' doesn't look like a process id.": "プロセスにアタッチ: '{0}' はプロセス ID ではないようです。",
+ "Attach to process: cannot enable debug mode for process '{0}' ({1}).": "プロセスに添付: プロセス '{0}' ({1}) に対してデバッグ モードを有効にできません。",
+ "Attribute 'runtimeVersion' requires Node.js version manager 'nvm-windows' or 'nvs'.": "'runtimeVersion' 属性には Node.js バージョン マネージャー 'nvm-windows' または 'nvs' が必要です。",
+ "Attribute 'runtimeVersion' requires Node.js version manager 'nvs', 'nvm' or 'fnm' to be installed.": "属性 'runtimeVersion' を使用するには、Node.js バージョン マネージャー 'nvs'、'nvm' または 'fnm' をインストールする必要があります。",
+ "Attribute 'runtimeVersion' with a flavor/architecture requires 'nvs' to be installed.": "フレーバー/アーキテクチャを持つ属性 'runtimeVersion' には、'nvs' をインストールする必要があります。",
+ "Bidder Bidding Phase Start": "Bidder の入札フェーズの開始",
+ "Bidder Reporting Phase Start": "Bidder レポート フェーズの開始",
+ "Block": "ブロック",
+ "Break when URL Contains": "URL に含まれている場合に中断する",
+ "Breaks on all throw errors, even if they're caught later.": "後でキャッチされた場合でも、すべてのスロー エラーで中断します。",
+ "Breaks only on errors or promise rejections that are not handled.": "処理されないエラーまたは promise 拒否の場合にのみ中断します。",
+ "Browser connection failed, will retry: {0}": "ブラウザーの接続に失敗しました。再試行します: {0}",
+ "CPU Profile": "CPU プロファイル",
+ "CPU profile saved as \"{0}\" in your workspace folder": "ワークスペース フォルダーに \"{0}\" として保存された CPU プロファイル",
+ "CSP violation \"{0}\"": "CSP 違反 \"{0}\"",
+ "Can't find Node.js binary \"{0}\": {1}. Make sure Node.js is installed and in your PATH, or set the \"runtimeExecutable\" in your launch.json": "Node.js バイナリ \"{0}\" が見つかりません: {1}。Node.js がインストールされていて PATH に含まれていることを確認するか、launch.json で \"runtimeExecutable\" を設定してください",
+ "Can't load environment variables from file ({0}).": "ファイル ({0}) から環境変数を読み込めません。",
+ "Cancel Animation Frame": "アニメーション フレームの取り消し",
+ "Cannot connect to the target at {0}: {1}": "{0} でターゲットに接続できません: {1}",
+ "Cannot find `{0}` installed in {1}": "{1} にインストールされている '{0}' が見つかりません",
+ "Cannot find a program to debug": "デバッグするプログラムが見つかりません",
+ "Cannot find test configuration with label `{0}`, got: {1}": "ラベル '{0}' のテスト構成が見つかりません。取得: {1}",
+ "Cannot launch debug target in terminal ({0}).": "ターミナル ({0}) でデバッグ ターゲットを起動できません。",
+ "Cannot restart asynchronous frame": "非同期フレームを再起動できません",
+ "Cannot set an empty value": "空の値は設定できません",
+ "Catch Block": "Catch ブロック",
+ "Caught Exceptions": "キャッチされた例外",
+ "Close AudioContext": "AudioContext を閉じる",
+ "Closure": "クロージャ",
+ "Closure ({0})": "クロージャ ({0})",
+ "Console profile started": "コンソール プロファイルが開始されました",
+ "Could not connect to any UWP Webview pipe. Make sure your webview is hosted in debug mode, and that the `pipeName` in your `launch.json` is correct.": "UWP Web ビュー パイプに接続できませんでした。Web ビューがデバッグ モードでホストされていること、および 'launch.json' の 'pipeName' が正しいことを確認してください。",
+ "Could not find a location for the variable": "変数の場所が見つかりませんでした",
+ "Could not query the provided object": "指定されたオブジェクトを照会できませんでした",
+ "Could not read source map for {0}: {1}": "{0} のソース マップを読み取れませんでした: {1}",
+ "Could not read {0}: {1}": "{0} を読み取ることができませんでした: {1}",
+ "Create AudioContext": "AudioContext の作成",
+ "Create canvas context": "キャンバス コンテキストの作成",
+ "Debug Anyway": "このままデバッグする",
+ "Debug URL": "URL のデバッグ",
+ "Details": "詳細",
+ "Don't show again": "今後は表示しない",
+ "Duration": "期間",
+ "Duration of Profile": "プロファイルの期間",
+ "Edit XHR Breakpoint": "XHR ブレークポイントの編集",
+ "Edit package.json": "package.json を編集",
+ "Enables Node.js [auto attach]({0}) debugging in \"{1}\" mode/{Locked='[auto attach]({0})'}the 2nd placeholder is the setting value": "\"{1}\" モードで Node.js [auto attach]({0}) のデバッグを有効にします",
+ "Enter a URL or a pattern to match": "照合する URL またはパターンを入力してください",
+ "Eval": "Eval",
+ "Frame could not be restarted": "フレームを再起動できませんでした",
+ "Generates a .cpuprofile file you can open in VS Code or the Edge/Chrome devtools": "VS Code または Edge/Chrome devtools で開くことができる .cpuprofile ファイルを生成します",
+ "Generates a .heapprofile file you can open in VS Code or the Edge/Chrome devtools": "VS Code または Edge/Chrome devtools で開くことができる .heapprofile ファイルを生成します",
+ "Generates a .heapsnapshot file you can open in VS Code or the Edge/Chrome devtools": "VS Code または Edge/Chrome devtools で開くことができる .heapsnapshot ファイルを生成します",
+ "Global": "グローバル",
+ "Globals": "グローバル",
+ "Got it!": "了解",
+ "Heap Profile": "ヒープ プロファイル",
+ "Heap Snapshot": "ヒープのスナップショット",
+ "How long to run the profile": "プロファイルの実行期間",
+ "Ignore": "無視",
+ "Installation complete! The extension will be used after you restart your debug session.": "インストールが完了しました。拡張機能は、デバッグ セッションを再起動した後に使用されます。",
+ "Installing the DWARF debugger...": "DWARF デバッガーをインストールしています...",
+ "Invalid expression": "無効な式",
+ "Invalid hit condition \"{0}\". Expected an expression like \"> 42\" or \"== 2\".": "ヒット条件 \"{0}\" が無効です。\"> 42\" または \"== 2\" のような式が必要です。",
+ "It looks like a browser is already running from {0}. Please close it before trying to debug, otherwise VS Code may not be able to connect to it.": "ブラウザーは既に {0} から実行されているようです。それを閉じてからデバッグしてみてください。それ以外の場合は、VS Code がそれに接続できない可能性があります。",
+ "It looks like your debug session has already ended. Try debugging again, then run the \"Debug: Diagnose Breakpoint Problems\" command.": "デバッグ セッションは既に終了しているようです。もう一度デバッグを試してから、[デバッグ: ブレークポイントの問題の診断] コマンドを実行します。",
+ "It's taking a while to configure your breakpoints. You can speed this up by updating the 'outFiles' in your launch.json.": "ブレークポイントの構成に時間がかかっています。launch.json で 'outFiles' を更新することによって、スピードアップさせることができます。",
+ "JavaScript Debug Terminal": "JavaScript デバッグ ターミナル",
+ "JavaScript debug adapter": "JavaScript デバッグ アダプター",
+ "Launch Chrome against localhost": "localhost に対して Chrome を起動する",
+ "Launch Edge against localhost": "localhost に対して Edge を起動する",
+ "Launch Program": "プログラムの起動",
+ "Launch configuration created based on 'package.json'.": "'package.json' を基に起動構成を生成しました。",
+ "Launch configuration for '{0}' project created.": "'{0}' プロジェクトのための起動構成を生成しました。",
+ "Local": "ローカル",
+ "Locals": "ローカル",
+ "Lost connection to debugee, reconnecting in {0}ms\r\n": "デバッグ対象への接続が失われました。{0} ミリ秒以内に再接続します\r\n",
+ "Manual": "手動",
+ "Missing source information. Did you set \"originalUrl\" or \"source\"?": "ソース情報がありません。\"originalUrl\" または \"source\" を設定しましたか?",
+ "Module": "モジュール",
+ "Networking not available.": "ネットワークを利用できません。",
+ "Never": "なし",
+ "No": "いいえ",
+ "No npm scripts found in the workspace folder.": "ワークスペース フォルダーに npm スクリプトが見つかりません。",
+ "No npm scripts found in your package.json": "package.json に npm スクリプトがありません",
+ "No package.json files found in your workspace.": "ワークスペースに package.json ファイルが見つかりません。",
+ "No workspace folder open.": "開いているワークスペース フォルダーがありません。",
+ "Node Attributes": "ノード属性",
+ "Node.js version '{0}' not installed using version manager {1}.": "Node.js バージョン '{0}' は、バージョン マネージャー {1} を使用してインストールされていません。",
+ "Not Now": "今はしない",
+ "Only objects can be queried": "照会できるのはオブジェクトのみです",
+ "Open launch.json": "launch.json を開く",
+ "Output has been truncated to the first {0} characters. Run `{1}` to copy the full output.": "出力は最初の {0} 文字に切り詰められました。'{1}' を実行して完全な出力をコピーします。",
+ "Parameters": "パラメーター",
+ "Paused": "一時停止",
+ "Paused before Out Of Memory exception": "メモリ不足の例外の前に一時停止しました",
+ "Paused on Content Security Policy violation instrumentation breakpoint, directive \"{0}\"": "コンテンツ セキュリティ ポリシー違反のインストルメンテーション ブレークポイントで一時停止しました (ディレクティブ \"{0}\")",
+ "Paused on DOM breakpoint": "DOM ブレークポイントで一時停止しました",
+ "Paused on WebGL Error instrumentation breakpoint, error \"{0}\"": "WebGL エラー インストルメンテーション ブレークポイントで一時停止 (エラー \"{0}\")",
+ "Paused on XMLHttpRequest or fetch": "XMLHttpRequest またはフェッチで一時停止しました",
+ "Paused on assert": "アサートで一時停止しました",
+ "Paused on breakpoint": "ブレークポイントで一時停止しました",
+ "Paused on debug() call": "debug() 呼び出しで一時停止しました",
+ "Paused on debugger statement": "デバッガー ステートメントで一時停止しました",
+ "Paused on event listener": "イベント リスナーで一時停止しました",
+ "Paused on event listener breakpoint \"{0}\", triggered on \"{1}\"": "\"{1}\" でトリガーされたイベント リスナー ブレークポイント \"{0}\" で一時停止",
+ "Paused on exception": "例外で一時停止しました",
+ "Paused on frame entry": "フレーム エントリで一時停止しました",
+ "Paused on instrumentation breakpoint": "インストルメンテーション ブレークポイントで一時停止しました",
+ "Paused on instrumentation breakpoint \"{0}\"": "インストルメンテーション ブレークポイント \"{0}\" で一時停止",
+ "Paused on {0}": "{0} で一時停止",
+ "Pick Breakpoint": "ブレークポイントの選択",
+ "Pick the node.js process to attach to": "アタッチする node.js プロセスを選択してください",
+ "Please enter a number": "数を入力してください",
+ "Please enter a number greater than 1": "1 より大きい数値を入力してください",
+ "Please stop the running profile before starting a new one.": "新しいプロファイルを開始するのは、実行中のものを停止した後にしてください。",
+ "Process picker failed ({0})": "プロセス ピッカーが失敗しました ({0})",
+ "Profile duration in seconds, e.g \"5\"": "プロファイルの期間 (秒) (例: \"5\")",
+ "Profiling": "プロファイル",
+ "Profiling with breakpoints enabled can change the performance of your code. It can be useful to validate your findings with the \"duration\" or \"manual\" termination conditions.": "ブレークポイントを有効にしてプロファイルを実行すると、コードのパフォーマンスが変化することがあります。\"期間\" または \"手動\" の終了条件で結果を検証するとよい場合があります。",
+ "Read More": "続きを読む",
+ "Request Animation Frame": "アニメーション フレームの要求",
+ "Resume AudioContext": "AudioContext の再開",
+ "Return value": "戻り値",
+ "Run Current File": "現在のファイルの実行",
+ "Run Node.js tool": "Node.js ツールの実行",
+ "Run Script: {0}": "スクリプトの実行: {0}",
+ "Run Script: {0} ({1})": "スクリプトの実行: {0} ({1})",
+ "Run for a specific amount of time": "特定の期間にわたって実行します",
+ "Run until a specific breakpoint is hit": "特定のブレークポイントにヒットするまで実行します",
+ "Run until manually stopped": "手動で停止されるまで実行します",
+ "Runs a Node.js command-line installed in the workspace node_modules.": "ワークスペース node_modules にインストールされている Node.js コマンドラインを実行します。",
+ "Saving": "保存中",
+ "Script": "スクリプト",
+ "Script Blocked by Content Security Policy": "コンテンツ セキュリティ ポリシーによってスクリプトがブロックされた",
+ "Script First Statement": "スクリプトの最初のステートメント",
+ "Select a tab": "タブを選択してください",
+ "Select a tool to run": "実行するツールの選択",
+ "Select current working directory for new terminal": "新しいターミナルの作業ディレクトリを選択してください",
+ "Select test configuration to run": "実行するテスト構成を選択する",
+ "Select the page where you want to open the devtools": "devtools を開くページを選択します",
+ "Select the session you want to inspect:": "検査するセッションを選択します。",
+ "Seller Reporting Phase Start": "販売者レポート フェーズの開始",
+ "Seller Scoring Phase Start": "販売者スコアリング フェーズの開始",
+ "Set innerHTML": "innerHTML の設定",
+ "Skipped by skipFiles": "skipFiles によってスキップされました",
+ "Skipped by smartStep": "smartStep によりスキップされました",
+ "Some breakpoints might not work in your version of Node.js. We recommend upgrading for the latest bug, performance, and security fixes. Details: https://aka.ms/AAcsvqm": "一部のブレークポイントは、お使いのバージョンの Node.js では動作しない可能性があります。最新のバグ、パフォーマンス、セキュリティの修正プログラムのためにアップグレードすることをお勧めします。詳細情報: https://aka.ms/AAcsvqm",
+ "Source not a source map": "ソースがソース マップではありません",
+ "Source not found": "ソースが見つかりません",
+ "Stack frame not found": "スタック フレームが見つかりません",
+ "Starting profile...": "プロファイルを開始しています...",
+ "Stopping profile...": "プロファイルを停止しています...",
+ "Suspend AudioContext": "AudioContext の中断",
+ "Syntax error setting breakpoint with condition {0} on line {1}: {2}": "行 {1} での条件 {0} のブレークポイントの設定で構文エラーが発生しました: {2}",
+ "Target page not found. You may need to update your \"urlFilter\" to match the page you want to debug.": "ターゲット ページが見つかりません。デバッグするページと一致するように \"urlFilter\" を更新する必要がある場合があります。",
+ "The Node version in \"{0}\" is outdated (version {1}), we require at least Node 8.x.": "\"{0}\" にある Node のバージョンが古くなっています (バージョン {1})。少なくとも Node 8.x が必要です。",
+ "The URL provided is invalid": "指定された URL が無効です",
+ "The browser process exited with code {0} before connecting to the debug server. Make sure the `runtimeExecutable` is configured correctly and that it can run without errors.": "デバッグ サーバーに接続する前に、ブラウザーの処理がコード {0} により終了しました。'runtimeExecutable' が正しく構成されていて、エラーなしで実行できることを確認してください。",
+ "The configured `cwd` {0} does not exist.": "構成された 'cwd' {0} が存在しません。",
+ "The configured `cwd` {0} is not a folder.": "構成された 'cwd' {0} はフォルダーではありません。",
+ "This is a missing file path referenced by a sourcemap. Would you like to debug the compiled version instead?": "これはソースマップで参照されている、不足しているファイル パスです。代わりにコンパイル済みのバージョンをデバッグしますか?",
+ "Thread is not paused": "スレッドが一時停止されていません",
+ "Thread is not paused on exception": "スレッドが例外で一時停止されていません",
+ "Thread not found": "スレッドが見つかりません",
+ "Type of profile": "プロファイルの種類",
+ "URL contains \"{0}\"": "URL に \"{0}\" が含まれています",
+ "UWP webview debugging is not available on your platform.": "UWP WebView デバッグは、お使いのプラットフォームでは使用できません。",
+ "Unable to attach to browser": "ブラウザーにアタッチできません",
+ "Unable to evaluate": "評価できません",
+ "Unable to evaluate on async stack frame": "非同期スタック フレームで評価できません",
+ "Unable to find an installation of the browser on your system. Try installing it, or providing an absolute path to the browser in the \"runtimeExecutable\" in your launch.json.": "システムにブラウザーのインストールが見つかりません。インストールするか、launch.json の \"runtimeExecutable\" でブラウザーへの絶対パスを指定してみてください。",
+ "Unable to find {0} version {1}. Available auto-discovered versions are: {2}. You can set the \"runtimeExecutable\" in your launch.json to one of these, or provide an absolute path to the browser executable.": "{0} バージョン {1} が見つかりません。自動検出された使用可能なバージョン: {2}。launch.json で \"runtimeExecutable\" をそれらのうちの 1 つに設定するか、またはブラウザーの実行可能ファイルへの絶対パスを指定することができます。",
+ "Unable to launch browser: \"{0}\"": "ブラウザーを起動できません: \"{0}\"",
+ "Unable to pause": "一時停止できません",
+ "Unable to pretty print": "再フォーマットできません",
+ "Unable to resume": "再開できません",
+ "Unable to retrieve source content": "ソース コンテンツを取得できません",
+ "Unable to set variable value": "変数値を設定できません",
+ "Unable to step in": "ステップ インできません",
+ "Unable to step next": "次のステップに進むことができません",
+ "Unable to step out": "ステップ アウトできません",
+ "Unbound breakpoint": "バインドされていないブレークポイント",
+ "Uncaught Exceptions": "キャッチされない例外",
+ "Unknown error": "不明なエラー",
+ "VS Code can provide better debugging experience for WebAssembly via \"DWARF Debugging\" extension. Would you like to install it?/\"DWARF Debugging\" is the extension name and should not be localized.": "VS Codeでは、\"DWARF Debugging\" 拡張機能を使用して WebAssembly のデバッグ エクスペリエンスを向上させることができます。インストールしますか?",
+ "Variable not found": "変数が見つかりません",
+ "Variables not available in async stacks": "非同期スタックでは変数を使用できません",
+ "WARNING: Processing source-maps of {0} took longer than {1} ms so we continued execution without waiting for all the breakpoints for the script to be set.": "警告: {0} のソース マップの処理に {1} ミリ秒より長くかかったため、スクリプトのすべてのブレークポイントが設定されるのを待たずに実行を継続しました。",
+ "We can't launch a browser in debug mode from here. If you want to debug this webpage, open this workspace from VS Code on your desktop.": "こちらからデバッグ モードでブラウザーを起動することはできません。この Web ページをデバッグする場合は、デスクトップ上の VS Code からこのワークスペースを開いてください。",
+ "We can't launch a browser in debug mode from here. Open this workspace in VS Code on your desktop to enable debugging.": "こちらからデバッグ モードでブラウザーを起動することはできません。デバッグを有効にするには、このワークスペースをデスクトップ上の VS Code で開きます。",
+ "WebGL Error Fired": "WebGL エラーが発生",
+ "WebGL Warning Fired": "WebGL 警告が発生",
+ "With Block": "With ブロック",
+ "Would you like to save a configuration in your launch.json for easy access later?": "後で簡単にアクセスできるように、launch.json の構成を保存しますか?",
+ "XHR/Fetch URLs": "XHR/フェッチ URL",
+ "Yes": "はい",
+ "You may install the `{}` module via npm for enhanced WebAssembly debugging": "強化された WebAssembly デバッグのために npm を使用して `{}` モジュールをインストールできます",
+ "You need to open a workspace folder to debug npm scripts.": "npm スクリプトをデバッグするには、ワークスペース フォルダーを開く必要があります。",
+ "You're running an outdated version of Node.js. We recommend upgrading for the latest bug, performance, and security fixes.": "古いバージョンの Node.js を実行しています。最新のバグ、パフォーマンス、およびセキュリティ修正プログラムのために、アップグレードすることをお勧めします。",
+ "an old debug session": "古いデバッグ セッション",
+ "breakpoint.provisionalBreakpoint": "breakpoint.provisionalBreakpoint",
+ "path does not exist": "パスが存在しません",
+ "process id: {0} ({1})": "プロセス ID: {0} ({1})",
+ "process id: {0}, debug port: {1} ({2})": "プロセス ID: {0}、デバッグ ポート: {1} ({2})",
+ "setInterval fired": "setInterval が発生",
+ "setTimeout fired": "setTimeout が発生",
+ "the configured userDataDir": "構成された userDataDir",
+ "{0} (couldn't describe: {1})": "{0} (説明できませんでした: {1})",
+ "{0} Click to Stop Profiling": "{0} プロファイルを停止するにはクリックしてください",
+ "{0} Click to Stop Profiling ({1} sessions)": "{0} プロファイルを停止するにはクリックしてください ({1} 個のセッション)",
+ "{0} Click to Stop Profiling ({1})": "{0} プロファイルを停止するにはクリックしてください ({1})"
}
}
}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-ja/translations/extensions/ms-vscode.node-debug.i18n.json b/i18n/vscode-language-pack-ja/translations/extensions/ms-vscode.node-debug.i18n.json
deleted file mode 100644
index bfe917696c..0000000000
--- a/i18n/vscode-language-pack-ja/translations/extensions/ms-vscode.node-debug.i18n.json
+++ /dev/null
@@ -1,183 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "dist/node/extension/autoAttach": {
- "process.with.pid.label": "自動アタッチ ({0})"
- },
- "dist/node/extension/cluster": {
- "child.process.with.pid.label": "子プロセス {0}"
- },
- "dist/node/extension/configurationProvider": {
- "NVM_DIR.not.found.message": "'runtimeVersion' 属性には Node.js バージョン マネージャー 'nvm' または 'nvs' が必要です。",
- "NVM_HOME.not.found.message": "'runtimeVersion' 属性には Node.js バージョン マネージャー 'nvm-windows' または 'nvs' が必要です。",
- "NVS_HOME.not.found.message": "'runtimeVersion' 属性には Node.js バージョン マネージャー 'nvs' が必要です。",
- "mern.starter.explanation": "'{0}' プロジェクトのための起動構成を生成しました。",
- "node.launch.config.name": "プログラムの起動",
- "outFiles.explanation": "生成された JavaScript をカバーするように、 'outFiles' 属性で glob パターンを調整します。",
- "program.guessed.from.package.json.explanation": "'package.json' を基に起動構成を生成しました。",
- "program.not.found.message": "デバッグするプログラムが見つかりません",
- "runtime.version.not.found.message": "'{1}' に Node.js バージョン '{0}' はインストールされていません。",
- "useWslDeprecationWarning.doNotShowAgain": "今後表示しない",
- "useWslDeprecationWarning.title": "属性 'useWSL' は非推奨です。代わりに 'Remote WSL' 拡張機能を使用してください。詳細は、[こちら]({0})をクリックしてください。"
- },
- "dist/node/extension/processPicker": {
- "cannot.enable.debug.mode.error": "プロセスに添付: プロセス '{0}' ({1}) に対してデバッグ モードを有効にできません。",
- "pickNodeProcess": "アタッチする node.js プロセスを選択してください",
- "pid.error": "プロセスにアタッチ: 処理 '{0}' をデバッグ モードにできません。",
- "process.id.error": "プロセスにアタッチ: '{0}' はプロセス ID ではないようです。",
- "process.id.port": "プロセス ID: {0}、デバッグ ポート: {1}",
- "process.id.port.legacy": "プロセス id: {0}、デバッグ ポート: {1} (レガシー プロトコル)",
- "process.id.port.signal": "プロセス ID: {0}、デバッグ ポート: {1} ({2})",
- "process.id.signal": "プロセス ID: {0} ({1})",
- "process.picker.error": "プロセス ピッカーが失敗しました ({0})"
- },
- "dist/node/extension/protocolDetection": {
- "protocol.switch.legacy.detected": "検出されたため、レガシ プロトコルでデバッグしています。",
- "protocol.switch.legacy.version": "Node.js {0} が検出されたため、以前のプロトコルでデバッグしています。",
- "protocol.switch.unknown.error": "Node.js のバージョンを判別できなかったため、インスペクター プロトコルをデバッグしています ({0})"
- },
- "dist/node/nodeDebug": {
- "VSND2001": "PATH にランタイム '{0}' が見つかりません。'{0}' がインストールされていることをご確認ください。",
- "VSND2002": "プログラム '{0}' を起動できません。ソース マップを構成することによって解決される可能性があります。",
- "VSND2003": "プログラム '{0}' を起動できません。'{1}' 属性を設定することによって解決される可能性があります。",
- "VSND2009": "対応する JavaScript が見つからないため、プログラム '{0}' を起動できません。",
- "VSND2010": "ランタイム プロセスに接続できません (理由: {0})。",
- "VSND2011": "ターミナル ({0}) でデバッグ ターゲットを起動できません。",
- "VSND2015": "Node.js が応答しないため、要求 '{_request}' がキャンセルされました。",
- "VSND2016": "Node.js は適切な期間内に要求 '{_request}' に応答しませんでした。",
- "VSND2017": "デバッグ ターゲット ({0}) を起動できません。",
- "VSND2018": "利用できる呼び出し履歴はありません ({_command}: {_error})。",
- "VSND2019": "内部モジュール {0} が見つかりません。",
- "VSND2022": "プログラムが JavaScript の外部で一時停止したため、呼び出し履歴はありません。",
- "VSND2023": "利用できる呼び出し履歴がありません。",
- "VSND2028": "コンソールの種類 '{0}' が不明です。",
- "VSND2029": "ファイル ({0}) から環境変数を読み込めません。",
- "VSND2033": "ランタイムに接続できません。ランタイムが 'レガシ' デバッグ モードであることを確認してください。",
- "VSND2034": "'legacy' プロトコルを介してランタイムに接続できません。'inspector' プロトコルを使用してください。",
- "anonymous.function": "(匿名関数)",
- "attribute.path.not.absolute": "属性 '{0}' が絶対パスになっていません ('{1}')。'{2}' を接頭辞として追加して絶対パスにすることをご検討ください。",
- "attribute.path.not.exist": "属性 '{0}' がありません ('{1}')。",
- "attribute.wls.not.exist": "Windows Subsystem Linux のインストールが見つかりません",
- "eval.invalid.expression": "正しくない式: {0}",
- "eval.not.available": "使用不可",
- "exception.paused.promise.rejection": "Promise の失敗で一時停止",
- "exception.promise.rejection": "Promise の失敗",
- "exception.promise.rejection.text": "Promise の失敗 ({0})",
- "exceptions.all": "すべての例外",
- "exceptions.rejects": "Promise が失敗",
- "exceptions.uncaught": "キャッチされない例外",
- "file.on.disk.changed": "ディスク上のファイルが変更されているため検証されませんでした。デバッグ セッションを再開してください。",
- "more.information": "詳細情報",
- "node.console.title": "Node デバッグ コンソール",
- "origin.core.module": "読み取り専用のコア モジュール",
- "origin.from.node": "Node.js からの読み取り専用コンテンツ",
- "origin.from.remote.node": "リモート Node.js からの読み取り専用コンテンツ",
- "origin.inlined.source.map": "ソース マップからの読み取り専用のインライン コンテンツ",
- "program.path.case.mismatch.warning": "プログラム パスで使用されている文字と、ディスク上のファイルの文字の間で大文字と小文字が異なっています。ブレークポイントがヒットしない可能性があります。",
- "reason.description.breakpoint": "ブレークポイントで一時停止",
- "reason.description.debugger_statement": "デバッガー ステートメントで一時停止しました",
- "reason.description.entry": "エントリで一時停止",
- "reason.description.exception": "例外で一時停止",
- "reason.description.restart": "フレーム エントリで一時停止しました",
- "reason.description.step": "ステップで一時停止",
- "reason.description.user_request": "ユーザー要求で一時停止しました",
- "scope.block": "ブロック",
- "scope.catch": "Catch",
- "scope.closure": "クロージャ",
- "scope.exception": "例外",
- "scope.global": "GLOBAL",
- "scope.local": "LOCAL",
- "scope.local.with.count": "ローカル ({1} の {0})",
- "scope.script": "スクリプト",
- "scope.unknown": "不明なスコープの種類: {0}",
- "scope.with": "使用",
- "setVariable.error": "値の設定がサポートされていません",
- "source.not.found": "内容を取得できませんでした。",
- "source.skipFiles": "'skipFiles' のためにスキップされました",
- "source.smartstep": "'smartStep' のためにスキップされました",
- "sourcemapping.fail.message": "生成コードが見つからなかったため、ブレークポイントは無視されました (ソース マップに問題がありますか?)。"
- },
- "dist/node/nodeV8Protocol": {
- "not.connected": "ランタイムに接続されていません",
- "runtime.timeout": "{0} ミリ秒後にタイムアウト",
- "runtime.unresponsive": "Node.js が応答しないため、キャンセルされました"
- },
- "package": {
- "attach.node.process": "Node プロセスにアタッチ (レガシ)",
- "debug.node.showUseWslIsDeprecatedWarning.description": "'useWSL' 属性を使用するときに警告を表示するかどうかを制御します。",
- "extension.description": "Node.js デバッグ サポート(バージョン 8.0 未満)",
- "launch.args.description": "プログラムに渡すコマンド ライン引数。",
- "node.address.description": "デバッグ対象のプロセスの TCP/IP アドレス (Node.js 5.0 以上の場合のみ)。既定値は 'localhost' です。",
- "node.attach.config.name": "アタッチ",
- "node.attach.processId.description": "アタッチするプロセスの ID。",
- "node.disableOptimisticBPs.description": "どのファイルについても、そのファイルのソースマップが読み込まれるまではブレークポイントを設定しないでください。",
- "node.label": "Node.js (レガシ)",
- "node.launch.autoAttachChildProcesses.description": "デバッガーを自動的に新しい子プロセスにアタッチします。",
- "node.launch.config.name": "起動",
- "node.launch.console.description": "デバッグ ターゲットの起動場所です。",
- "node.launch.console.externalTerminal.description": "ユーザー設定を介して構成できる外部ターミナルです",
- "node.launch.console.integratedTerminal.description": "VS Code の統合ターミナルです",
- "node.launch.console.internalConsole.description": "VS Code デバッグ コンソールです (プログラムからの入力の読み取りはサポートしていません)",
- "node.launch.cwd.description": "デバッグ対象プログラムの作業ディレクトリへの絶対パス。",
- "node.launch.env.description": "環境変数がプログラムに渡されました。値 'null' を指定すると、変数が環境から削除されます。",
- "node.launch.envFile.description": "環境変数定義が含まれているファイルへの絶対パス。",
- "node.launch.externalConsole.deprecationMessage": "属性 'externalConsole' は非推奨です。代わりに 'console' を使用してください。",
- "node.launch.outputCapture.description": "出力メッセージのキャプチャ元の場所: デバッグ API、または stdout/stderr ストリーム。",
- "node.launch.program.description": "プログラムへの絶対パス。生成される値は、package.json ファイルと開かれたファイルを参照して推測されます。この属性を編集してください。",
- "node.launch.runtimeArgs.description": "省略可能な引数がランタイム実行可能ファイルに渡されました。",
- "node.launch.runtimeExecutable.description": "使用するランタイム。絶対パス、または PATH 上で使用可能なランタイムの名前のいずれかです。省略した場合は、`node` とみなされます。",
- "node.launch.runtimeVersion.description": "使用する `node` ランタイムのバージョン。`nvm` が必要です。",
- "node.launch.useWSL.deprecation": "'useWSL' は廃止され、サポートが終了されます。代わりに 'Remote - WSL' 拡張機能を使用します。",
- "node.launch.useWSL.description": "Windows Subsystem for Linux を使用します。",
- "node.localRoot.description": "プログラムの入ったローカル ディレクトリへのパス。",
- "node.port.description": "添付先のデバッグ ポート。既定は 5858 です。",
- "node.processattach.config.name": "プロセスにアタッチ",
- "node.protocol.auto.description": "最適なプロトコルを自動的に検出しようとします。Node 8.0 以上の起動には 'inspector' を選択します。",
- "node.protocol.description": "使用する Node.js デバッグ プロトコルです。",
- "node.protocol.inspector.description": "Node.js バージョン 6.3 以上でサポートされる新しいプロトコル",
- "node.protocol.legacy.description": "Node.js バージョン 8.0 未満でサポートされている古いプロトコル",
- "node.remoteRoot.description": "プログラムの入ったリモート ディレクトリへの絶対パス。",
- "node.restart.description": "Node.js の終了後にセッションを再起動します。",
- "node.showAsyncStacks.description": "現在の呼び出し履歴の原因となった非同期呼び出しを表示します。'inspector' プロトコルのみ。",
- "node.snippet.attach.description": "実行中のノード プログラムにアタッチします",
- "node.snippet.attach.label": "Node.js: アタッチ",
- "node.snippet.attachProcess.description": "プロセス ピッカーを開いて、アタッチ先の node プロセスを選択します",
- "node.snippet.attachProcess.label": "Node.js: プロセスへのアタッチ",
- "node.snippet.electron.description": "Electron のメイン プロセスをデバッグします",
- "node.snippet.electron.label": "Node.js: Electron (メイン)",
- "node.snippet.gulp.description": "gulp タスクをデバッグします (プロジェクトにローカルの gulp がインストールされていることを確認します)",
- "node.snippet.gulp.label": "Node.js: Gulp タスク",
- "node.snippet.launch.description": "ノード プログラムをデバッグ モードで起動します",
- "node.snippet.launch.label": "Node.js: プログラムの起動",
- "node.snippet.mocha.description": "Mocha テストをデバッグします",
- "node.snippet.mocha.label": "Node.js: Mocha テスト",
- "node.snippet.nodemon.description": "nodemon を使用してソース変更時にデバッグ セッションを再起動します",
- "node.snippet.nodemon.label": "Node.js: nodemon のセットアップ",
- "node.snippet.npm.description": "npm の `debug` スクリプトにより Node プログラムを起動します",
- "node.snippet.npm.label": "Node.js: NPM による起動",
- "node.snippet.remoteattach.description": "リモート ノード プログラムのデバッグ ポートにアタッチします",
- "node.snippet.remoteattach.label": "Node.js: リモート プログラムにアタッチする",
- "node.snippet.yo.description": "yeoman ジェネレーターをデバッグします (プロジェクト フォルダーで `npm link` を実行してインストールします)",
- "node.snippet.yo.label": "Node.js: Yeoman ジェネレーター",
- "node.sourceMapPathOverrides.description": "ソース ファイルの場所をソースマップが示している場所からディスク上の場所に書き換えるための一連のマッピングです。",
- "node.sourceMaps.description": "JavaScript ソース マップを使用します (存在する場合)。",
- "node.stopOnEntry.description": "起動後、プログラムを自動的に停止します。",
- "node.timeout.description": "Node.js への接続を再試行する期間 (ミリ秒単位)。既定値は 10000 ミリ秒です。",
- "open.loaded.script": "読み込み済みのスクリプトを開く",
- "outDir.deprecationMessage": "属性 'outDir' は非推奨です。代わりに 'outFiles' をご使用ください。",
- "outFiles.description": "ソース マップを有効にすると、これらの glob パターンにより、生成される JavaScript ファイルが指定されます。パターンが '!' で始まる場合、そのファイルは除外されます。指定しない場合、生成されるコードはそのソースと同じディレクトリ内にあると想定されます。例: '[\"${workspaceFolder}/out/**/*.js\"]'",
- "skipFiles.description": "デバッグ時にスキップするファイルの glob パターンの配列。パターン `/**` はすべての内部 Node.js モジュールに一致します。",
- "smartStep.description": "元のソースにマップできない生成コードを自動的にステップスルーします。",
- "start.with.stop.on.entry": "デバッグを開始して、エントリで停止する (レガシ)",
- "toggle.skipping.this.file": "このファイルのスキップを切り替え",
- "trace.description": "診断出力を生成します。これを true に設定する代わりに、コンマで区切られた 1 つ以上のセレクターの一覧を作成することができます。'verbose' セレクターにより、非常に詳細な出力が生成されます。"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-ja/translations/extensions/ms-vscode.node-debug2.i18n.json b/i18n/vscode-language-pack-ja/translations/extensions/ms-vscode.node-debug2.i18n.json
deleted file mode 100644
index 748db0867d..0000000000
--- a/i18n/vscode-language-pack-ja/translations/extensions/ms-vscode.node-debug2.i18n.json
+++ /dev/null
@@ -1,138 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "node_modules\\vscode-chrome-debug-core\\out/src/chrome/breakpoints": {
- "bp.fail.noscript": "ブレークポイント要求用のスクリプトが見つかりません",
- "bp.fail.unbound": "ブレークポイントは設定されていますが、まだバインドされていません",
- "invalidHitCondition": "次のヒット条件が無効です: {0}",
- "setBPTimedOut": "ブレークポイントの設定要求がタイムアウトになりました",
- "validateBP.notFound": "ターゲット パスが見つからないため、ブレークポイントは無視されました",
- "validateBP.sourcemapFail": "生成コードが見つからなかったため、ブレークポイントは無視されました (ソース マップに問題がありますか?)。"
- },
- "node_modules\\vscode-chrome-debug-core\\out/src/chrome/chromeDebugAdapter": {
- "exceptions.all": "すべての例外",
- "exceptions.promise_rejects": "Promise が失敗",
- "exceptions.uncaught": "キャッチされない例外"
- },
- "node_modules\\vscode-chrome-debug-core\\out/src/chrome/chromeTargetDiscoveryStrategy": {
- "attach.cannotConnect": "ターゲットに接続できません: {0}",
- "attach.devToolsAttached": "このターゲットにはアタッチできません。Chrome DevTools がこれにアタッチされている可能性があります: {0}",
- "attach.invalidResponse": "ターゲットからの応答が無効のようです。エラー: {0}。応答: {1}",
- "attach.invalidResponseArray": "ターゲットからの応答が無効のようです: {0}",
- "attach.noMatchingTarget": "{0} と一致する有効なターゲットが見つかりません。使用可能なページ: {1}",
- "attach.responseButNoTargets": "ターゲット アプリから応答を受け取りましたが、ターゲット ページが見つかりませんでした"
- },
- "node_modules\\vscode-chrome-debug-core\\out/src/chrome/stackFrames": {
- "scope.exception": "例外",
- "skipReason": "('{0}' によりスキップされました)"
- },
- "node_modules\\vscode-chrome-debug-core\\out/src/chrome/stoppedEvent": {
- "reason.description.breakpoint": "ブレークポイントで一時停止",
- "reason.description.caughtException": "キャッチした例外で一時停止しました",
- "reason.description.debugger_statement": "デバッガー ステートメントで一時停止しました",
- "reason.description.entry": "エントリで一時停止",
- "reason.description.exception": "例外で一時停止",
- "reason.description.promiseRejection": "Promise の拒否で一時停止しました",
- "reason.description.restart": "フレーム エントリで一時停止しました",
- "reason.description.step": "ステップで一時停止",
- "reason.description.uncaughtException": "キャッチされない例外で一時停止しました",
- "reason.description.user_request": "ユーザー要求で一時停止しました"
- },
- "node_modules\\vscode-chrome-debug-core\\out/src/errors": {
- "VSND2010": "ランタイム プロセスに接続できません。{0} ミリ秒後にタイムアウトになります - (理由: {1})。",
- "VSND2023": "利用できる呼び出し履歴がありません。",
- "attribute.path.not.absolute": "属性 '{0}' が絶対パスになっていません ('{1}')。'{2}' を接頭辞として追加して絶対パスにすることをご検討ください。",
- "attribute.path.not.exist": "属性 '{0}' がありません ('{1}')。",
- "eval.not.available": "使用不可",
- "failed.to.read.port": "ファイル {dataDirPath} を読み取れませんでした。{error}",
- "more.information": "詳細情報",
- "not.connected": "ランタイムに接続されていません",
- "port.file.contents.invalid": "\"{dataDirPath}\" にあるファイルには有効なポート データが含まれていませんでした。内容: {dataDirContents}",
- "restartFrame.cannot": "フレームを再起動できません",
- "setVariable.error": "値の設定がサポートされていません",
- "source.not.found": "内容を取得できませんでした。"
- },
- "node_modules\\vscode-chrome-debug-core\\out/src/transformers/baseSourceMapTransformer": {
- "origin.inlined.source.map": "ソース マップからの読み取り専用のインライン コンテンツ"
- },
- "node_modules\\vscode-chrome-debug-core\\out/src/transformers/remotePathTransformer": {
- "localRootAndRemoteRoot": "localRoot と remoteRoot の両方を指定する必要があります。"
- },
- "out/src/errors": {
- "VSND2001": "PATH にランタイム '{0}' が見つかりません。'{0}' はインストールされていますか?",
- "VSND2002": "プログラム '{0}' を起動できません。ソース マップを構成することによって解決される可能性があります。",
- "VSND2003": "プログラム '{0}' を起動できません。'{1}' 属性を設定することによって解決される可能性があります。",
- "VSND2009": "対応する JavaScript が見つからないため、プログラム '{0}' を起動できません。",
- "VSND2011": "ターミナル ({0}) でデバッグ ターゲットを起動できません。",
- "VSND2017": "デバッグ ターゲット ({0}) を起動できません。",
- "VSND2028": "コンソールの種類 '{0}' が不明です。",
- "VSND2029": "ファイル ({0}) から環境変数を読み込めません。",
- "VSND2035": "拡張機能 ({0}) をデバッグできません。"
- },
- "out/src/nodeDebugAdapter": {
- "VSND2001": "PATH にランタイム '{0}' が見つかりません。'{0}' がインストールされていることをご確認ください。",
- "attribute.path.not.absolute": "属性 '{0}' が絶対パスになっていません ('{1}')。'{2}' を接頭辞として追加して絶対パスにすることをご検討ください。",
- "attribute.path.not.exist": "属性 '{0}' がありません ('{1}')。",
- "attribute.wsl.not.exist": "Windows Subsystem for Linux インストールが見つかりません。",
- "more.information": "詳細情報",
- "node.console.title": "Node デバッグ コンソール",
- "origin.core.module": "読み取り専用のコア モジュール",
- "origin.from.node": "Node.js からの読み取り専用コンテンツ",
- "program.path.case.mismatch.warning": "プログラム パスで使用されている文字と、ディスク上のファイルの文字の間で大文字と小文字が異なっています。ブレークポイントがヒットしない可能性があります。"
- },
- "package": {
- "extension.description": "Node.js デバッグ サポート",
- "extensionHost.label": "VS Code 拡張機能の開発",
- "extensionHost.launch.config.name": "拡張機能の起動",
- "extensionHost.launch.env.description": "拡張機能ホストに渡される環境変数。",
- "extensionHost.launch.runtimeExecutable.description": "VS Code への絶対パス。",
- "extensionHost.launch.stopOnEntry.description": "起動後に拡張機能ホストを自動的に停止します。",
- "extensionHost.snippet.launch.description": "デバッグ モードで VS Code 拡張機能を起動します",
- "extensionHost.snippet.launch.label": "VS Code 拡張機能の開発",
- "node.address.description": "デバッグ ポートの TCP/IP アドレス。既定値は 'localhost' です。",
- "node.attach.config.name": "アタッチ",
- "node.attach.localRoot.description": "'remoteRoot' に対応するローカル ソース ルート。",
- "node.attach.processId.description": "アタッチするプロセスの ID。",
- "node.attach.remoteRoot.description": "リモート ホストのソース ルート。",
- "node.diagnosticLogging.deprecationMessage": "'diagnosticLogging' は非推奨です。代わりに 'trace' をご使用ください。",
- "node.diagnosticLogging.description": "true の場合、アダプターはその独自の診断をコンソールに記録します",
- "node.disableOptimisticBPs.description": "どのファイルについても、そのファイルのソースマップが読み込まれるまではブレークポイントを設定しないでください。",
- "node.enableSourceMapCaching.description": "ソースマップが URL からダウンロードされたら、それをディスクにキャッシュします。",
- "node.label": "Node.js v6.3+ (インスペクター プロトコル経由)",
- "node.launch.args.description": "プログラムに渡すコマンド ライン引数。",
- "node.launch.config.name": "起動",
- "node.launch.console.description": "デバッグ ターゲットを起動する場所: 内部コンソール、統合ターミナル、外部ターミナル。",
- "node.launch.cwd.description": "デバッグ対象プログラムの作業ディレクトリへの絶対パス。",
- "node.launch.env.description": "環境変数がプログラムに渡されました。値 'null' を指定すると、変数が環境から削除されます。",
- "node.launch.envFile.description": "環境変数定義が含まれているファイルへの絶対パス。",
- "node.launch.outputCapture.description": "出力メッセージのキャプチャ元の場所: デバッグ API、または stdout/stderr ストリーム。",
- "node.launch.program.description": "プログラムへの絶対パス。",
- "node.launch.runtimeArgs.description": "省略可能な引数がランタイム実行可能ファイルに渡されました。",
- "node.launch.runtimeExecutable.description": "使用するランタイム。絶対パスまたは PATH で使用可能なランタイムの名前。省略される場合、'node' が使用されます。",
- "node.outFiles.description": "ソース マップが有効にされている場合、これらの glob パターンは、生成された JavaScript ファイルを指定します。パターンが '!' で始まる場合、ファイルは除外されます。指定されない場合、生成されたコードは、そのソースと同じディレクトリにあるものと見なされます。",
- "node.port.description": "アタッチ先のデバッグ ポート。既定値は 9229 です。",
- "node.processattach.config.name": "プロセスにアタッチ",
- "node.restart.description": "Node.js の終了後にセッションを再起動します。",
- "node.showAsyncStacks.description": "現在の呼び出し履歴にまで至った非同期呼び出しを表示します。",
- "node.skipFiles.description": "デバッグ時にスキップするファイル名またはフォルダー名の配列、または glob パターン。",
- "node.smartStep.description": "元のソースにマップできない生成コードを自動的にステップスルーします。",
- "node.sourceMapPathOverrides.description": "ソース ファイルの場所をソースマップに指定されている内容からディスク上の場所へ書き換えるための一連のマッピング。詳しくは Readme をご覧ください。",
- "node.sourceMaps.description": "JavaScript ソース マップを使用します (存在する場合)。",
- "node.stopOnEntry.description": "起動後、プログラムを自動的に停止します。",
- "node.timeout.description": "Node.js への接続を再試行する期間 (ミリ秒単位)。既定値は 10000 ミリ秒です。",
- "node.trace.description": "'true' の場合、デバッガーはトレース情報をファイルに記録します。'verbose' の場合、コンソールでのログの表示も行います。",
- "node.verboseDiagnosticLogging.deprecationMessage": "'verboseDiagnosticLogging' は非推奨です。代わりに 'trace' をご使用ください。",
- "node.verboseDiagnosticLogging.description": "true の場合、アダプターはクライアントおよびターゲットとのすべてのトラフィック (および 'diagnosticLogging' によって記録される情報) を記録します",
- "outDir.deprecationMessage": "属性 'outDir' は非推奨です。代わりに 'outFiles' をご使用ください。",
- "toggle.skipping.this.file": "このファイルのスキップを切り替え",
- "workspaceTrust": "このワークスペースでコードをデバッグするには、信頼が必要です。"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-ja/translations/extensions/ms-vscode.remotehub.i18n.json b/i18n/vscode-language-pack-ja/translations/extensions/ms-vscode.remotehub.i18n.json
deleted file mode 100644
index 1b5ffbdd1b..0000000000
--- a/i18n/vscode-language-pack-ja/translations/extensions/ms-vscode.remotehub.i18n.json
+++ /dev/null
@@ -1,81 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "package": {
- "colors.added": "Color for added resources",
- "colors.conflict": "Color for resources with conflicts",
- "colors.deleted": "Color for deleted resources",
- "colors.incomingAdded": "Color for incoming added resources",
- "colors.incomingDeleted": "Color for incoming deleted resources",
- "colors.incomingModified": "Color for incoming modified resources",
- "colors.incomingRenamed": "Color for incoming renamed resources",
- "colors.modified": "Color for modified resources",
- "colors.possibleConflict": "Color for resources with possible conflicts",
- "command.timeline.compareWithSelected": "Compare with Selected",
- "command.timeline.copyCommitId": "Copy Commit ID",
- "command.timeline.copyCommitMessage": "Copy Commit Message",
- "command.timeline.openDiff": "Open Changes",
- "command.timeline.openOnGitHub": "Open on GitHub",
- "command.timeline.selectForCompare": "Select for Compare",
- "commands.addRepositoryToWorkspace": "Add Remote Repository to Workspace...",
- "commands.clone": "Clone Repository Locally...",
- "commands.commit": "Commit",
- "commands.continueOn": "Continue on...",
- "commands.createBranch": "Create New Branch...",
- "commands.createBranchFrom": "Create New Branch from...",
- "commands.createDraftPullRequest": "Create a Draft Pull Request",
- "commands.createPullRequest": "Create a Pull Request",
- "commands.deleteAllLocalRepositoryData": "Delete All Local Repository Data",
- "commands.deleteLocalRepositoryData": "Delete Local Repository Data...",
- "commands.discardAllChanges": "Discard All Changes",
- "commands.discardChanges": "Discard Changes",
- "commands.enableIndexing": "Enable Search Indexing",
- "commands.exportPatch": "Export Changes...",
- "commands.fetch": "Fetch",
- "commands.keepChanges": "Keep Changes",
- "commands.openChanges": "Open Changes",
- "commands.openFile": "Open File",
- "commands.openInCodespaces": "Open in Codespaces...",
- "commands.openOnDesktop": "Reopen on the Desktop",
- "commands.openOnRemote": "Open on GitHub",
- "commands.openOnWeb": "Reopen on the Web",
- "commands.openRepository": "Open Remote Repository...",
- "commands.pull": "Pull",
- "commands.stageAllChanges": "Stage All Changes",
- "commands.stageChanges": "Stage Changes",
- "commands.switchToBranch": "Switch to Branch...",
- "commands.sync": "Sync (Pull & Push)",
- "commands.unstageAllChanges": "Unstage All Changes",
- "commands.unstageChanges": "Unstage Changes",
- "config.autoFetch.enabled": "Specifies whether to periodically fetch from the upstream repository",
- "config.autoFetch.interval": "Specifies the interval, in seconds, to periodically fetch from the upstream repository",
- "config.search.download.corsProxy": "Specifies the proxy to use when downloading repository indicies from a browser context",
- "config.search.download.enabled": "Specifies whether text search should download an index of the repository in order to provide more accurate search results",
- "config.search.download.repoLimit": "Specifies the maximum number of search indicies cached per repo. Each reference requires a separate search index",
- "config.search.download.sizeLimit": "Specifies the size (in MB) of search index cache. The search cache is located in the extension's global storage folder",
- "config.staging.enabled": "Specifies whether to enable the staging of changes before committing",
- "config.staging.smart": "Specifies whether to automatically stage all changes, if there are none, before committing",
- "description": "Remotely browse and edit a GitHub repository",
- "displayName": "Remote Repositories (RemoteHub)",
- "displayNameInsiders": "RemoteHub (Insiders)",
- "submenu.branch": "Branch",
- "submenu.changes": "Changes",
- "submenu.commit": "Commit",
- "submenu.export": "Export",
- "submenu.pullRequest": "Pull Request",
- "viewsWelcome.debug": "Run and Debug are not available in this environment. To run and debug, you will need to continue in another Visual Studio Code setup.",
- "viewsWelcome.debug.continueOn": "[Continue on...](command:remoteHub.continueOn 'Continue working on this remote repository elsewhere')",
- "viewsWelcome.explorer": "Or, you can remotely open a repository or pull request directly from Visual Studio Code without cloning.\r\n[Open Remote Repository](command:remoteHub.openRepository 'Open a remote repository (e.g. from GitHub)')",
- "viewsWelcome.explorer.web": "Or, you can remotely open a repository or pull request directly from Visual Studio Code.\r\n[Open Remote Repository](command:remoteHub.openRepository 'Open a remote repository (e.g. from GitHub)')",
- "viewsWelcome.terminal": "Terminals are not available in this environment. To use the terminal, you will need to continue in another Visual Studio Code setup.",
- "viewsWelcome.terminal.continueOn": "[Continue on...](command:remoteHub.continueOn 'Continue working on this remote repository elsewhere')"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-ja/translations/extensions/notebook-markdown-extensions.i18n.json b/i18n/vscode-language-pack-ja/translations/extensions/notebook-markdown-extensions.i18n.json
deleted file mode 100644
index 306cf58502..0000000000
--- a/i18n/vscode-language-pack-ja/translations/extensions/notebook-markdown-extensions.i18n.json
+++ /dev/null
@@ -1,16 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "package": {
- "description": "Markdown に豊富な言語サポートを提供。",
- "displayName": "Markdown の Notebook の数式"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-ja/translations/extensions/npm.i18n.json b/i18n/vscode-language-pack-ja/translations/extensions/npm.i18n.json
deleted file mode 100644
index 73a1e6916f..0000000000
--- a/i18n/vscode-language-pack-ja/translations/extensions/npm.i18n.json
+++ /dev/null
@@ -1,77 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "dist/commands": {
- "noScriptFound": "選択範囲に有効な npm スクリプトを見つけられませんでした。"
- },
- "dist/features/bowerJSONContribution": {
- "json.bower.default": "既定の bower.json",
- "json.bower.error.repoaccess": "bower リポジトリに対する要求が失敗しました: {0}",
- "json.bower.latest.version": "最新"
- },
- "dist/features/packageJSONContribution": {
- "json.npm.error.repoaccess": "NPM リポジトリに対する要求が失敗しました: {0}",
- "json.npm.latestversion": "パッケージの現在の最新バージョン",
- "json.npm.majorversion": "最新のメジャー バージョン (1.x.x) と一致",
- "json.npm.minorversion": "最新のマイナー バージョン (1.2.x) と一致",
- "json.npm.version.hover": "最新バージョン: {0}",
- "json.package.default": "既定の package.json"
- },
- "dist/npmScriptLens": {
- "codelens.debug": "デバッグ"
- },
- "dist/npmView": {
- "autoDetectIsOff": "\"npm.autoDetect\" の設定は \"オフ\"です。",
- "noScripts": "スクリプトが見つかりません。"
- },
- "dist/scriptHover": {
- "debugScript": "スクリプトをデバッグする",
- "debugScript.tooltip": "デバッガーでスクリプトを実行する",
- "runScript": "スクリプトを実行",
- "runScript.tooltip": "スクリプトをタスクとして実行する"
- },
- "dist/tasks": {
- "npm.multiplePMWarning": "{0} を優先パッケージ マネージャーとして使用しています。{1} に対する複数のロック ファイルが見つかりました。 この問題を解決するには、優先パッケージ マネージャーと一致しないロック ファイルを削除するか、設定 \"npm.packageManager\" を \"auto\" 以外の値に変更してください。",
- "npm.multiplePMWarning.doNotShow": "今後表示しない",
- "npm.multiplePMWarning.learnMore": "詳細情報",
- "npm.parseError": "npm タスク検出: ファイル {0} を解析できませんでした"
- },
- "package": {
- "command.debug": "デバッグ",
- "command.openScript": "開く",
- "command.packageManager": "構成されたパッケージ マネージャーの取得",
- "command.refresh": "最新の情報に更新",
- "command.run": "実行",
- "command.runInstall": "インストールを実行",
- "command.runScriptFromFolder": "フォルダーで NPM スクリプトを実行...",
- "command.runSelectedScript": "スクリプトを実行",
- "config.npm.autoDetect": "npm スクリプトを自動的に検出するかどうかを制御します。",
- "config.npm.enableRunFromFolder": "エクスプローラー コンテキスト メニューから、フォルダーに含まれる NPM スクリプトの実行を有効にします。",
- "config.npm.enableScriptExplorer": "最上位の 'package.json' ファイルがない場合は、npm スクリプトのエクスプローラー ビューを有効にします。",
- "config.npm.exclude": "自動スクリプト検出から除外するフォルダーの glob パターンを構成します。",
- "config.npm.fetchOnlinePackageInfo": "https://registry.npmjs.org および https://registry.bower.io からデータをフェッチして、npm 依存関係に対してオート コンプリートとホバー機能に関する情報を提供します。",
- "config.npm.packageManager": "スクリプトを実行するために使用するパッケージ マネージャー。",
- "config.npm.packageManager.auto": "ロック ファイルとインストールされたパッケージ マネージャーに基づいてスクリプトを実行するためにどのパッケージ マネージャーを使用するかを自動検出します。",
- "config.npm.packageManager.npm": "スクリプトを実行するためのパッケージ マネージャーとして npm を使用します。",
- "config.npm.packageManager.pnpm": "スクリプトを実行するためのパッケージ マネージャーとして pnpm を使用します。",
- "config.npm.packageManager.yarn": "スクリプトを実行するためのパッケージ マネージャーとして yarn を使用します。",
- "config.npm.runSilent": "`--silent` オプションを使用して npm コマンドを実行する。",
- "config.npm.scriptExplorerAction": "npm スクリプト エクスプローラーで使用される既定のクリック アクション: 'open' または 'run'、既定値は 'open' です。",
- "config.npm.scriptExplorerExclude": "NPM スクリプト ビューから除外する必要があるスクリプトを示す正規表現の配列。",
- "description": "npm スクリプトのタスクサポートを追加する拡張",
- "displayName": "VS Code の npm サポート",
- "npm.parseError": "npm タスク検出: ファイル {0} を解析できませんでした",
- "taskdef.path": "スクリプトを提供する package.json ファイルのフォルダー パス。省略できます。",
- "taskdef.script": "カスタマイズする npm スクリプト。",
- "view.name": "Npm スクリプト",
- "workspaceTrust": "この拡張機能は、実行するために信頼が必要なタスクを実行します。"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-ja/translations/extensions/objective-c.i18n.json b/i18n/vscode-language-pack-ja/translations/extensions/objective-c.i18n.json
deleted file mode 100644
index 71b6d4d5f9..0000000000
--- a/i18n/vscode-language-pack-ja/translations/extensions/objective-c.i18n.json
+++ /dev/null
@@ -1,16 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "package": {
- "description": "Objective-C ファイル内で構文ハイライト、かっこ一致を提供します。",
- "displayName": "Objective-C の基本言語サポート"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-ja/translations/extensions/perl.i18n.json b/i18n/vscode-language-pack-ja/translations/extensions/perl.i18n.json
deleted file mode 100644
index 025c279993..0000000000
--- a/i18n/vscode-language-pack-ja/translations/extensions/perl.i18n.json
+++ /dev/null
@@ -1,16 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "package": {
- "description": "Perl ファイル内で構文ハイライト、かっこ一致を提供します。",
- "displayName": "Perl の基本言語サポート"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-ja/translations/extensions/php-language-features.i18n.json b/i18n/vscode-language-pack-ja/translations/extensions/php-language-features.i18n.json
deleted file mode 100644
index 2c56d6a94f..0000000000
--- a/i18n/vscode-language-pack-ja/translations/extensions/php-language-features.i18n.json
+++ /dev/null
@@ -1,31 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "dist/features/validationProvider": {
- "goToSetting": "設定を開く",
- "noExecutable": "PHP 実行可能ファイルが設定されていないため、検証できません。設定 'php.validate.executablePath' を使用して PHP 実行可能ファイルを構成してください。",
- "noPhp": "PHP のインストールが見つからないため、検証できません。PHP 実行可能ファイルを構成するには、設定 'php.validate.executablePath' を使用します。",
- "unknownReason": "パス {0} を使用して php を実行できませんでした。理由は不明です。",
- "wrongExecutable": "{0} が有効な PHP 実行可能ファイルではないため、検証できません。設定 'php.validate.executablePath' を使用して PHP 実行可能ファイルを構成してください。"
- },
- "package": {
- "command.untrustValidationExecutable": "PHP の検証を無効にします (ワークスペース設定として定義)。",
- "commands.categroy.php": "PHP",
- "configuration.suggest.basic": "組み込みの PHP 言語候補機能を有効にするかどうかを制御します。このサポートによって、PHP グローバルと変数の候補が示されます。",
- "configuration.title": "PHP",
- "configuration.validate.enable": "組み込みの PHP 検証を有効/無効にします。",
- "configuration.validate.executablePath": "PHP 実行可能ファイルを指定します。",
- "configuration.validate.run": "リンターを保存時に実行するか、入力時に実行するか。",
- "description": "PHP ファイルに豊富な言語サポートを提供します。",
- "displayName": "PHP 言語機能",
- "workspaceTrust": "'php.validate.executablePath' が設定されている場合は、ワークスペースで PHP のバージョンを読み込むときに、ワークスペースの信頼が必要になります。"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-ja/translations/extensions/php.i18n.json b/i18n/vscode-language-pack-ja/translations/extensions/php.i18n.json
deleted file mode 100644
index 11688ada22..0000000000
--- a/i18n/vscode-language-pack-ja/translations/extensions/php.i18n.json
+++ /dev/null
@@ -1,16 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "package": {
- "description": "PHP ファイル内に構文ハイライト、かっこ一致を提供します。",
- "displayName": "PHP の基本言語サポート"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-ja/translations/extensions/powershell.i18n.json b/i18n/vscode-language-pack-ja/translations/extensions/powershell.i18n.json
deleted file mode 100644
index 7153b61197..0000000000
--- a/i18n/vscode-language-pack-ja/translations/extensions/powershell.i18n.json
+++ /dev/null
@@ -1,16 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "package": {
- "description": "Powershell ファイル内でスニペット、構文ハイライト、かっこ一致、折りたたみを提供します。",
- "displayName": "Powershell の基本言語サポート"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-ja/translations/extensions/pug.i18n.json b/i18n/vscode-language-pack-ja/translations/extensions/pug.i18n.json
deleted file mode 100644
index 33e569caa0..0000000000
--- a/i18n/vscode-language-pack-ja/translations/extensions/pug.i18n.json
+++ /dev/null
@@ -1,16 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "package": {
- "description": "Pug ファイル内で構文ハイライト、かっこ一致を提供します。",
- "displayName": "Pug の基本言語サポート"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-ja/translations/extensions/r.i18n.json b/i18n/vscode-language-pack-ja/translations/extensions/r.i18n.json
deleted file mode 100644
index 28cea46a55..0000000000
--- a/i18n/vscode-language-pack-ja/translations/extensions/r.i18n.json
+++ /dev/null
@@ -1,16 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "package": {
- "description": "R ファイル内で構文ハイライト、かっこ一致を提供します。",
- "displayName": "R の基本言語サポート"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-ja/translations/extensions/razor.i18n.json b/i18n/vscode-language-pack-ja/translations/extensions/razor.i18n.json
deleted file mode 100644
index 9e853e9460..0000000000
--- a/i18n/vscode-language-pack-ja/translations/extensions/razor.i18n.json
+++ /dev/null
@@ -1,16 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "package": {
- "description": "Razor ファイル内で構文ハイライト、かっこ一致、折りたたみを提供します。",
- "displayName": "Razor の基本言語サポート"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-ja/translations/extensions/references-view.i18n.json b/i18n/vscode-language-pack-ja/translations/extensions/references-view.i18n.json
deleted file mode 100644
index 303e423874..0000000000
--- a/i18n/vscode-language-pack-ja/translations/extensions/references-view.i18n.json
+++ /dev/null
@@ -1,73 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "dist/calls/model": {
- "noresult": "結果はありません。",
- "open": "通話を開く",
- "title.callers": "呼び出し元",
- "title.calls": "からの呼び出し"
- },
- "dist/references/index": {
- "title": "参照"
- },
- "dist/references/model": {
- "noresult": "結果はありません。",
- "open": "参照を開く",
- "result.1": "{1} 個のファイルに {0} 件の結果",
- "result.1n": "{1} 個のファイルに {0} 件の結果",
- "result.n1": "{1} 個のファイルに {0} 件の結果",
- "result.nm": "{1} 個のファイルに {0} 件の結果"
- },
- "dist/tree": {
- "noresult": "結果はありません。",
- "noresult2": "結果はありません。以前の検索をもう一度実行してみてください。",
- "placeholder": "前の参照検索を選択する",
- "title": "参照",
- "title.rerun": "再実行"
- },
- "dist/types/model": {
- "noresult": "結果はありません。",
- "title.openType": "オープン型",
- "title.sub": "のサブタイプ",
- "title.sup": "のスーパータイプ"
- },
- "package": {
- "cmd.category.references": "参照",
- "cmd.references-view.clear": "クリア",
- "cmd.references-view.clearHistory": "履歴のクリア",
- "cmd.references-view.copy": "コピー",
- "cmd.references-view.copyAll": "すべてコピー",
- "cmd.references-view.copyPath": "パスのコピー",
- "cmd.references-view.findImplementations": "すべての実装の検索",
- "cmd.references-view.findReferences": "すべての参照を検索",
- "cmd.references-view.next": "次の参照に移動",
- "cmd.references-view.pickFromHistory": "履歴を表示する",
- "cmd.references-view.prev": "前の参照に移動",
- "cmd.references-view.refind": "再実行",
- "cmd.references-view.refresh": "最新の情報に更新",
- "cmd.references-view.removeCallItem": "無視",
- "cmd.references-view.removeReferenceItem": "無視",
- "cmd.references-view.removeTypeItem": "無視",
- "cmd.references-view.showCallHierarchy": "呼び出し階層の表示",
- "cmd.references-view.showIncomingCalls": "着信通話の表示",
- "cmd.references-view.showOutgoingCalls": "発信通話の表示",
- "cmd.references-view.showSubtypes": "サブタイプの表示",
- "cmd.references-view.showSupertypes": "スーパータイプの表示",
- "cmd.references-view.showTypeHierarchy": "型階層の表示",
- "config.references.preferredLocation": "コード レンズ参照を選択するときに '参照のクイック表示' または '参照の検索' を呼び出すかどうかを制御します",
- "config.references.preferredLocation.peek": "参照をピーク エディターで表示します。",
- "config.references.preferredLocation.view": "参照を別のビューに表示します。",
- "container.title": "参照",
- "description": "サイドバーの独立した安定したビューとして検索結果を参照する",
- "displayName": "参照検索ビュー",
- "view.title": "結果"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-ja/translations/extensions/ruby.i18n.json b/i18n/vscode-language-pack-ja/translations/extensions/ruby.i18n.json
deleted file mode 100644
index cf54774fda..0000000000
--- a/i18n/vscode-language-pack-ja/translations/extensions/ruby.i18n.json
+++ /dev/null
@@ -1,16 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "package": {
- "description": "Ruby ファイル内で構文ハイライト、かっこ一致を提供します。",
- "displayName": "Ruby の基本言語サポート"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-ja/translations/extensions/rust.i18n.json b/i18n/vscode-language-pack-ja/translations/extensions/rust.i18n.json
deleted file mode 100644
index ae4b1d4da5..0000000000
--- a/i18n/vscode-language-pack-ja/translations/extensions/rust.i18n.json
+++ /dev/null
@@ -1,16 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "package": {
- "description": "Rust ファイル内で構文ハイライト、かっこ一致を提供します。",
- "displayName": "Rust の基本言語サポート"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-ja/translations/extensions/scss.i18n.json b/i18n/vscode-language-pack-ja/translations/extensions/scss.i18n.json
deleted file mode 100644
index 1361e67f2e..0000000000
--- a/i18n/vscode-language-pack-ja/translations/extensions/scss.i18n.json
+++ /dev/null
@@ -1,16 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "package": {
- "description": "SCSS ファイル内で構文ハイライト、かっこ一致、折りたたみを提供します。",
- "displayName": "SCSS の基本言語サポート"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-ja/translations/extensions/shaderlab.i18n.json b/i18n/vscode-language-pack-ja/translations/extensions/shaderlab.i18n.json
deleted file mode 100644
index f6cd556072..0000000000
--- a/i18n/vscode-language-pack-ja/translations/extensions/shaderlab.i18n.json
+++ /dev/null
@@ -1,16 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "package": {
- "description": "Shaderlab ファイル内で構文ハイライト、かっこ一致を提供します。",
- "displayName": "Shaderlab の基本言語サポート"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-ja/translations/extensions/shellscript.i18n.json b/i18n/vscode-language-pack-ja/translations/extensions/shellscript.i18n.json
deleted file mode 100644
index 997fc413ee..0000000000
--- a/i18n/vscode-language-pack-ja/translations/extensions/shellscript.i18n.json
+++ /dev/null
@@ -1,16 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "package": {
- "description": "Shell Script ファイル内で構文ハイライト、かっこ一致を提供します。",
- "displayName": "Shell Script の基本言語サポート"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-ja/translations/extensions/simple-browser.i18n.json b/i18n/vscode-language-pack-ja/translations/extensions/simple-browser.i18n.json
deleted file mode 100644
index b38a0b8b41..0000000000
--- a/i18n/vscode-language-pack-ja/translations/extensions/simple-browser.i18n.json
+++ /dev/null
@@ -1,30 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "dist/extension": {
- "openTitle": "シンプル ブラウザーで開く",
- "simpleBrowser.show.placeholder": "https://example.com",
- "simpleBrowser.show.prompt": "アクセスする URL を入力してください"
- },
- "dist/simpleBrowserView": {
- "control.back.title": "戻る",
- "control.forward.title": "転送",
- "control.openExternal.title": "ブラウザーで開く",
- "control.reload.title": "再読み込み",
- "view.iframe-focused": "フォーカス ロック",
- "view.title": "シンプル ブラウザー"
- },
- "package": {
- "configuration.focusLockIndicator.enabled.description": "単純なブラウザーにフォーカスが置かれたときに表示されるフローティング インジケーターを有効または無効にします。",
- "description": "Web コンテンツを表示するための非常に基本的な組み込みの Web ビューです。",
- "displayName": "シンプル ブラウザー"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-ja/translations/extensions/sql.i18n.json b/i18n/vscode-language-pack-ja/translations/extensions/sql.i18n.json
deleted file mode 100644
index 0db8c66532..0000000000
--- a/i18n/vscode-language-pack-ja/translations/extensions/sql.i18n.json
+++ /dev/null
@@ -1,16 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "package": {
- "description": "SQL ファイル内で構文ハイライト、かっこ一致を提供します。",
- "displayName": "SQL の基本言語サポート"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-ja/translations/extensions/swift.i18n.json b/i18n/vscode-language-pack-ja/translations/extensions/swift.i18n.json
deleted file mode 100644
index f2772f33c8..0000000000
--- a/i18n/vscode-language-pack-ja/translations/extensions/swift.i18n.json
+++ /dev/null
@@ -1,16 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "package": {
- "description": "Swift ファイル内でスニペット、構文ハイライト、かっこ一致を提供します。",
- "displayName": "Swift の基本言語サポート"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-ja/translations/extensions/testing-editor-contributions.i18n.json b/i18n/vscode-language-pack-ja/translations/extensions/testing-editor-contributions.i18n.json
deleted file mode 100644
index 8c0434df41..0000000000
--- a/i18n/vscode-language-pack-ja/translations/extensions/testing-editor-contributions.i18n.json
+++ /dev/null
@@ -1,27 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "package": {
- "action.debug": "デバッグ",
- "action.run": "テストの実行",
- "config.enableCodeLens": "テスト ケースとスイートに CodeLens を表示するかどうか。",
- "config.enableProblemDiagnostics": "テスト エラーを '問題' ビューで報告し、エディターでエラーとして表示するかどうか。",
- "description": "テストとテスト結果のエディター内のエクスペリエンスを提供します。",
- "displayName": "エディターのコントリビューションをテストする",
- "state.failed": "失敗",
- "state.passed": "成功",
- "state.passedWithDuration": "{0} で成功",
- "tooltip.debug": "{0} をデバッグします",
- "tooltip.run": "{0} を実行します",
- "tooltip.runState": "{1} 件中 {0} 件のテストに成功しました",
- "tooltip.runStateWithDuration": "{2} で {0}/{1} のテストに成功しました"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-ja/translations/extensions/theme-abyss.i18n.json b/i18n/vscode-language-pack-ja/translations/extensions/theme-abyss.i18n.json
deleted file mode 100644
index 7743bc8163..0000000000
--- a/i18n/vscode-language-pack-ja/translations/extensions/theme-abyss.i18n.json
+++ /dev/null
@@ -1,17 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "package": {
- "description": "Visual Studio Code の Abyss テーマ",
- "displayName": "Abyss テーマ",
- "themeLabel": "Abyss"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-ja/translations/extensions/theme-defaults.i18n.json b/i18n/vscode-language-pack-ja/translations/extensions/theme-defaults.i18n.json
deleted file mode 100644
index 26c4fe9c9f..0000000000
--- a/i18n/vscode-language-pack-ja/translations/extensions/theme-defaults.i18n.json
+++ /dev/null
@@ -1,23 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "package": {
- "darkColorThemeLabel": "Dark (Visual Studio)",
- "darkPlusColorThemeLabel": "Dark+ (既定の Dark)",
- "description": "既定の VIsual Studio の明るいテーマと濃いテーマ",
- "displayName": "既定のテーマ",
- "hcColorThemeLabel": "ハイ コントラスト ダーク テーマ",
- "lightColorThemeLabel": "Light (Visual Studio)",
- "lightHcColorThemeLabel": "ライト ハイ コントラスト",
- "lightPlusColorThemeLabel": "Light+ (既定の Light)",
- "minimalIconThemeLabel": "最小 (Visual Studio Code)"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-ja/translations/extensions/theme-kimbie-dark.i18n.json b/i18n/vscode-language-pack-ja/translations/extensions/theme-kimbie-dark.i18n.json
deleted file mode 100644
index 1b6f6687eb..0000000000
--- a/i18n/vscode-language-pack-ja/translations/extensions/theme-kimbie-dark.i18n.json
+++ /dev/null
@@ -1,17 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "package": {
- "description": "Visual Studio Code の Kimbie dark テーマ",
- "displayName": "Kimbie Dark テーマ",
- "themeLabel": "Kimbie Dark"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-ja/translations/extensions/theme-monokai-dimmed.i18n.json b/i18n/vscode-language-pack-ja/translations/extensions/theme-monokai-dimmed.i18n.json
deleted file mode 100644
index 2ec16391b2..0000000000
--- a/i18n/vscode-language-pack-ja/translations/extensions/theme-monokai-dimmed.i18n.json
+++ /dev/null
@@ -1,17 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "package": {
- "description": "Visual Studio Code の Monokai dimmed テーマ",
- "displayName": "Monokai Dimmed テーマ",
- "themeLabel": "Monokai Dimmed"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-ja/translations/extensions/theme-monokai.i18n.json b/i18n/vscode-language-pack-ja/translations/extensions/theme-monokai.i18n.json
deleted file mode 100644
index 52999eb966..0000000000
--- a/i18n/vscode-language-pack-ja/translations/extensions/theme-monokai.i18n.json
+++ /dev/null
@@ -1,17 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "package": {
- "description": "Visual Studio Code の Monokai テーマ",
- "displayName": "Monokai テーマ",
- "themeLabel": "Monokai"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-ja/translations/extensions/theme-quietlight.i18n.json b/i18n/vscode-language-pack-ja/translations/extensions/theme-quietlight.i18n.json
deleted file mode 100644
index 4251b3beef..0000000000
--- a/i18n/vscode-language-pack-ja/translations/extensions/theme-quietlight.i18n.json
+++ /dev/null
@@ -1,17 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "package": {
- "description": "Visual Studio Code の Quiet light テーマ",
- "displayName": "Quiet Light テーマ",
- "themeLabel": "Quiet Light"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-ja/translations/extensions/theme-red.i18n.json b/i18n/vscode-language-pack-ja/translations/extensions/theme-red.i18n.json
deleted file mode 100644
index f4977e8e3c..0000000000
--- a/i18n/vscode-language-pack-ja/translations/extensions/theme-red.i18n.json
+++ /dev/null
@@ -1,17 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "package": {
- "description": "Visual Studio Code の Red テーマ",
- "displayName": "Red テーマ",
- "themeLabel": "Red"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-ja/translations/extensions/theme-seti.i18n.json b/i18n/vscode-language-pack-ja/translations/extensions/theme-seti.i18n.json
deleted file mode 100644
index 0b795fa815..0000000000
--- a/i18n/vscode-language-pack-ja/translations/extensions/theme-seti.i18n.json
+++ /dev/null
@@ -1,17 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "package": {
- "description": "Seti UI file icons を使用したファイル アイコンのテーマ",
- "displayName": "Seti File Icon テーマ",
- "themeLabel": "Seti (Visual Studio Code)"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-ja/translations/extensions/theme-solarized-dark.i18n.json b/i18n/vscode-language-pack-ja/translations/extensions/theme-solarized-dark.i18n.json
deleted file mode 100644
index cd159400a0..0000000000
--- a/i18n/vscode-language-pack-ja/translations/extensions/theme-solarized-dark.i18n.json
+++ /dev/null
@@ -1,17 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "package": {
- "description": "Visual Studio Code の Solarized dark テーマ",
- "displayName": "Solarized Dark テーマ",
- "themeLabel": "Solarized Dark"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-ja/translations/extensions/theme-solarized-light.i18n.json b/i18n/vscode-language-pack-ja/translations/extensions/theme-solarized-light.i18n.json
deleted file mode 100644
index a2d0953855..0000000000
--- a/i18n/vscode-language-pack-ja/translations/extensions/theme-solarized-light.i18n.json
+++ /dev/null
@@ -1,17 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "package": {
- "description": "Visual Studio Code の Solarized light テーマ",
- "displayName": "Solarized Light テーマ",
- "themeLabel": "Solarized Light"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-ja/translations/extensions/theme-tomorrow-night-blue.i18n.json b/i18n/vscode-language-pack-ja/translations/extensions/theme-tomorrow-night-blue.i18n.json
deleted file mode 100644
index 878899e6a8..0000000000
--- a/i18n/vscode-language-pack-ja/translations/extensions/theme-tomorrow-night-blue.i18n.json
+++ /dev/null
@@ -1,17 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "package": {
- "description": "Visual Studio Code の Tomorrow night blue テーマ",
- "displayName": "Tomorrow Night Blue テーマ",
- "themeLabel": "Tomorrow Night Blue"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-ja/translations/extensions/typescript-basics.i18n.json b/i18n/vscode-language-pack-ja/translations/extensions/typescript-basics.i18n.json
deleted file mode 100644
index a6571da9ad..0000000000
--- a/i18n/vscode-language-pack-ja/translations/extensions/typescript-basics.i18n.json
+++ /dev/null
@@ -1,16 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "package": {
- "description": "TypeScript ファイル内でスニペット、構文ハイライト、かっこ一致、折りたたみを提供します。",
- "displayName": "TypeScript 言語の基礎"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-ja/translations/extensions/typescript-language-features.i18n.json b/i18n/vscode-language-pack-ja/translations/extensions/typescript-language-features.i18n.json
deleted file mode 100644
index 6aa50694e0..0000000000
--- a/i18n/vscode-language-pack-ja/translations/extensions/typescript-language-features.i18n.json
+++ /dev/null
@@ -1,328 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "dist/languageFeatures/codeLens/baseCodeLensProvider": {
- "referenceErrorLabel": "参照を判別できませんでした"
- },
- "dist/languageFeatures/codeLens/implementationsCodeLens": {
- "manyImplementationLabel": "{0} 個の実装",
- "oneImplementationLabel": "1 個の実装"
- },
- "dist/languageFeatures/codeLens/referencesCodeLens": {
- "manyReferenceLabel": "{0} 個の参照",
- "oneReferenceLabel": "1 個の参照"
- },
- "dist/languageFeatures/completions": {
- "acquiringTypingsDetail": "IntelliSense の Typings の定義ファイルを取得しています。",
- "acquiringTypingsLabel": "typings の定義ファイルを取得中...",
- "selectCodeAction": "適用するコード アクションを選択"
- },
- "dist/languageFeatures/directiveCommentCompletions": {
- "ts-check": "JavaScript ファイルのセマンティック チェックを有効にします。 ファイルの先頭にある必要があります。",
- "ts-expect-error": "ファイルの次の行で @ts-check エラーを表示しません。少なくとも 1 つ存在する必要があります。",
- "ts-ignore": "ファイルの次の行で @ts-check エラーを抑制します。",
- "ts-nocheck": "JavaScript ファイルのセマンティック チェックを無効にします。 ファイルの先頭にある必要があります。"
- },
- "dist/languageFeatures/fileReferences": {
- "error.noResource": "ファイル参照の検索に失敗しました。リソースが指定されていません。",
- "error.unknownFile": "ファイル参照の検索に失敗しました。ファイルの種類が不明です。",
- "error.unsupportedLanguage": "ファイル参照の検索に失敗しました。サポートされていないファイルの種類です。",
- "error.unsupportedVersion": "ファイル参照の検索に失敗しました。TypeScript 4.2 以降が必要です。",
- "progress.title": "ファイル参照の検索中"
- },
- "dist/languageFeatures/fixAll": {
- "autoFix.label": "JS/TS の修正可能な問題をすべて修正する",
- "autoFix.missingImports.label": "見つからないインポートをすべて追加する",
- "autoFix.unused.label": "未使用のコードをすべて削除する"
- },
- "dist/languageFeatures/jsDocCompletions": {
- "typescript.jsDocCompletionItem.documentation": "JSDoc コメント"
- },
- "dist/languageFeatures/organizeImports": {
- "organizeImportsAction.title": "インポートを整理",
- "sortImportsAction.title": "インポートの並べ替え"
- },
- "dist/languageFeatures/quickFix": {
- "fixAllInFileLabel": "{0} (ファイルの中のすべてを修正する)"
- },
- "dist/languageFeatures/refactor": {
- "extractConstant.disabled.reason": "現在の選択範囲を抽出できません",
- "extractConstant.disabled.title": "定数への抽出",
- "extractFunction.disabled.reason": "現在の選択範囲を抽出できません",
- "extractFunction.disabled.title": "関数への抽出",
- "refactor.documentation.title": "JS/TS リファクタリングの詳細",
- "refactoringFailed": "リファクタリングを適用できませんでした。"
- },
- "dist/languageFeatures/rename": {
- "fileRenameFail": "ファイル名を変更中にエラーが発生しました"
- },
- "dist/languageFeatures/sourceDefinition": {
- "error.noReferences": "ソース定義が見つかりません。",
- "error.noResource": "ソース定義に移動できませんでした。リソースが指定されていません。",
- "error.unknownFile": "ソース定義に移動できませんでした。ファイルの種類が不明です。",
- "error.unsupportedLanguage": "ソース定義に移動できませんでした。ファイルの種類がサポート対象外です。",
- "error.unsupportedVersion": "ソース定義に移動できませんでした。TypeScript 4.7 以降が必要です。",
- "progress.title": "ソース定義を検索しています"
- },
- "dist/languageFeatures/tsconfig": {
- "documentLink.tooltip": "リンクをフォロー",
- "openTsconfigExtendsModuleFail": "{0} をモジュールとして解決できませんでした"
- },
- "dist/languageFeatures/updatePathsOnRename": {
- "accept.title": "はい",
- "always.title": "常に Import を自動的に更新します",
- "moreFile": "...1 つの追加ファイルが表示されていません",
- "moreFiles": "...{0} 個の追加ファイルが表示されていません",
- "never.title": "今後は Import を自動的に更新しません",
- "prompt": "'{0}' のインポートを更新しますか?",
- "promptMoreThanOne": "次の {0} ファイルのインポートを更新しますか?",
- "reject.title": "いいえ",
- "renameProgress.title": "JS/TS インポートの更新を確認しています"
- },
- "dist/task/taskProvider": {
- "badTsConfig": "tasks.json の Typescript タスクに \"\\\\\" が含まれています。Typescript タスクの tsconfig では \"/\" を使用する必要があります",
- "buildAndWatchTscLabel": "ウォッチ - {0}",
- "buildTscLabel": "ビルド - {0}"
- },
- "dist/tsServer/serverProcess.electron": {
- "noServerFound": "パス {0} は、有効な tsserver インストールを指していません。バンドルされている TypeScript バージョンにフォールバックしています。"
- },
- "dist/tsServer/versionManager": {
- "allow": "許可する",
- "dismiss": "閉じる",
- "learnMore": "TypeScript のバージョンの管理についての詳細",
- "promptUseWorkspaceTsdk": "このワークスペースには TypeScript バージョンが含まれています。TypeScript および JavaScript の言語機能にワークスペースの TypeScript バージョンを使用しますか?",
- "selectTsVersion": "JavaScript および TypeScript 言語の機能に使用する TypeScript バージョンを選択します",
- "suppress prompt": "このワークスペースでは使用しない",
- "useVSCodeVersionOption": "VS Code のバージョンを使用",
- "useWorkspaceVersionOption": "ワークスペースのバージョンを使用"
- },
- "dist/typescriptServiceClient": {
- "noServerFound": "パス {0} は、有効な tsserver インストールを指していません。バンドルされている TypeScript バージョンにフォールバックしています。",
- "openTsServerLog.openFileFailedFailed": "TS サーバーのログ ファイルを開くことができませんでした",
- "serverDied": "TypeScript 言語サービスは、直前の 5 分間に 5 回、予期せずに停止しました。",
- "serverDiedAfterStart": "TypeScript 言語サービスは、開始直後に 5 回停止しました。サービスは再開されません。",
- "serverDiedOnce": "TypeScript 言語サービスが予期せずに終了しました。",
- "serverDiedReportIssue": "問題を報告",
- "serverExitedWithError": "TypeScript 言語サーバーがエラーで終了しました。エラー メッセージ: {0}",
- "serverLoading.progress": "JS/TS 言語機能を初期化しています",
- "typescript.openTsServerLog.enableAndReloadOption": "ログを有効にして、TS サーバーを再起動する",
- "typescript.openTsServerLog.loggingNotEnabled": "TS サーバーのログがオフになっています。ログを有効にするには、`typescript.tsserver.log` を設定して TS サーバーを再起動してください",
- "typescript.openTsServerLog.noLogFile": "TS サーバーはログを開始していません。",
- "usingOldTsVersion.detail": "ワークスペースで古いバージョンの TypeScript ({0}) が使用されています。\r\n\r\n問題を報告する前に、最新の安定した TypeScript リリースを使用するようにワークスペースを更新し、バグが修正済みでないことを確認してください。",
- "usingOldTsVersion.title": "TypeScript のバージョンを更新してください"
- },
- "dist/ui/intellisenseStatus": {
- "pending.detail": "IntelliSense の状態を読み込んでいます",
- "resolved.command.title.createJsconfig": "jsconfig を作成する",
- "resolved.command.title.createTsconfig": "tsconfig を作成する",
- "resolved.command.title.open": "構成ファイルを開く",
- "resolved.detail.noJsConfig": "jsconfig なし",
- "resolved.detail.noOpenedFolders": "開いているフォルダーがありません",
- "resolved.detail.noTsConfig": "tsconfig なし",
- "resolved.detail.notInOpenedFolder": "ファイルが開いているフォルダーの一部ではありません",
- "statusItem.name": "JS/TS IntelliSense の状態",
- "syntaxOnly.command.title.learnMore": "詳細情報",
- "syntaxOnly.detail": "Project Wide IntelliSense を使用できません",
- "syntaxOnly.text": "部分モード"
- },
- "dist/ui/versionStatus": {
- "versionStatus.command": "バージョンの選択",
- "versionStatus.detail": "TypeScript バージョン",
- "versionStatus.name": "TypeScript バージョン"
- },
- "dist/utils/api": {
- "invalidVersion": "無効なバージョン"
- },
- "dist/utils/logger": {
- "channelName": "TypeScript"
- },
- "dist/utils/tsconfig": {
- "typescript.configureJsconfigQuickPick": "jsconfig.json を構成する",
- "typescript.configureTsconfigQuickPick": "tsconfig.json を構成する",
- "typescript.noJavaScriptProjectConfig": "ファイルは JavaScript プロジェクトの一部ではありません。詳細については、[jsconfig.json のドキュメント]({0}) をご覧ください。",
- "typescript.noTypeScriptProjectConfig": "ファイルは TypeScript プロジェクトの一部ではありません。詳細については、[tsconfig.json のドキュメント]({0}) をご覧ください。",
- "typescript.projectConfigCouldNotGetInfo": "TypeScript または JavaScript のプロジェクトを判別できませんでした",
- "typescript.projectConfigNoWorkspace": "TypeScript または JavaScript プロジェクトを使用するには、VS Code でフォルダーを開いてください",
- "typescript.projectConfigUnsupportedFile": "TypeScript または JavaScript のプロジェクトを判別できませんでした。サポートされていないファイルの種類です"
- },
- "package": {
- "codeActions.refactor.extract.constant.description": "式を定数に抽出します。",
- "codeActions.refactor.extract.constant.title": "定数を抽出する",
- "codeActions.refactor.extract.function.description": "式をメソッドまたは関数に抽出します。",
- "codeActions.refactor.extract.function.title": "関数を抽出する",
- "codeActions.refactor.extract.interface.description": "型をインターフェイスに抽出します。",
- "codeActions.refactor.extract.interface.title": "インターフェイスの抽出",
- "codeActions.refactor.extract.type.description": "型を型のエイリアスに抽出します。",
- "codeActions.refactor.extract.type.title": "型の抽出",
- "codeActions.refactor.move.newFile.description": "式を新しいファイルに移動します。",
- "codeActions.refactor.move.newFile.title": "新しいファイルへ移動します",
- "codeActions.refactor.rewrite.arrow.braces.description": "アロー関数内のかっこを追加または削除します。",
- "codeActions.refactor.rewrite.arrow.braces.title": "中かっこを書き換える",
- "codeActions.refactor.rewrite.export.description": "既定のエクスポートと名前付きエクスポートを変換します。",
- "codeActions.refactor.rewrite.export.title": "エクスポートを変換する",
- "codeActions.refactor.rewrite.import.description": "名前付きインポートと名前空間インポートを変換します。",
- "codeActions.refactor.rewrite.import.title": "インポートを変換する",
- "codeActions.refactor.rewrite.parameters.toDestructured.title": "パラメーターを非構造化オブジェクトに変換する",
- "codeActions.refactor.rewrite.property.generateAccessors.description": "'get' および 'set' アクセサーの生成",
- "codeActions.refactor.rewrite.property.generateAccessors.title": "アクセサーを生成する",
- "codeActions.source.organizeImports.title": "インポートを整理",
- "configuration.implicitProjectConfig.checkJs": "JavaScript ファイルのセマンティック チェックを有効または無効にします。既存の 'jsconfig.json' または 'tsconfig.json' ファイルによってこの設定がオーバーライドされます。",
- "configuration.implicitProjectConfig.experimentalDecorators": "プロジェクト外の JavaScript ファイルの 'experimentalDecorators' を有効または無効にします。既存の 'jsconfig.json' または 'tsconfig.json' ファイルによってこの設定がオーバーライドされます。",
- "configuration.implicitProjectConfig.module": "プログラムのモジュール システムを設定します。詳細は次をご覧ください: https://www.typescriptlang.org/tsconfig#module。",
- "configuration.implicitProjectConfig.strictFunctionTypes": "プロジェクト外の JavaScript および TypeScript ファイルの [厳密な関数の型](https://www.typescriptlang.org/tsconfig#strictFunctionTypes) を有効または無効にします。既存の 'jsconfig.json' または 'tsconfig.json' ファイルによってこの設定がオーバーライドされます。",
- "configuration.implicitProjectConfig.strictNullChecks": "プロジェクト外の JavaScript および TypeScript ファイルの [厳密な null チェック](https://www.typescriptlang.org/tsconfig#strictNullChecks) を有効または無効にします。既存の 'jsconfig.json' または 'tsconfig.json' ファイルによってこの設定がオーバーライドされます。",
- "configuration.implicitProjectConfig.target": "発行された JavaScript のターゲット JavaScript 言語バージョンを設定し、ライブラリ宣言を含めます。詳細は次をご覧ください: https://www.typescriptlang.org/tsconfig#target。",
- "configuration.inlayHints.parameterNames.suppressWhenArgumentMatchesName": "パラメーター名と同一のテキストを持つ引数に対するパラメーター名のヒントを抑制します。",
- "configuration.inlayHints.variableTypes.suppressWhenTypeMatchesName": "名前が型名と同じ変数の型ヒントを非表示にします。ワークスペースで TypeScript 4.8 以降を使用する必要があります。",
- "configuration.javascript.checkJs.checkJs.deprecation": "この設定は、`js/ts.implicitProjectConfig.checkJs` を優先して非推奨になりました。",
- "configuration.javascript.checkJs.experimentalDecorators.deprecation": "この設定は、`js/ts.implicitProjectConfig.experimentalDecorators` を優先して非推奨になりました。",
- "configuration.suggest.autoImports": "自動インポートの提案を有効または無効にします。",
- "configuration.suggest.classMemberSnippets.enabled": "クラス メンバーのスニペット補完を有効または無効にします。ワークスペースで TypeScript 4.5 以降を使用する必要があります",
- "configuration.suggest.completeFunctionCalls": "パラメーター シグネチャを含む完全な関数。",
- "configuration.suggest.completeJSDocs": "JSDoc のコメントを完成させるための提案を有効/無効にします。",
- "configuration.suggest.includeAutomaticOptionalChainCompletions": "オプションのチェーン呼び出しを挿入する定義されていない可能性のある値で入力候補を表示することを有効または無効にします。TS 3.7+ および厳密な null チェックを有効にする必要があります。",
- "configuration.suggest.includeCompletionsForImportStatements": "部分的に入力されたインポート ステートメントで、自動インポート形式の入力候補を有効または無効にします。ワークスペースで TypeScript 4.3 以降を使用する必要があります。",
- "configuration.suggest.includeCompletionsWithSnippetText": "TS サーバーからのスニペットの入力候補を有効または無効にします。ワークスペースで TypeScript 4.3 以降を使用する必要があります。",
- "configuration.suggest.jsdoc.generateReturns": "JSDoc テンプレートの `@return` 注釈の生成を有効または無効にします。ワークスペースで TypeScript 4.2+ を使用する必要があります。",
- "configuration.suggest.names": "JavaScript の候補のファイルから一意の名前を含めることを有効または無効にします。名前の候補は、`@ts-check` または `checkJs` を使用して意味的にチェックされる JavaScript コードでは常に無効であることに注意してください。",
- "configuration.suggest.objectLiteralMethodSnippets.enabled": "オブジェクト リテラル内のメソッドのスニペット補完を有効または無効にします。ワークスペースで TypeScript 4.7 以降を使用する必要があります",
- "configuration.suggest.paths": "import ステートメントや require 呼び出しでパスの提案を有効/無効にします。",
- "configuration.surveys.enabled": "VS Code の JavaScript と TypeScript のサポートを向上させるために、ときどき行われるアンケートを有効/無効にします。",
- "configuration.tsserver.experimental.enableProjectDiagnostics": "(試験的) プロジェクト全体のエラー報告を有効にします。",
- "configuration.tsserver.maxTsServerMemory": "TypeScript サーバー プロセスに割り当てるメモリの最大量 (MB)。",
- "configuration.tsserver.useSeparateSyntaxServer": "折りたたみの計算やドキュメント シンボルのコンピューティングなど、構文に関連する操作に迅速に応答できる別の TypeScript サーバーの作成を有効または無効にします。ワークスペースで TypeScript 3.4.0 以上を使用する必要があります。",
- "configuration.tsserver.useSeparateSyntaxServer.deprecation": "この設定は、'typescript.tsserver.useSyntaxServer' のため廃止されました。",
- "configuration.tsserver.useSyntaxServer": "TypeScript がコード折りたたみの計算などの構文関連操作をより迅速に処理するため、専用サーバーを起動するかどうかを制御します。",
- "configuration.tsserver.useSyntaxServer.always": "軽量化構文サーバーを使用して、すべての IntelliSense 操作を処理します。この構文サーバーは、開いているファイルに対してのみ IntelliSense を提供します。",
- "configuration.tsserver.useSyntaxServer.auto": "構文操作専用の完全なサーバーと、軽量化サーバーの両方を生成します。構文サーバーは、プロジェクトの読み込み中に構文操作を高速化し、IntelliSense を提供するために使用されます。",
- "configuration.tsserver.useSyntaxServer.never": "専用の構文サーバーを使用しないでください。単一のサーバーを使用して、すべての IntelliSense 操作を処理します。",
- "configuration.tsserver.watchOptions": "ファイルとディレクトリを追跡するために使用する監視方法を構成します。ワークスペースで TypeScript 3.8 以降を使用する必要があります。",
- "configuration.tsserver.watchOptions.fallbackPolling": "ファイル システム イベントを使用する場合、このオプションは、システムがネイティブ ファイル ウォッチャーを使い果たし、ネイティブ ファイル ウォッチャーをサポートしていない場合に使用されるポーリング方法を指定します。",
- "configuration.tsserver.watchOptions.fallbackPolling.dynamicPriorityPolling ": "変更頻度の低いファイルの確認頻度が低い場合は、動的キューを使用します。",
- "configuration.tsserver.watchOptions.fallbackPolling.fixedPollingInterval": "すべてのファイルで、一定の間隔で 1 秒に数回変更がないか確認します。",
- "configuration.tsserver.watchOptions.fallbackPolling.priorityPollingInterval": "すべてのファイルで 1 秒間に数回変更を確認しますが、特定の種類のファイルを他のファイルより少ない頻度で確認する場合は、ヒューリスティックを使用してください。",
- "configuration.tsserver.watchOptions.synchronousWatchDirectory": "ディレクトリの遅延監視を無効にします。遅延監視は、一度に多数のファイル変更が生じる場合 (たとえば、npm install の実行からの node_modules の変更) には便利ですが、一般的ではない設定ではこのフラグを無効にすることができます。",
- "configuration.tsserver.watchOptions.watchDirectory": "再帰的なファイル監視機能を持たないシステムでディレクトリ ツリー全体を監視するための方法。",
- "configuration.tsserver.watchOptions.watchDirectory.dynamicPriorityPolling": "変更頻度の少ないディレクトリの確認頻度が少ない動的キューを使用します。",
- "configuration.tsserver.watchOptions.watchDirectory.fixedChunkSizePolling": "定期的にディレクトリのチャンクをポーリングします。ワークスペースで TypeScript 4.3 以上を使用する必要があります。",
- "configuration.tsserver.watchOptions.watchDirectory.fixedPollingInterval": "すべてのディレクトリで、一定の間隔で 1 秒間に数回、変更を確認します。",
- "configuration.tsserver.watchOptions.watchDirectory.useFsEvents": "ディレクトリの変更にオペレーティング システムまたはファイル システムのネイティブ イベントを使用しようとしています。",
- "configuration.tsserver.watchOptions.watchFile": "個々のファイルを監視するための方法。",
- "configuration.tsserver.watchOptions.watchFile.dynamicPriorityPolling": "変更頻度の低いファイルの確認頻度が低い場合は、動的キューを使用します。",
- "configuration.tsserver.watchOptions.watchFile.fixedChunkSizePolling": "定期的にファイルのチャンクをポーリングします。ワークスペースで TypeScript 4.3 以上を使用する必要があります。",
- "configuration.tsserver.watchOptions.watchFile.fixedPollingInterval": "すべてのファイルで、一定の間隔で 1 秒に数回変更がないかを確認します。",
- "configuration.tsserver.watchOptions.watchFile.priorityPollingInterval": "すべてのファイルで 1 秒間に数回変更を確認しますが、ヒューリスティックを使用して、特定の種類のファイルを他のファイルよりも少ない頻繁で確認することができます。",
- "configuration.tsserver.watchOptions.watchFile.useFsEvents": "ファイルの変更にオペレーティング システムまたはファイル システムのネイティブ イベントを使用しようとしています。",
- "configuration.tsserver.watchOptions.watchFile.useFsEventsOnParentDirectory": "オペレーティング システムまたはファイル システムのネイティブ イベントを使用して、ディレクトリを含んでいるファイルに対する変更をリッスンします。使用するファイル ウォッチャーの数を減らすことができますが、正確性が低くなります。",
- "configuration.typescript": "TypeScript",
- "description": "JavaScript と TypeScript ファイルに豊富な言語サポートを提供。",
- "displayName": "TypeScript と JavaScript の言語機能",
- "format.insertSpaceAfterCommaDelimiter": "コンマ区切り記号の後のスペース処理を定義します。",
- "format.insertSpaceAfterConstructor": "コンストラクター キーワードの後のスペース処理を定義します。",
- "format.insertSpaceAfterFunctionKeywordForAnonymousFunctions": "匿名関数の関数キーワードの後のスペース処理を定義します。",
- "format.insertSpaceAfterKeywordsInControlFlowStatements": "制御フロー ステートメント内のキーワードの後のスペース処理を定義します。",
- "format.insertSpaceAfterOpeningAndBeforeClosingEmptyBraces": "左右の空のかっこの間のスペース処理を定義します。",
- "format.insertSpaceAfterOpeningAndBeforeClosingJsxExpressionBraces": "JSX 式の始め波かっこの後と終わり波かっこの前のスペース処理を定義します。",
- "format.insertSpaceAfterOpeningAndBeforeClosingNonemptyBraces": "左右の空でないかっこの間のスペース処理を定義します。",
- "format.insertSpaceAfterOpeningAndBeforeClosingNonemptyBrackets": "左右の空でない角かっこの間のスペース処理を定義します。",
- "format.insertSpaceAfterOpeningAndBeforeClosingNonemptyParenthesis": "左右の空でないかっこの間のスペース処理を定義します。",
- "format.insertSpaceAfterOpeningAndBeforeClosingTemplateStringBraces": "テンプレート文字列の始め波かっこの後と終わり波かっこの前のスペース処理を定義します。",
- "format.insertSpaceAfterSemicolonInForStatements": "for ステートメント内のセミコロンの後のスペース処理を定義します。",
- "format.insertSpaceAfterTypeAssertion": "TypeScript の型アサーションの後のスペース処理を定義します。",
- "format.insertSpaceBeforeAndAfterBinaryOperators": "2 項演算子の後のスペース処理を定義します。",
- "format.insertSpaceBeforeFunctionParenthesis": "関数の引数のかっこの前にあるスペース処理を定義します。",
- "format.placeOpenBraceOnNewLineForControlBlocks": "新しい行にコントロール ブロックの始め波かっこを配置するかどうかを定義します。",
- "format.placeOpenBraceOnNewLineForFunctions": "新しい行に関数の始め波かっこを配置するかどうかを定義します。",
- "format.semicolons": "オプションのセミコロンの扱いを定義します。ワークスペースで TypeScript 3.7 バージョン以上を使用する必要があります。",
- "format.semicolons.ignore": "セミコロンを挿入または削除しないでください。",
- "format.semicolons.insert": "ステートメントの最後にセミコロンを挿入します。",
- "format.semicolons.remove": "不要なセミコロンを削除します。",
- "goToProjectConfig.title": "プロジェクト構成に移動",
- "inlayHints.parameterNames.all": "リテラル引数およびリテラル引数以外の引数に対してパラメーター名のヒントを有効にします。",
- "inlayHints.parameterNames.literals": "リテラル引数に対してのみ、パラメーター名のヒントを有効にします。",
- "inlayHints.parameterNames.none": "パラメーター名のヒントを無効にします。",
- "javascript.format.enable": "既定の JavaScript フォーマッタを有効/無効にします。",
- "javascript.preferences.jsxAttributeCompletionStyle.auto": "プロパティの種類に基づいて属性名の後に '={}' または '=\"\"' を挿入します。文字列属性に使用される引用符の種類を制御するには、`javascript.preferences.quoteStyle` を参照してください。",
- "javascript.referencesCodeLens.enabled": "JavaScript ファイル内で CodeLens の参照を有効/無効にします。",
- "javascript.referencesCodeLens.showOnAllFunctions": "JavaScript ファイル内のすべての関数で CodeLens への参照を有効または無効にします。",
- "javascript.suggestionActions.enabled": "エディター内で JavaScript ファイルの診断の提案を有効または無効にします。",
- "javascript.validate.enable": "JavaScript の検証を有効/無効にします。",
- "reloadProjects.title": "プロジェクトの再読み込み",
- "taskDefinition.tsconfig.description": "TS ビルドを定義する tsconfig ファイル。",
- "typescript.autoClosingTags": "JSX タグの自動終了を有効または無効にします。",
- "typescript.check.npmIsInstalled": "Check if npm is installed for [Automatic Type Acquisition](https://code.visualstudio.com/docs/nodejs/working-with-javascript#_typings-and-automatic-type-acquisition).",
- "typescript.disableAutomaticTypeAcquisition": "Disables [automatic type acquisition](https://code.visualstudio.com/docs/nodejs/working-with-javascript#_typings-and-automatic-type-acquisition). Automatic type acquisition fetches `@types` packages from npm to improve IntelliSense for external libraries.",
- "typescript.enablePromptUseWorkspaceTsdk": "ワークスペースで Intellisense 用に構成されている TypeScript バージョンを使用することについてユーザーへの確認を有効にします。",
- "typescript.findAllFileReferences": "ファイル参照の検索",
- "typescript.format.enable": "既定の TypeScript フォーマッタを有効/無効にします。",
- "typescript.goToSourceDefinition": "ソース定義に移動",
- "typescript.implementationsCodeLens.enabled": "CodeLens の実装を有効/無効にします。この CodeLens は interface の実装を表示します。",
- "typescript.locale": "JavaScript と TypeScript のエラーを報告するために使用するロケールを設定します。既定では VS Code のロケールを使用します。",
- "typescript.npm": "Specifies the path to the npm executable used for [Automatic Type Acquisition](https://code.visualstudio.com/docs/nodejs/working-with-javascript#_typings-and-automatic-type-acquisition).",
- "typescript.openTsServerLog.title": "TS サーバーのログを開く",
- "typescript.preferences.autoImportFileExcludePatterns": "自動インポートから除外するファイルの glob パターンを指定します。ワークスペースで TypeScript 4.8 以降を使用する必要があります。",
- "typescript.preferences.importModuleSpecifier": "自動 import の優先パス スタイル。",
- "typescript.preferences.importModuleSpecifier.nonRelative": "`jsconfig.json` または `tsconfig.json` に構成されている `baseUrl` または `paths` に基づいて非相対インポートを優先します。",
- "typescript.preferences.importModuleSpecifier.projectRelative": "相対インポート パスでパッケージまたはプロジェクト ディレクトリが提供される場合にのみ、非相対インポートを優先します。ワークスペースで TypeScript 4.2+ を使用する必要があります。",
- "typescript.preferences.importModuleSpecifier.relative": "インポートされたファイルの場所への相対パスを優先します。",
- "typescript.preferences.importModuleSpecifier.shortest": "相対インポートよりもパス セグメント数が少なくなる場合にのみ、非相対インポートを優先します。",
- "typescript.preferences.importModuleSpecifierEnding": "自動インポート用に終了する優先パス。ワークスペースで TypeScript 4.5 以降を使用する必要があります。",
- "typescript.preferences.importModuleSpecifierEnding.auto": "プロジェクト設定を使用してデフォルトを選択します。",
- "typescript.preferences.importModuleSpecifierEnding.index": "./component/index.js' を './component/index' に短縮します。",
- "typescript.preferences.importModuleSpecifierEnding.js": "パスの末尾を短くしないでください。拡張子 '.js' を含めます。",
- "typescript.preferences.importModuleSpecifierEnding.minimal": "'./component/index.js' を './component' に短縮します。",
- "typescript.preferences.includePackageJsonAutoImports": "使用可能な自動インポートについて 'package.json' の依存関係の検索を有効または無効にします。",
- "typescript.preferences.includePackageJsonAutoImports.auto": "パフォーマンスの推定影響に基づいて依存関係を検索します。",
- "typescript.preferences.includePackageJsonAutoImports.off": "依存関係を検索しないでください。",
- "typescript.preferences.includePackageJsonAutoImports.on": "常に依存関係を検索します。",
- "typescript.preferences.jsxAttributeCompletionStyle": "JSX 属性補完向けに優先されるスタイル。",
- "typescript.preferences.jsxAttributeCompletionStyle.auto": "プロパティの種類に基づいて属性名の後に '={}' または '=\"\"' を挿入します。文字列属性に使用される引用符の種類を制御するには、`typescript.preferences.quoteStyle` を参照してください。",
- "typescript.preferences.jsxAttributeCompletionStyle.braces": "属性名の後に `={}` を挿入します。",
- "typescript.preferences.jsxAttributeCompletionStyle.none": "属性名の挿入のみ。",
- "typescript.preferences.quoteStyle": "迅速な修正の使用で優先される引用符のスタイル。",
- "typescript.preferences.quoteStyle.auto": "既存のコードから引用符の種類を推測する",
- "typescript.preferences.quoteStyle.double": "常に二重引用符 `\"` を使用します。",
- "typescript.preferences.quoteStyle.single": "常に単一引用符 `'` を使用します。",
- "typescript.preferences.renameShorthandProperties.deprecationMessage": "設定 'typescript.preferences.renameShorthandProperties' は非推奨になりました。'typescript.preferences.useAliasesForRenames' をお勧めします",
- "typescript.preferences.useAliasesForRenames": "名前の変更時にオブジェクトの省略形のプロパティのエイリアスの導入を有効または無効にします。ワークスペースで TypeScript 3.4 以降を使用する必要があります。",
- "typescript.problemMatchers.tsc.label": "TypeScript の問題",
- "typescript.problemMatchers.tscWatch.label": "TypeScript の問題 (ウォッチ モード)",
- "typescript.referencesCodeLens.enabled": "TypeScript ファイルで CodeLens の参照を有効/無効にします。",
- "typescript.referencesCodeLens.showOnAllFunctions": "有効および無効は、TypeScript ファイル内のすべての関数で CodeLens を参照します。",
- "typescript.reportStyleChecksAsWarnings": "スタイル チェックを警告として報告します。",
- "typescript.restartTsServer": "TS サーバーを再起動",
- "typescript.selectTypeScriptVersion.title": "TypeScript のバージョンを選択...",
- "typescript.suggest.enabled": "オートコンプリートの提案を有効/無効にします。",
- "typescript.suggestionActions.enabled": "エディター内で TypeScript ファイルの診断の提案を有効または無効にします。",
- "typescript.tsc.autoDetect": "tsc タスクの自動検出を制御します。",
- "typescript.tsc.autoDetect.build": "単一の実行コンパイルタスクのみを作成します。",
- "typescript.tsc.autoDetect.off": "この機能を無効にします。",
- "typescript.tsc.autoDetect.on": "ビルドとウォッチ、両方のタスクを作成します。",
- "typescript.tsc.autoDetect.watch": "コンパイルタスクとウォッチタスクのみを作成します。",
- "typescript.tsdk.desc": "IntelliSense に使用する、TypeScript インストールの下にある tsserver および lib*.d.ts ファイルのフォルダー パスを指定します。例: './node_modules/typescript/lib'。\r\n\r\n- ユーザー設定として指定した場合は、'typescript.tsdk' からの TypeScript バージョンによって組み込みの TypeScript バージョンが自動的に置き換えられます。\r\n- ワークスペース設定として指定した場合は、'typescript.tsdk' で 'TypeScript: Select TypeScript version' コマンドを使用することによって、IntelliSense のためにそのワークスペース バージョンの TypeScript を使用するように切り替えることができます。\r\n\r\nTypeScript バージョンの管理について詳しくは、[TypeScript のドキュメント](https://code.visualstudio.com/docs/typescript/typescript-compiling#_using-newer-typescript-versions) をご覧ください。",
- "typescript.tsserver.enableTracing": "ディレクトリへの TS サーバーのパフォーマンスのトレースを有効にします。これらのトレース ファイルは TS サーバーのパフォーマンスの問題を診断するために使用できます。ログには、プロジェクトのファイル パス、ソース コード、その他の潜在的に機密性の高い情報が含まれている場合があります。",
- "typescript.tsserver.log": "ファイルへの TS サーバーのログを有効にします。このログは TS サーバーの問題を診断するために使用できます。ログには、プロジェクトのファイルパス、ソースコード、その他の潜在的に機密性の高い情報が含まれている場合があります。",
- "typescript.tsserver.pluginPaths": "TypeScript 言語サービス プラグインを検出する追加のパス。",
- "typescript.tsserver.pluginPaths.item": "絶対または相対パスのいずれか。相対パスはワークスペース フォルダーに対して解決されます。",
- "typescript.tsserver.trace": "TS サーバーに送信されるメッセージのトレースを有効にします。このトレースは TS サーバーの問題を診断するために使用できます。トレースには、プロジェクトのファイルパス、ソースコード、その他の潜在的に機密性の高い情報が含まれている場合があります。",
- "typescript.updateImportsOnFileMove.enabled": "VS Code で名前変更や移動を行ったファイルのインポート パスの自動更新を有効または無効にします。",
- "typescript.updateImportsOnFileMove.enabled.always": "常に自動的にパスを更新します。",
- "typescript.updateImportsOnFileMove.enabled.never": "パスの名前を変更せず確認も行いません。",
- "typescript.updateImportsOnFileMove.enabled.prompt": "名前を変更するときに確認をします。",
- "typescript.validate.enable": "TypeScript の検証を有効/無効にします。",
- "typescript.workspaceSymbols.scope": "[ワークスペース内のシンボルへの移動](https://code.visualstudio.com/docs/editor/editingevolved#_open-symbol-by-name) でどのファイルを検索するかを制御します。",
- "typescript.workspaceSymbols.scope.allOpenProjects": "開いているすべての JavaScript または TypeScript プロジェクトからシンボルを検索します。ワークスペースで TypeScript 3.9 以降を使用する必要があります。",
- "typescript.workspaceSymbols.scope.currentProject": "現在の JavaScript または TypeScript プロジェクトからのみシンボルを検索します。",
- "virtualWorkspaces": "仮想ワークスペースでは、ファイル間の参照の解決や検索はサポートされていません。",
- "workspaceTrust": "この拡張機能は、ワークスペースで指定されたコードを実行するため、ワークスペース バージョンを使用する場合には、ワークスペースの信頼が必要です。"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-ja/translations/extensions/vb.i18n.json b/i18n/vscode-language-pack-ja/translations/extensions/vb.i18n.json
deleted file mode 100644
index 2b95831eda..0000000000
--- a/i18n/vscode-language-pack-ja/translations/extensions/vb.i18n.json
+++ /dev/null
@@ -1,16 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "package": {
- "description": "Visual Basic ファイル内でスニペット、構文ハイライト、かっこ一致、折りたたみを提供します。",
- "displayName": "Visual Basic の基本言語サポート"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-ja/translations/extensions/vscode-chrome-debug-core.i18n.json b/i18n/vscode-language-pack-ja/translations/extensions/vscode-chrome-debug-core.i18n.json
deleted file mode 100644
index 99af16bbf0..0000000000
--- a/i18n/vscode-language-pack-ja/translations/extensions/vscode-chrome-debug-core.i18n.json
+++ /dev/null
@@ -1,69 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "errors": {
- "eval.not.available": "使用不可",
- "not.connected": "ランタイムに接続されていません",
- "restartFrame.cannot": "フレームを再起動できません",
- "attribute.path.not.exist": "属性 '{0}' がありません ('{1}')。",
- "attribute.path.not.absolute": "属性 '{0}' が絶対パスになっていません ('{1}')。'{2}' を接頭辞として追加して絶対パスにすることをご検討ください。",
- "more.information": "詳細情報",
- "setVariable.error": "値の設定がサポートされていません",
- "source.not.found": "内容を取得できませんでした。",
- "VSND2010": "ランタイム プロセスに接続できません。{0} ミリ秒後にタイムアウトになります - (理由: {1})。",
- "VSND2023": "利用できる呼び出し履歴がありません。",
- "failed.to.read.port": "ファイル {dataDirPath} を読み取れませんでした。{error}",
- "port.file.contents.invalid": "\"{dataDirPath}\" にあるファイルには有効なポート データが含まれていませんでした。内容: {dataDirContents}"
- },
- "chrome/breakpoints": {
- "setBPTimedOut": "ブレークポイントの設定要求がタイムアウトになりました",
- "bp.fail.unbound": "ブレークポイントは設定されていますが、まだバインドされていません",
- "bp.fail.noscript": "ブレークポイント要求用のスクリプトが見つかりません",
- "validateBP.sourcemapFail": "生成コードが見つからなかったため、ブレークポイントは無視されました (ソース マップに問題がありますか?)。",
- "validateBP.notFound": "ターゲット パスが見つからないため、ブレークポイントは無視されました",
- "invalidHitCondition": "次のヒット条件が無効です: {0}"
- },
- "chrome/chromeDebugAdapter": {
- "exceptions.all": "すべての例外",
- "exceptions.uncaught": "キャッチされない例外",
- "exceptions.promise_rejects": "Promise の拒否"
- },
- "chrome/chromeTargetDiscoveryStrategy": {
- "attach.responseButNoTargets": "ターゲット アプリから応答を受け取りましたが、ターゲット ページが見つかりませんでした",
- "attach.cannotConnect": "ターゲットに接続できません: {0}",
- "attach.invalidResponse": "ターゲットからの応答が無効のようです。エラー: {0}。応答: {1}",
- "attach.invalidResponseArray": "ターゲットからの応答が無効のようです: {0}",
- "attach.noMatchingTarget": "{0} と一致する有効なターゲットが見つかりません。使用可能なページ: {1}",
- "attach.devToolsAttached": "このターゲットにはアタッチできません。Chrome DevTools がこれにアタッチされている可能性があります: {0}"
- },
- "chrome/stackFrames": {
- "skipReason": "('{0}' によりスキップされました)",
- "scope.exception": "例外"
- },
- "chrome/stoppedEvent": {
- "reason.description.step": "ステップで一時停止しました",
- "reason.description.breakpoint": "ブレークポイントで一時停止しました",
- "reason.description.exception": "例外で一時停止しました",
- "reason.description.uncaughtException": "キャッチされない例外で一時停止しました",
- "reason.description.caughtException": "キャッチした例外で一時停止しました",
- "reason.description.user_request": "ユーザー要求で一時停止しました",
- "reason.description.entry": "エントリで一時停止しました",
- "reason.description.debugger_statement": "デバッガー ステートメントで一時停止しました",
- "reason.description.restart": "フレーム エントリで一時停止しました",
- "reason.description.promiseRejection": "Promise の拒否で一時停止しました"
- },
- "transformers/baseSourceMapTransformer": {
- "origin.inlined.source.map": "ソース マップからの読み取り専用のインライン コンテンツ"
- },
- "transformers/remotePathTransformer": {
- "localRootAndRemoteRoot": "localRoot と remoteRoot の両方を指定する必要があります。"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-ja/translations/extensions/vscode-node-debug.i18n.json b/i18n/vscode-language-pack-ja/translations/extensions/vscode-node-debug.i18n.json
deleted file mode 100644
index 383a7ed7bc..0000000000
--- a/i18n/vscode-language-pack-ja/translations/extensions/vscode-node-debug.i18n.json
+++ /dev/null
@@ -1,185 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "package": {
- "extension.description": "Node.js デバッグ サポート(バージョン 8.0 未満)",
- "node.label": "Node.js",
- "open.loaded.script": "読み込み済みのスクリプトを開く",
- "attach.node.process": "Node のプロセスにアタッチ",
- "toggle.skipping.this.file": "このファイルのスキップを切り替え",
- "start.with.stop.on.entry": "デバッグを開始して、エントリで停止する",
- "smartStep.description": "元のソースにマップできない生成コードを自動的にステップスルーします。",
- "skipFiles.description": "デバッグ時にスキップするファイルの glob パターンの配列。パターン `/**` はすべての内部 Node.js モジュールに一致します。",
- "outFiles.description": "ソース マップを有効にすると、これらの glob パターンにより、生成される JavaScript ファイルが指定されます。パターンが '!' で始まる場合、そのファイルは除外されます。指定しない場合、生成されるコードはそのソースと同じディレクトリ内にあると想定されます。例: '[\"${workspaceFolder}/out/**/*.js\"]'",
- "outDir.deprecationMessage": "属性 'outDir' は非推奨です。代わりに 'outFiles' をご使用ください。",
- "trace.description": "診断出力を生成します。これを true に設定する代わりに、コンマで区切られた 1 つ以上のセレクターの一覧を作成することができます。'verbose' セレクターにより、非常に詳細な出力が生成されます。",
- "launch.args.description": "プログラムに渡すコマンド ライン引数。",
- "debug.node.showUseWslIsDeprecatedWarning.description": "'useWSL' 属性を使用するときに警告を表示するかどうかを制御します。",
- "debug.node.useV3.description": "[試験段階] \"node\" 型の起動構成ファイルを js-debug 拡張機能にデリゲートするかどうかを制御します。",
- "debug.extensionHost.useV3.description": "[試験段階] \"extensionHost\" 型の起動構成ファイルを js-debug 拡張機能にデリゲートするかどうかを制御します。",
- "node.protocol.description": "使用する Node.js デバッグ プロトコルです。",
- "node.protocol.auto.description": "最適なプロトコルを自動的に検出しようとします。Node 8.0 以上の起動には 'inspector' を選択します。",
- "node.protocol.inspector.description": "Node.js バージョン 6.3 以上でサポートされる新しいプロトコル",
- "node.protocol.legacy.description": "Node.js バージョン 8.0 未満でサポートされている古いプロトコル",
- "node.sourceMaps.description": "JavaScript ソース マップを使用します (存在する場合)。",
- "node.stopOnEntry.description": "起動後、プログラムを自動的に停止します。",
- "node.port.description": "添付先のデバッグ ポート。既定は 5858 です。",
- "node.address.description": "デバッグ対象のプロセスの TCP/IP アドレス (Node.js 5.0 以上の場合のみ)。既定値は 'localhost' です。",
- "node.timeout.description": "Node.js への接続を再試行する期間 (ミリ秒単位)。既定値は 10000 ミリ秒です。",
- "node.restart.description": "Node.js の終了後にセッションを再起動します。",
- "node.localRoot.description": "プログラムの入ったローカル ディレクトリへのパス。",
- "node.remoteRoot.description": "プログラムの入ったリモート ディレクトリへの絶対パス。",
- "node.showAsyncStacks.description": "現在の呼び出し履歴の原因となった非同期呼び出しを表示します。'inspector' プロトコルのみ。",
- "node.sourceMapPathOverrides.description": "ソース ファイルの場所をソースマップが示している場所からディスク上の場所に書き換えるための一連のマッピングです。",
- "node.disableOptimisticBPs.description": "どのファイルについても、そのファイルのソースマップが読み込まれるまではブレークポイントを設定しないでください。",
- "node.launch.program.description": "プログラムへの絶対パス。生成される値は、package.json ファイルと開かれたファイルを参照して推測されます。この属性を編集してください。",
- "node.launch.externalConsole.deprecationMessage": "属性 'externalConsole' は非推奨です。代わりに 'console' を使用してください。",
- "node.launch.console.description": "デバッグ ターゲットの起動場所です。",
- "node.launch.console.internalConsole.description": "VS Code デバッグ コンソールです (プログラムからの入力の読み取りはサポートしていません)",
- "node.launch.console.integratedTerminal.description": "VS Code の統合ターミナルです",
- "node.launch.console.externalTerminal.description": "ユーザー設定を介して構成できる外部ターミナルです",
- "node.launch.cwd.description": "デバッグ対象プログラムの作業ディレクトリへの絶対パス。",
- "node.launch.runtimeExecutable.description": "使用するランタイム。絶対パス、または PATH 上で使用可能なランタイムの名前のいずれかです。省略した場合は、`node` とみなされます。",
- "node.launch.runtimeArgs.description": "省略可能な引数がランタイム実行可能ファイルに渡されました。",
- "node.launch.runtimeVersion.description": "使用する `node` ランタイムのバージョン。`nvm` が必要です。",
- "node.launch.env.description": "環境変数がプログラムに渡されました。値 'null' を指定すると、変数が環境から削除されます。",
- "node.launch.envFile.description": "環境変数定義が含まれているファイルへの絶対パス。",
- "node.launch.useWSL.description": "Windows Subsystem for Linux を使用します。",
- "node.launch.useWSL.deprecation": "'useWSL' は廃止され、サポートが終了されます。代わりに 'Remote - WSL' 拡張機能を使用します。",
- "node.launch.outputCapture.description": "出力メッセージのキャプチャ元の場所: デバッグ API、または stdout/stderr ストリーム。",
- "node.launch.autoAttachChildProcesses.description": "デバッガーを自動的に新しい子プロセスにアタッチします。",
- "node.launch.config.name": "起動",
- "node.attach.processId.description": "アタッチするプロセスの ID。",
- "node.attach.config.name": "アタッチ",
- "node.processattach.config.name": "プロセスにアタッチ",
- "node.snippet.launch.label": "Node.js: プログラムの起動",
- "node.snippet.launch.description": "ノード プログラムをデバッグ モードで起動します",
- "node.snippet.npm.label": "Node.js: NPM による起動",
- "node.snippet.npm.description": "npm の `debug` スクリプトにより Node プログラムを起動します",
- "node.snippet.attach.label": "Node.js: アタッチ",
- "node.snippet.attach.description": "実行中のノード プログラムにアタッチします",
- "node.snippet.remoteattach.label": "Node.js: リモート プログラムにアタッチする",
- "node.snippet.remoteattach.description": "リモート ノード プログラムのデバッグ ポートにアタッチします",
- "node.snippet.attachProcess.label": "Node.js: プロセスへのアタッチ",
- "node.snippet.attachProcess.description": "プロセス ピッカーを開いて、アタッチ先の node プロセスを選択します",
- "node.snippet.nodemon.label": "Node.js: nodemon のセットアップ",
- "node.snippet.nodemon.description": "nodemon を使用してソース変更時にデバッグ セッションを再起動します",
- "node.snippet.mocha.label": "Node.js: Mocha テスト",
- "node.snippet.mocha.description": "Mocha テストをデバッグします",
- "node.snippet.yo.label": "Node.js: Yeoman ジェネレーター",
- "node.snippet.yo.description": "yeoman ジェネレーターをデバッグします (プロジェクト フォルダーで `npm link` を実行してインストールします)",
- "node.snippet.gulp.label": "Node.js: Gulp タスク",
- "node.snippet.gulp.description": "gulp タスクをデバッグします (プロジェクトにローカルの gulp がインストールされていることを確認します)",
- "node.snippet.electron.label": "Node.js: Electron (メイン)",
- "node.snippet.electron.description": "Electron のメイン プロセスをデバッグします"
- },
- "dist/node/nodeDebug": {
- "setVariable.error": "値の設定がサポートされていません",
- "exception.paused.promise.rejection": "Promise の失敗で一時停止",
- "exception.promise.rejection.text": "Promise の失敗 ({0})",
- "exception.promise.rejection": "Promise の失敗",
- "reason.description.step": "ステップで一時停止",
- "reason.description.breakpoint": "ブレークポイントで一時停止",
- "reason.description.exception": "例外で一時停止",
- "reason.description.user_request": "ユーザー要求で一時停止しました",
- "reason.description.entry": "エントリで一時停止",
- "reason.description.debugger_statement": "デバッガー ステートメントで一時停止しました",
- "reason.description.restart": "フレーム エントリで一時停止しました",
- "exceptions.all": "すべての例外",
- "exceptions.uncaught": "キャッチされない例外",
- "exceptions.rejects": "Promise が失敗",
- "VSND2028": "コンソールの種類 '{0}' が不明です。",
- "attribute.wls.not.exist": "Windows Subsystem Linux のインストールが見つかりません",
- "VSND2001": "PATH にランタイム '{0}' が見つかりません。'{0}' がインストールされていることをご確認ください。",
- "program.path.case.mismatch.warning": "プログラム パスで使用されている文字と、ディスク上のファイルの文字の間で大文字と小文字が異なっています。ブレークポイントがヒットしない可能性があります。",
- "VSND2002": "プログラム '{0}' を起動できません。ソース マップを構成することによって解決される可能性があります。",
- "VSND2009": "対応する JavaScript が見つからないため、プログラム '{0}' を起動できません。",
- "VSND2003": "プログラム '{0}' を起動できません。'{1}' 属性を設定することによって解決される可能性があります。",
- "VSND2029": "ファイル ({0}) から環境変数を読み込めません。",
- "node.console.title": "Node デバッグ コンソール",
- "VSND2011": "ターミナル ({0}) でデバッグ ターゲットを起動できません。",
- "VSND2017": "デバッグ ターゲット ({0}) を起動できません。",
- "VSND2010": "ランタイム プロセスに接続できません (理由: {0})。",
- "VSND2033": "ランタイムに接続できません。ランタイムが 'レガシ' デバッグ モードであることを確認してください。",
- "VSND2034": "'legacy' プロトコルを介してランタイムに接続できません。'inspector' プロトコルを使用してください。",
- "file.on.disk.changed": "ディスク上のファイルが変更されているため検証されませんでした。デバッグ セッションを再開してください。",
- "VSND2019": "内部モジュール {0} が見つかりません。",
- "sourcemapping.fail.message": "生成コードが見つからなかったため、ブレークポイントは無視されました (ソース マップに問題がありますか?)。",
- "VSND2022": "プログラムが JavaScript の外部で一時停止したため、呼び出し履歴はありません。",
- "VSND2023": "利用できる呼び出し履歴がありません。",
- "VSND2018": "利用できる呼び出し履歴はありません ({_command}: {_error})。",
- "origin.from.node": "Node.js からの読み取り専用コンテンツ",
- "origin.from.remote.node": "リモート Node.js からの読み取り専用コンテンツ",
- "origin.core.module": "読み取り専用のコア モジュール",
- "source.skipFiles": "'skipFiles' のためにスキップされました",
- "source.smartstep": "'smartStep' のためにスキップされました",
- "origin.inlined.source.map": "ソース マップからの読み取り専用のインライン コンテンツ",
- "anonymous.function": "(匿名関数)",
- "scope.local.with.count": "ローカル ({1} の {0})",
- "scope.unknown": "不明なスコープの種類: {0}",
- "scope.exception": "例外",
- "eval.not.available": "使用不可",
- "eval.invalid.expression": "正しくない式: {0}",
- "source.not.found": "内容を取得できませんでした。",
- "attribute.path.not.exist": "属性 '{0}' がありません ('{1}')。",
- "attribute.path.not.absolute": "属性 '{0}' が絶対パスになっていません ('{1}')。'{2}' を接頭辞として追加して絶対パスにすることをご検討ください。",
- "more.information": "詳細情報",
- "VSND2015": "Node.js が応答しないため、要求 '{_request}' がキャンセルされました。",
- "VSND2016": "Node.js は適切な期間内に要求 '{_request}' に応答しませんでした。",
- "scope.global": "GLOBAL",
- "scope.local": "LOCAL",
- "scope.with": "使用",
- "scope.closure": "クロージャ",
- "scope.catch": "Catch",
- "scope.block": "ブロック",
- "scope.script": "スクリプト"
- },
- "dist/node/nodeV8Protocol": {
- "not.connected": "ランタイムに接続されていません",
- "runtime.unresponsive": "Node.js が応答しないため、キャンセルされました",
- "runtime.timeout": "{0} ミリ秒後にタイムアウト"
- },
- "dist/node/extension/autoAttach": {
- "process.with.pid.label": "自動アタッチ ({0})"
- },
- "dist/node/extension/cluster": {
- "child.process.with.pid.label": "子プロセス {0}"
- },
- "dist/node/extension/configurationProvider": {
- "program.not.found.message": "デバッグするプログラムが見つかりません",
- "useWslDeprecationWarning.title": "属性 'useWSL' は非推奨です。代わりに 'Remote WSL' 拡張機能を使用してください。詳細は、[こちら]({0})をクリックしてください。",
- "useWslDeprecationWarning.doNotShowAgain": "今後表示しない",
- "NVS_HOME.not.found.message": "'runtimeVersion' 属性には Node.js バージョン マネージャー 'nvs' が必要です。",
- "NVM_HOME.not.found.message": "'runtimeVersion' 属性には Node.js バージョン マネージャー 'nvm-windows' または 'nvs' が必要です。",
- "NVM_DIR.not.found.message": "'runtimeVersion' 属性には Node.js バージョン マネージャー 'nvm' または 'nvs' が必要です。",
- "runtime.version.not.found.message": "'{1}' に Node.js バージョン '{0}' はインストールされていません。",
- "node.launch.config.name": "プログラムの起動",
- "mern.starter.explanation": "'{0}' プロジェクトのための起動構成を生成しました。",
- "program.guessed.from.package.json.explanation": "'package.json' を基に起動構成を生成しました。",
- "outFiles.explanation": "生成された JavaScript をカバーするように、 'outFiles' 属性で glob パターンを調整します。"
- },
- "dist/node/extension/processPicker": {
- "pid.error": "プロセスにアタッチ: 処理 '{0}' をデバッグ モードにできません。",
- "process.id.error": "プロセスにアタッチ: '{0}' はプロセス ID ではないようです。",
- "pickNodeProcess": "アタッチする node.js プロセスを選択してください",
- "process.picker.error": "プロセス ピッカーが失敗しました ({0})",
- "process.id.port": "プロセス ID: {0}、デバッグ ポート: {1}",
- "process.id.port.legacy": "プロセス id: {0}、デバッグ ポート: {1} (レガシー プロトコル)",
- "process.id.port.signal": "プロセス ID: {0}、デバッグ ポート: {1} ({2})",
- "process.id.signal": "プロセス ID: {0} ({1})",
- "cannot.enable.debug.mode.error": "プロセスに添付: プロセス '{0}' ({1}) に対してデバッグ モードを有効にできません。"
- },
- "dist/node/extension/protocolDetection": {
- "protocol.switch.legacy.detected": "検出されたため、レガシ プロトコルでデバッグしています。",
- "protocol.switch.unknown.error": "Node.js のバージョンを判別できなかったため、インスペクター プロトコルをデバッグしています ({0})",
- "protocol.switch.legacy.version": "Node.js {0} が検出されたため、以前のプロトコルでデバッグしています。"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-ja/translations/extensions/vscode-node-debug2.i18n.json b/i18n/vscode-language-pack-ja/translations/extensions/vscode-node-debug2.i18n.json
deleted file mode 100644
index d32cd433f5..0000000000
--- a/i18n/vscode-language-pack-ja/translations/extensions/vscode-node-debug2.i18n.json
+++ /dev/null
@@ -1,80 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "package": {
- "extension.description": "Node.js デバッグ サポート",
- "node.label": "Node.js v6.3+ (インスペクター プロトコル経由)",
- "node.sourceMaps.description": "JavaScript ソース マップを使用します (存在する場合)。",
- "outDir.deprecationMessage": "属性 'outDir' は非推奨です。代わりに 'outFiles' をご使用ください。",
- "node.outFiles.description": "ソース マップが有効にされている場合、これらの glob パターンは、生成された JavaScript ファイルを指定します。パターンが '!' で始まる場合、ファイルは除外されます。指定されない場合、生成されたコードは、そのソースと同じディレクトリにあるものと見なされます。",
- "node.stopOnEntry.description": "起動後、プログラムを自動的に停止します。",
- "node.port.description": "アタッチ先のデバッグ ポート。既定値は 9229 です。",
- "node.address.description": "デバッグ ポートの TCP/IP アドレス。既定値は 'localhost' です。",
- "node.timeout.description": "Node.js への接続を再試行する期間 (ミリ秒単位)。既定値は 10000 ミリ秒です。",
- "node.smartStep.description": "元のソースにマップできない生成コードを自動的にステップスルーします。",
- "node.enableSourceMapCaching.description": "ソースマップが URL からダウンロードされたら、それをディスクにキャッシュします。",
- "node.diagnosticLogging.description": "true の場合、アダプターはその独自の診断をコンソールに記録します",
- "node.diagnosticLogging.deprecationMessage": "'diagnosticLogging' は非推奨です。代わりに 'trace' をご使用ください。",
- "node.verboseDiagnosticLogging.description": "true の場合、アダプターはクライアントおよびターゲットとのすべてのトラフィック (および 'diagnosticLogging' によって記録される情報) を記録します",
- "node.verboseDiagnosticLogging.deprecationMessage": "'verboseDiagnosticLogging' は非推奨です。代わりに 'trace' をご使用ください。",
- "node.trace.description": "'true' の場合、デバッガーはトレース情報をファイルに記録します。'verbose' の場合、コンソールでのログの表示も行います。",
- "node.sourceMapPathOverrides.description": "ソース ファイルの場所をソースマップに指定されている内容からディスク上の場所へ書き換えるための一連のマッピング。詳しくは Readme をご覧ください。",
- "node.skipFiles.description": "デバッグ時にスキップするファイル名またはフォルダー名の配列、または glob パターン。",
- "node.restart.description": "Node.js の終了後にセッションを再起動します。",
- "node.showAsyncStacks.description": "現在の呼び出し履歴にまで至った非同期呼び出しを表示します。",
- "node.disableOptimisticBPs.description": "どのファイルについても、そのファイルのソースマップが読み込まれるまではブレークポイントを設定しないでください。",
- "node.launch.program.description": "プログラムへの絶対パス。",
- "node.launch.console.description": "デバッグ ターゲットを起動する場所: 内部コンソール、統合ターミナル、外部ターミナル。",
- "node.launch.args.description": "プログラムに渡すコマンド ライン引数。",
- "node.launch.cwd.description": "デバッグ対象プログラムの作業ディレクトリへの絶対パス。",
- "node.launch.runtimeExecutable.description": "使用するランタイム。絶対パスまたは PATH で使用可能なランタイムの名前。省略される場合、'node' が使用されます。",
- "node.launch.runtimeArgs.description": "省略可能な引数がランタイム実行可能ファイルに渡されました。",
- "node.launch.env.description": "環境変数がプログラムに渡されました。値 'null' を指定すると、変数が環境から削除されます。",
- "node.launch.envFile.description": "環境変数定義が含まれているファイルへの絶対パス。",
- "node.launch.outputCapture.description": "出力メッセージのキャプチャ元の場所: デバッグ API、または stdout/stderr ストリーム。",
- "node.launch.config.name": "起動",
- "node.attach.processId.description": "アタッチするプロセスの ID。",
- "node.attach.localRoot.description": "'remoteRoot' に対応するローカル ソース ルート。",
- "node.attach.remoteRoot.description": "リモート ホストのソース ルート。",
- "node.attach.config.name": "アタッチ",
- "node.processattach.config.name": "プロセスにアタッチ",
- "toggle.skipping.this.file": "このファイルのスキップを切り替え",
- "extensionHost.label": "VS Code 拡張機能の開発",
- "extensionHost.launch.runtimeExecutable.description": "VS Code への絶対パス。",
- "extensionHost.launch.stopOnEntry.description": "起動後に拡張機能ホストを自動的に停止します。",
- "extensionHost.launch.env.description": "拡張機能ホストに渡される環境変数。",
- "extensionHost.snippet.launch.label": "VS Code 拡張機能の開発",
- "extensionHost.snippet.launch.description": "デバッグ モードで VS Code 拡張機能を起動します",
- "extensionHost.launch.config.name": "拡張機能の起動"
- },
- "out/src/errors": {
- "VSND2001": "PATH にランタイム '{0}' が見つかりません。'{0}' はインストールされていますか?",
- "VSND2011": "ターミナル ({0}) でデバッグ ターゲットを起動できません。",
- "VSND2017": "デバッグ ターゲット ({0}) を起動できません。",
- "VSND2035": "拡張機能 ({0}) をデバッグできません。",
- "VSND2028": "コンソールの種類 '{0}' が不明です。",
- "VSND2002": "プログラム '{0}' を起動できません。ソース マップを構成することによって解決される可能性があります。",
- "VSND2003": "プログラム '{0}' を起動できません。'{1}' 属性を設定することによって解決される可能性があります。",
- "VSND2009": "対応する JavaScript が見つからないため、プログラム '{0}' を起動できません。",
- "VSND2029": "ファイル ({0}) から環境変数を読み込めません。"
- },
- "out/src/nodeDebugAdapter": {
- "attribute.wsl.not.exist": "Windows Subsystem for Linux インストールが見つかりません。",
- "program.path.case.mismatch.warning": "プログラム パスで使用されている文字と、ディスク上のファイルの文字の間で大文字と小文字が異なっています。ブレークポイントがヒットしない可能性があります。",
- "node.console.title": "Node デバッグ コンソール",
- "attribute.path.not.exist": "属性 '{0}' がありません ('{1}')。",
- "attribute.path.not.absolute": "属性 '{0}' が絶対パスになっていません ('{1}')。'{2}' を接頭辞として追加して絶対パスにすることをご検討ください。",
- "VSND2001": "PATH にランタイム '{0}' が見つかりません。'{0}' がインストールされていることをご確認ください。",
- "more.information": "詳細情報",
- "origin.from.node": "Node.js からの読み取り専用コンテンツ",
- "origin.core.module": "読み取り専用のコア モジュール"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-ja/translations/extensions/vscode.bat.i18n.json b/i18n/vscode-language-pack-ja/translations/extensions/vscode.bat.i18n.json
index e74b7a44cb..9693fec29e 100644
--- a/i18n/vscode-language-pack-ja/translations/extensions/vscode.bat.i18n.json
+++ b/i18n/vscode-language-pack-ja/translations/extensions/vscode.bat.i18n.json
@@ -9,8 +9,8 @@
"version": "1.0.0",
"contents": {
"package": {
- "displayName": "Windows バッチ言語の基礎",
- "description": "Windows batch ファイル内でスニペット、構文ハイライト、かっこ一致、折りたたみを提供します。"
+ "description": "Windows batch ファイル内でスニペット、構文ハイライト、かっこ一致、折りたたみを提供します。",
+ "displayName": "Windows バッチ言語の基礎"
}
}
}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-ja/translations/extensions/notebook-renderers.i18n.json b/i18n/vscode-language-pack-ja/translations/extensions/vscode.builtin-notebook-renderers.i18n.json
similarity index 100%
rename from i18n/vscode-language-pack-ja/translations/extensions/notebook-renderers.i18n.json
rename to i18n/vscode-language-pack-ja/translations/extensions/vscode.builtin-notebook-renderers.i18n.json
diff --git a/i18n/vscode-language-pack-ja/translations/extensions/vscode.clojure.i18n.json b/i18n/vscode-language-pack-ja/translations/extensions/vscode.clojure.i18n.json
index 00ea6c3ac6..5446e95b9d 100644
--- a/i18n/vscode-language-pack-ja/translations/extensions/vscode.clojure.i18n.json
+++ b/i18n/vscode-language-pack-ja/translations/extensions/vscode.clojure.i18n.json
@@ -9,8 +9,8 @@
"version": "1.0.0",
"contents": {
"package": {
- "displayName": "Clojure の基本言語サポート",
- "description": "Clojure ファイル内で構文ハイライト、かっこ一致を提供します。"
+ "description": "Clojure ファイル内で構文ハイライト、かっこ一致を提供します。",
+ "displayName": "Clojure の基本言語サポート"
}
}
}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-ja/translations/extensions/vscode.coffeescript.i18n.json b/i18n/vscode-language-pack-ja/translations/extensions/vscode.coffeescript.i18n.json
index c9b5b618d0..2ea3a3cf5b 100644
--- a/i18n/vscode-language-pack-ja/translations/extensions/vscode.coffeescript.i18n.json
+++ b/i18n/vscode-language-pack-ja/translations/extensions/vscode.coffeescript.i18n.json
@@ -9,8 +9,8 @@
"version": "1.0.0",
"contents": {
"package": {
- "displayName": "CoffeeScript の基本言語サポート",
- "description": "CoffeScript ファイル内でスニペット、構文ハイライト、かっこ一致、折りたたみを提供します。"
+ "description": "CoffeScript ファイル内でスニペット、構文ハイライト、かっこ一致、折りたたみを提供します。",
+ "displayName": "CoffeeScript の基本言語サポート"
}
}
}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-ja/translations/extensions/vscode.configuration-editing.i18n.json b/i18n/vscode-language-pack-ja/translations/extensions/vscode.configuration-editing.i18n.json
new file mode 100644
index 0000000000..822e5bf49c
--- /dev/null
+++ b/i18n/vscode-language-pack-ja/translations/extensions/vscode.configuration-editing.i18n.json
@@ -0,0 +1,77 @@
+{
+ "": [
+ "--------------------------------------------------------------------------------------------",
+ "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."
+ ],
+ "version": "1.0.0",
+ "contents": {
+ "bundle": {
+ "Example": "例",
+ "Files by Extension": "特定の拡張子のファイル",
+ "Files with Extension": "当該拡張子のファイル",
+ "Files with Multiple Extensions": "複数の拡張子のファイル",
+ "Files with Path": "当該パスのファイル",
+ "Files with Siblings by Name": "同じ名前の兄弟があるファイル",
+ "Folder by Name (Any Location)": "特定の名前のフォルダー (任意の場所)",
+ "Folder by Name (Top Level)": "特定の名前のフォルダー (最上位)",
+ "Folders with Multiple Names (Top Level)": "複数の名前のフォルダー (最上位)",
+ "GitHub": "GitHub",
+ "Map all files matching the absolute path glob pattern in their path to the language with the given identifier.": "絶対パスの glob パターンがパスに一致するすべてのファイルを、指定した識別子の言語にマップします。",
+ "Map all files matching the glob pattern in their filename to the language with the given identifier.": "ファイル名が glob パターンに一致するすべてのファイルを、指定された識別子の言語にマップします。",
+ "Match a folder with a specific name in any location.": "任意の場所にある特定の名前のフォルダーと一致します。",
+ "Match a top level folder with a specific name.": "特定の名前の最上位にあるフォルダーと一致します。",
+ "Match all files of a specific file extension.": "特定のファイル拡張子を持つすべてのファイルと一致します。",
+ "Match all files with any of the file extensions.": "いずれかのファイル拡張子を持つすべてのファイルと一致します。",
+ "Match files that have siblings with the same name but a different extension.": "名前が同じで拡張子が異なる兄弟を持つファイルと一致します。",
+ "Match multiple top level folders.": "複数の最上位フォルダーと一致します。",
+ "The character used by the operating system to separate components in file paths. Is also aliased to '/'.": "オペレーティング システムがファイル パス内のコンポーネントを分離するために使用する文字。'/' にもエイリアスされています。",
+ "The current opened file": "現在開いているファイル",
+ "The current opened file relative to ${workspaceFolder}": "${workspaceFolder} に相対的な現在開いているファイル",
+ "The current opened file workspace folder name without any slashes (/)": "現在開いているファイル ワークスペース フォルダー名 (スラッシュ (/) なし)",
+ "The current opened file's basename": "現在開いているファイルのベース名",
+ "The current opened file's basename with no file extension": "現在開いているファイルの拡張子を含まないベース名",
+ "The current opened file's dirname": "現在開いているファイルのディレクトリ名",
+ "The current opened file's dirname relative to ${workspaceFolder}": "現在開いているファイルの、${workspaceFolder} からの相対 dirname",
+ "The current opened file's extension": "現在開いているファイルの拡張子",
+ "The current opened file's folder name": "現在開いているファイルのフォルダー名",
+ "The current selected line number in the active file": "アクティブなファイル内で選択している行の番号",
+ "The current selected text in the active file": "アクティブなファイル内で選択しているテキスト",
+ "The file extension of the editor (e.g. txt)": "エディターのファイル拡張子 (例: txt)",
+ "The file name of the editor without its directory or extension (e.g. myFile)": "ディレクトリまたは拡張子のないエディターのファイル名 (例: myFile)",
+ "The name of the default build task. If there is not a single default build task then a quick pick is shown to choose the build task.": "既定のビルド タスクの名前。既定のビルド タスクが 1 つもない場合は、ビルド タスクを選択するためのクイック ピックが表示されます。",
+ "The name of the folder opened in VS Code without any slashes (/)": "スラッシュ (/) を含まない VS Code で開いているフォルダーのパス",
+ "The nth parent folder name of the editor": "エディターの n 番目の親フォルダー名",
+ "The parent folder name of the editor (e.g. myFileFolder)": "エディターの親フォルダー名 (例: myFileFolder)",
+ "The path of the folder opened in VS Code": "VS Code で開いているフォルダーのパス",
+ "The path where an extension is installed.": "拡張機能がインストールされているパス。",
+ "The task runner's current working directory on startup": "タスク ランナー起動時の作業ディレクトリ",
+ "Use the language of the currently active text editor if any": "現在アクティブなテキスト エディターがある場合は、そのテキスト エディターの言語を使用する",
+ "a conditional separator (' - ') that only shows when surrounded by variables with values": "値のある変数で囲まれた場合にのみ表示される条件付き区切り記号 (' - ')",
+ "an indicator for when the active editor has unsaved changes": "アクティブなエディターの変更が保存されていない場合を示すインジケーター",
+ "e.g. SSH": "例: SSH",
+ "e.g. VS Code": "例: VS Code",
+ "file path of the workspace (e.g. /Users/Development/myWorkspace)": "ワークスペースのファイル パス (例: /Users/Development/myWorkspace)",
+ "file path of the workspace folder the file is contained in (e.g. /Users/Development/myFolder)": "ファイルが含まれているワークスペース フォルダーのファイル パス (例: /Users/Development/myFolder)",
+ "gist": "gist",
+ "name of the workspace folder the file is contained in (e.g. myFolder)": "ファイルが含まれているワークスペース フォルダーの名前 (例: myFolder)",
+ "name of the workspace with optional remote name and workspace indicator if applicable (e.g. myFolder, myRemoteFolder [SSH] or myWorkspace (Workspace))": "利用可能なオプションのリモート名とワークスペース インジケーターのあるワークスペースの名前 (例: myFolder、myRemoteFolder [SSH]、myWorkspace (Workspace))",
+ "shortened name of the workspace without suffixes (e.g. myFolder or myWorkspace)": "サフィックスのないワークスペースの短縮名 (例: myFolder、myWorkspace)。",
+ "the file name (e.g. myFile.txt)": "ファイル名 (例: myFile.txt)",
+ "the full path of the file (e.g. /Users/Development/myFolder/myFileFolder/myFile.txt)": "ファイルの完全なパス (例: /Users/Development/myFolder/myFileFolder/myFile.txt)",
+ "the full path of the folder the file is contained in (e.g. /Users/Development/myFolder/myFileFolder)": "ファイルが含まれているフォルダーの完全なパス (例: /Users/Development/myFolder/myFileFolder)",
+ "the name of the active branch in the active repository (e.g. main)": "アクティブなリポジトリ内のアクティブなブランチの名前 (例: main)",
+ "the name of the active repository (e.g. vscode)": "アクティブなリポジトリの名前 (例: vscode)",
+ "the name of the folder the file is contained in (e.g. myFileFolder)": "ファイルが入っているフォルダーの名前 (例: myFileFolder)",
+ "the path of the file relative to the workspace folder (e.g. myFolder/myFileFolder/myFile.txt)": "ワークスペース フォルダーに対して相対的なファイルのパス (例: myFolder/myFileFolder/myFile.txt)",
+ "the path of the folder the file is contained in, relative to the workspace folder (e.g. myFolder/myFileFolder)": "ワークスペース フォルダーに相対的な、ファイルが入っているフォルダーのパス (例: myFolder/myFileFolder)",
+ "the state of the active editor (e.g. modified).": "アクティブなエディターの状態 (例: 変更済み)。"
+ },
+ "package": {
+ "description": "設定、起動、拡張機能の推奨事項ファイルといった、構成ファイルの機能 (高度な IntelliSense、auto-fixing など) を提供します。",
+ "displayName": "設定の編集機能"
+ }
+ }
+}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-ja/translations/extensions/vscode.cpp.i18n.json b/i18n/vscode-language-pack-ja/translations/extensions/vscode.cpp.i18n.json
index d3d11c2202..18f5f2f06c 100644
--- a/i18n/vscode-language-pack-ja/translations/extensions/vscode.cpp.i18n.json
+++ b/i18n/vscode-language-pack-ja/translations/extensions/vscode.cpp.i18n.json
@@ -9,8 +9,8 @@
"version": "1.0.0",
"contents": {
"package": {
- "displayName": "C/C++ の基本言語サポート",
- "description": "C/C++ ファイル内でスニペット、構文ハイライト、かっこ一致、折りたたみを提供します。"
+ "description": "C/C++ ファイル内でスニペット、構文ハイライト、かっこ一致、折りたたみを提供します。",
+ "displayName": "C/C++ の基本言語サポート"
}
}
}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-ja/translations/extensions/vscode.csharp.i18n.json b/i18n/vscode-language-pack-ja/translations/extensions/vscode.csharp.i18n.json
index e41651060b..08d5fbf149 100644
--- a/i18n/vscode-language-pack-ja/translations/extensions/vscode.csharp.i18n.json
+++ b/i18n/vscode-language-pack-ja/translations/extensions/vscode.csharp.i18n.json
@@ -9,8 +9,8 @@
"version": "1.0.0",
"contents": {
"package": {
- "displayName": "C# の基本言語サポート",
- "description": "C# ファイル内でスニペット、構文ハイライト、かっこ一致、折りたたみを提供します。"
+ "description": "C# ファイル内でスニペット、構文ハイライト、かっこ一致、折りたたみを提供します。",
+ "displayName": "C# の基本言語サポート"
}
}
}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-ja/translations/extensions/vscode.css-language-features.i18n.json b/i18n/vscode-language-pack-ja/translations/extensions/vscode.css-language-features.i18n.json
new file mode 100644
index 0000000000..f13aac4e90
--- /dev/null
+++ b/i18n/vscode-language-pack-ja/translations/extensions/vscode.css-language-features.i18n.json
@@ -0,0 +1,368 @@
+{
+ "": [
+ "--------------------------------------------------------------------------------------------",
+ "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."
+ ],
+ "version": "1.0.0",
+ "contents": {
+ "bundle": {
+ "\"store\" a boolean test for later evaluation in a guard or if().": "ガードまたは if() で後で評価するためのブール型テストを \"store\" します。",
+ "'from' expected": "'from' が必要です",
+ "'in' expected": "'in' が必要です",
+ "'through' or 'to' expected": "'through' または 'to' が必要です",
+ "'{0}'": "'{0}'",
+ "( expected": "( が必要です",
+ ") expected": ") が必要です",
+ "": "",
+ "@font-face": "@font-face",
+ "@font-face rule must define 'src' and 'font-family' properties": "'@font-face' 規則で 'src' プロパティと 'font-family' プロパティを定義する必要があります。",
+ "@keyframes {0}": "@keyframes {0}",
+ "A list of properties that are not validated against the `unknownProperties` rule.": "`UnknownProperties` ルールに対して検証されていないプロパティの一覧です。",
+ "Adds quotes to a string.": "文字列に引用符を追加します。",
+ "Also define the standard property '{0}' for compatibility": "互換性のために標準プロパティ '{0}' も定義します",
+ "Always define standard rule '@keyframes' when defining keyframes.": "キーフレームを定義するときは、常に標準ルール '@keyframes' を定義します。",
+ "Always include all vendor specific properties: Missing: {0}": "常にすべてのベンダー固有のプロパティを含める: 見つからない: {0}",
+ "Always include all vendor specific rules: Missing: {0}": "常にすべてのベンダー固有のルールを含める: 見つからない: {0}",
+ "Appends a single value onto the end of a list.": "リストの末尾に 1 つの値を追加します。",
+ "Appends selectors to one another without spaces in between.": "間にスペースを含めずに、セレクターを相互に追加します。",
+ "Avoid using !important. It is an indication that the specificity of the entire CSS has gotten out of control and needs to be refactored.": "!important を使用しないでください。これは CSS 全体の詳細度が制御不能になり、リファクタリングが必要になることを意味します。",
+ "Avoid using 'float'. Floats lead to fragile CSS that is easy to break if one aspect of the layout changes.": "`float` を使用しないでください。float は脆弱な CSS につながり、レイアウトの一部が変更されたときに CSS が破損しやすくなります。",
+ "CSS Language Server": "CSS 言語サーバー",
+ "CSS fix is outdated and can't be applied to the document.": "CSS 修正プログラムは古いため、ドキュメントに適用できません。",
+ "Causes one or more rules to be emitted at the root of the document.": "ドキュメントのルートに 1 つ以上のルールが出力されるようにします。",
+ "Changes one or more properties of a color.": "色の 1 つ以上のプロパティを変更します。",
+ "Changes the alpha component for a color.": "色のアルファ コンポーネントを変更します。",
+ "Changes the hue of a color.": "色の色相を変更します。",
+ "Combines several lists into a single multidimensional list.": "複数のリストを 1 つの多次元リストに結合します。",
+ "Converts a color into the format understood by IE filters.": "IE フィルターで認識される形式に色を変換します。",
+ "Converts a color to grayscale.": "色をグレースケールに変換します。",
+ "Converts a string to lower case.": "文字列を小文字に変換します。",
+ "Converts a string to upper case.": "文字列を大文字に変換します。",
+ "Converts a unitless number to a percentage.": "単位なしの数値をパーセンテージに変換します。",
+ "Creates a Color from hue, saturation, and lightness values.": "色相、彩度、輝度の値から色を作成します。",
+ "Creates a Color from hue, saturation, lightness, and alpha values.": "色相、彩度、輝度、アルファ値から色を作成します。",
+ "Creates a Color from hue, white, and black values.": "色相、白、黒の値から色を作成します。",
+ "Creates a Color from lightness, a, and b values.": "明るさ、a、b の値から色を作成します。",
+ "Creates a Color from lightness, chroma, and hue values.": "明るさ、彩度、色相の値から色を作成します。",
+ "Creates a Color from red, green, and blue values.": "赤、緑、青の値から色を作成します。",
+ "Creates a Color from red, green, blue, and alpha values.": "赤、緑、青、アルファの値から色を作成します。",
+ "Creates a Color from the hue, saturation, and lightness values of another Color.": "別の色の色合い、彩度、明るさの値から色を作成します。",
+ "Creates a Color from the hue, white, and black values of another Color.": "別の色の色合い、白、黒の値から色を作成します。",
+ "Creates a Color from the lightness, a, and b values of another Color.": "別の色の明るさ、a、b の値から色を作成します。",
+ "Creates a Color from the lightness, chroma, and hue values of another Color.": "別の色の明るさ、彩度、色相の値から色を作成します。",
+ "Creates a Color from the red, green, and blue values of another Color.": "別の色の赤、緑、青の値から色を作成します。",
+ "Creates a Color in a specific color space from red, green, and blue values.": "赤、緑、青の値から特定の色空間で色を作成します。",
+ "Creates a Color in a specific color space from the red, green, and blue values of another Color.": "別の色の赤、緑、青の値から特定の色空間で色を作成します。",
+ "Defines complex operations that can be re-used throughout stylesheets.": "スタイルシート全体で再利用できる複雑な操作を定義します。",
+ "Defines styles that can be re-used throughout the stylesheet with `@include`.": "`@include` を使用してスタイルシート全体で再利用できるスタイルを定義します。",
+ "Do not use duplicate style definitions": "重複するスタイル定義を使用しないでください",
+ "Do not use empty rulesets": "空のルールセットを使用しないでください。",
+ "Do not use width or height when using padding or border": "埋め込みや罫線の使用時に幅や高さを使わないでください",
+ "Dynamically calls a Sass function.": "Sass 関数を動的に呼び出します。",
+ "Each loop that sets `$var` to each item in the list or map, then outputs the styles it contains using that value of `$var`.": "リストまたはマップ内の各項目に `$var` を設定し、その値 `$var` を使用して含まれるスタイルを出力する各ループ。",
+ "Exposes the details of Sass’s inner workings.": "SASS の内部作業の詳細を公開します。",
+ "Extends $extendee with $extender within $selector.": "$selector 内の $extender で $extendee を拡張します。",
+ "Extracts a substring from $string.": "$string から substring を抽出します。",
+ "Failed to apply CSS fix to the document. Please consider opening an issue with steps to reproduce.": "CSS 修正をドキュメントに適用できませんでした。再現手順を含めイシューを開くことをご検討ください。",
+ "Finds the maximum of several numbers.": "いくつかの数字のうち最大数を検索します。",
+ "Finds the minimum of several numbers.": "いくつかの数字のうち最小数を検索します。",
+ "Fluidly scales one or more properties of a color.": "色の 1 つ以上のプロパティを柔軟にスケーリングします。",
+ "Folding Region End": "折りたたみ領域の終了",
+ "Folding Region Start": "折りたたみ領域の開始",
+ "For loop that repeatedly outputs a set of styles for each `$var` in the `from/through` or `from/to` clause.": "`from/through` 句または `from/to` 句の各 `$var` に対してスタイルのセットを繰り返し出力する For ループ。",
+ "Generates new colors based on existing ones, making it easy to build color themes.": "既存の色に基づいて新しい色を生成し、配色テーマを簡単に作成できます。",
+ "Gets the blue component of a color.": "色の青のコンポーネントを取得します。",
+ "Gets the green component of a color.": "緑の色相コンポーネントを取得します。",
+ "Gets the hue component of a color.": "色の色相コンポーネントを取得します。",
+ "Gets the lightness component of a color.": "色の輝度コンポーネントを取得します。",
+ "Gets the opacity component of a color.": "色の不透明度コンポーネントを取得します。",
+ "Gets the red component of a color.": "色の赤のコンポーネントを取得します。",
+ "Gets the saturation component of a color.": "色の彩度要素を取得します。",
+ "Hex colors must consist of three, four, six or eight hex numbers": "16 進数の色は、3、4、6、または 8 の 16 進数で構成する必要があります",
+ "IE hacks are only necessary when supporting IE7 and older": "IE ハックは、IE7 以前をサポートする場合にのみ必要です。",
+ "Import statements do not load in parallel": "Import ステートメントは並行して読み込まれません",
+ "Includes the body if the expression does not evaluate to `false` or `null`.": "式が `false` または `null` に評価されない場合に本文を含めます。",
+ "Includes the styles defined by another mixin into the current rule.": "別の mixin で定義されたスタイルを現在のルールに含めます。",
+ "Increases or decreases one or more components of a color.": "色の 1 つ以上の要素を増減します。",
+ "Inherits the styles of another selector.": "別のセレクターのスタイルを継承します。",
+ "Insert url() Function": "URL() 関数の挿入",
+ "Insert url() Functions": "URL() 関数の挿入",
+ "Inserts $insert into $string at $index.": "$index で $string に $insert を挿入します。",
+ "Invalid number of parameters": "パラメーター数が無効です。",
+ "Joins together two lists into one.": "2 つのリストを 1 つに結合します。",
+ "Lets you access and modify values in lists.": "リスト内の値にアクセスして変更できます。",
+ "Loads a Sass stylesheet and makes its mixins, functions, and variables available when this stylesheet is loaded with the @use rule.": "Sass スタイルシートを読み込み、このスタイルシートが @use ルールで読み込まれるときに、その mixins、関数、変数を使用できるようにします。",
+ "Loads mixins, functions, and variables from other Sass stylesheets as 'modules', and combines CSS from multiple stylesheets together.": "他の SASS スタイルシートから mixins、関数、変数を 'modules' として読み込み、複数のスタイルシートの CSS を組み合わせます。",
+ "Makes a color darker.": "色を暗くします。",
+ "Makes a color less saturated.": "色の彩度を低くします。",
+ "Makes a color lighter.": "色を薄くします。",
+ "Makes a color more opaque.": "色をより不透明にします。",
+ "Makes a color more saturated.": "色の彩度をより高くします。",
+ "Makes a color more transparent.": "色をより透明にします。",
+ "Makes it easy to combine, search, or split apart strings.": "文字列の結合、検索、分割が簡単になります。",
+ "Makes it possible to look up the value associated with a key in a map, and much more.": "マップ内のキーに関連付けられている値などを検索できるようにします。",
+ "Merges two maps together into a new map.": "2 つのマップを結合して新しいマップにします。",
+ "Mix two colors together in a polar color space.": "極性色空間で 2 つの色を混ぜ合わせます。",
+ "Mix two colors together in a rectangular color space.": "四角形の色空間で 2 つの色を混ぜ合わせます。",
+ "Mixes two colors together.": "2 つの色を混ぜ合わせます。",
+ "Nests selector beneath one another like they would be nested in the stylesheet.": "セレクターがスタイルシート内で入れ子になっているのと同じように、セレクターを相互に入れ子にします。",
+ "No unit for zero needed": "0 に単位は必要ありません",
+ "Parses a selector into the format returned by &.": "セレクターを解析して、& によって返される形式にします。",
+ "Prints the value of an expression to the standard error output stream. Useful for debugging complicated Sass files.": "式の値を標準エラー出力ストリームに出力します。複雑な SASS ファイルのデバッグに役立ちます。",
+ "Prints the value of an expression to the standard error output stream. Useful for libraries that need to warn users of deprecations or recovering from minor mixin usage mistakes. Warnings can be turned off with the `--quiet` command-line option or the `:quiet` Sass option.": "式の値を標準エラー出力ストリームに出力します。非推奨についてユーザーに警告する必要があるライブラリ、または軽度な mixin の使用ミスからの回復に役立ちます。`--quiet` コマンド ライン オプションまたは `:quiet` SASS オプションを使用すると、警告をオフにすることができます。",
+ "Property is ignored due to the display.": "display の設定によりプロパティは無視されます。",
+ "Property is ignored due to the display. With 'display: block', vertical-align should not be used.": "display の設定によりプロパティは無視されます。 'display: block' では、vertical-align を使用できません。",
+ "Provides access to Sass’s powerful selector engine.": "SASS の強力なセレクター エンジンへのアクセスを提供します。",
+ "Provides functions that operate on numbers.": "数値を操作する関数を提供します。",
+ "Removes quotes from a string.": "文字列から引用符を削除します。",
+ "Rename to '{0}'": "名前を '{0}' に変更する",
+ "Replaces $original with $replacement within $selector.": "$selector 内の $original を $replacement に置き換えます。",
+ "Replaces the nth item in a list.": "リストの n 番目の項目を置き換えます。",
+ "Returns a list of all keys in a map.": "マップ内のすべてのキーのリストを返します。",
+ "Returns a list of all values in a map.": "マップ内のすべてのキーの値を返します。",
+ "Returns a new map with keys removed.": "キーが削除された新しいマップを返します。",
+ "Returns a random number.": "乱数を返します。",
+ "Returns a specific item in a list.": "リスト内の特定の項目を返します。",
+ "Returns the absolute value of a number.": "数値の絶対値を返します。",
+ "Returns the complement of a color.": "色の補数を返します。",
+ "Returns the index of the first occurance of $substring in $string.": "$string で最初に発生した $substring のインデックスを返します。",
+ "Returns the inverse of a color.": "色の逆数を返します。",
+ "Returns the keywords passed to a function that takes variable arguments.": "変数引数を受け取る関数に渡されるキーワードを返します。",
+ "Returns the length of a list.": "リストの長さを返します。",
+ "Returns the number of characters in a string.": "文字列の文字数を返します。",
+ "Returns the position of a value within a list.": "リスト内の値の位置を返します。",
+ "Returns the separator of a list.": "リストの区切り記号を返します。",
+ "Returns the simple selectors that comprise a compound selector.": "複合セレクターを構成するシンプルなセレクターを返します。",
+ "Returns the string representation of a value as it would be represented in Sass.": "SASS で表される値の文字列表現を返します。",
+ "Returns the type of a value.": "値の型を返します。",
+ "Returns the unit(s) associated with a number.": "数値に関連付けられた単位を返します。",
+ "Returns the value in a map associated with a given key.": "指定されたキーに関連付けられたマップ内の値を返します。",
+ "Returns whether $super matches all the elements $sub does, and possibly more.": "$super が、$sub のすべての要素と一致するかどうか、およびその他の要素を返します。",
+ "Returns whether a feature exists in the current Sass runtime.": "現在の Sass ランタイムに機能が存在するかどうかを返します。",
+ "Returns whether a function with the given name exists.": "指定された名前の関数が存在するかどうかを返します。",
+ "Returns whether a map has a value associated with a given key.": "任意のキーに関連付けられた値がマップにあるかどうかを返します。",
+ "Returns whether a mixin with the given name exists.": "指定された名前の mixin が存在するかどうかを返します。",
+ "Returns whether a number has units.": "数値に単位があるかどうかを返します。",
+ "Returns whether a variable with the given name exists in the current scope.": "指定された名前の変数が現在のスコープに存在するかどうかを返します。",
+ "Returns whether a variable with the given name exists in the global scope.": "指定された名前の変数がグローバル スコープに存在するかどうかを返します。",
+ "Returns whether two numbers can be added, subtracted, or compared.": "2 つの数値を加算、減算、または比較できるかどうかを返します。",
+ "Rounds a number down to the previous whole number.": "数値を前の整数に切り捨てます。",
+ "Rounds a number to the nearest whole number.": "最も近い整数に数値を四捨五入します。",
+ "Rounds a number up to the next whole number.": "この数値を次の整数に切り上げます。",
+ "Sass documentation": "SASS ドキュメント",
+ "Selector Specificity": "セレクターの固有性",
+ "Selectors should not contain IDs because these rules are too tightly coupled with the HTML.": "セレクターには ID を含めないでください。これらの規則と HTML の結合が密接すぎます。",
+ "The universal selector (*) is known to be slow": "ユニバーサル セレクター (*) を使用すると処理速度が低下することが知られています。",
+ "Throws the value of an expression as a fatal error with stack trace. Useful for validating arguments to mixins and functions.": "スタック トレースで致命的なエラーとして式の値をスローします。mixins と関数の引数を検証するときに便利です。",
+ "URI expected": "URI が必要です",
+ "URL encodes a string": "URL は文字列をエンコードします",
+ "Unifies two selectors to produce a selector that matches elements matched by both.": "2 つのセレクターを統合して、両方に一致する要素に一致するセレクターを生成します。",
+ "Unknown at-rule.": "不明な @ 規則。",
+ "Unknown property.": "不明なプロパティ。",
+ "Unknown property: '{0}'": "不明なプロパティ: '{0}'",
+ "Unknown vendor specific property.": "不明なベンダー固有のプロパティ。",
+ "When using a vendor-specific prefix also include the standard property": "ベンダー固有のプレフィックスを使用するとき、標準のプロパティーも含めます",
+ "When using a vendor-specific prefix make sure to also include all other vendor-specific properties": "ベンダー固有のプレフィックス を使用するときは、他すべてのベンダー固有のプレフィックスも必ず含めてください",
+ "While loop that takes an expression and repeatedly outputs the nested styles until the statement evaluates to `false`.": "式を受け取り、ステートメントが `false` に評価されるまで入れ子になったスタイルを繰り返し出力する While ループ。",
+ "[ expected": "[ が必要です",
+ "] expected": "] が必要です",
+ "absolute value of a number": "数値の絶対値",
+ "arccosine - inverse of cosine function": "アークコサイン - コサイン関数の逆関数",
+ "arcsine - inverse of sine function": "アークサイン - サイン関数の逆関数",
+ "arctangent - inverse of tangent function": "アークタンジェント - タンジェント関数の逆関数",
+ "argument from '{0}'": "'{0}' からの引数",
+ "at-rule or selector expected": "@ 規則またはセレクターが必要です",
+ "at-rule unknown": "@ 規則が不明です",
+ "bind the evaluation of a ruleset to each member of a list.": "ルールセットの評価をリストの各メンバーにバインドします。",
+ "calculates square root of a number": "数値の平方根を計算します",
+ "colon expected": "コロンが必要です",
+ "comma expected": "コンマが必要です",
+ "condition expected": "条件が必要です",
+ "converts numbers from one type into another": "ある型の数値を別の型に変換します",
+ "converts to a %, e.g. 0.5 > 50%": "% に変換します。例: 0.5 > 50%",
+ "cosine function": "コサイン関数",
+ "creates a #AARRGGBB": "#AARRGGBB を作成します",
+ "creates a color": "色を作成します",
+ "css.builtin.lab": "css.builtin.lab",
+ "dot expected": "ドットが必要です",
+ "escape string content": "エスケープ文字列の内容",
+ "expression expected": "式が必要です。",
+ "first argument modulus second argument": "最初の引数の剰余の 2 番目の引数",
+ "first argument raised to the power of the second argument": "1 番目の引数を 2 番目の引数の累乗に上げます",
+ "generate a list spanning a range of values": "値の範囲にまたがるリストを生成します",
+ "identifier expected": "識別子が必要です",
+ "identifier or variable expected": "識別子または変数が必要です",
+ "identifier or wildcard expected": "識別子またはワイルドカードが必要です",
+ "inline-block is ignored due to the float. If 'float' has a value other than 'none', the box is floated and 'display' is treated as 'block'": "float が原因で inline-block は無視されます。'float' に 'none' 以外の値が指定されている場合、ボックスは floated になり、'display' は 'block' として扱われます",
+ "inlines a resource and falls back to `url()`": "リソースをインライン化し、`url()` にフォールバックします",
+ "media query expected": "メディア クエリが必要です",
+ "number expected": "数値が必要です",
+ "operator expected": "演算子が必要です",
+ "page directive or declaraton expected": "ページ ディレクティブまたは宣言が必要です",
+ "parses a string to a color": "文字列を色に解析します",
+ "percentage expected": "パーセンテージが必要です",
+ "property value expected": "プロパティ値が必要です",
+ "remove or change the unit of a dimension": "ディメンションの単位を削除または変更します",
+ "return `@color` 10% points darker": "`@color` を10% 暗く返します",
+ "return `@color` 10% points less saturated": "彩度を 10% 低くした `@color` を返します",
+ "return `@color` 10% points less transparent": "透明度を 10% 低くした `@color` を返します",
+ "return `@color` 10% points lighter": "`@color` を 10% 明るく返します",
+ "return `@color` 10% points more saturated": "彩度を 10% 高くした `@color` を返します",
+ "return `@color` 10% points more transparent": "透明度を 10% 高くした `@color` を返します",
+ "return `@color` with 50% transparency": "透明度を 50% にした `@color` を返します",
+ "return `@color` with a 10 degree larger in hue": "色相を 10% 増やした `@color` を返します",
+ "return `@darkcolor` if `@color1 is> 43% luma` otherwise return `@lightcolor`, see notes": "`@color1 is> 43% luma` の場合は `@darkcolor` を返します。それ以外の場合は `@lightcolor` を返します。メモを参照してください",
+ "return a mix of `@color1` and `@color2`": "`@color1` と `@color2` の組み合わせを返します",
+ "returns a grey, 100% desaturated color": "灰色の彩度を 100% 低くした色を返します",
+ "returns a value at the specified position in the list": "リスト内の指定された位置に値を返します",
+ "returns one of two values depending on a condition.": "条件に応じて 2 つの値のうちの 1 つを返します。",
+ "returns pi": "pi を返します",
+ "returns the `alpha` channel of `@color`": "`@color` の `alpha` チャネルを返します",
+ "returns the `blue` channel of `@color`": "`@color` の `blue` チャネルを返します",
+ "returns the `green` channel of `@color`": "`@color` の `green` チャネルを返します",
+ "returns the `hue` channel of `@color` in the HSL space": "HSL 空間内の `@color` の `hue` チャネルを返します",
+ "returns the `hue` channel of `@color` in the HSV space": "HSV 空間内の `@color` の `hue` チャネルを返します",
+ "returns the `lightness` channel of `@color` in the HSL space": "HSL 空間内の `@color` の `lightness` チャネルを返します",
+ "returns the `luma` value (perceptual brightness) of `@color`": "`@color` の `luma` 値 (知覚の明るさ) を返します",
+ "returns the `red` channel of `@color`": "`@color` の `red` チャネルを返します",
+ "returns the `saturation` channel of `@color` in the HSL space": "HSL 空間の `@color` の `saturation` チャネルを返します",
+ "returns the `saturation` channel of `@color` in the HSV space": "HSV 空間の `@color` の `saturation` チャネルを返します",
+ "returns the `value` channel of `@color` in the HSV space": "HSV 空間内の `@color` の `value` チャネルを返します",
+ "returns the lowest of one or more values": "1 つ以上の値のうち最も低い値を返します",
+ "returns the number of elements in a value list": "値リスト内の要素の数を返します",
+ "rounds a number to a number of places": "数値を複数の場所に四捨五入します",
+ "rounds down to an integer": "整数に切り捨てます",
+ "rounds up to an integer": "整数に切り上げます",
+ "selector expected": "セレクターが必要です",
+ "semi-colon expected": "セミコロンが必要です",
+ "sine function": "サイン関数",
+ "string literal expected": "文字列リテラルが必要です",
+ "string replace": "文字列置換",
+ "tangent function": "正接関数",
+ "term expected": "項が必要です",
+ "unknown keyword": "不明なキーワード",
+ "uri or string expected": "URI または文字列が必要です",
+ "variable name expected": "変数名が必要です",
+ "variable value expected": "変数値が必要です",
+ "whitespace expected": "空白文字が必要です",
+ "wildcard expected": "ワイルドカードが必要です",
+ "{ expected": "{ が必要です",
+ "{0}, '{1}'": "{0}、'{1}'",
+ "} expected": "} が必要です"
+ },
+ "package": {
+ "css.colorDecorators.enable.deprecationMessage": "設定 `css.colorDecorators.enable` は使用されなくなりました。`editor.colorDecorators` を使用してください。",
+ "css.completion.completePropertyWithSemicolon.desc": "CSS プロパティの完了時に行末にセミコロンを挿入します。",
+ "css.completion.triggerPropertyValueCompletion.desc": "既定では、VS Codeは CSS プロパティが選択されるとプロパティ値の補完をトリガーします。この設定を使うことで、この動作は無効にできます。",
+ "css.customData.desc": "[カスタム データ形式](https://github.com/microsoft/vscode-css-languageservice/blob/master/docs/customData.md) に従って JSON ファイルを指す相対ファイル パスの一覧。\r\n\r\nVS Code では、起動時にカスタム データを読み込んで、ユーザーが JSON ファイルに指定する CSS カスタム プロパティ (変数)、アットルール、擬似クラス、擬似要素の CSS サポートを強化します。\r\n\r\nファイル パスはワークスペースに対して相対的であり、ワークスペース フォルダーの設定のみが考慮されます。",
+ "css.format.braceStyle.desc": "ルールと同じ行に中かっこを配置するか ('collapse')、または中かっこを独自の行 ('expand') に配置します。",
+ "css.format.enable.desc": "既定の CSS フォーマッタを有効または無効にします。",
+ "css.format.maxPreserveNewLines.desc": "'#css.format.preserveNewLines#' が有効な場合に、1 つのチャンクに保持される改行の最大数。",
+ "css.format.newlineBetweenRules.desc": "ルールセットを空白行で区切ります。",
+ "css.format.newlineBetweenSelectors.desc": "セレクターを改行で区切ります。",
+ "css.format.preserveNewLines.desc": "ルールと宣言の前に既存の改行を保持するかどうか。",
+ "css.format.spaceAroundSelectorSeparator.desc": "セレクターの区切り記号 '>'、'+'、'~' (例: 'a > b') の周囲に空白文字を付けます。",
+ "css.hover.documentation": "CSS ホバー時にプロパティと値のドキュメントを表示します。",
+ "css.hover.references": "CSS ホバー時に MDN への参照を表示します。",
+ "css.lint.argumentsInColorFunction.desc": "パラメーター数が無効です。",
+ "css.lint.boxModel.desc": "`padding` や `border` を使用するときに `width` や `height` を使用しないでください",
+ "css.lint.compatibleVendorPrefixes.desc": "ベンダー プレフィックス を使用するときは、他すべてのベンダー プレフィックスも必ず含めてください。",
+ "css.lint.duplicateProperties.desc": "重複するスタイル定義を使用しないでください。",
+ "css.lint.emptyRules.desc": "空の規則セットを使用しないでください。",
+ "css.lint.float.desc": "`float` の使用を避けてください。float は脆弱な CSS につながり、レイアウトの一部が変更されたときに CSS が破損しやすくなります。",
+ "css.lint.fontFaceProperties.desc": "`@font-face` 規則で `src` プロパティと `font-family` プロパティを定義する必要があります。",
+ "css.lint.hexColorLength.desc": "Hex 色は 3、4、6、または 8 桁の 16 進数で構成する必要があります。",
+ "css.lint.idSelector.desc": "セレクターには ID を含めないでください。これらの規則と HTML の結合が密接すぎます。",
+ "css.lint.ieHack.desc": "IE ハックは、IE7 以前をサポートする場合にのみ必要です。",
+ "css.lint.importStatement.desc": "複数の Import ステートメントを同時に読み込むことはできません。",
+ "css.lint.important.desc": "`!important` の使用を避けてください。これは CSS 全体の特定性が制御不能になり、リファクタリングが必要になります。",
+ "css.lint.propertyIgnoredDueToDisplay.desc": "display によってプロパティを無視します。例: `display: inline` の場合、`width`、`height`、`margin-top`、`margin-bottom`、`float` プロパティには効果がありません。",
+ "css.lint.universalSelector.desc": "ユニバーサル セレクター (`*`) を使用すると処理速度が低下することが知られています。",
+ "css.lint.unknownAtRules.desc": "不明な @ 規則。",
+ "css.lint.unknownProperties.desc": "不明なプロパティ。",
+ "css.lint.unknownVendorSpecificProperties.desc": "不明なベンダー固有のプロパティ。",
+ "css.lint.validProperties.desc": "`UnknownProperties` ルールに対して検証されていないプロパティの一覧です。",
+ "css.lint.vendorPrefix.desc": "ベンダー プレフィックスを使用するとき、標準のプロパティーも含めます。",
+ "css.lint.zeroUnits.desc": "0 に単位は必要ありません。",
+ "css.title": "CSS",
+ "css.trace.server.desc": "VS Code と CSS 言語サーバー間の通信をトレースします。",
+ "css.validate.desc": "すべての検証を有効または無効にします。",
+ "css.validate.title": "CSS の検証と問題の重大度を制御します。",
+ "description": "CSS、LESS、SCSS ファイルに豊富な言語サポートを提供。",
+ "displayName": "CSS 言語機能",
+ "less.colorDecorators.enable.deprecationMessage": "設定 `less.colorDecorators.enable` は使用されなくなりました。`editor.colorDecorators` を使用してください。",
+ "less.completion.completePropertyWithSemicolon.desc": "CSS プロパティの完了時に行末にセミコロンを挿入します。",
+ "less.completion.triggerPropertyValueCompletion.desc": "既定では、VS Codeは CSS プロパティが選択されるとプロパティ値の補完をトリガーします。この設定を使うことで、この動作は無効にできます。",
+ "less.format.braceStyle.desc": "ルールと同じ行に中かっこを配置するか ('collapse')、または中かっこを独自の行 ('expand') に配置します。",
+ "less.format.enable.desc": "既定の LESS フォーマッタを有効または無効にします。",
+ "less.format.maxPreserveNewLines.desc": "'#less.format.preserveNewLines#' が有効な場合に、1 つのチャンクに保持される改行の最大数。",
+ "less.format.newlineBetweenRules.desc": "ルールセットを空白行で区切ります。",
+ "less.format.newlineBetweenSelectors.desc": "セレクターを改行で区切ります。",
+ "less.format.preserveNewLines.desc": "ルールと宣言の前に既存の改行を保持するかどうか。",
+ "less.format.spaceAroundSelectorSeparator.desc": "セレクターの区切り記号 '>'、'+'、'~' (例: 'a > b') の周囲に空白文字を付けます。",
+ "less.hover.documentation": "LESS ホバー時にプロパティと値のドキュメントを表示します。",
+ "less.hover.references": "LESS ホバー時に MDN への参照を表示します。",
+ "less.lint.argumentsInColorFunction.desc": "パラメーター数が無効です。",
+ "less.lint.boxModel.desc": "`padding` や `border` を使用するときに `width` や `height` を使用しないでください",
+ "less.lint.compatibleVendorPrefixes.desc": "ベンダー プレフィックス を使用するときは、他すべてのベンダー プレフィックスも必ず含めてください。",
+ "less.lint.duplicateProperties.desc": "重複するスタイル定義を使用しないでください。",
+ "less.lint.emptyRules.desc": "空の規則セットを使用しないでください。",
+ "less.lint.float.desc": "`float` の使用を避けてください。float は脆弱な CSS につながり、レイアウトの一部が変更されたときに CSS が破損しやすくなります。",
+ "less.lint.fontFaceProperties.desc": "`@font-face` 規則で `src` プロパティと `font-family` プロパティを定義する必要があります。",
+ "less.lint.hexColorLength.desc": "Hex 色は 3、4、6、または 8 桁の 16 進数で構成する必要があります。",
+ "less.lint.idSelector.desc": "セレクターには ID を含めないでください。これらの規則と HTML の結合が密接すぎます。",
+ "less.lint.ieHack.desc": "IE ハックは、IE7 以前をサポートする場合にのみ必要です。",
+ "less.lint.importStatement.desc": "複数の Import ステートメントを同時に読み込むことはできません。",
+ "less.lint.important.desc": "`!important` の使用を避けてください。これは CSS 全体の特定性が制御不能になり、リファクタリングが必要になります。",
+ "less.lint.propertyIgnoredDueToDisplay.desc": "display によってプロパティを無視します。例: `display: inline` の場合、`width`、`height`、`margin-top`、`margin-bottom`、`float` プロパティには効果がありません。",
+ "less.lint.universalSelector.desc": "ユニバーサル セレクター (`*`) を使用すると処理速度が低下することが知られています。",
+ "less.lint.unknownAtRules.desc": "不明な @ 規則。",
+ "less.lint.unknownProperties.desc": "不明なプロパティ。",
+ "less.lint.unknownVendorSpecificProperties.desc": "不明なベンダー固有のプロパティ。",
+ "less.lint.validProperties.desc": "`UnknownProperties` ルールに対して検証されていないプロパティの一覧です。",
+ "less.lint.vendorPrefix.desc": "ベンダー プレフィックスを使用するとき、標準のプロパティーも含めます。",
+ "less.lint.zeroUnits.desc": "0 に単位は必要ありません。",
+ "less.title": "LESS",
+ "less.validate.desc": "すべての検証を有効または無効にします。",
+ "less.validate.title": "LESS の検証と問題の重大度を制御します。",
+ "scss.colorDecorators.enable.deprecationMessage": "設定 `scss.colorDecorators.enable` は使用されなくなりました。`editor.colorDecorators` を使用してください。",
+ "scss.completion.completePropertyWithSemicolon.desc": "CSS プロパティの完了時に行末にセミコロンを挿入します。",
+ "scss.completion.triggerPropertyValueCompletion.desc": "既定では、VS Codeは CSS プロパティが選択されるとプロパティ値の補完をトリガーします。この設定を使うことで、この動作は無効にできます。",
+ "scss.format.braceStyle.desc": "ルールと同じ行に中かっこを配置するか ('collapse')、または中かっこを独自の行 ('expand') に配置します。",
+ "scss.format.enable.desc": "既定の SCSS フォーマッタを有効または無効にします。",
+ "scss.format.maxPreserveNewLines.desc": "'#scss.format.preserveNewLines#' が有効な場合に、1 つのチャンクに保持される改行の最大数。",
+ "scss.format.newlineBetweenRules.desc": "ルールセットを空白行で区切ります。",
+ "scss.format.newlineBetweenSelectors.desc": "セレクターを改行で区切ります。",
+ "scss.format.preserveNewLines.desc": "ルールと宣言の前に既存の改行を保持するかどうか。",
+ "scss.format.spaceAroundSelectorSeparator.desc": "セレクターの区切り記号 '>'、'+'、'~' (例: 'a > b') の周囲に空白文字を付けます。",
+ "scss.hover.documentation": "SCSS ホバー時にプロパティと値のドキュメントを表示します。",
+ "scss.hover.references": "SCSS ホバー時に MDN への参照を表示します。",
+ "scss.lint.argumentsInColorFunction.desc": "パラメーター数が無効です。",
+ "scss.lint.boxModel.desc": "`padding` や `border` を使用するときに `width` や `height` を使用しないでください",
+ "scss.lint.compatibleVendorPrefixes.desc": "ベンダー プレフィックス を使用するときは、他すべてのベンダー プレフィックスも必ず含めてください。",
+ "scss.lint.duplicateProperties.desc": "重複するスタイル定義を使用しないでください。",
+ "scss.lint.emptyRules.desc": "空の規則セットを使用しないでください。",
+ "scss.lint.float.desc": "`float` の使用を避けてください。float は脆弱な CSS につながり、レイアウトの一部が変更されたときに CSS が破損しやすくなります。",
+ "scss.lint.fontFaceProperties.desc": "`@font-face` 規則で `src` プロパティと `font-family` プロパティを定義する必要があります。",
+ "scss.lint.hexColorLength.desc": "Hex 色は 3、4、6、または 8 桁の 16 進数で構成する必要があります。",
+ "scss.lint.idSelector.desc": "セレクターには ID を含めないでください。これらの規則と HTML の結合が密接すぎます。",
+ "scss.lint.ieHack.desc": "IE ハックは、IE7 以前をサポートする場合にのみ必要です。",
+ "scss.lint.importStatement.desc": "複数の Import ステートメントを同時に読み込むことはできません。",
+ "scss.lint.important.desc": "`!important` の使用を避けてください。これは CSS 全体の特定性が制御不能になり、リファクタリングが必要になります。",
+ "scss.lint.propertyIgnoredDueToDisplay.desc": "display によってプロパティを無視します。例: `display: inline` の場合、`width`、`height`、`margin-top`、`margin-bottom`、`float` プロパティには効果がありません。",
+ "scss.lint.universalSelector.desc": "ユニバーサル セレクター (`*`) を使用すると処理速度が低下することが知られています。",
+ "scss.lint.unknownAtRules.desc": "不明な @ 規則。",
+ "scss.lint.unknownProperties.desc": "不明なプロパティ。",
+ "scss.lint.unknownVendorSpecificProperties.desc": "不明なベンダー固有のプロパティ。",
+ "scss.lint.validProperties.desc": "`UnknownProperties` ルールに対して検証されていないプロパティの一覧です。",
+ "scss.lint.vendorPrefix.desc": "ベンダー プレフィックスを使用するとき、標準のプロパティーも含めます。",
+ "scss.lint.zeroUnits.desc": "0 に単位は必要ありません。",
+ "scss.title": "SCSS (Sass)",
+ "scss.validate.desc": "すべての検証を有効または無効にします。",
+ "scss.validate.title": "SCSS の検証と問題の重大度を制御します。"
+ }
+ }
+}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-ja/translations/extensions/vscode.css.i18n.json b/i18n/vscode-language-pack-ja/translations/extensions/vscode.css.i18n.json
index bfa0ded54c..4db5296131 100644
--- a/i18n/vscode-language-pack-ja/translations/extensions/vscode.css.i18n.json
+++ b/i18n/vscode-language-pack-ja/translations/extensions/vscode.css.i18n.json
@@ -9,8 +9,8 @@
"version": "1.0.0",
"contents": {
"package": {
- "displayName": "CSS の基本言語サポート",
- "description": "CSS、LESS、SCSS ファイル内で構文ハイライト、かっこ一致を提供します。"
+ "description": "CSS、LESS、SCSS ファイル内で構文ハイライト、かっこ一致を提供します。",
+ "displayName": "CSS の基本言語サポート"
}
}
}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-ja/translations/extensions/dart.i18n.json b/i18n/vscode-language-pack-ja/translations/extensions/vscode.dart.i18n.json
similarity index 100%
rename from i18n/vscode-language-pack-ja/translations/extensions/dart.i18n.json
rename to i18n/vscode-language-pack-ja/translations/extensions/vscode.dart.i18n.json
diff --git a/i18n/vscode-language-pack-ja/translations/extensions/vscode.debug-auto-launch.i18n.json b/i18n/vscode-language-pack-ja/translations/extensions/vscode.debug-auto-launch.i18n.json
new file mode 100644
index 0000000000..6b3dae1f2c
--- /dev/null
+++ b/i18n/vscode-language-pack-ja/translations/extensions/vscode.debug-auto-launch.i18n.json
@@ -0,0 +1,38 @@
+{
+ "": [
+ "--------------------------------------------------------------------------------------------",
+ "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."
+ ],
+ "version": "1.0.0",
+ "contents": {
+ "bundle": {
+ "Always": "常に行う",
+ "Auto Attach: Always": "自動アタッチ: 常時",
+ "Auto Attach: Disabled": "自動アタッチ: 無効",
+ "Auto Attach: Smart": "自動アタッチ: スマート",
+ "Auto Attach: With Flag": "自動アタッチ: フラグ付き",
+ "Auto attach is disabled and not shown in status bar": "自動アタッチが無効で、ステータス バーに表示されません",
+ "Auto attach to every Node.js process launched in the terminal": "ターミナルで起動されるすべての Node.js プロセスに自動アタッチします",
+ "Auto attach when running scripts that aren't in a node_modules folder": "node_modules フォルダーにないスクリプトを実行しているときに自動アタッチします",
+ "Automatically attach to node.js processes in debug mode": "デバッグ モードで node.js プロセスに自動的にアタッチ",
+ "Debug Auto Attach": "自動アタッチのデバッグ",
+ "Disabled": "無効",
+ "Only With Flag": "フラグ付きのみ",
+ "Only auto attach when the `--inspect` flag is given": "`--inspect` フラグが指定されている場合にのみ自動アタッチします",
+ "Re-enable auto attach": "自動アタッチを再度有効にする",
+ "Smart": "スマート",
+ "Temporarily disable auto attach in this session": "このセッションでは自動アタッチを一時的に無効にする",
+ "Toggle Auto Attach": "自動アタッチの切り替え",
+ "Toggle auto attach in this workspace": "このワークスペースで自動アタッチを切り替えます",
+ "Toggle auto attach on this machine": "このマシンの自動アタッチを切り替えます"
+ },
+ "package": {
+ "description": "node-debug 拡張がアクティブではないときに自動的にアタッチする機能を補助します。",
+ "displayName": "Node デバッグの自動アタッチ",
+ "toggle.auto.attach": "自動アタッチの切り替え"
+ }
+ }
+}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-ja/translations/extensions/vscode.debug-server-ready.i18n.json b/i18n/vscode-language-pack-ja/translations/extensions/vscode.debug-server-ready.i18n.json
new file mode 100644
index 0000000000..c2040c88bc
--- /dev/null
+++ b/i18n/vscode-language-pack-ja/translations/extensions/vscode.debug-server-ready.i18n.json
@@ -0,0 +1,31 @@
+{
+ "": [
+ "--------------------------------------------------------------------------------------------",
+ "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."
+ ],
+ "version": "1.0.0",
+ "contents": {
+ "bundle": {
+ "Format uri ('{0}') must contain exactly one substitution placeholder.": "URI ('{0}') 形式には代入プレースホルダーを 1 つだけ含める必要があります。",
+ "Format uri ('{0}') uses a substitution placeholder but pattern did not capture anything.": "URI ('{0}') 形式では代入プレースホルダーを使用していますが、パターンによって何も取り込まれませんでした。"
+ },
+ "package": {
+ "debug.server.ready.action.debugWithChrome.description": "'Chrome用のデバッガー' でデバッグを開始します。",
+ "debug.server.ready.action.description": "サーバーの準備が整ったときにURIをどうするか。",
+ "debug.server.ready.action.openExternally.description": "既定のアプリケーションで外部 URI を開きます。",
+ "debug.server.ready.action.startDebugging.description": "別の起動構成を実行してください。",
+ "debug.server.ready.debugConfig.description": "実行するデバッグ構成。",
+ "debug.server.ready.debugConfigName.description": "実行する起動構成の名前です。",
+ "debug.server.ready.killOnServerStop.description": "親セッションが停止したときに子セッションを停止します。",
+ "debug.server.ready.pattern.description": "このパターンがデバッグコンソールに表示される場合、サーバーは準備完了です。最初のキャプチャーグループはURIまたはポート番号を含める必要があります。",
+ "debug.server.ready.serverReadyAction.description": "デバッグ中のサーバー プログラムの準備ができたら URI に対して実行します (準備が整うと 'listening on port 3000' または 'Now listening on: https://localhost:5001' の形式でデバッグ コンソールに出力が送信されます)。",
+ "debug.server.ready.uriFormat.description": "ポート番号から URI を構築するときに使用する書式設定文字列。最初の '%s' は、ポート番号に置き換えられます。",
+ "debug.server.ready.webRoot.description": "'Chrome用デバッガー' のデバッグ構成に値が渡されます。",
+ "description": "デバッグ対象のサーバーが準備完了になったら、URI をブラウザーで開きます。",
+ "displayName": "サーバーの準備完了アクション"
+ }
+ }
+}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-ja/translations/extensions/diff.i18n.json b/i18n/vscode-language-pack-ja/translations/extensions/vscode.diff.i18n.json
similarity index 100%
rename from i18n/vscode-language-pack-ja/translations/extensions/diff.i18n.json
rename to i18n/vscode-language-pack-ja/translations/extensions/vscode.diff.i18n.json
diff --git a/i18n/vscode-language-pack-ja/translations/extensions/vscode.docker.i18n.json b/i18n/vscode-language-pack-ja/translations/extensions/vscode.docker.i18n.json
index 7285baf3c6..d870c23f15 100644
--- a/i18n/vscode-language-pack-ja/translations/extensions/vscode.docker.i18n.json
+++ b/i18n/vscode-language-pack-ja/translations/extensions/vscode.docker.i18n.json
@@ -9,8 +9,8 @@
"version": "1.0.0",
"contents": {
"package": {
- "displayName": "Docker ファイルの基本言語サポート",
- "description": "Docker ファイル内で構文ハイライト、かっこ一致を提供します。"
+ "description": "Docker ファイル内で構文ハイライト、かっこ一致を提供します。",
+ "displayName": "Docker ファイルの基本言語サポート"
}
}
}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-ja/translations/extensions/vscode.dotenv.i18n.json b/i18n/vscode-language-pack-ja/translations/extensions/vscode.dotenv.i18n.json
new file mode 100644
index 0000000000..94aa1988a9
--- /dev/null
+++ b/i18n/vscode-language-pack-ja/translations/extensions/vscode.dotenv.i18n.json
@@ -0,0 +1,16 @@
+{
+ "": [
+ "--------------------------------------------------------------------------------------------",
+ "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."
+ ],
+ "version": "1.0.0",
+ "contents": {
+ "package": {
+ "description": "dotenv ファイル内で構文ハイライト、かっこ一致を提供します。",
+ "displayName": "Dotenv 言語の基本"
+ }
+ }
+}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-ja/translations/extensions/vscode.emmet.i18n.json b/i18n/vscode-language-pack-ja/translations/extensions/vscode.emmet.i18n.json
new file mode 100644
index 0000000000..59164c2e64
--- /dev/null
+++ b/i18n/vscode-language-pack-ja/translations/extensions/vscode.emmet.i18n.json
@@ -0,0 +1,83 @@
+{
+ "": [
+ "--------------------------------------------------------------------------------------------",
+ "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."
+ ],
+ "version": "1.0.0",
+ "contents": {
+ "bundle": {
+ "Emmet Abbreviation": "emmet 省略記法",
+ "Enter Abbreviation": "省略形を入力してください",
+ "Invalid emmet.variables field. See https://code.visualstudio.com/docs/editor/emmet#_emmet-configuration for a valid example.": "emmet.variables フィールドが無効です。有効な例については https://code.visualstudio.com/docs/editor/emmet#_emmet-configuration を参照してください。",
+ "Invalid snippets file. See https://code.visualstudio.com/docs/editor/emmet#_using-custom-emmet-snippets for a valid example.": "スニペット ファイルが無効です。有効な例については、https://code.visualstudio.com/docs/editor/emmet#_using-custom-emmet-snippets を参照してください。",
+ "Invalid syntax profile. See https://code.visualstudio.com/docs/editor/emmet#_emmet-configuration for a valid example.": "構文プロファイルが無効です。有効な例については、https://code.visualstudio.com/docs/editor/emmet#_emmet-configuration を参照してください。"
+ },
+ "package": {
+ "command.balanceIn": "バランス (内側)",
+ "command.balanceOut": "バランス (外側)",
+ "command.decrementNumberByOne": "1 ずつ減少",
+ "command.decrementNumberByOneTenth": "0.1 ずつ減少",
+ "command.decrementNumberByTen": "10 ずつ減少",
+ "command.evaluateMathExpression": "数式の評価",
+ "command.incrementNumberByOne": "1 ずつ増加",
+ "command.incrementNumberByOneTenth": "0.1 ずつ増加",
+ "command.incrementNumberByTen": "10 ずつ増加",
+ "command.matchTag": "一致するペアに移動",
+ "command.mergeLines": "行のマージ",
+ "command.nextEditPoint": "次の編集点に移動",
+ "command.prevEditPoint": "前の編集点に移動",
+ "command.reflectCSSValue": "CSS 値を反映",
+ "command.removeTag": "タグの削除",
+ "command.selectNextItem": "次の項目を選択",
+ "command.selectPrevItem": "前の項目を選択",
+ "command.showEmmetCommands": "Emmet コマンドの表示",
+ "command.splitJoinTag": "タグの分割/結合",
+ "command.toggleComment": "コメントの切り替え",
+ "command.updateImageSize": "イメージ サイズの更新",
+ "command.updateTag": "タグの更新",
+ "command.wrapWithAbbreviation": "ラップ変換",
+ "description": "VSCode の Emmet サポート",
+ "emmetExclude": "Emmet 省略記法を展開すべきでない言語の配列。",
+ "emmetExtensionsPath": "各パスに Emmet の syntaxProfile や snippet ファイルを含めることができるパスの配列。\r\n競合が発生した場合、後のパスのプロファイルまたはスニペットが前のパスのプロファイルまたはスニペットを上書きします。\r\n詳細およびスニペット ファイルの例については、https://code.visualstudio.com/docs/editor/emmet を参照してください。",
+ "emmetExtensionsPathItem": "Emmet syntaxProfiles やスニペットを含むパス。",
+ "emmetIncludeLanguages": "既定ではサポートされていない言語の emmet 省略記法を有効にします。言語と Emmet でサポートされる言語との間のマッピングをこちらに追加してください。\r\n 例: `{\"vue-html\": \"html\", \"javascript\": \"javascriptreact\"}`",
+ "emmetOptimizeStylesheetParsing": "`false` に設定すると、現在位置が emmet 省略記法の展開に有効かどうかを判別するためにファイル全体が解析されます。`true` に設定すると、CSS、SCSS、Less ファイルでの現在位置周辺のコンテンツのみが解析されます。",
+ "emmetPreferences": "Emmet の一部のアクションやリゾルバーの動作の変更に使用される基本設定。",
+ "emmetPreferencesAllowCompactBoolean": "`true` の場合、ブール属性の短縮表記が生成されます。",
+ "emmetPreferencesBemElementSeparator": "BEM フィルターを利用時にクラス使用する Element の区切り文字。",
+ "emmetPreferencesBemModifierSeparator": "BEM フィルターを利用時にクラス使用する Modifier の区切り文字。",
+ "emmetPreferencesCssAfter": "CSS 省略形を展開するときに CSS プロパティの最後に配置するシンボル。",
+ "emmetPreferencesCssBetween": "CSS の略語を展開するときに CSS プロパティと値の間に配置されるシンボル。",
+ "emmetPreferencesCssColorShort": "'true' の場合、#f のような色の値は #ffffff ではなく #fff に拡張されます。",
+ "emmetPreferencesCssFuzzySearchMinScore": "あいまい検索の省略形が達成すべき (0 から 1 の) 最小スコア。値が低ければ多くの誤検出が発生する可能性があります。値が高ければ一致する見込みが減る可能性があります。",
+ "emmetPreferencesCssMozProperties": "Emmet 省略記法で使用される場合に `-` で始まる 'moz' ベンダー プレフィックスを取得するカンマ区切りの CSS プロパティ。常に 'moz' プレフィックスを避ける場合は空の文字列に設定します。",
+ "emmetPreferencesCssMsProperties": "Emmet 省略記法で使用される場合に `-` で始まる 'ms' ベンダー プレフィックスを取得するカンマ区切りの CSS プロパティ。常に 'ms' プレフィックスを避ける場合は空の文字列に設定します。",
+ "emmetPreferencesCssOProperties": "Emmet 省略記法で使用される場合に `-` で始まる 'o' ベンダー プレフィックスを取得するカンマ区切りの CSS プロパティ。常に 'o' プレフィックスを避ける場合は空の文字列に設定します。",
+ "emmetPreferencesCssWebkitProperties": "Emmet 省略記法で使用される場合に `-` で始まる 'webkit' ベンダー プレフィックスを取得するカンマ区切りの CSS プロパティ。常に 'webkit' プレフィックスを避ける場合は空の文字列に設定します。",
+ "emmetPreferencesFilterCommentAfter": "コメント フィルター使用時、一致した要素の後に配置するコメントの定義。",
+ "emmetPreferencesFilterCommentBefore": "コメント フィルター使用時、一致した要素の前に配置するコメントの定義。",
+ "emmetPreferencesFilterCommentTrigger": "コメント フィルターに適用される略語に存在する属性名のカンマ区切りのリスト。",
+ "emmetPreferencesFloatUnit": "float 値に使用する既定の単位。",
+ "emmetPreferencesFormatForceIndentTags": "内部インデントを常に取得するタグ名の配列。",
+ "emmetPreferencesFormatNoIndentTags": "内部インデントを常に取得しないタグ名の配列。",
+ "emmetPreferencesIntUnit": "整数値に使用する既定の単位。",
+ "emmetPreferencesOutputInlineBreak": "兄弟インライン要素の間に改行を配置するために必要なそれらの要素の数。`0` の場合、インライン要素は常に 1 行に展開されます。",
+ "emmetPreferencesOutputReverseAttributes": "'true' の場合、スニペットを解決するときに属性を結合する方向を反転します。",
+ "emmetPreferencesOutputSelfClosingStyle": "自己終了タグのスタイル: html (' ')、xml (' ') または xhtml (' ')。",
+ "emmetPreferencesSassAfter": "Sass ファイルで CSS 略語を展開するときに CSS プロパティの末尾に配置されるシンボル。",
+ "emmetPreferencesSassBetween": "Sass ファイルで CSS の略語を展開するときに CSS プロパティと値の間に配置されるシンボル。",
+ "emmetPreferencesStylusAfter": "Stylus ファイルで CSS 略語を展開するときに CSS プロパティの末尾に配置されるシンボル。",
+ "emmetPreferencesStylusBetween": "Stylus ファイルで CSS の略語を展開するときに CSS プロパティと値の間に配置されるシンボル。",
+ "emmetShowAbbreviationSuggestions": "利用できる Emmet 省略記法を候補として表示します。スタイルシートや emmet.showExpandedAbbreviation を `\"never\"` に設定していると適用されません。",
+ "emmetShowExpandedAbbreviation": "展開された Emmet 省略形を候補として表示します。\r\nオプション `\"inMarkupAndStylesheetFilesOnly\"` は、html、haml、jade、slim、xml、xsl、css、scss、sass、less、stylus に適用されます。\r\nオプション `\"always\"` は、マークアップと css に関係なくファイルのすべての部分に適用されます。",
+ "emmetShowSuggestionsAsSnippets": "`true` の場合、Emmet 候補をスニペットとして表示して `#editor.snippetSuggestions#` 設定に従ってそれらを並び替えます。",
+ "emmetSyntaxProfiles": "指定した構文に対してプロファイルを定義するか、特定の規則がある独自のプロファイルをご使用ください。",
+ "emmetTriggerExpansionOnTab": "有効にすると、入力候補が表示されない場合でも Tab キーを押すと Emmet 省略記法が展開されます。無効にした場合でも、TAB キーを押すと、表示される入力候補を受け入れられます。",
+ "emmetUseInlineCompletions": "'true' の場合、Emmet はインライン補完を使用して拡張を提案します。この設定が 'true' の間にインライン以外の完了項目プロバイダーが頻繁に表示されないようにするには、'#editor.quickSuggestions#' を 'inline' に、あるいは 'other' 項目を 'off' にします。",
+ "emmetVariables": "Emmet のスニペットで使用される変数。"
+ }
+ }
+}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-ja/translations/extensions/vscode.extension-editing.i18n.json b/i18n/vscode-language-pack-ja/translations/extensions/vscode.extension-editing.i18n.json
new file mode 100644
index 0000000000..b9053a06b4
--- /dev/null
+++ b/i18n/vscode-language-pack-ja/translations/extensions/vscode.extension-editing.i18n.json
@@ -0,0 +1,33 @@
+{
+ "": [
+ "--------------------------------------------------------------------------------------------",
+ "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."
+ ],
+ "version": "1.0.0",
+ "contents": {
+ "bundle": {
+ "Data URLs are not a valid image source.": "Data URL は無効な画像のソースです。",
+ "Embedded SVGs are not a valid image source.": "埋め込み SVG は無効な画像のソースです。",
+ "Error parsing the when-clause:": "when 句の解析エラーです:",
+ "Images must use the HTTPS protocol.": "画像には HTTPS プロトコルを使用する必要があります。",
+ "Language specific editor settings": "言語固有のエディター設定",
+ "Override editor settings for language": "言語に対するエディター設定を上書きします",
+ "Relative badge URLs require a repository with HTTPS protocol to be specified in this package.json.": "相対的なバッジ URL では、HTTPS プロトコルのリポジトリが package.json で指定されている必要があります。",
+ "Relative image URLs require a repository with HTTPS protocol to be specified in the package.json.": "相対的な画像 URL では、HTTPS プロトコルのリポジトリが package.json で指定されている必要があります。",
+ "Remove activation event": "アクティブ化イベントの削除",
+ "SVGs are not a valid image source.": "SVG は無効な画像のソースです。",
+ "This activation event can be removed as VS Code generates these automatically from your package.json contribution declarations.": "このアクティブ化イベントは、package.json コントリビューション宣言から自動的に生成されるので VS Code として削除できます。",
+ "This activation event can be removed for extensions targeting engine version ^1.75.0 as VS Code will generate these automatically from your package.json contribution declarations.": "このアクティブ化イベントは、エンジン バージョン ^1.75.0 をターゲットにする拡張機能用に削除できます。というのは、VS Code が package.json コントリビューション宣言からこれらの拡張機能を自動的に生成するからです。",
+ "This activation event cannot be explicitly listed by your extension.": "このアクティブ化イベントは、拡張機能によって明示的に一覧表示できません。",
+ "This proposal cannot be used because for this extension the product defines a fixed set of API proposals. You can test your extension but before publishing you MUST reach out to the VS Code team.": "この拡張機能では、製品によって API 提案の固定一式が定義されているため、この提案は使用できません。拡張機能はテストできますが、公開する前に、VS Code チームに連絡する必要があります。",
+ "Using '*' activation is usually a bad idea as it impacts performance.": "通常、'*' のアクティブ化を使用することは、パフォーマンスに影響を与えるので適切ではありません。"
+ },
+ "package": {
+ "description": "拡張機能を作成するためのリンティング機能を提供します。",
+ "displayName": "拡張機能の作成"
+ }
+ }
+}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-ja/translations/extensions/vscode.fsharp.i18n.json b/i18n/vscode-language-pack-ja/translations/extensions/vscode.fsharp.i18n.json
index cc4fe01f04..a23209893c 100644
--- a/i18n/vscode-language-pack-ja/translations/extensions/vscode.fsharp.i18n.json
+++ b/i18n/vscode-language-pack-ja/translations/extensions/vscode.fsharp.i18n.json
@@ -9,8 +9,8 @@
"version": "1.0.0",
"contents": {
"package": {
- "displayName": "F# の基本言語サポート",
- "description": "F# ファイル内でスニペット、構文ハイライト、かっこ一致、折りたたみを提供します。"
+ "description": "F# ファイル内でスニペット、構文ハイライト、かっこ一致、折りたたみを提供します。",
+ "displayName": "F# の基本言語サポート"
}
}
}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-ja/translations/extensions/vscode.git-base.i18n.json b/i18n/vscode-language-pack-ja/translations/extensions/vscode.git-base.i18n.json
new file mode 100644
index 0000000000..d4460a4b65
--- /dev/null
+++ b/i18n/vscode-language-pack-ja/translations/extensions/vscode.git-base.i18n.json
@@ -0,0 +1,30 @@
+{
+ "": [
+ "--------------------------------------------------------------------------------------------",
+ "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."
+ ],
+ "version": "1.0.0",
+ "contents": {
+ "bundle": {
+ "Branch name": "ブランチ名",
+ "Choose a URL to clone from.": "複製元の URL を選択します。",
+ "No remote repositories found.": "リモート リポジトリが見つかりません。",
+ "Provide repository URL": "リポジトリ URL を指定する",
+ "Provide repository URL or pick a repository source.": "リポジトリ URL を指定するか、リポジトリ ソースを選択します。",
+ "Repository name": "リポジトリ名",
+ "Repository name (type to search)": "リポジトリ名 (検索するテキストを入力)",
+ "URL": "URL",
+ "recently opened": "最近開いたもの",
+ "remote sources": "リモート ソース",
+ "{0} Error: {1}": "{0} エラー: {1}"
+ },
+ "package": {
+ "command.api.getRemoteSources": "リモート ソースの取得",
+ "description": "Git の静的コントリビューションとピッカー。",
+ "displayName": "Git ベース"
+ }
+ }
+}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-ja/translations/extensions/vscode.git.i18n.json b/i18n/vscode-language-pack-ja/translations/extensions/vscode.git.i18n.json
new file mode 100644
index 0000000000..edb96aa379
--- /dev/null
+++ b/i18n/vscode-language-pack-ja/translations/extensions/vscode.git.i18n.json
@@ -0,0 +1,807 @@
+{
+ "": [
+ "--------------------------------------------------------------------------------------------",
+ "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."
+ ],
+ "version": "1.0.0",
+ "contents": {
+ "bundle": {
+ "\n\nAre you sure you want to discard ALL changes in {0} files?": "{0} ファイルのすべての変更を破棄しますか?",
+ "\n\nAre you sure you want to discard changes in '{0}'?": "\n\n'{0}' の変更を破棄しますか?",
+ "\n and {0} more file{1}...": "\n および{0}その他のファイル{1}...",
+ "\"{0}\" has fingerprint \"{1}\"": "\"{0}\" のフィンガープリントは \"{1}\" です",
+ "$(info) Remote \"{0}\" has no tags.": "$(info) リモート「{0}」にタグがありません。",
+ "$(info) This repository has no stashes.": "$(info) このリポジトリにはスタッシュがありません。",
+ "$(info) This repository has no tags.": "$(info) このリポジトリにはタグがありません。",
+ "$(info) This repository has no worktrees.": "$(info) このリポジトリにはワークツリーがありません。",
+ "A branch named \"{0}\" already exists": "ブランチ名 \"{0}\" は既に存在します",
+ "A git repository was found in the parent folders of the workspace or the open file(s). Would you like to open the repository?": "ワークスペースまたは開いているファイルの親フォルダーに Git リポジトリが見つかりました。リポジトリを開きますか?",
+ "A worktree already exists at \"{0}\".": "\"{0}\" には既にワークツリーが存在します。",
+ "Absolute paths not supported in \"git.scanRepositories\" setting.": "\"git.scanRepositories\" 設定は絶対パスをサポートしていません。",
+ "Add Remote": "リモートを追加する",
+ "Add a new remote...": "新しいリモートを追加...",
+ "Add remote from URL": "URL からリモートを追加する",
+ "Add remote from {0}": "{0} からリモートを追加する",
+ "Add to Workspace": "ワークスペースに追加",
+ "All Repositories": "すべてのリポジトリ",
+ "Always": "常時",
+ "Always Pull": "常にプル",
+ "Always Replace Local Tag(s)": "ローカル タグを常に置き換える",
+ "Are you sure you want to DELETE the following untracked file: '{0}'?{1}": "追跡されていない次のファイルを削除しますか: '{0}'?{1}",
+ "Are you sure you want to DELETE the {0} untracked files?{1}": "{0}追跡されていないファイル{1}を削除しますか?",
+ "Are you sure you want to continue connecting?": "接続を続行しますか?",
+ "Are you sure you want to create an empty commit?": "空のコミットを生成しますか?",
+ "Are you sure you want to delete branch \"{0}\"? This action will permanently remove the branch reference from the repository.": "分岐 \"{0}\" を削除しますか?この操作により、リポジトリから分岐参照が完全に削除されます。",
+ "Are you sure you want to delete tag \"{0}\"? This action will permanently remove the tag reference from the repository.": "タグ \"{0}\" を削除しますか?この操作により、リポジトリからタグ参照が完全に削除されます。",
+ "Are you sure you want to discard ALL changes in {0} files?\n\nThis is IRREVERSIBLE!\nYour current working set will be FOREVER LOST if you proceed.": "{0} ファイル内のすべての変更を破棄してもよろしいですか?\n\nこれは元に戻すことができません。\n続行すると、現在のワーキング セットは完全に失われます。",
+ "Are you sure you want to discard changes in '{0}'?": "'{0}' の変更を破棄しますか?",
+ "Are you sure you want to drop ALL stashes? There are {0} stashes that will be subject to pruning, and MAY BE IMPOSSIBLE TO RECOVER.": "すべてのスタッシュを削除しますか? 削除の対象となる可能性のある {0} 個のスタッシュがあり、それらは回復できない可能性があります。",
+ "Are you sure you want to drop ALL stashes? There is 1 stash that will be subject to pruning, and MAY BE IMPOSSIBLE TO RECOVER.": "すべてのスタッシュを削除しますか? 削除の対象となる可能性のある 1 個のスタッシュがあり、それらは回復できない可能性があります。",
+ "Are you sure you want to drop the stash: {0}?": "スタッシュ {0} を削除しますか?",
+ "Are you sure you want to restore '{0}'?": "'{0}' を復元しますか?",
+ "Are you sure you want to restore ALL {0} files?": "すべての {0} ファイルを復元しますか?",
+ "Are you sure you want to stage {0} files with merge conflicts?": "マージの競合がある {0} 個のファイルをステージしてもよろしいですか?",
+ "Are you sure you want to stage {0} with merge conflicts?": "マージの競合がある {0} をステージしてもよろしいですか?",
+ "Ask Me Later": "後で通知する",
+ "Branch \"{0}\" already exists": "ブランチ \"{0}\" は既に存在します",
+ "Branch \"{0}\" is already checked out in the current repository.": "ブランチ \"{0}\" は、現在のリポジトリで既にチェックアウトされています。",
+ "Branch \"{0}\" is already checked out in the current window.": "ブランチ \"{0}\" は、現在のウィンドウで既にチェックアウトされています。",
+ "Branch \"{0}\" is already checked out in the worktree at \"{1}\".": "ブランチ \"{0}\" は、\"{1}\" のワークツリーで既にチェックアウトされています。",
+ "Branch name": "ブランチ名",
+ "Branch name needs to match regex: {0}": "ブランチ名は次の正規表現に一致する必要があります: {0}",
+ "Branches": "分岐",
+ "Can't force push refs to remote. The tip of the remote-tracking branch has been updated since the last checkout. Try running \"Pull\" first to pull the latest changes from the remote branch first.": "プッシュ参照をリモートに強制することはできません。リモート追跡ブランチのヒントは、前回のチェックアウト以降に更新されています。最初に \"プル\" を実行して、リモート ブランチから最新の変更を最初にプルしてみてください。",
+ "Can't push refs to remote. Try running \"Pull\" first to integrate your changes.": "参照仕様をリモートにプッシュできません。最初に \"Pull\" を実行して変更を統合してください。",
+ "Can't undo because HEAD doesn't point to any commit.": "HEAD が任意のコミットを明示しないため、元に戻すことはできません。",
+ "Changes": "変更",
+ "Checking Out Branch/Tag...": "ブランチまたはタグをチェックアウトしています...",
+ "Checking Out Changes...": "変更をチェックアウトしています...",
+ "Checkout Branch/Tag...": "ブランチまたはタグのチェックアウト...",
+ "Choose Folder...": "フォルダーを選択...",
+ "Choose a folder to clone {0} into": "{0} を複製するフォルダーを選択してください",
+ "Choose a repository": "リポジトリの選択",
+ "Choose which repository to clone": "プルするリポジトリを選択する",
+ "Choose which repository to publish": "発行するリポジトリを選択する",
+ "Clear whitespace characters": "空白文字をクリアする",
+ "Clone again": "再度クローンする",
+ "Clone from URL": "リポジトリの URL",
+ "Clone from {0}": "{0} から複製",
+ "Cloning git repository \"{0}\"...": "Git リポジトリ \"{0}\" を複製しています...",
+ "Commit": "コミット",
+ "Commit & Push Changes": "変更点をコミットしてプッシュ",
+ "Commit & Sync Changes": "変更点をコミットして同期",
+ "Commit Anyway": "このままコミット",
+ "Commit Changes": "変更点のコミット",
+ "Commit Changes on \"{0}\"": "\"{0}\" で変更点をコミットする",
+ "Commit Changes to New Branch": "新しいブランチに変更をコミットする",
+ "Commit Hash": "コミット ハッシュ",
+ "Commit message": "コミット メッセージ",
+ "Commit operation was cancelled due to empty commit message.": "コミット メッセージが空だったため、コミット操作がキャンセルされました。",
+ "Commit to New Branch & Push Changes": "新しいブランチにコミットして変更をプッシュする",
+ "Commit to New Branch & Synchronize Changes": "新しいブランチへのコミットと変更の同期",
+ "Commit to a New Branch": "新しいブランチにコミットする",
+ "Commits without verification are not allowed, please enable them with the \"git.allowNoVerifyCommit\" setting.": "確認なしのコミットは許可されていません。\"git.allowNoVerifyCommit\" 設定を使用して有効にしてください。",
+ "Committing & Pushing Changes...": "変更点をコミットしてプッシュしています...",
+ "Committing & Synchronizing Changes...": "コミットをして変更を同期しています...",
+ "Committing Changes to New Branch...": "新しいブランチに変更をコミットしています...",
+ "Committing Changes...": "変更点をコミットしています...",
+ "Committing to New Branch & Pushing Changes...": "新しいブランチにコミットして変更をプッシュしています...",
+ "Committing to New Branch & Synchronizing Changes...": "新しいブランチへのコミットと変更を同期しています...",
+ "Conflict: Added By Them": "競合: 他者が追加",
+ "Conflict: Added By Us": "競合: こちらが追加",
+ "Conflict: Both Added": "競合: 両方追加",
+ "Conflict: Both Deleted": "競合: 両方削除",
+ "Conflict: Both Modified": "競合: 両方変更",
+ "Conflict: Deleted By Them": "競合: 他者が削除",
+ "Conflict: Deleted By Us": "競合: こちらが削除",
+ "Continue Merge": "マージの続行",
+ "Continue Rebase": "リベースを続行する",
+ "Continuing Merge...": "マージを続行しています...",
+ "Continuing Rebase...": "リベースを続行しています...",
+ "Copy Commit Hash": "コミット ハッシュのコピー",
+ "Could not clone your repository as Git is not installed.": "Git がインストールされていないため、リポジトリをクローンできませんでした。",
+ "Create Empty Commit": "空のコミットの作成",
+ "Create New Branch": "新しいブランチの作成",
+ "Current": "現在のマシン",
+ "Current commit message only contains whitespace characters": "現在のコミット メッセージには空白文字のみが含めています",
+ "Delete All {0} Files": "すべての {0} ファイルの削除",
+ "Delete Branch": "ブランチの削除",
+ "Delete File": "ファイルを削除",
+ "Delete Tag": "タグの削除",
+ "Deleted": "削除済み",
+ "Discard 1 Tracked File": "1 つの追跡ファイルを破棄",
+ "Discard All {0} Files": "{0} 個のファイルをすべて破棄",
+ "Discard All {0} Tracked Files": "すべての {0} 追跡対象ファイルを破棄する",
+ "Discard File": "ファイルの破棄",
+ "Don't Pull": "プルしない",
+ "Don't Show Again": "今後は表示しない",
+ "Download Git": "Git のダウンロード",
+ "Enables the following features: {0}": "機能の有効化: {0}",
+ "Failed to authenticate to git remote.": "Git リモートに対して認証できませんでした。",
+ "Failed to authenticate to git remote:\n\n{0}": "Git リモートに対して認証できませんでした:\n\n{0}",
+ "Failed to delete using the Recycle Bin. Do you want to permanently delete instead?": "ごみ箱を使用した削除に失敗しました。代わりに完全に削除しますか?",
+ "Failed to delete using the Trash. Do you want to permanently delete instead?": "ごみ箱を使用した削除に失敗しました。代わりに完全に削除しますか?",
+ "Failed to open changes between \"{0}\" and \"{1}\": {2}": "\"{0}\" と \"{1}\" の間の変更を開けませんでした: {2}",
+ "File \"{0}\" was deleted by them and modified by us.\n\nWhat would you like to do?": "ファイル \"{0}\" は、他者が削除し、こちらが変更しました。\n\nどのように処理しますか?",
+ "File \"{0}\" was deleted by us and modified by them.\n\nWhat would you like to do?": "ファイル \"{0}\" は、こちらが削除し、他者が変更しました。\n\nどのように処理しますか?",
+ "Force Checkout": "チェックアウトの強制",
+ "Force Delete": "強制削除",
+ "Force push is not allowed, please enable it with the \"git.allowForcePush\" setting.": "強制的なプッシュは禁止されています。\"git.allowForcePush\" 設定で有効にしてください。",
+ "Git Blame Information": "Git Blame 情報",
+ "Git History": "Git 履歴",
+ "Git Local Changes (Index)": "Git ローカル変更 (インデックス)",
+ "Git Local Changes (Working Tree)": "Git ローカル変更 (作業ツリー)",
+ "Git error": "Git エラー",
+ "Git not found. Install it or configure it using the \"git.path\" setting.": "Git が見つかりません。Git をインストールするか \"git.path\" 設定でパスを構成してください。",
+ "Git repositories were found in the parent folders of the workspace or the open file(s). Would you like to open the repositories?": "ワークスペースまたは開いているファイルの親フォルダーに Git リポジトリが見つかりました。リポジトリを開きますか?",
+ "Git: {0}": "Git: {0}",
+ "HEAD version of \"{0}\" is not available.": "\"{0}\" の HEAD バージョンは利用できません。",
+ "Hard wrap all lines": "すべての行を強制折り返しする",
+ "Hard wrap line": "行を強制折り返しする",
+ "Ignored": "無視",
+ "Incoming": "受信中",
+ "Incoming Changes": "受信した変更点",
+ "Incoming Changes (added)": "受信した変更点 (追加済み)",
+ "Incoming Changes (deleted)": "受信した変更点 (削除済み)",
+ "Incoming Changes (modified)": "受信した変更点 (変更済み)",
+ "Incoming Changes (renamed)": "受信した変更点 (名前変更済み)",
+ "Index Added": "インデックスの追加",
+ "Index Copied": "インデックスをコピー",
+ "Index Deleted": "削除されたインデックス",
+ "Index Modified": "変更されたインデックス",
+ "Index Renamed": "インデックスの名前変更",
+ "Initialize Repository": "リポジトリの初期化",
+ "Intent to Add": "追加する目的",
+ "Intent to Rename": "名前を変更する意図",
+ "Invalid branch name": "無効なブランチ名",
+ "It looks like the current branch \"{0}\" might have been rebased. Are you sure you still want to pull into it?": "現在のブランチ \"{0}\" がリベースされた可能性があります。そこへプルしますか?",
+ "It looks like the current branch might have been rebased. Are you sure you still want to pull into it?": "現在のブランチがリベースされた可能性があります。そこへプルしますか?",
+ "It's not possible to change the commit message in the middle of a rebase. Please complete the rebase operation and use interactive rebase instead.": "リベースの最中にコミット メッセージは変更できません。リベースの操作を終了してから、代わりに interactive rebase を使用してください。",
+ "Keep Our Version": "自分 (Our) を維持する",
+ "Keep Their Version": "相手 (Their) を維持する",
+ "Learn More": "詳細を表示",
+ "Make sure you configure your \"user.name\" and \"user.email\" in git.": "Git の \"user.name\" と \"user.email\" を構成していることを確認してください。",
+ "Manage Unsafe Repositories": "安全でないリポジトリの管理",
+ "Merge Changes": "変更のマージ",
+ "Message": "メッセージ",
+ "Message (commit on \"{0}\")": "メッセージ (\"{0}\" でコミット)",
+ "Message ({0} to commit on \"{1}\")": "メッセージ ({0} で \"{1}\" にコミット)",
+ "Message ({0} to commit)": "メッセージ ({0} でコミット)",
+ "Migrate Changes": "変更の移行",
+ "Modified": "変更済み",
+ "Move to Recycle Bin": "ごみ箱に移動",
+ "Move to Trash": "ごみ箱に移動",
+ "Never": "行わない",
+ "No": "いいえ",
+ "No hunk found at cursor position.": "カーソル位置にハンクが見つかりません。",
+ "No rebase in progress.": "進行中のリベースはありません。",
+ "Not Committed Yet": "まだコミットされていません",
+ "Not Committed Yet (Staged)": "まだコミットされていません (ステージ済み)",
+ "OK": "OK",
+ "OK, Don't Ask Again": "今後は確認しない",
+ "OK, Don't Show Again": "OK、今後は表示しない",
+ "Open": "開く",
+ "Open Commit": "コミットを開く",
+ "Open Comparison": "比較を開く",
+ "Open Existing Repository Clone": "既存のリポジトリ クローンを開く",
+ "Open File": "ファイルを開く",
+ "Open Git Log": "Git ログを開く",
+ "Open Merge": "マージを開く",
+ "Open Repositories In Parent Folders": "親フォルダーでリポジトリを開く",
+ "Open Repository": "リポジトリを開く",
+ "Open Settings": "設定を開く",
+ "Open Worktree in Current Window": "現在のウィンドウで作業ツリーを開く",
+ "Open Worktree in New Window": "新しいウィンドウで作業ツリーを開く",
+ "Open in New Window": "新しいウィンドウで開く",
+ "Optionally provide a stash message": "必要に応じてスタッシュ メッセージを提示する",
+ "Passphrase": "パスフレーズ",
+ "Pick a branch to pull from": "プル元のブランチを選択",
+ "Pick a provider to publish the branch \"{0}\" to:": "ブランチ \"{0}\" を以下へ発行するプロバイダーを選択する:",
+ "Pick a remote to publish the branch \"{0}\" to:": "リモートを選んで、ブランチ \"{0}\" を次の場所に公開します:",
+ "Pick a remote to pull the branch from": "リモートを選んで、ブランチを次からプルします",
+ "Pick a remote to remove": "削除するリモートを選択",
+ "Pick a repository to mark as safe and open": "安全とマークして開くリポジトリを選択してください",
+ "Pick a repository to open": "開くリポジトリを選択します。",
+ "Pick a repository to reopen": "再度開くリポジトリを選択する",
+ "Pick a stash to apply": "適用するスタッシュを選択してください",
+ "Pick a stash to drop": "ドロップするスタッシュを選択する",
+ "Pick a stash to pop": "ポップするスタッシュを選択する",
+ "Pick a stash to view": "表示するスタッシュを選択する",
+ "Pick workspace folder to initialize git repo in": "Git リポジトリを初期化するワークスペース フォルダーを選択してください",
+ "Please check out a branch to push to a remote.": "リモートにプッシュするブランチをチェックアウトしてください。",
+ "Please clean your repository working tree before checkout.": "チェックアウトの前に、リポジトリの作業ツリーを消去してください。",
+ "Please provide a commit message": "コミット メッセージを入力してください",
+ "Please provide a message to annotate the tag": "注釈付きタグにつけるメッセージを入力してください",
+ "Please provide a new branch name": "新しいブランチ名を入力してください",
+ "Please provide a remote name": "リモート名を入力してください。",
+ "Please provide a tag name": "タグ名を入力してください",
+ "Please provide a worktree path": "ワークツリーのパスを指定してください",
+ "Please provide the commit hash": "コミット ハッシュを指定してください",
+ "Proceed": "続行",
+ "Proceed with migrating changes to the current repository?": "現在のリポジトリへの変更の移行を続行しますか?",
+ "Publish Branch": "ブランチを発行...",
+ "Publish Branch \"{0}\"/{Locked=\"Branch\"}Do not translate \"Branch\" as it is a git term": "Branch \"{0}\" の発行",
+ "Publish Branch/{Locked=\"Branch\"}Do not translate \"Branch\" as it is a git term": "Branch を発行",
+ "Publish to {0}": "{0} に発行する",
+ "Publish to...": "以下に発行する...",
+ "Publishing Branch \"{0}\".../{Locked=\"Branch\"}Do not translate \"Branch\" as it is a git term": "Branch \"{0}\" を発行しています...",
+ "Publishing Branch.../{Locked=\"Branch\"}Do not translate \"Branch\" as it is a git term": "Branch を公開しています...",
+ "Pull": "プル",
+ "Pull {0} and push {1} commits between {2}/{3}": "{2}/{3} の間で {0} 件のコミットをプルし、{1} 件のコミットをプッシュします",
+ "Pull {0} commits from {1}/{2}": "{1}/{2} から {0} 件のコミットをプルします",
+ "Push {0} commits to {1}/{2}": "{1}/{2} に {0} 件のコミットをプッシュします",
+ "Rebasing": "リベースしています",
+ "Regenerate Branch Name": "ブランチ名を再生成する",
+ "Remote \"{0}\" already exists.": "リモート \"{0}\" は既に存在します。",
+ "Remote branch at {0}": "{0} でのリモート ブランチ",
+ "Remote name": "リモート名",
+ "Remote name format invalid": "リモート名の形式が無効です",
+ "Remote tag at {0}": "{0} のリモート タグ",
+ "Reopen Closed Repositories": "閉じたリポジトリを再度開く",
+ "Replace Local Tag(s)": "ローカル タグの置換",
+ "Restore All {0} Files": "すべての {0} ファイルの復元",
+ "Restore File": "ファイルの復元",
+ "Save All & Commit Changes": "すべて保存して変更をコミットする",
+ "Save All & Stash": "すべてを保存してスタッシュする",
+ "Select Worktree Destination": "ワークツリーの作成先を選択してください",
+ "Select a branch or tag to checkout": "チェックアウトするブランチまたはタグを選択します",
+ "Select a branch or tag to create the new worktree from": "新しいワークツリーを作成するには、以下からブランチまたはタグを選択します",
+ "Select a branch or tag to merge from": "マージ元のブランチまたはタグを選択する",
+ "Select a branch to checkout in detached mode": "デタッチ モードでチェックアウトするブランチを選択します",
+ "Select a branch to delete": "削除するブランチの選択",
+ "Select a branch to rebase onto": "リベース先のブランチを選択",
+ "Select a ref to create the branch from": "ブランチの作成元 ref を選択",
+ "Select a reference to compare with": "比較対象の参照を選択する",
+ "Select a remote branch to delete": "削除するリモート ブランチの選択",
+ "Select a remote tag to delete": "削除するリモート タグを選択する",
+ "Select a remote to delete a tag from": "タグを削除するリモートを選択します",
+ "Select a remote to fetch": "リモートを選択して取得",
+ "Select a tag to delete": "削除するタグを選択する",
+ "Select a worktree to delete": "削除するワークツリーを選択する",
+ "Select a worktree to migrate changes from": "変更の移行元のワークツリーを選択する",
+ "Select as Repository Destination": "リポジトリの宛先として選択",
+ "Select as Worktree Destination": "ワークツリーのコピー先として選択する",
+ "Show Changes": "変更の表示",
+ "Show Command Output": "コマンド出力を表示する",
+ "Staged Changes": "ステージされている変更",
+ "Stash & Checkout": "スタッシュしてチェックアウト",
+ "Stash Anyway": "このままスタッシュ",
+ "Stash message": "スタッシュ メッセージ",
+ "Stashed Changes": "一時退避された変更",
+ "Successfully pushed.": "正常にプッシュされました。",
+ "Synchronize Changes": "変更の同期",
+ "Synchronizing Changes...": "変更を同期しています...",
+ "Syncing. Cancelling may cause serious damages to the repository": "同期中です。キャンセルすると、リポジトリに重大な損傷を与える可能性があります",
+ "Tag at {0}": "{0} のタグ",
+ "Tag name": "タグ名",
+ "Tags": "タグ",
+ "The \"{0}\" repository has {1} submodules which won't be opened automatically. You can still open each one individually by opening a file within.": "\"{0}\" リポジトリに {1} 個のサブモジュールがあり、自動では開かれません。 ファイルを開くことで、それぞれを個別に開くことができます。",
+ "The \"{0}\" repository has {1} worktrees which won't be opened automatically. You can still open each one individually by opening a file within.": "\"{0}\" リポジトリに {1} 個のワークツリーがあり、自動では開かれません。ファイルを開くことで、それぞれを個別に開くことができます。",
+ "The active branch cannot be deleted.": "アクティブなブランチを削除できません。",
+ "The branch \"{0}\" has no remote branch. Would you like to publish this branch?": "\"{0}\" ブランチにリモート ブランチはありません。このブランチを公開しますか?",
+ "The branch \"{0}\" is not fully merged. Delete anyway?": "ブランチ '{0}' はマージされていません。それでも削除しますか?",
+ "The changes are already present in the current branch.": "変更は現在のブランチに既に存在します。",
+ "The current branch is not published to the remote. Would you like to publish it to access your changes elsewhere?": "現在のブランチはリモートに発行されません。他の場所の変更にアクセスするために公開しますか?",
+ "The following file has unresolved diagnostics: '{0}'.\n\nHow would you like to proceed?": "次のファイルは診断を解決できません: '{0}'。\n\n続行する方法を選択してください。",
+ "The following file has unsaved changes which won't be included in the commit if you proceed: {0}.\n\nWould you like to save it before committing?": "次のファイルには保存されていない変更があり、続行するとコミットに含まれません: {0}。\n\nコミットする前に保存しますか?",
+ "The following file has unsaved changes which won't be included in the stash if you proceed: {0}.\n\nWould you like to save it before stashing?": "次のファイルには保存されていない変更があり、続行するとスタッシュに含められません: {0}。\n\nスタッシュする前に保存しますか?",
+ "The git repositories in the current folder are potentially unsafe as the folders are owned by someone other than the current user.": "現在のフォルダー内の Git リポジトリは、現在のユーザー以外のユーザーによって所有されているため、安全でない可能性があります。",
+ "The git repository at \"{0}\" has too many active changes, only a subset of Git features will be enabled.": "\"{0}\" のGit リポジトリにアクティブな変更が多いため、 Git 機能の一部のみが有効になります。",
+ "The git repository in the current folder is potentially unsafe as the folder is owned by someone other than the current user.": "現在のフォルダー内の Git リポジトリは、現在のユーザー以外のユーザーによって所有されているため、安全でない可能性があります。",
+ "The last commit was a merge commit. Are you sure you want to undo it?": "最後のコミットはマージ コミットでした。元に戻しますか?",
+ "The new branch will be \"{0}\"": "新しいブランチは \"{0}\" になります",
+ "The remote branch of the active branch cannot be deleted.": "アクティブブランチのリモート ブランチを削除できません。",
+ "The repository does not have any changes.": "リポジトリには変更はありません。",
+ "The repository does not have any commits. Please make an initial commit before creating a stash.": "リポジトリにコミットがありません。一時退避を作成する前に、初期コミットを行ってください。",
+ "The repository does not have any staged changes.": "リポジトリには段階的な変更はありません。",
+ "The repository does not have any untracked changes.": "リポジトリには追跡されていない変更はありません。",
+ "The selection range does not contain any changes.": "選択範囲に変更が含まれていません。",
+ "The source repository could not be found.": "ソース リポジトリが見つかりませんでした。",
+ "The worktree contains modified or untracked files. Do you want to force delete?": "作業ツリーには、変更されたまたは未追跡のファイルが含まれています。強制的に削除しますか?",
+ "There are known issues with the installed Git \"{0}\". Please update to Git >= 2.27 for the git features to work correctly.": "インストールされている Git \"{0}\" には既知の問題があります。Git 機能を正常に動作させるために、Git を 2.27 以上に更新してください。",
+ "There are merge conflicts from migrating changes. Please resolve them before committing.": "変更の移行によるマージの競合があります。コミットする前に解決してください。",
+ "There are merge conflicts while applying the stash. Please resolve them before committing your changes.": "一時退避の適用中にマージの競合が発生しました。変更をコミットする前に解決してください。",
+ "There are merge conflicts. Please resolve them before committing your changes.": "マージの競合があります。変更をコミットする前に解決してください。",
+ "There are no available repositories": "利用可能なリポジトリがありません",
+ "There are no available repositories matching the filter": "フィルターに一致する使用可能なリポジトリがありません",
+ "There are no changes between \"{0}\" and \"{1}\".": "\"{0}\" と \"{1}\" の間に変更はありません。",
+ "There are no changes in the selected worktree to migrate.": "移行する選択したワークツリーに変更はありません。",
+ "There are no changes to commit.": "コミットする必要のある変更はありません。",
+ "There are no changes to stash.": "スタッシュする変更がありません。",
+ "There are no staged changes to commit.\n\nWould you like to stage all your changes and commit them directly?": "ステージされている変更がなく、コミットできません。\n\nすべての変更をステージして、直接コミットしますか?",
+ "There are no staged changes to stash.": "コミットする必要のあるステージされている変更はありません。",
+ "There are no stashes in the repository.": "リポジトリ内にスタッシュはありません。",
+ "There are {0} files that have unresolved diagnostics.\n\nHow would you like to proceed?": "診断を解決していないファイルが {0}。\n\n続行する方法を選択してください。",
+ "There are {0} unsaved files.\n\nWould you like to save them before committing?": "{0} 個の保存されていないファイルがあります。\n\nコミット前に保存しますか?",
+ "There are {0} unsaved files.\n\nWould you like to save them before stashing?": "{0} 個の保存されていないファイルがあります。\n\nスタッシュする前に保存しますか?",
+ "There were merge conflicts while cherry picking the changes. Resolve the conflicts before committing them.": "変更のチェリー ピック中にマージの競合が発生しました。競合を解決してからコミットしてください。",
+ "This action will pull and push commits from and to \"{0}/{1}\".": "このアクションは、\"{0}/{1}\" との間でコミットをプルおよびプッシュします。",
+ "This is IRREVERSIBLE!\nThese files will be FOREVER LOST if you proceed.": "これは元に戻すことができません。\n続行すると、このファイルは完全に失われます。",
+ "This is IRREVERSIBLE!\nThis file will be FOREVER LOST if you proceed.": "これは元に戻すことができません。\n続行すると、このファイルは完全に失われます。",
+ "This repository has no remotes configured to fetch from.": "リポジトリには、フェッチ元として構成されているリモートがありません。",
+ "This will apply the worktree's changes to this repository and discard changes in the worktree.\nThis is IRREVERSIBLE!": "これにより、ワークツリーの変更がこのリポジトリに適用され、ワークツリーの変更が破棄されます。\nこれは元に戻すことができません。",
+ "This will create a Git repository in \"{0}\". Are you sure you want to continue?": "\"{0}\" に Git リポジトリを作成します。続行してもよろしいですか?",
+ "Too many changes were detected. Only the first {0} changes will be shown below.": "検出された変更が多すぎます。最初の {0} の変更のみが下に表示されます。",
+ "Type Changed": "変更された型",
+ "Unable to pull from remote repository due to conflicting tag(s): {0}. Would you like to resolve the conflict by replacing the local tag(s)?": "タグが競合しているため、リモート リポジトリからプルできません: {0}。ローカル タグを置き換えて競合を解決しますか?",
+ "Uncommitted Changes": "コミットされていない変更",
+ "Undo merge commit": "マージ コミットの取り消し",
+ "Untracked": "追跡対象外",
+ "Untracked Changes": "追跡対象外の変更",
+ "Update Git": "Git の更新",
+ "View Problems": "問題の表示",
+ "Workspace": "ワークスペース",
+ "Workspace: {0}": "ワークスペース: {0}",
+ "Worktree": "ワークツリー",
+ "Worktree path": "ワークツリーのパス",
+ "Would you like to add \"{0}\" to .gitignore?": ".gitignore に \"{0}\" を追加しますか?",
+ "Would you like to open the initialized repository, or add it to the current workspace?": "初期化済みのリポジトリを開きますか? または現在のワークスペースへ追加しますか?",
+ "Would you like to open the initialized repository?": "初期化済みのリポジトリを開きますか?",
+ "Would you like to open the repository, or add it to the current workspace?": "リポジトリを開きますか、または現在のワークスペースに追加しますか?",
+ "Would you like to open the repository?": "リポジトリを開きますか?",
+ "Would you like to publish this repository to continue working on it elsewhere?": "このリポジトリを他の場所で引き続き作業するために公開しますか?",
+ "Would you like {0} to [periodically run \"git fetch\"]({1})?": "{0}に定期的に[「git fetch」を実行する]({1}) にしますか?",
+ "Yes": "はい",
+ "Yes, Don't Show Again": "はい、今後は表示しません",
+ "You": "自分",
+ "You are about to commit your changes without verification, this skips pre-commit hooks and can be undesirable.\n\nAre you sure to continue?": "確認せずに変更をコミットしようとしています。これは、コミット前のフックをスキップするため、望ましくない場合があります。\n\n続行しますか?",
+ "You are about to force push your changes, this can be destructive and could inadvertently overwrite changes made by others.\n\nAre you sure to continue?": "変更の強制プッシュを行おうとしていますが、これは破壊的なことがあり、他人の変更を誤って上書きする可能性があります。\n\n続行しますか?",
+ "You are trying to commit to a protected branch and you might not have permission to push your commits to the remote.\n\nHow would you like to proceed?": "保護されたブランチにコミットしようとしていますが、コミットをリモートにプッシュするアクセス許可がない可能性があります。\n\n続行しますか?",
+ "You can restore these files from the Recycle Bin.": "これらのファイルは、ごみ箱から復元できます。",
+ "You can restore these files from the Trash.": "これらのファイルは、ゴミ箱から復元できます。",
+ "You can restore this file from the Recycle Bin.": "このファイルはごみ箱から復元できます。",
+ "You can restore this file from the Trash.": "このファイルはゴミ箱から復元できます。",
+ "You cannot delete the worktree you are currently in. Please switch to the main repository first.": "現在の作業ツリーは削除できません。最初にメイン リポジトリに切り替えてください。",
+ "You seem to have git \"{0}\" installed. Code works best with git >= 2": "Git \"{0}\" がインストールされているようです。Code は Git 2 以上で最適に動作します",
+ "Your local changes to the following files would be overwritten by merge:\n {0}\n\nPlease stage, commit, or stash your changes in the repository before migrating changes.": "次のファイルに対するローカルの変更は、マージによって上書きされます。\n {0}\n\n変更を移行する前に、リポジトリに変更をステージ、コミット、またはスタッシュしてください。",
+ "Your local changes would be overwritten by checkout.": "ローカルの変更は、チェックアウトによって上書きされます。",
+ "Your repository has no remotes configured to publish to.": "リポジトリには、発行先として構成されているリモートがありません。",
+ "Your repository has no remotes configured to pull from.": "リポジトリには、プル元として構成されているリモートがありません。",
+ "Your repository has no remotes configured to push to.": "リポジトリには、プッシュ先として構成されているリモートがありません。",
+ "Your repository has no remotes.": "リポジトリにリモートが含まれていません。",
+ "[main] Log level: {0}": "[main] ログ レベル: {0}",
+ "[main] Skipped found git in: \"{0}\"": "[main] Git のスキップが検出されました: \"{0}\"",
+ "[main] Using git \"{0}\" from \"{1}\"": "[main] \"{1}\" から Git \"{0}\" を使用しています",
+ "[main] Validating found git in: \"{0}\"": "[main] Git の検証が検出されました: \"{0}\"",
+ "branches": "ブランチ",
+ "in {0}": "{0} 後",
+ "no": "no",
+ "now": "今",
+ "remote branches": "リモート ブランチ",
+ "tags": "タグ",
+ "yes": "はい",
+ "{0} (Deleted)": "{0} (削除済み)",
+ "{0} (Index)": "{0} (インデックス)",
+ "{0} (Intent to add)": "{0} (追加する意図)",
+ "{0} (Ours)": "{0} (自分たちの)",
+ "{0} (Theirs)": "{0} (他のユーザー)",
+ "{0} (Type changed)": "{0} (変更された型)",
+ "{0} (Untracked)": "{0} (未追跡)",
+ "{0} (Working Tree)": "{0} (作業ツリー)",
+ "{0} ({1})": "{0} ({1})",
+ "{0} ({1}) ș {0} ({2})": "{0} ({1}) ș {0} ({2})",
+ "{0} Checkout detached...": "{0} デタッチしてチェックアウト...",
+ "{0} Commit": "{0} コミット",
+ "{0} Commit & Push": "{0} コミットしてプッシュ",
+ "{0} Commit & Sync": "{0} コミットして同期",
+ "{0} Commit (Amend)": "{0} コミット (修正)",
+ "{0} Continue": "{0} 続行",
+ "{0} Create new branch from...": "{0} 新しいブランチを以下から作成...",
+ "{0} Create new branch...": "{0} 新しいブランチの作成...",
+ "{0} Fetch all remotes": "{0} すべてのリモートを取得",
+ "{0} Publish Branch/{Locked=\"Branch\"}Do not translate \"Branch\" as it is a git term": "{0} Branch の発行",
+ "{0} Sync Changes{1}{2}": "{0}変更の同期{1}{2}",
+ "{0} characters over {1} in current line": "現在の行で {1} から {0} 文字オーバー",
+ "{0} day": "{0} 日",
+ "{0} day ago": "{0} 日前",
+ "{0} days": "{0} 日",
+ "{0} days ago": "{0} 日前",
+ "{0} deletions{1}": "{0} 個の削除{1}",
+ "{0} deletion{1}": "{0} 個の削除{1}",
+ "{0} file changed": "{0} 個のファイルが変更済み",
+ "{0} files changed": "{0} 個のファイルが変更済み",
+ "{0} hour": "{0} 時間",
+ "{0} hour ago": "{0} 時間前",
+ "{0} hours": "{0} 時間",
+ "{0} hours ago": "{0} 時間前",
+ "{0} hr": "{0} 時間",
+ "{0} hr ago": "{0} 時間前",
+ "{0} hrs": "{0} 時間",
+ "{0} hrs ago": "{0} 時間前",
+ "{0} insertions{1}": "{0} 個の挿入{1}",
+ "{0} insertion{1}": "{0} 個の挿入{1}",
+ "{0} min": "{0} 分",
+ "{0} min ago": "{0} 分前",
+ "{0} mins": "{0} 分",
+ "{0} mins ago": "{0} 分前",
+ "{0} minute": "{0} 分",
+ "{0} minute ago": "{0} 分前",
+ "{0} minutes": "{0} 分",
+ "{0} minutes ago": "{0} 分前",
+ "{0} mo": "{0} か月",
+ "{0} mo ago": "{0} か月前",
+ "{0} month": "{0} か月",
+ "{0} month ago": "{0} か月前",
+ "{0} months": "{0} か月",
+ "{0} months ago": "{0} か月前",
+ "{0} mos": "{0} か月",
+ "{0} mos ago": "{0} か月前",
+ "{0} sec": "{0} 秒",
+ "{0} sec ago": "{0} 秒前",
+ "{0} second": "{0} 秒",
+ "{0} second ago": "{0} 秒前",
+ "{0} seconds": "{0} 秒",
+ "{0} seconds ago": "{0} 秒前",
+ "{0} secs": "{0} 秒",
+ "{0} secs ago": "{0} 秒前",
+ "{0} week": "{0} 週間",
+ "{0} week ago": "{0} 週間前",
+ "{0} weeks": "{0} 週間",
+ "{0} weeks ago": "{0} 週間前",
+ "{0} wk": "{0} 週間",
+ "{0} wk ago": "{0} 週間前",
+ "{0} wks": "{0} 週間",
+ "{0} wks ago": "{0} 週間前",
+ "{0} year": "{0} 年",
+ "{0} year ago": "{0} 年前",
+ "{0} years": "{0} 年",
+ "{0} years ago": "{0} 年前",
+ "{0} yr": "{0} 年",
+ "{0} yr ago": "{0} 年前",
+ "{0} yrs": "{0} 年",
+ "{0} yrs ago": "{0} 年前",
+ "{0} ș {1}": "{0} ș {1}"
+ },
+ "package": {
+ "colors.added": "追加したリソースの配色。",
+ "colors.blameEditorDecoration": "blame エディターの装飾色。",
+ "colors.conflict": "リソースが競合する場合の配色",
+ "colors.deleted": "リソースを検出した場合の配色",
+ "colors.ignored": "リソースを無視する場合の配色",
+ "colors.incomingAdded": "追加された受信リソースの配色。",
+ "colors.incomingDeleted": "削除された受信リソースの配色。",
+ "colors.incomingModified": "変更された受信リソースの配色。",
+ "colors.incomingRenamed": "名前が変更された受信リソースの配色。",
+ "colors.modified": "リソースを改変した場合の配色",
+ "colors.renamed": "名前変更またはコピーされたリソースの色。",
+ "colors.stageDeleted": "ステージングされた削除済みリソースの色。",
+ "colors.stageModified": "ステージングされた変更済みリソースの色。",
+ "colors.submodule": "サブモジュールの配色。",
+ "colors.untracked": "リソースを追跡しない場合の配色",
+ "command.addRemote": "リモートの追加...",
+ "command.api.getRemoteSources": "リモート ソースの取得",
+ "command.api.getRepositories": "リポジトリの取得",
+ "command.api.getRepositoryState": "リポジトリ状態の取得",
+ "command.blameToggleEditorDecoration": "Git Blame エディター装飾の切り替え",
+ "command.blameToggleStatusBarItem": "Git Blame ステータス バー項目の切り替え",
+ "command.branch": "ブランチの作成...",
+ "command.branchFrom": "ブランチの作成元...",
+ "command.checkout": "チェックアウト先...",
+ "command.checkoutDetached": "チェックアウト先 (デタッチ済み)...",
+ "command.cherryPick": "チェリーピック...",
+ "command.cherryPickAbort": "チェリー ピックの中止",
+ "command.clean": "変更を破棄",
+ "command.cleanAll": "すべての変更を破棄",
+ "command.cleanAllTracked": "変更履歴をすべて破棄",
+ "command.cleanAllUntracked": "追跡対象外のすべての変更を破棄",
+ "command.clone": "クローン",
+ "command.cloneRecursive": "複製 (再帰)",
+ "command.close": "リポジトリを閉じる",
+ "command.closeAllDiffEditors": "すべての差分エディターを閉じる",
+ "command.closeAllUnmodifiedEditors": "未変更のエディターをすべて閉じる",
+ "command.closeOtherRepositories": "その他のリポジトリを閉じる",
+ "command.commit": "コミット",
+ "command.commitAll": "すべてコミット",
+ "command.commitAllAmend": "すべてコミット (修正)",
+ "command.commitAllAmendNoVerify": "すべてコミット (修正、確認なし)",
+ "command.commitAllNoVerify": "すべてコミット (確認なし)",
+ "command.commitAllSigned": "すべてコミット (Signed Off)",
+ "command.commitAllSignedNoVerify": "すべてコミット (サインオフ、確認なし)",
+ "command.commitAmend": "コミット (修正)",
+ "command.commitAmendNoVerify": "コミット (修正、確認なし)",
+ "command.commitEmpty": "空のコミット",
+ "command.commitEmptyNoVerify": "空のコミット (確認なし)",
+ "command.commitMessageAccept": "コミット メッセージを受け入れる",
+ "command.commitMessageDiscard": "コミット メッセージの破棄",
+ "command.commitNoVerify": "コミット (確認なし)",
+ "command.commitSigned": "コミット (サインオフ)",
+ "command.commitSignedNoVerify": "コミット (サインオフ、確認なし)",
+ "command.commitStaged": "ステージング済みをコミット",
+ "command.commitStagedAmend": "ステージング済をコミット (修正)",
+ "command.commitStagedAmendNoVerify": "ステージング済みをコミット (修正、確認なし)",
+ "command.commitStagedNoVerify": "ステージング済みをコミット (確認なし)",
+ "command.commitStagedSigned": "コミットしてステージング (サインオフ)",
+ "command.commitStagedSignedNoVerify": "ステージング済みをコミット (サインオフ、確認なし)",
+ "command.compareWithWorkspace": "ワークスペースと比較する",
+ "command.continueInLocalClone": "リポジトリをローカルにクローンしてデスクトップで開く...",
+ "command.continueInLocalClone.qualifiedName": "新しいローカル クローンで作業を続ける",
+ "command.createFrom": "作成元...",
+ "command.createTag": "タグの作成...",
+ "command.createWorktree": "ワークツリーの作成...",
+ "command.deleteBranch": "ブランチの削除...",
+ "command.deleteRef": "削除",
+ "command.deleteRemoteBranch": "リモート ブランチの削除...",
+ "command.deleteRemoteTag": "リモート タグの削除...",
+ "command.deleteTag": "タグの削除...",
+ "command.deleteWorktree": "作業ツリーを削除...",
+ "command.deleteWorktree2": "作業ツリーの削除",
+ "command.fetch": "フェッチ",
+ "command.fetchAll": "すべてのリモートからフェッチ",
+ "command.fetchPrune": "フェッチ (Prune)",
+ "command.git.acceptMerge": "マージの完了",
+ "command.git.openMergeEditor": "マージ エディターで解決",
+ "command.git.runGitMerge": "Git とのコンピューティングの競合",
+ "command.git.runGitMergeDiff3": "Git とのコンピューティングの競合 (Diff3)",
+ "command.graphCheckout": "チェックアウト",
+ "command.graphCheckoutDetached": "チェックアウト (デタッチ済み)",
+ "command.graphCherryPick": "チェリー ピック",
+ "command.graphCompareRef": "比較する...",
+ "command.graphCompareWithMergeBase": "マージ ベースと比較する",
+ "command.graphCompareWithRemote": "リモートと比較する",
+ "command.graphDeleteBranch": "ブランチの削除",
+ "command.graphDeleteTag": "タグの削除",
+ "command.ignore": ".gitignore に追加",
+ "command.init": "リポジトリの初期化",
+ "command.manageUnsafeRepositories": "安全でないリポジトリの管理",
+ "command.merge": "マージ...",
+ "command.merge2": "マージ",
+ "command.mergeAbort": "マージの中止",
+ "command.migrateWorktreeChanges": "ワークツリーの変更を移行する...",
+ "command.openAllChanges": "すべての変更を開く",
+ "command.openChange": "変更を開く",
+ "command.openFile": "ファイルを開く",
+ "command.openHEADFile": "ファイル (HEAD) を開く",
+ "command.openRepositoriesInParentFolders": "親フォルダーでリポジトリを開く",
+ "command.openRepository": "リポジトリを開く",
+ "command.openWorktree": "現在のウィンドウで作業ツリーを開く",
+ "command.openWorktreeInNewWindow": "新しいウィンドウで作業ツリーを開く",
+ "command.publish": "ブランチを発行...",
+ "command.pull": "プル",
+ "command.pullFrom": "指定元からプル...",
+ "command.pullRebase": "プル (リベース)",
+ "command.push": "プッシュ",
+ "command.pushFollowTags": "プッシュ (タグをフォロー)",
+ "command.pushFollowTagsForce": "プッシュ (タグをフォロー、強制)",
+ "command.pushForce": "プッシュ (強制)",
+ "command.pushTags": "タグをプッシュ",
+ "command.pushTo": "プッシュ先...",
+ "command.pushToForce": "プッシュ先... (強制)",
+ "command.rebase": "ブランチのリベース...",
+ "command.rebase2": "リベース",
+ "command.rebaseAbort": "リベースを中止する",
+ "command.refresh": "最新の情報に更新",
+ "command.removeRemote": "リモートの削除",
+ "command.rename": "名前の変更",
+ "command.renameBranch": "ブランチ名の変更...",
+ "command.reopenClosedRepositories": "閉じたリポジトリを再度開く...",
+ "command.restoreCommitTemplate": "コミット テンプレートを復元する",
+ "command.revealFileInOS.linux": "含まれているフォルダーを開く",
+ "command.revealFileInOS.mac": "Finder で表示します",
+ "command.revealFileInOS.windows": "エクスプローラーで表示する",
+ "command.revealInExplorer": "エクスプローラー ビューで表示",
+ "command.revertChange": "変更を元に戻す",
+ "command.revertSelectedRanges": "選択範囲を元に戻す",
+ "command.showOutput": "Git 出力の表示",
+ "command.stage": "変更をステージ",
+ "command.stageAll": "すべての変更をステージ",
+ "command.stageAllMerge": "すべてのマージ変更をステージする",
+ "command.stageAllTracked": "すべての変更履歴をステージングする",
+ "command.stageAllUntracked": "すべての追跡対象外の変更のステージング",
+ "command.stageBlock": "ブロックをステージング",
+ "command.stageChange": "変更のステージング",
+ "command.stageSelectedRanges": "選択した範囲をステージする",
+ "command.stageSelection": "選択をステージング",
+ "command.stash": "スタッシュ",
+ "command.stashApply": "スタッシュを適用...",
+ "command.stashApplyEditor": "スタッシュを適用",
+ "command.stashApplyLatest": "最新のスタッシュを適用",
+ "command.stashDrop": "スタッシュを削除する...",
+ "command.stashDropAll": "すべてのスタッシュを削除...",
+ "command.stashDropEditor": "スタッシュを削除する",
+ "command.stashIncludeUntracked": "スタッシュ (未追跡ファイルを含む)",
+ "command.stashPop": "スタッシュをポップする...",
+ "command.stashPopEditor": "スタッシュをポップ",
+ "command.stashPopLatest": "最新のスタッシュをポップ",
+ "command.stashStaged": "スタッシュ (ステージング済み)",
+ "command.stashView": "スタッシュの表示...",
+ "command.sync": "同期",
+ "command.syncRebase": "同期 (Rebase)",
+ "command.timelineCompareWithSelected": "選択項目と比較",
+ "command.timelineCopyCommitId": "コミット ID のコピー",
+ "command.timelineCopyCommitMessage": "コミット メッセージのコピー",
+ "command.timelineOpenDiff": "変更を開く",
+ "command.timelineSelectForCompare": "比較対象の選択",
+ "command.undoCommit": "前回のコミットを元に戻す",
+ "command.unstage": "変更のステージング解除",
+ "command.unstageAll": "すべての変更のステージング解除",
+ "command.unstageChange": "ステージ解除の変更",
+ "command.unstageSelectedRanges": "選択した範囲のステージを解除",
+ "command.viewChanges": "変更を開く",
+ "command.viewCommit": "コミットを開く",
+ "command.viewStagedChanges": "ステージされた変更を開く",
+ "command.viewUntrackedChanges": "追跡対象外の変更を開く",
+ "config.allowForcePush": "強制的なプッシュ (--force-with-lease の有無にかかわらず) を有効にするかどうかを制御します。",
+ "config.allowNoVerifyCommit": "pre-commit と commit-msg フックを実行しないコミットを許可するかどうかを制御します。",
+ "config.alwaysShowStagedChangesResourceGroup": "ステージ済み変更のリソース グループを常に表示します。",
+ "config.alwaysSignOff": "すべてのコミットのサインオフ フラグを制御します。",
+ "config.autoRepositoryDetection": "レポジトリを自動的に検出するかどうかを構成します。",
+ "config.autoRepositoryDetection.false": "リポジトリの自動的なスキャンを無効にします。",
+ "config.autoRepositoryDetection.openEditors": "開いているファイルの親フォルダーをスキャンします。",
+ "config.autoRepositoryDetection.subFolders": "現在開いているフォルダーのサブフォルダーをスキャンします。",
+ "config.autoRepositoryDetection.true": "現在開いているフォルダーのサブフォルダーと、開いているファイルの親フォルダーの両方をスキャンします。",
+ "config.autoStash": "プルする前にすべての変更をスタッシュし、プル成功後に復元します。",
+ "config.autofetch": "true に設定すると、現在の Git リポジトリの既定のリモートからコミットが自動的にフェッチされます。[すべて] に設定すると、すべてのリモートからフェッチされます。",
+ "config.autofetchPeriod": "`#git.autofetch#` が有効な場合の git の自動フェッチ間隔 (秒単位)。",
+ "config.autorefresh": "自動更新の有効/無効。",
+ "config.blameEditorDecoration.enabled": "エディターの装飾を使用して、エディターに blame の情報を表示するかどうかを制御します。",
+ "config.blameEditorDecoration.template": "blame 情報エディターの装飾用のテンプレート。サポート対象の変数:\r\n\r\n* `hash`: コミット ハッシュ\r\n\r\n* `hashShort`: `#git.commitShortHashLength#` に従ったコミット ハッシュの最初の N 文字\r\n\r\n* `subject`: コミット メッセージの最初の行\r\n\r\n* `authorName`: 作成者名\r\n\r\n* `authorEmail`: 作成者のメール\r\n\r\n* `authorDate`: 作成日\r\n\r\n* `authorDateAgo`: 現在と作成日の間の時間差\r\n\r\n",
+ "config.blameStatusBarItem.enabled": "ステータス バーに blame の情報を表示するかどうかを制御します。",
+ "config.blameStatusBarItem.template": "blame 情報のステータス バー項目のテンプレート。サポート対象の変数:\r\n\r\n* `hash`: コミット ハッシュ\r\n\r\n* `hashShort`: `#git.commitShortHashLength#` に従ったコミット ハッシュの最初の N 文字\r\n\r\n* `subject`: コミット メッセージの最初の行\r\n\r\n* `authorName`: 作成者名\r\n\r\n* `authorEmail`: 作成者のメール\r\n\r\n* `authorDate`: 作成日\r\n\r\n* `authorDateAgo`: 現在と作成日の間の時間差\r\n\r\n",
+ "config.branchPrefix": "新しいブランチを作成するときに使用されるプレフィックス。",
+ "config.branchProtection": "保護されたブランチのリスト。既定では、変更が保護されたブランチにコミットされる前にプロンプトが表示されます。プロンプトは、'#git.branchProtectionPrompt#' 設定を使用して制御できます。",
+ "config.branchProtectionPrompt": "保護されたブランチに変更をコミットする前にプロンプトを表示するかどうかを制御します。",
+ "config.branchProtectionPrompt.alwaysCommit": "常に保護されたブランチに変更をコミットします。",
+ "config.branchProtectionPrompt.alwaysCommitToNewBranch": "新しいブランチへの変更をコミットします。",
+ "config.branchProtectionPrompt.alwaysPrompt": "変更が保護されたブランチにコミットされる前に、常にプロンプトを表示します。",
+ "config.branchRandomNameDictionary": "ランダムに生成されたブランチ名に使用されるディクショナリの一覧。各値は、ブランチ名のセグメントを生成するために使用されるディクショナリを表します。サポートされている辞書: `adjectives`, `animals`, `colors`, `numbers`。",
+ "config.branchRandomNameDictionary.adjectives": "ランダムな形容詞",
+ "config.branchRandomNameDictionary.animals": "ランダムな動物の名前",
+ "config.branchRandomNameDictionary.colors": "ランダムな色の名前",
+ "config.branchRandomNameDictionary.numbers": "100 と 999 の間のランダムな数",
+ "config.branchRandomNameEnable": "新しいブランチの作成時にランダムな名前を生成するかどうかを制御します。",
+ "config.branchSortOrder": "ブランチの並べ替え順序を制御します。",
+ "config.branchValidationRegex": "新しいブランチ名を検証するための正規表現。",
+ "config.branchWhitespaceChar": "新しいブランチ名の空白文字を置き換え、ランダムに生成されたブランチ名のセグメントを区切る文字。",
+ "config.checkoutType": "'Checkout to...' を実行するときに一覧表示される Git 参照の種類を制御します。",
+ "config.checkoutType.local": "ローカル ブランチ",
+ "config.checkoutType.remote": "リモート ブランチ",
+ "config.checkoutType.tags": "タグ",
+ "config.closeDiffOnOperation": "変更をスタッシュ、コミット、破棄、ステージング、またはステージング解除する場合に差分エディターを自動的に閉じるかどうかを制御します。",
+ "config.commandsToLog": "'stdout' のログが[git output](command:git.showOutput) に記録される Git コマンドの一覧 (commit、push など)。Git コマンドでクライアント側フックが構成されている場合、クライアント側フックの 'stdout' のログも[git output](command:git.showOutput) に記録されます。",
+ "config.commitShortHashLength": "コミットの短いハッシュの長さを制御します。",
+ "config.confirmEmptyCommits": "'Git: Commit Empty' コマンドの空のコミットの作成を常に確認します。",
+ "config.confirmForcePush": "強制的なプッシュの前に確認を求めるかどうかを制御します。",
+ "config.confirmNoVerifyCommit": "確認せずにコミットする前に確認メッセージを表示するかどうかを制御します。",
+ "config.confirmSync": "Git リポジトリを同期する前に確認してください。",
+ "config.countBadge": "Git カウント バッジを制御します。",
+ "config.countBadge.all": "すべての変更をカウントします。",
+ "config.countBadge.off": "カウンターをオフにします。",
+ "config.countBadge.tracked": "追跡済みの変更のみカウントします。",
+ "config.decorations.enabled": "Git が配色とバッジをエクスプローラーと [開いているエディター] ビューに提供するかどうかを制御します。",
+ "config.defaultBranchName": "新しい Git リポジトリを初期化するときの既定のブランチの名前 (例: main、trunk、development)。空に設定すると、Git で構成された既定のブランチ名が使用されます。**注:** Git バージョン '2.28.0' 以降が必要です。",
+ "config.defaultCloneDirectory": "Git リポジトリをクローンする既定の場所。",
+ "config.detectSubmodules": "Git サブモジュールを自動的に検出するかどうかを制御します。",
+ "config.detectSubmodulesLimit": "検出された Git サブモジュールの制限を制御します。",
+ "config.detectWorktrees": "Git ワークツリーを自動的に検出するかどうかを制御します。",
+ "config.detectWorktreesLimit": "検出された Git ワークツリーの制限を制御します。",
+ "config.diagnosticsCommitHook.enabled": "コミットする前に、未解決の診断をチェックするかどうかを制御します。",
+ "config.diagnosticsCommitHook.sources": "コミット前に考慮されるソースのリスト (**Item**) と最小の重大度 (**Value**) を制御します。**注:** 特定のソースからの診断を無視するには、ソースをリストに追加し、最小の重大度を `none` に設定します。",
+ "config.discardAllScope": "'すべての変更を破棄' コマンドによってどの変更が破棄されるかを制御します。'all' はすべての変更を破棄します。 'tracked' は追跡されているファイルだけを破棄します。 'prompt' は、アクションが実行されるたびにプロンプト ダイアログを表示します。",
+ "config.discardUntrackedChangesToTrash": "追跡されていない変更を破棄して、ファイルを完全に削除するのではなく、ごみ箱 (Windows)、ごみ箱 (macOS、Linux) に移動するかどうかを制御します。**注:** この設定は、リモートに接続している場合、または Linux でスナップ パッケージとして実行している場合に効果はありません。",
+ "config.enableCommitSigning": "GPG、X.509、または SSH によるコミットの署名を有効にします。",
+ "config.enableSmartCommit": "ステージされた変更がない場合はすべての変更をコミットします。",
+ "config.enableStatusBarSync": "ステータス バーに Git Sync コマンドを表示するかどうかを制御します。",
+ "config.enabled": "Git が有効かどうか。",
+ "config.experimental.installGuide": "Git のセットアップ フローの試験的な改善。",
+ "config.fetchOnPull": "有効にすると、プル時にすべてのブランチをフェッチします。それ以外の場合は、現在のブランチだけをフェッチします。",
+ "config.followTagsWhenSync": "同期コマンドを実行するときに、注釈付きタグをすべてプッシュします。",
+ "config.ignoreLegacyWarning": "古い Git である警告を無視します。",
+ "config.ignoreLimitWarning": "リポジトリ内に変更が多い場合の警告を無視します。",
+ "config.ignoreMissingGitWarning": "Git が見つからない場合の警告を無視します。",
+ "config.ignoreRebaseWarning": "ブランチがプル時にリベースされた可能性があると思われる場合、警告を無視します。",
+ "config.ignoreSubmodules": "ファイル ツリーでのサブモジュールの変更を無視します。",
+ "config.ignoreWindowsGit27Warning": "Git 2.25 - 2.26 が Windows にインストールされている場合は警告を無視します。",
+ "config.ignoredRepositories": "無視する Git リポジトリのリスト。",
+ "config.inputValidation": "コミット メッセージの入力検証診断を表示するかどうかを制御します。",
+ "config.inputValidationLength": "警告を表示するコミット メッセージの長さのしきい値を制御します。",
+ "config.inputValidationSubjectLength": "警告を表示するためのコミット メッセージの件名長のしきい値を制御します。'#git.inputValidationLength#' の値を継承する場合には設定解除します。",
+ "config.mergeEditor": "現在競合しているファイルのマージ エディターを開きます。",
+ "config.openAfterClone": "複製後にリポジトリを自動的に開くかどうかを制御します。",
+ "config.openAfterClone.always": "常に現在のウィンドウで開きます。",
+ "config.openAfterClone.alwaysNewWindow": "常に新しいウィンドウで開きます。",
+ "config.openAfterClone.prompt": "常にアクションを確認します。",
+ "config.openAfterClone.whenNoFolderOpen": "開いているフォルダーがない場合は現在のウィンドウでのみ開きます。",
+ "config.openDiffOnClick": "変更をクリックすると差分エディターを開くかどうかを制御します。そうでなければ通常のエディターを開きます。",
+ "config.openRepositoryInParentFolders": "ワークスペースの親フォルダー内または開いているファイルのどちらでのリポジトリを開く必要があるのかを制御します。",
+ "config.openRepositoryInParentFolders.always": "常にワークスペースの親フォルダーまたは開いているファイルでリポジトリを開きます。",
+ "config.openRepositoryInParentFolders.never": "ワークスペースの親フォルダーまたは開いているファイルでリポジトリを開きません。",
+ "config.openRepositoryInParentFolders.prompt": "ワークスペースの親フォルダーまたは開いているファイルでリポジトリを開く前に、ダイアログを表示します。",
+ "config.optimisticUpdate": "git コマンドの実行後にソース管理ビューの状態を楽観的に更新するかどうかを制御します。",
+ "config.path": "Git 実行可能ファイルのパスとファイル名 (例: Windows の場合は `C:\\Program Files\\Git\\bin\\git.exe`)。検索する複数のパスを含む文字列値の配列を指定することもできます。",
+ "config.postCommitCommand": "コミットの成功後、git コマンドを実行します。",
+ "config.postCommitCommand.none": "コミット後、任意のコマンドを実行しません。",
+ "config.postCommitCommand.push": "コミットの成功後、'git push' を実行します。",
+ "config.postCommitCommand.sync": "コミットが成功した後、'git pull' と 'git push' を実行します。",
+ "config.promptToSaveFilesBeforeCommit": "コミット前に Git が保存していないファイルを確認すべきかどうかを制御します。",
+ "config.promptToSaveFilesBeforeCommit.always": "保存されていないファイルがないか確認します。",
+ "config.promptToSaveFilesBeforeCommit.never": "このチェックを無効にします。",
+ "config.promptToSaveFilesBeforeCommit.staged": "保存されていないステージング済みファイルのみを確認します。",
+ "config.promptToSaveFilesBeforeStash": "変更をスタッシュする前に Git で保存していないファイルを確認すべきかどうかを制御します。",
+ "config.promptToSaveFilesBeforeStash.always": "保存されていないファイルがないか確認します。",
+ "config.promptToSaveFilesBeforeStash.never": "このチェックを無効にします。",
+ "config.promptToSaveFilesBeforeStash.staged": "保存されていないステージング済みファイルのみを確認します。",
+ "config.pruneOnFetch": "フェッチ時に取り除きます。",
+ "config.publishBeforeContinueOn": "Git リポジトリから Continue Working On を使用する場合に、未公開の Git 状態を公開するかどうかを制御します。",
+ "config.publishBeforeContinueOn.always": "Git リポジトリから Continue Working On を使用する場合は、公開されていない Git 状態を常に公開する",
+ "config.publishBeforeContinueOn.never": "Git リポジトリから Continue Working On を使用する場合、未公開の Git 状態を公開しない",
+ "config.publishBeforeContinueOn.prompt": "Git リポジトリから Continue Working On を使用する場合に、未公開の Git 状態を公開するように求めるメッセージ",
+ "config.pullBeforeCheckout": "出力方向のコミットがないブランチを、チェックアウト前に早送りするかどうかを制御します。",
+ "config.pullTags": "プルするときにすべてのタグをフェッチします。",
+ "config.rebaseWhenSync": "同期コマンドの実行時に Git にリベースの使用を強制します。",
+ "config.rememberPostCommitCommand": "コミット後に最後に実行された git コマンドを覚えておいてください。",
+ "config.replaceTagsWhenPull": "pull コマンドの実行時にタグの競合が発生した場合に、ローカル タグをリモート タグに自動的に置き換えます。",
+ "config.repositoryScanIgnoredFolders": "`#git.autoRepositoryDetection#` が `true` または `subFolders` に設定されている場合に Git リポジトリのスキャン中に無視されるフォルダーのリスト。",
+ "config.repositoryScanMaxDepth": "'#git.autoRepositoryDetection#' が 'true' もしくは 'subFolders' であるとき、Git リポジトリのワークスペース フォルダーをスキャンする際に使用される深さを制御します。制限なしとするためには、'-1' として設定可能です。",
+ "config.requireGitUserConfig": "明示的な Git ユーザーの構成が必要かどうかを制御するか、指定されていない場合は Git による推測を許可します。",
+ "config.scanRepositories": "Git リポジトリを検索するパスのリスト。",
+ "config.showActionButton": "ソース管理ビューにアクション ボタンを表示するかどうかを制御します。",
+ "config.showActionButton.commit": "ローカル ブランチがコミットする準備ができているファイルを変更したときに、変更をコミットするアクション ボタンを表示します。",
+ "config.showActionButton.publish": "追跡リモート ブランチがない場合にローカル ブランチを発行するアクション ボタンを表示します。",
+ "config.showActionButton.sync": "ローカル ブランチがリモート ブランチの前方または背後にある場合に、変更を同期するアクション ボタンを表示します。",
+ "config.showCommitInput": "Git ソース管理パネルにコミットの入力を表示するかどうかを制御します。",
+ "config.showInlineOpenFileAction": "Git 変更の表示内にインラインのファイルを開くアクションを表示するかどうかを制御します。",
+ "config.showProgress": "Git アクションに進行状況を表示するかどうかを制御します。",
+ "config.showPushSuccessNotification": "プッシュが成功したときに通知を表示するかどうかを制御します。",
+ "config.showReferenceDetails": "チェックアウト、ブランチ、タグ ピッカーで Git 参照の最後のコミットの詳細を表示するかどうかを制御します。",
+ "config.similarityThreshold": "名前変更と見なされる追加/削除されたファイルのペアの変更に対する類似性インデックスのしきい値 (ファイルのサイズと比較した追加/削除の量) を制御します。**注意:** Git バージョン `2.18.0` 以降が必要です。",
+ "config.smartCommitChanges": "スマート コミットで変更を自動的にステージングするかどうかを制御します。",
+ "config.smartCommitChanges.all": "すべての変更を自動的にステージします。",
+ "config.smartCommitChanges.tracked": "自動的にステージングされた変更箇所のみ。",
+ "config.statusLimit": "Git 状態コマンドで解析できる変更回数の制限方法を制御します。0 に設定すると制限なしにすることができます。",
+ "config.suggestSmartCommit": "スマート コミットを有効にすることを推奨します (ステージング済み変更がない場合、すべての変更をコミットします)。",
+ "config.supportCancellation": "ユーザーが操作を中止できる同期アクションの実行時に通知が表示されるかどうかを制御します。",
+ "config.terminalAuthentication": "統合ターミナルで生成される Git プロセスの認証ハンドラーとして VS Code を有効にするかどうかを制御します。注意: この設定の変更を反映させるには、ターミナルを再起動する必要があります。",
+ "config.terminalGitEditor": "統合ターミナルで生成される Git プロセスの Git エディターとして VS Code を有効にするかどうかを制御します。注意: この設定の変更を反映させるには、ターミナルを再起動する必要があります。",
+ "config.timeline.date": "タイムライン ビューでアイテムに使用する日付を制御します。",
+ "config.timeline.date.authored": "作成日を使用する",
+ "config.timeline.date.committed": "コミットされた日付を使用する",
+ "config.timeline.showAuthor": "タイムライン ビューにコミット作成者を表示するかどうかを制御します。",
+ "config.timeline.showUncommitted": "コミットされていない変更をタイムライン ビューに表示するかどうかを制御します。",
+ "config.untrackedChanges": "追跡対象外の変更の動作を制御します。",
+ "config.untrackedChanges.hidden": "追跡対象外の変更は非表示になり、複数のアクションから除外されます。",
+ "config.untrackedChanges.mixed": "追跡対象および追跡対象外のすべての変更は、一緒に表示され、均等に動作します。",
+ "config.untrackedChanges.separate": "追跡されていない変更は、ソース管理ビューに個別に表示されます。それらは、複数のアクションからも除外されます。",
+ "config.useCommitInputAsStashMessage": "コミット入力ボックスからのメッセージを既定のスタッシュ メッセージとして使用するかどうかを制御します。",
+ "config.useEditorAsCommitInput": "コミット入力ボックスにメッセージが指定されていない場合に、コミット メッセージの作成にフル テキスト エディターを使用するかどうかを制御します。",
+ "config.useForcePushIfIncludes": "強制プッシュで、より安全な force-if-includes バリアントを使用するかどうかを制御します。注: この設定では、'#git.useForcePushWithLease#' 設定を有効にし、Git バージョン '2.30.0' 以降が必要です。",
+ "config.useForcePushWithLease": "force プッシュより安全な force-with-lease 方式を使用するかどうかを制御します。",
+ "config.useIntegratedAskPass": "統合バージョンを使用するために GIT_ASKPASS を上書きするかどうかを制御します。",
+ "config.verboseCommit": "「#git.useEditorAsCommitInput#」が有効になっている場合は、冗長出力を有効化してください。",
+ "description": "Git SCM統合",
+ "displayName": "Git",
+ "submenu.branch": "ブランチ",
+ "submenu.changes": "変更",
+ "submenu.commit": "コミット",
+ "submenu.commit.amend": "修正",
+ "submenu.commit.signoff": "サインオフ",
+ "submenu.explorer": "Git",
+ "submenu.pullpush": "プル、プッシュ",
+ "submenu.remotes": "リモート",
+ "submenu.stash": "スタッシュ",
+ "submenu.tags": "タグ",
+ "submenu.worktrees": "ワークツリー",
+ "view.workbench.cloneRepository": "リポジトリはローカルで複製できます。\r\n[リポジトリの複製](command:git.clone 'Git 拡張機能がアクティブ化されたらリポジトリを複製する')",
+ "view.workbench.learnMore": "VS Codeで Git とソース管理を使用する方法の詳細については、[ドキュメントを参照](https://aka.ms/vscode-scm)。",
+ "view.workbench.scm.closedRepositories": "以前に閉じられた Git リポジトリが見つかりました。\r\n[閉じたリポジトリを再度開く](command:git.reopenClosedRepositories)\r\nVS Codeで Git とソース管理を使用する方法の詳細については、[ドキュメントを参照](https://aka.ms/vscode-scm)。",
+ "view.workbench.scm.closedRepository": "以前に閉じられた Git リポジトリが見つかりました。\r\n[閉じたリポジトリを再度開く](command:git.reopenClosedRepositories)\r\nVS Codeで Git とソース管理を使用する方法の詳細については、[ドキュメントを参照](https://aka.ms/vscode-scm)。",
+ "view.workbench.scm.disabled": "Git 機能を使用する場合は、[設定](command:workbench.action.openSettings?%5B%22git.enabled%22%5D) で Git を有効にしてください。\r\nVS Codeで Git とソース管理を使用する方法の詳細については、[ドキュメントを参照](https://aka.ms/vscode-scm)。",
+ "view.workbench.scm.empty": "Git 機能を使用するには、Git リポジトリを含むフォルダーを開くか、URL から複製します。\r\n[フォルダーを開く](command:vscode.openFolder)\r\n[リポジトリをクローンする](command:git.cloneRecursive)\r\nVS Codeで Git とソース管理を使用する方法の詳細については、[ドキュメントを参照](https://aka.ms/vscode-scm)。",
+ "view.workbench.scm.emptyWorkspace": "現在開いているワークスペースには、Git リポジトリを含むフォルダーがありません。\r\n[ワークスペースにフォルダーを追加](command:workbench.action.addRootFolder)\r\nVS Codeで Git とソース管理を使用する方法の詳細については、[ドキュメントを参照](https://aka.ms/vscode-scm)。",
+ "view.workbench.scm.folder": "現在開いているフォルダーには Git リポジトリがありません。Git を利用したソース管理機能を有効にするリポジトリを初期化できます。\r\n[リポジトリを初期化する](command:git.init?%5Btrue%5D)\r\nVS Codeで Git とソース管理を使用する方法の詳細については、[ドキュメントを参照](https://aka.ms/vscode-scm)。",
+ "view.workbench.scm.missing": "一般的なソース管理システムである Git をインストールして、コードの変更を追跡し、他のユーザーと共同作業を行います。詳細については、[Git ガイド](https://aka.ms/vscode-scm) を参照してください。",
+ "view.workbench.scm.missing.linux": "ソース管理は、インストールされている Git に依存しています。\r\n[Linux 用 Git のダウンロード](https://git-scm.com/download/linux) \r\nインストール後、[再読み込み](command:workbench.action.reloadWindow) (または [トラブルシューティング](command:git.showOutput)) してください。追加のソース管理プロバイダーを [Marketplace から](command:workbench.extensions.search?%22%40category%3A%5C%22scm%20providers%5C%22%22) インストールできます。",
+ "view.workbench.scm.missing.mac": "[macOS 用 Git のダウンロード](https://git-scm.com/download/mac) \r\nインストール後、[再読み込み](command:workbench.action.reloadWindow) (または [トラブルシューティング](command:git.showOutput)) してください。追加のソース管理プロバイダーを [Marketplace から](command:workbench.extensions.search?%22%40category%3A%5C%22scm%20providers%5C%22%22) インストールできます。",
+ "view.workbench.scm.missing.windows": "[Windows 用 Git のダウンロード](https://git-scm.com/download/win) \r\nインストール後、[再読み込み](command:workbench.action.reloadWindow) (または [トラブルシューティング](command:git.showOutput)) してください。追加のソース管理プロバイダーを [Marketplace から](command:workbench.extensions.search?%22%40category%3A%5C%22scm%20providers%5C%22%22) インストールできます。",
+ "view.workbench.scm.repositoriesInParentFolders": "ワークスペースの親フォルダーまたは開いているファイルで、複数の Git リポジトリが見つかりました。\r\n[リポジトリを開く](command:git.openRepositoriesInParentFolders)\r\n[git.openRepositoryInParentFolders](command:workbench.action.openSettings?%5B%22git.openRepositoryInParentFolders%22%5D) 設定を使用して、ワークスペースの親フォルダーまたは開いているファイルのどちらで Git リポジトリを開くかを制御します。詳細については、[ドキュメントをご覧ください](https://aka.ms/vscode-git-repository-in-parent-folders)。",
+ "view.workbench.scm.repositoryInParentFolders": "Git リポジトリがワークスペースの親フォルダーまたは開いているファイルで見つかりました。\r\n[リポジトリを開く](command:git.openRepositoriesInParentFolders)\r\n[git.openRepositoryInParentFolders](command:workbench.action.openSettings?%5B%22git.openRepositoryInParentFolders%22%5D) 設定を使用して、ワークスペースの親フォルダーまたは開いているファイルのどちらで Git リポジトリを開くかを制御します。詳細については、[ドキュメントをご覧ください](https://aka.ms/vscode-git-repository-in-parent-folders)。",
+ "view.workbench.scm.scanFolderForRepositories": "Git リポジトリのフォルダーをスキャンしています...",
+ "view.workbench.scm.scanWorkspaceForRepositories": "Git リポジトリのワークスペースをスキャンしています...",
+ "view.workbench.scm.unsafeRepositories": "検出された Git リポジトリは、現在のユーザー以外のユーザーがフォルダーを所有しているため、安全でない可能性があります。\r\n[安全でないリポジトリの管理](command:git.manageUnsafeRepositories)\r\n安全でないリポジトリの詳細については、[ドキュメントをお読みください](https://aka.ms/vscode-git-unsafe-repository)。",
+ "view.workbench.scm.unsafeRepository": "検出された Git リポジトリは、現在のユーザー以外のユーザーがフォルダーを所有しているため、安全でない可能性があります。\r\n[安全でないリポジトリの管理](command:git.manageUnsafeRepositories)\r\n安全でないリポジトリの詳細については、[ドキュメントをお読みください](https://aka.ms/vscode-git-unsafe-repository)。",
+ "view.workbench.scm.workspace": "現在開いているワークスペースには、Git リポジトリを含むフォルダーがありません。Git によって提供されるソース管理機能を有効にするフォルダー上のリポジトリを初期化できます。\r\n[リポジトリの初期化](command:git.init)\r\nVS Codeで Git とソース管理を使用する方法の詳細については、[ドキュメントを参照](https://aka.ms/vscode-scm)。"
+ }
+ }
+}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-ja/translations/extensions/vscode.github-authentication.i18n.json b/i18n/vscode-language-pack-ja/translations/extensions/vscode.github-authentication.i18n.json
new file mode 100644
index 0000000000..965adb52c0
--- /dev/null
+++ b/i18n/vscode-language-pack-ja/translations/extensions/vscode.github-authentication.i18n.json
@@ -0,0 +1,47 @@
+{
+ "": [
+ "--------------------------------------------------------------------------------------------",
+ "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."
+ ],
+ "version": "1.0.0",
+ "contents": {
+ "bundle": {
+ "A reload is required for the fetch setting change to take effect.": "フェッチ設定の変更を有効にするには、再読み込みが必要です。",
+ "Apple": "Apple",
+ "Continue to GitHub": "GitHub に進む",
+ "Continue to GitHub to create a Personal Access Token (PAT)": "GitHub に進み、個人用アクセス トークン (PAT) を作成します",
+ "Copy & Continue to {0}": "コピーして {0} に進む",
+ "GitHub": "GitHub",
+ "GitHub Authentication - Reload required": "GitHub 認証 - 再読み込みが必要",
+ "GitHub Enterprise Server URI is not a valid URI: {0}": "GitHub Enterprise Server URI は有効な URI ではありません: {0}",
+ "Google": "Google",
+ "Having trouble logging in? Would you like to try a different way? ({0})": "ログインでお困りですか? 別の方法を試しますか? ({0})",
+ "No": "いいえ",
+ "Open [{0}]({0}) in a new tab and paste your one-time code: {1}/The [{0}]({0}) will be a url and the {1} will be a code, e.g. 123-456{Locked=\"[{0}]({0})\"}": "新しいタブで [{0}]({0}) を開き、ワンタイム コードを貼り付けます: {1}",
+ "Reload Window": "ウィンドウの再度読み込み",
+ "Sign in failed: {0}": "サインインできませんでした: {0}",
+ "Sign out failed: {0}": "サインアウトできませんでした: {0}",
+ "Signing in to {0}.../The {0} will be a url, e.g. github.com": "{0} にサインインしています...",
+ "To finish authenticating, navigate to GitHub and paste in the above one-time code.": "認証を完了するには、GitHub に移動し、上記のワンタイム コードを貼り付けます。",
+ "To finish authenticating, navigate to GitHub to create a PAT then paste the PAT into the input box.": "認証を完了するには、GitHub に移動して PAT を作成し、入力ボックスに PAT を貼り付けます。",
+ "Yes": "はい",
+ "You have not yet finished authorizing this extension to use GitHub. Would you like to try a different way? ({0})": "GitHub を使用するためのこの拡張機能の承認がまだ完了していません。別の方法を試しますか? ({0})",
+ "Your Code: {0}/The {0} will be a code, e.g. 123-456": "コード: {0}",
+ "device code": "デバイス コード",
+ "local server": "ローカル サーバー",
+ "personal access token": "個人用アクセス トークン",
+ "url handler": "URL ハンドラー"
+ },
+ "package": {
+ "config.github-authentication.preferDeviceCodeFlow.description": "true の場合、認証用として、他の使用可能なフローではなく、デバイス コード フローに優先順位を付けます。これは、WSL のような環境で、ローカル サーバーまたは URL ハンドラー フローが期待どおりに機能しない場合に有用です。",
+ "config.github-authentication.useElectronFetch.description": "true の場合、HTTP リクエストに Electron の組み込みフェッチ関数を使用します。false の場合、Node.js のグローバルフェッチ関数を使用します。この設定は、Electron 環境で実行している場合にのみ適用されます。**メモ:** この設定を有効にするには、再起動が必要です。",
+ "config.github-enterprise.title": "サーバー認証の GHE.com とGitHub Enterprise",
+ "config.github-enterprise.uri.description": "GHE.com またはGitHub Enterprise Server インスタンスの URI。\r\n\r\n例:\r\n* GHE.com: 'https://octocat.ghe.com`\r\n* GitHub Enterprise サーバー: 'https://github.octocat.com`\r\n\r\n> **注意:** これは、GitHub.com URI に設定する必要があります。_not_アカウントが GitHub.com に存在するか、GitHub Enterpriseマネージド ユーザーである場合は、追加の構成は必要なく、GitHub にログインするだけです。",
+ "description": "GitHub 認証プロバイダー",
+ "displayName": "GitHub 認証"
+ }
+ }
+}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-ja/translations/extensions/vscode.github.i18n.json b/i18n/vscode-language-pack-ja/translations/extensions/vscode.github.i18n.json
new file mode 100644
index 0000000000..5757108f4c
--- /dev/null
+++ b/i18n/vscode-language-pack-ja/translations/extensions/vscode.github.i18n.json
@@ -0,0 +1,65 @@
+{
+ "": [
+ "--------------------------------------------------------------------------------------------",
+ "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."
+ ],
+ "version": "1.0.0",
+ "contents": {
+ "bundle": {
+ "Checkout on vscode.dev": "vscode.dev でチェックアウトする",
+ "Commit Changes": "変更点のコミット",
+ "Copy Anyway": "コピーする",
+ "Copy vscode.dev Link": "vscode.dev リンクのコピー",
+ "Create Fork": "フォークの作成",
+ "Create GitHub fork": "GitHub フォークの作成",
+ "Create PR": "PR の作成",
+ "Creating GitHub Pull Request...": "GitHub pull request を作成しています...",
+ "Creating first commit": "最初のコミットを作成しています",
+ "Forking \"{0}/{1}\"...": "\"{0}/{1}\" をフォークしています...",
+ "Learn More": "詳細情報",
+ "Log level: {0}": "ログ レベル: {0}",
+ "No": "いいえ",
+ "No GitHub remotes found that contain this commit.": "このコミットを含む GitHub リモートが見つかりませんでした。",
+ "No template": "テンプレートなし",
+ "Open PR": "PR を開く",
+ "Open on GitHub": "GitHub 上で開く",
+ "Pick a folder to publish to GitHub": "GitHub に発行するフォルダーを選択します",
+ "Publish Branch & Copy Link": "ブランチを公開してリンクをコピー",
+ "Publishing to a private GitHub repository": "プライベート GitHub リポジトリへ発行しています",
+ "Publishing to a public GitHub repository": "パブリック GitHub リポジトリへ発行しています",
+ "Pull Changes & Copy Link": "変更をプルしてリンクをコピー",
+ "Push Commits & Copy Link": "コミットをプッシュしてリンクをコピー",
+ "Pushing changes...": "変更をプッシュしています...",
+ "Select the Pull Request template": "pull request テンプレートを選択する",
+ "Select which files should be included in the repository.": "どのファイルをリポジトリに含めるかを選択します。",
+ "Successfully published the \"{0}\" repository to GitHub.": "GitHub に \"{0}\" リポジトリが正常に発行されました。",
+ "The PR \"{0}/{1}#{2}\" was successfully created on GitHub.": "PR \"{0}/{1}#{2}\" が GitHub で正常に作成されました。",
+ "The current branch has unpublished commits. Would you like to push your commits before copying a link?": "現在のブランチには発行取り消しされたコミットがあります。リンクをコピーする前にコミットをプッシュしますか?",
+ "The current branch is not published to the remote. Would you like to publish your branch before copying a link?": "現在のブランチはリモートに発行されません。リンクをコピーする前にブランチを発行しますか?",
+ "The current branch is not up to date. Would you like to pull before copying a link?": "現在のブランチは最新ではありません。リンクをコピーする前にプルしますか?",
+ "The current file has uncommitted changes. Please commit your changes before copying a link.": "現在のファイルには確定されていない変更があります。リンクをコピーする前に変更をコミットしてください。",
+ "The fork \"{0}\" was successfully created on GitHub.": "フォーク \"{0}\" が GitHub で正常に作成されました。",
+ "Uploading files": "ファイルをアップロードしています",
+ "You don't have permissions to push to \"{0}/{1}\" on GitHub. Would you like to create a fork and push to it instead?": "GitHub で \"{0}/{1}\" にプッシュするためのアクセス許可がありません。代わりに、フォークを作成してそれにプッシュしますか?",
+ "Your push to \"{0}/{1}\" was rejected by GitHub because push protection is enabled and one or more secrets were detected.": "プッシュ保護が有効で、1 つ以上のシークレットが検出されたため、\"{0}/{1}\" へのプッシュは GitHub によって拒否されました。",
+ "{0} Open on GitHub": "gitHub で開く {0}"
+ },
+ "package": {
+ "command.copyVscodeDevLink": "vscode.dev リンクのコピー",
+ "command.openOnGitHub": "GitHub で開く",
+ "command.openOnVscodeDev": "vscode.dev で開く",
+ "command.publish": "GitHub に公開",
+ "config.branchProtection": "GitHub リポジトリのリポジトリ ルールに対してクエリを実行するかどうかを制御します",
+ "config.gitAuthentication": "VS Code 内で Git コマンドの自動 GitHub 認証を有効にするかどうかを制御します。",
+ "config.gitProtocol": "GitHub リポジトリの複製に使用するプロトコルを制御します",
+ "config.showAvatar": "コミット作成者の GitHub アバターをさまざまなホバーで表示するかどうかを制御します (例: Git blame、Timeline、Source Control Graph など)",
+ "description": "VS Code 用 GitHub 機能",
+ "displayName": "GitHub",
+ "welcome.publishFolder": "このフォルダーを GitHub リポジトリに直接公開することができます。公開後、Git と GitHub を利用したソース管理機能にアクセスできるようになります。\r\n[$(github) GitHub に公開](command:github.publish)",
+ "welcome.publishWorkspaceFolder": "ワークスペース フォルダーを GitHub リポジトリに直接公開することができます。公開後、Git と GitHub を利用したソース管理機能にアクセスできるようになります。\r\n[$(github) GitHub に公開](command:github.publish)"
+ }
+ }
+}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-ja/translations/extensions/vscode.go.i18n.json b/i18n/vscode-language-pack-ja/translations/extensions/vscode.go.i18n.json
index f79746c83b..b4b014e33f 100644
--- a/i18n/vscode-language-pack-ja/translations/extensions/vscode.go.i18n.json
+++ b/i18n/vscode-language-pack-ja/translations/extensions/vscode.go.i18n.json
@@ -9,8 +9,8 @@
"version": "1.0.0",
"contents": {
"package": {
- "displayName": "Go 言語の基礎",
- "description": "Go ファイル内で構文ハイライト、かっこ一致を提供します。"
+ "description": "Go ファイル内で構文ハイライト、かっこ一致を提供します。",
+ "displayName": "Go 言語の基礎"
}
}
}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-ja/translations/extensions/vscode.groovy.i18n.json b/i18n/vscode-language-pack-ja/translations/extensions/vscode.groovy.i18n.json
index 27947f8fe3..98bce82fe7 100644
--- a/i18n/vscode-language-pack-ja/translations/extensions/vscode.groovy.i18n.json
+++ b/i18n/vscode-language-pack-ja/translations/extensions/vscode.groovy.i18n.json
@@ -9,8 +9,8 @@
"version": "1.0.0",
"contents": {
"package": {
- "displayName": "Groovy の基本言語サポート",
- "description": "Groovy ファイル内でスニペット、構文ハイライト、かっこ一致を提供します。"
+ "description": "Groovy ファイル内でスニペット、構文ハイライト、かっこ一致を提供します。",
+ "displayName": "Groovy の基本言語サポート"
}
}
}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-ja/translations/extensions/vscode.grunt.i18n.json b/i18n/vscode-language-pack-ja/translations/extensions/vscode.grunt.i18n.json
new file mode 100644
index 0000000000..336d498174
--- /dev/null
+++ b/i18n/vscode-language-pack-ja/translations/extensions/vscode.grunt.i18n.json
@@ -0,0 +1,25 @@
+{
+ "": [
+ "--------------------------------------------------------------------------------------------",
+ "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."
+ ],
+ "version": "1.0.0",
+ "contents": {
+ "bundle": {
+ "Auto detecting Grunt for folder {0} failed with error: {1}', this.workspaceFolder.name, err.error ? err.error.toString() : 'unknown": "フォルダー {0} の Grunt の自動検出が次のエラーで失敗しました: {1}', this.workspaceFolder.name, err.error ? err.error.toString() : 'unknown",
+ "Go to output": "出力に移動",
+ "Problem finding grunt tasks. See the output for more information.": "Grunt タスクの検出で問題が発生しました。詳しくは、出力をご覧ください。"
+ },
+ "package": {
+ "config.grunt.autoDetect": "Grunt タスク検出の有効化を制御します。Grunt タスク検出を行うと、開いているワークスペース内のファイルが実行される可能性があります。",
+ "description": "VS Code に Grunt 機能を追加する拡張機能。",
+ "displayName": "VS Code の Grunt サポート",
+ "grunt.taskDefinition.args.description": "grunt タスクに渡すコマンド ライン引数",
+ "grunt.taskDefinition.file.description": "タスクを提供する Grunt ファイル。省略できます。",
+ "grunt.taskDefinition.type.description": "カスタマイズする Grunt タスク。"
+ }
+ }
+}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-ja/translations/extensions/vscode.gulp.i18n.json b/i18n/vscode-language-pack-ja/translations/extensions/vscode.gulp.i18n.json
new file mode 100644
index 0000000000..392a85f544
--- /dev/null
+++ b/i18n/vscode-language-pack-ja/translations/extensions/vscode.gulp.i18n.json
@@ -0,0 +1,24 @@
+{
+ "": [
+ "--------------------------------------------------------------------------------------------",
+ "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."
+ ],
+ "version": "1.0.0",
+ "contents": {
+ "bundle": {
+ "Auto detecting gulp for folder {0} failed with error: {1}', this.workspaceFolder.name, err.error ? err.error.toString() : 'unknown": "フォルダー {0} の gulp の自動検出が次のエラーで失敗しました: {1}', this.workspaceFolder.name, err.error ? err.error.toString() : 'unknown",
+ "Go to output": "出力に移動",
+ "Problem finding gulp tasks. See the output for more information.": "gulp タスクを検出するときに問題が発生しました。詳細については、出力をご覧ください。"
+ },
+ "package": {
+ "config.gulp.autoDetect": "Gulp タスク検出の有効化を制御します。Gulp タスク検出を行うと、開いているワークスペース内のファイルが実行される可能性があります。",
+ "description": "VS Code に Gulp 機能を追加する拡張機能。",
+ "displayName": "VSCode の Gulp サポート",
+ "gulp.taskDefinition.file.description": "タスクを提供する Gulp ファイル。省略できます。",
+ "gulp.taskDefinition.type.description": "カスタマイズする Gulp タスク。"
+ }
+ }
+}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-ja/translations/extensions/vscode.handlebars.i18n.json b/i18n/vscode-language-pack-ja/translations/extensions/vscode.handlebars.i18n.json
index e96f3e04c1..b258b3efd3 100644
--- a/i18n/vscode-language-pack-ja/translations/extensions/vscode.handlebars.i18n.json
+++ b/i18n/vscode-language-pack-ja/translations/extensions/vscode.handlebars.i18n.json
@@ -9,8 +9,8 @@
"version": "1.0.0",
"contents": {
"package": {
- "displayName": "Handlebars の基本言語サポート",
- "description": "Handlebars ファイル内で構文ハイライト、かっこ一致を提供します。"
+ "description": "Handlebars ファイル内で構文ハイライト、かっこ一致を提供します。",
+ "displayName": "Handlebars の基本言語サポート"
}
}
}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-ja/translations/extensions/vscode.hlsl.i18n.json b/i18n/vscode-language-pack-ja/translations/extensions/vscode.hlsl.i18n.json
index 4cf3e723bb..b4fced2cb8 100644
--- a/i18n/vscode-language-pack-ja/translations/extensions/vscode.hlsl.i18n.json
+++ b/i18n/vscode-language-pack-ja/translations/extensions/vscode.hlsl.i18n.json
@@ -9,8 +9,8 @@
"version": "1.0.0",
"contents": {
"package": {
- "displayName": "HLSL の基本言語サポート",
- "description": "HLSL ファイル内で構文ハイライト、かっこ一致を提供します。"
+ "description": "HLSL ファイル内で構文ハイライト、かっこ一致を提供します。",
+ "displayName": "HLSL の基本言語サポート"
}
}
}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-ja/translations/extensions/vscode.html-language-features.i18n.json b/i18n/vscode-language-pack-ja/translations/extensions/vscode.html-language-features.i18n.json
new file mode 100644
index 0000000000..0195e2c43a
--- /dev/null
+++ b/i18n/vscode-language-pack-ja/translations/extensions/vscode.html-language-features.i18n.json
@@ -0,0 +1,304 @@
+{
+ "": [
+ "--------------------------------------------------------------------------------------------",
+ "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."
+ ],
+ "version": "1.0.0",
+ "contents": {
+ "bundle": {
+ "\"store\" a boolean test for later evaluation in a guard or if().": "ガードまたは if() で後で評価するためのブール型テストを \"store\" します。",
+ "'from' expected": "'from' が必要です",
+ "'in' expected": "'in' が必要です",
+ "'through' or 'to' expected": "'through' または 'to' が必要です",
+ "'{0}'": "'{0}'",
+ "( expected": "( が必要です",
+ ") expected": ") が必要です",
+ "": "",
+ "@font-face": "@font-face",
+ "@font-face rule must define 'src' and 'font-family' properties": "'@font-face' 規則で 'src' プロパティと 'font-family' プロパティを定義する必要があります。",
+ "@keyframes {0}": "@keyframes {0}",
+ "A list of properties that are not validated against the `unknownProperties` rule.": "`UnknownProperties` ルールに対して検証されていないプロパティの一覧です。",
+ "Adds quotes to a string.": "文字列に引用符を追加します。",
+ "Also define the standard property '{0}' for compatibility": "互換性のために標準プロパティ '{0}' も定義します",
+ "Always define standard rule '@keyframes' when defining keyframes.": "キーフレームを定義するときは、常に標準ルール '@keyframes' を定義します。",
+ "Always include all vendor specific properties: Missing: {0}": "常にすべてのベンダー固有のプロパティを含める: 見つからない: {0}",
+ "Always include all vendor specific rules: Missing: {0}": "常にすべてのベンダー固有のルールを含める: 見つからない: {0}",
+ "Appends a single value onto the end of a list.": "リストの末尾に 1 つの値を追加します。",
+ "Appends selectors to one another without spaces in between.": "間にスペースを含めずに、セレクターを相互に追加します。",
+ "Avoid using !important. It is an indication that the specificity of the entire CSS has gotten out of control and needs to be refactored.": "!important を使用しないでください。これは CSS 全体の詳細度が制御不能になり、リファクタリングが必要になります。",
+ "Avoid using 'float'. Floats lead to fragile CSS that is easy to break if one aspect of the layout changes.": "`float` を使用しないでください。float は脆弱な CSS につながり、レイアウトの一部が変更されたときに CSS が破損しやすくなります。",
+ "Causes one or more rules to be emitted at the root of the document.": "ドキュメントのルートに 1 つ以上のルールが出力されるようにします。",
+ "Changes one or more properties of a color.": "色の 1 つ以上のプロパティを変更します。",
+ "Changes the alpha component for a color.": "色のアルファ コンポーネントを変更します。",
+ "Changes the hue of a color.": "色の色相を変更します。",
+ "Character entity representing '{0}'": "'{0}' を表す文字エンティティ",
+ "Character entity representing '{0}', unicode equivalent '{1}'": "'{0}' を表す文字エンティティ、Unicode に相当する '{1}'",
+ "Closing bracket expected.": "右角かっこが必要です。",
+ "Closing bracket missing.": "閉じかっこがありません。",
+ "Combines several lists into a single multidimensional list.": "複数のリストを 1 つの多次元リストに結合します。",
+ "Configure": "構成",
+ "Converts a color into the format understood by IE filters.": "IE フィルターで認識される形式に色を変換します。",
+ "Converts a color to grayscale.": "色をグレースケールに変換します。",
+ "Converts a string to lower case.": "文字列を小文字に変換します。",
+ "Converts a string to upper case.": "文字列を大文字に変換します。",
+ "Converts a unitless number to a percentage.": "単位なしの数値をパーセンテージに変換します。",
+ "Creates a Color from hue, saturation, and lightness values.": "色相、彩度、輝度の値から色を作成します。",
+ "Creates a Color from hue, saturation, lightness, and alpha values.": "色相、彩度、輝度、アルファ値から色を作成します。",
+ "Creates a Color from hue, white, and black values.": "色相、白、黒の値から色を作成します。",
+ "Creates a Color from lightness, a, and b values.": "明るさ、a、b の値から色を作成します。",
+ "Creates a Color from lightness, chroma, and hue values.": "明るさ、彩度、色相の値から色を作成します。",
+ "Creates a Color from red, green, and blue values.": "赤、緑、青の値から色を作成します。",
+ "Creates a Color from red, green, blue, and alpha values.": "赤、緑、青、アルファの値から色を作成します。",
+ "Creates a Color from the hue, saturation, and lightness values of another Color.": "別の色の色合い、彩度、明るさの値から色を作成します。",
+ "Creates a Color from the hue, white, and black values of another Color.": "別の色の色合い、白、黒の値から色を作成します。",
+ "Creates a Color from the lightness, a, and b values of another Color.": "別の色の明るさ、a、b の値から色を作成します。",
+ "Creates a Color from the lightness, chroma, and hue values of another Color.": "別の色の明るさ、彩度、色相の値から色を作成します。",
+ "Creates a Color from the red, green, and blue values of another Color.": "別の色の赤、緑、青の値から色を作成します。",
+ "Creates a Color in a specific color space from red, green, and blue values.": "赤、緑、青の値から特定の色空間で色を作成します。",
+ "Creates a Color in a specific color space from the red, green, and blue values of another Color.": "別の色の赤、緑、青の値から特定の色空間で色を作成します。",
+ "Defines complex operations that can be re-used throughout stylesheets.": "スタイルシート全体で再利用できる複雑な操作を定義します。",
+ "Defines styles that can be re-used throughout the stylesheet with `@include`.": "`@include` を使用してスタイルシート全体で再利用できるスタイルを定義します。",
+ "Do not use duplicate style definitions": "重複するスタイル定義を使用しないでください。",
+ "Do not use empty rulesets": "空のルールセットを使用しないでください。",
+ "Do not use width or height when using padding or border": "埋め込みや罫線の使用時に幅や高さを使わないでください",
+ "Dynamically calls a Sass function.": "Sass 関数を動的に呼び出します。",
+ "Each loop that sets `$var` to each item in the list or map, then outputs the styles it contains using that value of `$var`.": "リストまたはマップ内の各項目に `$var` を設定し、その値 `$var` を使用して含まれるスタイルを出力する各ループ。",
+ "End tag name expected.": "終了タグ名が必要です。",
+ "Exposes the details of Sass’s inner workings.": "SASS の内部作業の詳細を公開します。",
+ "Extends $extendee with $extender within $selector.": "$selector 内の $extender で $extendee を拡張します。",
+ "Extracts a substring from $string.": "$string から substring を抽出します。",
+ "Finds the maximum of several numbers.": "いくつかの数字のうち最大数を検索します。",
+ "Finds the minimum of several numbers.": "いくつかの数字のうち最小数を検索します。",
+ "Fluidly scales one or more properties of a color.": "色の 1 つ以上のプロパティを柔軟にスケーリングします。",
+ "Folding Region End": "折りたたみ領域の終了",
+ "Folding Region Start": "折りたたみ領域の開始",
+ "For loop that repeatedly outputs a set of styles for each `$var` in the `from/through` or `from/to` clause.": "`from/through` 句または `from/to` 句の各 `$var` に対してスタイルのセットを繰り返し出力する For ループ。",
+ "Generates new colors based on existing ones, making it easy to build color themes.": "既存の色に基づいて新しい色を生成し、配色テーマを簡単に作成できます。",
+ "Gets the blue component of a color.": "色の青のコンポーネントを取得します。",
+ "Gets the green component of a color.": "緑の色相コンポーネントを取得します。",
+ "Gets the hue component of a color.": "色の色相コンポーネントを取得します。",
+ "Gets the lightness component of a color.": "色の輝度コンポーネントを取得します。",
+ "Gets the opacity component of a color.": "色の不透明度コンポーネントを取得します。",
+ "Gets the red component of a color.": "色の赤のコンポーネントを取得します。",
+ "Gets the saturation component of a color.": "色の彩度要素を取得します。",
+ "HTML Language Server": "HTML 言語サーバー",
+ "Hex colors must consist of three, four, six or eight hex numbers": "16 進数の色は、3、4、6、または 8 の 16 進数で構成する必要があります",
+ "IE hacks are only necessary when supporting IE7 and older": "IE ハックは、IE7 以前をサポートする場合にのみ必要です。",
+ "Import statements do not load in parallel": "Import ステートメントは並行して読み込まれません",
+ "Includes the body if the expression does not evaluate to `false` or `null`.": "式が `false` または `null` に評価されない場合に本文を含めます。",
+ "Includes the styles defined by another mixin into the current rule.": "別の mixin で定義されたスタイルを現在のルールに含めます。",
+ "Increases or decreases one or more components of a color.": "色の 1 つ以上の要素を増減します。",
+ "Inherits the styles of another selector.": "別のセレクターのスタイルを継承します。",
+ "Inserts $insert into $string at $index.": "$index で $string に $insert を挿入します。",
+ "Invalid number of parameters": "パラメーター数が無効です。",
+ "Joins together two lists into one.": "2 つのリストを 1 つに結合します。",
+ "Lets you access and modify values in lists.": "リスト内の値にアクセスして変更できます。",
+ "Loads a Sass stylesheet and makes its mixins, functions, and variables available when this stylesheet is loaded with the @use rule.": "Sass スタイルシートを読み込み、このスタイルシートが @use ルールで読み込まれるときに、その mixins、関数、変数を使用できるようにします。",
+ "Loads mixins, functions, and variables from other Sass stylesheets as 'modules', and combines CSS from multiple stylesheets together.": "他の SASS スタイルシートから mixins、関数、変数を 'modules' として読み込み、複数のスタイルシートの CSS を組み合わせます。",
+ "Makes a color darker.": "色を暗くします。",
+ "Makes a color less saturated.": "色の彩度を低くします。",
+ "Makes a color lighter.": "色を薄くします。",
+ "Makes a color more opaque.": "色をより不透明にします。",
+ "Makes a color more saturated.": "色の彩度をより高くします。",
+ "Makes a color more transparent.": "色をより透明にします。",
+ "Makes it easy to combine, search, or split apart strings.": "文字列の結合、検索、分割が簡単になります。",
+ "Makes it possible to look up the value associated with a key in a map, and much more.": "マップ内のキーに関連付けられている値などを検索できるようにします。",
+ "Merges two maps together into a new map.": "2 つのマップを結合して新しいマップにします。",
+ "Mix two colors together in a polar color space.": "極性色空間で 2 つの色を混ぜ合わせます。",
+ "Mix two colors together in a rectangular color space.": "四角形の色空間で 2 つの色を混ぜ合わせます。",
+ "Mixes two colors together.": "2 つの色を混ぜ合わせます。",
+ "Nests selector beneath one another like they would be nested in the stylesheet.": "セレクターがスタイルシート内で入れ子になっているのと同じように、セレクターを相互に入れ子にします。",
+ "No unit for zero needed": "0 に単位は必要ありません",
+ "Parses a selector into the format returned by &.": "セレクターを解析して、& によって返される形式にします。",
+ "Prints the value of an expression to the standard error output stream. Useful for debugging complicated Sass files.": "式の値を標準エラー出力ストリームに出力します。複雑な SASS ファイルのデバッグに役立ちます。",
+ "Prints the value of an expression to the standard error output stream. Useful for libraries that need to warn users of deprecations or recovering from minor mixin usage mistakes. Warnings can be turned off with the `--quiet` command-line option or the `:quiet` Sass option.": "式の値を標準エラー出力ストリームに出力します。非推奨についてユーザーに警告する必要があるライブラリ、または軽度な mixin の使用ミスからの回復に役立ちます。`--quiet` コマンド ライン オプションまたは `:quiet` SASS オプションを使用すると、警告をオフにすることができます。",
+ "Property is ignored due to the display.": "display の設定によりプロパティは無視されます。",
+ "Property is ignored due to the display. With 'display: block', vertical-align should not be used.": "display の設定によりプロパティは無視されます。 'display: block' では、vertical-align を使用できません。",
+ "Provides access to Sass’s powerful selector engine.": "SASS の強力なセレクター エンジンへのアクセスを提供します。",
+ "Provides functions that operate on numbers.": "数値を操作する関数を提供します。",
+ "Removes quotes from a string.": "文字列から引用符を削除します。",
+ "Rename to '{0}'": "名前を '{0}' に変更する",
+ "Replaces $original with $replacement within $selector.": "$selector 内の $original を $replacement に置き換えます。",
+ "Replaces the nth item in a list.": "リストの n 番目の項目を置き換えます。",
+ "Returns a list of all keys in a map.": "マップ内のすべてのキーのリストを返します。",
+ "Returns a list of all values in a map.": "マップ内のすべてのキーの値を返します。",
+ "Returns a new map with keys removed.": "キーが削除された新しいマップを返します。",
+ "Returns a random number.": "乱数を返します。",
+ "Returns a specific item in a list.": "リスト内の特定の項目を返します。",
+ "Returns the absolute value of a number.": "数値の絶対値を返します。",
+ "Returns the complement of a color.": "色の補数を返します。",
+ "Returns the index of the first occurance of $substring in $string.": "$string で最初に発生した $substring のインデックスを返します。",
+ "Returns the inverse of a color.": "色の逆数を返します。",
+ "Returns the keywords passed to a function that takes variable arguments.": "変数引数を受け取る関数に渡されるキーワードを返します。",
+ "Returns the length of a list.": "リストの長さを返します。",
+ "Returns the number of characters in a string.": "文字列の文字数を返します。",
+ "Returns the position of a value within a list.": "リスト内の値の位置を返します。",
+ "Returns the separator of a list.": "リストの区切り記号を返します。",
+ "Returns the simple selectors that comprise a compound selector.": "複合セレクターを構成するシンプルなセレクターを返します。",
+ "Returns the string representation of a value as it would be represented in Sass.": "SASS で表される値の文字列表現を返します。",
+ "Returns the type of a value.": "値の型を返します。",
+ "Returns the unit(s) associated with a number.": "数値に関連付けられた単位を返します。",
+ "Returns the value in a map associated with a given key.": "指定されたキーに関連付けられたマップ内の値を返します。",
+ "Returns whether $super matches all the elements $sub does, and possibly more.": "$super が、$sub のすべての要素と一致するかどうか、およびその他の要素を返します。",
+ "Returns whether a feature exists in the current Sass runtime.": "現在の Sass ランタイムに機能が存在するかどうかを返します。",
+ "Returns whether a function with the given name exists.": "指定された名前の関数が存在するかどうかを返します。",
+ "Returns whether a map has a value associated with a given key.": "任意のキーに関連付けられた値がマップにあるかどうかを返します。",
+ "Returns whether a mixin with the given name exists.": "指定された名前の mixin が存在するかどうかを返します。",
+ "Returns whether a number has units.": "数値に単位があるかどうかを返します。",
+ "Returns whether a variable with the given name exists in the current scope.": "指定された名前の変数が現在のスコープに存在するかどうかを返します。",
+ "Returns whether a variable with the given name exists in the global scope.": "指定された名前の変数がグローバル スコープに存在するかどうかを返します。",
+ "Returns whether two numbers can be added, subtracted, or compared.": "2 つの数値を加算、減算、または比較できるかどうかを返します。",
+ "Rounds a number down to the previous whole number.": "数値を前の整数に切り捨てます。",
+ "Rounds a number to the nearest whole number.": "最も近い整数に数値を四捨五入します。",
+ "Rounds a number up to the next whole number.": "この数値を次の整数に切り上げます。",
+ "Sass documentation": "SASS ドキュメント",
+ "Selector Specificity": "セレクターの固有性",
+ "Selectors should not contain IDs because these rules are too tightly coupled with the HTML.": "セレクターには ID を含めないでください。これらの規則と HTML の結合が密接すぎます。",
+ "Simple HTML5 starting point": "簡単な HTML5 の出発点",
+ "Start tag name expected.": "開始タグ名が必要です。",
+ "Tag name must directly follow the open bracket.": "タグ名は、開きかっこの直後に指定する必要があります。",
+ "The universal selector (*) is known to be slow": "ユニバーサル セレクター (*) を使用すると処理速度が低下することが知られています。",
+ "Throws the value of an expression as a fatal error with stack trace. Useful for validating arguments to mixins and functions.": "スタック トレースで致命的なエラーとして式の値をスローします。mixins と関数の引数を検証するときに便利です。",
+ "URI expected": "URI が必要です",
+ "URL encodes a string": "URL は文字列をエンコードします",
+ "Unexpected character in tag.": "タグに予期しない文字があります。",
+ "Unifies two selectors to produce a selector that matches elements matched by both.": "2 つのセレクターを統合して、両方に一致する要素に一致するセレクターを生成します。",
+ "Unknown at-rule.": "不明なルールです。",
+ "Unknown property.": "不明なプロパティ。",
+ "Unknown property: '{0}'": "不明なプロパティ: '{0}'",
+ "Unknown vendor specific property.": "不明なベンダー固有のプロパティ。",
+ "VS Code now has built-in support for auto-renaming tags. Do you want to enable it?": "VS Code に、自動名前変更タグの組み込みサポートが追加されました。これを有効にしますか?",
+ "When using a vendor-specific prefix also include the standard property": "ベンダー固有のプレフィックスを使用するとき、標準のプロパティーも含めます。",
+ "When using a vendor-specific prefix make sure to also include all other vendor-specific properties": "ベンダー固有のプレフィックス を使用するときは、他すべてのベンダー固有のプレフィックスも必ず含めてください。",
+ "While loop that takes an expression and repeatedly outputs the nested styles until the statement evaluates to `false`.": "式を受け取り、ステートメントが `false` に評価されるまで入れ子になったスタイルを繰り返し出力する While ループ。",
+ "[ expected": "[ が必要です",
+ "] expected": "] が必要です",
+ "absolute value of a number": "数値の絶対値。",
+ "arccosine - inverse of cosine function": "アークコサイン - コサイン関数の逆関数",
+ "arcsine - inverse of sine function": "アークサイン - サイン関数の逆関数",
+ "arctangent - inverse of tangent function": "アークタンジェント - タンジェント関数の逆関数",
+ "argument from '{0}'": "'{0}' からの引数",
+ "at-rule or selector expected": "@ 規則またはセレクターが必要です",
+ "at-rule unknown": "@ 規則が不明です",
+ "bind the evaluation of a ruleset to each member of a list.": "ルールセットの評価をリストの各メンバーにバインドします。",
+ "calculates square root of a number": "数値の平方根を計算します",
+ "colon expected": "コロンが必要です",
+ "comma expected": "コンマが必要です",
+ "condition expected": "条件が必要です",
+ "converts numbers from one type into another": "ある型の数値を別の型に変換します",
+ "converts to a %, e.g. 0.5 > 50%": "% に変換します。例: 0.5 > 50%",
+ "cosine function": "コサイン関数",
+ "creates a #AARRGGBB": "#AARRGGBB を作成します",
+ "creates a color": "色を作成します",
+ "css.builtin.lab": "css.builtin.lab",
+ "dot expected": "ドットが必要です",
+ "escape string content": "エスケープ文字列の内容",
+ "expression expected": "式が必要です。",
+ "first argument modulus second argument": "最初の引数の剰余の 2 番目の引数",
+ "first argument raised to the power of the second argument": "1 番目の引数を 2 番目の引数の累乗に上げます",
+ "generate a list spanning a range of values": "値の範囲にまたがるリストを生成します",
+ "identifier expected": "識別子が必要です",
+ "identifier or variable expected": "識別子または変数が必要です",
+ "identifier or wildcard expected": "識別子またはワイルドカードが必要です",
+ "inline-block is ignored due to the float. If 'float' has a value other than 'none', the box is floated and 'display' is treated as 'block'": "float が原因で inline-block は無視されます。'float' に 'none' 以外の値が指定されている場合、ボックスは floated になり、'display' は 'block' として扱われます",
+ "inlines a resource and falls back to `url()`": "リソースをインライン化し、`url()` にフォールバックします",
+ "media query expected": "メディア クエリが必要です",
+ "number expected": "数値が必要です",
+ "operator expected": "演算子が必要です",
+ "page directive or declaraton expected": "ページ ディレクティブまたは宣言が必要です",
+ "parses a string to a color": "文字列を色に解析します",
+ "percentage expected": "パーセンテージが必要です",
+ "property value expected": "プロパティ値が必要です",
+ "remove or change the unit of a dimension": "ディメンションの単位を削除または変更します",
+ "return `@color` 10% points darker": "`@color` を10% 暗く返します",
+ "return `@color` 10% points less saturated": "彩度を 10% 低くした `@color` を返します",
+ "return `@color` 10% points less transparent": "透明度を 10% 低くした `@color` を返します",
+ "return `@color` 10% points lighter": "`@color` を 10% ポイント明るく返します",
+ "return `@color` 10% points more saturated": "彩度を 10% 高くした `@color` を返します",
+ "return `@color` 10% points more transparent": "透明度を 10% 高くした `@color` を返します",
+ "return `@color` with 50% transparency": "透明度を 50% にした `@color` を返します",
+ "return `@color` with a 10 degree larger in hue": "色相が 10% を増やした `@color` を返します",
+ "return `@darkcolor` if `@color1 is> 43% luma` otherwise return `@lightcolor`, see notes": "`@color1 is> 43% luma` の場合は `@darkcolor` を返します。それ以外の場合は `@lightcolor` を返します。メモを参照してください",
+ "return a mix of `@color1` and `@color2`": "`@color1` と `@color2` の組み合わせを返します",
+ "returns a grey, 100% desaturated color": "灰色の彩度を 100% 低くした色を返します",
+ "returns a value at the specified position in the list": "リスト内の指定された位置に値を返します",
+ "returns one of two values depending on a condition.": "条件に応じて 2 つの値のうちの 1 つを返します。",
+ "returns pi": "pi を返します",
+ "returns the `alpha` channel of `@color`": "`@color` の `alpha` チャネルを返します",
+ "returns the `blue` channel of `@color`": "`@color` の `blue` チャネルを返します",
+ "returns the `green` channel of `@color`": "`@color` の `green` チャネルを返します",
+ "returns the `hue` channel of `@color` in the HSL space": "HSL 空間内の `@color` の `hue` チャネルを返します",
+ "returns the `hue` channel of `@color` in the HSV space": "HSV 空間内の `@color` の `hue` チャネルを返します",
+ "returns the `lightness` channel of `@color` in the HSL space": "HSL 空間内の `@color` の `lightness` チャネルを返します",
+ "returns the `luma` value (perceptual brightness) of `@color`": "`@color` の `luma` 値 (知覚の明るさ) を返します",
+ "returns the `red` channel of `@color`": "`@color` の `red` チャネルを返します",
+ "returns the `saturation` channel of `@color` in the HSL space": "HSL 空間の `@color` の `saturation` チャネルを返します",
+ "returns the `saturation` channel of `@color` in the HSV space": "HSV 空間の `@color` の `saturation` チャネルを返します",
+ "returns the `value` channel of `@color` in the HSV space": "HSV 空間内の `@color` の `value` チャネルを返します",
+ "returns the lowest of one or more values": "1 つ以上の値のうち最も低い値を返します",
+ "returns the number of elements in a value list": "値リスト内の要素の数を返します",
+ "rounds a number to a number of places": "数値を複数の場所に四捨五入します",
+ "rounds down to an integer": "整数に切り捨てます",
+ "rounds up to an integer": "整数に切り上げます",
+ "selector expected": "セレクターが必要です",
+ "semi-colon expected": "セミコロンが必要です",
+ "sine function": "サイン関数",
+ "string literal expected": "文字列リテラルが必要です。",
+ "string replace": "文字列置換",
+ "tangent function": "正接関数",
+ "term expected": "項が必要です",
+ "unknown keyword": "不明なキーワード",
+ "uri or string expected": "URI または文字列が必要です",
+ "variable name expected": "変数名が必要です",
+ "variable value expected": "変数値が必要です",
+ "whitespace expected": "空白文字が必要です",
+ "wildcard expected": "ワイルドカードが必要です",
+ "{ expected": "{ が必要です",
+ "{0}, '{1}'": "{0}, '{1}'",
+ "} expected": "} が必要です"
+ },
+ "package": {
+ "description": "HTML と Handlebar ファイルに豊富な言語サポートを提供します",
+ "displayName": "HTML 言語機能",
+ "html.autoClosingTags": "HTML タグの自動クローズを有効/無効にします。",
+ "html.autoCreateQuotes": "HTML 属性割り当ての引用符の自動作成を有効または無効にします。引用符の型は、'#html.completion.attributeDefaultValue#' で構成できます。",
+ "html.completion.attributeDefaultValue": "完了が承認された場合の属性の既定値を制御します。",
+ "html.completion.attributeDefaultValue.doublequotes": "属性値が \"\" に設定されています。",
+ "html.completion.attributeDefaultValue.empty": "属性値が設定されていません。",
+ "html.completion.attributeDefaultValue.singlequotes": "属性値が '' に設定されています。",
+ "html.customData.desc": "[カスタム データ形式](https://github.com/microsoft/vscode-html-languageservice/blob/master/docs/customData.md) に従って JSON ファイルを指す相対ファイル パスの一覧。\r\n\r\nVS Code では、起動時にカスタム データを読み込んで、ユーザーが JSON ファイルに指定するカスタム HTML タグ、属性、属性値の HTML サポートを強化します。\r\n\r\nファイル パスはワークスペースを基準とした相対パスであり、ワークスペース フォルダーの設定のみが考慮されます。",
+ "html.format.contentUnformatted.desc": "コンテンツを再フォーマットしてはならないタグの、コンマ区切りの一覧。`null` は、既定値の `pre` タグを表します。",
+ "html.format.enable.desc": "既定の HTML フォーマッタを有効/無効にします。",
+ "html.format.extraLiners.desc": "直前に改行を 1 つ入れるタグの、コンマで区切られたリストです。`null` は、既定値の `head, body, /html` を表します。",
+ "html.format.indentHandlebars.desc": "{{#foo}}` から `{{/foo}}` をフォーマットしてインデントします。",
+ "html.format.indentInnerHtml.desc": "'' および '' セクションをインデントします。",
+ "html.format.maxPreserveNewLines.desc": "1 つのチャンク内に保持できる改行の最大数。無制限にするには、`null` を使います。",
+ "html.format.preserveNewLines.desc": "要素の前にある既存の改行を保持するかどうかを制御します。要素の前でのみ機能し、タグの内側やテキストに対しては機能しません。",
+ "html.format.templating.desc": "Django、ERB、Handlebars、PHP テンプレート言語のタグを優先します。",
+ "html.format.unformatted.desc": "再フォーマットしてはならないタグの、コンマ区切りの一覧。`null` の場合、既定で https://www.w3.org/TR/html5/dom.html#phrasing-content にリストされているすべてのタグになります。",
+ "html.format.unformattedContentDelimiter.desc": "テキスト コンテンツをこの文字列の間にまとめます。",
+ "html.format.wrapAttributes.alignedmultiple": "行の長さが超過したときに、属性を垂直方向に整列させます。",
+ "html.format.wrapAttributes.auto": "行の長さが超過した場合のみ属性を折り返します。",
+ "html.format.wrapAttributes.desc": "属性を折り返します。",
+ "html.format.wrapAttributes.force": "先頭以外の各属性を折り返します。",
+ "html.format.wrapAttributes.forcealign": "先頭以外の各属性を折り返して位置を合わせます。",
+ "html.format.wrapAttributes.forcemultiline": "各属性を折り返します。",
+ "html.format.wrapAttributes.preserve": "属性の折り返しを保持します。",
+ "html.format.wrapAttributes.preservealigned": "属性の折り返しを保持しますが、整列させます。",
+ "html.format.wrapAttributesIndentSize.desc": "ラップされた属性を N 文字後にインデントします。既定のインデント サイズを使用するには、`null` を使用します。`#html.format.wrapAttributes#` が `aligned` に設定されている場合は無視されます。",
+ "html.format.wrapLineLength.desc": "1 行あたりの最大文字数 (0 = 無効にする)。",
+ "html.hover.documentation": "ホバー時にタグと属性のドキュメントを表示します。",
+ "html.hover.references": "ホバー時に MDN への参照を表示します。",
+ "html.mirrorCursorOnMatchingTag": "対応する HTML タグでカーソルのミラーリングを有効または無効にします。",
+ "html.mirrorCursorOnMatchingTagDeprecationMessage": "`editor.linkedEditing` のために非推奨",
+ "html.suggest.hideEndTagSuggestions.desc": "組み込みの HTML 言語サポートが終了タグを提案するかどうかを制御します。無効にすると、 のような終了タグの候補は表示されません。",
+ "html.suggest.html5.desc": "ビルトイン HTML 言語サポートが HTML5 のタグ、プロパティ、および値を候補表示するかどうかを制御します。",
+ "html.trace.server.desc": "VS Code と HTML 言語サーバー間の通信をトレースします。",
+ "html.validate.scripts": "ビルトイン HTML 言語サポートが埋め込みスクリプトを検証するかどうかを制御します。",
+ "html.validate.styles": "ビルトイン HTML 言語サポートが埋め込みスタイルを検証するかどうかを制御します。"
+ }
+ }
+}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-ja/translations/extensions/vscode.html.i18n.json b/i18n/vscode-language-pack-ja/translations/extensions/vscode.html.i18n.json
index baf985c332..cacd37f9b9 100644
--- a/i18n/vscode-language-pack-ja/translations/extensions/vscode.html.i18n.json
+++ b/i18n/vscode-language-pack-ja/translations/extensions/vscode.html.i18n.json
@@ -9,8 +9,8 @@
"version": "1.0.0",
"contents": {
"package": {
- "displayName": "HTML の基本言語サポート",
- "description": "HTML ファイルで、構文の強調表示、かっこの対応付け、スニペットを提供します。"
+ "description": "HTML ファイルで、構文の強調表示、かっこの対応付け、スニペットを提供します。",
+ "displayName": "HTML の基本言語サポート"
}
}
}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-ja/translations/extensions/vscode.ini.i18n.json b/i18n/vscode-language-pack-ja/translations/extensions/vscode.ini.i18n.json
index c88006497d..948d17da3d 100644
--- a/i18n/vscode-language-pack-ja/translations/extensions/vscode.ini.i18n.json
+++ b/i18n/vscode-language-pack-ja/translations/extensions/vscode.ini.i18n.json
@@ -9,8 +9,8 @@
"version": "1.0.0",
"contents": {
"package": {
- "displayName": "Ini の基本言語サポート",
- "description": "Ini ファイル内で構文ハイライト、かっこ一致を提供します。"
+ "description": "Ini ファイル内で構文ハイライト、かっこ一致を提供します。",
+ "displayName": "Ini の基本言語サポート"
}
}
}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-ja/translations/extensions/vscode.ipynb.i18n.json b/i18n/vscode-language-pack-ja/translations/extensions/vscode.ipynb.i18n.json
new file mode 100644
index 0000000000..1d1aeec79e
--- /dev/null
+++ b/i18n/vscode-language-pack-ja/translations/extensions/vscode.ipynb.i18n.json
@@ -0,0 +1,29 @@
+{
+ "": [
+ "--------------------------------------------------------------------------------------------",
+ "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."
+ ],
+ "version": "1.0.0",
+ "contents": {
+ "bundle": {
+ "Insert Image as Attachment": "画像を添付ファイルとして挿入"
+ },
+ "package": {
+ "addCellOutputToChat.title": "チャットにセル出力を追加",
+ "cleanInvalidImageAttachment.title": "無効な画像添付ファイル参照の消去",
+ "copyCellOutput.title": "セル出力のコピー",
+ "description": "Jupyter の .ipynb ノートブック ファイルを開いて読み取るための基本サポートを提供します",
+ "displayName": ".ipynb のサポート",
+ "ipynb.experimental.serialization": "ワーカー スレッドで Jupyter Notebook をシリアル化するための試験的な機能です。",
+ "ipynb.pasteImagesAsAttachments.enabled": "ipynb ノートブック ファイルの Markdown セルへの画像の貼り付け機能を有効または無効にします。貼り付けられた画像は、セルに添付ファイルとして挿入されます。",
+ "markdownAttachmentRenderer.displayName": "Markdown-It ipynb Cell Attachment renderer",
+ "newUntitledIpynb.shortTitle": "Jupyter Notebook",
+ "newUntitledIpynb.title": "新しい Jupyter Notebook",
+ "openCellOutput.title": "テキスト エディターでセル出力を開く",
+ "openIpynbInNotebookEditor.title": "ノートブック エディターで IPYNB ファイルを開く"
+ }
+ }
+}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-ja/translations/extensions/vscode.jake.i18n.json b/i18n/vscode-language-pack-ja/translations/extensions/vscode.jake.i18n.json
new file mode 100644
index 0000000000..a3e146f587
--- /dev/null
+++ b/i18n/vscode-language-pack-ja/translations/extensions/vscode.jake.i18n.json
@@ -0,0 +1,24 @@
+{
+ "": [
+ "--------------------------------------------------------------------------------------------",
+ "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."
+ ],
+ "version": "1.0.0",
+ "contents": {
+ "bundle": {
+ "Auto detecting Jake for folder {0} failed with error: {1}', this.workspaceFolder.name, err.error ? err.error.toString() : 'unknown": "フォルダー {0} の Jake の自動検出が次のエラーで失敗しました: {1}', this.workspaceFolder.name, err.error ? err.error.toString() : 'unknown",
+ "Go to output": "出力に移動",
+ "Problem finding jake tasks. See the output for more information.": "jake タスクを検索するときに問題が発生しました。詳細は、出力をご覧ください。"
+ },
+ "package": {
+ "config.jake.autoDetect": "Jake タスク検出の有効化を制御します。Jake タスク検出を行うと、開いているワークスペース内のファイルが実行される可能性があります。",
+ "description": "VS Code に Jake 機能を追加する拡張機能。",
+ "displayName": "VS Code の Jake サポート",
+ "jake.taskDefinition.file.description": "タスクを提供する Jake ファイル。省略できます。",
+ "jake.taskDefinition.type.description": "カスタマイズする Jake タスク。"
+ }
+ }
+}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-ja/translations/extensions/vscode.java.i18n.json b/i18n/vscode-language-pack-ja/translations/extensions/vscode.java.i18n.json
index ee4054b66b..3a97783642 100644
--- a/i18n/vscode-language-pack-ja/translations/extensions/vscode.java.i18n.json
+++ b/i18n/vscode-language-pack-ja/translations/extensions/vscode.java.i18n.json
@@ -9,8 +9,8 @@
"version": "1.0.0",
"contents": {
"package": {
- "displayName": "Java の基本言語サポート",
- "description": "Java ファイル内でスニペット、構文ハイライト、かっこ一致、折りたたみを提供します。"
+ "description": "Java ファイル内でスニペット、構文ハイライト、かっこ一致、折りたたみを提供します。",
+ "displayName": "Java の基本言語サポート"
}
}
}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-ja/translations/extensions/vscode.javascript.i18n.json b/i18n/vscode-language-pack-ja/translations/extensions/vscode.javascript.i18n.json
index f5046bb81f..8dcd23dfe4 100644
--- a/i18n/vscode-language-pack-ja/translations/extensions/vscode.javascript.i18n.json
+++ b/i18n/vscode-language-pack-ja/translations/extensions/vscode.javascript.i18n.json
@@ -9,8 +9,8 @@
"version": "1.0.0",
"contents": {
"package": {
- "displayName": "JavaScript の基本言語サポート",
- "description": "JavaScript ファイル内でスニペット、構文ハイライト、かっこ一致、折りたたみを提供します。"
+ "description": "JavaScript ファイル内でスニペット、構文ハイライト、かっこ一致、折りたたみを提供します。",
+ "displayName": "JavaScript の基本言語サポート"
}
}
}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-ja/translations/extensions/vscode.json-language-features.i18n.json b/i18n/vscode-language-pack-ja/translations/extensions/vscode.json-language-features.i18n.json
new file mode 100644
index 0000000000..041aa4f035
--- /dev/null
+++ b/i18n/vscode-language-pack-ja/translations/extensions/vscode.json-language-features.i18n.json
@@ -0,0 +1,190 @@
+{
+ "": [
+ "--------------------------------------------------------------------------------------------",
+ "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."
+ ],
+ "version": "1.0.0",
+ "contents": {
+ "bundle": {
+ "$ref '{0}' in '{1}' can not be resolved.": "'{1}' の $ref '{0}' を解決できません。",
+ "": "",
+ "A default value. Used by suggestions.": "既定値。候補によって使用されます。",
+ "A descriptive title of the schema.": "スキーマの説明的なタイトル。",
+ "A long description of the schema. Used in hover menus and suggestions.": "スキーマの詳しい説明です。ホバー メニューと候補で使用されます。",
+ "A map of property names to either an array of property names or a schema. An array of property names means the property named in the key depends on the properties in the array being present in the object in order to be valid. If the value is a schema, then the schema is only applied to the object if the property in the key exists on the object.": "プロパティ名の配列またはスキーマへのプロパティ名のマップです。プロパティ名の配列は、キーで指定されたプロパティが有効であるために、配列内のプロパティがオブジェクトに存在することに依存することを意味します。値がスキーマの場合、キーのプロパティがオブジェクトに存在する場合にのみ、スキーマがオブジェクトに適用されます。",
+ "A map of property names to schemas for each property.": "各プロパティのスキーマへのプロパティ名のマップ。",
+ "A map of regular expressions on property names to schemas for matching properties.": "プロパティ名の正規表現を一致するプロパティのスキーマにマップします。",
+ "A number that should cleanly divide the current value (i.e. have no remainder).": "現在の値を完全に除算する必要のある数値 (つまり、剰余がありません)。",
+ "A regular expression to match the string against. It is not implicitly anchored.": "文字列に一致する正規表現。暗黙的にアンカーされていません。",
+ "A schema which must not match.": "一致してはならないスキーマ。",
+ "A unique identifier for the schema.": "スキーマの一意の識別子です。",
+ "An array instance is valid against \"contains\" if at least one of its elements is valid against the given schema.": "指定されたスキーマに対して少なくとも 1 つの要素が有効な場合、配列インスタンスは \"contains\" に対して有効です。",
+ "An array of schemas, all of which must match.": "スキーマの配列。すべて一致する必要があります。",
+ "An array of schemas, exactly one of which must match.": "スキーマの配列。そのうちの 1 つだけが一致する必要があります。",
+ "An array of schemas, where at least one must match.": "スキーマの配列。少なくとも 1 つが一致する必要があります。",
+ "An array of strings that lists the names of all properties required on this object.": "このオブジェクトに必要なすべてのプロパティの名前を一覧表示する文字列の配列です。",
+ "An instance validates successfully against this keyword if its value is equal to the value of the keyword.": "インスタンスの値がキーワードの値と等しい場合、インスタンスはこのキーワードに対して正常に検証されます。",
+ "Array does not contain required item.": "配列に必要な項目が含まれていません。",
+ "Array has duplicate items.": "配列に重複する項目があります。",
+ "Array has too few items that match the contains contraint. Expected {0} or more.": "配列に含まれている制約に一致する項目が少なすぎます。{0} 以上である必要があります。",
+ "Array has too few items. Expected {0} or more.": "配列に含まれる項目が少なすぎます。{0} 個以上が必要です。",
+ "Array has too many items according to schema. Expected {0} or fewer.": "スキーマによると、配列に含まれる項目が多すぎます。{0} 個以下にする必要があります。",
+ "Array has too many items that match the contains contraint. Expected {0} or less.": "配列に含まれている制約に一致する項目が多すぎます。{0} 以下である必要があります。",
+ "Array has too many items. Expected {0} or fewer.": "配列の項目が多すぎます。{0} 個以下にする必要があります。",
+ "Colon expected": "コロンが必要です",
+ "Comments are not permitted in JSON.": "JSON ではコメントは許可されていません。",
+ "Comments from schema authors to readers or maintainers of the schema.": "スキーマ作成者からスキーマの閲覧者または保守者へのコメント。",
+ "Configure": "構成",
+ "Configured by extension: {0}": "拡張機能で構成済み: {0}",
+ "Configured in user settings": "ユーザー設定で構成済み",
+ "Configured in workspace settings": "ワークスペース設定で構成済み",
+ "Default value": "既定値",
+ "Describes the content encoding of a string property.": "文字列プロパティのコンテンツ エンコードを示します。",
+ "Describes the format expected for the value. By default, not used for validation": "値に必要な形式を説明します。既定では、検証には使用されません",
+ "Describes the media type of a string property.": "文字列プロパティのメディアの種類を示します。",
+ "Downloading schemas is disabled in untrusted workspaces": "信頼されていないワークスペースではスキーマのダウンロードが無効になっています",
+ "Downloading schemas is disabled through setting '{0}'": "スキーマのダウンロードは、設定 '{0}' によって無効になっています",
+ "Downloading schemas is disabled. Click to configure.": "スキーマのダウンロードは無効になっています。構成するには、クリックしてください。",
+ "Draft-03 schemas are not supported.": "Draft-03 スキーマはサポートされていません。",
+ "Duplicate anchor declaration: '{0}'": "アンカー宣言が重複しています: '{0}'",
+ "Duplicate object key": "オブジェクト キーが重複しています",
+ "Either a schema or a boolean. If a schema, used to validate all properties not matched by 'properties', 'propertyNames', or 'patternProperties'. If false, any properties not defined by the adajacent keywords will cause this schema to fail.": "スキーマまたはブール値のいずれかです。スキーマの場合、'properties'、'propertyNames' または 'patternProperties' と一致しないすべてのプロパティを検証するために使用されます。false の場合、隣接するキーワードで定義されていないプロパティがあると、このスキーマは失敗します。",
+ "Either a string of one of the basic schema types (number, integer, null, array, object, boolean, string) or an array of strings specifying a subset of those types.": "基本スキーマ型 (数値、整数、null、配列、オブジェクト、ブール値、文字列) のいずれかの文字列、またはこれらの型のサブセットを指定する文字列の配列。",
+ "End of file expected.": "ファイルの終わりが必要です。",
+ "Expected a JSON object, array or literal.": "JSON オブジェクト、配列、またはリテラルが必要です。",
+ "Expected comma": "コンマが必要です",
+ "Expected comma or closing brace": "コンマまたは閉じかっこが必要です",
+ "Expected comma or closing bracket": "コンマまたは閉じかっこが必要です",
+ "Failed to sort the JSONC document, please consider opening an issue.": "JSONC ドキュメントの並べ替えができませんでした。問題の報告を検討してください。",
+ "For arrays, only when items is set as an array. If items are a schema, this schema validates items after the ones specified by the items schema. If false, additional items will cause validation to fail.": "配列の場合、項目が配列として設定されている場合のみ。項目がスキーマの場合、このスキーマは項目スキーマで指定された後の項目を検証します。false の場合、追加の項目によって検証が失敗します。",
+ "For arrays. Can either be a schema to validate every element against or an array of schemas to validate each item against in order (the first schema will validate the first element, the second schema will validate the second element, and so on.": "配列の場合。すべての要素を検証するスキーマ、または各項目を順番に検証するスキーマの配列にすることができます (最初のスキーマは最初の要素を検証し、2 番目のスキーマは 2 番目の要素を検証します。",
+ "If all of the items in the array must be unique. Defaults to false.": "配列内のすべての項目が一意である必要がある場合。既定値は false です。",
+ "If the instance is an object, this keyword validates if every property name in the instance validates against the provided schema.": "インスタンスがオブジェクトの場合、このキーワードは、インスタンス内のすべてのプロパティ名が指定されたスキーマに対して検証されるかどうかを検証します。",
+ "Incorrect type. Expected \"{0}\".": "型が正しくありません。 \"{0}\" が必要です。",
+ "Incorrect type. Expected one of {0}.": "型が正しくありません。 {0}のいずれかが必要です。",
+ "Indicates that the value of the instance is managed exclusively by the owning authority.": "インスタンスの値が所有機関によって排他的に管理されていることを示します。",
+ "Invalid characters in string. Control characters must be escaped.": "文字列に無効な文字が含まれています。制御文字はエスケープする必要があります。",
+ "Invalid color format. Use #RGB, #RGBA, #RRGGBB or #RRGGBBAA.": "色の形式が無効です。#RGB、#RGBA、#RRGGBB、#RRGGBBAA をお使いください。",
+ "Invalid escape character in string.": "文字列内のエスケープ文字が無効です。",
+ "Invalid number format.": "数値の形式が無効です。",
+ "Invalid unicode sequence in string.": "文字列に無効な Unicode シーケンスがあります。",
+ "Item does not match any validation rule from the array.": "項目が配列のどの検証規則とも一致しません。",
+ "JSON Language Server": "JSON 言語サーバー",
+ "JSON Outline Status": "JSON のアウトラインの状態",
+ "JSON Validation Status": "JSON 検証状態",
+ "JSON schema cache cleared.": "JSON スキーマ キャッシュがクリアされました。",
+ "JSON schema configured": "JSON スキーマが構成されています",
+ "JSON: Schema Resolution Error": "JSON: スキーマ解決エラー",
+ "Learn more about JSON schema configuration...": "JSON スキーマの構成に関する詳細情報...",
+ "Loading JSON info": "JSON 情報を読み込んでいます",
+ "Makes the maximum property exclusive.": "最大プロパティを排他にします。",
+ "Makes the minimum property exclusive.": "最小プロパティを排他にします。",
+ "Matches a schema that is not allowed.": "許可されていないスキーマに一致します。",
+ "Matches multiple schemas when only one must validate.": "検証が必要なスキーマが 1 つだけの場合に、複数のスキーマに一致します。",
+ "Missing property \"{0}\".": "プロパティ \"{0}\" が不足しています。",
+ "New array": "新しい配列",
+ "New object": "新しいオブジェクト",
+ "No schema configured for this file": "このファイルにスキーマが構成されていません",
+ "No schema validation": "スキーマの検証なし",
+ "Not used for validation. Place subschemas here that you wish to reference inline with $ref.": "検証に使用されていません。$ref をインラインで参照するサブスキーマをここに配置します。",
+ "Object has fewer properties than the required number of {0}": "オブジェクトのプロパティが、必要な数の {0} を下回っています",
+ "Object has more properties than limit of {0}.": "オブジェクトに {0} の制限を超えるプロパティがあります。",
+ "Object is missing property {0} required by property {1}.": "オブジェクトにプロパティ {1} が必要とするプロパティ {0} がありません。",
+ "Open Extension": "拡張機能を開く",
+ "Open Settings": "設定を開く",
+ "Outline": "アウトライン",
+ "Problem reading content from '{0}': UTF-8 with BOM detected, only UTF 8 is allowed.": "'{0}' からのコンテンツの読み取りで問題が発生しました: BOM を使用した UTF-8 が検出されました。UTF 8 のみが許可されています。",
+ "Problems loading reference '{0}': {1}": "参照 '{0}' の読み込みで問題が発生しました: {1}",
+ "Property expected": "プロパティが必要です",
+ "Property keys must be doublequoted": "プロパティ キーは二重引用符で囲む必要があります",
+ "Property {0} is not allowed.": "プロパティ {0} は許可されていません。",
+ "Reference a definition hosted on any location.": "任意の場所でホストされている定義を参照します。",
+ "Sample JSON values associated with a particular schema, for the purpose of illustrating usage.": "使用方法を示す目的で、特定のスキーマに関連付けられているサンプル JSON 値。",
+ "Schema not found: {0}": "スキーマが見つかりません: {0}",
+ "Schema validated": "スキーマ検証済み",
+ "Select the schema to use for {0}": "{0} に使用するスキーマを選択します",
+ "Show Schemas": "スキーマの表示",
+ "Sort JSON": "JSON の並べ替え",
+ "String does not match the pattern of \"{0}\".": "文字列はパターン \"{0}\" と一致しません。",
+ "String is longer than the maximum length of {0}.": "文字列が {0} の最大長を超えています。",
+ "String is not a RFC3339 date-time.": "文字列は RFC3339 日時ではありません。",
+ "String is not a RFC3339 date.": "文字列は RFC3339 日付ではありません。",
+ "String is not a RFC3339 time.": "文字列は RFC3339 時刻ではありません。",
+ "String is not a URI: {0}": "文字列が URI ではありません: {0}",
+ "String is not a hostname.": "文字列がホスト名ではありません。",
+ "String is not an IPv4 address.": "文字列が IPv4 アドレスではありません。",
+ "String is not an IPv6 address.": "文字列が IPv6 アドレスではありません。",
+ "String is not an e-mail address.": "文字列がメール アドレスではありません。",
+ "String is shorter than the minimum length of {0}.": "文字列が {0} の最小長より短くなっています。",
+ "The \"else\" subschema is used for validation when the \"if\" subschema fails.": "\"else\" サブスキーマは、\"if\" サブスキーマが失敗した場合に検証に使用されます。",
+ "The \"then\" subschema is used for validation when the \"if\" subschema succeeds.": "\"then\" サブスキーマは \"if\" サブスキーマが成功した場合に検証に使用されます。",
+ "The maximum length of a string.": "文字列の最大長。",
+ "The maximum number of items that can be inside an array. Inclusive.": "配列内に配置できる項目の最大数。その数を含みます。",
+ "The maximum number of properties an object can have. Inclusive.": "オブジェクトに設定できるプロパティの最大数。その数を含みます。",
+ "The maximum numerical value, inclusive by default.": "最大数値、既定ではその数値を含みます。",
+ "The minimum length of a string.": "文字列の最小長。",
+ "The minimum number of items that can be inside an array. Inclusive.": "配列内に配置できる項目の最小数。その数を含みます。",
+ "The minimum number of properties an object can have. Inclusive.": "オブジェクトに設定できるプロパティの最小数。その数を含みます。",
+ "The minimum numerical value, inclusive by default.": "最小数値、既定ではその数値を含みます。",
+ "The schema to verify this document against.": "このドキュメントを検証するスキーマ。",
+ "The schema uses meta-schema features ({0}) that are not yet supported by the validator.": "スキーマは、検証ツールでまだサポートされていないメタスキーマ機能 ({0}) を使用しています。",
+ "The set of literal values that are valid.": "有効なリテラル値のセットです。",
+ "The validation outcome of the \"if\" subschema controls which of the \"then\" or \"else\" keywords are evaluated.": "\"if\" サブスキーマの検証結果は、\"then\" または \"else\" キーワードのうちどれが評価されるかを制御します。",
+ "Trailing comma": "末尾のコンマ",
+ "URI expected.": "URI が必要です。",
+ "URI is expected.": "URI が必要です。",
+ "URI with a scheme is expected.": "スキームの URI が必要です。",
+ "Unable to compute used schemas: No document": "使用されたスキーマを計算できません: ドキュメントがありません",
+ "Unable to compute used schemas: {0}": "使用されたスキーマを計算できません: {0}",
+ "Unable to download schemas in untrusted workspaces.": "信頼されていないワークスペースではスキーマをダウンロードできません。",
+ "Unable to load schema from '{0}'. No schema request service available": "'{0}' からスキーマを読み込めません。使用できるスキーマ要求サービスがありません",
+ "Unable to load schema from '{0}': No content.": "'{0}' からスキーマを読み込めません: コンテンツがありません。",
+ "Unable to load schema from '{0}': {1}.": "'{0}' からスキーマを読み込めません: {1}。",
+ "Unable to load {0}": "{0} を読み込めません",
+ "Unable to parse content from '{0}': Parse error at offset {1}.": "'{0}' からのコンテンツを解析できません: オフセット {1} で解析エラーが発生しました。",
+ "Unable to resolve schema. Click to retry.": "スキーマを解決できません。クリックして、もう一度お試しください。",
+ "Unexpected end of comment.": "予期しないコメントの終わりです。",
+ "Unexpected end of number.": "予期しない数値の終わり。",
+ "Unexpected end of string.": "予期しない文字列の終わり。",
+ "Value expected": "値が必要です",
+ "Value is above the exclusive maximum of {0}.": "値が排他最大値の {0} を超えています。",
+ "Value is above the maximum of {0}.": "値が {0} の最大値を超えています。",
+ "Value is below the exclusive minimum of {0}.": "値が排他的最小値の {0} を下回っています。",
+ "Value is below the minimum of {0}.": "値が最小値の {0} を下回っています。",
+ "Value is deprecated": "値は非推奨です",
+ "Value is not accepted. Valid values: {0}.": "値は受け入れられません。有効な値: {0}。",
+ "Value is not divisible by {0}.": "値は {0} で割り切ることができません。",
+ "Value must be {0}.": "値は {0} である必要があります。",
+ "multiple JSON schemas configured": "複数の JSON スキーマが構成されています",
+ "no JSON schema configured": "JSON スキーマが構成されていません",
+ "only {0} document symbols shown for performance reasons": "パフォーマンス上の理由で {0} のドキュメント シンボルのみが表示されます",
+ "{0} is a directory, not a file": "{0} はディレクトリであり、ファイルではありません"
+ },
+ "package": {
+ "description": "JSON ファイルに豊富な言語サポートを提供。",
+ "displayName": "JSON 言語機能",
+ "json.clickToRetry": "クリックして、もう一度お試しください。",
+ "json.colorDecorators.enable.deprecationMessage": "設定 `json.colorDecorators.enable` は使用されなくなりました。`editor.colorDecorators` を使用してください。",
+ "json.colorDecorators.enable.desc": "カラー デコレーターを有効または無効にします",
+ "json.command.clearCache": "スキーマ キャッシュのクリア",
+ "json.command.sort": "ドキュメントの並べ替え",
+ "json.enableSchemaDownload.desc": "有効にすると、JSON スキーマを http および https の場所からフェッチできるようになります。",
+ "json.format.enable.desc": "既定の JSON フォーマッタを有効/無効にします",
+ "json.format.keepLines.desc": "書式設定時に既存の改行をすべて保持します。",
+ "json.maxItemsComputed.desc": "計算されたアウトライン記号と折りたたまれた領域の最大数 (パフォーマンス上の理由から制限されています)。",
+ "json.maxItemsExceededInformation.desc": "アウトライン記号と折りたたみ領域の最大値を超えたときに通知を表示します。",
+ "json.schemaResolutionErrorMessage": "スキーマを解決できません。",
+ "json.schemas.desc": "スキーマを現在のプロジェクトの JSON ファイルに関連付けます。",
+ "json.schemas.fileMatch.desc": "JSON ファイルをスキーマに解決するときに照合するファイル パターンの配列。'*' と '**' をワイルドカードとして使用できます。除外パターンを定義して '!' で始めることもできます。一致するパターンが少なくとも 1 つあり、最後に一致するパターンが除外パターンでない場合、そのファイルは一致します。",
+ "json.schemas.fileMatch.item.desc": "JSON ファイルをスキーマに解決するときに照合する '*' と '**' を含めることができるファイル パターン。'!' で始まるときは、除外パターンを定義します。",
+ "json.schemas.schema.desc": "指定された URL のスキーマ定義です。スキーマは、スキーマ URL へのアクセスを避けるためにのみ指定する必要があります。",
+ "json.schemas.url.desc": "スキーマへの URL または絶対ファイル パス。ワークスペースとワークスペース フォルダーの設定の相対パス ('./' から始まる) を指定できます。",
+ "json.tracing.desc": "VS Code と JSON 言語サーバー間の通信をトレースします。",
+ "json.validate.enable.desc": "JSON 検証を有効または無効にします。",
+ "json.workspaceTrust": "この拡張機能では、http および https からスキーマを読み込むためにワークスペースの信頼が必要です。"
+ }
+ }
+}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-ja/translations/extensions/vscode.json.i18n.json b/i18n/vscode-language-pack-ja/translations/extensions/vscode.json.i18n.json
index 4287ee1e86..48e85179dc 100644
--- a/i18n/vscode-language-pack-ja/translations/extensions/vscode.json.i18n.json
+++ b/i18n/vscode-language-pack-ja/translations/extensions/vscode.json.i18n.json
@@ -9,8 +9,8 @@
"version": "1.0.0",
"contents": {
"package": {
- "displayName": "JSON の基本言語サポート",
- "description": "JSON ファイルで、構文の強調表示とかっこの対応付けを提供します。"
+ "description": "JSON ファイルで、構文の強調表示とかっこの対応付けを提供します。",
+ "displayName": "JSON の基本言語サポート"
}
}
}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-ja/translations/extensions/julia.i18n.json b/i18n/vscode-language-pack-ja/translations/extensions/vscode.julia.i18n.json
similarity index 100%
rename from i18n/vscode-language-pack-ja/translations/extensions/julia.i18n.json
rename to i18n/vscode-language-pack-ja/translations/extensions/vscode.julia.i18n.json
diff --git a/i18n/vscode-language-pack-ja/translations/extensions/latex.i18n.json b/i18n/vscode-language-pack-ja/translations/extensions/vscode.latex.i18n.json
similarity index 100%
rename from i18n/vscode-language-pack-ja/translations/extensions/latex.i18n.json
rename to i18n/vscode-language-pack-ja/translations/extensions/vscode.latex.i18n.json
diff --git a/i18n/vscode-language-pack-ja/translations/extensions/vscode.less.i18n.json b/i18n/vscode-language-pack-ja/translations/extensions/vscode.less.i18n.json
index 7825354e4d..03bb901cae 100644
--- a/i18n/vscode-language-pack-ja/translations/extensions/vscode.less.i18n.json
+++ b/i18n/vscode-language-pack-ja/translations/extensions/vscode.less.i18n.json
@@ -9,8 +9,8 @@
"version": "1.0.0",
"contents": {
"package": {
- "displayName": "Less の基本言語サポート",
- "description": "Less ファイルで構文ハイライト、かっこ一致、折りたたみを提供します。"
+ "description": "Less ファイルで構文ハイライト、かっこ一致、折りたたみを提供します。",
+ "displayName": "Less の基本言語サポート"
}
}
}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-ja/translations/extensions/vscode.log.i18n.json b/i18n/vscode-language-pack-ja/translations/extensions/vscode.log.i18n.json
index 5257a85661..ff1c88d0f3 100644
--- a/i18n/vscode-language-pack-ja/translations/extensions/vscode.log.i18n.json
+++ b/i18n/vscode-language-pack-ja/translations/extensions/vscode.log.i18n.json
@@ -9,8 +9,8 @@
"version": "1.0.0",
"contents": {
"package": {
- "displayName": "ログ",
- "description": ".log 拡張子を持つファイルの構文ハイライトを提供します。"
+ "description": ".log 拡張子を持つファイルの構文ハイライトを提供します。",
+ "displayName": "ログ"
}
}
}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-ja/translations/extensions/vscode.lua.i18n.json b/i18n/vscode-language-pack-ja/translations/extensions/vscode.lua.i18n.json
index 56955509cc..744d3fb79a 100644
--- a/i18n/vscode-language-pack-ja/translations/extensions/vscode.lua.i18n.json
+++ b/i18n/vscode-language-pack-ja/translations/extensions/vscode.lua.i18n.json
@@ -9,8 +9,8 @@
"version": "1.0.0",
"contents": {
"package": {
- "displayName": "Lua の基本言語サポート",
- "description": "Lua ファイル内で構文ハイライト、かっこ一致を提供します。"
+ "description": "Lua ファイル内で構文ハイライト、かっこ一致を提供します。",
+ "displayName": "Lua の基本言語サポート"
}
}
}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-ja/translations/extensions/vscode.make.i18n.json b/i18n/vscode-language-pack-ja/translations/extensions/vscode.make.i18n.json
index 5203a82e54..161975eeaf 100644
--- a/i18n/vscode-language-pack-ja/translations/extensions/vscode.make.i18n.json
+++ b/i18n/vscode-language-pack-ja/translations/extensions/vscode.make.i18n.json
@@ -9,8 +9,8 @@
"version": "1.0.0",
"contents": {
"package": {
- "displayName": "Make の基本言語サポート",
- "description": "Make ファイル内で構文ハイライト、かっこ一致を提供します。"
+ "description": "Make ファイル内で構文ハイライト、かっこ一致を提供します。",
+ "displayName": "Make の基本言語サポート"
}
}
}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-ja/translations/extensions/vscode.markdown-language-features.i18n.json b/i18n/vscode-language-pack-ja/translations/extensions/vscode.markdown-language-features.i18n.json
new file mode 100644
index 0000000000..1f5e7681a4
--- /dev/null
+++ b/i18n/vscode-language-pack-ja/translations/extensions/vscode.markdown-language-features.i18n.json
@@ -0,0 +1,172 @@
+{
+ "": [
+ "--------------------------------------------------------------------------------------------",
+ "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."
+ ],
+ "version": "1.0.0",
+ "contents": {
+ "bundle": {
+ "...1 additional file not shown": "...1 つの追加ファイルが表示されていません",
+ "...{0} additional files not shown": "...{0} 個の追加ファイルが表示されていません",
+ "Allow all content and script execution. Not recommended": "すべてのコンテンツとスクリプトの実行を許可します。推奨されません。",
+ "Allow insecure content": "セキュリティで保護されていないコンテンツを許可する",
+ "Allow insecure local content": "安全でないローカル コンテンツを許可する",
+ "Always": "常に",
+ "An unexpected error occurred while restoring the Markdown preview.": "Markdown プレビューの復元中に予期しないエラーが発生しました。",
+ "Checking for Markdown links to update": "更新する Markdown リンクを確認しています",
+ "Content Disabled Security Warning": "セキュリティが無効なコンテンツの警告",
+ "Could not load 'markdown.styles': {0}": "'markdown.styles' を読み込むことができません: {0}",
+ "Could not open {0}": "{0} を開くことができません。",
+ "Disable": "無効にする",
+ "Disable preview security warning in this workspace": "このワークスペースでプレビューのセキュリティ警告を有効にする",
+ "Disable validation of Markdown links": "マークダウン リンクの検証を無効にする",
+ "Does not affect the content security level": "コンテンツのセキュリティ レベルに影響しません",
+ "Enable": "有効にする",
+ "Enable loading content over http": "HTTP を介したコンテンツの読み込みを有効にする",
+ "Enable loading content over http served from localhost": "localhost から http で提供されるコンテンツの読み込みを有効にします",
+ "Enable preview security warnings in this workspace": "このワークスペースでプレビューのセキュリティ警告を有効にする",
+ "Enable validation of Markdown links": "マークダウン リンクの検証を有効にする",
+ "Exclude '{0}' from link validation.": "リンクの検証から '{0}' を除外します。",
+ "Extract to link definition": "リンク定義に抽出",
+ "File does not exist at path: {0}": "パスにファイルが存在しません: {0}",
+ "Find file references failed. No resource provided.": "ファイル参照の検索に失敗しました。リソースが指定されていません。",
+ "Finding file references": "ファイル参照の検索中",
+ "Follow link": "リンクをフォロー",
+ "Go to link definition": "リンク定義に移動する",
+ "Header does not exist in file: {0}": "ヘッダーがファイルに存在しません: {0}",
+ "Insert Markdown Audio": "Markdown オーディオの挿入",
+ "Insert Markdown Image": "Markdown 画像の挿入",
+ "Insert Markdown Images": "Markdown 画像の挿入",
+ "Insert Markdown Images and Links": "Markdown 画像とリンクの挿入",
+ "Insert Markdown Link": "Markdown リンクの挿入",
+ "Insert Markdown Links": "Markdown リンクの挿入",
+ "Insert Markdown Media": "Markdown メディアの挿入",
+ "Insert Markdown Media and Images": "Markdown メディアと画像の挿入",
+ "Insert Markdown Media and Links": "Markdown メディアとリンクの挿入",
+ "Insert Markdown Video": "Markdown ビデオの挿入",
+ "Insert image": "画像の挿入",
+ "Insert link": "リンクの挿入",
+ "Link definition for '{0}' already exists": "'{0}' のリンク定義は既に存在します",
+ "Link definition is unused": "リンク定義が使用されていません",
+ "Link is already a reference": "リンクは既に参照されています",
+ "Link is also defined here": "リンクはここでも定義されています",
+ "Link to '# {0}' in '{1}'": "'{1}' の '# {0}' へのリンク",
+ "Link to '{0}'": "'{0}' へのリンク",
+ "Markdown Language Server": "Markdown 言語サーバー",
+ "Markdown link validation disabled": "マークダウン リンクの検証が無効になっています",
+ "Markdown link validation enabled": "マークダウン リンクの検証が有効",
+ "Media": "メディア",
+ "More Information": "詳細情報",
+ "Never": "なし",
+ "No": "いいえ",
+ "No header found: '{0}'": "ヘッダーが見つかりません: '{0}'",
+ "No link definition found: '{0}'": "リンク定義が見つかりません: '{0}'",
+ "Not on link": "リンク上にありません",
+ "Only load secure content": "セキュリティで保護されたコンテンツのみを読み込む",
+ "Paste and update pasted links": "貼り付けられたリンクを貼り付けて更新する",
+ "Potentially unsafe or insecure content has been disabled in the Markdown preview. Change the Markdown preview security setting to allow insecure content or enable scripts": "安全でない可能性があるか保護されていないコンテンツは、Markdown プレビューで無効化されています。保護されていないコンテンツを許可するかスクリプトを有効にするには、Markdown プレビューのセキュリティ設定を変更してください",
+ "Preview {0}": "プレビュー {0}",
+ "Reference link '{0}'": "参照リンク '{0}'",
+ "Remove duplicate link definition": "重複するリンク定義の削除",
+ "Remove unused link definition": "未使用のリンク定義の削除",
+ "Renaming is not supported here. Try renaming a header or link.": "ここでは、名前の変更はサポートされていません。ヘッダーまたはリンクの名前を変更してみてください。",
+ "Select security settings for Markdown previews in this workspace": "ワークスペースのマークダウン プレビューに関するセキュリティ設定を選択",
+ "Some content has been disabled in this document": "このドキュメントで一部のコンテンツが無効になっています",
+ "Strict": "高レベル",
+ "Update Markdown links for '{0}'?": "'{0}' のマークダウン リンクを更新しますか?",
+ "Update Markdown links for the following {0} files?": "次の {0} 個のファイルの Markdown リンクを更新しますか?",
+ "Yes": "はい",
+ "[Preview] {0}": "[プレビュー] {0}",
+ "{0} cannot be found": "{0} が見つかりません"
+ },
+ "package": {
+ "configuration.copyIntoWorkspace.mediaFiles": "外部の画像ファイルとビデオ ファイルをワークスペースにコピーしてみてください。",
+ "configuration.copyIntoWorkspace.never": "外部ファイルをワークスペースにコピーしないでください。",
+ "configuration.markdown.copyFiles.destination": "コピー/貼り付けまたはドラッグ アンド ドロップによって作成されたファイルのパスとファイル名を構成します。これは、新しいファイルを作成するターゲット パスへの Markdown ドキュメント パスと一致する glob のマップです。\r\n\r\nターゲット パスでは次の変数を使用できます:\r\n\r\n- `${documentDirName}` — Markdown ドキュメントの親ディレクトリの絶対パス。例: `/Users/me/myProject/docs`。\r\n- `${documentRelativeDirName}` — Markdown ドキュメントの親ディレクトリの相対パス。例: `docs`。ファイルがワークスペースに含まれていない場合、これは `${documentDirName}` と同じです。\r\n- `${documentFileName}` — Markdown ドキュメントの完全なファイル名 (例: `README.md`)。\r\n- `${documentBaseName}` — Markdown ドキュメントのベース名 (例: `README`)。\r\n- `${documentExtName}` — Markdown ドキュメントの拡張子 (例: `md`)。\r\n- `${documentFilePath}` — Markdown ドキュメントの絶対パス (例: `/Users/me/myProject/docs/README.md`)。\r\n- `${documentRelativeFilePath}` — Markdown ドキュメントの相対パス (例: `docs/README.md`)。ファイルがワークスペースに含まれていない場合、これは `${documentFilePath}` と同じです。\r\n- `${documentWorkspaceFolder}` — Markdown ドキュメントのワークスペース フォルダー (例: `/Users/me/myProject`)。ファイルがワークスペースに含まれていない場合、これは `${documentDirName}` と同じです。\r\n- `${fileName}` — ドロップされたファイルのファイル名 (例: `image.png`)。\r\n- `${fileExtName}` — ドロップされたファイルの拡張子 (例: `png`)。\r\n- '${unixTime}' — 現在の Unix タイムスタンプ (ミリ秒)。\r\n- '${isoTime}' — ISO 8601 形式の現在の時刻 (例: '2025-06-06T08:40:32.123Z')。",
+ "configuration.markdown.copyFiles.overwriteBehavior": "ドロップまたは貼り付けによって作成されたファイルが既存のファイルを上書きするかどうかを制御します。",
+ "configuration.markdown.copyFiles.overwriteBehavior.nameIncrementally": "同じ名前のファイルが既に存在する場合は、ファイル名に番号を追加します。たとえば、`image.png` は `image-1.png` になります。",
+ "configuration.markdown.copyFiles.overwriteBehavior.overwrite": "同じ名前のファイルが既に存在する場合は、上書きします。",
+ "configuration.markdown.editor.drop.copyIntoWorkspace": "Markdown エディターにドロップされたワークスペースの外部のファイルをワークスペースにコピーするかどうかを制御します。\r\n\r\n`#markdown.copyFiles.destination#` を使用して、コピーしたドロップされたファイルを作成する場所を構成します",
+ "configuration.markdown.editor.drop.enabled": "Shift キーを押しながら Markdown editor へのドロップを有効にします。`#editor.dropIntoEditor.enabled#` を有効にする必要があります。",
+ "configuration.markdown.editor.drop.enabled.always": "Markdown リンクを常に挿入します。",
+ "configuration.markdown.editor.drop.enabled.never": "Markdown リンクを作成しません。",
+ "configuration.markdown.editor.drop.enabled.smart": "コード ブロックやその他の特殊な要素にドロップしなかった場合に、既定で Markdown リンクをスマートに作成します。プレーン テキストとしての貼り付けと、Markdown リンクとしての貼り付けを切り替えるには、ドロップ ウィジェットを使用します。",
+ "configuration.markdown.editor.filePaste.audioSnippet": "Markdown にオーディオを追加する際に使用されるスニペット。このスニペットでは、次の変数を使用できます。\r\n- `${src}` — オーディオ ファイルの解決されたパス。\r\n- `${title}` — オーディオで使用されるタイトル。スニペット プレースホルダーは、この変数用に自動的に作成されます。",
+ "configuration.markdown.editor.filePaste.copyIntoWorkspace": "Markdown エディターに貼り付けられたワークスペースの外部のファイルをワークスペースにコピーするかどうかを制御します。\r\n\r\n`#markdown.copyFiles.destination#` を使用して、コピーされたファイルを作成する場所を構成します。",
+ "configuration.markdown.editor.filePaste.enabled": "Markdown エディターへのファイルの貼り付け機能を有効にして、Markdown リンクを作成します。`#editor.pasteAs.enabled#` を有効にする必要があります。",
+ "configuration.markdown.editor.filePaste.enabled.always": "Markdown リンクを常に挿入します。",
+ "configuration.markdown.editor.filePaste.enabled.never": "Markdown リンクを作成しません。",
+ "configuration.markdown.editor.filePaste.enabled.smart": "コード ブロックやその他の特殊な要素に貼り付けなかった場合に、既定で Markdown リンクをスマートに作成します。貼り付けウィジェットを使用して、プレーン テキストとして貼り付けるか、Markdown リンクとして貼り付けるかを切り替えます。",
+ "configuration.markdown.editor.filePaste.videoSnippet": "Markdown にビデオを追加する際に使用されるスニペット。このスニペットでは、次の変数を使用できます。\r\n- `${src}` — ビデオ ファイルの解決されたパス。\r\n- `${title}` — ビデオで使用されるタイトル。スニペット プレースホルダーは、この変数用に自動的に作成されます。",
+ "configuration.markdown.editor.pasteUrlAsFormattedLink.enabled": "URL を Markdown エディターに貼り付けるときに Markdown リンクを作成するかどうかを制御します。`#editor.pasteAs.enabled#` を有効にする必要があります。",
+ "configuration.markdown.editor.updateLinksOnPaste.enabled": "Markdown エディター間でコピーして貼り付けたテキスト内のリンクと参照を更新する貼り付けオプションを有効または無効にします。\r\n\r\nこの機能を使用するには、更新可能なリンクを含むテキストを貼り付けた後、貼り付けウィジェットをクリックし、[貼り付けと貼り付けたリンクを更新] を選択します。",
+ "configuration.markdown.links.openLocation.beside": "アクティブなエディターの横にあるリンクを開きます。",
+ "configuration.markdown.links.openLocation.currentGroup": "アクティブなエディター グループ内にリンクを開きます。",
+ "configuration.markdown.links.openLocation.description": "マークダウン ファイル内のリンクを開く場所を制御します。",
+ "configuration.markdown.occurrencesHighlight.enabled": "現在のドキュメント内のリンクの出現箇所を強調表示する機能を有効にします。",
+ "configuration.markdown.preferredMdPathExtensionStyle": "Markdown ファイルへのリンクに対してファイル拡張子 (例えば '.md') を追加するかどうかを制御します。この設定は、パス補完やファイル名の変更などのツールによってファイル パスが追加されるときに使用されます。",
+ "configuration.markdown.preferredMdPathExtensionStyle.auto": "既存のパスの場合は、ファイル拡張子のスタイルを維持してみてください。新しいパスの場合は、ファイル拡張子を追加します。",
+ "configuration.markdown.preferredMdPathExtensionStyle.includeExtension": "ファイル拡張子を含めます。たとえば、'file.md' という名前のファイルへのパス補完では、'file.md' が挿入されます。",
+ "configuration.markdown.preferredMdPathExtensionStyle.removeExtension": "ファイル拡張子の削除を優先します。たとえば、'file.md' という名前のファイルへのパス補完では、'.md' なしで 'file' が挿入されます。",
+ "configuration.markdown.preview.openMarkdownLinks.description": "Markdown プレビューで他のマークダウン ファイルへのリンクを開く方法を制御します。",
+ "configuration.markdown.preview.openMarkdownLinks.inEditor": "エディターでリンクを開こうとします。",
+ "configuration.markdown.preview.openMarkdownLinks.inPreview": "Markdown プレビューでリンクを開こうとします。",
+ "configuration.markdown.suggest.paths.enabled.description": "Markdown ファイルへのリンクの書き込み中にパス候補を有効にします。",
+ "configuration.markdown.suggest.paths.includeWorkspaceHeaderCompletions": "現在のワークスペース内の他のマークダウン ファイルのヘッダーの候補を有効にします。これらの候補のいずれかを受け入れることで、そのファイルのヘッダーへの完全なパスが挿入されます。例: `[link text](/path/to/file.md#header)`。",
+ "configuration.markdown.suggest.paths.includeWorkspaceHeaderCompletions.never": "ワークスペース ヘッダーの候補を無効にします。",
+ "configuration.markdown.suggest.paths.includeWorkspaceHeaderCompletions.onDoubleHash": "パスに 「##」と入力した後にワークスペース ヘッダーの候補を有効にします。例: `[link text](##`。",
+ "configuration.markdown.suggest.paths.includeWorkspaceHeaderCompletions.onSingleOrDoubleHash": "パスに 「##」 または 「#」 と入力した後、ワークスペース ヘッダー候補を有効にします。例: `[link text](#` または `[link text](##`。",
+ "configuration.markdown.updateLinksOnFileMove.enableForDirectories": "ワークスペースでディレクトリが移動または名前変更されたときにリンクの更新を有効にします。",
+ "configuration.markdown.updateLinksOnFileMove.enabled": "ワークスペースでファイルの名前が変更または移動されたときに、Markdown ファイルのリンクを更新してみてください。`#markdown.updateLinksOnFileMove.include#` を使用して、リンクの更新をトリガーするファイルを構成します。",
+ "configuration.markdown.updateLinksOnFileMove.enabled.always": "常にリンクを自動的に更新します。",
+ "configuration.markdown.updateLinksOnFileMove.enabled.never": "リンクを更新しようとせず、メッセージを表示しません。",
+ "configuration.markdown.updateLinksOnFileMove.enabled.prompt": "ファイルを移動するときに確認メッセージを表示します。",
+ "configuration.markdown.updateLinksOnFileMove.include": "リンクの自動更新をトリガーするファイルを指定する glob パターン。この機能の詳細については、`#markdown.updateLinksOnFileMove.enabled#` を参照してください。",
+ "configuration.markdown.updateLinksOnFileMove.include.property": "ファイル パスの照合基準となる glob パターン。これを true に設定すると、パターンが有効になります。",
+ "configuration.markdown.validate.duplicateLinkDefinitions.description": "現在のファイル内の重複した定義を検証します。",
+ "configuration.markdown.validate.enabled.description": "Markdown ファイル内のすべてのエラー報告を有効にします。",
+ "configuration.markdown.validate.fileLinks.enabled.description": "Markdown ファイルに含まれる、他のファイルへのリンクを検証します (例: `[link](/path/to/file.md)`)。これを指定すると、ターゲット ファイルが存在するかどうかが確認されます。`#markdown.validate.enabled#` を有効にする必要があります。",
+ "configuration.markdown.validate.fileLinks.markdownFragmentLinks.description": "Markdown ファイルに含まれる、他のファイルのヘッダーへのリンクのフラグメント部分を検証します (例: `[link](/path/to/file.md#header)`)。既定では、`#markdown.validate.fragmentLinks.enabled#` から設定値を継承します。",
+ "configuration.markdown.validate.fragmentLinks.enabled.description": "現在の Markdown ファイルに含まれるヘッダーへのフラグメント リンクを検証します (例: `[link](#header)`)。`#markdown.validate.enabled#` を有効にする必要があります。",
+ "configuration.markdown.validate.ignoredLinks.description": "検証しないリンクを構成します。たとえば、'/about' を追加すると、リンク '[about](/about)' は検証されなくなります。glob '/assets/**/*.svg' を指定すると、'assets' ディレクトリの下にある '.svg' ファイルへのリンクの検証をスキップできます。",
+ "configuration.markdown.validate.referenceLinks.enabled.description": "Markdown ファイル内の参照リンクを検証します (例: `[link][ref]`)。`#markdown.validate.enabled#` を有効にする必要があります。",
+ "configuration.markdown.validate.unusedLinkDefinitions.description": "現在のファイルで使用されていないリンク定義を検証します。",
+ "configuration.pasteUrlAsFormattedLink.always": "Markdown リンクを常に挿入します。",
+ "configuration.pasteUrlAsFormattedLink.never": "Markdown リンクを作成しません。",
+ "configuration.pasteUrlAsFormattedLink.smart": "コード ブロックやその他の特殊な要素に貼り付けなかった場合に、既定で Markdown リンクをスマートに作成します。貼り付けウィジェットを使用して、プレーン テキストとして貼り付けるか、Markdown リンクとして貼り付けるかを切り替えます。",
+ "configuration.pasteUrlAsFormattedLink.smartWithSelection": "テキストが選択された状態で、コード ブロックやその他の特別な要素への貼り付けを行なっていない場合は、デフォルトで Markdown リンクをスマートに作成します。プレーン テキストとしての貼り付けと、Markdown リンクとしての貼り付けを切り替えるには、貼り付けウィジェットを使用します。",
+ "description": "Markdown に豊富な言語サポートを提供。",
+ "displayName": "Markdown 言語機能",
+ "markdown.copyImage.title": "画像のコピー",
+ "markdown.editor.insertImageFromWorkspace": "ワークスペースから画像を挿入",
+ "markdown.editor.insertLinkFromWorkspace": "ワークスペース内のファイルへリンクの挿入",
+ "markdown.findAllFileReferences": "ファイル参照の検索",
+ "markdown.openImage.title": "画像を開く",
+ "markdown.preview.breaks.desc": "Markdown プレビューでの改行のレンダリング方法を設定します。これを 'true' に設定すると、段落内の改行の ' ' が作成されます。",
+ "markdown.preview.doubleClickToSwitchToEditor.desc": "Markdown プレビューでダブルクリックすると、エディターに切り替わります。",
+ "markdown.preview.fontFamily.desc": "Markdown プレビューで使用されるフォント ファミリを制御します。",
+ "markdown.preview.fontSize.desc": "Markdown プレビューで使用されるフォント サイズ (ピクセル単位) を制御します。",
+ "markdown.preview.lineHeight.desc": "Markdown プレビューで使用される行の高さを制御します。この数値はフォント サイズを基準とします。",
+ "markdown.preview.linkify": "Markdown プレビューで、URL 形式のテキストをリンクに変換します。",
+ "markdown.preview.markEditorSelection.desc": "Markdown プレビューに、エディターの現在の選択範囲を示すマークが付きます。",
+ "markdown.preview.refresh.title": "プレビューを更新",
+ "markdown.preview.scrollEditorWithPreview.desc": "Markdown プレビューをスクロールすると、エディターのビューが更新されます。",
+ "markdown.preview.scrollPreviewWithEditor.desc": "Markdown エディターをスクロールすると、プレビューのビューが更新されます。",
+ "markdown.preview.title": "プレビューを開く",
+ "markdown.preview.toggleLock.title": "プレビュー ロックの切り替え",
+ "markdown.preview.typographer": "Markdown プレビューで、特定の言語に依存しない置換と引用符の美化を有効にします。",
+ "markdown.previewSide.title": "プレビューを横に表示",
+ "markdown.server.log.desc": "Markdown 言語サーバーのログ レベルを制御します。",
+ "markdown.showLockedPreviewToSide.title": "ロックされたプレビューを横に表示",
+ "markdown.showPreviewSecuritySelector.title": "プレビュー のセキュリティ設定を変更",
+ "markdown.showSource.title": "ソースの表示",
+ "markdown.styles.dec": "Markdown プレビューから使用する CSS スタイル シートへの URL またはローカル パスの一覧。相対パスは、エクスプローラーで開いているフォルダーを基準に解釈されます。開いているフォルダーがない場合は、Markdown ファイルの場所を基準にして解釈されます。すべての '\\' は '\\\\' として記述する必要があります。",
+ "markdown.trace.extension.desc": "Markdown 拡張機能のデバッグ ログを有効にします。",
+ "markdown.trace.server.desc": "VS Code と Markdown 言語サーバー間の通信をトレースします。",
+ "workspaceTrust": "ワークスペースに構成されているスタイルを読み込むのに必要です。"
+ }
+ }
+}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-ja/translations/extensions/vscode.markdown-math.i18n.json b/i18n/vscode-language-pack-ja/translations/extensions/vscode.markdown-math.i18n.json
new file mode 100644
index 0000000000..9099b991da
--- /dev/null
+++ b/i18n/vscode-language-pack-ja/translations/extensions/vscode.markdown-math.i18n.json
@@ -0,0 +1,18 @@
+{
+ "": [
+ "--------------------------------------------------------------------------------------------",
+ "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."
+ ],
+ "version": "1.0.0",
+ "contents": {
+ "package": {
+ "config.markdown.math.enabled": "組み込みのマークダウン プレビューでの数式のレンダリングを有効/無効にします。",
+ "config.markdown.math.macros": "カスタム マクロのコレクションです。各マクロはキーと値のペアであり、キーは新しいコマンド名、値はマクロの展開形です。",
+ "description": "ノートブックのマークダウンに数式サポートを追加します。",
+ "displayName": "Markdown 数式"
+ }
+ }
+}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-ja/translations/extensions/vscode.markdown.i18n.json b/i18n/vscode-language-pack-ja/translations/extensions/vscode.markdown.i18n.json
index dcb293fd06..4a44865a91 100644
--- a/i18n/vscode-language-pack-ja/translations/extensions/vscode.markdown.i18n.json
+++ b/i18n/vscode-language-pack-ja/translations/extensions/vscode.markdown.i18n.json
@@ -9,8 +9,8 @@
"version": "1.0.0",
"contents": {
"package": {
- "displayName": "Markdown の基本言語サポート",
- "description": "Markdown のスニペット、構文ハイライトを提供します。"
+ "description": "Markdown のスニペット、構文ハイライトを提供します。",
+ "displayName": "Markdown の基本言語サポート"
}
}
}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-ja/translations/extensions/vscode.media-preview.i18n.json b/i18n/vscode-language-pack-ja/translations/extensions/vscode.media-preview.i18n.json
new file mode 100644
index 0000000000..9a977b3b5f
--- /dev/null
+++ b/i18n/vscode-language-pack-ja/translations/extensions/vscode.media-preview.i18n.json
@@ -0,0 +1,42 @@
+{
+ "": [
+ "--------------------------------------------------------------------------------------------",
+ "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."
+ ],
+ "version": "1.0.0",
+ "contents": {
+ "bundle": {
+ "An error occurred while loading the audio file.": "オーディオ ファイルの読み込み中にエラーが発生しました。",
+ "An error occurred while loading the image.": "イメージの読み込み中にエラーが発生しました。",
+ "An error occurred while loading the video file.": "ビデオ ファイルの読み込み中にエラーが発生しました。",
+ "Image Binary Size": "イメージ バイナリ サイズ",
+ "Image Size": "イメージ サイズ",
+ "Image Zoom": "イメージのズーム",
+ "Open file using VS Code's standard text/binary editor?": "VS Code の標準テキストまたはバイナリ エディターを使用してファイルを開きますか?",
+ "Select zoom level": "ズーム レベルの選択",
+ "Whole Image": "画像全体",
+ "{0}B": "{0}B",
+ "{0}GB": "{0}GB",
+ "{0}KB": "{0}KB",
+ "{0}MB": "{0}MB",
+ "{0}TB": "{0}TB"
+ },
+ "package": {
+ "command.copyImage": "コピー",
+ "command.reopenAsPreview": "画像プレビューとして開き直す",
+ "command.reopenAsText": "ソース テキストとして開き直す",
+ "command.zoomIn": "拡大",
+ "command.zoomOut": "縮小",
+ "customEditor.audioPreview.displayName": "オーディオ プレビュー",
+ "customEditor.imagePreview.displayName": "画像プレビュー",
+ "customEditor.videoPreview.displayName": "ビデオ プレビュー",
+ "description": "画像、オーディオ、ビデオの VS Code の組み込みプレビューを提供します",
+ "displayName": "メディア プレビュー",
+ "videoPreviewerAutoPlay": "ミュート時にビデオの再生を自動的に開始します。",
+ "videoPreviewerLoop": "ビデオを自動的にループさせます。"
+ }
+ }
+}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-ja/translations/extensions/vscode.merge-conflict.i18n.json b/i18n/vscode-language-pack-ja/translations/extensions/vscode.merge-conflict.i18n.json
new file mode 100644
index 0000000000..8889fdc8b0
--- /dev/null
+++ b/i18n/vscode-language-pack-ja/translations/extensions/vscode.merge-conflict.i18n.json
@@ -0,0 +1,49 @@
+{
+ "": [
+ "--------------------------------------------------------------------------------------------",
+ "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."
+ ],
+ "version": "1.0.0",
+ "contents": {
+ "bundle": {
+ "(Current Change)": "(現在の変更)",
+ "(Incoming Change)": "(入力側の変更)",
+ "Accept Both Changes": "両方の変更を取り込む",
+ "Accept Current Change": "現在の変更を取り込む",
+ "Accept Incoming Change": "入力側の変更を取り込む",
+ "Compare Changes": "変更の比較",
+ "Editor cursor is not within a merge conflict": "エディターのカーソルがマージの競合の範囲内にありません",
+ "Editor cursor is within the common ancestors block, please move it to either the \"current\" or \"incoming\" block": "エディターのカーソルが共通の祖先ブロック内にあります。”現在” または \"入力側\" のいずれかのブロックに移動してください",
+ "Editor cursor is within the merge conflict splitter, please move it to either the \"current\" or \"incoming\" block": "エディターのカーソルがマージ コンフリクトのスプリッター内にあります。”現在” または \"入力側\" のいずれかのブロックに移動してください",
+ "No merge conflicts found in this file": "このファイルにマージの競合は存在しません",
+ "No other merge conflicts within this file": "このファイルに他のマージの競合は存在しません",
+ "{0}: Current Changes ↔ Incoming Changes": "{0}: 現在の変更 ⟷ 入力側の変更"
+ },
+ "package": {
+ "command.accept.all-both": "両方をすべて取り込む",
+ "command.accept.all-current": "現在の方をすべて取り込む",
+ "command.accept.all-incoming": "入力側のすべてを取り込む",
+ "command.accept.both": "両方を取り込む",
+ "command.accept.current": "現在の方を取り込む",
+ "command.accept.incoming": "入力側を取り込む",
+ "command.accept.selection": "選択項目を取り込む",
+ "command.category": "マージの競合",
+ "command.compare": "現在の競合を比較",
+ "command.next": "次の競合",
+ "command.previous": "前の競合",
+ "config.autoNavigateNextConflictEnabled": "マージ競合を解決した後で、次のマージの競合に自動的に移動するかどうか。",
+ "config.codeLensEnabled": "エディター内のマージ競合ブロックのコード レンズを作成します。",
+ "config.decoratorsEnabled": "エディター内のマージ競合ブロック用デコレータを作成します。",
+ "config.diffViewPosition": "マージの競合の変更を比較するときに、差分ビューを開く場所を制御します。",
+ "config.diffViewPosition.below": "現在のエディター グループの下にある差分ビューを開きます。",
+ "config.diffViewPosition.beside": "現在のエディター グループの隣に差分ビューを開きます。",
+ "config.diffViewPosition.current": "現在のエディター グループで差分ビューを開きます。",
+ "config.title": "マージの競合",
+ "description": "行内マージ競合のハイライト、コマンドを提供します。",
+ "displayName": "マージの競合"
+ }
+ }
+}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-ja/translations/extensions/vscode.mermaid-chat-features.i18n.json b/i18n/vscode-language-pack-ja/translations/extensions/vscode.mermaid-chat-features.i18n.json
new file mode 100644
index 0000000000..c487c71a9d
--- /dev/null
+++ b/i18n/vscode-language-pack-ja/translations/extensions/vscode.mermaid-chat-features.i18n.json
@@ -0,0 +1,17 @@
+{
+ "": [
+ "--------------------------------------------------------------------------------------------",
+ "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."
+ ],
+ "version": "1.0.0",
+ "contents": {
+ "package": {
+ "config.enabled.description": "チャット応答で実験用の Mermaid ダイアグラム レンダリング用のツールを有効にします。",
+ "description": "組み込みのチャットに、Mermaid ダイアグラムのサポートを追加します。",
+ "displayName": "Mermaid チャット機能"
+ }
+ }
+}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-ja/translations/extensions/vscode.microsoft-authentication.i18n.json b/i18n/vscode-language-pack-ja/translations/extensions/vscode.microsoft-authentication.i18n.json
new file mode 100644
index 0000000000..71de222250
--- /dev/null
+++ b/i18n/vscode-language-pack-ja/translations/extensions/vscode.microsoft-authentication.i18n.json
@@ -0,0 +1,51 @@
+{
+ "": [
+ "--------------------------------------------------------------------------------------------",
+ "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."
+ ],
+ "version": "1.0.0",
+ "contents": {
+ "bundle": {
+ "Copy & Continue to Microsoft": "コピーして Microsoft に進む",
+ "Error validating custom environment setting: {0}": "カスタム環境設定の検証中にエラーが発生しました: {0}",
+ "Having trouble logging in? Would you like to try a different way? ({0})": "ログインでお困りですか? 別の方法を試しますか? ({0})",
+ "Microsoft Account configuration has been changed.": "Microsoft アカウントの構成が変更されました。",
+ "Microsoft Authentication": "Microsoft 認証",
+ "Microsoft Sovereign Cloud Authentication": "Microsoft ソブリン クラウド認証",
+ "No": "いいえ",
+ "Open [{0}]({0}) in a new tab and paste your one-time code: {1}/The [{0}]({0}) will be a url and the {1} will be a code, e.g. 123456{Locked=\"[{0}]({0})\"}": "新しいタブで [{0}]({0}) を開き、ワンタイム コードを貼り付けます: {1}",
+ "Open settings": "設定を開く",
+ "Reload": "再度読み込む",
+ "Signing in to Microsoft...": "Microsoft にサインインしています...",
+ "The environment `{0}` is not a valid environment.": "環境 '{0}' は有効な環境ではありません。",
+ "To finish authenticating, navigate to Microsoft and paste in the above one-time code.": "認証を完了するには、Microsoft に移動し、上記のワンタイム コードを貼り付けます。",
+ "Yes": "はい",
+ "You have not yet finished authorizing this extension to use your Microsoft Account. Would you like to try a different way? ({0})": "Microsoft アカウントを使用するためのこの拡張機能の承認がまだ完了していません。別の方法を試しますか? ({0})",
+ "You must also specify a custom environment in order to use the custom environment auth provider.": "カスタム環境認証プロバイダーを使用するには、カスタム環境も指定する必要があります。",
+ "Your Code: {0}/The {0} will be a code, e.g. 123-456": "コード: {0}"
+ },
+ "package": {
+ "description": "Microsoft 認証プロバイダー",
+ "displayName": "Microsoft アカウント",
+ "microsoft-authentication.implementation.description": "Microsoft アカウントでサインインするために使用する認証の実装です。",
+ "microsoft-authentication.implementation.enumDescriptions.msal": "Microsoft 認証ライブラリ (MSAL) を使用して、Microsoft アカウントでサインインします。",
+ "microsoft-authentication.implementation.enumDescriptions.msal-no-broker": "Microsoft 認証ライブラリ (MSAL) を使用して、ブラウザーを介して Microsoft アカウントにサインインします。これは、ネイティブ ブローカーに問題がある場合に便利です。",
+ "microsoft-sovereign-cloud.customEnvironment.activeDirectoryEndpointUrl.description": "カスタム ソブリン クラウドの Active Directory エンドポイント。",
+ "microsoft-sovereign-cloud.customEnvironment.activeDirectoryResourceId.description": "カスタム ソブリン クラウドの Active Directory リソース ID。",
+ "microsoft-sovereign-cloud.customEnvironment.description": "Microsoft ソブリン クラウド認証プロバイダーで使用するソブリン クラウドのカスタム構成です。この機能を使用するには、これと、`#microsoft-sovereign-cloud.environment#` を 'custom' に設定することが必要です。",
+ "microsoft-sovereign-cloud.customEnvironment.managementEndpointUrl.description": "カスタム ソブリン クラウドの管理エンドポイント。",
+ "microsoft-sovereign-cloud.customEnvironment.name.description": "カスタム ソブリン クラウドの名前。",
+ "microsoft-sovereign-cloud.customEnvironment.portalUrl.description": "カスタム ソブリン クラウドのポータル URL。",
+ "microsoft-sovereign-cloud.customEnvironment.resourceManagerEndpointUrl.description": "カスタム ソブリン クラウドのリソース マネージャー エンドポイント。",
+ "microsoft-sovereign-cloud.environment.description": "認証に使用するソブリン クラウドです。`custom` を選択した場合は、`#microsoft-sovereign-cloud.customEnvironment#` も設定する必要があります。",
+ "microsoft-sovereign-cloud.environment.enumDescriptions.AzureChinaCloud": "Azure China",
+ "microsoft-sovereign-cloud.environment.enumDescriptions.AzureUSGovernment": "Azure US Government",
+ "microsoft-sovereign-cloud.environment.enumDescriptions.custom": "カスタム Microsoft ソブリン クラウド",
+ "signIn": "サインイン",
+ "signOut": "サインアウト"
+ }
+ }
+}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-ja/translations/extensions/vscode.npm.i18n.json b/i18n/vscode-language-pack-ja/translations/extensions/vscode.npm.i18n.json
new file mode 100644
index 0000000000..594363b204
--- /dev/null
+++ b/i18n/vscode-language-pack-ja/translations/extensions/vscode.npm.i18n.json
@@ -0,0 +1,127 @@
+{
+ "": [
+ "--------------------------------------------------------------------------------------------",
+ "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."
+ ],
+ "version": "1.0.0",
+ "contents": {
+ "bundle": {
+ "Could not find a valid npm script at the selection.": "選択範囲に有効な npm スクリプトを見つけられませんでした。",
+ "Debug": "デバッグ",
+ "Debug Script": "スクリプトをデバッグする",
+ "Default package.json": "既定の package.json",
+ "Do not show again": "今後表示しない",
+ "Latest version: {0}": "最新バージョン: {0}",
+ "Latest version: {0} published {1}": "最新バージョン: {0}公開済み{1}",
+ "Learn more": "詳細情報",
+ "Matches the most recent major version (1.x.x)": "最新のメジャー バージョン (1.x.x) と一致",
+ "Matches the most recent minor version (1.2.x)": "最新のマイナー バージョン (1.2.x) と一致",
+ "No scripts found.": "スクリプトが見つかりません。",
+ "Npm task detection: failed to parse the file {0}": "npm タスク検出: ファイル {0} を解析できませんでした",
+ "Request to the NPM repository failed: {0}": "NPM リポジトリに対する要求が失敗しました: {0}",
+ "Run Script": "スクリプトを実行",
+ "Run the script as a task": "スクリプトをタスクとして実行する",
+ "Runs the script under the debugger": "デバッガーでスクリプトを実行する",
+ "The currently latest version of the package": "パッケージの現在の最新バージョン",
+ "The setting \"npm.autoDetect\" is \"off\".": "\"npm.autoDetect\" の設定は \"オフ\"です。",
+ "Using {0} as the preferred package manager. Found multiple lockfiles for {1}. To resolve this issue, delete the lockfiles that don't match your preferred package manager or change the setting \"npm.packageManager\" to a value other than \"auto\".": "{0} を優先パッケージ マネージャーとして使用しています。{1} に対する複数のロック ファイルが見つかりました。 この問題を解決するには、優先パッケージ マネージャーと一致しないロック ファイルを削除するか、設定 \"npm.packageManager\" を \"auto\" 以外の値に変更してください。",
+ "in {0}": "{0} 内",
+ "now": "現在",
+ "{0} day": "{0} 日",
+ "{0} day ago": "{0} 日前",
+ "{0} days": "{0} 日",
+ "{0} days ago": "{0} 日前",
+ "{0} hour": "{0} 時間",
+ "{0} hour ago": "{0} 時間前",
+ "{0} hours": "{0} 時間",
+ "{0} hours ago": "{0} 時間前",
+ "{0} hr": "{0} 時間",
+ "{0} hr ago": "{0} 時間前",
+ "{0} hrs": "{0} 時間",
+ "{0} hrs ago": "{0} 時間前",
+ "{0} min": "{0} 分",
+ "{0} min ago": "{0} 分前",
+ "{0} mins": "{0} 分",
+ "{0} mins ago": "{0} 分前",
+ "{0} minute": "{0} 分",
+ "{0} minute ago": "{0} 分前",
+ "{0} minutes": "{0} 分",
+ "{0} minutes ago": "{0} 分前",
+ "{0} mo": "{0} 月",
+ "{0} mo ago": "{0} か月前",
+ "{0} month": "{0} か月",
+ "{0} month ago": "{0} か月前",
+ "{0} months": "{0} か月",
+ "{0} months ago": "{0} か月前",
+ "{0} mos": "{0} か月",
+ "{0} mos ago": "{0} か月前",
+ "{0} sec": "{0} 秒",
+ "{0} sec ago": "{0} 秒前",
+ "{0} second": "{0} 秒",
+ "{0} second ago": "{0} 秒前",
+ "{0} seconds": "{0} 秒",
+ "{0} seconds ago": "{0} 秒前",
+ "{0} secs": "{0} 秒",
+ "{0} secs ago": "{0} 秒前",
+ "{0} week": "{0} 週",
+ "{0} week ago": "{0} 週間前",
+ "{0} weeks": "{0} 週間",
+ "{0} weeks ago": "{0} 週間前",
+ "{0} wk": "{0} 週間",
+ "{0} wk ago": "{0} 週間前",
+ "{0} wks": "{0} 週間",
+ "{0} wks ago": "{0} 週間前",
+ "{0} year": "{0} 年",
+ "{0} year ago": "{0} 年前",
+ "{0} years": "{0} 年",
+ "{0} years ago": "{0} 年前",
+ "{0} yr": "{0} 年",
+ "{0} yr ago": "{0} 年前",
+ "{0} yrs": "{0} 年",
+ "{0} yrs ago": "{0} 年前"
+ },
+ "package": {
+ "command.debug": "デバッグ",
+ "command.openScript": "開く",
+ "command.packageManager": "構成されたパッケージ マネージャーの取得",
+ "command.refresh": "最新の情報に更新",
+ "command.run": "実行",
+ "command.runInstall": "インストールを実行",
+ "command.runScriptFromFolder": "フォルダーで NPM スクリプトを実行...",
+ "command.runSelectedScript": "スクリプトを実行",
+ "config.npm.autoDetect": "npm スクリプトを自動的に検出するかどうかを制御します。",
+ "config.npm.enableRunFromFolder": "エクスプローラー コンテキスト メニューから、フォルダーに含まれる NPM スクリプトの実行を有効にします。",
+ "config.npm.enableScriptExplorer": "最上位の 'package.json' ファイルがない場合は、npm スクリプトのエクスプローラー ビューを有効にします。",
+ "config.npm.exclude": "自動スクリプト検出から除外するフォルダーの glob パターンを構成します。",
+ "config.npm.fetchOnlinePackageInfo": "https://registry.npmjs.org および https://registry.bower.io からデータをフェッチして、npm 依存関係に対してオート コンプリートとホバー機能に関する情報を提供します。",
+ "config.npm.packageManager": "依存関係のインストールに使用されるパッケージ マネージャーです。",
+ "config.npm.packageManager.auto": "ロック ファイルとインストールされたパッケージ マネージャーに基づいて、どのパッケージ マネージャーを使用するかを自動検出します。",
+ "config.npm.packageManager.bun": "パッケージ マネージャーとして Bun を使用します。",
+ "config.npm.packageManager.npm": "パッケージ マネージャーとして npm を使用します。",
+ "config.npm.packageManager.pnpm": "パッケージ マネージャーとして pnpm を使用します。",
+ "config.npm.packageManager.yarn": "YARN をパッケージ マネージャーとして使用します。",
+ "config.npm.runSilent": "`--silent` オプションを使用して npm コマンドを実行する。",
+ "config.npm.scriptExplorerAction": "NPM スクリプト エクスプローラーで使用される既定のクリック アクション: `open` または `run`、既定値は `open` です。",
+ "config.npm.scriptExplorerExclude": "NPM スクリプト ビューから除外する必要があるスクリプトを示す正規表現の配列。",
+ "config.npm.scriptHover": "スクリプトの [実行] と [デバッグ] コマンドでホバーを表示します。",
+ "config.npm.scriptRunner": "スクリプトの実行に使用されるスクリプト ランナーです。",
+ "config.npm.scriptRunner.auto": "ロック ファイルとインストールされたパッケージ マネージャーに基づいて、どのスクリプト ランナーを使用するかを自動検出します。",
+ "config.npm.scriptRunner.bun": "筆記体ランナーとしてパンを使用します。",
+ "config.npm.scriptRunner.node": "Node.js をスクリプト ランナーとして使用します。",
+ "config.npm.scriptRunner.npm": "スクリプト ランナーとして npm を使用します。",
+ "config.npm.scriptRunner.pnpm": "スクリプト ランナーとして pnpm を使用します。",
+ "config.npm.scriptRunner.yarn": "スクリプト ランナーとして yarn を使用します。",
+ "description": "npm スクリプトのタスクサポートを追加する拡張",
+ "displayName": "VS Code の npm サポート",
+ "npm.parseError": "npm タスク検出: ファイル {0} を解析できませんでした",
+ "taskdef.path": "スクリプトを提供する package.json ファイルのフォルダー パス。省略できます。",
+ "taskdef.script": "カスタマイズする npm スクリプト。",
+ "view.name": "Npm スクリプト",
+ "virtualWorkspaces": "'npm' コマンドの実行を必要とする機能は、仮想ワークスペースでは使用できません。",
+ "workspaceTrust": "この拡張機能は、実行するために信頼が必要なタスクを実行します。"
+ }
+ }
+}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-ja/translations/extensions/vscode.objective-c.i18n.json b/i18n/vscode-language-pack-ja/translations/extensions/vscode.objective-c.i18n.json
index 36dc840827..71b6d4d5f9 100644
--- a/i18n/vscode-language-pack-ja/translations/extensions/vscode.objective-c.i18n.json
+++ b/i18n/vscode-language-pack-ja/translations/extensions/vscode.objective-c.i18n.json
@@ -9,8 +9,8 @@
"version": "1.0.0",
"contents": {
"package": {
- "displayName": "Objective-C の基本言語サポート",
- "description": "Objective-C ファイル内で構文ハイライト、かっこ一致を提供します。"
+ "description": "Objective-C ファイル内で構文ハイライト、かっこ一致を提供します。",
+ "displayName": "Objective-C の基本言語サポート"
}
}
}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-ja/translations/extensions/vscode.perl.i18n.json b/i18n/vscode-language-pack-ja/translations/extensions/vscode.perl.i18n.json
index 4490cce6dc..025c279993 100644
--- a/i18n/vscode-language-pack-ja/translations/extensions/vscode.perl.i18n.json
+++ b/i18n/vscode-language-pack-ja/translations/extensions/vscode.perl.i18n.json
@@ -9,8 +9,8 @@
"version": "1.0.0",
"contents": {
"package": {
- "displayName": "Perl の基本言語サポート",
- "description": "Perl ファイル内で構文ハイライト、かっこ一致を提供します。"
+ "description": "Perl ファイル内で構文ハイライト、かっこ一致を提供します。",
+ "displayName": "Perl の基本言語サポート"
}
}
}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-ja/translations/extensions/vscode.php-language-features.i18n.json b/i18n/vscode-language-pack-ja/translations/extensions/vscode.php-language-features.i18n.json
new file mode 100644
index 0000000000..ec23b8fb00
--- /dev/null
+++ b/i18n/vscode-language-pack-ja/translations/extensions/vscode.php-language-features.i18n.json
@@ -0,0 +1,31 @@
+{
+ "": [
+ "--------------------------------------------------------------------------------------------",
+ "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."
+ ],
+ "version": "1.0.0",
+ "contents": {
+ "bundle": {
+ "Cannot validate since a PHP installation could not be found. Use the setting 'php.validate.executablePath' to configure the PHP executable.": "PHP のインストールが見つからないため、検証できません。PHP 実行可能ファイルを構成するには、設定 'php.validate.executablePath' を使用します。",
+ "Cannot validate since no PHP executable is set. Use the setting 'php.validate.executablePath' to configure the PHP executable.": "PHP 実行可能ファイルが設定されていないため、検証できません。設定 'php.validate.executablePath' を使用して PHP 実行可能ファイルを構成してください。",
+ "Cannot validate since {0} is not a valid php executable. Use the setting 'php.validate.executablePath' to configure the PHP executable.": "{0} が有効な PHP 実行可能ファイルではないため、検証できません。設定 'php.validate.executablePath' を使用して PHP 実行可能ファイルを構成してください。",
+ "Failed to run php using path: {0}. Reason is unknown.": "パス {0} を使用して php を実行できませんでした。理由は不明です。",
+ "Open Settings": "設定を開く"
+ },
+ "package": {
+ "command.untrustValidationExecutable": "PHP の検証を無効にします (ワークスペース設定として定義)。",
+ "commands.categroy.php": "PHP",
+ "configuration.suggest.basic": "組み込みの PHP 言語候補機能を有効にするかどうかを制御します。このサポートによって、PHP グローバルと変数の候補が示されます。",
+ "configuration.title": "PHP",
+ "configuration.validate.enable": "組み込みの PHP 検証を有効/無効にします。",
+ "configuration.validate.executablePath": "PHP 実行可能ファイルを指定します。",
+ "configuration.validate.run": "リンターを保存時に実行するか、入力時に実行するか。",
+ "description": "PHP ファイルに豊富な言語サポートを提供します。",
+ "displayName": "PHP 言語機能",
+ "workspaceTrust": "'php.validate.executablePath' が設定されている場合は、ワークスペースで PHP のバージョンを読み込むときに、ワークスペースの信頼が必要になります。"
+ }
+ }
+}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-ja/translations/extensions/vscode.php.i18n.json b/i18n/vscode-language-pack-ja/translations/extensions/vscode.php.i18n.json
index 76b718a1f4..11688ada22 100644
--- a/i18n/vscode-language-pack-ja/translations/extensions/vscode.php.i18n.json
+++ b/i18n/vscode-language-pack-ja/translations/extensions/vscode.php.i18n.json
@@ -9,8 +9,8 @@
"version": "1.0.0",
"contents": {
"package": {
- "displayName": "PHP の基本言語サポート",
- "description": "PHP ファイル内に構文ハイライト、かっこ一致を提供します。"
+ "description": "PHP ファイル内に構文ハイライト、かっこ一致を提供します。",
+ "displayName": "PHP の基本言語サポート"
}
}
}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-ja/translations/extensions/vscode.powershell.i18n.json b/i18n/vscode-language-pack-ja/translations/extensions/vscode.powershell.i18n.json
index 8e6b7e016d..7153b61197 100644
--- a/i18n/vscode-language-pack-ja/translations/extensions/vscode.powershell.i18n.json
+++ b/i18n/vscode-language-pack-ja/translations/extensions/vscode.powershell.i18n.json
@@ -9,8 +9,8 @@
"version": "1.0.0",
"contents": {
"package": {
- "displayName": "Powershell の基本言語サポート",
- "description": "Powershell ファイル内でスニペット、構文ハイライト、かっこ一致、折りたたみを提供します。"
+ "description": "Powershell ファイル内でスニペット、構文ハイライト、かっこ一致、折りたたみを提供します。",
+ "displayName": "Powershell の基本言語サポート"
}
}
}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-ja/translations/extensions/vscode.prompt.i18n.json b/i18n/vscode-language-pack-ja/translations/extensions/vscode.prompt.i18n.json
new file mode 100644
index 0000000000..36d7fa9432
--- /dev/null
+++ b/i18n/vscode-language-pack-ja/translations/extensions/vscode.prompt.i18n.json
@@ -0,0 +1,16 @@
+{
+ "": [
+ "--------------------------------------------------------------------------------------------",
+ "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."
+ ],
+ "version": "1.0.0",
+ "contents": {
+ "package": {
+ "description": "プロンプトと指示ドキュメントの構文ハイライト表示。",
+ "displayName": "プロンプト言語の基本"
+ }
+ }
+}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-ja/translations/extensions/vscode.pug.i18n.json b/i18n/vscode-language-pack-ja/translations/extensions/vscode.pug.i18n.json
index 8386448a31..33e569caa0 100644
--- a/i18n/vscode-language-pack-ja/translations/extensions/vscode.pug.i18n.json
+++ b/i18n/vscode-language-pack-ja/translations/extensions/vscode.pug.i18n.json
@@ -9,8 +9,8 @@
"version": "1.0.0",
"contents": {
"package": {
- "displayName": "Pug の基本言語サポート",
- "description": "Pug ファイル内で構文ハイライト、かっこ一致を提供します。"
+ "description": "Pug ファイル内で構文ハイライト、かっこ一致を提供します。",
+ "displayName": "Pug の基本言語サポート"
}
}
}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-ja/translations/extensions/python.i18n.json b/i18n/vscode-language-pack-ja/translations/extensions/vscode.python.i18n.json
similarity index 100%
rename from i18n/vscode-language-pack-ja/translations/extensions/python.i18n.json
rename to i18n/vscode-language-pack-ja/translations/extensions/vscode.python.i18n.json
diff --git a/i18n/vscode-language-pack-ja/translations/extensions/vscode.r.i18n.json b/i18n/vscode-language-pack-ja/translations/extensions/vscode.r.i18n.json
index a358a2567e..28cea46a55 100644
--- a/i18n/vscode-language-pack-ja/translations/extensions/vscode.r.i18n.json
+++ b/i18n/vscode-language-pack-ja/translations/extensions/vscode.r.i18n.json
@@ -9,8 +9,8 @@
"version": "1.0.0",
"contents": {
"package": {
- "displayName": "R の基本言語サポート",
- "description": "R ファイル内で構文ハイライト、かっこ一致を提供します。"
+ "description": "R ファイル内で構文ハイライト、かっこ一致を提供します。",
+ "displayName": "R の基本言語サポート"
}
}
}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-ja/translations/extensions/vscode.razor.i18n.json b/i18n/vscode-language-pack-ja/translations/extensions/vscode.razor.i18n.json
index bd1052e24d..9e853e9460 100644
--- a/i18n/vscode-language-pack-ja/translations/extensions/vscode.razor.i18n.json
+++ b/i18n/vscode-language-pack-ja/translations/extensions/vscode.razor.i18n.json
@@ -9,8 +9,8 @@
"version": "1.0.0",
"contents": {
"package": {
- "displayName": "Razor の基本言語サポート",
- "description": "Razor ファイル内で構文ハイライト、かっこ一致、折りたたみを提供します。"
+ "description": "Razor ファイル内で構文ハイライト、かっこ一致、折りたたみを提供します。",
+ "displayName": "Razor の基本言語サポート"
}
}
}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-ja/translations/extensions/vscode.references-view.i18n.json b/i18n/vscode-language-pack-ja/translations/extensions/vscode.references-view.i18n.json
new file mode 100644
index 0000000000..b0ee40a28d
--- /dev/null
+++ b/i18n/vscode-language-pack-ja/translations/extensions/vscode.references-view.i18n.json
@@ -0,0 +1,61 @@
+{
+ "": [
+ "--------------------------------------------------------------------------------------------",
+ "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."
+ ],
+ "version": "1.0.0",
+ "contents": {
+ "bundle": {
+ "Callers Of": "呼び出し元",
+ "Calls From": "からの呼び出し",
+ "No results.": "結果はありません。",
+ "No results. Try running a previous search again:": "結果はありません。以前の検索をもう一度実行してみてください。",
+ "Open Call": "通話を開く",
+ "Open Reference": "参照を開く",
+ "Open Type": "オープン型",
+ "References": "参照",
+ "Rerun": "再実行",
+ "Select previous reference search": "前の参照検索を選択する",
+ "Subtypes Of": "のサブタイプ",
+ "Supertypes Of": "のスーパータイプ",
+ "{0} result in {1} file": "{1} 個のファイルに {0} 件の結果",
+ "{0} result in {1} files": "{1} 個のファイルに {0} 件の結果",
+ "{0} results in {1} file": "{1} 個のファイルに {0} 件の結果",
+ "{0} results in {1} files": "{1} 個のファイルに {0} 件の結果"
+ },
+ "package": {
+ "cmd.category.references": "参照",
+ "cmd.references-view.clear": "クリア",
+ "cmd.references-view.clearHistory": "履歴のクリア",
+ "cmd.references-view.copy": "コピー",
+ "cmd.references-view.copyAll": "すべてコピー",
+ "cmd.references-view.copyPath": "パスのコピー",
+ "cmd.references-view.findImplementations": "すべての実装の検索",
+ "cmd.references-view.findReferences": "すべての参照を検索",
+ "cmd.references-view.next": "次の参照に移動",
+ "cmd.references-view.pickFromHistory": "履歴を表示する",
+ "cmd.references-view.prev": "前の参照に移動",
+ "cmd.references-view.refind": "再実行",
+ "cmd.references-view.refresh": "最新の情報に更新",
+ "cmd.references-view.removeCallItem": "もどる",
+ "cmd.references-view.removeReferenceItem": "無視",
+ "cmd.references-view.removeTypeItem": "無視",
+ "cmd.references-view.showCallHierarchy": "呼び出し階層の表示",
+ "cmd.references-view.showIncomingCalls": "呼び出し元を表示",
+ "cmd.references-view.showOutgoingCalls": "呼び出し先を表示",
+ "cmd.references-view.showSubtypes": "サブタイプの表示",
+ "cmd.references-view.showSupertypes": "スーパータイプの表示",
+ "cmd.references-view.showTypeHierarchy": "型階層の表示",
+ "config.references.preferredLocation": "CodeLens 参照を選択するときに '参照のクイック表示' または '参照の検索' を呼び出すかどうかを制御します。",
+ "config.references.preferredLocation.peek": "参照をピーク エディターで表示します。",
+ "config.references.preferredLocation.view": "参照を別のビューに表示します。",
+ "container.title": "参照",
+ "description": "サイドバーの独立した安定したビューとして検索結果を参照する",
+ "displayName": "参照検索ビュー",
+ "view.title": "参照検索の結果"
+ }
+ }
+}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-ja/translations/extensions/restructuredtext.i18n.json b/i18n/vscode-language-pack-ja/translations/extensions/vscode.restructuredtext.i18n.json
similarity index 100%
rename from i18n/vscode-language-pack-ja/translations/extensions/restructuredtext.i18n.json
rename to i18n/vscode-language-pack-ja/translations/extensions/vscode.restructuredtext.i18n.json
diff --git a/i18n/vscode-language-pack-ja/translations/extensions/vscode.ruby.i18n.json b/i18n/vscode-language-pack-ja/translations/extensions/vscode.ruby.i18n.json
index 7a416f395a..cf54774fda 100644
--- a/i18n/vscode-language-pack-ja/translations/extensions/vscode.ruby.i18n.json
+++ b/i18n/vscode-language-pack-ja/translations/extensions/vscode.ruby.i18n.json
@@ -9,8 +9,8 @@
"version": "1.0.0",
"contents": {
"package": {
- "displayName": "Ruby の基本言語サポート",
- "description": "Ruby ファイル内で構文ハイライト、かっこ一致を提供します。"
+ "description": "Ruby ファイル内で構文ハイライト、かっこ一致を提供します。",
+ "displayName": "Ruby の基本言語サポート"
}
}
}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-ja/translations/extensions/vscode.rust.i18n.json b/i18n/vscode-language-pack-ja/translations/extensions/vscode.rust.i18n.json
index e80eaa2401..ae4b1d4da5 100644
--- a/i18n/vscode-language-pack-ja/translations/extensions/vscode.rust.i18n.json
+++ b/i18n/vscode-language-pack-ja/translations/extensions/vscode.rust.i18n.json
@@ -9,8 +9,8 @@
"version": "1.0.0",
"contents": {
"package": {
- "displayName": "Rust の基本言語サポート",
- "description": "Rust ファイル内で構文ハイライト、かっこ一致を提供します。"
+ "description": "Rust ファイル内で構文ハイライト、かっこ一致を提供します。",
+ "displayName": "Rust の基本言語サポート"
}
}
}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-ja/translations/extensions/vscode.scss.i18n.json b/i18n/vscode-language-pack-ja/translations/extensions/vscode.scss.i18n.json
index f7582868fc..1361e67f2e 100644
--- a/i18n/vscode-language-pack-ja/translations/extensions/vscode.scss.i18n.json
+++ b/i18n/vscode-language-pack-ja/translations/extensions/vscode.scss.i18n.json
@@ -9,8 +9,8 @@
"version": "1.0.0",
"contents": {
"package": {
- "displayName": "SCSS の基本言語サポート",
- "description": "SCSS ファイル内で構文ハイライト、かっこ一致、折りたたみを提供します。"
+ "description": "SCSS ファイル内で構文ハイライト、かっこ一致、折りたたみを提供します。",
+ "displayName": "SCSS の基本言語サポート"
}
}
}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-ja/translations/extensions/search-result.i18n.json b/i18n/vscode-language-pack-ja/translations/extensions/vscode.search-result.i18n.json
similarity index 100%
rename from i18n/vscode-language-pack-ja/translations/extensions/search-result.i18n.json
rename to i18n/vscode-language-pack-ja/translations/extensions/vscode.search-result.i18n.json
diff --git a/i18n/vscode-language-pack-ja/translations/extensions/vscode.shaderlab.i18n.json b/i18n/vscode-language-pack-ja/translations/extensions/vscode.shaderlab.i18n.json
index 1047d3f0ab..f6cd556072 100644
--- a/i18n/vscode-language-pack-ja/translations/extensions/vscode.shaderlab.i18n.json
+++ b/i18n/vscode-language-pack-ja/translations/extensions/vscode.shaderlab.i18n.json
@@ -9,8 +9,8 @@
"version": "1.0.0",
"contents": {
"package": {
- "displayName": "Shaderlab の基本言語サポート",
- "description": "Shaderlab ファイル内で構文ハイライト、かっこ一致を提供します。"
+ "description": "Shaderlab ファイル内で構文ハイライト、かっこ一致を提供します。",
+ "displayName": "Shaderlab の基本言語サポート"
}
}
}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-ja/translations/extensions/vscode.shellscript.i18n.json b/i18n/vscode-language-pack-ja/translations/extensions/vscode.shellscript.i18n.json
index ab181e6927..997fc413ee 100644
--- a/i18n/vscode-language-pack-ja/translations/extensions/vscode.shellscript.i18n.json
+++ b/i18n/vscode-language-pack-ja/translations/extensions/vscode.shellscript.i18n.json
@@ -9,8 +9,8 @@
"version": "1.0.0",
"contents": {
"package": {
- "displayName": "Shell Script の基本言語サポート",
- "description": "Shell Script ファイル内で構文ハイライト、かっこ一致を提供します。"
+ "description": "Shell Script ファイル内で構文ハイライト、かっこ一致を提供します。",
+ "displayName": "Shell Script の基本言語サポート"
}
}
}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-ja/translations/extensions/vscode.simple-browser.i18n.json b/i18n/vscode-language-pack-ja/translations/extensions/vscode.simple-browser.i18n.json
new file mode 100644
index 0000000000..9e682fa8b7
--- /dev/null
+++ b/i18n/vscode-language-pack-ja/translations/extensions/vscode.simple-browser.i18n.json
@@ -0,0 +1,28 @@
+{
+ "": [
+ "--------------------------------------------------------------------------------------------",
+ "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."
+ ],
+ "version": "1.0.0",
+ "contents": {
+ "bundle": {
+ "Back": "戻る",
+ "Enter url to visit": "アクセスする URL を入力してください",
+ "Focus Lock": "フォーカス ロック",
+ "Forward": "転送",
+ "Open in browser": "ブラウザーで開く",
+ "Open in simple browser": "シンプル ブラウザーで開く",
+ "Reload": "再読み込み",
+ "Simple Browser": "シンプル ブラウザー",
+ "https://example.com": "https://example.com"
+ },
+ "package": {
+ "configuration.focusLockIndicator.enabled.description": "単純なブラウザーにフォーカスが置かれたときに表示されるフローティング インジケーターを有効または無効にします。",
+ "description": "Web コンテンツを表示するための非常に基本的な組み込みの Web ビューです。",
+ "displayName": "シンプル ブラウザー"
+ }
+ }
+}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-ja/translations/extensions/vscode.sql.i18n.json b/i18n/vscode-language-pack-ja/translations/extensions/vscode.sql.i18n.json
index 8d40284127..0db8c66532 100644
--- a/i18n/vscode-language-pack-ja/translations/extensions/vscode.sql.i18n.json
+++ b/i18n/vscode-language-pack-ja/translations/extensions/vscode.sql.i18n.json
@@ -9,8 +9,8 @@
"version": "1.0.0",
"contents": {
"package": {
- "displayName": "SQL の基本言語サポート",
- "description": "SQL ファイル内で構文ハイライト、かっこ一致を提供します。"
+ "description": "SQL ファイル内で構文ハイライト、かっこ一致を提供します。",
+ "displayName": "SQL の基本言語サポート"
}
}
}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-ja/translations/extensions/vscode.swift.i18n.json b/i18n/vscode-language-pack-ja/translations/extensions/vscode.swift.i18n.json
index 5bc338a71c..f2772f33c8 100644
--- a/i18n/vscode-language-pack-ja/translations/extensions/vscode.swift.i18n.json
+++ b/i18n/vscode-language-pack-ja/translations/extensions/vscode.swift.i18n.json
@@ -9,8 +9,8 @@
"version": "1.0.0",
"contents": {
"package": {
- "displayName": "Swift の基本言語サポート",
- "description": "Swift ファイル内でスニペット、構文ハイライト、かっこ一致を提供します。"
+ "description": "Swift ファイル内でスニペット、構文ハイライト、かっこ一致を提供します。",
+ "displayName": "Swift の基本言語サポート"
}
}
}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-ja/translations/extensions/vscode.terminal-suggest.i18n.json b/i18n/vscode-language-pack-ja/translations/extensions/vscode.terminal-suggest.i18n.json
new file mode 100644
index 0000000000..f8f598bc13
--- /dev/null
+++ b/i18n/vscode-language-pack-ja/translations/extensions/vscode.terminal-suggest.i18n.json
@@ -0,0 +1,18 @@
+{
+ "": [
+ "--------------------------------------------------------------------------------------------",
+ "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."
+ ],
+ "version": "1.0.0",
+ "contents": {
+ "package": {
+ "description": "zsh、bash、fish terminals のターミナル補完を追加する拡張機能です。",
+ "displayName": "VS Code のターミナルの候補",
+ "terminal.integrated.suggest.clearCachedGlobals": "キャッシュされたグローバルをクリア",
+ "view.name": "ターミナルの候補"
+ }
+ }
+}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-ja/translations/extensions/vscode.theme-abyss.i18n.json b/i18n/vscode-language-pack-ja/translations/extensions/vscode.theme-abyss.i18n.json
index bc685fa1c7..7743bc8163 100644
--- a/i18n/vscode-language-pack-ja/translations/extensions/vscode.theme-abyss.i18n.json
+++ b/i18n/vscode-language-pack-ja/translations/extensions/vscode.theme-abyss.i18n.json
@@ -9,8 +9,8 @@
"version": "1.0.0",
"contents": {
"package": {
- "displayName": "Abyss テーマ",
"description": "Visual Studio Code の Abyss テーマ",
+ "displayName": "Abyss テーマ",
"themeLabel": "Abyss"
}
}
diff --git a/i18n/vscode-language-pack-ja/translations/extensions/vscode.theme-defaults.i18n.json b/i18n/vscode-language-pack-ja/translations/extensions/vscode.theme-defaults.i18n.json
index 8f0b61928b..2890a2a0f1 100644
--- a/i18n/vscode-language-pack-ja/translations/extensions/vscode.theme-defaults.i18n.json
+++ b/i18n/vscode-language-pack-ja/translations/extensions/vscode.theme-defaults.i18n.json
@@ -9,13 +9,16 @@
"version": "1.0.0",
"contents": {
"package": {
- "displayName": "既定のテーマ",
- "description": "既定の VIsual Studio の明るいテーマと濃いテーマ",
- "darkPlusColorThemeLabel": "Dark+ (既定の Dark)",
- "lightPlusColorThemeLabel": "Light+ (既定の Light)",
"darkColorThemeLabel": "Dark (Visual Studio)",
+ "darkModernThemeLabel": "ダーク モダン",
+ "darkPlusColorThemeLabel": "ダーク+",
+ "description": "既定の VIsual Studio の明るいテーマと濃いテーマ",
+ "displayName": "既定のテーマ",
+ "hcColorThemeLabel": "ハイ コントラスト ダーク テーマ",
"lightColorThemeLabel": "Light (Visual Studio)",
- "hcColorThemeLabel": "ハイ コントラスト",
+ "lightHcColorThemeLabel": "ライト ハイ コントラスト",
+ "lightModernThemeLabel": "ライト モダン",
+ "lightPlusColorThemeLabel": "ライト+",
"minimalIconThemeLabel": "最小 (Visual Studio Code)"
}
}
diff --git a/i18n/vscode-language-pack-ja/translations/extensions/vscode.theme-kimbie-dark.i18n.json b/i18n/vscode-language-pack-ja/translations/extensions/vscode.theme-kimbie-dark.i18n.json
index ca7e13d2b6..1b6f6687eb 100644
--- a/i18n/vscode-language-pack-ja/translations/extensions/vscode.theme-kimbie-dark.i18n.json
+++ b/i18n/vscode-language-pack-ja/translations/extensions/vscode.theme-kimbie-dark.i18n.json
@@ -9,8 +9,8 @@
"version": "1.0.0",
"contents": {
"package": {
- "displayName": "Kimbie Dark テーマ",
"description": "Visual Studio Code の Kimbie dark テーマ",
+ "displayName": "Kimbie Dark テーマ",
"themeLabel": "Kimbie Dark"
}
}
diff --git a/i18n/vscode-language-pack-ja/translations/extensions/vscode.theme-monokai-dimmed.i18n.json b/i18n/vscode-language-pack-ja/translations/extensions/vscode.theme-monokai-dimmed.i18n.json
index aab732f3c2..2ec16391b2 100644
--- a/i18n/vscode-language-pack-ja/translations/extensions/vscode.theme-monokai-dimmed.i18n.json
+++ b/i18n/vscode-language-pack-ja/translations/extensions/vscode.theme-monokai-dimmed.i18n.json
@@ -9,8 +9,8 @@
"version": "1.0.0",
"contents": {
"package": {
- "displayName": "Monokai Dimmed テーマ",
"description": "Visual Studio Code の Monokai dimmed テーマ",
+ "displayName": "Monokai Dimmed テーマ",
"themeLabel": "Monokai Dimmed"
}
}
diff --git a/i18n/vscode-language-pack-ja/translations/extensions/vscode.theme-monokai.i18n.json b/i18n/vscode-language-pack-ja/translations/extensions/vscode.theme-monokai.i18n.json
index 370c5100f1..52999eb966 100644
--- a/i18n/vscode-language-pack-ja/translations/extensions/vscode.theme-monokai.i18n.json
+++ b/i18n/vscode-language-pack-ja/translations/extensions/vscode.theme-monokai.i18n.json
@@ -9,8 +9,8 @@
"version": "1.0.0",
"contents": {
"package": {
- "displayName": "Monokai テーマ",
"description": "Visual Studio Code の Monokai テーマ",
+ "displayName": "Monokai テーマ",
"themeLabel": "Monokai"
}
}
diff --git a/i18n/vscode-language-pack-ja/translations/extensions/vscode.theme-quietlight.i18n.json b/i18n/vscode-language-pack-ja/translations/extensions/vscode.theme-quietlight.i18n.json
index 12d0805b5b..4251b3beef 100644
--- a/i18n/vscode-language-pack-ja/translations/extensions/vscode.theme-quietlight.i18n.json
+++ b/i18n/vscode-language-pack-ja/translations/extensions/vscode.theme-quietlight.i18n.json
@@ -9,8 +9,8 @@
"version": "1.0.0",
"contents": {
"package": {
- "displayName": "Quiet Light テーマ",
"description": "Visual Studio Code の Quiet light テーマ",
+ "displayName": "Quiet Light テーマ",
"themeLabel": "Quiet Light"
}
}
diff --git a/i18n/vscode-language-pack-ja/translations/extensions/vscode.theme-red.i18n.json b/i18n/vscode-language-pack-ja/translations/extensions/vscode.theme-red.i18n.json
index eef1a89105..f4977e8e3c 100644
--- a/i18n/vscode-language-pack-ja/translations/extensions/vscode.theme-red.i18n.json
+++ b/i18n/vscode-language-pack-ja/translations/extensions/vscode.theme-red.i18n.json
@@ -9,8 +9,8 @@
"version": "1.0.0",
"contents": {
"package": {
- "displayName": "Red テーマ",
"description": "Visual Studio Code の Red テーマ",
+ "displayName": "Red テーマ",
"themeLabel": "Red"
}
}
diff --git a/i18n/vscode-language-pack-ja/translations/extensions/vscode.theme-solarized-dark.i18n.json b/i18n/vscode-language-pack-ja/translations/extensions/vscode.theme-solarized-dark.i18n.json
index c0feaa421e..cd159400a0 100644
--- a/i18n/vscode-language-pack-ja/translations/extensions/vscode.theme-solarized-dark.i18n.json
+++ b/i18n/vscode-language-pack-ja/translations/extensions/vscode.theme-solarized-dark.i18n.json
@@ -9,8 +9,8 @@
"version": "1.0.0",
"contents": {
"package": {
- "displayName": "Solarized Dark テーマ",
"description": "Visual Studio Code の Solarized dark テーマ",
+ "displayName": "Solarized Dark テーマ",
"themeLabel": "Solarized Dark"
}
}
diff --git a/i18n/vscode-language-pack-ja/translations/extensions/vscode.theme-solarized-light.i18n.json b/i18n/vscode-language-pack-ja/translations/extensions/vscode.theme-solarized-light.i18n.json
index 45937c9c56..a2d0953855 100644
--- a/i18n/vscode-language-pack-ja/translations/extensions/vscode.theme-solarized-light.i18n.json
+++ b/i18n/vscode-language-pack-ja/translations/extensions/vscode.theme-solarized-light.i18n.json
@@ -9,8 +9,8 @@
"version": "1.0.0",
"contents": {
"package": {
- "displayName": "Solarized Light テーマ",
"description": "Visual Studio Code の Solarized light テーマ",
+ "displayName": "Solarized Light テーマ",
"themeLabel": "Solarized Light"
}
}
diff --git a/i18n/vscode-language-pack-ja/translations/extensions/vscode.theme-tomorrow-night-blue.i18n.json b/i18n/vscode-language-pack-ja/translations/extensions/vscode.theme-tomorrow-night-blue.i18n.json
index 8aa46249be..878899e6a8 100644
--- a/i18n/vscode-language-pack-ja/translations/extensions/vscode.theme-tomorrow-night-blue.i18n.json
+++ b/i18n/vscode-language-pack-ja/translations/extensions/vscode.theme-tomorrow-night-blue.i18n.json
@@ -9,8 +9,8 @@
"version": "1.0.0",
"contents": {
"package": {
- "displayName": "Tomorrow Night Blue テーマ",
"description": "Visual Studio Code の Tomorrow night blue テーマ",
+ "displayName": "Tomorrow Night Blue テーマ",
"themeLabel": "Tomorrow Night Blue"
}
}
diff --git a/i18n/vscode-language-pack-ja/translations/extensions/vscode.tunnel-forwarding.i18n.json b/i18n/vscode-language-pack-ja/translations/extensions/vscode.tunnel-forwarding.i18n.json
new file mode 100644
index 0000000000..41f02945b8
--- /dev/null
+++ b/i18n/vscode-language-pack-ja/translations/extensions/vscode.tunnel-forwarding.i18n.json
@@ -0,0 +1,27 @@
+{
+ "": [
+ "--------------------------------------------------------------------------------------------",
+ "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."
+ ],
+ "version": "1.0.0",
+ "contents": {
+ "bundle": {
+ "Continue": "続行",
+ "Don't show again": "今後は表示しない",
+ "Port Forwarding": "ポート転送",
+ "Private": "非公開",
+ "Public": "公開",
+ "You're about to create a publicly forwarded port. Anyone on the internet will be able to connect to the service listening on port {0}. You should only proceed if this service is secure and non-sensitive.": "パブリックに転送されたポートを作成します。インターネット上のすべてのユーザーは、ポート {0}でリッスンしているサービスに接続できます。このサービスがセキュリティで保護され、機密性の低い場合にのみ続行する必要があります。"
+ },
+ "package": {
+ "category": "ポート転送",
+ "command.restart": "転送システムの再起動",
+ "command.showLog": "ログの表示",
+ "description": "転送ローカル ポートにインターネット経由でアクセスできるようにします。",
+ "displayName": "ローカル トンネル ポート 転送"
+ }
+ }
+}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-ja/translations/extensions/vscode.typescript-language-features.i18n.json b/i18n/vscode-language-pack-ja/translations/extensions/vscode.typescript-language-features.i18n.json
new file mode 100644
index 0000000000..ea8d58f7d6
--- /dev/null
+++ b/i18n/vscode-language-pack-ja/translations/extensions/vscode.typescript-language-features.i18n.json
@@ -0,0 +1,367 @@
+{
+ "": [
+ "--------------------------------------------------------------------------------------------",
+ "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."
+ ],
+ "version": "1.0.0",
+ "contents": {
+ "bundle": {
+ "(loading...)/Prefix displayed for hover entries while the server is still loading": "(読み込み中...)",
+ "...1 additional file not shown": "...1 つの追加ファイルが表示されていません",
+ "...{0} additional files not shown": "...{0} 個の追加ファイルが表示されていません",
+ "1 implementation": "1 個の実装",
+ "1 reference": "1 個の参照",
+ "Acquiring typings definitions for IntelliSense./Typings refers to the *.d.ts typings files that power our IntelliSense. It should not be localized": "IntelliSense の Typings の定義ファイルを取得しています。",
+ "Acquiring typings.../Typings refers to the *.d.ts typings files that power our IntelliSense. It should not be localized": "typings の定義ファイルを取得中...",
+ "Add all missing imports": "見つからないインポートをすべて追加する",
+ "Add meaningful parameter name with AI": "AI を使用してわかりやすいパラメーター名を追加する",
+ "Add types to this code. Add separate interfaces when possible. Do not change the code except for adding types.": "このコードに型を追加します。可能な場合は、個別のインターフェイスを追加します。型を追加する以外は、コードを変更しないでください。",
+ "Allow": "許可する",
+ "Always": "常時",
+ "An error occurred while renaming file": "ファイル名を変更中にエラーが発生しました",
+ "Analyzing '{0}' and its dependencies": "'{0}' とその依存関係を分析しています",
+ "Checking for update of JS/TS imports": "JS/TS インポートの更新を確認しています",
+ "Configure Excludes": "除外の構成",
+ "Configure JSConfig": "JSConfig を構成する",
+ "Configure TSConfig": "TSConfig を構成する",
+ "Configure jsconfig.json": "jsconfig.json を構成する",
+ "Configure tsconfig.json": "tsconfig.json を構成する",
+ "Could not apply refactoring": "リファクタリングを適用できませんでした。",
+ "Could not detect a Node installation to run TS Server.": "TS サーバーを実行する Node のインストールを検出できませんでした。",
+ "Could not determine TypeScript or JavaScript project": "TypeScript または JavaScript のプロジェクトを判別できませんでした",
+ "Could not determine TypeScript or JavaScript project. Unsupported file type": "TypeScript または JavaScript のプロジェクトを判別できませんでした。サポートされていないファイルの種類です",
+ "Could not determine references": "参照を判別できませんでした",
+ "Could not install typings files for JavaScript language features. Please ensure that NPM is installed, or configure 'typescript.npm' in your user settings. Alternatively, check the [documentation]({0}) to learn more.": "JavaScript 言語機能のための型定義ファイルをインストールできませんでした。NPM のインストールを確認するか、ユーザー設定で 'typescript.npm' を構成してください。または、詳細は [ドキュメント]({0}) を確認してください。",
+ "Could not load the TypeScript version at this path": "このパスでは TypeScript のバージョンを読み込むことができません",
+ "Could not open TS Server log file": "TS サーバーのログ ファイルを開くことができませんでした",
+ "Disable logging": "ログを無効にする",
+ "Disables semantic checking in a JavaScript file. Must be at the top of a file.": "JavaScript ファイルのセマンティック チェックを無効にします。 ファイルの先頭にある必要があります。",
+ "Dismiss": "無視",
+ "Don't Show Again": "今後表示しない",
+ "Don't show again": "今後は表示しない",
+ "Enable logging and restart TS server": "ログを有効にして、TS サーバーを再起動する",
+ "Enables semantic checking in a JavaScript file. Must be at the top of a file.": "JavaScript ファイルのセマンティック チェックを有効にします。 ファイルの先頭にある必要があります。",
+ "Enter file path": "ファイル パスを入力してください",
+ "Enter new file path...": "新しいファイル パスを入力...",
+ "Extract to constant": "定数への抽出",
+ "Extract to function": "関数への抽出",
+ "Failed to resolve {0} as module": "{0} をモジュールとして解決できませんでした",
+ "Fetching data for better TypeScript IntelliSense": "より適した TypeScript IntelliSense に関するデータをフェッチしています",
+ "File is not part of a JavaScript project. View the [jsconfig.json documentation]({0}) to learn more.": "ファイルは JavaScript プロジェクトの一部ではありません。詳細については、[jsconfig.json のドキュメント]({0}) をご覧ください。",
+ "File is not part of a TypeScript project. View the [tsconfig.json documentation]({0}) to learn more.": "ファイルは TypeScript プロジェクトの一部ではありません。詳細については、[tsconfig.json のドキュメント]({0}) をご覧ください。",
+ "File is not part opened folders": "ファイルが開いているフォルダーの一部ではありません",
+ "Find file references failed. No resource provided.": "ファイル参照の検索に失敗しました。リソースが指定されていません。",
+ "Find file references failed. Requires TypeScript 4.2+.": "ファイル参照の検索に失敗しました。TypeScript 4.2 以降が必要です。",
+ "Find file references failed. Unknown file type.": "ファイル参照の検索に失敗しました。ファイルの種類が不明です。",
+ "Find file references failed. Unsupported file type.": "ファイル参照の検索に失敗しました。サポートされていないファイルの種類です。",
+ "Finding file references": "ファイル参照の検索中",
+ "Finding source definitions": "ソース定義を検索しています",
+ "Fix all fixable JS/TS issues": "JS/TS の修正可能な問題をすべて修正する",
+ "Follow link": "リンクをフォロー",
+ "Go to Source Definition failed. No resource provided.": "ソース定義に移動できませんでした。リソースが指定されていません。",
+ "Go to Source Definition failed. Requires TypeScript 4.7+.": "ソース定義に移動できませんでした。TypeScript 4.7 以降が必要です。",
+ "Go to Source Definition failed. Unknown file type.": "ソース定義に移動できませんでした。ファイルの種類が不明です。",
+ "Go to Source Definition failed. Unsupported file type.": "ソース定義に移動できませんでした。ファイルの種類がサポート対象外です。",
+ "Implement missing function declaration '{0}' using AI": "AI を使用して、不足している関数宣言 '{0}' を実装する",
+ "Implement the stubbed-out class members for {0} with a useful implementation.": "便利な実装を使用して、{0} のスタブアウト クラス メンバーを実装します。",
+ "Infer types using AI": "AI を使用して型を推論する",
+ "Initializing '{0}'": "'{0}' を初期化しています",
+ "JS/TS IntelliSense Status": "JS/TS IntelliSense の状態",
+ "JSDoc comment": "JSDoc コメント",
+ "Learn More": "詳細情報",
+ "Learn more about JS/TS refactorings": "JS/TS リファクタリングの詳細",
+ "Learn more about managing TypeScript versions": "TypeScript のバージョンの管理についての詳細",
+ "Loading IntelliSense status": "IntelliSense の状態を読み込んでいます",
+ "Move to File": "ファイルに移動",
+ "Never": "行わない",
+ "Never in this Workspace": "このワークスペースでは使用しない",
+ "No": "いいえ",
+ "No jsconfig": "jsconfig なし",
+ "No opened folders": "開いているフォルダーがありません",
+ "No source definitions found.": "ソース定義が見つかりません。",
+ "No tsconfig": "tsconfig なし",
+ "Not now": "今は行わない",
+ "Open Config File": "構成ファイルを開く",
+ "Open on GitHub": "GitHub で開く",
+ "Organize Imports": "インポートを整理",
+ "Partial mode": "部分モード",
+ "Paste with imports": "インポートと貼り付け",
+ "Please open a folder in VS Code to use a TypeScript or JavaScript project": "TypeScript または JavaScript プロジェクトを使用するには、VS Code でフォルダーを開いてください",
+ "Please report an issue against Yarn PnP": "Yarn PnP に対する問題を報告してください",
+ "Please update your TypeScript version": "TypeScript のバージョンを更新してください",
+ "Project wide IntelliSense not available": "プロジェクト全体での IntelliSense は使用できません",
+ "Provide a reasonable implementation of the function {0} given its type and the context it's called in.": "型と呼び出されるコンテキストを踏まえて、関数 {0} の適切な実装を提供します。",
+ "Remove Unused Imports": "未使用のインポートの削除",
+ "Remove all unused code": "未使用のコードをすべて削除する",
+ "Rename the parameter {0} with a more meaningful name.": "パラメーター {0} の名前をよりわかりやすい名前に変更します。",
+ "Report Issue": "問題を報告",
+ "Report issue against Yarn PnP": "Yarn PnP に対する問題を報告する",
+ "Select Version": "バージョンの選択",
+ "Select code action to apply": "適用するコード アクションを選択",
+ "Select existing file...": "既存のファイルを選択...",
+ "Select move destination": "移動先の選択",
+ "Select the TypeScript version used for JavaScript and TypeScript language features": "JavaScript および TypeScript 言語の機能に使用する TypeScript バージョンを選択します",
+ "Sort Imports": "インポートの並べ替え",
+ "Suppresses @ts-check errors on the next line of a file, expecting at least one to exist.": "ファイルの次の行で @ts-check エラーを表示しません。少なくとも 1 つ存在する必要があります。",
+ "Suppresses @ts-check errors on the next line of a file.": "ファイルの次の行で @ts-check エラーを抑制します。",
+ "TS Server has not started logging.": "TS サーバーはログを開始していません。",
+ "TS Server logging is currently enabled which may impact performance.": "TS サーバーのログ記録は現在有効になっているため、パフォーマンスに影響する可能性があります。",
+ "TS Server logging is off. Please set 'typescript.tsserver.log' and restart the TS server to enable logging": "TS サーバーのログがオフになっています。ログを有効にするには、'typescript.tsserver.log' を設定して TS サーバーを再起動してください",
+ "The JS/TS language service crashed 5 times in the last 5 Minutes.": "JS/TS 言語サービスは、過去 5 分間に 5 回クラッシュしました。",
+ "The JS/TS language service crashed 5 times in the last 5 Minutes.\nThis may be caused by a plugin contributed by one of these extensions: {0}\nPlease try disabling these extensions before filing an issue against VS Code.": "JS/TS 言語サービスは、過去 5 分間に 5 回クラッシュしました。\nこれは、次のいずれかの拡張機能によって提供されたプラグインが原因である可能性があります: {0}\nVS Code に関する問題を報告する前に、これらの拡張機能を無効にしてみてください。",
+ "The JS/TS language service crashed.": "JS/TS 言語サービスがクラッシュしました。",
+ "The JS/TS language service crashed.\nThis may be caused by a plugin contributed by one of these extensions: {0}.\nPlease try disabling these extensions before filing an issue against VS Code.": "JS/TS 言語サービスがクラッシュしました。\nこれは、次のいずれかの拡張機能によって提供されたプラグインが原因である可能性があります: {0}。\nVS Code に関する問題を報告する前に、これらの拡張機能を無効にしてみてください。",
+ "The JS/TS language service immediately crashed 5 times. The service will not be restarted.": "JS/TS 言語サービスがすぐに 5 回クラッシュしました。サービスは再起動されません。",
+ "The JS/TS language service immediately crashed 5 times. The service will not be restarted.\nThis may be caused by a plugin contributed by one of these extensions: {0}.\nPlease try disabling these extensions before filing an issue against VS Code.": "JS/TS 言語サービスがすぐに 5 回クラッシュしました。サービスは再起動されません。\nこれは、次のいずれかの拡張機能によって提供されたプラグインが原因である可能性があります: {0}。\nVS Code に関する問題を報告する前に、これらの拡張機能を無効にしてみてください。",
+ "The TypeScript Go extension is not installed.": "TypeScript Go 拡張機能がインストールされていません。",
+ "The current selection cannot be extracted": "現在の選択範囲を抽出できません",
+ "The path {0} doesn't point to a valid Node installation to run TS Server. Falling back to bundled Node.": "このパス {0}は、TS Server を実行するための有効な Node インストールを指していません。バンドル化された Node にフォールバックしています。",
+ "The path {0} doesn't point to a valid tsserver install. Falling back to bundled TypeScript version.": "パス {0} は、有効な tsserver インストールを指していません。バンドルされている TypeScript バージョンにフォールバックしています。",
+ "The workspace is using a version of the TypeScript Server that has been patched by Yarn PnP. This patching is a common source of bugs.": "ワークスペースは、Yarn PnP によってパッチが適用された TypeScript サーバーのバージョンを使用しています。このパッチ適用は、バグの一般的なソースです。",
+ "The workspace is using an old version of TypeScript ({0}).\n\nBefore reporting an issue, please update the workspace to use TypeScript {1} or newer to make sure the bug has not already been fixed.": "ワークスペースで古いバージョンの TypeScript ({0}) が使用されています。\n\n問題を報告する前に、TypeScript {1} 以降を使用するようにワークスペースを更新し、バグが既に修正済みでないことを確認してください。",
+ "This workspace contains a TypeScript version. Would you like to use the workspace TypeScript version for TypeScript and JavaScript language features?": "このワークスペースには TypeScript バージョンが含まれています。TypeScript および JavaScript の言語機能にワークスペースの TypeScript バージョンを使用しますか?",
+ "This workspace wants to use the Node installation at '{0}' to run TS Server. Would you like to use it?": "このワークスペースでは、'{0}' の Node インストールを使用して TS サーバーを実行したいと考えています。使用しますか?",
+ "To enable project-wide JavaScript/TypeScript language features, exclude folders with many files, like: {0}": "プロジェクト全体の JavaScript/TypeScript 言語機能を有効にするには、多数のファイルが含まれるフォルダーを除外します。例: {0}",
+ "To enable project-wide JavaScript/TypeScript language features, exclude large folders with source files that you do not work on.": "プロジェクト全体の JavaScript/TypeScript 言語機能を有効にするには、作業していないソース ファイルが含まれるサイズの大きなフォルダーを除外します。",
+ "TypeScript Server Log": "TypeScript サーバー ログ",
+ "TypeScript Task in tasks.json contains \"\\\\\". TypeScript tasks tsconfig must use \"/\"": "tasks.json の Typescript タスクに \"\\\\\" が含まれています。Typescript タスクの tsconfig では \"/\" を使用する必要があります",
+ "TypeScript Version": "TypeScript バージョン",
+ "TypeScript language server exited with error. Error message is: {0}": "TypeScript 言語サーバーがエラーで終了しました。エラー メッセージ: {0}",
+ "TypeScript version": "TypeScript バージョン",
+ "TypeScript: Configure Excludes": "TypeScript: 除外の構成",
+ "Update imports for '{0}'?": "'{0}' のインポートを更新しますか?",
+ "Update imports for the following {0} files?": "次の {0} ファイルのインポートを更新しますか?",
+ "Use VS Code's Version": "VS Code のバージョンを使用",
+ "Use Workspace Version": "ワークスペースのバージョンを使用",
+ "VS Code's tsserver was deleted by another application such as a misbehaving virus detection tool. Please reinstall VS Code.": "VS Code の tsserver が適切に動作しないウイルス検出ツールなどの他アプリケーションにより削除されました。VS Code を再インストールしてください。",
+ "Yes": "はい",
+ "build - {0}": "ビルド - {0}",
+ "destination files": "コピー先ファイル",
+ "invalid version": "無効なバージョン",
+ "watch - {0}": "ウォッチ - {0}",
+ "{0} (Fix all in file)": "{0} (ファイルの中のすべてを修正する)",
+ "{0} implementations": "{0} 個の実装",
+ "{0} references": "{0} 個の参照",
+ "{0} with AI": "AI による {0}"
+ },
+ "package": {
+ "configuration.format": "書式設定",
+ "configuration.hover.maximumLength": "ホバーの最大文字数。ホバーがこれよりも長い場合は、切り捨てられます。TypeScript 5.9 以降が必要です。",
+ "configuration.implicitProjectConfig.checkJs": "JavaScript ファイルのセマンティック チェックを有効または無効にします。既存の 'jsconfig.json' または 'tsconfig.json' ファイルによってこの設定がオーバーライドされます。",
+ "configuration.implicitProjectConfig.experimentalDecorators": "プロジェクト外の JavaScript ファイルの 'experimentalDecorators' を有効または無効にします。既存の 'jsconfig.json' または 'tsconfig.json' ファイルによってこの設定がオーバーライドされます。",
+ "configuration.implicitProjectConfig.module": "プログラムのモジュール システムを設定します。詳細は次をご覧ください: https://www.typescriptlang.org/tsconfig#module。",
+ "configuration.implicitProjectConfig.strict": "プロジェクトの一部ではない JavaScript と TypeScript のファイルで [厳密モード](https://www.typescriptlang.org/tsconfig#strict) を有効または無効にします。既存の `jsconfig.json` または `tsconfig.json` ファイルによってこの設定がオーバーライドされます。",
+ "configuration.implicitProjectConfig.strictFunctionTypes": "プロジェクト外の JavaScript および TypeScript ファイルの [厳密な関数の型](https://www.typescriptlang.org/tsconfig#strictFunctionTypes) を有効または無効にします。既存の 'jsconfig.json' または 'tsconfig.json' ファイルによってこの設定がオーバーライドされます。",
+ "configuration.implicitProjectConfig.strictNullChecks": "プロジェクト外の JavaScript および TypeScript ファイルの [厳密な null チェック](https://www.typescriptlang.org/tsconfig#strictNullChecks) を有効または無効にします。既存の 'jsconfig.json' または 'tsconfig.json' ファイルによってこの設定がオーバーライドされます。",
+ "configuration.implicitProjectConfig.target": "発行された JavaScript のターゲット JavaScript 言語バージョンを設定し、ライブラリ宣言を含めます。詳細は次をご覧ください: https://www.typescriptlang.org/tsconfig#target。",
+ "configuration.inlayHints": "インレイ ヒント",
+ "configuration.inlayHints.enumMemberValues.enabled": "列挙型宣言内のメンバー値のインレイ ヒントを有効/無効にします:\r\n```typescript\r\n\r\nenum MyValue {\r\n\tA /* = 0 */;\r\n\tB /* = 1 */;\r\n}\r\n \r\n```",
+ "configuration.inlayHints.functionLikeReturnTypes.enabled": "関数シグネチャの暗黙的な戻り値の型について、インレイ ヒントを有効/無効にします:\r\n```typescript\r\n\r\nfunction foo() /* :number */ {\r\n\treturn Date.now();\r\n} \r\n \r\n```",
+ "configuration.inlayHints.parameterNames.enabled": "パラメーター名へのインレイ ヒントを有効/無効にします:\r\n```typescript\r\n\r\nparseInt(/* str: */ '123', /* radix: */ 8)\r\n \r\n```",
+ "configuration.inlayHints.parameterNames.suppressWhenArgumentMatchesName": "パラメーター名と同一のテキストを持つ引数に対するパラメーター名のヒントを抑制します。",
+ "configuration.inlayHints.parameterTypes.enabled": "暗黙的なパラメーター型へのインレイ ヒントを有効/無効にします:\r\n```typescript\r\n\r\nel.addEventListener('click', e /* :MouseEvent */ => ...)\r\n \r\n```",
+ "configuration.inlayHints.propertyDeclarationTypes.enabled": "プロパティ宣言の暗黙的な型へのインレイ ヒントを有効/無効にします:\r\n```typescript\r\n\r\nclass Foo {\r\n\tprop /* :number */ = Date.now();\r\n}\r\n \r\n```",
+ "configuration.inlayHints.variableTypes.enabled": "暗黙的な変数型のインレイ ヒントを有効/無効にします:\r\n```typescript\r\n\r\nconst foo /* :number */ = Date.now();\r\n \r\n```",
+ "configuration.inlayHints.variableTypes.suppressWhenTypeMatchesName": "名前が型名と同じ変数の型ヒントを非表示にします。",
+ "configuration.preferGoToSourceDefinition": "代わりに `ソース定義に移動` をトリガーすることで、可能な場合は `ソース定義に移動` で型宣言ファイルを回避します。これにより、`ソース定義に移動` をマウス ジェスチャでトリガーできます。",
+ "configuration.preferences": "ユーザー設定",
+ "configuration.server": "TS サーバー",
+ "configuration.suggest": "候補",
+ "configuration.suggest.autoImports": "自動インポートの提案を有効または無効にします。",
+ "configuration.suggest.classMemberSnippets.enabled": "クラス メンバーのスニペットの入力候補を有効または無効にします。",
+ "configuration.suggest.completeFunctionCalls": "パラメーター シグネチャを含む完全な関数。",
+ "configuration.suggest.completeJSDocs": "JSDoc のコメントを完成させるための提案を有効/無効にします。",
+ "configuration.suggest.includeAutomaticOptionalChainCompletions": "オプションのチェーン呼び出しを挿入する定義されていない可能性のある値で入力候補を表示することを有効または無効にします。厳密な null チェックを有効にする必要があります。",
+ "configuration.suggest.includeCompletionsForImportStatements": "部分的に入力されたインポート ステートメントで、自動インポート形式の入力候補を有効または無効にします。",
+ "configuration.suggest.jsdoc.generateReturns": "JSDoc テンプレートの `@returns` 注釈の生成を有効または無効にします。",
+ "configuration.suggest.names": "JavaScript の候補のファイルから一意の名前を含めることを有効または無効にします。名前の候補は、`@ts-check` または `checkJs` を使用して意味的にチェックされる JavaScript コードでは常に無効であることに注意してください。",
+ "configuration.suggest.objectLiteralMethodSnippets.enabled": "オブジェクト リテラル内のメソッドのスニペット補完を有効または無効にします。",
+ "configuration.suggest.paths": "import ステートメントや require 呼び出しでパスの提案を有効/無効にします。",
+ "configuration.tsserver.experimental.enableProjectDiagnostics": "プロジェクト全体のエラー報告を有効にします。",
+ "configuration.tsserver.maxTsServerMemory": "TypeScript サーバー プロセスに割り当てるメモリの最大量 (MB 単位)。4 GB を超えるメモリ制限を使用するには、'#typescript.tsserver.nodePath#' を使用して、カスタム Node インストールを使用して TS Server を実行します。",
+ "configuration.tsserver.nodePath": "カスタム Node インストールで TS Server を実行します。これは、Node 実行可能ファイルへのパス、または VS Code に Node インストールを検出させるには `node` へのパスになります。",
+ "configuration.tsserver.useSeparateSyntaxServer": "折りたたみの計算やドキュメント シンボルのコンピューティングなど、構文に関連する操作に迅速に応答できる別の TypeScript サーバーの作成を有効または無効にします。",
+ "configuration.tsserver.useSyntaxServer": "TypeScript がコード折りたたみの計算などの構文関連操作をより迅速に処理するため、専用サーバーを起動するかどうかを制御します。",
+ "configuration.tsserver.useSyntaxServer.always": "軽量化構文サーバーを使用して、すべての IntelliSense 操作を処理します。この構文サーバーは、開いているファイルに対してのみ IntelliSense を提供します。",
+ "configuration.tsserver.useSyntaxServer.auto": "構文操作専用の完全なサーバーと、軽量化サーバーの両方を生成します。構文サーバーは、プロジェクトの読み込み中に構文操作を高速化し、IntelliSense を提供するために使用されます。",
+ "configuration.tsserver.useSyntaxServer.never": "専用の構文サーバーを使用しないでください。単一のサーバーを使用して、すべての IntelliSense 操作を処理します。",
+ "configuration.tsserver.useVsCodeWatcher": "TypeScript のものの代わりに VS Code のファイル ウォッチャーを使用します。ワークスペースで TypeScript 5.4+ 以降を使用する必要があります。",
+ "configuration.tsserver.watchOptions": "ファイルとディレクトリを追跡するために使用する監視方法を構成します。",
+ "configuration.tsserver.watchOptions.fallbackPolling": "ファイル システム イベントを使用する場合、このオプションは、システムがネイティブ ファイル ウォッチャーを使い果たし、ネイティブ ファイル ウォッチャーをサポートしていない場合に使用されるポーリング方法を指定します。",
+ "configuration.tsserver.watchOptions.fallbackPolling.dynamicPriorityPolling ": "変更頻度の低いファイルの確認頻度が低い場合は、動的キューを使用します。",
+ "configuration.tsserver.watchOptions.fallbackPolling.fixedPollingInterval": "すべてのファイルで、一定の間隔で 1 秒に数回変更がないか確認します。",
+ "configuration.tsserver.watchOptions.fallbackPolling.priorityPollingInterval": "すべてのファイルで 1 秒間に数回変更を確認しますが、特定の種類のファイルを他のファイルより少ない頻度で確認する場合は、ヒューリスティックを使用してください。",
+ "configuration.tsserver.watchOptions.synchronousWatchDirectory": "ディレクトリの遅延監視を無効にします。遅延監視は、一度に多数のファイル変更が生じる場合 (たとえば、npm install の実行からの node_modules の変更) には便利ですが、一般的ではない設定ではこのフラグを無効にすることができます。",
+ "configuration.tsserver.watchOptions.vscode": "TypeScript のものの代わりに VS Code のファイル ウォッチャーを使用します。ワークスペースで TypeScript 5.4+ 以降を使用する必要があります。",
+ "configuration.tsserver.watchOptions.watchDirectory": "再帰的なファイル監視機能を持たないシステムでディレクトリ ツリー全体を監視するための方法。",
+ "configuration.tsserver.watchOptions.watchDirectory.dynamicPriorityPolling": "変更頻度の少ないディレクトリの確認頻度が少ない動的キューを使用します。",
+ "configuration.tsserver.watchOptions.watchDirectory.fixedChunkSizePolling": "定期的にディレクトリのチャンクをポーリングします。",
+ "configuration.tsserver.watchOptions.watchDirectory.fixedPollingInterval": "すべてのディレクトリで、一定の間隔で 1 秒間に数回、変更を確認します。",
+ "configuration.tsserver.watchOptions.watchDirectory.useFsEvents": "ディレクトリの変更にオペレーティング システムまたはファイル システムのネイティブ イベントを使用しようとしています。",
+ "configuration.tsserver.watchOptions.watchFile": "個々のファイルを監視するための方法。",
+ "configuration.tsserver.watchOptions.watchFile.dynamicPriorityPolling": "変更頻度の低いファイルの確認頻度が低い場合は、動的キューを使用します。",
+ "configuration.tsserver.watchOptions.watchFile.fixedChunkSizePolling": "定期的にファイルのチャンクをポーリングします。",
+ "configuration.tsserver.watchOptions.watchFile.fixedPollingInterval": "すべてのファイルで、一定の間隔で 1 秒に数回変更がないかを確認します。",
+ "configuration.tsserver.watchOptions.watchFile.priorityPollingInterval": "すべてのファイルで 1 秒間に数回変更を確認しますが、ヒューリスティックを使用して、特定の種類のファイルを他のファイルよりも少ない頻繁で確認することができます。",
+ "configuration.tsserver.watchOptions.watchFile.useFsEvents": "ファイルの変更にオペレーティング システムまたはファイル システムのネイティブ イベントを使用しようとしています。",
+ "configuration.tsserver.watchOptions.watchFile.useFsEventsOnParentDirectory": "オペレーティング システムまたはファイル システムのネイティブ イベントを使用して、ディレクトリを含んでいるファイルに対する変更をリッスンします。使用するファイル ウォッチャーの数を減らすことができますが、正確性が低くなります。",
+ "configuration.tsserver.web.projectWideIntellisense.enabled": "Web 上でプロジェクト全体の IntelliSense を有効または無効にします。VS Code が信頼されたコンテキストで実行されている必要があります。",
+ "configuration.tsserver.web.projectWideIntellisense.suppressSemanticErrors": "プロジェクト全体の IntelliSense が有効になっている場合でも、Web 上のセマンティック エラーを抑制します。これは、プロジェクト全体の IntelliSense が有効になっていないか使用できない場合、常にオンです。`#typescript.tsserver.web.projectWideIntellisense.enabled#` を参照してください",
+ "configuration.tsserver.web.typeAcquisition.enabled": "Web でパッケージの取得を有効/無効にします。これにより、インポートされたパッケージの IntelliSense が有効になります。`#typescript.tsserver.web.projectWideIntellisense.enabled#` が必要です。Ssfari では現在サポートされていません。",
+ "configuration.typescript": "TypeScript",
+ "configuration.updateImportsOnPaste": "コードの貼り付け時にインポートを自動的に更新します。TypeScript 5.6 以降が必要です。",
+ "description": "JavaScript と TypeScript ファイルに豊富な言語サポートを提供。",
+ "displayName": "TypeScript と JavaScript の言語機能",
+ "format.indentSwitchCase": "switch ステートメントの case 句をインデントします。ワークスペースで TypeScript 5.1+ を使用する必要があります。",
+ "format.insertSpaceAfterCommaDelimiter": "コンマ区切り記号の後のスペース処理を定義します。",
+ "format.insertSpaceAfterConstructor": "コンストラクター キーワードの後のスペース処理を定義します。",
+ "format.insertSpaceAfterFunctionKeywordForAnonymousFunctions": "匿名関数の関数キーワードの後のスペース処理を定義します。",
+ "format.insertSpaceAfterKeywordsInControlFlowStatements": "制御フロー ステートメント内のキーワードの後のスペース処理を定義します。",
+ "format.insertSpaceAfterOpeningAndBeforeClosingEmptyBraces": "左右の空のかっこの間のスペース処理を定義します。",
+ "format.insertSpaceAfterOpeningAndBeforeClosingJsxExpressionBraces": "JSX 式の始め波かっこの後と終わり波かっこの前のスペース処理を定義します。",
+ "format.insertSpaceAfterOpeningAndBeforeClosingNonemptyBraces": "左右の空でないかっこの間のスペース処理を定義します。",
+ "format.insertSpaceAfterOpeningAndBeforeClosingNonemptyBrackets": "左右の空でない角かっこの間のスペース処理を定義します。",
+ "format.insertSpaceAfterOpeningAndBeforeClosingNonemptyParenthesis": "左右の空でないかっこの間のスペース処理を定義します。",
+ "format.insertSpaceAfterOpeningAndBeforeClosingTemplateStringBraces": "テンプレート文字列の始め波かっこの後と終わり波かっこの前のスペース処理を定義します。",
+ "format.insertSpaceAfterSemicolonInForStatements": "for ステートメント内のセミコロンの後のスペース処理を定義します。",
+ "format.insertSpaceAfterTypeAssertion": "TypeScript の型アサーションの後のスペース処理を定義します。",
+ "format.insertSpaceBeforeAndAfterBinaryOperators": "2 項演算子の後のスペース処理を定義します。",
+ "format.insertSpaceBeforeFunctionParenthesis": "関数の引数のかっこの前にあるスペース処理を定義します。",
+ "format.placeOpenBraceOnNewLineForControlBlocks": "新しい行にコントロール ブロックの始め波かっこを配置するかどうかを定義します。",
+ "format.placeOpenBraceOnNewLineForFunctions": "新しい行に関数の始め波かっこを配置するかどうかを定義します。",
+ "format.semicolons": "オプションのセミコロンの処理を定義します。",
+ "format.semicolons.ignore": "セミコロンを挿入または削除しないでください。",
+ "format.semicolons.insert": "ステートメントの最後にセミコロンを挿入します。",
+ "format.semicolons.remove": "不要なセミコロンを削除します。",
+ "inlayHints.parameterNames.all": "リテラル引数およびリテラル引数以外の引数に対してパラメーター名のヒントを有効にします。",
+ "inlayHints.parameterNames.literals": "リテラル引数に対してのみ、パラメーター名のヒントを有効にします。",
+ "inlayHints.parameterNames.none": "パラメーター名のヒントを無効にします。",
+ "javascript.format.enable": "既定の JavaScript フォーマッタを有効/無効にします。",
+ "javascript.goToProjectConfig.title": "プロジェクト構成 (jsconfig / tsconfig) に移動",
+ "javascript.preferences.jsxAttributeCompletionStyle.auto": "グッズの種類に基づく属性名の後に `={}` または `=\"\"` を挿入します。文字列属性に使用される引用符の種類を制御するには、`#javascript.preferences.quoteStyle#` を参照してください。",
+ "javascript.preferences.organizeImports": "インポートの順序を制御する詳細な設定です。",
+ "javascript.referencesCodeLens.enabled": "JavaScript ファイル内で CodeLens の参照を有効/無効にします。",
+ "javascript.referencesCodeLens.showOnAllFunctions": "JavaScript ファイル内のすべての関数で CodeLens への参照を有効または無効にします。",
+ "javascript.suggestionActions.enabled": "エディター内で JavaScript ファイルの診断の提案を有効または無効にします。",
+ "javascript.validate.enable": "JavaScript の検証を有効/無効にします。",
+ "reloadProjects.title": "プロジェクトの再読み込み",
+ "taskDefinition.tsconfig.description": "TS ビルドを定義する tsconfig ファイル。",
+ "typescript.autoClosingTags": "JSX タグの自動終了を有効または無効にします。",
+ "typescript.check.npmIsInstalled": "npm が [自動タイプ取得](https://code.visualstudio.com/docs/nodejs/working-with-javascript#_typings-and-automatic-type-acquisition) 用にインストールされているかどうかを確認します。",
+ "typescript.disableAutomaticTypeAcquisition": "[自動タイプ取得](https://code.visualstudio.com/docs/nodejs/working-with-javascript#_typings-and-automatic-type-acquisition) を無効にします。自動タイプ取得では、外部ライブラリの IntelliSense を向上させるために、npm から '@types' パッケージが取得されます。",
+ "typescript.enablePromptUseWorkspaceTsdk": "ワークスペースで Intellisense 用に構成されている TypeScript バージョンを使用することについてユーザーへの確認を有効にします。",
+ "typescript.findAllFileReferences": "ファイル参照の検索",
+ "typescript.format.enable": "既定の TypeScript フォーマッタを有効/無効にします。",
+ "typescript.goToProjectConfig.title": "プロジェクト構成 (tsconfig) に移動",
+ "typescript.goToSourceDefinition": "ソース定義に移動",
+ "typescript.implementationsCodeLens.enabled": "CodeLens の実装を有効/無効にします。この CodeLens は interface の実装を表示します。",
+ "typescript.implementationsCodeLens.showOnAllClassMethods": "CodeLens の実装を、抽象メソッドに対してのみでなく、すべてのクラス メソッドの上に表示することを有効または無効にします。",
+ "typescript.implementationsCodeLens.showOnInterfaceMethods": "インターフェイス メソッドで CodeLens の実装を有効または無効にします。",
+ "typescript.locale": "JavaScript と TypeScript のエラーを報告するために使用するロケールを設定します。既定では VS Code のロケールを使用します。",
+ "typescript.locale.auto": "VS Code の構成済みの表示言語を使用します。",
+ "typescript.npm": "[自動タイプ取得](https://code.visualstudio.com/docs/nodejs/working-with-javascript#_typings-and-automatic-type-acquisition) に使われる npm 実行可能ファイルへのパスを指定します。",
+ "typescript.openTsServerLog.title": "TS サーバーのログを開く",
+ "typescript.preferences.autoImportFileExcludePatterns": "自動インポートから除外するファイルの glob パターンを指定します。相対パスは、ワークスペース ルートを基準に解決されます。パターンは、tsconfig.json ['exclude'](https://www.typescriptlang.org/tsconfig#exclude) セマンティクスを使用して評価されます。",
+ "typescript.preferences.autoImportSpecifierExcludeRegexes": "一致するインポート指定子を使用して、自動インポートを除外する正規表現を指定します。例:\r\n\r\n- `^node:`\r\n- `lib/internal' (スラッシュはエスケープする必要ありません...)\r\n- `/lib\\/internal/i` (...`i` フラグまたは `u` フラグに周囲のスラッシュを含めない限り)\r\n- `^lodash$` (lodash からのサブパス インポートのみを許可)",
+ "typescript.preferences.importModuleSpecifier": "自動 import の優先パス スタイル。",
+ "typescript.preferences.importModuleSpecifier.nonRelative": "`jsconfig.json` または `tsconfig.json` に構成されている `baseUrl` または `paths` に基づいて非相対インポートを優先します。",
+ "typescript.preferences.importModuleSpecifier.projectRelative": "相対インポート パスでパッケージまたはプロジェクト ディレクトリが提供される場合にのみ、非相対インポートを優先します。",
+ "typescript.preferences.importModuleSpecifier.relative": "インポートされたファイルの場所への相対パスを優先します。",
+ "typescript.preferences.importModuleSpecifier.shortest": "相対インポートよりもパス セグメント数が少なくなる場合にのみ、非相対インポートを優先します。",
+ "typescript.preferences.importModuleSpecifierEnding": "自動インポートの優先パスの末尾。",
+ "typescript.preferences.importModuleSpecifierEnding.auto": "プロジェクト設定を使用してデフォルトを選択します。",
+ "typescript.preferences.importModuleSpecifierEnding.index": "./component/index.js' を './component/index' に短縮します。",
+ "typescript.preferences.importModuleSpecifierEnding.js": "パスの末尾を短くしないでください。拡張子 `.js` または `.ts` を含めます。",
+ "typescript.preferences.importModuleSpecifierEnding.label.js": ".js / .ts",
+ "typescript.preferences.importModuleSpecifierEnding.minimal": "'./component/index.js' を './component' に短縮します。",
+ "typescript.preferences.includePackageJsonAutoImports": "使用可能な自動インポートについて 'package.json' の依存関係の検索を有効または無効にします。",
+ "typescript.preferences.includePackageJsonAutoImports.auto": "パフォーマンスの推定影響に基づいて依存関係を検索します。",
+ "typescript.preferences.includePackageJsonAutoImports.off": "依存関係を検索しないでください。",
+ "typescript.preferences.includePackageJsonAutoImports.on": "常に依存関係を検索します。",
+ "typescript.preferences.jsxAttributeCompletionStyle": "JSX 属性補完向けに優先されるスタイル。",
+ "typescript.preferences.jsxAttributeCompletionStyle.auto": "グッズの種類に基づく属性名の後に `={}` または `=\"\"` を挿入します。文字列属性に使用される引用符の種類を制御するには、`#typescript.preferences.quoteStyle#` を参照してください。",
+ "typescript.preferences.jsxAttributeCompletionStyle.braces": "属性名の後に `={}` を挿入します。",
+ "typescript.preferences.jsxAttributeCompletionStyle.none": "属性名の挿入のみ。",
+ "typescript.preferences.organizeImports": "インポートの順序を制御する詳細な設定です。",
+ "typescript.preferences.organizeImports.accentCollation": "`organizeImports.unicodeCollation: 'unicode'` が必要です。分音記号付きの文字を、基本文字と等しくないものとして比較します。",
+ "typescript.preferences.organizeImports.caseFirst": "`organizeImports.unicodeCollation: 'unicode'` が必要です。`organizeImports.caseSensitivity` は `caseInsensitive` ではありません。大文字を小文字の前に並べ替えるかどうかを示します。",
+ "typescript.preferences.organizeImports.caseFirst.default": "`locale` によって指定される既定の順序。",
+ "typescript.preferences.organizeImports.caseFirst.lower": "小文字は大文字の前に表示されます。例: ` a, A, z, Z`。",
+ "typescript.preferences.organizeImports.caseFirst.upper": "大文字は小文字の前に表示されます。例: ` A, a, B, b`。",
+ "typescript.preferences.organizeImports.caseSensitivity": "大文字と小文字の区別に関してインポートを並べ替える方法を指定します。`auto` または未指定の場合、ファイルごとに大文字と小文字の区別が検出されます",
+ "typescript.preferences.organizeImports.caseSensitivity.auto": "インポートの並べ替えの大文字と小文字の区別を検出します。",
+ "typescript.preferences.organizeImports.caseSensitivity.insensitive": "インポートを大文字と小文字を区別せずに並べ替えます。",
+ "typescript.preferences.organizeImports.caseSensitivity.sensitive": "インポートを大文字と小文字を区別して並べ替えます。",
+ "typescript.preferences.organizeImports.locale": "`organizeImports.unicodeCollation: 'unicode'` が必要です。照合順序に使用されるロケールをオーバーライドします。UI ロケールを使用するには、`auto` を指定します。",
+ "typescript.preferences.organizeImports.numericCollation": "`organizeImports.unicodeCollation: 'unicode'` が必要です。数値文字列を整数値で並べ替えます。",
+ "typescript.preferences.organizeImports.typeOrder": "型のみの名前付きインポートを並べ替える方法を指定します。",
+ "typescript.preferences.organizeImports.typeOrder.auto": "型専用の名前付きインポートを並べ替える場合を検出します。",
+ "typescript.preferences.organizeImports.typeOrder.first": "型専用の名前付きインポートは、インポート リストの先頭に並べ替えられます。例: `import { type A, type Y, B, Z } from 'module';`",
+ "typescript.preferences.organizeImports.typeOrder.inline": "名前付きインポートは名前のみで並べ替えられます。例: `import { type A, B, type Y, Z } from 'module';`",
+ "typescript.preferences.organizeImports.typeOrder.last": "型専用の名前付きインポートは、インポート リストの末尾に並べ替えられます。例: `import { B, Z, type A, type Y } from 'module';`",
+ "typescript.preferences.organizeImports.unicodeCollation": "Unicode 照合順序と序数照合順序のどちらを使用してインポートを並べ替えるかを指定します。",
+ "typescript.preferences.organizeImports.unicodeCollation.ordinal": "各コード ポイントの数値を使用してインポートを並べ替えます。",
+ "typescript.preferences.organizeImports.unicodeCollation.unicode": "Unicode コードの照合順序を使用してインポートを並べ替えます。",
+ "typescript.preferences.preferTypeOnlyAutoImports": "可能な場合は、`type` キーワードを自動インポートに含めます。ワークスペースで TypeScript 5.3 以降を使用する必要があります。",
+ "typescript.preferences.quoteStyle": "迅速な修正の使用で優先される引用符のスタイル。",
+ "typescript.preferences.quoteStyle.auto": "既存のコードから引用符の種類を推測する",
+ "typescript.preferences.quoteStyle.double": "常に二重引用符 `\"` を使用します。",
+ "typescript.preferences.quoteStyle.single": "常に単一引用符 `'` を使用します。",
+ "typescript.preferences.renameMatchingJsxTags": "JSX タグの場合は、シンボルの名前を変更するのではなく、一致するタグの名前を変更します。ワークスペースで TypeScript 5.1 以降を使用する必要があります。",
+ "typescript.preferences.useAliasesForRenames": "名前の変更時にオブジェクトの省略形のプロパティのエイリアスの導入を有効または無効にします。",
+ "typescript.problemMatchers.tsc.label": "TypeScript の問題",
+ "typescript.problemMatchers.tscWatch.label": "TypeScript の問題 (ウォッチ モード)",
+ "typescript.problemMatchers.tsgo-watch.label": "TypeScript の問題 (ウォッチ モード)",
+ "typescript.referencesCodeLens.enabled": "TypeScript ファイルで CodeLens の参照を有効/無効にします。",
+ "typescript.referencesCodeLens.showOnAllFunctions": "有効および無効は、TypeScript ファイル内のすべての関数で CodeLens を参照します。",
+ "typescript.removeUnusedImports": "未使用のインポートの削除",
+ "typescript.reportStyleChecksAsWarnings": "スタイル チェックを警告として報告します。",
+ "typescript.restartTsServer": "TS サーバーを再起動",
+ "typescript.selectTypeScriptVersion.title": "TypeScript のバージョンを選択...",
+ "typescript.sortImports": "インポートの並べ替え",
+ "typescript.suggest.enabled": "オートコンプリート候補を有効または無効にします。",
+ "typescript.suggestionActions.enabled": "エディター内で TypeScript ファイルの診断の提案を有効または無効にします。",
+ "typescript.tsc.autoDetect": "tsc タスクの自動検出を制御します。",
+ "typescript.tsc.autoDetect.build": "単一の実行コンパイルタスクのみを作成します。",
+ "typescript.tsc.autoDetect.off": "この機能を無効にします。",
+ "typescript.tsc.autoDetect.on": "ビルドとウォッチ、両方のタスクを作成します。",
+ "typescript.tsc.autoDetect.watch": "コンパイルタスクとウォッチタスクのみを作成します。",
+ "typescript.tsdk.desc": "IntelliSense に使用する、TypeScript インストールの下にある tsserver および lib*.d.ts ファイルのフォルダー パスを指定します。例: './node_modules/typescript/lib'。\r\n\r\n- ユーザー設定として指定した場合は、'typescript.tsdk' からの TypeScript バージョンによって組み込みの TypeScript バージョンが自動的に置き換えられます。\r\n- ワークスペース設定として指定した場合は、'typescript.tsdk' で 'TypeScript: Select TypeScript version' コマンドを使用することによって、IntelliSense のためにそのワークスペース バージョンの TypeScript を使用するように切り替えることができます。\r\n\r\nTypeScript バージョンの管理について詳しくは、[TypeScript のドキュメント](https://code.visualstudio.com/docs/typescript/typescript-compiling#_using-newer-typescript-versions) をご覧ください。",
+ "typescript.tsserver.enableRegionDiagnostics": "TypeScript でリージョン ベースの診断を有効にします。ワークスペースで TypeScript 5.6+ 以降を使用する必要があります。",
+ "typescript.tsserver.enableTracing": "ディレクトリへの TS サーバーのパフォーマンスのトレースを有効にします。これらのトレース ファイルは TS サーバーのパフォーマンスの問題を診断するために使用できます。ログには、プロジェクトのファイル パス、ソース コード、その他の潜在的に機密性の高い情報が含まれている場合があります。",
+ "typescript.tsserver.log": "ファイルへの TS サーバーのログを有効にします。このログは TS サーバーの問題を診断するために使用できます。ログには、プロジェクトのファイルパス、ソースコード、その他の潜在的に機密性の高い情報が含まれている場合があります。",
+ "typescript.tsserver.pluginPaths": "TypeScript 言語サービス プラグインを検出する追加のパス。",
+ "typescript.tsserver.pluginPaths.item": "絶対または相対パスのいずれか。相対パスはワークスペース フォルダーに対して解決されます。",
+ "typescript.tsserver.trace": "TS サーバーに送信されるメッセージのトレースを有効にします。このトレースは TS サーバーの問題を診断するために使用できます。トレースには、プロジェクトのファイルパス、ソースコード、その他の潜在的に機密性の高い情報が含まれている場合があります。",
+ "typescript.updateImportsOnFileMove.enabled": "VS Code で名前変更や移動を行ったファイルのインポート パスの自動更新を有効または無効にします。",
+ "typescript.updateImportsOnFileMove.enabled.always": "常に自動的にパスを更新します。",
+ "typescript.updateImportsOnFileMove.enabled.never": "パスの名前を変更せず確認も行いません。",
+ "typescript.updateImportsOnFileMove.enabled.prompt": "名前を変更するときに確認をします。",
+ "typescript.useTsgo": "TypeScript Go の試験的な拡張機能を使用できるようにするには、TypeScript と JavaScript の言語機能を無効にします。TypeScript Go をインストールして構成する必要があります。この設定を変更した後に拡張機能を再読み込みする必要があります。",
+ "typescript.validate.enable": "TypeScript の検証を有効/無効にします。",
+ "typescript.workspaceSymbols.excludeLibrarySymbols": "`ワークスペース内のシンボルに移動` の結果で、ライブラリ ファイルから取得したシンボルを除外します。ワークスペースで TypeScript 5.3 以降を使用する必要があります。",
+ "typescript.workspaceSymbols.scope": "[ワークスペース内のシンボルへの移動](https://code.visualstudio.com/docs/editor/editingevolved#_open-symbol-by-name) でどのファイルを検索するかを制御します。",
+ "typescript.workspaceSymbols.scope.allOpenProjects": "開いているすべての JavaScript プロジェクトまたは TypeScript プロジェクトでシンボルを検索します。",
+ "typescript.workspaceSymbols.scope.currentProject": "現在の JavaScript または TypeScript プロジェクトからのみシンボルを検索します。",
+ "virtualWorkspaces": "仮想ワークスペースでは、ファイル間の参照の解決や検索はサポートされていません。",
+ "walkthroughs.nodejsWelcome.debugJsFile.altText": "Visual Studio Code を使用して、Node.js で JavaScript コードをデバッグして実行します。",
+ "walkthroughs.nodejsWelcome.debugJsFile.description": "Node.js をインストールしたら、ターミナルで ``node your-file-name.js`` と入力して JavaScript プログラムを実行することができます\r\nもう一つの簡単な方法は、コードを実行し、さまざまなポイントで一時停止し、起こっていることを段階的に理解するのに役立つ VS Code のデバッガーを使用して Node.js プログラムを実行することです。\r\n[デバッグの開始](command:javascript-walkthrough.commands.debugJsFile)",
+ "walkthroughs.nodejsWelcome.debugJsFile.title": "JavaScript を実行してデバッグ",
+ "walkthroughs.nodejsWelcome.description": "Visual Studio Code のファースト クラスである JavaScript エクスペリエンスを最大限に活用します。",
+ "walkthroughs.nodejsWelcome.downloadNode.forLinux.description": "Node.js は JavaScript コードを実行する簡単な方法です。これを使用すると、コマンド ライン アプリとサーバーをすばやくビルドできます。また、また、JavaScript コードの再利用と共有を簡単にするパッケージ マネージャーである npm も付属しています。\r\n[Node.js のインストール](https://nodejs.org/en/download/package-manager/)",
+ "walkthroughs.nodejsWelcome.downloadNode.forLinux.title": "Node.js のインストール",
+ "walkthroughs.nodejsWelcome.downloadNode.forMacOrWindows.description": "Node.js は JavaScript コードを実行する簡単な方法です。これを使用すると、コマンド ライン アプリとサーバーをすばやくビルドできます。また、また、JavaScript コードの再利用と共有を簡単にするパッケージ マネージャーである npm も付属しています。\r\n[Node.js のインストール](https://nodejs.org/en/download/)",
+ "walkthroughs.nodejsWelcome.downloadNode.forMacOrWindows.title": "Node.js のインストール",
+ "walkthroughs.nodejsWelcome.learnMoreAboutJs.altText": "Visual Studio Code の JavaScript と Node.js に関する詳細を御覧ください。",
+ "walkthroughs.nodejsWelcome.learnMoreAboutJs.description": "JavaScript、Node.js、VS Code をもっと使いこなしたいですか? ドキュメントをご確認ください。\r\n[JavaScript](https://code.visualstudio.com/docs/nodejs/working-with-javascript) と [Node.js](https://code.visualstudio.com/docs/nodejs/nodejs-tutorial) を学習するためのソースがたくさんあります。\r\n\r\n[詳細情報](https://code.visualstudio.com/docs/nodejs/nodejs-tutorial)",
+ "walkthroughs.nodejsWelcome.learnMoreAboutJs.title": "さらに探索",
+ "walkthroughs.nodejsWelcome.makeJsFile.description": "最初の JavaScript ファイルを書いてみましょう。新しいファイルを作成し、ファイル名の末尾に ''.js'' 拡張子を付けて保存する必要があります。\r\n[JavaScript ファイルの作成](command:javascript-walkthrough.commands.createJsFile)",
+ "walkthroughs.nodejsWelcome.makeJsFile.title": "JavaScript ファイルの作成",
+ "walkthroughs.nodejsWelcome.title": "JavaScript と Node.js の使用を開始する",
+ "workspaceTrust": "この拡張機能は、ワークスペースで指定されたコードを実行するため、ワークスペース バージョンを使用する場合には、ワークスペースの信頼が必要です。"
+ }
+ }
+}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-ja/translations/extensions/vscode.typescript.i18n.json b/i18n/vscode-language-pack-ja/translations/extensions/vscode.typescript.i18n.json
index fad009ec3e..a6571da9ad 100644
--- a/i18n/vscode-language-pack-ja/translations/extensions/vscode.typescript.i18n.json
+++ b/i18n/vscode-language-pack-ja/translations/extensions/vscode.typescript.i18n.json
@@ -9,8 +9,8 @@
"version": "1.0.0",
"contents": {
"package": {
- "displayName": "TypeScript 言語の基礎",
- "description": "TypeScript ファイル内でスニペット、構文ハイライト、かっこ一致、折りたたみを提供します。"
+ "description": "TypeScript ファイル内でスニペット、構文ハイライト、かっこ一致、折りたたみを提供します。",
+ "displayName": "TypeScript 言語の基礎"
}
}
}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-ja/translations/extensions/vscode.vb.i18n.json b/i18n/vscode-language-pack-ja/translations/extensions/vscode.vb.i18n.json
index 49912c1a83..2b95831eda 100644
--- a/i18n/vscode-language-pack-ja/translations/extensions/vscode.vb.i18n.json
+++ b/i18n/vscode-language-pack-ja/translations/extensions/vscode.vb.i18n.json
@@ -9,8 +9,8 @@
"version": "1.0.0",
"contents": {
"package": {
- "displayName": "Visual Basic の基本言語サポート",
- "description": "Visual Basic ファイル内でスニペット、構文ハイライト、かっこ一致、折りたたみを提供します。"
+ "description": "Visual Basic ファイル内でスニペット、構文ハイライト、かっこ一致、折りたたみを提供します。",
+ "displayName": "Visual Basic の基本言語サポート"
}
}
}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-ja/translations/extensions/vscode.vscode-theme-seti.i18n.json b/i18n/vscode-language-pack-ja/translations/extensions/vscode.vscode-theme-seti.i18n.json
index 8d85e899c9..0b795fa815 100644
--- a/i18n/vscode-language-pack-ja/translations/extensions/vscode.vscode-theme-seti.i18n.json
+++ b/i18n/vscode-language-pack-ja/translations/extensions/vscode.vscode-theme-seti.i18n.json
@@ -9,8 +9,8 @@
"version": "1.0.0",
"contents": {
"package": {
- "displayName": "Seti File Icon テーマ",
"description": "Seti UI file icons を使用したファイル アイコンのテーマ",
+ "displayName": "Seti File Icon テーマ",
"themeLabel": "Seti (Visual Studio Code)"
}
}
diff --git a/i18n/vscode-language-pack-ja/translations/extensions/vscode.xml.i18n.json b/i18n/vscode-language-pack-ja/translations/extensions/vscode.xml.i18n.json
index b1d3d81af0..6c04c0fc81 100644
--- a/i18n/vscode-language-pack-ja/translations/extensions/vscode.xml.i18n.json
+++ b/i18n/vscode-language-pack-ja/translations/extensions/vscode.xml.i18n.json
@@ -9,8 +9,8 @@
"version": "1.0.0",
"contents": {
"package": {
- "displayName": "XML の基本言語サポート",
- "description": "XML ファイル内で構文ハイライト、かっこ一致を提供します。"
+ "description": "XML ファイル内で構文ハイライト、かっこ一致を提供します。",
+ "displayName": "XML の基本言語サポート"
}
}
}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-ja/translations/extensions/vscode.yaml.i18n.json b/i18n/vscode-language-pack-ja/translations/extensions/vscode.yaml.i18n.json
index 9875297f9a..d1f097840e 100644
--- a/i18n/vscode-language-pack-ja/translations/extensions/vscode.yaml.i18n.json
+++ b/i18n/vscode-language-pack-ja/translations/extensions/vscode.yaml.i18n.json
@@ -9,8 +9,8 @@
"version": "1.0.0",
"contents": {
"package": {
- "displayName": "YAML の基本言語サポート",
- "description": "YAML ファイル内で構文ハイライト、かっこ一致を提供します。"
+ "description": "YAML ファイル内で構文ハイライト、かっこ一致を提供します。",
+ "displayName": "YAML の基本言語サポート"
}
}
}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-ja/translations/extensions/xml.i18n.json b/i18n/vscode-language-pack-ja/translations/extensions/xml.i18n.json
deleted file mode 100644
index 6c04c0fc81..0000000000
--- a/i18n/vscode-language-pack-ja/translations/extensions/xml.i18n.json
+++ /dev/null
@@ -1,16 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "package": {
- "description": "XML ファイル内で構文ハイライト、かっこ一致を提供します。",
- "displayName": "XML の基本言語サポート"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-ja/translations/extensions/yaml.i18n.json b/i18n/vscode-language-pack-ja/translations/extensions/yaml.i18n.json
deleted file mode 100644
index d1f097840e..0000000000
--- a/i18n/vscode-language-pack-ja/translations/extensions/yaml.i18n.json
+++ /dev/null
@@ -1,16 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "package": {
- "description": "YAML ファイル内で構文ハイライト、かっこ一致を提供します。",
- "displayName": "YAML の基本言語サポート"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-ja/translations/main.i18n.json b/i18n/vscode-language-pack-ja/translations/main.i18n.json
index a8a1451087..f85a2dd332 100644
--- a/i18n/vscode-language-pack-ja/translations/main.i18n.json
+++ b/i18n/vscode-language-pack-ja/translations/main.i18n.json
@@ -22,6 +22,9 @@
"dialogWarningMessage": "警告",
"ok": "OK"
},
+ "vs/base/browser/ui/dropdown/dropdownActionViewItem": {
+ "moreActions": "その他の操作..."
+ },
"vs/base/browser/ui/findinput/findInput": {
"defaultLabel": "入力"
},
@@ -34,14 +37,21 @@
"defaultLabel": "入力",
"label.preserveCaseToggle": "保持する"
},
- "vs/base/browser/ui/iconLabel/iconLabelHover": {
- "iconLabel.loading": "読み込み中..."
+ "vs/base/browser/ui/hover/hoverWidget": {
+ "acessibleViewHint": "{0} を使用して、ユーザー補助対応のビューでこれを検査します。",
+ "acessibleViewHintNoKbOpen": "キー バインドを介して現在トリガーできない [ユーザー補助対応のビューを開く] コマンドを使用して、ユーザー補助対応のビューでこれを検査します。"
+ },
+ "vs/base/browser/ui/icons/iconSelectBox": {
+ "iconSelect.noResults": "結果はありません",
+ "iconSelect.placeholder": "アイコンの検索"
},
"vs/base/browser/ui/inputbox/inputBox": {
"alertErrorMessage": "エラー: {0}",
"alertInfoMessage": "情報: {0}",
"alertWarningMessage": "警告: {0}",
- "history.inputbox.hint": "履歴対象"
+ "clearedInput": "クリアされた入力",
+ "history.inputbox.hint.suffix.inparens": " (履歴の {0})",
+ "history.inputbox.hint.suffix.noparens": " または履歴の {0}"
},
"vs/base/browser/ui/keybindingLabel/keybindingLabel": {
"unbound": "バインドなし"
@@ -62,7 +72,14 @@
"vs/base/browser/ui/tree/abstractTree": {
"close": "閉じる",
"filter": "フィルター",
- "not found": "要素が見つかりません。",
+ "foundResults": "{0} 件の結果",
+ "fuzzySearch": "あいまい一致",
+ "not found": "結果が見つかりません。",
+ "replFindNoResults": "結果はありません",
+ "type to filter": "入力してフィルター",
+ "type to search": "入力して検索"
+ },
+ "vs/base/browser/ui/tree/asyncDataTree": {
"type to filter": "入力してフィルター",
"type to search": "入力して検索"
},
@@ -126,7 +143,18 @@
"date.fromNow.years.singular": "{0} 年",
"date.fromNow.years.singular.ago": "{0} 年前",
"date.fromNow.years.singular.ago.fullWord": "{0} 年前",
- "date.fromNow.years.singular.fullWord": "{0} 年"
+ "date.fromNow.years.singular.fullWord": "{0} 年",
+ "duration.d": "{0} 日",
+ "duration.h": "{0} 時間",
+ "duration.h.full": "{0} 時間",
+ "duration.m": "{0} 分",
+ "duration.m.full": "{0} 分",
+ "duration.ms": "{0} ミリ秒",
+ "duration.ms.full": "{0} ミリ秒",
+ "duration.s": "{0} 秒",
+ "duration.s.full": "{0} 秒",
+ "today": "今日",
+ "yesterday": "昨日"
},
"vs/base/common/errorMessage": {
"error.defaultMessage": "不明なエラーが発生しました。ログで詳細を確認してください。",
@@ -159,35 +187,28 @@
"windowsKey": "Windows",
"windowsKey.long": "Windows"
},
- "vs/base/common/platform": {
- "ensureLoaderPluginIsLoaded": "_"
- },
- "vs/base/node/processes": {
- "TaskRunner.UNC": "UNC ドライブ上でシェル コマンドを実行できません。"
+ "vs/base/common/policy": {
+ "extensionsConfigurationTitle": "拡張機能",
+ "interactiveSessionConfigurationTitle": "チャット",
+ "telemetryConfigurationTitle": "テレメトリ",
+ "terminalIntegratedConfigurationTitle": "統合ターミナル",
+ "updateConfigurationTitle": "更新"
},
"vs/base/node/zip": {
"incompleteExtract": "不完全です。{0} / {1} 個のエントリが見つかりました",
"invalid file": "{0} の抽出中にエラーが発生しました。無効なファイルです。",
"notFound": "zip ファイルの中に {0} が見つかりません。"
},
- "vs/base/parts/quickinput/browser/quickInput": {
- "custom": "カスタム",
- "inputModeEntry": "'Enter' を押して入力を確認するか 'Escape' を押して取り消します",
- "inputModeEntryDescription": "{0} ('Enter' を押して確認するか 'Escape' を押して取り消します)",
- "ok": "OK",
- "quickInput.back": "戻る",
- "quickInput.backWithKeybinding": "戻る ({0})",
- "quickInput.checkAll": "すべてのチェック ボックスを切り替える",
- "quickInput.countSelected": "{0} 個選択済み",
- "quickInput.steps": "{0}/{1}",
- "quickInput.visibleCount": "{0} 件の結果",
- "quickInputBox.ariaLabel": "入力すると結果が絞り込まれます。"
+ "vs/editor/browser/controller/editContext/native/screenReaderSupport": {
+ "editor": "エディター"
},
- "vs/base/parts/quickinput/browser/quickInputList": {
- "quickInput": "クイック入力"
+ "vs/editor/browser/controller/editContext/screenReaderUtils": {
+ "accessibilityModeOff": "この時点では、エディターにアクセスできません。",
+ "accessibilityOffAriaLabel": "{0} スクリーン リーダー最適化モードを有効にするには、{1} を使用します",
+ "accessibilityOffAriaLabelNoKb": "{0} スクリーン リーダー最適化モードを有効にするには、{1} でクイック ピックを開き、[スクリーン リーダー アクセシビリティ モードの切り替え] コマンドを実行します。これは現在キーボードからトリガーできません。",
+ "accessibilityOffAriaLabelNoKbs": "{0} {1} でキーバインド エディターにアクセスし、スクリーン リーダー アクセシビリティ モードの切り替えコマンドにキーバインドを割り当てて実行してください。"
},
- "vs/editor/browser/controller/textAreaHandler": {
- "accessibilityOffAriaLabel": "この時点では、エディターにアクセスできません。オプションを表示するには、{0} を押します。",
+ "vs/editor/browser/controller/editContext/textArea/textAreaEditContext": {
"editor": "エディター"
},
"vs/editor/browser/coreCommands": {
@@ -202,22 +223,40 @@
"selectAll": "すべてを選択",
"undo": "元に戻す"
},
- "vs/editor/browser/widget/codeEditorWidget": {
- "cursors.maximum": "カーソルの数は {0} 個に制限されています。"
+ "vs/editor/browser/gpu/viewGpuContext": {
+ "editor.dom.render": "DOM ベースのレンダリングを使用する"
},
- "vs/editor/browser/widget/diffEditorWidget": {
- "diff.tooLarge": "一方のファイルが大きすぎるため、ファイルを比較できません。",
- "diffInsertIcon": "差分エディターで挿入を示す線の装飾。",
- "diffRemoveIcon": "差分エディターで削除を示す線の装飾。"
+ "vs/editor/browser/services/inlineCompletionsService": {
+ "action.inlineSuggest.cancelSnooze": "インライン提案の再通知をキャンセル",
+ "action.inlineSuggest.snooze": "インライン提案の再通知",
+ "inlineCompletions.snoozed": "インライン補完が現在一時停止されているかどうか",
+ "snooze.placeholder": "インライン候補のスヌーズ期間を選択してください"
},
- "vs/editor/browser/widget/diffReview": {
+ "vs/editor/browser/widget/codeEditor/codeEditorWidget": {
+ "cursors.maximum": "カーソルの数は {0} に制限されています。大きな変更を行う場合は、[検索と置換](https://code.visualstudio.com/docs/editor/codebasics#_find-and-replace) を使用することを検討してください。",
+ "goToSetting": "マルチ カーソルの上限を増やす"
+ },
+ "vs/editor/browser/widget/diffEditor/commands": {
+ "accessibleDiffViewer": "アクセシビリティの高い差分ビューアー",
+ "collapseAllUnchangedRegions": "変更されていないすべてのリージョンを折りたたむ",
+ "diffEditor": "差分エディター",
+ "editor.action.accessibleDiffViewer.next": "次の差分に移動",
+ "editor.action.accessibleDiffViewer.prev": "前の差分に移動",
+ "exitCompareMove": "比較移動の終了",
+ "revert": "元に戻す",
+ "showAllUnchangedRegions": "変更されていないすべてのリージョンを表示する",
+ "switchSide": "サイドの切り替え",
+ "toggleCollapseUnchangedRegions": "変更されていない領域の折りたたみの切り替え",
+ "toggleShowMovedCodeBlocks": "移動したコード ブロックの表示の切り替え",
+ "toggleUseInlineViewWhenSpaceIsLimited": "スペースが制限されている場合に [インライン ビューの使用] を切り替える"
+ },
+ "vs/editor/browser/widget/diffEditor/components/accessibleDiffViewer": {
+ "accessibleDiffViewerCloseIcon": "アクセシビリティの高い差分ビューアーの [閉じる] のアイコン。",
+ "accessibleDiffViewerInsertIcon": "アクセシビリティの高い差分ビューアーの [挿入] のアイコン。",
+ "accessibleDiffViewerRemoveIcon": "アクセシビリティの高い差分ビューアーの [削除] のアイコン。",
+ "ariaLabel": "アクセス可能な Diff Viewer。上下方向キーを使用して移動します。",
"blankLine": "空白",
"deleteLine": "- {0} 元の行 {1}",
- "diffReviewCloseIcon": "差分レビューでの '閉じる' のアイコン。",
- "diffReviewInsertIcon": "差分レビューでの '挿入' のアイコン。",
- "diffReviewRemoveIcon": "差分レビューでの '削除' のアイコン。",
- "editor.action.diffReview.next": "次の差分に移動",
- "editor.action.diffReview.prev": "前の差分に移動",
"equalLine": "{0} 元の行 {1} 変更された行 {2}",
"header": "相違 {0}/{1}: 元の行 {2}、{3}。変更された行 {4}、{5}",
"insertLine": "+ {0} 変更された行 {1}",
@@ -227,7 +266,10 @@
"one_line_changed": "1 行が変更されました",
"unchangedLine": "{0} 変更されていない行 {1}"
},
- "vs/editor/browser/widget/inlineDiffMargin": {
+ "vs/editor/browser/widget/diffEditor/components/diffEditorEditors": {
+ "diff-aria-navigation-tip": " {0}を使用して、アクセシビリティのヘルプを開きます。"
+ },
+ "vs/editor/browser/widget/diffEditor/components/diffEditorViewZones/inlineDiffDeletedCodeMargin": {
"diff.clipboard.copyChangedLineContent.label": "変更された行のコピー ({0})",
"diff.clipboard.copyChangedLinesContent.label": "変更された行のコピー",
"diff.clipboard.copyChangedLinesContent.single.label": "変更された行のコピー",
@@ -236,18 +278,76 @@
"diff.clipboard.copyDeletedLinesContent.single.label": "削除された行のコピー",
"diff.inline.revertChange.label": "この変更を元に戻す"
},
+ "vs/editor/browser/widget/diffEditor/diffEditor.contribution": {
+ "Open Accessible Diff Viewer": "アクセシビリティの高い差分ビューアーを開く",
+ "revertHunk": "ブロックを元に戻す",
+ "revertSelection": "選択範囲を元に戻す",
+ "showMoves": "移動されたコード ブロックの表示",
+ "useInlineViewWhenSpaceIsLimited": "スペースが制限されている場合はインライン ビューを使用する"
+ },
+ "vs/editor/browser/widget/diffEditor/features/hideUnchangedRegionsFeature": {
+ "diff.bottom": "クリックまたはドラッグして下にもっと表示する",
+ "diff.hiddenLines.expandAll": "ダブルクリックして展開する",
+ "diff.hiddenLines.top": "クリックまたはドラッグして上にもっと表示する",
+ "foldUnchanged": "変更されていない領域を折りたたむ",
+ "hiddenLines": "非表示 {0} 行",
+ "showUnchangedRegion": "変更されていない領域の表示"
+ },
+ "vs/editor/browser/widget/diffEditor/features/movedBlocksLinesFeature": {
+ "codeMovedFrom": "行 {0}-{1} から移動されたコード",
+ "codeMovedFromWithChanges": "行 {0}-{1} から変更を加えてコードが移動されました",
+ "codeMovedTo": "コードを行 {0}-{1} に移動しました",
+ "codeMovedToWithChanges": "行 {0}-{1} に変更を加えてコードを移動しました"
+ },
+ "vs/editor/browser/widget/diffEditor/features/revertButtonsFeature": {
+ "revertChange": "変更を元に戻す",
+ "revertSelectedChanges": "選択した変更を元に戻す"
+ },
+ "vs/editor/browser/widget/diffEditor/registrations.contribution": {
+ "diffEditor.move.border": "差分エディターで移動されたテキストの境界線の色。",
+ "diffEditor.moveActive.border": "差分エディターで移動されたテキストのアクティブな境界線の色。",
+ "diffEditor.unchangedRegionShadow": "変更されていないリージョン ウィジェットの周りの影の色。",
+ "diffInsertIcon": "差分エディターで挿入を示す行の装飾。",
+ "diffRemoveIcon": "差分エディターで削除を示す行の装飾。"
+ },
+ "vs/editor/browser/widget/multiDiffEditor/colors": {
+ "multiDiffEditor.background": "マルチ ファイル差分エディターの背景色",
+ "multiDiffEditor.border": "マルチ ファイル差分エディターの境界線の色",
+ "multiDiffEditor.headerBackground": "diff エディターのヘッダーの背景色"
+ },
+ "vs/editor/browser/widget/multiDiffEditor/multiDiffEditorWidgetImpl": {
+ "loading": "読み込んでいます...",
+ "noChangedFiles": "変更されたファイルはありません"
+ },
"vs/editor/common/config/editorConfigurationSchema": {
"codeLens": "エディターで CodeLens を表示するかどうかを制御します。",
- "detectIndentation": "ファイルがファイルの内容に基づいて開かれる場合、`#editor.tabSize#` と `#editor.insertSpaces#` を自動的に検出するかどうかを制御します。",
+ "detectIndentation": "ファイルがファイルの内容に基づいて開かれる場合、{0} と {1} を自動的に検出するかどうかを制御します。",
+ "diffAlgorithm.advanced": "高度な差分アルゴリズムを使用します。",
+ "diffAlgorithm.legacy": "従来の差分アルゴリズムを使用します。",
+ "editor.experimental.asyncTokenization": "Web ワーカーでトークン化を非同期的に行うかどうかを制御します。",
+ "editor.experimental.asyncTokenizationLogging": "非同期トークン化をログに記録するかどうかを制御します。デバッグ用のみ。",
+ "editor.experimental.asyncTokenizationVerification": "従来のバックグラウンド トークン化に対して非同期トークン化を検証するかどうかを制御します。トークン化が遅くなる可能性があります。デバッグ専用です。",
+ "editor.experimental.preferTreeSitter.css": "css に対してツリー シッター解析を有効にするかどうかを制御します。これは、css に対する `#editor.experimental.treeSitterTelemetry#` よりも優先されます。",
+ "editor.experimental.preferTreeSitter.ini": "ini に対してツリー シッター解析を有効にするかどうかを制御します。これは、ini に対する `#editor.experimental.treeSitterTelemetry#` よりも優先されます。",
+ "editor.experimental.preferTreeSitter.regex": "RegEx に対してツリー シッター解析を有効にするかどうかを制御します。これは、RegEx に対する `#editor.experimental.treeSitterTelemetry#` よりも優先されます。",
+ "editor.experimental.preferTreeSitter.typescript": "TypeScript に対してツリー シッター解析を有効にするかどうかを制御します。これは、TypeScript に対する `#editor.experimental.treeSitterTelemetry#` よりも優先されます。",
+ "editor.experimental.treeSitterTelemetry": "ツリー シッターの解析を有効にし、テレメトリを収集するかどうかを制御します。特定の言語に対する `#editor.experimental.preferTreeSitter#` の設定が優先されます。",
"editorConfigurationTitle": "エディター",
+ "hideUnchangedRegions.contextLineCount": "変更されていない領域を比較するときにコンテキストとして使用される行の数を制御します。",
+ "hideUnchangedRegions.enabled": "差分エディターに変更されていない領域を表示するかどうかを制御します。",
+ "hideUnchangedRegions.minimumLineCount": "変更されていない領域の最小値として使用される線の数を制御します。",
+ "hideUnchangedRegions.revealLineCount": "未変更の領域に使用される線の数を制御します。",
"ignoreTrimWhitespace": "有効にすると、差分エディターは先頭または末尾の空白文字の変更を無視します。",
- "insertSpaces": "`Tab` キーを押すとスペースが挿入されます。`#editor.detectIndentation#` がオンの場合、この設定はファイル コンテンツに基づいて上書きされます。",
+ "indentSize": "インデントまたは `\"tabSize\"` で `#editor.tabSize#` の値を使用するために使用されるスペースの数。この設定は、 `#editor.detectIndentation#` がオンの場合、ファイルの内容に基づいてオーバーライドされます。",
+ "insertSpaces": "`Tab` キーを押すとスペースが挿入されます。{0} がオンの場合、この設定はファイル コンテンツに基づいて上書きされます。",
"largeFileOptimizations": "大きなファイルでメモリが集中する特定の機能を無効にするための特別な処理。",
"maxComputationTime": "差分計算が取り消された後のタイムアウト (ミリ秒単位)。タイムアウトなしには 0 を使用します。",
"maxFileSize": "差分を計算する場合の最大ファイル サイズ (MB)。制限なしの場合は 0 を使用します。",
"maxTokenizationLineLength": "この長さを越える行は、パフォーマンス上の理由によりトークン化されません。",
+ "renderGutterMenu": "有効にすると、差分エディターには、元に戻す操作とステージ操作のための特別な余白が表示されます。",
"renderIndicators": "差分エディターが追加/削除された変更に +/- インジケーターを示すかどうかを制御します。",
"renderMarginRevertIcon": "有効にすると、差分エディターでグリフ余白に、変更を元に戻すための矢印が表示されます。",
+ "renderSideBySideInlineBreakpoint": "差分エディターの幅がこの値より小さい場合は、インライン ビューが使用されます。",
"schema.brackets": "インデントを増減する角かっこを定義します。",
"schema.closeBracket": "右角かっこまたは文字列シーケンス。",
"schema.colorizedBracketPairs": "角かっこのペアの色付けが有効になっている場合、入れ子のレベルによって色付けされる角かっこのペアを定義します。",
@@ -256,16 +356,20 @@
"semanticHighlighting.enabled": "semanticHighlighting をサポートされる言語で表示するかどうかを制御します。",
"semanticHighlighting.false": "セマンティックの強調表示がすべての配色テーマについて無効になりました。",
"semanticHighlighting.true": "セマンティックの強調表示がすべての配色テーマについて有効になりました。",
+ "showEmptyDecorations": "文字が挿入または削除された場所を確認するために、差分エディターに空の装飾を表示するかどうかを制御します。",
+ "showMoves": "差分エディターで検出されたコードの移動を表示するかどうかを制御します。",
"sideBySide": "差分エディターが差分を横に並べて表示するか、行内に表示するかを制御します。",
"stablePeek": "エディターのコンテンツをダブルクリックするか、`Escape` キーを押しても、ピーク エディターを開いたままにします。",
- "tabSize": "1 つのタブに相当するスペースの数。`#editor.detectIndentation#` がオンの場合、この設定はファイル コンテンツに基づいて上書きされます。",
+ "tabSize": "1 つのタブに相当するスペースの数。{0} がオンの場合、この設定はファイル コンテンツに基づいて上書きされます。",
"trimAutoWhitespace": "自動挿入された末尾の空白を削除します。",
- "wordBasedSuggestions": "ドキュメント内の単語に基づいて入力候補を計算するかどうかを制御します。",
- "wordBasedSuggestionsMode": "単語ベースの入力候補が計算されるドキュメントを制御します。",
- "wordBasedSuggestionsMode.allDocuments": "開いているすべてのドキュメントから単語の候補を表示します。",
- "wordBasedSuggestionsMode.currentDocument": "アクティブなドキュメントからのみ単語の候補を表示します。",
- "wordBasedSuggestionsMode.matchingDocuments": "同じ言語の開いているすべてのドキュメントから単語の候補を表示します。",
- "wordWrap.inherit": "行は、`#editor.wordWrap#` 設定に従って折り返されます。",
+ "useInlineViewWhenSpaceIsLimited": "有効になっていると、エディターの幅が小さすぎる場合はインライン ビューが使用されます。",
+ "useTrueInlineView": "有効化されており、エディターがインライン ビューを使用している場合、単語の変更はインラインでレンダリングされます。",
+ "wordBasedSuggestions": "ドキュメントの単語に基づいて入力候補を計算するかどうか、またどのドキュメントから入力候補を計算するかを制御します。",
+ "wordBasedSuggestions.allDocuments": "開いているすべてのドキュメントから単語の候補を表示します。",
+ "wordBasedSuggestions.currentDocument": "アクティブなドキュメントからのみ単語の候補を表示します。",
+ "wordBasedSuggestions.matchingDocuments": "同じ言語の開いているすべてのドキュメントから単語の候補を表示します。",
+ "wordBasedSuggestions.off": "単語ベースの候補をオフにします。",
+ "wordWrap.inherit": "行は、{0} の設定に従って折り返されます。",
"wordWrap.off": "行を折り返しません。",
"wordWrap.on": "行をビューポートの幅で折り返します。"
},
@@ -274,46 +378,64 @@
"acceptSuggestionOnEnter": "`Tab` キーに加えて `Enter` キーで候補を受け入れるかどうかを制御します。改行の挿入や候補の反映の間であいまいさを解消するのに役立ちます。",
"acceptSuggestionOnEnterSmart": "テキストの変更を行うとき、`Enter` を使用する場合にのみ候補を受け付けます。",
"accessibilityPageSize": "一度にスクリーン リーダーによって読み上げることができるエディターの行数を制御します。スクリーン リーダーが検出されると、既定値が 500 に自動的に設定されます。警告: 既定値より大きい数値の場合は、パフォーマンスに影響があります。",
- "accessibilitySupport": "エディターをスクリーン リーダーに最適化されたモードで実行するかどうかを制御します。オンに設定すると単語の折り返しが無効になります。",
- "accessibilitySupport.auto": "エディターはスクリーン リーダーがいつ接続されたかを検出するためにプラットフォーム API を使用します。",
- "accessibilitySupport.off": "エディターはスクリーン リーダー向けに最適化されません。",
- "accessibilitySupport.on": "エディターは永続的にスクリーン リーダーでの使用向けに最適化されます。単語の折り返しは無効になります。",
+ "accessibilitySupport": "この UI をスクリーン リーダーに最適化されたモードで実行するかどうかを制御します。",
+ "accessibilitySupport.auto": "プラットフォーム API を使用して、スクリーン リーダーがいつ接続されたかを検出します。",
+ "accessibilitySupport.off": "スクリーン リーダーが接続されていないとします。",
+ "accessibilitySupport.on": "スクリーン リーダーでの使用を最適化します。",
+ "allowVariableFonts": "エディターでの可変フォントの使用を許可するかどうかを制御します。",
+ "allowVariableFontsInAccessibilityMode": "アクセシビリティ モードのエディターで可変フォントの使用を許可するかどうかを制御します。",
+ "allowVariableLineHeights": "エディターでの可変フォントの使用を許可するかどうかを制御します。",
"alternativeDeclarationCommand": "'宣言へ移動' の結果が現在の場所である場合に実行される代替コマンド ID。",
"alternativeDefinitionCommand": "'定義へ移動' の結果が現在の場所である場合に実行される代替コマンド ID。",
"alternativeImplementationCommand": "'実装へ移動' の結果が現在の場所である場合に実行される代替コマンド ID。",
"alternativeReferenceCommand": "'参照へ移動' の結果が現在の場所である場合に実行される代替コマンド ID。",
"alternativeTypeDefinitionCommand": "'型定義へ移動' の結果が現在の場所である場合に実行される代替コマンド ID。",
"autoClosingBrackets": "エディターで左角かっこを追加した後に自動的に右角かっこを挿入するかどうかを制御します。",
+ "autoClosingComments": "エディターでコメントを開始した後に自動的にコメントを閉じるかどうかを制御します。",
"autoClosingDelete": "削除時にエディターで隣接する終わり引用符または括弧を削除するかどうかを制御します。",
"autoClosingOvertype": "エディターで終わり引用符または括弧を上書きするかどうかを制御します。",
"autoClosingQuotes": "ユーザーが開始引用符を追加した後、エディター自動的に引用符を閉じるかどうかを制御します。",
"autoIndent": "ユーザーが行を入力、貼り付け、移動、またはインデントするときに、エディターでインデントを自動的に調整するかどうかを制御します。",
+ "autoIndentOnPaste": "エディターが貼り付けたコンテンツを自動的にインデントするかどうかを制御します。",
+ "autoIndentOnPasteWithinString": "文字列内に貼り付けたときに、エディターが貼り付けたコンテンツを自動的にインデントするかどうかを制御します。これは autoIndentOnPaste が true の場合に有効になります。",
"autoSurround": "引用符または角かっこを入力するときに、エディターが選択範囲を自動的に囲むかどうかを制御します。",
"bracketPairColorization.enabled": "ブラケットのペアの色付けが有効かどうかを制御します。 {0} を使用して、ブラケットの強調表示の色をオーバーライドします。",
"bracketPairColorization.independentColorPoolPerBracketType": "括弧の各種別が、個別のカラー プールを保持するかどうかを制御します。",
- "codeActions": "エディターでコード アクションの電球を有効にします。",
"codeLens": "エディターで CodeLens を表示するかどうかを制御します。",
"codeLensFontFamily": "CodeLens のフォント ファミリを制御します。",
- "codeLensFontSize": "CodeLens のフォント サイズをピクセル単位で制御します。'0' に設定すると、'#editor.fontSize#' の 90% が使用されます。",
+ "codeLensFontSize": "CodeLens のフォント サイズをピクセル単位で制御します。0 に設定すると、`#editor.fontSize#` の 90% が使用されます。",
+ "colorDecoratorActivatedOn": "カラー デコレーターからカラー ピッカーを表示する条件を制御します。",
"colorDecorators": "エディターでインライン カラー デコレーターと色の選択を表示する必要があるかどうかを制御します。",
+ "colorDecoratorsLimit": "エディターで一度にレンダリングできるカラー デコレーターの最大数を制御します。",
"columnSelection": "マウスとキーでの選択により列の選択を実行できるようにします。",
"comments.ignoreEmptyLines": "行コメントの追加または削除アクションの切り替えで、空の行を無視するかどうかを制御します。",
"comments.insertSpace": "コメント時に空白文字を挿入するかどうかを制御します。",
"copyWithSyntaxHighlighting": "構文ハイライトをクリップボードにコピーするかどうかを制御します。",
"cursorBlinking": "カーソルのアニメーション方式を制御します。",
+ "cursorHeight": "`#editor.cursorStyle#` が `line` に設定されている場合、カーソルの高さを制御します。カーソルの最大高さは、行の高さによって異なります。",
"cursorSmoothCaretAnimation": "滑らかなキャレットアニメーションを有効にするかどうかを制御します。",
- "cursorStyle": "カーソルのスタイルを制御します。",
- "cursorSurroundingLines": "カーソル前後の表示可能な先頭と末尾の行の最小数を制御します。他の一部のエディターでは 'scrollOff' または `scrollOffset` と呼ばれます。",
- "cursorSurroundingLinesStyle": "'カーソルの周囲の行' を適用するタイミングを制御します。",
+ "cursorSmoothCaretAnimation.explicit": "スムーズ キャレット アニメーションは、ユーザーが明示的なジェスチャでカーソルを移動した場合にのみ有効になります。",
+ "cursorSmoothCaretAnimation.off": "スムーズ キャレット アニメーションが無効になっています。",
+ "cursorSmoothCaretAnimation.on": "スムーズ キャレット アニメーションは常に有効です。",
+ "cursorStyle": "挿入入力モードのカーソル スタイルを制御します。",
+ "cursorSurroundingLines": "カーソル前後の表示可能な先頭の行 (最小 0) と末尾の行 (最小 1) の最小数を制御します。他の一部のエディターでは 'scrollOff' または 'scrollOffset' と呼ばれます。",
+ "cursorSurroundingLinesStyle": "`#editor.cursorSurroundingLines#` を適用するタイミングを制御します。",
"cursorSurroundingLinesStyle.all": "`cursorSurroundingLines` は常に適用されます。",
"cursorSurroundingLinesStyle.default": "`cursorSurroundingLines` は、キーボードまたは API でトリガーされた場合にのみ強制されます。",
"cursorWidth": "`#editor.cursorStyle#` が `line` に設定されている場合、カーソルの幅を制御します。",
+ "defaultColorDecorators": "既定のドキュメント カラー プロバイダーを使用してインラインの色の装飾を表示するかどうかを制御します。",
"definitionLinkOpensInPeek": "[定義へ移動] マウス ジェスチャーで、常にピーク ウィジェットを開くかどうかを制御します。",
"deprecated": "この設定は非推奨です。代わりに、'editor.suggest.showKeywords' や 'editor.suggest.showSnippets' などの個別の設定を使用してください。",
"dragAndDrop": "ドラッグ アンド ドロップによる選択範囲の移動をエディターが許可するかどうかを制御します。",
- "dropIntoEditor.enabled": "Controls whether you can drag and drop a file into a text editor by holding down `shift` (instead of opening the file in an editor).",
+ "dropIntoEditor.enabled": "(エディターでファイルを開く代わりに) `Shift` キーを押しながらテキスト エディターにファイルをドラッグ アンド ドロップできるかどうかを制御します。",
+ "dropIntoEditor.showDropSelector": "エディターにファイルをドロップするときにウィジェットを表示するかどうかを制御します。このウィジェットでは、ファイルのドロップ方法を制御できます。",
+ "dropIntoEditor.showDropSelector.afterDrop": "ファイルがエディターにドロップされた後に、ドロップ セレクター ウィジェットを表示します。",
+ "dropIntoEditor.showDropSelector.never": "ドロップ セレクター ウィジェットを表示しません。代わりに、既定のドロップ プロバイダーが常に使用されます。",
+ "editContext": "エディターでの入力を強化するために、テキスト ボックスの代わりに EditContext API を使用するかどうかを設定します。",
"editor.autoClosingBrackets.beforeWhitespace": "カーソルが空白文字の左にあるときだけ、かっこを自動クローズします。",
"editor.autoClosingBrackets.languageDefined": "言語設定を使用して、いつかっこを自動クローズするか決定します。",
+ "editor.autoClosingComments.beforeWhitespace": "カーソルが空白文字の左にあるときだけ、コメントを自動クローズします。",
+ "editor.autoClosingComments.languageDefined": "言語設定を使用して、いつかっこを自動クローズするか決定します。",
"editor.autoClosingDelete.auto": "隣接する終わり引用符または括弧が自動的に挿入された場合にのみ、それらを削除します。",
"editor.autoClosingOvertype.auto": "終わり引用符または括弧が自動的に挿入された場合にのみ、それらを上書きします。",
"editor.autoClosingQuotes.beforeWhitespace": "カーソルが空白文字の左にあるときだけ、引用符を自動クローズします。",
@@ -326,15 +448,24 @@
"editor.autoSurround.brackets": "引用符ではなく、角かっこで囲みます。",
"editor.autoSurround.languageDefined": "言語構成を使用して、選択範囲をいつ自動的に囲むかを判断します。",
"editor.autoSurround.quotes": "角かっこではなく、引用符で囲みます。",
+ "editor.colorDecoratorActivatedOn.click": "カラー デコレーターのクリック時にカラー ピッカーを表示する",
+ "editor.colorDecoratorActivatedOn.clickAndHover": "カラー デコレーターのクリック時とポイント時の両方にカラー ピッカーを表示する",
+ "editor.colorDecoratorActivatedOn.hover": "カラー デコレーターのポイント時にカラー ピッカーを表示する",
+ "editor.defaultColorDecorators.always": "常に既定のカラー デコレーターを表示します。",
+ "editor.defaultColorDecorators.auto": "拡張機能が色デコレーターを提供しない場合にのみ、既定のカラー デコレーターを表示します。",
+ "editor.defaultColorDecorators.never": "既定のカラー デコレーターを表示しません。",
"editor.editor.gotoLocation.multipleDeclarations": "複数のターゲットの場所があるときの '宣言へ移動' コマンドの動作を制御します。",
"editor.editor.gotoLocation.multipleDefinitions": "複数のターゲットの場所があるときの '定義へ移動' コマンドの動作を制御します。",
"editor.editor.gotoLocation.multipleImplemenattions": "複数のターゲットの場所があるときの '実装に移動' コマンドの動作を制御します。",
"editor.editor.gotoLocation.multipleReferences": "ターゲットの場所が複数存在する場合の '参照へ移動' コマンドの動作を制御します。",
"editor.editor.gotoLocation.multipleTypeDefinitions": "複数のターゲットの場所があるときの '型定義へ移動' コマンドの動作を制御します。",
- "editor.experimental.stickyScroll": "Shows the nested current scopes during the scroll at the top of the editor.",
"editor.find.autoFindInSelection.always": "[選択範囲を検索] を常に自動的にオンにします。",
"editor.find.autoFindInSelection.multiline": "複数行のコンテンツが選択されている場合は、[選択範囲を検索] を自動的にオンにします。",
"editor.find.autoFindInSelection.never": "[選択範囲を検索] を自動的にオンにしません (既定)。",
+ "editor.find.history.never": "検索ウィジェットからの検索履歴を保存しません。",
+ "editor.find.history.workspace": "アクティブなワークスペース全体に検索履歴を保存する",
+ "editor.find.replaceHistory.never": "置換ウィジェットからの履歴を保存しません。",
+ "editor.find.replaceHistory.workspace": "アクティブなワークスペース全体に置換履歴を保存する",
"editor.find.seedSearchStringFromSelection.always": "カーソル位置にある単語を含め、エディターの選択範囲から検索文字列を常にシードします。",
"editor.find.seedSearchStringFromSelection.never": "エディターの選択範囲から検索文字列をシードしません。",
"editor.find.seedSearchStringFromSelection.selection": "エディターの選択範囲から検索文字列のみをシードします。",
@@ -357,9 +488,19 @@
"editor.guides.highlightActiveIndentation.true": "アクティブなインデント ガイドを強調表示します。",
"editor.guides.indentation": "エディターでインデント ガイドを表示するかどうかを制御します。",
"editor.inlayHints.off": "インレイ ヒントが無効になっています",
- "editor.inlayHints.offUnlessPressed": "インレイ ヒントは既定では非表示になり、Ctrl + Alt キーを押している場合に表示されます",
+ "editor.inlayHints.offUnlessPressed": "インレイ ヒントは既定では非表示になり、{0} を押したままにすると表示されます",
"editor.inlayHints.on": "インレイ ヒントが有効になっています",
- "editor.inlayHints.onUnlessPressed": "インレイ ヒントは既定で表示され、Ctrl + Alt キーを押したままにすると非表示になります",
+ "editor.inlayHints.onUnlessPressed": "インレイ ヒントは既定で表示され、{0} を押したままにすると非表示になります",
+ "editor.inlineSuggest.edits.renderSideBySide.auto": "十分なスペースがある場合に、大きな候補は横並びに表示されますが、そうでない場合は下側に表示されます。",
+ "editor.inlineSuggest.edits.renderSideBySide.never": "大きな候補は横並びに表示されることはなく、常に下側に表示されます。",
+ "editor.lightbulb.enabled.off": "コード アクション メニューを無効にします。",
+ "editor.lightbulb.enabled.on": "カーソルがコードのある行または空の行にあるときに、コード アクション メニューを表示します。",
+ "editor.lightbulb.enabled.onCode": "カーソルがコードが存在する行にあるときに、コード アクション メニューを表示します。",
+ "editor.stickyScroll.defaultModel": "固定する行を決定するために使用するモデルを定義します。アウトライン モデルが存在しない場合、インデント モデルにフォールバックする折りたたみプロバイダー モデルにフォールバックします。この順序は、3 つのケースすべてで優先されます。",
+ "editor.stickyScroll.enabled": "スクロール中にエディターの上部に入れ子になった現在のスコープを表示します。",
+ "editor.stickyScroll.maxLineCount": "表示する追従行の最大数を定義します。",
+ "editor.stickyScroll.scrollWithEditor": "エディターの水平スクロール バーでスティッキー スクロールのスクロールを有効にします。",
+ "editor.suggest.matchOnWordStartOnly": "有効にすると、IntelliSense のフィルター処理では、単語の先頭で最初の文字が一致する必要があります。たとえば、`Console` や `WebContext` の場合は `c`、`description` の場合は _not_ です。無効にすると、IntelliSense はより多くの結果を表示しますが、一致品質で並べ替えられます。",
"editor.suggest.showClasss": "有効にすると、IntelliSense に 'クラス' 候補が表示されます。",
"editor.suggest.showColors": "有効にすると、IntelliSense に `色` 候補が表示されます。",
"editor.suggest.showConstants": "有効にすると、IntelliSense に `定数` 候補が表示されます。",
@@ -391,12 +532,23 @@
"editor.suggest.showVariables": "有効にすると、IntelliSense に `変数` 候補が表示されます。",
"editorViewAccessibleLabel": "エディターのコンテンツ",
"emptySelectionClipboard": "選択範囲を指定しないでコピーする場合に現在の行をコピーするかどうかを制御します。",
+ "enabled": "エディターでコード アクションの電球を有効にします。",
+ "experimentalGpuAcceleration": "試験的な GPU アクセラレータを使用してエディターをレンダリングするかどうかを制御します。",
+ "experimentalGpuAcceleration.off": "通常の DOM ベースのレンダリングを使用します。",
+ "experimentalGpuAcceleration.on": "GPU アクセラレーションを使用します。",
+ "experimentalWhitespaceRendering": "新しい試験的なメソッドを使用して空白をレンダリングするかどうかを制御します。",
+ "experimentalWhitespaceRendering.font": "フォント文字に新しいレンダリング方法を使用します。",
+ "experimentalWhitespaceRendering.off": "安定したレンダリング方法を使用します。",
+ "experimentalWhitespaceRendering.svg": "SVGS で新しいレンダリング方法を使用します。",
"fastScrollSensitivity": "`Alt` を押すと、スクロール速度が倍増します。",
"find.addExtraSpaceOnTop": "検索ウィジェットがエディターの上に行をさらに追加するかどうかを制御します。true の場合、検索ウィジェットが表示されているときに最初の行を超えてスクロールできます。",
"find.autoFindInSelection": "[選択範囲を検索] を自動的にオンにする条件を制御します。",
"find.cursorMoveOnType": "入力中に一致を検索するためにカーソルをジャンプさせるかどうかを制御します。",
+ "find.findOnType": "入力中に検索ウィジェットが検索を行うかどうかを制御します。",
"find.globalFindClipboard": "macOS で検索ウィジェットが共有の検索クリップボードを読み取りまたは変更するかどうかを制御します。",
+ "find.history": "検索ウィジェットの履歴を保存する方法を制御する",
"find.loop": "以降で一致が見つからない場合に、検索を先頭から (または末尾から) 自動的に再実行するかどうか制御します。",
+ "find.replaceHistory": "置換ウィジェットの履歴を保存する方法を制御する",
"find.seedSearchStringFromSelection": "エディターの選択範囲から検索ウィジェット内の検索文字列を与えるかどうかを制御します。",
"folding": "エディターでコードの折りたたみを有効にするかどうかを制御します。",
"foldingHighlight": "エディターで折りたたまれた範囲を強調表示するかどうかをコントロールします。",
@@ -410,6 +562,9 @@
"fontLigatures": "フォントの合字 ('calt' および 'liga' フォントの機能) を有効または無効にします。'font-feature-settings' CSS プロパティを詳細に制御するには、これを文字列に変更します。",
"fontLigaturesGeneral": "フォントの合字やフォントの機能を構成します。合字を有効または無効にするブール値または CSS 'font-feature-settings' プロパティの値の文字列を指定できます。",
"fontSize": "フォント サイズ (ピクセル単位) を制御します。",
+ "fontVariationSettings": "明示的な 'font-variation-settings' CSS プロパティ。font-weight を font-variation-settings に変換する必要があるだけであれば、代わりにブール値を渡すことができます。",
+ "fontVariations": "font-weight から font-variation-settings への変換を有効/無効にします。'font-variation-settings' CSS プロパティを細かく制御するために、これを文字列に変更します。",
+ "fontVariationsGeneral": "フォントのバリエーションを構成します。font-weight から font-variation-settings への変換を有効/無効にするブール値、または CSS 'font-variation-settings' プロパティの値の文字列のいずれかです。",
"fontWeight": "フォントの太さを制御します。\"標準\" および \"太字\" のキーワードまたは 1 ~ 1000 の数字を受け入れます。",
"fontWeightErrorMessage": "使用できるのは \"標準\" および \"太字\" のキーワードまたは 1 ~ 1000 の数字のみです。",
"formatOnPaste": "貼り付けた内容がエディターにより自動的にフォーマットされるかどうかを制御します。フォーマッタを使用可能にする必要があります。また、フォーマッタがドキュメント内の範囲をフォーマットできなければなりません。",
@@ -419,13 +574,37 @@
"hover.above": "スペースがある場合は、行の上にマウス カーソルを被せて表示する。",
"hover.delay": "ホバーを表示後の待ち時間 (ミリ秒) を制御します。",
"hover.enabled": "ホバーを表示するかどうかを制御します。",
+ "hover.enabled.off": "ホバーが無効になっています。",
+ "hover.enabled.on": "ホバーが有効になっています。",
+ "hover.enabled.onKeyboardModifier": "'{0}' または 'Alt' ('#editor.multiCursorModifier#' の逆の修飾キー) を押している間、ホバーが表示されます",
+ "hover.hidingDelay": "ホバーが非表示になるまでの延期期間をミリ秒単位で制御します。`#editor.hover.sticky#` を有効にする必要があります。",
"hover.sticky": "ホバーにマウスを移動したときに、ホバーを表示し続けるかどうかを制御します。",
- "inlayHints.enable": "エディターでインレー ヒントを有効にします。",
- "inlayHints.fontFamily": "エディターで解説ヒントのフォント ファミリを制御します。空に設定すると、 {0} が使用されます。",
- "inlayHints.fontSize": "エディターでの解説ヒントのフォント サイズを制御します。既定では、{0} は、構成された値が {1} より小さいか、エディターのフォント サイズより大きい場合に使用されます。",
+ "inertialScroll": "スクロールを慣性にする - Linux 上のタッチパッドでほとんど役に立ちます。",
+ "inlayHints.enable": "エディターでインレイ ヒントを有効にします。",
+ "inlayHints.fontFamily": "エディターでインレイ ヒントのフォント ファミリを制御します。空に設定すると、 {0} が使用されます。",
+ "inlayHints.fontSize": "エディターでのインレイ ヒントのフォント サイズを制御します。既定では、{0} は、構成された値が {1} より小さいか、エディターのフォント サイズより大きい場合に使用されます。",
+ "inlayHints.maximumLength": "エディターによって切り捨てられる前の、1 行のインレイ ヒントの最大全体の長さ。切り捨てない場合は '0' に設定します",
"inlayHints.padding": "エディターでのインレイ ヒントに関するパディングを有効にします。",
"inline": "クイック候補がゴースト テキストとして表示される",
+ "inlineCompletionsAccessibilityVerbose": "インライン入力候補が表示されたときに、スクリーン リーダー ユーザーにユーザー補助ヒントを提供するかどうかを制御します。",
+ "inlineSuggest.edits.allowCodeShifting": "候補を表示すると、候補用のスペースを確保するためにコードがインラインに変更されるかどうかを制御します。",
+ "inlineSuggest.edits.renderSideBySide": "大きい候補を並べて表示できるかどうかを制御します。",
+ "inlineSuggest.edits.showCollapsed": "候補が折りたたまれた状態で表示されるかどうかを、その候補にジャンプするまで制御します。",
+ "inlineSuggest.edits.showLongDistanceHint": "遠距離インライン候補を表示するかどうかを制御します。",
+ "inlineSuggest.emptyResponseInformation": "インライン提案プロバイダーから要求情報を送信するかどうかを制御します。",
"inlineSuggest.enabled": "エディターにインライン候補を自動的に表示するかどうかを制御します。",
+ "inlineSuggest.fontFamily": "インライン提案のフォント ファミリを制御します。",
+ "inlineSuggest.minShowDelay": "入力後にインライン提案が表示されるまでの最小延期期間 (ミリ秒) を制御します。",
+ "inlineSuggest.showOnSuggestConflict": "提案の競合がある場合にインライン候補を表示するかどうかを制御します。",
+ "inlineSuggest.showToolbar": "インライン候補ツール バーを表示するタイミングを制御します。",
+ "inlineSuggest.showToolbar.always": "インライン候補が表示されるたびに、インライン候補ツール バーを表示します。",
+ "inlineSuggest.showToolbar.never": "インライン候補ツール バーを今後は表示しないでください。",
+ "inlineSuggest.showToolbar.onHover": "インライン候補にカーソルを合わせるたびに、インライン候補ツール バーを表示します。",
+ "inlineSuggest.suppressInSnippetMode": "スニペット モード時にインライン候補を抑制するかどうかを制御します。",
+ "inlineSuggest.suppressInlineSuggestions": "指定された拡張 ID のインライン補完を抑制します。 -- コンマ区切り。",
+ "inlineSuggest.suppressSuggestions": "インライン提案と提案ウィジェットの相互作用の方法を制御します。有効すると、インライン候補が使用可能な場合は、提案ウィジェットが自動的に表示されません。",
+ "inlineSuggest.syntaxHighlightingEnabled": "エディターでインライン候補の構文強調表示を表示するかどうかを制御します。",
+ "inlineSuggest.triggerCommandOnProviderChange": "インライン提案プロバイダーが変更されたときにコマンドをトリガーするかどうかを制御します。",
"letterSpacing": "文字間隔 (ピクセル単位) を制御します。",
"lineHeight": "行の高さを制御します。\r\n - 0 を使用してフォント サイズから行の高さを自動的に計算します。\r\n - 0 から 8 までの値は、フォント サイズの乗数として使用されます。\r\n - 8 以上の値は有効値として使用されます。",
"lineNumbers": "行番号の表示を制御します。",
@@ -437,18 +616,29 @@
"links": "エディターがリンクを検出してクリック可能な状態にするかどうかを制御します。",
"matchBrackets": "対応するかっこを強調表示します。",
"minimap.autohide": "ミニマップを自動的に非表示するかどうかを制御します。",
+ "minimap.autohide.mouseover": "ミニマップは、マウスがミニマップ上にない場合に非表示になり、マウスがミニマップの上にあるときに表示されます。",
+ "minimap.autohide.none": "ミニマップは常に表示されます。",
+ "minimap.autohide.scroll": "ミニマップは、エディターがスクロールされているときにのみ表示されます",
"minimap.enabled": "ミニマップを表示するかどうかを制御します。",
+ "minimap.markSectionHeaderRegex": "コメント内のセクション ヘッダーを検索するために使用する正規表現を定義します。正規表現には、セクション ヘッダーをカプセル化する名前付き一致グループ 'label' ('(?.+)' と記述) が含まれている必要があります。それ以外の場合は機能しません。必要に応じて、'separator' という名前の別の一致グループを含めることができます。パターン内の \\n を使用して、複数行のヘッダーを照合します。",
"minimap.maxColumn": "表示するミニマップの最大幅を特定の列数に制限します。",
"minimap.renderCharacters": "行にカラー ブロックではなく実際の文字を表示します。",
"minimap.scale": "ミニマップに描画されるコンテンツのスケール: 1、2、または 3。",
+ "minimap.sectionHeaderFontSize": "ミニマップのセクション ヘッダーのフォント サイズを制御します。",
+ "minimap.sectionHeaderLetterSpacing": "セクション ヘッダーの文字間隔をピクセル単位で制御します。これにより、小さいフォント サイズのヘッダーを読み取りやすくなります。",
+ "minimap.showMarkSectionHeaders": "MARK: コメントをミニマップのセクション ヘッダーとして表示するかどうかを制御します。",
+ "minimap.showRegionSectionHeaders": "ミニマップの名前付き領域をセクション ヘッダーとして表示するかどうかを制御します。",
"minimap.showSlider": "ミニマップ スライダーを表示するタイミングを制御します。",
"minimap.side": "ミニマップを表示する場所を制御します。",
"minimap.size": "ミニマップのサイズを制御します。",
"minimap.size.fill": "ミニマップは、必要に応じて、エディターの高さを埋めるため、拡大または縮小します (スクロールしません)。",
"minimap.size.fit": "ミニマップは必要に応じて縮小し、エディターより大きくなることはありません (スクロールしません)。",
"minimap.size.proportional": "ミニマップのサイズは、エディターのコンテンツと同じです (スクロールする場合があります)。",
+ "mouseMiddleClickAction": "エディターでマウスの中央ボタンをクリックしたときの動作を制御します。",
"mouseWheelScrollSensitivity": "マウス ホイール スクロール イベントの `deltaX` と `deltaY` で使用される乗数。",
"mouseWheelZoom": "`Ctrl` キーを押しながらマウス ホイールを使用してエディターのフォントをズームします。",
+ "mouseWheelZoom.mac": "`Cmd` キーを押しながらマウス ホイールを使用してエディターのフォントをズームします。",
+ "multiCursorLimit": "アクティブなエディターに一度に配置できるカーソルの最大数を制御します。",
"multiCursorMergeOverlapping": "複数のカーソルが重なっているときは、マージします。",
"multiCursorModifier": "マウスを使用して複数のカーソルを追加するために使用する修飾子。[定義に移動] および [リンクを開く] マウス ジェスチャは、[multicursor 修飾子](https://code.visualstudio.com/docs/editor/codebasics#_multicursor-modifier) と競合しないように調整されます。",
"multiCursorModifier.alt": "Windows および Linux 上の `Alt` キーと macOS 上の `Option` キーに割り当てます。",
@@ -456,29 +646,40 @@
"multiCursorPaste": "貼り付けたテキストの行数がカーソル数と一致する場合の貼り付けを制御します。",
"multiCursorPaste.full": "各カーソルは全文を貼り付けます。",
"multiCursorPaste.spread": "カーソルごとにテキストを 1 行ずつ貼り付けます。",
- "occurrencesHighlight": "エディターでセマンティック シンボルの出現箇所を強調表示するかどうかを制御します。",
+ "occurrencesHighlight": "開いているファイル間で発生回数を強調表示するかどうかを制御します。",
+ "occurrencesHighlight.multiFile": "試験段階: すべての有効な開いているファイルの発生回数を強調表示します。",
+ "occurrencesHighlight.off": "発生回数を強調表示しません。",
+ "occurrencesHighlight.singleFile": "現在のファイル内の発生回数のみを強調表示します。",
+ "occurrencesHighlightDelay": "発生回数が強調表示されるまでの遅延をミリ秒単位で制御します。",
"off": "クイック候補が無効になっています",
"on": "提案ウィジェット内にクイック候補が表示される",
+ "overtypeCursorStyle": "上書き入力モードでのカーソル スタイルを制御します。",
+ "overtypeOnPaste": "貼り付けで上書きするかどうかを制御します。",
"overviewRulerBorder": "概要ルーラーの周囲に境界線が描画されるかどうかを制御します。",
"padding.bottom": "エディターの下端と最後の行の間の余白の大きさを制御します。",
"padding.top": "エディターの上端と最初の行の間の余白の大きさを制御します。",
"parameterHints.cycle": "パラメーター ヒント メニューを周回するか、リストの最後で閉じるかどうかを制御します。",
"parameterHints.enabled": "入力時にパラメーター ドキュメントと型情報を表示するポップアップを有効にします。",
+ "pasteAs.enabled": "さまざまな方法でコンテンツを貼り付けることができるかどうかを制御します。",
+ "pasteAs.showPasteSelector": "エディターにコンテンツを貼り付けるときにウィジェットを表示するかどうかを制御します。このウィジェットを使用すると、ファイルの貼り付け方法を制御できます。",
+ "pasteAs.showPasteSelector.afterPaste": "コンテンツをエディターに貼り付けた後、貼り付けセレクター ウィジェットを表示します。",
+ "pasteAs.showPasteSelector.never": "貼り付けセレクター ウィジェットを表示しないでください。代わりに、既定の貼り付け動作が常に使用されます。",
"peekWidgetDefaultFocus": "ピーク ウィジェットのインライン エディターまたはツリーをフォーカスするかどうかを制御します。",
"peekWidgetDefaultFocus.editor": "ピークを開くときにエディターにフォーカスする",
"peekWidgetDefaultFocus.tree": "ピークを開くときにツリーにフォーカスする",
- "quickSuggestions": "入力中に候補を自動的に表示するかどうかを制御します。これは、コメント、文字列、その他コードの入力用に設定できます。クイック提案は、ゴースト テキストとして表示するか、提案ウィジェットで表示するように構成できます。また、'{0}' に注意してください。これは、提案が特殊文字によってトリガーされるかどうかを制御する設定です。",
+ "quickSuggestions": "入力中に候補を自動的に表示するかどうかを制御します。これは、コメント、文字列、およびその他のコードを入力するために制御できます。クイック提案は、ゴースト テキストとして表示するか、提案ウィジェットで表示するように構成できます。また、提案が特殊文字によってトリガーされるかどうかを制御する {0}-設定にも注意してください。",
"quickSuggestions.comments": "コメント内でクイック候補を有効にします。",
"quickSuggestions.other": "文字列およびコメント外でクイック候補を有効にします。",
"quickSuggestions.strings": "文字列内でクイック候補を有効にします。",
"quickSuggestionsDelay": "クイック候補が表示されるまでのミリ秒を制御します。",
"renameOnType": "エディターでの型の自動名前変更を制御します。",
- "renameOnTypeDeprecate": "非推奨です。代わりに、`editor.linkedEditing` を使用してください。",
+ "renameOnTypeDeprecate": "非推奨です。代わりに、`#editor.linkedEditing#` を使用してください。",
"renderControlCharacters": "エディターで制御文字を表示するかどうかを制御します。",
"renderFinalNewline": "ファイルの末尾が改行の場合は、最後の行番号を表示します。",
"renderLineHighlight": "エディターが現在の行をどのように強調表示するかを制御します。",
"renderLineHighlight.all": "余白と現在の行を強調表示します。",
"renderLineHighlightOnlyWhenFocus": "エディターにフォーカスがある場合にのみ現在の行をエディターで強調表示する必要があるかどうかを制御します。",
+ "renderRichScreenReaderContent": "`#editor.editContext#` 設定が有効な場合にリッチ スクリーン リーダー コンテンツをレンダリングするかどうか。",
"renderWhitespace": "エディターで空白文字を表示するかどうかを制御します。",
"renderWhitespace.boundary": "単語間の単一スペース以外の空白文字を表示します。",
"renderWhitespace.selection": "選択したテキストにのみ空白文字を表示します。",
@@ -487,14 +688,17 @@
"rulers": "特定の等幅文字数の後に垂直ルーラーを表示します。複数のルーラーには複数の値を使用します。配列が空の場合はルーラーを表示しません。",
"rulers.color": "このエディターのルーラーの色です。",
"rulers.size": "このエディターのルーラーがレンダリングする単一領域の文字数。",
+ "screenReaderAnnounceInlineSuggestion": "スクリーン リーダーによってインライン候補が読み上げられるかどうかを制御します。",
"scrollBeyondLastColumn": "エディターが水平方向に余分にスクロールする文字数を制御します。",
"scrollBeyondLastLine": "エディターが最後の行を越えてスクロールするかどうかを制御します。",
+ "scrollOnMiddleClick": "中央ボタンが押されたときにエディターがスクロールするかどうかを制御します。",
"scrollPredominantAxis": "垂直および水平方向の両方に同時にスクロールする場合は、主要な軸に沿ってスクロールします。トラックパッド上で垂直方向にスクロールする場合は、水平ドリフトを防止します。",
"scrollbar.horizontal": "水平スクロールバーの表示を制御します。",
"scrollbar.horizontal.auto": "水平スクロールバーは、必要な場合にのみ表示されます。",
"scrollbar.horizontal.fit": "水平スクロールバーは常に非表示になります。",
"scrollbar.horizontal.visible": "水平スクロールバーは常に表示されます。",
"scrollbar.horizontalScrollbarSize": "水平スクロールバーの高さ。",
+ "scrollbar.ignoreHorizontalScrollbarInContentHeight": "設定すると、水平スクロール バーはエディターのコンテンツのサイズを大きくしません。",
"scrollbar.scrollByPage": "クリックするとページ単位でスクロールするか、クリック位置にジャンプするかを制御します。",
"scrollbar.vertical": "垂直スクロールバーの表示を制御します。",
"scrollbar.vertical.auto": "垂直スクロールバーは、必要な場合にのみ表示されます。",
@@ -502,10 +706,13 @@
"scrollbar.vertical.visible": "垂直スクロールバーは常に表示されます。",
"scrollbar.verticalScrollbarSize": "垂直スクロールバーの幅。",
"selectLeadingAndTrailingWhitespace": "先頭と末尾の空白を常に選択するかどうか。",
+ "selectSubwords": "サブワード ('fooBar' の 'foo' または 'foo_bar' など) を選択する必要があるかどうか。",
"selectionClipboard": "Linux の PRIMARY クリップボードをサポートするかどうかを制御します。",
"selectionHighlight": "エディターが選択項目と類似の一致項目を強調表示するかどうかを制御します。",
+ "selectionHighlightMaxLength": "同様の一致が強調表示されない前に、選択範囲に含めることができる文字の数を制御します。無制限の場合は 0 に設定します。",
+ "selectionHighlightMultiline": "エディターで複数の行にまたがる選択範囲と一致するものを強調表示するかどうかを制御します。",
"showDeprecated": "非推奨の変数の取り消し線を制御します。",
- "showFoldingControls": "とじしろのの折りたたみコントロールを表示するタイミングを制御します。",
+ "showFoldingControls": "とじしろの折りたたみコントロールを表示するタイミングを制御します。",
"showFoldingControls.always": "常に折りたたみコントロールを表示します。",
"showFoldingControls.mouseover": "マウスがとじしろの上にあるときにのみ、折りたたみコントロールを表示します。",
"showFoldingControls.never": "折りたたみコントロールを表示せず、余白のサイズを小さくします。",
@@ -519,14 +726,19 @@
"stickyTabStops": "インデントにスペースを使用するときは、タブ文字の選択動作をエミュレートします。選択範囲はタブ位置に留まります。",
"suggest.filterGraceful": "候補のフィルター処理と並び替えでささいな入力ミスを考慮するかどうかを制御します。",
"suggest.insertMode": "入力候補を受け入れるときに単語を上書きするかどうかを制御します。これは、この機能の利用を選択する拡張機能に依存することにご注意ください。",
+ "suggest.insertMode.always": "IntelliSense を自動でトリガーする場合に、常に候補を選択します。",
"suggest.insertMode.insert": "カーソルの右のテキストを上書きせずに候補を挿入します。",
+ "suggest.insertMode.never": "IntelliSense を自動でトリガーする場合に、候補を選択しません。",
"suggest.insertMode.replace": "候補を挿入し、カーソルの右のテキストを上書きします。",
+ "suggest.insertMode.whenQuickSuggestion": "入力時に IntelliSense をトリガーする場合にのみ、候補を選択します。",
+ "suggest.insertMode.whenTriggerCharacter": "トリガー文字から IntelliSense をトリガーする場合にのみ、候補を選択します。",
"suggest.localityBonus": "並べ替えがカーソル付近に表示される単語を優先するかどうかを制御します。",
"suggest.maxVisibleSuggestions.dep": "この設定は非推奨です。候補ウィジェットのサイズ変更ができるようになりました。",
"suggest.preview": "提案の結果をエディターでプレビューするかどうかを制御します。",
+ "suggest.selectionMode": "ウィジェットを表示する際に候補を選択するかどうかを制御します。これは、自動的にトリガーされる提案 ({0} および {1}) にのみ適用され、明示的に呼び出された場合 (例: `Ctrl + Space`) で提案が常に選択されることに注意してください。",
"suggest.shareSuggestSelections": "保存された候補セクションを複数のワークプレースとウィンドウで共有するかどうかを制御します (`#editor.suggestSelection#` が必要)。",
"suggest.showIcons": "提案のアイコンを表示するか、非表示にするかを制御します。",
- "suggest.showInlineDetails": "候補の詳細をラベル付きのインラインで表示するか、詳細ウィジェットにのみ表示するかを制御します",
+ "suggest.showInlineDetails": "候補の詳細をラベル付きのインラインで表示するか、詳細ウィジェットにのみ表示するかを制御します。",
"suggest.showStatusBar": "候補ウィジェットの下部にあるステータス バーの表示を制御します。",
"suggest.snippetsPreventQuickSuggestions": "アクティブ スニペットがクイック候補を防止するかどうかを制御します。",
"suggestFontSize": "候補ウィジェットのフォント サイズ。{0} に設定すると、値 {1} が使用されます。",
@@ -540,19 +752,25 @@
"tabCompletion.off": "タブ補完を無効にします。",
"tabCompletion.on": "タブ補完は、tab キーを押したときに最適な候補を挿入します。",
"tabCompletion.onlySnippets": "プレフィックスが一致する場合に、タブでスニペットを補完します。'quickSuggestions' が無効な場合に最適です。",
- "unfoldOnClickAfterEndOfLine": "折りたたまれた線の後の空のコンテンツをクリックすると線が展開されるかどうかを制御します。",
- "unicodeHighlight.allowedCharacters": "強調表示されていない許可される文字を定義します。",
- "unicodeHighlight.allowedLocales": "許可されているロケールで一般的な Unicode 文字が強調表示されていません。",
+ "tabFocusMode": "エディターがタブを受け取るか、ワークベンチに委ねてナビゲーションするかを制御します。",
+ "trimWhitespaceOnDelete": "改行を削除するときに、エディターで次の行のインデントの空白も削除するかどうかを制御します。",
+ "unfoldOnClickAfterEndOfLine": "折りたたまれた行の後の空のコンテンツをクリックすると行が展開されるかどうかを制御します。",
+ "unicodeHighlight.allowedCharacters": "強調表示せず許可される文字を定義します。",
+ "unicodeHighlight.allowedLocales": "許可されているロケールで一般的な Unicode 文字は強調表示されません。",
"unicodeHighlight.ambiguousCharacters": "現在のユーザー ロケールで一般的な文字を除き、基本的な ASCII 文字と混同される可能性のある文字を強調表示するかどうかを制御します。",
"unicodeHighlight.includeComments": "コメント内の文字を Unicode 強調表示の対象にするかどうかを制御します。",
"unicodeHighlight.includeStrings": "文字列内の文字を Unicode 強調表示の対象にするかどうかを制御します。",
- "unicodeHighlight.invisibleCharacters": "スペースを予約するだけの文字または幅がまったくない文字を強調表示するかどうかを制御します。",
- "unicodeHighlight.nonBasicASCII": "基本以外のすべての ASCII 文字を強調表示するかどうかを制御します。U+0020 から U+007Eの間の文字、Tab、改行コード、行頭復帰のみが基本 ASCII と見なされます。",
+ "unicodeHighlight.invisibleCharacters": "空白を占めるだけの文字や幅がまったくない文字を強調表示するかどうかを制御します。",
+ "unicodeHighlight.nonBasicASCII": "基本 ASCII 以外のすべての文字を強調表示するかどうかを制御します。U+0020 から U+007E の間の文字、タブ、改行 (LF)、行頭復帰のみが基本 ASCII と見なされます。",
"unusualLineTerminators": "問題を起こす可能性がある、普通ではない行終端記号は削除してください。",
"unusualLineTerminators.auto": "通常とは異なる行の終端文字は自動的に削除される。",
"unusualLineTerminators.off": "通常とは異なる行の終端文字は無視される。",
"unusualLineTerminators.prompt": "通常とは異なる行の終端文字の削除プロンプトが表示される。",
- "useTabStops": "空白の挿入や削除はタブ位置に従って行われます。",
+ "useTabStops": "タブ位置に合わせて、スペースとタブが挿入および削除されます。",
+ "wordBreak": "中国語/日本語/韓国語 (CJK) テキストに使用される単語区切り規則を制御します。",
+ "wordBreak.keepAll": "中国語/日本語/韓国語 (CJK) のテキストには単語区切りを使用しないでください。CJK 以外のテキストの動作は、通常の場合と同じです。",
+ "wordBreak.normal": "既定の改行ルールを使用します。",
+ "wordSegmenterLocales": "単語に関連するナビゲーションまたは操作を行うときに単語のセグメント化に使用されるロケール。認識する単語の BCP 47 言語タグを指定します (例: ja、zh-CN、zh-Hant-TW など)。",
"wordSeparators": "単語に関連したナビゲーションまたは操作を実行するときに、単語の区切り文字として使用される文字。",
"wordWrap": "行の折り返し方法を制御します。",
"wordWrap.bounded": "ビューポートと `#editor.wordWrapColumn#` の最小値で行を折り返します。",
@@ -560,19 +778,28 @@
"wordWrap.on": "行をビューポートの幅で折り返します。",
"wordWrap.wordWrapColumn": "`#editor.wordWrapColumn#` で行を折り返します。",
"wordWrapColumn": "`#editor.wordWrap#` が `wordWrapColumn` または `bounded` の場合に、エディターの折り返し桁を制御します。",
+ "wrapOnEscapedLineFeeds": "`#editor.wordWrap#` が有効になっている場合に、リテラルの `\\n` によって行の折り返しをトリガーするかどうかを制御します。\r\n\r\n例:\r\n```c\r\nchar* str=\"hello\\nworld\"\r\n```\r\nは次のように表示されます\r\n```c\r\nchar* str=\"hello\\n\r\n world\"\r\n```",
"wrappingIndent": "折り返し行のインデントを制御します。",
"wrappingIndent.deepIndent": "折り返し行は、親 +2 のインデントになります。",
"wrappingIndent.indent": "折り返し行は、親 +1 のインデントになります。",
"wrappingIndent.none": "インデントしません。 折り返し行は列 1 から始まります。",
"wrappingIndent.same": "折り返し行は、親と同じインデントになります。",
- "wrappingStrategy": "折り返しポイントを計算するアルゴリズムを制御します。",
+ "wrappingStrategy": "折り返しポイントを計算するアルゴリズムを制御します。アクセシビリティ モードでは、最高のエクスペリエンスを実現するために詳細設定が使用されることにご注意ください。",
"wrappingStrategy.advanced": "折り返しポイントの計算をブラウザーにデリゲートします。これは、大きなファイルのフリーズを引き起こす可能性があるものの、すべてのケースで正しく動作する低速なアルゴリズムです。",
"wrappingStrategy.simple": "すべての文字の幅が同じであると仮定します。これは、モノスペース フォントや、グリフの幅が等しい特定のスクリプト (ラテン文字など) で正しく動作する高速アルゴリズムです。"
},
"vs/editor/common/core/editorColorRegistry": {
"caret": "エディターのカーソルの色。",
+ "deprecatedEditorActiveIndentGuide": "'editorIndentGuide.activeBackground' は非推奨です。代わりに 'editorIndentGuide.activeBackground1' を使用してください。",
"deprecatedEditorActiveLineNumber": "id は使用しないでください。代わりに 'EditorLineNumber.activeForeground' を使用してください。",
+ "deprecatedEditorIndentGuides": "'editorIndentGuide.background' は非推奨です。代わりに 'editorIndentGuide.background1' を使用してください。",
"editorActiveIndentGuide": "アクティブなエディターのインデント ガイドの色。",
+ "editorActiveIndentGuide1": "アクティブなエディターのインデント ガイドの色 (1)。",
+ "editorActiveIndentGuide2": "アクティブなエディターのインデント ガイドの色 (2)。",
+ "editorActiveIndentGuide3": "アクティブなエディターのインデント ガイドの色 (3)。",
+ "editorActiveIndentGuide4": "アクティブなエディターのインデント ガイドの色 (4)。",
+ "editorActiveIndentGuide5": "アクティブなエディターのインデント ガイドの色 (5)。",
+ "editorActiveIndentGuide6": "アクティブなエディターのインデント ガイドの色 (6)。",
"editorActiveLineNumber": "エディターのアクティブ行番号の色",
"editorBracketHighlightForeground1": "角かっこ (1) の前景色。角かっこのペアの色付けを有効にする必要があります。",
"editorBracketHighlightForeground2": "角かっこ (2) の前景色。角かっこのペアの色付けを有効にする必要があります。",
@@ -597,18 +824,30 @@
"editorBracketPairGuide.background6": "非アクティブな角かっこのペア ガイドの背景色 (6)。角かっこのペア ガイドを有効にする必要があります。",
"editorCodeLensForeground": "CodeLens エディターの前景色。",
"editorCursorBackground": "選択された文字列の背景色です。選択された文字列の背景色をカスタマイズ出来ます。",
+ "editorDimmedLineNumber": "editor.renderFinalNewline が dimmed に設定されている場合のエディターの最終行の色。",
"editorGhostTextBackground": "エディターのゴースト テキストの背景色。",
"editorGhostTextBorder": "エディター内の透かし文字の境界線の色です。",
"editorGhostTextForeground": "エディターの透かし文字の前景色です。",
"editorGutter": "エディターの余白の背景色。余白にはグリフ マージンと行番号が含まれます。",
"editorIndentGuides": "エディター インデント ガイドの色。",
+ "editorIndentGuides1": "エディター インデント ガイドの色 (1)。",
+ "editorIndentGuides2": "エディター インデント ガイドの色 (2)。",
+ "editorIndentGuides3": "エディター インデント ガイドの色 (3)。",
+ "editorIndentGuides4": "エディター インデント ガイドの色 (4)。",
+ "editorIndentGuides5": "エディター インデント ガイドの色 (5)。",
+ "editorIndentGuides6": "エディター インデント ガイドの色 (6)。",
"editorLineNumbers": "エディターの行番号の色。",
- "editorOverviewRulerBackground": "エディターの概要ルーラーの背景色です。ミニマップが有効で、エディターの右側に配置されている場合にのみ使用します。",
+ "editorMultiCursorPrimaryBackground": "複数のカーソルが存在する場合のプライマリ エディター カーソルの背景色。ブロック カーソルにより重なった文字の色をカスタマイズできます。",
+ "editorMultiCursorPrimaryForeground": "複数のカーソルが存在する場合のプライマリ エディター カーソルの色。",
+ "editorMultiCursorSecondaryBackground": "複数のカーソルが存在する場合のセカンダリ エディター カーソルの背景色。ブロック カーソルにより重なった文字の色をカスタマイズできます。",
+ "editorMultiCursorSecondaryForeground": "複数のカーソルが存在する場合のセカンダリ エディター カーソルの色。",
+ "editorOverviewRulerBackground": "エディターの概要ルーラーの背景色。",
"editorOverviewRulerBorder": "概要ルーラーの境界色。",
"editorRuler": "エディター ルーラーの色。",
"editorUnicodeHighlight.background": "Unicode 文字を強調表示するために使用される背景色。",
"editorUnicodeHighlight.border": "Unicode 文字を強調表示するために使用される境界線の色。",
"editorWhitespaces": "エディターのスペース文字の色。",
+ "inactiveLineHighlight": "エディターにフォーカスがない場合のカーソル位置での行の強調表示の背景色。",
"lineHighlight": "カーソル位置の行を強調表示する背景色。",
"lineHighlightBorderBox": "カーソル位置の行の境界線を強調表示する背景色。",
"overviewRuleError": "エラーを示す概要ルーラーのマーカー色。",
@@ -623,6 +862,15 @@
"unnecessaryCodeOpacity": "エディター内の不要な (未使用の) ソース コードの不透明度。たとえば、\"#000000c0\" は不透明度 75% でコードを表示します。ハイ コントラストのテーマの場合、'editorUnnecessaryCode.border' テーマ色を使用して、不要なコードをフェードアウトするのではなく下線を付けます。"
},
"vs/editor/common/editorContextKeys": {
+ "accessibleDiffViewerVisible": "アクセシビリティの高い差分ビューアーが表示されているかどうか",
+ "comparingMovedCode": "移動されたコード ブロックが比較対象として選択されているかどうか",
+ "diffEditorHasChanges": "差分エディターに変更があるかどうか",
+ "diffEditorInlineMode": "インライン モードがアクティブかどうか",
+ "diffEditorModifiedUri": "変更済みドキュメントの URI",
+ "diffEditorModifiedWritable": "差分エディターで変更済みが書き込み可能かどうか",
+ "diffEditorOriginalUri": "元のドキュメントの URI",
+ "diffEditorOriginalWritable": "差分エディターで変更済みが書き込み可能かどうか",
+ "diffEditorRenderSideBySideInlineBreakpointReached": "差分エディターがインライン ブレークポイントを並べてレンダリングするかどうか",
"editorColumnSelection": "`editor.columnSelection` が有効になっているかどうか",
"editorFocus": "エディターまたはエディター ウィジェットにフォーカスがある (例: 検索ウィジェットにフォーカスがある) かどうか",
"editorHasCodeActionsProvider": "エディターにコード アクション プロバイダーがあるかどうか",
@@ -645,6 +893,7 @@
"editorHasSelection": "エディターでテキストが選択されているかどうか",
"editorHasSignatureHelpProvider": "エディターにシグネチャ ヘルプ プロバイダーがあるかどうか",
"editorHasTypeDefinitionProvider": "エディターに型定義プロバイダーがあるかどうか",
+ "editorHoverFocused": "エディターのホバーがフォーカスされているかどうか",
"editorHoverVisible": "エディターのホバーが表示されているかどうか",
"editorLangId": "エディターの言語識別子",
"editorReadonly": "エディターが読み取り専用かどうか",
@@ -652,8 +901,73 @@
"editorTextFocus": "エディターのテキストにフォーカスがある (カーソルが点滅している) かどうか",
"inCompositeEditor": "エディターがより大きなエディター (例: Notebooks) の一部であるかどうか",
"inDiffEditor": "コンテキストが差分エディターであるかどうか",
+ "inMultiDiffEditor": "コンテキストがマルチ差分エディターであるかどうか",
+ "isEmbeddedDiffEditor": "コンテキストが埋め込み差分エディターであるかどうか",
+ "multiDiffEditorAllCollapsed": "マルチ差分エディター内のすべてのファイルを折りたたむかどうか",
+ "standaloneColorPickerFocused": "スタンドアロン カラー ピッカーがフォーカスされているかどうか",
+ "standaloneColorPickerVisible": "スタンドアロン カラー ピッカーを表示するかどうか",
+ "stickyScrollFocused": "スティッキー スクロールがフォーカスされているかどうか",
+ "stickyScrollVisible": "スティッキー スクロールが表示されているかどうか",
"textInputFocus": "エディターまたはリッチ テキスト入力にフォーカスがある (カーソルが点滅している) かどうか"
},
+ "vs/editor/common/languages": {
+ "Array": "配列",
+ "Boolean": "ブール値",
+ "Class": "クラス",
+ "Constant": "定数",
+ "Constructor": "コンストラクター",
+ "Enum": "列挙型",
+ "EnumMember": "列挙型メンバー",
+ "Event": "イベント",
+ "Field": "フィールド",
+ "File": "ファイル",
+ "Function": "関数",
+ "Interface": "インターフェイス",
+ "Key": "キー",
+ "Method": "メソッド",
+ "Module": "モジュール",
+ "Namespace": "名前空間",
+ "Null": "NULL",
+ "Number": "数値",
+ "Object": "オブジェクト",
+ "Operator": "演算子",
+ "Package": "パッケージ",
+ "Property": "プロパティ",
+ "String": "文字列",
+ "Struct": "構造体",
+ "TypeParameter": "型パラメーター",
+ "Variable": "変数",
+ "suggestWidget.kind.class": "クラス",
+ "suggestWidget.kind.color": "色",
+ "suggestWidget.kind.constant": "定数",
+ "suggestWidget.kind.constructor": "コンストラクター",
+ "suggestWidget.kind.customcolor": "ユーザー設定の色",
+ "suggestWidget.kind.enum": "列挙型",
+ "suggestWidget.kind.enumMember": "列挙メンバー",
+ "suggestWidget.kind.event": "イベント",
+ "suggestWidget.kind.field": "フィールド",
+ "suggestWidget.kind.file": "ファイル",
+ "suggestWidget.kind.folder": "フォルダー",
+ "suggestWidget.kind.function": "関数",
+ "suggestWidget.kind.interface": "インターフェイス",
+ "suggestWidget.kind.issue": "イシュー",
+ "suggestWidget.kind.keyword": "キーワード",
+ "suggestWidget.kind.method": "メソッド",
+ "suggestWidget.kind.module": "モジュール",
+ "suggestWidget.kind.operator": "演算子",
+ "suggestWidget.kind.property": "プロパティ",
+ "suggestWidget.kind.reference": "参照",
+ "suggestWidget.kind.snippet": "スニペット",
+ "suggestWidget.kind.struct": "構造体",
+ "suggestWidget.kind.text": "テキスト",
+ "suggestWidget.kind.tool": "ツール",
+ "suggestWidget.kind.typeParameter": "型パラメーター",
+ "suggestWidget.kind.unit": "単位",
+ "suggestWidget.kind.user": "ユーザー",
+ "suggestWidget.kind.value": "値",
+ "suggestWidget.kind.variable": "変数",
+ "symbolAriaLabel": "{0} ({1})"
+ },
"vs/editor/common/languages/modesRegistry": {
"plainText.alias": "プレーンテキスト"
},
@@ -661,40 +975,58 @@
"edit": "入力しています"
},
"vs/editor/common/standaloneStrings": {
- "accessibilityHelpMessage": "アクティビティ オプションを表示するには、Alt+F1 キーを押します。",
- "auto_off": "エディターは、スクリーン リーダーで使用するよう最適化されないように構成されていますが、現時点でこの設定は当てはまりません。",
- "auto_on": "エディターは、スクリーン リーダーで使用するよう最適化されるように構成されています。",
+ "acceptSuggestAction": "提案{0} を承諾して、現在選択されている提案に同意します。",
+ "accessibilityHelpTitle": "アクセシビリティのヘルプ",
+ "auto_off": "アプリケーションはスクリーン リーダー向けに最適化しないように構成されています。",
+ "auto_on": "アプリケーションは、スクリーン リーダーで使用するよう最適化されるように構成されています。",
"bulkEditServiceSummary": "{1} 個のファイルに {0} 個の編集が行われました",
- "changeConfigToOnMac": "エディターを構成してスクリーン エディターで使用するように最適化するには、Command+E を押してください。",
- "changeConfigToOnWinLinux": "エディターを構成してスクリーン リーダーで使用するように最適化するには、Control+E を押します。",
- "editableDiffEditor": "差分エディターのウィンドウ内。",
- "editableEditor": "コード エディター内",
+ "changeConfigToOnMac": "スクリーンリーダーで用するために最適化 (Command+E) されたアプリケーションを設定します。",
+ "changeConfigToOnWinLinux": "スクリーンリーダーで使用するために最適化 (Control+E) されたアプリケーションを設定します。",
+ "chatEditing.navigation": "前{0}と次{1}の移動を使用してエディター内の編集間を移動し、現在の変更を承認{2}、拒否{3}、または差分を表示{4}します。すべてのファイル{5}で編集を受け入れます。",
+ "chatEditorModification": "エディターには、チャットによって行われた保留中の変更が含まれています。",
+ "chatEditorRequestInProgress": "エディターは現在、チャットによる変更を待機しています。",
+ "codeFolding": "コードの折りたたみを使用して、コードのブロックを折りたたみ、[折りたたみの切り替え] コマンド{0}を使用して関心のあるコードにフォーカスします。",
+ "debug.startDebugging": "デバッグ: デバッグの開始コマンド{0} はデバッグ セッションを開始します。",
+ "debugConsole.addToWatch": "[デバッグ: ウォッチに追加] コマンド{0}は、選択したテキストをウォッチ ビューに追加します。",
+ "debugConsole.executeSelection": "デバッグ: 選択の実行コマンド{0} は、選択したテキストをデバッグ コンソールで実行します。",
+ "debugConsole.setBreakpoint": "デバッグ: インライン ブレークポイント コマンド{0} は、アクティブなエディター内の現在のカーソル位置でブレークポイントを設定または設定解除します。",
+ "defaultWindowTitleExcludingEditorState": "activeEditorState (変更、問題など) は、現在、既定では window.title 設定の一部として含まれていません。accessibility.windowTitleOptimized を使用して有効にします。",
+ "defaultWindowTitleIncludesEditorState": "activeEditorState (変更、問題など) は、既定では window.title 設定の一部として含まれます。accessibility.windowTitleOptimized を使用して無効にします。",
+ "editableDiffEditor": "差分エディターのウィンドウ内にいます。",
+ "editableEditor": "コード エディター内にいます。",
"editorViewAccessibleLabel": "エディターのコンテンツ",
- "emergencyConfOn": "`accessibilitySupport` 設定を 'on' に変更しています。",
+ "goToSymbol": "[シンボル]{0} に移動して、現在のファイル内のシンボル間をすばやく移動します。",
"gotoLineActionLabel": "行/列に移動する...",
+ "gotoOffsetActionLabel": "オフセットに移動...",
"helpQuickAccess": "すべてのクイック アクセス プロバイダーを表示",
"inspectTokens": "開発者: トークンの検査",
- "multiSelection": "{0} 個の選択項目",
- "multiSelectionRange": "{0} 個の選択項目 ({1} 文字を選択)",
- "noSelection": "選択されていません",
- "openDocMac": "エディターのアクセシビリティに関する詳細情報が記されたブラウザー ウィンドウを開くには、Command+H を押してください。",
- "openDocWinLinux": "エディターのアクセシビリティに関する詳細情報が記されたブラウザー ウィンドウを開くには、Control+H を押してください。",
- "openingDocs": "エディターのアクセシビリティに関連するドキュメント ページを開いています。",
- "outroMsg": "Esc キー か Shift+Esc を押すと、ヒントを消してエディターに戻ることができます。",
+ "intellisense": "Intellisense を使用してコーディング効率を向上させ、エラーを減らします。トリガー候補{0}。",
+ "listAnnouncementsCommand": "お知らせと現在の状況の概要を確認するには、List Signal Announcements コマンドを実行します。",
+ "listSignalSoundsCommand": "すべてのサウンドと現在の状態の概要を確認するには、List Signal Sounds コマンドを実行します。",
+ "openingDocs": "ユーザー補助ドキュメントのページを開いています。",
+ "quickChatCommand": "クイック チャット{0} を切り替えて、チャット セッションを開くまたは閉じます。",
"quickCommandActionHelp": "コマンドの表示と実行",
"quickCommandActionLabel": "コマンド パレット",
"quickOutlineActionLabel": "シンボルに移動...",
"quickOutlineByCategoryActionLabel": "カテゴリ別のシンボルへ移動...",
- "readonlyDiffEditor": "差分エディターの読み取り専用ウィンドウ内。",
- "readonlyEditor": "読み取り専用コード エディター内",
+ "readonlyDiffEditor": "差分エディターの読み取り専用ウィンドウ内にいます。",
+ "readonlyEditor": "読み取り専用コード エディター内にいます。",
+ "screenReaderModeDisabled": "スクリーン リーダー最適化モードが無効になっています。",
+ "screenReaderModeEnabled": "スクリーン リーダー最適化モードが有効になっています。",
"showAccessibilityHelpAction": "アクセシビリティのヘルプを表示します",
- "singleSelection": "行 {0}、列 {1}",
- "singleSelectionRange": "行 {0}、列 {1} ({2} 個選択済み)",
- "tabFocusModeOffMsg": "現在のエディターで Tab キーを押すと、タブ文字が挿入されます。{0} を押すと、この動作が切り替わります。",
- "tabFocusModeOffMsgNoKb": "現在のエディターで Tab キーを押すと、タブ文字が挿入されます。コマンド {0} は、キー バインドでは現在トリガーできません。",
- "tabFocusModeOnMsg": "現在のエディターで Tab キーを押すと、次のフォーカス可能な要素にフォーカスを移動します。{0} を押すと、この動作が切り替わります。",
- "tabFocusModeOnMsgNoKb": "現在のエディターで Tab キーを押すと、次のフォーカス可能な要素にフォーカスを移動します。コマンド {0} は、キー バインドでは現在トリガーできません。",
- "toggleHighContrast": "ハイ コントラスト テーマの切り替え"
+ "showOrFocusHover": "ポイントした{0}を表示またはフォーカスして、現在のシンボルに関する情報を読み取ります。",
+ "startInlineChatCommand": "インライン チャット{0} を開始して、エディターでのチャット セッションを作成します。",
+ "stickScrollKb": "スティッキー スクロールへのフォーカス{0} で、現在入れ子になっているスコープにフォーカスします。",
+ "suggestActionsKb": "候補ウィジェット {0} をトリガーして、使用可能なインライン候補を表示します。",
+ "tabFocusModeOffMsg": "現在のエディターで Tab キーを押すと、タブ文字が挿入されます。このビヘイビアー{0}を切り替えます。",
+ "tabFocusModeOnMsg": "現在のエディターで Tab キーを押すと、次のフォーカス可能な要素にフォーカスを移動します。このビヘイビアー{0} を切り替えます。",
+ "toggleHighContrast": "ハイ コントラスト テーマの切り替え",
+ "toggleSuggestionFocus": "候補ウィジェットとエディター{0} の間でフォーカスを切り替え、{1} を使用して詳細フォーカスを切り替えて、提案の詳細を確認します。",
+ "toolbar": "ワークベンチの周囲で、スクリーン リーダーがツール バーに着陸したことを知らせると、狭いキーを使用してツール バーのアクション間を移動します。"
+ },
+ "vs/editor/common/viewLayout/viewLineRenderer": {
+ "overflow.chars": "{0} 文字",
+ "showMore": "表示数を増やす ({0})"
},
"vs/editor/contrib/anchorSelect/browser/anchorSelect": {
"anchorSet": "アンカーが {0}:{1} に設定されました",
@@ -708,7 +1040,9 @@
"miGoToBracket": "ブラケットに移動(&&B)",
"overviewRulerBracketMatchForeground": "一致するブラケットを示す概要ルーラーのマーカー色。",
"smartSelect.jumpBracket": "ブラケットへ移動",
- "smartSelect.selectToBracket": "ブラケットに選択"
+ "smartSelect.removeBrackets": "かっこを外す",
+ "smartSelect.selectToBracket": "ブラケットに選択",
+ "smartSelect.selectToBracketDescription": "中かっこまたは波かっこを含むテキストを選択します"
},
"vs/editor/contrib/caretOperations/browser/caretOperations": {
"caret.moveLeft": "選択したテキストを左に移動",
@@ -728,8 +1062,10 @@
"miPaste": "貼り付け(&&P)",
"share": "共有"
},
+ "vs/editor/contrib/codeAction/browser/codeAction": {
+ "applyCodeActionFailed": "コード アクションの適用中に不明なエラーが発生しました"
+ },
"vs/editor/contrib/codeAction/browser/codeActionCommands": {
- "applyCodeActionFailed": "コード アクションの適用中に不明なエラーが発生しました",
"args.schema.apply": "返されたアクションが適用されるタイミングを制御します。",
"args.schema.apply.first": "最初に返されたコード アクションを常に適用します。",
"args.schema.apply.ifSingle": "最初に返されたコード アクション以外に返されたコード アクションがない場合は、そのアクションを適用します。",
@@ -754,30 +1090,65 @@
"editor.action.source.noneMessage.preferred.kind": "'{0}' に対して使用できる優先ソース アクションがありません",
"fixAll.label": "すべて修正",
"fixAll.noneMessage": "すべてを修正するアクションは利用できません",
+ "organizeImports.description": "現在のファイル内のインポートを整理します。一部のツールでは \"インポートの最適化\" とも呼ばれます",
"organizeImports.label": "インポートを整理",
"quickfix.trigger.label": "クイック フィックス...",
"refactor.label": "リファクター...",
- "refactor.preview.label": "プレビューを使用したリファクター...",
"source.label": "ソース アクション..."
},
- "vs/editor/contrib/codeAction/browser/codeActionMenu": {
- "CodeActionMenuVisible": "コード アクション リスト ウィジェットが表示されるかどうか",
- "label": "{0} to Refactor, {1} to Preview"
+ "vs/editor/contrib/codeAction/browser/codeActionContributions": {
+ "includeNearbyQuickFixes": "現在診断を行っていないときに、行内の最も近い クイック修正 を表示する機能を有効または無効にします。",
+ "showCodeActionHeaders": "コード アクション メニューでのグループ ヘッダーの表示の有効/無効を切り替えます。",
+ "triggerOnFocusChange": "{1} が {2} に設定されている場合に、{0} のトリガーを有効にします。ウィンドウとフォーカスの変更に対してトリガーされるコード アクションを {3} に設定する必要があります。"
},
- "vs/editor/contrib/codeAction/browser/codeActionWidgetContribution": {
- "codeActionWidget": "これを有効にすると、コード アクション メニューのレンダリング方法が調整されます。"
+ "vs/editor/contrib/codeAction/browser/codeActionController": {
+ "editingNewSelection": "コンテキスト: {1} 行 {2} 列 の {0}。",
+ "hideMoreActions": "無効なものを非表示",
+ "showMoreActions": "無効を表示"
+ },
+ "vs/editor/contrib/codeAction/browser/codeActionMenu": {
+ "codeAction.widget.id.convert": "再書き込みする",
+ "codeAction.widget.id.extract": "抽出",
+ "codeAction.widget.id.inline": "インライン",
+ "codeAction.widget.id.more": "その他の操作...",
+ "codeAction.widget.id.move": "移動",
+ "codeAction.widget.id.quickfix": "クイック修正",
+ "codeAction.widget.id.source": "ソース アクション...",
+ "codeAction.widget.id.surround": "ブロックの挿入"
},
"vs/editor/contrib/codeAction/browser/lightBulbWidget": {
"codeAction": "コード アクションの表示",
+ "codeActionAutoRun": "実行: {0}",
"codeActionWithKb": "コード アクションの表示 ({0})",
+ "gutterLightbulbAIFixAutoFixWidget": "エディターにスペースがなく、AI 修正とクイック修正が利用可能な場合にとじしろからコード アクション メニューを生成するアイコン。",
+ "gutterLightbulbAIFixWidget": "エディターにスペースがなく、AI 修正が利用可能な場合にとじしろからコード アクション メニューを生成するアイコン。",
+ "gutterLightbulbAutoFixWidget": "エディターにスペースがなく、クイック修正が利用可能な場合にとじしろからコード アクション メニューを生成するアイコン。",
+ "gutterLightbulbSparkleFilledWidget": "エディターにスペースがなく、AI 修正とクイック修正が利用可能な場合にとじしろからコード アクション メニューを生成するアイコン。",
+ "gutterLightbulbWidget": "エディターにスペースがない場合にとじしろからコード アクション メニューを生成するアイコン。",
"preferredcodeActionWithKb": "コードアクションを表示します。使用可能な優先のクイック修正 ({0})"
},
"vs/editor/contrib/codelens/browser/codelensController": {
- "showLensOnLine": "現在の行のコード レンズ コマンドを表示"
+ "placeHolder": "コマンドの選択",
+ "showLensOnLine": "現在の行の CodeLens コマンドを表示する"
},
- "vs/editor/contrib/colorPicker/browser/colorPickerWidget": {
+ "vs/editor/contrib/colorPicker/browser/colorPickerParts/colorPickerCloseButton": {
+ "closeIcon": "カラー ピッカーを閉じるアイコン"
+ },
+ "vs/editor/contrib/colorPicker/browser/colorPickerParts/colorPickerHeader": {
"clickToToggleColorOptions": "クリックして色オプションを切り替えます (rgb/hsl/hex)"
},
+ "vs/editor/contrib/colorPicker/browser/hoverColorPicker/hoverColorPickerParticipant": {
+ "hoverAccessibilityColorParticipant": "ここにカラー ピッカーがあります。"
+ },
+ "vs/editor/contrib/colorPicker/browser/standaloneColorPicker/standaloneColorPickerActions": {
+ "hideColorPicker": "カラー ピッカーを非表示にする",
+ "hideColorPickerDescription": "スタンドアロン カラー ピッカーを非表示にします。",
+ "insertColorWithStandaloneColorPicker": "スタンドアロン カラー ピッカーで色を挿入",
+ "insertColorWithStandaloneColorPickerDescription": "フォーカスされたスタンドアロン カラー ピッカーを使用して、16 進/RGB/HSL 色を挿入します。",
+ "mishowOrFocusStandaloneColorPicker": "スタンドアロン カラー ピッカーの表示またはフォーカス(&&S)",
+ "showOrFocusStandaloneColorPicker": "スタンドアロン カラー ピッカーの表示またはフォーカス",
+ "showOrFocusStandaloneColorPickerDescription": "既定のカラー プロバイダーを使用するスタンドアロン カラー ピッカーを表示またはフォーカスします。16 進/RGB/HSL の色が表示されます。"
+ },
"vs/editor/contrib/comment/browser/comment": {
"comment.block": "ブロック コメントの切り替え",
"comment.line": "行コメントの切り替え",
@@ -788,7 +1159,7 @@
},
"vs/editor/contrib/contextmenu/browser/contextmenu": {
"action.showContextMenu.label": "エディターのコンテキスト メニューの表示",
- "context.minimap.minimap": "Minimap",
+ "context.minimap.minimap": "ミニマップ",
"context.minimap.renderCharacters": "レンダリング文字",
"context.minimap.size": "垂直方向のサイズ",
"context.minimap.size.fill": "塗りつぶし",
@@ -798,24 +1169,54 @@
"context.minimap.slider.always": "常に",
"context.minimap.slider.mouseover": "マウス オーバー"
},
- "vs/editor/contrib/copyPaste/browser/copyPasteContribution": {
- "pasteActions": "貼り付け時に拡張機能からの編集の実行を有効化/無効化してください。"
- },
"vs/editor/contrib/cursorUndo/browser/cursorUndo": {
"cursor.redo": "カーソルのやり直し",
"cursor.undo": "カーソルを元に戻す"
},
- "vs/editor/contrib/dropIntoEditor/browser/dropIntoEditorContribution": {
- "dropProgressTitle": "ドロップ ハンドラーを実行しています..."
+ "vs/editor/contrib/dropOrPasteInto/browser/copyPasteContribution": {
+ "pasteAs": "貼り付けのオプション...",
+ "pasteAs.kind": "貼り付けを試みる貼り付け編集の種類。\r\nこの種類の編集が複数ある場合は、エディターにピッカーが表示されます。この種類の編集がない場合は、エディターにエラー メッセージが表示されます。",
+ "pasteAs.preferences": "適用を試みるユーザー設定の貼り付け編集の種類の一覧。\r\nユーザー設定に一致する最初の編集が適用されます。",
+ "pasteAsText": "テキストとして貼り付け"
+ },
+ "vs/editor/contrib/dropOrPasteInto/browser/copyPasteController": {
+ "noPreferences": "空",
+ "pasteAsDefault": "既定の貼り付けアクションを構成する",
+ "pasteAsError": "'{0}' の貼り付けの編集が見つかりませんでした",
+ "pasteAsPickerPlaceholder": "貼り付け操作の選択",
+ "pasteAsProgress": "貼り付けハンドラーを実行しています...",
+ "pasteIntoEditorProgress": "貼り付けハンドラーを実行しています。クリックしてキャンセルし、基本的な貼り付けを行います",
+ "pasteWidgetVisible": "貼り付けウィジェットが表示されているかどうか",
+ "postPasteWidgetTitle": "貼り付けオプションを表示...",
+ "resolveProcess": "'{0}' の貼り付けの編集を解決しています。クリックしてキャンセル"
+ },
+ "vs/editor/contrib/dropOrPasteInto/browser/defaultProviders": {
+ "defaultDropProvider.uriList.path": "パスの挿入",
+ "defaultDropProvider.uriList.paths": "パスの挿入",
+ "defaultDropProvider.uriList.relativePath": "相対パスの挿入",
+ "defaultDropProvider.uriList.relativePaths": "相対パスの挿入",
+ "defaultDropProvider.uriList.uri": "URI の挿入",
+ "defaultDropProvider.uriList.uris": "URI の挿入",
+ "pasteHtmlLabel": "HTML の挿入",
+ "text.label": "プレーンテキストの挿入"
+ },
+ "vs/editor/contrib/dropOrPasteInto/browser/dropIntoEditorController": {
+ "dropIntoEditorProgress": "ドロップ ハンドラーを実行しています。クリックしてキャンセルします",
+ "dropWidgetVisible": "ドロップ ウィジェットが表示されているかどうか",
+ "postDropWidgetTitle": "ドロップ オプションを表示..."
+ },
+ "vs/editor/contrib/dropOrPasteInto/browser/postEditWidget": {
+ "applyError": "編集 '{0}' の適用中にエラーが発生しました:\r\n{1}",
+ "resolveError": "編集 '{0}' の解決中にエラーが発生しました:\r\n{1}"
},
"vs/editor/contrib/editorState/browser/keybindingCancellation": {
"cancellableOperation": "エディターで取り消し可能な操作 ('参照をここに表示' など) を実行するかどうか"
},
"vs/editor/contrib/find/browser/findController": {
- "actions.find.isRegexOverride": "\"正規表現を使用する\" フラグをオーバーライドします。\r\nフラグは今後保存されません。\r\n0: 何もしない\r\n1: True\r\n2: False",
- "actions.find.matchCaseOverride": "\"数式ケース\" フラグをオーバーライドします。\r\nフラグは今後保存されません。\r\n0: 何もしない\r\n1: True\r\n2: False",
- "actions.find.preserveCaseOverride": "\"ケースの保持\" フラグをオーバーライドします。\r\nフラグは今後保存されません。\r\n0: 何もしない\r\n1: True\r\n2: False",
- "actions.find.wholeWordOverride": "\"単語単位で検索する\" フラグをオーバーライドします。\r\nフラグは今後保存されません。\r\n0: 何もしない\r\n1: True\r\n2: False",
+ "findMatchAction.goToMatch": "[一致] に移動...",
+ "findMatchAction.inputPlaceHolder": "特定の一致に移動する数値を入力します (1 から {0})",
+ "findMatchAction.inputValidationMessage": "1 ~ {0} の数を入力してください。",
+ "findMatchAction.noResults": "一致しません。他の項目を検索してみてください。",
"findNextMatchAction": "次を検索",
"findPreviousMatchAction": "前を検索",
"miFind": "検索(&&F)",
@@ -823,16 +1224,16 @@
"nextSelectionMatchFindAction": "次の選択項目を検索",
"previousSelectionMatchFindAction": "前の選択項目を検索",
"startFindAction": "検索",
- "startFindWithArgsAction": "引数を使用した検索",
+ "startFindWithArgsAction": "引数を使用して検索",
"startFindWithSelectionAction": "選択範囲で検索",
- "startReplace": "置換"
+ "startReplace": "置換",
+ "too.large.for.replaceall": "ファイルが大きすぎるため、すべての置換アクションを実行できません。"
},
"vs/editor/contrib/find/browser/findWidget": {
"ariaSearchNoResult": "{0} が '{1}' で見つかりました",
"ariaSearchNoResultEmpty": "{0} が見つかりました",
"ariaSearchNoResultWithLineNum": "{0} は '{1}' で {2} に見つかりました",
"ariaSearchNoResultWithLineNumNoCurrentMatch": "{0} が '{1}' で見つかりました",
- "ctrlEnter.keybindingChanged": "Ctrl + Enter キーを押すと、すべて置換するのではなく、改行が挿入されるようになりました。editor.action.replaceAll のキーバインドを変更して、この動作をオーバーライドできます。",
"findCollapsedIcon": "エディターの検索ウィジェットが折りたたまれていることを示すアイコン。",
"findExpandedIcon": "エディターの検索ウィジェットが展開されていることを示すアイコン。",
"findNextMatchIcon": "エディターの検索ウィジェット内の '次を検索' のアイコン。",
@@ -842,6 +1243,7 @@
"findSelectionIcon": "エディターの検索ウィジェット内の '選択範囲を検索' のアイコン。",
"label.closeButton": "閉じる",
"label.find": "検索",
+ "label.findDialog": "検索/置換",
"label.matchesLocation": "{0} / {1} 件",
"label.nextMatchButton": "次の一致項目",
"label.noResults": "結果はありません。",
@@ -856,44 +1258,42 @@
"title.matchesCountLimit": "最初の {0} 件の結果だけが強調表示されますが、すべての検索操作はテキスト全体で機能します。"
},
"vs/editor/contrib/folding/browser/folding": {
- "createManualFoldRange.label": "Create Manual Folding Range from Selection",
- "editorGutter.foldingControlForeground": "エディターの余白にある折りたたみコントロールの色。",
+ "createManualFoldRange.label": "選択範囲から折りたたみ範囲を作成する",
"foldAction.label": "折りたたみ",
"foldAllAction.label": "すべて折りたたみ",
"foldAllBlockComments.label": "すべてのブロック コメントの折りたたみ",
- "foldAllExcept.label": "選択されたものを除くすべての領域を折りたたむ",
+ "foldAllExcept.label": "選択した項目を除くすべて折りたたみ",
"foldAllMarkerRegions.label": "すべての領域を折りたたむ",
- "foldBackgroundBackground": "折り曲げる範囲の背景色。基の装飾を隠さないように、色は不透明であってはなりません。",
"foldLevelAction.label": "レベル {0} で折りたたむ",
"foldRecursivelyAction.label": "再帰的に折りたたむ",
"gotoNextFold.label": "次のフォールディング範囲に移動する",
"gotoParentFold.label": "親フォールドに移動する",
"gotoPreviousFold.label": "前のフォールディング範囲に移動する",
- "maximum fold ranges": "折りたたみ可能な領域の数は、最大 {0} 個に制限されます。より多くを有効にするには、構成オプション ['Folding Maximum Regions'](command:workbench.action.openSettings?[\"editor.foldingMaximumRegions\"]) の値を大きくします。",
- "removeManualFoldingRanges.label": "Remove Manual Folding Ranges",
+ "removeManualFoldingRanges.label": "手動折りたたみ範囲を削除する",
"toggleFoldAction.label": "折りたたみの切り替え",
+ "toggleFoldRecursivelyAction.label": "折りたたみを再帰的に切り替える",
+ "toggleImportFold.label": "折りたたみのインポートの切り替え",
"unFoldRecursivelyAction.label": "再帰的に展開する",
"unfoldAction.label": "展開",
"unfoldAllAction.label": "すべて展開",
- "unfoldAllExcept.label": "選択されたものを除くすべての領域を展開する",
+ "unfoldAllExcept.label": "選択した項目を除くすべて展開",
"unfoldAllMarkerRegions.label": "すべての領域を展開"
},
"vs/editor/contrib/folding/browser/foldingDecorations": {
+ "collapsedTextColor": "折りたたまれた範囲の最初の行の後で折りたたまれたテキストの色。",
+ "editorGutter.foldingControlForeground": "エディターの余白にある折りたたみコントロールの色。",
+ "foldBackgroundBackground": "折り曲げる範囲の背景色。基の装飾を隠さないように、色は不透明であってはなりません。",
"foldingCollapsedIcon": "エディターのグリフ余白内の折りたたまれた範囲のアイコン。",
"foldingExpandedIcon": "エディターのグリフ余白内の展開された範囲のアイコン。",
- "foldingManualCollapedIcon": "Icon for manually collapsed ranges in the editor glyph margin.",
- "foldingManualExpandedIcon": "Icon for manually expanded ranges in the editor glyph margin."
+ "foldingManualCollapedIcon": "エディターのグリフ余白内の折りたたまれた範囲のアイコン。",
+ "foldingManualExpandedIcon": "エディターのグリフ余白内で手動で展開された範囲のアイコン。",
+ "linesCollapsed": "クリックして範囲を展開します。",
+ "linesExpanded": "クリックして範囲を折りたたみます。"
},
"vs/editor/contrib/fontZoom/browser/fontZoom": {
- "EditorFontZoomIn.label": "エディターのフォントを拡大",
- "EditorFontZoomOut.label": "エディターのフォントを縮小",
- "EditorFontZoomReset.label": "エディターのフォントのズームをリセット"
- },
- "vs/editor/contrib/format/browser/format": {
- "hint11": "行 {0} で 1 つの書式設定を編集",
- "hint1n": "行 {0} と {1} の間で 1 つの書式設定を編集",
- "hintn1": "行 {1} で {0} 個の書式設定を編集",
- "hintnn": "行 {1} と {2} の間で {0} 個の書式設定を編集"
+ "EditorFontZoomIn.label": "エディターのフォント サイズを拡大",
+ "EditorFontZoomOut.label": "エディターのフォント サイズを縮小",
+ "EditorFontZoomReset.label": "エディターのフォント サイズをリセット"
},
"vs/editor/contrib/format/browser/formatActions": {
"formatDocument.label": "ドキュメントのフォーマット",
@@ -983,8 +1383,8 @@
"vs/editor/contrib/gotoSymbol/browser/referencesModel": {
"aria.fileReferences.1": "{0} に 1 個のシンボル、完全なパス {1}",
"aria.fileReferences.N": "{1} に {0} 個のシンボル、完全なパス {2}",
- "aria.oneReference": "列 {2} の {1} 行目に {0} つのシンボル",
- "aria.oneReference.preview": "列 {2}、{3} の {1} 行目の {0} にある記号",
+ "aria.oneReference": "列 {2} の行 {1} の {0}",
+ "aria.oneReference.preview": "列 {3} の行 {2} の {1} に {0}",
"aria.result.0": "一致する項目はありません",
"aria.result.1": "{0} に 1 個のシンボルが見つかりました",
"aria.result.n1": "{1} に {0} 個のシンボルが見つかりました",
@@ -995,12 +1395,64 @@
"location": "シンボル {0}/{1}",
"location.kb": "{1} のシンボル {0}、次に {2}"
},
- "vs/editor/contrib/hover/browser/hover": {
+ "vs/editor/contrib/gpu/browser/gpuActions": {
+ "drawGlyph.label": "グリフの描画",
+ "gpuDebug.label": "開発者: デバッグ エディター GPU レンダラー",
+ "logTextureAtlasStats.label": "ログ テクスチャ アトラス統計",
+ "saveTextureAtlas.label": "テクスチャ アトラスの保存"
+ },
+ "vs/editor/contrib/hover/browser/contentHoverRendered": {
+ "hoverAccessibilityStatusBar": "これはホバー状態バーです。",
+ "hoverAccessibilityStatusBarActionWithKeybinding": "ラベル {0} とキー バインド {1} を含むアクションがあります。",
+ "hoverAccessibilityStatusBarActionWithoutKeybinding": "ラベル {0} を含むアクションがあります。"
+ },
+ "vs/editor/contrib/hover/browser/hoverAccessibleViews": {
+ "decreaseVerbosity": "- フォーカスのあるホバー部分の詳細レベルは、ホバーの詳細度を下げるコマンドを使用して下げられます。",
+ "increaseVerbosity": "- フォーカスのあるホバー部分の詳細レベルは、ホバーの詳細度を上げるコマンドを使用して上げられます。"
+ },
+ "vs/editor/contrib/hover/browser/hoverActionIds": {
+ "decreaseHoverVerbosityLevel": "ホバーの詳細レベルを下げる",
+ "increaseHoverVerbosityLevel": "ホバーの詳細レベルを上げる"
+ },
+ "vs/editor/contrib/hover/browser/hoverActions": {
+ "goToBottomHover": "[下に移動] ホバー",
+ "goToBottomHoverDescription": "エディターのホバーを下部に移動にします。",
+ "goToTopHover": "[上に移動] ホバー",
+ "goToTopHoverDescription": "エディターのホバーを上部に移動します。",
+ "hideHover": "ホバーを非表示にする",
+ "pageDownHover": "[ページを下に] ホバー",
+ "pageDownHoverDescription": "エディターのホバーをページの下に移動します。",
+ "pageUpHover": "[ページを上に] ホバー",
+ "pageUpHoverDescription": "エディターのホバーをページの上に移動します。",
+ "scrollDownHover": "[下にスクロール] ホバー",
+ "scrollDownHoverDescription": "エディターのホバーを下にスクロールします。",
+ "scrollLeftHover": "[左にスクロール] ホバー",
+ "scrollLeftHoverDescription": "エディターのホバーを左にスクロールします。",
+ "scrollRightHover": "[右にスクロール] ホバー",
+ "scrollRightHoverDescription": "エディターのホバーを右にスクロールします。",
+ "scrollUpHover": "[上にスクロール] ホバー",
+ "scrollUpHoverDescription": "エディターのホバーを上にスクロールします。",
"showDefinitionPreviewHover": "定義プレビューのホバーを表示する",
- "showHover": "ホバーの表示"
+ "showDefinitionPreviewHoverDescription": "エディターに定義プレビュー ホバーを表示します。",
+ "showOrFocusHover": "[表示またはフォーカス] ホバー",
+ "showOrFocusHover.focus.autoFocusImmediately": "ホバーが表示されると、自動的にフォーカスを取得します。",
+ "showOrFocusHover.focus.focusIfVisible": "ホバーは、それが既に表示されている場合にのみフォーカスを取得します。",
+ "showOrFocusHover.focus.noAutoFocus": "ホバーは自動的にフォーカスを取得しません。",
+ "showOrFocusHoverDescription": "現在のカーソル位置にあるシンボルのドキュメント、参照、その他のコンテンツを表示するエディターのホバーを表示またはフォーカスします。"
+ },
+ "vs/editor/contrib/hover/browser/hoverCopyButton": {
+ "hover.copied": "クリップボードにコピーされました",
+ "hover.copy": "コピー"
},
"vs/editor/contrib/hover/browser/markdownHoverParticipant": {
+ "decreaseHoverVerbosity": "ホバーの詳細度を下げるためのアイコン。",
+ "decreaseVerbosity": "ホバーの詳細レベルを下げる",
+ "decreaseVerbosityWithKb": "ホバーの詳細レベルを下げる ({0})",
+ "increaseHoverVerbosity": "ホバーの詳細度を高めるためのアイコン。",
+ "increaseVerbosity": "ホバーの詳細レベルを上げる",
+ "increaseVerbosityWithKb": "ホバーの詳細レベルを上げる ({0})",
"modesContentHover.loading": "読み込んでいます...",
+ "stopped rendering": "パフォーマンス上の理由から、長い行のためにレンダリングが一時停止されました。これは `editor.stopRenderingLineAfter` で設定できます。",
"too many characters": "パフォーマンス上の理由からトークン化はスキップされます。その長い行の長さは `editor.maxTokenizationLineLength` で構成できます。"
},
"vs/editor/contrib/hover/browser/markerHoverParticipant": {
@@ -1009,24 +1461,31 @@
"quick fixes": "クイック フィックス...",
"view problem": "問題の表示"
},
- "vs/editor/contrib/inPlaceReplace/browser/inPlaceReplace": {
- "InPlaceReplaceAction.next.label": "次の値に置換",
- "InPlaceReplaceAction.previous.label": "前の値に置換"
- },
"vs/editor/contrib/indentation/browser/indentation": {
+ "changeTabDisplaySize": "タブの表示サイズの変更",
+ "changeTabDisplaySizeDescription": "タブと同等のスペース サイズを変更します。",
"configuredTabSize": "構成されたタブのサイズ",
+ "currentTabSize": "現在のタブ サイズ",
+ "defaultTabSize": "既定のタブ サイズ",
"detectIndentation": "内容からインデントを検出",
+ "detectIndentationDescription": "コンテンツからのインデントを検出します。",
"editor.reindentlines": "行の再インデント",
+ "editor.reindentlinesDescription": "エディターの行のインデントを元に戻します。",
"editor.reindentselectedlines": "選択行を再インデント",
+ "editor.reindentselectedlinesDescription": "エディターの選択した行のインデントを元に戻します。",
"indentUsingSpaces": "スペースによるインデント",
+ "indentUsingSpacesDescription": "スペースを含むインデントを使用します。",
"indentUsingTabs": "タブによるインデント",
+ "indentUsingTabsDescription": "タブでインデントを使用します。",
"indentationToSpaces": "インデントをスペースに変換",
+ "indentationToSpacesDescription": "タブのインデントをスペースに変換します。",
"indentationToTabs": "インデントをタブに変換",
+ "indentationToTabsDescription": "スペースのインデントをタブに変換します。",
"selectTabWidth": "現在のファイルのタブのサイズを選択"
},
"vs/editor/contrib/inlayHints/browser/inlayHintsHover": {
"hint.cmd": "コマンドの実行",
- "hint.dbl": "ダブル クリックして挿入する",
+ "hint.dbl": "ダブルクリックして挿入する",
"hint.def": "定義に移動 ({0})",
"hint.defAndCommand": "[定義] ({0}) に移動し、右クリックして詳細を表示します",
"links.navigate.kb.alt": "alt キーを押しながらクリック",
@@ -1034,27 +1493,105 @@
"links.navigate.kb.meta": "ctrl キーを押しながら クリック",
"links.navigate.kb.meta.mac": "cmd キーを押しながらクリック"
},
- "vs/editor/contrib/inlineCompletions/browser/ghostTextController": {
+ "vs/editor/contrib/inlineCompletions/browser/controller/commands": {
+ "accept": "承諾",
+ "acceptLine": "行を承諾する",
+ "acceptWord": "単語を採用する",
+ "action.inlineSuggest.accept": "インライン候補を採用する",
+ "action.inlineSuggest.acceptNextLine": "インライン提案の次の行を承諾する",
+ "action.inlineSuggest.acceptNextWord": "インライン提案の次の単語を承諾する",
+ "action.inlineSuggest.alwaysShowToolbar": "常にツール バーを表示する",
+ "action.inlineSuggest.dev.extractRepro": "開発者: インライン提案状態の抽出",
+ "action.inlineSuggest.hide": "インライン候補を非表示にする",
+ "action.inlineSuggest.jump": "次のインライン編集にジャンプ",
"action.inlineSuggest.showNext": "次のインライン候補を表示する",
"action.inlineSuggest.showPrevious": "前のインライン候補を表示する",
+ "action.inlineSuggest.toggleShowCollapsed": "インライン修正候補の折りたたみ表示の切り替え",
"action.inlineSuggest.trigger": "インライン候補をトリガーする",
+ "inlineSuggest.trigger.args": "インライン候補をトリガーするためのオプション。",
+ "inlineSuggest.trigger.description": "エディターでインライン候補をトリガーします。",
+ "jump": "ジャンプ",
+ "noInlineSuggestionAvailable": "インライン候補は利用できません。",
+ "reject": "Reject"
+ },
+ "vs/editor/contrib/inlineCompletions/browser/controller/inlineCompletionContextKeys": {
+ "cursorAtInlineEdit": "カーソルがインライン編集中かどうか",
+ "cursorBeforeGhostText": "カーソルがゴースト テキストにあるかどうか",
+ "cursorInIndentation": "カーソルがインデント内にあるかどうか",
+ "editor.hasSelection": "エディターに選択範囲があるかどうか",
+ "inInlineEditsPreviewEditor": "現在のコード エディターがインライン編集プレビューを表示しているかどうか",
+ "inlineEditVisible": "インライン編集が表示されるかどうか",
"inlineSuggestionHasIndentation": "インライン候補がスペースで始まるかどうか",
"inlineSuggestionHasIndentationLessThanTabSize": "インライン候補が、タブで挿入されるものよりも小さいスペースで始まるかどうか",
- "inlineSuggestionVisible": "インライン候補を表示するかどうか"
+ "inlineSuggestionVisible": "インライン候補を表示するかどうか",
+ "suppressSuggestions": "現在の候補について候補表示を止めるかどうか",
+ "tabShouldAcceptInlineEdit": "タブでインライン編集を受け入れるかどうか。",
+ "tabShouldJumpToInlineEdit": "タブをインライン編集にジャンプするかどうか。"
+ },
+ "vs/editor/contrib/inlineCompletions/browser/controller/inlineCompletionsController": {
+ "showAccessibleViewHint": "ユーザー補助対応のビューでこれを検査します ({0})"
+ },
+ "vs/editor/contrib/inlineCompletions/browser/hintsWidget/hoverParticipant": {
+ "hoverAccessibilityStatusBar": "ここにインライン入力候補があります",
+ "inlineSuggestionFollows": "提案:"
+ },
+ "vs/editor/contrib/inlineCompletions/browser/hintsWidget/inlineCompletionsHintsWidget": {
+ "content": "{0} ({1})",
+ "next": "次へ",
+ "parameterHintsNextIcon": "次のパラメーター ヒントを表示するためのアイコン。",
+ "parameterHintsPreviousIcon": "前のパラメーター ヒントを表示するためのアイコン。",
+ "previous": "前へ"
+ },
+ "vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/components/gutterIndicatorMenu": {
+ "accept": "承諾",
+ "goto": "移動先",
+ "reject": "拒否",
+ "settings": "設定",
+ "showCollapsed": "折りたたまれた状態で表示",
+ "showExpanded": "展開されたものを表示",
+ "snooze": "再通知"
+ },
+ "vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/components/gutterIndicatorView": {
+ "inlineSuggestion": "インライン候補"
+ },
+ "vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/theme": {
+ "inlineEdit.gutterIndicator.background": "インライン編集余白インジケーターの背景色。",
+ "inlineEdit.gutterIndicator.primaryBackground": "プライマリ インライン編集余白インジケーターの背景色。",
+ "inlineEdit.gutterIndicator.primaryBorder": "プライマリ インライン編集とじしろインジケーターの境界線の色。",
+ "inlineEdit.gutterIndicator.primaryForeground": "プライマリ インライン編集余白インジケーターの前景色。",
+ "inlineEdit.gutterIndicator.secondaryBackground": "セカンダリ インライン編集余白インジケーターの背景色。",
+ "inlineEdit.gutterIndicator.secondaryBorder": "セカンダリ インライン編集とじしろインジケーターの境界線の色。",
+ "inlineEdit.gutterIndicator.secondaryForeground": "セカンダリ インライン編集余白インジケーターの前景色。",
+ "inlineEdit.gutterIndicator.successfulBackground": "成功したインライン編集余白インジケーターの背景色。",
+ "inlineEdit.gutterIndicator.successfulBorder": "インライン編集とじしろインジケーターの境界線の色。",
+ "inlineEdit.gutterIndicator.successfulForeground": "成功したインライン編集余白インジケーターの前景色。",
+ "inlineEdit.modifiedBackground": "インライン編集で変更されたテキストの背景色。",
+ "inlineEdit.modifiedBorder": "インライン編集で変更されたテキストの境界線の色。",
+ "inlineEdit.modifiedChangedLineBackground": "インライン編集の変更されたテキスト内の変更された行の背景色。",
+ "inlineEdit.modifiedChangedTextBackground": "インライン編集の変更されたテキスト内の変更されたテキストのオーバーレイの色。",
+ "inlineEdit.originalBackground": "インライン編集の元のテキストの背景色。",
+ "inlineEdit.originalBorder": "インライン編集での元のテキストの境界線の色。",
+ "inlineEdit.originalChangedLineBackground": "インライン編集の元のテキストで変更された行の背景色。",
+ "inlineEdit.originalChangedTextBackground": "インライン編集の元のテキストで変更されたテキストのオーバーレイの色。",
+ "inlineEdit.tabWillAcceptModifiedBorder": "タブで受け入れられるときのインライン編集ウィジェットの変更された境界線の色。",
+ "inlineEdit.tabWillAcceptOriginalBorder": "タブで受け入れられるときの元のテキストに対するインライン編集ウィジェットの元の境界線の色。"
},
- "vs/editor/contrib/inlineCompletions/browser/ghostTextHoverParticipant": {
- "acceptInlineSuggestion": "同意する",
- "inlineSuggestionFollows": "おすすめ:",
- "showNextInlineSuggestion": "次へ",
- "showPreviousInlineSuggestion": "前へ"
+ "vs/editor/contrib/inPlaceReplace/browser/inPlaceReplace": {
+ "InPlaceReplaceAction.next.label": "次の値に置換",
+ "InPlaceReplaceAction.previous.label": "前の値に置換"
+ },
+ "vs/editor/contrib/insertFinalNewLine/browser/insertFinalNewLine": {
+ "insertFinalNewLine": "新しい行を末尾に挿入"
},
"vs/editor/contrib/lineSelection/browser/lineSelection": {
- "expandLineSelection": "線の選択を展開する"
+ "expandLineSelection": "行全体を選択する"
},
"vs/editor/contrib/linesOperations/browser/linesOperations": {
"duplicateSelection": "選択範囲の複製",
+ "editor.transformToCamelcase": "キャメル ケースに変換する",
"editor.transformToKebabcase": "Kebab ケースへの変換",
"editor.transformToLowercase": "小文字に変換",
+ "editor.transformToPascalcase": "パスカル ケースへの変換",
"editor.transformToSnakecase": "スネーク ケースに変換する",
"editor.transformToTitlecase": "先頭文字を大文字に変換する",
"editor.transformToUppercase": "大文字に変換",
@@ -1072,6 +1609,7 @@
"lines.moveDown": "行を下へ移動",
"lines.moveUp": "行を上へ移動",
"lines.outdent": "行のインデント解除",
+ "lines.reverseLines": "行を逆順に並び替え",
"lines.sortAscending": "行を昇順に並べ替え",
"lines.sortDescending": "行を降順に並べ替え",
"lines.trimTrailingWhitespace": "末尾の空白のトリミング",
@@ -1101,8 +1639,8 @@
"messageVisible": "エディターに現在インライン メッセージが表示されているかどうか"
},
"vs/editor/contrib/multicursor/browser/multicursor": {
- "addSelectionToNextFindMatch": "選択した項目を次の一致項目に追加",
- "addSelectionToPreviousFindMatch": "選択項目を次の一致項目に追加",
+ "addSelectionToNextFindMatch": "選択範囲を次の一致項目に追加",
+ "addSelectionToPreviousFindMatch": "選択範囲を前の一致項目に追加",
"changeAll.label": "すべての出現箇所を変更",
"cursorAdded": "追加されたカーソル: {0}",
"cursorsAdded": "追加されたカーソル: {0}",
@@ -1112,8 +1650,8 @@
"miInsertCursorAtEndOfEachLineSelected": "カーソルを行末に挿入(&&U)",
"miInsertCursorBelow": "カーソルを下に挿入(&&D)",
"miSelectHighlights": "すべての出現箇所を選択(&&O)",
- "moveSelectionToNextFindMatch": "最後に選択した項目を次の一致項目に移動",
- "moveSelectionToPreviousFindMatch": "最後に選んだ項目を前の一致項目に移動する",
+ "moveSelectionToNextFindMatch": "最後の選択範囲を次の一致項目に移動",
+ "moveSelectionToPreviousFindMatch": "最後の選択範囲を前の一致項目に移動",
"mutlicursor.addCursorsToBottom": "カーソルを下に挿入",
"mutlicursor.addCursorsToTop": "カーソルを上に挿入",
"mutlicursor.focusNextCursor": "次のカーソルにフォーカス",
@@ -1142,6 +1680,8 @@
"peekViewEditorGutterBackground": "ピーク ビュー エディターの余白の背景色。",
"peekViewEditorMatchHighlight": "ピーク ビュー エディターの一致した強調表示色。",
"peekViewEditorMatchHighlightBorder": "ピーク ビュー エディターの一致した強調境界色。",
+ "peekViewEditorStickScrollBackground": "ピーク ビュー エディターでのスティッキー スクロールの背景色。",
+ "peekViewEditorStickyScrollGutterBackground": "ピーク ビュー エディターでのスティッキー スクロールのガター部分の背景色。",
"peekViewResultsBackground": "ピーク ビュー結果リストの背景色。",
"peekViewResultsFileForeground": "ピーク ビュー結果リストのファイル ノードの前景色。",
"peekViewResultsMatchForeground": "ピーク ビュー結果リストのライン ノードの前景色。",
@@ -1152,12 +1692,19 @@
"peekViewTitleForeground": "ピーク ビュー タイトルの色。",
"peekViewTitleInfoForeground": "ピーク ビューのタイトル情報の色。"
},
+ "vs/editor/contrib/placeholderText/browser/placeholderText.contribution": {
+ "placeholderForeground": "エディターのプレースホルダー テキストの前景色。"
+ },
"vs/editor/contrib/quickAccess/browser/gotoLineQuickAccess": {
- "cannotRunGotoLine": "最初にテキスト エディターを開いて、行に移動します。",
- "gotoLineColumnLabel": "行 {0}、文字 {1} に移動します。",
- "gotoLineLabel": "{0} 行に移動します。",
- "gotoLineLabelEmpty": "現在の行: {0}、文字: {1}。移動先の行番号を入力します。",
- "gotoLineLabelEmptyWithLimit": "現在の行: {0}、文字: {1}。移動先となる、1 から {2} までの行番号を入力します。"
+ "gotoLine.ariaLabel": "現在位置: 行 {0}、列 {1}。{2}",
+ "gotoLine.columnPrompt": "'Enter' キーを押して行 {0} に移動するか、コロン番号 (1 - {1}) を入力します。",
+ "gotoLine.goToPosition": "'Enter' キーを押して列 {1} の行 {0} に移動してください。",
+ "gotoLine.lineColumnPrompt": "'Enter' キーを押して行 {0} に移動するか、コロン (:) を入力して列番号を追加します。",
+ "gotoLine.linePrompt": "行番号を入力して (1 - {0}) に移動してください。",
+ "gotoLine.noEditor": "最初にテキスト エディターを開いて、行またはオフセットに移動します。",
+ "gotoLine.offsetPrompt": "文字位置を入力して (1 - {0}) に移動してください。",
+ "gotoLine.offsetPromptZero": "文字位置を入力して (0 - {0}) に移動してください。",
+ "gotoLineToggle": "ゼロから始まるオフセットを使用する"
},
"vs/editor/contrib/quickAccess/browser/gotoSymbolQuickAccess": {
"_constructor": "コンストラクター ({0})",
@@ -1200,6 +1747,8 @@
"vs/editor/contrib/rename/browser/rename": {
"aria": "'{0}' から '{1}' への名前変更が正常に完了しました。概要: {2}",
"enablePreview": "名前を変更する前に変更をプレビューする機能を有効または無効にする",
+ "focusNextRenameSuggestion": "次の名前変更候補にフォーカス",
+ "focusPreviousRenameSuggestion": "前の名前変更候補にフォーカス",
"label": "名前を '{0}' から '{1}' に変更しています",
"no result": "結果がありません。",
"quotableLabel": "{0} の名前を {1} に変更しています",
@@ -1208,10 +1757,14 @@
"rename.label": "シンボルの名前変更",
"resolveRenameLocationFailed": "名前変更の場所を解決しようとして不明なエラーが発生しました"
},
- "vs/editor/contrib/rename/browser/renameInputField": {
+ "vs/editor/contrib/rename/browser/renameWidget": {
+ "cancelRenameSuggestionsButton": "キャンセル",
+ "generateRenameSuggestionsButton": "新しい名前候補の生成",
"label": "名前を変更するには {0}、プレビューするには {1}",
"renameAriaLabel": "名前変更入力。新しい名前を入力し、Enter キーを押してコミットしてください。",
- "renameInputVisible": "名前の変更入力ウィジェットが表示されるかどうか"
+ "renameInputFocused": "名前の変更入力ウィジェットがフォーカスされるかどうか",
+ "renameInputVisible": "名前の変更入力ウィジェットが表示されるかどうか",
+ "renameSuggestionsReceivedAria": "{0} 名前変更の提案を受信しました"
},
"vs/editor/contrib/smartSelect/browser/smartSelect": {
"miSmartSelectGrow": "選択範囲の展開(&&E)",
@@ -1265,6 +1818,19 @@
"Wednesday": "水曜日",
"WednesdayShort": "水"
},
+ "vs/editor/contrib/stickyScroll/browser/stickyScrollActions": {
+ "focusStickyScroll": "フォーカス エディター スティッキー スクロール",
+ "goToFocusedStickyScrollLine.title": "フォーカス付きスティッキー スクロール行に移動する",
+ "miStickyScroll": "スティッキー スクロール(&&S)",
+ "mifocusEditorStickyScroll": "フォーカス エディター スティッキー スクロール(&&F)",
+ "mitoggleStickyScroll": "エディター スティッキー スクロールの切り替え(&&T)",
+ "selectEditor.title": "エディターを選択",
+ "selectNextStickyScrollLine.title": "次のエディターのスティッキー スクロール行を選択",
+ "selectPreviousStickyScrollLine.title": "前のスティッキー スクロール行を選択",
+ "stickyScroll": "スティッキー スクロール",
+ "toggleEditorStickyScroll": "エディター スティッキー スクロールの切り替え",
+ "toggleEditorStickyScroll.description": "ビューポートの上部に入れ子になったスコープを表示するエディターのスティッキー スクロールを切り替えるか、有効にします。"
+ },
"vs/editor/contrib/suggest/browser/suggest": {
"acceptSuggestionOnEnter": "Enter キーを押したときに候補を挿入するかどうか",
"suggestWidgetDetailsVisible": "候補の詳細が表示されるかどうか",
@@ -1279,8 +1845,8 @@
"accept.insert": "挿入",
"accept.replace": "置換",
"aria.alert.snippet": "{1} が追加編集した '{0}' を受け入れる",
- "detail.less": "さらに表示",
- "detail.more": "表示を減らす",
+ "detail.less": "表示数を増やす",
+ "detail.more": "表示数を減らす",
"suggest.reset.label": "候補のウィジェットのサイズをリセット",
"suggest.trigger.label": "候補をトリガー"
},
@@ -1295,9 +1861,10 @@
"editorSuggestWidgetSelectedForeground": "候補ウィジェット内で選択済み入力の前景色。",
"editorSuggestWidgetSelectedIconForeground": "候補ウィジェット内で選択済み入力のアイコン前景色。",
"editorSuggestWidgetStatusForeground": "ウィジェット状態の提案の前景色。",
- "label.desc": "{0}、 {1}",
- "label.detail": "{0}{1}",
- "label.full": "({0},{1}) {2}",
+ "label": "{0}、{1}",
+ "label.desc": "{0}、{1}、{2}",
+ "label.detail": "{0} {1}、{2}",
+ "label.full": "{0} {1}、{2}、{3}",
"suggest": "提案",
"suggestWidget.loading": "読み込んでいます...",
"suggestWidget.noSuggestions": "候補はありません。"
@@ -1310,8 +1877,8 @@
"readMore": "詳細を参照",
"suggestMoreInfoIcon": "提案ウィジェットの詳細情報のアイコン。"
},
- "vs/editor/contrib/suggest/browser/suggestWidgetStatus": {
- "ddd": "{0} ({1})"
+ "vs/editor/contrib/suggest/browser/wordContextKey": {
+ "desc": "単語の末尾にある場合に true であるコンテキスト キー。これはタブ入力候補が有効な場合にのみ定義されることに注意してください"
},
"vs/editor/contrib/symbolIcons/browser/symbolIcons": {
"symbolIcon.arrayForeground": "配列記号の前景色。これらの記号は、アウトライン、階層リンク、および候補のウィジェットに表示されます。",
@@ -1349,6 +1916,7 @@
"symbolIcon.variableForeground": "変数記号の前景色。これらの記号は、アウトライン、階層リンク、および候補のウィジェットに表示されます。"
},
"vs/editor/contrib/toggleTabFocusMode/browser/toggleTabFocusMode": {
+ "tabMovesFocusDescriptions": "タブ キーがワークベンチの周囲にフォーカスを移動するか、現在のエディターにタブ文字を挿入するかを決定します。これは、タブ トラップ、タブ ナビゲーション、またはタブ フォーカス モードとも呼ばれます。",
"toggle.tabMovesFocus": "Tab キーを切り替えるとフォーカスが移動します",
"toggle.tabMovesFocus.off": "Tab キーを押すと、タブ文字が挿入されます",
"toggle.tabMovesFocus.on": "Tab キーを押すと、次のフォーカス可能な要素にフォーカスを移動します"
@@ -1356,69 +1924,178 @@
"vs/editor/contrib/tokenization/browser/tokenization": {
"forceRetokenize": "開発者: トークン再作成の強制"
},
+ "vs/editor/contrib/unicodeHighlighter/browser/bannerController": {
+ "closeBanner": "バナーを閉じる"
+ },
"vs/editor/contrib/unicodeHighlighter/browser/unicodeHighlighter": {
"action.unicodeHighlight.disableHighlightingInComments": "コメントの文字の強調表示を無効にする",
"action.unicodeHighlight.disableHighlightingInStrings": "文字列の文字の強調表示を無効にする",
- "action.unicodeHighlight.disableHighlightingOfAmbiguousCharacters": "あいまいな文字の強調表示を無効にする",
- "action.unicodeHighlight.disableHighlightingOfInvisibleCharacters": "非表示の文字の強調表示を無効にする",
- "action.unicodeHighlight.disableHighlightingOfNonBasicAsciiCharacters": "基本以外の ASCII 文字の強調表示を無効にする",
+ "action.unicodeHighlight.disableHighlightingOfAmbiguousCharacters": "まぎらわしい文字の強調表示を無効にする",
+ "action.unicodeHighlight.disableHighlightingOfInvisibleCharacters": "不可視の文字の強調表示を無効にする",
+ "action.unicodeHighlight.disableHighlightingOfNonBasicAsciiCharacters": "基本 ASCII 以外の文字の強調表示を無効にする",
"action.unicodeHighlight.showExcludeOptions": "除外オプションの表示",
"unicodeHighlight.adjustSettings": "設定の調整",
"unicodeHighlight.allowCommonCharactersInLanguage": "言語 \"{0}\" でより一般的な Unicode 文字を許可します。",
"unicodeHighlight.characterIsAmbiguous": "文字 {0}は、ソース コードでより一般的な文字{1}と混同される可能性があります。",
+ "unicodeHighlight.characterIsAmbiguousASCII": "文字 {0} は、ソース コードでより一般的な ASCII 文字 {1} と混同される可能性があります。",
"unicodeHighlight.characterIsInvisible": "文字 {0}は非表示です。",
- "unicodeHighlight.characterIsNonBasicAscii": "文字 {0} は基本的な ASCII 文字ではありません。",
+ "unicodeHighlight.characterIsNonBasicAscii": "文字 {0} は基本 ASCII 文字ではありません。",
"unicodeHighlight.configureUnicodeHighlightOptions": "Unicode の強調表示オプションを構成する",
"unicodeHighlight.disableHighlightingInComments.shortLabel": "コメントの強調表示を無効にする",
"unicodeHighlight.disableHighlightingInStrings.shortLabel": "文字列の強調表示を無効にする",
- "unicodeHighlight.disableHighlightingOfAmbiguousCharacters.shortLabel": "多義性文字の強調表示を無効にする",
- "unicodeHighlight.disableHighlightingOfInvisibleCharacters.shortLabel": "非表示文字の強調表示を無効にする",
+ "unicodeHighlight.disableHighlightingOfAmbiguousCharacters.shortLabel": "まぎらわしい文字の強調表示を無効にする",
+ "unicodeHighlight.disableHighlightingOfInvisibleCharacters.shortLabel": "不可視文字の強調表示を無効にする",
"unicodeHighlight.disableHighlightingOfNonBasicAsciiCharacters.shortLabel": "非 ASCII 文字の強調表示を無効にする",
"unicodeHighlight.excludeCharFromBeingHighlighted": "強調表示から {0} を除外します",
- "unicodeHighlight.excludeInvisibleCharFromBeingHighlighted": "{0} (非表示の文字) を強調表示から除外する",
- "unicodeHighlighting.thisDocumentHasManyAmbiguousUnicodeCharacters": "このドキュメントには多義性を持つ Unicode 文字が多数含まれています",
- "unicodeHighlighting.thisDocumentHasManyInvisibleUnicodeCharacters": "このドキュメントには非表示の Unicode 文字が多数含まれています",
- "unicodeHighlighting.thisDocumentHasManyNonBasicAsciiUnicodeCharacters": "このドキュメントには、数多くの非基本 ASCII Unicode 文字が含まれています",
+ "unicodeHighlight.excludeInvisibleCharFromBeingHighlighted": "{0} (不可視の文字) を強調表示から除外する",
+ "unicodeHighlighting.thisDocumentHasManyAmbiguousUnicodeCharacters": "このドキュメントにはまぎらわしい Unicode 文字が多数含まれています",
+ "unicodeHighlighting.thisDocumentHasManyInvisibleUnicodeCharacters": "このドキュメントには不可視の Unicode 文字が多数含まれています",
+ "unicodeHighlighting.thisDocumentHasManyNonBasicAsciiUnicodeCharacters": "このドキュメントには、基本 ASCII 外の Unicode 文字が多数含まれています",
"warningIcon": "拡張機能のエディターで警告メッセージと共に表示されるアイコン。"
},
"vs/editor/contrib/unusualLineTerminators/browser/unusualLineTerminators": {
"unusualLineTerminators.detail": "このファイル '{0}' には、行区切り文字 (LS) や段落区切り記号 (PS) などの特殊な行の終端文字が 1 つ以上含まれています。\r\n\r\nそれらをファイルから削除することをお勧めします。これは 'editor.unusualLineTerminators' を使用して構成できます。",
- "unusualLineTerminators.fix": "特殊な行の終端記号を削除する",
+ "unusualLineTerminators.fix": "特殊な行の終端記号を削除する(&&R)",
"unusualLineTerminators.ignore": "無視する",
"unusualLineTerminators.message": "普通ではない行終端記号が検出されました",
"unusualLineTerminators.title": "普通ではない行終端記号"
},
- "vs/editor/contrib/wordHighlighter/browser/wordHighlighter": {
+ "vs/editor/contrib/wordHighlighter/browser/highlightDecorations": {
"overviewRulerWordHighlightForeground": "シンボルによって強調表示される概要ルーラーのマーカーの色。マーカーの色は、基になる装飾を隠さないように不透明以外にします。",
"overviewRulerWordHighlightStrongForeground": "書き込みアクセス シンボルを強調表示する概要ルーラーのマーカー色。下にある装飾を隠さないために、色は不透過であってはなりません。",
+ "overviewRulerWordHighlightTextForeground": "記号のテキスト出現の概要ルール マーカーの色。基になる装飾が非表示ならないように、この色を不透明にすることはできません。",
"wordHighlight": "変数の読み取りなど、読み取りアクセス中のシンボルの背景色。下にある装飾を隠さないために、色は不透過であってはなりません。",
- "wordHighlight.next.label": "次のシンボル ハイライトに移動",
- "wordHighlight.previous.label": "前のシンボル ハイライトに移動",
- "wordHighlight.trigger.label": "シンボル ハイライトをトリガー",
"wordHighlightBorder": "変数の読み取りなど読み取りアクセス中のシンボルの境界線の色。",
"wordHighlightStrong": "変数への書き込みなど、書き込みアクセス中のシンボル背景色。下にある装飾を隠さないために、色は不透過であってはなりません。",
- "wordHighlightStrongBorder": "変数への書き込みなど書き込みアクセス中のシンボルの境界線の色。"
+ "wordHighlightStrongBorder": "変数への書き込みなど書き込みアクセス中のシンボルの境界線の色。",
+ "wordHighlightText": "記号のテキスト出現の背景色。基になる装飾が非表示ならないように、この色を不透明にすることはできません。",
+ "wordHighlightTextBorder": "記号のテキスト出現箇所の境界線の色。"
+ },
+ "vs/editor/contrib/wordHighlighter/browser/wordHighlighter": {
+ "wordHighlight.next.label": "次のシンボル ハイライトに移動",
+ "wordHighlight.previous.label": "前のシンボル ハイライトに移動",
+ "wordHighlight.trigger.label": "シンボル ハイライトをトリガー"
},
"vs/editor/contrib/wordOperations/browser/wordOperations": {
"deleteInsideWord": "単語の削除"
},
+ "vs/platform/accessibilitySignal/browser/accessibilitySignalService": {
+ "accessibility.signals.chatEditModifiedFile": "チャットの編集からファイルが変更されました",
+ "accessibility.signals.chatRequestSent": "チャット要求が送信されました",
+ "accessibility.signals.chatUserActionRequired": "チャット ユーザー操作が必要です",
+ "accessibility.signals.clear": "クリア",
+ "accessibility.signals.codeActionRequestTriggered": "コード アクション要求がトリガーされました",
+ "accessibility.signals.editsKept": "保持された編集",
+ "accessibility.signals.editsUndone": "編集が元に戻されました",
+ "accessibility.signals.format": "形式",
+ "accessibility.signals.lineHasBreakpoint": "ブレークポイント",
+ "accessibility.signals.lineHasError": "行のエラー",
+ "accessibility.signals.lineHasFoldedArea": "折りたたみ済み",
+ "accessibility.signals.lineHasWarning": "行の警告",
+ "accessibility.signals.nextEditSuggestion": "次の編集提案",
+ "accessibility.signals.noInlayHints": "インレイ ヒントがありません",
+ "accessibility.signals.notebookCellCompleted": "ノートブック セルが完了しました",
+ "accessibility.signals.notebookCellFailed": "ノートブック セルが失敗しました",
+ "accessibility.signals.onDebugBreak": "ブレークポイント",
+ "accessibility.signals.positionHasError": "エラー",
+ "accessibility.signals.positionHasWarning": "警告",
+ "accessibility.signals.progress": "進行状況",
+ "accessibility.signals.save": "保存",
+ "accessibility.signals.taskCompleted": "タスクが完了しました",
+ "accessibility.signals.taskFailed": "タスクが失敗しました",
+ "accessibility.signals.terminalBell": "ターミナル ベル",
+ "accessibility.signals.terminalCommandFailed": "コマンドに失敗しました",
+ "accessibility.signals.terminalCommandSucceeded": "コマンドが成功しました",
+ "accessibility.signals.terminalQuickFix": "クイック修正",
+ "accessibilitySignals.chatEditModifiedFile": "変更されたファイルのチャット編集",
+ "accessibilitySignals.chatRequestSent": "チャット要求が送信されました",
+ "accessibilitySignals.chatResponseReceived": "チャット応答を受信しました",
+ "accessibilitySignals.chatUserActionRequired": "チャット ユーザー操作が必要です",
+ "accessibilitySignals.clear": "クリア",
+ "accessibilitySignals.codeActionApplied": "コード アクションが適用されました",
+ "accessibilitySignals.codeActionRequestTriggered": "コード アクション要求がトリガーされました",
+ "accessibilitySignals.diffLineDeleted": "差分行が削除されました",
+ "accessibilitySignals.diffLineInserted": "差分行が挿入されました",
+ "accessibilitySignals.diffLineModified": "変更された差分行",
+ "accessibilitySignals.editsKept": "保持された編集",
+ "accessibilitySignals.editsUndone": "編集を元に戻す",
+ "accessibilitySignals.format": "形式",
+ "accessibilitySignals.lineHasBreakpoint.name": "行のブレークポイント",
+ "accessibilitySignals.lineHasError.name": "行のエラー",
+ "accessibilitySignals.lineHasFoldedArea.name": "行の折りたたまれた面",
+ "accessibilitySignals.lineHasInlineSuggestion.name": "行のインライン候補",
+ "accessibilitySignals.lineHasWarning.name": "行の警告",
+ "accessibilitySignals.nextEditSuggestion.name": "次の編集提案行",
+ "accessibilitySignals.noInlayHints": "行にインレイ ヒントがありません",
+ "accessibilitySignals.notebookCellCompleted": "ノートブック セルが完了しました",
+ "accessibilitySignals.notebookCellFailed": "ノートブック セルが失敗しました",
+ "accessibilitySignals.onDebugBreak.name": "ブレークポイントでデバッガーが停止しました",
+ "accessibilitySignals.positionHasError.name": "位置でのエラー",
+ "accessibilitySignals.positionHasWarning.name": "位置での警告",
+ "accessibilitySignals.progress": "進行状況",
+ "accessibilitySignals.save": "保存",
+ "accessibilitySignals.taskCompleted": "タスクが完了しました",
+ "accessibilitySignals.taskFailed": "タスクが失敗しました",
+ "accessibilitySignals.terminalBell": "ターミナル ベル",
+ "accessibilitySignals.terminalCommandFailed": "ターミナル コマンドが失敗しました",
+ "accessibilitySignals.terminalCommandSucceeded": "ターミナル コマンドに成功しました",
+ "accessibilitySignals.terminalQuickFix.name": "ターミナル クイック修正",
+ "accessibilitySignals.voiceRecordingStarted": "音声録音が開始されました",
+ "accessibilitySignals.voiceRecordingStopped": "音声録音が停止されました"
+ },
+ "vs/platform/action/common/actionCommonCategories": {
+ "developer": "開発者",
+ "file": "ファイル",
+ "help": "ヘルプ",
+ "preferences": "基本設定",
+ "test": "テスト",
+ "view": "表示"
+ },
+ "vs/platform/actions/browser/buttonbar": {
+ "labelWithKeybinding": "{0} ({1})",
+ "moreActions": "その他の操作"
+ },
+ "vs/platform/actions/browser/dropdownActionViewItemWithKeybinding": {
+ "titleAndKb": "{0} ({1})"
+ },
"vs/platform/actions/browser/menuEntryActionViewItem": {
+ "content": "{0} ({1})",
+ "content2": "{1} から {0}",
"titleAndKb": "{0} ({1})",
"titleAndKbAndAlt": "{0}\r\n[{1}] {2}"
},
+ "vs/platform/actions/browser/toolbar": {
+ "hide": "非表示",
+ "resetThisMenu": "メニューのリセット"
+ },
"vs/platform/actions/common/menuResetAction": {
- "cat": "表示",
- "title": "非表示メニューのリセット"
+ "title": "すべてリセット メニュー"
},
"vs/platform/actions/common/menuService": {
+ "configure keybinding": "キーバインドの構成",
"hide.label": "'{0}' の非表示"
},
+ "vs/platform/actionWidget/browser/actionList": {
+ "customQuickFixWidget": "アクション ウィジェット",
+ "customQuickFixWidget.labels": "{0}、無効になった理由: {1}",
+ "label": "{0} を押して適用",
+ "label-preview": "{0} で適用する、{1} でプレビューする"
+ },
+ "vs/platform/actionWidget/browser/actionWidget": {
+ "acceptSelected.title": "選択した操作を承諾",
+ "actionBar.toggledBackground": "アクション バーの切り替え済みアクション項目の背景色。",
+ "codeActionMenuVisible": "アクション ウィジェットの一覧が表示されるかどうか",
+ "hideCodeActionWidget.title": "アクション ウィジェットを非表示にする",
+ "previewSelected.title": "選択したアクションのプレビュー",
+ "selectNextCodeAction.title": "次のアクションを選択",
+ "selectPrevCodeAction.title": "前のアクションを選択"
+ },
"vs/platform/configuration/common/configurationRegistry": {
"config.policy.duplicate": "'{0}' を登録できません。関連付けられたポリシー {1} は既に {2} に登録されています。",
"config.property.duplicate": "'{0}' を登録できません。このプロパティは既に登録されています。",
"config.property.empty": "空のプロパティは登録できません",
"config.property.languageDefault": "'{0}' を登録できません。これは、言語固有のエディター設定を記述するプロパティ パターン '\\\\[.*\\\\]$' に一致しています。'configurationDefaults' コントリビューションを使用してください。",
- "defaultLanguageConfiguration.description": "{0} 言語が優先される設定を構成します。",
+ "defaultLanguageConfiguration.description": "{0} の場合にオーバーライドされる設定を構成します。",
"defaultLanguageConfigurationOverrides.title": "既定の言語構成のオーバーライド",
"overrideSettings.defaultDescription": "言語に対して上書きされるエディター設定を構成します。",
"overrideSettings.errorMessage": "この設定では、言語ごとの構成はサポートされていません。"
@@ -1426,38 +2103,77 @@
"vs/platform/contextkey/browser/contextKeyService": {
"getContextKeyInfo": "コンテキスト キーに関する情報を返すコマンド"
},
+ "vs/platform/contextkey/common/contextkey": {
+ "contextkey.parser.error.closingParenthesis": "終わりかっこ ')'",
+ "contextkey.parser.error.emptyString": "空のコンテキスト キー式",
+ "contextkey.parser.error.emptyString.hint": "式を書き忘れましたか? 'false' または 'true' を指定すると、それぞれ常に false または true と評価できます。",
+ "contextkey.parser.error.expectedButGot": "期待値: {0}\r\n受取済み: '{1}'。",
+ "contextkey.parser.error.noInAfterNot": "'not' の後に 'in' があります。",
+ "contextkey.parser.error.unexpectedEOF": "予期しない式の終わり",
+ "contextkey.parser.error.unexpectedEOF.hint": "コンテキスト キーを指定し忘れましたか?",
+ "contextkey.parser.error.unexpectedToken": "予期しないトークン",
+ "contextkey.parser.error.unexpectedToken.hint": "トークンの前に && または || を指定し忘れましたか?",
+ "contextkey.scanner.errorForLinter": "予期しないトークンです。",
+ "contextkey.scanner.errorForLinterWithHint": "予期しないトークン。ヒント: {0}"
+ },
"vs/platform/contextkey/common/contextkeys": {
"inputFocus": "キーボードのフォーカスが入力ボックス内にあるかどうか",
"isIOS": "オペレーティング システムが iOS であるかどうか",
"isLinux": "オペレーティング システムが Linux であるかどうか",
"isMac": "オペレーティング システムが macOS であるかどうか",
"isMacNative": "オペレーティング システムが非ブラウザー プラットフォーム上の macOS であるかどうか",
+ "isMobile": "プラットフォームがモバイル Web ブラウザーであるかどうか",
"isWeb": "プラットフォームが Web ブラウザーであるかどうか",
"isWindows": "オペレーティング システムが Windows であるかどうか",
"productQualityType": "VS Code の品質の種類"
},
+ "vs/platform/contextkey/common/scanner": {
+ "contextkey.scanner.hint.didYouForgetToEscapeSlash": "'/' (スラッシュ) 文字をエスケープし忘れましたか? エスケープする前に '\\\\/' などの 2 つの円記号を指定してください。",
+ "contextkey.scanner.hint.didYouForgetToOpenOrCloseQuote": "見積もりを開いたり閉じたりし忘れましたか?",
+ "contextkey.scanner.hint.didYouMean1": "{0} を意図していましたか?",
+ "contextkey.scanner.hint.didYouMean2": "{0} または {1} を意図していましたか?",
+ "contextkey.scanner.hint.didYouMean3": "{0}、{1}、または {2} を意図していましたか?"
+ },
+ "vs/platform/dialogs/browser/dialog": {
+ "aboutDetail": "バージョン: {0}\r\nコミット: {1}\r\n日付: {2}\r\nブラウザー: {3}"
+ },
"vs/platform/dialogs/common/dialogs": {
+ "cancelButton": "キャンセル",
"moreFile": "...1 つの追加ファイルが表示されていません",
- "moreFiles": "...{0} 個の追加ファイルが表示されていません"
+ "moreFiles": "...{0} 個の追加ファイルが表示されていません",
+ "okButton": "OK(&&O)",
+ "yesButton": "はい(&&Y)"
+ },
+ "vs/platform/dialogs/electron-browser/dialog": {
+ "aboutDetail": "バージョン: {0}\r\nコミット: {1}\r\n日付: {2}\r\nElectron: {3}\r\nElectronBuildId: {4}\r\nChromium: {5}\r\nNode.js: {6}\r\nV8: {7}\r\nOS: {8}"
},
"vs/platform/dialogs/electron-main/dialogMainService": {
"open": "開く",
"openFile": "ファイルを開く",
"openFolder": "フォルダーを開く",
"openWorkspace": "開く(&&O)",
- "openWorkspaceTitle": "ファイルでワークスペースを開く"
+ "openWorkspaceTitle": "ファイルでワークスペースを開く",
+ "selectFolder": "フォルダーの選択(&S)"
},
"vs/platform/dnd/browser/dnd": {
"fileTooLarge": "ファイルが大きすぎて無題のエディターとして開けません。まずファイル エクスプローラーにアップロードしてから、もう一度お試しください。"
},
"vs/platform/environment/node/argv": {
"add": "最後にアクティブだったウィンドウにフォルダーを追加します。",
+ "addFile": "ファイルをコンテキストとしてチャット セッションに追加します。",
+ "addMcp": "ユーザー プロファイルにモデル コンテキスト プロトコル サーバー定義を追加します。'{\"name\":\"server-name\",\"command\":...}' の形式で JSON 入力を受け入れます",
"category": "--list-extensions を使用する場合、インストールされている拡張機能を指定されたカテゴリでフィルター処理します。",
+ "chatMaximize": "チャット セッション ビューを最大化します。",
+ "chatMode": "チャット セッションに使用するモードです。使用可能なオプション: 'ask'、'edit'、'agent'、またはカスタム モードの識別子。既定値は 'agent' です。",
+ "cliDataDir": "CLI メタデータを格納するディレクトリ。",
+ "cliPrompt": "プロンプト",
"deprecated.useInstead": "代わりに {0} を使用してください。",
"diff": "2 つのファイルを比較します。",
- "disableExtension": "拡張機能を無効にします。",
- "disableExtensions": "インストールされたすべての拡張機能を無効にします。",
+ "disableChromiumSandbox": "このオプションは、Linux 上でアプリケーションを sudo ユーザーとして起動する必要がある場合、または Windows 上の AppLocker 環境で管理者特権のあるユーザーとして実行している場合にのみ使用します。",
+ "disableExtension": "指定された拡張機能を無効にします。このオプションは保存されず、コマンドが新しいウィンドウを開いた場合にのみ有効です。",
+ "disableExtensions": "インストールされた拡張機能をすべて無効にします。このオプションは保存されず、コマンドが新しいウィンドウを開いた場合にのみ有効です。",
"disableGPU": "GPU ハードウェア アクセラレータを無効にします。",
+ "disableLCDText": "LCD フォントレンダリングを無効にします。",
"experimentalApis": "拡張機能の Proposed API 機能を有効にします。個々に有効にする 1 つ以上の拡張機能 ID を指定できます。",
"extensionHomePath": "拡張機能のルート パスを設定します。",
"extensionsManagement": "拡張機能の管理",
@@ -1469,25 +2185,33 @@
"installExtension": "拡張機能をインストールまたは更新します。引数は拡張機能 ID または VSIX へのパスのいずれかです。拡張機能の識別子は '${publisher}.${name}' です。'--force' 引数を使用すると、最新バージョンに更新されます。特定のバージョンをインストールするには、'@${version}' を指定します。例: 'vscode.csharp@1.2.3'。",
"listExtensions": "インストールされている拡張機能を一覧表示します。",
"locale": "使用する国と地域 (例:en-US や zh-TW など)。",
- "log": "使用するログレベル。既定値は 'info' です。利用可能な値は 'critical', 'error', 'warn', 'info', 'debug', 'trace', 'off' です。",
- "maxMemory": "ウィンドウの最大メモリ サイズ (バイト単位)。",
+ "locateShellIntegrationPath": "ターミナル シェル統合スクリプトへのパスを出力します。使用できる値は、'bash'、'pwsh'、'zsh'、または 'fish' です。",
+ "log": "使用するログ レベル。既定値は 'info' です。指定できる値は、'critical'、'error'、'warn'、'info'、'debug'、'trace'、'off' です。拡張機能のログ レベルを構成するには、拡張機能 ID とログ レベルを次の形式で渡します: '${publisher}.${name}:${logLevel}'。例: 'vscode.csharp:trace'。このようなエントリを 1 つ以上受け取ることができます。",
+ "mcp": "モデル コンテキスト プロトコル",
"merge": "ファイルの 2 つの変更されたバージョン、両方の変更されたバージョンに共通する元のファイル、、およびマージ結果を保存するための出力ファイルのパスを指定して、3 方向マージを実行します。",
"newWindow": "強制的に新しいウィンドウを開きます。",
+ "newWindowForChat": "チャット セッション用に空のウィンドウを強制的に開きます。",
"options": "オプション",
"optionsUpperCase": "オプション",
"paths": "パス",
"prof-startup": "起動時に CPU Profiler を実行します。",
+ "profileName": "指定されたフォルダーまたはワークスペースを指定されたプロファイルで開き、プロファイルをワークスペースに関連付けます。プロファイルが存在しない場合は、新しい空のプロファイルが作成されます。",
+ "prompt": "チャットとして使用するプロンプトです。",
+ "remove": "最後のアクティブ ウィンドウからフォルダーを削除します。",
"reuseWindow": "強制的に既に開いているウィンドウ内でファイルかフォルダーを開きます。",
+ "reuseWindowForChat": "チャット セッションで最後にアクティブだったウィンドウを強制的に使用します。",
"showVersions": "--list-extensions を使用する場合、インストールされている拡張機能のバージョンを表示します。",
"status": "プロセスの使用状況や診断情報を印刷します。",
- "stdinUnix": "stdin から読み取るには、'-' を付け足してください (例: 'ps aux | grep code | {0} -')",
- "stdinWindows": "別のプログラムから出力を読み取るには、'-' を付け足してください (例: 'echo Hello World | {0} -')",
+ "stdinUsage": "stdin から読み取るには、'-' を追加します (例: '{0}')",
+ "subcommands": "サブコマンド",
"telemetry": "VS Code が収集するすべてのテレメトリ イベントを表示します。",
+ "transient": "一時データおよび拡張機能のディレクトリを使用し、初回起動時のように実行します。",
"troubleshooting": "トラブルシューティング",
"turn sync": "同期をオンまたはオフにします。",
"uninstallExtension": "拡張機能をアンインストールします。",
"unknownCommit": "不明なコミット",
"unknownVersion": "不明なバージョン",
+ "updateExtensions": "インストールされている拡張機能を更新します。",
"usage": "使用法",
"userDataDir": "ユーザー データが保持されるディレクトリを指定します。複数の異なる Code のインスタンスを開くために使用できます。",
"verbose": "詳細出力を表示します (--wait を含みます)。",
@@ -1499,33 +2223,62 @@
"emptyValue": "オプション '{0}'には空でない値が必要です。オプションを無視します。",
"gotoValidation": "`--goto` モードの引数は `FILE(:LINE(:CHARACTER))` の形式にする必要があります。",
"multipleValues": "オプション '{0}' は複数回定義されています。値 '{1}' の使用。",
- "unknownOption": "警告: '{0}' は既知のオプションのリストにはありませんが、引き続き Electron または Chromium に渡されます。"
+ "unknownOption": "警告: '{0}' は既知のオプションのリストにはありませんが、引き続き Electron または Chromium に渡されます。",
+ "unknownSubCommandOption": "警告: '{0}' はサブコマンド '{1}' の既知のオプションの一覧にありません"
},
"vs/platform/extensionManagement/common/abstractExtensionManagementService": {
"MarketPlaceDisabled": "Marketplace が有効になっていません",
- "Not a Marketplace extension": "Marketplace の拡張機能のみ再インストールできます",
"incompatible platform": "'{0}' 拡張機能は {2} の {1} では使用できません。",
+ "incompatibleAPI": "'{0}' 拡張機能をインストールできません。{1}",
+ "learn why": "理由をご確認ください",
"malicious extension": "問題が報告されたので、'{0}' 拡張機能をインストールできません。",
"multipleDependentsError": "'{0}' 拡張機能をアンインストールできません。'{1}'、'{2}' および他の拡張機能がこれに依存しています。",
"multipleIndirectDependentsError": "'{0}' 拡張機能をアンインストールできません。これには '{1}' 拡張機能のアンインストールが含まれていますが、'{2}'、'{3}' および他の拡張機能がこれに依存しています。",
+ "not allowed to install": "この拡張機能はインストールできません。{0}",
"notFoundCompatibleDependency": "{1} の現在のバージョン (バージョン {2}) と互換性がないため、\"{0}\" 拡張機能はインストールできません。",
- "notFoundCompatiblePrereleaseDependency": "{1} の現在のバージョン (バージョン {2}) と互換性がないため、\"{0}\" 拡張機能のプレリリースバージョンはインストールできません。",
+ "notFoundDeprecatedReplacementExtension": "'{0}'拡張機能は非推奨であり、置換拡張機能'{1}'が見つからないため、インストールできません。",
"notFoundReleaseExtension": "'{0}' 拡張機能のリリース バージョンがないため、リリース バージョンをインストールできません。",
"singleDependentError": "'{0}' 拡張機能をアンインストールできません。'{1}' 拡張機能がこれに依存しています。",
"singleIndirectDependentError": "'{0}' 拡張機能をアンインストールできません。これには '{1}' 拡張機能のアンインストールが含まれていますが、'{2}' 拡張機能がこれに依存しています。",
"twoDependentsError": "'{0}' 拡張機能をアンインストールできません。'{1}' と '{2}' の拡張機能がこれに依存しています。",
"twoIndirectDependentsError": "'{0}' 拡張機能をアンインストールできません。これには '{1}' 拡張機能のアンインストールが含まれていますが、'{2}' と '{3}' の拡張機能がこれに依存しています。"
},
+ "vs/platform/extensionManagement/common/allowedExtensionsService": {
+ "extension prerelease not allowed": "この拡張機能のプレリリース バージョンが [許可リスト]({0}) にありません",
+ "prerelease versions from this publisher not allowed": "この発行元のプレリリース バージョンが [許可リスト]({1}) に含まれていません",
+ "publisher not allowed": "この発行元の拡張機能が [許可リスト]({1}) に含まれていません",
+ "specific extension not allowed": "[許可リスト]({0}) にありません",
+ "specific version of extension not allowed": "この拡張機能のバージョン {0} が [許可リスト]({1}) にありません"
+ },
"vs/platform/extensionManagement/common/extensionManagement": {
+ "extension.publisher.allow.description": "公開元からのすべての拡張機能を許可または不許可にします。",
"extensions": "拡張機能",
+ "extensions.allow.all.description": "すべての拡張機能を許可または不許可にします。",
+ "extensions.allow.all.disable": "すべての拡張機能を不許可にします。",
+ "extensions.allow.all.enable": "すべての拡張機能を許可します。",
+ "extensions.allow.description": "拡張機能を許可または不許可にします。",
+ "extensions.allow.version.description": "特定のバージョンの拡張機能を許可または不許可にします。プラットフォーム固有のバージョンを特定するには、形式 `platform@1.2.3`, e.g. `win32-x64@1.2.3` を使用します。サポートされているプラットフォームは、`win32-x64`、`win32-arm64`、`linux-x64`、`linux-arm64`、`linux-armhf`、`alpine-x64`、`alpine-arm64`、`darwin-x64`、`darwin-arm64` です",
+ "extensions.allowed": "使用が許可される拡張機能のリストを指定します。これにより、承認されていない拡張機能の使用が制限され、安全で一貫性のある開発環境が維持されます。この設定の構成方法の詳細については、[許可された拡張機能の構成](https://code.visualstudio.com/docs/setup/enterprise#_configure-allowed-extensions) セクションを参照してください。",
+ "extensions.allowed.all": "すべての拡張機能が許可されていません。",
+ "extensions.allowed.disable.desc": "拡張機能は許可されていません。",
+ "extensions.allowed.disable.stable.desc": "拡張機能の安定したバージョンのみを許可します。",
+ "extensions.allowed.enable.desc": "拡張機能が許可されています。",
+ "extensions.allowed.none": "拡張機能は許可されていません。",
+ "extensions.allowed.policy": "使用が許可される拡張機能のリストを指定します。これにより、承認されていない拡張機能の使用が制限され、安全で一貫性のある開発環境が維持されます。詳細情報: https://code.visualstudio.com/docs/setup/enterprise#_configure-allowed-extensions",
+ "extensions.publisher.allowed.disable.desc": "発行元からのすべての拡張機能が許可されていません。",
+ "extensions.publisher.allowed.disable.stable.desc": "発行元からの安定したバージョンの拡張機能のみを許可します。",
+ "extensions.publisher.allowed.enable.desc": "発行元からのすべての拡張機能が許可されています。",
+ "extensionsConfigurationTitle": "拡張機能",
"preferences": "基本設定"
},
- "vs/platform/extensionManagement/common/extensionManagementCLIService": {
+ "vs/platform/extensionManagement/common/extensionManagementCLI": {
"alreadyInstalled": "拡張機能 '{0}' は既にインストールされています。",
"alreadyInstalled-checkAndUpdate": "拡張機能 '{0}' v{1} は既にインストールされています。'--force' オプションを使用して最新バージョンに更新するか、'@' を指定して特定のバージョンをインストールしてください。例: '{2}@1.2.3'。",
"builtin": "拡張機能 '{0}' は組み込みの拡張機能であるため、アンインストールできません",
- "cancelInstall": "拡張機能 '{0}' のインストールをキャンセルしました。",
"cancelVsixInstall": "拡張機能 '{0}' のインストールをキャンセルしました。",
+ "error while installing extensions": "拡張機能のインストール中にエラーが発生しました: {0}",
+ "errorInstallingExtension": "拡張機能 {0} のインストール中にエラーが発生しました: {1}",
+ "errorUpdatingExtension": "拡張機能 {0} の更新中にエラーが発生しました: {1}",
"forceDowngrade": "拡張機能 '{0}' v{1} の新しいバージョンが既にインストールされています。古いバージョンにダウングレードするには、'--force' オプションを使用します。",
"forceUninstall": "拡張機能 '{0}' は、ユーザーによって組み込みの拡張機能として設定されています。アンインストールする場合は、'--force' オプションを使用してください。",
"installation failed": "拡張機能のインストールに失敗しました: {0}",
@@ -1542,49 +2295,51 @@
"successInstall": "拡張機能 '{0}' v{1} は正常にインストールされました。",
"successUninstall": "拡張機能 '{0}' が正常にアンインストールされました!",
"successUninstallFromLocation": "拡張機能 '{0}' が {1} から正常にアンインストールされました。",
+ "successUpdate": "拡張機能 '{0}' v{1} は正常に更新されました。",
"successVsixInstall": "拡張機能 '{0}' が正常にインストールされました。",
"uninstalling": "{0} をアンインストールしています...",
+ "updateExtensionsNewVersionsAvailable": "拡張機能の更新中: {0}",
+ "updateExtensionsNoExtensions": "更新する拡張機能がありません",
+ "updateExtensionsQuery": "{0} 拡張機能の最新バージョンをフェッチしています",
"updateMessage": "拡張機能 '{0}' をバージョン {1} に更新しています",
"useId": "パブリッシャーを含む完全な拡張機能 ID (例: {0}) を使用していることをご確認ください。"
},
+ "vs/platform/extensionManagement/common/extensionNls": {
+ "missingNLSKey": "キー {0} のメッセージが見つかりませんでした。"
+ },
"vs/platform/extensionManagement/common/extensionsScannerService": {
"fileReadFail": "ファイル {0} を読み取れません: {1}。",
"jsonInvalidFormat": "無効な形式 {0}: JSON オブジェクトが必要です。",
"jsonParseFail": "{0}: [{1}, {2}] {3}の解析に失敗しました。",
"jsonParseInvalidType": "無効なマニフェスト ファイル {0}: JSON オブジェクトではありません。",
- "jsonsParseReportErrors": "{0} を解析できません: {1}。",
- "missingNLSKey": "キー {0} のメッセージが見つかりませんでした。"
- },
- "vs/platform/extensionManagement/electron-sandbox/extensionTipsService": {
- "exeRecommended": "お使いのシステムに {0} がインストールされています。これにお勧めの拡張機能をインストールしますか?"
+ "jsonsParseReportErrors": "{0} を解析できません: {1}。"
},
"vs/platform/extensionManagement/node/extensionManagementService": {
"cannot read": "{0} から拡張機能を読み取ることができません",
"errorDeleting": "拡張機能 '{1}' のインストール中に既存のフォルダー '{0}' を削除できません。フォルダーを手動で削除してもう一度お試しください",
- "exitCode": "拡張機能をインストールできません。再インストールの前に VS Code の終了と起動を実施してください。",
"incompatible": "拡張機能 '{0}' は、VS Code '{1}' と互換性がないため、インストールできません。",
- "notInstalled": "拡張機能 '{0}' がインストールされていません。",
- "quitCode": "拡張機能をインストールできません。再インストールの前に VS Code の終了と起動を実施してください。",
- "removeError": "拡張機能の削除中にエラーが発生しました: {0}。もう一度やり直す前に、VS Code の終了と起動を実施してください。",
- "renameError": "{0} から {1} に名前変更中に不明なエラーが発生しました",
- "restartCode": "{0} を再インストールする前に、VS Code を再起動してください。"
+ "invalidManifest": "マニフェストが Marketplace と一致しないため、'{0}' 拡張機能をインストールできません",
+ "notAllowed": "この拡張機能はインストールできません。{0}",
+ "restartCode": "{0} を再インストールする前に、VS Code を再起動してください。",
+ "signature verification failed": "署名の検証が '{0}' エラーで失敗しました。",
+ "signature verification not executed": "署名の検証は実行されませんでした。"
},
"vs/platform/extensionManagement/node/extensionManagementUtil": {
"invalidManifest": "VSIX が無効です: package.json は JSON ファイルではありません。"
},
"vs/platform/extensions/common/extensionValidator": {
+ "apiProposalMismatch1": "この拡張機能は、現在のバージョンの VS Code と互換性のない API 提案 '{0}' を使用しています。",
+ "apiProposalMismatch2": "この拡張機能は、現在のバージョンの VS Code と互換性のない API 提案 {0} および '{1}' を使用しています。",
"extensionDescription.activationEvents1": "プロパティ `{0}` は省略するか、型 `string[]` にする必要があります",
- "extensionDescription.activationEvents2": "プロパティ `{0}` と `{1}` は、両方とも指定するか両方とも省略しなければなりません",
+ "extensionDescription.activationEvents2": "プロパティ '{0}' は、拡張機能に '{1}' または '{2}' プロパティがない場合は省略する必要があります。",
"extensionDescription.browser1": "プロパティ `{0}` は省略するか、`string` 型にする必要があります",
"extensionDescription.browser2": "拡張機能のフォルダー ({1}) 内に `browser` ({0}) が含まれることが想定されていました。これにより拡張機能が移植不能になることがあります。",
- "extensionDescription.browser3": "プロパティ `{0}` と `{1}` は、両方とも指定するか両方とも省略しなければなりません",
"extensionDescription.engines": "`{0}` プロパティは必須で、`string` 型でなければなりません",
"extensionDescription.engines.vscode": "プロパティ `{0}` は必須で、`string` 型でなければなりません",
"extensionDescription.extensionDependencies": "プロパティ `{0}` は省略するか、型 `string[]` にする必要があります",
"extensionDescription.extensionKind": "プロパティ `{0}` は、プロパティ `main` も定義されている場合にのみ定義できます。",
"extensionDescription.main1": "プロパティ '{0}' は省略可能であるか、'string' 型である必要があります",
"extensionDescription.main2": "拡張機能のフォルダー ({1}) の中に `main` ({0}) が含まれることが予期されます。これにより拡張機能を移植できなくなる可能性があります。",
- "extensionDescription.main3": "プロパティ `{0}` と `{1}` は、両方とも指定するか両方とも省略しなければなりません",
"extensionDescription.name": "プロパティ `{0}` は必須で、`string` 型でなければなりません",
"extensionDescription.publisher": "publisher プロパティは `string` 型でなければなりません。",
"extensionDescription.version": "プロパティ `{0}` は必須で、`string` 型でなければなりません",
@@ -1606,9 +2361,27 @@
"fileSystemNotAllowedError": "十分なアクセス許可がありません。再試行して、操作を許可してください。",
"fileSystemRenameError": "リネームはファイルのみサポートされています。"
},
+ "vs/platform/files/browser/indexedDBFileSystemProvider": {
+ "dirIsNotEmpty": "ディレクトリが空ではありません。",
+ "fileExceedsStorageQuota": "ファイルが使用可能なストレージ クォータを超えています",
+ "fileIsDirectory": "ファイルはディレクトリです",
+ "fileNotDirectory": "ファイルはディレクトリではありません",
+ "fileNotExists": "ファイルが存在しません",
+ "internal": "IndexedDB ファイル システム プロバイダーで内部エラーが発生しました。({0})"
+ },
+ "vs/platform/files/common/files": {
+ "sizeB": "{0}B",
+ "sizeGB": "{0}GB",
+ "sizeKB": "{0}KB",
+ "sizeMB": "{0}MB",
+ "sizeTB": "{0}TB",
+ "unknownError": "不明なエラー"
+ },
"vs/platform/files/common/fileService": {
+ "deleteFailedAtomicUnsupported": "プロバイダーがサポートしていないため、ファイル '{0}' をアトミックに削除できません。",
"deleteFailedNonEmptyFolder": "空でないフォルダー '{0}' を削除できません。",
"deleteFailedNotFound": "存在しないファイル '{0}' を削除できません",
+ "deleteFailedTrashAndAtomicUnsupported": "ごみ箱の使用が有効になっているため、ファイル '{0}' をアトミックに削除できません。",
"deleteFailedTrashUnsupported": "プロバイダーがサポートしていないため、ゴミ箱経由でファイル '{0}' を削除できません。",
"err.read": "ファイル '{0}' を読み取れません ({1})",
"err.readonly": "読み取り専用ファイル '{0}' を変更できません",
@@ -1622,53 +2395,50 @@
"fileTooLargeError": "ファイル '{0}' は、大きすぎて開くことができないため、読み取れません",
"invalidPath": "相対ファイル パス '{0}' の filesystem プロバイダーを解決できません",
"mkdirExistsError": "フォルダー '{0}' は、既に存在していますがディレクトリではないため、作成できません。",
- "noProviderFound": "リソース '{0}' のファイル システム プロバイダーが見つかりません",
+ "noProviderFound": "ENOPRO: リソース '{0}' のファイル システム プロバイダーが見つかりません",
"unableToMoveCopyError1": "ソース '{0}' が、大文字と小文字を区別しないファイルシステム上の異なるパスのターゲット '{1}' と同じである場合にはコピーできません。",
"unableToMoveCopyError2": "ソース '{0}' がターゲット '{1}' の親である場合、移動およびコピーはできません。",
"unableToMoveCopyError3": "ターゲット '{1}' が移動先に既に存在するため、'{0}' を移動またはコピーできません。",
"unableToMoveCopyError4": "特定のファイルがそのファイルを含むフォルダーを置き換えるため、'{0}' を '{1}' に移動またはコピーすることができません。",
+ "writeFailedAtomicUnlock": "アトミック書き込みが有効になっているため、ファイル '{0}' のロックを解除できません。",
+ "writeFailedAtomicUnsupported1": "プロバイダーがサポートしていないため、ファイル '{0}' をアトミックに書き込むことができません。",
+ "writeFailedAtomicUnsupported2": "プロバイダーがバッファーされていない書き込みサポートしていないため、ファイル '{0}' をアトミックに書き込むことができません。",
"writeFailedUnlockUnsupported": "プロバイダーがサポートしていないため、ファイル '{0}' のロックを解除できません。"
},
- "vs/platform/files/common/files": {
- "sizeB": "{0}B",
- "sizeGB": "{0}GB",
- "sizeKB": "{0}KB",
- "sizeMB": "{0}MB",
- "sizeTB": "{0}TB",
- "unknownError": "不明なエラー"
- },
"vs/platform/files/common/io": {
- "fileTooLargeError": "ファイルが大きすぎて開くことができません",
- "fileTooLargeForHeapError": "このサイズのファイルを開くためには、再起動してより多くのメモリを使用させる必要があります。"
+ "fileTooLargeError": "ファイルが大きすぎて開くことができません"
},
"vs/platform/files/electron-main/diskFileSystemProviderServer": {
- "binFailed": "'{0}' をごみ箱に移動できませんでした",
- "trashFailed": "'{0}' をごみ箱に移動できませんでした"
+ "binFailed": "'{0}' をごみ箱に移動できませんでした ({1})",
+ "trashFailed": "'{0}' をごみ箱に移動できませんでした ({1})"
},
"vs/platform/files/node/diskFileSystemProvider": {
"copyError": "'{0}' を '{1}' にコピーできません ({2})。",
- "fileCopyErrorExists": "ファイルは対象の場所に既に存在します",
- "fileCopyErrorPathCase": "'ファイルは、同じパスであるものの、大文字と小文字が異なるパスにコピーできません",
+ "fileCopyErrorPathCase": "ファイルは、大文字と小文字が異なる同じパスにコピーできません",
"fileExists": "ファイルが既に存在します",
+ "fileMoveCopyErrorExists": "ターゲットのファイルは既に存在するため、上書きが指定されていない限り移動またはコピーされません",
+ "fileMoveCopyErrorNotFound": "移動/コピーするファイルが存在しません",
"fileNotExists": "ファイルが存在しません",
"moveError": "'{0}' を '{1}' に移動することができません ({2})。"
},
"vs/platform/history/browser/contextScopedHistoryWidget": {
"suggestWidgetVisible": "候補を表示するかどうか"
},
- "vs/platform/issue/electron-main/issueMainService": {
- "cancel": "キャンセル(&&C)",
- "confirmCloseIssueReporter": "入力した内容は保存されません。このウィンドウを閉じますか?",
- "issueReporter": "問題のレポーター",
- "issueReporterWriteToClipboard": "データが多すぎて、GitHub に直接送信することができませんでした。データはクリップボードにコピーされます。開かれる GitHub 問題ページに貼り付けてください。",
- "local": "LOCAL",
- "ok": "OK(&&O)",
- "processExplorer": "プロセス エクスプローラー",
- "yes": "はい(&&Y)"
+ "vs/platform/hover/browser/hoverWidget": {
+ "hoverhint": "{0} キーを押しながらマウス ポインターを合わせます"
+ },
+ "vs/platform/hover/browser/updatableHoverWidget": {
+ "iconLabel.loading": "読み込んでいます..."
},
"vs/platform/keybinding/common/abstractKeybindingService": {
"first.chord": "({0}) が渡されました。2 番目のキーを待っています...",
- "missing.chord": "キーの組み合わせ ({0}、{1}) はコマンドではありません。"
+ "missing.chord": "キーの組み合わせ ({0}、{1}) はコマンドではありません。",
+ "next.chord": "({0}) が渡されました。次のキーを待っています..."
+ },
+ "vs/platform/keyboardLayout/common/keyboardConfig": {
+ "dispatch": "`code` (推奨) または `keyCode` のいずれかを使用するキー操作のディスパッチ ロジックを制御します。",
+ "keyboardConfigurationTitle": "キーボード",
+ "mapAltGrToCtrlAlt": "AltGraph+ 修飾子を Ctrl+Alt+ として扱うかどうかを制御します。"
},
"vs/platform/languagePacks/common/languagePacks": {
"currentDisplayLanguage": " (現在)"
@@ -1681,6 +2451,9 @@
"vs/platform/list/browser/listService": {
"Fast Scroll Sensitivity": "`Alt` を押すと、スクロール速度が倍増します。",
"Mouse Wheel Scroll Sensitivity": "マウス ホイール スクロール イベントの `deltaX` と `deltaY` で使用される乗数。",
+ "defaultFindMatchTypeSettingKey": "ワークベンチでリストとツリーを検索するときに使用される一致の種類を制御します。",
+ "defaultFindMatchTypeSettingKey.contiguous": "検索時に連続一致を使用します。",
+ "defaultFindMatchTypeSettingKey.fuzzy": "検索時にあいまい一致を使用します。",
"defaultFindModeSettingKey": "ワークベンチのリストとツリーの既定の検索モードを制御します。",
"defaultFindModeSettingKey.filter": "検索時に要素をフィルター処理します。",
"defaultFindModeSettingKey.highlight": "検索時に要素を強調表示します。さらに上下のナビゲーションでは、強調表示された要素のみがスキャンされます。",
@@ -1690,23 +2463,53 @@
"keyboardNavigationSettingKey.filter": "キーボード ナビゲーションのフィルターでは、キーボード入力に一致しないすべての要素がフィルター処理され、非表示になります。",
"keyboardNavigationSettingKey.highlight": "キーボード ナビゲーションの強調表示を使用すると、キーボード入力に一致する要素が強調表示されます。上および下への移動は、強調表示されている要素のみを移動します。",
"keyboardNavigationSettingKey.simple": "簡単なキーボード ナビゲーションは、キーボード入力に一致する要素に焦点を当てます。一致処理はプレフィックスでのみ実行されます。",
- "keyboardNavigationSettingKeyDeprecated": "代わりに 'workbench.list.defaultFindMode' を使用してください。",
+ "keyboardNavigationSettingKeyDeprecated": "代わりに 'workbench.list.defaultFindMode' と 'workbench.list.typeNavigationMode' を使用してください。",
"list smoothScrolling setting": "リストとツリーでスムーズ スクロールを使用するかどうかを制御します。",
+ "list.scrollByPage": "スクロールバーのクリックでページごとにスクロールするかどうかを制御します。",
"multiSelectModifier": "マウスを使用して項目を複数選択するときに使用する修飾キーです (たとえば、エクスプローラーでエディターと scm ビューを開くなど)。'横に並べて開く' マウス ジェスチャー (がサポートされている場合) は、複数選択の修飾キーと競合しないように調整されます。",
"multiSelectModifier.alt": "Windows および Linux 上の `Alt` キーと macOS 上の `Option` キーに割り当てます。",
"multiSelectModifier.ctrlCmd": "Windows および Linux 上の `Control` キーと macOS 上の `Command` キーに割り当てます。",
"openModeModifier": "マウスを使用して、ツリーとリスト内の項目を開く方法を制御します (サポートされている場合)。適用できない場合、一部のツリーやリストではこの設定が無視されることがあります。",
"render tree indent guides": "ツリーでインデントのガイドを表示するかどうかを制御します。",
+ "sticky scroll": "ツリーでスティッキー スクロールを有効にするかどうかを制御します。",
+ "sticky scroll maximum items": "{0} が有効な場合に、ツリーに表示される固定要素の数を制御します。",
"tree indent setting": "ツリーのインデントをピクセル単位で制御します。",
+ "typeNavigationMode2": "ワークベンチのリストとツリーで型ナビゲーションがどのように機能するかを制御します。`trigger` に設定すると、`list.triggerTypeNavigation` コマンドの実行後に型ナビゲーションが開始されます。",
"workbenchConfigurationTitle": "ワークベンチ"
},
+ "vs/platform/log/common/log": {
+ "debug": "デバッグ",
+ "error": "エラー",
+ "info": "情報",
+ "off": "オフ",
+ "trace": "トレース",
+ "warn": "警告"
+ },
"vs/platform/markers/common/markers": {
"sev.error": "エラー",
+ "sev.errors": "エラー",
"sev.info": "情報",
- "sev.warning": "警告"
+ "sev.infos": "情報",
+ "sev.warning": "警告",
+ "sev.warnings": "警告"
+ },
+ "vs/platform/markers/common/markerService": {
+ "filtered": "次の理由により、問題は一時停止しています: \"{0}\"",
+ "filtered.network": "次の理由により、問題は一時停止しています: \"{0}\" および {1} その他"
+ },
+ "vs/platform/mcp/common/allowedMcpServersService": {
+ "mcp servers are not allowed": "モデル コンテキスト プロトコル サーバーがエディターで無効になっています。[設定]({0}) をご確認ください。"
+ },
+ "vs/platform/mcp/common/mcpGalleryService": {
+ "noReadme": "利用できる README はありません",
+ "readme.viewInBrowser": "このサーバーに関する情報は [こちら]({0}) で確認できます"
+ },
+ "vs/platform/mcp/common/mcpManagementService": {
+ "not allowed to install": "この MCP サーバーは {0} のため、インストールできません"
},
"vs/platform/menubar/electron-main/menubar": {
- "cancel": "キャンセル(&&C)",
+ "cancel": "キャンセル",
+ "exit": "終了(&&E)",
"mAbout": "{0} のバージョン情報",
"mBringToFront": "すべてを手前に移動",
"mEdit": "編集(&&E)",
@@ -1741,42 +2544,125 @@
"miRestartToUpdate": "再起動して更新(&&U)",
"miSwitchWindow": "ウィンドウの切り替え(&&W)...",
"quit": "終了(&&Q)",
- "quitMessage": "終了しますか?"
+ "quitMessage": "終了しますか?",
+ "quitMessageMac": "終了しますか?"
},
"vs/platform/native/electron-main/nativeHostMainService": {
- "cancel": "キャンセル(&&C)",
+ "cancel": "キャンセル",
"cantCreateBinFolder": "シェル コマンド '{0}' をアンインストールできません。",
"cantUninstall": "シェル コマンド '{0}' をアンインストールできません。",
+ "copyLink": "リンクのコピー(&&C)",
"ok": "OK(&&O)",
+ "openExternalErrorLinkMessage": "既定のブラウザーでリンクを開く際にエラーが発生しました。",
+ "openExternalProgramErrorMessage": "外部プログラムを開く際にエラーが発生しました。",
"sourceMissing": "'{0}' にシェル スクリプトが見つかりません",
+ "trace.detail": "問題点を作成し、次のファイルを手動で添付してください:\r\n{0}",
+ "trace.message": "トレース ファイルが正常に作成されました",
+ "trace.ok": "OK(&&O)",
"warnEscalation": "管理者特権でシェル コマンドをインストールできるように、{0} が 'osascript' のプロンプトを出します。",
"warnEscalationUninstall": "管理者特権でシェル コマンドをアンインストールできるように、{0} が 'osascript' を求めます。"
},
+ "vs/platform/notification/common/notification": {
+ "severityPrefix.error": "エラー: {0}",
+ "severityPrefix.info": "情報: {0}",
+ "severityPrefix.warning": "警告: {0}"
+ },
+ "vs/platform/process/electron-main/processMainService": {
+ "local": "ローカル"
+ },
"vs/platform/quickinput/browser/commandsQuickAccess": {
- "canNotRun": "コマンド '{0}' でエラー ({1}) が発生しました",
+ "canNotRun": "コマンド '{0}' でエラーが発生しました",
"commandPickAriaLabelWithKeybinding": "{0}, {1}",
+ "commonlyUsed": "よく使用するもの",
"morecCommands": "その他のコマンド",
- "recentlyUsed": "最近使用したもの"
+ "recentlyUsed": "最近使用したもの",
+ "suggested": "同様のコマンド"
},
"vs/platform/quickinput/browser/helpQuickAccess": {
"helpPickAriaLabel": "{0}, {1}"
},
+ "vs/platform/quickinput/browser/quickInput": {
+ "cursorAtEndOfQuickInputBox": "クイック入力のカーソルが入力ボックスの最後にあるかどうか",
+ "inQuickInput": "キーボード フォーカスがクイック入力コントロール内にあるかどうか",
+ "inputModeEntry": "'Enter' を押して入力を確認するか 'Escape' を押して取り消します",
+ "inputModeEntryDescription": "{0} ('Enter' を押して確認するか 'Escape' を押して取り消します)",
+ "ok": "OK",
+ "quickInput.back": "戻る",
+ "quickInput.steps": "{0}/{1}",
+ "quickInputAlignment": "クイック入力の配置",
+ "quickInputBox.ariaLabel": "入力すると結果が絞り込まれます。",
+ "quickInputType": "現在表示されているクイック入力の種類"
+ },
+ "vs/platform/quickinput/browser/quickInputActions": {
+ "nonQuickWidget": "クイック入力のコンテキストで使用されます。このコマンドのキー バインドを 1 つ変更する場合は、このコマンドの他のすべてのキー バインド (修飾子のバリアント) も変更する必要があります。",
+ "quickInput": "あらゆる種類のクイック入力のコンテキスト内で使用されます。このコマンドのキー バインドを 1 つ変更する場合は、このコマンドの他のすべてのキー バインド (修飾子のバリアント) も変更する必要があります。",
+ "quickInput.nextSeparatorWithQuickAccessFallback": "クイック アクセス モードの場合は、次の項目に移動します。クイック アクセス モードのでない場合は、次の区切りバーに移動します。",
+ "quickInput.previousSeparatorWithQuickAccessFallback": "クイック アクセス モードの場合は、前の項目に移動します。クイック アクセス モードのでない場合は、前の区切りバーに移動します。",
+ "quickPick": "クイック ピックのコンテキスト内で使用されます。このコマンドのキー バインドを 1 つ変更する場合は、このコマンドの他のすべてのキー バインド (修飾子のバリアント) も変更する必要があります。"
+ },
+ "vs/platform/quickinput/browser/quickInputController": {
+ "custom": "カスタム",
+ "ok": "OK",
+ "quickInput.back": "戻る",
+ "quickInput.backWithKeybinding": "戻る ({0})",
+ "quickInput.checkAll": "すべてのチェック ボックスを切り替える",
+ "quickInput.countSelected": "{0} 個選択済み",
+ "quickInput.visibleCount": "{0} 件の結果"
+ },
+ "vs/platform/quickinput/browser/quickInputList": {
+ "quickInput": "クイック入力"
+ },
+ "vs/platform/quickinput/browser/quickInputUtils": {
+ "executeCommand": "クリックして '{0}' コマンドを実行"
+ },
+ "vs/platform/quickinput/browser/quickPickPin": {
+ "pinCommand": "コマンドのピン留め",
+ "pinnedCommand": "ピン留め済みのコマンド",
+ "terminal.commands.pinned": "ピン留め済み"
+ },
+ "vs/platform/quickinput/browser/tree/quickInputTreeAccessibilityProvider": {
+ "quickTree": "クイック ツリー"
+ },
+ "vs/platform/quickinput/browser/tree/quickTree": {
+ "quickInputBox.ariaLabel": "入力すると結果が絞り込まれます。"
+ },
+ "vs/platform/remoteTunnel/common/remoteTunnel": {
+ "remoteTunnelLog": "リモート トンネル サービス"
+ },
+ "vs/platform/remoteTunnel/node/remoteTunnelService": {
+ "remoteTunnelService.authorizing": "{0} として接続しています ({1})",
+ "remoteTunnelService.building": "ソースから CLI をビルドしています",
+ "remoteTunnelService.openTunnel": "トンネルを開いています",
+ "remoteTunnelService.openTunnelWithName": "トンネル {0} を開いています",
+ "remoteTunnelService.serviceInstallFailed": "セッションを開始して、サービスとしてトンネルをインストールできませんでした..."
+ },
"vs/platform/request/common/request": {
+ "electronFetch": "Node.js' ではなく、Electron のフェッチ実装の使用を有効にするかどうかを制御します。すべてのローカル拡張機能は、グローバル フェッチ API に対する Electron のフェッチ実装を取得します。",
+ "fetchAdditionalSupport": "Node.js のフェッチ実装を追加のサポートで拡張するかどうかを制御します。現在、プロキシ サポート ({1}) とシステム証明書 ({2}) は、対応する設定が有効になっている場合に追加されます。[リモート開発](https://aka.ms/vscode-remote) 中に {0} 設定が無効になっている場合、この設定はローカル設定とリモート設定で個別に構成できます。",
"httpConfigurationTitle": "HTTP",
- "proxy": "使用するプロキシ設定。設定されていない場合は、'http_proxy' および 'https_proxy' の環境変数から継承されます。",
- "proxyAuthorization": "すべてのネットワーク要求に対して 'Proxy-Authorization' ヘッダーとして送信する値。",
- "proxySupport": "拡張機能プロキシ サポートを使用します。",
+ "networkInterfaceCheckInterval": "ネットワーク インターフェイスの変更を確認してプロキシ キャッシュを無効にする間隔を秒単位で制御します。無効にするには -1 に設定します。[リモート開発](https://aka.ms/vscode-remote) 中に {0} 設定が無効になっている場合、この設定はローカル設定とリモート設定で個別に構成できます。",
+ "noProxy": "HTTP/HTTPS 要求でプロキシ設定を無視する必要があるドメイン名を指定します。[リモート開発](https://aka.ms/vscode-remote) 中に {0} 設定が無効になっている場合、この設定はローカル設定とリモート設定で個別に構成できます。",
+ "proxy": "使用するプロキシ設定。設定されていない場合は、'http_proxy' および 'https_proxy' の環境変数から継承されます。[リモート開発](https://aka.ms/vscode-remote) 中に {0} 設定が無効になっている場合、この設定はローカル設定とリモート設定で個別に構成できます。",
+ "proxyAuthorization": "すべてのネットワーク要求に対して `Proxy-Authorization` ヘッダーとして送信する値。[リモート開発](https://aka.ms/vscode-remote) 中に {0} 設定が無効になっている場合、この設定はローカル設定とリモート設定で個別に構成できます。",
+ "proxyKerberosServicePrincipal": "HTTP プロキシを使用して Kerberos 認証のプリンシパルサービス名をオーバーライドします。設定されていない場合は、プロキシホスト名に基づく既定値が使用されます。[リモート開発](https://aka.ms/vscode-remote) 中に {0} 設定が無効になっている場合、この設定はローカル設定とリモート設定で個別に構成できます。",
+ "proxySupport": "拡張機能プロキシ サポートを使用します。[リモート開発](https://aka.ms/vscode-remote) 中に {0} 設定が無効になっている場合、この設定はローカル設定とリモート設定で個別に構成できます。",
"proxySupportFallback": "プロキシが見つからないときに、拡張機能のプロキシ サポートを有効にし、要求オプションにフォールバックします。",
"proxySupportOff": "拡張機能のプロキシ サポートを無効にします。",
"proxySupportOn": "拡張機能のプロキシ サポートを有効にします。",
"proxySupportOverride": "拡張機能のプロキシ サポートを有効にします。リクエスト オプションを上書きします。",
- "strictSSL": "提供された CA の一覧と照らしてプロキシ サーバーの証明書を確認するかどうか制御します。",
- "systemCertificates": "CA 証明書を OS から読み込む必要があるかどうかを制御します (Windows および macOS では、オフにした場合にウィンドウの再読み込みが必要です)。"
+ "strictSSL": "提供された CA の一覧と照らしてプロキシ サーバーの証明書を確認するかどうか制御します。[リモート開発](https://aka.ms/vscode-remote) 中に {0} 設定が無効になっている場合、この設定はローカル設定とリモート設定で個別に構成できます。",
+ "systemCertificates": "CA 証明書を OS から読み込むかどうかを制御します。Windows および macOS では、これをオフにした後にウィンドウを再読み込みする必要があります。[リモート開発](https://aka.ms/vscode-remote) 中に {0} 設定が無効になっている場合、この設定はローカル設定とリモート設定で個別に構成できます。",
+ "systemCertificatesNode": "Node.js の組み込みサポートを使用してシステム証明書を読み込むかどうかを制御します。この設定を変更した後はウィンドウを再読み込みしてください。[リモート開発](https://aka.ms/vscode-remote) 中に {0} 設定が無効になっている場合、この設定はローカル設定とリモート設定で個別に構成できます。",
+ "systemCertificatesV2": "OS からの CA 証明書の試験的な読み込みを有効にするかどうかを制御します。これは、既定の補完よりも一般的なアプローチを使用します。[リモート開発](https://aka.ms/vscode-remote) 中に {0} 設定が無効になっている場合、この設定はローカル設定とリモート設定で個別に構成できます。",
+ "useLocalProxy": "リモート拡張機能ホストでローカル プロキシ構成を使用するかどうかを制御します。この設定は、[リモート開発](https://aka.ms/vscode-remote) 中のリモート設定としてのみ適用されます。"
},
"vs/platform/shell/node/shellEnv": {
"resolveShellEnvError": "シェル環境を解決できません: {0}",
"resolveShellEnvExitError": "生成されたシェルでの予期しない終了コード (コード {0}、シグナル {1})",
- "resolveShellEnvTimeout": "適度な時間内にシェル環境を解決できません。シェルの構成を確認してください。"
+ "resolveShellEnvTimeout": "適度な時間内にシェル環境を解決できません。シェルの構成を確認して、再起動してください。"
+ },
+ "vs/platform/telemetry/common/telemetryLogAppender": {
+ "telemetryLog": "テレメトリ {0}"
},
"vs/platform/telemetry/common/telemetryService": {
"enableTelemetryDeprecated": "この設定が false の場合、新しい設定の値に関係なくテレメトリは送信されません。{0}設定を優先して非推奨になりました。",
@@ -1784,51 +2670,41 @@
"telemetry.docsAndPrivacyStatement": "[収集するデータ]({0}) と[プライバシーに関する声明]({1}) を参照してください。",
"telemetry.docsStatement": "[収集するデータ]({0}) の詳細をご覧ください。",
"telemetry.enableTelemetry": "診断データの収集を有効にします。これにより、{0} の実行方法と改善が必要な場所について理解を深めることができます。",
- "telemetry.enableTelemetryMd": "診断データの収集を有効にします。これにより、{0} の実行状況と改善が必要な箇所について理解を深めることができます。収集する情報とプライバシーに関する声明についての [Read more] ({1}) をご覧ください。",
+ "telemetry.enableTelemetryMd": "診断データの収集を有効にします。これにより、{0} の実行状況と改善が必要な箇所について理解を深めることができます。収集する情報とプライバシーに関する声明についての [Read more]({1}) をご覧ください。",
"telemetry.errors": "エラー テレメトリ",
+ "telemetry.feedback.enabled": "問題報告、アンケート、その他のフィードバック オプションなどのフィードバック メカニズムを有効にします。",
"telemetry.restart": "クラッシュ レポートの変更を有効にするには、アプリケーションを完全に再起動する必要があります。",
"telemetry.telemetryLevel.crash": "OS レベルのクラッシュ レポートを送信します。",
"telemetry.telemetryLevel.default": "使用状況データ、エラー、クラッシュ レポートを送信します。",
"telemetry.telemetryLevel.deprecated": "****注:*** この設定が 'off' の場合、他のテレメトリ設定に関係なくテレメトリは送信されません。この設定が 'off' 以外に設定されていて、非推奨の設定でテレメトリが無効になっている場合、テレメトリは送信されません。*",
"telemetry.telemetryLevel.error": "一般的なエラー テレメトリとクラッシュ レポートを送信します。",
"telemetry.telemetryLevel.off": "すべての製品テレメトリを無効にします。",
+ "telemetry.telemetryLevel.policyDescription": "テレメトリのレベルを制御します。",
"telemetry.telemetryLevel.tableDescription": "次の表は、各設定で送信されるデータの概要を示しています。",
"telemetry.telemetryLevelMd": "{0} テレメトリ、ファースト パーティ拡張テレメトリ機能、および参加しているサード パーティの拡張機能テレメトリを制御します。一部のサード パーティの拡張機能では、この設定が考慮されない場合があります。確認するには、特定の拡張機能のドキュメントを参照してください。テレメトリにより、{0} のパフォーマンス、改善が必要な場所、および機能の使用方法について理解しやすくなります。",
"telemetry.usage": "使用状況データ",
"telemetryConfigurationTitle": "テレメトリ"
},
+ "vs/platform/telemetry/common/telemetryUtils": {
+ "telemetryLogName": "テレメトリ"
+ },
+ "vs/platform/terminal/common/terminalLogService": {
+ "terminalLoggerName": "ターミナル"
+ },
"vs/platform/terminal/common/terminalPlatformConfiguration": {
- "terminal.integrated.automationProfile.linux": "タスクやデバッグなどのオートメーション関連のターミナルの使用に Linux で使用するターミナル プロファイル。現在、この設定は、{0}が設定されている場合は無視されます。",
- "terminal.integrated.automationProfile.osx": "タスクやデバッグなどのオートメーション関連のターミナルの使用に macOS で使用するターミナル プロファイル。現在、この設定は、{0}が設定されている場合は無視されます。",
- "terminal.integrated.automationProfile.windows": "タスクやデバッグなどのオートメーション関連のターミナル使用用のターミナル プロファイル。現在、この設定は、{0}が設定されている場合は無視されます。",
- "terminal.integrated.automationShell.linux": "このパスを設定すると、{0} がオーバーライドされ、{1} の値が無視されます。この値は、タスクやデバッグなどのオートメーション関連のターミナル使用に関するものです。",
- "terminal.integrated.automationShell.linux.deprecation": "これは非推奨です。オートメーション シェルを構成するための新しい推奨される方法は、{0}を使用してターミナルオートメーション プロファイルを作成することです。これは現在、新しいオートメーション プロファイル設定よりも優先されますが、今後変更される予定です。",
- "terminal.integrated.automationShell.osx": "このパスを設定すると、{0} がオーバーライドされ、{1} の値が無視されます。この値は、タスクやデバッグなどのオートメーション関連のターミナル使用に関するものです。",
- "terminal.integrated.automationShell.osx.deprecation": "これは非推奨です。オートメーション シェルを構成するための新しい推奨される方法は、{0}を使用してターミナルオートメーション プロファイルを作成することです。これは現在、新しいオートメーション プロファイル設定よりも優先されますが、今後変更される予定です。",
- "terminal.integrated.automationShell.windows": "このパスを設定すると、{0} がオーバーライドされ、{1} の値が無視されます。この値は、タスクやデバッグなどのオートメーション関連のターミナル使用に関するものです。",
- "terminal.integrated.automationShell.windows.deprecation": "これは非推奨です。オートメーション シェルを構成するための新しい推奨される方法は、{0}を使用してターミナルオートメーション プロファイルを作成することです。これは現在、新しいオートメーション プロファイル設定よりも優先されますが、今後変更される予定です。",
+ "terminal.integrated.automationProfile.linux": "タスクやデバッグなどのオートメーション関連のターミナルの使用に Linux で使用するターミナル プロファイル。",
+ "terminal.integrated.automationProfile.osx": "タスクやデバッグなどのオートメーション関連のターミナルの使用に macOS で使用するターミナル プロファイル。",
+ "terminal.integrated.automationProfile.windows": "タスクやデバッグなどのオートメーション関連のターミナルの使用に使用するターミナル プロファイル。現在、この設定は、{0} (非推奨になりました) が設定されている場合は無視されます。",
"terminal.integrated.confirmIgnoreProcesses": "{0} 設定を使用するときに無視するプロセス名のセット。",
- "terminal.integrated.defaultProfile.linux": "Linux で使用される既定のプロファイルです。{0} または {1} のいずれかが設定されている場合、現在この設定は無視されます。",
- "terminal.integrated.defaultProfile.osx": "MacOS で使用される既定のプロファイルです。{0} または {1} のいずれかが設定されている場合、現在この設定は無視されます。",
- "terminal.integrated.defaultProfile.windows": "Windows で使用される既定のプロファイルです。{0} または {1} のいずれかが設定されている場合、現在この設定は無視されます。",
+ "terminal.integrated.defaultProfile.linux": "Linux 上の既定のターミナル プロファイル。",
+ "terminal.integrated.defaultProfile.osx": "macOS 上の既定のターミナル プロファイル。",
+ "terminal.integrated.defaultProfile.windows": "Windows 上の既定のターミナル プロファイル。",
"terminal.integrated.inheritEnv": "新しいシェルがVS Codeから環境を継承する必要があるかどうか。これにより、ログイン シェルがソースとなり、$PATHおよびその他の開発変数が初期化される可能性があります。これは Windows には影響しません。",
"terminal.integrated.persistentSessionScrollback": "永続的なターミナル セッションに再接続するときに復元される回線の最大数を制御します。これを増やすと、より多くのメモリを犠牲にしてスクロールバックの回線が復元され、起動時に端末への接続にかかる時間が長くなります。この設定を有効にするには、値を `#terminal.integrated.scrollback#` 以下に設定する必要があります。",
- "terminal.integrated.profile.linux": "ターミナル ドロップダウンを使用して新しいターミナルを作成するときに表示する Linux プロファイルです。省略可能な {1} を使用して、{0} プロパティを手動で設定してください。\r\n\r\n既存のプロファイルを一覧から非表示にするには、プロファイルを {2} に設定してください。例: {3}。",
- "terminal.integrated.profile.osx": "ターミナル ドロップダウンを使用して新しいターミナルを作成するときに表示する macOS プロファイルです。省略可能な {1} を使用して、{0} プロパティを手動で設定してください。\r\n\r\n既存のプロファイルを一覧から非表示にするには、プロファイルを {2} に設定してください。例: {3}。",
- "terminal.integrated.profiles.windows": "ターミナル ドロップダウンを使用して新しいターミナルを作成するときに表示する Windows プロファイルです。シェルの場所を自動的に検出するには、{1} プロパティを使用してください。または、{0} プロパティを省略可能な {2} で手動で設定してください。\r\n\r\n既存のプロファイルを一覧から非表示にするには、プロファイルを {3} に設定してください。例: {4}。",
- "terminal.integrated.shell.linux": "The path of the shell that the terminal uses on Linux. [Read more about configuring the shell](https://code.visualstudio.com/docs/editor/integrated-terminal#_terminal-profiles).",
- "terminal.integrated.shell.linux.deprecation": "これは推奨されていません。既定のシェルを構成するための新しい推奨方法は、{0} にターミナル プロファイルを作成し、そのプロファイル名を {1} の既定値として設定することです。これは現在、新しいプロファイル設定より優先されていますが、将来は変更されます。",
- "terminal.integrated.shell.osx": "The path of the shell that the terminal uses on macOS. [Read more about configuring the shell](https://code.visualstudio.com/docs/editor/integrated-terminal#_terminal-profiles).",
- "terminal.integrated.shell.osx.deprecation": "これは推奨されていません。既定のシェルを構成するための新しい推奨方法は、{0} にターミナル プロファイルを作成し、そのプロファイル名を {1} の既定値として設定することです。これは現在、新しいプロファイル設定より優先されていますが、将来は変更されます。",
- "terminal.integrated.shell.windows": "The path of the shell that the terminal uses on Windows. [Read more about configuring the shell](https://code.visualstudio.com/docs/editor/integrated-terminal#_terminal-profiles).",
- "terminal.integrated.shell.windows.deprecation": "これは推奨されていません。既定のシェルを構成するための新しい推奨方法は、{0} にターミナル プロファイルを作成し、そのプロファイル名を {1} の既定値として設定することです。これは現在、新しいプロファイル設定より優先されていますが、将来は変更されます。",
- "terminal.integrated.shellArgs.linux": "Linux ターミナルで使用するコマンドラインの引数。[シェルの構成についての詳細情報](https://code.visualstudio.com/docs/editor/integrated-terminal#_terminal-profiles)。",
- "terminal.integrated.shellArgs.osx": "Mac OS ターミナルで使用するコマンドラインの引数。[シェルの構成についての詳細情報](https://code.visualstudio.com/docs/editor/integrated-terminal#_terminal-profiles)。",
- "terminal.integrated.shellArgs.windows": "Windows ターミナルで使用するコマンドラインの引数。[シェルの構成についての詳細情報](https://code.visualstudio.com/docs/editor/integrated-terminal#_terminal-profiles)。",
- "terminal.integrated.shellArgs.windows.string": "Windows ターミナル上で使用する [コマンド ライン形式](https://msdn.microsoft.com/ja-jp/08dfcab2-eb6e-49a4-80eb-87d4076c98c6) のコマンド ライン引数です。[シェルの構成に関する詳細情報](https://code.visualstudio.com/docs/editor/integrated-terminal#_terminal-profiles)。",
+ "terminal.integrated.profile": "ターミナルの起動方法を追加、削除、または変更できる、{0} の一連のターミナル プロファイルのカスタマイズ。プロファイルは、必須のパス、オプションの引数、その他のプレゼンテーション オプションで構成されます。\r\n\r\n既存のプロファイルを上書きするには、プロファイル名をキーとして使用します。例: \r\n\r\n{1}\r\n\r\n{2}プロファイルの構成に関する詳細をご覧ください{3}。",
"terminal.integrated.showLinkHover": "ターミナル出力でリンクにホバーを表示するかどうか。",
"terminal.integrated.useWslProfiles": "ターミナルのドロップダウンに WSL ディストリビューションを表示するかどうかを制御します",
- "terminalAutomationProfile.path": "シェル実行可能ファイルへの単一のパス。",
+ "terminalAutomationProfile.path": "シェル実行可能ファイルへのパス。",
"terminalIntegratedConfigurationTitle": "統合ターミナル",
"terminalProfile.args": "シェル実行可能ファイルを実行するための引数の省略可能なセットです。",
"terminalProfile.color": "このターミナル アイコンに関連付けるテーマ カラー ID。",
@@ -1840,16 +2716,19 @@
"terminalProfile.osxExtensionId": "拡張機能ターミナルの ID",
"terminalProfile.osxExtensionIdentifier": "このプロファイルを投稿した拡張機能。",
"terminalProfile.osxExtensionTitle": "拡張機能ターミナルの名前",
- "terminalProfile.overrideName": "自動検出されたものをプロファイル名で上書きするかどうかを制御します。",
+ "terminalProfile.overrideName": "どのプログラムが実行されているかを検出する動的ターミナル タイトルを静的プロファイル名で置き換えるかどうか。",
"terminalProfile.path": "シェルの実行可能ファイルへの単一のパス、または失敗した場合にフォールバックとして使用されるパスの配列です。",
"terminalProfile.windowsExtensionId": "拡張機能ターミナルの ID",
"terminalProfile.windowsExtensionIdentifier": "このプロファイルを投稿した拡張機能。",
"terminalProfile.windowsExtensionTitle": "拡張機能ターミナルの名前",
- "terminalProfile.windowsSource": "シェルへのパスを自動検出するプロファイル ソース。"
+ "terminalProfile.windowsSource": "シェルへのパスを自動検出するプロファイル ソース。標準以外の実行可能ファイルの場所はサポートされていないため、新しいプロファイルで手動で作成する必要があることに注意してください。"
},
"vs/platform/terminal/common/terminalProfiles": {
"terminalAutomaticProfile": "既定値を自動的に検出する"
},
+ "vs/platform/terminal/node/ptyHostMain": {
+ "ptyHost": "PTY ホスト"
+ },
"vs/platform/terminal/node/ptyService": {
"terminal-history-restored": "履歴が復元されました"
},
@@ -1859,23 +2738,26 @@
"launchFail.executableDoesNotExist": "シェル実行可能ファイル \"{0}\" へのパスが存在しません",
"launchFail.executableIsNotFileOrSymlink": "シェル実行可能ファイル \"{0}\" へのパスは、ファイルまたは symlink ではありません"
},
- "vs/platform/theme/common/colorRegistry": {
+ "vs/platform/theme/common/colors/baseColors": {
"activeContrastBorder": "コントラストを強めるために、アクティブな他要素と隔てる追加の境界線。",
- "activeLinkForeground": "アクティブなリンクの色。",
- "badgeBackground": "バッジの背景色。バッジとは小さな情報ラベルのことです。例:検索結果の数",
- "badgeForeground": "バッジの前景色。バッジとは小さな情報ラベルのことです。例:検索結果の数",
- "breadcrumbsBackground": "階層リンクの項目の背景色。",
- "breadcrumbsFocusForeground": "フォーカスされた階層リンクの項目の色。",
- "breadcrumbsSelectedBackground": "階層項目ピッカーの背景色。",
- "breadcrumbsSelectedForeground": "選択された階層リンクの項目の色。",
- "buttonBackground": "ボタンの背景色。",
- "buttonBorder": "ボタンの境界線の色。",
- "buttonForeground": "ボタンの前景色。",
- "buttonHoverBackground": "ホバー時のボタン背景色。",
- "buttonSecondaryBackground": "ボタンの 2 次的な背景色。",
- "buttonSecondaryForeground": "ボタンの 2 次的な前景色。",
- "buttonSecondaryHoverBackground": "ホバー時のボタンの 2 次的な背景色。",
- "buttonSeparator": "ボタンの区切り記号の色。",
+ "contrastBorder": "コントラストを強めるために、他の要素と隔てる追加の境界線。",
+ "descriptionForeground": "追加情報を提供する説明文の前景色、例:ラベル。",
+ "disabledForeground": "無効な要素の全体的な前景。この色は、コンポーネントによってオーバーライドされない場合にのみ使用されます。",
+ "errorForeground": "エラー メッセージ全体の前景色。この色は、コンポーネントによって上書きされていない場合にのみ使用されます。",
+ "focusBorder": "フォーカスされた要素の境界線全体の色。この色はコンポーネントによって上書きされていない場合にのみ使用されます。",
+ "foreground": "全体の前景色。この色は、コンポーネントによってオーバーライドされていない場合にのみ使用されます。",
+ "iconForeground": "ワークベンチのアイコンの既定の色。",
+ "selectionBackground": "ワークベンチ内のテキスト選択の背景色 (例: 入力フィールドやテキストエリア)。エディター内の選択には適用されないことに注意してください。",
+ "textBlockQuoteBackground": "テキスト内のブロック引用の背景色。",
+ "textBlockQuoteBorder": "テキスト内のブロック引用の境界線色。",
+ "textCodeBlockBackground": "テキスト内のコード ブロックの背景色。",
+ "textLinkActiveForeground": "クリックされたときとマウスをホバーしたときのテキスト内のリンクの前景色。",
+ "textLinkForeground": "テキスト内のリンクの前景色。",
+ "textPreformatBackground": "書式設定されたテキスト セグメントの背景色。",
+ "textPreformatForeground": "フォーマット済みテキスト セグメントの前景色。",
+ "textSeparatorForeground": "テキストの区切り文字の色。"
+ },
+ "vs/platform/theme/common/colors/chartsColors": {
"chartsBlue": "グラフの視覚化に使用される青色。",
"chartsForeground": "グラフで使用される前景色。",
"chartsGreen": "グラフの視覚化に使用される緑色。",
@@ -1883,13 +2765,18 @@
"chartsOrange": "グラフの視覚化に使用されるオレンジ色。",
"chartsPurple": "グラフの視覚化に使用される紫色。",
"chartsRed": "グラフの視覚化に使用される赤色。",
- "chartsYellow": "グラフの視覚化に使用される黄色。",
- "checkbox.background": "チェックボックス ウィジェットの背景色。",
- "checkbox.border": "チェックボックス ウィジェットの境界線の色。",
- "checkbox.foreground": "チェックボックス ウィジェットの前景色。",
- "contrastBorder": "コントラストを強めるために、他の要素と隔てる追加の境界線。",
- "descriptionForeground": "追加情報を提供する説明文の前景色、例:ラベル。",
+ "chartsYellow": "グラフの視覚化に使用される黄色。"
+ },
+ "vs/platform/theme/common/colors/editorColors": {
+ "activeLinkForeground": "アクティブなリンクの色。",
+ "breadcrumbsBackground": "階層リンクの項目の背景色。",
+ "breadcrumbsFocusForeground": "フォーカスされた階層リンクの項目の色。",
+ "breadcrumbsSelectedBackground": "階層項目ピッカーの背景色。",
+ "breadcrumbsSelectedForeground": "選択された階層リンクの項目の色。",
"diffDiagonalFill": "差分エディターの対角線の塗りつぶし色。対角線の塗りつぶしは、横に並べて比較するビューで使用されます。",
+ "diffEditor.unchangedCodeBackground": "差分エディター内の変更されていないコードの背景色。",
+ "diffEditor.unchangedRegionBackground": "差分エディター内の変更されていないブロックの背景色。",
+ "diffEditor.unchangedRegionForeground": "差分エディター内の変更されていないブロックの前景色。",
"diffEditorBorder": "2 つのテキスト エディターの間の境界線の色。",
"diffEditorInserted": "挿入されたテキストの背景色。この色は、基本装飾が非表示にならないよう不透明にすることはできません。",
"diffEditorInsertedLineGutter": "挿入された行の余白の背景色。",
@@ -1901,16 +2788,13 @@
"diffEditorRemovedLineGutter": "削除された行の余白の背景色。",
"diffEditorRemovedLines": "削除した行の背景色。この色は、基本装飾が非表示にならないよう不透明にすることはできません。",
"diffEditorRemovedOutline": "削除されたテキストの輪郭の色。",
- "disabledForeground": "無効な要素の全体的な前景。この色は、コンポーネントによってオーバーライドされない場合にのみ使用されます。",
- "dropdownBackground": "ドロップダウンの背景。",
- "dropdownBorder": "ドロップダウンの境界線。",
- "dropdownForeground": "ドロップダウンの前景。",
- "dropdownListBackground": "ドロップダウン リストの背景色。",
"editorBackground": "エディターの背景色。",
+ "editorCompositionBorder": "IME コンポジションの境界線の色。",
"editorError.background": "エディター内のエラー テキストの背景色。この色は、基本装飾が非表示にならないよう不透明にすることはできません。",
"editorError.foreground": "エディターでエラーを示す波線の前景色。",
"editorFindMatch": "現在の検索一致項目の色。",
"editorFindMatchBorder": "現在の検索一致項目の境界線の色。",
+ "editorFindMatchForeground": "現在の検索一致項目のテキストの色。",
"editorForeground": "エディターの既定の前景色。",
"editorHint.foreground": "エディターでヒントを示す波線の前景色。",
"editorInactiveSelection": "非アクティブなエディターの選択範囲の色。この色は、基本装飾が非表示にならないよう不透明にすることはできません。",
@@ -1922,46 +2806,93 @@
"editorInlayHintForeground": "インライン ヒントの前景色",
"editorInlayHintForegroundParameter": "パラメーターのインライン ヒントの前景色",
"editorInlayHintForegroundTypes": "種類のインライン ヒントの前景色",
+ "editorLightBulbAiForeground": "電球 AI アイコンに使用する色。",
"editorLightBulbAutoFixForeground": "自動修正の電球アクション アイコンとして使用される色。",
"editorLightBulbForeground": "電球アクション アイコンに使用する色。",
"editorSelectionBackground": "エディターの選択範囲の色。",
"editorSelectionForeground": "ハイ コントラストの選択済みテキストの色。",
"editorSelectionHighlight": "選択範囲の同じコンテンツの領域の色。この色は、基本装飾が非表示にならないよう不透明にすることはできません。",
"editorSelectionHighlightBorder": "選択範囲と同じコンテンツの境界線の色。",
- "editorStickyScrollBackground": "Sticky scroll background color for the editor",
- "editorStickyScrollHoverBackground": "Sticky scroll on hover background color for the editor",
+ "editorStickyScrollBackground": "エディターでのスティッキー スクロールの背景色",
+ "editorStickyScrollBorder": "エディター内でのスティッキー スクロールの境界線の色",
+ "editorStickyScrollGutterBackground": "エディターにおけるスティッキー スクロールのガター部分の背景色",
+ "editorStickyScrollHoverBackground": "エディターでのスティッキー スクロールのホバー時の背景色",
+ "editorStickyScrollShadow": " エディター内でのスティッキー スクロールの影の色",
"editorWarning.background": "エディター内の警告テキストの背景色。この色は、基本装飾が非表示にならないよう不透明にすることはできません。",
"editorWarning.foreground": "エディターで警告を示す波線の前景色。",
"editorWidgetBackground": "検索/置換窓など、エディター ウィジェットの背景色。",
"editorWidgetBorder": "エディター ウィジェットの境界線色。ウィジェットに境界線があり、ウィジェットによって配色を上書きされていない場合でのみこの配色は使用されます。",
"editorWidgetForeground": "検索/置換などを行うエディター ウィジェットの前景色。",
"editorWidgetResizeBorder": "エディター ウィジェットのサイズ変更バーの境界線色。ウィジェットにサイズ変更の境界線があり、ウィジェットによって配色を上書きされていない場合でのみこの配色は使用されます。",
- "errorBorder": "エディター内のエラー ボックスの境界線の色です。",
- "errorForeground": "エラー メッセージ全体の前景色。この色は、コンポーネントによって上書きされていない場合にのみ使用されます。",
+ "errorBorder": "設定されている場合、エディター内のエラーの二重下線の色。",
"findMatchHighlight": "その他の検索条件に一致する項目の色。この色は、基本装飾が非表示にならないよう不透明にすることはできません。",
"findMatchHighlightBorder": "他の検索一致項目の境界線の色。",
+ "findMatchHighlightForeground": "他の検索一致項目の前景色。",
"findRangeHighlight": "検索を制限する範囲の色。この色は、基本装飾が非表示にならないよう不透明にすることはできません。",
"findRangeHighlightBorder": "検索を制限する範囲の境界線色。この色は、基本装飾が非表示にならないよう不透明にすることはできません。",
- "focusBorder": "フォーカスされた要素の境界線全体の色。この色はコンポーネントによって上書きされていない場合にのみ使用されます。",
- "foreground": "全体の前景色。この色は、コンポーネントによってオーバーライドされていない場合にのみ使用されます。",
- "highlight": "ツリーリスト内を検索しているとき、一致した強調のツリーリスト前景色。",
- "hintBorder": "エディター内のヒント ボックスの境界線の色。",
+ "hintBorder": "設定されている場合、エディター内のヒントの二重下線の色。",
"hoverBackground": "エディター ホバーの背景色。",
"hoverBorder": "エディター ホバーの境界線の色。",
"hoverForeground": "エディター ホバーの前景色。",
"hoverHighlight": "ホバーが表示されている語の下を強調表示します。この色は、基本装飾が非表示にならないよう不透明にすることはできません。",
- "iconForeground": "ワークベンチのアイコンの既定の色。",
- "infoBorder": "エディター内の情報ボックスの境界線の色です。",
- "inputBoxActiveOptionBorder": "入力フィールドのアクティブ オプションの境界線の色。",
- "inputBoxBackground": "入力ボックスの背景。",
- "inputBoxBorder": "入力ボックスの境界線。",
- "inputBoxForeground": "入力ボックスの前景。",
- "inputOption.activeBackground": "入力フィールドのオプションの背景のホバー色。",
- "inputOption.activeForeground": "入力フィールドでアクティブ化されたオプションの前景色。",
- "inputOption.hoverBackground": "入力フィールドでアクティブ化されたオプションの背景色。",
- "inputPlaceholderForeground": "入力ボックスのプレースホルダー テキストの前景色。",
- "inputValidationErrorBackground": "エラーの重大度を示す入力検証の背景色。",
- "inputValidationErrorBorder": "エラーの重大度を示す入力検証の境界線色。",
+ "infoBorder": "設定されている場合、エディター内の情報の二重下線の色。",
+ "mergeBorder": "行内マージ競合のヘッダーとスプリッターの境界線の色。",
+ "mergeCommonContentBackground": "インライン マージ競合の共通の先祖のコンテンツ背景。この色は、基本装飾が非表示にならないよう不透明にすることはできません。",
+ "mergeCommonHeaderBackground": "インライン マージ競合の共通の先祖のヘッダー背景。この色は、基本装飾が非表示にならないよう不透明にすることはできません。",
+ "mergeCurrentContentBackground": "インライン マージ競合の現在のコンテンツ背景。この色は、基本装飾が非表示にならないよう不透明にすることはできません。",
+ "mergeCurrentHeaderBackground": "インライン マージ競合の現在のヘッダーの背景。この色は、基本装飾が非表示にならないよう不透明にすることはできません。",
+ "mergeIncomingContentBackground": "インライン マージ競合の着信コンテンツの背景。この色は、基本装飾が非表示にならないよう不透明にすることはできません。",
+ "mergeIncomingHeaderBackground": "インライン マージ競合の着信ヘッダーの背景。この色は、基本装飾が非表示にならないよう不透明にすることはできません。",
+ "overviewRulerCommonContentForeground": "行内マージ競合の共通の祖先概要ルーラー前景色。",
+ "overviewRulerCurrentContentForeground": "行内マージ競合の現在の概要ルーラー前景色。",
+ "overviewRulerFindMatchForeground": "検出された一致項目の概要ルーラー マーカーの色。この色は、基本装飾が非表示にならないよう不透明にすることはできません。",
+ "overviewRulerIncomingContentForeground": "行内マージ競合の入力側の概要ルーラー前景色。",
+ "overviewRulerSelectionHighlightForeground": "選択範囲を強調表示するための概要ルーラー マーカーの色。この色は、基本装飾が非表示にならないよう不透明にすることはできません。",
+ "problemsErrorIconForeground": "問題のエラー アイコンに使用される色。",
+ "problemsInfoIconForeground": "問題情報アイコンに使用される色。",
+ "problemsWarningIconForeground": "問題の警告アイコンに使用される色。",
+ "snippetFinalTabstopHighlightBackground": "スニペットの最後の tabstop の背景色を強調表示します。",
+ "snippetFinalTabstopHighlightBorder": "スニペットの最後のタブストップで境界線の色を強調表示します。",
+ "snippetTabstopHighlightBackground": "スニペット tabstop の背景色を強調表示します。",
+ "snippetTabstopHighlightBorder": "スニペット tabstop の境界線の色を強調表示します。",
+ "statusBarBackground": "エディターのホバーのステータス バーの背景色。",
+ "toolbarActiveBackground": "アクションの上にマウス ポインターを合わせるとツール バーの背景が表示される",
+ "toolbarHoverBackground": "アクションの上にマウス ポインターを合わせたときのツール バーのアウトライン",
+ "toolbarHoverOutline": "アクションの上にマウス ポインターを合わせたときのツール バーのアウトライン",
+ "warningBorder": "設定されている場合、エディター内の警告の二重下線の色。",
+ "widgetBorder": "エディター内の検索/置換窓など、エディター ウィジェットの境界線の色。",
+ "widgetShadow": "エディター内の検索/置換窓など、エディター ウィジェットの影の色。"
+ },
+ "vs/platform/theme/common/colors/inputColors": {
+ "buttonBackground": "ボタンの背景色。",
+ "buttonBorder": "ボタンの境界線の色。",
+ "buttonForeground": "ボタンの前景色。",
+ "buttonHoverBackground": "ホバー時のボタン背景色。",
+ "buttonSecondaryBackground": "ボタンの 2 次的な背景色。",
+ "buttonSecondaryForeground": "ボタンの 2 次的な前景色。",
+ "buttonSecondaryHoverBackground": "ホバー時のボタンの 2 次的な背景色。",
+ "buttonSeparator": "ボタンの区切り記号の色。",
+ "checkbox.background": "チェックボックス ウィジェットの背景色。",
+ "checkbox.border": "チェックボックス ウィジェットの境界線の色。",
+ "checkbox.disabled.background": "無効なチェックボックスの背景。",
+ "checkbox.disabled.foreground": "無効なチェックボックスの前景。",
+ "checkbox.foreground": "チェックボックス ウィジェットの前景色。",
+ "checkbox.select.background": "要素が選択されている場合のチェックボックス ウィジェットの背景色。",
+ "checkbox.select.border": "要素が選択されている場合のチェックボックス ウィジェットの境界線の色。",
+ "dropdownBackground": "ドロップダウンの背景。",
+ "dropdownBorder": "ドロップダウンの境界線。",
+ "dropdownForeground": "ドロップダウンの前景。",
+ "dropdownListBackground": "ドロップダウン リストの背景色。",
+ "inputBoxActiveOptionBorder": "入力フィールドのアクティブ オプションの境界線の色。",
+ "inputBoxBackground": "入力ボックスの背景。",
+ "inputBoxBorder": "入力ボックスの境界線。",
+ "inputBoxForeground": "入力ボックスの前景。",
+ "inputOption.activeBackground": "入力フィールドのオプションの背景のホバー色。",
+ "inputOption.activeForeground": "入力フィールドでアクティブ化されたオプションの前景色。",
+ "inputOption.hoverBackground": "入力フィールドでアクティブ化されたオプションの背景色。",
+ "inputPlaceholderForeground": "入力ボックスのプレースホルダー テキストの前景色。",
+ "inputValidationErrorBackground": "エラーの重大度を示す入力検証の背景色。",
+ "inputValidationErrorBorder": "エラーの重大度を示す入力検証の境界線色。",
"inputValidationErrorForeground": "エラーの重大度を示す入力検証の前景色。",
"inputValidationInfoBackground": "情報の重大度を示す入力検証の背景色。",
"inputValidationInfoBorder": "情報の重大度を示す入力検証の境界線色。",
@@ -1969,23 +2900,38 @@
"inputValidationWarningBackground": "警告の重大度を示す入力検証の背景色。",
"inputValidationWarningBorder": "警告の重大度を示す入力検証の境界線色。",
"inputValidationWarningForeground": "警告の重大度を示す入力検証の前景色。",
- "invalidItemForeground": "無効な項目のツリーリストの前景色。たとえばエクスプローラーの未解決なルート。",
"keybindingLabelBackground": "キー バインド ラベルの背景色です。キー バインド ラベルはキーボード ショートカットを表すために使用されます。",
"keybindingLabelBorder": "キー バインド ラベルの境界線の色です。キー バインド ラベルはキーボード ショートカットを表すために使用されます。",
"keybindingLabelBottomBorder": "キー バインド ラベルの下の境界線の色です。キー バインド ラベルはキーボード ショートカットを表すために使用されます。",
"keybindingLabelForeground": "キー バインド ラベルの前景色です。キー バインド ラベルはキーボード ショートカットを表すために使用されます。",
+ "radioActiveBorder": "アクティブなラジオ オプションの境界線の色。",
+ "radioActiveForeground": "アクティブなラジオ オプションの前景色。",
+ "radioBackground": "アクティブなラジオ オプションの背景色。",
+ "radioHoverBackground": "非アクティブなラジオ オプションのホバー時の背景色。",
+ "radioInactiveBackground": "非アクティブなラジオ オプションの背景色。",
+ "radioInactiveBorder": "非アクティブなラジオ オプションの境界線の色。",
+ "radioInactiveForeground": "非アクティブなラジオ オプションの前景色。"
+ },
+ "vs/platform/theme/common/colors/listColors": {
+ "editorActionListBackground": "操作の一覧の背景色。",
+ "editorActionListFocusBackground": "フォーカスされた項目の操作の一覧の背景色。",
+ "editorActionListFocusForeground": "フォーカスされた項目の操作の一覧の前景色。",
+ "editorActionListForeground": "操作の一覧の前景色。",
+ "highlight": "ツリーリスト内を検索しているとき、一致した強調のツリーリスト前景色。",
+ "invalidItemForeground": "無効な項目のツリーリストの前景色。たとえばエクスプローラーの未解決なルート。",
"listActiveSelectionBackground": "ツリーリストが非アクティブのとき、選択された項目のツリーリスト背景色。アクティブなツリーリストはキーボード フォーカスがあり、非アクティブではこれがありません。",
"listActiveSelectionForeground": "ツリーリストがアクティブのとき、選択された項目のツリーリスト前景色。アクティブなツリーリストはキーボード フォーカスがあり、非アクティブではこれがありません。",
"listActiveSelectionIconForeground": "ツリーリストがアクティブのとき、選択された項目のツリーリストのアイコン前景色。アクティブなツリーリストはキーボード フォーカスがあり、非アクティブではこれがありません。",
- "listDeemphasizedForeground": "強調表示されていない項目のリスト/ツリー前景色。 ",
- "listDropBackground": "マウス操作で項目を移動するときのツリーリスト ドラッグ アンド ドロップの背景。",
+ "listDeemphasizedForeground": "強調表示されていない項目のリスト/ツリー前景色。",
+ "listDropBackground": "マウス操作で項目を他の項目の上に移動するときのリスト/ツリーのドラッグ アンド ドロップの背景。",
+ "listDropBetweenBackground": "マウスを使用してアイテムをアイテム間で移動するときのリスト/ツリーのドラッグ アンド ドロップの境界線の色。",
"listErrorForeground": "エラーを含むリスト項目の前景色。",
"listFilterMatchHighlight": "フィルタリングされた一致の背景色。",
"listFilterMatchHighlightBorder": "フィルタリングされた一致の境界線の色。",
"listFilterWidgetBackground": "リストおよびツリーの型フィルター ウェジェットの背景色。",
"listFilterWidgetNoMatchesOutline": "一致項目がない場合の、リストおよびツリーの型フィルター ウィジェットのアウトライン色。",
"listFilterWidgetOutline": "リストおよびツリーの型フィルター ウィジェットのアウトライン色。",
- "listFilterWidgetShadow": "リストおよびツリーの型フィルター ウィジェットのシャドウ色。",
+ "listFilterWidgetShadow": "リストおよびツリーの型フィルター ウィジェットの影の色。",
"listFocusAndSelectionOutline": "リスト/ツリーがアクティブで選択されている場合の、フォーカスされたアイテムのリスト/ツリー アウトラインの色。アクティブなリスト/ツリーにはキーボード フォーカスがあり、非アクティブな場合はありません。",
"listFocusBackground": "ツリーリストがアクティブのとき、フォーカスされた項目のツリーリスト背景色。アクティブなツリーリストはキーボード フォーカスがあり、非アクティブではこれがありません。",
"listFocusForeground": "ツリーリストがアクティブのとき、フォーカスされた項目のツリーリスト前景色。アクティブなツリーリストはキーボード フォーカスがあり、非アクティブではこれがありません。",
@@ -1999,82 +2945,77 @@
"listInactiveSelectionForeground": "ツリーリストが非アクティブのとき、選択された項目のツリーリスト前景色。アクティブなツリーリストはキーボード フォーカスがあり、非アクティブではこれがありません。",
"listInactiveSelectionIconForeground": "ツリーリストが非アクティブのとき、選択された項目のツリーリストのアイコン前景色。アクティブなツリーリストはキーボード フォーカスがあり、非アクティブではこれがありません。",
"listWarningForeground": "警告が含まれるリスト項目の前景色。",
+ "tableColumnsBorder": "列間の表の境界線の色。",
+ "tableOddRowsBackgroundColor": "奇数テーブル行の背景色。",
+ "treeInactiveIndentGuidesStroke": "アクティブでないインデント ガイドのツリー ストロークの色。",
+ "treeIndentGuidesStroke": "インデント ガイドのツリー ストロークの色。"
+ },
+ "vs/platform/theme/common/colors/menuColors": {
"menuBackground": "メニュー項目の背景色。",
"menuBorder": "メニューの境界線色。",
"menuForeground": "メニュー項目の前景色。",
"menuSelectionBackground": "メニューで選択されたメニュー項目の背景色。",
"menuSelectionBorder": "メニューで選択されたメニュー項目の境界線色。",
"menuSelectionForeground": "メニューで選択されたメニュー項目の前景色。",
- "menuSeparatorBackground": "メニュー内のメニュー項目の境界線色。",
- "mergeBorder": "行内マージ競合のヘッダーとスプリッターの境界線の色。",
- "mergeCommonContentBackground": "インライン マージ競合の共通の先祖のコンテンツ背景。この色は、基本装飾が非表示にならないよう不透明にすることはできません。",
- "mergeCommonHeaderBackground": "インライン マージ競合の共通の先祖のヘッダー背景。この色は、基本装飾が非表示にならないよう不透明にすることはできません。",
- "mergeCurrentContentBackground": "インライン マージ競合の現在のコンテンツ背景。この色は、基本装飾が非表示にならないよう不透明にすることはできません。",
- "mergeCurrentHeaderBackground": "インライン マージ競合の現在のヘッダーの背景。この色は、基本装飾が非表示にならないよう不透明にすることはできません。",
- "mergeIncomingContentBackground": "インライン マージ競合の着信コンテンツの背景。この色は、基本装飾が非表示にならないよう不透明にすることはできません。",
- "mergeIncomingHeaderBackground": "インライン マージ競合の着信ヘッダーの背景。この色は、基本装飾が非表示にならないよう不透明にすることはできません。",
+ "menuSeparatorBackground": "メニュー内のメニュー項目の境界線色。"
+ },
+ "vs/platform/theme/common/colors/minimapColors": {
"minimapBackground": "ミニマップの背景色。",
"minimapError": "エラーのミニマップ マーカーの色。",
"minimapFindMatchHighlight": "一致を検索するためのミニマップ マーカーの色。",
"minimapForegroundOpacity": "ミニマップにレンダリングされる前景要素の不透明度。たとえば、\"#000000c0\" では、75% の不透明度で要素をレンダリングします。",
+ "minimapInfo": "情報のミニマップ マーカーの色。",
"minimapSelectionHighlight": "エディターの選択範囲のミニマップ マーカーの色。",
"minimapSelectionOccurrenceHighlight": "エディターを繰り返し選択する範囲のミニマップ マーカーの色。",
"minimapSliderActiveBackground": "クリックしたときのミニマップ スライダーの背景色。",
"minimapSliderBackground": "ミニマップ スライダーの背景色。",
"minimapSliderHoverBackground": "ホバーリング時のミニマップ スライダーの背景色。",
- "overviewRuleWarning": "警告のミニマップ マーカーの色。",
- "overviewRulerCommonContentForeground": "行内マージ競合の共通の祖先概要ルーラー前景色。",
- "overviewRulerCurrentContentForeground": "行内マージ競合の現在の概要ルーラー前景色。",
- "overviewRulerFindMatchForeground": "検出された一致項目の概要ルーラー マーカーの色。この色は、基本装飾が非表示にならないよう不透明にすることはできません。",
- "overviewRulerIncomingContentForeground": "行内マージ競合の入力側の概要ルーラー前景色。",
- "overviewRulerSelectionHighlightForeground": "選択範囲を強調表示するための概要ルーラー マーカーの色。この色は、基本装飾が非表示にならないよう不透明にすることはできません。",
+ "overviewRuleWarning": "警告のミニマップ マーカーの色。"
+ },
+ "vs/platform/theme/common/colors/miscColors": {
+ "activityErrorBadge.background": "エラー アクティビティ バッジの背景色",
+ "activityErrorBadge.foreground": "エラー アクティビティ バッジの前景色",
+ "activityWarningBadge.background": "警告アクティビティ バッジの背景色",
+ "activityWarningBadge.foreground": "警告アクティビティ バッジの前景色",
+ "badgeBackground": "バッジの背景色。バッジとは小さな情報ラベルのことです。例:検索結果の数",
+ "badgeForeground": "バッジの前景色。バッジとは小さな情報ラベルのことです。例:検索結果の数",
+ "chartAxis": "グラフの軸の色。",
+ "chartGuide": "グラフのガイド線。",
+ "chartLine": "グラフの線の色。",
+ "progressBarBackground": "時間のかかる操作で表示するプログレス バーの背景色。",
+ "sashActiveBorder": "アクティブな枠の境界線の色。",
+ "scrollbarBackground": "スクロール バー トラックの背景色。",
+ "scrollbarShadow": "ビューがスクロールされたことを示すスクロール バーの影。",
+ "scrollbarSliderActiveBackground": "クリック時のスクロール バー スライダー背景色。",
+ "scrollbarSliderBackground": "スクロール バーのスライダーの背景色。",
+ "scrollbarSliderHoverBackground": "ホバー時のスクロール バー スライダー背景色。"
+ },
+ "vs/platform/theme/common/colors/quickpickColors": {
"pickerBackground": "クイック ピッカーの背景色。クイック ピッカー ウィジェットは、コマンド パレットのようなピッカーのコンテナーです。",
"pickerForeground": "クイック ピッカーの前景色。クイック ピッカー ウィジェットは、コマンド パレットのようなピッカーのコンテナーです。",
"pickerGroupBorder": "境界線をグループ化するためのクイック選択の色。",
"pickerGroupForeground": "ラベルをグループ化するためのクリック選択の色。",
"pickerTitleBackground": "クイック ピッカー のタイトルの背景色。クイック ピッカー ウィジェットは、コマンド パレットのようなピッカーのコンテナーです。",
- "problemsErrorIconForeground": "問題のエラー アイコンに使用される色。",
- "problemsInfoIconForeground": "問題情報アイコンに使用される色。",
- "problemsWarningIconForeground": "問題の警告アイコンに使用される色。",
- "progressBarBackground": "時間のかかる操作で表示するプログレス バーの背景色。",
"quickInput.list.focusBackground deprecation": "代わりに quickInputList.focusBackground を使用してください",
"quickInput.listFocusBackground": "フォーカスされた項目のクイック選択の背景色。",
"quickInput.listFocusForeground": "フォーカスされた項目のクイック選択の前景色。",
- "quickInput.listFocusIconForeground": "フォーカスされた項目のクイック選択のアイコン前景色。",
- "sashActiveBorder": "アクティブな枠の境界線の色。",
- "scrollbarShadow": "ビューがスクロールされたことを示すスクロール バーの影。",
- "scrollbarSliderActiveBackground": "クリック時のスクロール バー スライダー背景色。",
- "scrollbarSliderBackground": "スクロール バーのスライダーの背景色。",
- "scrollbarSliderHoverBackground": "ホバー時のスクロール バー スライダー背景色。",
+ "quickInput.listFocusIconForeground": "フォーカスされた項目のクイック選択のアイコン前景色。"
+ },
+ "vs/platform/theme/common/colors/searchColors": {
+ "search.resultsInfoForeground": "検索ビューレットの完了メッセージ内のテキストの色。",
"searchEditor.editorFindMatchBorder": "検索エディター クエリの境界線の色が一致します。",
- "searchEditor.queryMatch": "検索エディターのクエリの色が一致します。",
- "selectionBackground": "ワークベンチ内のテキスト選択の背景色 (例: 入力フィールドやテキストエリア)。エディター内の選択には適用されないことに注意してください。",
- "snippetFinalTabstopHighlightBackground": "スニペットの最後の tabstop の背景色を強調表示します。",
- "snippetFinalTabstopHighlightBorder": "スニペットの最後のタブストップで境界線の色を強調表示します。",
- "snippetTabstopHighlightBackground": "スニペット tabstop の背景色を強調表示します。",
- "snippetTabstopHighlightBorder": "スニペット tabstop の境界線の色を強調表示します。",
- "statusBarBackground": "エディターのホバーのステータス バーの背景色。",
- "tableColumnsBorder": "列間の表の境界線の色。",
- "tableOddRowsBackgroundColor": "奇数テーブル行の背景色。",
- "textBlockQuoteBackground": "テキスト内のブロック引用の背景色。",
- "textBlockQuoteBorder": "テキスト内のブロック引用の境界線色。",
- "textCodeBlockBackground": "テキスト内のコード ブロックの背景色。",
- "textLinkActiveForeground": "クリックされたときとマウスをホバーしたときのテキスト内のリンクの前景色。",
- "textLinkForeground": "テキスト内のリンクの前景色。",
- "textPreformatForeground": "フォーマット済みテキスト セグメントの前景色。",
- "textSeparatorForeground": "テキストの区切り文字の色。",
- "toolbarActiveBackground": "アクションの上にマウス ポインターを合わせるとツール バーの背景が表示される",
- "toolbarHoverBackground": "アクションの上にマウス ポインターを合わせたときのツール バーのアウトライン",
- "toolbarHoverOutline": "アクションの上にマウス ポインターを合わせたときのツール バーのアウトライン",
- "treeIndentGuidesStroke": "インデント ガイドのツリー ストロークの色。",
- "warningBorder": "エディターでの警告ボックスの境界線の色です。",
- "widgetShadow": "エディター内の検索/置換窓など、エディター ウィジェットの影の色。"
+ "searchEditor.queryMatch": "検索エディターのクエリの色が一致します。"
+ },
+ "vs/platform/theme/common/colorUtils": {
+ "transparecyRequired": "この色は透明である必要があります。そうでないと内容が見えにくくなります",
+ "useDefault": "既定の色を使用します。"
},
"vs/platform/theme/common/iconRegistry": {
"iconDefinition.fontCharacter": "アイコン定義に関連付けられたフォント文字。",
"iconDefinition.fontId": "使用するフォントの ID。設定されていない場合は、最初に定義されているフォントが使用されます。",
"nextChangeIcon": "次のエディターの場所に移動するためのアイコン。",
"previousChangeIcon": "前のエディターの場所に移動するためのアイコン。",
+ "schema.fontId.formatError": "フォント ID に使用できるのは、文字、数字、アンダースコア、ダッシュのみです。",
"widgetClose": "ウィジェットにある閉じるアクションのアイコン。"
},
"vs/platform/theme/common/tokenClassificationRegistry": {
@@ -2122,7 +3063,6 @@
"variable": "変数のスタイル。"
},
"vs/platform/undoRedo/common/undoRedoService": {
- "cancel": "キャンセル",
"cannotResourceRedoDueToInProgressUndoRedo": "元に戻すまたはやり直し操作が既に実行されているため、'{0}' をやり直すことはできませんでした。",
"cannotResourceUndoDueToInProgressUndoRedo": "元に戻すまたはやり直し操作が既に実行されているため、'{0}' を元に戻すことはできませんでした。",
"cannotWorkspaceRedo": "すべてのファイルで '{0}' をやり直しできませんでした。{1}",
@@ -2135,12 +3075,12 @@
"cannotWorkspaceUndoDueToInProgressUndoRedo": "{1} で元に戻すまたはやり直し操作が既に実行されているため、すべてのファイルに対して '{0}' を元に戻すことはできませんでした",
"confirmDifferentSource": "'{0}' を元に戻しますか?",
"confirmDifferentSource.no": "いいえ",
- "confirmDifferentSource.yes": "はい",
+ "confirmDifferentSource.yes": "はい(&&Y)",
"confirmWorkspace": "すべてのファイルで '{0}' を元に戻しますか?",
"externalRemoval": "次のファイルが閉じられ、ディスク上で変更されました: {0}。",
"noParallelUniverses": "以下のファイルは互換性のない方法で変更されました: {0}。",
- "nok": "このファイルを元に戻す",
- "ok": "{0} 個のファイルで元に戻す"
+ "nok": "このファイルを元に戻す(&&F)",
+ "ok": "{0} 個のファイルで元に戻す(&&U)"
},
"vs/platform/update/common/update.config.contribution": {
"default": "自動更新の確認を有効にします。Code は自動的かつ定期的に更新を確認します。",
@@ -2181,22 +3121,36 @@
"settingsSync.ignoredSettings": "同期中に無視される設定を構成します。",
"settingsSync.keybindingsPerPlatform": "各プラットフォームのキー バインドを同期します。"
},
+ "vs/platform/userDataSync/common/userDataSyncLog": {
+ "userDataSyncLog": "設定の同期"
+ },
"vs/platform/userDataSync/common/userDataSyncMachines": {
"error incompatible": "マシン データは、現在のバージョンと互換性がないため、読み取ることができません。{0} を更新して、もう一度お試しください。"
},
- "vs/platform/windows/electron-main/window": {
- "appCrashed": "ウィンドウがクラッシュしました",
- "appCrashedDetail": "ご不便をおかけして申し訳ありません。ウィンドウを再度開いて、中断したところから続行できます。",
- "appCrashedDetails": "ウィンドウがクラッシュしました (理由: '{0}'、コード: '{1}')",
+ "vs/platform/userDataSync/common/userDataSyncResourceProvider": {
+ "incompatible sync data": "現在のバージョンと互換性がないため、同期データを解析できません。"
+ },
+ "vs/platform/windows/electron-main/windowImpl": {
+ "appGone": "ウィンドウが予期せず終了されました",
+ "appGoneDetailEmptyWindow": "ご不便をおかけして申し訳ございません。新しい空のウィンドウを開いて、もう一度開始できます。",
+ "appGoneDetailWorkspace": "ご不便をおかけして申し訳ありません。ウィンドウを再度開いて、中断したところから続行できます。",
+ "appGoneDetails": "ウィンドウが予期せず終了されました (理由: '{0}', コード: '{1}')",
"appStalled": "ウィンドウから応答がありません",
"appStalledDetail": "ウィンドウを再度開くか、閉じるか、このまま待機できます。",
"close": "閉じる(&&C)",
"doNotRestoreEditors": "エディターを復元しない",
"hiddenMenuBar": "引き続き Alt キーを押してメニュー バーにアクセスできます。",
+ "newWindow": "新しいウィンドウ(&&N)",
"reopen": "もう一度開く(&&R)",
"wait": "待機を続ける(&&K)"
},
"vs/platform/windows/electron-main/windowsMainService": {
+ "allow": "許可(&&A)",
+ "cancel": "キャンセル(&&C)",
+ "confirmOpenDetail": "パス `{0}` では、許可されていないホストを使用しています。このホストを信頼している場合を除き、[キャンセル] を押してください",
+ "confirmOpenMessage": "ホスト `{0}` は、許可されているホストのリストにありませんでした。許可しますか?",
+ "doNotAskAgain": "ホスト '{0}' を永続的に許可する",
+ "learnMore": "詳細情報(&&L)",
"ok": "OK(&&O)",
"pathNotExistDetail": "パス '{0}' はこのコンピューターに存在しません。",
"pathNotExistTitle": "パスが存在しません",
@@ -2206,11 +3160,11 @@
"vs/platform/workspace/common/workspace": {
"codeWorkspace": "コード ワークスペース"
},
- "vs/platform/workspace/common/workspaceTrust": {
- "trusted": "信頼済み",
- "untrusted": "制限モード"
- },
"vs/platform/workspaces/electron-main/workspacesHistoryMainService": {
+ "cancel": "キャンセル(&&C)",
+ "clearButtonLabel": "クリア(&&C)",
+ "confirmClearDetail": "この操作は元に戻せません。",
+ "confirmClearRecentsMessage": "最近開いたファイルとワークスペースをすべてクリアしますか?",
"newWindow": "新しいウィンドウ",
"newWindowDesc": "新しいウィンドウを開く",
"recentFolders": "最近使用したフォルダー",
@@ -2223,6 +3177,28 @@
"workspaceOpenedDetail": "ワークスペースは既に別のウィンドウで開いています。最初にそのウィンドウを閉じててから、もう一度やり直してください。",
"workspaceOpenedMessage": "ワークスペース '{0}' を保存できません"
},
+ "vs/server/node/remoteExtensionHostAgentCli": {
+ "remotecli": "リモート CLI"
+ },
+ "vs/server/node/serverEnvironmentService": {
+ "acceptLicenseTerms": "設定した場合、ユーザーはサーバー ライセンス条項に同意し、ユーザーはプロンプトなしでサーバーを起動します。",
+ "connection-token": "すべての要求に含める必要があるシークレット。",
+ "connection-token-file": "接続トークンを含むファイルへのパス。",
+ "default-folder": "ブラウザー URL に入力が指定されていない場合に開くワークスペース フォルダー。現在の作業ディレクトリに対して解決された相対パスまたは絶対パスです。",
+ "default-workspace": "ブラウザー URL に入力が指定されていないときに開くワークスペース。現在の作業ディレクトリに対して解決された相対パスまたは絶対パスです。",
+ "host": "サーバーがリッスンするホスト名または IP アドレスです。設定されていない場合、既定値は 'localhost' になります。",
+ "port": "サーバーがリッスンするポートです。0 が渡されると、ランダムな空きポートが選択されます。形式が num-num の範囲で渡された場合、範囲 (末尾を含む) から空いているポートが選択されます。",
+ "reconnection-grace-time": "再接続の猶予期間を秒単位で上書きします。既定値は 10800 (3 時間) です。",
+ "server-base-path": "Web UI とコード サーバーを指定するパス。既定値は '/' です。`",
+ "serverDataDir": "サーバー データを保持するディレクトリを指定します。",
+ "socket-path": "サーバーがリッスンするためのソケット ファイルへのパスです。",
+ "start-server": "拡張機能のインストールまたはアンインストール時にサーバーを起動します。'install-extension'、'install-builtin-extension'、および 'uninstall-extension' と組み合わせて使用します。",
+ "telemetry-level": "初期テレメトリ レベルを設定します。有効なレベルは 'off'、'crash'、'error'、'all' です。指定しない場合、サーバーはクライアントが接続するまでテレメトリを送信し、クライアントのテレメトリ設定を使用します。これを 'off' に設定することは --disable-telemetry と同じ意味になります",
+ "without-connection-token": "接続トークンなしで実行します。他の方法で接続が保護されている場合にのみ、これを使用してください。"
+ },
+ "vs/server/node/serverServices": {
+ "remoteExtensionLog": "サーバー"
+ },
"win32/i18n/messages": {
"AddContextMenuFiles": "エクスプローラーのファイル コンテキスト メニューに [%1 で開く] アクションを追加する",
"AddContextMenuFolders": "エクスプローラーのディレクトリ コンテキスト メニューに [%1 で開く] アクションを追加する",
@@ -2236,369 +3212,67 @@
"OpenWithCodeContextMenu": "%1 で開く(&I)",
"Other": "その他:",
"RunAfter": "インストール後に %1 を実行する",
- "SourceFile": "%1 ソース ファイル"
- },
- "readme.md": {
- "LanguagePackTitle": "言語パックによって、VS Code にローカライズされた UI エクスペリエンスが提供されます。",
- "Usage": "使用法",
- "displayLanguage": "既定の UI 言語をオーバーライドするには、\"Configure Display Language\" コマンドを使用して、VS Code の表示言語を明示的に設定します。",
- "Command Palette": "\"Ctrl+Shift+P\" を押して \"コマンド パレット\" を表示し、\"display\" と入力して \"Configure Display Language\" コマンドをフィルターして表示します。",
- "ShowLocale": "Enter キーを押すと、インストールされている言語の一覧がロケールごとに表示され、現在のロケールが強調表示されます。",
- "SwtichUI": "UI 言語を切り替えるには、別の \"ロケール\" を選択してください。",
- "DocLink": "詳細については、「Docs」を参照してください。",
- "Contributing": "コントリビューション",
- "Feedback": "翻訳改善のためのフィードバックについては、\"vscode-loc\" リポジトリにイシューを作成してください。",
- "LocPlatform": "その翻訳文字列は Microsoft Localization Platform で管理されています。変更は Microsoft Localization Platform でのみ行うことができ、その後 vscode-loc リポジトリにエクスポートします。そのため、pull request は vscode loc リポジトリでは受け入れられません。",
- "LicenseTitle": "ライセンス",
- "LicenseMessage": "このソース コードと文字列は、\"MIT\" ライセンスでライセンスされています。",
- "Credits": "クレジット",
- "Contributed": "この言語パックは、\"コミュニティによるコミュニティのため\" のローカライズ作業のコントリビューションによって提供されました。これを提供してくださったコミュニティの共同作成者の皆様に感謝します。",
- "TopContributors": "上位の共同作成者:",
- "Contributors": "共同作成者",
- "EnjoyLanguagePack": "お楽しみください。"
- },
- "win32/i18n/Default": {
- "SetupAppTitle": "セットアップ",
- "SetupWindowTitle": "セットアップ - %1",
- "UninstallAppTitle": "アンインストール",
- "UninstallAppFullTitle": "%1 のアンインストール",
- "InformationTitle": "情報",
- "ConfirmTitle": "確認",
- "ErrorTitle": "エラー",
- "SetupLdrStartupMessage": "%1 をインストールします。続行しますか?",
- "LdrCannotCreateTemp": "一時ファイルを作成できません。セットアップが中止されました",
- "LdrCannotExecTemp": "一時ディレクトリにあるファイルを実行できません。セットアップが中止されました",
- "LastErrorMessage": "%1。%n%nエラー %2: %3",
- "SetupFileMissing": "ファイル %1 がインストール ディレクトリにありません。問題を修正するか、プログラムの新しいコピーを入手してください。",
- "SetupFileCorrupt": "セットアップ ファイルが破損しています。プログラムの新しいコピーを入手してください。",
- "SetupFileCorruptOrWrongVer": "セットアップ ファイルが破損しているか、このバージョンのセットアップ プログラムと互換性がありません。問題を修正するか、プログラムの新しいコピーを入手してください。",
- "InvalidParameter": "コマンド ラインに渡されたパラメーターが無効です:%n%n%1",
- "SetupAlreadyRunning": "セットアップは既に実行中です。",
- "WindowsVersionNotSupported": "このプログラムは、お使いのコンピューターで実行されているバージョンの Windows をサポートしていません。",
- "WindowsServicePackRequired": "このプログラムには、%1 Service Pack %2 以降が必要です。",
- "NotOnThisPlatform": "このプログラムは、%1 上では実行できません。",
- "OnlyOnThisPlatform": "このプログラムは、%1 上で実行する必要があります。",
- "OnlyOnTheseArchitectures": "このプログラムは、次のプロセッサ アーキテクチャ用に設計された Windows のバージョンに対してのみインストールできます:%n%n%1",
- "MissingWOW64APIs": "実行中のバージョンの Windows に、64 ビットのインストールを実行するために必要な機能が含まれていません。この問題を修正するには、Service Pack %1 をインストールしてください。",
- "WinVersionTooLowError": "このプログラムには、%1 バージョン %2 以降が必要です。",
- "WinVersionTooHighError": "このプログラムは、%1 バージョン %2 以降にはインストールできません。",
- "AdminPrivilegesRequired": "このプログラムをインストールするときは、管理者としてログインする必要があります。",
- "PowerUserPrivilegesRequired": "このプログラムをインストールするには、管理者としてログインするか、Power Users グループのメンバーとしてログインする必要があります。",
- "SetupAppRunningError": "%1 が現在実行中であることが検出されました。%n%nそのプログラムのすべてのインスタンスを今すぐ閉じてから、[OK] をクリックして続行してください。または、セットアップを終了するには、[キャンセル] をクリックしてください。",
- "UninstallAppRunningError": "%1 が現在実行中であることを検出しました。%n%nそのプログラムのすべてのインスタンスを閉じてから [OK] をクリックして続行するか、[キャンセル] をクリックしてアンインストールを終了します。",
- "ErrorCreatingDir": "ディレクトリ \"%1\" を作成できませんでした",
- "ErrorTooManyFilesInDir": "ディレクトリ \"%1\" にファイルを作成できませんでした。ディレクトリに含まれているファイルが多すぎます",
- "ExitSetupTitle": "セットアップを終了する",
- "ExitSetupMessage": "セットアップは完了していません。このまま終了すると、プログラムはインストールされません。%n%n後でセットアップを再実行すれば、インストールを完了できます。%n%nセットアップを終了しますか?",
- "AboutSetupMenuItem": "セットアップについて(&A)...",
- "AboutSetupTitle": "セットアップについて",
- "AboutSetupMessage": "%1 バージョン %2%n%3%n%n%1 ホーム ページ:%n%4",
- "ButtonBack": "< 戻る(&B)",
- "ButtonNext": "次へ(&N) >",
- "ButtonInstall": "インストール(&I)",
- "ButtonOK": "OK",
- "ButtonCancel": "キャンセル",
- "ButtonYes": "はい(&Y)",
- "ButtonYesToAll": "すべてはい(&A)",
- "ButtonNo": "いいえ(&N)",
- "ButtonNoToAll": "すべていいえ(&O)",
- "ButtonFinish": "完了(&F)",
- "ButtonBrowse": "参照(&B)...",
- "ButtonWizardBrowse": "参照(&R)...",
- "ButtonNewFolder": "新しいフォルダーを作成(&M)",
- "SelectLanguageTitle": "セットアップの言語の選択",
- "SelectLanguageLabel": "インストール中に使う言語を選択します:",
- "ClickNext": "続行するには [次へ] を、セットアップを終了するには [キャンセル] をクリックしてください。",
- "BrowseDialogTitle": "フォルダーの参照",
- "BrowseDialogLabel": "下の一覧からフォルダーを選択し、[OK] をクリックしてください。",
- "NewFolderName": "新しいフォルダー",
- "WelcomeLabel1": "[name] のセットアップ ウィザードへようこそ",
- "WelcomeLabel2": "このウィザードでは、[name/ver] をコンピューターにインストールします。%n%n続行する前に、他のアプリケーションをすべて閉じることをお勧めします。",
- "WizardPassword": "パスワード",
- "PasswordLabel1": "このインストールは、パスワードで保護されています。",
- "PasswordLabel3": "パスワードを入力してから、[次へ] をクリックして続行してください。パスワードでは大文字と小文字が区別されます。",
- "PasswordEditLabel": "パスワード(&P):",
- "IncorrectPassword": "入力されたパスワードが正しくありません。もう一度実行してください。",
- "WizardLicense": "使用許諾契約書",
- "LicenseLabel": "続行する前に次の重要な情報をお読みください。",
- "LicenseLabel3": "次のライセンス条項をお読みください。インストールを続行するには、このライセンス条項に同意する必要があります。",
- "LicenseAccepted": "同意する(&A)",
- "LicenseNotAccepted": "同意しない(&D)",
- "WizardInfoBefore": "情報",
- "InfoBeforeLabel": "続行する前に次の重要な情報をお読みください。",
- "InfoBeforeClickLabel": "セットアップを続行する準備ができたら、[次へ] をクリックしてください。",
- "WizardInfoAfter": "情報",
- "InfoAfterLabel": "続行する前に次の重要な情報をお読みください。",
- "InfoAfterClickLabel": "セットアップを続行する準備ができたら、[次へ] をクリックしてください。",
- "WizardUserInfo": "ユーザー情報",
- "UserInfoDesc": "情報を入力してください。",
- "UserInfoName": "ユーザー名(&U):",
- "UserInfoOrg": "組織(&O):",
- "UserInfoSerial": "シリアル番号(&S):",
- "UserInfoNameRequired": "名前を入力してください。",
- "WizardSelectDir": "インストール先の選択",
- "SelectDirDesc": "[name] をどこにインストールしますか?",
- "SelectDirLabel3": "[name] は次のフォルダーにインストールされます。",
- "SelectDirBrowseLabel": "続行するには、[次へ] をクリックしてください。異なるフォルダーを選択するには、[参照] をクリックしてください。",
- "DiskSpaceMBLabel": "最低 [mb] MB の空きディスク領域が必要です。",
- "CannotInstallToNetworkDrive": "ネットワーク ドライブにインストールすることはできません。",
- "CannotInstallToUNCPath": "UNC パスにインストールすることはできません。",
- "InvalidPath": "ドライブ文字が含まれる完全パスを入力する必要があります。例: %n%nC:\\APP%n%n。次の形式の UNC パスではありません:%n%n\\\\server\\share",
- "InvalidDrive": "選択したドライブまたは UNC 共有が存在しないか、アクセスできません。別のものを選択してください。",
- "DiskSpaceWarningTitle": "ディスク領域が不足しています",
- "DiskSpaceWarning": "インストールするには最低 %1 KB の空き領域が必要ですが、選択されたドライブで利用できる空き領域は %2 KB だけです。%n%nこのまま続行しますか?",
- "DirNameTooLong": "フォルダーの名前またはパスが長すぎます。",
- "InvalidDirName": "フォルダー名が無効です。",
- "BadDirName32": "フォルダー名に以下の文字を含めることはできません:%n%n%1",
- "DirExistsTitle": "フォルダーが存在します",
- "DirExists": "フォルダー:%n%n%1%n%nは既に存在します。このフォルダーにこのままインストールしますか?",
- "DirDoesntExistTitle": "フォルダーが存在しません",
- "DirDoesntExist": "フォルダー:%n%n%1%n%nは存在しません。このフォルダーを作成しますか?",
- "WizardSelectComponents": "コンポーネントの選択",
- "SelectComponentsDesc": "どのコンポーネントをインストールしますか?",
- "SelectComponentsLabel2": "インストールするコンポーネントを選択し、インストールしないコンポーネントの選択を解除してください。準備ができたら、[次へ] をクリックして続行してください。",
- "FullInstallation": "完全インストール",
- "CompactInstallation": "コンパクト インストール",
- "CustomInstallation": "カスタム インストール",
- "NoUninstallWarningTitle": "コンポーネントが存在する",
- "NoUninstallWarning": "次のコンポーネントが既にコンピューターにインストールされていることが検出されました。%n%n%1%n%nこれらのコンポーネントの選択を解除しても、コンポーネントはアンインストールされません。%n%nこのまま続行しますか?",
- "ComponentSize1": "%1 KB",
- "ComponentSize2": "%1 MB",
- "ComponentsDiskSpaceMBLabel": "現在の選択内容には、最低 [mb] MB のディスク領域が必要です。",
- "WizardSelectTasks": "追加タスクの選択",
- "SelectTasksDesc": "どの追加タスクを実行する必要がありますか?",
- "SelectTasksLabel2": "[name] のインストール中に実行する追加タスクを選択してから、[次へ] をクリックします。",
- "WizardSelectProgramGroup": "スタート メニューのフォルダーの選択",
- "SelectStartMenuFolderDesc": "プログラムのショートカットをどこに置きますか?",
- "SelectStartMenuFolderLabel3": "プログラムのショートカットをスタート メニューの次のフォルダーに作成します。",
- "SelectStartMenuFolderBrowseLabel": "続行するには、[次へ] をクリックしてください。異なるフォルダーを選択するには、[参照] をクリックしてください。",
- "MustEnterGroupName": "フォルダー名を入力してください。",
- "GroupNameTooLong": "フォルダーの名前またはパスが長すぎます。",
- "InvalidGroupName": "フォルダー名が無効です。",
- "BadGroupName": "フォルダー名に以下の文字を含めることはできません:%n%n%1",
- "NoProgramGroupCheck2": "スタート メニュー フォルダーを作成しない(&D)",
- "WizardReady": "インストールの準備が完了しました",
- "ReadyLabel1": "コンピューターに [name] をインストールする準備が整いました。",
- "ReadyLabel2a": "[インストール] をクリックしてインストールを続行してください。あるいは、設定を確認または変更する場合は、[戻る] をクリックしてください。",
- "ReadyLabel2b": "[インストール] をクリックして、インストールを続行してください。",
- "ReadyMemoUserInfo": "ユーザー情報:",
- "ReadyMemoDir": "インストール先の場所:",
- "ReadyMemoType": "セットアップの種類:",
- "ReadyMemoComponents": "選択したコンポーネント:",
- "ReadyMemoGroup": "スタート メニューのフォルダー:",
- "ReadyMemoTasks": "追加タスク:",
- "WizardPreparing": "インストールの準備をしています",
- "PreparingDesc": "コンピューターに [name] をインストールする準備をしています。",
- "PreviousInstallNotCompleted": "前のプログラムのインストール/削除が完了していません。そのインストールを完了するためにコンピューターを再起動する必要があります。%n%nコンピューターを再起動した後、セットアップをもう一度実行して [name] のインストールを完了してください。",
- "CannotContinue": "セットアップを続行できません。終了するには [キャンセル] をクリックしてください。",
- "ApplicationsFound": "次に挙げるアプリケーションが、セットアップで更新する必要のあるファイルを使っています。これらのアプリケーションをセットアップ中に自動的に閉じるのを許可することをお勧めします。",
- "ApplicationsFound2": "次に挙げるアプリケーションが、セットアップで更新する必要のあるファイルを使っています。これらのアプリケーションをセットアップ中に自動的に閉じるのを許可することをお勧めします。インストールが完了した後、これらのアプリケーションの再起動が試行されます。",
- "CloseApplications": "アプリケーションを自動的に閉じる(&A)",
- "DontCloseApplications": "アプリケーションを閉じない(&D)",
- "ErrorCloseApplications": "すべてのアプリケーションを自動的に閉じることはできませんでした。続行する前に、セットアップで更新する必要のあるファイルを使っているすべてのアプリケーションを閉じることをお勧めします。",
- "WizardInstalling": "インストールしています",
- "InstallingLabel": "セットアップにより [name] がコンピューターにインストールされている間、しばらくお待ちください。",
- "FinishedHeadingLabel": "[name] セットアップ ウィザードを終了します",
- "FinishedLabelNoIcons": "コンピューターへの [name] のインストールが終了しました。",
- "FinishedLabel": "セットアップにより、コンピューターで [name] のインストールが終了しました。インストールされたアイコンを選択すると、アプリケーションを起動できる場合があります。",
- "ClickFinish": "セットアップを終了するには、[\\[]完了[\\]] をクリックしてください。",
- "FinishedRestartLabel": "[name] のインストールを完了するには、コンピューターを再起動する必要があります。今すぐ再起動しますか?",
- "FinishedRestartMessage": "[name] のインストールを完了するには、コンピューターを再起動する必要があります。%n%n今すぐ再起動しますか?",
- "ShowReadmeCheck": "はい、README ファイルを閲覧します",
- "YesRadio": "はい、コンピューターを今すぐ再起動します(&Y)",
- "NoRadio": "いいえ、コンピューターは後で自分で再起動します(&N)",
- "RunEntryExec": "%1 を実行",
- "RunEntryShellExec": "%1 を表示",
- "ChangeDiskTitle": "次のディスクが必要です",
- "SelectDiskLabel2": "ディスク %1 を挿入して [OK] をクリックしてください。%n%nこのディスクのファイルが、下に表示されているのとは別のフォルダーにある場合は、正しいパスを入力するか、[参照] をクリックします。",
- "PathLabel": "パス(&P):",
- "FileNotInDir2": "ファイル \"%1\" は \"%2\" に見つかりませんでした。正しいディスクを挿入するか、別のフォルダーを選択してください。",
- "SelectDirectoryLabel": "次のディスクの場所を指定してください。",
- "SetupAborted": "セットアップが完了しませんでした。%n%n問題を修正してから、もう一度セットアップを実行してください。",
- "EntryAbortRetryIgnore": "もう一度試すには [再試行] を、このまま続行するには [無視] を、インストールをキャンセルするには [中止] をクリックしてください。",
- "StatusClosingApplications": "アプリケーションを閉じています...",
- "StatusCreateDirs": "ディレクトリを作成しています...",
- "StatusExtractFiles": "ファイルを抽出しています...",
- "StatusCreateIcons": "ショートカットを作成しています...",
- "StatusCreateIniEntries": "INI エントリを作成しています...",
- "StatusCreateRegistryEntries": "レジストリ エントリを作成しています...",
- "StatusRegisterFiles": "ファイルを登録しています...",
- "StatusSavingUninstall": "アンインストール情報を保存しています...",
- "StatusRunProgram": "インストールを完了しています...",
- "StatusRestartingApplications": "アプリケーションを再起動しています...",
- "StatusRollback": "変更をロールバックしています...",
- "ErrorInternal2": "内部エラーです: %1",
- "ErrorFunctionFailedNoCode": "%1 が失敗しました",
- "ErrorFunctionFailed": "%1 が失敗しました。コード %2",
- "ErrorFunctionFailedWithMessage": "%1 が失敗しました。コード %2。%n%3",
- "ErrorExecutingProgram": "ファイルを実行できません:%n%1",
- "ErrorRegOpenKey": "レジストリ キー:%n%1\\%2 を開くときにエラーが発生しました",
- "ErrorRegCreateKey": "レジストリ キー:%n%1\\%2 を作成中にエラーが発生しました",
- "ErrorRegWriteKey": "レジストリ キー:%n%1\\%2 に書き込むときにエラーが発生しました",
- "ErrorIniEntry": "ファイル \"%1\" に INI エントリを作成中にエラーが発生しました。",
- "FileAbortRetryIgnore": "もう一度試すには [再試行] を、このファイルをスキップする (非推奨) には [無視] を、インストールをキャンセルするには [中止] をクリックしてください。",
- "FileAbortRetryIgnore2": "もう一度試すには [再試行] を、このまま続行する (非推奨) には [無視] を、インストールをキャンセルするには [中止] をクリックしてください。",
- "SourceIsCorrupted": "ソース ファイルが破損しています",
- "SourceDoesntExist": "ソース ファイル \"%1\" が存在しません",
- "ExistingFileReadOnly": "既存のファイルに読み取り専用のマークが付いています。%n%n読み取り専用属性を削除して再試行するには [再試行] を、このファイルをスキップするには [無視] を、インストールをキャンセルするには [中止] をクリックしてください。",
- "ErrorReadingExistingDest": "既存のファイルを読み取ろうとしてエラーが発生しました:",
- "FileExists": "ファイルが既に存在します。%n%n上書きしますか?",
- "ExistingFileNewer": "セットアップでインストールしようとしているファイルより、既存のファイルのほうが新しいファイルです。既存のファイルをそのまま残すことをお勧めします。%n%n既存のファイルを残しますか?",
- "ErrorChangingAttr": "既存のファイルの属性を変更しようとしてエラーが発生しました:",
- "ErrorCreatingTemp": "宛先ディレクトリにファイルを作成しようとしてエラーが発生しました:",
- "ErrorReadingSource": "ソース ファイルを読み取ろうとしてエラーが発生しました:",
- "ErrorCopying": "ファイルをコピーしようとしてエラーが発生しました:",
- "ErrorReplacingExistingFile": "既存のファイルを置き換えようとしてエラーが発生しました:",
- "ErrorRestartReplace": "RestartReplace が失敗しました:",
- "ErrorRenamingTemp": "宛先ディレクトリでファイルの名前を変更しようとしてエラーが発生しました:",
- "ErrorRegisterServer": "DLL/OCX を登録できません: %1",
- "ErrorRegSvr32Failed": "RegSvr32 が終了コード %1 で失敗しました",
- "ErrorRegisterTypeLib": "タイプ ライブラリを登録できません: %1",
- "ErrorOpeningReadme": "README ファイルを開こうとしてエラーが発生しました。",
- "ErrorRestartingComputer": "コンピューターを再起動できませんでした。手動で再起動してください。",
- "UninstallNotFound": "ファイル \"%1\" が存在しません。アンインストールできません。",
- "UninstallOpenError": "ファイル \"%1\" を開けませんでした。アンインストールできません",
- "UninstallUnsupportedVer": "アンインストール ログ ファイル \"%1\" が、このバージョンのアンインストーラーからは認識できない形式になっています。アンインストールできません",
- "UninstallUnknownEntry": "アンインストール ログに不明なエントリ (%1) が見つかりました",
- "ConfirmUninstall": "%1 を完全に削除しますか。拡張機能と設定は削除されません。",
- "UninstallOnlyOnWin64": "このインストールは、64 ビットの Windows 上でのみアンインストールできます。",
- "OnlyAdminCanUninstall": "このインストールは、管理特権を持つユーザーだけがアンインストールできます。",
- "UninstallStatusLabel": "%1 がコンピューターから削除されるまで、しばらくお待ちください。",
- "UninstalledAll": "%1 はコンピューターから正常に削除されました。",
- "UninstalledMost": "%1 のアンインストールが完了しました。%n%n一部の要素を削除できませんでした。それらの要素は、手動で削除できます。",
- "UninstalledAndNeedsRestart": "%1 のアンインストールを完了するには、コンピューターを再起動する必要があります。%n%n今すぐ再起動しますか?",
- "UninstallDataCorrupted": "\"%1\" ファイルが壊れています。アンインストールできません",
- "ConfirmDeleteSharedFileTitle": "共有ファイルを削除しますか?",
- "ConfirmDeleteSharedFile2": "次の共有ファイルがどのプログラムからも使用されなくなったことをシステムが検出しました。アンインストーラーによってこの共有ファイルを削除しますか?%n%nいずれかのプログラムがまだこのファイルを使っている場合にこのファイルを削除すると、それらのプログラムが正常に機能しなくなる恐れがあります。確かなことが分からない場合は、[いいえ] を選択してください。このファイルをシステムに残しても、問題は起きません。",
- "SharedFileNameLabel": "ファイル名:",
- "SharedFileLocationLabel": "場所:",
- "WizardUninstalling": "アンインストールの状態",
- "StatusUninstalling": "%1 をアンインストールしています...",
- "ShutdownBlockReasonInstallingApp": "%1 をインストールしています。",
- "ShutdownBlockReasonUninstallingApp": "%1 をアンインストールしています。",
- "NameAndVersion": "%1 バージョン %2",
- "AdditionalIcons": "追加アイコン:",
- "CreateDesktopIcon": "デスクトップ アイコンの作成(&D)",
- "CreateQuickLaunchIcon": "サイド リンク バー アイコンの作成(&Q)",
- "ProgramOnTheWeb": "Web 上の %1",
- "UninstallProgram": "%1 のアンインストール",
- "LaunchProgram": "%1 の起動",
- "AssocFileExtension": "%1 をファイル拡張子 %2 に関連付ける(&A)",
- "AssocingFileExtension": "%1 をファイル拡張子 %2 に関連付けています...",
- "AutoStartProgramGroupDescription": "スタートアップ:",
- "AutoStartProgram": "%1 を自動的に開始",
- "AddonHostProgramNotFound": "選択されたフォルダーに %1 は見つかりませんでした。%n%nこのまま続行しますか?"
- },
- "vscode/vscode/": {
- "FinishedLabel": "セットアップにより、コンピューターで [name] のインストールが終了しました。インストールされたショートカットを選択すると、アプリケーションを起動できる場合があります。",
- "ConfirmUninstall": "%1 とそのすべてのコンポーネントを完全に削除しますか?",
- "AdditionalIcons": "追加アイコン:",
- "CreateDesktopIcon": "デスクトップ アイコンの作成(&D)",
- "CreateQuickLaunchIcon": "サイド リンク バー アイコンの作成(&Q)",
- "AddContextMenuFiles": "エクスプローラーのファイル コンテキスト メニューに [%1 で開く] アクションを追加する",
- "AddContextMenuFolders": "エクスプローラーのディレクトリ コンテキスト メニューに [%1 で開く] アクションを追加する",
- "AssociateWithFiles": "サポートされているファイルの種類のエディターとして、%1 を登録する",
- "AddToPath": "PATH に追加 (シェルの再起動が必要)",
- "RunAfter": "インストール後に %1 を実行する",
- "Other": "その他:",
"SourceFile": "%1 ソース ファイル",
- "OpenWithCodeContextMenu": "%1 で開く(&I)"
+ "UpdatingVisualStudioCode": "Visual Studio Code を更新しています..."
},
"vs/code/electron-main/app": {
"cancel": "いいえ(&&N)",
- "confirmOpenDetail": "お客様がこの要求を開始しなかった場合は、システムに対して攻撃が試行されている可能性があります。この要求を明示的に開始していない場合は、[いいえ] をクリックしてください",
- "confirmOpenMessage": "外部アプリケーションが {1} で '{0}' を開こうとしています。このファイルまたはフォルダーを開きますか?",
- "open": "はい(&&Y)",
- "trace.detail": "問題点を作成し、次のファイルを手動で添付してください:\r\n{0}",
- "trace.message": "トレースが正常に作成されました。",
- "trace.ok": "OK(&&O)"
+ "confirmOpenDetail": "ご自身でこの要求を開始しなかった場合は、システムに対して攻撃が試行されている可能性があります。この要求を明示的に開始していない場合は、[いいえ] をクリックしてください",
+ "confirmOpenMessageFileOrFolder": "外部アプリケーションが {1} で '{0}' を開こうとしています。このファイルまたはフォルダーを開きますか?",
+ "confirmOpenMessageFolder": "外部アプリケーションが {0} で '{1}' を開こうとしています。このフォルダーを開きますか?",
+ "confirmOpenMessageWorkspace": "外部アプリケーションが {0} で '{1}' を開こうとしています。このワークスペース ファイルを開きますか?",
+ "doNotAskAgainLocal": "要求なしにローカル パスを開くことを許可する",
+ "doNotAskAgainRemote": "要求なしにリモート パスを開くことを許可する",
+ "open": "はい(&&Y)"
},
"vs/code/electron-main/main": {
"close": "閉じる(&&C)",
- "secondInstanceAdmin": "{0} の 2 つ目のインスタンスが既に管理者として実行されています。",
+ "mainLog": "メイン",
+ "secondInstanceAdmin": "{0} の別のインスタンスが既に管理者として実行されています。",
"secondInstanceAdminDetail": "他のインスタンスを閉じてからもう一度お試しください。",
"secondInstanceNoResponse": "{0} の別のインスタンスが実行中ですが応答していません",
"secondInstanceNoResponseDetail": "他すべてのインスタンスを閉じてからもう一度お試しください。",
"startupDataDirError": "プログラム ユーザー データを書き込めませんでした。",
- "startupUserDataAndExtensionsDirErrorDetail": "{0}\r\n\r\n次のディレクトリが書き込み可能であることをご確認ください。\r\n\r\n{1}"
- },
- "vs/code/electron-sandbox/issue/issueReporterMain": {
- "bugDescription": "問題を再現するための正確な手順を共有します。このとき、期待する結果と実際の結果を提供してください。GitHub-flavored Markdown に対応しています。GitHub 上で確認するときに問題を編集してスクリーンショットを追加できます。",
- "bugReporter": "バグ報告",
- "closed": "クローズ済み",
- "createOnGitHub": "GitHub で作成",
- "description": "説明",
- "disabledExtensions": "拡張機能が無効化されています",
- "extension": "拡張機能",
- "featureRequest": "機能要求",
- "featureRequestDescription": "見てみたいその機能についての詳細を入力してください。GitHub-flavored Markdown に対応しています。GitHub 上で確認するときに問題を編集してスクリーンショットを追加できます。",
- "hide": "非表示",
- "loadingData": "データを読み込んでいます...",
- "marketplace": "拡張機能マーケットプレース",
- "noCurrentExperiments": "現在の実験はありません。",
- "noSimilarIssues": "類似の問題は見つかりませんでした",
- "open": "開く",
- "pasteData": "必要なデータが送信するには大きすぎたため、クリップボードに書き込みました。貼り付けてください。",
- "performanceIssue": "パフォーマンスの問題",
- "performanceIssueDesciption": "このパフォーマンスの問題はいつ発生しましたか? それは起動時ですか? それとも特定のアクションのあとですか? GitHub-flavored Markdown に対応しています。GitHub 上で確認するときに問題を編集してスクリーンショットを追加できます。",
- "previewOnGitHub": "GitHub 上でプレビュー",
- "rateLimited": "GitHub クエリの制限を超えました。お待ちください。",
- "selectSource": "ソースの選択",
- "show": "表示",
- "similarIssues": "類似の問題",
- "stepsToReproduce": "再現手順",
- "unknown": "不明",
- "vscode": "Visual Studio Code"
+ "startupUserDataAndExtensionsDirErrorDetail": "{0}\r\n\r\n次のディレクトリが書き込み可能であることをご確認ください。\r\n\r\n{1}",
+ "statusWarning": "警告: --status 引数は、{0} が既に実行中の場合にのみ使用できます。{0} の起動後にもう一度実行してください。"
},
- "vs/code/electron-sandbox/issue/issueReporterPage": {
- "chooseExtension": "拡張機能",
- "completeInEnglish": "フォームに英語で記入してください。",
- "descriptionEmptyValidation": "説明が必要です。",
- "details": "詳細を入力してください。",
- "disableExtensions": "すべての拡張機能を無効にしてウィンドウを再読みする",
- "disableExtensionsLabelText": "{0} を実行後に問題を再現してみてください。拡張機能がアクティブな場合にのみ問題が再現する場合は、拡張機能の問題である可能性があります。",
- "extensionWithNoBugsUrl": "問題を報告するための URL が指定されていないため、問題レポーターはこの拡張機能の問題を作成できません。他の手順が利用可能かどうかを確認するには、この拡張機能のマーケットプレース ページをご確認ください。",
- "extensionWithNonstandardBugsUrl": "問題レポーターでは、この拡張機能の問題を作成できません。問題を報告するには、{0} にアクセスしてください。",
- "issueSourceEmptyValidation": "問題のソースが必要です。",
- "issueSourceLabel": "記録",
- "issueTitleLabel": "タイトル",
- "issueTitleRequired": "題名を入力してください",
- "issueTypeLabel": "これは",
- "sendExperiments": "A/B 実験情報を含める",
- "sendExtensions": "自分の有効な拡張機能を含める",
- "sendProcessInfo": "自分が現在実行中のプロセスを含める",
- "sendSystemInfo": "自分のシステム情報を含める",
- "sendWorkspaceInfo": "自分のワークスペースのメタデータを含める",
- "show": "表示",
- "titleEmptyValidation": "タイトルが必要です。",
- "titleLengthValidation": "タイトルが長すぎます。"
+ "vs/code/electron-utility/sharedProcess/sharedProcessMain": {
+ "networkk": "ネットワーク",
+ "sharedLog": "共有済み"
},
- "vs/code/electron-sandbox/processExplorer/processExplorerMain": {
- "copy": "コピー",
- "copyAll": "すべてコピー",
- "cpu": "CPU (%)",
- "debug": "デバッグ",
- "forceKillProcess": "プロセスの強制中止",
- "killProcess": "プロセスの中止",
- "memory": "メモリ (MB)",
- "name": "プロセス名",
- "pid": "PID"
+ "vs/code/node/cliProcessMain": {
+ "cli": "CLI"
},
"vs/workbench/api/browser/mainThreadAuthentication": {
- "accountLastUsedDate": "このアカウントの最終使用は {0}",
- "allow": "許可",
+ "addClientRegistrationDetails": "クライアント登録の詳細の追加",
+ "allow": "許可(&&A)",
"cancel": "キャンセル",
+ "clientIdPlaceholder": "OAuth クライアント ID (azye39d...)",
+ "clientIdPrompt": "次のリダイレクト URI に登録されている既存のクライアント ID を入力します: http://127.0.0.1:33418、https://vscode.dev/redirect",
+ "clientIdRequired": "クライアント ID は必須です",
+ "clientSecretPlaceholder": "OAuth クライアント シークレット (wer32o50f...) または空白のままにする",
+ "clientSecretPrompt": "(省略可能) クライアント ID '{0}' に関連付けられている既存のクライアント シークレットを入力するか、このフィールドを空白のままにします",
"confirmLogin": "拡張機能 '{0}' が {1} を使用してサインインしようとしています。",
"confirmRelogin": "拡張機能 '{0}' では {1} を使用してサインインするように求めています。",
- "manageExtensions": "このアカウントにアクセスできる拡張機能を選択する",
- "manageTrustedExtensions": "信頼された拡張機能の管理",
- "manageTrustedExtensions.cancel": "キャンセル",
- "noTrustedExtensions": "このアカウントはまだどの拡張機能にも使用されていません。",
- "notUsed": "このアカウントを使用したことがない",
- "signOut": "サインアウト",
- "signOutMessage": "アカウント '{0}' は、以下によって使用されていました:\r\n\r\n{1}\r\n\r\nこれらの拡張機能からサインアウトしますか?",
- "signOutMessageSimple": "'{0}' からサインアウトしますか?",
- "signedOut": "正常にサインアウトされました。"
+ "copyAndContinue": "コピーして続行",
+ "dcrCopyUrlsAndProceed": "URI をコピーして続行する",
+ "dcrFailedToCopy": "リダイレクト URI をクリップボードにコピーできませんでした。",
+ "dcrNotSupported": "動的クライアント登録はサポートされていません",
+ "dcrNotSupportedDetail": "承認サーバー '{0}' は、自動クライアント登録をサポートしていません。クライアント登録 (クライアント ID) を手動で指定して続行しますか?\r\n\r\n注: OAuth アプリケーションを登録するときは、次のリダイレクト URI を必ず含めます:\r\n{1}",
+ "deviceCodeDetail": "コード: {0}\r\n\r\n認証を完了するには、{1} に移動し、上記のコードを入力してください。",
+ "deviceCodeTitle": "デバイス コード認証",
+ "failedToOpenUri": "{0} を開くことができませんでした",
+ "incorrectAccount": "間違ったアカウントが検出されました",
+ "incorrectAccountDetail": "選択したアカウント {0} が、要求されたアカウント {1} と一致しません。",
+ "keep": "{0} を保持",
+ "learnMore": "詳細情報",
+ "loginWith": "{0} でログイン",
+ "no": "いいえ",
+ "yes": "はい"
+ },
+ "vs/workbench/api/browser/mainThreadChatSessions": {
+ "chatEditorContributionName": "{0}",
+ "interruptActiveResponse": "アクティブなセッションを中断しますか?"
},
"vs/workbench/api/browser/mainThreadCLICommands": {
"cannot be installed": "'{0}' 拡張機能は、このセットアップでは実行されないように宣言されているため、インストールできません。"
@@ -2607,7 +3281,11 @@
"commentsViewIcon": "コメント ビューのアイコンを表示します。"
},
"vs/workbench/api/browser/mainThreadCustomEditors": {
- "defaultEditLabel": "編集"
+ "defaultEditLabel": "編集",
+ "vetoExtHostRestart": "'{0}' 用に指定された拡張機能エディターがまだ開いているため、それ以外の場合は閉じます。"
+ },
+ "vs/workbench/api/browser/mainThreadEditSessionIdentityParticipant": {
+ "timeout.onWillCreateEditSessionIdentity": "10000 ミリ秒後に onWillCreateEditSessionIdentity-event が中止されました"
},
"vs/workbench/api/browser/mainThreadExtensionService": {
"disabledDep": "'{0}' 拡張機能を有効できません。この拡張機能は、無効になっている '{1}' 拡張機能に依存しています。拡張機能を有効にしてウィンドウを再読み込みしますか。",
@@ -2619,7 +3297,7 @@
"reload": "ウィンドウの再読み込み",
"reload window": "'{0}' 拡張機能を有効できません。この拡張機能は、読み込まれていない '{1}' 拡張機能に依存しています。ウィンドウを再読み込みしてこの拡張機能を読み込みますか。",
"restrictedMode": "制限モードでサポートされていない '{1}' 拡張機能に依存しているため、'{0}' 拡張機能をアクティブ化できません",
- "uninstalledDep": "'{0}' 拡張機能を有効できません。この拡張機能は、インストールされていない '{1}' 拡張機能に依存しています。拡張機能をインストールしてウィンドウを再読み込みしますか。",
+ "uninstalledDep": "'{0}' 拡張機能を有効にできません。この拡張機能は、'{2}' のインストールされていない '{1}' 拡張機能に依存しています。その拡張機能をインストールしてウィンドウを再読み込みしますか?",
"unknownDep": "'{0}' 拡張機能を有効にできません。それが不明な '{1}' 拡張機能に依存しているためです。"
},
"vs/workbench/api/browser/mainThreadFileSystemEventService": {
@@ -2639,15 +3317,36 @@
"msg-delete": "'ファイルの削除' の参加者を実行しています...",
"msg-rename": "'ファイル名の変更' の参加者を実行しています...",
"msg-write": "'ファイルの書き込み' の参加者を実行しています...",
- "ok": "OK",
- "preview": "プレビューの表示"
+ "ok": "OK(&&O)",
+ "preview": "プレビューの表示(&&P)"
+ },
+ "vs/workbench/api/browser/mainThreadLanguageModels": {
+ "confirmLanguageModelAccess": "拡張機能 '{0}' は、{1} によって提供される言語モデルにアクセスしようとしています。",
+ "languageModelsAccountId": "言語モデル"
+ },
+ "vs/workbench/api/browser/mainThreadMcp": {
+ "allow": "許可(&&A)",
+ "confirmLogin": "MCP サーバー定義 '{0}' が、{1} に認証しようとしています。",
+ "confirmRelogin": "MCP サーバー定義 '{0}' が、{1} への認証を求めています。",
+ "incorrectAccount": "間違ったアカウントが検出されました",
+ "incorrectAccountDetail": "選択したアカウント {0} が、要求されたアカウント {1} と一致しません。",
+ "keep": "{0} を保持",
+ "loginWith": "{0} でログイン",
+ "mcpAuthSessionRemoved": "{0} の認証セッションが削除されました。サーバーを停止します"
},
"vs/workbench/api/browser/mainThreadMessageService": {
"cancel": "キャンセル",
"defaultSource": "拡張子",
- "extensionSource": "{0} (拡張機能)",
"manageExtension": "拡張機能の管理",
- "ok": "OK"
+ "ok": "OK(&&O)"
+ },
+ "vs/workbench/api/browser/mainThreadNotebookSaveParticipant": {
+ "timeout.onWillSave": "onWillSaveNotebookDocument-event は 1750ms 後に中止されました"
+ },
+ "vs/workbench/api/browser/mainThreadOutputService": {
+ "status.showOutput": "出力の表示",
+ "status.showOutputAria": "{0} 出力チャネルの表示",
+ "status.showOutputTooltip": "{0} 出力チャネルの表示"
},
"vs/workbench/api/browser/mainThreadProgress": {
"manageExtension": "拡張機能の管理"
@@ -2676,7 +3375,22 @@
"folderStatusMessageRemoveMultipleFolders": "拡張機能 '{0}' は {1} フォルダーをワークスペースから削除しました",
"folderStatusMessageRemoveSingleFolder": "拡張機能 '{0}' は 1 つのフォルダーをワークスペースから削除しました"
},
+ "vs/workbench/api/browser/statusBarExtensionPoint": {
+ "accessibilityInformation": "ステータス バー エントリがフォーカスされているときに使用するロールと Aria ラベルを定義します。",
+ "accessibilityInformation.label": "ステータス バー エントリの Aria ラベル。既定値はエントリのテキストです。",
+ "accessibilityInformation.role": "スクリーン リーダーが操作する方法を定義するステータス バー エントリのロールです。Aria ロールの詳細については、https://w3c.github.io/aria/#widget_roles をご覧ください",
+ "alignment": "ステータス バー エントリの配置。",
+ "command": "ステータス バーエントリがクリックされたときに実行するコマンド。",
+ "id": "ステータス バー エントリの識別子。拡張機能内で一意である必要があります。'vscode.window.createStatusBarItem(id, ...)'-API を呼び出すときには、同じ値を使用する必要があります",
+ "invalid": "ステータス バー項目のコントリビューションが無効です。",
+ "name": "'Python Language Indicator'、'Git Status' などのようなエントリの名前。名前の長さを短くし、ユーザーがステータス バーアイテムの内容を解釈できる十分な説明を付けてみてください。",
+ "priority": "ステータス バーエントリの優先度。値が大きいほど、項目がより左側に表示されます。",
+ "text": "エントリに表示するテキスト。'Hello $(globe)!' のような '$()' 構文を利用して、テキストにアイコンを埋め込むことができます",
+ "tooltip": "エントリのヒント テキスト。",
+ "vscode.extension.contributes.statusBarItems": "ステータス バーにアイテムを投稿します。"
+ },
"vs/workbench/api/browser/viewsExtensionPoint": {
+ "RequiresChatSessionsProposedAPI": "ビュー コンテナー '{0}' には 'enabledApiProposals: [\"chatSessionsProvider\"]' が必要です。",
"ViewContainerDoesnotExist": "ビュー コンテナー '{0}' が存在しません。このコンテナーに登録されているすべてのビューは 'エクスプローラー' に追加されます。",
"ViewContainerRequiresProposedAPI": "ビュー コンテナー '{0}' には'enabledApiProposals: [\"contribViewsRemote\"]' を 'Remote' に追加する必要があります。",
"duplicateView1": "同じ ID '{0}' を持つ複数のビューを登録することはできません。",
@@ -2688,15 +3402,25 @@
"requirenonemptystring": "プロパティ '{0}' は必須であり、空でない値を持つ 'string' 型である必要があります",
"requirestring": "プロパティ '{0}' は必須で、'string' 型である必要があります",
"unknownViewType": "ビューの種類 '{0}' が不明です。",
+ "view container id": "ID",
+ "view container location": "場所",
+ "view container title": "タイトル",
+ "view id": "ID",
+ "view name title": "名前",
"viewcontainer requirearray": "ビュー コンテナーは配列である必要があります",
+ "views": "ビュー",
+ "views.agentSessions": "アクション バーのエージェント セッション コンテナーにビューを提供します。このコンテナーに提供するには、'chatSessionsProvider' API 提案を有効にする必要があります。",
"views.container.activitybar": "アクティビティ バーにビュー コンテナーを提供します",
"views.container.panel": "パネルにビューのコンテナーを提供する",
+ "views.container.secondarySidebar": "セカンダリ サイド バーにビュー コンテナーを追加する",
"views.contributed": "コントリビューション ビュー コンテナーにビューを提供します",
"views.debug": "アクション バーのデバッグ コンテナーにビューを提供します",
"views.explorer": "アクション バーのエクスプローラー コンテナーにビューを提供します",
- "views.remote": "アクティビティ バーでリモート コンテナーへのビューに参加します。このコンテナーに参加するには、enableProposedApi をオンにする必要があります",
+ "views.remote": "アクション バーのリモート コンテナーにビューを提供します。このコンテナーに提供するには、'contribViewsRemote' API 提案を有効にする必要があります。",
"views.scm": "アクション バーのSCM コンテナーにビューを提供します",
"views.test": "アクション バーのテスト コンテナーにビューを提供します",
+ "viewsContainers": "コンテナーの表示",
+ "vscode.extension.contributes.view.accessibilityHelpContent": "このビューで [アクセシビリティのヘルプ] ダイアログが呼び出されると、このコンテンツがマークダウン文字列としてユーザーに表示されます。キー バインドは、 の形式で指定すると解決されます。キー バインドがない場合は、その旨が示され、このコマンドは構成を簡単に行うためにクイックピックに含まれます。",
"vscode.extension.contributes.view.contextualTitle": "ビューが元の場所から移動された時に関する、人が判読できるコンテキスト。既定では、ビューのコンテナー名が使用されます。",
"vscode.extension.contributes.view.group": "ビューレット内の入れ子にされたグループ",
"vscode.extension.contributes.view.icon": "ビュー アイコンへのパス。ビュー アイコンは、ビューの名前を表示できないときに表示されます。任意の種類の画像ファイルを使用できますが、アイコンは SVG にすることをお勧めします。",
@@ -2716,20 +3440,29 @@
"vscode.extension.contributes.views.containers.id": "'views' コントリビューション ポイントを使用して提供できるコンテナーを識別するための一意の ID",
"vscode.extension.contributes.views.containers.title": "コンテナーの表示に使用する、人が判別できる文字列",
"vscode.extension.contributes.viewsContainers": "ビュー コンテナーをエディターに提供します",
- "vscode.extension.contributs.view.size": "ビューのサイズ。数値を使用すると css 'flex' プロパティのように動作し、ビューが最初に表示されたときにサイズによって初期サイズが設定されます。サイド バーでは、これはビューの高さです。"
+ "vscode.extension.contributs.view.size": "ビューの初期サイズ。サイズは css の 'flex' プロパティと同様に動作し、ビューが最初に表示されたときの初期サイズを設定します。サイド バーでは、これはビューの高さです。この値は、同じ拡張機能がビューとビュー コンテナーの両方を所有している場合にのみ優先されます。"
},
"vs/workbench/api/common/configurationExtensionPoint": {
+ "accessibility": "アクセシビリティ設定",
+ "advanced": "ユーザーが詳細設定を表示することを選択しない限り、設定エディターでは詳細設定は既定で非表示になります。",
"config.property.defaultConfiguration.warning": "'{0}'の構成の既定値を登録できません。コンピューターオーバーライド可能、ウィンドウ、リソース、および言語のオーバーライド可能なスコープ設定の既定値のみがサポートされます。",
"config.property.duplicate": "'{0}' を登録できません。このプロパティは既に登録されています。",
+ "config.property.preventDefaultConfiguration.warning": "'{0}' の構成の既定値を登録できません。この設定では、構成の既定値の提供は許可されません。",
+ "default": "既定",
+ "description": "説明",
+ "experimental": "試験段階の設定は変更される可能性があり、将来のリリースで削除される可能性があります。",
"invalid.allOf": "'configuration.allOf' は非推奨で使用できなくなります。代わりに 'configuration' コントリビューション ポイントに複数の構成セクションを配列として渡します。",
"invalid.properties": "'configuration.properties' は、オブジェクトである必要があります",
"invalid.property": "configuration.properties property '{0}' は、オブジェクトである必要があります",
"invalid.title": "'configuration.title' は、文字列である必要があります",
+ "preview": "プレビュー設定を使用して、新機能を最終処理する前に試すことができます。",
"scope.application.description": "ユーザー設定でのみ行える構成。",
"scope.deprecationMessage": "設定すると、プロパティは非推奨としてマークされ、指定したメッセージが説明として表示されます。",
"scope.description": "構成が適用可能なスコープ。使用可能なスコープは、`application`、`machine`、`window`、`resource`、`machine-overridable` です。",
"scope.editPresentation": "指定した場合、文字列設定のプレゼンテーションの形式を制御します。",
"scope.enumDescriptions": "列挙値の説明",
+ "scope.enumItemLabels": "設定エディターに表示される列挙型の値のラベル。指定した場合、{0} の値はラベルの後に引き続き表示されますが、目立たなくなります。",
+ "scope.ignoreSync": "有効にすると、[設定の同期] をしても、既定ではこの構成のユーザー値は同期されません。",
"scope.language-overridable.description": "言語固有の設定で構成できるリソース構成です。",
"scope.machine-overridable.description": "ワークスペースまたはフォルダーの設定でも行えるマシン構成。",
"scope.machine.description": "ユーザー設定またはリモート設定でのみ構成できる構成。",
@@ -2740,8 +3473,13 @@
"scope.order": "指定した場合、同じカテゴリ内の他の設定に対して相対的に、この設定の順序を指定します。順序プロパティを含む設定は、このプロパティが設定されていない設定よりも前に配置されます。",
"scope.resource.description": "ユーザー、リモート、ワークスペース、またはフォルダーの設定で行える構成。",
"scope.singlelineText.description": "値は InputBox に表示されます。",
+ "scope.tags": "設定を下に配置するタグの一覧。これにより、タグを設定エディターで検索できるようになります。たとえば、`experimental` タグを指定すると、`@tag:experimental` を検索することで、設定を検索できます。",
"scope.window.description": "ユーザー、リモート、またはワークスペースの設定で行える構成。",
+ "setting name": "ID",
+ "settings": "設定",
+ "telemetry": "テレメトリ設定",
"unknownWorkspaceProperty": "不明なワークスペース構成のプロパティ",
+ "usesOnlineServices": "オンライン サービスを使用する設定",
"vscode.extension.contributes.configuration": "構成の設定を提供します。",
"vscode.extension.contributes.configuration.order": "指定した場合、設定におけるこのカテゴリを、他のカテゴリに対して相対的に順序を指定します。",
"vscode.extension.contributes.configuration.properties": "構成のプロパティの説明です。",
@@ -2751,6 +3489,7 @@
"workspaceConfig.extensions.description": "ワークスペースの拡張機能",
"workspaceConfig.folders.description": "ワークスペースで読み込まれるフォルダーのリスト。",
"workspaceConfig.launch.description": "ワークスペースの起動構成",
+ "workspaceConfig.mcp.description": "モデル コンテキスト プロトコル サーバー構成",
"workspaceConfig.name.description": "フォルダーにつけるオプションの名前。",
"workspaceConfig.path.description": "ファイルパス。例: `/root/folderA` または `./folderA` のようなワークスペース ファイルの場所に対して解決される相対パス。",
"workspaceConfig.remoteAuthority": "ワークスペースが配置されているリモート サーバー。",
@@ -2759,6 +3498,13 @@
"workspaceConfig.transient": "一時ワークスペースは、再起動中や再読み込み中に表示されなくなります。",
"workspaceConfig.uri.description": "フォルダーの URI"
},
+ "vs/workbench/api/common/extHostAuthentication": {
+ "authenticatingTo": "'{0}' への認証",
+ "completeAuth": "開いたブラウザー ウィンドウで認証を完了します。",
+ "continueWith": "'{0}' への認証がまだ完了していません。別の方法を試しますか?({1})",
+ "url handler": "URL ハンドラー",
+ "userCanceledContinue": "'{0}' への認証に問題がありますか?別の方法を試しますか?({1})"
+ },
"vs/workbench/api/common/extHostDiagnostics": {
"limitHit": "{0} 個の追加のエラーと警告が表示されていません。"
},
@@ -2766,19 +3512,38 @@
"extensionTestError": "パス {0} は有効な拡張機能テスト ランナーを指していません。",
"extensionTestError1": "Test Runner を読み込めません。"
},
- "vs/workbench/api/common/extHostProgress": {
- "extensionSource": "{0} (拡張機能)"
+ "vs/workbench/api/common/extHostLanguageFeatures": {
+ "defaultDropLabel": "'{0}' 拡張機能を使用して削除する",
+ "defaultPasteLabel": "`{0}` 拡張子を使用して貼り付ける"
+ },
+ "vs/workbench/api/common/extHostLanguageModels": {
+ "chatAccessWithJustification": "正当な理由: {1}"
+ },
+ "vs/workbench/api/common/extHostLogService": {
+ "local": "拡張機能ホスト",
+ "remote": "拡張ホスト (リモート)",
+ "worker": "拡張ホスト (ワーカー)"
+ },
+ "vs/workbench/api/common/extHostNotebook": {
+ "err.readonly": "読み取り専用ファイル '{0}' を変更できません",
+ "fileModifiedError": "ファイルは次の時点以後に更新されました"
},
"vs/workbench/api/common/extHostStatusBar": {
"extensionLabel": "{0} (拡張機能)",
"status.extensionMessage": "拡張機能のステータス"
},
+ "vs/workbench/api/common/extHostTelemetry": {
+ "extensionTelemetryLog": "拡張機能テレメトリ {0}"
+ },
"vs/workbench/api/common/extHostTerminalService": {
"launchFail.idMissingOnExtHost": "拡張機能ホストに ID {0} のターミナルが見つかりませんでした"
},
"vs/workbench/api/common/extHostTreeViews": {
- "treeView.duplicateElement": "id {0} の要素はすでに登録されています。",
- "treeView.notRegistered": "ID '{0}' のツリー ビューは登録されていません。"
+ "treeView.duplicateElement": "id {0} の要素はすでに登録されています。"
+ },
+ "vs/workbench/api/common/extHostTunnelService": {
+ "tunnelPrivacy.private": "非公開",
+ "tunnelPrivacy.public": "公開"
},
"vs/workbench/api/common/extHostWorkspace": {
"updateerror": "拡張機能 '{0}' はワークスペースのフォルダーを更新できませんでした: {1}"
@@ -2787,79 +3552,118 @@
"contributes.jsonValidation": "JSON スキーマ構成を提供します。",
"contributes.jsonValidation.fileMatch": "\"package.json\" や \"*.launch\" などの一致するファイル パターン (またはパターン配列)。除外パターンは '!' で始まります。",
"contributes.jsonValidation.url": "スキーマ URL ('http:', 'https:') または拡張機能フォルダーへの相対パス ('./') です。",
+ "fileMatch": "対象ファイル",
"invalid.fileMatch": "'configuration.jsonValidation.fileMatch' は、文字列または文字列の配列として定義する必要があります。",
"invalid.jsonValidation": "'configuration.jsonValidation' は配列でなければなりません",
"invalid.path.1": "`contributes.{0}.url` ({1}) は拡張機能のフォルダー ({2}) に含められることが期待されます。これは拡張機能の移植性を損なう可能性があります。",
"invalid.url": "'configuration.jsonValidation.url' は、URL または相対パスでなければなりません",
"invalid.url.fileschema": "'configuration.jsonValidation.url' は正しくない相対 URL です: {0}",
- "invalid.url.schema": "拡張機能内のスキーマを参照するには、'configuration.jsonValidation.url' は絶対 URL であるか、'./' から始まらなければなりません。"
+ "invalid.url.schema": "拡張機能内のスキーマを参照するには、'configuration.jsonValidation.url' は絶対 URL であるか、'./' から始まらなければなりません。",
+ "jsonValidation": "JSON 検証",
+ "schema": "スキーマ"
+ },
+ "vs/workbench/api/node/extHostAuthentication": {
+ "completeAuth": "開いたブラウザー ウィンドウで認証を完了します。",
+ "device code": "デバイス コード",
+ "loopback": "Loopback サーバー",
+ "waitingForAuth": "新しいタブで [{0}]({0}) を開き、ワンタイム コードを貼り付けます: {1}"
},
"vs/workbench/api/node/extHostDebugService": {
"debug.terminal.title": "デバッグ プロセス"
},
- "vs/workbench/api/node/extHostTunnelService": {
- "tunnelPrivacy.private": "非公開",
- "tunnelPrivacy.public": "公開"
+ "vs/workbench/api/test/browser/mainThreadTreeViews.test": {
+ "Test View 1": "テスト ビュー 1",
+ "test": "テスト"
},
"vs/workbench/browser/actions/developerActions": {
+ "global": "グローバル",
"inspect context keys": "コンテキスト キーの検査",
- "keyboardShortcutsFormat.command": "コマンド タイトル。",
- "keyboardShortcutsFormat.commandAndKeys": "コマンドのタイトルとキー。",
- "keyboardShortcutsFormat.commandWithGroup": "コマンド タイトルには、そのグループのプレフィックスが付いています。",
- "keyboardShortcutsFormat.commandWithGroupAndKeys": "コマンドのタイトルとキー。コマンドの前にグループが付きます。",
- "keyboardShortcutsFormat.keys": "キー。",
+ "largeStorageItemDetail": "スコープ: 、ターゲット: {0} {1}",
"logStorage": "ログ ストレージ データベースの内容",
"logWorkingCopies": "作業コピーをログする",
+ "machine": "コンピューター",
+ "policyDiagnostics": "ポリシー診断",
+ "profile": "プロファイル",
+ "removeLargeStorageDatabaseEntries": "大きなストレージ データベース エントリを削除...",
+ "removeLargeStorageEntriesButtonLabel": "削除(&&R)",
+ "removeLargeStorageEntriesConfirmRemove": "選択したストレージ エントリをデータベースから削除しますか?",
+ "removeLargeStorageEntriesConfirmRemoveDetail": "{0}\r\n\r\nこの操作は元に戻すことができないので、データが失われる可能性があります。",
+ "removeLargeStorageEntriesPickerButton": "削除",
+ "removeLargeStorageEntriesPickerDescriptionNoEntries": "削除する大きなストレージ エントリはありません。",
+ "removeLargeStorageEntriesPickerPlaceholder": "ストレージから削除する大きなエントリを選択する",
"screencastMode.fontSize": "スクリーンキャスト モードのキーボードのフォント サイズ (ピクセル) を制御します。",
+ "screencastMode.keyboardOptions.description": "スクリーンキャスト モードでキーボード オーバーレイをカスタマイズするためのオプション。",
+ "screencastMode.keyboardOptions.showCommandGroups": "コマンドが表示されるときに、コマンド グループ名を表示します。",
+ "screencastMode.keyboardOptions.showCommands": "コマンド名を表示します。",
+ "screencastMode.keyboardOptions.showKeybindings": "キーボード ショートカットを表示します。",
+ "screencastMode.keyboardOptions.showKeys": "生キーを表示します。",
+ "screencastMode.keyboardOptions.showSingleEditorCursorMoves": "1 つのエディター カーソル移動コマンドを表示します。",
"screencastMode.keyboardOverlayTimeout": "キーボード オーバーレイをスクリーンキャスト モードで表示する時間 (ミリ秒単位) を制御します。",
- "screencastMode.keyboardShortcutsFormat": "ショートカットを表示するときにキーボード オーバーレイに表示される内容を制御します。",
"screencastMode.location.verticalPosition": "スクリーンキャスト モードの縦方向のオフセットをワークベンチの高さのパーセンテージとして下部からオーバーレイするかどうかを制御します。",
"screencastMode.mouseIndicatorColor": "スクリーンキャスト モードでマウス インジケーターの色を 16 進数 (#RGB、#RGBA、#RRGGBB、#RRGGBBAA) で制御します。",
"screencastMode.mouseIndicatorSize": "スクリーンキャスト モードのマウス インジケーターのサイズ (ピクセル単位) を制御します。",
- "screencastMode.onlyKeyboardShortcuts": "スクリーンキャスト モードでのみキーボード ショートカットを表示します。",
"screencastModeConfigurationTitle": "スクリーンキャスト モード",
- "toggle screencast mode": "スクリーンキャスト モードの切り替え"
+ "snapshotTrackedDisposables": "スナップショット追跡済み破棄可能",
+ "startTrackDisposables": "破棄可能な処理の追跡を開始する",
+ "stopTrackDisposables": "破棄可能な物の追跡を停止する",
+ "storageLogDialogDetails": "メニューから開発者ツールを開き、[コンソール] タブを選択します。",
+ "storageLogDialogMessage": "ストレージ データベースの内容が開発者ツールに記録されました。",
+ "toggle screencast mode": "スクリーンキャスト モードの切り替え",
+ "user": "ユーザー",
+ "workspace": "ワークスペース"
},
"vs/workbench/browser/actions/helpActions": {
+ "askVScode": "@vscode に確認してください",
+ "getStartedWithAccessibilityFeatures": "アクセシビリティ機能の概要",
"keybindingsReference": "キーボード ショートカットの参照",
"miDocumentation": "参照資料(&&D)",
"miKeyboardShortcuts": "キーボード ショートカットの参照(&&K)",
"miLicense": "ライセンスの表示(&&L)",
"miPrivacyStatement": "プライバシーに関する声明(&&Y)",
"miTipsAndTricks": "ヒントとトリビア(&&C)",
- "miTwitter": "Twitter でフォローする(&&J)",
"miUserVoice": "機能要求の検索(&&S)",
"miVideoTutorials": "ビデオ チュートリアル(&&V)",
+ "miYouTube": "YouTube で参加する(&&J)",
"newsletterSignup": "VS Code ニュースレターの登録",
"openDocumentationUrl": "ドキュメント",
"openLicenseUrl": "ライセンスを表示",
"openPrivacyStatement": "プライバシーに関する声明",
"openTipsAndTricksUrl": "ヒントとコツ",
- "openTwitterUrl": "ツイッターに参加",
"openUserVoiceUrl": "機能要求の検索",
- "openVideoTutorialsUrl": "ビデオ チュートリアル"
+ "openVideoTutorialsUrl": "ビデオ チュートリアル",
+ "openYouTubeUrl": "YouTube でご参加ください"
},
"vs/workbench/browser/actions/layoutActions": {
"active": "アクティブ",
"activityBar": "アクティビティ バー",
"activityBarLeft": "左側の位置にあるアクティビティ バーを表します",
"activityBarRight": "右の位置にあるアクティビティ バーを表します",
+ "alignQuickInputCenter": "クイック入力を中央揃え",
+ "alignQuickInputTop": "クイック入力を上揃え",
+ "center": "中央揃え",
"centerLayoutIcon": "中央揃えのレイアウト モードを表します",
"centerPanel": "中央揃え",
"centeredLayout": "中央揃えのレイアウト",
"close": "閉じる",
- "closeSidebar": "プライマリ サイド バーを閉じる",
"cofigureLayoutIcon": "アイコンはワークベンチ レイアウトの構成を表します。",
"compositePart.hideSideBarLabel": "プライマリ サイド バーを非表示にする",
+ "configureEditors": "エディターの構成",
"configureLayout": "レイアウトの構成",
+ "configureTabs": "タブの構成",
"customizeLayout": "レイアウトのカスタマイズ...",
"customizeLayoutQuickPickTitle": "レイアウトのカスタマイズ...",
"decreaseEditorHeight": "エディターの高さを縮小",
"decreaseEditorWidth": "エディターの幅を縮小",
"decreaseViewSize": "現在のビューのサイズの縮小",
+ "editorActionsPosition": "エディター アクションの位置",
"fullScreenIcon": "全画面表示を表します",
"fullscreen": "全画面表示",
- "hidden": "非表示",
+ "hideEditorActons": "エディター操作を非表示にする",
+ "hideEditorActonsDescription": "タブとタイトル バーでエディター アクションを非表示にします",
+ "hideEditorTabs": "エディター タブを非表示にする",
+ "hideEditorTabsDescription": "タブ バーを非表示にします",
+ "hideEditorTabsZenMode": "Zen モードでエディター タブを非表示にする",
+ "hideEditorTabsZenModeDescription": "Zen モードでタブ バーを非表示にします",
"increaseEditorHeight": "エディターの高さを拡大",
"increaseEditorWidth": "エディターの幅を拡大",
"increaseViewSize": "現在のビューのサイズの拡大",
@@ -2869,23 +3673,23 @@
"leftSideBar": "左",
"menuBar": "メニュー バー",
"menuBarIcon": "メニュー バーを表します",
- "miActivityBar": "&&Activity Bar",
"miAppearance": "外観(&&A)",
- "miMenuBar": "Menu &&Bar",
- "miMenuBarNoMnemonic": "Menu Bar",
+ "miMenuBar": "メニュー バー(&&B)",
+ "miMenuBarNoMnemonic": "メニュー バー",
"miMoveSidebarLeft": "プライマリ サイド バーを左に移動する(&&M)",
"miMoveSidebarRight": "プライマリ サイド バーを右に移動する(&&M)",
"miShowEditorArea": "エディター領域の表示(&&E)",
- "miShowSidebar": "&&Primary Side Bar",
- "miSidebarNoMnnemonic": "Primary Side Bar",
- "miStatusbar": "S&&tatus Bar",
+ "miStatusbar": "ステータス バー(&&T)",
"miToggleCenteredLayout": "中央揃えレイアウト(&&C)",
"miToggleZenMode": "Zen Mode",
"move second sidebar left": "セカンダリ サイド バーを左に移動する",
"move second sidebar right": "セカンダリ サイド バーを右に移動する",
"move side bar right": "プライマリ サイド バーを右に移動する",
"move sidebar left": "プライマリ サイド バーを左に移動する",
- "move sidebar right": "プライマリ サイド バーを右に移動する",
+ "moveEditorActionsToTabBar": "エディター アクションをタブ バーに移動する",
+ "moveEditorActionsToTabBarDescription": "タイトル バーからタブ バーにエディター アクションを移動します",
+ "moveEditorActionsToTitleBar": "エディター アクションをタイトル バーに移動する",
+ "moveEditorActionsToTitleBarDescription": "タブ バーからタイトル バーにエディター アクションを移動します",
"moveFocusedView": "フォーカス表示を移動",
"moveFocusedView.error.noFocusedView": "現在フォーカスされているビューはありません。",
"moveFocusedView.error.nonMovableView": "現在フォーカスされたビューは移動できません。",
@@ -2898,6 +3702,7 @@
"moveSidebarLeft": "プライマリ サイド バーを左に移動する",
"moveSidebarRight": "プライマリ サイド バーを右に移動する",
"moveView": "ビューの移動",
+ "openAndCloseSidebar": "サイドバーを開く/表示/閉じる/非表示にする",
"panel": "パネル",
"panelAlignment": "パネルの配置",
"panelBottom": "下部パネルを表します",
@@ -2910,34 +3715,60 @@
"panelLeftOff": "オフに切り替えた左側の位置のサイド バーを表します",
"panelRight": "右側にあるサイド バーを表現する",
"panelRightOff": "オフに切り替えた右側の位置のサイド バーを表します",
+ "primary sidebar": "プライマリ サイド バー",
+ "primary sidebar mnemonic": "プライマリ サイド バー(&&P)",
+ "quickInputAlignmentCenter": "中央に設定されたクイック入力の配置を表します",
+ "quickInputAlignmentTop": "上部に設定されたクイック入力の配置を表します",
+ "quickOpen": "クイック入力位置",
"resetFocusedView.error.noFocusedView": "現在フォーカスされているビューはありません。",
"resetFocusedViewLocation": "フォーカスがあるビューの位置をリセット",
"resetViewLocations": "ビューの位置をリセットする",
+ "restore defaults": "既定値に戻す",
"rightPanel": "右",
"rightSideBar": "右",
"secondarySideBar": "セカンダリ サイド バー",
"secondarySideBarContainer": "セカンダリ サイド バー / {0}",
+ "selectToHide": "選択して非表示",
+ "selectToShow": "選択して表示",
+ "showEditorActons": "エディター操作を表示する",
+ "showEditorActonsDescription": "エディター アクションを表示します。",
+ "showMultipleEditorTabs": "複数のエディター タブを表示する",
+ "showMultipleEditorTabsDescription": "複数のタブを含むタブ バーを表示します",
+ "showMultipleEditorTabsZenMode": "Zen モードで複数のエディター タブを表示します",
+ "showMultipleEditorTabsZenModeDescription": "Zen モードでタブ バーを表示します",
+ "showSingleEditorTab": "[単一エディター] タブの表示",
+ "showSingleEditorTabDescription": "1 つのタブでタブ バーを表示します",
+ "showSingleEditorTabZenMode": "Zen モードで [単一エディター] タブを表示する",
+ "showSingleEditorTabZenModeDescription": "1 つのタブを含むタブ バーを Zen モードで表示します",
"sideBar": "プライマリ サイド バー",
"sideBarPosition": "プライマリ サイド バーの位置",
"sidebar": "サイド バー",
"sidebarContainer": "サイド バー/{0}",
+ "sidebarHidden": "プライマリ サイド バーが表示されていません",
+ "sidebarVisible": "プライマリ サイド バーが表示されています",
"statusBar": "ステータス バー",
"statusBarIcon": "ステータス バーを表します",
- "toggleActivityBar": "アクティビティ バーの表示の切り替え",
+ "tabBar": "タブ バー",
"toggleCenteredLayout": "中央揃えレイアウトの切り替え",
"toggleEditor": "エディター領域の可視性を切り替える",
"toggleMenuBar": "メニュー バーの切り替え",
+ "toggleSeparatePinnedEditorTabs": "ピン留めされたエディタータブを区切る",
+ "toggleSeparatePinnedEditorTabsDescription": "ピン留めされていないタブの上の別の行にピン留めされたエディター タブを表示するかどうかを切り替えます。",
"toggleSideBar": "プライマリ サイド バーを切り替える",
"toggleSidebar": "プライマリ サイド バーの表示/非表示を切り替える",
"toggleSidebarPosition": "プライマリ サイド バーの位置を切り替える",
"toggleStatusbar": "ステータス バーの可視性の切り替え",
- "toggleTabs": "タブ表示の切り替え",
"toggleVisibility": "表示範囲",
"toggleZenMode": "Zen Mode の切り替え",
- "visible": "表示",
+ "top": "上部",
"zenMode": "禅モード",
"zenModeIcon": "禅モードを表します"
},
+ "vs/workbench/browser/actions/listCommands": {
+ "mitoggleTreeStickyScroll": "&&ツリー スティッキー スクロールの切り替え",
+ "toggleTreeStickyScroll": "ツリー スティッキー スクロールを切り替える",
+ "toggleTreeStickyScrollDescription": "エクスプローラー変数ビューやデバッグ変数ビューなど、ツリー構造の上部にあるスティッキー スクロール ウィジェットを切り替えます。"
+ },
"vs/workbench/browser/actions/navigationActions": {
"focusNextPart": "次の部分にフォーカス",
"focusPreviousPart": "前の部分にフォーカス",
@@ -2950,6 +3781,7 @@
"quickNavigateNext": "Quick Open で次に移動",
"quickNavigatePrevious": "Quick Open で前に移動",
"quickOpen": "ファイルに移動...",
+ "quickOpenWithModes": "Quick Open",
"quickSelectNext": "Quick Open で [次へ] を選択",
"quickSelectPrevious": "Quick Open で [前へ] を選択"
},
@@ -2963,6 +3795,8 @@
},
"vs/workbench/browser/actions/windowActions": {
"about": "製品について",
+ "activeOpenedRecentlyOpenedFolder": "アクティブ ウィンドウで開かれたフォルダー",
+ "activeOpenedRecentlyOpenedWorkspace": "ワークスペースがアクティブ ウィンドウで開かれました",
"blur": "フォーカスがある要素からキーボード フォーカスを削除します",
"dirtyFolder": "未保存のファイルを含むフォルダー",
"dirtyFolderConfirm": "フォルダーを開いて、未保存のファイルを確認しますか?",
@@ -2972,7 +3806,6 @@
"dirtyWorkspace": "未保存のファイルを含むワークスペース",
"dirtyWorkspaceConfirm": "ワークスペースを開いて、未保存のファイルを確認しますか?",
"dirtyWorkspaceConfirmDetail": "未保存のファイルを含むワークスペースは、すべての未保存のファイルが保存または元に戻されるまで削除できません。",
- "file": "ファイル",
"files": "ファイル",
"folders": "フォルダー",
"miAbout": "バージョン情報(&&A)",
@@ -2985,6 +3818,8 @@
"openRecent": "最近開いた項目...",
"openRecentPlaceholder": "選択して開く (Ctrl キーを押しながら操作して新しいウィンドウに表示するか、Alt キーで同じウィンドウに表示する)",
"openRecentPlaceholderMac": "選択して開く (Cmd キーを押しながら操作して新しいウィンドウに表示するか、Option キーで同じウィンドウに表示する)",
+ "openedRecentlyOpenedFolder": "ウィンドウで開いたフォルダー",
+ "openedRecentlyOpenedWorkspace": "ウィンドウで開いたワークスペース",
"quickOpenRecent": "最近使用したものを開く...",
"recentDirtyFolderAriaLabel": "{0}、未保存の変更があるフォルダー",
"recentDirtyWorkspaceAriaLabel": "{0}、未保存の変更があるワークスペース",
@@ -2997,7 +3832,6 @@
"closeWorkspace": "ワークスペースを閉じる",
"duplicateWorkspace": "ワークスペースを複製",
"duplicateWorkspaceInNewWindow": "新しいウィンドウでワークスペースとして複製",
- "filesCategory": "ファイル",
"globalRemoveFolderFromWorkspace": "ワークスペースからフォルダーを削除...",
"miAddFolderToWorkspace": "フォルダーをワークスペースに追加(&&D)...",
"miCloseFolder": "フォルダーを閉じる(&&F)",
@@ -3021,53 +3855,70 @@
"addFolderToWorkspaceTitle": "ワークスペースにフォルダーを追加",
"workspaceFolderPickerPlaceholder": "ワークスペース フォルダーを選択"
},
- "vs/workbench/browser/codeeditor": {
- "openWorkspace": "ワークスペースを開く"
- },
"vs/workbench/browser/editor": {
"pinned": "{0}、ピン留めされています",
"preview": "{0}、プレビュー"
},
- "vs/workbench/browser/parts/activitybar/activitybarActions": {
- "authProviderUnavailable": "{0} は現在利用できません",
- "focusActivityBar": "フォーカス アクティビティ バー",
- "hideAccounts": "アカウントの非表示",
- "manageTrustedExtensions": "信頼された拡張機能の管理",
- "nextSideBarView": "次のプライマリ サイド バー ビュー",
- "noAccounts": "どのアカウントにもサインインしていません",
- "previousSideBarView": "前のプライマリ サイド バー ビュー",
- "signOut": "サインアウト"
+ "vs/workbench/browser/labels": {
+ "notebookCellLabel": "{0} • セル {1}",
+ "notebookCellOutputLabel": "{0} • セル {1} • 出力 {2}",
+ "notebookCellOutputLabelSimple": "{0} • セル {1} • 出力"
},
"vs/workbench/browser/parts/activitybar/activitybarPart": {
- "accounts": "アカウント",
- "accounts visibility key": "アクティビティ バーでのアカウント エントリの可視性のカスタマイズ。",
- "accountsViewBarIcon": "ビュー バーのアカウント アイコン。",
- "hideActivitBar": "アクティビティ バーを非表示にする",
+ "activity bar position": "アクティビティ バーの位置",
+ "bottom": "下",
+ "default": "既定値",
+ "focusActivityBar": "フォーカス アクティビティ バー",
+ "hide": "非表示",
+ "hideActivityBar": "アクティビティ バーを非表示にする",
"hideMenu": "メニューを非表示にする",
- "manage": "管理",
"menu": "メニュー",
- "pinned view containers": "アクティビティ バー エントリの表示のカスタマイズ",
- "resetLocation": "場所のリセット",
- "settingsViewBarIcon": "ビューバーの設定アイコン。"
+ "miBottomActivityBar": "下部(&&B)",
+ "miDefaultActivityBar": "既定値(&&D)",
+ "miHideActivityBar": "非表示(&&H)",
+ "miTopActivityBar": "上部(&&T)",
+ "nextSideBarView": "次のプライマリ サイド バー ビュー",
+ "positionActivituBar": "アクティビティ バーの位置",
+ "positionActivityBarBottom": "アクティビティ バーを下部に移動する",
+ "positionActivityBarDefault": "アクティビティ バーを横に移動する",
+ "positionActivityBarTop": "アクティビティ バーを上部に移動する",
+ "previousSideBarView": "前のプライマリ サイド バー ビュー",
+ "top": "上部"
},
"vs/workbench/browser/parts/auxiliarybar/auxiliaryBarActions": {
+ "auxiliaryBarHidden": "セカンダリ サイド バーが表示されていません",
+ "auxiliaryBarVisible": "セカンダリ サイド バーが表示されています",
+ "closeIcon": "補助サイド バーを閉じるアイコンです。",
+ "closeSecondarySideBar": "セカンダリ サイド バーを非表示にする",
"focusAuxiliaryBar": "セカンダリ サイド バーにフォーカスする",
"hideAuxiliaryBar": "セカンダリ サイド バーを非表示にする",
- "miAuxiliaryBar": "Secondary Si&&de Bar",
- "miAuxiliaryBarNoMnemonic": "Secondary Side Bar",
+ "maximizeAuxiliaryBar": "補助サイド バーを最大化する",
+ "maximizeAuxiliaryBarTooltip": "補助サイド バーのサイズを最大化する",
+ "maximizeIcon": "補助サイド バーを最大化するアイコンです。",
+ "miCloseSecondarySideBar": "セカンダリ サイド バー(&&S)",
+ "nextAuxiliaryBarView": "次のセカンダリ サイド バー ビュー",
+ "openAndCloseAuxiliaryBar": "セカンダリ サイド バーを開く/表示/閉じる/非表示にする",
+ "previousAuxiliaryBarView": "前のセカンダリ サイド バー ビュー",
+ "restoreAuxiliaryBar": "補助サイド バーを復元する",
+ "restoreAuxiliaryBarTooltip": "補助サイド バーのサイズを復元する",
"toggleAuxiliaryBar": "セカンダリ サイド バーの表示/非表示を切り替える",
- "toggleAuxiliaryIconLeft": "補助バーを左の位置に切り替えるアイコンです。",
- "toggleAuxiliaryIconLeftOn": "補助バーを左の位置に切り替えるアイコンです。",
- "toggleAuxiliaryIconRight": "補助バーを右の位置に切り替えるアイコンです。",
- "toggleAuxiliaryIconRightOn": "補助バーを右の位置に切り替えるアイコンです。",
+ "toggleAuxiliaryIconLeft": "左側の補助サイド バーの表示を切り替えるアイコンです。",
+ "toggleAuxiliaryIconLeftOn": "左側の補助サイド バーを表示させるアイコンです。",
+ "toggleAuxiliaryIconRight": "右側の補助サイド バーを非表示にするアイコンです。",
+ "toggleAuxiliaryIconRightOn": "右側の補助サイド バーを表示させるアイコンです。",
+ "toggleMaximizedAuxiliaryBar": "最大化された補助サイド バーの切り替え",
"toggleSecondarySideBar": "セカンダリ サイド バーを切り替える"
},
"vs/workbench/browser/parts/auxiliarybar/auxiliaryBarPart": {
- "hideAuxiliaryBar": "セカンダリ サイド バーを非表示にする",
+ "activity bar position": "アクティビティ バーの位置",
+ "hide second side bar": "セカンダリ サイド バーを非表示にする",
"move second side bar left": "セカンダリ サイド バーを左に移動する",
- "move second side bar right": "セカンダリ サイド バーを右に移動する"
+ "move second side bar right": "セカンダリ サイド バーを右に移動する",
+ "showIcons": "アイコンの表示",
+ "showLabels": "ラベルの表示"
},
"vs/workbench/browser/parts/banner/bannerPart": {
+ "closeBanner": "バナーを閉じる",
"focusBanner": "バナーにフォーカス"
},
"vs/workbench/browser/parts/compositeBar": {
@@ -3075,13 +3926,14 @@
},
"vs/workbench/browser/parts/compositeBarActions": {
"additionalViews": "その他のビュー",
- "badgeTitle": "{0} - {1}",
"hide": "'{0}' の非表示",
+ "hideBadge": "バッジを非表示にする",
"keep": "'{0}' を保持",
- "manageExtension": "拡張機能の管理",
"numberBadge": "{0} ({1})",
+ "showBadge": "バッジを表示する",
"titleKeybinding": "{0} ({1})",
- "toggle": "ビューのピン留めの切り替え"
+ "toggle": "ビューのピン留めの切り替え",
+ "toggleBadge": "表示バッジの切り替え"
},
"vs/workbench/browser/parts/compositePart": {
"ariaCompositeToolbarLabel": "{0} アクション",
@@ -3089,18 +3941,20 @@
"viewsAndMoreActions": "ビューとその他のアクション..."
},
"vs/workbench/browser/parts/dialogs/dialogHandler": {
- "aboutDetail": "バージョン: {0}\r\nコミット: {1}\r\n日付: {2}\r\nブラウザー: {3}",
- "cancelButton": "キャンセル",
- "copy": "コピー",
- "ok": "OK",
- "yesButton": "はい(&&Y)"
+ "copy": "コピー(&&C)",
+ "ok": "OK"
+ },
+ "vs/workbench/browser/parts/editor/auxiliaryEditorPart": {
+ "disableCompactAuxiliaryWindow": "コンパクト モードをオフにする",
+ "enableCompactAuxiliaryWindow": "コンパクト モードを有効にする",
+ "toggleCompactAuxiliaryWindow": "[ウィンドウのコンパクト モード] を切り替え"
},
"vs/workbench/browser/parts/editor/binaryDiffEditor": {
"metadataDiff": "{0} ↔ {1}"
},
"vs/workbench/browser/parts/editor/binaryEditor": {
"binaryEditor": "バイナリ ビューアー",
- "binaryError": "このファイルはバイナリか、サポートされていないテキスト エンコードを使用しているため、エディターに表示されません。",
+ "binaryError": "このファイルはバイナリか、サポートされていないテキスト エンコードを使用しているため、テキスト エディターに表示されません。",
"openAnyway": "開く"
},
"vs/workbench/browser/parts/editor/breadcrumbs": {
@@ -3151,14 +4005,24 @@
"breadcrumbsPossible": "エディターで階層リンクを表示できるかどうか",
"breadcrumbsVisible": "階層リンクが現在表示されているかどうか",
"cmd.focus": "階層リンクにフォーカス",
+ "cmd.focusAndSelect": "階層リンクにフォーカスして選択",
"cmd.toggle": "階層リンクの切り替え",
+ "cmd.toggle2": "階層リンクの切り替え",
"empty": "要素なし",
- "miBreadcrumbs": "&&Breadcrumbs",
+ "miBreadcrumbs2": "階層リンク(&&B)",
"separatorIcon": "階層リンクの区切り記号のアイコン。"
},
"vs/workbench/browser/parts/editor/breadcrumbsPicker": {
"breadcrumbs": "階層リンク"
},
+ "vs/workbench/browser/parts/editor/diffEditorCommands": {
+ "compare": "比較",
+ "compare.nextChange": "次の変更に移動",
+ "compare.openSide": "アクティブな差分側を開く",
+ "compare.previousChange": "前の変更に移動",
+ "swapDiffSides": "エディターの左側と右側を入れ替える",
+ "toggleInlineView": "インライン ビューの切り替え"
+ },
"vs/workbench/browser/parts/editor/editor.contribution": {
"activeGroupEditorsByMostRecentlyUsedQuickAccess": "アクティブ グループ内のエディターを最近使用したもの順に表示する",
"allEditorsByAppearanceQuickAccess": "開いているすべてのエディターを外観別に表示",
@@ -3177,15 +4041,26 @@
"closeRight": "右側を閉じる",
"closeRightEditors": "グループ内の右側のエディターを閉じる",
"closeSavedEditors": "グループ内の保存済みエディターを閉じる",
+ "configureEditors": "エディターの構成",
+ "configureTabs": "タブの構成",
+ "copyEditorGroupToNewWindow": "新しいウィンドウにコピー",
+ "copyEditorToNewWindow": "エディターを新しいウィンドウにコピーする",
+ "copyToNewWindow": "新しいウィンドウにコピー",
+ "editorActionsPosition": "エディター アクションの位置",
"editorQuickAccessPlaceholder": "開くエディター名を入力します。",
- "file": "ファイル",
- "ignoreTrimWhitespace.label": "先頭と末尾のスペースによる違いを無視する",
+ "hidden": "非表示",
+ "hideTabs": "非表示",
+ "ignoreTrimWhitespace.label": "先頭と末尾のスペースによる違いを表示する",
"inlineView": "インライン ビュー",
"joinInGroup": "グループ内統合",
"keepEditor": "エディターを保持",
"keepOpen": "開いたままにする",
+ "lockEditorGroup": "グループをロックする",
"lockGroup": "グループをロックする",
- "miClearRecentOpen": "最近使ったものをクリア(&&C)",
+ "lockGroupAction": "グループをロックする",
+ "maximizeGroup": "グループの最大化",
+ "miClearRecentOpen": "最近開いた項目をクリア(&&C)...",
+ "miCopyEditorToNewWindow": "エディターを新しいウィンドウにコピーする(&&C)",
"miEditorLayout": "エディター レイアウト(&&L)",
"miFirstSideEditor": "エディターの表面(&&F)",
"miFocusAboveGroup": "グループ (上)(&&A)",
@@ -3200,13 +4075,14 @@
"miJoinEditorInGroup": "グループ内統合(&&G)",
"miJoinEditorInGroupWithoutMnemonic": "グループ内統合",
"miLastEditLocation": "最後の編集場所(&&L)",
+ "miMoveEditorToNewWindow": "エディターを新しいウィンドウに移動する(&&M)",
"miNextEditor": "次のエディター(&&N)",
"miNextEditorInGroup": "グループ内の次のエディター(&&N)",
"miNextGroup": "次のグループ(&&N)",
"miNextRecentlyUsedEditor": "次の使用されているエディター(&&N)",
"miNextUsedEditorInGroup": "グループ内の次の使用されているエディター(&&N)",
"miPreviousEditor": "前のエディター(&&P)",
- "miPreviousEditorInGroup": "グループ内の以前のエディター(&&P)",
+ "miPreviousEditorInGroup": "グループ内の前のエディター(&&P)",
"miPreviousGroup": "前のグループ(&&P)",
"miPreviousRecentlyUsedEditor": "以前に使用したエディター(&&P)",
"miPreviousUsedEditorInGroup": "グループ内の前の使用されているエディター(&&P)",
@@ -3241,16 +4117,27 @@
"miTwoRowsEditorLayoutWithoutMnemonic": "2 行",
"miTwoRowsRightEditorLayout": "2 行右(&&O)",
"miTwoRowsRightEditorLayoutWithoutMnemonic": "2 行右",
+ "moveAbove": "上に移動",
+ "moveBelow": "下に移動",
+ "moveEditorGroupToNewWindow": "新しいウィンドウに移動",
+ "moveEditorToNewWindow": "エディターを新しいウィンドウに移動する",
+ "moveLeft": "左へ移動",
+ "moveRight": "右へ移動",
+ "moveToNewWindow": "新しいウィンドウに移動",
+ "multipleTabs": "複数のタブ",
"navigate.next.label": "次の変更箇所",
"navigate.prev.label": "前の変更箇所",
+ "newWindow": "新しいウィンドウ",
"nextChangeIcon": "差分エディター内の次の変更アクションのアイコン。",
"pin": "ピン留めする",
"pinEditor": "エディターをピン留めする",
"previousChangeIcon": "差分エディター内の前の変更アクションのアイコン。",
"reopenWith": "エディターを再度開くアプリケーションの選択...",
+ "share": "共有",
"showOpenedEditors": "開いているエディターを表示",
- "showTrimWhitespace.label": "先頭と末尾のスペースによる違いを表示する",
"sideBySideEditor": "横並びエディター",
+ "singleTab": "1 つのタブ",
+ "splitAndMoveEditor": "分割と移動",
"splitDown": "下に分割",
"splitEditorDown": "エディターを下に分割",
"splitEditorRight": "エディターを右に分割",
@@ -3258,21 +4145,26 @@
"splitLeft": "左に分割",
"splitRight": "右に分割",
"splitUp": "上に分割",
+ "swapDiffSides": "左側と右側を入れ替える",
+ "tabBar": "タブ バー",
"textDiffEditor": "テキスト差分エディター",
"textEditor": "テキスト エディター",
+ "titleBar": "タイトル バー",
"toggleLockGroup": "グループをロックする",
"togglePreviewMode": "プレビュー エディターを有効にする",
"toggleSplitEditorInGroupLayout": "レイアウトの切り替え",
"toggleWhitespace": "差分エディター内で空白文字の切り替えアクションのアイコン。",
"unlockEditorGroup": "グループをロック解除する",
"unlockGroupAction": "グループをロック解除する",
+ "unmaximizeGroup": "グループの最大化解除",
"unpin": "ピン留めを外す",
"unpinEditor": "エディターのピン留めを外す"
},
"vs/workbench/browser/parts/editor/editorActions": {
"clearButtonLabel": "クリア(&&C)",
"clearEditorHistory": "エディター履歴のクリア",
- "clearRecentFiles": "最近開いた項目をクリア",
+ "clearEditorHistoryWithoutConfirm": "確認なしでエディター履歴をクリアする",
+ "clearRecentFiles": "最近開いた項目をクリアします...",
"closeAllEditors": "すべてのエディターを閉じる",
"closeAllGroups": "すべてのエディター グループを閉じる",
"closeEditor": "エディターを閉じる",
@@ -3283,6 +4175,8 @@
"confirmClearDetail": "この操作は元に戻せません。",
"confirmClearEditorHistoryMessage": "最近開いたエディターの履歴をクリアしますか?",
"confirmClearRecentsMessage": "最近開いたファイルとワークスペースをすべてクリアしますか?",
+ "copyEditorGroupToNewWindow": "エディター グループを新しいウィンドウにコピーする",
+ "copyEditorToNewWindow": "エディターを新しいウィンドウにコピーする",
"duplicateActiveGroupDown": "エディター グループを下に複製する",
"duplicateActiveGroupLeft": "エディター グループを左側に複製する",
"duplicateActiveGroupRight": "エディター グループを右側に複製する",
@@ -3309,14 +4203,22 @@
"joinAllGroups": "すべてのエディター グループを結合",
"joinTwoGroups": "エディター グループを次のグループと結合",
"lastEditorInGroup": "グループ内の最後のエディターを開く",
- "maximizeEditor": "エディター グループを最大化してサイド バーを非表示にする",
+ "maximizeEditorHideSidebar": "エディター グループを最大化してサイド バーを非表示にする",
"miBack": "戻る(&&B)",
+ "miCopyEditorGroupToNewWindow": "エディター グループを新しいウィンドウにコピーする(&&C)",
+ "miCopyEditorToNewWindow": "エディターを新しいウィンドウにコピーする(&&C)",
"miForward": "進む(&&F)",
- "minimizeOtherEditorGroups": "エディター グループを最大化",
+ "miMoveEditorGroupToNewWindow": "エディター グループを新しいウィンドウに移動する(&&M)",
+ "miMoveEditorToNewWindow": "エディターを新しいウィンドウに移動する(&&M)",
+ "miNewEmptyEditorWindow": "新しい空のエディター ウィンドウ(&&N)",
+ "miRestoreEditorsToMainWindow": "エディターをメイン ウィンドウに復元する(&&R)",
+ "minimizeOtherEditorGroups": "エディター グループの展開",
+ "minimizeOtherEditorGroupsHideSidebar": "エディター グループを展開してサイド バーを非表示にする",
"moveActiveGroupDown": "エディター グループを下に移動",
"moveActiveGroupLeft": "エディター グループを左側に移動する",
"moveActiveGroupRight": "エディター グループを右側に移動する",
"moveActiveGroupUp": "エディター グループを上に移動",
+ "moveEditorGroupToNewWindow": "エディター グループを新しいウィンドウに移動する",
"moveEditorLeft": "エディターを左へ移動",
"moveEditorRight": "エディターを右へ移動",
"moveEditorToAboveGroup": "エディターを上のグループに移動",
@@ -3324,6 +4226,7 @@
"moveEditorToFirstGroup": "エディターを 1 番目のグループに移動",
"moveEditorToLastGroup": "エディターを最後のグループに移動",
"moveEditorToLeftGroup": "エディターを左のグループに移動",
+ "moveEditorToNewWindow": "エディターを新しいウィンドウに移動する",
"moveEditorToNextGroup": "エディターを次のグループに移動",
"moveEditorToPreviousGroup": "エディターを前のグループに移動",
"moveEditorToRightGroup": "エディターを右のグループに移動",
@@ -3340,15 +4243,16 @@
"navigatePreviousInNavigationLocations": "[ナビゲーションの場所] で前へ進む",
"navigateToLastEditLocation": "最後の編集位置へ移動",
"navigateToLastNavigationLocation": "[最新のナビゲーションの場所] に移動する",
- "newEditorAbove": "上に新しいエディター グループ",
- "newEditorBelow": "下に新しいエディター グループ",
- "newEditorLeft": "左に新しいエディター グループ",
- "newEditorRight": "右に新しいエディター グループ",
+ "newEmptyEditorWindow": "新しい空のエディター ウィンドウ",
+ "newGroupAbove": "上に新しいエディター グループ",
+ "newGroupBelow": "下に新しいエディター グループ",
+ "newGroupLeft": "左に新しいエディター グループ",
+ "newGroupRight": "右に新しいエディター グループ",
"nextEditorInGroup": "グループ内で次のエディターを開く",
"openNextEditor": "次のエディターを開く",
"openNextRecentlyUsedEditor": "最近使用したエディターのうち次のエディターを開く",
"openNextRecentlyUsedEditorInGroup": "グループ内の最近使用したエディターのうち次のエディターを開く",
- "openPreviousEditor": "以前のエディターを開く",
+ "openPreviousEditor": "前のエディターを開く",
"openPreviousEditorInGroup": "グループ内で前のエディターを開く",
"openPreviousRecentlyUsedEditor": "最近使用したエディターのうち前のエディターを開く",
"openPreviousRecentlyUsedEditorInGroup": "グループ内の最近使用したエディターのうち前のエディターを開く",
@@ -3357,7 +4261,10 @@
"quickOpenPreviousRecentlyUsedEditor": "前回の最近使用したエディターをすぐに開く",
"quickOpenPreviousRecentlyUsedEditorInGroup": "グループ内の最近使用したエディターのうち前のエディターをすばやく開く",
"reopenClosedEditor": "閉じたエディターを再度開く",
+ "reopenTextEditor": "テキスト エディターを使用してエディターを再度開く",
+ "restoreEditorsToMainWindow": "エディターをメイン ウィンドウに復元する",
"revertAndCloseActiveEditor": "元に戻してエディターを閉じる",
+ "reverting": "エディターを元に戻しています...",
"showAllEditors": "すべてのエディターを外観別に表示",
"showAllEditorsByMostRecentlyUsed": "すべてのエディターを最近使用したもの順に表示する",
"showEditorsInActiveGroup": "アクティブ グループ内のエディターを最近使用したもの順に表示する",
@@ -3375,34 +4282,39 @@
"splitEditorToNextGroup": "エディターを次のグループに分割",
"splitEditorToPreviousGroup": "エディターを前のグループに分割",
"splitEditorToRightGroup": "エディターを右のグループに分割",
+ "toggleEditorType": "エディターの種類の切り替え",
"toggleEditorWidths": "エディター グループ サイズの切り替え",
- "unpinEditor": "エディターの固定を解除する",
- "workbench.action.reopenTextEditor": "テキスト エディターを使用してエディターを再度開く",
- "workbench.action.toggleEditorType": "エディターの種類の切り替え"
+ "toggleMaximizeEditorGroup": "エディター グループの最大化の切り替え",
+ "unmaximizeGroup": "グループの最大化解除",
+ "unpinEditor": "エディターの固定を解除する"
},
"vs/workbench/browser/parts/editor/editorCommands": {
- "compare": "比較",
"editorCommand.activeEditorCopy.arg.description": "引数プロパティ:\r\n\t* 'to': コピー先を指定する文字列値。\r\n\t* 'value': コピーする桁数または絶対位置を指定する数値。",
"editorCommand.activeEditorCopy.arg.name": "アクティブ エディターの Copy 引数",
"editorCommand.activeEditorCopy.description": "グループごとにアクティブ エディターをコピーする",
"editorCommand.activeEditorMove.arg.description": "引数プロパティ:\r\n\t'to': 移動先を指定する文字列値。\r\n\t'by': 移動に使用する単位を指定する文字列値 (タブまたはグループ)。\r\n\t'value': 移動する位置と絶対位置を指定する数値。",
"editorCommand.activeEditorMove.arg.name": "アクティブ エディターの Move 引数",
"editorCommand.activeEditorMove.description": "タブまたはグループ別にアクティブ エディターを移動する",
+ "editorGroupLayout.horizontal": "水平",
+ "editorGroupLayout.vertical": "垂直",
"focusLeftSideEditor": "アクティブ エディターで表側にフォーカス",
"focusOtherSideEditor": "アクティブ エディターで裏側にフォーカス",
"focusRightSideEditor": "アクティブ エディターで裏面にフォーカス",
- "joinEditorInGroup": "グループ内のエディターに参加する",
+ "joinEditorInGroup": "グループ内のエディターを結合する",
"lockEditorGroup": "エディター グループをロックする",
"splitEditorInGroup": "グループ内のエディターの分割",
"toggleEditorGroupLock": "エディター グループ のロックの切り替え",
- "toggleInlineView": "インライン ビューの切り替え",
"toggleJoinEditorInGroup": "グループでエディターの分割を切り替え",
"toggleSplitEditorInGroupLayout": "グループでのエディターの分割のレイアウトを切り替える",
"unlockEditorGroup": "エディター グループをロック解除する"
},
"vs/workbench/browser/parts/editor/editorConfiguration": {
- "editor.editorAssociations": "glob パターンをエディターに構成します (例: `\"*.hex\": \"hexEditor.hexEdit\"`)。これらは既定の動作よりも優先されます。",
+ "editor.editorAssociations": "[glob パターン](https://aka.ms/vscode-glob-patterns) をエディターに構成します (`\"*.hex\": \"hexEditor.hexedit\"` など)。これらは既定の動作よりも優先されます。",
+ "editorLargeFileSizeConfirmation": "エディターで開く際に確認を求める前に、ファイルの最小サイズを MB 単位で制御します。この設定はすべてのエディターの種類と環境に適用されるとは限らない場合があることに、ご注意ください。",
+ "interactiveWindow": "対話型ウィンドウ",
+ "livePreview": "リアルタイムのプレビュー",
"markdownPreview": "マークダウンのプレビュー",
+ "simpleBrowser": "シンプル ブラウザー",
"workbench.editor.autoLockGroups": "リストのいずれかの種類と一致するエディターがエディター グループの最初のものとして開いており、複数のグループが開いている場合、グループは自動的にロックされます。ロックされたグループは、ユーザーのジェスチャ (例: ドラッグ アンド ドロップ) で明示的に選択された場合に、エディターを開くときにのみ使用されますが、既定では使用されません。その結果、ロックされたグループ内のアクティブなエディターが、誤って別のエディターで置き換えられる可能性は低くなります。",
"workbench.editor.defaultBinaryEditor": "バイナリとして検出されたファイルの既定のエディター。未定義の場合、ユーザーにはピッカーが掲示されます。"
},
@@ -3413,12 +4325,32 @@
"ariaLabelGroupActions": "空のエディター グループ アクション",
"emptyEditorGroup": "{0} (空)",
"groupAriaLabel": "エディター グループ {0}",
- "groupLabel": "グループ {0}"
+ "groupAriaLabelLong": "{0}: エディター グループ {1}",
+ "groupLabel": "グループ {0}",
+ "groupLabelLong": "{0}: グループ {1}",
+ "moveErrorDetails": "最初にエディターを保存または元に戻してから、もう一度お試しください。"
+ },
+ "vs/workbench/browser/parts/editor/editorGroupWatermark": {
+ "editorLineHighlight": "エディターの透かし内のラベルの前景色。",
+ "watermark.findInFiles": "フォルダーを指定して検索",
+ "watermark.newUntitledFile": "新しい無題のテキスト ファイル",
+ "watermark.openChat": "チャットを開く",
+ "watermark.openFile": "ファイルを開く",
+ "watermark.openFileFolder": "ファイルまたはフォルダーを開く",
+ "watermark.openFolder": "フォルダーを開く",
+ "watermark.openRecent": "最近開いた項目",
+ "watermark.openSettings": "設定を開く",
+ "watermark.quickAccess": "ファイルに移動する",
+ "watermark.showCommands": "すべてのコマンドの表示",
+ "watermark.startDebugging": "デバッグの開始",
+ "watermark.toggleTerminal": "ターミナルの切り替え"
},
"vs/workbench/browser/parts/editor/editorPanes": {
- "cancel": "キャンセル",
"editorOpenErrorDialog": "'{0}' を開くことができません",
- "ok": "OK"
+ "ok": "OK(&&O)"
+ },
+ "vs/workbench/browser/parts/editor/editorParts": {
+ "groupLabel": "ウィンドウ {0}"
},
"vs/workbench/browser/parts/editor/editorPlaceholder": {
"errorEditor": "エラー エディター",
@@ -3426,9 +4358,10 @@
"requiresFolderTrustText": "信頼がフォルダーに付与されていないため、ファイルはエディターに表示されません。",
"requiresWorkspaceTrustText": "信頼がワークスペースに付与されていないため、ファイルはエディターに表示されません。",
"retry": "再試行",
+ "showLogs": "ログを表示する",
"trustRequiredEditor": "ワークスペースの信頼が必須です",
"unavailableResourceErrorEditorText": "ファイルが見つからなかったため、エディターを開くことができませんでした。",
- "unknownErrorEditorTextWithError": "予期しないエラーのため、エディターを開くことができませんでした: {0}",
+ "unknownErrorEditorTextWithError": "予期しないエラーが発生したため、エディターを開けませんでした。詳細については、ログを参照してください。",
"unknownErrorEditorTextWithoutError": "予期しないエラーのため、エディターを開くことができませんでした。"
},
"vs/workbench/browser/parts/editor/editorQuickAccess": {
@@ -3442,6 +4375,8 @@
"autoDetect": "自動検出",
"changeEncoding": "ファイルのエンコードの変更",
"changeEndOfLine": "改行コードの変更",
+ "changeLanguageMode.arg.name": "変更先の言語モードの名前。",
+ "changeLanguageMode.description": "アクティブなテキスト エディターの言語モードを変更します。",
"changeMode": "言語モードの変更",
"columnSelectionModeEnabled": "列の選択",
"configureAssociationsExt": "'{0}' に対するファイルの関連付けの構成...",
@@ -3457,6 +4392,7 @@
"guessedEncoding": "コンテンツから推測",
"indentConvert": "ファイルの変換",
"indentView": "ビューの変更",
+ "inputModeOvertype": "上書き",
"languageDescription": "({0}) - 構成済みの言語",
"languageDescriptionConfigured": "({0})",
"languagesPicks": "言語 (識別子)",
@@ -3471,12 +4407,11 @@
"pickEndOfLine": "改行コードの選択",
"pickLanguage": "言語モードの選択",
"pickLanguageToConfigure": "'{0}' に関連付ける言語モードの選択",
+ "reopen": "変更を破棄して再度開く",
"reopenWithEncoding": "エンコード付きで再度開く",
+ "reopenWithEncodingDetail": "これにより、保存されていない変更がすべて破棄されます。",
+ "reopenWithEncodingWarning": "アクティブなテキスト エディターを元に戻し、別のエンコードで再度開きますか?",
"saveWithEncoding": "エンコード付きで保存",
- "screenReaderDetected": "スクリーン リーダーに最適化",
- "screenReaderDetectedExplanation.answerNo": "いいえ",
- "screenReaderDetectedExplanation.answerYes": "はい",
- "screenReaderDetectedExplanation.question": "VS Code で操作するときにスクリーン リーダーを使用していますか? (単語の折り返しはスクリーン リーダー使用時には無効になります)",
"selectEOL": "改行コードの選択",
"selectEncoding": "エンコードの選択",
"selectIndentation": "インデントを選択",
@@ -3484,37 +4419,57 @@
"showLanguageExtensions": "'{0}' の Marketplace の拡張機能を検索する...",
"singleSelection": "行 {0}、列 {1}",
"singleSelectionRange": "行 {0}、列 {1} ({2} 個選択)",
+ "spacesAndTabsSize": "スペース: {0} (タブ サイズ: {1})",
"spacesSize": "スペース: {0}",
"status.editor.columnSelectionMode": "列選択モード",
+ "status.editor.enableInsertMode": "挿入モードを有効にする",
"status.editor.encoding": "エディターのエンコード",
"status.editor.eol": "エディターの行末",
"status.editor.indentation": "エディターのインデント",
"status.editor.info": "ファイル情報",
"status.editor.mode": "エディター言語",
- "status.editor.screenReaderMode": "スクリーン リーダー モード",
"status.editor.selection": "エディターの選択",
"status.editor.tabFocusMode": "アクセシビリティ モード",
"tabFocusModeEnabled": "タブによるフォーカスの移動",
"tabSize": "タブのサイズ: {0}"
},
- "vs/workbench/browser/parts/editor/sideBySideEditor": {
- "sideBySideEditor": "横並びエディター"
+ "vs/workbench/browser/parts/editor/editorTabsControl": {
+ "ariaLabelEditorActions": "エディター操作",
+ "draggedEditorGroup": "{0} (+{1})"
},
- "vs/workbench/browser/parts/editor/tabsTitleControl": {
+ "vs/workbench/browser/parts/editor/multiEditorTabsControl": {
"ariaLabelTabActions": "タブ操作"
},
+ "vs/workbench/browser/parts/editor/sideBySideEditor": {
+ "sideBySideEditor": "横並びエディター"
+ },
"vs/workbench/browser/parts/editor/textCodeEditor": {
"textEditor": "テキスト エディター"
},
"vs/workbench/browser/parts/editor/textDiffEditor": {
+ "fileTooLargeForHeapErrorWithSize": "ファイルは非常に大きいため、1 つ以上のファイルはテキスト エディターに表示されません ({0})。",
+ "fileTooLargeForHeapErrorWithoutSize": "ファイルは非常に大きいため、1 つ以上のファイルはテキスト エディターに表示されません。",
"textDiffEditor": "テキスト差分エディター"
},
"vs/workbench/browser/parts/editor/textEditor": {
"editor": "エディター"
},
- "vs/workbench/browser/parts/editor/titleControl": {
- "ariaLabelEditorActions": "エディター操作",
- "draggedEditorGroup": "{0} (+{1})"
+ "vs/workbench/browser/parts/globalCompositeBar": {
+ "accounts": "アカウント",
+ "accountsViewBarIcon": "ビュー バーのアカウント アイコン。",
+ "authProviderUnavailable": "{0} は現在利用できません",
+ "hideAccounts": "アカウントの非表示",
+ "loading": "読み込み中...",
+ "manage": "管理",
+ "manage profile": "{0} (プロファイル) の管理",
+ "manageDynamicAuthProviders": "動的認証プロバイダーの管理...",
+ "manageTrustedExtensions": "信頼された拡張機能の管理",
+ "manageTrustedMCPServers": "信頼された MCP サーバーの管理",
+ "signOut": "サインアウト"
+ },
+ "vs/workbench/browser/parts/notifications/notificationAccessibleView": {
+ "clearNotification": "通知のクリア",
+ "notification.accessibleViewSrc": "{0} ソース: {1}"
},
"vs/workbench/browser/parts/notifications/notificationsActions": {
"clearAllIcon": "通知内のすべてクリアのアクションのアイコン。",
@@ -3523,15 +4478,17 @@
"clearNotifications": "すべての通知をクリア",
"collapseIcon": "通知内の折りたたみアクションのアイコン。",
"collapseNotification": "通知を折りたたむ",
+ "configureDoNotDisturbMode": "応答不可を構成します...",
"configureIcon": "通知内の構成アクションのアイコン。",
- "configureNotification": "通知を構成する",
+ "configureNotification": "その他のアクション...",
"copyNotification": "テキストをコピー",
"doNotDisturbIcon": "通知内のすべてミュート アクションのアイコン。",
"expandIcon": "通知内の展開アクションのアイコン。",
"expandNotification": "通知を展開",
"hideIcon": "通知内の非表示アクションのアイコン。",
"hideNotificationsCenter": "通知を非表示",
- "toggleDoNotDisturbMode": "応答不可モードの切り替え"
+ "toggleDoNotDisturbMode": "応答不可モードの切り替え",
+ "toggleDoNotDisturbModeBySource": "ソースごとに応答不可モードを切り替えます..."
},
"vs/workbench/browser/parts/notifications/notificationsAlerts": {
"alertErrorMessage": "エラー: {0}",
@@ -3539,22 +4496,32 @@
"alertWarningMessage": "警告: {0}"
},
"vs/workbench/browser/parts/notifications/notificationsCenter": {
+ "moreSources": "その他…",
"notifications": "通知",
"notificationsCenterWidgetAriaLabel": "通知センター",
"notificationsEmpty": "新しい通知はありません",
- "notificationsToolbar": "通知センターのアクション"
+ "notificationsToolbar": "通知センターのアクション",
+ "turnOffNotifications": "応答不可モードを無効にする",
+ "turnOnNotifications": "応答不可モードを有効にする"
},
"vs/workbench/browser/parts/notifications/notificationsCommands": {
+ "acceptNotificationPrimaryAction": "通知のプライマリ アクションを承諾する",
"clearAllNotifications": "すべての通知をクリア",
"focusNotificationToasts": "通知トーストにフォーカス",
"hideNotifications": "通知の非表示",
"notifications": "通知",
+ "selectSources": "次からの通知をすべて有効にするソースを選択する",
"showNotifications": "通知を表示",
- "toggleDoNotDisturbMode": "応答不可モードの切り替え"
+ "toggleDoNotDisturbMode": "応答不可モードの切り替え",
+ "toggleDoNotDisturbModeBySource": "ソースごとに応答不可モードを切り替えます..."
},
"vs/workbench/browser/parts/notifications/notificationsList": {
+ "notificationAccessibleViewHint": "アクセス可能なビュー内の応答を{0}で検査します",
+ "notificationAccessibleViewHintNoKb": "キー バインドを介して現在トリガーできない [アクセス可能なビューを開く] コマンドを使用して、アクセス可能なビューで応答を検査します",
"notificationAriaLabel": "{0}、通知",
+ "notificationAriaLabelHint": "{0}、通知、{1}",
"notificationWithSourceAriaLabel": "{0}、ソース: {1}、通知",
+ "notificationWithSourceAriaLabelHint": "{0}、ソース: {1}、通知、{2}",
"notificationsList": "通知リスト"
},
"vs/workbench/browser/parts/notifications/notificationsStatus": {
@@ -3578,7 +4545,21 @@
"vs/workbench/browser/parts/notifications/notificationsViewer": {
"executeCommand": "クリックして '{0}' コマンドを実行",
"notificationActions": "通知操作",
- "notificationSource": "ソース: {0}"
+ "notificationSource": "ソース: {0}",
+ "turnOffNotifications": "'{0}' からの情報と警告の通知をオフにする",
+ "turnOnNotifications": "'{0}' からの通知をすべてオンにする"
+ },
+ "vs/workbench/browser/parts/paneCompositeBar": {
+ "auxiliarybar": "セカンダリ サイド バー",
+ "moveToMenu": "移動先",
+ "panel": "パネル",
+ "resetLocation": "場所のリセット",
+ "sidebar": "プライマリ サイド バー"
+ },
+ "vs/workbench/browser/parts/paneCompositePart": {
+ "moreActions": "その他の操作...",
+ "pane.emptyMessage": "ここにビューをドラッグして表示します。",
+ "views": "ビュー"
},
"vs/workbench/browser/parts/panel/panelActions": {
"alignPanel": "パネルの配置",
@@ -3591,18 +4572,16 @@
"alignPanelRight": "パネルの配置を右に設定する",
"alignPanelRightShort": "右",
"closeIcon": "パネルを閉じるためのアイコン。",
- "closePanel": "パネルを閉じる",
- "closeSecondarySideBar": "セカンダリ サイド バーを閉じる",
+ "closePanel": "パネルを非表示にする",
"focusPanel": "パネルにフォーカスする",
- "hidePanel": "パネルを非表示",
"maximizeIcon": "パネルを最大化するためのアイコン。",
"maximizePanel": "パネル サイズの最大化",
- "miPanel": "&&Panel",
- "miPanelNoMnemonic": "Panel",
+ "miTogglePanelMnemonic": "パネル(&&P)",
"minimizePanel": "パネル サイズを元に戻す",
"movePanelToSecondarySideBar": "パネル ビューをセカンダリ サイド バーに移動する",
"moveSidePanelToPanel": "セカンダリ サイド バー ビューをパネルに移動する",
"nextPanelView": "次のパネル ビュー",
+ "openAndClosePanel": "パネルを開く/表示/閉じる/非表示にする",
"panelMaxNotSupported": "パネルの最大化は、中央揃えの場合にのみサポートされます。",
"positionPanel": "パネルの位置",
"positionPanelBottom": "パネルを下に移動",
@@ -3611,8 +4590,9 @@
"positionPanelLeftShort": "左",
"positionPanelRight": "パネルを右に移動",
"positionPanelRightShort": "右",
+ "positionPanelTop": "パネルを上に移動",
+ "positionPanelTopShort": "上",
"previousPanelView": "前の パネル ビュー",
- "restoreIcon": "パネルを復元するためのアイコン。",
"toggleMaximizedPanel": "最大化されるパネルの切り替え",
"togglePanel": "パネルの切り替え",
"togglePanelOffIcon": "オンのときにパネルをオフに切り替えるアイコン。",
@@ -3620,37 +4600,34 @@
"togglePanelVisibility": "パネルの表示/非表示の切り替え"
},
"vs/workbench/browser/parts/panel/panelPart": {
+ "align panel": "パネルの配置",
"hidePanel": "パネルを非表示",
- "moreActions": "その他の操作...",
- "panel.emptyMessage": "ここにビューをドラッグして表示します。",
- "pinned view containers": "パネル エントリの表示のカスタマイズ",
- "resetLocation": "場所のリセット"
+ "panel position": "パネルの位置",
+ "showIcons": "アイコンの表示",
+ "showLabels": "ラベルの表示"
},
"vs/workbench/browser/parts/sidebar/sidebarActions": {
+ "closeSidebar": "プライマリ サイド バーを閉じる",
"focusSideBar": "プライマリ サイド バーにフォーカスする"
},
+ "vs/workbench/browser/parts/sidebar/sidebarPart": {
+ "toggleActivityBar": "アクティビティ バーの表示の切り替え"
+ },
"vs/workbench/browser/parts/statusbar/statusbarActions": {
"focusStatusBar": "フォーカス ステータス バー",
- "hide": "'{0}' の非表示"
- },
- "vs/workbench/browser/parts/statusbar/statusbarModel": {
- "statusbar.hidden": "ステータス バー エントリの表示のカスタマイズ"
+ "hide": "'{0}' の非表示",
+ "manageExtension": "拡張機能の管理"
},
"vs/workbench/browser/parts/statusbar/statusbarPart": {
"hideStatusBar": "ステータス バーを非表示にする"
},
"vs/workbench/browser/parts/titlebar/commandCenterControl": {
- "all": "検索モードを表示...",
- "commandCenter-activeBackground": "コマンド センターのアクティブ背景色",
- "commandCenter-activeForeground": "コマンド センターのアクティブ前景色",
- "commandCenter-background": "コマンド センターの背景色",
- "commandCenter-border": "コマンド センターの境界線の色",
- "commandCenter-foreground": "コマンド センターの前景色",
"label.dfl": "検索",
"label1": "{1} {0}",
"label2": "{1} {0}",
"title": "検索 {0} ({1}) — {2}",
- "title2": "検索 {0} — {1}"
+ "title2": "検索 {0} — {1}",
+ "title3": "コマンド センター"
},
"vs/workbench/browser/parts/titlebar/menubarControl": {
"DownloadingUpdate": "更新をダウンロードしています...",
@@ -3669,19 +4646,39 @@
"mSelection": "選択(&&S)",
"mTerminal": "ターミナル(&&T)",
"mView": "表示(&&V)",
- "menubar.customTitlebarAccessibilityNotification": "アクセシビリティのサポートが有効になっています。最もアクセシビリティの高いエクスペリエンスのためには、カスタム タイトル バーのスタイルをお勧めします。",
+ "menubar.customTitlebarAccessibilityNotification": "アクセシビリティのサポートが有効になっています。最もアクセシビリティの高いエクスペリエンスを実現するには、カスタム メニュー スタイルをお勧めします。",
"restartToUpdate": "再起動して更新(&&U)"
},
+ "vs/workbench/browser/parts/titlebar/titlebarActions": {
+ "accounts": "アカウント",
+ "hideCustomTitleBar": "カスタム タイトル バーを非表示にする",
+ "hideCustomTitleBarInFullScreen": "全画面表示でカスタム タイトル バーを非表示にする",
+ "manage": "管理",
+ "showCustomTitleBar": "カスタム タイトル バーを表示する",
+ "toggle.commandCenter": "コマンド センター",
+ "toggle.commandCenterDescription": "タイトル バーのコマンド センターの表示/非表示を切り替えます",
+ "toggle.customTitleBar": "カスタム タイトル バー",
+ "toggle.editorActions": "エディター操作",
+ "toggle.hideCustomTitleBar": "カスタム タイトル バーを非表示にする",
+ "toggle.hideCustomTitleBarInFullScreen": "全画面表示でカスタム タイトル バーを非表示にする",
+ "toggle.layout": "レイアウト コントロール",
+ "toggle.layoutDescription": "タイトル バーのレイアウト コントロールの表示/非表示を切り替えます",
+ "toggle.navigation": "ナビゲーション コントロール",
+ "toggle.navigationDescription": "タイトル バーのナビゲーション コントロールの表示を切り替える"
+ },
"vs/workbench/browser/parts/titlebar/titlebarPart": {
- "focusTitleBar": "タイトル バーにフォーカスする",
- "toggle.commandCenter": "Command Center",
- "toggle.layout": "Layout Controls"
+ "ariaLabelTitleActions": "タイトル アクション",
+ "focusTitleBar": "タイトル バーにフォーカスする"
},
"vs/workbench/browser/parts/titlebar/windowTitle": {
"devExtensionWindowTitlePrefix": "[拡張機能開発ホスト]",
"userIsAdmin": "[管理者]",
"userIsSudo": "[スーパー ユーザー]"
},
+ "vs/workbench/browser/parts/views/checkbox": {
+ "checked": "チェック済み",
+ "unchecked": "未チェック"
+ },
"vs/workbench/browser/parts/views/treeView": {
"collapseAll": "すべて折りたたむ",
"command-error": "コマンド {1} の実行中にエラー {0} が発生しました。{1} を提供する拡張機能が原因である可能性があります。",
@@ -3691,7 +4688,11 @@
"treeView.enableRefresh": "ID {0} のツリー ビューで [最新の情報に更新] を有効にするかどうか。",
"treeView.toggleCollapseAll": "ID {0} のツリー ビューで [すべて折りたたむ] が切り替えられているかどうか。"
},
+ "vs/workbench/browser/parts/views/viewFilter": {
+ "more filters": "その他のフィルター..."
+ },
"vs/workbench/browser/parts/views/viewPane": {
+ "viewAccessibilityHelp": "アクセシビリティのヘルプ {0} に Alt + F1 キーを使用する",
"viewPaneContainerCollapsedIcon": "折りたたまれたビュー ペイン コンテナーのアイコン。",
"viewPaneContainerExpandedIcon": "展開されたビュー ペイン コンテナーのアイコン。",
"viewToolbarAriaLabel": "{0} アクション"
@@ -3704,55 +4705,84 @@
"views": "表示",
"viewsMove": "移動ビュー"
},
- "vs/workbench/browser/parts/views/viewsService": {
- "focus view": "{0} ビューにフォーカスを置く",
- "resetViewLocation": "場所のリセット",
- "show view": "{0} を表示",
- "toggle view": "{0} の切り替え"
- },
"vs/workbench/browser/quickaccess": {
"inQuickOpen": "キーボード フォーカスが Quick Open コントロール内にあるかどうか"
},
- "vs/workbench/browser/workbench": {
- "loaderErrorNative": "必要なファイルの読み込みに失敗しました。アプリケーションを再起動してもう一度試してください。詳細: {0}"
+ "vs/workbench/browser/web.main": {
+ "reset": "ユーザー データをリセットする",
+ "reset user data message": "データ (設定、キー バインド、拡張機能、スニペット、UI 状態) をリセットして再読み込みしますか?"
+ },
+ "vs/workbench/browser/window": {
+ "closeWindowButtonLabel": "ウィンドウを閉じる(&&C)",
+ "closeWindowMessage": "ウィンドウを閉じますか?",
+ "doNotAskAgain": "今後このメッセージを表示しない",
+ "exitButtonLabel": "終了(&&E)",
+ "openExternalDialogButtonInstall.v3": "インストール(&&I)",
+ "openExternalDialogButtonRetry.v2": "再試行(&&T)",
+ "openExternalDialogDetail.v2": "お使いのコンピューターで {0} を起動しました。\r\n\r\n{1}が起動しなかった場合は、もう一度試すか、下にインストールしてください。",
+ "openExternalDialogDetailNoInstall": "お使いのコンピューターで {0} を起動しました。\r\n\r\n もし{1} が起動しなかった場合は、以下でもう一度お試しください。",
+ "openExternalDialogTitle": "すべて完了しました。このタブを閉じることができるようになりました。",
+ "quitButtonLabel": "終了(&&Q)",
+ "quitMessage": "終了しますか?",
+ "quitMessageMac": "終了しますか?",
+ "reload": "再読み込み(&&R)",
+ "retry": "再試行(&&R)",
+ "shutdownError": "このページの再読み込みが必要な予期しないエラーが発生しました。",
+ "shutdownErrorDetail": "ワークベンチの実行中に予期せず破棄されました。",
+ "unableToOpenExternal": "ブラウザーによって新しいタブまたはウィンドウを開くことがブロックされました。[再試行] を押して、もう一度やり直してください。",
+ "unableToOpenWindowDetail": "[ブラウザー設定]({0}) でこの Web サイトのポップアップを許可してください。"
},
"vs/workbench/browser/workbench.contribution": {
"activeEditorLong": "`${activeEditorLong}`: ファイルの完全なパス (例: /Users/Development/myFolder/myFileFolder/myFile.txt)。",
"activeEditorMedium": "`${activeEditorMedium}`: ワークスペース フォルダーに対して相対的なファイルのパス (例: myFolder/myFileFolder/myFile.txt)。",
- "activeEditorShort": "'${activeEditorShort}': ファイル名 (例: myFile.txt)。",
- "activeFolderLong": "'${activeFolderLong}': ファイルが格納されているフォルダーのフルパス (例: /Users/Development/myFolder/myFileFolder)。",
+ "activeEditorShort": "`${activeEditorShort}`: ファイル名 (例: myFile.txt)。",
+ "activeEditorState": "'${activeEditorState}': アクティブ エディターの状態 (変更など) に関する情報を提供します。これは、スクリーン リーダー モードで {0} が有効になっている場合に、既定で追加されます。",
+ "activeFolderLong": "`${activeFolderLong}`: ファイルが格納されているフォルダーのフルパス (例: /Users/Development/myFolder/myFileFolder)。",
"activeFolderMedium": "`${activeFolderMedium}`: ファイルを含むフォルダーの、ワークスペースフォルダーからの相対パス(例: myFolder/myFileFolder)。",
"activeFolderShort": "`${activeFolderShort}`: ファイルが含まれているフォルダーの名前 (例: myFileFolder)。",
- "activityBarIconClickBehavior": "ワークベンチのアクティビティ バー アイコンをクリックする動作を制御します。",
- "activityBarVisibility": "ワークベンチでのアクティビティ バーの表示をコントロールします。",
+ "activeRepositoryBranchName": "'${activeRepositoryBranchName}': アクティブなリポジトリ内のアクティブなブランチの名前 (例: main)。",
+ "activeRepositoryName": "'${activeRepositoryName}': アクティブなリポジトリの名前 (例: vscode)。",
+ "activityBarIconClickBehavior": "ワークベンチのアクティビティ バー アイコンをクリックする動作を制御します。{0} が {1} に設定されていない場合、この値は無視されます。",
+ "activityBarLocation": "プライマリとセカンダリのサイド バーに対するアクティビティ バーの相対的な場所を制御します。",
+ "alwaysShowEditorActions": "エディター グループがアクティブでない場合でも、常にエディターアクションを表示するかどうかを制御します。",
"appName": "`${appName}`: 例: VS Code。",
+ "askChatLocation": "コマンド パレットがチャットの質問をする場所を制御します。",
+ "askChatLocation.chatView": "チャット ビューでチャットの質問をします。",
+ "askChatLocation.quickChat": "クイック チャットでチャットの質問をします。",
+ "browser": "外部で http または https リンクを開くために使用するブラウザーを構成します。ブラウザーの名前 (`edge`、`chrome`、`firefox`) またはブラウザーの実行可能ファイルへの絶対パスを指定できます。設定されていない場合、システムの既定値が使用されます。",
"centeredLayoutAutoResize": "複数のグループが開かれているとき、中央揃えのレイアウトを自動的に横幅最大にするかどうかを制御します。1 つのグループのみが開かれている場合は、元の中央揃えの横幅に戻ります。",
+ "centeredLayoutDynamicWidth": "ウィンドウのサイズを変更するときに、中央のレイアウトで一定の幅を維持するかどうかを制御します。",
"closeEmptyGroups": "空のエディターのグループにある最後のタブを閉じたときの動作を制御します。有効であるとき、空のグループは自動的に閉じられます。無効であるとき、空のグループはグリッドの一部として残ります。",
"closeOnFileDelete": "セッション中のファイルを表示しているエディターが、その他のプロセスによって削除されるか名前を変更された場合に、エディターを自動的に閉じるかどうかを制御します。これを無効にすると、このような場合にエディターを開き続けます。アプリケーション内で削除すると、エディターは常に閉じられ、変更が保存されていないエディターのデータを保存して閉じることはありません。",
"closeOnFocusLost": "フォーカスを失ったときに Quick Open を自動的に閉じるかどうかを制御します。",
"commandHistory": "コマンド パレットで最近使用したコマンド履歴を保持する数を制御します。0 に設定するとコマンド履歴を無効にします。",
"confirmBeforeClose": "ウィンドウを閉じる前またはアプリケーションを終了する前に確認ダイアログを表示するかどうかを制御します。",
"confirmBeforeCloseWeb": "ブラウザーのタブまたはウィンドウを閉じる前に確認ダイアログを表示するかどうかを制御します。有効にされている場合でも、確認されることなくブラウザーのタブやウィンドウが閉じられることがあるため、この設定はすべての場合に機能するわけではない 1 つのヒントにすぎないことにご注意ください。",
+ "customEditorLabelDescriptionExample": "例: '\"**/static/**/*.html\": \"${filename} - ${dirname} (${extname})\"' は、ファイル `WORKSPACE_FOLDER/static/folder/file.html` を 'file - folder (html)' としてレンダリングします。",
"customMenuBarAltFocus": "Alt キーを押してメニュー バーにフォーカスするかどうかを制御します。この設定は、Alt キーを使用してメニュー バーを切り替える操作には影響しません。",
"decorations.badges": "エディター ファイルの装飾にバッジを使用するかどうかを制御します。",
"decorations.colors": "エディター ファイルの装飾に配色を使用するかどうかを制御します。",
"dirty": "`${dirty}`: アクティブなエディターの変更が保存されていない場合を示すインジケーター。",
- "editorOpenPositioning": "エディターを開く場所を制御します。`left` または `right` を選択すると現在アクティブになっているエディターの左または右にエディターを開きます。`first` または `last` を選択すると現在アクティブになっているエディターとは別個にエディターを開きます。",
- "editorTabCloseButton": "エディターのタブの [閉じる] ボタンの位置を制御するか、'off' に設定された場合に無効にします。`#workbench.editor.showTabs#` が無効な場合、この値は無視されます。",
+ "doubleClickTabToToggleEditorGroupSizes": "タブをダブルクリックしたときにエディター グループのサイズを変更する方法を制御します。{0} が {1} に設定されていない場合、この値は無視されます。",
+ "dragToOpenWindow": "エディターをウィンドウからドラッグして新しいウィンドウで開くことができるかどうかを制御します。これを動的に切り替えるには、ドラッグ中に `Alt` キーを長押しします。",
+ "editorActionsLocation": "エディター アクションを表示する場所を制御します。",
+ "editorOpenPositioning": "エディターを開く場所を制御します。{0} または {1} を選択すると、現在アクティブになっているエディターの左または右にエディターが開きます。{2} または {3} を選択すると、現在アクティブになっているエディターとは別個にエディターが開きます。",
+ "enableDefaultVisibilityInOldWorkspace": "既定の可視性サポートが導入される前の古いワークスペースで、既定のセカンダリ サイドバーの可視性を有効にします。",
"enableMenuBarMnemonics": "Alt キー ショートカットを使用してメイン メニューを開くことができるかどうかを制御します。ニーモニックを無効にすると、これらの Alt キー ショートカットを代わりにエディター コマンドにバインドできます。",
- "enablePreview": "開いているエディターをプレビュー エディターとして表示するかどうかを制御します。プレビュー エディターは開いたままではなく、明示的に (ダブル クリックや編集など) 開いたままに設定されるまで再利用されます。ファイル名は斜体で表示されます。",
- "enablePreviewFromCodeNavigation": "エディターからコード ナビゲーションを開始するときに、エディターをプレビュー状態のままにするかどうかを制御します。プレビュー エディターは開いたままではなく、明示的に開いたままに設定されるまで再利用されます (ダブルクリックや編集など)。`#workbench.editor.enablePreview#` が無効になっている場合、この値は無視されます。",
- "enablePreviewFromQuickOpen": "Quick Open から開いたエディターをプレビュー エディターとして表示するかどうかを制御します。プレビュー エディターは開いたままではなく、明示的に (ダブルクリックや編集など) 開いたままに設定されるまで再利用されます。`#workbench.editor.enablePreview#` が無効になっている場合、この値は無視されます。",
- "exclude": "ローカル ファイル履歴からファイルを除外するための [glob パターン](https://code.visualstudio.com/docs/editor/codebasics#_advanced-search-options) を構成します。この設定を変更しても、既存のローカル ファイル履歴エントリには影響しません。",
+ "enableNaturalLanguageSearch": "コマンド パレットに同様のコマンドを含めるかどうかを制御します。自然言語サポートを提供する拡張機能がインストールされている必要があります。",
+ "enablePreview": "エディターを開くときにプレビュー モードを使用するかどうかを制御します。エディター グループごとに最大 1 つのプレビュー モード エディターがあります。このエディターのファイル名は、タブまたはタイトル ラベルと [エディターを開く] ビューに斜体で表示されます。その内容は、プレビュー モードで開かれた次のエディターに置き換えられます。プレビュー モード エディターで変更を加えると、その変更は保持されます。ラベルをダブルクリックした場合や、ラベルのコンテキスト メニューの [開いたままにする] オプションを選択した場合も、変更は保持されます。エクスプローラーからファイルをダブルクリックで開くと、そのエディターがすぐに保持されます。",
+ "enablePreviewFromCodeNavigation": "エディターからコード ナビゲーションを開始するときに、エディターをプレビュー状態のままにするかどうかを制御します。プレビュー エディターは開いたままではなく、明示的に (ダブルクリックや編集により) 開いたままに設定されるまで再利用されます。{0} が {1} に設定されていない場合、この値は無視されます。",
+ "enablePreviewFromQuickOpen": "Quick Open から開いたエディターをプレビュー エディターとして表示するかどうかを制御します。プレビュー エディターは開いたままではなく、明示的に (ダブルクリックや編集により) 開いたままに設定されるまで再利用されます。有効になっている場合、選択する前に Ctrl キーを押しながらエディターをプレビューでない状態として開きます。{0} が {1} に設定されていない場合、この値は無視されます。",
+ "exclude": "ローカル ファイル履歴からファイルを除外するためのパスまたは [glob パターン](https://aka.ms/vscode-glob-patterns) を構成します。Glob パターンは、絶対パスでない限り、ワークスペース フォルダーのパスを基準にして常に評価されます。この設定を変更しても、既存のローカル ファイル履歴エントリには影響しません。",
"focusRecentEditorAfterClose": "最近使用した順序でタブを閉じるか、左から右の順にタブを閉じるかを制御します。",
- "folderName": "${folderName}`: ファイルが含まれているワークスペース フォルダーの名前 (例: myFolder)。",
+ "focusedView": "'${focusedView}': 現在フォーカスされているビューの名前。",
+ "folderName": "`${folderName}`: ファイルが含まれているワークスペース フォルダーの名前 (例: myFolder)。",
"folderPath": "`${folderPath}`: ファイルが含まれているワークスペースの絶対パスです (例: /Users/Development/myFolder)。",
"fontAliasing": "ワークベンチ内のフォント エイリアシング方法を制御します。",
- "highlightModifiedTabs": "変更が保存されていないエディターのタブで上罫線を描画するかどうかを制御します。`#workbench.editor.showTabs#` が無効な場合、この値は無視されます。",
- "layoutControlEnabled": "カスタム タイトル バーのレイアウト コントロールを {0} で有効にするかどうかを制御します。",
- "layoutControlEnabledDeprecation": "この設定は非推奨とされ、{0} が優先されます",
+ "highlightModifiedTabs": "変更が保存されていないエディターのタブで上罫線を描画するかどうかを制御します。{0} が {1} に設定されていない場合、この値は無視されます。",
+ "layoutControlEnabled": "レイアウト コントロールをカスタム タイトル バーに表示するかどうかを制御します。この設定は、{0} が {1} に設定されていない場合にのみ有効です。",
+ "layoutControlEnabledWeb": "カスタム タイトル バーのレイアウト コントロール ボタンを有効にするかどうかを制御します。",
"layoutControlType": "カスタム タイトル バーのレイアウト コントロールを 1 つのメニュー ボタンとして表示するか、複数の UI の切り替えで表示するかを制御します。",
- "layoutControlTypeDeprecation": "この設定は非推奨とされ、{0} が優先されます",
"layoutcontrol.type.both": "ドロップダウン ボタンとトグル ボタンの両方を表示します。",
"layoutcontrol.type.menu": "レイアウト オプションのドロップダウンを含む 1 つのボタンを表示します。",
"layoutcontrol.type.toggles": "パネルとサイド バーの表示を切り替えるボタンをいくつか示します。",
@@ -3766,44 +4796,60 @@
"menuBarVisibility.mac": "メニュー バーの表示と非表示を制御します。'切り替え' 設定は `アプリケーション メニューにフォーカス` を実行するとメニュー バーの表示と非表示が切り替わることを意味します。'コンパクト' 設定では、メニューがサイド バーに移動します。",
"mergeWindow": "ローカル ファイル履歴の最後のエントリが追加されるエントリに置き換えられる間隔を秒単位で構成します。これにより、自動保存が有効になっている場合など、追加されるエントリの総数を減らすことができます。この設定は、元のソースが同じエントリにのみ適用されます。この設定を変更しても、既存のローカル ファイル履歴エントリには影響しません。",
"mouseBackForwardToNavigate": "マウス ボタン 4 と 5 を、それぞれコマンド '前に戻る' と '次に進む' に使用できるようにします。",
+ "navigationControlEnabled": "ナビゲーション コントロールをカスタム タイトル バーに表示するかどうかを制御します。この設定は、{0} が {1} に設定されていない場合にのみ有効です。",
+ "navigationControlEnabledWeb": "ナビゲーション コントロールをタイトル バーに表示するかどうかを制御します。",
"navigationScope": "'前に戻る' や '次に進む' などのコマンドの履歴ナビゲーションの範囲をエディターで制御します。",
"openDefaultKeybindings": "キーバインド設定を開いたときに、すべての既定のキーバインド設定を表示するエディターも開くかどうかを制御します。",
"openDefaultSettings": "設定を開いたときに、すべての既定の設定を表示するエディターも開くかどうかを制御します。",
"openFilesInNewWindow": "コマンド ラインまたはファイル ダイアログを使用しているときに、ファイルを新規ウィンドウで開くかどうかを制御します。\r\n注、この設定は無視される場合もあります (例: `--new-window` または `--reuse-window` コマンド ライン オプションを使用した場合など)。",
"openFilesInNewWindowMac": "コマンド ラインまたはファイル ダイアログを使用しているときに、ファイルを新規ウィンドウで開くかどうかを制御します。\r\n注、この設定は無視される場合もあります (例: `--new-window` または `--reuse-window` コマンド ライン オプションを使用した場合など)。",
"openFoldersInNewWindow": "フォルダーを新しいウィンドウで開くか、最後のアクティブ ウィンドウで開くかどうかを制御します。\r\nこの設定は無視される場合もあります (例: `--new-window` または `--reuse-window` コマンド ライン オプションを使用する場合など)。",
- "panelDefaultLocation": "新しいワークスペース内のパネル (ターミナル、デバッグ コンソール、出力、問題) の既定の場所を制御します。エディター領域の下、右、または左に表示できます。",
+ "panelDefaultLocation": "新しいワークスペース内のパネル (ターミナル、デバッグ コンソール、出力、問題) の既定の場所を制御します。エディター領域の下、上、右、または左に表示できます。",
"panelOpensMaximized": "パネルを開くときに最大化するかどうかを制御します。開くときに必ず最大化するか、決して最大化しないか、最後に閉じたときの状態で開くかを選択できます。",
+ "panelShowLabels": "パネル タイトルのアクティビティ項目をラベルまたはアイコンとして表示するかどうかを制御します。",
"perEditorGroup": "開いているエディターの最大数をエディター グループごとに適用するか、すべてのエディター グループに適用するかを制御します。",
- "pinnedTabSizing": "固定されたエディターのタブのサイズ設定を制御します。固定されたタブは、開いているすべてのタブの先頭に表示され、通常、固定が解除されるまで閉じられません。`#workbench.editor.showTabs#` が無効な場合、この値は無視されます。",
+ "pinnedTabSizing": "ピン留めされたエディター タブのサイズを制御します。ピン留めされたタブは、開いているすべてのタブの先頭に並べ替えられ、通常はピン留めを外すまで閉じません。{0} が {1} に設定されていない場合、この値は無視されます。",
"preserveInput": "コマンド パレットを次回開いたとき、コマンド パレットの最後の入力を復元するかどうかを制御します。",
+ "problems.visibility": "エディターとワークベンチ全体で問題を表示するかどうかを制御します。",
+ "profileName": "`${profileName}`: ワークスペースが開かれているプロファイルの名前 (例: データ サイエンス (プロファイル))。既定のプロファイルが使用されている場合は無視されます。",
"remoteName": "`${remoteName}`: 例: SSH",
"restoreViewState": "エディターを閉じた後に再び開いたときに、最後のエディター ビューの状態 (スクロール位置など) を回復します。エディター ビューの状態は、エディター グループごとに保存され、グループが閉じられると破棄されます。エディター グループに以前のビュー状態が見つからなかった場合に、すべてのエディター グループにわたって最後に確認されたビュー状態を使用するには、{0} 設定を使用します。",
"revealIfOpen": "エディターを開くときに、どこの表示グループにエディターを表示するかどうかを制御します。無効にした場合、エディターは現在のアクティブなエディター グループに優先して開かれます。有効にした場合は、現在のアクティブなエディター グループで開くのではなく、既に開かれた状態のエディターを表示します。特定のグループ内や現在アクティブなグループの横に強制的にエディターを開いた場合などに、この設定が無視される場合もあることにご注意ください。",
- "rootName": "`${rootName}`: 開かれたワークスペースまたはフォルダーの名前 (例: myFolder または myWorkspace)。",
+ "rootName": "`${rootName}`: 利用可能なオプションのリモート名とワークスペース インジケーターのあるワークスペースの名前 (例: myFolder、myRemoteFolder [SSH]、myWorkspace (Workspace))。",
+ "rootNameShort": "`${rootNameShort}`: サフィックスのないワークスペースの短縮名 (例: myFolder、myRemoteFolder、myWorkspace)。",
"rootPath": "`${rootPath}`: 開かれたワークスペースまたはフォルダーのファイル パス (例: /Users/Development/myWorkspace)。",
- "scrollToSwitchTabs": "タブの上をスクロールしたときに、それらを開くかどうかを制御します。既定では、スクロール時にはタブは表示されるだけで、開かれることはありません。スクロール中に Shift キーを押したままにすると、その間この動作を変更できます。`#workbench.editor.showTabs#` が無効な場合、この値は無視されます。",
+ "scrollToSwitchTabs": "タブをスクロールして開くかどうかを制御します。既定では、スクロール時にはタブは表示されるだけで、開かれることはありません。スクロール時に Shift キーを長押しすると、その間にこの動作を変更できます。{0} が {1} に設定されていない場合、この値は無視されます。",
+ "secondarySideBarDefaultVisibility": "ワークスペースまたは初めて開く空のウィンドウにおけるセカンダリ サイド バーの既定の表示範囲を制御します。",
+ "secondarySideBarShowLabels": "セカンダリ サイド バー タイトルのアクティビティ項目をラベルまたはアイコンとして表示するかどうかを制御します。この設定は、{0} が {1} に設定されていない場合にのみ有効です。",
"separator": "`${separator}`: 値か固定のテキストで囲われたとき、条件付きの区切り記号 (\" - \") を表示します。",
"settings.editor.desc": "既定で使用する設定エディターを指定します。",
"settings.editor.json": "JSON ファイル エディターを使用します。",
"settings.editor.ui": "UI の設定エディターを使用します。",
+ "settings.showAISearchToggle": "検索を実行して AI 検索結果が利用可能になった後、設定エディターの検索バーに AI 検索結果の切り替えを表示するかどうかを制御します。",
"sharedViewState": "すべてのエディター グループで最新のエディター ビューの状態 (スクロール位置など) を保持し、エディター グループに対する特定のエディター ビュー状態が検出された場合は復元します。",
- "showEditorTabs": "開いているエディターをタブで表示するかどうかを制御します。",
+ "showAskInChat": "コマンド パレットの下部に [チャットで質問する] オプションを表示するかどうかを制御します。",
+ "showEditorTabs": "開いているエディターを個々のタブとして表示するか、1 つの大きなタブとして表示するか、タイトル領域を表示しないかを制御します。",
"showIcons": "開いているエディターをアイコン付きで表示するかどうかを制御します。これにはファイル アイコン テーマも有効にする必要があります。",
+ "showTabIndex": "有効にすると、タブ インデックスが表示されます。{0} が {1} に設定されていない場合、この値は無視されます。",
"sideBarLocation": "プライマリ サイド バーとアクティビティ バーの場所を制御します。ワークベンチの左側または右側に表示できます。2 番目のサイド バーはワークベンチの反対側に表示されます。",
- "sideBySideDirection": "(たとえば、エクスプローラーから) 並べて開く複数のエディターの既定の向きを制御します。既定では、エディターを現在アクティブなものの右側に開きます。`down` に変更すると、エディターを現在アクティブなものの下側に開きます。",
+ "sideBySideDirection": "(たとえば、エクスプローラーから) 並べて開く複数のエディターの既定の向きを制御します。既定では、エディターを現在アクティブなものの右側に開きます。`down` に変更すると、エディターを現在アクティブなものの下側に開きます。これは、エディター ツール バーの分割エディター アクションにも影響します。",
"splitInGroupLayout": "エディター グループ内でエディターが分割された場合のレイアウトを、垂直方向または水平方向に制御します。",
"splitOnDragAndDrop": "エディターまたはファイルをエディター領域の端にドロップして、エディター グループをドラッグ アンド ドロップ操作から分割できるかどうかを制御します。",
- "splitSizing": "エディター グループの分割時のサイズを制御します。",
+ "splitSizing": "エディター グループを分割するときのサイズを制御します。",
"statusBarVisibility": "ワークベンチの下部にステータス バーを表示するかどうかを制御します。",
+ "suggestCommands": "コマンド パレットに一般的に使用されるコマンドのリストを含めるかどうかを制御します。",
+ "swipeToNavigate": "3 本指で水平方向にスワイプして、開いているファイル間を移動します。[システム環境設定] > [トラックパッド] > [その他のジェスチャ] は、[2 本指または 3 本指でスワイプ] に設定する必要があります。",
+ "tabActionLocation": "エディターのタブ動作設定ボタンの位置を制御します (閉じる、ピン留めを外す)。{0} が {1} に設定されていない場合、この値は無視されます。",
"tabDescription": "エディターに表示するラベルの書式を制御します。",
"tabScrollbarHeight": "エディター タイトル領域のタブおよび階層リンクに使用するスクロール バーの高さを制御します。",
- "tabSizing": "エディターのタブのサイズ設定を制御します。`#workbench.editor.showTabs#` が無効な場合、この値は無視されます。",
- "untitledHint": "無題のテキスト ヒントをエディターに表示するかどうかを制御します。",
+ "tabSizing": "エディター タブのサイズを制御します。{0} が {1} に設定されていない場合、この値は無視されます。",
+ "tips.enabled": "有効にすると、エディターを 1 つも開いていないときに透かしのヒントが表示されます。",
+ "titleScrollbarVisibility": "エディター タイトル領域のタブと階層リンクに使用されるスクロール バーの表示を制御します。",
"untitledLabelFormat": "無題のエディターのラベルの形式を制御します。",
"useSplitJSON": "JSON として設定を編集するときに、split JSON エディターを使用するかどうかを制御します。",
"viewVisibility": "ビュー ヘッダー アクションを表示するかどうかを制御します。ビュー ヘッダー アクションは常に表示されるか、パネルをフォーカスやホバーしたときのみ表示のいずれかです。",
- "window.commandCenter": "コマンド ランチャーをウィンドウ タイトルと共に表示します。この設定は、{0} が {1} に設定されている場合にのみ有効です。",
+ "window.commandCenter": "コマンド ランチャーをウィンドウ タイトルと共に表示します。この設定は、{0} が {1} に設定されていない場合にのみ有効です。",
+ "window.commandCenterWeb": "コマンド ランチャーをウィンドウ タイトルと共に表示します。",
"window.confirmBeforeClose.always": "常に確認メッセージを表示します。",
"window.confirmBeforeClose.always.web": "常に確認を求めようとします。それでも参照者は確認せずにタブやウィンドウを閉じることができることにご注意ください。",
"window.confirmBeforeClose.keyboardOnly": "キー バインドが使用された場合にのみ確認を求めます。",
@@ -3811,7 +4857,8 @@
"window.confirmBeforeClose.never": "明示的に確認を求めることはありません。",
"window.confirmBeforeClose.never.web": "データの損失が差し迫っていない限り、明示的に確認メッセージが表示されません。",
"window.menuBarVisibility.classic": "メニューはウィンドウの上部に表示され、全画面表示モードでのみ非表示になります。",
- "window.menuBarVisibility.compact": "メニューは、サイド バーにコンパクト ボタンとして表示されます。{0} が {1} の場合、この値は無視されます。",
+ "window.menuBarVisibility.compact": "メニューは、サイド バーにコンパクト ボタンとして表示されます。この値は、{0} が {1} で、{2} が {3} または {4} の場合、無視されます。",
+ "window.menuBarVisibility.compact.web": "メニューは、サイド バーにコンパクト ボタンとして表示されます。",
"window.menuBarVisibility.hidden": "メニューは常に非表示です。",
"window.menuBarVisibility.toggle": "メニューは非表示になっていますが、Alt キーを使用してウィンドウの上部に表示できます。",
"window.menuBarVisibility.toggle.mac": "メニューは非表示になっていますが、`アプリケーション メニューにフォーカス` コマンドを実行するとウィンドウの上部に表示できます。",
@@ -3824,11 +4871,29 @@
"window.openFoldersInNewWindow.off": "フォルダーを最後のアクティブ ウィンドウで開きます。",
"window.openFoldersInNewWindow.on": "フォルダーを新しいウィンドウで開きます。",
"window.titleSeparator": "{0} で使用される区切り記号。",
- "windowConfigurationTitle": "ウィンドウ",
- "windowTitle": "アクティブなエディターに基づいてウィンドウのタイトルを制御します。変数はコンテキストに基づいて置き換えられます:",
- "workbench.activityBar.iconClickBehavior.focus": "クリックした項目が既に表示されている場合は、サイド バーにフォーカスします。",
- "workbench.activityBar.iconClickBehavior.toggle": "クリックした項目が既に表示されている場合は、サイド バーを非表示にします。",
+ "windowTitle": "開いているワークスペースやアクティブなエディターなどの現在のコンテキストに基づいて、ウィンドウのタイトルを制御します。変数は、コンテキストに基づいて置き換えられます。",
+ "workbench.activityBar.iconClickBehavior.focus": "クリックした項目が既に表示されている場合は、プライマリ サイド バーにフォーカスします。",
+ "workbench.activityBar.iconClickBehavior.toggle": "クリックした項目が既に表示されている場合は、プライマリ サイド バーを非表示にします。",
+ "workbench.activityBar.location.bottom": "プライマリとセカンダリのサイド バーの下部にアクティビティ バーを表示します。",
+ "workbench.activityBar.location.default": "プライマリ サイド バーの横とセカンダリ サイド バーの上にアクティビティ バーを表示します。",
+ "workbench.activityBar.location.hide": "プライマリとセカンダリのサイド バーのアクティビティ バーを非表示にします。",
+ "workbench.activityBar.location.top": "プライマリとセカンダリのサイド バーの上部にアクティビティ バーを表示します。",
+ "workbench.editor.doubleClickTabToToggleEditorGroupSizes.expand": "エディター グループは、他のすべてのエディター グループをできるだけ小さくすることで、可能な限り多くの領域を占有します。",
+ "workbench.editor.doubleClickTabToToggleEditorGroupSizes.maximize": "他のすべてのエディター グループは非表示になり、現在のエディター グループが最大化されてエディター領域全体が占有されます。",
+ "workbench.editor.doubleClickTabToToggleEditorGroupSizes.off": "タブをダブルクリックしても、エディター グループのサイズは変更されません。",
+ "workbench.editor.editorActionsLocation.default": "{0} が {1} に設定されているときにウィンドウのタイトル バーにエディター アクションを表示します。それ以外の場合は、エディターのタブ バーにエディター アクションが表示されます。",
+ "workbench.editor.editorActionsLocation.hidden": "エディター アクションは表示されません。",
+ "workbench.editor.editorActionsLocation.titleBar": "ウィンドウのタイトル バーにエディター アクションを表示します。{0} が {1} に設定されている場合、エディター アクションは表示されません。",
+ "workbench.editor.empty.hint": "空白のエディターのテキスト ヒントをエディターに表示するかどうかを制御します。",
"workbench.editor.historyBasedLanguageDetection": "言語検出でエディター履歴を使用できるようにします。これにより、自動言語検出は最近開かれた言語を優先し、より少ない入力で自動言語検出を動作させることができます。",
+ "workbench.editor.label.dirname": "'${dirname}': ファイルが配置されているフォルダーの名前 (例: `WORKSPACE_FOLDER/folder/file.txt -> folder`)。",
+ "workbench.editor.label.enabled": "カスタム ワークベンチ エディターのラベルを適用する必要があるかどうかを制御します。",
+ "workbench.editor.label.extname": "'${extname}': ファイル拡張子 (例: `WORKSPACE_FOLDER/folder/file.txt -> txt`)。",
+ "workbench.editor.label.filename": "'${filename}': ファイル拡張子のないファイル名 (例: `WORKSPACE_FOLDER/folder/file.txt -> file`)。",
+ "workbench.editor.label.nthdirname": "`${dirname(N)}`: ファイルが配置されている n 番目の親フォルダーの名前 (例: `N=2: WORKSPACE_FOLDER/static/folder/file.txt -> WORKSPACE_FOLDER`)。負の数を使用すると、パスの先頭からフォルダーを選択できます (例: `N=-1: WORKSPACE_FOLDER/folder/file.txt -> WORKSPACE_FOLDER`)。__Item__ が絶対パターン パスの場合、最初のフォルダー (`N=-1`) は絶対パスの最初のフォルダーを参照し、それ以外の場合はワークスペース フォルダーに対応します。",
+ "workbench.editor.label.nthextname": "'${extname(N)}': '.' で区切られたファイルの n 番目の拡張子。(例: 'N=2: WORKSPACE_FOLDER/folder/file.ext1.ext2.ext3 -> ext1')。拡張子は、負の数を使用すると、拡張子の先頭から選択できます (例: `N=-1: `N=-1: WORKSPACE_FOLDER/folder/file.ext1.ext2.ext3 -> ext2`)。",
+ "workbench.editor.label.patterns": "エディター ラベルのレンダリングを制御します。各 __Item__ は、ファイル パスに一致するパターンです。相対ファイル パスと絶対ファイル パスの両方がサポートされています。相対パスには WORKSPACE_FOLDER を含める必要があります (例: 'WORKSPACE_FOLDER/src/**.tsx' または '*/src/**.tsx')。絶対パターンの先頭は `/` にする必要があります。複数のパターンが一致する場合は、最長一致のあるパスが選択されます。各 __Value__ は、__Item__ が一致する場合にレンダリングされるエディターのテンプレートです。変数は、コンテキストに基づいて置き換えられます。",
+ "workbench.editor.label.template": "パターンが一致したときにレンダリングする必要があるテンプレート。変数 ${dirname}、${filename}、${extname} を含めることができます。",
"workbench.editor.labelFormat.default": "ファイルの名前を表示します。タブが有効かつ 1 つのグループ内の 2 つの同名ファイルに各ファイルのパスの区切り記号が追加されます。タブを無効にすると、エディターがアクティブな時にワークスペース フォルダーの相対パスが表示されます。",
"workbench.editor.labelFormat.long": "絶対パスに続けてファイル名を表示します。",
"workbench.editor.labelFormat.medium": "ワークスペース フォルダーからの相対パスに続けてファイル名を表示します。",
@@ -3840,18 +4905,37 @@
"workbench.editor.pinnedTabSizing.compact": "固定されたタブは、コンパクト形式でアイコンまたはエディター名の最初の文字のみが表示されます。",
"workbench.editor.pinnedTabSizing.normal": "固定されたタブは、固定されていないタブの外観を継承します。",
"workbench.editor.pinnedTabSizing.shrink": "固定されたタブは、エディター名の一部を示すコンパクトな固定サイズに縮小されます。",
+ "workbench.editor.pinnedTabsOnSeparateRow": "有効にすると、ピン留めされたタブが他のすべてのタブの上に、個別の行で表示されます。{0} が {1} に設定されていない場合、この値は無視されます。",
"workbench.editor.preferBasedLanguageDetection": "有効にすると、エディター履歴を考慮した言語検出モデルの方が優先順位が高くなります。",
+ "workbench.editor.preventPinnedEditorClose": "キーボードまたはマウスの中クリックを使用して閉じるときに、ピン留めされたエディターを閉じるかどうかを制御します。",
+ "workbench.editor.preventPinnedEditorClose.always": "マウスの中クリックまたはキーボードを使用する場合は、ピン留めされたエディターを閉じないようにしてください。",
+ "workbench.editor.preventPinnedEditorClose.never": "ピン留めされたエディターを閉じないようにします。",
+ "workbench.editor.preventPinnedEditorClose.onlyKeyboard": "キーボードを使用する場合は、ピン留めされたエディターを閉じないようにします。",
+ "workbench.editor.preventPinnedEditorClose.onlyMouse": "マウスの中央クリックを使用する場合は、ピン留めされたエディターを閉じないようにします。",
"workbench.editor.showLanguageDetectionHints": "有効にすると、エディターの言語が検出されたコンテンツ言語と一致しない場合のステータス バーのクイック修正が表示されます。",
"workbench.editor.showLanguageDetectionHints.editors": "無題のテキスト エディターで表示",
"workbench.editor.showLanguageDetectionHints.notebook": "ノートブック エディターで表示",
+ "workbench.editor.showTabs.multiple": "各エディターは、エディターのタイトル領域にタブとして表示されます。",
+ "workbench.editor.showTabs.none": "エディターのタイトル領域は表示されていません。",
+ "workbench.editor.showTabs.single": "アクティブなエディターは、エディターのタイトル領域に 1 つの大きなタブとして表示されます。",
"workbench.editor.splitInGroupLayoutHorizontal": "エディターは左から右に配置されます。",
"workbench.editor.splitInGroupLayoutVertical": "エディターは上から下に配置されます。",
+ "workbench.editor.splitSizingAuto": "すべてのエディター グループが既に等分に分割されていない限り、アクティブなエディター グループを等分に分割します。その場合、すべてのエディター グループを等分に分割します。",
"workbench.editor.splitSizingDistribute": "すべてのエディター グループを等分に分割します。",
"workbench.editor.splitSizingSplit": "アクティブなエディター グループを等分に分割します。",
+ "workbench.editor.tabActionCloseVisibility": "タブの [閉じる] 動作設定ボタンの表示を制御します。",
+ "workbench.editor.tabActionUnpinVisibility": "タブの [ピン留めを外す] 動作設定ボタンの表示を制御します。",
+ "workbench.editor.tabHeight": "エディター タブの高さを制御します。{0} が {1} に設定されていない場合は、タイトル コントロール バーにも適用されます。",
"workbench.editor.tabSizing.fit": "常に完全なエディター ラベルを表示するのに足りるタブの大きさを維持します。",
+ "workbench.editor.tabSizing.fixed": "すべてのタブを同じサイズにし、使用可能な領域が一度にすべてのタブを表示するのに十分でない場合に小さくできるようにします。",
"workbench.editor.tabSizing.shrink": "すべてのタブを一度に表示するには利用可能なスペースが足りない場合に、タブを縮小するようにします。",
+ "workbench.editor.tabSizingFixedMaxWidth": "{0} サイズが {1} に設定されている場合のタブの最大幅を制御します。",
+ "workbench.editor.tabSizingFixedMinWidth": "{0} サイズが {1} に設定されている場合のタブの最小幅を制御します。",
"workbench.editor.titleScrollbarSizing.default": "既定のサイズ。",
"workbench.editor.titleScrollbarSizing.large": "マウスでつかみやすいサイズに拡大する。",
+ "workbench.editor.titleScrollbarVisibility.auto": "水平スクロールバーは、必要な場合にのみ表示されます。",
+ "workbench.editor.titleScrollbarVisibility.hidden": "水平スクロールバーは常に非表示になります。",
+ "workbench.editor.titleScrollbarVisibility.visible": "水平スクロールバーは常に表示されます。",
"workbench.editor.untitled.labelFormat.content": "無題ファイルの名前は、ファイル パスが関連付けられていない限り、最初の行の内容から導き出されます。行が空であるか、単語文字が含まれていない場合に、名前にフォールバックします。",
"workbench.editor.untitled.labelFormat.name": "無題のファイルの名前は、ファイルの内容から派生していません。",
"workbench.fontAliasing.antialiased": "サブピクセルとは対照的に、ピクセルのレベルでフォントを滑らかにします。フォント全体がより細く見えるようになります。",
@@ -3860,39 +4944,54 @@
"workbench.fontAliasing.none": "フォントのスムージングを無効にします。テキストをぎざぎざな尖ったエッジで表示します。",
"workbench.hover.delay": "ワークベンチ項目にホバーが表示されるまでの待ち時間 (ミリ秒) を制御します (例: 拡張機能が用意されている一部のツリー ビュー項目)。既に表示されている項目では、この設定の変更を反映するために更新が必要な場合があります。",
"workbench.panel.opensMaximized.always": "開くときにパネルを常に最大化します。",
- "workbench.panel.opensMaximized.never": "開くときにパネルを決して最大化しません。パネルは最大化されずに開きます。",
+ "workbench.panel.opensMaximized.never": "パネルを開くときに最大化しません。",
"workbench.panel.opensMaximized.preserve": "閉じる前の状態でパネルを開きます。",
+ "workbench.panel.output": "出力ビュー",
"workbench.quickOpen.preserveInput": "Quick Open を次回開いたとき、Quick Open の最後の入力を復元するかどうかを制御します。",
"workbench.reduceMotion": "ワークベンチがレンダリングするアニメーション数を減少させるかどうかを制御します。",
"workbench.reduceMotion.auto": "OS 構成に基づいて、モーションを削減してレンダリングします。",
"workbench.reduceMotion.off": "モーションを削減してレンダリングしない",
"workbench.reduceMotion.on": "常にモーションを削減してレンダリングする。",
- "wrapTabs": "使用可能なスペースを超えたときにタブを複数行に折り返すか、スクロール バーを表示するかどうかを制御します。`#workbench.editor.showTabs#` が無効な場合、この値は無視されます。",
+ "workbench.secondarySideBar.defaultVisibility.hidden": "セカンダリ サイド バーは既定で非表示になっています。",
+ "workbench.secondarySideBar.defaultVisibility.maximized": "セカンダリ サイド バーが表示され、既定では最大化されます。",
+ "workbench.secondarySideBar.defaultVisibility.maximizedInWorkspace": "ワークスペースを開くと、セカンダリ サイド バーが表示され既定では最大化されます。",
+ "workbench.secondarySideBar.defaultVisibility.visible": "セカンダリ サイド バーは既定で表示されています。",
+ "workbench.secondarySideBar.defaultVisibility.visibleInWorkspace": "ワークスペースを開くと、セカンダリ サイド バーはデフォルトで表示されます。",
+ "workbench.view.showQuietly": "拡張機能が非表示のビューの表示を要求している場合は、代わりにクリック可能なステータス バー インジケーターを表示します。",
+ "wrapTabs": "使用可能な領域を超えたときに複数の行にタブを折り返すか、またはスクロール バーを表示するかどうかを制御します。{0} が '{1}' に設定されていない場合、この値は無視されます。",
"zenMode.centerLayout": "Zen Mode をオンにしたときに、レイアウトを中央寄せにするかどうかを制御します。",
"zenMode.fullScreen": "Zen Mode をオンにしたときに、ワークベンチを自動的に全画面モードに切り替えるかどうかを制御します。",
"zenMode.hideActivityBar": "Zen Mode をオンにしたときに、ワークベンチの左側または右側のいずれかにあるアクティビティ バーを非表示にするかどうかを制御します。",
"zenMode.hideLineNumbers": "Zen Mode をオンにしたときにエディターの行番号も非表示にするかどうかを制御します。",
"zenMode.hideStatusBar": "Zen Mode をオンにするとワークベンチの下部にあるステータス バーを非表示にするかどうかを制御します。",
- "zenMode.hideTabs": "Zen Mode をオンにしたときにワークベンチ タブも非表示にするかどうかを制御します。",
"zenMode.restore": "Zen Mode で終了したウィンドウを Zen Mode に復元するかどうかを制御します。",
+ "zenMode.showTabs": "Zen Mode をオンにしたときに、複数のエディター タブ、1 つのエディター タブを表示するか、またはエディターのタイトル領域を完全に非表示にするかを制御します。",
+ "zenMode.showTabs.multiple": "各エディターは、エディターのタイトル領域にタブとして表示されます。",
+ "zenMode.showTabs.none": "エディターのタイトル領域は表示されていません。",
+ "zenMode.showTabs.single": "アクティブなエディターは、エディターのタイトル領域に 1 つの大きなタブとして表示されます。",
"zenMode.silentNotifications": "Zen Mode の間に通知の応答不可モードを有効にするかどうかを制御します。true の場合は、エラー通知のみが表示されます。",
"zenModeConfigurationTitle": "Zen Mode"
},
- "vs/workbench/common/actions": {
- "developer": "開発者",
- "help": "ヘルプ",
- "preferences": "基本設定",
- "test": "テスト",
- "view": "表示"
- },
"vs/workbench/common/configuration": {
+ "active window": "アクティブ ウィンドウ",
+ "applicationConfigurationTitle": "アプリケーション",
+ "newWindowProfile": "新しいウィンドウを開くときに使用するプロファイルを指定します。プロファイル名を指定すると、新しいウィンドウでそのプロファイルが使用されます。プロファイル名が指定されていない場合、新しいウィンドウはアクティブ ウィンドウのプロファイルを使用するか、アクティブなウィンドウが存在しない場合は既定のプロファイルを使用します。",
+ "problemsConfigurationTitle": "問題",
+ "security.allowedUNCHosts": "ユーザーの確認なしで許可する UNC ホスト名のセット (先頭または末尾にバックスラッシュ (例: `192.168.0.1` や `my-server`) が含まれます)。この設定で許可されていない UNC ホストにアクセスしている場合、またはユーザーの確認によって確認されていない場合は、エラーが発生し、操作が停止します。この設定を変更する場合は、再起動が必要です。この設定の詳細については、https://aka.ms/vscode-windows-unc を参照してください。",
+ "security.allowedUNCHosts.patternErrorMessage": "UNC ホスト名にバックスラッシュを含めることはできません。",
+ "security.restrictUNCAccess": "有効にすると、`#security.allowedUNCHosts#` 設定またはユーザーの確認後に許可された UNC ホスト名へのアクセスのみが許可されます。この設定の詳細については、https://aka.ms/vscode-windows-unc をご覧ください。",
+ "securityConfigurationTitle": "セキュリティ",
+ "windowConfigurationTitle": "ウィンドウ",
"workbenchConfigurationTitle": "ワークベンチ"
},
"vs/workbench/common/contextkeys": {
+ "SelectedEditorsInGroupFileOrUntitledResourceContextKey": "グループ内の選択したすべてのエディターにファイルまたは無題のリソースが関連付けられているかどうか",
"activeAuxiliary": "アクティブな補助パネルの識別子",
+ "activeCompareEditorCanSwap": "アクティブな比較エディターでサイドを入れ替えることができるかどうか",
"activeEditor": "アクティブなエディターの識別子",
"activeEditorAvailableEditorIds": "アクティブなエディターのために使用できる使用可能なエディター識別子",
"activeEditorCanRevert": "アクティブなエディターが元に戻せるかどうか",
+ "activeEditorCanToggleReadonly": "アクティブ エディターが読み取り専用と書き込み可能のどちらを切り替えることができるか",
"activeEditorGroupEmpty": "アクティブなエディター グループが空であるかどうか",
"activeEditorGroupIndex": "アクティブなエディター グループのインデックス",
"activeEditorGroupLast": "アクティブなエディター グループが最後のグループかどうか",
@@ -3906,19 +5005,29 @@
"activePanel": "アクティブなパネルの識別子",
"activeViewlet": "アクティブなビューレットの識別子",
"auxiliaryBarFocus": "補助バーにキーボード フォーカスがあるかどうか",
+ "auxiliaryBarMaximized": "補助バーを最大化するかどうか",
"auxiliaryBarVisible": "補助バーが見えるかどうか",
"bannerFocused": "バナーにキーボード フォーカスがあるかどうか",
"dirtyWorkingCopies": "変更が保存されていない作業コピーがあるかどうか",
- "editorAreaVisible": "エディター領域が表示されているかどうか",
"editorIsOpen": "エディターが開いているかどうか",
+ "editorPartEditorGroupMaximized": "エディター パーツには最大化されたグループがあります",
+ "editorPartMultipleEditorGroups": "エディター パーツで複数のエディター グループが開かれているかどうか",
"editorTabsVisible": "エディター タブを表示するかどうか",
+ "embedderIdentifier": "製品サービスに従った埋め込みの識別子 (定義されている場合)",
"focusedView": "キーボード フォーカスがあるビューの識別子",
"groupEditorsCount": "開かれているエディター グループの数",
+ "inAutomation": "VS Code が自動化/スモーク テストで実行されているかどうか",
"inZenMode": "Zen Mode が有効になっているかどうか",
- "isCenteredLayout": "中央揃えのレイアウトが有効になっているかどうか",
+ "isAuxiliaryWindow": "ウィンドウは補助ウィンドウです",
+ "isAuxiliaryWindowFocusedContext": "補助ウィンドウがフォーカスされているかどうか",
+ "isCompactTitleBar": "タイトル バーはコンパクト モードです",
"isFileSystemResource": "リソースがファイル システム プロバイダーによってサポートされているかどうか",
- "isFullscreen": "ウィンドウが全画面モードになっているかどうか",
+ "isFullscreen": "メイン ウィンドウが全画面モードになっているかどうか",
+ "isMainEditorCenteredLayout": "メイン エディターで中央揃えのレイアウトが有効になっているかどうか",
+ "isWindowAlwaysOnTop": "ウィンドウが常に手前に表示されているかどうか",
+ "mainEditorAreaVisible": "メイン ウィンドウのエディター領域を表示するかどうか",
"multipleEditorGroups": "複数のエディター グループが開かれているかどうか",
+ "multipleEditorsSelectedInGroup": "エディター グループで複数のエディターが選択されているかどうか",
"notificationCenterVisible": "通知センターが表示されているかどうか",
"notificationFocus": "通知にキーボード フォーカスがあるかどうか",
"notificationToastsVisible": "通知トーストが表示されているかどうか",
@@ -3941,14 +5050,20 @@
"sideBySideEditorActive": "横並びエディターがアクティブかどうか",
"splitEditorsVertically": "エディターが垂直方向に分割されているかどうか",
"statusBarFocused": "ステータス バーにキーボード フォーカスがあるかどうか",
+ "temporaryWorkspace": "現在のワークスペースのスキームは、一時ファイル システムからのスキームです。",
"textCompareEditorActive": "テキスト比較エディターがアクティブかどうか",
"textCompareEditorVisible": "テキスト比較エディターが表示されているかどうか",
- "virtualWorkspace": "仮想ファイル システムまたは空の文字列からの場合の、現在のワークスペースのスキーム。",
+ "titleBarStyle": "ウィンドウ タイトル バーのスタイル",
+ "titleBarVisible": "タイトル バーが表示されるかどうか",
+ "twoEditorsSelectedInGroup": "エディター グループでエディターが 2 つだけ選択されているかどうか",
+ "virtualWorkspace": "仮想ファイル システムまたは空の文字列からの現在のワークスペースのスキーム。",
"workbenchState": "ウィンドウで開かれているワークスペースの種類。'empty' (ワークスペースなし)、'folder' (単一フォルダー)、または 'workspace' (マルチルート ワークスペース) のいずれか",
"workspaceFolderCount": "ワークスペース内のルート フォルダーの数"
},
"vs/workbench/common/editor": {
"builtinProviderDisplayName": "ビルトイン",
+ "configureEditorLargeFileConfirmation": "制限の構成",
+ "openLargeFile": "それでも開く",
"promptOpenWith.defaultEditor.displayName": "テキスト エディター"
},
"vs/workbench/common/editor/diffEditorInput": {
@@ -3971,9 +5086,23 @@
"activityBarDragAndDropBorder": "アクティビティ バー項目のフィードバック色をドラッグ アンド ドロップします。アクティビティ バーは、一番左または右に表示され、サイド バーのビューを切り替えることができます。",
"activityBarForeground": "アクティブなアクティビティ バー項目の前景色。アクティビティ バーは左端または右端に表示され、サイド バーのビューを切り替えることができます。",
"activityBarInActiveForeground": "非アクティブなアクティビティ バー項目の前景色。アクティビティ バーは左端または右端に表示され、サイド バーのビューを切り替えることができます。",
+ "activityBarTop": "アクティビティ バーが上部/下部にある場合の、アクティブな項目の前景色。アクティビティでは、サイド バーのビューを切り替えることができます。",
+ "activityBarTopActiveBackground": "アクティビティ バーが上部/下部にあるときの、アクティブな項目の背景色。アクティビティでは、サイド バーのビューを切り替えることができます。",
+ "activityBarTopActiveFocusBorder": "アクティビティ バーが上部/下部にあるときの、アクティブな項目のフォーカス境界線の色。アクティビティでは、サイド バーのビューを切り替えることができます。",
+ "activityBarTopBackground": "上部/下部に設定した場合のアクティビティ バーの背景色。",
+ "activityBarTopDragAndDropBorder": "アクティビティ バーが上部/下部にある場合、項目のフィードバックの色をドラッグ アンド ドロップします。アクティビティでは、サイド バーのビューを切り替えることができます。",
+ "activityBarTopInActiveForeground": "アクティビティ バーが上部/下部にある場合の、非アクティブな項目の前景色。アクティビティでは、サイド バーのビューを切り替えることができます。",
"banner.background": "バナーの背景色。バナーは、ウィンドウのタイトル バーの下に表示されます。",
"banner.foreground": "バナーの前景色。バナーは、ウィンドウのタイトル バーの下に表示されます。",
"banner.iconForeground": "バナーのアイコンの色。バナーは、ウィンドウのタイトル バーの下に表示されます。",
+ "commandCenter-activeBackground": "コマンド センターのアクティブ背景色",
+ "commandCenter-activeBorder": "コマンド センターのアクティブな境界線の色",
+ "commandCenter-activeForeground": "コマンド センターのアクティブ前景色",
+ "commandCenter-background": "コマンド センターの背景色",
+ "commandCenter-border": "コマンド センターの境界線の色",
+ "commandCenter-foreground": "コマンド センターの前景色",
+ "commandCenter-inactiveBorder": "ウィンドウが非アクティブな場合のコマンド センターの境界線の色",
+ "commandCenter-inactiveForeground": "ウィンドウが非アクティブな場合のコマンド センターの前景色",
"editorDragAndDropBackground": "エディターの周囲をドラッグしているときの背景色。エディターのコンテンツが最後まで輝くために、色は透過である必要があります。",
"editorDropIntoPromptBackground": "ファイルをドラッグするときにエディターに表示されるテキストの背景色。このテキストは、シフトを押したままエディターにドロップできることをユーザーに通知します。",
"editorDropIntoPromptBorder": "ファイルをドラッグするときにエディター上に表示されるテキストの境界線の色。このテキストは、シフトを押したままエディターにドロップできることをユーザーに通知します。",
@@ -3981,7 +5110,7 @@
"editorGroupBorder": "複数のエディター グループを互いに分離するための色。エディター グループはエディターのコンテナーです。",
"editorGroupEmptyBackground": "空のエディター グループの背景色。エディター グループはエディターのコンテナーです。",
"editorGroupFocusedEmptyBorder": "フォーカスがある空のエディター グループの境界線色。エディター グループはエディターのコンテナーです。",
- "editorGroupHeaderBackground": "タブが無効な場合 (`\"workbench.editor.showTabs\": false`) のエディター グループ タイトル ヘッダーの背景色。エディター グループはエディターのコンテナーです。",
+ "editorGroupHeaderBackground": "(`\"workbench.editor.showTabs\": \"single\"`) の場合のエディター グループ タイトル ヘッダーの背景色。エディター グループは、エディターのコンテナーです。",
"editorPaneBackground": "中央揃えのエディター レイアウトの左右に表示されるエディター ペインの背景色。",
"editorTitleContainerBorder": "エディター グループのタイトル ヘッダーの境界線の色。エディター グループは、エディターのコンテナーです。",
"extensionBadge.remoteBackground": "拡張機能ビューのリモート バッジの背景色。",
@@ -4001,6 +5130,8 @@
"notificationsInfoIconForeground": "情報通知のアイコンに使用される色。通知は、ウィンドウの右下から表示されます。",
"notificationsLink": "通知内リンクの前景色。通知はウィンドウの右下からスライド表示します。",
"notificationsWarningIconForeground": "警告通知のアイコンに使用される色。通知は、ウィンドウの右下から表示されます。",
+ "outputViewBackground": "出力ビューの背景色。",
+ "outputViewStickyScrollBackground": "出力ビューのスティッキー スクロールの背景色。",
"panelActiveTitleBorder": "アクティブ パネル タイトルの境界線の色。パネルはエディター領域の下に表示され、出力や統合ターミナルなどのビューを含みます。",
"panelActiveTitleForeground": "アクティブ パネルのタイトルの色。パネルはエディター領域の下に表示され、出力や統合ターミナルなどのビューを含みます。",
"panelBackground": "パネルの背景色。パネルはエディター領域の下に表示され、出力や統合ターミナルなどのビューを含みます。",
@@ -4013,6 +5144,15 @@
"panelSectionHeaderBackground": "パネル セクションのヘッダーの背景色。パネルはエディター領域の下に表示され、出力および統合ターミナルのようなビューが含まれます。パネル セクションは、パネル内で入れ子になっているビューです。",
"panelSectionHeaderBorder": "パネル内に複数のビューを縦方向に等間隔に配置するときに使用されるパネル セクション ヘッダーの境界線の色。パネルはエディター領域の下に表示され、出力や統合ターミナルなどのビューが含まれます。パネル セクションは、パネル内で入れ子になっているビューです。",
"panelSectionHeaderForeground": "パネル セクションのヘッダーの前景色。パネルはエディター領域の下に表示され、出力および統合ターミナルのようなビューが含まれます。パネル セクションは、パネル内で入れ子になっているビューです。",
+ "panelStickyScrollBackground": "パネル内でのスティッキー スクロールの背景色。",
+ "panelStickyScrollBorder": "パネル内でのスティッキー スクロールの境界線の色。",
+ "panelStickyScrollShadow": "エディター内でのスティッキー スクロールの影付きの色",
+ "panelTitleBadgeBackground": "パネル タイトル バッジの背景色。パネルはエディター領域の下に表示され、出力や統合ターミナルなどのビューを含みます。",
+ "panelTitleBadgeForeground": "パネル タイトル バッジの前景色。パネルはエディター領域の下に表示され、出力や統合ターミナルなどのビューを含みます。",
+ "panelTitleBorder": "下部のパネルのタイトルの境界線の色。ビューからタイトルを区切ります。パネルはエディター領域の下に表示され、出力や統合ターミナルなどのビューを含みます。",
+ "profileBadgeBackground": "プロファイル バッジの背景色。プロフィール バッジは、アクティビティ バーの設定歯車アイコンの上部に表示されます。",
+ "profileBadgeForeground": "プロファイル バッジの前景色。プロフィール バッジは、アクティビティ バーの設定歯車アイコンの上部に表示されます。",
+ "sideBarActivityBarTopBorder": "上部/下部のアクティビティ バーとビューの間の境界線の色。",
"sideBarBackground": "サイド バーの背景色。サイド バーは、エクスプローラーや検索などのビューが入るコンテナーです。",
"sideBarBorder": "エディターとの区切りを示すサイド バーの境界線の色。サイド バーは、エクスプローラーや検索などのビューが入るコンテナーです。",
"sideBarDragAndDropBackground": "サイド バー セクションのドラッグ アンド ドロップ フィードバックの色。この色には透明度を設定して、サイド バー セクションが透き通って見えるようにする必要があります。サイド バーはエクスプローラーや検索のようなビューのコンテナーです。サイド バー セクションは、サイド バー内で入れ子になっているビューです。",
@@ -4020,6 +5160,11 @@
"sideBarSectionHeaderBackground": "サイド バー セクションのヘッダーの背景色。サイド バーはエクスプローラーや検索のようなビューのコンテナーです。サイド バー セクションは、サイド バー内で入れ子になっているビューです。",
"sideBarSectionHeaderBorder": "サイド バー セクションのヘッダーの罫線の色。サイド バーはエクスプローラーや検索のようなビューのコンテナーです。サイド バー セクションは、サイド バー内で入れ子になっているビューです。",
"sideBarSectionHeaderForeground": "サイド バー セクションのヘッダーの前景色。サイド バーはエクスプローラーや検索のようなビューのコンテナーです。サイド バー セクションは、サイド バー内で入れ子になっているビューです。",
+ "sideBarStickyScrollBackground": "サイド バーでのスティッキー スクロールの背景色。",
+ "sideBarStickyScrollBorder": "サイド バー内でのスティッキー スクロールの境界線の色。",
+ "sideBarStickyScrollShadow": "サイド バー内でのスティッキー スクロールの影付きの色。",
+ "sideBarTitleBackground": "サイド バーのタイトルの背景色。サイド バーは、エクスプローラーや検索などのビューが入るコンテナーです。",
+ "sideBarTitleBorder": "下部のサイド バーのタイトルの境界線の色。ビューからタイトルを区切ります。サイド バーは、エクスプローラーや検索などのビューが入るコンテナーです。",
"sideBarTitleForeground": "サイド バーのタイトルの前景色。サイド バーは、エクスプローラーや検索などのビューが入るコンテナーです。",
"sideBySideEditor.horizontalBorder": "エディター グループでエディターを上下に並べて表示する場合に、各エディターを互いに区別する色。",
"sideBySideEditor.verticalBorder": "エディター グループでエディターを左右に並べて表示する場合に、各エディターを互いに区別する色。",
@@ -4027,22 +5172,34 @@
"statusBarBorder": "サイドバーとエディターを隔てるステータス バーの境界線色。ステータス バーはウィンドウの下部に表示されます。",
"statusBarErrorItemBackground": "ステータス バーでのエラー項目の背景色。エラー項目は、エラー条件を示すために他のステータス バーのエントリーより目立つように表示されます。ステータス バーはウィンドウの下部に表示されます。",
"statusBarErrorItemForeground": "ステータス バーでのエラー項目の前景色。エラー項目は、エラー条件を示すために他のステータス バーのエントリーより目立つように表示されます。ステータス バーはウィンドウの下部に表示されます。",
+ "statusBarErrorItemHoverBackground": "ホバー時のステータス バーでのエラー項目の背景色。エラー項目は、エラー条件を示すために他のステータス バーのエントリーより目立つように表示されます。ステータス バーはウィンドウの下部に表示されます。",
+ "statusBarErrorItemHoverForeground": "ホバー時のステータス バーでのエラー項目の前景色。エラー項目は、エラー条件を示すために他のステータス バーのエントリーより目立つように表示されます。ステータス バーはウィンドウの下部に表示されます。",
"statusBarFocusBorder": "キーボード ナビゲーションにフォーカスしている場合のステータス バーの境界線の色。ステータス バーがウィンドウの下部に表示されます。",
"statusBarForeground": "ワークスペースまたはフォルダーを開いているときのステータス バーの前景色。ステータス バーはウィンドウの下部に表示されます。",
"statusBarItemActiveBackground": "クリック時のステータス バーの項目の背景色。ステータス バーはウィンドウの下部に表示されます。",
"statusBarItemCompactHoverBackground": "2 つのホバーが含まれる項目をホバーしたときのステータス バーの項目の背景色。ステータス バーはウィンドウの下部に表示されます。",
"statusBarItemFocusBorder": "キーボード ナビゲーションでフォーカスしたときのステータス バーの項目の枠線の色。ステータス バーはウィンドウの下部に表示されます。",
- "statusBarItemHostBackground": "ステータス バーのリモート インジゲーターの背景色。",
- "statusBarItemHostForeground": "ステータス バーのリモート インジゲーターの前景色。",
"statusBarItemHoverBackground": "ホバーしたときのステータス バーの項目の背景色。ステータス バーはウィンドウの下部に表示されます。",
+ "statusBarItemHoverForeground": "ホバー時のステータス バーの項目の背景色。ステータス バーはウィンドウの下部に表示されます。",
+ "statusBarItemOfflineBackground": "ワークベンチがオフラインの場合のステータス バー項目の背景色。",
+ "statusBarItemOfflineForeground": "ワークベンチがオフラインの場合のステータス バー項目の前景色。",
+ "statusBarItemRemoteBackground": "ステータス バーのリモート インジゲーターの背景色。",
+ "statusBarItemRemoteForeground": "ステータス バーのリモート インジゲーターの前景色。",
"statusBarNoFolderBackground": "フォルダーが開いていないときのステータス バーの背景色。ステータス バーはウィンドウの下部に表示されます。",
"statusBarNoFolderBorder": "フォルダーを開いていないときにサイドバーとエディターを隔てるワークスペースのステータス バーの境界線の色。ステータス バーはウィンドウの下部に表示されます。",
"statusBarNoFolderForeground": "フォルダーが開いていないときのステータス バーの前景色。ステータス バーはウィンドウの下部に表示されます。",
- "statusBarProminentItemBackground": "ステータスバーで目立たせる項目の背景色。この項目は、重要性を示すために他のエントリーより目立って表示されます。コマンドパレットから `Toggle Tab Key Moves Focus` に切り替えると例を見ることができます。ステータスバーはウィンドウの下部に表示されます。",
- "statusBarProminentItemForeground": "ステータス バーの主要なアイテムの前景色。主要なアイテムは、重要性を示すために他のステータス バーのエントリより目立っています。例を表示するには、コマンド パレットからモード `Toggle Tab Key Moves Focus` を変更します。ステータス バーはウィンドウの下部に表示されます。",
- "statusBarProminentItemHoverBackground": "ホバー中のステータスバーで目立たせる項目の背景色。この項目は、重要性を示すために他のエントリーより目立って表示されます。コマンドパレットから `Toggle Tab Key Moves Focus` に切り替えると例を見ることができます。ステータスバーはウィンドウの下部に表示されます。",
+ "statusBarOfflineItemHoverBackground": "ワークベンチがオフラインのときのステータス バー項目の背景のホバーの色。",
+ "statusBarOfflineItemHoverForeground": "ワークベンチがオフラインのときのステータス バー項目の前景のホバーの色。",
+ "statusBarProminentItemBackground": "ステータス バーの目立つ項目の背景色。目立つ項目は、重要度を示すために、他のステータス バーエントリより目立ちます。ステータス バーがウィンドウの下部に表示されます。",
+ "statusBarProminentItemForeground": "ステータス バーの目立つ項目の前景色。目立つ項目は、重要度を示すために、他のステータス バーエントリから目立ちます。ステータス バーはウィンドウの下部に表示されます。",
+ "statusBarProminentItemHoverBackground": "ホバー時、ステータス バーの項目の背景色が目立ちます。目立つ項目は、重要度を示すために、他のステータス バーエントリより目立ちます。ステータス バーがウィンドウの下部に表示されます。",
+ "statusBarProminentItemHoverForeground": "ホバー時に目立つ項目の前景色。目立つ項目は、重要度を示すために、他のステータス バーエントリより目立ちます。ステータス バーがウィンドウの下部に表示されます。",
+ "statusBarRemoteItemHoverBackground": "ホバー時のステータス バーのリモート インジゲーターの背景色。",
+ "statusBarRemoteItemHoverForeground": "ホバー時のステータス バーのリモート インジゲーターの前景色。",
"statusBarWarningItemBackground": "ステータス バーでの警告項目の背景色。警告項目は、警告条件を示すために他のステータス バーのエントリーより目立つように表示されます。ステータス バーはウィンドウの下部に表示されます。",
"statusBarWarningItemForeground": "ステータス バーでの警告項目の前景色。警告項目は、警告条件を示すために他のステータス バーのエントリーより目立つように表示されます。ステータス バーはウィンドウの下部に表示されます。",
+ "statusBarWarningItemHoverBackground": "ホバー時のステータス バーでの警告項目の背景色。警告項目は、警告条件を示すために他のステータス バーのエントリーより目立つように表示されます。ステータス バーはウィンドウの下部に表示されます。",
+ "statusBarWarningItemHoverForeground": "ホバー時の、ステータス バー警告項目の前景色。警告項目は、警告条件を示すために他のステータス バーのエントリーより目立つように表示されます。ステータス バーはウィンドウの下部に表示されます。",
"tabActiveBackground": "アクティブ タブの背景色。タブはエディター領域におけるエディターのコンテナーです。1 つのエディター グループで複数のタブを開くことができます。エディター グループを複数にすることもできます。",
"tabActiveBorder": "アクティブなタブの下部の境界線。タブはエディター領域内にあるエディターのコンテナーです。複数のタブを 1 つのエディター グループで開くことができます。複数のエディター グループがある可能性があります。",
"tabActiveBorderTop": "アクティブなタブの上部の境界線。タブはエディター領域内にあるエディターのコンテナーです。複数のタブを 1 つのエディター グループで開くことができます。複数のエディター グループがある可能性があります。",
@@ -4051,12 +5208,16 @@
"tabActiveUnfocusedBorder": "フォーカスされていないグループ内で、アクティブなタブの下部の境界線。タブはエディター領域内にあるエディターのコンテナーです。複数のタブを 1 つのエディター グループで開くことができます。複数のエディター グループがある可能性があります。",
"tabActiveUnfocusedBorderTop": "フォーカスされていないグループ内で、アクティブなタブの上部の境界線。タブはエディター領域内にあるエディターのコンテナーです。複数のタブを 1 つのエディター グループで開くことができます。複数のエディター グループがある可能性があります。",
"tabBorder": "タブ同士を分けるための境界線。タブはエディター領域内にあるエディターのコンテナーです。複数のタブを 1 つのエディター グループで開くことができます。複数のエディター グループがある可能性があります。",
+ "tabDragAndDropBorder": "2 つのタブの間にタブを挿入できることを示すタブ間の境界線。タブはエディター領域のエディター用のコンテナーです。1 つのエディター グループで複数のタブを開くことができます。エディター グループが複数存在する可能性があります。",
"tabHoverBackground": "ホバー時のタブの背景色。タブはエディター領域におけるエディターのコンテナーです。1 つのエディター グループで複数のタブを開くことができます。エディター グループを複数にすることもできます。",
"tabHoverBorder": "ホバー時のタブを強調表示するための境界線。タブはエディター領域内にあるエディターのコンテナーです。複数のタブを 1 つのエディター グループで開くことができます。複数のエディター グループがある可能性があります。",
"tabHoverForeground": "カーソルを置いた時のタブの前景色。タブは、エディター領域内のエディターのコンテナーです。複数のタブを 1 つのエディター グループ内で開くことができます。複数のエディター グループを使用できます。",
"tabInactiveBackground": "非アクティブ タブの背景色。タブはエディター領域におけるエディターのコンテナーです。1 つのエディター グループで複数のタブを開くことができます。エディター グループを複数にすることもできます。",
"tabInactiveForeground": "アクティブ グループ内の非アクティブ タブの前景色。タブはエディター領域におけるエディターのコンテナーです。1 つのエディター グループで複数のタブを開くことができます。エディター グループを複数にすることもできます。",
"tabInactiveModifiedBorder": "アクティブ グループ内で、変更された非アクティブ タブの上部の境界線。タブはエディター領域内にあるエディターのコンテナーです。複数のタブを 1 つのエディター グループで開くことができます。複数のエディター グループがある可能性があります。",
+ "tabSelectedBackground": "選択したタブの背景。タブはエディター領域のエディター用のコンテナーです。1 つのエディター グループで複数のタブを開くことができます。エディター グループは複数存在することがあります。",
+ "tabSelectedBorderTop": "選択したタブの上部に罫線を設定します。タブはエディター領域のエディター用のコンテナーです。1 つのエディター グループで複数のタブを開くことができます。エディター グループは複数存在することがあります。",
+ "tabSelectedForeground": "選択したタブの前景。タブはエディター領域のエディター用のコンテナーです。1 つのエディター グループで複数のタブを開くことができます。エディター グループは複数存在することがあります。",
"tabUnfocusedActiveBackground": "フォーカスされていないグループ内のアクティブ タブの背景色。タブはエディター領域におけるエディターのコンテナーです。1 つのエディター グループで複数のタブを開くことができます。エディター グループを複数にすることもできます。",
"tabUnfocusedActiveForeground": "フォーカスされていないグループ内のアクティブ タブの前景色。タブはエディター領域におけるエディターのコンテナーです。1 つのエディター グループで複数のタブを開くことができます。エディター グループを複数にすることもできます。",
"tabUnfocusedHoverBackground": "ホバー時のフォーカスされていないグループ内のタブの背景色。タブはエディター領域におけるエディターのコンテナーです。1 つのエディター グループで複数のタブを開くことができます。エディター グループを複数にすることもできます。",
@@ -4073,120 +5234,160 @@
"titleBarInactiveForeground": "ウィンドウが非アクティブな場合のタイトル バーの前景。",
"unfocusedActiveModifiedBorder": "フォーカスされていないグループ内で、変更されたアクティブ タブの上部の境界線。タブはエディター領域内にあるエディターのコンテナーです。複数のタブを 1 つのエディター グループで開くことができます。複数のエディター グループがある可能性があります。",
"unfocusedINactiveModifiedBorder": "フォーカスされていないグループ内で、変更された非アクティブ タブの上部の境界線。タブはエディター領域内にあるエディターのコンテナーです。複数のタブを 1 つのエディター グループで開くことができます。複数のエディター グループがある可能性があります。",
- "windowActiveBorder": "ウィンドウがアクティブなときに境界線に使用する色。カスタム タイトル バーを使用する場合にのみ、デスクトップ クライアントでサポートされます。",
- "windowInactiveBorder": "ウィンドウが非アクティブな場合に境界線に使用される色。カスタム タイトル バーを使用する場合にのみデスクトップ クライアントでサポートされます。"
+ "windowActiveBorder": "macOS または Linux でアクティブなウィンドウの境界線に使用される色。Linux では、カスタム タイトル バーのスタイルとカスタムまたは非表示のウィンドウ コントロールが必要です。",
+ "windowInactiveBorder": "macOS または Linux で非アクティブなウィンドウの境界線に使用される色。Linux では、カスタム タイトル バーのスタイルとカスタムまたは非表示のウィンドウ コントロールが必要です。"
},
"vs/workbench/common/views": {
"defaultViewIcon": "既定のビューのアイコン。",
- "duplicateId": "ID '{0}' のビューは既に登録されています"
+ "duplicateId": "ID '{0}' のビューは既に登録されています",
+ "treeView.notRegistered": "ID '{0}' のツリー ビューは登録されていません。",
+ "views log": "ビュー"
},
- "vs/workbench/electron-sandbox/actions/developerActions": {
+ "vs/workbench/electron-browser/actions/developerActions": {
"configureRuntimeArguments": "ランタイム引数の構成",
"reloadWindowWithExtensionsDisabled": "拡張機能が無効な状態での再読み込み",
- "toggleDevTools": "開発者ツールの切り替え",
- "toggleSharedProcess": "共有プロセスを切り替える"
- },
- "vs/workbench/electron-sandbox/actions/installActions": {
+ "revealUserDataFolder": "ユーザー データ フォルダーの表示",
+ "showGPUInfo": "GPU 情報の表示",
+ "stopTracing": "トレースの停止",
+ "stopTracing.button": "トレースの再起動と有効化(&&R)",
+ "stopTracing.detail": "完了するまでに最大 1 分かかる場合があります。",
+ "stopTracing.message": "トレースは '--trace' 引数を指定して起動する必要があります",
+ "stopTracing.title": "トレース ファイルを作成しています...",
+ "toggleDevTools": "開発者ツールの切り替え"
+ },
+ "vs/workbench/electron-browser/actions/installActions": {
"install": "PATH 内に '{0}' コマンドをインストールします",
"shellCommand": "シェル コマンド",
"successFrom": "シェル コマンド '{0}' が PATH から正常にアンインストールされました。",
"successIn": "シェル コマンド '{0}' が PATH に正常にインストールされました。",
"uninstall": "'{0}' コマンドを PATH からアンインストールします"
},
- "vs/workbench/electron-sandbox/actions/windowActions": {
+ "vs/workbench/electron-browser/actions/windowActions": {
"close": "ウィンドウを閉じる",
+ "closeActive": "アクティブ ウィンドウを閉じる",
"closeWindow": "ウィンドウを閉じる",
"current": "現在のウィンドウ",
+ "disableWindowAlwaysOnTop": "[常に手前に表示] をオフにする",
+ "enableWindowAlwaysOnTop": "[常に手前に表示] をオンにする",
"miCloseWindow": "ウィンドウを閉じる(&&E)",
"miZoomIn": "拡大(&&Z)",
"miZoomOut": "縮小(&&Z)",
"miZoomReset": "ズームのリセット(&&R)",
- "quickSwitchWindow": "ウィンドウをすぐに切り替える...",
+ "quickSwitchWindow": "ウィンドウのクイック切り替え...",
"switchWindow": "ウィンドウの切り替え...",
"switchWindowPlaceHolder": "切り替え先のウィンドウを選択してください",
+ "toggleWindowAlwaysOnTop": "[ウィンドウを常に手前に表示] を切り替え",
"windowDirtyAriaLabel": "{0}、変更が保存されていないウィンドウ",
+ "windowGroup": "ウィンドウ グループ",
"zoomIn": "拡大",
"zoomOut": "縮小",
"zoomReset": "ズームのリセット"
},
- "vs/workbench/electron-sandbox/desktop.contribution": {
+ "vs/workbench/electron-browser/desktop.contribution": {
+ "application.shellEnvironmentResolutionTimeout": "アプリケーションがまだターミナルから起動されていない場合にシェル環境の解決を中止するまでのタイムアウトを秒単位で制御します。詳細については、[ドキュメント](https://go.microsoft.com/fwlink/?linkid=2149667) を参照してください。",
"argv.crashReporterId": "このアプリ インスタンスから送信されるクラッシュ レポートを関連付けるために使用される一意の ID。",
- "argv.disableHardwareAcceleration": "ハードウェア アクセラレータを無効にします。グラフィックの問題が発生した場合にのみ、このオプションを変更してください。",
+ "argv.disableChromiumSandbox": "Chromium サンドボックスを無効にします。 これは、VS Code を Linux では昇格して実行し、Windows では Applocker で実行する場合に便利です。",
+ "argv.disableHardwareAcceleration": "ハードウェア アクセラレータを無効にします。グラフィックの問題が発生している場合にのみ、このオプションを変更してください。",
+ "argv.disableLcdText": "LCD フォントのアンチエイリアシングを無効にします。",
"argv.enableCrashReporter": "クラッシュ レポートを無効にすることを許可します。値が変更された場合は、アプリを再起動する必要があります。",
+ "argv.enableRDPDisplayTracking": "RDP 再接続中に最大化されたウィンドウが正しく表示されるように復元されるようにします。",
"argv.enebleProposedApi": "拡張機能 ID のリストに対して提案された API を有効にします ('vscode.git' など)。提案された API は不安定で、警告なしに中断することがあります。これは拡張機能の開発とテストを目的とする場合にのみ設定してください。",
- "argv.force-renderer-accessibility": "レンダラーに強制的にアクセスできるようにします。この変更は、Linux でスクリーン リーダーを使用している場合にのみ行います。その他のプラットフォームでは、レンダラーは自動的にアクセスできるようになります。このフラグは、editor.accessibilitySupport がオンの場合に自動的に設定されます。",
- "argv.forceColorProfile": "使用するカラー プロファイルをオーバーライドできます。色が正しく表示されない場合は、これを 'srgb' に設定して再起動してみてください。",
- "argv.locale": "使用する表示言語。異なる言語を選択するには、関連付けられた言語パックをインストールする必要があります。",
- "argv.logLevel": "使用するログレベル。既定値は 'info' です。利用可能な値は 'critical', 'error', 'warn', 'info', 'debug', 'trace', 'off' です。",
- "closeWhenEmpty": "最後のエディターを閉じたときに、ウィンドウも閉じるかどうかを制御します。この設定はフォルダーを表示していないウィンドウにのみ適用されます。",
- "dialogStyle": "ダイアログ ウィンドウの外観を調整します。",
+ "argv.force-renderer-accessibility": "レンダラーを強制的にアクセス可能にします。Linux 上でスクリーン リーダーを使用している場合にのみ、これを変更してください。その他のプラットフォームでは、レンダラーは自動的にアクセス可能になります。editor.accessibilitySupport: on にしてある場合、このフラグは自動的にセットされます。",
+ "argv.forceColorProfile": "使用するカラー プロファイルをオーバーライドできるようにします。カラーの表示が不適切になっている場合は、これを 'srgb' に設定して再起動してみてください。",
+ "argv.locale": "使用する表示言語。異なる言語を選択するには、関連のある言語パックをインストールする必要があります。",
+ "argv.logLevel": "使用するログレベル。既定値は 'info' です。利用可能な値は 'error'、'warn'、'info'、'debug'、'trace'、'off' です。",
+ "argv.passwordStore": "Linux にシークレットを格納するために使用されるバックエンドを構成します。この引数は、Windows および macOS では無視されます。",
+ "argv.proxyBypassList": "指定されたセミコロンで区切られたホストのリストに関して、指定されたプロキシをバイパスします。値の例 \";*.microsoft.com;*foo.com;1.2.3.4:5678\" では、ローカル アドレス (localhost、127.0.0.1 など)、microsoft.com サブドメイン、サフィックス foo.com を含むホスト、1.2.3.4:5678 にある任意のホストを除くすべてのホストにプロキシ サーバーが使用されます",
+ "argv.remoteDebuggingPort": "リモート デバッグに使用するポートを指定します。",
+ "argv.useInMemorySecretStorage": "OS の資格情報ストアを使用する代わりに、メモリ内ストアがシークレット ストレージに使用されるようにします。これは、VS Code 拡張機能テストを実行する場合、または資格情報ストアで問題が発生している場合によく使用されます。",
+ "closeWhenEmpty": "最後のエディターを閉じた場合にウィンドウも閉じるかどうかを制御します。この設定は、フォルダーを表示していないウィンドウにのみ適用されます。",
+ "confirmSaveUntitledWorkspace": "別のワークスペースに切り替えるときに、開かれている無題のワークスペースを保存するか破棄するかの質問を、確認ダイアログに表示するかどうかを制御します。確認ダイアログを無効にすると、無題のワークスペースは常に破棄されるようになります。",
+ "controlsStyle": "ウィンドウ コントロールの外観を、OS によるネイティブ表示、カスタム描画、または非表示に調整します。変更を適用するには、完全な再起動が必要です。",
+ "dialogStyle": "ダイアログの外観を OS またはカスタムでネイティブに調整します。",
"enableCrashReporterDeprecated": "この設定が false の場合、新しい設定の値に関係なくテレメトリは送信されません。{0}設定に結合されているため、非推奨になりました。",
- "experimentalUseSandbox": "試験的: 有効にすると、ウィンドウで Electron API を使用してサンドボックス モードが有効になります。",
"keyboardConfigurationTitle": "キーボード",
- "mergeAllWindowTabs": "すべてのウィンドウを統合",
+ "mergeAllWindowTabs": "すべてのウィンドウをマージする",
"miExit": "終了(&&X)",
- "moveWindowTabToNewWindow": "ウィンドウ タブを新しいウィンドウに移動",
+ "moveWindowTabToNewWindow": "ウィンドウ タブを新しいウィンドウに移す",
"newTab": "新しいウィンドウ タブ",
- "newWindowDimensions": "既に 1 つ以上のウィンドウを開いているとき、新しく開くウィンドウのサイズを制御します。この設定は、最初に開いたウィンドウに適用されないことに注意してください。最初のウィンドウは常に、前回閉じたサイズと位置で復元します。",
+ "newWindowDimensions": "少なくとも 1 つのウィンドウが既に開かれている場合に、新しく開くウィンドウのサイズを制御します。この設定は、最初に開かれるウィンドウに影響を与えることはありません。最初のウィンドウのサイズと位置は、常に、閉じる前と同じに復元されます。",
"openWithoutArgumentsInNewWindow": "引数なしで 2 つ目のインスタンスを起動するとき、新しい空のウィンドウを開くか、最後に実行されていたウィンドウにフォーカスするかどうかを制御します。\r\nこの設定は無視される場合もあります (例: `--new-window` または `--reuse-window` コマンド ライン オプションを使用する場合など)。",
- "restoreFullscreen": "全画面表示モードで終了した場合に、ウィンドウを全画面表示モードに復元するかどうかを制御します。",
- "restoreWindows": "初めての起動後にウィンドウを再度開く方法を制御します。この設定は、アプリケーションが既に実行中の場合は効果がありません。",
- "showNextWindowTab": "次のウィンドウ タブを表示",
- "showPreviousTab": "前のウィンドウ タブを表示",
+ "restoreFullscreen": "終了時に全画面表示モードだったウィンドウを、全画面表示モードに復元するかどうかを制御します。",
+ "restoreWindows": "開くときにウィンドウとエディターを復元する方法を制御します。",
+ "security.promptForLocalFileProtocolHandling": "有効にした場合、ローカル ファイルまたはワークスペースがプロトコル ハンドラーを介して開くたびに確認を求めるダイアログが表示されます。",
+ "security.promptForRemoteFileProtocolHandling": "有効にした場合、リモート ファイルまたはワークスペースがプロトコル ハンドラーを介して開かれるたびに確認を求めるダイアログが表示されます。",
+ "showNextWindowTab": "次のウィンドウ タブを表示する",
+ "showPreviousTab": "前のウィンドウ タブを表示する",
"telemetry.enableCrashReporting": "クラッシュ レポートの収取を有効にします。これにより、安定性が向上します。\r\nこのオプションを有効にするには、再起動が必要です。",
"telemetryConfigurationTitle": "テレメトリ",
- "titleBarStyle": "ウィンドウのタイトル バーの外観を調整します。Linux と Windows では、この設定はアプリケーションとコンテキスト メニューの外観にも影響します。変更を適用するには完全な再起動が必要です。",
- "toggleWindowTabsBar": "ウィンドウ タブ バーの切り替え",
+ "titleBarStyle": "ウィンドウ タイトル バーの外観を、OS またはカスタムでネイティブに調整します。変更を適用するには、完全な再起動が必要です。",
+ "toggleWindowTabsBar": "ウィンドウのタブ バーの切り替え",
"touchbar.enabled": "利用可能であれば macOS の Touch Bar ボタンを有効にします。",
"touchbar.ignored": "表示すべきではないタッチバー内のエントリの識別子のセット (たとえば、`workbench.action.navigateBack` など)。",
- "window.clickThroughInactive": "有効な場合、非アクティブなウィンドウをクリックするとウィンドウがアクティブになり、クリック可能な場合はマウスの下の要素がトリガーされます。無効にすると、非アクティブなウィンドウの任意の場所をクリックするとそのウィンドウがアクティブになり、要素には 2 回目のクリックが必要になります。",
- "window.doubleClickIconToClose": "有効になっている場合、タイトル バーでアプリケーション アイコンをクリックするとウィンドウが閉じ、ウィンドウをアイコンでドラッグすることができません。この設定が有効になるのは、`#window.titleBarStyle#` が `custom` に設定されている場合のみです。",
- "window.nativeFullScreen": "MacOS でネイティブのフルスクリーンを使用するかどうかを制御します。このオプションを無効にすると、フルスクリーン表示時に macOS が新しいスペースを作成しないようにします。",
- "window.nativeTabs": "macOS Sierra ウィンドウ タブを有効にします。この変更を適用するには完全な再起動が必要であり、ネイティブ タブでカスタムのタイトル バー スタイルが構成されていた場合はそれが無効になることに注意してください。",
+ "window.border.color": "{0}: 16進数、RGB、RGBA、HSL、HSLA 形式の特定の色",
+ "window.border.default": "{0}: カラー テーマの設定を尊重し、Windows の設定にフォールバックします",
+ "window.border.off": "{0}: 境界線の色を無効にする",
+ "window.border.prefix": "ウィンドウの境界線の色を制御します: ",
+ "window.border.suffix": "{0} を使用して、アクティブ ウィンドウと非アクティブ ウィンドウに異なる色を設定します。{1} が {2} に設定されている場合、この設定は無視されます。",
+ "window.border.system": "{0}: Windows の設定のみを尊重する",
+ "window.clickThroughInactive": "有効にすると、非アクティブ ウィンドウをクリックした場合に、ウィンドウのアクティブ化と、マウス カーソル下の要素のトリガー (クリック可能な場合) の両方が実行されます。無効にすると、非アクティブ ウィンドウのどこかをクリックした場合にそのウィンドウのアクティブ化だけが実行され、要素についてはもう一度クリックする必要があります。",
+ "window.customTitleBarVisibility": "カスタム タイトル バーを表示するタイミングを調整します。`windowed` の状態の全画面表示モードでは、カスタム タイトル バーを非表示にすることができます。{0} が `native` に設定されている場合、カスタム タイトル バーは、`never` の状態の非全画面表示モードでのみ非表示にできます。",
+ "window.customTitleBarVisibility.auto": "カスタム タイトル バーの可視性を自動的に変更します。",
+ "window.customTitleBarVisibility.never": "{0} が `native` に設定されている場合は、カスタム タイトル バーを非表示にします。",
+ "window.customTitleBarVisibility.windowed": "全画面表示で、カスタム タイトル バーを非表示にします。全画面表示でない場合は、カスタム タイトル バーの可視性を自動的に変更します。",
+ "window.doubleClickIconToClose": "この設定を有効にすると、タイトル バーのアプリケーション アイコンがダブルクリックされたときにウィンドウが閉じられます。ウィンドウをアイコンでドラッグすることはできません。この設定は、{0} が `custom` に設定されている場合にのみ有効です。",
+ "window.menuStyle": "メニュー スタイルを、OS ネイティブ、カスタム、または {0} で定義されたタイトル バー スタイルから継承されるように調整します。これは、コンテキスト メニューの外観にも影響します。変更を適用するには、完全な再起動が必要です。",
+ "window.menuStyle.custom": "カスタム メニューを使用します。",
+ "window.menuStyle.custom.mac": "カスタム コンテキスト メニューを使用します。",
+ "window.menuStyle.inherit": "メニュー スタイルを {0} で定義されているタイトル バー スタイルに合わせます。",
+ "window.menuStyle.inherit.mac": "コンテキスト メニュー スタイルを {0} で定義されているタイトル バー スタイルに合わせます。",
+ "window.menuStyle.mac": "コンテキスト メニューの外観を、OS ネイティブ、カスタム、または {0} で定義されたタイトル バー スタイルから継承されるように調整します。",
+ "window.menuStyle.native": "ネイティブ メニューを使用します。{0} が {1} に設定されている場合、これは無視されます。",
+ "window.menuStyle.native.mac": "ネイティブ コンテキスト メニューを使用します。",
+ "window.nativeFullScreen": "macOS でネイティブ全画面表示を使用するかどうかを制御します。全画面表示に移行するときに macOS によって新しいスペースが作成するのを回避するには、このオプションを無効にしてください。",
+ "window.nativeTabs": "macOS のネイティブ ウィンドウ タブを有効にします。変更を適用するには、完全な再起動が必要です。また、ネイティブ タブを使用すると、カスタム タイトル バー スタイル (構成されている場合) が無効になります。",
"window.newWindowDimensions.default": "新しいウィンドウを画面の中央に開きます。",
"window.newWindowDimensions.fullscreen": "新しいウィンドウを全画面表示モードで開きます。",
- "window.newWindowDimensions.inherit": "新しいウィンドウを、最後にアクティブだったウィンドウと同じサイズで開きます。",
- "window.newWindowDimensions.maximized": "新しいウィンドウを最大化した状態で開きます。",
- "window.newWindowDimensions.offset": "最後のアクティブなウィンドウと同じ寸法の新しいウィンドウをオフセット位置で開きます。",
- "window.openWithoutArgumentsInNewWindow.off": "最後にアクティブだった実行中のインスタンスにフォーカスします。",
+ "window.newWindowDimensions.inherit": "新しいウィンドウを、直前にアクティブだったウィンドウと同じサイズで開きます。",
+ "window.newWindowDimensions.maximized": "新しいウィンドウを最大化して開きます。",
+ "window.newWindowDimensions.offset": "新しいウィンドウを、直前にアクティブだったウィンドウと同じサイズで、位置をずらして開きます。",
+ "window.openWithoutArgumentsInNewWindow.off": "直前にアクティブだった実行中のインスタンスにフォーカスを置きます。",
"window.openWithoutArgumentsInNewWindow.on": "新しい空のウィンドウを開きます。",
- "window.reopenFolders.all": "フォルダー、ワークスペース、ファイルが (コマンド ラインなどから) 開かれている場合を除き、すべてのウィンドウを再度開きます。",
- "window.reopenFolders.folders": "フォルダー、ワークスペース、ファイルが (コマンド ラインなどから) 開かれている場合を除き、フォルダーまたはワークスペースが開かれていたすべてのウィンドウを再度開きます。",
+ "window.reopenFolders.all": "フォルダー、ワークスペース、またはファイルが開かれていない限り (コマンド ラインからなど)、すべてのウィンドウを再度開きます。ファイルが開くと、以前にウィンドウで開いていたエディターのいずれかが置き換えられます。",
+ "window.reopenFolders.folders": "フォルダー、ワークスペース、ファイルが (コマンド ラインなどから) 開かれている場合を除き、フォルダーまたはワークスペースが開かれていたすべてのウィンドウを再度開きます。ファイルが開くと、以前にウィンドウで開いていたエディターのいずれかが置き換えられます。",
"window.reopenFolders.none": "ウィンドウを再度開きません。フォルダーまたはワークスペースが (コマンド ラインなどから) 開かれている場合を除き、空のウィンドウが表示されます。",
- "window.reopenFolders.one": "フォルダー、ワークスペース、ファイルが (コマンド ラインなどから) 開かれている場合を除き、最後のアクティブ ウィンドウを再度開きます。",
- "window.reopenFolders.preserve": "常にすべてのウィンドウが再度開かれます。フォルダーまたはワークスペースが開かれている場合は (例: コマンド ラインから)、新しいウィンドウとして開かれます (ただし、前に開かれている場合は例外)。ファイルが開かれている場合、それらは復元されたウィンドウのうちの 1 つで開かれます。",
+ "window.reopenFolders.one": "フォルダー、ワークスペース、またはファイルが開かれていない限り、最後にアクティブなウィンドウを再度開きます (コマンド ラインなど)。ファイルが開くと、以前にウィンドウで開いていたエディターのいずれかが置き換えられます。",
+ "window.reopenFolders.preserve": "常にすべてのウィンドウが再度開かれます。フォルダーまたはワークスペースが開かれている場合は (例: コマンド ラインから)、新しいウィンドウとして開かれます (ただし、前に開かれている場合)。ファイルを開くと、復元されたウィンドウの 1 つで、以前に開いていたエディターと共に開きます。",
"windowConfigurationTitle": "ウィンドウ",
- "windowControlsOverlay": "HTML ベースのウィンドウ コントロールではなく、プラットフォームによって提供されるウィンドウ コントロールを使用します。変更を適用するには、完全な再起動が必要です。",
- "zoomLevel": "ウィンドウのズーム レベルを調整します。元のサイズは 0 で、1 つ上げるごとに (1 など) 20% ずつ拡大することを表し、1 つ下げるごとに (-1 など) 20% ずつ縮小することを表します。小数点以下の桁数を入力して、さらに細かくズーム レベルを調整することもできます。"
+ "zoomLevel": "すべてのウィンドウの既定のズーム レベルを調整します。`0` から 1 つ上げるごとに (`1` など) 20% ずつ拡大し、1 つ下げるごとに (`-1` など) 20% ずつ縮小することを表します。小数点以下の桁数を入力して、さらに細かくズーム レベルを調整することもできます。[拡大] および [縮小] コマンドでズーム レベルをすべてのウィンドウに適用するか、アクティブなウィンドウのみに適用するかを構成する方法については、{0} を参照してください。",
+ "zoomPerWindow": "'拡大' コマンドと '縮小' コマンドのズーム レベルが、すべてのウィンドウに適用されるのか、アクティブなウィンドウのみに適用されのるかを制御します。すべてのウィンドウに対する、ズーム レベルの既定値の構成については、「{0}」を参照してください。"
},
- "vs/workbench/electron-sandbox/desktop.main": {
+ "vs/workbench/electron-browser/desktop.main": {
"join.closeStorage": "UI 状態を保存しています"
},
- "vs/workbench/electron-sandbox/parts/dialogs/dialogHandler": {
- "aboutDetail": "バージョン: {0}\r\nコミット: {1}\r\n 日付: {2}\r\nElectron: {3}\r\nChromium: {4}\r\nNode.js: {5}\r\nV8: {6}\r\nOS: {7}",
- "cancelButton": "キャンセル",
+ "vs/workbench/electron-browser/parts/dialogs/dialogHandler": {
"copy": "コピー(&&C)",
- "okButton": "OK",
- "yesButton": "はい(&&Y)"
+ "okButton": "OK"
},
- "vs/workbench/electron-sandbox/window": {
- "cancelButton": "キャンセル(&&C)",
- "closeWindowButtonLabel": "ウィンドウを閉じる(&&C)",
- "closeWindowMessage": "ウィンドウを閉じますか?",
- "doNotAskAgain": "今後このメッセージを表示しない",
- "exitButtonLabel": "終了(&&E)",
+ "vs/workbench/electron-browser/window": {
+ "appRootWarning.banner": "インストール フォルダー ('{0}') に保存したファイルは、更新中に警告なしに上書きまたは削除され、元に戻すことができなくなる可能性があります。",
+ "configure": "構成",
+ "downloadArmBuild": "ダウンロード",
"keychainWriteError": "ログイン情報のキーチェーンへの書き込みが、エラー '{0}' で失敗しました。",
"learnMore": "詳細情報",
- "loaderCycle": "解決する必要のある依存関係の循環が AMD モジュールにあります。",
"loginButton": "ログイン(&&L)",
+ "macoseolmessage": "{1} の {0} は、間もなく更新プログラムの受信を停止します。macOS バージョンのアップグレードを検討してください。",
"password": "パスワード",
- "proxyAuthRequired": "プロキシ認証が必要",
+ "proxyAuthRequired": "プロキシ認証が必要です",
"proxyDetail": "プロキシ {0} ではユーザー名とパスワードが必要です。",
- "quitButtonLabel": "終了(&&Q)",
- "quitMessage": "終了しますか?",
- "quitMessageMac": "終了しますか?",
"rememberCredentials": "資格情報を保存する",
+ "resolveShellEnvironment": "シェル環境を解決しています...",
+ "restart": "再起動",
"runningAsRoot": "{0} をルート ユーザーとして実行しないことを推奨します。",
+ "runningTranslated": "{0} のエミュレートバージョンを実行しています。パフォーマンスを向上させるには、マシン向けにビルドされた {0} のネイティブ Arm64 バージョンをダウンロードしてください。",
+ "sharedProcessCrash": "共有バックグラウンド プロセスが予期せず終了しました。回復するには、アプリケーションを再起動してください。",
+ "showArgvParseWarning": "ランタイム引数ファイル 'argv.json' にエラーが含まれています。修正して再起動してください。",
+ "showArgvParseWarningAction": "ファイルを開く",
"shutdownErrorClose": "予期しないエラーが発生したため、ウィンドウを閉じることができませんでした。",
"shutdownErrorDetail": "エラー: {0}",
"shutdownErrorLoad": "予期しないエラーが発生したため、ワークスペースを変更できませんでした",
@@ -4194,62 +5395,395 @@
"shutdownErrorReload": "予期しないエラーが発生したため、ウィンドウを再読み込めませんでした。",
"shutdownForceClose": "閉じる",
"shutdownForceLoad": "変更する",
- "shutdownForceQuit": "終了する",
- "shutdownForceReload": "再度読み込む",
+ "shutdownForceQuit": "このまま終了する",
+ "shutdownForceReload": "このまま再度読み込む",
"shutdownTitleClose": "ウィンドウを閉じるのに少し時間がかかっています...",
"shutdownTitleLoad": "ワークスペースの変更に少し時間がかかっています...",
"shutdownTitleQuit": "アプリケーションの終了に少し時間がかかっています...",
"shutdownTitleReload": "ウィンドウの再読み込みに少し時間がかかっています...",
+ "status.windowZoom": "ウィンドウ ズーム",
"troubleshooting": "トラブルシューティング ガイド",
"username": "ユーザー名",
- "willShutdownDetail": "次の操作はまだ実行されています: \r\n{0}"
- },
- "vs/workbench/contrib/audioCues/browser/audioCueService": {
- "audioCues.lineHasBreakpoint.name": "行のブレークポイント",
- "audioCues.lineHasError.name": "行のエラー",
- "audioCues.lineHasFoldedArea.name": "行の折りたたまれた面",
- "audioCues.lineHasInlineSuggestion.name": "行のインライン候補",
- "audioCues.lineHasWarning.name": "行の警告",
- "audioCues.noInlayHints": "行にインレイ ヒントがありません",
- "audioCues.onDebugBreak.name": "ブレークポイントでデバッガーが停止しました"
+ "willShutdownDetail": "次の操作はまだ実行されています: \r\n{0}",
+ "zoomIn": "拡大",
+ "zoomNumber": "ズーム レベル: {0} ({1}%)",
+ "zoomOut": "縮小",
+ "zoomReset": "リセット",
+ "zoomResetLabel": "{0} ({1})",
+ "zoomSettings": "設定"
+ },
+ "vs/workbench/contrib/accessibility/browser/accessibilityConfiguration": {
+ "accessibility.debugWatchVariableAnnouncements": "デバッグ ウォッチ ビューで変数の変更を通知するかどうかを制御します。",
+ "accessibility.hideAccessibleView": "ユーザー補助対応のビューを非表示にするかどうかを制御します。",
+ "accessibility.openChatEditedFiles": "チャット エージェントが編集を適用したときにファイルを開くかどうかを制御します。",
+ "accessibility.replEditor.readLastExecutedOutput": "ネイティブ REPL での実行からの出力をアナウンスするかどうかを制御します。",
+ "accessibility.signalOptions.debouncePositionChanges": "位置の変更をデバウンスする必要があるかどうか",
+ "accessibility.signalOptions.delays.errorAtPosition.announcement": "位置にエラーがある場合にアナウンスが行われるまでの遅延 (ミリ秒単位)。",
+ "accessibility.signalOptions.delays.errorAtPosition.sound": "位置にエラーがある場合にサウンドが再生されるまでの遅延 (ミリ秒単位)。",
+ "accessibility.signalOptions.delays.general.announcement": "アナウンスが行われるまでの遅延 (ミリ秒単位)。",
+ "accessibility.signalOptions.delays.general.sound": "サウンドが再生されるまでの遅延 (ミリ秒単位)。",
+ "accessibility.signalOptions.delays.warningAtPosition.announcement": "位置に警告があるときにアナウンスが行われるまでの遅延 (ミリ秒単位)。",
+ "accessibility.signalOptions.delays.warningAtPosition.sound": "位置に警告がある場合にサウンドが再生されるまでの遅延 (ミリ秒単位)。",
+ "accessibility.signalOptions.volume": "サウンドの音量 (パーセント単位) (0 - 100)。",
+ "accessibility.signals.chatEditModifiedFile": "チャットの編集による変更を含むファイルを表示するときに、サウンド/オーディオ キューを再生します",
+ "accessibility.signals.chatEditModifiedFile.sound": "チャットの編集による変更を含むファイルを表示するときに音を鳴らす",
+ "accessibility.signals.chatRequestSent": "チャット要求が行われたときに、シグナル (サウンド (オーディオ キュー) および/またはアナウンス (アラート)) を再生します。",
+ "accessibility.signals.chatRequestSent.announcement": "チャット要求が行われたときに通知します。",
+ "accessibility.signals.chatRequestSent.sound": "チャット要求が行われたときにサウンドを再生します。",
+ "accessibility.signals.chatResponseReceived": "応答を受信したときにサウンド/オーディオ キューを再生します。",
+ "accessibility.signals.chatResponseReceived.sound": "応答を受信したときにサウンドを再生します。",
+ "accessibility.signals.chatUserActionRequired": "チャットでユーザー操作が必要な場合に、シグナル (サウンド (オーディオ キュー) やアナウンス (アラート)) を再生します。",
+ "accessibility.signals.chatUserActionRequired.announcement": "ユーザー操作がチャットで必要なタイミング (アクションとその実行方法に関する情報を含む) をアナウンスします。",
+ "accessibility.signals.chatUserActionRequired.sound": "チャットでユーザー操作が必要な場合にサウンドを再生します。",
+ "accessibility.signals.clear": "機能 (ターミナル、デバッグ コンソール、出力チャネルなど) がクリアされたときに、シグナル (サウンド (オーディオ キュー) および/またはアナウンス (アラート)) を再生します。",
+ "accessibility.signals.clear.announcement": "機能がクリアされたことを通知します。",
+ "accessibility.signals.clear.sound": "機能がクリアされたときにサウンドを再生します。",
+ "accessibility.signals.codeActionApplied": "コード アクションが適用されたときにサウンド/音声的な合図を再生します。",
+ "accessibility.signals.codeActionApplied.sound": "コード アクションが適用されたときにサウンドを再生します。",
+ "accessibility.signals.codeActionTriggered": "コード アクションがトリガーされたときにサウンド/音声的な合図を再生します。",
+ "accessibility.signals.codeActionTriggered.sound": "コード アクションがトリガーされたときにサウンドを再生します。",
+ "accessibility.signals.diffLineDeleted": "アクセシビリティ対応差分閲覧者モードでフォーカスが削除された行に移動したとき、または次/前の変更に移動したときに、サウンド/オーディオ キューを再生します。",
+ "accessibility.signals.diffLineDeleted.sound": "アクセシビリティ対応差分ビューアー モードでフォーカスが削除された行に移動したとき、または次/前の変更に移動したときにサウンドを再生します。",
+ "accessibility.signals.diffLineInserted": "アクセシビリティ対応差分閲覧者モードでフォーカスが挿入された行に移動したとき、または次/前の変更に移動したときに、サウンド/オーディオ キューを再生します。",
+ "accessibility.signals.diffLineModified": "アクセシビリティ対応差分閲覧者モードでフォーカスが変更された行に移動したとき、または次/前の変更に移動したときに、サウンド/オーディオ キューを再生します。",
+ "accessibility.signals.diffLineModified.sound": "アクセシビリティ対応差分ビューアー モードでフォーカスが変更された行に移動したとき、または次/前の変更に移動したときにサウンドを再生します。",
+ "accessibility.signals.editsKept": "編集内容が保持されたときに、シグナル (サウンド (オーディオ キュー) および/またはアナウンス (アラート)) を再生します。",
+ "accessibility.signals.editsKept.announcement": "編集内容が保持されたときに通知します。",
+ "accessibility.signals.editsKept.sound": "編集が保持されたときにサウンドを再生します。",
+ "accessibility.signals.editsUndone": "編集が元に戻されたときに、シグナル (サウンド (オーディオ キュー) および/またはアナウンス (アラート)) を再生します。",
+ "accessibility.signals.editsUndone.announcement": "編集が元に戻されたときに通知します。",
+ "accessibility.signals.editsUndone.sound": "編集が元に戻されたときにサウンドを再生します。",
+ "accessibility.signals.format": "ファイルまたはノートブックがフォーマットされたときに、シグナル (サウンド (オーディオ キュー) および/またはアナウンス (アラート)) を再生します。",
+ "accessibility.signals.format.always": "セルの保存、入力、貼り付け、または実行時にフォーマットするように設定されている場合を含め、ファイルが書式設定されるたびにサウンドを再生します。",
+ "accessibility.signals.format.announcement": "ファイルまたはノートブックが書式設定されたときに通知します。",
+ "accessibility.signals.format.announcement.always": "セルの保存、入力、貼り付け、または実行時にフォーマットするように設定されている場合を含め、ファイルが書式設定されるたびに通知します。",
+ "accessibility.signals.format.announcement.never": "お知らせはありません。",
+ "accessibility.signals.format.announcement.userGesture": "ユーザーがファイルを明示的にフォーマットするときに通知します。",
+ "accessibility.signals.format.never": "サウンドを再生しません。",
+ "accessibility.signals.format.sound": "ファイルまたはノートブックの書式設定時にサウンドを再生します。",
+ "accessibility.signals.format.userGesture": "ユーザーがファイルを明示的にフォーマットするときにサウンドを再生します。",
+ "accessibility.signals.lineHasBreakpoint": "アクティブな行にブレークポイントがあるときに、シグナル (サウンド (オーディオ キュー) および/またはアナウンス (アラート)) を再生します。",
+ "accessibility.signals.lineHasBreakpoint.announcement": "アクティブな行にブレークポイントがあるときに通知します。",
+ "accessibility.signals.lineHasBreakpoint.sound": "アクティブ行にブレークポイントがある場合、音を鳴らします。",
+ "accessibility.signals.lineHasError": "アクティブな行にエラーがあるときに、シグナル (サウンド (オーディオ キュー) および/またはアナウンス (アラート)) を再生します。",
+ "accessibility.signals.lineHasError.announcement": "アクティブな行にエラーがあるときに通知します。",
+ "accessibility.signals.lineHasError.sound": "アクティブ行にエラーがある場合、音を鳴らします。",
+ "accessibility.signals.lineHasFoldedArea": "アクティブ行に、展開可能だが、折りたたまれた領域があるときに、シグナル (サウンド (オーディオ キュー) および/またはアナウンス (アラート)) を再生します。",
+ "accessibility.signals.lineHasFoldedArea.announcement": "アクティブ行に、展開可能だが、折りたたまれた領域があるときに通知します。",
+ "accessibility.signals.lineHasFoldedArea.sound": "アクティブ行に、展開可能だが、折りたたまれた領域がある場合、音を鳴らします。",
+ "accessibility.signals.lineHasInlineSuggestion": "アクティブな行にインライン提案があるときにサウンド/オーディオ キューを再生します。",
+ "accessibility.signals.lineHasInlineSuggestion.sound": "アクティブ行にインライン候補が発生した場合、音を鳴らします。",
+ "accessibility.signals.lineHasWarning": "アクティブな行に警告があるときに、シグナル (サウンド (オーディオ キュー) および/またはアナウンス (アラート)) を再生します。",
+ "accessibility.signals.lineHasWarning.announcement": "アクティブな行に警告があるときに通知します。",
+ "accessibility.signals.lineHasWarning.sound": "アクティブ行に警告がある場合、音を鳴らします。",
+ "accessibility.signals.nextEditSuggestion": "次の編集候補がある場合に、サウンド、音声的な合図、アナウンス (アラート) などのシグナルを再生します。",
+ "accessibility.signals.nextEditSuggestion.announcement": "次の編集候補がある場合にアナウンスします。",
+ "accessibility.signals.nextEditSuggestion.sound": "次の編集候補がある場合にサウンドを再生します。",
+ "accessibility.signals.noInlayHints": "インレイ ヒントのないインレイ ヒントを含む行を読み上げようとしているときに、シグナル (サウンド (オーディオ キュー) および/またはアナウンス (アラート)) を再生します。",
+ "accessibility.signals.noInlayHints.announcement": "インレイ ヒントのないインレイ ヒントを含む行を読み上げようとしているときに通知します。",
+ "accessibility.signals.noInlayHints.sound": "インレイ ヒントのないインレイ ヒントを含む行を読み上げようとすると、サウンドが再生されます。",
+ "accessibility.signals.notebookCellCompleted": "ノートブック セルの実行が正常に完了したときに、シグナル (サウンド (オーディオ キュー) および/またはアナウンス (アラート)) を再生します。",
+ "accessibility.signals.notebookCellCompleted.announcement": "ノートブック セルの実行が正常に完了したときに通知します。",
+ "accessibility.signals.notebookCellCompleted.sound": "ノートブック セルの実行が正常に完了したときに音を鳴らします。",
+ "accessibility.signals.notebookCellFailed": "ノートブック セルの実行に失敗したときに、シグナル (サウンド (オーディオ キュー) および/またはアナウンス (アラート)) を再生します。",
+ "accessibility.signals.notebookCellFailed.announcement": "ノートブック セルの実行に失敗したときに通知します。",
+ "accessibility.signals.notebookCellFailed.sound": "ノートブック セルの実行に失敗したときに音を鳴らします。",
+ "accessibility.signals.onDebugBreak": "デバッガーがブレークポイントで停止したときに、シグナル (サウンド (オーディオ キュー) および/またはアナウンス (アラート)) を再生します。",
+ "accessibility.signals.onDebugBreak.announcement": "デバッガーがブレークポイントで停止したときに通知します。",
+ "accessibility.signals.onDebugBreak.sound": "デバッガーがブレークポイントで停止したときに、音を鳴らします。",
+ "accessibility.signals.positionHasError": "アクティブな行に警告があるときに、シグナル (サウンド (オーディオ キュー) および/またはアナウンス (アラート)) を再生します。",
+ "accessibility.signals.positionHasError.announcement": "アクティブな行に警告があるときに通知します。",
+ "accessibility.signals.positionHasError.sound": "アクティブ行に警告がある場合、音を鳴らします。",
+ "accessibility.signals.positionHasWarning": "アクティブな行に警告があるときに、シグナル (サウンド (オーディオ キュー) および/またはアナウンス (アラート)) を再生します。",
+ "accessibility.signals.positionHasWarning.announcement": "アクティブな行に警告があるときに通知します。",
+ "accessibility.signals.positionHasWarning.sound": "アクティブ行に警告がある場合、音を鳴らします。",
+ "accessibility.signals.progress": "進行中にループが発生しているときに、シグナル (サウンド (オーディオ キュー) および/またはアナウンス (アラート)) を再生します。",
+ "accessibility.signals.progress.announcement": "進行中にループが発生していることを通知します。",
+ "accessibility.signals.progress.sound": "進行中にループしているサウンドを再生します。",
+ "accessibility.signals.save": "ファイルが保存されたときに、シグナル (サウンド (オーディオ キュー) および/またはアナウンス (アラート)) を再生します。",
+ "accessibility.signals.save.announcement": "ファイルが保存されたときに通知します。",
+ "accessibility.signals.save.announcement.always": "自動保存を含め、ファイルが保存されたことを示します。",
+ "accessibility.signals.save.announcement.never": "アナウンスを再生しません。",
+ "accessibility.signals.save.announcement.userGesture": "ユーザーがファイルを明示的に保存するときに通知します。",
+ "accessibility.signals.save.sound": "ファイルの保存時にサウンドを再生します。",
+ "accessibility.signals.save.sound.always": "自動保存を含め、ファイルが保存されるたびにサウンドを再生します。",
+ "accessibility.signals.save.sound.never": "サウンドを再生しません。",
+ "accessibility.signals.save.sound.userGesture": "ユーザーがファイルを明示的に保存するときにサウンドを再生します。",
+ "accessibility.signals.sound": "アクセシビリティ対応差分ビューアー モードでフォーカスが挿入された行に移動したとき、または次/前の変更に移動したときにサウンドを再生します。",
+ "accessibility.signals.taskCompleted": "タスクが完了したときに、シグナル (サウンド (オーディオ キュー) および/またはアナウンス (アラート)) を再生します。",
+ "accessibility.signals.taskCompleted.announcement": "タスクが完了したときに通知します。",
+ "accessibility.signals.taskCompleted.sound": "タスクの終了時に音を鳴らします。",
+ "accessibility.signals.taskFailed": "タスクが失敗したときに (ゼロ以外の終了コード)、シグナル (サウンド (オーディオ キュー) および/またはアナウンス (アラート)) を再生します。",
+ "accessibility.signals.taskFailed.announcement": "タスクが失敗したときに通知します (ゼロ以外の終了コード)。",
+ "accessibility.signals.taskFailed.sound": "タスクが失敗したときに音を鳴らします (ゼロ以外の終了コード)。",
+ "accessibility.signals.terminalBell": "ターミナル ベルが鳴っているときに、シグナル (サウンド (オーディオ キュー) および/またはアナウンス (アラート)) を再生します。",
+ "accessibility.signals.terminalBell.announcement": "ターミナル ベルが鳴っているときに通知します。",
+ "accessibility.signals.terminalBell.sound": "ターミナル ベルが鳴っている場合にサウンドを再生します。",
+ "accessibility.signals.terminalCommandFailed": "ターミナル コマンドが失敗したとき (終了コードが 0 以外の場合)、またはそのような終了コードを持つコマンドにアクセス可能なビューで移動したときに、シグナル (サウンド (オーディオ キュー) および/またはアナウンス (アラート)) を再生します。",
+ "accessibility.signals.terminalCommandFailed.announcement": "ターミナル コマンドが失敗したとき (終了コードが 0 以外の場合)、またはそのような終了コードを持つコマンドにアクセス可能なビューで移動したときに通知します。",
+ "accessibility.signals.terminalCommandFailed.sound": "ターミナル コマンドが失敗したとき (終了コードが 0 以外の場合)、またはそのような終了コードを持つコマンドにアクセス可能なビューで移動したときに音を鳴らします。",
+ "accessibility.signals.terminalCommandSucceeded": "ターミナル コマンドが成功したとき (終了コードが 0 の場合)、またはそのような終了コードを持つコマンドにアクセス可能なビューで移動したときに、シグナル (サウンド (オーディオ キュー) および/またはアナウンス (アラート)) を再生します。",
+ "accessibility.signals.terminalCommandSucceeded.announcement": "ターミナル コマンドが成功したとき (終了コードが 0 の場合)、またはそのような終了コードを持つコマンドにアクセス可能なビューで移動したときにアナウンスします。",
+ "accessibility.signals.terminalCommandSucceeded.sound": "ターミナル コマンドが成功したとき (終了コードが 0 の場合)、またはそのような終了コードを持つコマンドにアクセス可能なビューで移動したときに音を鳴らします。",
+ "accessibility.signals.terminalQuickFix": "ターミナルのクイック修正が利用可能になったときに、シグナル (サウンド (オーディオ キュー) および/またはアナウンス (アラート)) を再生します。",
+ "accessibility.signals.terminalQuickFix.announcement": "ターミナルのクイック修正が利用可能になったときに通知します。",
+ "accessibility.signals.terminalQuickFix.sound": "ターミナルのクイック修正が利用可能になったときに音を鳴らします。",
+ "accessibility.signals.voiceRecordingStarted": "音声録音が開始されたときに、サウンド/オーディオ キューを再生します。",
+ "accessibility.signals.voiceRecordingStarted.sound": "音声録音が開始されたときにサウンドを再生します。",
+ "accessibility.signals.voiceRecordingStopped": "音声録音が停止したときに、サウンド/オーディオ キューを再生します。",
+ "accessibility.signals.voiceRecordingStopped.sound": "音声録音が停止したときにサウンドを再生します。",
+ "accessibility.underlineLinks": "ワークベンチでリンクに下線を付けるかどうかを制御します。",
+ "accessibility.verboseChatProgressUpdates": "チャット要求の進行中に詳細な進行状況の通知を行うかどうかを制御します。これには、 の検索テキストに X 件の結果、ファイル の作成完了、ファイル の読み取り完了などの情報が含まれます>。",
+ "accessibility.voice.autoSynthesize.off": "この機能を無効にします。",
+ "accessibility.voice.autoSynthesize.on": "この機能を有効にします。スクリーン リーダーを有効にすると、aria の更新が無効になります。",
+ "accessibility.windowTitleOptimized": "スクリーン リーダー モードのときにスクリーン リーダー用に {0} を最適化するかどうかを制御します。有効にすると、ウィンドウ タイトルの末尾に {1} が追加されます。",
+ "accessibilityConfigurationTitle": "アクセシビリティ",
+ "announcement.enabled.auto": "アナウンスを有効にすると、スクリーン リーダー最適化モード時のみ再生されます。",
+ "announcement.enabled.off": "お知らせを無効にします。",
+ "autoSynthesize": "音声が入力として使用されたときにテキスト応答を自動的に読み上げるかどうかを指定します。たとえば、チャット セッションでは、音声がチャット要求として使用されたときに応答が自動的に合成されます。",
+ "dimUnfocusedEnabled": "フォーカスされていないエディターとターミナルを暗くするかどうかを指定するもので、これにより、入力された入力情報の入力先がより明確になります。これは、ノートブックや拡張機能 Web ビュー エディターなどの iframe を利用するエディターの注目すべき例外を除き、ほとんどのエディターで動作します。",
+ "dimUnfocusedOpacity": "フォーカスされていないエディターとターミナルに使用する不透明度の分数 (0.2 ~ 1.0)。これは、{0} が有効になっている場合にのみ効力を発します。",
+ "replEditor.autoFocusAppendedCell": "コードの実行時にフォーカスを REPL に自動的に送信するかどうかを制御します。",
+ "sound.enabled.auto": "スクリーン リーダーが接続されているときにサウンドを有効にします。",
+ "sound.enabled.autoWindow": "スクリーン リーダーが接続されているときにサウンドを有効にします。",
+ "sound.enabled.off": "サウンドを無効にします。",
+ "sound.enabled.on": "サウンドを有効にします。",
+ "speechLanguage.auto": "自動 (表示言語を使用)",
+ "terminal.integrated.accessibleView.closeOnKeyPress": "keypress で、ユーザー補助対応のビューを閉じ、そのビューが呼び出された要素にフォーカスします。",
+ "verbosity.chat.description": "チャット入力にフォーカスがある場合にチャット ヘルプ メニューにアクセスする方法に関する情報を提供します。",
+ "verbosity.comments": "コメント ウィジェットまたはコメントを含むファイルで実行できるアクションに関する情報を提供します。",
+ "verbosity.debug": "デバッグ コンソールが実行され、デバッグ ビューレットがフォーカスされているときに、デバッグ コンソールのアクセシビリティ ヘルプ ダイアログにアクセスする方法に関する情報を提供します。これを有効にするにはウィンドウの再読み込みが必要であることに注意してください。",
+ "verbosity.diffEditor.description": "差分エディターにフォーカスがあるときに変更を移動する方法に関する情報を提供します。",
+ "verbosity.diffEditorActive": "差分エディターがアクティブなエディターになるタイミングを示します。",
+ "verbosity.emptyEditorHint": "空のテキスト エディターで関連するアクションに関する情報を提供します。",
+ "verbosity.hover": "ユーザー補助対応のビューでホバーを開く方法に関する情報を提供します。",
+ "verbosity.inlineCompletions.description": "インライン補完のホバーとユーザー補助対応のビューにアクセスする方法に関する情報を提供します。",
+ "verbosity.interactiveEditor.description": "インライン エディター チャットのアクセシビリティ ヘルプ メニューにアクセスする方法に関する情報を提供し、入力にフォーカスがあるときの機能を使用する方法を説明するヒントを提供します。",
+ "verbosity.keybindingsEditor.description": "行がフォーカスされているときにキー バインド エディターでキー バインドを変更する方法に関する情報を提供します。",
+ "verbosity.notebook": "ノートブック セルがフォーカスされているときにセル コンテナーまたは内部エディターにフォーカスを移動する方法に関する情報を提供します。",
+ "verbosity.notification": "ユーザー補助対応のビューで通知を開く方法に関する情報を提供します。",
+ "verbosity.replEditor.description": "REPL エディターにフォーカスがある場合に REPL エディターのアクセシビリティ ヘルプ メニューにアクセスする方法に関する情報を提供します。",
+ "verbosity.scm": "入力にフォーカスがある場合にソース管理のユーザー補助ヘルプ メニューにアクセスする方法に関する情報を提供します。",
+ "verbosity.terminal.description": "ターミナルにフォーカスがある場合に、ターミナルのアクセシビリティ ヘルプ メニューにアクセスする方法について説明します。",
+ "verbosity.terminalChatOutput.description": "アクセシブル ビューでチャット ターミナルの出力を開く方法に関する情報を提供します。",
+ "verbosity.walkthrough": "アクセシブル ビューでチュートリアルを開く方法に関する情報を提供します。",
+ "voice.ignoreCodeBlocks": "音声合成でコード スニペットを無視するかどうか。",
+ "voice.speechLanguage": "テキスト読み上げと音声テキスト変換で使用する必要がある言語。可能な場合は、設定された表示言語を使用するために [自動] を選択します。音声認識とシンセサイザーでサポートされていない可能性がある表示言語があることにご注意ください。",
+ "voice.speechTimeout": "発話を停止した後、音声認識がアクティブな状態を維持する期間 (ミリ秒) です。たとえば、チャット セッションでは、タイムアウトが満たされた後に文字起こしされたテキストが自動的に送信されます。この機能を無効にするには、`0` に設定します。"
+ },
+ "vs/workbench/contrib/accessibility/browser/accessibilityStatus": {
+ "screenReaderDetected": "スクリーン リーダーに最適化",
+ "screenReaderDetectedExplanation.answerLearnMore": "詳細情報",
+ "screenReaderDetectedExplanation.answerNo": "いいえ",
+ "screenReaderDetectedExplanation.answerYes": "はい",
+ "screenReaderDetectedExplanation.question": "スクリーン リーダーの使用状況が検出されました。スクリーン リーダーの使用に合わせてエディターを最適化するために {0} を有効にしますか?",
+ "status.editor.screenReaderMode": "スクリーン リーダー モード"
+ },
+ "vs/workbench/contrib/accessibility/browser/accessibleView": {
+ "accessibility-help": "ユーザー補助のヘルプ",
+ "accessibility-help-hint": "ユーザー補助のヘルプ、{0}",
+ "accessible-view": "ユーザー補助対応のビュー",
+ "accessible-view-hint": "ユーザー補助対応のビュー、{0}",
+ "accessibleHelpToolbar": "ユーザー補助のヘルプ",
+ "accessibleViewNextPreviousHint": "次の項目{0} または前の{1} 項目を表示します。",
+ "accessibleViewSymbolQuickPickPlaceholder": "入力して記号を検索する",
+ "accessibleViewSymbolQuickPickTitle": "ユーザー補助シンボルのビューに移動",
+ "accessibleViewToolbar": "ユーザー補助対応のビュー",
+ "acessibleViewDisableHint": "\r\nこの機能{0} のアクセシビリティの詳細を無効にします。",
+ "acessibleViewHint": "{0}を使用して、アクセス可能なビューでこれを検査します",
+ "acessibleViewHintNoKbEither": "キー バインドを介して現在トリガーできない [ユーザー補助対応のビューを開く] コマンドを使用して、ユーザー補助対応のビューでこれを検査します。",
+ "ariaAccessibleViewActions": "このヒントを無効にする (Shift + Tab キー) などのアクションについて説明します。",
+ "ariaAccessibleViewActionsBottom": "このヒントを無効にする (Shift + Tab キー) などのアクションを確認し、Esc キーを使用してこのダイアログを終了します。",
+ "configureKb": "\r\nコマンドのないキー バインドを構成します {0}。",
+ "configureKbAssigned": "\r\n既に割り当て {0} があるコマンドのキー バインドを構成します。",
+ "disableAccessibilityHelp": "{0}アクセシビリティの詳細度が無効になりました",
+ "exit": "\r\nこのダイアログを終了します (Esc)。",
+ "goToSymbolHint": "シンボル{0} に移動します。",
+ "insertAtCursor": " - カーソル{0} の位置にコード ブロックを挿入します。",
+ "insertIntoNewFile": " - コード ブロックを新しいファイル{0} に挿入します。",
+ "intro": "ユーザー補助対応のビューでは、次のことができます:\r\n",
+ "keybindings": "キー バインドの構成",
+ "openDoc": "\r\nアクセシビリティ{0} に関する詳細情報が記載されたブラウザー ウィンドウを開きます。",
+ "runInTerminal": " - ターミナル{0} でコード ブロックを実行します。\r\n",
+ "selectKeybinding": "コマンド ID を選択してキー バインドを構成します",
+ "symbolLabel": "({0}) {1}",
+ "symbolLabelAria": "({0}) {1}",
+ "toolbar": "ツール バー (Shift + Tab) に移動します)。"
+ },
+ "vs/workbench/contrib/accessibility/browser/accessibleViewActions": {
+ "editor.action.accessibilityHelp": "アクセシビリティのヘルプを開く",
+ "editor.action.accessibilityHelpConfigureAssignedKeybindings": "割り当てられたキー バインドの構成に関するアクセシビリティヘルプ",
+ "editor.action.accessibilityHelpConfigureUnassignedKeybindings": "未割り当てのキー バインドの構成に関するアクセシビリティヘルプ",
+ "editor.action.accessibilityHelpOpenHelpLink": "ユーザー補助のヘルプ: ヘルプ リンクを開く",
+ "editor.action.accessibleView": "アクセシビリティ対応ビューを開く",
+ "editor.action.accessibleViewAcceptInlineCompletionAction": "インライン入力候補を受け入れる",
+ "editor.action.accessibleViewDisableHint": "ユーザー補助対応のビュー ヒントを無効にする",
+ "editor.action.accessibleViewGoToSymbol": "ユーザー補助対応のビューでシンボルに移動",
+ "editor.action.accessibleViewNext": "アクセシビリティ対応ビューで次を表示",
+ "editor.action.accessibleViewNextCodeBlock": "アクセス可能なビュー: 次のコード ブロック",
+ "editor.action.accessibleViewPrevious": "アクセシビリティ対応ビューで前を表示",
+ "editor.action.accessibleViewPreviousCodeBlock": "アクセス可能なビュー: 前のコード ブロック"
+ },
+ "vs/workbench/contrib/accessibilitySignals/browser/commands": {
+ "accessibility.announcement.help": "ヘルプ: シグナル アナウンスをリスト表示",
+ "accessibility.announcement.help.description": "アクセシビリティに関するすべてのお知らせ、アラート、点字メッセージをすべて一覧表示し、それらの設定を構成する",
+ "accessibility.sound.help.description": "すべてのアクセシビリティ サウンド、ノイズ、オーディオ キューを一覧表示し、その設定を構成する",
+ "announcement.help.placeholder": "構成するお知らせを選択してください",
+ "announcement.help.placeholder.disabled": "既定では、スクリーン リーダーはアクティブではなく、お知らせも無効になっています。",
+ "announcement.help.settings": "お知らせの構成",
+ "signals.sound.help": "ヘルプ: シグナル サウンドのリスト表示",
+ "sounds.help.placeholder": "サウンドを選択して、再生および構成します",
+ "sounds.help.settings": "サウンドの構成"
+ },
+ "vs/workbench/contrib/accessibilitySignals/browser/openDiffEditorAnnouncement": {
+ "openDiffEditorAnnouncement": "差分エディター"
+ },
+ "vs/workbench/contrib/accountEntitlements/browser/accountsEntitlements.contribution": {
+ "workbench.accounts.showEntitlements": "When enabled, available entitlements for the account will be shown in the accounts menu."
},
"vs/workbench/contrib/audioCues/browser/audioCues.contribution": {
+ "audioCues.chatRequestSent": "チャット要求が行われたときにサウンドを再生します。",
+ "audioCues.chatResponsePending": "応答が保留中の間、サウンドを繰り返し再生します。",
+ "audioCues.chatResponseReceived": "応答の受信中に、サウンドを繰り返し再生します。",
+ "audioCues.clear": "機能がクリアされたときにサウンドを再生します (例: ターミナル、デバッグ コンソール、出力チャネル)。これを無効にすると、ARIA アラートで 'クリア済み' が通知されます。",
+ "audioCues.debouncePositionChanges": "位置の変更をデバウンスする必要があるかどうか",
+ "audioCues.diffLineDeleted": "アクセシビリティ対応差分ビューアー モードでフォーカスが削除された行に移動したとき、または次/前の変更に移動したときににサウンドを再生します。",
+ "audioCues.diffLineInserted": "アクセシビリティ対応差分ビューアー モードでフォーカスが挿入された行に移動したとき、または次/前の変更に移動したときにサウンドを再生します。",
+ "audioCues.diffLineModified": "アクセシビリティ対応差分ビューアー モードでフォーカスが変更された行に移動したとき、または次/前の変更に移動したときにサウンドを再生します。",
"audioCues.enabled.auto": "スクリーン リーダーが接続されたときにオーディオ キューを有効にします。",
"audioCues.enabled.off": "オーディオ キューを無効にします。",
"audioCues.enabled.on": "オーディオ キューを有効にします。",
+ "audioCues.format": "ファイルまたはノートブックの書式設定時にサウンドを再生します。{0} も参照してください",
+ "audioCues.format.always": "セルの保存、入力、貼り付け、または実行時にフォーマットするように設定されている場合を含め、ファイルが書式設定されるたびにオーディオ キューを再生します。",
+ "audioCues.format.never": "オーディオ キューを再生しません。",
+ "audioCues.format.userGesture": "ユーザーがファイルを明示的に書式設定するときにオーディオ キューを再生します。",
"audioCues.lineHasBreakpoint": "アクティブ行にブレークポイントがある場合、音を鳴らします。",
"audioCues.lineHasError": "アクティブ行にエラーがある場合、音を鳴らします。",
"audioCues.lineHasFoldedArea": "アクティブ行に、展開可能だが、折りたたまれた領域がある場合、音を鳴らします。",
"audioCues.lineHasInlineSuggestion": "アクティブ行にインライン候補が発生した場合、音を鳴らします。",
"audioCues.lineHasWarning": "アクティブ行に警告がある場合、音を鳴らします。",
"audioCues.noInlayHints": "インレイ ヒントのないインレイ ヒントを含む行を読み上げようとすると、サウンドが再生されます。",
+ "audioCues.notebookCellCompleted": "ノートブック セルの実行が正常に完了したときに音を鳴らします。",
+ "audioCues.notebookCellFailed": "ノートブック セルの実行に失敗したときに音を鳴らします。",
"audioCues.onDebugBreak": "デバッガーがブレークポイントで停止したときに、音を鳴らします。",
+ "audioCues.save": "ファイルの保存時にサウンドを再生します。{0} も参照してください",
+ "audioCues.save.always": "自動保存を含め、ファイルが保存されるたびにオーディオ キューを再生します。",
+ "audioCues.save.never": "オーディオ キューを再生しません。",
+ "audioCues.save.userGesture": "ユーザーがファイルを明示的に保存するときにオーディオ キューを再生します。",
+ "audioCues.taskCompleted": "タスクの終了時に音を鳴らします。",
+ "audioCues.taskFailed": "タスクが失敗したときに音を鳴らします (ゼロ以外の終了コード)。",
+ "audioCues.terminalCommandFailed": "ターミナル コマンドが失敗したときにサウンドを再生します (ゼロ以外の終了コード)。",
+ "audioCues.terminalQuickFix": "ターミナルのクイック修正が利用可能になったときに音を鳴らします。",
"audioCues.volume": "オーディオ キューの音量 (パーセント単位) (0 - 100)。"
},
"vs/workbench/contrib/audioCues/browser/commands": {
+ "accessibility.alert.help": "ヘルプ: アラートの一覧表示",
+ "alerts.help.placeholder": "アラートの状態を検査して構成",
+ "alerts.help.settings": "オーディオ キューの有効化/無効化",
"audioCues.help": "ヘルプ: オーディオ キューの一覧表示",
"audioCues.help.placeholder": "オーディオ キューを選択して再生します",
"audioCues.help.settings": "オーディオ キューの有効化/無効化",
"disabled": "無効"
},
- "vs/workbench/contrib/backup/electron-sandbox/backupTracker": {
- "backupTrackerBackupFailed": "次のダーティなエディターをバックアップ場所に保存できませんでした。",
- "backupTrackerConfirmFailed": "次のダーティなエディターを保存または復元できませんでした。",
- "backupErrorDetails": "最初にダーティ エディターを保存または復元してから、もう一度お試しください。",
- "ok": "OK",
- "backupBeforeShutdown": "ダーティ エディターによってバックアップされるのを待っています...",
- "saveBeforeShutdown": "ダーティ エディターによって保存されるのを待っています...",
- "revertBeforeShutdown": "ダーティ エディターによって元に戻されるのを待っています..."
+ "vs/workbench/contrib/authentication/browser/actions/manageAccountPreferencesForExtensionAction": {
+ "accounts": "アカウント",
+ "currentAccount": "現在のアカウント",
+ "manageAccountPreferenceForExtension": "拡張機能アカウントのユーザー設定の管理...",
+ "noAccountUsage": "この拡張機能はまだアカウントを使用していません。",
+ "noAccounts": "この拡張機能で現在使用されているアカウントはありません。",
+ "pickAProviderTitle": "拡張機能アカウント設定の管理",
+ "placeholder v2": "{1} の '{0}' アカウント設定を管理...",
+ "selectExtension": "次のアカウント設定を管理する拡張機能を選択してください",
+ "selectProvider": "アカウント設定を管理する認証プロバイダーを選択してください",
+ "title": "このワークスペースのアカウント設定の '{0}'",
+ "use new account": "新しいアカウントの使用..."
+ },
+ "vs/workbench/contrib/authentication/browser/actions/manageAccountPreferencesForMcpServerAction": {
+ "accounts": "アカウント",
+ "currentAccount": "現在のアカウント",
+ "manageAccountPreferenceForMcpServer": "MCP サーバー アカウント基本設定の管理",
+ "noAccountUsage": "この MCP サーバーはまだアカウントを使用していません。",
+ "noAccounts": "この MCP サーバーで現在使用されているアカウントはありません。",
+ "pickAProviderTitle": "MCP サーバー アカウント基本設定の管理",
+ "placeholder v2": "{1} の '{0}' アカウント設定を管理...",
+ "selectProvider": "アカウント設定を管理する認証プロバイダーを選択してください",
+ "title": "このワークスペースの '{0}' アカウント設定",
+ "use new account": "新しいアカウントの使用..."
+ },
+ "vs/workbench/contrib/authentication/browser/actions/manageAccountsAction": {
+ "accounts": "アカウント",
+ "manageAccount": "'{0}' を管理する",
+ "manageAccounts": "アカウントを管理する",
+ "manageTrustedExtensions": "信頼された拡張機能を管理する",
+ "manageTrustedMCPServers": "信頼された MCP サーバーの管理",
+ "noActiveAccounts": "アクティブなアカウントはありません。",
+ "pickAccount": "管理するアカウントを選択する",
+ "selectAction": "アクションを選択する",
+ "signOut": "サインアウト"
+ },
+ "vs/workbench/contrib/authentication/browser/actions/manageDynamicAuthenticationProvidersAction": {
+ "authenticationCategory": "認証",
+ "clientId": "クライアント ID: {0}",
+ "confirmDeleteDetail": "これにより、選択したプロバイダーの保存されているすべての認証データが削除されます。これらのプロバイダーを再度使用する場合は、再認証が必要になります。",
+ "confirmDeleteMultipleProviders": "{0} 動的認証プロバイダー {1} を削除してもよろしいですか?",
+ "confirmDeleteSingleProvider": "動的認証プロバイダー {0} を削除してもよろしいですか?",
+ "noDynamicProviders": "動的認証プロバイダーはありません",
+ "noDynamicProvidersDetail": "動的認証プロバイダーはまだ使用されていません。",
+ "remove": "削除",
+ "removeDynamicAuthProviders": "動的認証プロバイダーの削除",
+ "selectProviderToRemove": "削除する動的認証プロバイダーを選択してください"
+ },
+ "vs/workbench/contrib/authentication/browser/actions/manageTrustedExtensionsForAccountAction": {
+ "accountLastUsedDate": "このアカウントの最終使用は {0}",
+ "accountPreferences": "この拡張機能のアカウント設定を管理します",
+ "accounts": "アカウント",
+ "manageExtensions": "このアカウントにアクセスできる拡張機能を選択する",
+ "manageTrustedExtensions": "信頼されている拡張機能の管理",
+ "manageTrustedExtensions.cancel": "キャンセル",
+ "manageTrustedExtensionsForAccount": "アカウントの信頼された拡張機能の管理",
+ "noTrustedExtensions": "このアカウントはまだどの拡張機能にも使用されていません。",
+ "notUsed": "このアカウントを使用したことがない",
+ "pickAccount": "信頼された拡張機能を管理するアカウントを選択してください",
+ "trustedExtensionTooltip": "この拡張機能は Microsoft によって信頼されており\r\n常にこのアカウントにアクセスできます",
+ "trustedExtensions": "Microsoft によって信頼されている",
+ "viewExtensionDetails": "拡張機能の詳細を表示する"
+ },
+ "vs/workbench/contrib/authentication/browser/actions/manageTrustedMcpServersForAccountAction": {
+ "accountLastUsedDate": "このアカウントの最終使用は {0}",
+ "accountPreferences": "この拡張機能のアカウント基本設定を管理する",
+ "accounts": "アカウント",
+ "manageMcpServers": "このアカウントにアクセスできる MCP サーバーを選択する",
+ "manageTrustedMcpServers": "信頼された MCP サーバーの管理",
+ "manageTrustedMcpServers.cancel": "キャンセル",
+ "manageTrustedMcpServersForAccount": "アカウントの信頼された MCP サーバーを管理する",
+ "noTrustedMcpServers": "このアカウントはまだどの拡張機能にも使用されていません。",
+ "notUsed": "このアカウントを使用したことがない",
+ "pickAccount": "信頼された MCP サーバーを管理するアカウントを選択します",
+ "trustedMcpServerTooltip": "この MCP サーバーは Microsoft に信頼されており、\r\n常にこのアカウントにアクセスできます",
+ "trustedMcpServers": "Microsoft によって信頼されている"
+ },
+ "vs/workbench/contrib/authentication/browser/actions/signOutOfAccountAction": {
+ "signOut": "サインアウト(&&S)",
+ "signOutMessage": "アカウント '{0}' は、以下によって使用されていました:\r\n\r\n{1}\r\n\r\nこれらの拡張機能からサインアウトしますか?",
+ "signOutMessageSimple": "'{0}' からサインアウトしますか?",
+ "signOutOfAccount": "アカウントからサインアウト"
+ },
+ "vs/workbench/contrib/authentication/browser/authentication.contribution": {
+ "authentication": "認証",
+ "authenticationMcpAuthorizationServers": "MCP 承認サーバー",
+ "authenticationid": "ID",
+ "authenticationlabel": "ラベル"
},
"vs/workbench/contrib/bulkEdit/browser/bulkEditService": {
- "areYouSureQuiteBulkEdit": "{0}ますか? '{1}' が進行中です。",
- "changeWorkspace": "ワークスペースの変更",
- "closeTheWindow": "ウィンドウを閉じ",
+ "areYouSureQuiteBulkEdit.detail": "'{0}' が進行中です。",
+ "changeWorkspace.message": "ワークスペースを変更しますか?",
+ "closeTheWindow.message": "ウィンドウを閉じますか?",
"fileOperation": "ファイル操作",
"nothing": "編集は行われませんでした",
- "quit": "終了",
+ "quitMessage": "終了しますか?",
+ "quitMessageMac": "終了しますか?",
"refactoring.autoSave": "リファクタリングの一部であったファイルを自動的に保存するかどうかを制御します",
- "reloadTheWindow": "ウィンドウの再読み込み",
+ "reloadTheWindow.message": "ウィンドウを再度読み込みますか?",
"summary.0": "編集は行われませんでした",
"summary.n0": "1 つのファイルで {0} 個のテキストを編集",
"summary.nm": "{1} 個のファイルで {0} 件のテキスト編集を実行",
@@ -4259,9 +5793,8 @@
"vs/workbench/contrib/bulkEdit/browser/preview/bulkEdit.contribution": {
"Discard": "リファクタリングの破棄",
"apply": "リファクタリングの適用",
- "cancel": "キャンセル",
"cat": "リファクター プレビュー",
- "continue": "続行",
+ "continue": "続行(&&C)",
"detail": "[続行] をクリックして、以前のリファクタリングを破棄し、現在のリファクタリングを続行します。",
"groupByFile": "ファイル別に変更をグループ化",
"groupByType": "変更を種類別にグループ化",
@@ -4274,13 +5807,8 @@
"cancel": "破棄",
"conflict.1": "この間に '{0}' が変更されたため、リファクタリングを適用できません。",
"conflict.N": "この間に他の {0} 個のファイルが変更されたため、リファクタリングを適用できません。",
- "create": "作成",
- "edt.title.1": "{0} (リファクター プレビュー)",
- "edt.title.2": "{0} ({1}、リファクター プレビュー)",
- "edt.title.del": "{0} (削除、リファクタリング プレビュー)",
"empty.msg": "名前変更などのコード アクションを呼び出して、変更のプレビューをこちらに表示します。",
- "ok": "適用",
- "rename": "名前の変更"
+ "ok": "適用"
},
"vs/workbench/contrib/bulkEdit/browser/preview/bulkEditPreview": {
"default": "その他"
@@ -4329,67 +5857,1937 @@
"to": "{0} の呼び出し元",
"tree.aria": "呼び出し階層"
},
- "vs/workbench/contrib/cli/node/cli.contribution": {
- "shellCommand": "シェル コマンド",
- "install": "PATH 内に '{0}' コマンドをインストールします",
- "not available": "このコマンドは使用できません",
- "ok": "OK",
- "cancel2": "キャンセル",
- "warnEscalation": "管理者特権でシェル コマンドをインストールできるように、Code が 'osascript' のプロンプトを出します",
- "cantCreateBinFolder": "'/usr/local/bin' を作成できません。",
- "aborted": "中止されました",
- "successIn": "シェル コマンド '{0}' が PATH に正常にインストールされました。",
- "uninstall": "'{0}' コマンドを PATH からアンインストールします",
- "warnEscalationUninstall": "管理者特権でシェル コマンドをアンインストールできるように、Code が 'osascript' を求めます。",
- "cantUninstall": "シェル コマンド '{0}' をアンインストールできません。",
- "successFrom": "シェル コマンド '{0}' が PATH から正常にアンインストールされました。"
+ "vs/workbench/contrib/chat/browser/actions/chatAccessibilityActions": {
+ "chat.category": "チャット",
+ "chatNotReady": "チャット インターフェイスの準備ができていません。",
+ "focusChatConfirmation": "フォーカス チャットの確認",
+ "noChatSession": "アクティブなチャット セッションが見つかりません。",
+ "noConfirmationRequired": "チャットの確認は必要ありませn"
+ },
+ "vs/workbench/contrib/chat/browser/actions/chatAccessibilityHelp": {
+ "chat.announcement": "チャットの応答は、届いた時に通知されます。応答は、コード ブロックの数 (存在する場合)、応答の残りの部分を示します。",
+ "chat.attachments.removal": "添付されたコンテキストを削除するには、添付ファイルにフォーカスし、Delete キーまたは Backspace キーを押します。",
+ "chat.differencePanel": "パネル チャット ビューは、提案されたフォローアップの質問へのナビゲートもサポートする永続的なインターフェイスですが、クイック チャット ビューは要求を行ったり表示したりするための一時的なインターフェイスです。",
+ "chat.differenceQuick": "クイック チャット ビューは要求を行ったり表示したりするための一時的なインターフェイスですが、パネル チャット ビューは、提案されたフォローアップの質問へのナビゲートもサポートする永続的なインターフェイスです。",
+ "chat.focusMostRecentTerminal": "ツールを実行した最後のチャット ターミナルにフォーカスするには、[最新のチャット ターミナルにフォーカス] コマンドを呼び出します{0}。",
+ "chat.focusMostRecentTerminalOutput": "最後のチャット ターミナル ツールの出力にフォーカスするには、最新のチャット ターミナル出力にフォーカス コマンド{0}を呼び出します。",
+ "chat.inspectResponse": "入力ボックスで、ユーザー補助対応のビューで最後の応答を検査します{0}。",
+ "chat.overview": "クイック チャット ビューは、入力ボックスと要求/応答リストで構成されます。入力ボックスは要求を行うために使用され、リストは応答を表示するために使用されます。",
+ "chat.progressVerbosity": "チャット要求の処理中、4 秒以上かかる場合は詳細な進行状況の更新が音声で通知されます。これには、 の検索テキスト(X 件の結果)、作成されたファイルの 、読み取ったファイルの などの情報が含まれます。この機能は accessibility.verboseChatProgressUpdates で無効にできます。",
+ "chat.requestHistory": "入力ボックスで、上矢印/下矢印を使用して要求履歴を移動します。入力を編集し、Enter キーまたは [送信] ボタンを使用して新しい要求を実行します。",
+ "chat.showHiddenTerminals": "非表示のチャット ターミナルがある場合は、非表示のチャット ターミナルの表示コマンド{0}を呼び出して表示できます。",
+ "chat.signals": "アクセシビリティ シグナルは、signals.chat のプレフィックスを持つ設定を使用して変更できます。既定では、要求に 4 秒以上かかる場合は、進行状況がまだ発生していることを示すサウンドが聞こえます。",
+ "chatAgent.acceptTool": "ツール アクションを受け入れるには、[ツールの確認を受け入れる] コマンド {0} を使用します。",
+ "chatAgent.autoApprove": "ツール アクションを手動で確認せずに自動的に承認するには、設定で {0} を {1} に設定します。",
+ "chatAgent.openEditedFilesSetting": "既定では、ファイルに対して編集が行われると、ファイルが開きます。この動作を変更するには、設定で accessibility.openChatEditedFiles を false に設定します。",
+ "chatAgent.overview": "チャット エージェント ビューは、ワークスペース内のファイル全体に編集を適用したり、ターミナルでコマンドを実行できるようにするなどの目的で使用されます。",
+ "chatAgent.runCommand": "操作を実行するには、accept tool コマンド {0} を使用します。",
+ "chatAgent.userActionRequired": "ユーザー操作が必要な場合にアラートが表示されます。たとえば、エージェントがターミナルで何かを実行したい場合、\"アクションが必要: ターミナルでコマンドを実行\" という音声が聞こえます。",
+ "chatEditing.acceptAllFiles": "- すべての編集保持します{0}。",
+ "chatEditing.acceptFile": "- 保持{0}とファイルを元に戻します{1}。",
+ "chatEditing.acceptHunk": "エディターで、現在の変更点について、[保持{0}]、[元に戻す{1}]、または [差分の切り替え{2}] ます。",
+ "chatEditing.discardAllFiles": "- すべての編集を元に戻します{0}。",
+ "chatEditing.expectation": "要求が行われると、編集の適用中に進行状況インジケーターが再生されます。",
+ "chatEditing.format": "入力ボックスとファイル ワーキング セット (Shift+Tab) で構成されています。",
+ "chatEditing.helpfulCommands": "次のような便利なコマンドがあります:",
+ "chatEditing.openFileInDiff": "- 差分{0} でファイルを開く。",
+ "chatEditing.overview": "チャット編集ビューは、ファイル間で編集を適用するために使用されます。",
+ "chatEditing.removeFileFromWorkingSet": "- 作業セット{0} からファイルを削除します。",
+ "chatEditing.review": "編集内容が適用されると、ドキュメントが開かれたため、レビューの準備が完了したことを示すサウンドが再生されます。accessibility.signals.chatEditModifiedFile でサウンドを無効にすることができます。",
+ "chatEditing.saveAllFiles": "- [すべてのファイルを{0} 保存します。",
+ "chatEditing.sections": "エディター内の編集間を移動し、前の{0} と次の{1} に移動します",
+ "chatEditing.undoKeepSounds": "変更が承諾または元に戻されるときに、サウンドが再生されます。サウンドは、accessibility.signals.editsKept および accessibility.signals.editsUndone で無効にできます。",
+ "inlineChat.access": "これは、コード アクションを介して、または次のコマンドを直接使用してアクティブ化することもできます: Inline Chat: Start Code Chat{0}。",
+ "inlineChat.contextActions": "コンテキスト メニューアクションでは、/ というプレフィックスが付いた要求を実行できます。/ を入力するとすると、既製のコマンドが表示されます。",
+ "inlineChat.diff": "差分エディターで、{0} を使用してレビュー モードにします。上矢印/下矢印を使用して、提案された変更を含む行間を移動します。",
+ "inlineChat.fix": "修正アクションが呼び出された場合、応答は現在のコードの問題を示します。差分エディターがレンダリングされ、タブ操作でアクセスできるようになります。",
+ "inlineChat.inspectResponse": "入力ボックスで、ユーザー補助対応のビューで応答を検査します{0}。",
+ "inlineChat.overview": "インライン チャットはコード エディター内で行われ、現在の選択内容が考慮されます。現在のエディターを変更する場合に便利です。たとえば、診断の修正、コードの文書化またはリファクタリングなどです。AI によって生成されたコードは正しくない可能性があることに注意してください。",
+ "inlineChat.requestHistory": "入力ボックスで、[前を表示] {0} および [次を表示] {1} を使用して要求履歴を移動します。入力を編集し、Enter キーまたは [送信] ボタンを使用して新しい要求を実行します。",
+ "inlineChat.toolbar": "タブを使用して、コマンド、ステータス、メッセージ応答などの条件付き部分にアクセスします。",
+ "workbench.action.chat.announceConfirmation": "保留中のチャットの確認ダイアログにフォーカスを設定するには、フォーカス チャットの確認状態コマンド{0}を呼び出します。",
+ "workbench.action.chat.editing.attachFiles": "- [ファイルの添付]{0}。",
+ "workbench.action.chat.focus": "チャットの要求と応答の一覧にフォーカスするには、チャットにフォーカス コマンド{0}を呼び出します。これにより、最新の応答にフォーカスが移動し、上下の方向キーを使用して移動できます。",
+ "workbench.action.chat.focusInput": "チャット要求の入力ボックスをフォーカスするには、Focus Chat Input コマンドを呼び出します{0}。",
+ "workbench.action.chat.focusLastFocusedItem": "最後にフォーカスしたチャット応答に戻るには、最後にフォーカスされたチャット応答にフォーカス コマンド{0}を呼び出します。",
+ "workbench.action.chat.newChat": "新しいチャット セッションを作成するには、[新しいチャット] コマンド{0}を呼び出します。",
+ "workbench.action.chat.nextCodeBlock": "応答内の次のコード ブロックにフォーカスするには、Chat: Next Code Block コマンドを呼び出します{0}。",
+ "workbench.action.chat.nextUserPrompt": "会話内の次のユーザー プロンプトに移動するには、次のユーザー プロンプト コマンド{0}を呼び出します。",
+ "workbench.action.chat.previousUserPrompt": "会話内の前のユーザー プロンプトに移動するには、前のユーザー プロンプト コマンド{0}を呼び出します。",
+ "workbench.action.chat.undoEdits": "- [元に戻す]{0} 編集します。"
+ },
+ "vs/workbench/contrib/chat/browser/actions/chatActions": {
+ "actions.interactiveSession.focus": "Focus Chat List",
+ "actions.interactiveSession.focusLastFocused": "最後にフォーカスされたチャット リスト項目にフォーカス",
+ "agent.newSession": "新しいセッションを開始しますか?",
+ "agent.newSession.confirm": "はい",
+ "agent.newSessionMessage": "エージェントを変更すると、現在の編集セッションが終了します。エージェントを変更しますか?",
+ "chat.category": "チャット",
+ "chat.clear.label": "すべてのワークスペース チャットをクリア",
+ "chat.editToolApproval.description": "AI チャット エージェントのツールの承認と確認に関するユーザー設定を編集/管理します。",
+ "chat.editToolApproval.label": "ツールの承認の管理",
+ "chat.history.label": "チャットの表示...",
+ "chat.history.recent": "最近のチャット",
+ "chat.history.rename": "名前の変更",
+ "chat.history.showMore": "さらに表示...",
+ "chat.history.showMoreAgents": "さらに表示...",
+ "chat.openNewChatToTheSide.label": "新しいチャット エディターをサイドに開く",
+ "chat.toggleChatHistoryVisibility.label": "チャット履歴",
+ "chat.toggleDefaultVisibility.label": "既定でビューを表示",
+ "chatAndCompletionsQuotaExceeded": "チャット メッセージとインライン候補の月間クォータに達しました。",
+ "chatQuotaExceeded": "チャット メッセージの月間クォータに達しました。無料のインライン候補はまだご利用いただけます。",
+ "chatQuotaExceededButton": "GitHub Copilot Free プランのチャット メッセージ クォータに達しました。クリックして詳細を表示します。",
+ "chatSessions.newChatInSideBar": "サイド バーで新しいチャットを開く",
+ "chatSessions.openNewChatInNewWindow": "新しいウィンドウで新しいチャットを開く",
+ "completionsQuotaExceeded": "インライン候補の月間クォータに達しました。無料のチャット メッセージはまだご利用いただけます。",
+ "config.label": "チャットの構成",
+ "configureCompletions": "インライン候補を構成...",
+ "copilotQuotaReached": "GitHub Copilot クォータに達しました",
+ "currentChatLabel": "現在",
+ "dismiss": "無視",
+ "generateCode": "コードを生成する",
+ "generateInstructions": "ワークスペース指示ファイルを生成する",
+ "generateInstructions.short": "チャットの指示を生成する",
+ "interactiveSession.clearHistory.label": "入力履歴のクリア",
+ "interactiveSession.focusInput.label": "Focus Chat Input",
+ "interactiveSession.history.clear": "すべてのワークスペース チャットをクリア",
+ "interactiveSession.history.delete": "削除",
+ "interactiveSession.history.editor": "エディターで開く",
+ "interactiveSession.history.pick": "チャットに切り替える",
+ "interactiveSession.history.title": "ワークスペース チャット履歴",
+ "interactiveSession.history.titleAll": "すべてのワークスペース チャット履歴",
+ "interactiveSession.newChatWindow": "新しいチャット ウィンドウ",
+ "interactiveSession.open": "新しいチャット エディター",
+ "manageChat": "チャットの管理",
+ "more": "その他...",
+ "newChatTitle": "新しいチャットのタイトル",
+ "openChat": "チャットを開く",
+ "openChatFeatureSettings": "チャット設定",
+ "openChatFeatureSettings.short": "チャット設定",
+ "openChatMode": "チャットを開く ({0})",
+ "quotaResetDate": "上限は {0} にリセットされます。",
+ "resetTrustedTools": "リセット ツールの確認",
+ "resetTrustedToolsSuccess": "ツールの確認設定がリセットされました。",
+ "showCopilotUsageExtensions": "Copilot を使用して拡張機能を表示する",
+ "signInToChatSetup": "AI 機能を使用するにはサインインしてください...",
+ "switchChat.confirmPhrase": "チャットを切り替えると、現在の編集セッションが終了します。",
+ "switchMode.confirmPhrase": "エージェントを切り替えると、現在の編集セッションが終了します。",
+ "title4": "チャット",
+ "toggle.chatControl": "チャット コントロール",
+ "toggle.chatControlsDescription": "タイトル バーのチャット コントロールの表示/非表示を切り替えます",
+ "toggleChat": "チャットの切り替え",
+ "upgradeChat": "GitHub Copilot プランのアップグレード",
+ "upgradePlan": "GitHub Copilot プランのアップグレード",
+ "upgradePro": "GitHub Copilot Pro へのアップグレード",
+ "upgradeToPro": "GitHub Copilot Pro にアップグレードすると (最初の 30 日間は無料)、以下の特典があります:\r\n- 無制限のインライン候補\r\n- 無制限のチャット メッセージ\r\n- プレミアム モデルへのアクセス"
+ },
+ "vs/workbench/contrib/chat/browser/actions/chatCodeblockActions": {
+ "interactive.applyInEditor.label": "エディターで適用します",
+ "interactive.applyInEditorWithURL.label": "{0} に適用",
+ "interactive.compare.apply": "編集の適用",
+ "interactive.compare.discard": "編集の破棄",
+ "interactive.copyCodeBlock.label": "コピー",
+ "interactive.insertCodeBlock.label": "AI カーソルを挿入します",
+ "interactive.insertIntoNewFile.label": "新しいファイルに挿入する",
+ "interactive.nextCodeBlock.label": "次のコード ブロック",
+ "interactive.previousCodeBlock.label": "前のコード ブロック",
+ "interactive.runInTerminal.label": "ターミナルに挿入"
+ },
+ "vs/workbench/contrib/chat/browser/actions/chatContext": {
+ "chatContext.attachScreenshot.labelElectron.Window": "スクリーンショット ウィンドウ",
+ "chatContext.attachScreenshot.labelWeb": "スクリーンショット",
+ "chatContext.editors": "エディターを開く",
+ "chatContext.relatedFiles": "関連ファイル",
+ "chatContext.tools": "ツール...",
+ "chatContext.tools.placeholder": "ツールを選択してください",
+ "imageFromClipboard": "クリップボードからの画像",
+ "pastedImage": "貼り付けられた画像",
+ "relatedFiles": "関連ファイルをワーキング セットに追加する",
+ "terminal": "ターミナル"
+ },
+ "vs/workbench/contrib/chat/browser/actions/chatContextActions": {
+ "chat.insertSearchResults": "検索結果をチャットに追加する",
+ "chatContext.attach.placeholder": "添付ファイルの検索",
+ "goBack": "戻る ↩",
+ "workbench.action.chat.attachContext.label.2": "コンテキストの追加...",
+ "workbench.action.chat.attachFile.label": "ファイルをチャットに追加",
+ "workbench.action.chat.attachFolder.label": "チャットにフォルダーを追加",
+ "workbench.action.chat.attachSelection.label": "選択内容をチャットに追加"
+ },
+ "vs/workbench/contrib/chat/browser/actions/chatContinueInAction": {
+ "chat.learnMore": "Learn More",
+ "continueChatInSession": "次でチャットを続行...",
+ "continueSessionIn": "{0} で続行"
+ },
+ "vs/workbench/contrib/chat/browser/actions/chatCopyActions": {
+ "chat.copyKatexMathSource.label": "数式ソースのコピー",
+ "interactive.copyAll.label": "すべてコピー",
+ "interactive.copyItem.label": "コピー"
+ },
+ "vs/workbench/contrib/chat/browser/actions/chatDeveloperActions": {
+ "workbench.action.chat.logChatIndex.label": "チャット インデックスをログする",
+ "workbench.action.chat.logInputHistory.label": "チャットの入力履歴をログに記録する"
+ },
+ "vs/workbench/contrib/chat/browser/actions/chatElicitationActions": {
+ "chat.acceptElicitation": "要求を承諾"
+ },
+ "vs/workbench/contrib/chat/browser/actions/chatExecuteActions": {
+ "actions.chat.submitWithCodebase": "{0} で送信",
+ "chat.newChat.label": "新しいチャットに送信",
+ "chat.remove.confirmation.checkbox": "今後は確認しない",
+ "chat.remove.confirmation.message2": "これを行うと、後続のすべての要求が削除され、{0} に対して行われた編集が元に戻されます。続行しますか?",
+ "chat.remove.confirmation.multipleEdits.message": "これを行うと、後続のすべての要求が削除され、作業セット内の {0} 個のファイルに対して行われた編集が元に戻されます。続行しますか?",
+ "chat.remove.confirmation.primaryButton": "はい",
+ "chat.remove.confirmation.title": "{0} の編集を元に戻しますか?",
+ "chat.removeLast.confirmation.message2": "これを行うと、最後の要求が削除され、{0} に対して行われた編集が元に戻されます。続行しますか?",
+ "chat.removeLast.confirmation.multipleEdits.message": "これを行うと、最後の要求が削除され、作業セット内の {0} 個のファイルに対して行われた編集が元に戻されます。続行しますか?",
+ "chat.removeLast.confirmation.title": "最後の編集操作を元に戻しますか?",
+ "edits.submit.label": "送信",
+ "interactive.cancel.label": "取り消す",
+ "interactive.cancelEdit.label": "編集をキャンセルします",
+ "interactive.changeModel.label": "モデルの変更",
+ "interactive.openChatSessionPrimaryPicker.label": "ピッカーを開く",
+ "interactive.openModePicker.label": "エージェント ピッカーを開く",
+ "interactive.openModelPicker.label": "モデル ピッカーを開く",
+ "interactive.submit.label": "送信",
+ "interactive.submit.panel.label": "編集セッションに送信",
+ "interactive.submitWithoutDispatch.label": "送信",
+ "interactive.switchToNextModel.label": "次のモデルに切り替える",
+ "interactive.toggleAgent.label": "次のエージェントに切り替える",
+ "sendToAgent": "エージェントに送信",
+ "setChatMode": "エージェントの設定"
+ },
+ "vs/workbench/contrib/chat/browser/actions/chatFileTreeActions": {
+ "interactive.nextFileTree.label": "次のファイル ツリー",
+ "interactive.previousFileTree.label": "前のファイル ツリー"
+ },
+ "vs/workbench/contrib/chat/browser/actions/chatImportExport": {
+ "chat.export.label": "チャットのエクスポート...",
+ "chat.file.label": "チャット セッション",
+ "chat.import.label": "チャットのインポート..."
+ },
+ "vs/workbench/contrib/chat/browser/actions/chatLanguageModelActions": {
+ "extensionOwner": "{0}",
+ "languageModelAuthPlaceholder": "言語モデルにアクセスできる拡張機能を選択します",
+ "languageModelAuthTitle": "言語モデルのアクセスを管理",
+ "manageLanguageModelAuthentication": "言語モデルのアクセスを管理...",
+ "noAccessDescription": "現在、{0} のモデルを使用できる拡張機能はありません",
+ "noAllowedExtensions": "アクセス権のある拡張機能はありません",
+ "noLanguageModels": "認証を必要とする言語モデルが見つかりませんでした。",
+ "noLanguageModelsDetail": "現在、認証を必要とする言語モデルはありません。",
+ "openExtension": "オープン拡張",
+ "trustedExtension": "Microsoft によって信頼されている"
+ },
+ "vs/workbench/contrib/chat/browser/actions/chatMoveActions": {
+ "chat.openInEditor.label": "チャットをエディター領域に移動する",
+ "chat.openInNewWindow.label": "チャットを新しいウィンドウに移動する",
+ "interactiveSession.openInPanel.label": "チャットをパネルに移動する",
+ "interactiveSession.openInPrimarySidebar.label": "チャットをプライマリ サイド バーに移動する",
+ "interactiveSession.openInSecondarySidebar.label": "チャットをセカンダリ サイド バーに移動する",
+ "interactiveSession.openInSidebar.label": "チャットをサイド バーに移動する"
+ },
+ "vs/workbench/contrib/chat/browser/actions/chatNewActions": {
+ "chat.newChat.label": "新しいチャット",
+ "chat.newEdits.label": "新しいチャット",
+ "chat.redoEdit.label": "最後の要求をやり直す",
+ "chat.redoEdit.label2": "やり直す",
+ "chat.redoEdit.tooltip": "破棄されたワークスペースの変更とチャットを再適用する",
+ "chat.undoEdit.label": "最後の要求を元に戻す"
+ },
+ "vs/workbench/contrib/chat/browser/actions/chatPromptNavigationActions": {
+ "interactive.nextUserPrompt.label": "次のユーザー プロンプト",
+ "interactive.previousUserPrompt.label": "前のユーザー プロンプト"
+ },
+ "vs/workbench/contrib/chat/browser/actions/chatQuickInputActions": {
+ "chat.closeQuickChat.label": "クイック チャットを閉じる",
+ "chat.openInChatView.label": "チャット ビューで開く",
+ "interactiveSession.open": "クイック チャットを開く",
+ "quickChat": "クイック チャットを開く",
+ "toggle.desc": "クイック チャットを切り替える",
+ "toggle.isPartialQuery": "クエリが部分的かどうか。より多くのユーザー入力を待機します",
+ "toggle.query": "クイック チャットを開くクエリ"
+ },
+ "vs/workbench/contrib/chat/browser/actions/chatSessionActions": {
+ "chat.openSessionInNewEditorGroup.label": "横側にチャットを移動する",
+ "chat.openSessionInNewWindow.label": "チャットを新しいウィンドウに移動する",
+ "chat.openSessionInSidebar.label": "チャットをサイド バーに移動する",
+ "chat.sessions.gettingStarted.action": "チャット セッションの使用を開始する",
+ "chatSessions.extensionAlreadyInstalled": "'{0}' は既にインストールされています",
+ "chatSessions.installExtension": "'{0}' をインストールします",
+ "chatSessions.pickPlaceholder": "拡張機能を選択してチャット エクスペリエンスを強化してください",
+ "chatSessions.selectExtension": "チャット拡張機能のインストール",
+ "chatSessions.toggleDescriptionDisplay.label": "詳細な説明を表示する",
+ "chatSessions.toggleViewLocation.label": "Combined Sessions View",
+ "deleteSession": "削除",
+ "deleteSession.confirm": "このチャット セッションを削除しますか?",
+ "deleteSession.delete": "削除",
+ "deleteSession.detail": "この操作は元に戻せません。",
+ "interactiveSession.open": "新しいチャット エディター",
+ "openSessionInNewWindow": "新しいウィンドウで開く",
+ "openSessionInSidebar": "サイドバーで開く",
+ "openToSide": "横に並べて開く",
+ "renameSession": "名前の変更",
+ "renameSession.emptyName": "名前を空にすることはできません",
+ "renameSession.error": "チャット セッションの名前を変更できませんでした: {0}",
+ "renameSession.nameTooLong": "名前が長すぎます (最大 100 文字)",
+ "renameSession.placeholder": "チャット セッションの新しい名前を入力してください"
+ },
+ "vs/workbench/contrib/chat/browser/actions/chatTitleActions": {
+ "chat.retry.confirmation.checkbox": "今後は確認しない",
+ "chat.retry.confirmation.message2": "これを行うと、この要求以降に {0} に対して行われた編集が元に戻されます。",
+ "chat.retry.confirmation.primaryButton": "はい",
+ "chat.retry.label": "再試行",
+ "chat.retryLast.confirmation.message2": "これを行うと、この要求以降に作業セット内の {0} 個のファイルに対して行われた編集が元に戻されます。続行しますか?",
+ "chat.retryLast.confirmation.title2": "最後の要求を再試行しますか?",
+ "interactive.helpful.label": "役に立った",
+ "interactive.insertIntoNotebook.label": "ノートブックに挿入する",
+ "interactive.reportIssueForBug.label": "問題を報告",
+ "interactive.unhelpful.label": "役に立たなかった"
+ },
+ "vs/workbench/contrib/chat/browser/actions/chatToolActions": {
+ "chat.accept": "承諾する",
+ "chat.skip": "スキップ",
+ "chat.tools.description.agent": "選択したツールは、'{0}' カスタム エージェントで構成されています。ツールへの変更は、カスタム エージェント ファイルにも適用されます。",
+ "chat.tools.description.global": "選択したツールは、既定のエージェントを使用するすべてのチャット セッションにグローバルに適用されます。",
+ "chat.tools.description.readOnlyAgent": "選択したツールは、'{0}' カスタム エージェントで構成されています。ツールへの変更は、このセッションでのみ使用され、'{0}' カスタム エージェントは変更されません。",
+ "chat.tools.description.session": "選択したツールは、このチャット セッションに対してのみ構成されました。",
+ "chat.tools.placeholder.agent": "このカスタム エージェントのツールを選択してください",
+ "chat.tools.placeholder.global": "チャットに使用できるツールを選択してください。",
+ "chat.tools.placeholder.readOnlyAgent": "このカスタム エージェントのツールを選択してください",
+ "chat.tools.placeholder.session": "このチャット セッションのツールを選択してください",
+ "chatTools.tooManyEnabled": "{0} を超えるのツールが有効になっていると、ツールの呼び出しが低下する可能性があります。",
+ "label": "ツールの構成..."
+ },
+ "vs/workbench/contrib/chat/browser/actions/chatToolPicker": {
+ "addExtensionButton": "拡張機能のインストール...",
+ "addMcpServer": "MCP サーバーの追加...",
+ "configMcpCol": "{0} の構成",
+ "configToolSets": "ツール セットの構成...",
+ "configureTools": "ツールの構成...",
+ "defaultBucketLabel": "組み込み",
+ "editUserBucket": "ツール セットの編集",
+ "mcpShowOutput": "出力の表示",
+ "mcpUpdate": "更新ツール",
+ "noTools": "チャットにツールを追加",
+ "toolLimitExceeded": "{0} 個のツールが有効になっています。上記 {1} 個のツールの呼び出しが低下する場合があります。",
+ "userBucket": "ユーザー定義ツール セット"
+ },
+ "vs/workbench/contrib/chat/browser/actions/codeBlockOperations": {
+ "activeEditor": "アクティブなエディターの '{0}'",
+ "applyCodeBlock.error": "コード ブロック {0} を適用できませんでした",
+ "applyCodeBlock.errorOpeningFile": "コード エディターで {0} を開けませんでした。",
+ "applyCodeBlock.fileWriteError": "ファイル {0} の作成に失敗しました",
+ "applyCodeBlock.noActiveEditor": "このコード ブロックを適用するには、コードまたはノートブック エディターを開きます。",
+ "applyCodeBlock.noCodeMapper": "使用できるコード マッパーがありません。",
+ "applyCodeBlock.progress": "{0} を使用してコード ブロックを適用しています...",
+ "applyCodeBlock.readonly": "読み取り専用ファイルにコード ブロックを適用できません。",
+ "applyCodeBlock.readonlyNotebook": "読み取り専用ノートブック エディターにコード ブロックを適用できません。",
+ "createFile": "新しいファイル '{0}'",
+ "insertCodeBlock.noActiveEditor": "コード ブロックを挿入するには、コード エディターまたはノートブック エディターを開き、コード ブロックを挿入する場所にカーソルを設定します。",
+ "insertCodeBlock.readonly": "読み取り専用コード エディターにコード ブロックを挿入できません。",
+ "insertCodeBlock.readonlyNotebook": "読み取り専用ノートブック エディターにコード ブロックを挿入できません。",
+ "newUntitledFile": "新しい無題のエディター",
+ "selectOption": "コード ブロックを適用する場所を選択します"
+ },
+ "vs/workbench/contrib/chat/browser/actions/manageModelsActions": {
+ "manageLanguageModels": "言語モデルの管理..."
+ },
+ "vs/workbench/contrib/chat/browser/agentSessions/agentSessions": {
+ "chat.session.providerLabel.background": "背景",
+ "chat.session.providerLabel.cloud": "クラウド",
+ "chat.session.providerLabel.local": "ローカル"
+ },
+ "vs/workbench/contrib/chat/browser/agentSessions/agentSessionsActions": {
+ "agentSessions.filter.reset": "Reset",
+ "diffFile": "1 ファイル",
+ "diffFiles": "{0} 個のファイル",
+ "filterAgentSessions": "エージェント セッションのフィルター処理",
+ "find": "エージェント セッションを検索",
+ "refresh": "エージェント セッションの更新",
+ "showDiff": "変更を開く"
+ },
+ "vs/workbench/contrib/chat/browser/agentSessions/agentSessionsView": {
+ "agentSessions.newSession": "新しいセッション",
+ "agentSessions.newSessionAriaLabel": "新しいセッション",
+ "agentSessions.refreshing": "エージェント セッションを更新しています...",
+ "agentSessions.view.label": "エージェント セッション",
+ "chatSessions.installExtensions": "チャット拡張機能をインストール...",
+ "newBackgroundSession": "新しいバックグラウンド セッション",
+ "newChatSessionDefault": "新しいローカル セッション",
+ "newChatSessionFromProvider": "新しい {0}",
+ "newCloudSession": "新しいクラウド セッション"
+ },
+ "vs/workbench/contrib/chat/browser/agentSessions/agentSessionsViewer": {
+ "agentSessions": "エージェント セッション",
+ "agentSessions.dragLabel": "{0} 件のエージェント セッション",
+ "chat.session.status.completed": "終了",
+ "chat.session.status.completedAfter": "{0} で終了しました。",
+ "chat.session.status.failed": "失敗",
+ "chat.session.status.failedAfter": "{0} 後に失敗しました。",
+ "chat.session.status.inProgress": "処理中...",
+ "chat.session.status.inProgressWithDuration": "処理中...({0})"
+ },
+ "vs/workbench/contrib/chat/browser/agentSessions/agentSessionsViewFilter": {
+ "agentSessions.filter.archived": "アーカイブ済み",
+ "chatSessionStatus.completed": "完了",
+ "chatSessionStatus.failed": "失敗",
+ "chatSessionStatus.inProgress": "進行中"
+ },
+ "vs/workbench/contrib/chat/browser/attachments/implicitContextAttachment": {
+ "cell.lowercase": "セル",
+ "chat.fileAttachment": "{0}、{1} をアタッチしました",
+ "chat.fileAttachmentWithRange": "{0}、{1}、行 {2} から行 {3} をアタッチしました",
+ "disable": "現在の {0} コンテキストを無効にする",
+ "enable": "現在の {0} コンテキストを有効にする",
+ "enableHint": "現在の {0} コンテキストを有効にする",
+ "file.lowercase": "ファイル",
+ "openEditor": "現在の {0} コンテキスト",
+ "openFile": "現在のファイル コンテキスト"
+ },
+ "vs/workbench/contrib/chat/browser/chat.contribution": {
+ "autoApprove2.description": "グローバル自動承認 (\"YOLO モード\"とも呼ばれます) は、すべてのワークスペースのすべてのツールに対する手動承認を完全に無効にし、エージェントが完全に自律的に動作できるようにします。これは非常に危険であり、*決して*推奨されません。Codespaces や Dev Containers などのコンテナー化された環境でも、ユーザー キーがコンテナー内に転送され、侵害される可能性があります。\r\n\r\nこの機能により、重要なセキュリティ保護が無効になり、攻撃者がマシンを侵害しやすくなります。",
+ "chat": "チャット",
+ "chat.agent.enabled.description": "チャットのエージェント モードを有効にします。これを有効にすると、ビューのドロップダウンからエージェント モードをアクティブ化できます。",
+ "chat.agent.maxRequests": "エージェントの使用時にターンごとに許可する要求の最大数。制限に達すると、続行するかどうかの確認を求めます。",
+ "chat.agent.thinking.collapsedTools": "有効にすると、選択したモードに従って、ツールの呼び出しが折りたたみ可能な思考セクションに追加されます。",
+ "chat.agent.thinking.collapsedTools.all": "折りたたみ可能な思考セクションに、すべてのツールの呼び出しが追加されました。",
+ "chat.agent.thinking.collapsedTools.none": "折りたたみ可能な思考セクションに、ツールの呼び出しは追加されません。",
+ "chat.agent.thinking.collapsedTools.readOnly": "折りたたみ可能な思考セクションに、読み取り専用のツール呼び出しのみが追加されます。",
+ "chat.agent.thinkingMode.collapsed": "思考中の部分は既定で折りたたまれます。",
+ "chat.agent.thinkingMode.collapsedPreview": "思考中の部分は最初に展開され、思考していない部分に到達すると折りたたまれます。",
+ "chat.agent.thinkingMode.fixedScrolling": "自動スクロールする固定高さのストリーミング パネルに思考を表示します。ヘッダーをクリックすると全高に展開します。",
+ "chat.agent.thinkingStyle": "思考のレンダリング方法を制御します。",
+ "chat.allowAnonymousAccess": "チャットで匿名アクセスを許可するかどうかを制御します。",
+ "chat.checkpoints.enabled": "チャットでチェックポイントを有効にします。チェックポイントを使用すると、チャットを以前の状態に復元できます。",
+ "chat.checkpoints.showFileChanges": "チャット チェックポイント ファイルの変更を表示するかどうかを制御します。",
+ "chat.codeBlock.showProgressAnimation.description": "編集を適用するときに、コード ブロック ピルに進行状況アニメーションを表示します。無効にすると、代わりに進捗率が表示されます。",
+ "chat.commandCenter.enabled": "コマンド センターがチャットを制御するための操作のメニューを表示するかどうかを制御します ({0} が必要です)。",
+ "chat.detectParticipant.enabled": "パネル チャットのチャット参加者の自動検出を有効にします。",
+ "chat.disableAIFeatures": "チャットやインライン候補など、GitHub Copilot によって提供される組み込みの AI 機能を、無効または非表示にします。",
+ "chat.editRequests": "チャット内の要求の編集を有効にします。これにより、要求の内容を変更し、モデルに再送信できます。",
+ "chat.editing.autoAcceptDelay": "チャットによる変更が自動的に反映されるまでの遅延。値は秒単位、'0' は無効、'100' 秒が最大値であることを意味します。",
+ "chat.editing.confirmEditRequestRemoval": "要求とそれに関連付けられた編集を削除する前に確認を表示するかどうか。",
+ "chat.editing.confirmEditRequestRetry": "要求とそれに関連付けられた編集を再試行する前に確認を表示するかどうか。",
+ "chat.edits2Enabled": "ツール呼び出しに基づく新しい編集モードを有効にします。これを有効にすると、ツール呼び出しをサポートしていないモデルは編集モードで使用できなくなります。",
+ "chat.emptyState.history.enabled": "空のチャット状態で最近のチャット履歴を表示します。",
+ "chat.experimental.detectParticipant.enabled": "パネル チャットのチャット参加者の自動検出を有効にします。",
+ "chat.experimental.detectParticipant.enabled.deprecated": "この設定は非推奨です。代わりに 'chat.detectParticipant.enabled' を使用してください。",
+ "chat.extensionToolsEnabled": "サード パーティの拡張機能によって提供されるツールの使用を有効にします。",
+ "chat.extensionUnification.enabled": "GitHub Copilot 拡張機能の統合を有効にします。有効にすると、GitHub Copilot のすべての機能が GitHub Copilot Chat 拡張機能から提供されます。無効にすると、GitHub Copilot および GitHub Copilot Chat 拡張機能は独立して動作します。",
+ "chat.fontFamily": "チャット メッセージ内のフォント ファミリを制御します。",
+ "chat.fontSize": "チャット メッセージのフォント サイズをピクセル単位で制御します。",
+ "chat.hideNewButtonInAgentSessionsView": "[エージェント セッション] ビューで新しいセッション ボタンを非表示にするかどうかを制御します。",
+ "chat.implicitContext.enabled.1": "指定されたチャットの場所に対して、アクティブ エディターをチャット コンテキストとして自動的に使用できるようにします。",
+ "chat.implicitContext.suggestedContext": "新しい暗黙的なコンテキスト フローを表示するかどうかを制御します。質問モードと編集モードでは、コンテキストが自動的に含まれます。エージェントを使用する場合、コンテキストは添付ファイルとして提案されます。選択内容は常にコンテキストとして含まれます。",
+ "chat.implicitContext.value": "暗黙的なコンテキストの値。",
+ "chat.implicitContext.value.always": "暗黙的なコンテキストは常に有効です。",
+ "chat.implicitContext.value.first": "最初の対話に対し、暗黙的なコンテキストが有効になります。",
+ "chat.implicitContext.value.never": "暗黙的なコンテキストが有効になることはありまん。",
+ "chat.instructions.config.locations.description": "チャット セッションに添付できる指示ファイル (`*{0}`) の場所を指定します。[詳細情報]({1})。\r\n\r\n相対パスは、ワークスペースのルート フォルダーから解決されます。",
+ "chat.instructions.config.locations.title": "指示ファイルの場所",
+ "chat.mathEnabled.description": "KaTeX を使用してチャット応答で数式レンダリングを有効にします。",
+ "chat.mcp.access": "インストールされたモデル コンテキスト プロトコル サーバーへのアクセスを制御します。",
+ "chat.mcp.access.any": "インストールされている任意の MCP サーバーへのアクセスを許可します。",
+ "chat.mcp.access.none": "MCP サーバーにアクセスできません。",
+ "chat.mcp.access.registry": "VS Code が接続されているレジストリからインストールされた MCP サーバーへのアクセスを許可します。",
+ "chat.mcp.assisted.nuget.enabled.description": "AI 支援 MCP サーバーのインストール用に NuGet パッケージを有効にします。.NET パッケージ (NuGet.org) の中央レジストリから MCP サーバーを名前でインストールするために使用されます。",
+ "chat.mcp.autostart": "チャット メッセージの送信時に MCP サーバーを自動的に起動するかどうかを制御します。",
+ "chat.mcp.autostart.never": "MCP サーバーを自動的に起動しません。",
+ "chat.mcp.autostart.newAndOutdated": "まだ実行されていない新しい古い MCP サーバーを自動的に起動します。",
+ "chat.mcp.autostart.onlyNew": "実行されたことがない新しい MCP サーバーのみを自動的に起動します。",
+ "chat.mcp.gallery.enabled": "モデル コンテキスト プロトコル (MCP) サーバーの既定のマーケットプレースを有効にします。",
+ "chat.mcp.serverSampling": "サンプリングのために MCP サーバーに公開するモデルを構成します (バックグラウンドでモデル要求を行います)。この設定は、'{0}' コマンドでグラフィカルに編集できます。",
+ "chat.mcp.serverSampling.allowedDuringChat": "このサーバーがチャット セッションでのツール呼び出し中にサンプリング要求を行うかどうか。",
+ "chat.mcp.serverSampling.allowedOutsideChat": "このサーバーがチャット セッションの外部でサンプリング要求を行うことが許可されているかどうか。",
+ "chat.mcp.serverSampling.model": "MCP サーバーがアクセスできるモデル。",
+ "chat.mode.config.locations.deprecated": "この設定は非推奨となり、今後のリリースで削除される予定です。チャット モードはカスタム エージェントと呼ばれるようになり、`.github/agents` に配置されています",
+ "chat.mode.config.locations.description": "カスタム チャット モード ファイル ('*{0}') の場所を指定します。[詳細情報]({1})。\r\n\r\n相対パスは、ワークスペースのルート フォルダーから解決されます。",
+ "chat.mode.config.locations.title": "モード ファイルの場所",
+ "chat.notifyWindowOnConfirmation": "ウィンドウがフォーカスされていないときに確認が必要な場合に、チャット セッションで OS 通知をユーザーに表示するかどうかを制御します。これには、ウィンドウ バッジと通知トーストが含まれます。",
+ "chat.notifyWindowOnResponseReceived": "ウィンドウがフォーカスされていないときに応答を受信した場合に、チャット セッションで OS 通知をユーザーに表示するかどうかを制御します。これには、ウィンドウ バッジと通知トーストが含まれます。",
+ "chat.promptFilesRecommendations.description": "チャットのウェルカム ビューで推奨するプロンプト ファイルを構成します。各キーはプロンプト ファイル名であり、値には `true` (常に推奨)、`false` (決して推奨しない)、または [when 句](https://aka.ms/vscode-when-clause) の式 (例: `resourceExtname == .js` や `resourceLangId == markdown`) を指定できます。",
+ "chat.promptFilesRecommendations.title": "プロンプト ファイルの推奨事項",
+ "chat.renderRelatedFiles": "チャット入力で関連ファイルをレンダリングするかどうかを制御します。",
+ "chat.reusablePrompts.config.locations.description": "チャット セッションで実行できる再利用可能なプロンプト ファイル (`*{0}`) の場所を指定します。[詳細情報]({1})。\r\n\r\n相対パスは、ワークスペースのルート フォルダーから解決されます。",
+ "chat.reusablePrompts.config.locations.title": "プロンプト ファイルの場所",
+ "chat.sendElementsToChat.attachCSS": "選択した要素の CSS をチャットに追加するかどうかを制御します。{0} を有効にする必要があります。",
+ "chat.sendElementsToChat.attachImages": "選択した要素のスクリーンショットをチャットに追加するかどうかを制御します。{0} を有効にする必要があります。",
+ "chat.sendElementsToChat.enabled": "Simple Browser からチャットに要素を送信できるかどうかを制御します。",
+ "chat.sessionsViewLocation.description": "エージェント セッション メニューを表示する場所を制御します。",
+ "chat.showAgentSessionsViewDescription": "[チャット セッション] ビューの 2 行目にセッションの説明が表示されるかどうかを制御します。",
+ "chat.signInWithAlternateScopes": "代替スコープでのサインインを使用するかどうかを制御します。",
+ "chat.subagentTool.customAgents": "runSubagent ツールがカスタム エージェントを使用できるかどうか。有効にすると、ツールはカスタム エージェントの名前を取得できますが、エージェントの正確な名前を指定する必要があります。",
+ "chat.todoListTool.descriptionField": "有効にすると、Todo 項目に実装コンテキストの詳細な説明が追加されます。これにより、より多くの情報が提供されますが、追加のトークンが使用され、応答が遅くなる可能性があります。",
+ "chat.todoListTool.writeOnly": "有効にすると、ToDo ツールは書き込み専用モードで動作し、エージェントはコンテキスト内で ToDo を記憶する必要があります。",
+ "chat.toolReferenceName.description": "{0} - {1}",
+ "chat.tools.autoApprove.edits": "チャットによる編集が自動的に承認されるかどうかを制御します。既定では、`**/.vscode/*.json` のように、直ちに意図しない副作用を引き起こす可能性のある特定のファイルに対して行われた編集を除き、すべての編集を承認します。\r\n\r\n一致するファイルに対する編集を自動的に承認する場合は true に設定し、常に明示的な承認が必要な場合は false に設定します。特定のファイルに一致する最後のパターン マッチングによって、編集が自動的に承認されるかどうかが決まります。",
+ "chat.tools.eligibleForAutoApproval": "自動承認の対象となるツールを制御します。'false' に設定されたツールには、常に確認が表示され、自動承認のオプションは提供されません。既定の動作 (またはツールを 'true' に設定すること) により、ツールで自動承認オプションが提供される場合があります。",
+ "chat.tools.fetchPage.approvedUrls": "チャット ツールから要求されたときに、自動的に承認する URL を制御します。キーは URL パターンであり、要求と応答の両方を承認する場合は 'true'、拒否する場合は 'false'、詳細に制御するには 'approveRequest' プロパティと 'approveResponse' プロパティを持つオブジェクトを値に指定できます。\r\n\r\n例:\r\n- `\"https://example.com\": true` - example.com へのすべての要求を承認します\r\n- `\"https://*.example.com\": true` - example.com の任意のサブドメインへのすべての要求を承認します\r\n- `\"https://example.com/api/*\": { \"approveRequest\": true, \"approveResponse\": false }` - example.com/api パスへの要求は承認しますが、応答は承認しません",
+ "chat.tools.todos.showWidget": "チャット入力の上に ToDo リスト ウィジェットを表示するかどうかを制御します。有効にすると、ウィジェットはエージェントによって作成された ToDo 項目を表示し、進行状況に応じて更新します。",
+ "chat.undoRequests.restoreInput": "元に戻す要求が行われたときにチャットの入力を復元するかどうかを制御します。入力には、復元された要求のテキストが入力されます。",
+ "chat.useAgentMd.description": "ワークスペースのルートで見つかった `AGENTS.MD` ファイルからの指示が、すべてのチャット要求にアタッチされるかどうかを制御します。",
+ "chat.useAgentMd.title": "AGENTS.MD ファイルを使用する",
+ "chat.useClaudeSkills.description": "ワークスペースおよびユーザー ホーム ディレクトリで見つかった Claude スキルが、すべてのチャット要求に一覧表示されるかどうかを制御します。言語モデルでは、`読み取り` ツールが使用可能な場合、これらのスキルをオンデマンドで読み込むことができます。",
+ "chat.useClaudeSkills.title": "Claude スキルを使用する",
+ "chat.useNestedAgentMd.description": "ワークスペースで見つかった入れ子になった `AGENTS.MD` ファイルをすべてのチャット要求で一覧表示するかどうかを制御します。言語モデルでは、`読み取り` ツールが使用可能な場合、これらのスキルをオンデマンドで読み込むことができます。",
+ "chat.useNestedAgentMd.title": "入れ子になった AGENTS.MD ファイルを使用する",
+ "clear": "新しいチャットの開始",
+ "interactiveSession.editor.fontFamily": "チャット コード ブロック内のフォント ファミリを制御します。",
+ "interactiveSession.editor.fontSize": "チャット コード ブロック内のフォント サイズをピクセル単位で制御します。",
+ "interactiveSession.editor.fontWeight": "チャット コード ブロック内のフォントの太さを制御します。",
+ "interactiveSession.editor.lineHeight": "チャット コード ブロック内の行の高さをピクセル単位で制御します。フォント サイズから行の高さを計算するには 0 を使用します。",
+ "interactiveSession.editor.wordWrap": "チャット コード ブロックで行を折り返すかどうかを制御します。",
+ "interactiveSessionConfigurationTitle": "チャット",
+ "mcp.discovery.enabled": "他のさまざまなアプリケーションからの構成を基に、モデル コンテキスト プロトコル サーバーの検出を構成します。",
+ "mcp.gallery.serviceUrl": "接続する MCP ギャラリー サービス URL を構成する",
+ "mcp.list": "サーバーの一覧表示"
+ },
+ "vs/workbench/contrib/chat/browser/chatAccessibilityProvider": {
+ "chat": "チャット",
+ "multiCodeBlock": "{0}{1}{2} コード ブロック: {3} {4}",
+ "multiCodeBlockHint": "{0}{1}{2}{3} コード ブロック: {4}{5} {6}",
+ "multiFileTreeHint": "{0} 個のファイル ツリー",
+ "multiTableHint": "{0} 個の表",
+ "noCodeBlocks": "{0}{1}{2} {3}",
+ "noCodeBlocksHint": "{0}{1}{2}{3}{4} {5}",
+ "singleCodeBlock": "{0}{1}1 コード ブロック: {2} {3}",
+ "singleCodeBlockHint": "{0}{1}{2}1 個のコード ブロック: {3} {4}{5}",
+ "singleFileTreeHint": "1 個のファイル ツリー",
+ "singleTableHint": "1 個のテーブル",
+ "toolInvocationsHint": "チャットの確認が必要です: {0}",
+ "toolInvocationsHintDetails": "詳細: {0}",
+ "toolInvocationsHintKb": "チャットの確認が必要です: {0}。{1} を押して承諾するか、{2} を押してキャンセルします。",
+ "toolPostApprovalTitle": "ツールの結果の承認"
+ },
+ "vs/workbench/contrib/chat/browser/chatAccessibilityService": {
+ "chat.untitledChat": "無題のチャット",
+ "chatTitle": "チャット: {0}",
+ "notificationDetail": "新しいチャット応答。"
+ },
+ "vs/workbench/contrib/chat/browser/chatAgentHover": {
+ "reservedName": "このチャット拡張機能は予約された名前を使用しています。",
+ "viewExtensionLabel": "拡張機能の表示"
+ },
+ "vs/workbench/contrib/chat/browser/chatAttachmentResolveService": {
+ "imageTooLarge": "画像が大きすぎます",
+ "imageTooLargeMessage": "画像 {0} は大きすぎて添付できません。"
+ },
+ "vs/workbench/contrib/chat/browser/chatAttachmentWidgets": {
+ "chat.NotebookImageAttachment": "アタッチされたノートブックの出力、{0}",
+ "chat.attachment": "添付コンテキスト、{0}",
+ "chat.attachment.clearButton": "コンテキストから削除",
+ "chat.clickToViewContents": "クリックすると次の内容が表示されます: {0}",
+ "chat.elementAttachment": "アタッチされた要素、 {0}",
+ "chat.fileAttachment": "添付ファイル、{0}",
+ "chat.fileAttachmentHover": "{0} では、このファイルの種類はサポートされていません。",
+ "chat.fileAttachmentWithRange": "添付ファイル、{0}、行 {1} から行 {2}",
+ "chat.imageAttachment": "添付画像、{0}",
+ "chat.imageAttachmentHover": "{0} では画像はサポートされていません。",
+ "chat.imageAttachmentWarning": "この GIF は部分的に省略されました。現在のフレームが送信されます。",
+ "chat.instructionsAttachment": "指示の添付ファイル、{0}",
+ "chat.omittedFileAttachment": "このファイルを省略しました: {0}",
+ "chat.omittedImageAttachment": "この画像を省略しました: {0}",
+ "chat.omittedNotebookImageAttachment": "このノートブック出力を省略しました: {0}",
+ "chat.partiallyOmittedImageAttachment": "この画像を部分的に省略しました: {0}",
+ "chat.partiallyOmittedNotebookImageAttachment": "このノートブック出力を部分的に省略しました: {0}",
+ "chat.promptAttachment": "プロンプト ファイル: {0}",
+ "chat.terminalCommand": "ターミナル コマンド {0}",
+ "chat.terminalCommandHoverCommandTitle": "コマンド",
+ "chat.terminalCommandHoverCommandTitleExit": "コマンド: {0}、終了コード: {1}",
+ "chat.terminalCommandHoverHint": "クリックすると、ターミナルでこのコマンドがフォーカスされます。",
+ "chat.terminalCommandHoverOutputTitle": "出力:",
+ "instructions": "指示",
+ "instructions.label": "追加の手順",
+ "prompt": "プロンプト",
+ "resource": "スキームとパスを含めた、チャット添付ファイル リソースのすべての値",
+ "tool": "{0} - {1}",
+ "toolset": "{0} - {1}"
+ },
+ "vs/workbench/contrib/chat/browser/chatContentParts/chatAgentCommandContentPart": {
+ "rerun": "{0}{1} なしで再実行する"
+ },
+ "vs/workbench/contrib/chat/browser/chatContentParts/chatAnonymousRateLimitedPart": {
+ "anonymousRateLimited": "サインインして会話を続行します。無料アカウントでは、1 か月あたり 50 件のプレミアム要求に加えて、より多くのモデルと AI 機能にアクセスできます。",
+ "enableMoreAIFeatures": "その他の AI 機能を有効にする"
+ },
+ "vs/workbench/contrib/chat/browser/chatContentParts/chatChangesSummaryPart": {
+ "chat.viewFileChangesSummary": "すべてのファイルの変更を表示する"
+ },
+ "vs/workbench/contrib/chat/browser/chatContentParts/chatCodeCitationContentPart": {
+ "viewMatches": "一致を表示する"
+ },
+ "vs/workbench/contrib/chat/browser/chatContentParts/chatCollapsibleContentPart": {
+ "usedReferencesCollapsed": "{0}、折りたたまれました",
+ "usedReferencesExpanded": "{0}、展開されました"
+ },
+ "vs/workbench/contrib/chat/browser/chatContentParts/chatCommandContentPart": {
+ "commandButtonDisabled": "復元されたチャットではボタンを使用できません"
+ },
+ "vs/workbench/contrib/chat/browser/chatContentParts/chatConfirmationContentPart": {
+ "accept": "承諾する",
+ "dismiss": "閉じる"
+ },
+ "vs/workbench/contrib/chat/browser/chatContentParts/chatConfirmationWidget": {
+ "chat.confirmationWidget.ariaLabel": "チャット確認ダイアログ {0} {1}",
+ "chat.untitledChat": "無題のチャット",
+ "chatTitle": "チャット: {0}",
+ "notificationDetail": "続行するには承認が必要です。"
+ },
+ "vs/workbench/contrib/chat/browser/chatContentParts/chatExtensionsContentPart": {
+ "chat.extensions.loading": "拡張機能を読み込んでいます..."
+ },
+ "vs/workbench/contrib/chat/browser/chatContentParts/chatMarkdownContentPart": {
+ "chat.codeblock.applyingEdits": "編集を適用しています",
+ "chat.codeblock.applyingPercentage": "({0}%)...",
+ "chat.codeblock.deletions": "{0} 件の削除",
+ "chat.codeblock.deletions.one": "1 件の削除",
+ "chat.codeblock.edited": "編集済み",
+ "chat.codeblock.generating": "編集を生成しています...",
+ "chat.codeblock.insertions": "{0} 件の挿入",
+ "chat.codeblock.insertions.one": "1 件の挿入",
+ "summary": "{0}、{1}、{2} を編集しました"
+ },
+ "vs/workbench/contrib/chat/browser/chatContentParts/chatMcpServersInteractionContentPart": {
+ "mcp.skip.link": "スキップしますか?",
+ "mcp.start.multiple": "MCP サーバー {0} に新しいツールがある可能性があり、起動には操作が必要です。[今すぐ開始しますか?]({1})",
+ "mcp.start.single": "MCP サーバー {0} に新しいツールがある可能性があり、起動には操作が必要です。[今すぐ開始しますか?]({1})",
+ "mcp.starting": "{0} を開始しています...",
+ "mcp.starting.servers": "MCP サーバー {0} を起動しています...",
+ "mcp.working.mcp": "MCP 拡張機能をアクティブ化しています..."
+ },
+ "vs/workbench/contrib/chat/browser/chatContentParts/chatMultiDiffContentPart": {
+ "chatEditingSession.fileCounts": "{0} 行が追加され、{1} 行が削除されました",
+ "chatMultiDiff.manyFiles": "{0} 個のファイルが変更されました",
+ "chatMultiDiff.oneFile": "1 個のファイルが変更されました",
+ "chatMultiDiff.openAllChanges": "変更を開く",
+ "chatMultiDiffList": "ファイルの変更"
+ },
+ "vs/workbench/contrib/chat/browser/chatContentParts/chatProgressContentPart": {
+ "chat.autoapprove.lmServicePerTool.profile": "このプロフィールに関して自動承認済み",
+ "chat.autoapprove.lmServicePerTool.session": "このセッションに関して自動承認済み",
+ "chat.autoapprove.lmServicePerTool.workspace": "このワークスペースについて自動承認済み",
+ "chat.autoapprove.setting": "{0} によって自動承認されました",
+ "edit": "編集",
+ "toolCallUnresponsive": "ツール '{0}' の応答を待っています...",
+ "workingMessage": "作業中..."
+ },
+ "vs/workbench/contrib/chat/browser/chatContentParts/chatPullRequestContentPart": {
+ "chatPullRequest.seeMore": "表示を増やす"
+ },
+ "vs/workbench/contrib/chat/browser/chatContentParts/chatQuotaExceededPart": {
+ "clickToContinue": "クリックして再試行",
+ "enableAdditionalUsage": "有料プレミアム要求の管理",
+ "upgradeToCopilotPro": "GitHub Copilot Pro へのアップグレード",
+ "waitWarning": "変更が有効になるまでに数分かかる場合があります。"
+ },
+ "vs/workbench/contrib/chat/browser/chatContentParts/chatReferencesContentPart": {
+ "addToChat": "ファイルをチャットに追加",
+ "chatCollapsibleList": "折りたたみ可能なチャット参照リスト",
+ "chatEditingSession.fileCounts": "{0} 行が追加され、{1} 行が削除されました",
+ "copyLink": "リンクのコピー",
+ "setting.hover": "設定 '{0}' を開く",
+ "usedReferencesPlural": "{0} 参照 使用済み",
+ "usedReferencesSingular": "{0} 参照 使用済み"
+ },
+ "vs/workbench/contrib/chat/browser/chatContentParts/chatSuggestNextWidget": {
+ "chat.currentMode": "現在のモード",
+ "chat.proceedFrom": "{0} から続行",
+ "chat.suggestNext.item": "{0}"
+ },
+ "vs/workbench/contrib/chat/browser/chatContentParts/chatTextEditContentPart": {
+ "edits0": "変更が中止されました。",
+ "editsSummary": "変更を行いました。"
+ },
+ "vs/workbench/contrib/chat/browser/chatContentParts/chatThinkingContentPart": {
+ "chat.thinking.fixed.done.generic": "数秒間、考察します",
+ "chat.thinking.fixed.done.withHeader": "{0}{1}",
+ "chat.thinking.fixed.progress.withHeader": "考え中: {0}",
+ "chat.thinking.header": "思考中..."
+ },
+ "vs/workbench/contrib/chat/browser/chatContentParts/chatTodoListWidget": {
+ "chat.todoList.clearButton": "すべての Todo をクリアする",
+ "chat.todoList.clearButton.disabled": "タスクが進行している間は ToDo をクリアできません",
+ "chat.todoList.collapseButton": "Todo を折りたたむ",
+ "chat.todoList.currentTask": "{0} ({1}/{2})",
+ "chat.todoList.expandButton": "Todo を展開",
+ "chat.todoList.item": "{0}、{1}",
+ "chat.todoList.itemWithDescription": "{0}、{1}、{2}",
+ "chat.todoList.status.completed": "完了済み",
+ "chat.todoList.status.inProgress": "実行中",
+ "chat.todoList.status.notStarted": "未開始",
+ "chat.todoList.title": "Todos",
+ "chat.todoList.titleWithCount": "Todo ({0}/{1})",
+ "chatTodoList": "チャットの Todo リスト"
+ },
+ "vs/workbench/contrib/chat/browser/chatContentParts/chatToolInputOutputContentPart": {
+ "chat.input": "入力",
+ "chat.output": "出力"
+ },
+ "vs/workbench/contrib/chat/browser/chatContentParts/chatToolOutputContentSubPart": {
+ "chat.saveResources": "名前を付けて保存...",
+ "chat.saveResources.error": "{0} を保存できませんでした: {1}",
+ "chat.saveResources.progress": "リソースを保存しています...",
+ "chat.saveResources.reveal": "{0} に保存されたリソース",
+ "chat.saveResources.title": "リソースを保存するフォルダーを選択します"
+ },
+ "vs/workbench/contrib/chat/browser/chatContentParts/chatTreeContentPart": {
+ "treeAriaLabel": "ファイル ツリー"
+ },
+ "vs/workbench/contrib/chat/browser/chatContentParts/toolInvocationParts/abstractToolConfirmationSubPart": {
+ "skip": "スキップ"
+ },
+ "vs/workbench/contrib/chat/browser/chatContentParts/toolInvocationParts/chatExtensionsInstallToolSubPart": {
+ "allow": "許可",
+ "cancel": "キャンセル",
+ "installExtensions": "拡張機能のインストール",
+ "installExtensionsConfirmation": "拡張機能の [インストール] ボタンをクリックし、完了したら [許可] をクリックします。"
+ },
+ "vs/workbench/contrib/chat/browser/chatContentParts/toolInvocationParts/chatInputOutputMarkdownProgressPart": {
+ "chat.autoapprove.lmServicePerTool.profile": "このプロフィールに関して自動承認済み",
+ "chat.autoapprove.lmServicePerTool.session": "このセッションに関して自動承認済み",
+ "chat.autoapprove.lmServicePerTool.workspace": "このワークスペースについて自動承認済み",
+ "chat.autoapprove.setting": "{0} によって自動承認されました",
+ "edit": "編集"
+ },
+ "vs/workbench/contrib/chat/browser/chatContentParts/toolInvocationParts/chatTerminalToolConfirmationSubPart": {
+ "autoApprove.button.enable": "有効にする",
+ "autoApprove.enable": "自動承認を有効にする...",
+ "autoApprove.markdown": "これにより、構成可能なコマンドのサブセットをターミナルで自律的に実行できるようになります。これは、*ベスト エフォート保護* を提供し、エージェントが悪意のある動作をしていないと想定しています。",
+ "autoApprove.markdown2": "潜在的なリスクとその回避方法について説明します。",
+ "autoApprove.title": "ターミナルの自動承認を有効にしますか?",
+ "newRule": "自動承認ルール {0} が追加されました",
+ "newRule.plural": "自動承認ルール {0} が追加されました",
+ "ruleTooltip": "設定でルールを表示する",
+ "sessionApproval": "すべてのコマンドがこのセッションに対して自動的に承認されます",
+ "sessionApproval.disable": "無効にする",
+ "skip.detail": "このコマンドを実行せずに続行",
+ "tool.allow": "許可",
+ "tool.skip": "スキップ"
+ },
+ "vs/workbench/contrib/chat/browser/chatContentParts/toolInvocationParts/chatTerminalToolProgressPart": {
+ "chat.focusMostRecentTerminal": "チャット: 最新のターミナルにフォーカス",
+ "chat.focusMostRecentTerminalOutput": "チャット: 最新のターミナル出力にフォーカス",
+ "chat.terminalOutputEmpty": "コマンドによって出力が生成されませんでした。",
+ "chat.terminalOutputTruncated": "出力は最初の {0} 行に切り詰められました。",
+ "chatTerminalOutputAccessibleViewHeader": "コマンド: {0}",
+ "chatTerminalOutputAriaLabel": "{0} のターミナル出力",
+ "focusTerminal": "ターミナルにフォーカス",
+ "hideTerminalOutput": "出力の非表示",
+ "showTerminal": "ターミナルの表示とフォーカス",
+ "showTerminalOutput": "出力の表示",
+ "terminalToolCommand": "{0}"
+ },
+ "vs/workbench/contrib/chat/browser/chatContentParts/toolInvocationParts/chatToolConfirmationSubPart": {
+ "allow": "許可",
+ "allowReview": "許可して確認する",
+ "allowSkip": "許可して結果の確認をスキップする",
+ "chat.input": "入力",
+ "seeMore": "さらに表示",
+ "showMore": "表示数を増やす",
+ "skip.detail": "このツールを実行せずに続行する"
+ },
+ "vs/workbench/contrib/chat/browser/chatContentParts/toolInvocationParts/chatToolOutputPart": {
+ "chat.toolOutputError": "ツール出力のレンダリングでエラーが発生しました",
+ "loading": "ツールの出力をレンダリングしています..."
+ },
+ "vs/workbench/contrib/chat/browser/chatContentParts/toolInvocationParts/chatToolPostExecuteConfirmationPart": {
+ "allow": "許可",
+ "approveToolResult": "ツールの結果の承認",
+ "noDisplayableResults": "表示可能な結果はありません",
+ "noResults": "表示できる結果がありません",
+ "skip.post": "結果のスキップ"
+ },
+ "vs/workbench/contrib/chat/browser/chatContext.contribution": {
+ "chatContextExtPoint": "チャット ウィジェットにチャット コンテキストの統合を提供します。",
+ "chatContextExtPoint.icon": "このチャット コンテキスト項目に関連付けられているアイコン。",
+ "chatContextExtPoint.id": "このサーバーの一意識別子。",
+ "chatContextExtPoint.title": "メニューでの表示に使用される、この項目のユーザー フレンドリ名。"
+ },
+ "vs/workbench/contrib/chat/browser/chatDragAndDrop": {
+ "attacAsContext": "{0} をコンテキストとしてアタッチする",
+ "dragAndDroppedImageName": "URL からの画像",
+ "file": "ファイル",
+ "folder": "フォルダー",
+ "image": "画像",
+ "notebookOutput": "出力",
+ "problem": "問題",
+ "scmHistoryItem": "変更",
+ "symbol": "シンボル",
+ "url": "URL"
+ },
+ "vs/workbench/contrib/chat/browser/chatEditing/chatEditingActions": {
+ "accept": "保持",
+ "accept.file": "保持",
+ "acceptAllEdits": "すべての編集内容を保持",
+ "addFilesFromReferences": "参照からファイルを追加",
+ "chat.editRequests.label": "要求の編集",
+ "chat.editing.discardAll.confirmation.manyFiles": "これにより、{0} 個のファイルで行われた変更が元に戻されます。続行しますか?",
+ "chat.editing.discardAll.confirmation.oneFile": "これにより、{0} で行われた変更が元に戻されます。続行しますか?",
+ "chat.editing.discardAll.confirmation.primaryButton": "はい",
+ "chat.editing.discardAll.confirmation.title": "すべての編集を元に戻しますか?",
+ "chat.openFileUpdatedBySnapshot.label": "ファイルを開く",
+ "chat.openSnapshot.label": "ファイル スナップショットを開く",
+ "chat.remove.confirmation.checkbox": "今後は確認しない",
+ "chat.remove.confirmation.message2": "これを行うと、後続のすべての要求が削除され、{0} に対して行われた編集が元に戻されます。続行しますか?",
+ "chat.remove.confirmation.multipleEdits.message": "これを行うと、後続のすべての要求が削除され、作業セット内の {0} 個のファイルに対して行われた編集が元に戻されます。続行しますか?",
+ "chat.remove.confirmation.primaryButton": "はい",
+ "chat.remove.confirmation.title": "{0} の編集を元に戻しますか?",
+ "chat.removeLast.confirmation.message2": "これを行うと、最後の要求が削除され、{0} に対して行われた編集が元に戻されます。続行しますか?",
+ "chat.removeLast.confirmation.multipleEdits.message": "これを行うと、最後の要求が削除され、作業セット内の {0} 個のファイルに対して行われた編集が元に戻されます。続行しますか?",
+ "chat.removeLast.confirmation.title": "最後の編集操作を元に戻しますか?",
+ "chat.restoreCheckpoint.label": "チェックポイントの復元",
+ "chat.restoreCheckpoint.tooltip": "ワークスペースとチャットをこの時点に復元します",
+ "chat.restoreLastCheckpoint.label": "最後のチェックポイントに復元",
+ "chat.undoEdits.label": "要求を元に戻す",
+ "chatEditing.snapshot": "{0} (スナップショット)",
+ "chatEditing.viewChanges": "すべての編集を表示",
+ "chatEditing.viewPreviousEdits": "以前の編集内容を表示",
+ "discard": "元に戻す",
+ "discard.file": "元に戻す",
+ "discardAllEdits": "すべての編集を元に戻す",
+ "open.fileInDiff": "変更内容を差分エディターで開く"
+ },
+ "vs/workbench/contrib/chat/browser/chatEditing/chatEditingCodeEditorIntegration": {
+ "diff.generic": "{0} (チャットからの変更)"
+ },
+ "vs/workbench/contrib/chat/browser/chatEditing/chatEditingEditorActions": {
+ "accept": "チャットの編集を保持する",
+ "accept2": "保持",
+ "accept3": "このファイルでチャットの編集を保持する",
+ "accept4": "すべての編集内容を保持",
+ "acceptAllEdits": "すべてのチャット編集を保持する",
+ "acceptAllEditsTooltip": "このセッションのすべてのチャット編集を保持する",
+ "acceptHunk": "この変更を保持する",
+ "acceptHunkShort": "保持",
+ "accessibleDiff": "チャット編集のアクセシブル差分ビューを表示する",
+ "diff": "チャット編集の差分エディターの切り替え",
+ "discard": "チャットの編集を元に戻す",
+ "discard2": "元に戻す",
+ "discard3": "このファイルのチャット編集を元に戻す",
+ "discard4": "すべての編集を元に戻す",
+ "label": "ナビゲーションの状態",
+ "next": "次のチャット編集に移動",
+ "prev": "前のチャット編集に移動",
+ "review": "レビュー",
+ "undo": "この変更を元に戻す",
+ "undoShort": "元に戻す"
+ },
+ "vs/workbench/contrib/chat/browser/chatEditing/chatEditingEditorContextKeys": {
+ "chat.ctxCursorInChangeRange": "カーソルは、チャット編集による変更の範囲内にあります。",
+ "chat.ctxEditSessionIsGlobal": "現在のエディターはグローバル編集セッションの一部です",
+ "chat.ctxHasRequestInProgress": "現在のエディターには、まだ進行中の編集セッションのファイルが表示されています",
+ "chat.ctxReviewModeEnabled": "チャットの変更のレビュー モードが有効になっています",
+ "chat.hasEditorModifications": "現在のエディターにはチャットでの変更が含まれています",
+ "chat.isCurrentlyBeingModified": "現在のエディターは現在変更中です",
+ "chatEdits.requestCount": "このエディターの編集セッションのターン数"
+ },
+ "vs/workbench/contrib/chat/browser/chatEditing/chatEditingEditorOverlay": {
+ "0Of0": "—",
+ "nOfM": "{0}/{1}",
+ "tooltip": "{0} ({1})",
+ "tooltip_11": "1 個のファイル内の 1 件の変更",
+ "tooltip_1n": "{0} 個のファイル内の 1 件の変更",
+ "tooltip_busy": "{0} - 作業中...",
+ "tooltip_n1": "1 個のファイル内の {0} 件の変更",
+ "tooltip_nm": "{1} 個のファイル内の {0} 件の変更",
+ "working": "作業中..."
+ },
+ "vs/workbench/contrib/chat/browser/chatEditing/chatEditingModifiedDocumentEntry": {
+ "chatEditing1": "チャットの編集: '{0}'",
+ "chatEditing2": "チャットの編集",
+ "default": "チャットの編集"
+ },
+ "vs/workbench/contrib/chat/browser/chatEditing/chatEditingModifiedFileEntry": {
+ "editorSelectionBackground": "ミニマップ内の保留中の編集領域の色"
+ },
+ "vs/workbench/contrib/chat/browser/chatEditing/chatEditingModifiedNotebookEntry": {
+ "chatNotebookEdit1": "チャットの編集: '{0}'",
+ "chatNotebookEdit2": "チャットの編集"
+ },
+ "vs/workbench/contrib/chat/browser/chatEditing/chatEditingServiceImpl": {
+ "chat": "チャット編集",
+ "chatEditing.modified2": "チャットからの保留中の変更",
+ "join.chatEditingSession": "チャットの編集履歴を保存しています"
+ },
+ "vs/workbench/contrib/chat/browser/chatEditing/chatEditingSession": {
+ "multiDiffEditorInput.name": "おすすめの編集"
+ },
+ "vs/workbench/contrib/chat/browser/chatEditing/notebook/chatEditingNotebookEditorIntegration": {
+ "diff.generic": "{0} (チャットからの変更)"
+ },
+ "vs/workbench/contrib/chat/browser/chatEditing/simpleBrowserEditorOverlay": {
+ "cancelSelection": "クリックして選択を取り消します。",
+ "cancelSelectionLabel": "キャンセル",
+ "chat.configureElements": "送信された添付ファイルの構成",
+ "chat.expandOverlay": "オーバーレイを展開する",
+ "chat.hideOverlay": "オーバーレイを折りたたむ",
+ "chat.nextSelection": "もう一度選択",
+ "connectingWebviewElement": "Web ビューに接続しています...",
+ "continuousSelectionDropdown": "連続選択",
+ "elementCancelMessage": "選択が取り消されました",
+ "elementSelectionComplete": "要素がチャットに追加されました",
+ "elementSelectionInProgress": "要素を選択しています...",
+ "elementSelectionMessage": "チャットに要素を追加してください",
+ "finishSelectionLabel": "完了",
+ "reopenErrorWebviewElement": "プレビューをもう一度開いてください。",
+ "selectAnElement": "クリックして要素を選択します。",
+ "selectElementDropdown": "要素を選択する",
+ "startSelection": "開始"
+ },
+ "vs/workbench/contrib/chat/browser/chatEditor": {
+ "chatEditor.loadingSession": "読み込んでいます..."
+ },
+ "vs/workbench/contrib/chat/browser/chatEditorInput": {
+ "chat.startEditing.confirmation.acceptEdits": "維持して継続",
+ "chat.startEditing.confirmation.discardEdits": "元に戻して続行",
+ "chat.startEditing.confirmation.pending.message.2": "{0} 個のファイルに対する保留中の編集を保持しますか?",
+ "chat.startEditing.confirmation.pending.message.default": "チャット エディターを閉じると、現在の編集セッションが終了します。",
+ "chat.startEditing.confirmation.pending.message.default1": "新しいチャットを開始すると、現在の編集セッションが終了します。",
+ "chat.startEditing.confirmation.title": "新しいチャットを開始しますか?",
+ "chatEditorConfirmTitle": "チャット エディターを閉じる",
+ "chatEditorLabelIcon": "チャット エディター ラベルのアイコン。",
+ "chatEditorName": "チャット"
+ },
+ "vs/workbench/contrib/chat/browser/chatFollowups": {
+ "followUpAriaLabel": "フォローアップの質問: {0}"
+ },
+ "vs/workbench/contrib/chat/browser/chatInlineAnchorWidget": {
+ "actions.attach.label": "ファイルをチャットに追加",
+ "actions.copy.label": "コピー",
+ "actions.goToDecl.label": "定義へ移動",
+ "actions.openToSide.label": "横に並べて開く",
+ "goToImplementations.label": "実装へ移動",
+ "goToReferences.label": "参照へ移動",
+ "goToTypeDefinitions.label": "型定義へ移動",
+ "miGotoDefinition": "定義に移動(&&D)",
+ "miGotoImplementations": "実装に移動(&&I)",
+ "miGotoReference": "参照へ移動(&&R)",
+ "miGotoTypeDefinition": "型定義へ移動(&&T)"
+ },
+ "vs/workbench/contrib/chat/browser/chatInputPart": {
+ "actions.chat.accessibiltyHelp": "チャット入力 {0}{1} Enter キーを押して要求を送信します。チャット アクセシビリティのヘルプには {2} を使用します。",
+ "chatAttachFiles": "要求に追加するファイルとコンテキストを検索します",
+ "chatEditingSession.addSuggested": "提案の追加",
+ "chatEditingSession.addSuggestion": "提案 {0} の追加",
+ "chatEditingSession.ariaLabelWithCounts": "{0}、{1} 行が追加され、 {2} 行が削除されました",
+ "chatEditingSession.manyFiles.1": "{0} 個のファイルが変更されました",
+ "chatEditingSession.oneFile.1": "1 個のファイルが変更されました",
+ "chatEditingSession.toggleWorkingSet": "変更されたファイルを切り替えます。",
+ "chatInput.accessibilityHelp": "チャット入力 {0}{1}。",
+ "chatInput.accessibilityHelpNoKb": "チャット入力 {0}{1} Enter キーを押して要求を送信します。詳細については、チャット アクセシビリティのヘルプ コマンドを使用します。",
+ "chatInput.mode.agent": "(エージェント) ワークスペース内のファイルを編集します。",
+ "chatInput.mode.ask": "(質問) 質問を入力するか、トピックを表示するには / を入力します。",
+ "chatInput.mode.custom": "({0})、{1}",
+ "chatInput.mode.edit": "(編集) ワークスペース内のファイルを編集します。",
+ "chatInput.model": "、{0}。",
+ "suggeste.title": "{0} - {1}"
+ },
+ "vs/workbench/contrib/chat/browser/chatListRenderer": {
+ "chatConfirmationAction": "\"{0}\" を選択済み",
+ "checkpointRestore": "チェックポイントが復元されました",
+ "didNotFollowInstructions": "指示に従わなかった",
+ "incompleteCode": "不完全なコード",
+ "incorrectCode": "正しくないコードが提案された",
+ "missingContext": "コンテキストが欠落している",
+ "offensiveOrUnsafe": "不快感を与える、または安全でない",
+ "other": "その他",
+ "poorlyWrittenOrFormatted": "不適切な書き込みまたは書式設定",
+ "refusedAValidRequest": "有効な要求を拒否した",
+ "renderFailMsg": "コンテンツを表示できませんでした",
+ "reportIssue": "問題の報告",
+ "requestMarkdownPartTitle": "クリックして編集",
+ "usedAgent": "[[(rerun without)]]",
+ "usedAgentSlashCommand": "{0} を使用 [[(なしで再実行)]]",
+ "working": "作業中"
+ },
+ "vs/workbench/contrib/chat/browser/chatManagement/chatManagement.contribution": {
+ "chatManagementEditor": "チャット管理エディター",
+ "models.clearResults": "モデルの検索結果をクリアする",
+ "modelsManagementEditor": "モデル管理エディター",
+ "openAiManagement": "言語モデルの管理"
+ },
+ "vs/workbench/contrib/chat/browser/chatManagement/chatManagementEditor": {
+ "chatManagementSashBorder": "チャット管理エディターの分割ビュー サッシュの枠線の色。",
+ "enableAIFeatures": "AI 機能を使用する",
+ "enableCopilotButton": "AI 機能を有効にする",
+ "enableMoreAIFeatures": "AI 機能をさらに有効化する",
+ "plan.businessName": "Copilot Business",
+ "plan.copilot": "Copilot",
+ "plan.enterpriseName": "Copilot Enterprise",
+ "plan.free": "無料",
+ "plan.freeName": "Copilot Free",
+ "plan.models": "モデル",
+ "plan.proName": "Copilot Pro",
+ "plan.proPlusName": "Copilot Pro+",
+ "plan.upgradeToPro": "Copilot Pro にアップグレード",
+ "plan.upgradeToProPlus": "Copilot Pro+ にアップグレード",
+ "plan.usage": "使用状況",
+ "sectionsListAriaLabel": "セクション",
+ "signInToUseAIFeatures": "サインインして AI 機能を使用する",
+ "upgradeToCopilotPro": "Copilot Pro にアップグレード"
+ },
+ "vs/workbench/contrib/chat/browser/chatManagement/chatManagementEditorInput": {
+ "aiManagementEditorInputName": "Copilot の管理",
+ "aiManagementEditorLabelIcon": "AI 管理エディター ラベルのアイコン。",
+ "modelsManagementEditorInputName": "言語モデル",
+ "modelsManagementEditorLabelIcon": "モデル管理エディター ラベルのアイコン。"
+ },
+ "vs/workbench/contrib/chat/browser/chatManagement/chatModelsWidget": {
+ "Search.FullTextSearchPlaceholder": "検索するテキストを入力...",
+ "capabilities": "機能",
+ "capability.agent": "エージェント モード",
+ "capability.tools": "ツール",
+ "capability.vision": "ビジョン",
+ "clearSearch": "検索のクリア",
+ "collapse": "折りたたむ",
+ "cost": "乗数",
+ "expand": "展開",
+ "filter": "フィルター",
+ "filter.hidden": "非表示",
+ "filter.visible": "表示",
+ "filterByCapability": "{0} でフィルター",
+ "filterByProvider": "{0} でフィルター",
+ "filterByVisible": "{0} でフィルター",
+ "model.ariaLabel": "{1} からの {0}",
+ "modelName": "名前",
+ "models.agentMode": "エージェント モード",
+ "models.capabilities": "機能",
+ "models.contextSize": "コンテキスト サイズ",
+ "models.cost": "乗数",
+ "models.enableModelProvider": "モデルを追加...",
+ "models.hidden": "チャット モデル ピッカーで表示する",
+ "models.hide": "非表示にする",
+ "models.input": "入力",
+ "models.manageProvider": "{0} を管理...",
+ "models.output": "出力",
+ "models.show": "表示",
+ "models.toolCalling": "ツール",
+ "models.tools": "ツール",
+ "models.userSelectable": "このモデルはチャット モデル ピッカーで非表示になっています",
+ "models.visible": "チャット モデル ピッカーで非表示にする",
+ "models.vision": "ビジョン",
+ "modelsTable.ariaLabel": "言語モデル",
+ "tokenLimits": "コンテキスト サイズ",
+ "vendor.ariaLabel": "{0} プロバイダー"
+ },
+ "vs/workbench/contrib/chat/browser/chatManagement/chatUsageWidget": {
+ "chatsLabel": "チャット メッセージ",
+ "completionsLabel": "インライン候補",
+ "plan.additionalPaidEnabled": "追加の有料プレミアム要求が有効になっています。",
+ "plan.allowanceResets": "上限により、{0} がリセットされます。",
+ "plan.chatMessages": "チャット メッセージ",
+ "plan.included": "包含",
+ "plan.inlineSuggestions": "インライン候補",
+ "plan.premiumRequests": "Premium 要求",
+ "quotaLimited": "制限あり"
+ },
+ "vs/workbench/contrib/chat/browser/chatOutputItemRenderer": {
+ "chatOutputRenderer.mimeTypes": "このレンダラーが処理できる MIME の種類",
+ "chatOutputRenderer.viewType": "レンダラーの一意識別子。",
+ "vscode.extension.contributes.chatOutputRenderer": "チャット出力の特定の MIME の種類にレンダラーを提供します"
+ },
+ "vs/workbench/contrib/chat/browser/chatParticipant.contribution": {
+ "chat.viewContainer.label": "チャット",
+ "chatCommand": "このコマンドが UI で参照されるときの短い名前。たとえば、問題を修正するコマンドやコードを説明するコマンドの場合は、'fix' や 'explain' などです。この名前は、参加者が提供するコマンドの中で一意である必要があります。",
+ "chatCommandDescription": "このコマンドの説明。",
+ "chatCommandDisambiguation": "ユーザーの質問をこのチャット コマンドに自動的にルーティングするのに役立つメタデータ。",
+ "chatCommandDisambiguationCategory": "このカテゴリの詳細な名前 (例: `workspace_questions`、`web_questions`)。",
+ "chatCommandDisambiguationDescription": "このチャット コマンドに適した質問の種類の詳細な説明。",
+ "chatCommandDisambiguationExamples": "このチャット コマンドに適した代表的な質問例の一覧。",
+ "chatCommandSampleRequest": "ユーザーが '/help' でこのコマンドをクリックすると、このテキストがこの参加者に送信されます。",
+ "chatCommandSticky": "コマンドを呼び出すと、チャットが永続モードにになります。ここで、コマンドは次のメッセージのチャット入力に自動的に追加されます。",
+ "chatCommandWhen": "このコマンドを有効にするために true にする必要がある条件。",
+ "chatCommandsDescription": "このチャット参加者が使用できるコマンド。ユーザーは '/' で呼び出すことができます。",
+ "chatFailErrorMessage": "インストールされている Copilot チャット拡張機能のバージョンにこのバージョンの {0} との互換性がないため、チャットを読み込めませんでした。Copilot チャット拡張機能が最新であることをご確認ください。",
+ "chatParticipantDescription": "UI に表示される、このチャット参加者の説明。",
+ "chatParticipantDisambiguation": "ユーザーの質問をこのチャット参加者に自動的にルーティングするのに役立つメタデータ。",
+ "chatParticipantDisambiguationCategory": "このカテゴリの詳細な名前 (例: `workspace_questions`、`web_questions`)。",
+ "chatParticipantDisambiguationDescription": "このチャット参加者に適した質問の種類の詳細な説明。",
+ "chatParticipantDisambiguationExamples": "このチャット参加者に適した代表的な質問例の一覧。",
+ "chatParticipantFullName": "このチャット参加者の完全な名前。この参加者からの応答のラベルとして表示されます。指定しない場合は、{0} が使用されます。",
+ "chatParticipantId": "このチャット参加者の一意の ID。",
+ "chatParticipantName": "このチャット参加者のユーザー向けの名前。ユーザーはこの名前と一緒に '@' を使用して参加者を呼び出します。名前には空白を含めないでください。",
+ "chatParticipantWhen": "この参加者を有効にするには TRUE にする必要がある条件。",
+ "chatParticipants": "チャット参加者",
+ "chatSampleRequest": "ユーザーが '/help' でこの参加者をクリックすると、このテキストがこの参加者に送信されます。",
+ "miToggleChat": "チャット(&&C)",
+ "participantCommands": "コマンド",
+ "participantDescription": "説明",
+ "participantFullName": "フル ネーム",
+ "participantName": "名前",
+ "showExtension": "拡張機能の表示",
+ "vscode.extension.contributes.chatParticipant": "チャット参加者を投稿する"
+ },
+ "vs/workbench/contrib/chat/browser/chatPasteProviders": {
+ "pastedAttachment.multiple": "{0}、他 {1} 個",
+ "pastedAttachment.multipleLines": "{0} 行",
+ "pastedAttachment.oneLine": "1 行",
+ "pastedChatAttachments": "プロンプトと添付ファイルの挿入",
+ "pastedCodeAttachment": "貼り付けられたコードの添付ファイル",
+ "pastedImageAttachment": "貼り付けられた画像の添付ファイル",
+ "pastedImageName": "貼り付けられた画像"
+ },
+ "vs/workbench/contrib/chat/browser/chatQuick": {
+ "termsDisclaimer": "{0} Copilot を続行することにより、{1} の [使用条件]({2}) および [プライバシーに関する声明]({3}) に同意したものと見なされます"
+ },
+ "vs/workbench/contrib/chat/browser/chatResponseAccessibleView": {
+ "toolPostApprovalA11yView": "{0} の結果を承認しますか?結果:"
+ },
+ "vs/workbench/contrib/chat/browser/chatSessions.contribution": {
+ "chatCommand": "このコマンドが UI で参照されるときの短い名前。たとえば、問題を修正するコマンドやコードを説明するコマンドの場合は、'fix' や 'explain' などです。この名前は、参加者が提供するコマンドの中で一意である必要があります。",
+ "chatCommandDescription": "このコマンドの説明。",
+ "chatCommandWhen": "このコマンドを有効にするために true にする必要がある条件。",
+ "chatCommandsDescription": "このチャット セッションで使用できるコマンド。ユーザーは '/' で呼び出すことができます。",
+ "chatEditorContributionName": "{0}",
+ "chatSessionsExtPoint": "チャット ウィジェットにチャット セッションの統合を提供します。",
+ "chatSessionsExtPoint.alternativeIds": "下位互換性のための代替識別子。",
+ "chatSessionsExtPoint.canDelegate": "委任がサポートされているかどうか。既定値は true です。",
+ "chatSessionsExtPoint.capabilities": "このチャット セッションのオプション機能。",
+ "chatSessionsExtPoint.chatSessionType": "チャット セッションの種類の一意識別子。",
+ "chatSessionsExtPoint.description": "メニューやヒントで使用するチャット セッションの説明。",
+ "chatSessionsExtPoint.displayName": "メニューでの表示に使用される、この項目の長い名前。",
+ "chatSessionsExtPoint.icon": "チャット セッション エディター タブのアイコン識別子 (codicon ID)。例: \"$(github)\"、\"$(cloud)\"。",
+ "chatSessionsExtPoint.inputPlaceholder": "このセッションの種類のチャット入力ボックスに表示するプレースホルダー テキスト。",
+ "chatSessionsExtPoint.name": "動的に登録されたチャット参加者の名前 (例: @agent)。空白を含めないでください。",
+ "chatSessionsExtPoint.order": "この項目を表示する順序。",
+ "chatSessionsExtPoint.supportsFileAttachments": "このチャット セッションでファイルまたはファイル参照の添付がサポートされているかどうか。",
+ "chatSessionsExtPoint.supportsImageAttachments": "このチャット セッションで画像の添付がサポートされているかどうか。",
+ "chatSessionsExtPoint.supportsInstructionAttachments": "このチャット セッションで指示の添付がサポートされているかどうか。",
+ "chatSessionsExtPoint.supportsMCPAttachments": "このチャット セッションで MCP リソースの添付がサポートされているかどうか。",
+ "chatSessionsExtPoint.supportsProblemAttachments": "このチャット セッションで問題の添付がサポートされているかどうか。",
+ "chatSessionsExtPoint.supportsSearchResultAttachments": "このチャット セッションで検索結果の添付がサポートされているかどうか。",
+ "chatSessionsExtPoint.supportsSourceControlAttachments": "このチャット セッションでソース管理の変更の添付がサポートされているかどうか。",
+ "chatSessionsExtPoint.supportsSymbolAttachments": "このチャット セッションでシンボルの添付がサポートされているかどうか。",
+ "chatSessionsExtPoint.supportsToolAttachments": "このチャット セッションでツールまたはツール参照の添付がサポートされているかどうか。",
+ "chatSessionsExtPoint.welcomeMessage": "このセッションの種類のチャット ウェルカム ビューに表示するメッセージ テキスト (Markdown をサポート)。",
+ "chatSessionsExtPoint.welcomeTips": "このセッションの種類のチャット ウェルカム ビューに表示するヒント テキスト (Markdown とテーマ アイコンをサポート)。",
+ "chatSessionsExtPoint.welcomeTitle": "このセッションの種類のチャット ウェルカム ビューに表示するタイトル テキスト。",
+ "chatSessionsExtPoint.when": "このアイテムを表示するために満たす必要がある条件。",
+ "icon.dark": "暗いテーマを使用した場合のアイコンのパス",
+ "icon.light": "明るいテーマを使用した場合のアイコンのパス",
+ "interactiveSession.chatSessionSubMenuTitle": "チャット セッションの作成",
+ "interactiveSession.openNewSessionEditor": "新しい {0}"
+ },
+ "vs/workbench/contrib/chat/browser/chatSessions/chatSessionPickerActionItem": {
+ "chat.sessionPicker.label": "オプションの選択"
+ },
+ "vs/workbench/contrib/chat/browser/chatSessions/localChatSessionsProvider": {
+ "chat.sessions.description.finished": "Finished",
+ "chat.sessions.description.waitingForConfirmation": "Waiting for confirmation:",
+ "chat.sessions.description.working": "Working..."
+ },
+ "vs/workbench/contrib/chat/browser/chatSessions/view/chatSessionsView": {
+ "chat.agent.sessions": "エージェント セッション",
+ "chat.agent.sessions.title": "エージェント セッション",
+ "chat.sessions.gettingStarted": "はじめに",
+ "chatSessions.noResults": "ローカル チャット エージェント セッションはありません\r\n[エージェント セッションの開始](コマンド: {0})"
+ },
+ "vs/workbench/contrib/chat/browser/chatSessions/view/sessionsTreeRenderer": {
+ "chat.sessions.archivedSessions": "履歴",
+ "chat.sessions.groupNode.multiple": "{0} 個のセッション",
+ "chat.sessions.groupNode.single": "1 セッション",
+ "chat.sessions.lastActivity": "最後のアクティビティ: {0}",
+ "chatSessionInputAriaLabel": "セッション名を入力します。Enter キーを押して確認するか、Esc キーを押して取り消します。"
+ },
+ "vs/workbench/contrib/chat/browser/chatSessions/view/sessionsViewPane": {
+ "chatSession.selectOption": "その他...",
+ "chatSessions": "チャット セッション",
+ "chatSessions.dragLabel": "{0} 件のエージェント セッション",
+ "chatSessions.installExtensions": "チャット拡張機能のインストール",
+ "chatSessions.learnMoreGHCodingAgent": "GitHub Copilot コーディング エージェントに関する詳細情報",
+ "chatSessions.loading": "チャット セッションを読み込んでいます...",
+ "chatSessions.refreshing": "チャット セッションを更新しています..."
+ },
+ "vs/workbench/contrib/chat/browser/chatSetup": {
+ "chat.category": "チャット",
+ "chatSetupError": "チャットのセットアップに失敗しました。",
+ "chatTookLongWarning": "チャットの準備に時間がかかりすぎました。{0} にサインインしていること、および拡張機能 `{1}` がインストールされ、有効になっていることを確認してください。",
+ "chatTookLongWarningAnonymous": "チャットの準備に時間がかかりすぎました。拡張機能 '{0}' がインストールされ、有効になっていることを確認してください。",
+ "chatWorkspaceTrust": "現在、AI 機能は信頼されたワークスペースでのみサポートされています。",
+ "continueWith": "{0} で続行する",
+ "copilotUnavailableWarning": "応答を取得できませんでした。もう一度お試しください。",
+ "enableMore": "その他の AI 機能を有効にする",
+ "enterpriseInstance": "{0} インスタンスは何ですか?",
+ "enterpriseInstancePlaceholder": "つまり\"octocat\" or \"https://octocat.ghe.com\"...",
+ "explain": "説明",
+ "fix": "修正プログラム",
+ "forceSignIn": "サインインして AI 機能を使用する",
+ "generate": "生成",
+ "generateDocs": "ドキュメントを生成する",
+ "generateTests": "テストを生成する",
+ "hideChatSetup": "AI 機能を非表示にする方法について説明します",
+ "installingChat": "チャットの準備をしています...",
+ "invalidEnterpriseInstance": "有効な {0} インスタンス (\"octocat\" または \"https://octocat.ghe.com\" など) を入力する必要があります",
+ "manageOverages": "GitHub Copilot 超過分の管理",
+ "managePlan": "GitHub Copilot Pro へのアップグレード",
+ "modify": "変更",
+ "restartExtensionHost.reason.disable": "AI 機能を無効にする",
+ "restartExtensionHost.reason.enable": "AI 機能を有効にする",
+ "retry": "再試行",
+ "review": "レビュー",
+ "settingUpCopilotNeeded": "チャットを使用するには、GitHub Copilot を設定し、サインインする必要があります。",
+ "settings": "続行すると、{0} の [使用条件]({1}) および [プライバシーに関する声明]({2}) に同意したものと見なされます。{3} Copilot は、[公開コード]({4}) の提案を表示し、お客様のデータを使用して製品を改善する場合があります。これらの [設定]({5}) はいつでも変更できます。",
+ "settingsAnonymous": "続行すると、{0} の [使用条件]({1}) および [プライバシーに関する声明]({2}) に同意したものと見なされます。",
+ "setupAIButton": "AI 機能を使用する",
+ "setupChatProgress": "チャットの準備をしています...",
+ "setupChatSignIn2": "{0} にサインインしています...",
+ "setupErrorDialog": "チャットのセットアップに失敗しました。もう一度やり直しますか?",
+ "setupToolDisplayName": "新しいワークスペース",
+ "setupToolsDescription": "VS Code で新しいワークスペースをスキャフォールディングします",
+ "signIn": "サインインして AI 機能を使用する",
+ "skipForNow": "今はスキップする",
+ "startUsing": "AI 機能の使用を開始する",
+ "terminalAgentDescription": "ターミナルで何かを行う方法を確認する",
+ "triggerChatSetup": "Copilot で AI 機能を無料で使用する...",
+ "triggerChatSetupFromAccounts": "AI 機能を使用するにはサインインしてください...",
+ "trustNeeded": "チャットを使用するには、このワークスペースを信頼する必要があります。",
+ "unknownSetupError": "チャットの設定中にエラーが発生しました。もう一度やり直しますか?",
+ "unknownSignInError": "{0} にサインインできませんでした。もう一度やり直しますか?",
+ "unknownSignInErrorDetail": "AI 機能を使用するには、サインインする必要があります。",
+ "vscodeAgentDescription": "VS Code に関する質問をする",
+ "waitingChat": "チャットの準備をしています...",
+ "waitingChat2": "チャットの準備がほぼ整いました...",
+ "willResolveTo": "{0} に解決されます",
+ "workspaceAgentDescription": "ワークスペースについて質問する"
+ },
+ "vs/workbench/contrib/chat/browser/chatStatus": {
+ "activateDescription": "AI 機能を使用するために Copilot を設定します。",
+ "activeDescriptionAnonymous": "{0} Copilot を続行することにより、{1} の [使用条件]({2}) および [プライバシーに関する声明]({3}) に同意したものと見なされます",
+ "additionalUsageDisabled": "追加の有料プレミアム要求が無効になっています。",
+ "additionalUsageEnabled": "追加の有料プレミアム要求が有効になっています。",
+ "anonymousTitle": "Copilot の使用",
+ "cancelSnooze": "一時停止の取り消し",
+ "chatAgentSessionsTitle": "エージェント セッション",
+ "chatAndCompletionsQuotaExceededStatus": "クォータに達しました",
+ "chatQuotaExceededStatus": "チャット クォータに達しました",
+ "chatSessionInProgressStatus": "1 件のエージェント セッションが進行中です",
+ "chatSessionsInProgressStatus": "{0} 件のエージェント セッションが進行中です",
+ "chatStatus": "Copilot の状態",
+ "chatStatusAria": "Copilot の状態",
+ "chatsLabel": "チャット メッセージ",
+ "completions.plus5min": "+5 分",
+ "completions.remainingTime": "残り",
+ "completions.snooze5minutes": "インライン候補を 5 分間非表示にする",
+ "completions.snooze5minutesTitle": "候補を 5 分間非表示にする",
+ "completions.snoozeAdditional5minutes": "さらに 5 分間一時停止する",
+ "completions.snoozeTimeDescription": "残りの期間、インライン候補は非表示になります",
+ "completionsDisabledStatus": "インライン候補が無効です",
+ "completionsLabel": "インライン候補",
+ "completionsQuotaExceededStatus": "インライン候補のクォータに達しました",
+ "completionsSnoozedStatus": "インライン候補が一時停止されました",
+ "copilotDisabledStatus": "Copilot が無効です",
+ "enableAIFeatures": "AI 機能を使用する",
+ "enableAdditionalUsage": "有料プレミアム要求の管理",
+ "enableCopilotButton": "AI 機能を有効にする",
+ "enableDescription": "Copilot を有効にして AI 機能を使用します。",
+ "enableMoreAIFeatures": "AI 機能をさらに有効化する",
+ "enableMoreDescription": "サインインすると、Copilot の AI 機能をさらに有効化できます。",
+ "finishSetup": "セットアップの完了",
+ "gaugeBackground": "ゲージの背景色。",
+ "gaugeBorder": "ゲージ境界線の色。",
+ "gaugeErrorBackground": "ゲージ エラーの背景色。",
+ "gaugeErrorForeground": "ゲージ エラーの前景色。",
+ "gaugeForeground": "ゲージの前景色。",
+ "gaugeWarningBackground": "ゲージ警告の背景色。",
+ "gaugeWarningForeground": "ゲージ警告の前景色。",
+ "inProgressChatSession": "$(loading~spin) {0} を処理中です",
+ "inlineSuggestions": "インライン候補",
+ "learnMore": "詳細情報",
+ "limitQuota": "上限は {0} リセットされます。",
+ "notSignedIn": "サインアウト済み",
+ "premiumChatsLabel": "プレミアム要求",
+ "quotaDisplay": "{0}%",
+ "quotaDisplayWithOverage": "+{0} 件の要求",
+ "quotaLabel": "チャットの管理",
+ "quotaLimited": "制限あり",
+ "quotaTooltip": "チャットの管理",
+ "quotaUnlimited": "含まれる",
+ "settings.codeCompletions.allFiles": "すべてのファイル",
+ "settings.codeCompletions.language": "{0}",
+ "settings.nextEditSuggestions": "次の編集提案",
+ "settings.snooze": "再通知",
+ "settingsLabel": "設定",
+ "settingsTooltip": "設定を開く",
+ "signInDescription": "Copilot AI 機能を使用するにはサインインしてください。",
+ "signInToUseAIFeatures": "サインインして AI 機能を使用する",
+ "upgradeToCopilotPro": "GitHub Copilot Pro へのアップグレード",
+ "usageTitle": "Copilot の使用状況",
+ "viewChatSessionsLabel": "エージェント セッションを表示する",
+ "viewChatSessionsTooltip": "エージェント セッションを表示する"
+ },
+ "vs/workbench/contrib/chat/browser/chatWidget": {
+ "agentTitle": "エージェントを使用してビルドする",
+ "chat.history.list": "チャット履歴",
+ "chat.history.showMore": "チャット履歴...",
+ "chat.history.showMoreAriaLabel": "チャット履歴を開く",
+ "chat.history.showMoreHover": "チャット履歴を表示...",
+ "chat.input.placeholder.lockedToAgent": "{0} さんとチャットできます",
+ "chatDescription": "コードについて質問します",
+ "chatDisclaimer": "AI の応答が不正確である可能性があります。",
+ "chatWidget.instructions": "[エージェントの指示の生成]({0}) を使用して、AI をコードベースにオンボードします。",
+ "chatWidget.promptFile.commandLabel": "{0}",
+ "chatWidget.suggestedPrompts.buildWorkspace": "ワークスペースのビルド",
+ "chatWidget.suggestedPrompts.buildWorkspacePrompt": "このワークスペースをビルドするにはどうすればいいですか?",
+ "chatWidget.suggestedPrompts.findConfig": "構成を表示",
+ "chatWidget.suggestedPrompts.findConfigPrompt": "このプロジェクトの構成はどこに定義されていますか?",
+ "chatWidget.suggestedPrompts.gettingStarted": "@vscode に質問してください",
+ "chatWidget.suggestedPrompts.gettingStartedPrompt": "@vscode テーマをライト モードに変更するにはどうすればいいですか?",
+ "chatWidget.suggestedPrompts.newProject": "プロジェクトの作成",
+ "chatWidget.suggestedPrompts.newProjectPrompt": "TypeScript で #new Hello World プロジェクトを作成する",
+ "codingAgentTitle": "{0} に委任する",
+ "copilotCodingAgentMessage": "このチャット セッションは、バックグラウンドで作業が完了した {0} [コーディング エージェント]({1}) に転送されます。",
+ "editsTitle": "コンテキストで編集",
+ "genericCodingAgentMessage": "このチャット セッションは、バックグラウンドで作業が完了した {0} コーディング エージェントに転送されます。",
+ "scrollDownButtonLabel": "下にスクロール",
+ "settings": "{0} Copilot を続行することにより、{1} の [使用条件]({2}) および [プライバシーに関する声明]({3}) に同意したものと見なされます。"
+ },
+ "vs/workbench/contrib/chat/browser/codeBlockPart": {
+ "chat.codeBlock.toolbar": "コード ブロック ツール バー",
+ "chat.codeBlockHelp": "コード ブロック",
+ "chat.codeBlockLabel": "コード ブロック {0}",
+ "chat.codeBlockToolbarLabel": "コード ブロック {0}",
+ "chat.compareCodeBlockLabel": "コードの編集",
+ "chat.edits.1": "[[''{0}'']] に 1 件の変更が適用されました",
+ "chat.edits.N": "[[``{1}``]] に {0} 変更が適用されました",
+ "chat.edits.rejected": "[[``{0}``]] での編集が拒否されました",
+ "interactive.compare.apply.confirm": "元のファイルが変更されました。",
+ "interactive.compare.apply.confirm.detail": "変更を適用しますか?",
+ "modified": "変更済み",
+ "original": "オリジナル",
+ "vulnerabilitiesPlural": "{0} 個の脆弱性",
+ "vulnerabilitiesSingular": "{0} 個の脆弱性"
+ },
+ "vs/workbench/contrib/chat/browser/contrib/chatInputCompletions": {
+ "activeFile": "アクティブ ファイル",
+ "fileEntryDescription": "{0} ({1})",
+ "installLabel": "チャット拡張機能をインストール...",
+ "mcp.prompt.error": "プロンプトの解決中にエラーが発生しました: {0}",
+ "mcp.prompt.image": "プロンプトの画像",
+ "mcp.prompt.resource": "リソースの確認を求める",
+ "tool_source_completion": "{0}: {1}"
+ },
+ "vs/workbench/contrib/chat/browser/contrib/chatInputEditorHover": {
+ "hoverAccessibilityChatAgent": "ここにチャット エージェントのホバー部分があります。"
+ },
+ "vs/workbench/contrib/chat/browser/contrib/chatInputRelatedFilesContrib": {
+ "relatedFile": "{0} (候補)"
+ },
+ "vs/workbench/contrib/chat/browser/contrib/screenshot": {
+ "screenshot": "スクリーンショット"
+ },
+ "vs/workbench/contrib/chat/browser/languageModelToolsConfirmationService": {
+ "allowGlobally": "常に許可",
+ "allowGloballyPost": "確認なしで常に許可する",
+ "allowGloballyPostTooltip": "このツールからの結果を、確認なしで常に送信できるようにします。",
+ "allowGloballyTooltip": "このツールの実行を確認せずに常に許可します。",
+ "allowServerGlobally": "{0} のツールを常に許可する",
+ "allowServerGloballyPost": "{0} のツールを確認なしで常に許可する",
+ "allowServerGloballyPostTooltip": "このサーバーのすべてのツールからの結果を、確認なしで常に送信できるようにします。",
+ "allowServerGloballyTooltip": "このサーバーのすべてのツールを、確認なしで常に実行できるようにします。",
+ "allowServerSession": "このセッションで {0} のツールを許可する",
+ "allowServerSessionPost": "このセッションで {0} のツールを確認なしで許可する",
+ "allowServerSessionPostTooltip": "このサーバーのすべてのツールからの結果を、確認なしでこのセッションで送信できるようにします。",
+ "allowServerSessionTooltip": "このサーバーのすべてのツールを、確認なしでこのセッションで実行できるようにします。",
+ "allowServerWorkspace": "このワークスペースで {0} のツールを許可する",
+ "allowServerWorkspacePost": "このワークスペースで {0} のツールを確認なしで許可する",
+ "allowServerWorkspacePostTooltip": "このサーバーのすべてのツールからの結果を、確認なしでこのワークスペースで送信できるようにします。",
+ "allowServerWorkspaceTooltip": "このサーバーのすべてのツールを、確認なしでこのワークスペースで実行できるようにします。",
+ "allowSession": "このセッションで許可する",
+ "allowSessionPost": "このセッションで確認なしで許可する",
+ "allowSessionPostTooltip": "このツールからの結果を、確認なしでこのセッションで送信できるようにします。",
+ "allowSessionTooltip": "このツールを確認せずにこのセッションで実行できるようにします。",
+ "allowWorkspace": "このワークスペースで許可する",
+ "allowWorkspacePost": "このワークスペースで確認なしで許可する",
+ "allowWorkspacePostTooltip": "このツールからの結果を、確認なしでこのワークスペースで送信できるようにします。",
+ "allowWorkspaceTooltip": "このツールを確認せずにこのワークスペースで実行できるようにします。",
+ "configureGlobalToolApprovals": "グローバル ツールの承認を構成する",
+ "configureSessionToolApprovals": "セッション ツールの承認を構成する",
+ "configureWorkspaceToolApprovals": "ワークスペース ツールの承認を構成する",
+ "continueWithoutReviewing": "ツールの結果を確認せずに続行する",
+ "continueWithoutReviewingResults": "結果を確認せずに",
+ "runToolsWithoutApproval": "承認なしで任意のツールを実行する",
+ "runWithoutApproval": "承認なし",
+ "workspaceScope": "このワークスペースのみに構成する"
+ },
+ "vs/workbench/contrib/chat/browser/languageModelToolsService": {
+ "autoApprove2.button.disable": "無効にする",
+ "autoApprove2.button.enable": "有効にする",
+ "autoApprove2.markdown": "グローバル自動承認 (\"YOLO モード\"とも呼ばれます) は、すべてのワークスペースのすべてのツールに対する手動承認を完全に無効にし、エージェントが完全に自律的に動作できるようにします。これは非常に危険であり、*決して*推奨されません。[Codespaces](https://github.com/features/codespaces) や [Dev Containers](https://marketplace.visualstudio.com/items?itemName=ms-vscode-remote.remote-containers) などのコンテナー化された環境でも、ユーザー キーがコンテナー内に転送され、侵害される可能性があります。\r\n\r\n**この機能により、[重要なセキュリティ保護](https://code.visualstudio.com/docs/copilot/security) が無効になり、攻撃者がマシンを侵害しやすくなります。**",
+ "autoApprove2.title": "グローバル自動承認を有効にしますか?",
+ "copilot.toolSet.launch.description": "Launch and run code, binaries or tests in the workspace",
+ "copilot.toolSet.vscode.description": "Use VS Code features",
+ "defaultToolConfirmation.disclaimer": "'{0}' の自動承認は、{1} によって制限されます。",
+ "defaultToolConfirmation.message": "'{0}' ツールを実行しますか?",
+ "defaultToolConfirmation.title": "ツールの実行を許可しますか?"
+ },
+ "vs/workbench/contrib/chat/browser/modelPicker/modelPickerActionItem": {
+ "chat.manageModels": "モデルの管理...",
+ "chat.manageModels.tooltip": "言語モデルの管理",
+ "chat.modelPicker.label": "モデルの選択",
+ "chat.moreModels": "言語モデルの追加",
+ "chat.moreModels.tooltip": "言語モデルの追加",
+ "chat.morePremiumModels": "Premium モデルの追加",
+ "chat.morePremiumModels.tooltip": "Premium モデルの追加"
+ },
+ "vs/workbench/contrib/chat/browser/modelPicker/modePickerActionItem": {
+ "built-in": "組み込み",
+ "custom": "カスタム"
+ },
+ "vs/workbench/contrib/chat/browser/promptSyntax/attachInstructionsAction": {
+ "attach-instructions.capitalized.ellipses": "命令を添付...",
+ "chatContext.attach.instructions.label": "手順...",
+ "commands.instructions.select-dialog.placeholder": "添付する命令ファイルの選択",
+ "commands.prompt.manage-dialog.placeholder": "命令ファイルを選択して開く",
+ "configure-instructions": "手順の構成...",
+ "configure-instructions.short": "チャットの指示",
+ "configureInstructions": "手順の構成...",
+ "placeholder": "添付する命令ファイルの選択"
+ },
+ "vs/workbench/contrib/chat/browser/promptSyntax/chatModeActions": {
+ "configure-agents": "カスタム エージェントの構成...",
+ "configure-agents.short": "カスタム エージェント",
+ "configure.agent.prompts.placeholder": "カスタム エージェントを選択し、エージェント ピッカーで開いて可視性を構成します",
+ "select-agent": "カスタム エージェントの構成..."
+ },
+ "vs/workbench/contrib/chat/browser/promptSyntax/newPromptFileActions": {
+ "commands.new.agent.local.title": "新しいカスタム エージェント...",
+ "commands.new.instructions.local.title": "新しい命令ファイル...",
+ "commands.new.prompt.local.title": "新しいプロンプト ファイル...",
+ "commands.new.untitled.prompt.title": "新しい無題のプロンプト ファイル",
+ "enable.capitalized": "有効にする",
+ "learnMore.capitalized": "詳細情報",
+ "workbench.command.prompts.create.user.enable-sync-notification": "同期の設定を使用して、ユーザー プロンプト、指示、カスタム エージェント ファイルをバックアップして同期しますか?"
+ },
+ "vs/workbench/contrib/chat/browser/promptSyntax/pickers/askForPromptName": {
+ "askForAgentFileName.placeholder": "エージェント ファイルの名前を入力してください",
+ "askForInstructionsFileName.placeholder": "命令ファイルの名前を入力してください",
+ "askForPromptFileName.error.empty": "名前を入力してください。",
+ "askForPromptFileName.error.exists": "指定された名前のファイルは既に存在します。",
+ "askForPromptFileName.error.invalid": "名前に無効な文字が含まれています。",
+ "askForPromptFileName.placeholder": "プロンプト ファイルの名前を入力してください",
+ "askForRenamedAgentFileName.placeholder": "エージェント ファイルの新しい名前を入力してください",
+ "askForRenamedInstructionsFileName.placeholder": "命令ファイルの新しい名前を入力してください",
+ "askForRenamedPromptFileName.placeholder": "プロンプト ファイルの新しい名前を入力してください"
+ },
+ "vs/workbench/contrib/chat/browser/promptSyntax/pickers/askForPromptSourceFolder": {
+ "agent.copy.location.placeholder": "エージェント ファイルのコピー先の場所を選択...",
+ "agent.move.location.placeholder": "エージェント ファイルの移動先の場所を選択...",
+ "commands.agent.create.ask-folder.empty.docs-label": "カスタム エージェントを構成する方法の詳細情報",
+ "commands.agent.create.ask-folder.empty.placeholder": "エージェントのソース フォルダーが見つかりません。",
+ "commands.instructions.create.ask-folder.empty.docs-label": "再利用可能な命令を構成する方法の詳細情報",
+ "commands.instructions.create.ask-folder.empty.placeholder": "命令ソース フォルダーが見つかりません。",
+ "commands.prompts.create.ask-folder.empty.docs-label": "再利用可能なプロンプトを構成する方法を学ぶ",
+ "commands.prompts.create.ask-folder.empty.placeholder": "プロンプトのソース フォルダーが見つかりません。",
+ "commands.prompts.create.source-folder.current-workspace": "現在のワークスペース",
+ "current.folder": "現在の場所",
+ "instructions.copy.location.placeholder": "命令ファイルのコピー先の場所を選択してください...",
+ "instructions.move.location.placeholder": "命令ファイルの移動先の場所を選択してください...",
+ "prompt.copy.location.placeholder": "プロンプト ファイルのコピー先の場所を選択してください...",
+ "prompt.move.location.placeholder": "プロンプト ファイルの移動先の場所を選択してください...",
+ "workbench.command.agent.create.location.placeholder": "エージェント ファイルを作成する場所を選択...",
+ "workbench.command.instructions.create.location.placeholder": "命令ファイルを作成する場所を選択してください...",
+ "workbench.command.prompt.create.location.placeholder": "プロンプト ファイルを作成する場所を選択してください..."
+ },
+ "vs/workbench/contrib/chat/browser/promptSyntax/pickers/promptFilePickers": {
+ "commands.new-agentfile.select-dialog.label": "新しいカスタム エージェントを作成...",
+ "commands.new-instructionsfile.select-dialog.label": "新しい命令ファイル...",
+ "commands.new-promptfile.select-dialog.label": "新しいプロンプト ファイル...",
+ "commands.prompts.use.select-dialog.delete-prompt.confirm.message": "'{0}' を削除しますか?",
+ "commands.update-instructions.select-dialog.label": "エージェントの指示を生成...",
+ "copy": "コピー",
+ "delete": "削除",
+ "help.agent": "カスタム エージェント ファイルのヘルプを表示する",
+ "help.instructions": "指示ファイルに関するヘルプを表示する",
+ "help.prompt": "プロンプト ファイルにヘルプを表示する",
+ "hiddenInAgentPicker": "チャット ビューのエージェント ピッカーから非表示にする",
+ "hiddenLabelInfo": "{0} (非表示)",
+ "makeInvisible": "エージェント ピッカーから非表示にする",
+ "makeVisible": "チャット ビューをエージェント ピッカーから非表示にします。クリックして表示します。",
+ "open": "エディターで開く",
+ "rename": "移動または名前の変更",
+ "searching": "ファイル システムを検索しています...",
+ "separator.extensions": "拡張機能",
+ "separator.user": "ユーザー データ",
+ "separator.workspace": "ワークスペース",
+ "separator.workspace-agent-instructions": "エージェントの指示"
+ },
+ "vs/workbench/contrib/chat/browser/promptSyntax/promptCodingAgentActionOverlay": {
+ "runPromptWithCodingAgent": "リモート コーディング エージェントでプロンプト ファイルを実行する",
+ "runWithCodingAgent.label": "{0} Copilot コーディング エージェントに委任する"
+ },
+ "vs/workbench/contrib/chat/browser/promptSyntax/promptToolsCodeLensProvider": {
+ "configure-tools.capitalized.ellipsis": "ツールの構成...",
+ "placeholder": "ツールの選択"
+ },
+ "vs/workbench/contrib/chat/browser/promptSyntax/promptUrlHandler": {
+ "confirmInstallAgent": "外部アプリケーションが URL からのコンテンツを含むカスタム エージェントの作成を求めています。宛先のフォルダーと名前を選択して続行しますか?",
+ "confirmInstallInstructions": "外部アプリケーションが URL からのコンテンツを含む命令ファイルを作成しようとしています。宛先のフォルダーと名前を選択して続行しますか?",
+ "confirmInstallPrompt": "外部アプリケーションが URL からのコンテンツを含むプロンプト ファイルを作成しようとしています。コピー先のフォルダーと名前を選択して続行しますか?",
+ "confirmOpenDetail2": "これにより、{0} にアクセスします。\r\n\r\n",
+ "confirmOpenDetail3": "ご自身でこの要求を開始しなかった場合は、システムに対して攻撃が試行されている可能性があります。この要求を明示的に開始していない場合は、[いいえ] をクリックしてください",
+ "failed": "URL をフェッチできませんでした: {0}",
+ "noButton": "いいえ",
+ "yesButton": "はい(&&Y)"
+ },
+ "vs/workbench/contrib/chat/browser/promptSyntax/runPromptAction": {
+ "commands.prompt.manage-dialog.placeholder": "プロンプト ファイルを選択して開く",
+ "commands.prompt.select-dialog.placeholder": "実行するプロンプト ファイルを選択します (新しいチャットで使用するには、{0} キーを押したままにします)",
+ "configure-prompts": "プロンプト ファイルの構成...",
+ "configure-prompts.short": "プロンプト ファイル",
+ "run-prompt-in-new-chat.capitalized": "新しいチャットでプロンプトを実行する",
+ "run-prompt.capitalized": "現在のチャットでプロンプトを実行する",
+ "run-prompt.capitalized.ellipses": "プロンプトの実行..."
+ },
+ "vs/workbench/contrib/chat/browser/promptSyntax/saveAsPromptFileActions": {
+ "promptfile.saveAgentFile": "エージェント ファイルとして保存",
+ "promptfile.saveAgentFile.description": "エージェント ファイルとして保存",
+ "promptfile.saveInstructionsFile": "指示ファイルとして保存",
+ "promptfile.saveInstructionsFile.description": "指示ファイルとして保存します",
+ "promptfile.savePromptFile": "プロンプト ファイルとして保存",
+ "promptfile.savePromptFile.description": "プロンプト ファイルとして保存"
+ },
+ "vs/workbench/contrib/chat/browser/tools/toolSetsContribution": {
+ "bad_name1": "無効なファイル名",
+ "bad_name2": "'{0}' は無効なファイル名です",
+ "chat.configureToolSets": "ツール セットの構成...",
+ "chat.configureToolSets.add": "新しいツール セット ファイルの作成...",
+ "chat.configureToolSets.placeholder": "ツール セットを選択して構成する",
+ "chat.configureToolSets.short": "ツール セット",
+ "input.placeholder": "ツール セットのファイル名を入力してください",
+ "schema.default": "空のツール セット",
+ "schema.description": "このツール セットの簡単な説明。",
+ "schema.icon": "UI でこのツール セットに使用するアイコン。\"\\$(name)\"-syntax を使用します (例: \"\\$(zap)\")",
+ "schema.tools": "このツール セットに含めるツールまたはツール セットのリスト。空にすることはできません。また、プロンプトで参照される方法でツールを参照する必要があります。",
+ "tool.description": "{1} ({0})\r\n\r\n{2}",
+ "toolsetSchema.json": "ユーザー ツール セットの構成"
+ },
+ "vs/workbench/contrib/chat/browser/viewsWelcome/chatViewsWelcomeHandler": {
+ "chatViewsWelcome.content": "ウェルカム メッセージの内容。最初のコマンド リンクはボタンとして表示されます。",
+ "chatViewsWelcome.icon": "ウェルカム メッセージのアイコン。",
+ "chatViewsWelcome.title": "ウェルカム メッセージのタイトル。",
+ "chatViewsWelcome.when": "ウェルカム メッセージが表示されるときの条件。",
+ "vscode.extension.contributes.chatViewsWelcome": "チャット ビューにウェルカム メッセージを投稿します"
+ },
+ "vs/workbench/contrib/chat/browser/viewsWelcome/chatViewWelcomeController": {
+ "chatWidget.suggestedActions": "おすすめの操作",
+ "editPromptFile": "プロンプト ファイルの編集",
+ "runPromptTitle": "推奨されるプロンプト: {0}",
+ "suggestedPromptAriaLabel": "推奨されるプロンプト: {0}",
+ "suggestedPromptAriaLabelWithDescription": "推奨されるプロンプト: {0}、{1}"
+ },
+ "vs/workbench/contrib/chat/common/chatColors": {
+ "chat.avatarBackground": "チャット アバターの背景色。",
+ "chat.avatarForeground": "チャット アバターの前景色。",
+ "chat.editedFileForeground": "チャット編集したファイルを編集済みファイル リスト内に表示する前景色。",
+ "chat.linesAddedForeground": "チャット コード ブロック ピルで追加された行の前景色。",
+ "chat.linesRemovedForeground": "チャット コード ブロック ピルで削除された行の前景色。",
+ "chat.requestBackground": "チャット要求の背景色。",
+ "chat.requestBorder": "チャット要求の境界線の色。",
+ "chat.requestBubbleBackground": "チャット要求バブルの背景色。",
+ "chat.requestBubbleHoverBackground": "ホバー時にチャット要求バブルの背景色。",
+ "chat.requestCodeBorder": "チャット要求バブル内のコード ブロックの境界線の色。",
+ "chat.slashCommandBackground": "チャット スラッシュ コマンドの背景色。",
+ "chat.slashCommandForeground": "チャット スラッシュ コマンドの前景色。",
+ "chatCheckpointSeparator": "チャット チェックポイントの区切り記号の色。"
+ },
+ "vs/workbench/contrib/chat/common/chatContextKeys": {
+ "agentKind": "現在のエージェントの 'kind' (種類) です。",
+ "agentSupportsAttachments": "チャット エージェントが添付ファイルをサポートしている場合は true。",
+ "chatEditApplied": "チャット テキストの編集が適用されている場合は true。",
+ "chatEditingCanRedo": "編集パネルで操作をやり直しできる場合は True です。",
+ "chatEditingCanUndo": "編集パネルで操作を元に戻すことができる場合は True です。",
+ "chatEditingHasElicitationRequest": "チャットの引き出し要求が保留中の場合は true。",
+ "chatEditingHasToolConfirmation": "ツールの確認が存在する場合は TRUE です。",
+ "chatExtensionInvalid": "インストールされているチャット拡張機能が無効であり、更新する必要がある場合は true です。",
+ "chatHasAgents": "チャットでカスタム エージェントを使用できる場合は true。",
+ "chatHasFileAttachments": "チャットに添付ファイルがあると true になります。",
+ "chatInEmptyStateWithHistoryEnabled": "チャットの空状態履歴が有効で、チャットが空状態の場合は True です。",
+ "chatIsActiveSession": "チャット セッションが現在アクティブな場合は True です (削除できません)。",
+ "chatIsArchivedItem": "チャット セッションのアイテムが履歴から来ている場合は true です。",
+ "chatIsEnabled": "既定のチャット参加者が実装でアクティブ化されるためにチャットが有効になっている場合は true です。",
+ "chatIsKatexMathElement": "KaTeX 数学要素にフォーカスしている場合は true。",
+ "chatItemId": "チャットアイテムの ID。",
+ "chatLastItemId": "最後のチャットアイテムの ID。",
+ "chatModelsAreUserSelectable": "ユーザーがチャット モデルを手動で選択できる場合は TRUE です。",
+ "chatPanelExtensionParticipantRegistered": "既定のチャット参加者が拡張機能からパネルに登録されている場合は true です。",
+ "chatPanelLocation": "チャット パネルの場所。",
+ "chatParticipantRegistered": "既定のチャット参加者がパネルに登録されている場合は true です。",
+ "chatRemoteJobCreating": "リモート コーディング エージェント ジョブが作成されている場合は true です。",
+ "chatRequest": "チャット アイテムは要求です",
+ "chatResponse": "チャット アイテムは応答です。",
+ "chatResponseErrored": "チャット応答でエラーが発生した場合は True。",
+ "chatResponseFiltered": "サーバーによってチャット応答がフィルターで除外された場合は True です。",
+ "chatResponseSupportsIssueReporting": "現在のチャット応答で問題の報告がサポートされている場合は True です。",
+ "chatSessionHasModels": "チャットが、表示可能な 'モデル' を持つ寄与チャット セッション内にある場合は true です。",
+ "chatSessionResponseDetectedAgentOrCommand": "エージェントまたはコマンドが自動的に検出されたとき",
+ "chatSessionType": "現在のチャット セッション項目の種類です。",
+ "chatSkipRequestInProgressMessage": "チャット要求の進行中メッセージをスキップする必要がある場合は、True です。",
+ "chatToolCount": "現在のエージェントで使用できるツールの数。",
+ "chatToolGroupingThreshold": "仮想グループ化の実行を開始するツールの数。",
+ "enableRemoteCodingAgentPromptFileOverlay": "リモート コーディング エージェントのプロンプト ファイル オーバーレイ機能が有効になっているかどうか",
+ "filePartOfEditSession": "チャット ウィジェットが編集セッションのあるファイル内にある場合は True です。",
+ "hasRemoteCodingAgent": "リモート コーディング エージェントが使用可能かどうか",
+ "inChat": "フォーカスがチャット ウィジェットにある場合は True、それ以外の場合は False です。",
+ "inChatEditor": "チャット エディターにフォーカスがあるかどうか。",
+ "inChatTerminalToolOutput": "フォーカスがチャット ターミナルの出力領域にある場合は true です。",
+ "inInteractiveInput": "フォーカスがチャット入力にある場合は True、それ以外の場合は False です。",
+ "inQuickChat": "クイック チャット UI にフォーカスがある場合は true、それ以外の場合は false。",
+ "interactiveInputHasFocus": "チャット入力にフォーカスがある場合は true です。",
+ "interactiveInputHasText": "チャット入力にテキストがある場合は True です。",
+ "interactiveSessionCurrentlyEditing": "現在の要求が編集されている場合は true。",
+ "interactiveSessionCurrentlyEditingInput": "下部にある現在の要求入力が編集されている場合は true です。",
+ "interactiveSessionRequestInProgress": "現在の要求がまだ進行中の場合は True です。",
+ "interactiveSessionResponseVote": "回答が可決されると、'up' に設定されます。否決されると、'down' に設定されます。それ以外の場合は空の文字列です。",
+ "lockedToCodingAgent": "チャット ウィジェットがコーディング エージェント セッションにロックされている場合は、True です。",
+ "toolsCount": "チャットで使用できるツールの数。",
+ "withinEditSessionDiff": "チャット ウィジェットが編集セッションのチャットに送信される場合は True です。"
+ },
+ "vs/workbench/contrib/chat/common/chatEditingService": {
+ "chatEditingAgentSupportsReadonlyReferences": "チャット編集エージェントが読み取り専用の参照をサポートするかどうか (一時的)",
+ "chatEditingWidgetFileState": "チャット編集ウィジェット内にあるファイルの現在の状態"
+ },
+ "vs/workbench/contrib/chat/common/chatModel": {
+ "codeCitation": "1 種類のライセンスで類似のコードが見つかりました",
+ "codeCitations": "{0} 種類のライセンスで類似のコードが見つかりました",
+ "copyrightContentRetry": "応答が公開コードと一致する可能性があるためクリアされました。修正されたプロンプトで再試行しています。",
+ "editsSummary": "変更を行いました。",
+ "filteredContentRetry": "コンテンツの安全性フィルターにより応答がクリアされました。修正されたプロンプトで再試行しています。"
+ },
+ "vs/workbench/contrib/chat/common/chatModes": {
+ "agentDescription": "次にビルドする内容を説明します",
+ "chatDescription": "コードを調べて理解する",
+ "editsDescription": "選択したコードを編集またはリファクターする"
+ },
+ "vs/workbench/contrib/chat/common/chatProgressTypes/chatToolInvocation": {
+ "toolInvocationMessage": "{0} を使用しています"
+ },
+ "vs/workbench/contrib/chat/common/chatServiceImpl": {
+ "emptyResponse": "プロバイダーが null 応答を返しました",
+ "newChat": "新しいチャット"
+ },
+ "vs/workbench/contrib/chat/common/chatSessionStore": {
+ "join.chatSessionStore": "チャット履歴を保存しています",
+ "newChat": "新しいチャット"
+ },
+ "vs/workbench/contrib/chat/common/chatUrlFetchingConfirmation": {
+ "allowRequestsCheckbox": "確認なしで要求を行う",
+ "allowResponsesCheckbox": "確認なしで応答を許可する",
+ "approveAll": "すべて承認",
+ "approveRequestTo": "{0} への要求を許可する",
+ "approveResponseFrom": "{0} からの応答を許可する",
+ "approves": "{0} を承認",
+ "delete": "削除",
+ "denyAll": "すべて拒否",
+ "moreOptions": "次への要求を許可...",
+ "moreOptionsManage": "その他のオプション...",
+ "moreOptionsMultiple": "URL の承認を構成...",
+ "noApprovals": "承認なし",
+ "openSettings": "設定を開く",
+ "requests": "要求",
+ "responses": "応答",
+ "selectApproval": "承認する URL パターンの選択"
+ },
+ "vs/workbench/contrib/chat/common/chatVariableEntries": {
+ "chat.attachment.problems.all": "すべての問題",
+ "chat.attachment.problems.inFile": "{0} の問題"
+ },
+ "vs/workbench/contrib/chat/common/languageModels": {
+ "vscode.extension.contributes.languageModelChatProviders": "特定のベンダーの言語モデル チャット プロバイダーを提供します。",
+ "vscode.extension.contributes.languageModels.displayName": "言語モデル チャット プロバイダーの表示名。",
+ "vscode.extension.contributes.languageModels.emptyVendor": "ベンダー フィールドを空にすることはできません。",
+ "vscode.extension.contributes.languageModels.managementCommand": "言語モデル チャット プロバイダーを管理するコマンド (例: \"Copilot モデルの管理\")。これは、チャット モデル ピッカーで使用されます。指定しない場合は、ベンダーの選択時に歯車アイコンはレンダリングされません。",
+ "vscode.extension.contributes.languageModels.vendor": "言語モデル チャット プロバイダーのグローバルに一意のベンダー。",
+ "vscode.extension.contributes.languageModels.vendorAlreadyRegistered": "ベンダー '{0}' は既に登録されているため、2 回登録できません",
+ "vscode.extension.contributes.languageModels.when": "モデルの管理リストにこの言語モデルのチャット プロバイダーを表示するために true である必要がある条件です。",
+ "vscode.extension.contributes.languageModels.whitespaceVendor": "ベンダー フィールドの先頭または末尾を空白にすることはできません。"
+ },
+ "vs/workbench/contrib/chat/common/languageModelStats": {
+ "Language Models": "Copilot",
+ "chat": "チャット",
+ "languageModels": "この拡張機能の言語モデルの使用状況の統計情報。"
+ },
+ "vs/workbench/contrib/chat/common/languageModelToolsService": {
+ "builtin": "組み込み",
+ "toolResultDataPartA11y": "バイナリ データ {0}/{1}",
+ "user": "ユーザー定義"
+ },
+ "vs/workbench/contrib/chat/common/modelPicker/modelPickerWidget": {
+ "chat.modelPicker.other": "その他のモデル"
+ },
+ "vs/workbench/contrib/chat/common/promptSyntax/chatPromptFilesContribution": {
+ "chatContribution.property.description": "(省略可能) ファイルに関する説明です。",
+ "chatContribution.property.name": "このファイルの識別子。このコントリビューション ポイントでは、この拡張機能内で一意である必要があります。",
+ "chatContribution.property.path": "拡張機能のルートに対するファイルの相対パス。",
+ "chatContribution.schema.description": "チャット プロンプトに {0} を提供します。",
+ "extension.invalid.name": "拡張機能 '{0}' は、無効な名前 '{2}' のエントリ {1} を登録できません。",
+ "extension.invalid.path": "拡張機能 '{0}' の {1} エントリ '{2}' のパスは拡張機能の外部に解決されます。",
+ "extension.missing.description": "拡張機能 '{0}' では、説明なしで {1} エントリ '{2}' を登録することはできません。",
+ "extension.missing.path": "拡張機能 '{0}' では、パスなしで {1} エントリ '{2}' を登録することはできません。",
+ "extension.registration.failed": "{0} エントリ '{1}' を登録できませんでした: {2}"
+ },
+ "vs/workbench/contrib/chat/common/promptSyntax/computeAutomaticInstructions": {
+ "instruction.file.description.agentsmd.folder": "フォルダー '{0}' の指示",
+ "instruction.file.description.agentsmd.root": "ワークスペースの指示",
+ "instruction.file.reason.agentsmd": "設定 {0} が有効になっている場合に自動的に添付されます",
+ "instruction.file.reason.allFiles": "パターンが ** の場合に自動的に添付されます",
+ "instruction.file.reason.copilot": "設定 {0} が有効になっている場合に自動的に添付されます",
+ "instruction.file.reason.referenced": "参照元: {0}",
+ "instruction.file.reason.specificFile": "パターン {0} が {1} に一致すると自動的に添付されます"
+ },
+ "vs/workbench/contrib/chat/common/promptSyntax/languageProviders/promptCodeActions": {
+ "expandToolNames": "Expand to {0} tools",
+ "migrateToAgent": "カスタム エージェント ファイルに移行する",
+ "renameToAgent": "名前を 'agent' に変更する",
+ "updateAllToolNames": "すべてのツール名を更新する",
+ "updateToolName": "'{0}' に更新する"
+ },
+ "vs/workbench/contrib/chat/common/promptSyntax/languageProviders/promptHeaderAutocompletion": {
+ "promptHeaderAutocompletion.handoffsExample": "ハンドオフの例"
+ },
+ "vs/workbench/contrib/chat/common/promptSyntax/languageProviders/promptHovers": {
+ "modelFamily": "- ファミリ: {0}",
+ "modelName": "- 名前: {0}",
+ "modelVendor": "- ベンダー: {0}",
+ "promptHeader.agent.argumentHint": "argument-hint は、カスタム エージェントが予期またはサポートする入力を記述します。",
+ "promptHeader.agent.description": "カスタム エージェントの説明 (実行内容と使用するタイミング)。",
+ "promptHeader.agent.handoffs": "エージェントがタスクを完了したときに実行可能なハンドオフ操作です。",
+ "promptHeader.agent.handoffs.githubCopilot": "注: ターゲットが github-copilot の場合、この属性は使用されません。",
+ "promptHeader.agent.model": "このカスタム エージェントを実行するモデルを指定します。",
+ "promptHeader.agent.model.githubCopilot": "注: ターゲットが github-copilot の場合、この属性は使用されません。",
+ "promptHeader.agent.name": "UI に表示されるエージェントの名前です。",
+ "promptHeader.agent.target": "ツールなどのヘッダー属性の適用先です。指定可能な値は 'github-copilot' と 'vscode' です。",
+ "promptHeader.agent.tools": "カスタム エージェントがアクセスできるツールのセット。",
+ "promptHeader.instructions.applyToRange": "指示が適用されるファイルを記述する 1 つ以上の glob パターン (コンマ区切り)。これらのパターンに基づいて、コンテキストにこれらのパターンの 1 つ以上に一致するファイルが含まれている場合、そのファイルは自動的にプロンプトに含まれます。このファイルを常に追加する場合は、'**' を使用します。\r\n例: `**/*.ts`、`**/*.js`、`client/**`",
+ "promptHeader.instructions.description": "指示ファイルの説明です。これは、指示に関する追加のコンテキストまたは情報を提供するために使用でき、プロンプトの一部として言語モデルに渡されます。",
+ "promptHeader.instructions.name": "UI に表示される指示ファイルの名前。設定されていない場合、名前はファイル名から取得されます。",
+ "promptHeader.prompt.agent.builtInDesc": "組み込みエージェント",
+ "promptHeader.prompt.agent.builtin": "**組み込みエージェント:**",
+ "promptHeader.prompt.agent.custom": "**カスタム エージェント:**",
+ "promptHeader.prompt.agent.customDesc": "カスタム エージェント",
+ "promptHeader.prompt.agent.description": "このプロンプトの実行時に使用するエージェント。",
+ "promptHeader.prompt.argumentHint": "argument-hint は、プロンプトが予期またはサポートする入力を記述します。",
+ "promptHeader.prompt.description": "再利用可能なプロンプトの説明 (実行内容と使用するタイミング)。",
+ "promptHeader.prompt.model": "このプロンプトで使用するモデルです。",
+ "promptHeader.prompt.name": "プロンプトの名前です。これは、このプロンプトを実行するスラッシュ コマンドの名前でもあります。",
+ "promptHeader.prompt.tools": "このプロンプトで使用するツールです。",
+ "toolSetName": "ツールセット: {0}\r\n\r\n"
+ },
+ "vs/workbench/contrib/chat/common/promptSyntax/languageProviders/promptValidator": {
+ "githubCopilotTools.customAgent": "カスタム エージェントの呼び出し",
+ "githubCopilotTools.edit": "ファイルの編集",
+ "githubCopilotTools.search": "ファイル内の検索",
+ "githubCopilotTools.shell": "シェル コマンドを実行する",
+ "promptValidator.agentNotFound": "不明なエージェント '{0}'。使用可能なエージェント: {1}。",
+ "promptValidator.applyToMustBeString": "'applyTo' 属性は文字列である必要があります。",
+ "promptValidator.applyToMustBeValidGlob": "'applyTo' 属性は有効な glob パターンである必要があります。",
+ "promptValidator.argumentHintMustBeString": "'argument-hint' 属性は文字列である必要があります。",
+ "promptValidator.argumentHintShouldNotBeEmpty": "'argument-hint' 属性は空にできません。",
+ "promptValidator.attributeMustBeNonEmpty": "'{0}' 属性には空でない文字列を指定する必要があります。",
+ "promptValidator.attributeMustBeString": "'{0}' 属性は文字列である必要があります。",
+ "promptValidator.chatModesRenamedToAgents": "チャット モードの名前がエージェントに変更されました。このファイルを {0} に移動してください",
+ "promptValidator.chatModesRenamedToAgentsNoMove": "チャット モードの名前がエージェントに変更されました。ファイルを {0} に移動してください",
+ "promptValidator.deprecatedVariableReference": "ツールまたはツールセット '{0}' の名前が変更されました。代わりに '{1}' を使用してください。",
+ "promptValidator.deprecatedVariableReferenceMultipleNames": "Tool or toolset '{0}' has been renamed, use the following tools instead: {1}",
+ "promptValidator.descriptionMustBeString": "'description' 属性は文字列である必要があります。",
+ "promptValidator.descriptionShouldNotBeEmpty": "'description' 属性は空にできません。",
+ "promptValidator.disabledTool": "ツールまたはツールセット '{0}' もヘッダーで有効にする必要があります。",
+ "promptValidator.eachHandoffMustBeObject": "'handoffs' 属性の各ハンドオフは、'label'、'agent'、'prompt' と、省略可能な 'send' を持つオブジェクトである必要があります。",
+ "promptValidator.eachToolMustBeString": "'tools' 属性の各ツール名は文字列である必要があります。",
+ "promptValidator.excludeAgentMustBeArray": "'excludeAgent' 属性は配列である必要があります。",
+ "promptValidator.fileNotFound": "'{0}' が '{1}' で見つかりませんでした。",
+ "promptValidator.handoffAgentMustBeNonEmptyString": "ハンドオフの 'agent' プロパティには、空でない文字列を指定する必要があります。",
+ "promptValidator.handoffLabelMustBeNonEmptyString": "ハンドオフの 'label' プロパティには、空でない文字列を指定する必要があります。",
+ "promptValidator.handoffPromptMustBeString": "ハンドオフの 'prompt' プロパティは文字列である必要があります。",
+ "promptValidator.handoffSendMustBeBoolean": "ハンドオフの 'send' プロパティはブール値である必要があります。",
+ "promptValidator.handoffsMustBeArray": "'handoffs' 属性は配列である必要があります。",
+ "promptValidator.ignoredAttribute.vscode-agent": "VS Code でローカルに実行する場合、属性 '{0}' は無視されます。",
+ "promptValidator.invalidFileReference": "無効なファイル参照 '{0}' です。",
+ "promptValidator.missingHandoffProperties": "ハンドオフ オブジェクトに必要なプロパティ {0} が見つかりません。",
+ "promptValidator.modeDeprecated": "'mode' 属性は非推奨になりました。代わりに 'agent' 属性を使用してください。",
+ "promptValidator.modeDeprecated.useAgent": "'mode' 属性は非推奨になりました。名前を 'agent' に変更してください。",
+ "promptValidator.modelMustBeNonEmpty": "'model' 属性には空でない文字列を指定する必要があります。",
+ "promptValidator.modelMustBeString": "'model' 属性は文字列である必要があります。",
+ "promptValidator.modelNotFound": "不明なモデル '{0}'。",
+ "promptValidator.modelNotSuited": "モデル '{0}' はエージェント モードには適していません。",
+ "promptValidator.nameMustBeString": "'name' 属性は文字列である必要があります。",
+ "promptValidator.nameShouldNotBeEmpty": "'name' 属性を空にすることはできません。",
+ "promptValidator.targetInvalidValue": "'target' 属性には、{0} のいずれかを指定する必要があります。",
+ "promptValidator.targetMustBeNonEmpty": "'target' 属性には空でない文字列を指定する必要があります。",
+ "promptValidator.targetMustBeString": "'target' 属性は文字列である必要があります。",
+ "promptValidator.toolDeprecated": "ツールまたはツールセット '{0}' の名前が変更されました。代わりに '{1}' を使用してください。",
+ "promptValidator.toolDeprecatedMultipleNames": "Tool or toolset '{0}' has been renamed, use the following tools instead: {1}",
+ "promptValidator.toolNotFound": "不明なツール '{0}'。",
+ "promptValidator.toolsMustBeArrayOrMap": "'tools' 属性は配列である必要があります。",
+ "promptValidator.toolsOnlyInAgent": "'tools' 属性は、エージェントを使用する場合にのみサポートされます。属性は無視されます。",
+ "promptValidator.unknownAttribute.github-agent": "属性 '{0}' は、カスタム GitHub Copilot エージェント ファイルではサポートされていません。サポート対象: {1}。",
+ "promptValidator.unknownAttribute.instructions": "属性 '{0}' は指示ファイルではサポートされていません。サポート対象: {1}。",
+ "promptValidator.unknownAttribute.prompt": "属性 '{0}' はプロンプト ファイルではサポートされていません。サポート対象: {1}。",
+ "promptValidator.unknownAttribute.vscode-agent": "属性 '{0}' は、VS Code エージェント ファイルではサポートされていません。サポート対象: {1}。",
+ "promptValidator.unknownHandoffProperty": "ハンドオフ オブジェクトに不明なプロパティ '{0}' があります。サポートされているプロパティは、'label'、'agent'、'prompt' と、省略可能な 'send' です。",
+ "promptValidator.unknownVariableReference": "不明なツールまたはツールセット '{0}'。"
+ },
+ "vs/workbench/contrib/chat/common/promptSyntax/service/promptsServiceImpl": {
+ "extension.with.id": "拡張機能: {0}",
+ "user-data-dir.capitalized": "ユーザー データ"
+ },
+ "vs/workbench/contrib/chat/common/tools/languageModelToolsContribution": {
+ "canBeReferencedInPrompt": "true の場合は、このツールが添付ファイルとして表示され、ユーザーが手動で要求に追加できます。チャット参加者は、このツールを {0} で受け取ります。",
+ "condition": "このツールを有効にするために true にする必要がある条件。'when' 条件が false であっても、ツールが別の拡張機能によって呼び出される可能性があることに注意してください。",
+ "descriptions": "説明",
+ "icon": "このツールを表すアイコン。ファイル パス、暗いテーマと明るいテーマのファイル パスを持つオブジェクト、またはテーマ アイコンの参照 (\"\\$(zap)\" など)",
+ "icon.dark": "暗いテーマを使用した場合のアイコンのパス",
+ "icon.light": "明るいテーマを使用した場合のアイコンのパス",
+ "langModelToolSets": "言語モデル ツール セット",
+ "langModelTools": "言語モデル ツール",
+ "legacyToolReferenceFullNames": "An array of deprecated names for backwards compatibility that can also be used to reference this tool in a query. Each name must not contain whitespace. Full names are generally in the format `toolsetName/toolReferenceName` (e.g., `search/readFile`) or just `toolReferenceName` when there is no toolset (e.g., `readFile`).",
+ "name": "名前",
+ "parametersSchema": "このツールが受け付ける入力の JSON スキーマ。入力は最上位レベルのオブジェクトである必要があります。特定の 1 つの言語モデルで、必ずしもすべての JSON スキーマ機能がサポートされているとは限りません。詳細については、使用する言語モデル ファミリのドキュメントを参照してください。",
+ "reference": "参照名",
+ "toolDisplayName": "UI で説明するために使用できる、このツールの人間が判読できる名前。",
+ "toolModelDescription": "ツールを選択する際に言語モデルによって使用される、このツールの説明。",
+ "toolName": "このツールを指す一意の名前。これはグローバルに一意な識別名である必要があり、言語モデルに対してこのツールを示すときの名前としても使用されます。",
+ "toolName2": "{0} がこのツールに対して有効になっている場合、ユーザーはこの名前の '#' を使用してクエリでツールを呼び出すことができます。それ以外の場合、名前は必要ありません。名前には空白を含めないでください。",
+ "toolSetDescription": "このツール セットの説明。",
+ "toolSetIcon": "このツール セットを表すアイコン ('$(zap)' など)",
+ "toolSetLegacyFullNames": "An array of deprecated names for backwards compatibility that can also be used to reference this tool set. Each name must not contain whitespace. Full names are generally in the format `parentToolSetName/toolSetName` (e.g., `github/repo`) or just `toolSetName` when there is no parent toolset (e.g., `repo`).",
+ "toolSetName": "このツール セットの名前。参照として使用され、空白を含めることはできません。",
+ "toolSetTools": "このツール セットに含めるツールまたはツール セットのリスト。空にすることはできません。また、'toolReferenceName' でツールを参照する必要があります。",
+ "toolTableDescription": "説明",
+ "toolTableDisplayName": "表示名",
+ "toolTableName": "名前",
+ "toolTags": "このツールの大まかな機能を表すタグ セット。ツール ユーザーは、これらのタグでフィルター処理を行い、ツール群を目の前のタスクに必要なツールのみに絞り込んで表示することや、この拡張機能から提供されている機能に該当するタグを選択してツールを見つけることができます。",
+ "toolUserDescription": "ユーザーに表示される可能性があるこのツールの説明。",
+ "tools": "ツール",
+ "vscode.extension.contributes.toolSets": "一緒に使用できる一連の言語モデル ツールを提供します。",
+ "vscode.extension.contributes.tools": "チャット セッションまたはスタンドアロン コマンドから言語モデルによる呼び出しが可能なツールを提供します。登録したツールは、すべての拡張機能で使用できます。"
+ },
+ "vs/workbench/contrib/chat/common/tools/manageTodoListTool": {
+ "todo.added.multiple": "ToDo 項目が {0} 件追加されました",
+ "todo.added.single": "ToDo 項目が 1 件追加されました",
+ "todo.completed": "完了済み: *{0}* ({1}/{2})",
+ "todo.created.multiple": "ToDo 項目が {0} 件作成されました",
+ "todo.created.single": "ToDo 項目が 1 件作成されました",
+ "todo.readOperation": "Todo リストの読み取り",
+ "todo.starting": "開始中: *{0}* ({1}/{2})",
+ "todo.updated": "ToDo リストを更新しました",
+ "todo.updatedList": "ToDo リストを更新しました",
+ "tool.manageTodoList.displayName": "タスク計画のための ToDo 項目の管理および追跡",
+ "tool.manageTodoList.userDescription": "Manage and track todo items for task planning"
+ },
+ "vs/workbench/contrib/chat/common/tools/runSubagentTool": {
+ "tool.runSubagent.displayName": "サブエージェントの実行",
+ "tool.runSubagent.userDescription": "Run a task within an isolated subagent context to enable efficient organization of tasks and context window management."
+ },
+ "vs/workbench/contrib/chat/common/tools/tools": {
+ "toolset.custom-agent": "Delegate tasks to other agents"
+ },
+ "vs/workbench/contrib/chat/common/voiceChatService": {
+ "voiceChatInProgress": "チャットの音声テキスト変換セッションが進行中です。"
+ },
+ "vs/workbench/contrib/chat/electron-browser/actions/chatDeveloperActions": {
+ "workbench.action.chat.openStorageFolder.label": "チャット ストレージ フォルダーを開く"
+ },
+ "vs/workbench/contrib/chat/electron-browser/actions/voiceChatActions": {
+ "keywordActivation.status.active": "'Hey Code' をリッスンしています...",
+ "keywordActivation.status.inactive": "ボイス チャットが終了するのを待っています...",
+ "keywordActivation.status.name": "音声キーワードのアクティブ化",
+ "listening": "聞いています",
+ "scopedChatSynthesisInProgress": "ボイス チャットでマイクからの音声録音が進行中の場所として定義されます。このキーは、チャット コンテキストごとにスコープのみを定義します。",
+ "scopedVoiceChatGettingReady": "ボイス チャット用のマイクから音声入力を受信する準備をしている場合は True です。このキーは、チャット コンテキストごとにスコープのみを定義します。",
+ "scopedVoiceChatInProgress": "ボイス チャットでマイクからの音声録音が進行中の場所として定義されます。このキーは、チャット コンテキストごとにスコープのみを定義します。",
+ "voice.keywordActivation": "ボイス チャット セッションを開始するためにキーワード フレーズ 'Hey Code' を認識するかどうかを制御します。これを有効にすると、マイクからのレコーディングが開始されますが、オーディオはローカルで処理され、サーバーに送信されることはありません。",
+ "voice.keywordActivation.chatInContext": "キーワードのアクティブ化が有効になっており、キーボード フォーカスに応じてアクティブなエディターまたはビューでボイス チャット セッションを開始するために 'Hey Code' をリッスンしています。",
+ "voice.keywordActivation.chatInView": "キーワードのアクティブ化が有効になっており、チャット ビューでボイス チャット セッションを開始するために 'Hey Code' をリッスンしています。",
+ "voice.keywordActivation.inlineChat": "キーワードのアクティブ化が有効になっており、可能な場合、アクティブなエディターでボイス チャット セッションを開始するために 'Hey Code' をリッスンしています。",
+ "voice.keywordActivation.off": "キーワードのアクティブ化が無効になっています。",
+ "voice.keywordActivation.quickChat": "キーワードのアクティブ化が有効になっており、クイック チャットでボイス チャット セッションを開始するために 'Hey Code' をリッスンしています。",
+ "workbench.action.chat.holdToVoiceChatInChatView.label": "長押ししてチャット ビューでボイス チャット",
+ "workbench.action.chat.inlineVoiceChat": "インライン ボイス チャット",
+ "workbench.action.chat.quickVoiceChat.label": "クイック ボイス チャット",
+ "workbench.action.chat.readChatResponseAloud": "音声読み上げ",
+ "workbench.action.chat.startVoiceChat.label": "ボイス チャットの開始",
+ "workbench.action.chat.stopListening.label": "聞き取りを停止する",
+ "workbench.action.chat.stopListeningAndSubmit.label": "聞き取りを停止して送信する",
+ "workbench.action.chat.stopReadChatItemAloud": "音声読み上げを停止する",
+ "workbench.action.chat.voiceChatInView.label": "チャット ビューでのボイス チャット",
+ "workbench.action.speech.stopReadAloud": "音声読み上げを停止する"
+ },
+ "vs/workbench/contrib/chat/electron-browser/chat.contribution": {
+ "changeWorkspace.detail": "ワークスペースを変更すると、チャット要求が停止します。",
+ "changeWorkspace.message": "チャット要求を処理しています。ワークスペースを変更しますか?",
+ "chatRequestInProgress": "チャット要求が処理中です。",
+ "closeTheWindow.detail": "ウィンドウを閉じると、チャット要求は停止します。",
+ "closeTheWindow.message": "チャット要求を処理しています。ウィンドウを閉じますか?",
+ "copilotWorkspaceTrust": "現在、AI 機能は信頼されたワークスペースでのみサポートされています。",
+ "exit.detail": "終了すると、チャット要求が停止します。",
+ "exit.message": "チャット要求を処理しています。終了しますか?",
+ "quit.detail": "終了すると、チャット要求が停止します。",
+ "quit.message": "チャット要求を処理しています。終了しますか?",
+ "reloadTheWindow.detail": "ウィンドウを再度読み込むと、チャット要求が停止します。",
+ "reloadTheWindow.message": "チャット要求を処理しています。ウィンドウを再度読み込みますか?"
+ },
+ "vs/workbench/contrib/chat/electron-browser/tools/fetchPageTool": {
+ "fetchWebPage.binaryNotSupported": "バイナリ ファイルは現在サポートされていません。",
+ "fetchWebPage.confirmationMessage.plural": "Web コンテンツには悪意のあるコードが含まれていたり、プロンプト インジェクション攻撃を試みたりする可能性があります。",
+ "fetchWebPage.confirmationTitle.plural": "Web ページをフェッチしますか?",
+ "fetchWebPage.confirmationTitle.singular": "Web ページをフェッチしますか?",
+ "fetchWebPage.invalidUrl": "無効な URL",
+ "fetchWebPage.invocationMessage.plural": "{0} リソースをフェッチしています",
+ "fetchWebPage.invocationMessage.singular": "{0} をフェッチしています",
+ "fetchWebPage.invocationMessage.singularAsLink": "[リソース]({0}) をフェッチしています",
+ "fetchWebPage.noValidUrls": "有効な URL が指定されていません。",
+ "fetchWebPage.pastTenseMessage.plural": "{0} リソースをフェッチしましたが、次の URL は無効です:\r\n\r\n{1}\r\n\r\n",
+ "fetchWebPage.pastTenseMessage.singular": "リソースをフェッチしましたが、次の URL は無効です:\r\n\r\n{0}\r\n\r\n",
+ "fetchWebPage.pastTenseMessageResult.plural": "{0} リソースをフェッチしました",
+ "fetchWebPage.pastTenseMessageResult.singular": "{0} をフェッチしました",
+ "fetchWebPage.pastTenseMessageResult.singularAsLink": "フェッチされた [リソース]({0})",
+ "fetchWebPage.urlsDescription": "コンテンツをフェッチする URL の配列。"
},
"vs/workbench/contrib/codeActions/browser/codeActionsContribution": {
- "codeActionsOnSave": "保存時に実行されるコードアクションの種類。",
- "codeActionsOnSave.fixAll": "ファイルの保存時に自動修正アクションを実行するかどうかを制御します。",
- "codeActionsOnSave.generic": "ファイルの保存時に '{0}' アクションを実行するかどうかを制御します。"
- },
- "vs/workbench/contrib/codeActions/common/codeActionsExtensionPoint": {
- "contributes.codeActions": "リソースに使用するエディターを構成します。",
- "contributes.codeActions.description": "コード アクションの機能の説明です。",
- "contributes.codeActions.kind": "提供されたコード アクションの 'CodeActionKind' です。",
- "contributes.codeActions.languages": "コード アクションが有効になっている言語モード。",
- "contributes.codeActions.title": "UI で使用されるコード アクションのラベル。"
- },
- "vs/workbench/contrib/codeActions/common/documentationExtensionPoint": {
- "contributes.documentation": "寄稿されたドキュメント。",
- "contributes.documentation.refactoring": "リファクタリングに関するドキュメントを提供しました。",
- "contributes.documentation.refactoring.command": "コマンドが実行されました。",
- "contributes.documentation.refactoring.title": "UI で使用されるドキュメントのラベル。",
- "contributes.documentation.refactoring.when": "When 句。",
- "contributes.documentation.refactorings": "リファクタリングに関する提供されたドキュメント。"
+ "alwaysSave": "明示的な保存時にコード アクションをトリガーし、ウィンドウまたはフォーカスの変更によってトリガーされる自動保存を行います。",
+ "codeActionsOnSave.generic": "ファイルの保存時に '{0}' アクションを実行するかどうかを制御します。",
+ "editor.codeActionsOnSave": "保存時にエディターのコード アクションを実行します。コード アクションを指定する必要があり、エディターをシャットダウンしないようにする必要があります。{0} が 'afterDelay' に設定されている場合、コード アクションは、ファイルが明示的に保存されたときにのみ実行されます。例: '\"source.organizeImports\": \"explicit\" '",
+ "explicit": "明示的に保存した場合にのみコード アクションをトリガーします。",
+ "explicitBoolean": "明示的に保存された場合にのみ、コード アクションをトリガーします。この値は、\"explicit\" を優先して非推奨になります。",
+ "explicitSave": "明示的に保存した場合にのみコード アクションをトリガーします",
+ "explicitSaveBoolean": "明示的に保存された場合にのみ、コード アクションをトリガーします。この値は、\"explicit\" を優先して非推奨になります。",
+ "never": "保存時にコード アクションをトリガーしません。",
+ "neverBoolean": "明示的に保存された場合にのみ、コード アクションをトリガーします。この値は、\"never\" を優先して非推奨になります。",
+ "neverSave": "保存時にコード アクションをトリガーしない",
+ "neverSaveBoolean": "保存時にコード アクションをトリガーしません。この値は、\"never\" を優先して非推奨になります。",
+ "notebook.codeActionsOnSave": "保存時にノートブックに対して一連のコード アクションを実行します。コード アクションを指定する必要があり、エディターをシャットダウンしないようにする必要があります。{0} が 'afterDelay' に設定されている場合、コード アクションは、ファイルが明示的に保存されたときにのみ実行されます。例: '\"notebook.source.organizeImports\": \"explicit\"'"
},
"vs/workbench/contrib/codeEditor/browser/accessibility/accessibility": {
- "ShowAccessibilityHelpAction": "アクセシビリティのヘルプを表示します",
- "auto_off": "エディターは、スクリーン リーダーが接続されると自動的に検出するように構成されていますが、今回は検出できませんでした。",
- "auto_on": "エディターはスクリーン リーダーの接続を自動検出しました。",
- "auto_unknown": "エディターは、プラットフォーム API を使用してスクリーン リーダーがいつ接続されたかを検出するように設定されていますが、現在のランタイムはこれをサポートしていません。",
- "changeConfigToOnMac": "スクリーン リーダーで使用するためにエディターを永続的に最適化するように設定するには、Command + E を押してください。",
- "changeConfigToOnWinLinux": "スクリーン リーダーで使用するためにエディターを永続的に最適化するように設定するには、Control + E を押してください。",
- "configuredOff": "エディターはスクリーン リーダー向けに最適化しないように構成されています。",
- "configuredOn": "エディターはスクリーン リーダーで使用するために永続的に最適化されるように設定されています。これは `editor.accessibilitySupport` の設定を編集することで変更できます。",
- "emergencyConfOn": "現在 `editor.accessibilitySupport` 設定を 'on' に変更しています。",
- "introMsg": "VS Code のアクセシビリティ オプションをご利用いただき、ありがとうございます。",
- "openDocMac": "command + H キーを押して、ブラウザー ウィンドウを今すぐ開き、アクセシビリティに関連する他の VS Code 情報を確認します。",
- "openDocWinLinux": "エディターのアクセシビリティに関する詳細情報が記されたブラウザー ウィンドウを開くには、Control+H を押してください。",
- "openingDocs": "現在 VS Code のアクセシビリティ ドキュメントページを開いています。",
- "outroMsg": "Esc キー か Shift+Esc を押すと、ヒントを消してエディターに戻ることができます。",
- "status": "状態:",
- "tabFocusModeOffMsg": "現在のエディターで Tab キーを押すと、タブ文字が挿入されます。{0} を押すと、この動作が切り替わります。",
- "tabFocusModeOffMsgNoKb": "現在のエディターで Tab キーを押すと、タブ文字が挿入されます。コマンド {0} は、キー バインドでは現在トリガーできません。",
- "tabFocusModeOnMsg": "現在のエディターで Tab キーを押すと、次のフォーカス可能な要素にフォーカスを移動します。{0} を押すと、この動作が切り替わります。",
- "tabFocusModeOnMsgNoKb": "現在のエディターで Tab キーを押すと、次のフォーカス可能な要素にフォーカスを移動します。コマンド {0} は、キー バインドでは現在トリガーできません。"
+ "toggleScreenReaderMode": "スクリーン リーダーのアクセシビリティ モードの切り替え",
+ "toggleScreenReaderModeDescription": "スクリーン リーダー、点字デバイス、およびその他の支援技術で使用するための最適化モードを切り替えます。"
+ },
+ "vs/workbench/contrib/codeEditor/browser/dictation/editorDictation": {
+ "startDictation": "エディターでディクテーションを開始する",
+ "stopDictation": "エディターでディクテーションを停止する",
+ "stopDictationShort1": "ディクテーションの停止 ({0})",
+ "stopDictationShort2": "ディクテーションの停止",
+ "voiceCategory": "音声"
+ },
+ "vs/workbench/contrib/codeEditor/browser/diffEditorAccessibilityHelp": {
+ "msg1": "差分エディターを使用しています。",
+ "msg2": "スクリーン リーダー用に最適化された差分レビュー モードで、次の {0} または前の {1} の差分を表示します。",
+ "msg3": "コマンド差分エディター: Switch Side {0} を実行して、元のエディターと変更されたエディターを切り替えます。",
+ "msg4": "どのアクセシビリティ シグナルを再生するかを制御するには、次の設定を構成できます: {0}。",
+ "msg5": "accessibility.verbosity.diffEditorActive 設定は、差分エディターがアクティブなエディターになったときに差分エディターのアナウンスが行われるかどうかを制御します。"
},
"vs/workbench/contrib/codeEditor/browser/diffEditorHelper": {
"hintTimeout": "差分アルゴリズムは早く停止しました ({0} ミリ秒後)。",
"hintWhitespace": "スペースによる違いを表示する",
"removeTimeout": "制限の削除"
},
+ "vs/workbench/contrib/codeEditor/browser/emptyTextEditorHint/emptyTextEditorHint": {
+ "defaultHintAriaLabelWithInlineChat": "{0} を実行して質問し、{1} を実行して言語を選択し、作業を開始します。閉じるには入力を開始します。",
+ "defaultHintAriaLabelWithoutInlineChat": "{0} を実行して言語を選択し、作業を開始します。閉じるには入力を開始します。",
+ "disableEditorEmptyHint": "空のエディター ヒントを無効にする",
+ "disableHint": " このヒントを無効にするには、設定の {0} を切り替えます。",
+ "emptyTextEditorHintWithInlineChat": "[[コードの生成]]({0}) または [[言語の選択]] ({1})。入力を開始して閉じるか、今後は [[表示しない]] ようにします。",
+ "emptyTextEditorHintWithoutInlineChat": "[[言語の選択]]({0}) を使用して作業を開始します。入力を開始して閉じるか、今後は [[表示しない]] ようにします。"
+ },
"vs/workbench/contrib/codeEditor/browser/find/simpleFindWidget": {
"ariaSearchNoInput": "検索条件の入力",
"ariaSearchNoResult": "{0} が '{1}' で見つかりました",
@@ -4399,7 +7797,8 @@
"label.find": "検索",
"label.nextMatchButton": "次の一致項目",
"label.previousMatchButton": "前の一致項目",
- "placeholder.find": "検索 (履歴の場合は ⇅)"
+ "placeholder.find": "検索",
+ "simpleFindWidget.sashBorder": "スラッシュ ボーダーの境界線の色"
},
"vs/workbench/contrib/codeEditor/browser/inspectEditorTokens/inspectEditorTokens": {
"inspectEditorTokens": "開発者: エディター トークンとスコープの検査",
@@ -4409,7 +7808,76 @@
"workbench.action.inspectKeyMap": "キー マッピングの検査",
"workbench.action.inspectKeyMapJSON": "キー マッピングの検査 (JSON)"
},
- "vs/workbench/contrib/codeEditor/browser/languageConfigurationExtensionPoint": {
+ "vs/workbench/contrib/codeEditor/browser/largeFileOptimizations": {
+ "largeFile": "{0}: メモリ使用量を減らし、フリーズやクラッシュを回避するために、トークン化、折りたたみ、折り返し、コードレンズ、単語の強調表示、スティッキー スクロールが無効になっています。",
+ "removeOptimizations": "強制的に機能を有効化",
+ "reopenFilePrompt": "この設定を有効にするためにファイルを再度開いてください。"
+ },
+ "vs/workbench/contrib/codeEditor/browser/outline/documentSymbolsOutline": {
+ "document": "ドキュメントのシンボル"
+ },
+ "vs/workbench/contrib/codeEditor/browser/outline/documentSymbolsTree": {
+ "1.problem": "この要素に 1 個の問題",
+ "N.problem": "この要素に {0} 個の問題",
+ "deep.problem": "問題のある要素が含まれています",
+ "title.template": "{0} ({1})"
+ },
+ "vs/workbench/contrib/codeEditor/browser/quickaccess/gotoLineQuickAccess": {
+ "gotoLine": "行/列に移動...",
+ "gotoLineQuickAccess": "行/列に移動",
+ "gotoLineQuickAccessPlaceholder": "移動先の行番号とオプションの列を入力します (例: 42 行目 5 列目の場合は 42:5)。文字オフセットに移動するには、「:: 」と入力します (例: ファイルの先頭から 1,024 番目の文字の場合は ::1024)。負の値を使うと後方に移動します。",
+ "gotoOffset": "オフセットに移動...",
+ "gotoOffsetQuickAccess": "オフセットに移動"
+ },
+ "vs/workbench/contrib/codeEditor/browser/quickaccess/gotoSymbolQuickAccess": {
+ "empty": "一致するエントリがありません",
+ "gotoSymbol": "エディターでシンボルに移動...",
+ "gotoSymbolByCategoryQuickAccess": "エディターでカテゴリ別のシンボルに移動",
+ "gotoSymbolQuickAccess": "エディターでシンボルに移動",
+ "gotoSymbolQuickAccessPlaceholder": "移動先のシンボル名を入力します。",
+ "miGotoSymbolInEditor": "エディター内のシンボルへ移動(&&S)..."
+ },
+ "vs/workbench/contrib/codeEditor/browser/saveParticipants": {
+ "codeAction.apply": "コード アクション '{0}' を適用しています。",
+ "codeaction": "クイック修正",
+ "codeaction.get2": "{0} ([構成]({1}) からコード アクションを取得しています。",
+ "formatting2": "'{0}' フォーマッタ ([構成]({1})) を実行しています。"
+ },
+ "vs/workbench/contrib/codeEditor/browser/toggleColumnSelection": {
+ "miColumnSelection": "列の選択モード(&&S)",
+ "toggleColumnSelection": "列選択モードの切り替え"
+ },
+ "vs/workbench/contrib/codeEditor/browser/toggleMinimap": {
+ "miMinimap": "ミニマップ(&&M)",
+ "toggleMinimap": "ミニマップの切り替え"
+ },
+ "vs/workbench/contrib/codeEditor/browser/toggleMultiCursorModifier": {
+ "miMultiCursorAlt": "マルチ カーソルを Alt+Click に切り替える",
+ "miMultiCursorCmd": "マルチ カーソルを Cmd+Click に切り替える",
+ "miMultiCursorCtrl": "マルチ カーソルを Ctrl+Click に切り替える",
+ "toggleLocation": "マルチカーソル修飾子の切り替え"
+ },
+ "vs/workbench/contrib/codeEditor/browser/toggleOvertype": {
+ "mitoggleOvertypeInsertMode": "上書き/挿入モードの切り替え(&&T)",
+ "toggleOvertypeInsertMode": "上書き/挿入モードの切り替え",
+ "toggleOvertypeMode.description": "上書き入力モードと挿入モードを切り替えます"
+ },
+ "vs/workbench/contrib/codeEditor/browser/toggleRenderControlCharacter": {
+ "miToggleRenderControlCharacters": "制御文字を表示する(&&C)",
+ "toggleRenderControlCharacters": "制御文字の切り替え"
+ },
+ "vs/workbench/contrib/codeEditor/browser/toggleRenderWhitespace": {
+ "miToggleRenderWhitespace": "空白を描画する(&&R)",
+ "toggleRenderWhitespace": "空白文字の表示の切り替え"
+ },
+ "vs/workbench/contrib/codeEditor/browser/toggleWordWrap": {
+ "editorWordWrap": "現在、エディターで単語の折り返しが使用されているかどうか。",
+ "miToggleWordWrap": "右端での折り返し(&&W)",
+ "toggle.wordwrap": "表示: [右端での折り返し] の設定/解除",
+ "unwrapMinified": "このファイルでの折り返しを無効にする",
+ "wrapMinified": "このファイルでの折り返しを有効にする"
+ },
+ "vs/workbench/contrib/codeEditor/common/languageConfigurationExtensionPoint": {
"formatError": "{0}: 無効な形式です。JSON オブジェクトが必要です。",
"parseErrors": "{0} を解析中のエラー: {1}",
"schema.autoCloseBefore": "'languageDefined' 自動閉じ設定を使用しているときに、かっこや引用符の自動閉じを行うためにカーソルの後ろに置かれる文字を定義します。これは通常、式を開始しない文字のセットです。",
@@ -4418,9 +7886,9 @@
"schema.blockComment.begin": "ブロック コメントを開始する文字シーケンス。",
"schema.blockComment.end": "ブロック コメントを終了する文字シーケンス。",
"schema.blockComments": "ブロック コメントのマーク方法を定義します。",
- "schema.brackets": "インデントを増減する角かっこを定義します。",
+ "schema.brackets": "インデントを増減する角かっこ記号を定義します。角かっこのペアの色付けが有効で、{0} が定義されていない場合は、入れ子レベルで色分けされる角かっこのペアも定義されます。",
"schema.closeBracket": "右角かっこまたは文字列シーケンス。",
- "schema.colorizedBracketPairs": "角かっこのペアの色付けが有効になっている場合、入れ子のレベルによって色付けされる角かっこのペアを定義します。",
+ "schema.colorizedBracketPairs": "角かっこのペアの色分けが有効になっている場合に入れ子レベルで色分けされる角かっこのペアを定義します。{0} に含まれていない角かっこは、{0} に自動的に含まれます。",
"schema.comments": "コメント記号を定義します。",
"schema.folding": "言語の折り畳み設定。",
"schema.folding.markers": "'#region'や '#endregion'などの言語固有の折りたたみマーカー。開始と終了の正規表現はすべての行の内容に対してテストし効率的に設計してください。",
@@ -4444,7 +7912,9 @@
"schema.indentationRules.unIndentedLinePattern.errorMessage": "`/^([gimuy]+)$/` パターンに一致する必要があります。",
"schema.indentationRules.unIndentedLinePattern.flags": "unIndentedLinePattern に使用する正規表現フラグ。",
"schema.indentationRules.unIndentedLinePattern.pattern": "unIndentedLinePattern に使用する正規表現パターン。",
- "schema.lineComment": "行コメントを開始する文字シーケンス。",
+ "schema.lineComment.comment": "行コメントを開始する文字シーケンス。",
+ "schema.lineComment.noIndent": "コメント トークンをインデントせずに最初の列に配置するかどうか。既定値は false です。",
+ "schema.lineComment.object": "行コメントの構成。",
"schema.onEnterRules": "Enter キーを押したときに評価される言語ルールです。",
"schema.onEnterRules.action": "実行するアクション。",
"schema.onEnterRules.action.appendText": "新しい行の後およびインデントの後に追加するテキストを指定します。",
@@ -4473,113 +7943,36 @@
"schema.wordPattern.flags.errorMessage": "`/^([gimuy]+)$/` パターンに一致する必要があります。",
"schema.wordPattern.pattern": "言葉の照合に使用する正規表現パターン。"
},
- "vs/workbench/contrib/codeEditor/browser/largeFileOptimizations": {
- "largeFile": "{0}: トークン化、折り返し、折りたたみは、メモリの使用量を減らしてフリーズやクラッシュを回避するために、この大きいファイルで無効化されています。",
- "removeOptimizations": "強制的に機能を有効化",
- "reopenFilePrompt": "この設定を有効にするためにファイルを再度開いてください。"
+ "vs/workbench/contrib/codeEditor/electron-browser/selectionClipboard": {
+ "actions.pasteSelectionClipboard": "クリップボードの選択内容を貼り付ける"
},
- "vs/workbench/contrib/codeEditor/browser/outline/documentSymbolsOutline": {
- "document": "ドキュメントのシンボル"
+ "vs/workbench/contrib/codeEditor/electron-browser/startDebugTextMate": {
+ "startDebugTextMate": "TextMate 構文文法ログの開始"
},
- "vs/workbench/contrib/codeEditor/browser/outline/documentSymbolsTree": {
- "1.problem": "この要素に 1 個の問題",
- "Array": "配列",
- "Boolean": "ブール値",
- "Class": "クラス",
- "Constant": "定数",
- "Constructor": "コンストラクター",
- "Enum": "列挙型",
- "EnumMember": "列挙型メンバー",
- "Event": "イベント",
- "Field": "フィールド",
- "File": "ファイル",
- "Function": "関数",
- "Interface": "インターフェイス",
- "Key": "キー",
- "Method": "メソッド",
- "Module": "モジュール",
- "N.problem": "この要素に {0} 個の問題",
- "Namespace": "名前空間",
- "Null": "NULL",
- "Number": "数値",
- "Object": "オブジェクト",
- "Operator": "演算子",
- "Package": "パッケージ",
- "Property": "プロパティ",
- "String": "文字列",
- "Struct": "構造体",
- "TypeParameter": "型パラメーター",
- "Variable": "変数",
- "deep.problem": "問題のある要素が含まれています",
- "title.template": "{0} ({1})"
- },
- "vs/workbench/contrib/codeEditor/browser/quickaccess/gotoLineQuickAccess": {
- "gotoLine": "行/列に移動...",
- "gotoLineQuickAccess": "行/列に移動",
- "gotoLineQuickAccessPlaceholder": "行番号とオプションの列を入力して移動します (例: 42 行目で 5 列目の場合は 42:5)。"
- },
- "vs/workbench/contrib/codeEditor/browser/quickaccess/gotoSymbolQuickAccess": {
- "empty": "一致するエントリがありません",
- "gotoSymbol": "エディターでシンボルに移動...",
- "gotoSymbolByCategoryQuickAccess": "エディターでカテゴリ別のシンボルに移動",
- "gotoSymbolQuickAccess": "エディターでシンボルに移動",
- "gotoSymbolQuickAccessPlaceholder": "移動先のシンボル名を入力します。",
- "miGotoSymbolInEditor": "エディター内のシンボルへ移動(&&S)..."
- },
- "vs/workbench/contrib/codeEditor/browser/saveParticipants": {
- "codeAction.apply": "コード アクション '{0}' を適用しています。",
- "codeaction": "クイック修正",
- "codeaction.get2": "'{0}' からコード アクション ([構成]({1})) を取得しています。",
- "formatting2": "'{0}' フォーマッタ ([構成]({1})) を実行しています。"
- },
- "vs/workbench/contrib/codeEditor/browser/toggleColumnSelection": {
- "miColumnSelection": "列の選択モード(&&S)",
- "toggleColumnSelection": "列選択モードの切り替え"
- },
- "vs/workbench/contrib/codeEditor/browser/toggleMinimap": {
- "miMinimap": "&&Minimap",
- "toggleMinimap": "ミニマップの切り替え"
- },
- "vs/workbench/contrib/codeEditor/browser/toggleMultiCursorModifier": {
- "miMultiCursorAlt": "マルチ カーソルを Alt+Click に切り替える",
- "miMultiCursorCmd": "マルチ カーソルを Cmd+Click に切り替える",
- "miMultiCursorCtrl": "マルチ カーソルを Ctrl+Click に切り替える",
- "toggleLocation": "マルチカーソル修飾子の切り替え"
- },
- "vs/workbench/contrib/codeEditor/browser/toggleRenderControlCharacter": {
- "miToggleRenderControlCharacters": "制御文字を表示する(&&C)",
- "toggleRenderControlCharacters": "制御文字の切り替え"
- },
- "vs/workbench/contrib/codeEditor/browser/toggleRenderWhitespace": {
- "miToggleRenderWhitespace": "空白を描画する(&&R)",
- "toggleRenderWhitespace": "空白文字の表示の切り替え"
- },
- "vs/workbench/contrib/codeEditor/browser/toggleWordWrap": {
- "editorWordWrap": "現在、エディターで単語の折り返しが使用されているかどうか。",
- "miToggleWordWrap": "右端での折り返し(&W)",
- "toggle.wordwrap": "表示: [右端で折り返す] の設定/解除",
- "unwrapMinified": "このファイルでの折り返しを無効にする",
- "wrapMinified": "このファイルでの折り返しを有効にする"
- },
- "vs/workbench/contrib/codeEditor/browser/untitledTextEditorHint": {
- "message": "[[言語の選択]]、または [[別のエディターを開く]] を使用して開始します。\r\n入力を開始して無視するか、[表示しない] をもう一度クリックします。"
- },
- "vs/workbench/contrib/codeEditor/electron-sandbox/selectionClipboard": {
- "actions.pasteSelectionClipboard": "選択範囲クリップボードの貼り付け"
- },
- "vs/workbench/contrib/codeEditor/electron-sandbox/startDebugTextMate": {
- "startDebugTextMate": "TextMate 構文文法ログの開始"
+ "vs/workbench/contrib/commands/common/commands.contribution": {
+ "runCommands": "実行コマンド",
+ "runCommands.commands": "実行されるコマンド",
+ "runCommands.description": "複数のコマンドを実行する",
+ "runCommands.invalidArgs": "'runCommands' は、型が正しくない引数を受け取りました。コマンドに渡された引数を確認してください。",
+ "runCommands.noCommandsToRun": "'runCommands' は実行するコマンドを受信していません。'runCommands' 引数にコマンドを渡すのを忘れましたか?"
},
"vs/workbench/contrib/comments/browser/commentColors": {
+ "commentReplyInputBackground": "コメント応答入力ボックスの背景色。",
"commentThreadActiveRangeBackground": "現在選択またはホバーされたコメント範囲の背景色。",
- "commentThreadActiveRangeBorder": "現在選択またはホバーされたコメント範囲の境界線の色。",
"commentThreadRangeBackground": "コメント範囲の背景色。",
- "commentThreadRangeBorder": "コメント範囲の境界線の色。",
"resolvedCommentBorder": "解決されたコメントの境界線と矢印の色。",
- "unresolvedCommentBorder": "未解決のコメントの境界線と矢印の色。"
+ "resolvedCommentIcon": "解決済みのコメントのアイコンの色。",
+ "unresolvedCommentBorder": "未解決のコメントの境界線と矢印の色。",
+ "unresolvedCommentIcon": "未解決のコメントのアイコンの色。"
},
"vs/workbench/contrib/comments/browser/commentGlyphWidget": {
- "editorGutterCommentRangeForeground": "コメント範囲を示すエディター余白の装飾の色。"
+ "editorGutterCommentDraftGlyphForeground": "下書きコメントのあるコメント スレッドに対するコメント グリフを示すエディターとじしろの装飾の色。",
+ "editorGutterCommentGlyphForeground": "コメント グリフを示すエディター余白の装飾の色。",
+ "editorGutterCommentRangeForeground": "コメント範囲のエディターのとじしろ装飾の色。この色は不透明である必要があります。",
+ "editorGutterCommentUnresolvedGlyphForeground": "未解決のコメント スレッドに対するコメント グリフを示すエディター余白の装飾の色。",
+ "editorOverviewRuler.commentDraftForeground": "下書きコメントのあるコメント スレッドのエディター概要ルーラーの装飾色。この色は不透明である必要があります。",
+ "editorOverviewRuler.commentForeground": "解決済みのコメントのエディター概要ルーラーの装飾色。この色は不透明である必要があります。",
+ "editorOverviewRuler.commentUnresolvedForeground": "未解決のコメントのエディター概要ルーラーの装飾色。この色は不透明である必要があります。"
},
"vs/workbench/contrib/comments/browser/commentNode": {
"commentAddReactionDefaultError": "コメント反応を削除できませんでした",
@@ -4594,54 +7987,157 @@
"newComment": "新しいコメントを入力します",
"reply": "返信..."
},
- "vs/workbench/contrib/comments/browser/commentThreadBody": {
- "commentThreadAria": "{0} コメントを含むコメント スレッド。{1}。",
- "commentThreadAria.withRange": "{1} から {2} 行目の {0} 件のコメントを含むコメント スレッド。{3}。"
- },
- "vs/workbench/contrib/comments/browser/commentThreadHeader": {
- "collapseIcon": "レビュー コメントを折りたたむためのアイコン。",
- "label.collapse": "折りたたみ",
- "startThread": "ディスカッションを開始"
- },
"vs/workbench/contrib/comments/browser/comments.contribution": {
+ "collapseAll": "すべて折りたたんで表示します。",
+ "collapseOnResolve": "スレッドが解決されたときにコメント スレッドを折りたたむかどうかを制御します。",
+ "comments.maxHeight": "コメント ウィジェットをスクロールするか展開するかを制御します。",
"comments.openPanel.deprecated": "この設定は'comments.openView' を優先し、非推奨です。",
"comments.openView": "コメント パネルが開くべきタイミングを制御します。",
"comments.openView.file": "コメント付きのファイルがアクティブになると、コメント ビューが開きます。",
"comments.openView.firstFile": "このセッション中にコメント ビューがまだ開いていない場合は、コメントを含むファイルがアクティブになっているセッション中に初めて開きます。",
+ "comments.openView.firstFileUnresolved": "このセッション中にコメント ビューがまだ開かれていない場合、コメントが解決されない場合は、コメントを含むファイルがアクティブなセッション中に初めて開きます。",
"comments.openView.never": "コメント ビューが開くことはありません。",
+ "comments.visible": "コメント範囲とコメントを含むエディターで、コメント バーとコメント スレッドを表示するかどうかを制御します。コメントはコメント ビューを介して引き続きアクセスでき、コマンド \"Comments: Toggle Editor Commenting\" の切り替えを実行するのと同じ方法でコメントがオンに切り替わります。",
"commentsConfigurationTitle": "コメント",
+ "confirmOnCollapse": "コメント スレッドを折りたたむときに確認ダイアログを表示するかどうかを制御します。",
+ "confirmOnCollapse.never": "コメント スレッドを折りたたむときに確認ダイアログを表示しません。",
+ "confirmOnCollapse.whenHasUnsubmittedComments": "未送信のコメントを含むコメント スレッドを折りたたむときに確認ダイアログを表示します。",
+ "expandAll": "すべて展開",
"openComments": "コメント パネルを開くタイミングを制御します。",
+ "reply": "返信",
+ "totalUnresolvedComments": "{0} 件の未解決のコメント",
"useRelativeTime": "コメント タイムスタンプ ('1 日前' など) に相対時間を使用するかどうかを決定します。"
},
+ "vs/workbench/contrib/comments/browser/commentsAccessibility": {
+ "addCommentNoKb": "- 現在の選択範囲にコメントを追加します{0}。",
+ "commentCommands": "次のような便利なコメント コマンドがあります:",
+ "escape": "- コメントを閉じる (Esc)",
+ "intro": "エディターにはコメント可能な範囲が含まれています。次のような便利なコマンドがあります:",
+ "introWidget": "このウィジェットには、新しいコメントとアクションの合成用のテキスト領域が含まれており、タブ キー移動フォーカスの切り替えコマンドでタブ移動フォーカス モードを有効にすると Tab キーで移動できます{0}。",
+ "next": "- 次のコメント範囲に移動します{0}。",
+ "nextCommentThreadKb": "- 次のコメント スレッドに移動します{0}。",
+ "nextCommentedRangeKb": "- 次のコメント範囲 {0} に移動します。",
+ "previous": "- 前のコメント範囲に移動します{0}。",
+ "previousCommentThreadKb": "- 前のコメント スレッドに移動します{0}。",
+ "previousCommentedRangeKb": "- 前のコメント範囲 {0} に移動します。",
+ "submitComment": "- コメントを送信します{0}。"
+ },
+ "vs/workbench/contrib/comments/browser/commentsController": {
+ "commentRange": "線 {0}",
+ "commentRangeStart": "行 {0} ~ {1}",
+ "comments.addCommand.error": "コメントを追加するには、カーソルがコメント範囲内にある必要があります。",
+ "comments.addFileCommentCommand.error": "このファイルに対するファイル コメントは許可されていません。",
+ "hasCommentRanges": "エディターにはコメント範囲があります。",
+ "hasCommentRangesKb": "エディターにはコメント範囲があります。詳細については、[ユーザー補助のヘルプを開く ] ({0}) コマンドを実行してください。",
+ "hasCommentRangesNoKb": "エディターにはコメント範囲があります。詳細については、現在キー バインドではトリガーできないユーザー補助のヘルプを開くコマンドを実行してください。",
+ "pickCommentService": "コメント プロバイダーの選択"
+ },
"vs/workbench/contrib/comments/browser/commentsEditorContribution": {
+ "comments.NextCommentedRange": "次のコメント範囲に移動",
"comments.addCommand": "現在の選択範囲にコメントを追加する",
+ "comments.collapseAll": "すべてのコメントを折りたたむ",
+ "comments.expandAll": "すべてのコメントを展開",
+ "comments.expandUnresolved": "未解決のコメントを展開",
+ "comments.focusCommand.error": "コメントにフォーカスを合わせるには、カーソルがコメント付きの行にある必要があります",
+ "comments.focusCommentOnCurrentLine": "現在の行のコメントにフォーカスを合わせる",
+ "comments.nextCommentingRange": "次のコメント範囲に移動",
+ "comments.previousCommentedRange": "前のコメント範囲に移動",
+ "comments.previousCommentingRange": "前のコメント範囲に移動",
"comments.toggleCommenting": "エディター コメントの切り替え",
- "hasCommentingProvider": "開いているワークスペースにコメントまたはコメント範囲があるかどうか。",
- "hasCommentingRange": "アクティブカーソルの位置にコメント範囲があるかどうか",
- "nextCommentThreadAction": "次のコメント スレッドに移動",
- "pickCommentService": "コメント プロバイダーの選択",
- "previousCommentThreadAction": "前のコメント スレッドに移動する"
+ "commentsCategory": "コメント"
+ },
+ "vs/workbench/contrib/comments/browser/commentsModel": {
+ "noComments": "このワークスペースにコメントはまだありません。"
},
"vs/workbench/contrib/comments/browser/commentsTreeViewer": {
"commentCount": "1 件のコメント",
"commentLine": "[行: {0}]",
"commentRange": "[行: {0}-{1}]",
- "commentsCount": "{0} 件のコメント",
+ "comments.view.title": "コメント",
+ "commentsCountReplies": "{0} 件の返信",
+ "commentsCountReply": "1 件の返信",
"image": "イメージ",
"imageWithLabel": "イメージ: {0}",
- "lastReplyFrom": "{0} からの最後の返信"
+ "lastReplyFrom": "{0} からの最後の返信",
+ "outdated": "期限切れ"
},
"vs/workbench/contrib/comments/browser/commentsView": {
- "collapseAll": "すべて折りたたんで表示します。",
- "resourceWithCommentLabel": "{3} の行 {1} 列 {2} (ソース: {4}) にある ${0} からのコメント",
+ "accessibleViewHint": "\r\nユーザー補助対応のビューでこれを検査します ({0})。",
+ "acessibleViewHintNoKbOpen": "\r\nキー バインドを介して現在トリガーできない [ユーザー補助対応のビューを開く] コマンドを使用して、ユーザー補助対応のビューでこれを検査します。",
+ "comments.filter.ariaLabel": "コメントをフィルター",
+ "comments.filter.placeholder": "フィルター (例: text、author)",
+ "fileCommentLabel": "{0} で",
+ "multiLineCommentLabel": "{2} の行 {0} から行 {1}",
+ "oneLineCommentLabel": "行 {0} 列 {1} ({2} 内)",
+ "replyCount": " {0} 件の返信、",
+ "resourceWithCommentLabel": "{0}: {1}\r\n{2}\r\n{3}\r\n{4}",
+ "resourceWithCommentLabelOutdated": "{0}: {1}\r\n{2}\r\n{3}\r\n{4} から期限切れ",
"resourceWithCommentThreadsLabel": "{0}、完全なパス {1} のコメント",
- "rootCommentsLabel": "現在のワークスペースに対するコメント"
+ "resourceWithRepliesLabel": "{0} {1}",
+ "rootCommentsLabel": "現在のワークスペースに対するコメント",
+ "showing filtered results": "{0}/{1} を表示中"
+ },
+ "vs/workbench/contrib/comments/browser/commentsViewActions": {
+ "comment sorts": "並べ替え基準",
+ "comments": "コメント",
+ "commentsClearFilterText": "フィルター テキストをクリア",
+ "focusCommentsFilter": "コメント フィルターにフォーカス",
+ "focusCommentsList": "コメント ビューにフォーカス",
+ "resolved": "解決済みの内容を表示する",
+ "sorting by position in file": "ファイル内の位置:",
+ "sorting by updated at": "更新時刻",
+ "toggle resolved": "解決済みの内容を表示する",
+ "toggle sorting by resource": "ファイル内の位置:",
+ "toggle sorting by updated at": "更新時刻",
+ "toggle unresolved": "未解決の内容を表示する",
+ "unresolved": "未解決の内容を表示する"
+ },
+ "vs/workbench/contrib/comments/browser/commentThreadBody": {
+ "commentThreadAria": "{0} コメントを含むコメント スレッド。{1}。",
+ "commentThreadAria.document": "ドキュメント全体に {0} コメントを含むコメント スレッド。{1}。",
+ "commentThreadAria.withRange": "{1} から {2} 行目の {0} 件のコメントを含むコメント スレッド。{3}。"
+ },
+ "vs/workbench/contrib/comments/browser/commentThreadHeader": {
+ "collapseIcon": "レビュー コメントを折りたたむためのアイコン。",
+ "label.collapse": "折りたたみ",
+ "startThread": "ディスカッションを開始"
+ },
+ "vs/workbench/contrib/comments/browser/commentThreadWidget": {
+ "commentLabel": "コメント",
+ "commentLabelWithKeybinding": "{0}、ユーザー補助のヘルプに ({1}) を使用する",
+ "commentLabelWithKeybindingNoKeybinding": "{0}、現在キー バインドを介してトリガーできない [ユーザー補助のヘルプを開く] コマンドを実行します。"
+ },
+ "vs/workbench/contrib/comments/browser/commentThreadZoneWidget": {
+ "confirmCollapse": "このコメント スレッドを折りたたむと、未送信のコメントが破棄されます。これらのコメントを破棄しますか?",
+ "discard": "破棄",
+ "neverAskAgain": "次回から表示しない"
},
"vs/workbench/contrib/comments/browser/reactionsAction": {
+ "comment.reactionLabelMany": "{2} で {0}{1} 件のリアクション",
+ "comment.reactionLabelNone": "{0}{1} リアクション",
+ "comment.reactionLabelOne": "{1} で {0} 1 件のリアクション",
+ "comment.reactionLessThanTen": "{0}{1} が {2} と反応しました",
+ "comment.reactionMoreThanTen": "{0}{1} とその他 {2} が {3} と反応しました",
+ "comment.toggleableReaction": "リアクションを切り替え、",
"pickReactions": "反応を選択..."
},
- "vs/workbench/contrib/comments/common/commentModel": {
- "noComments": "このワークスペースにコメントはまだありません。"
+ "vs/workbench/contrib/comments/common/commentContextKeys": {
+ "comment": "コメントのコンテキスト値",
+ "commentController": "コメント スレッドに関連付けられているコメント コントローラー ID",
+ "commentFocused": "コメントにフォーカスがあるときに設定する",
+ "commentIsEmpty": "コメントに入力がない場合に設定する",
+ "commentThread": "コメント スレッドのコンテキスト値",
+ "commentThreadIsEmpty": "コメント スレッドにコメントがない場合に設定する",
+ "commentingEnabled": "コメント機能が有効になっているかどうか",
+ "editorHasCommentingRange": "アクティブなエディターにコメント範囲があるかどうか",
+ "hasComment": "アクティブ カーソルの現在の位置にコメントがあるかどうか",
+ "hasCommentingProvider": "開いているワークスペースにコメントまたはコメント範囲があるかどうか。",
+ "hasCommentingRange": "アクティブカーソルの位置にコメント範囲があるかどうか"
+ },
+ "vs/workbench/contrib/customEditor/browser/customEditorInput": {
+ "editorCannotMove": "'{0}' を移動できません: エディターには、現在のウィンドウでのみ保存できる変更が含まれています。",
+ "editorUnsupportedInWindow": "このウィンドウでエディターを開くことができません。元のウィンドウでのみ保存できる変更が含まれています。",
+ "reopenInOriginalWindow": "元のウィンドウで開く"
},
"vs/workbench/contrib/customEditor/common/contributedCustomEditors": {
"builtinProviderDisplayName": "ビルトイン"
@@ -4649,6 +8145,9 @@
"vs/workbench/contrib/customEditor/common/customEditor": {
"context.customEditor": "現在アクティブなカスタム エディターの viewType。"
},
+ "vs/workbench/contrib/customEditor/common/customTextEditorModel": {
+ "vetoExtHostRestart": "'{0}' 用に提供された拡張機能のテキスト エディターがまだ開いているため、それ以外の場合は閉じます。"
+ },
"vs/workbench/contrib/customEditor/common/extensionPoint": {
"contributes.customEditors": "提供されるカスタム エディター。",
"contributes.displayName": "カスタム エディターの、人間が判読できる名前です。これは、使用するエディターを選択するときにユーザーに表示されます。",
@@ -4657,7 +8156,11 @@
"contributes.priority.option": "ユーザーがリソースを開いたときにこのエディターが自動的に使用されることはありませんが、ユーザーは [再び開く] コマンドを使用してこのエディターに切り替えることができます。",
"contributes.selector": "カスタム エディターが有効にされている glob のセット。",
"contributes.selector.filenamePattern": "カスタム エディターが有効にされている glob。",
- "contributes.viewType": "カスタム エディターの識別子。これはすべてのカスタム エディターにわたって一意である必要があるため、'viewType' の一部として拡張機能 ID を含めることをお勧めします。'viewType' は、'vscode.registerCustomEditorProvider' や、'onCustomEditor:${id}' [アクティブ化イベント](https://code.visualstudio.com/api/references/activation-events) でカスタム エディターを登録するときに使用されます。"
+ "contributes.viewType": "カスタム エディターの識別子。これはすべてのカスタム エディターにわたって一意である必要があるため、'viewType' の一部として拡張機能 ID を含めることをお勧めします。'viewType' は、'vscode.registerCustomEditorProvider' や、'onCustomEditor:${id}' [アクティブ化イベント](https://code.visualstudio.com/api/references/activation-events) でカスタム エディターを登録するときに使用されます。",
+ "customEditors": "カスタム エディター",
+ "customEditors filenamePattern": "ファイル名パターン",
+ "customEditors priority": "優先度",
+ "customEditors view type": "ビューの種類"
},
"vs/workbench/contrib/debug/browser/baseDebugView": {
"debug.lazyButton.tooltip": "クリックして展開"
@@ -4666,17 +8169,18 @@
"addBreakpoint": "ブレークポイントの追加",
"addConditionalBreakpoint": "条件付きブレークポイントの追加...",
"addLogPoint": "ログポイントを追加...",
+ "addTriggeredBreakpoint": "トリガーされたブレークポイントの追加...",
"breakpoint": "ブレークポイント",
"breakpointHasConditionDisabled": "この {0} には削除時に失われる {1} があります。代わりに {0} を有効にすることを検討してください。",
"breakpointHasConditionEnabled": "この {0} には削除時に失われる {1} があります。代わりに {0} を無効にすることを検討してください。",
- "cancel": "キャンセル",
+ "breakpointHelper": "クリックしてブレークポイントを追加します",
"condition": "条件",
"debugIcon.breakpointCurrentStackframeForeground": "現在のブレークポイント スタック フレームのアイコン色。",
"debugIcon.breakpointDisabledForeground": "無効なブレークポイントのアイコン色。",
"debugIcon.breakpointForeground": "ブレークポイントのアイコンの色。",
"debugIcon.breakpointStackframeForeground": "すべてのブレークポイント スタック フレームのアイコン色。",
"debugIcon.breakpointUnverifiedForeground": "未確認のブレークポイントのアイコン色。",
- "disable": "無効にする",
+ "disable": "無効にする(&&D)",
"disableBreakpoint": "{0} を無効にする",
"disableBreakpointOnLine": "行のブレークポイントの無効化",
"disableInlineColumnBreakpoint": "列 {0} のインライン ブレークポイントを無効化",
@@ -4685,7 +8189,7 @@
"editBreakpoints": "ブレークポイントの編集",
"editInlineBreakpointOnColumn": "列 {0} のインライン ブレークポイントを編集",
"editLineBreakpoint": "行のブレークポイントの編集",
- "enable": "有効にする",
+ "enable": "有効にする(&&E)",
"enableBreakpoint": "{0} を有効にする",
"enableBreakpointOnLine": "行のブレークポイントの有効化",
"enableBreakpoints": "列 {0} のインライン ブレークポイントを有効化",
@@ -4696,39 +8200,44 @@
"removeBreakpoints": "ブレークポイントの削除",
"removeInlineBreakpointOnColumn": "列 {0} のインライン ブレークポイントを削除",
"removeLineBreakpoint": "行のブレークポイントの削除",
- "removeLogPoint": "{0} の削除",
+ "removeLogPoint": "{0} の削除(&&R)",
"runToLine": "行まで実行"
},
- "vs/workbench/contrib/debug/browser/breakpointWidget": {
- "breakpointType": "ブレークポイント タイプ",
- "breakpointWidgetExpressionPlaceholder": "式が true と評価される場合に中断します。'Enter' を押して受け入れるか 'Esc' を押して取り消します。",
- "breakpointWidgetHitCountPlaceholder": "ヒット カウント条件が満たされる場合に中断します。'Enter' を押して受け入れるか 'Esc' を押して取り消します。",
- "breakpointWidgetLogMessagePlaceholder": "ブレークポイントにヒットしたときにログに記録するメッセージ。{} 内の式は補間されます。受け入れるには 'Enter' を、キャンセルするには 'esc' を押します。",
- "expression": "式",
- "hitCount": "ヒット カウント",
- "logMessage": "ログ メッセージ"
- },
"vs/workbench/contrib/debug/browser/breakpointsView": {
"access": "アクセス",
"activateBreakpoints": "ブレークポイントのアクティブ化の切り替え",
+ "addDataBreakpointOnAddress": "アドレスにデータ ブレークポイントを追加する",
"addFunctionBreakpoint": "関数ブレークポイントの追加",
"breakpoint": "ブレークポイント",
"breakpointUnsupported": "このタイプのブレークポイントはデバッガーではサポートされていません",
"breakpoints": "ブレークポイント",
+ "dataBreakPointExpresionAriaLabel": "式を入力します。式が true と評価される場合にデータ ブレークポイントを中断します",
+ "dataBreakPointHitCountAriaLabel": "ヒット カウントを入力します。ヒット カウントが満たされる場合にデータ ブレークポイントを中断します。",
"dataBreakpoint": "データ ブレークポイント",
+ "dataBreakpointAccessType": "監視するアクセスの種類を選択します",
+ "dataBreakpointAddrFormat": "アドレスは、\"[Start] - [End]\" または \"[Start] + [Bytes]\" という形式の数値の範囲である必要があります",
+ "dataBreakpointAddrStartEnd": "数値は、\"0x\" で始まる 10 進数の整数または 16 進値である必要があります。 {0} を取得しました",
+ "dataBreakpointError": "{0} にデータ ブレークポイントを設定できませんでした: {1}",
+ "dataBreakpointExpressionPlaceholder": "式が true と評価されたときに中断",
+ "dataBreakpointHitCountPlaceholder": "ヒット カウントが満たされる場合に中断します",
+ "dataBreakpointMemoryRangePlaceholder": "絶対範囲 (0x1234 - 0x1300) またはアドレスの後のバイト範囲 (0x1234 + 0xff)",
+ "dataBreakpointMemoryRangePrompt": "中断するメモリ範囲を入力してください",
"dataBreakpointUnsupported": "このデバッグの種類ではサポートされていないデータ ブレークポイント",
"dataBreakpointsNotSupported": "このデバッグの種類では、データ ブレークポイントはサポートされていません。",
+ "debug.decimal.address": "10 進アドレス: {0}",
"disableAllBreakpoints": "すべてのブレークポイントを無効にする",
"disabledBreakpoint": "無効なブレークポイント",
"disabledLogpoint": "無効なログポイント",
- "editBreakpoint": "関数ブレークポイントの編集...",
+ "editBreakpoint": "関数の条件の編集...",
"editCondition": "条件の編集...",
+ "editDataBreakpointOnAddress": "アドレスの編集...",
"editHitCount": "ヒット カウントの編集...",
+ "editMode": "編集モード...",
"enableAllBreakpoints": "すべてのブレークポイントを有効にする",
"exceptionBreakpointAriaLabel": "例外のブレークポイント条件の入力",
"exceptionBreakpointPlaceholder": "式が true と評価されたときに中断",
- "expression": "式の条件: {0}",
- "expressionAndHitCount": "式: {0} |ヒット カウント: {1}",
+ "expression": "条件: {0}",
+ "expressionAndHitCount": "条件: {0} | ヒット カウント: {1}",
"expressionCondition": "式の条件: {0}",
"functionBreakPointExpresionAriaLabel": "式を入力します。式が true と評価される場合に関数ブレークポイントを中断します",
"functionBreakPointHitCountAriaLabel": "ヒット カウントを入力します。ヒット カウントが満たされる場合に関数ブレークポイントを中断します。",
@@ -4744,6 +8253,7 @@
"instructionBreakpointAtAddress": "アドレス {0} の命令ブレークポイント",
"instructionBreakpointUnsupported": "このデバッグの種類では命令ブレークポイントはサポートされていません",
"logMessage": "ログ メッセージ: {0}",
+ "miDataBreakpoint": "データ ブレークポイント(&&D)...",
"miDisableAllBreakpoints": "すべてのブレークポイントを無効にする(&&L)",
"miEnableAllBreakpoints": "すべてのブレークポイントを有効にする(&&E)",
"miFunctionBreakpoint": "関数のブレークポイント(&&F)...",
@@ -4752,11 +8262,29 @@
"reapplyAllBreakpoints": "すべてのブレークポイントを再適用する",
"removeAllBreakpoints": "すべてのブレークポイントを削除する",
"removeBreakpoint": "ブレークポイントの削除",
+ "selectBreakpointMode": "ブレークポイント モードを選択する",
+ "triggeredBy": "ブレークポイントの後のヒット: {0}",
"unverifiedBreakpoint": "未確認のブレークポイント",
"unverifiedExceptionBreakpoint": "未検証の例外ブレークポイント",
"unverifiedLogpoint": "未確認のログポイント",
"write": "書き込み"
},
+ "vs/workbench/contrib/debug/browser/breakpointWidget": {
+ "bpMode": "モード",
+ "breakpointType": "ブレークポイント タイプ",
+ "breakpointWidgetExpressionPlaceholder": "式が true と評価される場合に中断します。'{0}' を押して受け入れるか '{1}' を押して取り消します。",
+ "breakpointWidgetHitCountPlaceholder": "ヒット カウント条件が満たされる場合に中断します。'{0}' を押して受け入れるか '{1}' を押して取り消します。",
+ "breakpointWidgetLogMessagePlaceholder": "ブレークポイントにヒットしたときにログに記録するメッセージ。{} 内の式は補間されます。受け入れるには '{0}' を、キャンセルするには '{1}' を押します。",
+ "expression": "式",
+ "hitCount": "ヒット カウント",
+ "logMessage": "ログ メッセージ",
+ "noBpSource": "ソースを読み込めませんでした。",
+ "noTriggerByBreakpoint": "なし",
+ "ok": "OK",
+ "selectBreakpoint": "ブレークポイントの選択",
+ "triggerByLoading": "読み込み中...",
+ "triggeredBy": "ブレークポイントの待機"
+ },
"vs/workbench/contrib/debug/browser/callStackEditorContribution": {
"focusedStackFrameLineHighlight": "フォーカスされたスタック フレーム位置の行を強調表示する背景色。",
"topStackFrameLineHighlight": "上位のスタック フレーム位置の行を強調表示する背景色。"
@@ -4764,7 +8292,7 @@
"vs/workbench/contrib/debug/browser/callStackView": {
"callStackAriaLabel": "コール スタックのデバッグ",
"collapse": "すべて折りたたむ",
- "loadAllStackFrames": "スタック フレームをすべて読み込む",
+ "loadAllStackFrames": "スタック フレームをさらに読み込む",
"paused": "一時停止",
"pausedOn": "{0} で一時停止",
"restartFrame": "フレームの再起動",
@@ -4777,21 +8305,30 @@
"stackFrameAriaLabel": "スタック フレーム {0}、行 {1}、{2}",
"threadAriaLabel": "スレッド {0} {1}"
},
+ "vs/workbench/contrib/debug/browser/callStackWidget": {
+ "failedToLoadFrames": "スタック フレームを読み込めませんでした: {0}",
+ "goToFile": "ファイルを開く",
+ "stackFrameLocation": "行 {0} 列 {1}",
+ "stackTrace": "スタック トレース",
+ "stackTraceLabel": "{0}、{2} の行 {1}"
+ },
"vs/workbench/contrib/debug/browser/debug.contribution": {
"SetNextStatement": "次のステートメントの設定",
- "addToWatchExpressions": "ウォッチに追加",
"allowBreakpointsEverywhere": "任意のファイルにブレークポイントを設定できるようにします。",
- "always": "ステータス バーにデバッグを常に表示する",
+ "always": "ステータス バーにデバッグ項目を常に表示する",
"breakWhenValueChanges": "値が変更されたときに中断する",
"breakWhenValueIsAccessed": "値がアクセスされたときに中断する",
"breakWhenValueIsRead": "値が読み込まれたときに中断する",
"breakpoints": "ブレークポイント",
"callStack": "コール スタック",
"cancel": "デバッグを取り消します。",
- "copyAsExpression": "式としてコピー",
+ "closeReadonlyTabsOnEnd": "デバッグ セッションの終了時に、そのセッションに関連付けられているすべての読み取り専用タブが閉じられます",
"copyStackTrace": "呼び出し履歴のコピー",
"copyValue": "値のコピー",
- "debug.autoExpandLazyVariables": "デバッガーによって遅延解決される変数 (ゲッターなど) の値を自動的に表示します。",
+ "debug.autoExpandLazyVariables": "ゲッターなど、遅延解決される変数をデバッガーによって自動的に解決および展開するかどうかを制御します。",
+ "debug.autoExpandLazyVariables.auto": "スクリーン リーダー最適化モードの場合、lazy 変数を自動的に展開します。",
+ "debug.autoExpandLazyVariables.off": "lazy 変数を自動的に展開しません。",
+ "debug.autoExpandLazyVariables.on": "常に lazy 変数を自動的に展開します。",
"debug.confirmOnExit": "アクティブなデバッグ セッションがある場合に、ウィンドウを閉じたときに確認を行うかどうかを制御します。",
"debug.confirmOnExit.always": "デバッグ セッションがあるかどうかを常に確認します。",
"debug.confirmOnExit.never": "確認しません。",
@@ -4802,10 +8339,18 @@
"debug.console.fontSize": "デバッグ コンソール内のフォント サイズをピクセル単位で制御します。",
"debug.console.historySuggestions": "以前に型指定された入力をデバッグ コンソールが提案する必要があるかどうかを制御します。",
"debug.console.lineHeight": "デバッグ コンソール内での行の高さをピクセル単位で制御します。フォント サイズから行の高さを計算するには 0 を使用します。",
+ "debug.console.maximumLines": "デバッグ コンソール内の最大行数を制御します。",
"debug.console.wordWrap": "行をデバッグ コンソールで折り返す必要があるかどうかを制御します。",
"debug.disassemblyView.showSourceCode": "逆アセンブリ ビューでソース コードを表示する。",
+ "debug.enableStatusBarColor": "デバッガーがアクティブな場合のステータス バーの色。",
"debug.focusEditorOnBreak": "デバッガーが中断したときにエディターにフォーカスを設定するかどうかを制御します。",
"debug.focusWindowOnBreak": "デバッガーが中断したときにワークベンチ ウィンドウにフォーカスするかどうかを制御します。",
+ "debug.gutterMiddleClickAction.conditionalBreakpoint": "条件付きブレークポイントを追加します。",
+ "debug.gutterMiddleClickAction.logpoint": "ログポイントを追加します。",
+ "debug.gutterMiddleClickAction.none": "アクションを実行しないでください。",
+ "debug.gutterMiddleClickAction.triggeredBreakpoint": "トリガーされたブレークポイントを追加します。",
+ "debug.hideLauncherWhileDebugging": "デバッグがアクティブな間は、[実行とデバッグ] ビューのタイトル バーで [デバッグの開始] コントロールを非表示にします。{0} が `docked` でない場合にのみ関連します。",
+ "debug.hideSlowPreLaunchWarning": "'preLaunchTask' がしばらくしても終了しない場合に表示される警告を非表示にします。",
"debug.onTaskErrors": "preLaunchTask の実行後にエラーが発生した場合の処理を制御します。",
"debug.saveBeforeStart": "デバッグ セッションを開始する前にどのエディターを保存するかを制御します。",
"debug.saveBeforeStart.allEditorsInActiveGroup": "デバッグ セッションを開始する前に、アクティブなグループ内のすべてのエディターを保存します。",
@@ -4815,10 +8360,14 @@
"debugAnyway": "タスクのエラーを無視し、デバッグを開始します。",
"debugCategory": "デバッグ",
"debugConfigurationTitle": "デバッグ",
- "debugFocusConsole": "デバッグ コンソール ビュー にフォーカスする",
"debugPanel": "デバッグ コンソール",
+ "debugToolBar.commandCenter": "`(試験段階)` コマンド センターにデバッグ ツール バーを表示します。",
+ "debugToolBar.docked": "デバッグ ビューにのみデバッグ ツール バーを表示します。",
+ "debugToolBar.floating": "すべてのビューにデバッグ ツール バーを表示します。",
+ "debugToolBar.hidden": "デバッグ ツール バーを表示しません。",
"disassembly": "逆アセンブリ",
"editWatchExpression": "式の編集",
+ "gutterMiddleClickAction": "マウスのミドル ボタンでエディターの余白をクリックするときに実行するアクションを制御します。",
"inlineBreakpoint": "インライン ブレークポイント",
"inlineValues": "デバッグ中にエディターの行内に変数値を表示します。",
"inlineValues.focusNoScroll": "言語でインライン値の場所がサポートされている場合、デバッグ中に変数値をインラインでエディターに表示します。",
@@ -4840,10 +8389,11 @@
"miStepOut": "ステップ アウトする(&&U)",
"miStepOver": "ステップ オーバーする(&&O)",
"miStopDebugging": "デバッグの停止(&&S)",
+ "miToggleBreakpoint": "ブレークポイントの切り替え",
"miToggleDebugConsole": "デバッグ コンソール(&&B)",
"miViewRun": "実行(&&R)",
- "never": "今後ステータス バーにデバッグを表示しない",
- "onFirstSessionStart": "初めてデバッグが開始されたときのみステータス バーにデバッグを表示する",
+ "never": "ステータス バーにデバッグ項目を表示しない",
+ "onFirstSessionStart": "初めてデバッグが開始されたときのみステータス バーにデバッグ項目を表示する",
"openDebug": "いつデバッグ ビューを開くかを制御します。",
"openExplorerOnEnd": "デバッグ セッションの終了時にエクスプローラー ビューを自動的に開きます。",
"prompt": "ユーザーに確認します。",
@@ -4851,18 +8401,20 @@
"restartFrame": "フレームの再起動",
"run": "実行するかデバッグします...",
"run and debug": "実行とデバッグ",
+ "runMenu": "実行",
"setValue": "値の設定",
"showBreakpointsInOverviewRuler": "ブレークポイントを概要ルーラーに表示するかどうかを制御します。",
"showErrors": "問題ビューを表示し、デバッグを開始しません。",
- "showInStatusBar": "いつデバッグ ステータス バーを表示するかを制御します。",
+ "showInStatusBar": "デバッグ ステータス バー項目を表示するタイミングを制御します。",
"showInlineBreakpointCandidates": "デバッグ中にインライン ブレークポイント候補の装飾をエディターに表示するかどうかを制御します。",
"showSubSessionsInToolBar": "デバッグ ツール バーにデバッグのサブセッションを表示するかどうかを制御します。false に設定されている場合、サブセッションに対する停止コマンドによって、親セッションも停止します。",
+ "showVariableTypes": "デバッグ セッション中に変数の種類を変数ペインに表示する",
"startDebugPlaceholder": "実行する起動構成の名前を入力します。",
"startDebuggingHelp": "デバッグの開始",
"tasksQuickAccessHelp": "すべてのデバッグ コンソールを表示する",
"tasksQuickAccessPlaceholder": "開くデバッグ コンソールの名前を入力します。",
"terminateThread": "スレッドを終了",
- "toolBarLocation": "デバッグ ツールバーの位置を制御します。すべてのビューに表示する場合には `floating`、デバッグ ビューの場合は `docked` に設定します。その他の場合は、`hidden` にします。",
+ "toolBarLocation": "デバッグ ツール バーの場所を制御します。すべてのビューで `floating`、デバッグ ビューで `docked`、`commandCenter` ({0} が必要)、または `hidden` のいずれかを指定します。",
"variables": "変数",
"viewMemory": "バイナリ データの表示",
"watch": "ウォッチ式"
@@ -4870,23 +8422,26 @@
"vs/workbench/contrib/debug/browser/debugActionViewItems": {
"addConfigTo": "構成 ({0}) の追加...",
"addConfiguration": "構成の追加...",
+ "commentLabelWithKeybinding": "{0}、ユーザー補助のヘルプに ({1}) を使用する",
+ "commentLabelWithKeybindingNoKeybinding": "{0}、現在キー バインドを介してトリガーできない [ユーザー補助のヘルプを開く] コマンドを実行します。",
"debugLaunchConfigurations": "起動構成のデバッグ",
"debugSession": "デバッグ セッション",
"noConfigurations": "構成がありません"
},
"vs/workbench/contrib/debug/browser/debugAdapterManager": {
"CouldNotFindLanguage": "{0} をデバッグするための拡張機能がありません。Marketplace に {0} の拡張機能があるかどうかを検索しますか?",
- "cancel": "キャンセル",
"debugName": "構成の名前。起動構成ドロップダウン メニューに表示されます。",
"debugNoType": "デバッガー 'type' は省略不可で、'string' 型でなければなりません。",
"debugPostDebugTask": "デバッグ セッションの終了前に実行するタスク。",
"debugPrelaunchTask": "デバッグ セッションの開始前に実行するタスク。",
"debugServer": "デバッグ拡張機能の開発のみ。ポートが指定の VS Code の場合、サーバー モードで実行中のデバッグ アダプターへの接続が試行されます。",
- "findExtension": "{0} 拡張機能の検索",
+ "findExtension": "{0} 拡張機能の検索(&&F)",
"installExt": "拡張機能をインストールする...",
"installLanguage": "{0} の拡張機能のインストール...",
+ "moreOptionsForDebugType": "その他 {0} 個のオプション...",
"selectDebug": "デバッガーの選択",
- "suggestedDebuggers": "提案"
+ "suggestedDebuggers": "提案",
+ "suppressMultipleSessionWarning": "同じデバッグ構成を複数回起動しようとしたときの警告を無効にしました。"
},
"vs/workbench/contrib/debug/browser/debugColors": {
"debugIcon.continueForeground": "続行するためのデバッグ ツール バー アイコン。",
@@ -4903,13 +8458,19 @@
"debugToolBarBorder": "デバッグ ツール バーの境界線色。"
},
"vs/workbench/contrib/debug/browser/debugCommands": {
+ "addConfiguration": "構成の追加...",
"addInlineBreakpoint": "インライン ブレークポイントを追加",
+ "addToWatchExpressions": "ウォッチに追加",
+ "attachToCurrentCodeRenderer": "現在のコード レンダラーにアタッチする",
"callStackBottom": "呼び出し履歴の一番下に移動",
"callStackDown": "呼び出し履歴の下へ移動",
"callStackTop": "呼び出し履歴の先頭に移動",
"callStackUp": "呼び出し履歴を上へ移動",
"chooseLocation": "特定の場所を選択する",
"continueDebug": "続行",
+ "copyAddress": "アドレスのコピー",
+ "copyAsExpression": "式としてコピー",
+ "copyValue": "値のコピー",
"debug": "デバッグ",
"disconnect": "切断",
"disconnectSuspend": "切断して中断する",
@@ -4921,18 +8482,20 @@
"openLaunchJson": "'{0}' を開く",
"openLoadedScript": "読み込み済みのスクリプトを開く...",
"pauseDebug": "一時停止",
- "prevDebugConsole": "以前のデバッグ コンソールへのフォーカス",
+ "prevDebugConsole": "前のデバッグ コンソールへのフォーカス",
"restartDebug": "再起動",
"selectAndStartDebugging": "選択してデバッグを開始",
"selectDebugConsole": "デバッグ コンソールを選択",
"selectDebugSession": "デバッグ セッションの選択",
+ "selectExceptionBreakpointsPlaceholder": "有効な例外ブレークポイントを選択する",
"startDebug": "デバッグの開始",
"startWithoutDebugging": "デバッグなしで開始",
"stepIntoDebug": "ステップ インする",
"stepIntoTargetDebug": "ターゲットにステップ イン",
"stepOutDebug": "ステップ アウト",
"stepOverDebug": "ステップ オーバー",
- "stop": "停止"
+ "stop": "停止",
+ "toggleExceptionBreakpoints": "例外ブレークポイントの切り替え"
},
"vs/workbench/contrib/debug/browser/debugConfigurationManager": {
"DebugConfig.failed": "'launch.json' ファイルを '.vscode' フォルダー ({0}) 内に作成できません。",
@@ -4945,6 +8508,7 @@
"workbench.action.debug.startDebug": "新しいデバッグ セッションを開始する"
},
"vs/workbench/contrib/debug/browser/debugEditorActions": {
+ "EditBreakpointEditorAction": "デバッグ: ブレークポイントの編集",
"addToWatch": "ウォッチに追加",
"closeExceptionWidget": "例外ウィジェットを閉じる",
"conditionalBreakpointEditorAction": "デバッグ: 条件付きブレークポイントの追加...",
@@ -4955,18 +8519,21 @@
"logPointEditorAction": "デバッグ: ログポイントの追加...",
"miConditionalBreakpoint": "条件付きブレークポイント(&&C)...",
"miDisassemblyView": "&&DisassemblyView",
+ "miEditBreakpoint": "ブレークポイントの編集(&&E)",
"miLogPoint": "ログポイント(&&L)...",
"miToggleBreakpoint": "ブレークポイントの切り替え(&&B)",
+ "miTriggerByBreakpoint": "トリガーされたブレークポイント...(&&T)",
"mitogglesource": "&&ToggleSource",
"openDisassemblyView": "逆アセンブリ ビューを開く",
"runToCursor": "カーソル行の前まで実行",
"showDebugHover": "デバッグ: ホバーの表示",
"stepIntoTargets": "ターゲットにステップ イン",
"toggleBreakpointAction": "デバッグ: ブレークポイントの切り替え",
- "toggleDisassemblyViewSourceCode": "逆アセンブリ ビューでソース コードを切り替える"
+ "toggleDisassemblyViewSourceCode": "逆アセンブリ ビューでソース コードを切り替える",
+ "toggleDisassemblyViewSourceCodeDescription": "逆アセンブリでのソース コードの表示と非表示を切り替えます",
+ "triggerByBreakpointEditorAction": "デバッグ: トリガーされたブレークポイントの追加..."
},
"vs/workbench/contrib/debug/browser/debugEditorContribution": {
- "addConfiguration": "構成の追加...",
"editor.inlineValuesBackground": "デバッグのインライン値の背景色です。",
"editor.inlineValuesForeground": "デバッグのインライン値の文字色です。"
},
@@ -4996,6 +8563,7 @@
"debugBreakpointLog": "ログ ブレークポイントのアイコン。",
"debugBreakpointLogDisabled": "無効なログ ブレークポイントのアイコン。",
"debugBreakpointLogUnverified": "未確認のログ ブレークポイントのアイコン。",
+ "debugBreakpointPendingOnTrigger": "別のブレークポイントで待機しているブレークポイントのアイコン。",
"debugBreakpointUnsupported": "サポートされていないブレークポイントのアイコン。",
"debugBreakpointUnverified": "未確認のブレークポイントのアイコン。",
"debugCollapseAll": "デバッグ ビューにあるすべて折りたたみアクションのアイコン。",
@@ -5028,6 +8596,7 @@
"variablesViewIcon": "変数ビューのアイコンを表示します。",
"watchExpressionRemove": "ウォッチ ビューの [削除] アクションのアイコン。",
"watchExpressionsAdd": "ウォッチ ビューの追加アクションのアイコン。",
+ "watchExpressionsAddDataBreakpoint": "ブレークポイント ビューのデータ ブレークポイントの追加アクションのアイコン。",
"watchExpressionsAddFuncBreakpoint": "ウォッチ ビューの関数ブレークポイントの追加アクションのアイコン。",
"watchExpressionsRemoveAll": "ウォッチ ビューにある、すべてを削除アクションのアイコン。",
"watchViewIcon": "ウォッチ ビューのアイコンを表示します。"
@@ -5038,15 +8607,16 @@
"configure": "構成",
"contributed": "貢献済み",
"customizeLaunchConfig": "起動構成の設定",
+ "mostRecent": "最近の新着",
"noDebugResults": "一致する起動構成がありません",
"providerAriaLabel": "{0} の貢献済み構成",
"removeLaunchConfig": "起動構成の削除"
},
"vs/workbench/contrib/debug/browser/debugService": {
"1activeSession": "1 つのアクティブなセッション",
+ "active debug session": "終了するデバッグ セッションがまだ実行中です。",
"breakpointAdded": "ブレークポイント、行 {0}、ファイル {1} が追加されました",
"breakpointRemoved": "ブレークポイント、行 {0}、ファイル {1} を削除しました",
- "cancel": "キャンセル",
"compoundMustHaveConfigurations": "複合構成を開始するには、複合に \"configurations\" 属性が設定されている必要があります。",
"configMissing": "構成 '{0}' が 'launch.json' 内にありません。",
"debugAdapterCrash": "デバッグ アダプター プロセスが予期せず終了しました ({0})",
@@ -5068,12 +8638,14 @@
},
"vs/workbench/contrib/debug/browser/debugSession": {
"debuggingStarted": "デバッグは開始されました。",
+ "debuggingStartedNoDebug": "デバッグなしで実行を開始しました。",
"debuggingStopped": "デバッグは停止されました。",
"noDebugAdapter": "利用可能なデバッガーがありません。'{0}' を送信できません",
+ "sessionDoesNotSupporBytesBreakpoints": "セッションはバイトを含むブレークポイントをサポートしていません",
"sessionNotReadyForBreakpoints": "ブレークポイント用のセッションの準備が整っていません"
},
"vs/workbench/contrib/debug/browser/debugSessionPicker": {
- "moveFocusedView.selectView": "Search debug sessions by name",
+ "moveFocusedView.selectView": "デバッグ セッションを名前で検索する",
"workbench.action.debug.spawnFrom": "セッション {0} が {1} から生成されました",
"workbench.action.debug.startDebug": "新しいデバッグ セッションを開始する"
},
@@ -5086,8 +8658,9 @@
"DebugTaskNotFound": "指定したタスクが見つかりませんでした。",
"DebugTaskNotFoundWithTaskId": "タスク '{0}' を見つけられませんでした。",
"abort": "中止",
- "cancel": "キャンセル",
- "debugAnyway": "このままデバッグ",
+ "configureTask": "タスクの構成",
+ "debugAnyway": "このままデバッグ(&&D)",
+ "debugAnywayNoMemo": "このままデバッグする",
"invalidTaskReference": "タスク '{0}' は、別のワークスペース フォルダーにあるため、起動構成からは参照できません。",
"preLaunchTaskError": "preLaunchTask '{0}' を実行後にエラーが存在します。",
"preLaunchTaskErrors": "preLaunchTask '{0}' を実行後にエラーが存在します。",
@@ -5095,9 +8668,9 @@
"preLaunchTaskTerminated": "preLaunchTask '{0}' が終了しました。",
"remember": "ユーザー設定での自分の選択を覚えておいてください",
"rememberTask": "このタスクの選択内容を保存する",
- "showErrors": "エラーの表示",
- "taskNotTracked": "タスク '{0}' を追跡できません。問題マッチャーが定義されていることを確認してください。",
- "taskNotTrackedWithTaskId": "タスク '{0}' を追跡できません。問題マッチャーが定義されていることを確認してください。"
+ "runningTask": "preLaunchTask '{0}' を待機しています...",
+ "showErrors": "エラーの表示(&&S)",
+ "taskNotTracked": "タスク '{0}' は終了せず、'problemMatcher' が定義されていません。ウォッチ タスクの問題マッチャーを定義してください。"
},
"vs/workbench/contrib/debug/browser/debugToolBar": {
"notebook.moreRunActionsLabel": "その他...",
@@ -5107,6 +8680,7 @@
"vs/workbench/contrib/debug/browser/debugViewlet": {
"debugPanel": "デバッグ コンソール",
"miOpenConfigurations": "構成を開く(&&C)",
+ "openLaunchConfigDescription": "プログラムのデバッグ方法を構成するために使用するファイルを開きます",
"selectWorkspaceFolder": "launch.json ファイルを作成するワークスペース フォルダーを選択するか、それをワークスペース構成ファイルに追加します",
"startAdditionalSession": "追加のセッションを開始"
},
@@ -5129,10 +8703,13 @@
"vs/workbench/contrib/debug/browser/linkDetector": {
"fileLink": "Ctrl キーを押しながらクリックして{0}",
"fileLinkMac": "command キーを押しながらクリックして{0}",
+ "fileLinkWithPath": "Ctrl キーを押しながらクリックして {0}{1}",
+ "fileLinkWithPathMac": "Command キーを押しながらクリックして {0}{1}",
"followForwardedLink": "転送されたポートを使用してリンク先を表示",
"followLink": "リンク先を表示"
},
"vs/workbench/contrib/debug/browser/loadedScriptsView": {
+ "collapse": "すべて折りたたむ",
"loadedScriptsAriaLabel": "読み込み済みのスクリプトのデバッグ",
"loadedScriptsFolderAriaLabel": "フォルダー {0}、読み込み済みスクリプト、デバッグ",
"loadedScriptsRootFolderAriaLabel": "ワークスペース フォルダー {0}、読み込み済みスクリプト、デバッグ",
@@ -5142,30 +8719,40 @@
},
"vs/workbench/contrib/debug/browser/rawDebugSession": {
"canNotStart": "デバッガーは、デバッグ対象用に新しいタブまたはウィンドウを開く必要がありますが、ブラウザーによってこれが禁止されています。続行するには、アクセス許可を付与する必要があります。",
- "cancel": "キャンセル",
- "continue": "続ける",
+ "continue": "続行(&&C)",
"moreInfo": "詳細情報",
"noDebugAdapter": "利用可能なデバッガーが見つかりません。'{0}' を送信できません。",
"noDebugAdapterStart": "デバッグ アダプターが無いため、デバッグ セッションを開始できません。"
},
"vs/workbench/contrib/debug/browser/repl": {
- "actions.repl.acceptInput": "REPL での入力を反映",
+ "actions.repl.acceptInput": "デバッグ コンソール: 入力を受け付ける",
"actions.repl.copyAll": "デバッグ: コンソールをすべてコピー",
"clearRepl": "コンソールのクリア",
+ "clearRepl.descriotion": "デバッグ REPL からすべてのプログラム出力をクリアします",
"collapse": "すべて折りたたんで表示します。",
+ "commentLabelWithKeybinding": "{0}、ユーザー補助のヘルプに ({1}) を使用する",
+ "commentLabelWithKeybindingNoKeybinding": "{0}、現在キー バインドを介してトリガーできない [ユーザー補助のヘルプを開く] コマンドを実行します。",
"copy": "コピー",
"copyAll": "すべてコピー",
"debugConsole": "デバッグ コンソール",
- "debugConsoleCleared": "デバッグ コンソールがクリアされました",
- "filter": "フィルター",
+ "debugFocusConsole": "デバッグ コンソール ビュー にフォーカスする",
"paste": "貼り付け",
- "repl.action.filter": "フィルター対象の REPL フォーカス コンテンツ",
+ "repl.action.filter": "デバッグ コンソール: フォーカス フィルター",
+ "repl.action.find": "デバッグ コンソール: フォーカス検索",
"selectRepl": "デバッグ コンソールを選択",
+ "showing filtered repl lines": "{0}/{1} を表示中",
"startDebugFirst": "式を評価するデバッグ セッションを開始してください",
- "workbench.debug.filter.placeholder": "フィルター (例: text、!exclude)"
- },
- "vs/workbench/contrib/debug/browser/replFilter": {
- "showing filtered repl lines": "{0}/{1} を表示中"
+ "workbench.debug.filter.placeholder": "フィルター (例: テキスト、! 除外、\\エスケープ)"
+ },
+ "vs/workbench/contrib/debug/browser/replAccessibilityHelp": {
+ "repl.accessibleView": "アクセス可能なビューを開くコマンド{0} では、コンソール出力の文字ナビゲーションで文字を使用できます。",
+ "repl.clear": "[デバッグ: コンソールのクリア] コマンド{0}は、コンソール出力をクリアします。",
+ "repl.help": "デバッグ コンソールは、式の評価とコマンドの実行ができる REPL (Read-Eval-Print-Loop: 読み取り、評価、出力、ループ) 環境であり、{0} を使用してフォーカス可能です。",
+ "repl.history": "デバッグ コンソールの出力履歴は、上下の方向キーを使用して移動できます。",
+ "repl.input": "デバッグ コンソール入力は、次のウィジェットにフォーカス コマンド{0} を使用して出力から移動できます。",
+ "repl.lazyVariables": "設定 `debug.expandLazyVariables` は、変数を自動的に評価するかどうかを制御します。スクリーン リーダーを使用する場合、これは既定で有効になっています。",
+ "repl.output": "デバッグ コンソールの出力は、前のウィジェットにフォーカス コマンド{0} を使用して入力フィールドから移動できます。",
+ "repl.showRunAndDebug": "[実行ビューとデバッグ ビューの表示] コマンド{0}は、[実行とデバッグ] ビューを開き、デバッグに関する詳細情報を提供します。"
},
"vs/workbench/contrib/debug/browser/replViewer": {
"debugConsole": "デバッグ コンソール",
@@ -5174,25 +8761,44 @@
"replRawObjectAriaLabel": "デバッグ コンソール変数 {0}、値 {1}",
"replVariableAriaLabel": "変数 {0}、値 {1}"
},
+ "vs/workbench/contrib/debug/browser/runAndDebugAccessibilityHelp": {
+ "debug.continue": "- デバッグ: 続行コマンド{0} は、次のブレークポイントに到達するまで実行を続けます。",
+ "debug.focusBreakpoints": "- デバッグ: ブレークポイント ビューにフォーカスするコマンド{0} は、フォーカスをブレークポイント ビューに移します。",
+ "debug.focusCallStack": "- デバッグ: コール スタック ビューにフォーカスするコマンド{0} は、フォーカスをコール スタック ビューに移します。",
+ "debug.focusVariables": "- デバッグ: 変数ビューにフォーカスするコマンド{0} は、フォーカスを変数ビューに移します。",
+ "debug.focusWatch": "- デバッグ: ウォッチ ビューにフォーカスするコマンド{0} は、フォーカスをウォッチ ビューに移します。",
+ "debug.help": "デバッグ コンソールでデバッグ出力にアクセスし、式を評価します。デバッグ コンソールは {0} でフォーカスできます。",
+ "debug.restartDebugging": "- [デバッグ: デバッグの再開] コマンド{0}は、現在のデバッグ セッションを再開します。",
+ "debug.showRunAndDebug": "実行とデバッグ ビューの表示コマンド{0} は、現在のビューを開きます。",
+ "debug.startDebugging": "デバッグ: デバッグの開始コマンド{0} はデバッグ セッションを開始します。",
+ "debug.stepInto": "デバッグ: ステップ インするコマンド{0} は、次の関数呼び出しの中へステップ インします。",
+ "debug.stepOut": "- デバッグ: ステップ アウトするコマンド{0} は、現在の関数呼び出しの外へステップ アウトします。",
+ "debug.stepOver": "- デバッグ: ステップ オーバーするコマンド{0} は、現在の関数呼び出しからステップオーバーします。",
+ "debug.stopDebugging": "- [デバッグ: デバッグの停止] コマンド{0}は、現在のデバッグ セッションを停止します。",
+ "debug.views": "デバッグ ビューレットには数種類のビューが含まれており、以下のコマンドを使用してビューのフォーカスを移したり、Tab キーと方向キーを使用してナビゲーションしたりできます。",
+ "debug.watchSetting": "設定 {0} は、ウォッチ変数の変更を通知するかどうかを制御します。",
+ "onceDebugging": "デバッグ中になると以下のコマンドが使用可能になります。"
+ },
"vs/workbench/contrib/debug/browser/statusbarColorProvider": {
+ "commandCenter-activeBackground": "プログラムのデバッグ時のコマンド センターの背景色",
"statusBarDebuggingBackground": "プログラムをデバッグしているときのステータス バーの背景色。ステータス バーはウィンドウの下部に表示されます",
"statusBarDebuggingBorder": "プログラムをデバッグしているときのサイドバーおよびエディターを隔てるステータス バーの境界線の色。ステータス バーはウィンドウの下部に表示されます",
"statusBarDebuggingForeground": "プログラムをデバッグしているときのステータス バーの前景色。ステータス バーはウィンドウの下部に表示されます"
},
"vs/workbench/contrib/debug/browser/variablesView": {
- "cancel": "取り消す",
"collapse": "すべて折りたたむ",
- "install": "インストール",
+ "removeVisualizer": "ビジュアライザーの削除",
+ "useVisualizer": "変数の視覚化...",
"variableAriaLabel": "{0}、値 {1}",
"variableScopeAriaLabel": "スコープ {0}",
"variableValueAriaLabel": "新しい変数値を入力する",
"variablesAriaTreeLabel": "変数のデバッグ",
- "viewMemory.install.progress": "16 進エディターをインストールしています...",
- "viewMemory.prompt": "バイナリ データを検査するには、16 進エディター拡張機能が必要です。今すぐインストールしますか?"
+ "viewMemory.prompt": "バイナリ データを検査するには、この拡張機能が必要です。"
},
"vs/workbench/contrib/debug/browser/watchExpressionsView": {
"addWatchExpression": "式の追加",
"collapse": "すべて折りたたむ",
+ "copyWatchExpression": "式のコピー",
"removeAllWatchExpressions": "すべての式を削除する",
"typeNewValue": "新しい値を入力する",
"watchAriaTreeLabel": "ウォッチ式のデバッグ",
@@ -5203,12 +8809,11 @@
},
"vs/workbench/contrib/debug/browser/welcomeView": {
"allDebuggersDisabled": "すべてのデバッグ拡張機能が無効になっています。デバッグ拡張機能を有効にするか、Marketplace から新しい拡張機能をインストールします。",
- "customizeRunAndDebug": "実行とデバッグをカスタマイズするには、[launch.json ファイルを作成します](command:{0})。",
- "customizeRunAndDebugOpenFolder": "実行とデバッグをカスタマイズするには、[フォルダーを開いた](command:{0})後、launch.json ファイルを作成します。",
- "detectThenRunAndDebug": "[すべての自動デバッグ構成を表示](command: {0})。",
+ "customizeRunAndDebug2": "実行とデバッグをカスタマイズするには、[launch.json ファイルを作成します]({0})。",
+ "customizeRunAndDebugOpenFolder2": "実行とデバッグをカスタマイズするには、[フォルダーを開き]({0})、launch.json ファイルを作成します。",
"openAFileWhichCanBeDebugged": "デバッグまたは実行可能な[ファイルを開きます](command:{0})。",
"run": "実行",
- "runAndDebugAction": "[実行とデバッグ{0}](command:{1})"
+ "runAndDebugAction": "実行とデバッグ"
},
"vs/workbench/contrib/debug/common/abstractDebugAdapter": {
"timeout": "'{1}' の {0} ms 後にタイムアウトします"
@@ -5217,13 +8822,15 @@
"breakWhenValueChangesSupported": "フォーカスされたセッションで値の変更時の中断がサポートされている場合は True です。",
"breakWhenValueIsAccessedSupported": "フォーカスされたブレークポイントで値のアクセス時の中断がサポートされている場合は True です。",
"breakWhenValueIsReadSupported": "フォーカスされたブレークポイントで値の読み取り時の中断がサポートされている場合は True です。",
- "breakpointAccessType": "[ブレークポイント]ビューのフォーカスされたデータ ブレークポイントのアクセスの種類を表します。例: 'read'、'readWrite'、'write'",
+ "breakpointHasModes": "ブレークポイントに切り替え可能な複数のモードがあるかどうか。",
"breakpointInputFocused": "[ブレークポイント] ビューで入力ボックスにフォーカスがある場合は True です。",
+ "breakpointItemIsDataBytes": "ブレークポイント アイテムがバイト範囲のデータ ブレークポイントであるかどうか。",
"breakpointItemType": "[ブレークポイント] ビュー内のフォーカスされた要素の項目の種類を表します。例: 'breakpoint'、'exceptionBreakppint'、'functionBreakpoint'、'dataBreakpoint'",
"breakpointSupportsCondition": "フォーカスされたブレークポイントで条件がサポートされている場合は True です。",
"breakpointWidgetVisibile": "ブレークポイント エディター ゾーン ウィジェットが表示されている場合は True、それ以外の場合は False です。",
"breakpointsExist": "ブレークポイントが少なくとも 1 つ存在する場合は True です。",
"breakpointsFocused": "[ブレークポイント] ビューがフォーカスされている場合は True、それ以外の場合は False です。",
+ "callStackFocused": "[コールスタック] ビューがフォーカスされている場合は True、それ以外の場合は False です。",
"callStackItemStopped": "コール スタック内のフォーカスがある項目が停止しているとき、true になります。コール スタック ビューのインライン メニューで内部的に使用されます。",
"callStackItemType": "[呼び出し履歴] ビュー内のフォーカスされた要素の項目の種類を表します。例: 'session'、'thread'、'stackFrame'",
"callStackSessionHasOneThread": "コール スタック ビュー内のフォーカスがあるセッションにスレッドが 1 つだけ含まれているとき、true になります。コール スタック ビューのインライン メニューで内部的に使用されます。",
@@ -5232,6 +8839,7 @@
"debugConfigurationType": "選択した起動構成のデバッグの種類です。例: 'python'。",
"debugExtensionsAvailable": "少なくとも 1 つのデバッグ拡張機能がインストールされ、有効になっている場合は true。",
"debugProtocolVariableMenuContext": "[変数] ビュー内のフォーカスされた変数でデバッグ アダプターによって設定されたコンテキストを表します。",
+ "debugSetDataBreakpointAddressSupported": "フォーカスされたセッションがアドレスに対する 'getBreakpointInfo' 要求をサポートする場合は true。",
"debugSetExpressionSupported": "フォーカスされたセッションで 'setExpression' 要求がサポートされている場合は True です。",
"debugSetVariableSupported": "フォーカスされたセッションで 'setVariable' 要求がサポートされている場合は True です。",
"debugState": "フォーカスされたデバッグ セッションの状態です。'inactive'、'initializing'、'stopped'、'running' のいずれかになります。",
@@ -5244,7 +8852,9 @@
"exceptionWidgetVisible": "例外ウィジェットが表示されている場合は True です。",
"expressionSelected": "[ウォッチ式] または [変数] のいずれかのビューで式の入力ボックスが開いている場合は True、それ以外の場合は False です。",
"focusedSessionIsAttach": "フォーカスされたセッションが 'attach' の場合は True です。",
+ "focusedSessionIsNoDebug": "フォーカスされたセッションがデバッグなしで実行される場合は True です。",
"focusedStackFrameHasInstructionReference": "フォーカスのあるスタック フレームに命令ポインターのリファレンスがある場合は True。",
+ "hasDebugged": "デバッグ セッションが少なくとも 1 回開始されている場合は True、それ以外の場合は False です。",
"inBreakpointWidget": "フォーカスがブレークポイント エディター ゾーン ウィジェット内にある場合は True、それ以外の場合は False です。",
"inDebugMode": "デバッグ中の場合は True、それ以外の場合は False です。",
"inDebugRepl": "フォーカスがデバッグ コンソール内にある場合は True、それ以外の場合は False です。",
@@ -5261,8 +8871,15 @@
"stepIntoTargetsSupported": "フォーカスされたセッションで 'stepIntoTargets' 要求がサポートされている場合は True です。",
"suspendDebuggeeSupported": "フォーカスされたセッションが中断されているデバッグ対象機能をサポートしている場合は true。",
"terminateDebuggeeSupported": "フォーカスされたセッションが終了デバッグ対象機能をサポートすしている場合は true。",
+ "terminateThreadsSupported": "フォーカスされたセッションがスレッドの終了機能をサポートしている場合は true。",
"variableEvaluateNamePresent": "フォーカスされた変数で 'evalauteName' フィールドが設定されている場合は True です。",
+ "variableExtensionId": "デバッグ視覚化句に存在する変数ソースの拡張機能 ID。",
+ "variableInterfaces": "デバッグ視覚化句用に存在する、変数が満たすインターフェイスまたはコントラクト。",
"variableIsReadonly": "フォーカスされた変数が読み取り専用の場合は True。",
+ "variableLanguage": "デバッグ視覚化句に存在する変数ソースの言語。",
+ "variableName": "デバッグ視覚化句に存在する変数の名前。",
+ "variableType": "デバッグ視覚化句に存在する変数の種類。",
+ "variableValue": "デバッグ視覚化句に存在する変数の値。",
"variablesFocused": "[変数] ビューがフォーカスされている場合は True、それ以外の場合は False です",
"watchExpressionsExist": "ウォッチ式が少なくとも 1 つ存在する場合は True、それ以外の場合は False です。",
"watchExpressionsFocused": "[ウォッチ式] ビューがフォーカスされている場合は True、それ以外の場合は False です。",
@@ -5273,10 +8890,23 @@
"canNotResolveSourceWithError": "ソース '{0}' を読み込めませんでした: {1}。",
"unable": "デバッグ セッションなしでリソースを解決できません"
},
+ "vs/workbench/contrib/debug/common/debugger": {
+ "cannot.find.da": "型 '{0}' のデバッグ アダプターを見つけることができません。",
+ "debugLinuxConfiguration": "Linux 固有の起動構成の属性。",
+ "debugOSXConfiguration": "OS X 固有の起動構成の属性。",
+ "debugRequest": "構成の要求の種類。\"launch\" または \"attach\" です。",
+ "debugType": "構成の種類。",
+ "debugTypeNotRecognised": "デバッグの種類は認識されませんでした。対応するデバッグの拡張機能がインストールされており、有効になっていることを確認してください。",
+ "debugWindowsConfiguration": "Windows 固有の起動構成の属性。",
+ "launch.config.comment1": "IntelliSense を使用して利用可能な属性を学べます。",
+ "launch.config.comment2": "既存の属性の説明をホバーして表示します。",
+ "launch.config.comment3": "詳細情報は次を確認してください: {0}",
+ "node2NotSupported": "\"node2\" はサポートされていません。代わりに \"node\" を使用し、\"protocol\" 属性を \"inspector\" に設定してください。"
+ },
"vs/workbench/contrib/debug/common/debugLifecycle": {
"debug.debugSessionCloseConfirmationPlural": "アクティブなデバッグ セッションがあります。停止しますか?",
"debug.debugSessionCloseConfirmationSingular": "アクティブなデバッグ セッションがあります。停止しますか?",
- "debug.stop": "デバッグを停止する"
+ "debug.stop": "デバッグの停止(&&S)"
},
"vs/workbench/contrib/debug/common/debugModel": {
"breakpointDirtydHover": "未確認のブレークポイント。ファイルは変更されているので、デバッグ セッションを再起動してください。",
@@ -5297,6 +8927,9 @@
"app.launch.json.title": "起動",
"app.launch.json.version": "このファイル形式のバージョン。",
"compoundPrelaunchTask": "複合構成の開始前に実行するタスク。",
+ "debugger name": "名前",
+ "debugger type": "種類",
+ "debuggers": "デバッガー",
"presentation": "デバッグ構成ドロップダウンとコマンド パレットでこの構成を表示する方法に関するプレゼンテーション オプション。",
"presentation.group": "この構成が属するグループ。構成ドロップダウンとコマンド パレットでのグループ化と並べ替えに使用されます。",
"presentation.hidden": "この構成を構成ドロップダウンとコマンド パレットに表示するかどうかを制御します。",
@@ -5310,6 +8943,7 @@
"vscode.extension.contributes.debuggers.configurationAttributes": "'launch.json' を検証するための JSON スキーマ構成。",
"vscode.extension.contributes.debuggers.configurationSnippets": "'launch.json' に新しい構成を追加するためのスニペット。",
"vscode.extension.contributes.debuggers.deprecated": "このデバッグの種類を非推奨としてマークするオプションのメッセージ。",
+ "vscode.extension.contributes.debuggers.hiddenWhen": "この条件が true の場合、このデバッガーの種類はデバッガーの一覧から非表示になりますが、有効のままです。",
"vscode.extension.contributes.debuggers.initialConfigurations": "初期 'launch.json' を生成するための構成。",
"vscode.extension.contributes.debuggers.label": "このデバッグ アダプターの表示名。",
"vscode.extension.contributes.debuggers.languages": "デバッグ拡張機能が \"既定のデバッガー\" とされる言語の一覧。",
@@ -5320,6 +8954,8 @@
"vscode.extension.contributes.debuggers.program": "デバッグ アダプター プログラムへのパス。絶対パスか拡張機能フォルダーへの相対パスです。",
"vscode.extension.contributes.debuggers.runtime": "プログラム属性が実行可能でなく、ランタイムが必要な場合のオプション ランタイム。",
"vscode.extension.contributes.debuggers.runtimeArgs": "オプションのランタイム引数。",
+ "vscode.extension.contributes.debuggers.strings": "このデバッグ アダプターによって提供された UI 文字列。",
+ "vscode.extension.contributes.debuggers.strings.unverifiedBreakpoints": "このデバッグ アダプターでサポートされている言語に未確認のブレークポイントがある場合、このメッセージはブレークポイントのホバーとブレークポイント ビューに表示されます。Markdown とコマンドのリンクがサポートされています。",
"vscode.extension.contributes.debuggers.type": "このデバッグ アダプターの一意識別子。",
"vscode.extension.contributes.debuggers.variables": "`launch.json` 内の対話型の変数 (例: ${action.pickProcess}) からコマンドへマッピングしています。",
"vscode.extension.contributes.debuggers.when": "この種類のデバッガーを有効にするために true でなければならない条件。'shellExecutionSupported'、'virtualWorkspace'、'resourceScheme'、または拡張機能でこれに適したものとして定義されたコンテキスト キーを使用することを検討してください。",
@@ -5329,24 +8965,12 @@
"vs/workbench/contrib/debug/common/debugSource": {
"unknownSource": "不明なソース"
},
- "vs/workbench/contrib/debug/common/debugger": {
- "cannot.find.da": "型 '{0}' のデバッグ アダプターを見つけることができません。",
- "debugLinuxConfiguration": "Linux 固有の起動構成の属性。",
- "debugOSXConfiguration": "OS X 固有の起動構成の属性。",
- "debugRequest": "構成の要求の種類。\"launch\" または \"attach\" です。",
- "debugType": "構成の種類。",
- "debugTypeNotRecognised": "デバッグの種類は認識されませんでした。対応するデバッグの拡張機能がインストールされており、有効になっていることを確認してください。",
- "debugWindowsConfiguration": "Windows 固有の起動構成の属性。",
- "launch.config.comment1": "IntelliSense を使用して利用可能な属性を学べます。",
- "launch.config.comment2": "既存の属性の説明をホバーして表示します。",
- "launch.config.comment3": "詳細情報は次を確認してください: {0}",
- "node2NotSupported": "\"node2\" はサポートされていません。代わりに \"node\" を使用し、\"protocol\" 属性を \"inspector\" に設定してください。"
- },
"vs/workbench/contrib/debug/common/disassemblyViewInput": {
+ "disassemblyEditorLabelIcon": "逆アセンブリ エディター ラベルのアイコン。",
"disassemblyInputName": "逆アセンブリ"
},
"vs/workbench/contrib/debug/common/loadedScriptsPicker": {
- "moveFocusedView.selectView": "読み込み済みのスクリプトを名前で検索する"
+ "moveFocusedView.selectView": "Search loaded scripts by name"
},
"vs/workbench/contrib/debug/common/replModel": {
"consoleCleared": "コンソールはクリアされました"
@@ -5363,68 +8987,120 @@
"bracketPairColorizer.notification.action.showMoreInfo": "詳細情報",
"bracketPairColorizer.notification.action.uninstall": "拡張機能のアンインストール"
},
- "vs/workbench/contrib/dialogs/browser/dialogHandler": {
- "yesButton": "はい(&&Y)",
- "cancelButton": "キャンセル",
- "aboutDetail": "バージョン: {0}\r\nコミット: {1}\r\n日付: {2}\r\nブラウザー: {3}",
- "copy": "コピー",
- "ok": "OK"
+ "vs/workbench/contrib/dropOrPasteInto/browser/commands": {
+ "configureDefaultDrop.label": "優先するドロップ アクションを構成します...",
+ "configureDefaultPaste.label": "優先する貼り付けアクションを構成..."
},
- "vs/workbench/contrib/dialogs/electron-sandbox/dialogHandler": {
- "yesButton": "はい(&&Y)",
- "cancelButton": "キャンセル",
- "aboutDetail": "バージョン: {0}\r\nコミット: {1}\r\n日付: {2}\r\nElectron: {3}\r\nChrome: {4}\r\nNode.js: {5}\r\nV8: {6}\r\nOS: {7}",
- "okButton": "OK",
- "copy": "コピー(&&C)"
+ "vs/workbench/contrib/dropOrPasteInto/browser/configurationSchema": {
+ "dropKind": "ドロップ編集の種類識別子。",
+ "dropPreferredDescription": "コンテンツを削除するときに使用する、優先する編集の種類を構成します。\r\n\r\nこれは、編集の種類の順序付けされたリストです。優先する種類の、最初の利用可能な編集が使用されます。",
+ "pasteKind": "貼り付け編集の種類識別子。",
+ "pastePreferredDescription": "コンテンツを貼り付けるときに使用する、優先する編集の種類を構成します。\r\n\r\nこれは、編集の種類の順序付けされたリストです。優先する種類の、最初の利用可能な編集が使用されます。"
},
"vs/workbench/contrib/editSessions/browser/editSessions.contribution": {
- "client too old": "この編集セッションを再開するには、新バージョンの {0} にアップグレードしてください。",
- "continue edit session": "編集セッションを続行...",
+ "autoResumeWorkingChanges": "現在のワークスペースのクラウドに保存されている使用可能な作業変更を自動的に再開するかどうかを制御します。",
+ "autoResumeWorkingChanges.off": "クラウドから作業変更を再開しないでください。",
+ "autoResumeWorkingChanges.onReload": "ウィンドウの再読み込み時に、クラウドから使用可能な作業変更を自動的に再開します。",
+ "autoStoreWorkingChanges": "作業の変更を保存しています...",
+ "autoStoreWorkingChanges.off": "作業変更をクラウドに自動的に保存しないでください。",
+ "autoStoreWorkingChanges.onShutdown": "ウィンドウを閉じるときに、現在の作業変更をクラウドに自動的に保存します。",
+ "autoStoreWorkingChangesDescription": "現在のワークスペースの利用可能な作業変更をクラウドに自動的に格納するかどうかを制御します。この設定は Web では無効です。",
+ "check for pending cloud changes": "保留中のクラウドの変更を確認する",
+ "checkingForWorkingChanges": "保留中のクラウドの変更を確認しています...",
+ "client too old": "作業の変更をクラウドから再開するには、新しいバージョンの {0} にアップグレードしてください。",
+ "cloudChangesPartialMatchesEnabled": "現在のセッションと部分的に一致するクラウドの変更を表示するかどうかを制御します。",
"continue edit session in local folder": "ローカル フォルダーで開く",
- "continueEditSession.openLocalFolder.title": "ローカル フォルダーを選択して編集セッションを続行する",
+ "continue with cloud changes": "作業中の変更を持ち込むかどうかを選択します",
+ "continue working on": "作業を続行...",
+ "continueEditSession.openLocalFolder.title.v2": "ローカル フォルダーを選択して作業を続行する",
"continueEditSessionExtPoint": "別の環境で現在の編集セッションを続行するためのオプションを提供する",
"continueEditSessionExtPoint.command": "実行するコマンドの識別子。コマンドは、'commands' セクションで宣言し、現在の編集セッションを続行できる別の環境を表す URI を返す必要があります。",
+ "continueEditSessionExtPoint.description": "オプションのドキュメント ページの URL、またはその URL を返すコマンド。",
"continueEditSessionExtPoint.group": "このアイテムが属するグループ。",
+ "continueEditSessionExtPoint.qualifiedName": "メニューでの表示に使用される、この項目の完全修飾名。",
+ "continueEditSessionExtPoint.remoteGroup": "このアイテムがリモート インジケーターに属しているグループ。",
"continueEditSessionExtPoint.when": "このアイテムを表示するために満たす必要がある条件。",
- "continueEditSessionItem.openInLocalFolder": "ローカル フォルダーで開く",
- "continueEditSessionPick.placeholder": "作業を続行する方法を選択する",
- "continueEditSessionPick.title": "編集セッションを続行...",
- "editSessionsEnabled": "Web、デスクトップ、またはデバイスを切り替えるときに、コミットされていない変更を保存および再開するためのクラウド対応アクションを表示するかどうかを制御します。",
- "no edit session": "再開する編集セッションはありません。",
- "no edit session content for ref": "ID {0} の編集セッション コンテンツを適用できませんでした。",
- "no edits to store": "保存する編集がないため、編集セッションの保存をスキップしました。",
- "payload failed": "編集セッションを保存できません。",
- "payload too large": "編集セッションがサイズ制限を超えたため、保存できません。",
- "resume edit session warning": "編集セッションを再開すると、コミットされていない既存の変更が上書きされる可能性があります。続行しますか?",
- "resume failed": "編集セッションを再開できませんでした。",
- "resume latest.v2": "最新の編集セッションを再開する",
- "resuming edit session": "編集セッションを再開しています...",
- "show edit session": "Show Edit Sessions",
- "store current.v2": "現在の編集セッションを保存する",
- "storing edit session": "編集セッションを保存しています..."
- },
- "vs/workbench/contrib/editSessions/browser/editSessionsViews": {
- "confirm delete": "Are you sure you want to permanently delete the edit session with ref {0}? You cannot undo this action.",
- "edit sessions data": "All Sessions",
- "open file": "Open File",
- "workbench.editSessions.actions.delete": "Delete Edit Session",
- "workbench.editSessions.actions.resume": "Resume Edit Session"
- },
- "vs/workbench/contrib/editSessions/browser/editSessionsWorkbenchService": {
- "account preference": "編集セッションを使用するにはサインインしてください",
- "choose account placeholder": "サインインするアカウントを選択してください",
- "clear data confirm": "はい",
- "delete all edit sessions": "クラウドから保存されているすべての編集セッションを削除します。",
+ "continueEditSessionItem.builtin": "組み込み",
+ "continueEditSessionItem.openInLocalFolder.v2": "ローカル フォルダーで開く",
+ "continueEditSessionPick.title.v2": "次で {0} の作業を続けるには、開発環境を選択してください:",
+ "continueOn.installAdditional": "追加の開発環境オプションをインストールする",
+ "continueOnCloudChanges": "[作業の続行] を使用するときに、クラウドに作業変更を保存するようユーザーに確認するかどうかを制御します。",
+ "continueOnCloudChanges.off": "ユーザーがクラウドの変更を既に有効にしていない限り、[作業を続行] を使用してクラウドに作業変更を保存しないでください。",
+ "continueOnCloudChanges.promptForAuth": "[作業を続行] を使用して作業変更をクラウドに保存するためにサインインするようユーザーに確認します。",
+ "continueWorkingOn.existingLocalFolder": "既存のローカル フォルダーで作業を続ける",
+ "editSessionPartialMatch": "このワークスペースには、クラウドで保留中の作業の変更があります。再開しますか?",
+ "learnMoreTooltip": "詳細情報",
+ "no cloud changes": "クラウドから再開する変更はありません。",
+ "no cloud changes for ref": "ID {0} に対してクラウドからの変更を再開できませんでした。",
+ "no working changes to store": "保存する編集がないため、作業変更のクラウドへの保存をスキップしました。",
+ "payload failed": "作業の変更を保存できません。",
+ "payload too large": "作業の変更がサイズの制限を超えたため、保存できません。",
+ "resume": "再開",
+ "resume cloud changes": "シリアル化されたデータからの変更を再開する",
+ "resume edit session warning 1": "クラウドからの作業の変更を再開すると、{0} が上書きされます。続行しますか?",
+ "resume edit session warning many": "クラウドからの作業の変更を再開すると、次の {0} 個のファイルが上書きされます。続行しますか?",
+ "resume failed": "クラウドから作業の変更を再開できませんでした。",
+ "resume latest cloud changes": "クラウドからの最新の変更を再開する",
+ "resuming working changes window": "作業中の変更を再開しています...",
+ "show cloud changes": "クラウドの変更の表示",
+ "show log": "ログの表示",
+ "store working changes": "作業の変更を保存しています...",
+ "store working changes in cloud": "作業の変更をクラウドに保存する",
+ "store your working changes": "作業の変更を保存しています...",
+ "storing working changes": "作業の変更を保存しています...",
+ "with cloud changes": "はい、作業中の変更を使って続行します",
+ "without cloud changes": "いいえ、作業中の変更なしで続行する"
+ },
+ "vs/workbench/contrib/editSessions/browser/editSessionsStorageService": {
+ "choose account placeholder": "作業の変更をクラウドに保存するアカウントを選択します",
+ "choose account read placeholder": "作業の変更をクラウドから復元するアカウントを選択します",
+ "delete all cloud changes": "クラウドから保存されているすべてのデータを削除します。",
"others": "その他",
- "reset auth.v2": "Sign Out of Edit Sessions",
+ "reset auth.v3": "クラウドの変更を無効にします...",
+ "sign in": "クラウドの変更を有効にします...",
+ "sign in badge": "クラウドの変更をオンにします... (1)",
"sign in using account": "{0} でサインイン",
- "sign out of edit sessions clear data prompt": "編集セッションからサインアウトしますか?",
+ "sign out of cloud changes clear data prompt": "作業の変更のクラウドへの保存を無効にしますか?",
"signed in": "サインイン済み"
},
+ "vs/workbench/contrib/editSessions/browser/editSessionsViews": {
+ "cloud changes": "クラウドの変更",
+ "compare changes": "変更の比較",
+ "confirm delete all": "保存されているすべての変更をクラウドから完全に削除しますか?",
+ "confirm delete all detail": " この操作を元に戻すことはできません。",
+ "confirm delete detail.v2": " この操作を元に戻すことはできません。",
+ "confirm delete.v2": "ref {0} を使用して作業中の変更を完全に削除しますか?",
+ "local copy": "ローカル コピー",
+ "noStoredChanges": "表示するクラウドに保存されている変更はありません。\r\n{0}",
+ "open file": "ファイルを開く",
+ "storeWorkingChangesTitle": "作業上の変更を保存する",
+ "workbench.editSessions.actions.delete.v2": "作業上の変更を削除する",
+ "workbench.editSessions.actions.deleteAll": "クラウドからすべての作業の変更を削除",
+ "workbench.editSessions.actions.resume.v2": "作業上の変更を再開する",
+ "workbench.editSessions.actions.store.v2": "作業上の変更を保存する"
+ },
"vs/workbench/contrib/editSessions/common/editSessions": {
- "edit sessions": "Edit Sessions",
- "editSessionViewIcon": "View icon of the edit sessions view.",
- "session sync": "セッションの編集"
+ "cloud changes": "クラウドの変更",
+ "editSessionViewIcon": "クラウドの変更ビューのビュー アイコン。"
+ },
+ "vs/workbench/contrib/editSessions/common/editSessionsLogService": {
+ "cloudChangesLog": "クラウドの変更"
+ },
+ "vs/workbench/contrib/editTelemetry/browser/editStats/aiStatsStatusBar": {
+ "aiStats.statusBar.configure": "構成",
+ "aiStatsStatusBarHeader": "AI 使用状況の統計",
+ "inlineSuggestions": "インライン候補",
+ "inlineSuggestionsStatusBar": "インライン候補のステータス バー",
+ "text1": "AI 対 タイピングの平均: {0}",
+ "text2": "現在受け入れられたインライン提案: {0}"
+ },
+ "vs/workbench/contrib/editTelemetry/browser/editTelemetry.contribution": {
+ "editTelemetry": "テレメトリの編集",
+ "editor.aiStats.enabled": "エディターで AI 統計を有効にするかどうかを制御します。ゲージは、手動入力されたコードに対比する、 AI により挿入されたコードの 24 時間にわたる平均量を表します。",
+ "telemetry.editStats.detailed.enabled": "詳細な編集統計のテレメトリを有効にするかどうかを制御します (一般的なテレメトリが有効な場合にのみ統計が送信されます)。",
+ "telemetry.editStats.enabled": "編集統計のテレメトリを有効にするかどうかを制御します (一般的なテレメトリが有効な場合にのみ統計が送信されます)。",
+ "telemetry.editStats.showDecorations": "編集テレメトリ用の装飾を表示するかどうかを制御します。",
+ "telemetry.editStats.showStatusBar": "編集テレメトリのステータス バーを表示するかどうかを制御します。"
},
"vs/workbench/contrib/emmet/browser/actions/expandAbbreviation": {
"expandAbbreviationAction": "Emmet: 略語の展開",
@@ -5438,8 +9114,12 @@
"disable": "無効にする",
"disable workspace": "無効にする (ワークスペース)",
"errors": "キャッチできない {0} 個のエラーが検出されました",
+ "extensionActivating": "拡張機能をアクティブ化しています...",
"languageActivation": "{0} ファイルを開いたため、{1} によってアクティブ化されました",
+ "requests count": "{0} の使用状況: {1} 件のリクエスト",
+ "requests count title": "最後の要求は {0} でした。",
"runtimeExtensions": "ランタイム拡張機能",
+ "session requests count": "、{0} 件のリクエスト (セッション)",
"showRuntimeExtensions": "実行中の拡張機能の表示",
"starActivation": "起動時に {0} によってアクティブ化されました",
"startupFinishedActivation": "起動が完了した後に {0} によってアクティブ化されました",
@@ -5452,164 +9132,139 @@
"vs/workbench/contrib/extensions/browser/configBasedRecommendations": {
"exeBasedRecommendation": "現在のワークスペース構成のため、この拡張機能が推奨されています"
},
- "vs/workbench/contrib/extensions/browser/dynamicWorkspaceRecommendations": {
- "dynamicWorkspaceRecommendation": "この拡張機能は、{0} リポジトリのユーザーの間で人気があるため、関心をお持ちになるかもしれません。"
- },
"vs/workbench/contrib/extensions/browser/exeBasedRecommendations": {
"exeBasedRecommendation": "{0} がインストールされているため、この拡張機能が推奨されています。"
},
"vs/workbench/contrib/extensions/browser/extensionEditor": {
- "JSON Validation": "JSON 検証 ({0})",
+ "Changelog title": "変更ログ",
+ "Install Info": "インストール",
"Marketplace": "マーケットプレース",
- "Marketplace Info": "詳細情報",
- "Notebook id": "ID",
- "Notebook mimetypes": "Mimetypes",
- "Notebook name": "名前",
- "Notebook renderer name": "名前",
- "NotebookRenderers": "ノートブック レンダラー ({0})",
- "Notebooks": "ノートブック ({0})",
- "activation": "アクティブ化の時刻",
- "activation events": "アクティブ化イベント ({0})",
- "authentication": "認証 ({0})",
- "authentication.id": "ID",
- "authentication.label": "ラベル",
+ "Marketplace Info": "Marketplace",
+ "Readme title": "Readme",
+ "Version": "バージョン",
"builtin": "ビルトイン",
+ "cache size": "キャッシュ",
"categories": "カテゴリ",
"changelog": "変更ログ",
"changelogtooltip": "拡張機能の更新履歴、拡張機能の 'CHANGELOG.md' ファイルから表示",
- "codeActions": "コード アクション ({0})",
- "codeActions.description": "説明",
- "codeActions.kind": "種類",
- "codeActions.languages": "言語",
- "codeActions.title": "タイトル",
- "colorId": "ID",
- "colorThemes": "配色テーマ ({0})",
- "colors": "配色 ({0})",
- "command name": "名前",
- "commands": "コマンド ({0})",
- "contributions": "機能のコントリビューション",
- "contributionstooltip": "この拡張機能による VS Code へのコントリビューションの一覧",
- "customEditors": "カスタム エディター ({0})",
- "customEditors filenamePattern": "ファイル名パターン",
- "customEditors priority": "優先度",
- "customEditors view type": "ビューの種類",
- "debugger name": "名前",
- "debugger type": "種類",
- "debuggers": "デバッガー ({0})",
- "default": "既定",
- "defaultDark": "ダーク テーマの既定値",
- "defaultHC": "ハイ コントラストの既定値",
- "defaultLight": "ライト テーマの既定値",
"dependencies": "依存関係",
"dependenciestooltip": "この拡張機能が依存する拡張機能の一覧",
- "description": "説明",
"details": "詳細",
"detailstooltip": "拡張機能の詳細、拡張機能の 'README.md' ファイルから表示",
+ "disk space used": "キャッシュ サイズ",
"extension pack": "拡張機能パック ({0})",
"extension version": "拡張機能のバージョン",
"extensionpack": "拡張機能パック",
"extensionpacktooltip": "この拡張機能と共にインストールされる拡張機能を一覧表示します",
- "file extensions": "ファイル拡張子",
- "fileMatch": "対象ファイル",
+ "features": "機能",
+ "featurestooltip": "この拡張機能によって提供される機能をリスト表示します",
"find": "検索",
"find next": "次を検索",
"find previous": "前を検索",
- "grammar": "文法",
- "iconThemes": "アイコン テーマ ({0})",
"id": "識別子",
- "install count": "インストール数",
- "keyboard shortcuts": "キーボード ショートカット",
- "language id": "ID",
- "language name": "名前",
- "languages": "言語 ({0})",
- "last updated": "最終更新",
+ "issues": "問題",
+ "last released": "前回のリリース日",
+ "last updated": "最終更新日時",
"license": "ライセンス",
- "localizations": "ローカライズ ({0})",
- "localizations language id": "言語 ID",
- "localizations language name": "言語名",
- "localizations localized language name": "言語名 (ローカライズ)",
- "menuContexts": "メニュー コンテキスト",
- "messages": "メッセージ ({0})",
"name": "拡張機能名",
"noChangelog": "使用可能な変更ログはありません。",
- "noContributions": "コントリビューションはありません",
"noDependencies": "依存関係はありません",
"noReadme": "利用できる README はありません。",
- "noStatus": "使用可能な状態がありません。",
- "not yet activated": "まだアクティブ化されていません。",
- "preRelease": "プレリリース",
+ "other": "ローカル",
"preview": "プレビュー",
- "productThemes": "製品アイコンのテーマ ({0})",
- "publisher": "発行者",
- "publisher verified tooltip": "この発行元では、{0} の所有権を確認しました",
- "rating": "評価",
- "release date": "リリース日",
+ "published": "公開済み",
"repository": "リポジトリ",
- "resources": "拡張機能リソース",
- "runtimeStatus": "ランタイムの状態",
- "runtimeStatus description": "拡張機能のランタイム状態",
- "schema": "スキーマ",
- "setting name": "名前",
- "settings": "設定 ({0})",
- "snippets": "スニペット",
- "startup": "スタートアップ",
- "uncaught errors": "キャッチできないエラーが検出されました ({0})",
- "view container id": "ID",
- "view container location": "場所",
- "view container title": "タイトル",
- "view id": "ID",
- "view location": "場所",
- "view name": "名前",
- "viewContainers": "ビュー コンテナー ({0})",
- "views": "ビュー ({0})"
+ "resources": "リソース",
+ "size": "サイズ",
+ "size when installed": "インストール時のサイズ",
+ "source": "ソース",
+ "vsix": "VSIX"
+ },
+ "vs/workbench/contrib/extensions/browser/extensionEnablementWorkspaceTrustTransitionParticipant": {
+ "restartExtensionHost.reason": "ワークスペースの信頼を変更しています"
+ },
+ "vs/workbench/contrib/extensions/browser/extensionFeaturesTab": {
+ "accessExtensionFeature": "'{0}' 機能を有効にする",
+ "activation": "アクティブ化",
+ "cancel": "キャンセル",
+ "chartDescription": "過去 30 日間にこの拡張機能からの要求が {0} {1} 件ありました。",
+ "disableAccessExtensionFeatureMessage": "'{1}' 機能にアクセスするために '{0}' 拡張機能を取り消しますか?",
+ "enable": "アクセスを許可",
+ "enableAccessExtensionFeatureMessage": "'{0}' 拡張機能に '{1}' 機能へのアクセスを許可しますか?",
+ "extension features list": "拡張機能の機能",
+ "grant": "アクセスを許可",
+ "label": "{0} の使用状況",
+ "messaages": "メッセージ ({0})",
+ "noFeatures": "提供された機能はありません。",
+ "revoke": "アクセスの取り消し",
+ "revoked": "アクセスなし",
+ "runtime": "ランタイムの状態",
+ "uncaught errors": "キャッチできないエラーが検出されました ({0})"
},
"vs/workbench/contrib/extensions/browser/extensionRecommendationNotificationService": {
+ "donotShowAgain": "このリポジトリに対して今後表示しない",
+ "donotShowAgainExtension": "これらの拡張機能に対して今後表示しない",
+ "donotShowAgainExtensionSingle": "この拡張機能に対して今後表示しない",
+ "exeRecommended": "お使いのシステムには {0} がインストールされています。このソフトウェア用のおすすめ拡張機能 {1} をインストールしますか?",
+ "extensionFromPublisher": "'{0}' 拡張機能 提供元: {1}",
+ "extensionsFromMultiplePublishers": "{0}、{1}、その他からの拡張機能",
+ "extensionsFromPublisher": "{0} からの拡張機能",
+ "extensionsFromPublishers": "{0} と {1} からの拡張機能",
"ignoreAll": "はい、すべて無視します",
"ignoreExtensionRecommendations": "すべての拡張機能の推奨事項を無視しますか?",
"install": "インストール",
"install and do no sync": "インストール (同期しない)",
- "neverShowAgain": "今後は表示しない",
"no": "いいえ",
+ "recommended": "{1} 用のおすすめ拡張機能 {0} をインストールしますか?",
"show recommendations": "推奨事項の表示",
- "singleExtensionRecommended": "このリポジトリには、'{0}' 拡張機能をお勧めします。インストールしますか?",
- "workspaceRecommended": "このリポジトリにお勧めの拡張機能をインストールしますか?"
+ "this repository": "このリポジトリ"
},
"vs/workbench/contrib/extensions/browser/extensions.contribution": {
"InstallFromVSIX": "VSIX からのインストール...",
"InstallVSIXAction.reloadNow": "今すぐ再度読み込む",
- "InstallVSIXAction.success": "VSIX からの {0} 拡張機能のインストールが完了しました。",
- "InstallVSIXAction.successReload": "VSIX からの {0} 拡張機能のインストールが完了しました。有効にするには、Visual Studio Code を再度読み込んでください。",
+ "InstallVSIXAction.restartExtensions": "拡張機能の再起動",
+ "InstallVSIXAction.successNoReload": "拡張機能のインストールが完了しました。",
+ "InstallVSIXAction.successReload": "拡張機能のインストールが完了しました。有効にするには、Visual Studio Code を再度読み込んでください。",
+ "InstallVSIXAction.successRestart": "拡張機能のインストールが完了しました。有効にするには、拡張機能を再起動してください。",
+ "InstallVSIXs.successNoReload": "拡張機能のインストールが完了しました。",
+ "InstallVSIXs.successReload": "拡張機能のインストールが完了しました。有効にするには、Visual Studio Code を再度読み込んでください。",
+ "InstallVSIXs.successRestart": "拡張機能のインストールが完了しました。有効にするには、拡張機能を再起動してください。",
"all": "すべての拡張機能",
- "builtin": "拡張機能 '{0}' は組み込みの拡張機能であるため、インストールできません",
+ "autoRestart": "アクティブ化すると、ウィンドウにフォーカスがない場合、更新後に拡張機能が自動的に再起動されます。ノートブックまたはカスタム エディターを開いている場合、データが失われる可能性があります。",
+ "builtin": "拡張機能 '{0}' は組み込みの拡張機能であるため、アンインストールできません",
"builtin filter": "ビルトイン",
"checkForUpdates": "拡張機能の更新を確認",
"clearExtensionsSearchResults": "拡張機能の検索結果のクリア",
- "configure auto updating extensions": "自動更新拡張機能",
- "configureExtensionsAutoUpdate.all": "すべての拡張機能",
- "configureExtensionsAutoUpdate.enabled": "有効な拡張機能のみ",
- "configureExtensionsAutoUpdate.none": "なし",
"disableAll": "インストール済みのすべての拡張機能を無効にする",
"disableAllWorkspace": "このワークスペースのインストール済みの拡張機能をすべて無効にする",
"disableAutoUpdate": "すべての拡張機能の自動更新を無効にする",
+ "disablePreRleaseLabel": "リリース バージョンへの切り替え",
"disabled filter": "無効",
+ "download VSIX": "VSIX のダウンロード",
+ "download pre-release": "プレリリース VSIX のダウンロード",
+ "download specific version": "特定のバージョンの VSIX をダウンロード...",
"enableAll": "すべての拡張機能を有効にする",
"enableAllWorkspace": "このワークスペースの拡張機能をすべて有効にする",
"enableAutoUpdate": "すべての拡張機能の自動更新を有効にする",
+ "enablePreRleaseLabel": "プレリリース バージョンへの切り替え",
"enabled": "有効な拡張機能のみ",
"enabled filter": "有効",
"extension": "拡張子",
+ "extension updates filter": "更新情報",
"extensionInfoDescription": "説明: {0}",
"extensionInfoId": "ID: {0}",
"extensionInfoName": "名前: {0}",
"extensionInfoPublisher": "パブリッシャー: {0}",
"extensionInfoVSMarketplaceLink": "VS Marketplace リンク: {0}",
"extensionInfoVersion": "バージョン: {0}",
+ "extensionUpdates": "拡張機能の更新を表示",
"extensions": "拡張機能",
"extensions.affinity": "別の拡張機能ホスト プロセスで実行するように拡張機能を構成します。",
"extensions.autoUpdate": "拡張機能の自動更新の動作を制御します。更新プログラムは、Microsoft オンライン サービスからフェッチされます。",
- "extensions.autoUpdate.enabled": "有効な拡張機能のみの更新プログラムを自動的にダウンロードしてインストールします。無効な拡張機能は自動的には更新されません。",
+ "extensions.autoUpdate.enabled": "有効にした拡張機能に対してのみ、更新プログラムを自動的にダウンロードしてインストールします。",
"extensions.autoUpdate.false": "拡張機能は自動的には更新されません。",
"extensions.autoUpdate.true": "すべての拡張機能の更新プログラムを自動的にダウンロードしてインストールします。",
+ "extensions.gallery.serviceUrl": "マーケットプレース サービスの URL を構成してから次に接続します:",
"extensions.supportUntrustedWorkspaces": "拡張機能の信頼されていないワークペースのサポートをオーバーライドします。`true` を使用する拡張機能は常に有効になります。`limited` を使用する拡張機能は常に有効になり、信頼を必要とする機能は拡張子により非表示にされます。`false` を使用している拡張機能は、ワークスペースが信頼されている場合にのみ有効になります。",
"extensions.supportUntrustedWorkspaces.false": "拡張機能は、ワークスペースが信頼されている場合にのみ有効になります。",
"extensions.supportUntrustedWorkspaces.limited": "拡張機能は常に有効になり、信頼が必要な機能は非表示にされます。",
@@ -5617,12 +9272,16 @@
"extensions.supportUntrustedWorkspaces.true": "拡張機能は常に有効になります。",
"extensions.supportUntrustedWorkspaces.version": "オーバーライドを適用する必要のある拡張機能のバージョンを定義します。指定しないと、拡張機能のバージョンに関係なくオーバーライドが適用されます。",
"extensions.supportVirtualWorkspaces": "拡張機能の仮想ワークスぺースのサポートをオーバーライドします。",
+ "extensions.verifySignature": "有効にすると、拡張機能はインストールされる前に署名されているかどうか検証されます。",
"extensionsCheckUpdates": "有効にした場合、拡張機能の更新を自動的に確認します。拡張機能に更新がある場合は、拡張機能ビューで古くなった拡張機能として表示されます。更新は Microsoft オンライン サービスから取得されます。",
"extensionsCloseExtensionDetailsOnViewChange": "有効にした場合、拡張機能の詳細を表示したエディターは拡張機能ビューから移動すると自動的に閉じられるようになります。",
"extensionsConfigurationTitle": "拡張機能",
+ "extensionsDeferredStartupFinishedActivation": "有効にすると、タイムアウト後に `onStartupFinished` アクティブ化イベントを宣言する拡張機能がアクティブ化されます。",
"extensionsIgnoreRecommendations": "有効にした場合、拡張機能の推奨事項の通知を表示しません。",
+ "extensionsInQuickAccess": "有効にすると、クイック アクセスを使用して拡張機能を検索し、そこから問題を報告できます。",
+ "extensionsRequestTimeout": "Marketplace から拡張機能をフェッチする際に行われる HTTP 要求のタイムアウトを、ミリ秒単位で制御します",
"extensionsShowRecommendationsOnlyOnDemand_Deprecated": "この設定は非推奨化されています。extensions.ignoreRecommendations 設定を使用して、推奨事項の通知を制御します。既定で推奨ビューを非表示にするには、拡張機能ビューの可視性アクションを使用します。",
- "extensionsUseUtilityProcess": "有効にすると、拡張機能ホストは新しい UtilityProcess Electron API を使用して起動されます。",
+ "extensionsSupportNodeGlobalNavigator": "有効にすると、Node.js のナビゲーター オブジェクトがグローバル スコープに公開されます。",
"extensionsWebWorker": "web worker 拡張機能ホストを有効にします。",
"extensionsWebWorker.auto": "Web ワーカー拡張機能のホストは、Web 拡張機能で必要とされるときに起動されます。",
"extensionsWebWorker.false": "Web Worker 拡張機能のホストは起動されません。",
@@ -5630,33 +9289,36 @@
"featured filter": "おすすめ",
"filter by category": "カテゴリ",
"filterExtensions": "拡張機能のフィルター...",
+ "focusExtensions": "拡張機能ビューのフォーカス",
"handleUriConfirmedExtensions": "拡張機能がここに表示されている場合、その拡張機能が URI を処理するときに確認プロンプトは表示されません。",
"id required": "拡張機能 Id が必要です。",
"importKeyboardShortcutsFroms": "キーボード ショートカットを移行する...",
+ "install": "インストール",
"install button": "インストール",
+ "install installAndDonotSync": "インストール (同期しない)",
"installButton": "インストール(&&I)",
+ "installExtensionFromLocation": "場所から拡張機能をインストール...",
"installExtensionQuickAccessHelp": "拡張機能のインストールまたは検索",
"installExtensionQuickAccessPlaceholder": "インストールまたは検索する拡張機能の名前を入力してください。",
"installExtensions": "拡張機能のインストール",
- "installFromLocation": "場所で Web 拡張機能をインストール",
+ "installFromLocation": "場所から拡張機能をインストール",
"installFromLocationPlaceHolder": "Web 拡張機能の場所",
"installFromVSIX": "VSIX からインストール",
+ "installPrereleaseAndDonotSync": "プレリリースのインストール (同期しない)",
"installVSIX": "拡張機能の VSIX のインストール",
- "installWebExtensionFromLocation": "Web 拡張機能をインストール...",
"installWorkspaceRecommendedExtensions": "ワークスペースのおすすめの拡張機能をインストール",
"installed filter": "インストール済み",
+ "installedExtensions": "インストール済みの拡張機能の表示",
"manageExtensionsHelp": "拡張機能の管理",
"manageExtensionsQuickAccessPlaceholder": "Enter キーを押して拡張機能を管理してください。",
"miPreferencesExtensions": "拡張機能(&&E)",
"miViewExtensions": "拡張機能(&&X)",
- "miimportKeyboardShortcutsFrom": "キーボード ショートカットを移行する(&&M)...",
"most popular filter": "一番人気",
"most popular recommended": "推奨",
"noUpdatesAvailable": "すべての拡張機能が最新の状態です。",
"none": "なし",
"notFound": "拡張機能 '{0}' が見つかりませんでした。",
"notInstalled": "拡張機能 '{0}' はインストールされていません。パブリッシャーを含む完全な拡張機能 ID (例: ms-vscode.csharp) を使用していることをご確認ください。",
- "outdated filter": "期限切れ",
"recently published filter": "最近公開されたもの",
"recentlyPublishedExtensions": "最近公開された拡張機能の表示",
"refreshExtension": "最新の情報に更新",
@@ -5667,43 +9329,55 @@
"showEnabledExtensions": "有効な拡張機能の表示",
"showExtensions": "拡張機能",
"showFeaturedExtensions": "おすすめの拡張機能の表示",
- "showInstalledExtensions": "インストール済みの拡張機能の表示",
"showLanguageExtensionsShort": "言語の拡張機能",
- "showOutdatedExtensions": "古くなった拡張機能の表示",
"showPopularExtensions": "人気の拡張機能の表示",
"showRecommendedExtensions": "お勧めの拡張機能を表示",
"showRecommendedKeymapExtensionsShort": "キーマップ",
"showWorkspaceUnsupportedExtensions": "ワークスペースでサポートされていない拡張機能を表示します",
- "sort by date": "公開日",
+ "signInToMarketplace": "サインインして Extensions Marketplace にアクセスする",
"sort by installs": "インストール数",
"sort by name": "名前",
+ "sort by published date": "公開日",
"sort by rating": "評価",
+ "sort by update date": "更新日",
"sorty by": "並べ替え",
+ "trustedPublishers": "信頼できる拡張機能の公開元の管理",
+ "trustedPublishersPlaceholder": "信頼する発行元の選択",
"updateAll": "すべての拡張機能を更新します",
"workbench.extensions.action.addExtensionToWorkspaceRecommendations": "ワークスペースの推奨事項に追加する",
"workbench.extensions.action.addToWorkspaceFolderIgnoredRecommendations": "ワークスペース フォルダーの無視された推奨事項に拡張機能を追加する",
"workbench.extensions.action.addToWorkspaceFolderRecommendations": "ワークスペース フォルダーの推奨事項に拡張機能を追加する",
"workbench.extensions.action.addToWorkspaceIgnoredRecommendations": "ワークスペースの無視された推奨事項に拡張機能を追加する",
"workbench.extensions.action.addToWorkspaceRecommendations": "ワークスペースの推奨事項に拡張機能を追加する",
- "workbench.extensions.action.configure": "拡張機能の設定",
+ "workbench.extensions.action.changeAccountPreference": "アカウント設定",
+ "workbench.extensions.action.configure": "設定",
+ "workbench.extensions.action.configureKeybindings": "キーボード ショートカット",
"workbench.extensions.action.copyExtension": "コピーする",
"workbench.extensions.action.copyExtensionId": "拡張機能 ID のコピー",
+ "workbench.extensions.action.copyLink": "リンクのコピー",
"workbench.extensions.action.ignoreRecommendation": "推奨事項を無視する",
+ "workbench.extensions.action.manageTrustedPublishers": "信頼できる拡張機能の公開元の管理",
"workbench.extensions.action.removeExtensionFromWorkspaceRecommendations": "ワークスペースの推奨事項から削除する",
+ "workbench.extensions.action.toggleApplyToAllProfiles": "すべてのプロファイルに拡張機能を適用する",
"workbench.extensions.action.toggleIgnoreExtension": "この拡張機能を同期",
"workbench.extensions.action.undoIgnoredRecommendation": "無視された推奨事項を元に戻す",
"workbench.extensions.installExtension.arg.decription": "拡張機能 ID または VSIX リソース URI",
"workbench.extensions.installExtension.description": "指定された拡張機能をインストールします",
"workbench.extensions.installExtension.option.context": "インストールのコンテキスト。これは、インストール ハンドラーに情報を渡すために使用できる JSON オブジェクトです。つまり、'{skipWalkthrough: true}' はインストール時にチュートリアルを開くのをスキップします。",
"workbench.extensions.installExtension.option.donotSync": "有効にすると、設定の同期がオンの場合に VS Code はこの拡張機能を同期しません。",
+ "workbench.extensions.installExtension.option.enable": "有効にすると、拡張機能がインストールされてはいるが無効になっている場合は有効になります。拡張機能が既に有効になっている場合、これは無効です。",
"workbench.extensions.installExtension.option.installOnlyNewlyAddedFromExtensionPackVSIX": "有効にした場合、VS Code は拡張機能パックの VSIX から新しく追加された拡張機能のみをインストールします。このオプションは、VSIX のインストール中にのみ考慮されます。",
"workbench.extensions.installExtension.option.installPreReleaseVersion": "有効にすると、プレリリース版の拡張機能が使用可能な場合は、VS Code によってインストールされます。",
+ "workbench.extensions.installExtension.option.justification": "拡張機能をインストールする理由。これは、インストール ハンドラーに情報を渡すために使用できる文字列またはオブジェクトです。つまり、`{reason: 'This extension wants to open a URI', action: 'Open URI'}` は、インストール時に理由とアクションを含むメッセージ ボックスを表示します。",
"workbench.extensions.search.arg.name": "検索で使用するクエリ",
"workbench.extensions.search.description": "特定の拡張機能を検索する",
"workbench.extensions.uninstallExtension.arg.name": "アンインストールする拡張機能の ID",
"workbench.extensions.uninstallExtension.description": "指定された拡張機能をアンインストールする",
"workspace unsupported filter": "サポートされていないワークスペース"
},
+ "vs/workbench/contrib/extensions/browser/extensions.web.contribution": {
+ "runtimeExtension": "実行中の拡張機能"
+ },
"vs/workbench/contrib/extensions/browser/extensionsActions": {
"Cannot be enabled": "この拡張機能は、Web 版の {0} ではサポートされていないため、無効になっています。",
"Defined to run in desktop": "この拡張機能は、デスクトップの {0} でのみ実行されるように定義されているため、無効になっています。",
@@ -5711,42 +9385,39 @@
"Install in remote server to enable": "この拡張機能は、リモート拡張ホストで実行するように定義されているため、このワークスペースでは無効です。有効にするには、'{0}' の拡張機能をインストールしてください。",
"Install language pack also in remote server": "言語パック拡張機能を '{0}' にインストールして、その場所でも有効にします。",
"Install language pack also locally": "言語パック拡張機能をローカルにインストールして、その場所でも有効にします。",
- "InstallVSIXAction.reloadNow": "今すぐ再度読み込む",
- "ManageExtensionAction.uninstallingTooltip": "アンインストールしています",
"OpenExtensionsFile.failed": "'.vscode' ファルダー ({0}) 内に 'extensions.json' ファイルを作成できません。",
- "ReinstallAction.success": "拡張機能 {0} の再インストールが完了しました。",
- "ReinstallAction.successReload": "拡張機能 {0} の再インストールを完了するために Visual Studio Code を再度読み込んでください。",
- "Show alternate extension": "{0}を開く",
+ "Show alternate extension": "{0} を開く(&&O)",
"Uninstalling": "アンインストールしています",
"VS Code for Web": "Web 版の {0}",
+ "auto update message": "[拡張機能を確認]({0}) し、手動で更新してください。",
"cancel": "キャンセル",
"cannot be installed": "'{0}' 拡張機能は {1} では使用できません。詳細については、[詳細情報] をクリックしてください。",
"check logs": "詳細については、[ログ]({0}) をご確認ください。",
"close": "閉じる",
- "configure in settings": "設定の構成",
+ "configure in settings": "設定を構成する(&&C)",
"configureWorkspaceFolderRecommendedExtensions": "推奨事項の拡張機能を構成 (ワークスペース フォルダー)",
"configureWorkspaceRecommendedExtensions": "お勧めの拡張機能の構成 (ワークスペース)",
"current": "現在",
+ "dependencies": "依存関係の表示",
"deprecated message": "この拡張機能は、メンテナンスされなくなったため、非推奨です。",
"deprecated tooltip": "この拡張機能は、メンテナンスされなくなったため、非推奨です。",
"deprecated with alternate extension message": "この拡張機能は非推奨です。代わりに {0} 拡張機能を使用してください。",
"deprecated with alternate extension tooltip": "この拡張機能は非推奨です。代わりに {0} 拡張機能を使用してください。",
"deprecated with alternate settings message": "この拡張機能は、この機能が現在 VS Code に組み込まれているため、非推奨です。",
"deprecated with alternate settings tooltip": "この拡張機能は、この機能が現在 VS Code に組み込まれているため、非推奨です。この機能を使用するには、これらの {0} を構成してください。",
- "disableAction": "無効にする",
+ "disableAutoUpdate": "次の自動更新を無効にしました",
"disableForWorkspaceAction": "無効にする (ワークスペース)",
"disableForWorkspaceActionToolTip": "この拡張機能をこのワークスペースでのみ無効にする",
"disableGloballyAction": "無効にする",
"disableGloballyActionToolTip": "この拡張機能を無効にする",
"disabled": "無効",
+ "disabled - not allowed": "{0} のため、この拡張機能は無効になっています",
"disabled because of virtual workspace": "この拡張機能は、仮想ワークスペースをサポートしていないため、無効になっています。",
"disabled by environment": "この拡張機能は環境に従って無効化されています。",
- "do no sync": "同期しない",
"do not sync": "この拡張機能を同期しないでください",
"download": "手動でダウンロードしてみてください...",
- "enable locally": "この拡張機能をローカルで有効にするには、Visual Studio Code を再度読み込んでください。",
- "enable remote": "この拡張機能を {0} で有効にするには、Visual Studio Code を再度読み込んでください。",
- "enableAction": "有効にする",
+ "enableAutoUpdate": "次の自動更新を有効にしました",
+ "enableAutoUpdateLabel": "自動更新",
"enableForWorkspaceAction": "有効にする (ワークスペース)",
"enableForWorkspaceActionToolTip": "この拡張機能をこのワークスペースでのみ有効にする",
"enableGloballyAction": "有効にする",
@@ -5756,44 +9427,43 @@
"enabled in web worker": "この拡張機能は Web Worker 拡張ホストで有効になります。ローカル拡張ホストで実行する方が好ましいためです。",
"enabled locally": "この拡張機能はローカル拡張ホストで有効になります。ローカル拡張ホストで実行する方が好ましいためです。",
"enabled remotely": "この拡張機能はリモート拡張ホストで有効になります。リモート拡張ホストで実行する方が好ましいためです。",
- "extension disabled because of dependency": "この拡張機能は無効になっている拡張機能に依存しているため、無効になりました。",
+ "extension disabled because of dependency": "この拡張機能は、無効になっている拡張機能によって異なります。",
"extension disabled because of trust requirement": "現在のワークスペースが信頼されていないため、この拡張機能は無効になっています。",
+ "extension disabled because of unification": "GitHub Copilot のすべての機能が GitHub Copilot チャット拡張機能から提供されるようになりました。この拡張機能の統合を一時的にオプトアウトするには、{0} 設定を切り替えます。",
"extension enabled on remote": "拡張機能は '{0}' で有効です",
"extension limited because of trust requirement": "現在のワークスペースが信頼されていないため、この拡張機能は機能が制限されています。",
"extension limited because of virtual workspace": "現在のワークスペースが仮想であるため、この拡張機能は機能が制限されています。",
- "extensionButtonProminentBackground": "際立っているアクション拡張機能のボタンの背景色(例: インストールボタン)。",
- "extensionButtonProminentForeground": "際立っているアクション拡張機能のボタンの前景色(例: インストールボタン)。",
- "extensionButtonProminentHoverBackground": "際立っているアクション拡張機能のボタンのホバー背景色(例: インストールボタン)。",
+ "extensionButtonBackground": "拡張機能アクションのボタンの背景色。",
+ "extensionButtonForeground": "拡張機能アクションのボタンの前景色。",
+ "extensionButtonHoverBackground": "拡張機能アクションのボタンのホバー背景色。",
+ "extensionButtonProminentBackground": "際立っている拡張機能アクションのボタンの背景色 (例: インストール ボタン)。",
+ "extensionButtonProminentForeground": "際立っている拡張機能アクションのボタンの前景色 (例: インストールボタン)。",
+ "extensionButtonProminentHoverBackground": "際立っている拡張機能アクションのボタンのホバー背景色 (例: インストール ボタン)。",
+ "extensionButtonSeparator": "拡張機能アクションのボタン区切り記号の色",
"finished installing": "拡張機能が正常にインストールされました。",
"globally disabled": "この拡張機能はユーザーによってグローバルに無効化されています。",
- "globally enabled": "この拡張機能はグローバルに有効化されています。",
"ignoreExtensionRecommendation": "再度この拡張機能を推奨しないでください",
+ "ignoreExtensionUpdatePublisher": "{0} によって公開された更新プログラムを無視します。",
"ignored": "同期中はこの拡張機能が無視されます",
- "incompatible": "'{0}' 拡張機能は互換性がないため、インストールできません。",
- "incompatible platform": "'{0}' 拡張機能は {2} の {1} では使用できません。",
"install": "インストール",
- "install another version": "別のバージョンをインストール...",
+ "install another version": "特定のバージョンをインストール...",
"install anyway": "インストールする",
"install browser": "ブラウザーでインストール",
"install confirmation": "'{0}' をインストールしますか?",
- "install everywhere tooltip": "すべての同期済み {0} インスタンスにこの拡張機能をインストールします",
- "install extension in remote": "{1}の中の{0}",
- "install extension in remote and do not sync": "{1} ({2}) の中の{0}",
- "install extension locally": "{0} ローカルで",
- "install extension locally and do not sync": "{0} ローカルで ({1})",
+ "install donot verify": "インストールする (署名を確認しない)",
"install in remote": "{0} にインストールする",
"install local extensions title": "ローカル拡張機能を '{0}' にインストールします",
"install locally": "ローカルにインストール",
"install operation": "'{0}' 拡張機能のインストール中にエラーが発生しました。",
"install pre-release": "プレリリースのインストール",
"install pre-release version": "プレリリース バージョンのインストール",
+ "install prerelease": "プレリリースのインストール",
"install previous version": "特定のバージョンの拡張機能をインストール...",
"install release version": "リリース バージョンのインストール",
- "install release version message": "リリース バージョンをインストールしますか?",
"install remote extensions": "ローカルでリモート拡張機能をインストールする",
"install vsix": "ダウンロードが終わったら、ダウンロードされた '{0}' の VSIX を手動でインストールしてください。",
+ "install workspace version": "ワークスペース拡張機能のインストール",
"installExtensionComplete": "拡張機能 {0} のインストールが完了しました。",
- "installExtensionCompletedAndReloadRequired": "拡張機能 {0} のインストールが完了しました。これを有効にするには、Visual Studio Code を再度読み込んでください。",
"installExtensionStart": "拡張機能 {0} のインストールを開始しました。エディターはこの拡張機能の詳細を開いています。",
"installRecommendedExtension": "おすすめの拡張機能のインストール",
"installVSIX": "VSIX からのインストール...",
@@ -5801,25 +9471,27 @@
"installing": "インストールしています",
"installing extensions": "拡張機能をインストールしています...",
"learn more": "詳細情報",
- "learn why": "理由をご確認ください",
"malicious tooltip": "この拡張機能は問題ありと報告されました。",
"manage": "管理",
+ "manage access": "アクセスの管理",
"migrate": "移行",
"migrate to": "{0} への移行",
"migrateExtension": "移行",
- "more information": "詳細情報",
+ "missing from gallery tooltip": "この拡張機能は、拡張機能マーケットプレースでは使用できなくなりました。",
+ "more information": "詳細情報(&&M)",
"no local extensions": "インストールする拡張機能はありません。",
"no versions": "この拡張機能には、他のバージョンはありません。",
- "not web tooltip": "'{0}' 拡張機能は {1} では使用できません。",
- "postDisableTooltip": "Visual Studio Code を再度読み込んで、この拡張機能を無効化してください。",
- "postEnableTooltip": "この拡張機能の有効化を完了させるために、Visual Studio Code を再読み込みしてください。",
- "postUninstallTooltip": "この拡張機能のアンインストールを完了させるために、Visual Studio Code を再読み込みしてください。",
- "postUpdateTooltip": "更新された拡張機能を有効にするために、Visual Studio Code を再読み込みしてください。",
+ "not signed": "'{0}' は不明なソースからの拡張機能です。インストールしますか?",
+ "not signed detail": "拡張機能は署名されていません。",
+ "not signed tooltip": "この拡張機能は拡張機能マーケットプレースによって署名されていません。",
"pre-release": "事前公開",
- "reinstall": "拡張機能の再インストール...",
- "reloadAction": "再読み込み",
- "reloadRequired": "再読み込みが必要です",
- "search recommendations": "拡張機能の検索",
+ "reload window": "ウィンドウの再度読み込み",
+ "report issue": "問題の報告",
+ "report issue body": "F1 キー > [ビューを開く...] > [Shared] で次のログを含めてください。\r\n\r\n",
+ "report issue title": "拡張機能の署名の検証に失敗しました: {0}",
+ "restart extensions": "拡張機能の再起動",
+ "restart product": "再起動して更新",
+ "review": "レビュー",
"select and install local extensions": "ローカル拡張機能を '{0}' にインストールします...",
"select and install remote extensions": "ローカルでリモート拡張機能をインストールする...",
"select color theme": "配色テーマの選択",
@@ -5827,28 +9499,33 @@
"select file icon theme": "ファイル アイコンのテーマを選択します",
"select product icon theme": "製品アイコンのテーマを選択する",
"selectExtension": "拡張機能を選択",
- "selectExtensionToReinstall": "再インストールする拡張機能を選択",
"selectVersion": "インストールするバージョンを選択",
"settings": "設定",
"showRecommendedExtension": "推奨される拡張機能を表示する",
- "switch to pre-release version": "プレリリース バージョンへの切り替え",
- "switch to pre-release version tooltip": "この拡張機能のプレリリース バージョンに切り替える",
- "switch to release version": "リリース バージョンへの切り替え",
- "switch to release version tooltip": "この拡張機能のリリース バージョンに切り替える",
+ "switchToPreReleaseLabel": "プレリリース バージョンへの切り替え",
+ "switchToPreReleaseTooltip": "これにより、プレリリース バージョンに切り替わり、常に最新バージョンの更新が有効になります",
"sync": "この拡張機能を同期します",
"synced": "この拡張機能は同期されています",
+ "toggleAutoUpdatesForPublisherLabel": "すべて自動更新 (パブリッシャーから)",
+ "togglePreRleaseDisableLabel": "リリース バージョンへの切り替え",
+ "togglePreRleaseDisableTooltip": "これにより、リリース バージョンに切り替わり、その更新が有効になります",
+ "togglePreRleaseLabel": "プレリリース",
"undo": "元に戻す",
"uninstallAction": "アンインストール",
+ "uninstallAll": "アンインストール (すべてのプロファイル)",
"uninstallExtensionComplete": "拡張機能 {0} のアンインストールを完了するために、Visual Studio Code を再読み込みしてください。",
"uninstallExtensionStart": "拡張機能 {0} のアンインストールを開始しました。",
"uninstalled": "アンインストール済み",
+ "update": "更新",
"update operation": "'{0}' 拡張機能の更新中にエラーが発生しました。",
- "updateAction": "更新",
- "updateExtensionComplete": "拡張機能 {0} のバーション {1} への更新を完了しました。",
- "updateExtensionStart": "拡張機能 {0} のバーション {1} への更新を開始しました。",
- "updateToLatestVersion": "{0} に更新します",
- "updateToTargetPlatformVersion": "{0} バージョンに更新する",
+ "update product": "{0} の更新",
+ "update to": "v{0} に更新",
+ "updateExtensionComplete": "拡張機能 {0} のバージョン {1} への更新を完了しました。",
+ "updateExtensionConsent": "{0}\r\n\r\n拡張機能を更新しますか?",
+ "updateExtensionConsentTitle": "{0} 拡張機能の更新",
+ "updateExtensionStart": "拡張機能 {0} のバージョン {1} への更新を開始しました。",
"updated": "更新",
+ "verification failed": "{1} は拡張機能の署名を確認できないため、'{0}' の拡張機能をインストールできません",
"workbench.extensions.action.clearLanguage": "表示言語のクリア",
"workbench.extensions.action.setColorTheme": "配色テーマを設定",
"workbench.extensions.action.setDisplayLanguage": "表示言語のセット",
@@ -5881,6 +9558,7 @@
"installCountIcon": "拡張機能のビューおよびエディターにインストール数と共に表示されるアイコン。",
"installLocalInRemoteIcon": "拡張機能のビュー内の 'リモートでのローカル拡張機能のインストール' アクションのアイコン。",
"installWorkspaceRecommendedIcon": "拡張機能のビュー内の [ワークスペースのおすすめの拡張機能をインストール] アクションのアイコン。",
+ "lockIcon": "拡張機能ビューとエディターで非公開拡張機能に表示されるアイコン。",
"manageExtensionIcon": "拡張機能のビュー内の '管理' アクションのアイコン。",
"preReleaseIcon": "拡張機能ビューとエディターでプレリリース バージョンを持つ拡張機能に表示されるアイコン。",
"ratingIcon": "拡張機能のビューおよびエディターに評価と共に表示されるアイコン。",
@@ -5893,7 +9571,6 @@
"syncEnabledIcon": "拡張機能が同期していることを示すアイコン。",
"syncIgnoredIcon": "同期時に拡張機能が無視されることを示すアイコン。",
"trustIcon": "拡張機能のエディターで警告メッセージと共に表示されるアイコン。",
- "verifiedPublisher": "拡張機能ビューとエディターで確認済みの拡張機能の発行元用に使用されるアイコン。",
"warningIcon": "拡張機能のエディターで警告メッセージと共に表示されるアイコン。"
},
"vs/workbench/contrib/extensions/browser/extensionsQuickAccess": {
@@ -5905,37 +9582,54 @@
"vs/workbench/contrib/extensions/browser/extensionsViewer": {
"Unknown Extension": "不明な拡張機能:",
"error": "エラー",
- "extension.arialabel": "{0}、{1}、{2}、{3}",
+ "extension.arialabel.deprecated": "非推奨",
+ "extension.arialabel.publisher": "発行元 {0}",
+ "extension.arialabel.rating": "{1} 人のユーザーが 5 つ星中 {0} と評価",
+ "extension.arialabel.verifiedPublisher": "検証済みの発行元 {0}",
"extensions": "拡張機能"
},
"vs/workbench/contrib/extensions/browser/extensionsViewlet": {
+ "access denied": "アカウントに Extensions Marketplace へのアクセス権がありません。管理者にお問い合わせください。",
+ "accessDenied": "マーケットプレースへのアクセスが拒否されました",
+ "availableUpdates": "使用できる更新プログラム",
"builtInThemesExtensions": "テーマ",
"builtin": "ビルトイン",
"builtinFeatureExtensions": "機能",
"builtinProgrammingLanguageExtensions": "プログラミング言語",
+ "click show": "クリックして表示",
"deprecated": "非推奨",
"disabled": "無効",
"disabledExtensions": "無効",
+ "dismiss": "閉じる",
"enabled": "有効",
"enabledExtensions": "有効",
"extensionFound": "1 個の拡張機能が見つかりました。",
"extensionFoundInSection": "{0} セクションに 1 個の拡張機能が見つかりました。",
+ "extensionToReload": "{0} は再起動が必要です",
+ "extensionToUpdate": "{0} 更新が必要です",
"extensionsFound": "{0} 個の拡張機能が見つかりました。",
"extensionsFoundInSection": "{1} セクションに {0} 個の拡張機能が見つかりました。",
+ "extensionsToReload": "{0} は再起動が必要です",
+ "extensionsToUpdate": "{0} 更新が必要です",
"install remote in local": "ローカルでリモート拡張機能をインストールする...",
"installed": "インストール済み",
- "malicious warning": "問題があることが報告された '{0}' をアンインストールしました。",
+ "learnMore": "詳細情報",
+ "malicious warning": "拡張機能 '{0}' は問題が見つかったため、アンインストールされました",
"marketPlace": "マーケットプレース",
"open user settings": "ユーザー設定を開く",
"otherRecommendedExtensions": "その他の推奨事項",
- "outdated": "期限切れ",
- "outdatedExtensions": "{0} 古くなった拡張機能",
"popularExtensions": "人気",
+ "recently updated": "最近更新",
"recommendedExtensions": "推奨",
"reloadNow": "今すぐ再度読み込む",
"remote": "リモート",
+ "restartNow": "拡張機能の再起動",
"searchExtensions": "Marketplace で拡張機能を検索する",
"select and install local extensions": "ローカル拡張機能を '{0}' にインストールします...",
+ "show": "表示",
+ "sign in": "[サインインして Extensions Marketplace にアクセスする]({0})",
+ "sign in enterprise marketplace": "サインインして Marketplace にアクセスする",
+ "signInRequired": "Marketplace にアクセスするにはサインインが必要です",
"suggestProxyError": "Marketplace から 'ECONNREFUSED' が返されました。'http.proxy' 設定をご確認ください。",
"untrustedPartiallySupportedExtensions": "制限モードで制限されています",
"untrustedUnsupportedExtensions": "制限モードで無効になっています",
@@ -5946,27 +9640,28 @@
},
"vs/workbench/contrib/extensions/browser/extensionsViews": {
"error": "拡張機能のフェッチ中にエラーが発生しました。{0}",
- "extension.arialabel.deprecated": "非推奨",
- "extension.arialabel.publihser": "パブリッシャー {0}",
- "extensions": "拡張機能",
"no extensions found": "拡張機能が見つかりません",
"no local extensions": "インストールする拡張機能はありません。",
"offline error": "オフライン時にマーケットプレースを検索できません。ネットワーク接続を確認してください。",
- "open user settings": "ユーザー設定を開く",
- "suggestProxyError": "Marketplace から 'ECONNREFUSED' が返されました。'http.proxy' 設定をご確認ください。"
+ "showing local extensions only": "{0} ローカル拡張機能を表示しています。",
+ "showingExtensionsForFeature": "過去 30 日間に {0} を使用した拡張機能"
},
"vs/workbench/contrib/extensions/browser/extensionsWidgets": {
"Show prerelease version": "プレリリース バージョン",
"activation": "アクティブ化の時刻",
- "dependencies": "依存関係の表示",
+ "extensionIcon.private": "非公開拡張機能のアイコンの色。",
"extensionIcon.sponsorForeground": "拡張機能のスポンサーのアイコンの色。",
"extensionIconStarForeground": "拡張機能の評価のアイコンの色。",
- "extensionIconVerifiedForeground": "拡張機能の確認済みの発行元のアイコンの色。",
"extensionPreReleaseForeground": "プレリリース拡張機能のアイコンの色。",
- "has prerelease": "この拡張子には利用可能な {0} があります",
+ "feature access label": "{0} 件のリクエスト",
+ "feature usage label": "{0} の使用状況",
+ "has prerelease": "この拡張機能には利用可能な {0} があります",
+ "install count": "インストール数",
+ "local extension": "ローカル拡張機能",
"message": "1 個のメッセージ",
"messages": "{0} 個のメッセージ",
- "pre-release-label": "プレリリース",
+ "privateExtension": "拡張機能の更新",
+ "publisher": "発行元 ({0})",
"publisher verified tooltip": "この発行元では、{0} の所有権を確認しました",
"ratedLabel": "平均評価: 5 点中 {0} 点",
"recommendationHasBeenIgnored": "この拡張機能の推奨を受け取らないことを選択しました。",
@@ -5974,27 +9669,92 @@
"sponsor": "スポンサー",
"startup": "スタートアップ",
"syncingore.label": "同期中はこの拡張機能が無視されます。",
+ "total": "過去 30 日間の合計リクエスト数: {0} {1}",
"uncaught error": "キャッチできない 1 個のエラーが検出されました",
- "uncaught errors": "キャッチできない {0} 個のエラーが検出されました"
+ "uncaught errors": "キャッチできない {0} 個のエラーが検出されました",
+ "updateRequired": "最新バージョン:",
+ "verified publisher": "この発行元では、{0} の所有権を確認しました",
+ "workspace extension": "ワークスペース拡張機能"
},
"vs/workbench/contrib/extensions/browser/extensionsWorkbenchService": {
"Manifest is not found": "マニフェストが見つかりません",
+ "allplatforms": "すべてのプラットフォーム",
+ "cannot be installed": "'{0}' 拡張機能は、このセットアップで使用できないため、インストールできません。",
+ "confirmDisableAutoUpdate": "すべての拡張機能の自動更新を無効にしますか?",
+ "confirmEnableAutoUpdate": "すべての拡張機能の自動更新を有効にしますか?",
+ "confirmEnableDisableAutoUpdate": "自動更新拡張機能",
+ "confirmEnableDisableAutoUpdateDetail": "これにより、個々の拡張機能に対して設定した自動更新設定がすべてリセットされます。",
+ "consentRequiredToUpdate": "{0} 拡張機能の更新により、現在インストールされているバージョンに存在しない実行可能コードが導入されます。",
+ "consentRequiredToUpdateRepublishedExtension": "この拡張機能のマーケットプレース メタデータが変更されました。再公開が原因である可能性があります。",
+ "deprecated extensions": "非推奨の拡張機能が検出されました。これらを確認し、代替手段に移行します。",
"disable all": "すべて無効にする",
+ "disableDependents": "依存関係を伴う拡張機能の無効化",
+ "disallowed": "この拡張機能のインストールは許可されていません。",
+ "disallowed extensions": "Some extensions are disabled because they are configured not to be allowed.",
+ "disallowed extensions by policy": "Some extensions are disabled because they are not allowed by your system administrator.",
+ "download": "ダウンロード",
+ "download title": "VSIX をダウンロードするフォルダーの選択",
+ "download.completed": "VSIX が正常にダウンロードされました",
+ "download.failed": "VSIX のダウンロード中にエラーが発生しました: {0}",
+ "downloading...": "VSIX をダウンロードしています...",
+ "enable locally": "この拡張機能をローカルで有効にするには、{0} してください。",
+ "enable remote": "{1} でこの拡張機能を有効にするには、{0} してください。",
+ "enableButtonLabel": "拡張機能の有効化(&&E)",
+ "enableButtonLabelWithAction": "拡張機能を有効にして {0}(&&E)",
+ "enableExtensionMessage": "'{0}' 拡張機能を有効にしますか?",
+ "enableExtensionTitle": "拡張機能の有効化",
+ "extension not found": "拡張機能 '{0}' が見つかりませんでした。",
+ "extensionsAutoRestart": "更新を有効にするために拡張機能が自動的に再起動されました。",
+ "incompatible": "'{0}' 拡張機能は互換性がないため、インストールできません。",
+ "incompatibleExtensions": "バージョンの互換性がないため、一部の拡張機能が無効になっています。これらを確認して更新します。",
+ "installButtonLabel": "拡張機能のインストール(&&I)",
+ "installButtonLabelWithAction": "拡張機能をインストールして {0}(&&I)",
+ "installExtensionMessage": "'{0}' 拡張機能を '{1}' からインストールしますか?",
+ "installExtensionTitle": "拡張機能のインストール",
+ "installVSIXMessage": "拡張機能をインストールしますか?",
"installing extension": "拡張機能をインストールしています...",
- "installing named extension": "'{0}' 拡張機能をインストールしています....",
+ "installing named extension": "拡張機能 '{0}' をインストールしています...",
+ "invalidExtensions": "無効な拡張機能が検出されました。これらを確認してください。",
"malicious": "この拡張機能は問題ありと報告されました。",
"multipleDependentsError": "'{0}' 拡張機能のみを無効にすることはできません。'{1}'、'{2}'、その他の拡張機能がこれに依存しています。これらの拡張機能をすべて無効にしますか?",
- "not found": "拡張機能 '{0}' をインストールできません。要求されたバージョン '{1}' が見つかりません。",
+ "multipleDependentsUninstallError": "'{0}' 拡張機能のみをアンインストールできません。'{1}'、'{2}' とその他の拡張機能はこれに依存しています。これらの拡張機能をすべてアンインストールしますか?",
+ "no versions": "この拡張機能には、他のバージョンはありません。",
+ "not an extension": "指定されたオブジェクトは拡張機能ではありません。",
+ "not found": "拡張機能 '{0}' は見つからなかったため、インストールできません。",
+ "not found version": "要求されたバージョン '{1}' が見つからなかったため、拡張機能 '{0}' をインストールできません。",
+ "not signed": "この拡張機能は署名されていません。",
+ "open": "拡張機能を開く",
+ "platform placeholder": "VSIX をダウンロードするプラットフォームを選択してください",
+ "postDisableTooltip": "この拡張機能を無効にするには、{0} してください。",
+ "postEnableTooltip": "この拡張機能を有効にするには、{0} してください。",
+ "postUninstallTooltip": "この拡張機能のアンインストールを完了するには、{0} してください。",
+ "postUpdateDownloadTooltip": "更新された拡張機能を有効にするには、{0} を更新してください。",
+ "postUpdateRestartTooltip": "更新された拡張機能を有効にするには、{0} を再起動してください。",
+ "postUpdateTooltip": "更新された拡張機能を有効にするには、{0} してください。",
+ "postUpdateUpdateTooltip": "更新された拡張機能を有効にするには、{0} を更新してください。",
+ "pre-release": "プレリリース",
+ "reload": "ウィンドウの再度読み込み",
+ "report issue": "この問題が解決しない場合は、{0} で報告してください",
+ "restart": "拡張機能の有効化の変更",
+ "restart extensions": "拡張機能を再起動",
+ "selectVersion": "ダウンロードするバージョンの選択",
"singleDependentError": "'{0}' 拡張機能のみを無効にすることはできません。'{1}' 拡張機能がこれに依存しています。これらの拡張機能をすべて無効にしますか?",
+ "singleDependentUninstallError": "'{0}' 拡張機能のみをアンインストールできません。'{1}' 拡張機能はこれに依存しています。これらの拡張機能をすべてアンインストールしますか?",
+ "sync extension": "この拡張機能を同期する",
"twoDependentsError": "'{0}' 拡張機能のみを無効にすることはできません。'{1}' および '{2}' の拡張機能がこれに依存しています。これらの拡張機能をすべて無効にしますか?",
- "uninstallingExtension": "拡張機能をアンインストールしています..."
+ "twoDependentsUninstallError": "'{0}' 拡張機能のみをアンインストールできません。'{1}' および '{2}' 拡張機能はこれに依存しています。これらの拡張機能をすべてアンインストールしますか?",
+ "uninstallAll": "すべてアンインストール",
+ "uninstallAllProfiles": "アンインストール (すべてのプロファイル)",
+ "uninstallApplicationScoped": "拡張機能のアンインストール",
+ "uninstallApplicationScopedMessage": "すべてのプロファイルから {0} をアンインストールしますか?",
+ "uninstallDependents": "依存関係のある拡張機能のアンインストール",
+ "uninstallingExtension": "拡張機能をアンインストールしています...",
+ "unknown": "拡張機能をインストールできません",
+ "updatingExtensions": "拡張機能の自動更新状態を更新しています"
},
"vs/workbench/contrib/extensions/browser/fileBasedRecommendations": {
- "dontShowAgainExtension": "'.{0}' ファイルに対しては再度表示しない",
"fileBasedRecommendation": "この拡張機能は、最近開いたファイルに基づいてお勧めしています。",
- "reallyRecommended": "{0} にお勧めの拡張機能をインストールしますか?",
- "searchMarketplace": "Marketplace で検索",
- "showLanguageExtensions": "Marketplace には、'.{0}' ファイルに役立つ拡張機能があります"
+ "languageName": "{0} 言語"
},
"vs/workbench/contrib/extensions/browser/webRecommendations": {
"reason": "{0} for the Web には、この拡張機能をお勧めします"
@@ -6002,6 +9762,9 @@
"vs/workbench/contrib/extensions/browser/workspaceRecommendations": {
"workspaceRecommendation": "この拡張機能は、現在のワークスペースのユーザーによって推奨されています。"
},
+ "vs/workbench/contrib/extensions/common/extensions": {
+ "extensions": "拡張機能"
+ },
"vs/workbench/contrib/extensions/common/extensionsFileTemplate": {
"app.extension.identifier.errorMessage": "予期される形式 '${publisher}.${name}'。例: 'vscode.csharp'。",
"app.extensions.json.recommendations": "このワークスペースのユーザーに推奨する拡張機能のリスト。拡張機能の ID は常に '${publisher}.${name}' です。例: 'vscode.csharp'。",
@@ -6009,6 +9772,7 @@
"app.extensions.json.unwantedRecommendations": "このワークスペースのユーザーに VS Code が推奨しない拡張機能のリスト。拡張機能の ID は常に '${publisher}.${name}' です。例: 'vscode.csharp'。"
},
"vs/workbench/contrib/extensions/common/extensionsInput": {
+ "extensionsEditorLabelIcon": "拡張機能エディター ラベルのアイコン。",
"extensionsInputName": "拡張機能: {0}"
},
"vs/workbench/contrib/extensions/common/extensionsUtils": {
@@ -6016,19 +9780,37 @@
"no": "いいえ",
"yes": "はい"
},
- "vs/workbench/contrib/extensions/common/runtimeExtensionsInput": {
- "extensionsInputName": "拡張機能の実行中"
+ "vs/workbench/contrib/extensions/common/installExtensionsTool": {
+ "installExtensionsTool.confirmationMessage": "提案された拡張機能を確認し、追加したい拡張機能ごとに **[インストール]** ボタンをクリックします。選択した拡張機能のインストールが完了したら、**[続行]** をクリックして続けます。",
+ "installExtensionsTool.confirmationTitle": "拡張機能のインストール",
+ "installExtensionsTool.displayName": "拡張機能のインストール",
+ "installExtensionsTool.noResultMessage": "拡張機能がインストールされませんでした。",
+ "installExtensionsTool.resultMessage": "次の拡張機能がインストールされています: {0}",
+ "installExtensionsTool.userDescription": "拡張機能をインストールするためのツール"
},
- "vs/workbench/contrib/extensions/electron-sandbox/debugExtensionHostAction": {
- "cancel": "キャンセル(&&C)",
- "debugExtensionHost": "拡張機能のホストのデバッグを開始",
- "debugExtensionHost.launch.name": "拡張機能ホストにアタッチ",
- "restart1": "拡張機能のプロファイル",
- "restart2": "拡張機能をプロファイルするには再起動が必要です。今すぐ '{0}' を再起動しますか?",
- "restart3": "再起動(&&R)"
+ "vs/workbench/contrib/extensions/common/reportExtensionIssueAction": {
+ "reportExtensionIssue": "問題を報告"
},
- "vs/workbench/contrib/extensions/electron-sandbox/extensionProfileService": {
- "cancel": "キャンセル(&&C)",
+ "vs/workbench/contrib/extensions/common/runtimeExtensionsInput": {
+ "extensionsInputName": "拡張機能の実行中",
+ "runtimeExtensionEditorLabelIcon": "ランタイム拡張機能エディター ラベルのアイコン。"
+ },
+ "vs/workbench/contrib/extensions/common/searchExtensionsTool": {
+ "searchExtensionsTool.displayName": "拡張機能の検索",
+ "searchExtensionsTool.noInput": "検索するカテゴリ、キーワード、または ID を指定してください。",
+ "searchExtensionsTool.userDescription": "VS Code の拡張機能を検索します"
+ },
+ "vs/workbench/contrib/extensions/electron-browser/debugExtensionHostAction": {
+ "debugExtensionHost": "新しいウィンドウで拡張機能ホストをデバッグする",
+ "debugExtensionHost.launch.name": "拡張機能ホストのアタッチ",
+ "debugExtensionHost.progress": "拡張機能ホストにデバッガーをアタッチしています",
+ "openDevToolsForExtensionHost": "開発ツールで拡張機能ホストをデバッグする",
+ "restart1": "拡張機能をデバッグする",
+ "restart2": "拡張機能をデバッグするには、再起動が必要です。今すぐ '{0}' を再起動しますか?",
+ "restart3": "再起動(&&R)",
+ "selectExtensionHost": "拡張機能ホストの選択"
+ },
+ "vs/workbench/contrib/extensions/electron-browser/extensionProfileService": {
"profilingExtensionHost": "プロファイル拡張機能ホスト",
"profilingExtensionHostTime": "プロファイル拡張機能ホスト ({0} 秒)",
"restart1": "拡張機能のプロファイル",
@@ -6037,48 +9819,47 @@
"selectAndStartDebug": "クリックしてプロファイリングを停止します。",
"status.profiler": "拡張機能プロファイラー"
},
- "vs/workbench/contrib/extensions/electron-sandbox/extensions.contribution": {
- "runtimeExtension": "実行中の拡張機能"
+ "vs/workbench/contrib/extensions/electron-browser/extensions.contribution": {
+ "runtimeExtension": "拡張機能の実行中"
},
- "vs/workbench/contrib/extensions/electron-sandbox/extensionsActions": {
+ "vs/workbench/contrib/extensions/electron-browser/extensionsActions": {
+ "cleanUpExtensionsFolder": "拡張機能フォルダーのクリーンアップ",
"openExtensionsFolder": "拡張機能フォルダーを開く"
},
- "vs/workbench/contrib/extensions/electron-sandbox/extensionsAutoProfiler": {
+ "vs/workbench/contrib/extensions/electron-browser/extensionsAutoProfiler": {
"show": "拡張機能を表示する",
"unresponsive-exthost": "拡張機能 '{0}' の最後の操作が完了するまで、非常に長い時間がかかりました。また、他の拡張機能の実行を妨げていました。"
},
- "vs/workbench/contrib/extensions/electron-sandbox/extensionsSlowActions": {
+ "vs/workbench/contrib/extensions/electron-browser/extensionsSlowActions": {
"attach.msg": "これは、作成した問題に '{0}' をアタッチすることを忘れないようにするための通知です。",
"attach.msg2": "これは、既存のパフォーマンスの問題に '{0}' をアタッチすることを忘れないようにするためのリマインダーです。",
"attach.title": "CPU プロファイルを添付しましたか?",
- "cmd.report": "問題を報告",
+ "cmd.report": "問題点の報告",
"cmd.reportOrShow": "パフォーマンスの問題",
"cmd.show": "問題を表示"
},
- "vs/workbench/contrib/extensions/electron-sandbox/reportExtensionIssueAction": {
- "reportExtensionIssue": "問題を報告"
- },
- "vs/workbench/contrib/extensions/electron-sandbox/runtimeExtensionsEditor": {
+ "vs/workbench/contrib/extensions/electron-browser/runtimeExtensionsEditor": {
"extensionHostProfileStart": "拡張機能ホストのプロファイルを開始",
+ "openExtensionHostProfile": "拡張機能ホストのプロファイルを開く",
"saveExtensionHostProfile": "拡張機能ホストのプロファイルを保存",
"saveprofile.dialogTitle": "拡張機能ホストのプロファイルを保存",
- "saveprofile.saveButton": "保存",
"stopExtensionHostProfileStart": "拡張機能ホストのプロファイルを停止"
},
"vs/workbench/contrib/externalTerminal/browser/externalTerminal.contribution": {
- "scopedConsoleAction": "ターミナルで開く",
+ "scopedConsoleAction.Integrated": "統合ターミナルで開く",
"scopedConsoleAction.external": "外部ターミナルで開く",
- "scopedConsoleAction.integrated": "統合ターミナルで開く",
"scopedConsoleAction.wt": "Windows ターミナルで開く"
},
- "vs/workbench/contrib/externalTerminal/electron-sandbox/externalTerminal.contribution": {
+ "vs/workbench/contrib/externalTerminal/electron-browser/externalTerminal.contribution": {
"explorer.openInTerminalKind": "ターミナルでエクスプローラーからファイルを開くときに、起動するターミナルの種類を決定します。",
"globalConsoleAction": "新しい外部ターミナルを開く",
- "terminal.explorerKind.external": "構成済みの外部ターミナルを使用します。",
- "terminal.explorerKind.integrated": "VS Code の統合ターミナルを使用します。",
+ "sourceControlRepositories.openInTerminalKind": "ターミナルでソース管理リポジトリ ビューからリポジトリを開くときに、起動するターミナルの種類を決定します",
"terminal.external.linuxExec": "どのターミナルを Linux で実行するかをカスタマイズします。",
"terminal.external.osxExec": "どのターミナル アプリケーションを macOS で実行するかをカスタマイズします。",
"terminal.external.windowsExec": "どのターミナルを Windows で実行するかをカスタマイズします。",
+ "terminal.kind.both": "統合と外部の両方のターミナル アクションを表示します。",
+ "terminal.kind.external": "外部ターミナル アクションを表示します。",
+ "terminal.kind.integrated": "統合ターミナル アクションを表示します。",
"terminalConfigurationTitle": "外部ターミナル"
},
"vs/workbench/contrib/externalUriOpener/common/configuration": {
@@ -6120,16 +9901,17 @@
},
"vs/workbench/contrib/files/browser/editors/textFileEditor": {
"createFile": "ファイルの作成",
- "fileIsDirectoryError": "ファイルはディレクトリです",
- "fileNotFoundError": "ファイルが見つかりません。",
- "ok": "OK",
- "reveal": "エクスプローラーで表示",
- "textFileEditor": "テキスト ファイル エディター"
+ "fileIsDirectory": "ファイルはディレクトリであるため、テキスト エディターに表示されません。",
+ "fileTooLargeForHeapErrorWithSize": "ファイルは非常に大きいため、テキスト エディターに表示されません ({0})。",
+ "fileTooLargeForHeapErrorWithoutSize": "ファイルは非常に大きいため、テキスト エディターに表示されません。",
+ "openFolder": "フォルダーを開く",
+ "reveal": "フォルダーの表示",
+ "textFileEditor": "テキスト ファイル エディター",
+ "unavailableResourceErrorEditorText": "ファイルが見つからなかったため、エディターを開くことができませんでした。"
},
"vs/workbench/contrib/files/browser/editors/textFileSaveErrorHandler": {
"compareChanges": "比較",
"configure": "構成",
- "discard": "破棄",
"dontShowAgain": "今後表示しない",
"genericSaveError": "'{0}' を保存できませんでした。{1}",
"learnMore": "詳細情報",
@@ -6142,6 +9924,7 @@
"readonlySaveErrorAdmin": "'{0}' を保存できませんでした。ファイルは読み取り専用です。[管理者権限で上書き] を選択し、管理者として再試行してください。",
"readonlySaveErrorSudo": "'{0}' を保存できませんでした。ファイルは読み取り専用です。'Overwrite as Sudo' を選択してスーパーユーザーとして再試行してください。",
"retry": "再試行",
+ "revert": "元に戻す",
"saveConflictDiffLabel": "{0} (ファイル内) ↔ {1} ({2} 内) - 保存時の競合の解決",
"saveElevated": "管理者権限で再試行...",
"saveElevatedSudo": "Sudo 権限で再試行...",
@@ -6167,7 +9950,11 @@
"binFailed": "ごみ箱を使用した削除に失敗しました。代わりに完全に削除しますか?",
"clipboardComparisonLabel": "クリップボード ↔ {0}",
"closeGroup": "グループを閉じる",
+ "compareFileWithMeta": "ピッカーを開き、アクティブなエディターと差分を作成するファイルを選択します。",
+ "compareNewUntitledTextFiles": "新しい無題のテキスト ファイルの比較",
+ "compareNewUntitledTextFilesMeta": "2 つの無題ファイルを含む新しい差分エディターを開きます。",
"compareWithClipboard": "クリップボードとアクティブ ファイルを比較",
+ "compareWithClipboardMeta": "新しい差分エディターを開き、アクティブなファイルとクリップボードの内容を比較します。",
"confirmDeleteMessageFile": "'{0}' を完全に削除してもよろしいですか?",
"confirmDeleteMessageFilesAndDirectories": "次の {0} ファイル/ディレクトリとその内容を完全に削除しますか?",
"confirmDeleteMessageFolder": "'{0}' とその内容を完全に削除してもよろしいですか?",
@@ -6178,6 +9965,11 @@
"confirmMoveTrashMessageFolder": "'{0}' とその内容を削除しますか?",
"confirmMoveTrashMessageMultiple": "次の {0} 個のファイルを削除してもよろしいですか?",
"confirmMoveTrashMessageMultipleDirectories": "次の {0} ディレクトリとその内容を削除しますか?",
+ "confirmMultiPasteNative": "次の {0} 項目を貼り付けますか?",
+ "confirmOverwrite": "'{0}' という名前のファイルまたはフォルダーは、宛先のフォルダーに既に存在します。置き換えますか?",
+ "confirmPasteNative": "'{0}' を貼り付けますか?",
+ "continueButtonLabel": "続行",
+ "continueDetail": "続行すると、読み取り専用保護が上書きされます。",
"copyBulkEdit": "{0} ファイルの貼り付け",
"copyFile": "コピー",
"copyFileBulkEdit": "{0} の貼り付け",
@@ -6208,6 +10000,7 @@
"fileNameStartsWithSlashError": "ファイルまたはフォルダーの名前はスラッシュで始めることができません。",
"fileNameWhitespaceWarning": "ファイル名またはフォルダー名の先頭または末尾に空白文字が検出されました。",
"focusFilesExplorer": "ファイル エクスプローラーにフォーカスを置く",
+ "focusFilesExplorerMetadata": "エクスプローラー ビュー コンテナーにフォーカスを移動します。",
"globalCompareFile": "アクティブ ファイルを比較しています...",
"invalidFileNameError": "名前 **{0}** がファイル名またはフォルダー名として無効です。別の名前を指定してください。",
"irreversible": "この操作は元に戻せません。",
@@ -6215,21 +10008,33 @@
"moveFileBulkEdit": "{0} の移動",
"movingBulkEdit": "{0} 個のファイルを移動しています",
"movingFileBulkEdit": "{0} を移動しています",
- "newFile": "新しいファイル",
- "newFolder": "新しいフォルダー",
- "openFileInNewWindow": "新しいウィンドウでアクティブ ファイルを開く",
+ "newFile": "新しいファイル...",
+ "newFolder": "新しいフォルダー...",
+ "openFileInEmptyWorkspace": "新しい空白のワークスペースでアクティブなエディターを開く",
+ "openFileInEmptyWorkspaceMetadata": "開いているフォルダーのない新しいウィンドウでアクティブなエディターを開きます。",
"openFileToShowInNewWindow.unsupportedschema": "アクティブなエディターには、開くことができるリソースを含める必要があります。",
+ "pasteButtonLabel": "貼り付け(&&P)",
"pasteFile": "貼り付け",
- "rename": "名前の変更",
+ "readonlyMessageFilesDelete": "読み取り専用に構成されているファイルを削除しています。続行しますか?",
+ "readonlyMessageFolderDelete": "読み取り専用に構成されているファイル {0} を削除しています。続行しますか?",
+ "readonlyMessageFolderOneDelete": "読み取り専用に構成されているフォルダー {0} を削除しています。続行しますか?",
+ "rename": "名前の変更...",
"renameBulkEdit": "{0} の名前を {1} に変更",
"renamingBulkEdit": "{0} の名前を {1} に変更しています",
- "restore": "このファイルは、[元に戻す] コマンドを使用して復元できます",
- "restorePlural": "これらのファイルは、[元に戻す] コマンドを使用して復元できます",
+ "replaceButtonLabel": "置換(&&R)",
+ "resetActiveEditorReadonlyInSession": "セッションでのアクティブ エディターの読み取り専用のリセット",
+ "restore": "このファイルは、[元に戻す] コマンドを使用して復元できます。",
+ "restorePlural": "これらのファイルは、[元に戻す] コマンドを使用して復元できます。",
"retry": "再試行",
"retryButtonLabel": "再試行(&&R)",
"saveAllInGroup": "すべてをグループに保存",
+ "setActiveEditorReadonlyInSession": "セッションでのアクティブ エディターの読み取り専用の設定",
+ "setActiveEditorWriteableInSession": "セッションでアクティブエディターの書き込み可能を設定する",
"showInExplorer": "エクスプローラー ビューでアクティブなファイルを表示する",
+ "showInExplorerMetadata": "エクスプローラー ビュー内でアクティブなファイルを表示して選択します。",
+ "toggleActiveEditorReadonlyInSession": "セッションでのアクティブ エディターの読み取り専用の切り替え",
"toggleAutoSave": "自動保存の切り替え",
+ "toggleAutoSaveDescription": "入力後にファイルを自動的に保存する機能を切り替える",
"trashFailed": "ごみ箱を使用した削除に失敗しました。代わりに完全に削除しますか?",
"undoBin": "このファイルはごみ箱から復元できます。",
"undoBinFiles": "これらのファイルは、ごみ箱から復元できます。",
@@ -6244,6 +10049,7 @@
"closeOthers": "その他を閉じる",
"closeSaved": "保存済みを閉じる",
"compareActiveWithSaved": "保存済みファイルと作業中のファイルを比較",
+ "compareActiveWithSavedMeta": "新しい差分エディターを開き、アクティブなファイルとディスク上のバージョンを比較します。",
"compareSelected": "選択項目の比較",
"compareSource": "比較対象の選択",
"compareWithSaved": "保存済みと比較",
@@ -6255,7 +10061,6 @@
"cut": "切り取り",
"deleteFile": "完全に削除",
"explorerOpenWith": "ファイルを開くアプリケーションの選択...",
- "filesCategory": "ファイル",
"miAutoSave": "自動保存(&&U)",
"miCloseEditor": "エディターを閉じる(&&C)",
"miGotoFile": "ファイルに移動(&&F)...",
@@ -6265,9 +10070,11 @@
"miSaveAll": "すべて保存(&&L)",
"miSaveAs": "名前を付けて保存(&&A)...",
"newFile": "新しいテキスト ファイル",
+ "newFolderDescription": "新しいフォルダーまたはディレクトリを作成する",
"openFile": "ファイルを開く...",
"openToSide": "横に並べて開く",
- "revealInSideBar": "エクスプローラーで表示",
+ "reopenWith": "エディターを再度開く...",
+ "revealInSideBar": "エクスプローラー ビューで表示",
"revert": "ファイルを元に戻す",
"revertLocalChanges": "変更を破棄してファイルの内容に戻す",
"saveAll": "すべて保存",
@@ -6275,15 +10082,16 @@
"saveFiles": "すべてのファイルを保存"
},
"vs/workbench/contrib/files/browser/fileCommands": {
- "discard": "破棄",
"genericRevertError": "元へ戻すことに失敗しました '{0}': {1}",
"genericSaveError": "'{0}' を保存できませんでした。{1}",
"modifiedLabel": "{0} (ファイル内) ↔ {1}",
"newFileCommand.saveLabel": "ファイルの作成",
- "retry": "再試行"
+ "retry": "再試行",
+ "revert": "元に戻す",
+ "revertAll": "すべて元に戻す"
},
"vs/workbench/contrib/files/browser/fileConstants": {
- "newUntitledFile": "無題の新規ファイル",
+ "newUntitledFile": "新しい無題のテキスト ファイル",
"removeFolderFromWorkspace": "ワークスペースからフォルダーを削除",
"save": "保存",
"saveAll": "すべて保存",
@@ -6293,7 +10101,6 @@
"vs/workbench/contrib/files/browser/fileImportExport": {
"addFolder": "フォルダーをワークスペースに追加(&&A)",
"addFolders": "フォルダーをワークスペースに追加(&&A)",
- "cancel": "キャンセル",
"chooseWhereToDownload": "ダウンロードする場所を選択",
"confirmManyOverwrites": "次の {0} 個のファイルやフォルダーは、対象のフォルダーに既に存在します。置換しますか?",
"confirmOverwrite": "'{0}' という名前のファイルまたはフォルダーは、宛先のフォルダーに既に存在します。置き換えますか?",
@@ -6326,24 +10133,36 @@
},
"vs/workbench/contrib/files/browser/files.contribution": {
"askUser": "保存を拒否し、保存の競合を手動で解決するように要求します。",
- "associations": "言語に対するファイルの関連付け (例: `\"*.extension\": \"html\") を構成します。これらの関連付けは、インストールされている言語の既定の関連付けより優先されます。",
+ "associations": "言語へのファイルの関連付けの [glob パターン](https://aka.ms/vscode-glob-patterns) を構成します (例: `\"*.extension\": \"html\"`)。パス区切り記号が含まれている場合、パターンはファイルの絶対パスで一致し、それ以外の場合はファイルの名前と一致します。これらは、インストールされている言語の既定の関連付けよりも優先されます。",
"autoGuessEncoding": "有効にすると、エディターはファイルを開くときに文字セットのエンコードを推測しようとします。この設定は、言語ごとに構成することもできます。この設定はテキスト検索では考慮されません。{0} のみが考慮されます。",
+ "autoOpenDroppedFile": "エクスプローラーにファイルがドロップされたときにエクスプローラーで自動的に開くかどうかを制御します",
"autoReveal": "エクスプローラーでファイルを開くとき、自動的にファイルの内容を表示して選択するかどうかを制御します。",
"autoReveal.focusNoScroll": "ファイルは、スクロールしてビューに表示されることはありませんが、引き続きフォーカスされます。",
"autoReveal.off": "ファイルは、表示や選択が行われません。",
"autoReveal.on": "ファイルは、表示や選択が行われるようになります。",
- "autoSave": "変更が保存されていないエディターの [自動保存](https://code.visualstudio.com/docs/editor/codebasics#_save 自動保存) を制御します。",
+ "autoRevealExclude": "エクスプローラーでファイルとフォルダーが開いたときに表示および選択されないように、パスまたは [glob パターン](https://aka.ms/vscode-glob-patterns) を構成します。Glob パターンは、絶対パスでない限り、常にワークスペース フォルダーのパスを基準にして評価されます。",
+ "autoSave": "変更が保存されていないエディターの [自動保存](https://code.visualstudio.com/docs/editor/codebasics#_save-auto-save) を制御します。",
"autoSaveDelay": "変更が保存されていないエディターが自動で保存されるまでの遅延をミリ秒単位で制御します。`#files.autoSave#` が `{0}` に設定されている場合のみ適用されます。",
+ "autoSaveWhenNoErrors": "有効にすると、エディターの [auto save](https://code.visualstudio.com/docs/editor/codebasics#_save-auto-save) が、自動保存がトリガーされた時点でエラーが報告されていないファイルに制限されます。{0} が有効な場合にのみ適用されます。",
+ "autoSaveWorkspaceFilesOnly": "有効にすると、エディターの [auto save](https://code.visualstudio.com/docs/editor/codebasics#_save-auto-save) が、開いているワークスペース内のファイルに制限されます。{0} が有効な場合にのみ適用されます。",
"binaryFileEditor": "バイナリ ファイル エディター",
+ "candidateGuessEncodings": "エディターが一覧表示されている順序で推測を試みる必要がある文字セット エンコードのリスト。特定できない場合は、{0} が考慮されます",
"compressSingleChildFolders": "エクスプローラーでフォルダーをコンパクト形式でレンダリングするかどうかを制御します。このような形式では、単一の子フォルダーは結合されたツリー要素に圧縮されます。たとえば、Java パッケージ構造に役立ちます。",
"confirmDelete": "ごみ箱を経由したファイル削除時にエクスプローラーが確認を求めるかどうかを制御します。",
"confirmDragAndDrop": "ドラッグ アンド ドロップを使用したファイルやフォルダーの移動時にエクスプローラーが確認を求めるかどうかを制御します。",
+ "confirmPasteNative": "ネイティブなファイルやフォルダーの貼り付け時にエクスプローラーが確認を求めるかどうかを制御します。",
"confirmUndo": "元に戻すときにエクスプローラーで確認を求めるかどうかを制御します。",
+ "copyPathSeparator": "ファイル パスをコピーするときに使用するパス区切り文字。",
+ "copyPathSeparator.auto": "オペレーティング システムの特定のパス区切り文字を使用します。",
+ "copyPathSeparator.backslash": "円記号をパス区切り文字として使用します。",
+ "copyPathSeparator.slash": "スラッシュをパス区切り文字として使用します。",
"copyRelativePathSeparator": "相対ファイル パスをコピーする場合に使用するパス区切り文字です。",
"copyRelativePathSeparator.auto": "オペレーティング システムの特定のパス区切り文字を使用します。",
"copyRelativePathSeparator.backslash": "円記号をパス区切り文字として使用します。",
"copyRelativePathSeparator.slash": "スラッシュをパス区切り文字として使用します。",
"defaultLanguage": "新しいファイルに割り当てられる既定の言語識別子。`${activeEditorLanguage}` に構成されている場合は、現在アクティブなテキスト エディターの言語識別子 (存在する場合) が使用されます。",
+ "defaultPathErrorMessage": "ファイル ダイアログの既定のパスは絶対パスである必要があります (例: C:\\\\myFolder または /myFolder)。",
+ "disabled": "名前の増分作成を無効にします。同じ名前のファイルが 2 つ存在する場合は、既存のファイルを上書きするよう要求されます。",
"enableDragAndDrop": "ドラッグ アンド ドロップによるファイルとフォルダーの移動をエクスプローラーで許可するかどうかを制御します。この設定は、エクスプローラー内からのドラッグ アンド ドロップのみに影響します。",
"enableUndo": "エクスプローラーでファイルとフォルダーの元に戻す操作をサポートするかどうかを制御します。",
"enableUndo.default": "エクスプローラーでは、破壊的な元に戻す操作の前にプロンプトが表示されます。",
@@ -6355,45 +10174,50 @@
"eol.LF": "LF",
"eol.auto": "OS 固有の改行文字を使用します。",
"everything": "ファイル全体をフォーマットします。",
- "exclude": "ファイルとフォルダーを除外するための [glob パターン](https://code.visualstudio.com/docs/editor/codebasics#_advanced-search-options) を構成します。たとえば、エクスプローラーでは、この設定に基づいて表示または非表示にするファイルとフォルダーを決定します。検索固有の除外を定義するには、`#search.exclude#` 設定を参照してください。",
+ "exclude": "ファイルとフォルダーを除外するための [glob パターン](https://aka.ms/vscode-glob-patterns) を構成します。たとえば、エクスプローラーでは、この設定に基づいて表示または非表示にするファイルとフォルダーが決定されます。検索固有の除外を定義するには、`#search.exclude#` 設定を参照してください。`.gitignore` に基づいてファイルを無視するには、`#explorer.excludeGitIgnore#` 設定を参照してください。",
"excludeGitignore": ".gitignore 内のエントリを解析し、エクスプローラーから除外するかどうかを制御します。{0} に似ています。",
"expandSingleFolderWorkspaces": "初期化中に 1 つのフォルダーのみを含むマルチルート ワークスペースをエクスプローラーで展開するかどうかを制御します",
+ "explorer.autoRevealExclude.boolean": "ファイル パスの照合基準となる glob パターン。これを true または false に設定すると、パターンがそれぞれ有効/無効になります。",
+ "explorer.autoRevealExclude.when": "一致するファイルの兄弟をさらにチェックします。一致するファイル名の変数として $(basename) を使用します。",
"explorer.decorations.badges": "ファイルの装飾にバッジを使用するかどうかを制御します。",
"explorer.decorations.colors": "ファイルの装飾に配色を使用するかどうかを制御します。",
- "explorer.incrementalNaming": "貼り付けで重複するエクスプローラー項目に新しい名前を付けるときに使用する名前付け規則を制御します。",
+ "explorer.incrementalNaming": "貼り付け時に重複するエクスプローラー項目に新しい名前を付けるときに使用する名前付け方法を制御します。",
"explorerConfigurationTitle": "エクスプローラー",
"falseDescription": "パターンを無効にします。",
+ "fileDialogDefaultPath": "ファイル ダイアログの既定のパス。ユーザーのホーム パスをオーバーライドします。 最近開いたファイルやフォルダーなど、コンテキスト固有のパスがない場合にのみ使用されます。",
"fileNesting.description": "各キー パターンには、任意の文字列と一致する 1 つの '*' 文字を含む場合があります。",
"fileNestingEnabled": "エクスプローラーでファイルの入れ子を有効にするかどうかを制御します。ファイルの入れ子を使用すると、ディレクトリ内の関連ファイルを 1 つの親ファイルの下に視覚的にグループ化できます。",
"fileNestingExpand": "ファイルの入れ子を自動的に展開するかどうかを制御します。これを有効にするためには、{0} を設定する必要があります。",
- "fileNestingPatterns": "エクスプローラー内のファイルの入れ子を制御します。各__Item__は親パターンを表し、任意の文字列に一致する 1 つの '*' 文字を含む場合があります。各__Value__は、指定された親の下に入れ子になっている子パターンのコンマ区切りの一覧を表します。子パターンには、いくつかの特別なトークンが含まれている可能性があります:\r\n- '$(capture)': 親パターンの '*' の解決された値と一致します\r\n- '${basename}': 親ファイルのベース名 、'file.ts' の 'file' と一致します\r\n- `${extname}': 親ファイルの拡張子 、'file.ts' の 'ts' と一致します\r\n- `${dirname}': 親ファイルのディレクトリ名 、'src/file.ts' の 'src' と一致します\r\n- '*': 任意の文字列に一致します。子パターンごとに 1 回のみ使用できます",
+ "fileNestingPatterns": "エクスプローラー内のファイルの入れ子を制御します。この機能を有効にするには、{0} を設定する必要があります。各__Item__は親パターンを表し、任意の文字列に一致する 1 つの `*` 文字を含む場合があります。各__Value__は、指定された親の下に入れ子になっている子パターンのコンマ区切りの一覧を表します。子パターンには、いくつかの特別なトークンが含まれている可能性があります:\r\n- `$(capture)`: 親パターンの `*` の解決された値と一致します\r\n- `${basename}`: 親ファイルのベース名 、`file.ts` の `file` と一致します\r\n- `${extname}`: 親ファイルの拡張子 、`file.ts` の `ts` と一致します\r\n- `${dirname}`: 親ファイルのディレクトリ名 、`src/file.ts` の `src` と一致します\r\n- `*`: 任意の文字列に一致します。子パターンごとに 1 回のみ使用できます",
"files.autoSave.afterDelay": "変更のあったエディターは、構成された '#files.autoSaveDelay#' の後に自動的に保存されます。",
"files.autoSave.off": "変更のあったエディターは自動的に保存されません。",
"files.autoSave.onFocusChange": "エディターがフォーカスを失うと、変更のあったエディターが自動的に保存されます。",
- "files.autoSave.onWindowChange": "エディターがフォーカスを失うと、変更のあったエディターが自動的に保存されます。",
+ "files.autoSave.onWindowChange": "エディターがフォーカスを失うと、変更のあったウィンドウが自動的に保存されます。",
"files.exclude.boolean": "ファイル パスの照合基準となる glob パターン。これを true または false に設定すると、パターンがそれぞれ有効/無効になります。",
"files.exclude.when": "一致するファイルの兄弟をさらにチェックします。一致するファイル名の変数として \\$(basename) を使用します。",
"files.participants.timeout": "作成、名前変更、削除のファイル参加者が取り消されるまでのタイムアウト (ミリ秒)。参加者を無効にするには、'0' を使用します。",
"files.restoreUndoStack": "ファイルを再度開いたときに、元に戻す機能のスタックを復元します。",
"files.saveConflictResolution": "保存の競合は、ファイルを保存している間に別のプログラムによって変更されたときに発生する可能性があります。データ損失を防ぐために、ユーザーは、エディターの変更とディスク上のバージョンを比較するように求められます。この設定は、保存の競合エラーが頻繁に発生する場合にのみ変更し、データが失われる可能性があるため注意してください。",
- "files.simpleDialog.enable": "単純なファイル ダイアログを有効にします。有効な場合、単純なファイル ダイアログはシステム ファイル ダイアログを置き換えます。",
+ "files.simpleDialog.enable": "ファイルとフォルダーを開いたり保存したりするための単純なファイル ダイアログを有効にします。簡易ファイル ダイアログを有効にするとシステム ファイル ダイアログが置き換えられます。",
"filesConfigurationTitle": "ファイル",
- "formatOnSave": "ファイルを保存するときにフォーマットします。フォーマッタが有効でなければなりません。ファイルの遅延保存やエディターを閉じることは許可されていません。",
+ "filesReadonlyExclude": "パスまたは [glob パターン](https://aka.ms/vscode-glob-patterns) が `#files.readonlyInclude#` 設定の結果として一致する場合に読み取り専用としてマークされないように構成します。Glob パターンは、絶対パスでない限り、ワークスペース フォルダーのパスを基準にして常に評価されます。読み取り専用ファイル システム プロバイダーのファイルは、この設定とは関係なく常に読み取り専用になります。",
+ "filesReadonlyFromPermissions": "ファイルのアクセス許可がそのように示されると、ファイルが読み取り専用としてマークされます。これは、`#files.readonlyInclude#` および `#files.readonlyExclude#` 設定を使用してオーバーライドできます。",
+ "filesReadonlyInclude": "パスまたは [glob パターン](https://aka.ms/vscode-glob-patterns) を読み取り専用としてマークするように構成します。Glob パターンは、絶対パスでない限り、ワークスペース フォルダーのパスを基準にして常に評価されます。`#files.readonlyExclude#` 設定を使用して、一致するパスを除外できます。読み取り専用ファイル システム プロバイダーのファイルは、この設定とは関係なく常に読み取り専用になります。",
+ "formatOnSave": "保存時にファイルを書式設定します。フォーマッタが使用可能である必要があり、エディターをシャットダウンすることはできません。{0} が 'afterDelay' に設定されている場合、ファイルは明示的に保存されたときにのみ書式設定されます。",
"formatOnSaveMode": "保存の形式でファイル全体をフォーマット指定するか、変更のみをフォーマットするかを制御します。`#editor.formatOnSave#` が有効な場合にのみ適用されます。",
- "hotExit": "エディターを終了するときに保存を確認するダイアログを省略し、保存されていないファイルをセッション後も保持するかどうかを制御します。",
+ "hotExit": "[Hot Exit](https://aka.ms/vscode-hot-exit) は、エディターを終了するときに保存を確認するダイアログを省略し、保存されていないファイルをセッション後も保持するかどうかを制御します。",
"hotExit.off": "Hot Exit を無効にします。変更が保存されていないエディターを含むウィンドウを閉じようとすると、プロンプトが表示されます。",
"hotExit.onExit": "Windows または Linux で最後のウィンドウが閉じられるとき、または `workbench.action.quit` コマンドがトリガーされるとき (コマンド パレット、キー バインド、メニュー)、Hot Exit がトリガーされます。フォルダーが開かれていないウィンドウはすべて、次回の起動時に復元されます。未保存のファイルが含まれる、以前に開かれたウィンドウのリストは、[ファイル] > [最近使用したファイル] > [詳細...] と移動すると表示できます。",
"hotExit.onExitAndWindowClose": "Windows または Linux で最後のウィンドウが閉じられるとき、または `workbench.action.quit` コマンドがトリガーされるとき (コマンド パレット、キー バインド、メニュー)、またフォルダーが開かれているウィンドウについても、それが最後のウィンドウかどうかに関係なく、Hot Exit がトリガーされます。フォルダーが開かれていないウィンドウはすべて、次回の起動時に復元されます。未保存のファイルが含まれる、以前に開かれたウィンドウのリストは、[ファイル] > [最近使用したファイル] > [詳細...] と移動すると表示できます。",
"hotExit.onExitAndWindowCloseBrowser": "Hot Exit はブラウザーが終了するか、ウィンドウまたはタブが閉じられた時にトリガーされます。",
- "insertFinalNewline": "有効にすると、ファイルの保存時に最新の行を末尾に挿入します。",
- "maxMemoryForLargeFilesMB": "大きなファイルを開こうとしたとき、VS Code の再起動後に使用できるメモリを制御します。コマンド ラインで `--max-memory=NEWSIZE` を指定するのと同じ効果があります。",
+ "insertFinalNewline": "有効にすると、ファイルの保存時に改行を末尾に挿入します。",
"modification": "変更をフォーマットします (ソース管理が必要)。",
"modificationIfAvailable": "変更部分のみのフォーマットを試みます (ソース管理が必要)。ソース管理が使用できない場合は、ファイル全体がフォーマットされます。",
"openEditorsSortOrder": "[開いているエディター] ペイン内のエディターの並べ替え順序を制御します。",
- "openEditorsVisible": "[開いているエディター] ペインに表示されるエディターの数。これを 0 に設定すると、[開いているエディター] ペインが非表示になります。",
- "openEditorsVisibleMin": "[エディターを開く] ペインに表示されるエディター スロットの最小数。0 に設定すると、[エディターを開く] ペインは、エディターの数に基づいて動的にサイズ変更されます。",
+ "openEditorsVisible": "[エディターを開く] ウィンドウに表示されるエディターの初期最大数です。この制限を超えるとスクロール バーが表示され、ウィンドウのサイズを変更してより多くの項目を表示できます。",
+ "openEditorsVisibleMin": "[エディターを開く] ウィンドウにあらかじめ割り当てられるエディター スロットの最小数です。0 に設定すると、[エディターを開く] ウィンドウは、エディターの数に基づいて動的にサイズ変更されます。",
"overwriteFileOnDisk": "エディターでの変更を使用してディスク上のファイルを上書きすることで、保存の競合を解決します。",
- "simple": "後ろに数字が付いている可能性のある、重複している名前の末尾に「copy」という語を追加します",
+ "simple": "後ろに数字が付いている可能性のある、重複している名前の末尾に「copy」という語を追加します。",
"smart": "重複した名前の末端に数字を追加します。名前の一部に既に数字が含まれている場合、その数字を増やしてみます。",
"sortOrder": "エクスプローラーでのファイルとフォルダーのプロパティベースの並べ替えを制御します。`#explorer.fileNesting.enabled#` が有効になっている場合は、入れ子になったファイルの並べ替えも制御します。",
"sortOrder.alphabetical": "エディターは、各エディター グループ内のタブ名でアルファベット順に並べ替えられます。",
@@ -6410,28 +10234,33 @@
"sortOrderLexicographicOptions.lower": "小文字の名前は、大文字の名前の前にまとめてグループ化されます。",
"sortOrderLexicographicOptions.unicode": "名前は、Unicode 順に並べ替えられます。",
"sortOrderLexicographicOptions.upper": "大文字の名前は、小文字の名前の前にまとめてグループ化されます。",
+ "sortOrderReverse": "ファイルとフォルダーの並べ替え順序を逆順にするかどうかを制御します。",
+ "textFileEditor": "テキスト ファイル エディター",
"trimFinalNewlines": "有効にすると、ファイルの保存時に最終行以降の新しい行をトリミングします。",
"trimTrailingWhitespace": "有効にすると、ファイルの保存時に末尾の空白をトリミングします。",
+ "trimTrailingWhitespaceInRegexAndStrings": "有効にすると、末尾の空白が複数行の文字列から削除され、保存時または 'editor.action.trimTrailingWhitespace' の実行時に正規表現が削除されます。これにより、最新のトークン情報がない場合、空白が行からトリミングされない可能性があります。",
"trueDescription": "パターンを有効にします。",
"useTrash": "ファイル/フォルダーを削除時するときに、 OS のごみ箱に移動します。無効にするとファイル/フォルダーは完全に削除されます。",
- "watcherExclude": "ファイル監視から除外するパスまたは glob パターンを構成します。相対パスまたは基本的な glob パターン (例: 'build/output' または `*.js`) は、現在開いているワークスペースを使用して絶対パスに解決されます。複雑な glob パターンは、プロパティと一致させる (例: `**/build/output/**` や `/Users/name/workspaces/project/build/output/**`) ために絶対パスと一致しなければなりません (例: パス内のプレフィックスに '**/' を付けるか、完全なパスとサフィックスに '/**' を付ける)。ファイル監視プロセスが CPU を大量に消費する場合は、関心の低い大きなフォルダー (ビルド出力フォルダーなど) を除外してください。",
+ "watcherExclude": "ファイルの監視から除外するパスまたは [glob パターン](https://aka.ms/vscode-glob-patterns) を構成します。パスは、監視フォルダーに対する相対パスまたは絶対パスのいずれかです。glob パターンは、監視フォルダーから相対的に一致します。ファイル ウォッチャー プロセスが大量の CPU を消費する場合は、あまり重要でない大きなフォルダー (ビルド出力フォルダーなど) を除外してください。",
"watcherInclude": "追加のパスを構成して、ワークスペース内の変更を監視します。既定では、シンボリック リンクのフォルダーを除き、すべてのワークスペースのフォルダーを再帰的に監視します。絶対パスまたは相対パスを明示的に追加して、シンボリック リンクのフォルダーの監視をサポートすることができます。相対パスは、現在開いているワークスペースを使用して絶対パスに解決されます。"
},
"vs/workbench/contrib/files/browser/views/emptyView": {
"noWorkspace": "開いているフォルダーがありません"
},
"vs/workbench/contrib/files/browser/views/explorerDecorationsProvider": {
- "canNotResolve": "ワークスペース フォルダーを解決できません",
+ "canNotResolve": "ワークスペース フォルダー ({0}) を解決できません",
"label": "エクスプローラー",
"symbolicLlink": "シンボリック リンク",
"unknown": "不明なファイルの種類"
},
"vs/workbench/contrib/files/browser/views/explorerView": {
"collapseExplorerFolders": "エクスプローラーのフォルダーを折りたたむ",
- "createNewFile": "新しいファイル",
- "createNewFolder": "新しいフォルダー",
+ "collapseExplorerFoldersMetadata": "エクスプローラー内のすべてのフォルダーを折りたたみます。",
+ "createNewFile": "新しいファイル...",
+ "createNewFolder": "新しいフォルダー...",
"explorerSection": "エクスプローラー セクション: {0}",
- "refreshExplorer": "エクスプローラーを最新表示する"
+ "refreshExplorer": "エクスプローラーを最新表示する",
+ "refreshExplorerMetadata": "エクスプローラーの更新を強制します。"
},
"vs/workbench/contrib/files/browser/views/explorerViewer": {
"confirmMove": "'{0}' を '{1}' に移動しますか?",
@@ -6441,12 +10270,14 @@
"copy": "{0} のコピー",
"copying": "{0} をコピーしています",
"doNotAskAgain": "今後このメッセージを表示しない",
+ "explorerHighlightFolderBadgeTitle": "ディレクトリには {0} 件の一致が含まれています",
"fileInputAriaLabel": "ファイル名を入力します。Enter キーを押して確認するか、Esc キーを押して取り消します。",
"move": "{0} の移動",
"moveButtonLabel": "移動(&&M)",
"moving": "{0} を移動しています",
"numberOfFiles": "{0} ファイル",
"numberOfFolders": "{0} フォルダー",
+ "searchMaxResultsWarning": "結果セットにはすべての一致項目のサブセットのみが含まれています。より限定的な検索条件を入力して、検索結果を絞り込みます。",
"treeAriaLabel": "エクスプローラー"
},
"vs/workbench/contrib/files/browser/views/openEditorsView": {
@@ -6454,11 +10285,11 @@
"flipLayout": "エディター レイアウトの垂直/水平を切り替える",
"miToggleEditorLayout": "レイアウトの反転(&&L)",
"miToggleEditorLayoutWithoutMnemonic": "レイアウトの反転",
- "newUntitledFile": "無題の新規ファイル",
+ "newUntitledFile": "新しい無題のテキスト ファイル",
"openEditors": "開いているエディター"
},
"vs/workbench/contrib/files/browser/workspaceWatcher": {
- "enospcError": "この大規模なワークスペース フォルダーでのファイルの変更をウォッチできません。この問題を解決するには、手順のリンクに従ってください。",
+ "enospcError": "ファイルの変更を監視できません。この問題を解決するには、手順のリンクに従ってください。",
"eshutdownError": "ファイル変更ウォッチャーが予期せず停止しました。ウィンドウを再読み込みすると、ワークスペースでファイルの変更を監視できない場合を除き、ウォッチャーが再度有効になる場合があります。",
"learnMore": "手順",
"reload": "再読み込み"
@@ -6468,58 +10299,59 @@
"dirtyFiles": "{0} 個の未保存のファイル"
},
"vs/workbench/contrib/files/common/files": {
+ "explorerFindProviderActive": "エクスプローラー ツリーがエクスプローラー検索プロバイダーを使用している場合は true。",
"explorerResourceCut": "切り取りと貼り付けのためにエクスプローラー内の項目が切り取られている場合は True です。",
"explorerResourceIsFolder": "エクスプローラー内のフォーカスされている項目がフォルダーの場合は True です。",
"explorerResourceIsRoot": "エクスプローラー内のフォーカスされている項目がルート フォルダーの場合は True です。",
"explorerResourceMoveableToTrash": "エクスプローラー内のフォーカスされている項目をごみ箱に移動できる場合は True です。",
- "explorerResourceReadonly": "エクスプローラー内のフォーカスされている項目が読み取り専用の場合は True です。",
+ "explorerResourceParentReadonly": "エクスプローラーの親要素内のフォーカスされているアイテムが読み取り専用の場合は True です。",
+ "explorerResourceReadonly": "エクスプローラー内のフォーカスされているアイテムが読み取り専用の場合は True です。",
"explorerViewletCompressedFirstFocus": "[エクスプローラー] ビューでフォーカスが圧縮項目の最初の部分にある場合は True です。",
"explorerViewletCompressedFocus": "[エクスプローラー] ビュー内のフォーカスされている項目が圧縮項目である場合は True です。",
"explorerViewletCompressedLastFocus": "[エクスプローラー] ビューでフォーカスが圧縮項目の最後の部分にある場合は True です。",
"explorerViewletFocus": "[エクスプローラー] ビューレット内にフォーカスがある場合は True です。",
"explorerViewletVisible": "[エクスプローラー] ビューレットが表示されている場合は True です。",
"filesExplorerFocus": "[エクスプローラー] ビュー内にフォーカスがある場合は True です。",
+ "foldersViewVisible": "フォルダー ビュー (エクスプローラー ビュー コンテナー内のファイル ツリー) が表示されている場合は True です。",
"openEditorsFocus": "[開いているエディター] ビュー内にフォーカスがある場合は True です。",
- "openEditorsVisible": "[開いているエディター] ビューが表示されている場合は True です。",
"viewHasSomeCollapsibleItem": "エクスプローラー ビューのワークスペースに折りたたみ可能なルートの子要素がある場合は True。"
},
- "vs/workbench/contrib/files/electron-sandbox/fileActions.contribution": {
+ "vs/workbench/contrib/files/electron-browser/fileActions.contribution": {
"filesCategory": "ファイル",
- "openContainer": "このアイテムのフォルダーを開く",
- "revealInMac": "Finder で表示します",
+ "miShare": "共有",
+ "openContainer": "1 つ上のフォルダーを開く",
+ "revealInMac": "Finder で表示する",
"revealInWindows": "エクスプローラーで表示する"
},
- "vs/workbench/contrib/files/electron-sandbox/files.contribution": {
- "textFileEditor": "テキスト ファイル エディター"
- },
- "vs/workbench/contrib/files/electron-sandbox/textFileEditor": {
- "configureMemoryLimit": "メモリ制限を構成する",
- "fileTooLargeForHeapError": "このサイズのファイルを開くには、再起動して、{0} がより多くのメモリを利用できるようにする必要があります",
- "relaunchWithIncreasedMemoryLimit": "{0} MB で再起動"
+ "vs/workbench/contrib/folding/browser/folding.contribution": {
+ "formatter.default": "他のすべての折りたたみ範囲プロバイダーよりも優先される既定の折りたたみ範囲プロバイダーを定義します。折りたたみ範囲プロバイダーに貢献する拡張機能の識別子である必要があります。",
+ "null": "すべて",
+ "nullFormatterDescription": "すべてのアクティブな折りたたみ範囲プロバイダー"
},
"vs/workbench/contrib/format/browser/formatActionsMultiple": {
- "cancel": "キャンセル",
"config": "既定のフォーマッタを構成...",
"config.bad": "拡張機能 '{0}' がフォーマッタとして構成されていますが、利用できません。続行するには、別の既定フォーマッタを選択してください。",
"config.needed": "'{0}' ファイルには複数のフォーマッタがあります。そのうちの 1 つを既定のフォーマッタとして構成する必要があります。",
"def": "(既定)",
- "do.config": "構成...",
+ "do.config": "構成(&&C)...",
+ "do.config.command": "構成...",
+ "do.config.notification": "構成します...",
"format.placeHolder": "フォーマッタを選択します",
"formatDocument.label.multiple": "ドキュメントのフォーマット...",
"formatSelection.label.multiple": "選択範囲をフォーマット...",
"formatter": "書式設定",
"formatter.default": "他のすべてのフォーマッタ設定よりも優先される、既定のフォーマッタを定義します。フォーマッタを提供している拡張機能の識別子にする必要があります。",
- "miss": "拡張機能 '{0}' はフォーマッタとして構成されていますが、'{1}'-ファイルをフォーマットできません",
- "miss.1": "既定のフォーマッタを構成する",
+ "miss": "既定のフォーマッタを構成する",
+ "miss.1": "拡張機能 '{0}' はフォーマッタとして構成されていますが、'{1}'-ファイルをフォーマットできません",
+ "miss.2": "拡張機能 '{0}' はフォーマッタとして構成されていますが、'{1}'ファイル全体のみを書式設定でき、選択範囲または一部に対しては書式設定できません。",
"null": "なし",
"nullFormatterDescription": "なし",
"select": "'{0}' ファイルの既定のフォーマッタを選択する",
"summary": "フォーマッタの競合"
},
"vs/workbench/contrib/format/browser/formatActionsNone": {
- "cancel": "キャンセル",
"formatDocument.label.multiple": "ドキュメントのフォーマット",
- "install.formatter": "フォーマッタをインストール...",
+ "install.formatter": "フォーマッタをインストール(&&I)...",
"no.provider": "'{0}' ファイルのフォーマッタがインストールされていません。",
"too.large": "このファイルはサイズが大きすぎるため、フォーマットできません"
},
@@ -6529,35 +10361,431 @@
"vs/workbench/contrib/inlayHints/browser/inlayHintsAccessibilty": {
"description": "インレイ ヒント情報を使用したコード",
"isReadingLineWithInlayHints": "現在の行とそのインレイ ヒントが現在フォーカスされているかどうか",
- "read.title": "インライン ヒントを使用した行の読み取り",
+ "read.title": "インレイ ヒントを使用して行を読み取る",
"stop.title": "インレイ ヒントの読み取りを停止する"
},
+ "vs/workbench/contrib/inlineChat/browser/inlineChat.contribution": {
+ "cancel": "要求の取り消し",
+ "cancelShort": "取り消す",
+ "send.edit": "コードの編集",
+ "send.generate": "生成"
+ },
+ "vs/workbench/contrib/inlineChat/browser/inlineChatActions": {
+ "Keep": "保持",
+ "apply1": "変更を受け入れる",
+ "apply2": "同意する",
+ "arrowDown": "カーソルを下へ",
+ "arrowUp": "カーソルを上へ",
+ "cat": "インライン チャット",
+ "chat.rerun.label": "要求の再実行",
+ "close": "閉じる",
+ "close2": "閉じる",
+ "configure": "インライン チャットの構成",
+ "discard": "破棄",
+ "focus": "入力のフォーカス",
+ "moveToNextHunk": "次の変更箇所に移動",
+ "moveToPreviousHunk": "前の変更箇所に移動",
+ "rerun": "再実行",
+ "run": "インライン チャットを開く",
+ "showChanges": "変更の切り替え",
+ "startInlineChat": "エディター ツール バーからインライン チャットを生成するアイコン。",
+ "unstash": "最後に閉じられたインライン チャットの再開",
+ "viewInChat": "チャットで表示する"
+ },
+ "vs/workbench/contrib/inlineChat/browser/inlineChatController": {
+ "askOrEditInContext": "コンテキストで質問または編集",
+ "create.fail": "エディター チャットを開始できませんでした",
+ "empty": "結果なし。入力を絞り込んで、もう一度お試しください。",
+ "err.apply": "変更を適用できませんでした。",
+ "err.discard": "変更を破棄できませんでした。",
+ "fix1": "アタッチされた問題を修正する",
+ "fixN": "アタッチされた問題を修正する",
+ "loading": "作業中...",
+ "placeholder": "コードを編集、リファクタリング、生成します",
+ "responseWasEmpty": "応答が空でした",
+ "welcome.2": "準備しています..."
+ },
+ "vs/workbench/contrib/inlineChat/browser/inlineChatSessionServiceImpl": {
+ "chat.remove.confirmation.checkbox": "今後は確認しない",
+ "confirm": "[チャット] ビューで続行しますか?",
+ "confirm.cancel": "キャンセル",
+ "confirm.detail": "インライン チャットは、単一のファイル コードの変更を行うために設計されています。[チャット] ビューで要求を続行するか、インライン チャット用に言い換えます。",
+ "confirm.title": "[チャット] ビューで続行しますか?",
+ "confirm.yes": "[チャット] ビューで続行",
+ "name": "パネル チャットへのインライン チャット",
+ "resetChoice.label": "[インライン チャットをパネル チャットに移動する] の選択をオフにします"
+ },
+ "vs/workbench/contrib/inlineChat/browser/inlineChatWidget": {
+ "aria-label": "インライン チャット入力",
+ "feedbackThanks": "フィードバックをお送りいただき、ありがとうございました!",
+ "inlineChat.accessibilityHelp": "インライン チャット入力。インライン チャットのアクセシビリティのヘルプに {0} を使用します。",
+ "inlineChat.accessibilityHelpNoKb": "インライン チャット入力。詳細については、インライン チャットのアクセシビリティのヘルプ コマンドを実行してください。",
+ "termsDisclaimer": "{0} Copilot を続行することにより、{1} の [使用条件]({2}) および [プライバシーに関する声明]({3}) に同意したものと見なされます"
+ },
+ "vs/workbench/contrib/inlineChat/browser/inlineChatZoneWidget": {
+ "inlineChatClosed": "閉じたインライン チャット ウィジェット"
+ },
+ "vs/workbench/contrib/inlineChat/common/inlineChat": {
+ "accessibleDiffView": "インライン チャットが変更に対してアクセシビリティの高い差分ビューアーもレンダリングするかどうか。",
+ "accessibleDiffView.auto": "アクセシビリティの高い差分ビューアーは、有効になっているスクリーン リーダー モードに基づいています。",
+ "accessibleDiffView.off": "アクセシビリティの高い差分ビューアーは一度も有効になっていません。",
+ "accessibleDiffView.on": "アクセシビリティの高い差分ビューアーは常に有効です。",
+ "editorMinimap.inlineChatInserted": "インライン チャットが挿入されたコンテンツのミニマップ マーカーの色。",
+ "editorOverviewRuler.inlineChatInserted": "インライン チャットが挿入されたコンテンツの概要ルーラー マーカーの色。",
+ "editorOverviewRuler.inlineChatRemoved": "インライン チャットが削除されたコンテンツの概要ルーラー マーカーの色。",
+ "enableV2": "次のバージョンのインライン チャットを使用するかどうか。",
+ "finishOnType": "変更されたリージョン外で入力するときにインライン チャット セッションを終了するかどうか。",
+ "holdToSpeech": "インライン チャット キー バインドを保持すると、音声認識が自動的に有効になるかどうか。",
+ "inlineChat.background": "対話型エディター ウィジェットの背景色",
+ "inlineChat.border": "対話型エディター ウィジェットの罫線の色",
+ "inlineChat.foreground": "対話型エディター ウィジェットの前景色",
+ "inlineChat.shadow": "対話型エディター ウィジェットの影の色",
+ "inlineChatChangeHasDiff": "現在の変更で差分の表示がサポートされているかどうか",
+ "inlineChatChangeShowsDiff": "現在の変更に差分が表示されているかどうか",
+ "inlineChatDiff.inserted": "対話型エディター入力に挿入されたテキストの背景色",
+ "inlineChatDiff.removed": "対話型エディター入力で削除されたテキストの背景色",
+ "inlineChatEditing": "ユーザーが現在インライン チャットでコードを編集しているか生成しているかどうか",
+ "inlineChatEmpty": "対話型エディター入力が空であるかどうか",
+ "inlineChatFocused": "対話型エディター入力がフォーカスされているかどうか",
+ "inlineChatHasEditsAgent": "対話型エディターのインライン用エージェントが存在するかどうか",
+ "inlineChatHasNotebookAgent": "ノートブック セルのエージェントが存在するかどうか",
+ "inlineChatHasNotebookInline": "ノートブック セルのエージェントが存在するかどうか",
+ "inlineChatHasPossible": "インライン チャットのプロバイダーが存在するかどうか、およびインライン チャットのエディターが開かれているかどうか",
+ "inlineChatHasProvider": "対話型エディターのプロバイダーが存在するかどうか",
+ "inlineChatHasStashedSession": "対話型エディターがクイック復元のためにセッションを保持したかどうか",
+ "inlineChatInnerCursorFirst": "対話型エディター入力のカーソルが最初の行にあるかどうか",
+ "inlineChatInnerCursorLast": "対話型エディター入力のカーソルが最終行にあるかどうか",
+ "inlineChatInput.background": "対話型エディター入力の背景色",
+ "inlineChatInput.border": "対話型エディター入力の罫線の色",
+ "inlineChatInput.focusBorder": "フォーカス時の対話型エディター入力の罫線の色",
+ "inlineChatInput.placeholderForeground": "対話型エディター入力プレースホルダーの前景色",
+ "inlineChatOuterCursorPosition": "外部エディターのカーソルが対話型エディター入力より上か下かのいずれか",
+ "inlineChatRequestInProgress": "インライン チャット要求が現在進行中かどうか",
+ "inlineChatResponseFocused": "対話型ウィジェットの応答がフォーカスされているかどうか",
+ "inlineChatResponseTypes": "受信した応答の種類、まだ何もない、メッセージのみ、またはメッセージとして送信されたローカルの編集",
+ "inlineChatVisible": "対話型エディター入力が表示されているかどうか",
+ "notebookAgent": "ノートブックのインライン チャット ウィジェットに対してエージェントのような動作を有効にします。"
+ },
+ "vs/workbench/contrib/inlineChat/electron-browser/inlineChatActions": {
+ "holdForSpeech": "押したままにして話す"
+ },
+ "vs/workbench/contrib/inlineCompletions/browser/inlineCompletionLanguageStatusBarContribution": {
+ "inlineCompletionAvailable": "インライン入力候補を使用できます",
+ "inlineEditAvailable": "インライン編集が可能です",
+ "inlineSuggestionLoading": "読み込んでいます...",
+ "inlineSuggestions": "インライン候補",
+ "inlineSuggestionsSmall": "インライン候補",
+ "noInlineSuggestionAvailable": "インライン候補は利用できません"
+ },
"vs/workbench/contrib/interactive/browser/interactive.contribution": {
"interactive.activeCodeBorder": "エディターにフォーカスがある場合の、現在の対話型コード セルの境界線の色。",
"interactive.execute": "コードの実行",
- "interactive.history.focus": "対話型ウィンドウの履歴にフォーカスする",
+ "interactive.history.focus": "履歴のフォーカス",
"interactive.history.next": "履歴内の次の値",
"interactive.history.previous": "履歴内の前の値",
"interactive.inactiveCodeBorder": "エディターにフォーカスがない場合の、現在の対話型コード セルの境界線の色。",
"interactive.input.clear": "インタラクティブ ウィンドウ入力エディターの内容を消去します",
- "interactive.input.focus": "対話型ウィンドウの入力エディターにフォーカスする",
+ "interactive.input.focus": "入力エディターのフォーカス",
"interactive.open": "インタラクティブ ウィンドウを開く",
"interactiveScrollToBottom": "一番下にスクロール",
"interactiveScrollToTop": "一番上にスクロール",
+ "interactiveWindow": "対話型ウィンドウ",
"interactiveWindow.alwaysScrollOnNewCell": "対話型ウィンドウを自動的にスクロールして、最後に実行されたステートメントの出力を表示します。この値が false の場合、最後のセルが既にスクロール先の場合にのみウィンドウがスクロールされます。",
- "interactiveWindow.restore": "Controls whether the Interactive Window sessions/history should be restored across window reloads. Whether the state of controllers used in Interactive Windows is persisted across window reloads are controlled by extensions contributing controllers."
- },
- "vs/workbench/contrib/interactive/browser/interactiveEditor": {
- "interactiveInputPlaceHolder": "こちらに '{0}' コードを入力し、{1} を押して実行してください"
- },
- "vs/workbench/contrib/issue/electron-sandbox/issue.contribution": {
- "miOpenProcessExplorerer": "プロセス エクスプローラーを開く(&&P)",
- "miReportIssue": "問題を報告(&&I)",
- "reportIssueInEnglish": "問題を英語で報告..."
+ "interactiveWindow.executeWithShiftEnter": "shift+enter を使用してインタラクティブ ウィンドウ (REPL) 入力ボックスを実行し、改行の作成に使用できるようにします。",
+ "interactiveWindow.promptToSaveOnClose": "インタラクティブ ウィンドウを閉じたときに保存するように求めるメッセージを表示します。この設定の変更の影響を受けるのは、新しいインタラクティブ ウィンドウのみです。",
+ "interactiveWindow.showExecutionHint": "コードの実行方法を示すヒントをインタラクティブ ウィンドウ (REPL) 入力ボックスに表示します。"
+ },
+ "vs/workbench/contrib/interactive/browser/replInputHintContentWidget": {
+ "ReplInputAriaLabelHelp": "ユーザー補助のヘルプに {0} を使用します。",
+ "ReplInputAriaLabelHelpNoKb": "詳細情報については、Open Accessibility Help コマンドを実行してください。",
+ "disableHint": " このヒントを無効にするには、設定の {0} を切り替えます。",
+ "emptyHintText": "{0} を押して実行します。"
+ },
+ "vs/workbench/contrib/interactiveEditor/browser/interactiveEditorActions": {
+ "accept": "要求する",
+ "actions.interactiveSession.accessibiltyHelpEditor": "対話型セッション エディターのアクセシビリティ ヘルプ",
+ "apply1": "変更を受け入れる",
+ "apply2": "同意する",
+ "arrowDown": "カーソルを下へ",
+ "arrowUp": "カーソルを上へ",
+ "cancel": "取り消す",
+ "cat": "対話型エディター",
+ "contractMessage": "コントラクト メッセージ",
+ "copyRecordings": "(開発者) Exchange をクリップボードに書き込む",
+ "discard": "破棄",
+ "discardMenu": "破棄...",
+ "expandMessage": "メッセージの展開",
+ "feedback.helpful": "役に立った",
+ "feedback.unhelpful": "役に立たなかった",
+ "focus": "入力のフォーカス",
+ "label": "`{0}` と {1} フォローアップ ({2})",
+ "nextFromHistory": "履歴から次へ",
+ "previousFromHistory": "履歴から前へ",
+ "run": "コード チャットを開始する",
+ "stop": "要求の停止",
+ "toggleDiff": "差分の切り替え",
+ "toggleDiff2": "インライン差分の表示",
+ "undo.clipboard": "クリップボードに破棄",
+ "undo.newfile": "新しいファイルに破棄",
+ "unstash": "最後に消去されたコード チャットの再開",
+ "viewInChat": "チャットで表示する"
+ },
+ "vs/workbench/contrib/interactiveEditor/browser/interactiveEditorController": {
+ "create.fail": "エディター チャットを開始できませんでした",
+ "create.fail.detail": "エラー ログを参照して、後でもう一度お試しください。",
+ "default.placeholder": "質問する",
+ "default.placeholder.history": "{0} ({1}、履歴の {2})",
+ "empty": "結果なし。入力を絞り込んで、もう一度お試しください。",
+ "err.apply": "変更を適用できませんでした。",
+ "err.discard": "変更を破棄できませんでした。",
+ "thinking": "思考中…",
+ "welcome.1": "AI によって生成されたコードが正しくない可能性があります。"
+ },
+ "vs/workbench/contrib/interactiveEditor/browser/interactiveEditorStrategies": {
+ "lines.0": "何も変更されていません",
+ "lines.1": "1 行を変更しました",
+ "lines.N": "{0} 行を変更しました"
+ },
+ "vs/workbench/contrib/interactiveEditor/browser/interactiveEditorWidget": {
+ "aria-label": "対話型エディター入力",
+ "interactiveEditor.accessibilityHelp": "対話型エディターの入力。対話型エディターのアクセシビリティ ヘルプには {0} を使用します。",
+ "interactiveSessionInput.accessibilityHelpNoKb": "対話型エディターの入力。詳細については、対話型エディターのアクセシビリティ ヘルプ コマンドを実行してください。",
+ "modified": "変更済み",
+ "original": "オリジナル"
+ },
+ "vs/workbench/contrib/interactiveEditor/common/interactiveEditor": {
+ "editMode": "対話型エディターで作成された変更をドキュメントに直接適用するか、最初にプレビューするかを構成します。",
+ "editMode.live": "変更はドキュメントに直接適用されますが、インライン差分を介して強調表示することもできます。セッションを終了しても変更は保持されます。",
+ "editMode.livePreview": "変更はドキュメントに直接適用され、インライン差分または左右に並べて表示差分を介して視覚的に強調表示されます。セッションを終了しても変更は保持されます。",
+ "editMode.preview": "変更はプレビューのみであり、適用ボタンを使用して承認する必要があります。セッションを終了すると、変更は破棄されます。",
+ "interactiveEditor.border": "対話型エディター ウィジェットの罫線の色",
+ "interactiveEditor.regionHighlight": "現在の対話型領域の背景の強調表示。透過的である必要があります。",
+ "interactiveEditor.shadow": "対話型エディター ウィジェットの影の色",
+ "interactiveEditorDidEdit": "対話型エディターがコードを変更したかどうか",
+ "interactiveEditorDiff": "対話型エディターで変更の差分を表示するかどうか",
+ "interactiveEditorDiff.inserted": "対話型エディター入力に挿入されたテキストの背景色",
+ "interactiveEditorDiff.removed": "対話型エディター入力で削除されたテキストの背景色",
+ "interactiveEditorDocumentChanged": "ドキュメントが同時に変更されたかどうか",
+ "interactiveEditorEmpty": "対話型エディター入力が空であるかどうか",
+ "interactiveEditorFocused": "対話型エディター入力がフォーカスされているかどうか",
+ "interactiveEditorHasActiveRequest": "対話型エディターにアクティブな要求があるかどうか",
+ "interactiveEditorHasProvider": "対話型エディターのプロバイダーが存在するかどうか",
+ "interactiveEditorHasStashedSession": "対話型エディターがクイック復元のためにセッションを保持したかどうか",
+ "interactiveEditorInnerCursorFirst": "対話型エディター入力のカーソルが最初の行にあるかどうか",
+ "interactiveEditorInnerCursorLast": "対話型エディター入力のカーソルが最終行にあるかどうか",
+ "interactiveEditorInput.background": "対話型エディター入力の背景色",
+ "interactiveEditorInput.border": "対話型エディター入力の罫線の色",
+ "interactiveEditorInput.focusBorder": "フォーカス時の対話型エディター入力の罫線の色",
+ "interactiveEditorInput.placeholderForeground": "対話型エディター入力プレースホルダーの前景色",
+ "interactiveEditorLastFeedbackKind": "提供された最後の種類のフィードバック",
+ "interactiveEditorMarkdownMessageCropState": "対話型エディターメッセージをトリミングするか、トリミングしないか、展開しないかどうか",
+ "interactiveEditorOuterCursorPosition": "外部エディターのカーソルが対話型エディター入力より上か下かのいずれか",
+ "interactiveEditorResponseType": "現在の対話型エディター セッションの最後の応答の種類",
+ "interactiveEditorVisible": "対話型エディター入力が表示されているかどうか"
+ },
+ "vs/workbench/contrib/interactiveSession/browser/actions/interactiveSessionActions": {
+ "actions.ineractiveSession.acceptInput": "対話型セッションでの入力を反映",
+ "actions.interactiveSession.focus": "対話型セッションのフォーカス",
+ "interactiveSession.category": "対話型セッション",
+ "interactiveSession.clear.label": "クリア",
+ "interactiveSession.clearHistory.label": "入力履歴のクリア",
+ "interactiveSession.focusInput.label": "入力のフォーカス",
+ "interactiveSession.history.label": "履歴を表示する",
+ "interactiveSession.history.pick": "復元するチャット セッションを選択する",
+ "interactiveSession.open": "エディターを開く ({0})"
+ },
+ "vs/workbench/contrib/interactiveSession/browser/actions/interactiveSessionCodeblockActions": {
+ "interactive.copyCodeBlock.label": "コピー",
+ "interactive.insertCodeBlock.label": "カーソルに挿入",
+ "interactive.insertIntoNewFile.label": "新しいファイルに挿入する",
+ "interactive.runInTerminal.label": "ターミナルで実行する"
+ },
+ "vs/workbench/contrib/interactiveSession/browser/actions/interactiveSessionCopyActions": {
+ "interactive.copyAll.label": "すべてコピー",
+ "interactive.copyItem.label": "コピー"
+ },
+ "vs/workbench/contrib/interactiveSession/browser/actions/interactiveSessionExecuteActions": {
+ "interactive.cancel.label": "取り消す",
+ "interactive.submit.label": "送信"
+ },
+ "vs/workbench/contrib/interactiveSession/browser/actions/interactiveSessionTitleActions": {
+ "interactive.voteDown.label": "否決",
+ "interactive.voteUp.label": "可決"
+ },
+ "vs/workbench/contrib/interactiveSession/browser/contrib/interactiveSessionInputEditorContrib": {
+ "interactive.input.placeholderNoCommands": "質問する",
+ "interactive.input.placeholderWithCommands": "質問するか、トピックに '/' を入力します"
+ },
+ "vs/workbench/contrib/interactiveSession/browser/interactiveSession.contribution": {
+ "interactiveSession": "対話型セッション",
+ "interactiveSession.editor.fontFamily": "対話型セッションでのフォント ファミリを制御します。",
+ "interactiveSession.editor.fontSize": "対話型セッション内のフォント サイズをピクセル単位で制御します。",
+ "interactiveSession.editor.fontWeight": "対話型セッションでのフォントの太さを制御します。",
+ "interactiveSession.editor.lineHeight": "対話型セッション内での行の高さをピクセル単位で制御します。フォント サイズから行の高さを計算するには 0 を使用します。",
+ "interactiveSession.editor.wordWrap": "対話型セッションで行を折り返すかどうかを制御します。",
+ "interactiveSessionConfigurationTitle": "対話型セッション"
+ },
+ "vs/workbench/contrib/interactiveSession/browser/interactiveSessionContributionServiceImpl": {
+ "vscode.extension.contributes.interactiveSession": "対話型セッション プロバイダーへの貢献",
+ "vscode.extension.contributes.interactiveSession.icon": "この対話型セッション プロバイダーのアイコン。",
+ "vscode.extension.contributes.interactiveSession.id": "この対話型セッション プロバイダー用の一意識別子。",
+ "vscode.extension.contributes.interactiveSession.label": "この対話型セッション プロバイダーの表示名。",
+ "vscode.extension.contributes.interactiveSession.when": "この対話型セッション プロバイダーを有効にするには true にする必要がある条件です。"
+ },
+ "vs/workbench/contrib/interactiveSession/browser/interactiveSessionEditorInput": {
+ "interactiveSessionEditorName": "対話型セッション"
+ },
+ "vs/workbench/contrib/interactiveSession/browser/interactiveSessionInputPart": {
+ "interactiveSessionInput": "対話型セッション入力"
+ },
+ "vs/workbench/contrib/interactiveSession/browser/interactiveSessionListRenderer": {
+ "interactiveSession": "対話型セッション"
+ },
+ "vs/workbench/contrib/interactiveSession/browser/interactiveSessionWidget": {
+ "clear": "セッションのクリア"
+ },
+ "vs/workbench/contrib/interactiveSession/common/interactiveSessionColors": {
+ "interactive.requestBackground": "対話型要求の背景色。",
+ "interactive.requestBorder": "対話型要求の罫線の色。"
+ },
+ "vs/workbench/contrib/interactiveSession/common/interactiveSessionContextKeys": {
+ "hasInteractiveSessionProvider": "対話型セッション プロバイダーが登録されている場合は True です。",
+ "inInteractiveInput": "フォーカスが対話型入力にある場合は True、それ以外の場合は False です。",
+ "inInteractiveSession": "フォーカスが対話型入力内にある場合は True、それ以外の場合は False です。",
+ "interactiveInputHasText": "対話型入力にテキストがある場合は True です。",
+ "interactiveSessionRequestInProgress": "現在の要求がまだ進行中の場合は True です。",
+ "interactiveSessionResponseHasProviderId": "プロバイダーがこの回答に ID を割り当てた場合は True です。",
+ "interactiveSessionResponseVote": "回答が可決されると、'up' に設定されます。否決されると、'down' に設定されます。それ以外の場合は空の文字列です。"
+ },
+ "vs/workbench/contrib/interactiveSession/common/interactiveSessionServiceImpl": {
+ "emptyResponse": "プロバイダーが null 応答を返しました"
+ },
+ "vs/workbench/contrib/interactiveSession/common/interactiveSessionViewModel": {
+ "thinking": "思考中"
+ },
+ "vs/workbench/contrib/issue/browser/baseIssueReporterService": {
+ "acknowledge": "バージョンの確認",
+ "bugDescription": "問題を再現するための正確な手順を共有します。このとき、期待する結果と実際の結果を提供してください。GitHub-flavored Markdown に対応しています。GitHub 上で確認するときに問題を編集してスクリーンショットを追加できます。",
+ "bugReporter": "バグ報告",
+ "closed": "クローズ済み",
+ "create": "GitHub で作成",
+ "createInternally": "内部で作成",
+ "createOnGitHub": "GitHub で作成",
+ "description": "説明",
+ "disabledExtensions": "拡張機能が無効です。",
+ "elsewhereDescription": "'{0}' 拡張機能は、外部の問題レポーターを使用することを好みます。その問題報告エクスペリエンスに移動するには、下のボタンをクリックしてください。",
+ "extension": "VS Code 拡張機能",
+ "extensionPlaceholder": "例:拡張機能の Readme イメージに代替テキストがありません",
+ "featureRequest": "機能要求",
+ "featureRequestDescription": "見てみたいその機能についての詳細を入力してください。GitHub-flavored Markdown に対応しています。GitHub 上で確認するときに問題を編集してスクリーンショットを追加できます。",
+ "handlesIssuesElsewhere": "この拡張機能は、VS Code の外部の問題を処理します",
+ "hide": "非表示",
+ "internalPreviewMessage": "Copilot のデバッグ ログに個人情報が含まれている場合:",
+ "marketplace": "拡張機能マーケットプレース",
+ "marketplacePlaceholder": "例: インストールされている拡張機能を無効にできません",
+ "open": "開く",
+ "openIssueReporter": "外部問題報告者を開く",
+ "pasteData": "必要なデータが送信するには大きすぎたため、クリップボードに書き込みました。貼り付けてください。",
+ "performanceIssue": "パフォーマンスの問題 (フリーズ、低速、クラッシュ)",
+ "performanceIssueDesciption": "このパフォーマンスの問題はいつ発生しましたか? それは起動時ですか? それとも特定のアクションのあとですか? GitHub-flavored Markdown に対応しています。GitHub 上で確認するときに問題を編集してスクリーンショットを追加できます。",
+ "preview": "GitHub 上でプレビュー",
+ "previewOnGitHub": "GitHub 上でプレビュー",
+ "privateCreate": "内部で作成",
+ "saveExtensionData": "拡張機能データの保存",
+ "selectExtension": "拡張機能の選択",
+ "selectSource": "ソースの選択",
+ "show": "表示",
+ "similarIssues": "類似の問題",
+ "stepsToReproduce": "再現手順",
+ "undefinedPlaceholder": "タイトルを入力してください",
+ "unknown": "不明",
+ "vscode": "Visual Studio Code",
+ "vscodePlaceholder": "例: ワークベンチに問題パネルがありません"
},
- "vs/workbench/contrib/issue/electron-sandbox/issueActions": {
- "openProcessExplorer": "プロセス エクスプローラーを開く",
- "reportPerformanceIssue": "パフォーマンスの問題のレポート..."
+ "vs/workbench/contrib/issue/browser/issue.contribution": {
+ "statusUnsupported": "--status 引数はブラウザーではまだサポートされていません。"
+ },
+ "vs/workbench/contrib/issue/browser/issueFormService": {
+ "cancel": "キャンセル",
+ "confirmCloseIssueReporter": "入力した内容は保存されません。このウィンドウを閉じますか?",
+ "issueReporterWriteToClipboard": "データが多すぎて、GitHub に直接送信することができませんでした。データはクリップボードにコピーされます。開かれる GitHub 問題ページに貼り付けてください。",
+ "ok": "OK(&&O)",
+ "yes": "はい(&&Y)"
+ },
+ "vs/workbench/contrib/issue/browser/issueQuickAccess": {
+ "contributedIssuePage": "[拡張機能] ページを開く",
+ "extensions": "拡張機能",
+ "reportExtensionMarketplace": "拡張機能マーケットプレース"
+ },
+ "vs/workbench/contrib/issue/browser/issueReporterPage": {
+ "acknowledgements": "VS Codeのバージョンが更新されていないことを認識しており、この問題は解決された可能性があります。",
+ "chooseExtension": "拡張機能",
+ "completeInEnglish": "フォームに英語で記入してください。",
+ "descriptionEmptyValidation": "説明が必要です。",
+ "descriptionTooShortValidation": "より長い説明を入力してください。",
+ "details": "詳細を入力してください。",
+ "disableExtensions": "すべての拡張機能を無効にしてウィンドウを再読みする",
+ "disableExtensionsLabelText": "{0} を実行後に問題を再現してみてください。拡張機能がアクティブな場合にのみ問題が再現する場合は、拡張機能の問題である可能性があります。",
+ "downloadExtensionData": "拡張機能データのダウンロード",
+ "extensionData": "拡張機能に含める追加のデータがありません。",
+ "extensionWithNoBugsUrl": "問題を報告するための URL が指定されていないため、問題レポーターはこの拡張機能の問題を作成できません。他の手順が利用可能かどうかを確認するには、この拡張機能のマーケットプレース ページをご確認ください。",
+ "extensionWithNonstandardBugsUrl": "問題レポーターでは、この拡張機能の問題を作成できません。問題を報告するには、{0} にアクセスしてください。",
+ "issueSourceEmptyValidation": "問題のソースが必要です。",
+ "issueSourceLabel": "対象",
+ "issueTitleLabel": "タイトル",
+ "issueTitleRequired": "題名を入力してください",
+ "issueTypeLabel": "これは",
+ "reviewGuidanceLabel": "ここで問題を報告する前に、「Microsoft が提供するガイダンス 」を確認してください。フォームに英語で記入してください。",
+ "sendExperiments": "A/B 実験情報を含める",
+ "sendExtensionData": "追加の拡張機能情報を含める",
+ "sendExtensions": "自分の有効な拡張機能を含める",
+ "sendProcessInfo": "自分が現在実行中のプロセスを含める",
+ "sendSystemInfo": "自分のシステム情報を含める",
+ "sendWorkspaceInfo": "自分のワークスペースのメタデータを含める",
+ "show": "表示",
+ "titleEmptyValidation": "タイトルが必要です。",
+ "titleLengthValidation": "タイトルが長すぎます。"
+ },
+ "vs/workbench/contrib/issue/browser/issueReporterService": {
+ "undefinedPlaceholder": "タイトルを入力してください"
+ },
+ "vs/workbench/contrib/issue/browser/issueTroubleshoot": {
+ "I cannot reproduce": "再現できません",
+ "Stop": "停止",
+ "This is Bad": "再現できます",
+ "ask to download insiders": "{0} Insiders で問題をダウンロードして再現してみてください。",
+ "ask to reproduce issue": "{0} Insiders で問題を再現してみて、問題が存在するかどうかを確認してください。",
+ "bad": "再現できます",
+ "detail.start": "問題のトラブルシューティングは、問題の原因を特定するのに役立つプロセスです。問題の原因は、拡張機能による設定ミス、または {0} 自体である可能性があります。\r\n\r\nプロセス中、ウィンドウは繰り返し再読み込みされます。毎回、問題がまだ発生しているかどうかを確認する必要があります。",
+ "download insiders": "{0} Insiders のダウンロード",
+ "empty.profile": "問題のトラブルシューティングがアクティブになっており、構成が一時的に既定値にリセットされています。問題をまだ再現できるかどうかを確認し、これらのオプションから選択して続行してください。",
+ "good": "再現できません",
+ "issue is in core": "問題のトラブルシューティングで、{0} に問題があることが判明しました。",
+ "issue is with configuration": "問題のトラブルシューティングにより、問題の原因が構成にあることが特定されました。\"Export Profile\" コマンドを使用して構成をエクスポートして問題を報告し、問題レポートでファイルを共有してください。",
+ "msg": "&&問題のトラブルシューティング",
+ "profile.extensions.disabled": "問題のトラブルシューティングがアクティブになっており、インストールされているすべての拡張機能が一時的に無効になっています。問題をまだ再現できるかどうかを確認し、これらのオプションから選択して続行してください。",
+ "report anyway": "問題を報告する",
+ "stop": "停止",
+ "title.stop": "問題のトラブルシューティングの停止",
+ "troubleshoot issue": "問題のトラブルシューティング",
+ "troubleshootIssue": "問題のトラブルシューティング...",
+ "use insiders": "これは、問題が既に解決されており、今後のリリースで利用可能になる可能性があることを意味している可能性があります。新しい安定バージョンが利用可能になるまで、{0} Insiders を安全に使用できます。"
+ },
+ "vs/workbench/contrib/issue/common/issue.contribution": {
+ "miReportIssue": "問題を報告(&&I)",
+ "reportIssueInEnglish": "問題を英語で報告..."
+ },
+ "vs/workbench/contrib/issue/electron-browser/issue.contribution": {
+ "openIssueReporter": "[問題レポーター] を開く",
+ "reportPerformanceIssue": "パフォーマンスの問題のレポート...",
+ "tasksQuickAccessPlaceholder": "報告する拡張機能の名前を入力してください。"
+ },
+ "vs/workbench/contrib/issue/electron-browser/issueReporterService": {
+ "noCurrentExperiments": "現在の実験はありません。",
+ "pasteData": "必要なデータが送信するには大きすぎたため、クリップボードに書き込みました。貼り付けてください。",
+ "saveExtensionData": "拡張機能データの保存",
+ "undefinedPlaceholder": "タイトルを入力してください",
+ "updateAvailable": "{0} の新しいバージョンを使用できます。"
},
"vs/workbench/contrib/keybindings/browser/keybindings.contribution": {
"toggleKeybindingsLog": "キーボード ショートカットの切り替えのトラブルシューティング"
@@ -6569,10 +10797,9 @@
"noDetection": "エディター言語を検出できません",
"status.autoDetectLanguage": "検出された言語を承諾する: {0}"
},
- "vs/workbench/contrib/languageStatus/browser/languageStatus.contribution": {
+ "vs/workbench/contrib/languageStatus/browser/languageStatus": {
"aria.1": "{0}、{1}",
"aria.2": "{0}",
- "cat": "表示",
"langStatus.aria": "エディター言語の状態: {0}",
"langStatus.name": "エディター言語の状態",
"name.pattern": "{0} (言語の状態)",
@@ -6580,6 +10807,27 @@
"reset": "言語状態のリセット操作カウンター",
"unpin": "ステータス バーから削除"
},
+ "vs/workbench/contrib/limitIndicator/browser/limitIndicator.contribution": {
+ "colorDecoratorsStatusItem.name": "カラー デコレーターの状態",
+ "colorDecoratorsStatusItem.source": "カラー デコレーター",
+ "foldingRangesStatusItem.name": "折りたたみの状態",
+ "foldingRangesStatusItem.source": "折りたたみ",
+ "status.button.configure": "構成",
+ "status.limited.details": "パフォーマンス上の理由で {0} のみ表示される",
+ "status.limitedColorDecorators.short": "カラー デコレーター",
+ "status.limitedFoldingRanges.short": "折りたたみ範囲"
+ },
+ "vs/workbench/contrib/list/browser/listResizeColumnAction": {
+ "list": "一覧",
+ "list.resizeColumn": "列のサイズ変更"
+ },
+ "vs/workbench/contrib/list/browser/tableColumnResizeQuickPick": {
+ "table.column.resizeValue.invalidRange": "0 より大きく 100 以下の数値を入力してください。",
+ "table.column.resizeValue.invalidType": "整数を入力してください。",
+ "table.column.resizeValue.placeHolder": "例: 20、60、100...",
+ "table.column.resizeValue.prompt": "'{0}' 列の幅をパーセントで入力してください。",
+ "table.column.selection": "サイズを変更する列、フィルター処理する型を選択します。"
+ },
"vs/workbench/contrib/localHistory/browser/localHistory": {
"localHistoryIcon": "タイムライン ビューのローカル履歴エントリのアイコン。",
"localHistoryRestore": "ローカル履歴エントリの内容を復元するためのアイコン。"
@@ -6606,6 +10854,7 @@
"localHistory.rename": "名前の変更",
"localHistory.restore": "コンテンツの復元",
"localHistory.restoreViaPicker": "復元するエントリの検索",
+ "localHistory.restoreViaPickerMenu": "ローカル履歴: 復元するエントリの検索...",
"localHistory.selectForCompare": "比較対象の選択",
"localHistoryCompareToFileEditorLabel": "{0} ({1} • {2}) ↔ {3}",
"localHistoryCompareToPreviousEditorLabel": "{0} ({1} • {2}) ↔ {3} ({4} • {5})",
@@ -6621,34 +10870,16 @@
"vs/workbench/contrib/localHistory/browser/localHistoryTimeline": {
"localHistory": "ローカル履歴"
},
- "vs/workbench/contrib/localHistory/electron-sandbox/localHistoryCommands": {
- "openContainer": "このアイテムのフォルダーを開く",
- "revealInMac": "Finder で表示します",
+ "vs/workbench/contrib/localHistory/electron-browser/localHistoryCommands": {
+ "openContainer": "1 つ上のフォルダーを開く",
+ "revealInMac": "Finder で表示する",
"revealInWindows": "エクスプローラーで表示する"
},
- "vs/workbench/contrib/localization/browser/localizationsActions": {
- "available": "利用可能",
- "chooseLocale": "表示言語の選択",
- "clearDisplayLanguage": "表示言語設定のクリア",
- "configureLocale": "表示言語を構成する",
- "installed": "インストール済み"
- },
- "vs/workbench/contrib/localization/electron-sandbox/localeService": {
- "argvInvalid": "表示言語に書き込めません。ランタイム設定を開いて、ファイル内のエラー/警告を修正してからもう一度お試しください。",
- "installing": "{0} 言語サポートをインストールしています...",
- "openArgv": "ランタイム設定を開く",
- "restart": "と再起動(&R)",
- "restartDisplayLanguageDetail": "再起動ボタンを押して {0} を再起動し、表示言語を {1} に設定します。",
- "restartDisplayLanguageMessage": "表示言語を変更するには、{0}を再起動する必要があります"
- },
- "vs/workbench/contrib/localization/electron-sandbox/localization.contribution": {
- "activateLanguagePack": "{0} で VS Code を使用するには、VS Code を再起動する必要があります。",
- "changeAndRestart": "言語を変更し再起動",
- "doNotChangeAndRestart": "言語を変更しない",
- "doNotRestart": "再起動しない",
- "neverAgain": "今後表示しない",
- "restart": "再起動",
- "updateLocale": "VS Code の UI 言語を {0} にして再起動しますか?",
+ "vs/workbench/contrib/localization/common/localization.contribution": {
+ "language id": "言語 ID",
+ "localizations": "言語パック",
+ "localizations language name": "言語名",
+ "localizations localized language name": "言語名 (ローカライズ)",
"vscode.extension.contributes.localizations": "ローカリゼーションをエディターに提供します",
"vscode.extension.contributes.localizations.languageId": "表示文字列が翻訳される言語の id。",
"vscode.extension.contributes.localizations.languageName": "英語での言語の名前。",
@@ -6658,81 +10889,77 @@
"vscode.extension.contributes.localizations.translations.id.pattern": "VS Code または拡張機能を変換するための ID はそれぞれ、`vscode` か、`publisherId.extensionName` の形式になります。",
"vscode.extension.contributes.localizations.translations.path": "言語の翻訳を含むファイルへの相対パス。"
},
- "vs/workbench/contrib/localization/electron-sandbox/minimalTranslations": {
- "installAndRestart": "インストールして再起動",
- "installAndRestartMessage": "表示言語を {0} に変更するには言語パックをインストールします。",
- "searchMarketplace": "Marketplace を検索",
- "showLanguagePackExtensions": "表示言語を {0} に変更するために Marketplace で言語パックを検索します。"
+ "vs/workbench/contrib/localization/common/localizationsActions": {
+ "available": "利用可能",
+ "chooseLocale": "表示言語の選択",
+ "clearDisplayLanguage": "表示言語設定のクリア",
+ "configureLocale": "表示言語を構成する",
+ "configureLocaleDescription": "インストールされている言語パックに基づいて、VS Code のロケールを変更します。一般的な言語には、フランス語、中国語、スペイン語、日本語、ドイツ語、韓国語などがあります。",
+ "installed": "インストール済み",
+ "moreInfo": "詳細情報"
},
- "vs/workbench/contrib/localizations/browser/localizations.contribution": {
- "activateLanguagePack": "{0} で VS Code を使用するには、VS Code を再起動する必要があります。",
+ "vs/workbench/contrib/localization/electron-browser/localization.contribution": {
"changeAndRestart": "言語を変更し再起動",
- "doNotChangeAndRestart": "言語を変更しない",
- "doNotRestart": "再起動しない",
- "neverAgain": "今後表示しない",
- "restart": "再起動",
- "updateLocale": "VS Code の UI 言語を {0} にして再起動しますか?",
- "vscode.extension.contributes.localizations": "ローカリゼーションをエディターに提供します",
- "vscode.extension.contributes.localizations.languageId": "表示文字列が翻訳される言語の id。",
- "vscode.extension.contributes.localizations.languageName": "英語での言語の名前。",
- "vscode.extension.contributes.localizations.languageNameLocalized": "提供された言語での言語の名前。",
- "vscode.extension.contributes.localizations.translations": "言語に関連付けられている翻訳のリスト。",
- "vscode.extension.contributes.localizations.translations.id": "この翻訳が提供される VS Code または拡張機能の ID。VS Code は常に `vscode` で、拡張機能の形式は `publisherId.extensionName` になります。",
- "vscode.extension.contributes.localizations.translations.id.pattern": "VS Code または拡張機能を変換するための ID はそれぞれ、`vscode` か、`publisherId.extensionName` の形式になります。",
- "vscode.extension.contributes.localizations.translations.path": "言語の翻訳を含むファイルへの相対パス。"
- },
- "vs/workbench/contrib/localizations/browser/localizationsActions": {
- "chooseDisplayLanguage": "表示言語の選択",
- "configureLocale": "表示言語を構成する",
- "installAdditionalLanguages": "追加言語のインストール...",
- "relaunchDisplayLanguageDetail": "[再起動] を押して {0} を再起動し、表示言語を変更します。",
- "relaunchDisplayLanguageMessage": "表示言語の変更を有効にするには再起動が必要です。",
- "restart": "再起動(&&R)"
+ "neverAgain": "再表示しない",
+ "updateLocale": "{0} の表示言語を {1} に変更して再起動しますか?"
},
- "vs/workbench/contrib/localizations/browser/minimalTranslations": {
+ "vs/workbench/contrib/localization/electron-browser/minimalTranslations": {
"installAndRestart": "インストールして再起動",
"installAndRestartMessage": "表示言語を {0} に変更するには言語パックをインストールします。",
"searchMarketplace": "Marketplace を検索",
"showLanguagePackExtensions": "表示言語を {0} に変更するために Marketplace で言語パックを検索します。"
},
"vs/workbench/contrib/logs/common/logs.contribution": {
- "editSessionsLog": "セッションの編集",
- "rendererLog": "ウィンドウ",
- "show window log": "ウィンドウ ログの表示",
- "telemetryLog": "テレメトリ",
- "userDataSyncLog": "設定の同期"
+ "remote name": "{0} (リモート)",
+ "setDefaultLogLevel": "既定のログ レベルの設定",
+ "show window log": "ウィンドウ ログの表示"
},
"vs/workbench/contrib/logs/common/logsActions": {
- "critical": "重大",
+ "all": "すべて",
"current": "現在",
- "debug": "デバッグ",
"default": "既定",
- "default and current": "既定値と現在値",
- "err": "エラー",
- "info": "情報",
+ "extensionLogs": "拡張機能ログ",
"log placeholder": "ログ ファイルを選択",
- "off": "オフ",
+ "loggers": "ログ",
"openSessionLogFile": "ウィンドウ ログ ファイルを開く (セッション)...",
+ "resetLogLevel": "既定のログ レベルとして設定",
"selectLogLevel": "ログ レベルを選択",
+ "selectLogLevelFor": "{0}: ログ レベルの選択",
+ "selectlog": "ログ レベルの設定",
"sessions placeholder": "セッションの選択",
- "setLogLevel": "ログ レベルの設定...",
- "trace": "トレース",
- "warn": "警告"
- },
- "vs/workbench/contrib/logs/electron-sandbox/logs.contribution": {
- "mainLog": "メイン",
- "sharedLog": "共有"
+ "setLogLevel": "ログ レベルの設定..."
},
- "vs/workbench/contrib/logs/electron-sandbox/logsActions": {
+ "vs/workbench/contrib/logs/electron-browser/logsActions": {
"openExtensionLogsFolder": "拡張機能のログ フォルダーを開く",
"openLogsFolder": "ログ フォルダーを開く"
},
+ "vs/workbench/contrib/markdown/browser/markdownSettingRenderer": {
+ "alreadysetBoolFalse": "\"{0}: {1}\" は既に無効になっています",
+ "alreadysetBoolTrue": "\"{0}: {1}\" は既に有効になっています",
+ "alreadysetNum": "\"{0}: {1}\" は既に {2} に設定されています",
+ "alreadysetString": "\"{0}: {1}\" は既に \"{2}\" に設定されています",
+ "changeSettingTitle": "設定の表示または変更",
+ "copySettingId": "設定 ID をコピー",
+ "falseMessage": "\"{0}: {1}\" を無効にする",
+ "numberValue": "\"{0}: {1}\" を {2} に設定する",
+ "restorePreviousValue": "\"{0}: {1}\" の値を復元する",
+ "stringValue": "\"{0}: {1}\" を \"{2}\" に設定する",
+ "trueMessage": "\"{0}: {1}\" を有効にする",
+ "viewInSettings": "設定で表示",
+ "viewInSettingsDetailed": "[設定] で \"{0}: {1}\" を表示する"
+ },
+ "vs/workbench/contrib/markdown/common/markdownColors": {
+ "markdownAlertCautionForeground": "マークダウンの注意アラートの前景色。",
+ "markdownAlertImportantForeground": "マークダウンの重要なアラートの前景色。",
+ "markdownAlertNoteForeground": "マークダウンのメモ アラートの前景色。",
+ "markdownAlertTipForeground": "マークダウンのヒント アラートの前景色。",
+ "markdownAlertWarningForeground": "マークダウンの警告アラートの前景色。"
+ },
"vs/workbench/contrib/markers/browser/markers.contribution": {
"clearFiltersText": "フィルタテキストをクリア",
"collapseAll": "すべて折りたたんで表示します。",
"copyMarker": "コピー",
"copyMessage": "メッセージのコピー",
- "filter": "フィルター",
"focusProblemsFilter": "フォーカス問題フィルター",
"focusProblemsList": "フォーカスの問題ビュー",
"manyProblems": "10K+",
@@ -6740,19 +10967,39 @@
"miMarker": "問題(&&P)",
"noProblems": "問題なし",
"problems": "問題",
+ "show active file": "アクティブなファイルのみを表示する",
+ "show errors": "エラーの表示",
+ "show excluded files": "除外されたファイルを表示する",
+ "show infos": "情報の表示",
"show multiline": "複数行にメッセージを表示します",
"show singleline": "メッセージを 1 行に表示します",
+ "show warnings": "警告を表示する",
"status.problems": "問題",
+ "status.problemsVisibility": "問題の表示",
+ "status.problemsVisibilityOff": "問題はオフになっています。クリックして設定を開きます。",
+ "toggleActiveFileDescription": "問題 (エラー、警告、情報) は、問題ビューのアクティブ なファイルからのみ表示または非表示にします。",
+ "toggleErrorsDescription": "問題ビューでエラーの表示/非表示を切り替えます。",
+ "toggleExcludedFilesDescription": "問題ビューで除外されたファイルを表示または非表示にします。",
+ "toggleInfosDescription": "問題ビューで情報の表示/非表示を切り替えます。",
+ "toggleWarningsDescription": "問題ビューで警告の表示/非表示を切り替えます。",
"totalErrors": "エラー: {0}",
"totalInfos": "情報: {0}",
"totalProblems": "合計 {0} 個の問題",
"totalWarnings": "警告: {0}",
"viewAsTable": "テーブルとして表示",
- "viewAsTree": "ツリーとして表示"
+ "viewAsTableDescription": "問題ビューをテーブルとして表示します。",
+ "viewAsTree": "ツリーとして表示",
+ "viewAsTreeDescription": "問題ビューをツリーとして表示します。"
+ },
+ "vs/workbench/contrib/markers/browser/markersChatContext": {
+ "chatContext.diagnstic": "問題...",
+ "chatContext.diagnstic.placeholder": "添付する問題の選択",
+ "markers.panel.allErrors": "すべての問題",
+ "markers.panel.at.ln.col.number": "[Ln {0}、Col {1}]"
},
"vs/workbench/contrib/markers/browser/markersFileDecorations": {
"label": "問題",
- "markers.showOnFile": "ファイルとフォルダーのエラーと警告を表示します。",
+ "markers.showOnFile": "ファイルとフォルダーのエラーと警告を表示します。オフの場合、{0} に上書きされます。",
"tooltip.1": "このファイルに 1 つの問題",
"tooltip.N": "このファイルに {0} 個の問題"
},
@@ -6772,10 +11019,7 @@
"vs/workbench/contrib/markers/browser/markersView": {
"No problems filtered": "{0} 個の問題を表示しています",
"clearFilter": "フィルターの解除",
- "problems filtered": "{1} 個中 {0} 個の問題を表示しています"
- },
- "vs/workbench/contrib/markers/browser/markersViewActions": {
- "filterIcon": "マーカーのビュー内のフィルター構成のアイコン。",
+ "problems filtered": "{1} 個中 {0} 個の問題を表示しています",
"showing filtered problems": "{0}/{1} を表示中"
},
"vs/workbench/contrib/markers/browser/messages": {
@@ -6813,91 +11057,628 @@
"problems.panel.configuration.showCurrentInStatus": "有効にすると、現在発生している問題がステータス バーに表示されます。",
"problems.panel.configuration.title": "問題ビュー",
"problems.panel.configuration.viewMode": "問題ビューの既定の表示モードを制御します。",
- "problems.tree.aria.label.error.marker": "{0}: {1} によって生成されたエラー (行 {2}、文字 {3}.{4})",
+ "problems.tree.aria.label.error.marker": "エラー: 行 {1}、文字 {2} での {0}。{4} によって生成された {3}。",
"problems.tree.aria.label.error.marker.nosource": "エラー: {0} (行 {1}、文字 {2}.{3})",
- "problems.tree.aria.label.info.marker": "{0}: {1} によって生成された情報 (行 {2}、文字 {3}.{4})",
+ "problems.tree.aria.label.info.marker": "情報: 行 {1}、文字 {2} での {0}。{4} によって生成された {3}。",
"problems.tree.aria.label.info.marker.nosource": "情報: {0} (行 {1}、文字 {2}.{3})",
- "problems.tree.aria.label.marker": "{0} によって生成された問題: {1} (行 {2}、文字 {3}.{4})",
+ "problems.tree.aria.label.marker": "問題: 行 {1}、文字 {2} での {0}。{4} によって生成された {3}。",
"problems.tree.aria.label.marker.nosource": "問題: {0} (行 {1}、文字 {2}.{3})",
"problems.tree.aria.label.marker.relatedInformation": "この問題は {0} 個の箇所へ参照を持っています。",
"problems.tree.aria.label.relatedinfo.message": "{0} ({3} の行 {1}、文字 {2})",
"problems.tree.aria.label.resource": "フォルダー {2} のファイル {1} 内で {0} 件の問題",
- "problems.tree.aria.label.warning.marker": "{0}: {1} によって生成された警告 (行 {2}、文字 {3}.{4})",
+ "problems.tree.aria.label.warning.marker": "警告: 行 {1}、文字 {2} での {0}。{4} によって生成された {3}。",
"problems.tree.aria.label.warning.marker.nosource": "警告: {0} (行 {1}、文字 {2}.{3})",
"problems.view.focus.label": "問題 (エラー、警告、情報) にフォーカス",
"problems.view.toggle.label": "問題 (エラー、警告、情報) の切り替え"
},
+ "vs/workbench/contrib/mcp/browser/mcp.contribution": {
+ "mcp.quickaccess.add": "MCP サーバー リソース",
+ "mcp.quickaccess.placeholder": "MCP リソースにフィルターを適用する",
+ "mcpServer": "MCP サーバー"
+ },
+ "vs/workbench/contrib/mcp/browser/mcpAddContextContribution": {
+ "mcp.addContext": "MCP リソース...",
+ "mcp.addContext.placeholder": "MCP リソースを選択..."
+ },
+ "vs/workbench/contrib/mcp/browser/mcpCommands": {
+ "mcp.actions.resources": "リソース",
+ "mcp.actions.sampling": "サンプリング",
+ "mcp.actions.status": "状態",
+ "mcp.addConfiguration": "サーバーの追加...",
+ "mcp.addConfiguration.description": "新しいモデル コンテキスト プロトコルを mcp.json 設定にインストールします",
+ "mcp.addServer": "サーバーを追加する",
+ "mcp.addServer.description": "新しいサーバー構成を追加する",
+ "mcp.autoStart": "チャット メッセージを送信する際に MCP サーバーを自動的に起動する",
+ "mcp.browseResources": "リソースの参照...",
+ "mcp.command.browse": "MCP サーバー",
+ "mcp.command.browse.mcp": "MCP サーバーの参照",
+ "mcp.command.browse.tooltip": "MCP サーバーの参照",
+ "mcp.command.openRemoteUserMcp": "リモート ユーザー構成を開く",
+ "mcp.command.openUserMcp": "ユーザー構成を開く",
+ "mcp.command.openWorkspaceFolderMcp": "ワークスペース フォルダー MCP 構成を開く",
+ "mcp.command.openWorkspaceMcp": "ワークスペース MCP 構成を開く",
+ "mcp.command.restartServer": "サーバーの再起動",
+ "mcp.command.show.installed": "インストールされているサーバーの表示",
+ "mcp.command.showConfiguration": "構成の表示",
+ "mcp.command.showOutput": "出力の表示",
+ "mcp.command.startServer": "サーバーの起動",
+ "mcp.command.stopServer": "サーバーの停止",
+ "mcp.config": "構成の表示",
+ "mcp.configAccess": "モデル アクセスの構成",
+ "mcp.configureSamplingModels": "SamplingModel の構成",
+ "mcp.configureSamplingModels.ph": "MCP サンプリングを使用して {0} がアクセスできるモデルを選択します",
+ "mcp.disconnect": "アカウントを切断します",
+ "mcp.editStoredInput": "保存された入力の編集",
+ "mcp.err.md.multi": "複数の MCP サーバーを正常に起動できませんでした:\r\n\r\n{0}",
+ "mcp.err.md.single": "MCP サーバー {0} を正常に起動できませんでした。",
+ "mcp.list": "サーバーの一覧表示",
+ "mcp.newTools": "新しいツールが利用可能です ({0})",
+ "mcp.newTools.md.multi": "MCP サーバーが更新され、新しいツールが利用可能になった可能性があります。\r\n\r\n{0}",
+ "mcp.newTools.md.single": "MCP サーバー {0} が更新され、新しいツールが利用可能になった可能性があります。",
+ "mcp.options": "サーバー オプション",
+ "mcp.resetCachedTools": "キャッシュされたツールのリセット",
+ "mcp.resetTrust": "信頼のリセット",
+ "mcp.resources": "リソースの参照",
+ "mcp.restart": "サーバーの再起動",
+ "mcp.samplingLog": "サンプリング要求の表示",
+ "mcp.samplingLog.description": "このサーバーのサンプリング要求を表示",
+ "mcp.samplingLog.title": "MCP サンプリング: {0}",
+ "mcp.selectAction": "'{0}' のアクションを選択します",
+ "mcp.selectServer": "MCP サーバーの選択",
+ "mcp.servers": "MCP サーバー",
+ "mcp.showOutput": "出力の表示",
+ "mcp.showOutput.description": "MCP サンプリングを使用してサーバーが使用できるモデルを設定する",
+ "mcp.signOut": "サインアウト",
+ "mcp.skipCurrentAutostart": "現在の自動開始をスキップ",
+ "mcp.start": "サーバーの起動",
+ "mcp.startPromptingServer": "プロンプト サーバーの起動",
+ "mcp.stop": "サーバーの停止",
+ "mcp.toolError": "{0} ツールの読み込み中にエラーが発生しました",
+ "mcp.toolRefresh": "ツールを検出しています..."
+ },
+ "vs/workbench/contrib/mcp/browser/mcpCommandsAddConfiguration": {
+ "allow": "許可",
+ "cancel": "キャンセル",
+ "install.error": "MCP サーバー {0} のインストール中にエラーが発生しました: {1}",
+ "install.newName": "新しい名前の入力",
+ "install.rename": "\"{0}\" の名前を変更",
+ "install.show": "構成の表示",
+ "install.start": "サーバーのインストール",
+ "install.title": "MCP サーバー {0} のインストール",
+ "mcp.command.placeholder": "実行するコマンド (省略可能な引数を含む)",
+ "mcp.command.title": "コマンドの入力",
+ "mcp.confirmPublish": "{2} から {0}{1} をインストールしますか?",
+ "mcp.docker.placeholder": "イメージ名 (例: mcp/imagename)",
+ "mcp.docker.title": "Docker イメージ名を入力してください",
+ "mcp.error.openHelpUri": "ヘルプの URL を開く",
+ "mcp.error.retry": "別のパッケージを試してください",
+ "mcp.loading.title": "パッケージの詳細を読み込んでいます...",
+ "mcp.npm.placeholder": "パッケージ名 (例: @org/package)",
+ "mcp.npm.title": "NPM パッケージ名の入力",
+ "mcp.nuget.placeholder": "パッケージ名 (例: Package.Name)",
+ "mcp.nuget.title": "NuGet パッケージ名を入力する",
+ "mcp.pip.placeholder": "パッケージ名 (例: package-name)",
+ "mcp.pip.title": "Pip パッケージ名を入力してください",
+ "mcp.serverId.placeholder": "このサーバーの一意識別子",
+ "mcp.serverId.title": "サーバー ID の入力",
+ "mcp.serverType.command": "コマンド (stdio)",
+ "mcp.serverType.command.description": "MCP プロトコルを実装するローカル コマンドを実行する",
+ "mcp.serverType.copilot": "モデル支援付き",
+ "mcp.serverType.docker": "Docker イメージ",
+ "mcp.serverType.docker.description": "Docker イメージからインストールする",
+ "mcp.serverType.http": "HTTP (HTTP またはサーバー送信イベント)",
+ "mcp.serverType.http.description": "MCP プロトコルを実装するリモート HTTP サーバーに接続する",
+ "mcp.serverType.manual": "手動インストール",
+ "mcp.serverType.npm": "NPM パッケージ",
+ "mcp.serverType.npm.description": "NPM パッケージ名からインストールします",
+ "mcp.serverType.nuget": "NuGet パッケージ",
+ "mcp.serverType.nuget.description": "NuGet パッケージ名からインストールします",
+ "mcp.serverType.pip": "Pip パッケージ",
+ "mcp.serverType.pip.description": "Pip パッケージ名からインストールする",
+ "mcp.serverType.placeholder": "追加する MCP サーバーの種類を選択する",
+ "mcp.servers.browse": "MCP サーバーを参照...",
+ "mcp.servers.discovery": "別のアプリケーションから追加...",
+ "mcp.target..remote.description": "このリモート コンピューターで利用可能で、{0} で実行されます",
+ "mcp.target.placeholder": "構成ターゲットを選択してください",
+ "mcp.target.remote": "リモート",
+ "mcp.target.title": "MCP サーバーの追加",
+ "mcp.target.user": "グローバル",
+ "mcp.target.user.description": "すべてのワークスペースで利用可能で、ローカルで実行されます",
+ "mcp.target.workspace": "ワークスペース",
+ "mcp.target.workspace.description": "このワークスペースで利用可能で、ローカルで実行されます",
+ "mcp.target.workspace.description.remote": "このワークスペースで利用可能で、{0} で実行されます",
+ "mcp.url.placeholder": "MCP サーバーの URL (例: http://localhost:3000)",
+ "mcp.url.title": "サーバーの URL の入力"
+ },
+ "vs/workbench/contrib/mcp/browser/mcpElicitationService": {
+ "mcp.elicit.accept": "返信",
+ "mcp.elicit.cancel": "キャンセル",
+ "mcp.elicit.enum.none": "なし",
+ "mcp.elicit.enum.none.description": "選択されていません",
+ "mcp.elicit.give": "応答する",
+ "mcp.elicit.reject": "キャンセル",
+ "mcp.elicit.source": "MCP サーバー ({0})",
+ "mcp.elicit.title": "入力のリクエスト",
+ "mcp.elicit.url.instruction": "この URL を開きますか?",
+ "mcp.elicit.url.instruction2": "これにより、{0} が開きます",
+ "mcp.elicit.url.open": "{0} を開く",
+ "mcp.elicit.url.open2": "URL を開く",
+ "mcp.elicit.url.title": "認可が必要",
+ "mcp.elicit.useDefault": "既定値",
+ "mcp.elicit.validation.date": "有効な日付 (YYYY-MM-DD) を入力してください",
+ "mcp.elicit.validation.dateTime": "有効な日時を入力してください",
+ "mcp.elicit.validation.email": "有効な電子メール アドレスを入力してください",
+ "mcp.elicit.validation.integer": "有効な整数を入力してください",
+ "mcp.elicit.validation.maxLength": "最大長は {0} です",
+ "mcp.elicit.validation.maximum": "最大値は {0} です",
+ "mcp.elicit.validation.minLength": "最小長は {0} です",
+ "mcp.elicit.validation.minimum": "最小値は {0} です",
+ "mcp.elicit.validation.number": "有効な数値を入力してください",
+ "mcp.elicit.validation.uri": "有効な URI を入力してください",
+ "msg.subtitle": "{0} (MCP サーバー)",
+ "optional": "オプション"
+ },
+ "vs/workbench/contrib/mcp/browser/mcpLanguageFeatures": {
+ "cancel": "キャンセル",
+ "clear": "クリア",
+ "clearAll": "すべてクリア",
+ "edit": "編集",
+ "mcp.debug": "デバッグ",
+ "mcp.restart": "再起動",
+ "mcp.server.more": "その他...",
+ "mcp.start": "起動",
+ "mcp.stop": "停止",
+ "mcp.variableNotFound": "変数 `{0}` が見つかりません。${{1}} ではありませんか?",
+ "server.error": "エラー",
+ "server.promptcount": "{0} プロンプト",
+ "server.running": "実行中",
+ "server.starting": "起動しています",
+ "server.toolCount": "{0} 個のツール"
+ },
+ "vs/workbench/contrib/mcp/browser/mcpMigration": {
+ "mcp.migration.openRemoteConfig": "リモート ユーザー MCP 構成を開く",
+ "mcp.migration.openUserConfig": "ユーザー MCP 構成を開く",
+ "mcp.migration.remoteConfigFound": "MCP サーバーは、今後リモート ユーザー設定で構成しないでください。代わりに専用の MCP 構成を使用してください。",
+ "mcp.migration.update": "今すぐ更新",
+ "mcp.migration.userConfigFound": "MCP サーバーは、今後ユーザー設定で構成しないでください。代わりに専用の MCP 構成を使用してください。"
+ },
+ "vs/workbench/contrib/mcp/browser/mcpPromptArgumentPick": {
+ "loading": "読み込んでいます...",
+ "mcp.arg.activeFile": "アクティブ ファイル",
+ "mcp.arg.activeFiles": "アクティブ ファイル",
+ "mcp.arg.asCommand": "コマンドとして実行",
+ "mcp.arg.asCommand.description": "コマンド出力をプロンプト引数として挿入します",
+ "mcp.arg.asText": "テキストとして挿入",
+ "mcp.arg.files": "ファイル",
+ "mcp.arg.required": "この引数は必須です",
+ "mcp.arg.selectedText": "選択されたテキスト",
+ "mcp.arg.selectedText.multiLine": "{0} 行",
+ "mcp.arg.selectedText.singleLine": "行 {0}",
+ "mcp.arg.suggestions": "候補",
+ "mcp.prompt.pick.title": "{0} の値",
+ "mcp.terminal.name": "MCP ターミナル",
+ "optional": "オプション"
+ },
+ "vs/workbench/contrib/mcp/browser/mcpResourceQuickAccess": {
+ "goBack": "戻る ↩",
+ "mcp.quickaccess.attach": "チャットに添付",
+ "mcp.quickaccess.placeholder": "リソースの検索",
+ "mcp.resource.template": "リソース テンプレート: {0}",
+ "mcp.resource.template.empty": "<空>",
+ "mcp.resource.template.notFound": "リソース {0} が見つかりませんでした。",
+ "mcp.resource.template.optional": "オプション",
+ "mcp.resource.template.placeholder": "{1} の ${0} の値"
+ },
+ "vs/workbench/contrib/mcp/browser/mcpServerActions": {
+ "config": "構成の表示",
+ "configJson": "構成の表示 (JSON)",
+ "install": "インストール",
+ "install in workspace folder": "ワークスペース フォルダー",
+ "installInRemote": "インストール (リモート)",
+ "installInRemoteLabel": "{0} にインストールする",
+ "installInWorkspace": "ワークスペースにインストール",
+ "installing": "インストール中",
+ "manage": "管理",
+ "mcp.configAccess": "モデル アクセスの構成",
+ "mcp.disconnect": "アカウントの切断",
+ "mcp.resources": "リソースの参照",
+ "mcp.samplingLog": "サンプリング要求の表示",
+ "mcp.samplingLog.title": "MCP サンプリング: {0}",
+ "mcp.signOut": "サインアウト",
+ "mcp.target.title": "MCP サーバーをインストールする場所を選択する",
+ "mcp.target.workspace": "ワークスペース",
+ "mcpServerInstallation": "MCP Server {0} のインストールを開始しました。エディターが開き、この MCP サーバーの詳細が表示されるようになりました",
+ "output": "出力の表示",
+ "restart": "サーバーの再起動",
+ "start": "サーバーの起動",
+ "stop": "サーバーの停止",
+ "uninstall": "アンインストール"
+ },
+ "vs/workbench/contrib/mcp/browser/mcpServerEditor": {
+ "Install Info": "インストール",
+ "Marketplace Info": "Marketplace",
+ "Readme title": "Readme",
+ "Version": "バージョン",
+ "arguments": "引数:",
+ "command": "コマンド:",
+ "configuration": "構成",
+ "configurationtooltip": "サーバー構成の詳細",
+ "details": "詳細",
+ "detailstooltip": "拡張機能の詳細、拡張機能の 'README.md' ファイルから表示",
+ "environmentVariables": "環境変数:",
+ "headers": "ヘッダー:",
+ "id": "識別子",
+ "last updated": "前回のリリース日",
+ "manifest": "マニフェスト",
+ "manifesttooltip": "サーバー マニフェストの詳細",
+ "name": "拡張機能名",
+ "noConfig": "この MCP サーバーで使用できる構成はありません。",
+ "noManifest": "この MCP サーバーで使用できるマニフェストはありません。",
+ "noReadme": "利用できる README はありません。",
+ "packageName": "パッケージ:",
+ "packagearguments": "パッケージ引数:",
+ "packages": "パッケージ",
+ "published": "公開済み",
+ "remotes": "リモート",
+ "repository": "リポジトリ",
+ "resources": "リソース",
+ "runtimeargs": "ランタイム引数:",
+ "serverName": "名前:",
+ "serverType": "種類:",
+ "support": "サポートに問い合わせる",
+ "tags": "タグ",
+ "transport": "トランスポート:",
+ "url": "URL:"
+ },
+ "vs/workbench/contrib/mcp/browser/mcpServerEditorInput": {
+ "extensionsInputName": "MCP サーバー: {0}",
+ "mcpServerEditorLabelIcon": "MCP サーバー エディターのアイコン。"
+ },
+ "vs/workbench/contrib/mcp/browser/mcpServerIcons": {
+ "licenseIcon": "ライセンスの状態と共に表示されるアイコン。",
+ "mcpServer": "MCP サーバーに使用されるアイコン。",
+ "mcpServerRemoteIcon": "MCP サーバーがリモート ユーザー スコープ用であることを示すアイコン。",
+ "mcpServerWorkspaceIcon": "MCP サーバーがワークスペース スコープ用であることを示すアイコン。",
+ "starredIcon": "星付きの状態と共に表示されるアイコン。"
+ },
+ "vs/workbench/contrib/mcp/browser/mcpServersView": {
+ "mcp": "MCP サーバー",
+ "mcp servers": "MCP サーバー",
+ "mcp-installed": "MCP サーバー - インストール済み",
+ "mcp.gallery.enableDialog.cancel": "キャンセル",
+ "mcp.gallery.enableDialog.enable": "有効にする",
+ "mcp.gallery.enableDialog.setting": "この機能は現在プレビュー段階です。設定 {0} を使用していつでも無効にできます。",
+ "mcp.gallery.enableDialog.title": "MCP サーバー マーケットプレースを有効にしますか?",
+ "mcp.welcome.descriptionWithLink": "VS Code から [モデル コンテキスト プロトコル (MCP) サーバー](https://code.visualstudio.com/docs/copilot/customization/mcp-servers) を 直接参照してインストールし、データベースへの接続、APIの呼び出し、特殊タスクの実行用の追加ツールを使用してエージェント モードを拡張します。",
+ "mcp.welcome.enableGalleryButton": "MCP サーバー マーケットプレースを有効にする",
+ "mcp.welcome.settings.tooltip": "設定を開く",
+ "mcp.welcome.title": "MCP サーバー",
+ "no extensions found": "MCP サーバーが見つかりません。"
+ },
+ "vs/workbench/contrib/mcp/browser/mcpServerWidgets": {
+ "mcpIconStarForeground": "MCP の星付きアイコンの色。",
+ "publisher": "発行元 ({0})",
+ "remote user extension": "リモート MCP サーバー",
+ "verified publisher": "この発行元では、{0} の所有権を確認しました",
+ "workspace extension": "ワークスペース MCP サーバー"
+ },
+ "vs/workbench/contrib/mcp/browser/mcpWorkbenchService": {
+ "cannot be installed": "'{0}' MCP サーバーは、このセットアップで使用できないため、インストールできません。",
+ "disabled - all not allowed": "MCP サーバーがエディターで無効に構成されているため、この MCP サーバーは無効になっています。[設定]({0}) をご確認ください。",
+ "disabled - some not allowed": "この MCP サーバーは、エディターで無効にするように構成されているため、無効になっています。[設定]({0}) をご確認ください。",
+ "mcp.configuration.userLocalValue": "{0} のグローバル",
+ "not an extension": "指定されたオブジェクトは、MCP サーバーではありません。",
+ "overwriting": "{1}から mcp サーバー '{0}' を {2} で上書きしています。"
+ },
+ "vs/workbench/contrib/mcp/common/discovery/extensionMcpDiscovery": {
+ "invalidData": "MCP コレクションの配列が必要です",
+ "invalidId": "'id' は空でない文字列である必要があります。",
+ "invalidLabel": "'label' は空でない文字列である必要があります。",
+ "invalidWhen": "'when' は空でない文字列である必要があります。"
+ },
+ "vs/workbench/contrib/mcp/common/discovery/nativeMcpDiscoveryAbstract": {
+ "onRemoteLabel": " {0} で"
+ },
+ "vs/workbench/contrib/mcp/common/mcpConfiguration": {
+ "app.mcp.args.command": "サーバーに渡される引数。",
+ "app.mcp.dev": "サーバーの開発モードを有効にしました。存在する場合、サーバーは熱心に起動され、出力はその出力に含まれます。'dev' オブジェクト内のプロパティは、追加の動作を構成できます。",
+ "app.mcp.dev.debug": "設定されている場合は、開始時に指定されたランタイムを使用して MCP サーバーをデバッグします。",
+ "app.mcp.dev.debug.debugpyPath": "debugpy 実行可能ファイルへのパス。",
+ "app.mcp.dev.debug.type.node": "Node.jsを使用して MCP サーバーをデバッグします。",
+ "app.mcp.dev.debug.type.python": "Python と debugpy を使用して MCP サーバーをデバッグします。",
+ "app.mcp.dev.watch": "監視するワークスペース フォルダーを基準とした glob パターンまたは glob パターンの一覧。これらのファイルが変更されると、MCP サーバーが再起動されます。",
+ "app.mcp.env.command": "サーバーに渡される環境変数。",
+ "app.mcp.envFile.command": "サーバーの環境変数を含むファイルへのパス。",
+ "app.mcp.json.command": "サーバーを実行するコマンド。",
+ "app.mcp.json.cwd": "サーバー コマンドの作業ディレクトリ。ワークスペースで実行する場合、既定値はワークスペース フォルダーになります。",
+ "app.mcp.json.headers": "サーバーに送信される追加のヘッダー。",
+ "app.mcp.json.title": "モデル コンテキスト プロトコル サーバー",
+ "app.mcp.json.type": "サーバーの種類。",
+ "app.mcp.json.url": "Streamable HTTP または SSE エンドポイントの URL。",
+ "app.mcp.json.url.pattern": "URL の先頭は http:// か https:// でなければなりません。",
+ "id": "ID",
+ "mcp.discovery.source.claude-desktop": "Claude Desktop",
+ "mcp.discovery.source.claude-desktop.config": "Claude Desktop の構成 ('claude_desktop_config.json')",
+ "mcp.discovery.source.cursor-global": "カーソル (グローバル)",
+ "mcp.discovery.source.cursor-global.config": "カーソルのグローバル構成 (`~/.cursor/mcp.json`)",
+ "mcp.discovery.source.cursor-workspace": "カーソル (ワークスペース)",
+ "mcp.discovery.source.cursor-workspace.config": "カーソル ワークスペースの構成 ('.cursor/mcp.json')",
+ "mcp.discovery.source.windsurf": "Windsurf",
+ "mcp.discovery.source.windsurf.config": "Windsurf の構成 (`~/.codeium/windsurf/mcp_config.json`)",
+ "mcpServerDefinitionProviders": "MCP サーバー",
+ "name": "名前",
+ "vscode.extension.contributes.mcp": "モデル コンテキスト プロトコル サーバーを提供します。このユーザーは `vscode.lm.registerMcpServerDefinitionProvider` も使用する必要があります。",
+ "vscode.extension.contributes.mcp.id": "コレクションの一意の ID。",
+ "vscode.extension.contributes.mcp.label": "コレクションの表示名。",
+ "vscode.extension.contributes.mcp.when": "このコレクションを有効にするために true にする必要がある条件。"
+ },
+ "vs/workbench/contrib/mcp/common/mcpContextKeys": {
+ "mcp.hasServersWithErrors.description": "エラーのある MCP サーバーが存在するかどうかを示します。",
+ "mcp.hasUnknownTools.description": "不明なツールを持つ MCP サーバーがあるかどうかを示します。",
+ "mcp.serverCount.description": "登録された MCP サーバーの数を持つコンテキスト キー",
+ "mcp.toolsCount.description": "登録された MCP ツールの数を持つコンテキスト キー"
+ },
+ "vs/workbench/contrib/mcp/common/mcpDevMode": {
+ "mcp.debug.nodeBinReq": "デバッグを有効にするには、\"node\" 実行可能ファイルを使用して MCP サーバーを起動する必要がありますが、\"{0}\" で起動されました",
+ "mcp.debug.pythonBinReq": "デバッグを有効にするには、MCP サーバーを \"python\" 実行可能ファイルで起動する必要がありますが、\"{0}\" で起動されました"
+ },
+ "vs/workbench/contrib/mcp/common/mcpLanguageModelToolContribution": {
+ "mcp.tool.warning": "MCP サーバーまたは悪意のある会話コンテンツは、ツールを介して '{0}' を悪用しようとする可能性があることに注意してください。",
+ "mcp.toolset": "{0}: すべてのツール",
+ "msg.ran": "{0} を実行しました",
+ "msg.run": "{0} を実行しています",
+ "msg.subtitle": "{0} (MCP サーバー)",
+ "msg.title": "{0} を実行する"
+ },
+ "vs/workbench/contrib/mcp/common/mcpRegistry": {
+ "mcp.launchError": "{0} の起動でエラーが発生しました: {1}",
+ "mcp.launchError.openConfig": "構成を開く",
+ "mcp.trust.details": "MCP サーバー {0} が更新されました。MCP サーバーがチャット セッションにコンテキストを追加し、予期しない動作を引き起こす可能性があります。このサーバーを信頼して実行しますか?",
+ "mcp.trust.detailsMulti": "更新された MCP サーバーがいくつか検出されました:\r\n\r\n{0}\r\n\r\n MCP サーバーがチャット セッションにコンテキストを追加し、予期しない動作を引き起こす可能性があります。これらのサーバーを信頼して実行しますか?",
+ "mcp.trust.no": "信頼しない",
+ "mcp.trust.pick": "信頼済みを選択する",
+ "mcp.trust.yes": "信頼する",
+ "trustFromExt": "{0} から",
+ "trustTitleWithOrigin": "MCP サーバー {0} を信頼して実行しますか?",
+ "trustTitleWithOriginMulti": "{0} MCP サーバーを信頼して実行しますか?"
+ },
+ "vs/workbench/contrib/mcp/common/mcpSamplingLog": {
+ "mcp.sampling.rpd": "過去 7 日間の要求の合計は {0} です。"
+ },
+ "vs/workbench/contrib/mcp/common/mcpSamplingService": {
+ "cancel": "キャンセル",
+ "configure": "構成",
+ "mcp.sampling.allow.always": "常時",
+ "mcp.sampling.allow.inSession": "このセッションで許可する",
+ "mcp.sampling.allow.never": "行わない",
+ "mcp.sampling.allow.notNow": "今はしない",
+ "mcp.sampling.allowDuringChat.desc": "MCP サーバー \"{0}\" が言語モデル呼び出しの要求を発行しました。チャット中に要求を行うことを許可しますか?",
+ "mcp.sampling.allowDuringChat.title": "\"{0}\" から MCP ツールが LLM 要求を行うことを許可しますか?",
+ "mcp.sampling.allowOutsideChat.desc": "MCP サーバー \"{0}\" が言語モデル呼び出しの要求を発行しました。チャット中にツール呼び出し以外で要求を行うことを許可しますか?",
+ "mcp.sampling.allowOutsideChat.title": "MCP サーバー \"{0}\" が LLM 要求を行うことを許可しますか?",
+ "mcp.sampling.needsModels": "MCP サーバー \"{0}\" が言語モデル要求をトリガーしましたが、許可リストに含まれたモデルがありません。"
+ },
+ "vs/workbench/contrib/mcp/common/mcpServer": {
+ "mcp.command.showOutput": "出力の表示",
+ "mcpBadSchema": "MCP サーバー `{0}` に無効なパラメーターを含むツールがあり、これらは省略されます。",
+ "mcpBadSchema.show": "表示",
+ "mcpBadSchema.tool": "ツール `{0}` に無効な JSON パラメーターがあります:",
+ "mcpDebugPyHelp": "コマンド \"{0}\" が見つかりませんでした。'dev.debug.debugpyPath' オプションで debugpy へのパスを指定できます。",
+ "mcpServerError": "MCP サーバー {0} を起動できませんでした: {1}",
+ "mcpServerInstall": "{0} のインストール",
+ "mcpServerNotFound": "{1} を実行するために必要なコマンド \"{0}\" が見つかりませんでした。",
+ "mcpViewDocs": "ドキュメントの表示"
+ },
+ "vs/workbench/contrib/mcp/common/mcpServerConnection": {
+ "mcpServer.starting": "サーバー {0} を起動しています",
+ "mcpServer.state": "接続状態: {0}",
+ "mcpServer.stopping": "サーバー {0} を停止しています"
+ },
+ "vs/workbench/contrib/mcp/common/mcpTypes": {
+ "mcpstate.error": "エラー {0}",
+ "mcpstate.running": "実行中",
+ "mcpstate.starting": "開始しています",
+ "mcpstate.stopped": "停止済み"
+ },
"vs/workbench/contrib/mergeEditor/browser/commands/commands": {
"layout.column": "列のレイアウト",
"layout.mixed": "混合レイアウト",
- "merge.acceptAllInput1": "Accept All Changes from Left",
- "merge.acceptAllInput2": "Accept All Changes from Right",
- "merge.goToNextConflict": "次の競合に移動",
- "merge.goToPreviousConflict": "前の競合に移動",
+ "layout.showBase": "ベースの表示",
+ "layout.showBaseCenter": "ベース センターの表示",
+ "layout.showBaseTop": "ベース トップの表示",
+ "merge.acceptAllInput1": "左から着信変更をすべて受け入れる",
+ "merge.acceptAllInput2": "右から現在の変更をすべて受け入れる",
+ "merge.goToNextUnhandledConflict": "次のハンドルされていない競合に移動する",
+ "merge.goToPreviousUnhandledConflict": "前のハンドルされていない競合に移動する",
"merge.openBaseEditor": "ベース ファイルを開く",
"merge.toggleCurrentConflictFromLeft": "現在の競合を左から切り替える",
"merge.toggleCurrentConflictFromRight": "現在の競合を右から切り替える",
"mergeEditor": "マージ エディター",
+ "mergeEditor.acceptAllCombination": "すべての組み合わせを受け入れる",
+ "mergeEditor.acceptMerge": "マージの完了",
+ "mergeEditor.acceptMerge.unhandledConflicts.accept": "競合がある状態で完了する(&&C)",
+ "mergeEditor.acceptMerge.unhandledConflicts.detail": "ファイルに未処理の競合が含まれています。",
+ "mergeEditor.acceptMerge.unhandledConflicts.message": "{0}のマージを完了しますか?",
"mergeEditor.compareInput1WithBase": "入力 1 をベースと比較",
"mergeEditor.compareInput2WithBase": "入力 2 をベースと比較",
"mergeEditor.compareWithBase": "ベースとの比較",
+ "mergeEditor.resetChoice": "[競合ありで閉じる] の選択をリセットする",
+ "mergeEditor.resetResultToBaseAndAutoMerge": "結果のリセット",
+ "mergeEditor.resetResultToBaseAndAutoMerge.short": "リセット",
+ "mergeEditor.toggleBetweenInputs": "マージ エディターの入力を切り替える",
"openfile": "ファイルを開く",
+ "showNonConflictingChanges": "競合していない変更を表示する",
"title": "マージ エディターを開く"
},
"vs/workbench/contrib/mergeEditor/browser/commands/devCommands": {
"merge.dev.copyState": "マージ エディターの状態を JSON としてコピーする",
- "merge.dev.openState": "JSON からマージ エディターの状態を開く",
- "mergeEditor.enterJSON": "JSON を入力",
+ "merge.dev.loadContentsFromFolder": "フォルダーからマージ エディターの状態を読み取る",
+ "merge.dev.saveContentsToFolder": "マージ エディターの状態をフォルダーに保存する",
+ "mergeEditor": "マージ エディター (Dev)",
"mergeEditor.name": "マージ エディター",
"mergeEditor.noActiveMergeEditor": "アクティブなマージ エディターがありません",
- "mergeEditor.successfullyCopiedMergeEditorContents": "マージ エディターの状態が正常にコピーされました"
+ "mergeEditor.selectFolderToSaveTo": "保存先フォルダーの選択",
+ "mergeEditor.successfullyCopiedMergeEditorContents": "マージ エディターの状態が正常にコピーされました",
+ "mergeEditor.successfullySavedMergeEditorContentsToFolder": "マージ エディターの状態がフォルダーに正常に保存されました"
},
"vs/workbench/contrib/mergeEditor/browser/mergeEditor.contribution": {
+ "diffAlgorithm.advanced": "高度な差分アルゴリズムを使用します。",
+ "diffAlgorithm.legacy": "従来の差分アルゴリズムを使用します。",
"name": "マージ エディター"
},
+ "vs/workbench/contrib/mergeEditor/browser/mergeEditorAccessibilityHelp": {
+ "msg1": "マージ エディターが開いています。",
+ "msg2": "[次のハンドルされていない競合に移動する]{0} と [前のハンドルされていない競合に移動する]{1} コマンドを使用して、競合のマージ間を移動します。",
+ "msg3": "[マージ エディター: 左から着信変更をすべて受け入れる]{0} および [マージ エディター: 右から現在の変更をすべて受け入れる]{1} のコマンドを実行する",
+ "msg4": "マージ {0} を完了します。",
+ "msg5": "マージ エディターの入力、着信および現在の変更 {0} を切り替えます。"
+ },
"vs/workbench/contrib/mergeEditor/browser/mergeEditorInput": {
- "name": "マージ: {0}",
- "unhandledConflicts.cancel": "キャンセル",
- "unhandledConflicts.detail1": "このエディターでのマージ競合は処理されないままになります。",
- "unhandledConflicts.detailN": "{0} エディターでのマージ競合は処理されないままになります。",
- "unhandledConflicts.discard": "マージの変更を破棄する",
- "unhandledConflicts.ignore": "競合がある状態で続行する",
- "unhandledConflicts.msg": "処理されない競合がある状態で続行しますか?",
- "unhandledConflicts.saveAndIgnore": "競合を保存して続行する"
+ "mergeEditor.input1": "着信、左の入力",
+ "mergeEditor.input2": "現在、右の入力",
+ "mergeEditor.result": "マージの結果",
+ "name": "マージ: {0}"
+ },
+ "vs/workbench/contrib/mergeEditor/browser/mergeEditorInputModel": {
+ "acceptMerge": "マージを受け入れる(&&A)",
+ "detail1": "保存しない場合、マージの結果は失われます。",
+ "detail1Conflicts": "ファイルに未処理の競合が含まれています。保存しない場合、マージの結果は失われます。",
+ "detailN": "保存しない場合、マージの結果は失われます。",
+ "detailNConflicts": "ファイルに未処理の競合が含まれています。保存しない場合、マージの結果は失われます。",
+ "discard": "保存しない(&&N)",
+ "merge-editor.source": "マージ エディターで競合を解決する前",
+ "message1": "{0} ファイルのマージ結果を保持しますか?",
+ "messageN": "{0} ファイルのマージ結果を保持しますか?",
+ "noMoreWarn": "今後このメッセージを表示しない",
+ "save": "保存(&&S)",
+ "saveTempFile.detail": "これにより、マージ結果が元のファイルに書き込まれ、マージ エディターが閉じられます。",
+ "saveTempFile.message": "マージ結果を受け入れますか?",
+ "saveWithConflict": "競合がある状態で保存する(&&S)",
+ "workspace.close": "閉じる(&&C)",
+ "workspace.closeWithConflicts": "競合がある状態で閉じる(&&C)",
+ "workspace.detail1.handled": "保存していない場合、変更は失われます。",
+ "workspace.detail1.unhandled": "ファイルに未処理の競合が含まれています。保存しない場合、変更内容は失われます。",
+ "workspace.detail1.unhandled.nonDirty": "ファイルに未処理の競合が含まれています。",
+ "workspace.detailN.handled": "保存していない場合、変更は失われます。",
+ "workspace.detailN.unhandled": "ファイルに未処理の競合が含まれています。保存しない場合、変更内容は失われます。",
+ "workspace.detailN.unhandled.nonDirty": "ファイルに未処理の競合が含まれています。",
+ "workspace.doNotSave": "保存しない(&&N)",
+ "workspace.message1": "{0} に加えた変更を保存しますか?",
+ "workspace.message1.nonDirty": "{0} のマージ エディターを閉じますか?",
+ "workspace.messageN": "{0} ファイルに加えた変更を保存しますか?",
+ "workspace.messageN.nonDirty": "{0} のマージ エディターを閉じますか?",
+ "workspace.save": "保存(&&S)",
+ "workspace.saveWithConflict": "競合がある状態で保存する(&&S)"
+ },
+ "vs/workbench/contrib/mergeEditor/browser/mergeMarkers/mergeMarkersController": {
+ "conflictingLine": "1 行の競合する行",
+ "conflictingLines": "{0} 行の競合する行"
+ },
+ "vs/workbench/contrib/mergeEditor/browser/model/mergeEditorModel": {
+ "setInputHandled": "入力処理の設定",
+ "undoMarkAsHandled": "処理済みとしてのマークを元に戻す"
},
"vs/workbench/contrib/mergeEditor/browser/view/colors": {
"mergeEditor.change.background": "変更の背景色。",
"mergeEditor.change.word.background": "単語の変更の背景色。",
+ "mergeEditor.changeBase.background": "ベースの変更の背景色。",
+ "mergeEditor.changeBase.word.background": "単語の背景色がベースで変わります。",
"mergeEditor.conflict.handled.minimapOverViewRuler": "入力 1 における変更点の前景色。",
"mergeEditor.conflict.handledFocused.border": "フォーカスがある対応済みの競合の境界線の色。",
"mergeEditor.conflict.handledUnfocused.border": "フォーカスがない対応済みの競合の境界線の色。",
+ "mergeEditor.conflict.input1.background": "入力 1 の装飾の背景色。",
+ "mergeEditor.conflict.input2.background": "入力 2 の装飾の背景色。",
"mergeEditor.conflict.unhandled.minimapOverViewRuler": "入力 1 における変更点の前景色。",
"mergeEditor.conflict.unhandledFocused.border": "フォーカスがある対応していない競合の境界線の色。",
- "mergeEditor.conflict.unhandledUnfocused.border": "フォーカスがない対応していない競合の境界線の色。"
+ "mergeEditor.conflict.unhandledUnfocused.border": "フォーカスがない対応していない競合の境界線の色。",
+ "mergeEditor.conflictingLines.background": "\"競合する行\" のテキストの背景"
+ },
+ "vs/workbench/contrib/mergeEditor/browser/view/conflictActions": {
+ "accept": "{0} を適用する",
+ "acceptBoth": "組み合わせを承諾する",
+ "acceptBoth0First": "組み合わせを受け入れる ({0} First)",
+ "acceptBothTooltip": "結果ドキュメントの両側の自動組み合わせを承諾します。",
+ "acceptTooltip": "結果ドキュメントの {0} を承諾します。",
+ "append": "{0} を追加",
+ "appendTooltip": "結果ドキュメントに {0} を追加します。",
+ "combine": "組み合わせを承諾する",
+ "ignore": "無視する",
+ "manualResolution": "手動の解決策",
+ "manualResolutionTooltip": "この競合は手動により解決されました。",
+ "markAsHandledTooltip": "競合のこちら側を使用しないでください。",
+ "noChangesAccepted": "変更は承諾されませんでした",
+ "noChangesAcceptedTooltip": "この競合の現時点での解決策は、右と左の両方の変更の共通の先祖と同じです。",
+ "remove": "{0} を削除する",
+ "removeTooltip": "結果ドキュメントから {0} を削除します。",
+ "resetToBase": "ベースにリセット",
+ "resetToBaseTooltip": "この競合の右と左両方の変更を共通の先祖へリセットします。"
+ },
+ "vs/workbench/contrib/mergeEditor/browser/view/editors/baseCodeEditorView": {
+ "base": "ベース",
+ "compareWith": "{0}との比較",
+ "compareWithTooltip": "相違点は背景色で強調表示されます。"
},
"vs/workbench/contrib/mergeEditor/browser/view/editors/inputCodeEditorView": {
- "accept": "同意する",
+ "accept.conflicting": "承諾する (結果はダーティである)",
+ "accept.excluded": "同意する",
+ "accept.first": "承諾を元に戻す",
+ "accept.second": "承諾を元に戻す (現在 2 番目)",
+ "input1": "入力 1",
+ "input2": "入力 2",
"mergeEditor.accept": "{0} に同意する",
"mergeEditor.acceptBoth": "両方を取り込む",
"mergeEditor.markAsHandled": "処理済みにする",
"mergeEditor.swap": "入れ替える"
},
"vs/workbench/contrib/mergeEditor/browser/view/editors/resultCodeEditorView": {
+ "allConflictHandled": "すべての競合が処理され、マージを完了できます。",
+ "goToNextConflict": "次の競合に移動",
"mergeEditor.remainingConflict": "{0} 個の残りの競合 ",
- "mergeEditor.remainingConflicts": "{0} 個の残りの競合"
+ "mergeEditor.remainingConflicts": "{0} 個の残りの競合",
+ "result": "結果"
},
"vs/workbench/contrib/mergeEditor/browser/view/mergeEditor": {
- "editor.mergeEditor.label": "Merge Editor",
- "input1": "入力 1",
- "input2": "入力 2",
- "mergeEditor": "テキスト マージ エディター",
- "result": "結果"
+ "mergeEditor": "テキスト マージ エディター"
+ },
+ "vs/workbench/contrib/mergeEditor/browser/view/viewModel": {
+ "noConflictMessage": "現在、切り替え可能なフォーカスされた競合はありません。"
},
"vs/workbench/contrib/mergeEditor/common/mergeEditor": {
"baseUri": "マージ エディターのベースの URI",
"editorLayout": "マージ エディターのレイアウト モード",
"is": "エディターはマージ エディターです",
- "resultUri": "マージ エディターの結果の URI"
+ "isr": "エディターは、マージ エディターの結果エディターです。",
+ "resultUri": "マージ エディターの結果の URI",
+ "showBase": "マージ エディターにベース バージョンが表示される場合",
+ "showBaseAtTop": "ベースを先頭に表示する必要がある場合",
+ "showNonConflictingChanges": "マージ エディターに競合していない変更を表示している場合"
+ },
+ "vs/workbench/contrib/mergeEditor/electron-browser/devCommands": {
+ "merge.dev.openSelectionInTemporaryMergeEditor": "一時マージ エディターで選択範囲を開く",
+ "merge.dev.openState": "JSON からマージ エディターの状態を開く",
+ "mergeEditor": "マージ エディター(Dev)",
+ "mergeEditor.enterJSON": "JSON を入力"
+ },
+ "vs/workbench/contrib/multiDiffEditor/browser/actions": {
+ "ExpandAllDiffs": "すべての差分を展開する",
+ "collapseAllDiffs": "すべての差分を折りたたむ",
+ "goToFile": "ファイルを開く",
+ "goToNextChange": "次の変更に移動",
+ "goToPreviousChange": "前の変更に移動"
+ },
+ "vs/workbench/contrib/multiDiffEditor/browser/icons.contribution": {
+ "multiDiffEditorLabelIcon": "マルチ差分エディター ラベルのアイコン。"
+ },
+ "vs/workbench/contrib/multiDiffEditor/browser/multiDiffEditor.contribution": {
+ "name": "マルチ差分エディター"
+ },
+ "vs/workbench/contrib/multiDiffEditor/browser/multiDiffEditorInput": {
+ "name": "マルチ差分エディター",
+ "nameWithFiles": "{0} ({1} ファイル)",
+ "nameWithOneFile": "{0} (1 個のファイル)"
+ },
+ "vs/workbench/contrib/multiDiffEditor/browser/scmMultiDiffSourceResolver": {
+ "openChanges": "変更を開く"
},
"vs/workbench/contrib/notebook/browser/contrib/cellCommands/cellCommands": {
"notebookActions.changeCellToCode": "セルをコードに変更する",
@@ -6914,22 +11695,41 @@
"notebookActions.expandCellOutput": "セルの出力を展開する",
"notebookActions.joinCellAbove": "前のセルと結合する",
"notebookActions.joinCellBelow": "次のセルと結合する",
+ "notebookActions.joinSelectedCells": "選択したセルを結合する",
"notebookActions.moveCellDown": "セルを下に移動",
"notebookActions.moveCellUp": "セルを上に移動",
"notebookActions.splitCell": "セルを分割する",
- "notebookActions.toggleOutputs": "出力の切り替え"
+ "notebookActions.toggleOutputs": "出力の切り替え",
+ "notebookActions.toggleScrolling": "セル出力のスクロールを切り替える"
+ },
+ "vs/workbench/contrib/notebook/browser/contrib/cellDiagnostics/cellDiagnosticsActions": {
+ "cellCommands.quickFix.noneMessage": "利用可能なコード アクションはありません",
+ "notebookActions.cellFailureActions": "セル エラー操作の表示",
+ "notebookActions.chatExplainCellError": "セル エラーの説明",
+ "notebookActions.chatFixCellError": "セル エラーの修正"
+ },
+ "vs/workbench/contrib/notebook/browser/contrib/cellDiagnostics/diagnosticCellStatusBarContrib": {
+ "notebook.cell.status.diagnostic": "クイック操作 {0}"
},
"vs/workbench/contrib/notebook/browser/contrib/cellStatusBar/executionStatusBarItemController": {
"notebook.cell.status.executing": "実行中",
"notebook.cell.status.failed": "失敗",
"notebook.cell.status.pending": "保留中",
- "notebook.cell.status.success": "成功"
+ "notebook.cell.status.success": "成功",
+ "notebook.cell.statusBar.timerTooltip": "**前回の実行** {0}\r\n\r\n**実行時間** {1}\r\n\r\n**オーバーヘッド時間** {2}\r\n\r\n**レンダリング時間**\r\n\r\n{3}",
+ "notebook.cell.statusBar.timerTooltip.reportIssueFootnote": "上記のリンクを使用して、問題のレポーターを使用して問題を提出します。",
+ "notebook.cell.statusBar.timerVerbose": "実行期間: {0}、期間: {1}"
},
"vs/workbench/contrib/notebook/browser/contrib/cellStatusBar/statusBarProviders": {
"notebook.cell.status.autoDetectLanguage": "検出された言語を承諾する: {0}",
- "notebook.cell.status.language": "セルの言語モードを選択する"
+ "notebook.cell.status.language": "セルの言語モードを選択する",
+ "notebook.cell.status.searchLanguageExtensions": "セルの言語が不明です。クリックして '{0}' 拡張機能を検索します"
+ },
+ "vs/workbench/contrib/notebook/browser/contrib/chat/notebookChatUtils": {
+ "notebookOutputCellLabel": "{0} • セル {1} • 出力 {2}"
},
"vs/workbench/contrib/notebook/browser/contrib/clipboard/notebookClipboard": {
+ "notebook.cell.output.selectAll": "すべて選択",
"notebookActions.copy": "セルのコピー",
"notebookActions.cut": "セルの切り取り",
"notebookActions.paste": "セルの貼り付け",
@@ -6937,25 +11737,19 @@
"toggleNotebookClipboardLog": "ノートブックのクリップボードのトラブルシューティングを切り替える"
},
"vs/workbench/contrib/notebook/browser/contrib/editorStatusBar/editorStatusBar": {
- "current1": "現在の選択",
- "current2": "{0} - 現在の選択",
- "installSuggestedKernel": "推奨拡張機能のインストール",
"kernel.select.label": "カーネルの選択",
"notebook.activeCellStatusName": "ノートブック エディターの選択",
+ "notebook.indentation": "Notebook のインデント",
"notebook.info": "ノートブック カーネル情報",
"notebook.multiActiveCellIndicator": "セル {0} ({1} が選択されています)",
"notebook.select": "ノートブック カーネルの選択",
"notebook.singleActiveCellIndicator": "セル {1} の {0}",
- "notebookActions.selectKernel": "ノートブックのカーネルを選択する",
- "notebookActions.selectKernel.args": "ノートブックのカーネル引数",
- "otherKernelKinds": "その他",
- "prompt.placeholder.change": "'{0}' のカーネルを変更する",
- "prompt.placeholder.select": "'{0}' に対するカーネルの選択",
- "searchForKernels": "マーケットプレースでカーネル拡張機能を参照する",
- "suggestedKernels": "提案",
+ "selectNotebookIndentation": "インデントを選択",
"tooltop": "{0} (提案)"
},
"vs/workbench/contrib/notebook/browser/contrib/find/notebookFind": {
+ "notebook.findNext.fromWidget": "次を検索",
+ "notebook.findPrevious.fromWidget": "前を検索",
"notebookActions.findInNotebook": "ノートブック内で検索",
"notebookActions.hideFind": "[ノートブック内で検索] を非表示にする"
},
@@ -6969,9 +11763,10 @@
"label.replaceAllButton": "すべて置換",
"label.replaceButton": "置換",
"label.toggleReplaceButton": "置換の切り替え",
+ "label.toggleSelectionFind": "選択範囲を検索",
"notebook.find.filter.filterAction": "フィルターの検索",
"notebook.find.filter.findInCodeInput": "コード セルのソース",
- "notebook.find.filter.findInCodeOutput": "セルの出力",
+ "notebook.find.filter.findInCodeOutput": "コード セルの出力",
"notebook.find.filter.findInMarkupInput": "Markdown のソース",
"notebook.find.filter.findInMarkupPreview": "レンダリングされたマークダウン",
"placeholder.find": "検索",
@@ -6985,6 +11780,7 @@
"vs/workbench/contrib/notebook/browser/contrib/format/formatting": {
"format.title": "ノートブックのフォーマット",
"formatCell.label": "セルを書式設定する",
+ "formatCells.label": "セルの書式設定",
"label": "ノートブックのフォーマット"
},
"vs/workbench/contrib/notebook/browser/contrib/gettingStarted/notebookGettingStarted": {
@@ -6993,6 +11789,13 @@
"vs/workbench/contrib/notebook/browser/contrib/layout/layoutActions": {
"notebook.toggleCellToolbarPosition": "セルのツールバー位置の切り替え"
},
+ "vs/workbench/contrib/notebook/browser/contrib/multicursor/notebookMulticursor": {
+ "addFindMatchToSelection": "選択範囲を次の一致項目に追加",
+ "deleteLeftMultiSelection": "左を削除",
+ "deleteRightMultiSelection": "右に削除",
+ "exitMultiSelection": "マルチ カーソル モードを終了する",
+ "selectAllFindMatches": "一致するすべての出現箇所を選択します"
+ },
"vs/workbench/contrib/notebook/browser/contrib/navigation/arrow": {
"cursorMoveDown": "次のセル エディターにフォーカス",
"cursorMoveUp": "前のセル エディターにフォーカス",
@@ -7004,21 +11807,90 @@
"focusLastCell": "最後のセルにフォーカス",
"focusOutput": "アクティブ セル出力にフォーカスを置く",
"focusOutputOut": "アクティブ セル出力からフォーカスを外す",
+ "notebook.cell.webviewHandledEvents": "セル出力内のフォーカスされた要素によって処理される必要があるキー押下。",
"notebook.navigation.allowNavigateToSurroundingCells": "有効にすると、セルエディター内の現在のカーソルが最初または最後の行にあるときに、カーソルは次または前のセルに移動できます。",
"notebookActions.centerActiveCell": "アクティブ セルを中央に置く"
},
+ "vs/workbench/contrib/notebook/browser/contrib/notebookVariables/notebookInlineVariables": {
+ "clearAllInlineValues": "すべてのインライン値をクリア"
+ },
+ "vs/workbench/contrib/notebook/browser/contrib/notebookVariables/notebookVariableCommands": {
+ "copyWorkspaceVariableValue": "値のコピー",
+ "executeNotebookVariableProvider": "Notebook 変数プロバイダーを実行する"
+ },
+ "vs/workbench/contrib/notebook/browser/contrib/notebookVariables/notebookVariables": {
+ "notebookVariables": "Notebook 変数"
+ },
+ "vs/workbench/contrib/notebook/browser/contrib/notebookVariables/notebookVariablesDataSource": {
+ "notebook.indexedChildrenLimitReached": "表示制限に達しました"
+ },
+ "vs/workbench/contrib/notebook/browser/contrib/notebookVariables/notebookVariablesTree": {
+ "notebook.ReplVariables": "REPL 変数",
+ "notebook.notebookVariables": "Notebook 変数",
+ "notebookVariableAriaLabel": "変数 {0}、値 {1}"
+ },
"vs/workbench/contrib/notebook/browser/contrib/outline/notebookOutline": {
"breadcrumbs.showCodeCells": "有効にすると、ノートブックの階層リンクにコード セルが含まれます。",
- "empty": "空のセル",
- "outline.showCodeCells": "有効にすると、ノートブック アウトラインにコード セルが表示されます。"
+ "filter": "エントリのフィルター処理",
+ "notebook.gotoSymbols.showAllSymbols": "シンボルに移動 クイック 選択を有効にすると、ノートブックの完全なコード シンボルと Markdown ヘッダーが表示されます。",
+ "outline.showCodeCellSymbols": "有効にすると、ノートブックのアウトラインにコード セルの記号が表示されます。'#notebook.outline.showCodeCells#' が有効になっていることに依存します。",
+ "outline.showCodeCells": "有効にすると、ノートブック アウトラインにコード セルが表示されます。",
+ "outline.showMarkdownHeadersOnly": "有効にすると、ノートブックのアウトラインにヘッダーを含むマークダウン セルのみが表示されます。",
+ "toggleCodeCellSymbols": "コード セル記号",
+ "toggleCodeCells": "コード セル",
+ "toggleShowMarkdownHeadersOnly": "マークダウン ヘッダーのみ"
},
"vs/workbench/contrib/notebook/browser/contrib/profile/notebookProfile": {
"setProfileTitle": "プロファイルの設定"
},
+ "vs/workbench/contrib/notebook/browser/contrib/saveParticipants/saveParticipants": {
+ "codeAction.apply": "コード アクション '{0}' を適用しています。",
+ "codeaction.get2": "'{0}' からコード アクション ([構成]({1})) を取得しています。",
+ "formatNotebook": "ノートブックのフォーマット",
+ "insertFinalNewLine": "新しい行を末尾に挿入",
+ "notebookFormatSave.formatting": "書式設定",
+ "notebookSaveParticipants.cellCodeActions": "'Cell' コード アクションの実行",
+ "notebookSaveParticipants.formatCodeActions": "'形式' コード アクションの実行",
+ "notebookSaveParticipants.notebookCodeActions": "'Notebook' コード アクションを実行しています",
+ "trimNotebookNewlines": "最後の改行のトリミング",
+ "trimNotebookWhitespace": "ノートブックの末尾の空白文字のトリミング"
+ },
"vs/workbench/contrib/notebook/browser/contrib/troubleshoot/layout": {
"workbench.notebook.clearNotebookEdtitorTypeCache": "ノートブック エディター タイプ キャッシュのクリア",
"workbench.notebook.inspectLayout": "ノートブック レイアウトの検査",
- "workbench.notebook.toggleLayoutTroubleshoot": "レイアウトのトラブルシューティングの切り替え"
+ "workbench.notebook.toggleLayoutTroubleshoot": "ノートブック レイアウトの切り替えのトラブルシューティング"
+ },
+ "vs/workbench/contrib/notebook/browser/controller/cellOperations": {
+ "notebookActions.joinSelectedCells": "異なる種類のセルを結合できません",
+ "notebookActions.joinSelectedCells.label": "ノートブック セルの結合"
+ },
+ "vs/workbench/contrib/notebook/browser/controller/cellOutputActions": {
+ "imageFiles": "イメージ ファイル",
+ "notebookActions.copyOutput": "セル出力のコピー",
+ "notebookActions.openOutputInEditor": "テキスト エディターでセル出力を開く",
+ "notebookActions.openOutputInNotebookOutputEditor": "出力プレビューで開く",
+ "notebookActions.saveOutputImage": "画像の保存",
+ "notebookActions.showAllOutput": "空の出力を表示する"
+ },
+ "vs/workbench/contrib/notebook/browser/controller/chat/cellChatActions": {
+ "notebook.apply1": "承諾して実行",
+ "notebook.apply2": "承諾して実行",
+ "notebook.apply3": "変更を承諾してセルを実行します",
+ "notebookActions.menu.insertCode.ontoolbar": "生成",
+ "notebookActions.menu.insertCode.tooltip": "チャットを開始してコードを生成する",
+ "notebookActions.menu.insertCodeCellWithChat": "生成",
+ "notebookActions.menu.insertCodeCellWithChat.tooltip": "チャットを開始してコードを生成する"
+ },
+ "vs/workbench/contrib/notebook/browser/controller/chat/notebook.chat.contribution": {
+ "chatContext.notebook.kernelVariable": "カーネル変数...",
+ "chatContext.notebook.kernelVariable.placeholder": "カーネル変数を選択してください",
+ "noKernelVariables": "カーネル変数は見つかりませんでした",
+ "notebookActions.addOutputToChat": "チャットにセル出力を追加",
+ "pickKernelVariableLabel": "カーネルから変数を選択します",
+ "selectKernelVariablePlaceholder": "カーネル変数を選択してください"
+ },
+ "vs/workbench/contrib/notebook/browser/controller/chat/notebookChatContext": {
+ "notebookChatAgentRegistered": "ノートブックのチャット エージェントが登録されているかどうか"
},
"vs/workbench/contrib/notebook/browser/controller/coreActions": {
"miShare": "共有",
@@ -7029,17 +11901,28 @@
"vs/workbench/contrib/notebook/browser/controller/editActions": {
"autoDetect": "自動検出",
"changeLanguage": "セルの言語の変更",
- "clearAllCellsOutputs": "すべてのセルの出力をクリアする",
+ "clearAllCellsOutputs": "すべての出力のクリア",
"clearCellOutputs": "セルの出力をクリアする",
+ "commentSelectedCells": "選択したセルのコメント化",
+ "confirmDeleteButton": "削除",
+ "confirmDeleteButtonMessage": "このセルは実行中です。削除しますか?",
"detectLanguage": "セルの検出された言語を承諾する",
+ "doNotAskAgain": "今後このメッセージを表示しない",
+ "indentConvert": "ファイルの変換",
+ "indentView": "ビューの変更",
"languageDescription": "({0}) - 現在の言語",
"languageDescriptionConfigured": "({0})",
"languagesPicks": "言語 (識別子)",
"noDetection": "セル言語を検出できません",
+ "noNotebookEditor": "現時点でアクティブな Notebook エディターはありません",
+ "noWritableCodeEditor": "アクティブな Notebook エディターは読み取り専用です。",
"notebookActions.deleteCell": "セルの削除",
"notebookActions.editCell": "セルの編集",
"notebookActions.quitEdit": "セルの編集を停止",
- "pickLanguageToConfigure": "言語モードの選択"
+ "notebookActions.quitEditAllCells": "すべてのセルの編集を停止する",
+ "pickAction": "アクションの選択",
+ "pickLanguageToConfigure": "言語モードの選択",
+ "selectNotebookIndentation": "インデントを選択"
},
"vs/workbench/contrib/notebook/browser/controller/executeActions": {
"notebookActions.cancel": "セルの実行を停止する",
@@ -7051,10 +11934,11 @@
"notebookActions.executeAndSelectBelow": "ノートブック セルを実行し、下を選択する",
"notebookActions.executeBelow": "セルと以下の実行",
"notebookActions.executeNotebook": "すべてを実行",
+ "notebookActions.interruptNotebook": "割り込み",
"notebookActions.renderMarkdown": "すべての Markdown セルをレンダリングする",
"revealLastFailedCell": "最近失敗したセルに移動",
- "revealLastFailedCellShort": "移動先",
- "revealRunningCell": "Go to Running Cell",
+ "revealLastFailedCellShort": "最近失敗したセルに移動",
+ "revealRunningCell": "実行中のセルに移動",
"revealRunningCellShort": "移動先"
},
"vs/workbench/contrib/notebook/browser/controller/foldingController": {
@@ -7081,16 +11965,48 @@
},
"vs/workbench/contrib/notebook/browser/controller/layoutActions": {
"customizeNotebook": "ノートブックのカスタマイズ...",
+ "mitoggleNotebookStickyScroll": "ノートブック スティッキー スクロールの切り替え(&&T)",
"notebook.placeholder": "保存する設定ファイル",
"notebook.saveMimeTypeOrder": "MIME の種類を表示する順序を保存する",
- "notebook.showLineNumbers": "ノートブック行番号の表示",
+ "notebook.showLineNumbers": "Notebook 行番号の表示",
"notebook.toggleBreadcrumb": "階層リンクの切り替え",
"notebook.toggleCellToolbarPosition": "セルのツールバー位置の切り替え",
"notebook.toggleLineNumbers": "ノートブック行番号の切り替え",
+ "notebookStickyScroll": "ノートブック スティッキー スクロールの切り替え",
"saveTarget.machine": "ユーザー設定",
"saveTarget.workspace": "ワークスペースの設定",
+ "toggleStickyScroll": "ノートブック スティッキー スクロールの切り替え",
"workbench.notebook.layout.configure.label": "ノートブック レイアウトのカスタマイズ",
- "workbench.notebook.layout.select.label": "ノートブックのレイアウトを選択する"
+ "workbench.notebook.layout.select.label": "ノートブックのレイアウトを選択する",
+ "workbench.notebook.layout.webview.reset.label": "Notebook Webview のリセット"
+ },
+ "vs/workbench/contrib/notebook/browser/controller/notebookIndentationActions": {
+ "changeTabDisplaySize": "タブの表示サイズの変更",
+ "convertIndentation": "インデントの変換",
+ "convertIndentationToSpaces": "インデントをスペースに変換",
+ "convertIndentationToTabs": "インデントをタブに変換",
+ "indentUsingSpaces": "スペースによるインデント",
+ "indentUsingTabs": "タブを使用したインデント",
+ "selectTabWidth": "現在のファイルのタブのサイズを選択"
+ },
+ "vs/workbench/contrib/notebook/browser/controller/sectionActions": {
+ "expandSection": "セクションの展開",
+ "foldSection": "セクションの折りたたみ",
+ "miexpandSection": "セクションの展開(&&E)",
+ "mifoldSection": "セクションの折りたたみ(&&F)",
+ "mirunCell": "セルの実行(&&R)",
+ "mirunCellsInSection": "セクション内のセルを実行(&&R)",
+ "runCell": "セルの実行",
+ "runCellsInSection": "セクションでセルを実行"
+ },
+ "vs/workbench/contrib/notebook/browser/controller/variablesActions": {
+ "notebookActions.openVariablesView": "変数"
+ },
+ "vs/workbench/contrib/notebook/browser/diff/diffComponents": {
+ "hiddenCell": "{0} 個の非表示セル",
+ "hiddenCells": "{0} 個の非表示セル",
+ "hideUnchangedCells": "変更されていないセルを非表示にする",
+ "showUnchangedCells": "変更されていないセルを表示する"
},
"vs/workbench/contrib/notebook/browser/diff/diffElementOutputs": {
"builtinRenderInfo": "ビルトイン",
@@ -7102,81 +12018,142 @@
"promptChooseMimeTypeInSecure.placeHolder": "現在の出力にレンダリングする MIME の種類を選択してください。リッチ MIME の種類は、ノートブックが信頼されている場合にのみ使用できます"
},
"vs/workbench/contrib/notebook/browser/diff/notebookDiffActions": {
+ "goToCell": "セルへ移動",
+ "hideUnchangedCells": "変更されていないセルを非表示にする",
+ "ignoreTrimWhitespace.label": "先頭と末尾のスペースによる違いを表示する",
+ "notebook.diff.action.next.title": "次の変更箇所を表示",
+ "notebook.diff.action.previous.title": "前の変更箇所を表示",
"notebook.diff.cell.revertInput": "入力を元に戻す",
"notebook.diff.cell.revertMetadata": "メタデータを元に戻す",
"notebook.diff.cell.revertOutputs": "出力を元に戻す",
"notebook.diff.cell.switchOutputRenderingStyleToText": "出力レンダリングを切り替える",
+ "notebook.diff.cell.toggleCollapseUnchangedRegions": "変更されていない領域の折りたたみの切り替え",
"notebook.diff.ignoreMetadata": "メタデータの違いを非表示にする",
"notebook.diff.ignoreOutputs": "出力の違いを非表示にする",
+ "notebook.diff.inline.toggle.title": "インライン ビューの切り替え",
+ "notebook.diff.openFile": "ファイルを開く",
+ "notebook.diff.revertMetadata": "ノートブック メタデータを元に戻す",
"notebook.diff.showMetadata": "メタデータの違いを表示する",
"notebook.diff.showOutputs": "出力の違いを表示する",
- "notebook.diff.switchToText": "テキスト差分エディターを開く"
+ "notebook.diff.switchToText": "テキスト差分エディターを開く",
+ "notebook.diff.toggleInline": "試験的なノートブックのインライン diff エディターを切り替えるには、コマンドを有効にします。",
+ "showUnchangedCells": "変更されていないセルを表示する"
},
- "vs/workbench/contrib/notebook/browser/diff/notebookTextDiffEditor": {
+ "vs/workbench/contrib/notebook/browser/diff/notebookDiffEditor": {
"notebookTreeAriaLabel": "ノートブック テキストの差分"
},
- "vs/workbench/contrib/notebook/browser/extensionPoint": {
- "contributes.notebook.provider": "ノートブック ドキュメント プロバイダーを提供します。",
- "contributes.notebook.provider.displayName": "ノートブックに関して人が認識できる名前。",
- "contributes.notebook.provider.selector": "ノートブックの対象となる glob のセット。",
- "contributes.notebook.provider.selector.filenamePattern": "ノートブックが有効になっている glob。",
- "contributes.notebook.provider.viewType": "ノートブックの種類。",
- "contributes.notebook.renderer": "ノートブック出力レンダラー プロバイダーを提供します。",
- "contributes.notebook.renderer.displayName": "ノートブック出力レンダラーに関して人が認識できる名前。",
- "contributes.notebook.renderer.entrypoint": "拡張機能をレンダリングするために Web ビューに読み込むファイル。",
- "contributes.notebook.renderer.entrypoint.extends": "このレンダラーを展開する既存のレンダラー。",
- "contributes.notebook.renderer.hardDependencies": "レンダラーが必要とするカーネル依存関係の一覧。'NotebookKernel.preloads' にいずれかの依存関係が存在する場合は、レンダラーを使用できます。",
- "contributes.notebook.renderer.optionalDependencies": "レンダラーが使用できるソフト カーネル依存関係の一覧。`NotebookKernel.preloads` にいずれかの依存関係が存在する場合、カーネルと対話しないレンダラーよりもこのレンダラーが優先されます。",
- "contributes.notebook.renderer.requiresMessaging": "レンダラーが 'createRendererMessaging' 経由で拡張機能ホストと通信する必要があるかどうか、必要な場合どのように通信するかを定義します。より強力なメッセージング要件を持つレンダラーは、すべての環境で機能するとは限りません。",
- "contributes.notebook.renderer.requiresMessaging.always": "メッセージングが必須です。このレンダラーは、拡張機能ホストで実行できる拡張機能の一部である場合にのみ使用されます。",
- "contributes.notebook.renderer.requiresMessaging.never": "レンダラーにはメッセージングが必須ではありません。",
- "contributes.notebook.renderer.requiresMessaging.optional": "メッセージングを利用できるとレンダラーが向上しますが、必須ではありません。",
- "contributes.notebook.renderer.viewType": "ノートブック出力レンダラーを表す一意の識別子です。",
- "contributes.notebook.selector": "ノートブックの対象となる glob のセット。",
- "contributes.notebook.selector.provider.excludeFileNamePattern": "ノートブックが無効になっている glob。",
- "contributes.priority": "ユーザーがファイルを開いたときにカスタム エディターを自動的に有効にするかどうかを制御します。これは、'workbench.editorAssociations' 設定を使用してユーザーによって上書きされる可能性があります。",
- "contributes.priority.default": "ユーザーがリソースを開いたときに、そのリソースに対して他の既定のカスタム エディターが登録されていない場合は、このエディターが自動的に使用されます。",
- "contributes.priority.option": "ユーザーがリソースを開いたときにこのエディターが自動的に使用されることはありませんが、ユーザーは [再び開く] コマンドを使用してこのエディターに切り替えることができます。"
+ "vs/workbench/contrib/notebook/browser/diff/notebookDiffEditorBrowser": {
+ "notebook.diffEditor.allCollapsed": "ノートブックの差分エディター内のすべてのセルを折りたたむかどうか",
+ "notebook.diffEditor.hasUnchangedCells": "ノートブックの差分エディターに変更されていないセルがあるかどうか",
+ "notebook.diffEditor.item.kind": "ノートブックの差分エディターでの項目の種類 (セル、メタデータ、出力)",
+ "notebook.diffEditor.item.state": "ノートブックの差分エディターでの項目の差分状態 (削除、挿入、変更、未変更)",
+ "notebook.diffEditor.unchangedCellsAreHidden": "ノートブックの差分エディターで変更されていないセルを非表示にするかどうか"
+ },
+ "vs/workbench/contrib/notebook/browser/diff/notebookDiffList": {
+ "notebook.diff.hiddenCells.expandAll": "ダブルクリックして表示"
+ },
+ "vs/workbench/contrib/notebook/browser/diff/notebookMultiDiffEditor": {
+ "notebookCellLabel": "セル {0}",
+ "notebookCellMetadataLabel": "メタデータ",
+ "notebookCellOutputLabel": "出力"
},
"vs/workbench/contrib/notebook/browser/notebook.contribution": {
"insertToolbarLocation.betweenCells": "セル間でカーソルを合わせたときに表示されるツールバー。",
"insertToolbarLocation.both": "両方のツールバー。",
"insertToolbarLocation.hidden": "挿入アクションがどこにも表示されません。",
"insertToolbarLocation.notebookToolbar": "ノートブック エディターの上部にあるツールバー。",
+ "notebook.VariablesView.description": "デバッグ パネル内で実験的なノートブック変数ビューを有効にします。",
+ "notebook.backup.sizeLimit": "ノートブック ファイルがホット リロードの用にバックアップされなくなるノートブック出力サイズの制限 (KB 単位)。無制限の場合は 0 を使用します。",
+ "notebook.cellExecutionTimeVerbosity.default.description": "セルの実行時間が表示され、ホバー ヒントに詳細情報が表示されます。",
+ "notebook.cellExecutionTimeVerbosity.description": "セルステータス バーのセル実行時間の詳細を制御します。",
+ "notebook.cellExecutionTimeVerbosity.verbose.description": "セルの最後の実行タイムスタンプと期間が表示され、ホバー ヒントに詳細情報が表示されます。",
+ "notebook.cellFailureDiagnostics": "セル エラーの使用可能な診断を表示します。",
+ "notebook.cellGenerate": "インライン チャットを有効にしてコード セルを作成するための実験用の生成アクションを有効にします。",
"notebook.cellToolbarLocation.description": "セルのツールバーを表示するか非表示にするかどうか。",
"notebook.cellToolbarLocation.viewType": "特定のファイルの種類について、セルのツールバー位置を構成する",
"notebook.cellToolbarVisibility.description": "ポイントしたときまたはクリック時にセルのツールバーを表示するかどうか。",
"notebook.compactView.description": "ノートブック エディターをコンパクト形式で表示するかどうかを制御します。たとえば、オンにすると、左余白の幅が小さくなります。",
+ "notebook.confirmDeleteRunningCell": "実行中のセルを削除する場合に確認プロンプトを必須とするかどうかを制御します。",
"notebook.consolidatedOutputButton.description": "出力アクションを出力ツールバーにレンダリングするかどうかを制御します。",
"notebook.consolidatedRunButton.description": "[実行] ボタンの横にあるドロップダウンで、追加アクションを表示するかどうかを制御します。",
+ "notebook.diff.enableOverviewRuler.description": "ノートブックの差分エディターで概要ルーラーをレンダリングするかどうか。",
"notebook.diff.enablePreview.description": "ノートブックに拡張テキスト差分エディターを使用するかどうか。",
+ "notebook.disableOutputFilePathLinks": "ノートブック セルの出力でファイルパス リンクを無効にするかどうかを制御します。",
"notebook.displayOrder.description": "出力 MIME 種類の優先度リスト",
"notebook.dragAndDrop.description": "ノートブック エディターでドラッグ アンド ドロップによるセルの移動を許可するかどうかを制御します。",
"notebook.editorOptions.experimentalCustomization": "ノートブックで使用されるコード エディターの設定。これを使用して、ほとんどのエディター * 設定をカスタマイズできます。",
+ "notebook.findFilters": "ウィジェット検索によるノートブック セルの検索動作をカスタマイズします。マークアップ ソースとマークアップ プレビューの両方が有効になっている場合、ウィジェット検索は、セルの現在の状態に基づいてソース コードまたはプレビューを検索します。",
"notebook.focusIndicator.description": "フォーカスインジケーターが描画されている場所を、セルの境界線または左端余白に沿って制御します。",
+ "notebook.formatOnCellExecution": "実行時にノートブック セルの書式を設定します。フォーマッタを使用できる必要があります。",
+ "notebook.formatOnSave": "保存時にノートブックの書式設定をします。フォーマッタが使用可能である必要があり、エディターをシャットダウンすることはできません。{0} が 'afterDelay' に設定されている場合、ファイルは明示的に保存されたときにのみ書式設定されます。",
"notebook.globalToolbar.description": "ノートブック エディター内でグローバル ツールバーをレンダリングするかどうかを制御します。",
"notebook.globalToolbarShowLabel": "[ノートブック] ツールバーのアクションがラベルをレンダリングするかどうかを制御します。",
+ "notebook.inlineValues.auto": "インライン値プロバイダーが登録されている場合にのみインライン値を表示します。",
+ "notebook.inlineValues.description": "セルの実行後にノートブック コード セル内にインライン値を表示するかどうかを制御します。セルが編集、再実行、または [すべての出力のクリア] ツールバー ボタンまたは [ノートブック: インライン値のクリア] コマンドを使用して明示的にクリアされるまで、値は残ります。",
+ "notebook.inlineValues.off": "インライン値を表示しません。",
+ "notebook.inlineValues.on": "インライン値プロバイダーが登録されていない場合、正規表現フォールバックを使用して、常にインライン値を表示します。注: フォールバックを使用すると、より大きなセルのパフォーマンスに影響する可能性があります。",
+ "notebook.insertFinalNewline": "有効にすると、ノートブックを保存するときにコード セルの最後に改行が挿入されます。",
"notebook.insertToolbarPosition.description": "セルを挿入アクションを表示するかどうかを制御します。",
"notebook.interactiveWindow.collapseCodeCells": "インタラクティブ ウィンドウのコード セルを既定で折りたたむかどうかを制御します。",
+ "notebook.markdown.lineHeight": "ノートブック内の Markdown セルの線の高さをピクセル単位で制御します。{0} に設定すると、{1} が使用されます",
+ "notebook.markup.fontFamily": "ノートブックに表示されるマークアップのフォント ファミリを制御します。空白のままにすると、ワークベンチの既定のフォント ファミリに戻ります。",
"notebook.markup.fontSize": "ノートブックでレンダリングされたマークアップのフォント サイズをピクセル単位で制御します。{0} に設定すると、{1} の 120% が使用されます。",
- "notebook.outputFontFamily": "ノートブック セルの出力テキストのフォント ファミリ。空に設定すると、{0} が使用されます。",
- "notebook.outputFontSize": "ノートブック セルの出力テキストのフォント サイズ。{0} に設定すると、{1} が使用されます。",
- "notebook.outputLineHeight": "ノートブック セルの出力テキストの行の高さ。\r\n - 0 から 8 の値は、フォント サイズの乗数として使用されます。\r\n - 8 以上の値が有効な値として使用されます。",
+ "notebook.minimalErrorRendering": "エラー出力を最小限のスタイルでレンダリングするかどうかを制御します。",
+ "notebook.multiCursor.enabled": "試験段階。ノートブック エディターで、複数のセルにわたる限られた複数のカーソル コントロールのセットを有効にします。現在サポートされているのは、主要なエディター アクション (入力、切り取り、コピー、貼り付け/合成) と、エディター コマンドの限定されたサブセットです。",
+ "notebook.outputFontFamily": "ノートブック セル内の出力テキストのフォント ファミリ。空に設定すると、{0} が使用されます。",
+ "notebook.outputFontSize": "ノートブック セル内の出力テキストのフォント サイズ。0 に設定すると、{0} が使用されます。",
+ "notebook.outputLineHeight": "ノートブック セル内の出力テキストの行の高さ。\r\n - 0 に設定すると、エディターの行の高さが使用されます。\r\n - 0 から 8 の値は、フォント サイズの乗数として使用されます。\r\n - 8 以上の値が有効な値として使用されます。",
+ "notebook.outputScrolling": "制限より長い場合、最初はスクロール可能な領域にノートブックの出力をレンダリングします。",
+ "notebook.outputWordWrap": "出力内の行を折り返すかどうかを制御します。",
+ "notebook.remoteSaving": "プロセス間とリモート接続間でのノートブックの増分保存を有効にします。有効にすると、ノートブックへの変更のみが拡張機能ホストに送信されるため、大きなノートブックと低速なネットワーク接続のパフォーマンスが向上します。",
+ "notebook.scrolling.revealNextCellOnExecute.description": "{0} の実行時に次のセルを表示するときにスクロールする距離。",
+ "notebook.scrolling.revealNextCellOnExecute.firstLine.description": "スクロールして、次のセルの最初の行を表示します。",
+ "notebook.scrolling.revealNextCellOnExecute.fullCell.description": "スクロールして次のセルを完全に表示します。",
+ "notebook.scrolling.revealNextCellOnExecute.none.description": "スクロールしないでください。",
"notebook.showCellStatusbar.description": "セルのステータス バーを表示するかどうか。",
"notebook.showCellStatusbar.hidden.description": "セルのステータス バーは常に非表示です。",
"notebook.showCellStatusbar.visible.description": "セルのステータス バーは常に表示されています。",
"notebook.showCellStatusbar.visibleAfterExecute.description": "セルのステータス バーは、セルが実行されるまで非表示になります。その後可視化され、実行状態を表示できるようになります。",
"notebook.showFoldingControls.description": "マークダウン ヘッダー折りたたみ矢印が表示されるタイミングを制御します。",
- "notebook.textOutputLineLimit": "テキスト出力のテキスト行数を制御します。",
+ "notebook.stickyScrollEnabled.description": "実験。ノートブック エディターでノートブック スティッキー スクロール ヘッダーをレンダリングするかどうかを制御します。",
+ "notebook.stickyScrollMode.description": "入れ子になった固定ラインをフラットに積み重ねて表示するか、インデントして積み重ねて表示するかを制御します。",
+ "notebook.stickyScrollMode.flat": "入れ子になった固定ラインはフラットに表示されます。",
+ "notebook.stickyScrollMode.indented": "入れ子になった固定ラインはインデントされて表示されます。",
+ "notebook.textOutputLineLimit": "テキスト出力に表示されるテキストの行数を制御します。{0} が有効な場合、この設定は出力のスクロールの高さを決定するために使用されます。",
"notebook.undoRedoPerCell.description": "セルごとに個別の元に戻す/やり直しのスタックを使用するかどうか。",
"notebookConfigurationTitle": "ノートブック",
+ "notebookFormatter.default": "その他すべてのフォーマッタ設定よりも優先される、既定のノートブック フォーマッタを定義します。フォーマッタを提供している拡張機能の識別子にする必要があります。",
"showFoldingControls.always": "折りたたみコントロールは常に表示されています。",
"showFoldingControls.mouseover": "折りたたみコントロールは、カーソルを合わせたときにのみ表示されます。",
"showFoldingControls.never": "折りたたみコントロールを表示せず、余白のサイズを小さくします。"
},
+ "vs/workbench/contrib/notebook/browser/notebookAccessibilityHelp": {
+ "notebook.cell.edit": "Edit Cell コマンド {0} は、セル入力にフォーカスを移動します。",
+ "notebook.cell.executeAndFocusContainer": "Execute Cell コマンド {0} は、現在フォーカスがあるセルを実行します。",
+ "notebook.cell.focusInOutput": "Focus Output コマンド {0} は、セルの出力にフォーカスを設定します。",
+ "notebook.cell.insertCodeCellBelowAndFocusContainer": "Insert Cell Above コマンド {0} および Insert Cell Below コマンド {1} は、新しい空のコード セルを作成します。",
+ "notebook.cell.quitEdit": "Quit Edit コマンド {0} は、セル コンテナーにフォーカスを設定します。アクティブな場合は、最初に仮想カーソルを終了する前に、既定の (Escape) キーを 2 回押す必要があります。",
+ "notebook.cellNavigation": "上矢印と下矢印は、外側のセル コンテナーにフォーカスを合わせながら、セル間でフォーカスを移動します。",
+ "notebook.changeCellType": "Change Cell to Code/Markdown コマンドは、セルのタイプを切り替えるために使用されます。",
+ "notebook.focusNextEditor": "Focus Next Cell Editor コマンド {0} は、次のセルのエディターでフォーカスを設定します。",
+ "notebook.focusPreviousEditor": "Focus Previous Cell Editor コマンド {0} は、前のセルのエディターにフォーカスを設定します。",
+ "notebook.overview": "ノートブック ビューは、コードとマークダウン セルのコレクションです。 コード セルは実行でき、セルのすぐ下に出力が生成されます。"
+ },
+ "vs/workbench/contrib/notebook/browser/notebookAccessibilityProvider": {
+ "notebookTreeAriaLabel": "ノートブック",
+ "notebookTreeAriaLabelHelp": "{0}\r\nユーザー補助のヘルプに {1} を使用します",
+ "notebookTreeAriaLabelHelpNoKb": "{0}\r\n詳細については、[アクセシビリティ ヘルプを開く] コマンドを実行して詳細を確認する",
+ "replHistoryTreeAriaLabel": "REPL エディターの履歴"
+ },
"vs/workbench/contrib/notebook/browser/notebookEditor": {
"fail.noEditor": "ノートブック エディターで、タイプ '{0}' のリソースを開くことができません。正しい拡張子がインストールされ、有効になっているかどうかを確認してください。",
- "notebookOpenInTextEditor": "テキスト エディターで開く"
+ "fail.noEditor.extensionMissing": "ノートブック エディターで、タイプ '{0}' のリソースを開くことができません。正しい拡張子がインストールされ、有効になっているかどうかを確認してください。",
+ "notebookOpenAsText": "テキストとして開く",
+ "notebookOpenEnableMissingViewType": "'{0}' の拡張機能を有効にする",
+ "notebookOpenInTextEditor": "テキスト エディターで開く",
+ "notebookOpenInstallMissingViewType": "'{0}' の拡張機能をインストール",
+ "notebookTooLargeForHeapErrorWithSize": "ノートブックは非常に大きいため、ノートブック エディターに表示されません ({0})。",
+ "notebookTooLargeForHeapErrorWithoutSize": "ノートブックは非常に大きいため、ノートブック エディターに表示されません。"
},
"vs/workbench/contrib/notebook/browser/notebookEditorWidget": {
"focusedCellBackground": "セルがフォーカスされているときの、セルの背景色です。",
@@ -7195,22 +12172,52 @@
"notebook.outputContainerBorderColor": "ノートブックの出力コンテナーの境界線の色。",
"notebook.selectedCellBorder": "セルが選択されているがフォーカスされていないときの、セルの上下境界線の色です。",
"notebook.symbolHighlightBackground": "強調表示されたセルの背景色",
+ "notebookEditorOverviewRuler.runningCellForeground": "ノートブック エディターの概要ルーラーの実行中のセル装飾の色。",
"notebookScrollbarSliderActiveBackground": "クリックしたときのノートブック スクロール バー スライダーの背景色。",
"notebookScrollbarSliderBackground": "ノートブックのスクロールバー スライダーの背景色。",
"notebookScrollbarSliderHoverBackground": "ホバーリング時のノートブックのスクロールバー スライダーの背景色。",
"notebookStatusErrorIcon.foreground": "ノートブック セルのセル ステータス バーに表示されるエラー アイコンの色。",
"notebookStatusRunningIcon.foreground": "ノートブック セルのセル ステータス バーに表示される実行中アイコンの色。",
"notebookStatusSuccessIcon.foreground": "ノートブック セルのセル ステータス バーに表示されるエラー アイコンの色。",
- "notebookTreeAriaLabel": "ノートブック",
"selectedCellBackground": "セルが選択されているときの、セルの背景色。"
},
- "vs/workbench/contrib/notebook/browser/notebookExecutionServiceImpl": {
- "notebookRunTrust": "ノートブック セルを実行すると、このワークスペースからコードが実行されます。"
+ "vs/workbench/contrib/notebook/browser/notebookExtensionPoint": {
+ "Notebook id": "ID",
+ "Notebook mimetypes": "Mimetypes",
+ "Notebook name": "名前",
+ "Notebook renderer name": "名前",
+ "contributes.notebook.provider": "ノートブック ドキュメント プロバイダーを提供します。",
+ "contributes.notebook.provider.displayName": "ノートブックに関して人が認識できる名前。",
+ "contributes.notebook.provider.selector": "ノートブックの対象となる glob のセット。",
+ "contributes.notebook.provider.selector.filenamePattern": "ノートブックが有効になっている glob。",
+ "contributes.notebook.provider.viewType": "ノートブックの種類。",
+ "contributes.notebook.renderer": "ノートブック出力レンダラー プロバイダーを提供します。",
+ "contributes.notebook.renderer.displayName": "ノートブック出力レンダラーに関して人が認識できる名前。",
+ "contributes.notebook.renderer.entrypoint": "拡張機能をレンダリングするために Web ビューに読み込むファイル。",
+ "contributes.notebook.renderer.entrypoint.extends": "このレンダラーを展開する既存のレンダラー。",
+ "contributes.notebook.renderer.hardDependencies": "レンダラーが必要とするカーネル依存関係の一覧。'NotebookKernel.preloads' にいずれかの依存関係が存在する場合は、レンダラーを使用できます。",
+ "contributes.notebook.renderer.optionalDependencies": "レンダラーが使用できるソフト カーネル依存関係の一覧。`NotebookKernel.preloads` にいずれかの依存関係が存在する場合、カーネルと対話しないレンダラーよりもこのレンダラーが優先されます。",
+ "contributes.notebook.renderer.requiresMessaging": "レンダラーが 'createRendererMessaging' 経由で拡張機能ホストと通信する必要があるかどうか、必要な場合どのように通信するかを定義します。より強力なメッセージング要件を持つレンダラーは、すべての環境で機能するとは限りません。",
+ "contributes.notebook.renderer.requiresMessaging.always": "メッセージングが必須です。このレンダラーは、拡張機能ホストで実行できる拡張機能の一部である場合にのみ使用されます。",
+ "contributes.notebook.renderer.requiresMessaging.never": "レンダラーにはメッセージングが必須ではありません。",
+ "contributes.notebook.renderer.requiresMessaging.optional": "メッセージングを利用できるとレンダラーが向上しますが、必須ではありません。",
+ "contributes.notebook.renderer.viewType": "ノートブック出力レンダラーを表す一意の識別子です。",
+ "contributes.notebook.selector": "ノートブックの対象となる glob のセット。",
+ "contributes.notebook.selector.provider.excludeFileNamePattern": "ノートブックが無効になっている glob。",
+ "contributes.preload.entrypoint": "Web ビューに読み込まれたファイルへのパス。",
+ "contributes.preload.localResourceRoots": "Web ビューで許可する必要がある追加リソースへのパス。",
+ "contributes.preload.provider": "ノートブックのプリロードを提供します。",
+ "contributes.preload.provider.viewType": "ノートブックの種類。",
+ "contributes.priority": "ユーザーがファイルを開いたときにカスタム エディターを自動的に有効にするかどうかを制御します。これは、'workbench.editorAssociations' 設定を使用してユーザーによって上書きされる可能性があります。",
+ "contributes.priority.default": "ユーザーがリソースを開いたときに、そのリソースに対して他の既定のカスタム エディターが登録されていない場合は、このエディターが自動的に使用されます。",
+ "contributes.priority.option": "ユーザーがリソースを開いたときにこのエディターが自動的に使用されることはありませんが、ユーザーは [再び開く] コマンドを使用してこのエディターに切り替えることができます。",
+ "notebookRenderer": "Notebook レンダラー",
+ "notebooks": "Notebooks"
},
"vs/workbench/contrib/notebook/browser/notebookIcons": {
"clearIcon": "ノートブック エディターでセル出力をクリアするためのアイコン。",
"collapsedIcon": "ノートブック エディターで折りたたまれたセクションに注釈を付けるためのアイコン。",
- "configureKernel": "ノートブック エディターのカーネル構成ウィジェットの構成アイコン。",
+ "copyIcon": "コンテンツをクリップボードにコピーするためのアイコン",
"deleteCellIcon": "ノートブック エディターでセルを削除するためのアイコン。",
"editIcon": "ノートブック エディターでセルを編集するためのアイコン。",
"errorStateIcon": "ノートブック エディターでエラー状態を示すためのアイコン。",
@@ -7223,26 +12230,50 @@
"mimetypeIcon": "ノートブックのエディターにおける MIME の種類のアイコン。",
"moveDownIcon": "ノートブック エディターでセルを下に移動するためのアイコン。",
"moveUpIcon": "ノートブック エディターでセルを上に移動するためのアイコン。",
+ "nextChangeIcon": "差分エディター内の次の変更アクションのアイコン。",
"openAsTextIcon": "テキスト エディターでノートブックを開くためのアイコン。",
"pendingStateIcon": "ノートブック エディターで保留状態を示すためのアイコン。",
+ "previousChangeIcon": "差分エディター内の前の変更アクションのアイコン。",
"renderOutputIcon": "差分エディターで出力をレンダリングするアイコン。",
"revertIcon": "ノートブック エディターで元に戻すためのアイコン。",
+ "saveIcon": "コンテンツをディスクに保存するアイコン",
"selectKernelIcon": "ノートブック エディターでカーネルを選択するための構成アイコン。",
"splitCellIcon": "ノートブック エディターでセルを分割するためのアイコン。",
"stopEditIcon": "ノートブック エディターでセルの編集を停止するためのアイコン。",
"stopIcon": "ノートブック エディターで実行を停止するためのアイコン。",
"successStateIcon": "ノートブック エディターで成功の状態を示すためのアイコン。",
- "unfoldIcon": "ノートブック エディターでセルを展開するためのアイコン。"
+ "toggleWhitespace": "差分エディター内で空白文字の切り替えアクションのアイコン。",
+ "variablesViewIcon": "変数ビューのアイコンを表示します。"
+ },
+ "vs/workbench/contrib/notebook/browser/outputEditor/notebookOutputEditor": {
+ "empty": "セルに出力がありません",
+ "noRenderer.2": "出力用のレンダラーが見つかりませんでした。次の mimetype があります: {0}。",
+ "notebookOutputEditor": "ノートブック出力エディター"
+ },
+ "vs/workbench/contrib/notebook/browser/outputEditor/notebookOutputEditorInput": {
+ "notebookOutputEditorInput": "ノートブック出力プレビュー"
+ },
+ "vs/workbench/contrib/notebook/browser/services/notebookExecutionServiceImpl": {
+ "notebookRunTrust": "ノートブック セルを実行すると、このワークスペースからコードが実行されます。"
+ },
+ "vs/workbench/contrib/notebook/browser/services/notebookKernelHistoryServiceImpl": {
+ "workbench.notebook.clearNotebookKernelsMRUCache": "ノートブック カーネル MRU キャッシュのクリア"
},
"vs/workbench/contrib/notebook/browser/services/notebookKeymapServiceImpl": {
"disableOtherKeymapsConfirmation": "キーバインド間の競合を回避するために、他のキーマップ ({0}) を無効にしますか?",
"no": "いいえ",
"yes": "はい"
},
+ "vs/workbench/contrib/notebook/browser/services/notebookLoggingServiceImpl": {
+ "renderChannelName": "ノートブック"
+ },
+ "vs/workbench/contrib/notebook/browser/services/notebookServiceImpl": {
+ "notebookOpenInstallMissingViewType": "'{0}' の拡張機能をインストール"
+ },
"vs/workbench/contrib/notebook/browser/view/cellParts/cellEditorOptions": {
"notebook.cell.toggleLineNumbers.title": "セル行番号を表示する",
"notebook.lineNumbers": "セル エディターでの行番号の表示を制御します。",
- "notebook.showLineNumbers": "ノートブック行番号の表示",
+ "notebook.showLineNumbers": "Notebook 行番号の表示",
"notebook.toggleLineNumbers": "ノートブック行番号の切り替え"
},
"vs/workbench/contrib/notebook/browser/view/cellParts/cellOutput": {
@@ -7257,11 +12288,11 @@
},
"vs/workbench/contrib/notebook/browser/view/cellParts/codeCell": {
"cellExpandInputButtonLabel": "セルの入力を展開する ({0})",
- "cellExpandInputButtonLabelWithDoubleClick": "ダブルクリックしてセル入力を展開する ({0})"
+ "cellExpandInputButtonLabelWithDoubleClick": "ダブルクリックしてセルの入力 ({0}) を展開する"
},
"vs/workbench/contrib/notebook/browser/view/cellParts/codeCellExecutionIcon": {
"notebook.cell.status.executing": "実行中",
- "notebook.cell.status.failed": "失敗",
+ "notebook.cell.status.failure": "失敗",
"notebook.cell.status.pending": "保留中",
"notebook.cell.status.success": "成功"
},
@@ -7270,51 +12301,81 @@
},
"vs/workbench/contrib/notebook/browser/view/cellParts/collapsedCellOutput": {
"cellExpandOutputButtonLabel": "セルの出力を展開する (${0})",
- "cellExpandOutputButtonLabelWithDoubleClick": "セル出力 ({0}) をダブルクリックして展開します",
+ "cellExpandOutputButtonLabelWithDoubleClick": "ダブルクリックしてセルの出力 ({0}) を展開する",
"cellOutputsCollapsedMsg": "出力が折りたたまれています"
},
"vs/workbench/contrib/notebook/browser/view/cellParts/foldedCellHint": {
"hiddenCellsLabel": "1 セルが非表示になっています...",
"hiddenCellsLabelPlural": "{0} セルが非表示になっています..."
},
- "vs/workbench/contrib/notebook/browser/view/cellParts/markdownCell": {
+ "vs/workbench/contrib/notebook/browser/view/cellParts/markupCell": {
"cellExpandInputButtonLabel": "セルの入力を展開する ({0})",
- "cellExpandInputButtonLabelWithDoubleClick": "ダブルクリックしてセル入力を展開する ({0})"
+ "cellExpandInputButtonLabelWithDoubleClick": "ダブルクリックしてセルの入力 ({0}) を展開する"
},
"vs/workbench/contrib/notebook/browser/view/renderers/backLayerWebView": {
"notebook.emptyMarkdownPlaceholder": "Markdown セルが空です。ダブルクリックするか、Enter キーを押して、編集してください。",
- "notebook.error.rendererNotFound": "'$0' a にレンダラーが見つかりませんでした"
+ "notebook.error.rendererFallbacksExhausted": "'$0' のコンテンツをレンダリングできませんでした",
+ "notebook.error.rendererNotFound": "'$0' のレンダラーが見つかりません",
+ "webview title": "ノートブック Web ビューのコンテンツ"
},
"vs/workbench/contrib/notebook/browser/view/renderers/cellRenderer": {
"cellExecutionOrderCountLabel": "実行順序"
},
- "vs/workbench/contrib/notebook/browser/viewParts/notebookKernelActionViewItem": {
- "select": "カーネルの選択"
+ "vs/workbench/contrib/notebook/browser/viewModel/notebookOutlineEntryFactory": {
+ "empty": "空のセル"
+ },
+ "vs/workbench/contrib/notebook/browser/viewParts/notebookKernelQuickPickStrategy": {
+ "current1": "現在の選択",
+ "current2": "{0} - 現在の選択",
+ "installSuggestedKernel": "拡張機能の候補をインストールまたは有効にする",
+ "kernels.detecting": "カーネルを検出する",
+ "kernels.selectedKernelAndKernelDetectionRunning": "選択したカーネル: {0} (カーネル検出タスク実行中)",
+ "learnMoreTooltip": "詳細情報",
+ "prompt.placeholder.change": "'{0}' のカーネルを変更する",
+ "prompt.placeholder.select": "'{0}' に対するカーネルの選択",
+ "searchForKernels": "マーケットプレースでカーネル拡張機能を参照する",
+ "select": "カーネルの選択",
+ "selectAnotherKernel": "別のカーネルを選択",
+ "selectAnotherKernel.more": "別のカーネルを選択...",
+ "selectKernel.placeholder": "入力してカーネル ソースを選択します",
+ "selectKernelFromExtension": "{0} からカーネルを選択"
+ },
+ "vs/workbench/contrib/notebook/browser/viewParts/notebookKernelView": {
+ "notebookActions.selectKernel": "ノートブックのカーネルを選択する",
+ "notebookActions.selectKernel.args": "ノートブックのカーネル引数"
+ },
+ "vs/workbench/contrib/notebook/browser/viewParts/notebookViewZones": {
+ "workbench.notebook.developer.addViewZones": "ノートブックのビュー ゾーンの切り替え"
},
- "vs/workbench/contrib/notebook/common/notebookEditorModel": {
- "notebook.staleSaveError": "The contents of the file has changed on disk. Would you like to open the updated version or overwrite the file with your changes?",
- "notebook.staleSaveError.overwrite.": "上書き",
- "notebook.staleSaveError.revert": "元に戻す"
+ "vs/workbench/contrib/notebook/common/notebookEditorInput": {
+ "vetoAutoExtHostRestart": "'{0}' 用に提供された拡張機能のノートブックがまだ開いているため、それ以外の場合は閉じます。",
+ "vetoExtHostRestart": "'{0}' 用に指定された拡張機能のノートブックを保存できませんでした。"
+ },
+ "vs/workbench/contrib/offline/browser/offline.contribution": {
+ "offline": "ネットワークがオフラインのようです。一部の機能が利用できない可能性があります。",
+ "statusBarOfflineBackground": "ワークベンチがオフラインである場合のステータス バーの背景色。ステータス バーはウィンドウの下部に表示されます。",
+ "statusBarOfflineBorder": "ワークベンチがオフラインである場合にサイドバーとエディターを隔てるワークスペースのステータス バーの境界線の色。ステータス バーはウィンドウの下部に表示されます。",
+ "statusBarOfflineForeground": "ワークベンチがオフラインである場合のステータス バーの前景色。ステータス バーはウィンドウの下部に表示されます。"
},
"vs/workbench/contrib/outline/browser/outline.contribution": {
"filteredTypes.array": "有効にすると、アウトラインに `配列` 記号が表示されます。",
- "filteredTypes.boolean": "有効にすると、アウトラインに 'ブール型' 記号が表示されます。",
+ "filteredTypes.boolean": "有効にすると、アウトラインに `ブール型` 記号が表示されます。",
"filteredTypes.class": "有効にすると、アウトラインに `クラス` 記号が表示されます。",
"filteredTypes.constant": "有効にすると、アウトラインに `定数` 記号が表示されます。",
"filteredTypes.constructor": "有効にすると、アウトラインに `コンストラクター` 記号が表示されます。",
- "filteredTypes.enum": "有効にすると、アウトラインに '列挙型' 記号が表示されます。",
+ "filteredTypes.enum": "有効にすると、アウトラインに `列挙型` 記号が表示されます。",
"filteredTypes.enumMember": "有効にすると、アウトラインに `enumMember` 記号が表示されます。",
- "filteredTypes.event": "有効にすると、アウトラインに 'イベント' 記号が表示されます。",
+ "filteredTypes.event": "有効にすると、アウトラインに `イベント` 記号が表示されます。",
"filteredTypes.field": "有効にすると、アウトラインに `フィールド` 記号が表示されます。",
"filteredTypes.file": "有効にすると、アウトラインに `ファイル` 記号が表示されます。",
"filteredTypes.function": "有効にすると、アウトラインに `関数` 記号が表示されます。",
"filteredTypes.interface": "有効にすると、アウトラインに `インターフェイス` 記号が表示されます。",
- "filteredTypes.key": "有効にすると、アウトラインに 'キー' 記号が表示されます。",
- "filteredTypes.method": "有効にすると、アウトラインに 'メソッド' 記号が表示されます。",
+ "filteredTypes.key": "有効にすると、アウトラインに `キー` 記号が表示されます。",
+ "filteredTypes.method": "有効にすると、アウトラインに `メソッド` 記号が表示されます。",
"filteredTypes.module": "有効にすると、アウトラインに `モジュール` 記号が表示されます。",
"filteredTypes.namespace": "有効にすると、アウトラインに `名前空間` 記号が表示されます。",
- "filteredTypes.null": "有効にすると、アウトラインに 'null' -記号が表示されます。",
- "filteredTypes.number": "有効にすると、アウトラインに '数値' 記号が表示されます。",
+ "filteredTypes.null": "有効にすると、アウトラインに `null` 記号が表示されます。",
+ "filteredTypes.number": "有効にすると、アウトラインに `数値` 記号が表示されます。",
"filteredTypes.object": "有効にすると、アウトラインに `オブジェクト` 記号が表示されます。",
"filteredTypes.operator": "有効にすると、アウトラインに `演算子` 記号が表示されます。",
"filteredTypes.package": "有効にすると、アウトラインに `パッケージ` 記号が表示されます。",
@@ -7324,75 +12385,96 @@
"filteredTypes.typeParameter": "有効にすると、アウトラインに `typeParameter` 記号が表示されます。",
"filteredTypes.variable": "有効にすると、アウトラインに `変数` 記号が表示されます。",
"name": "アウトライン",
- "outline.problem.colors": "エラーと警告に色を使用します。",
- "outline.problems.badges": "エラーと警告にバッジを使用します。",
+ "outline.initialState": "アウトライン項目を折りたたむか展開するかを制御します。",
+ "outline.initialState.collapsed": "すべての項目を折りたたむ。",
+ "outline.initialState.expanded": "すべての項目を展開します。",
+ "outline.problem.colors": "アウトライン要素のエラーと警告には色を使用します。オフの場合、{0} に上書きされます。",
+ "outline.problems.badges": "アウトライン要素のエラーと警告にはバッジを使用します。オフの場合、{0} に上書きされます。",
"outline.showIcons": "アイコン付きでアウトライン要素を表示します。",
- "outline.showProblem": "アウトライン要素にエラーと警告を表示します。",
+ "outline.showProblem": "アウトライン要素にエラーと警告を表示します。オフの場合、{0} に上書きされます。",
"outlineConfigurationTitle": "アウトライン",
"outlineViewIcon": "アウトライン ビューのアイコンを表示します。"
},
- "vs/workbench/contrib/outline/browser/outlinePane": {
+ "vs/workbench/contrib/outline/browser/outlineActions": {
"collapse": "すべて折りたたんで表示します。",
+ "expand": "すべて展開",
"filterOnType": "種類でフィルター",
"followCur": "カーソルに追従",
- "loading": "'{0}' のドキュメント シンボルを読み込んでいます...",
- "no-editor": "アクティブなエディターはアウトライン情報を提供できません。",
- "no-symbols": "ドキュメント '{0}' にシンボルが見つかりません",
"sortByKind": "並べ替えの基準: カテゴリ",
"sortByName": "並べ替え: 名前",
"sortByPosition": "並べ替え: 位置"
},
- "vs/workbench/contrib/output/browser/logViewer": {
- "logViewerAriaLabel": "ログ ビューアー"
+ "vs/workbench/contrib/outline/browser/outlinePane": {
+ "loading": "'{0}' のドキュメント シンボルを読み込んでいます...",
+ "no-editor": "アクティブなエディターはアウトライン情報を提供できません。",
+ "no-symbols": "ドキュメント '{0}' にシンボルが見つかりません"
},
"vs/workbench/contrib/output/browser/output.contribution": {
+ "addCompoundLog": "複合ログの追加...",
+ "clearFiltersText": "フィルター テキストのクリア",
"clearOutput.label": "出力のクリア",
- "logViewer": "ログ ビューアー",
+ "exportLogs": "ログのエクスポート...",
+ "extensionLogs": "拡張機能ログ",
+ "importLog": "ログのインポート...",
+ "importLogFile": "ログ ファイルのインポート",
+ "logFile": "開くログ ファイルの ID (例: `\"window\"`)。現在これを取得する最善の方法は、`workbench.action.output.show.` コマンドを確認して ID を取得することです",
+ "logFiles": "ログ ファイル",
+ "logLevel.label": "ログ レベルの設定...",
+ "logLevelDefault.label": "既定値として設定",
"miToggleOutput": "出力(&&O)",
- "openActiveLogOutputFile": "ログ出力ファイルを開く",
- "openLogFile": "ログ ファイルを開く...",
+ "nocustumoutput": "削除するカスタム出力がありません。",
+ "openActiveOutputFile": "エディターで出力を開く",
+ "openActiveOutputFileInNewWindow": "新しいウィンドウで出力を開く",
+ "openLogFile": "ログを開く...",
"output": "出力",
"output.smartScroll.enabled": "出力ビューでスマート スクロール機能を有効/無効にします。スマート スクロールを使用する場合、出力ビューをクリックすると自動的にスクロールがロックされ、最後の行をクリックするとロックが解除されます。",
- "outputCleared": "出力はクリアされました",
"outputScrollOff": "自動スクロールをオフにする",
"outputScrollOn": "自動スクロールをオンにする",
"outputViewIcon": "出力ビューのアイコンを表示します。",
+ "removeLog": "出力の削除...",
+ "saveActiveOutputAs": "名前を付けて出力を保存...",
+ "selectOutput": "出力チャネルの選択",
"selectlog": "ログを選択",
- "selectlogFile": "ログ ファイルを選択",
+ "selectlogFile": "ログ ファイルの選択",
"showLogs": "ログの表示...",
- "switchToOutput.label": "出力に切り替え",
- "toggleAutoScroll": "自動スクロールの切り替え"
+ "showOutputChannels": "出力チャネルの表示...",
+ "switchBetweenOutputs.label": "出力の切り替え",
+ "switchToOutput.label": "出力の切り替え",
+ "toggleAutoScroll": "自動スクロールの切り替え",
+ "toggleTraceDescription": "出力 {0} メッセージの表示/非表示を切り替え",
+ "userLogs": "ユーザー ログ"
+ },
+ "vs/workbench/contrib/output/browser/outputServices": {
+ "saveLog.dialogTitle": "名前を付けて出力を保存"
},
"vs/workbench/contrib/output/browser/outputView": {
"channel": "'{0}' の出力チャネル",
- "logChannel": "ログ ({0})",
"output": "出力",
"output model title": "{0} - 出力",
- "outputChannels": "Output Channels",
- "outputViewAriaLabel": "出力パネル",
- "outputViewWithInputAriaLabel": "{0}、出力パネル"
+ "outputView.filter.placeholder": "フィルター",
+ "outputViewAriaLabel": "出力パネル"
},
"vs/workbench/contrib/performance/browser/performance.contribution": {
+ "cycles": "サービス サイクルの印刷",
+ "emitter": "エミッタ プロファイルの印刷",
+ "insta.trace": "サービス トレースの印刷",
"show.label": "スタートアップ パフォーマンス"
},
"vs/workbench/contrib/performance/browser/perfviewEditor": {
"name": "スタートアップ パフォーマンス"
},
- "vs/workbench/contrib/performance/electron-sandbox/startupProfiler": {
+ "vs/workbench/contrib/performance/electron-browser/performance.contribution": {
+ "experimental.rendererProfiling": "有効にすると、低速レンダラーが自動的にプロファイルされます。"
+ },
+ "vs/workbench/contrib/performance/electron-browser/startupProfiler": {
"prof.detail": "問題点を作成し、次のファイルを手動で添付してください:\r\n{0}",
"prof.detail.restart": "'{0}' を引き続き使用するには、最後の再起動が必要です。 改めてあなたの貢献に感謝します。",
"prof.message": "プロファイルが正常に作成されました。",
- "prof.restart": "再起動(&&R)",
+ "prof.restart": "再起動",
"prof.restart.button": "再起動(&&R)",
"prof.restartAndFileIssue": "案件を作成し再起動する(&&C)",
"prof.thanks": "ご協力いただき、ありがとうございます。"
},
- "vs/workbench/contrib/preferences/browser/keybindingWidgets": {
- "defineKeybinding.chordsTo": "の次に",
- "defineKeybinding.existing": "{0} つの既存のコマンドがこのキーバインドを使用しています",
- "defineKeybinding.initial": "任意のキーの組み合わせを押し、ENTER キーを押します。",
- "defineKeybinding.oneExists": "1 つの既存のコマンドがこのキーバインドを使用しています"
- },
"vs/workbench/contrib/preferences/browser/keybindingsEditor": {
"SearchKeybindings.FullTextSearchPlaceholder": "入力してキーバインド内を検索",
"SearchKeybindings.KeybindingsSearchPlaceholder": "キーを記録中。Esc キーを押して終了",
@@ -7409,10 +12491,13 @@
"editKeybindingLabelWithKey": "キー バインド {0} の変更",
"editWhen": "When 式を変更",
"error": "キー バインドの編集中にエラー '{0}' が発生しました。'keybindings.json' ファイルを開いてご確認ください。",
+ "extension label": "拡張機能 ({0})",
+ "foundResults": "{0} 件の結果",
"keybinding": "キー バインド",
"keybindingsLabel": "キー バインド",
- "noKeybinding": "キー バインドが割り当てられていません。",
- "noWhen": "タイミングのコンテキストがありません。",
+ "keyboard shortcuts aria label": "Space キーまたは Enter キーを使用してキー バインドを変更します。",
+ "noKeybinding": "キー バインドが割り当てられていません",
+ "noWhen": "タイミングのコンテキストがありません",
"recordKeysLabel": "キーを記録",
"recording": "キーを記録しています",
"removeLabel": "キー バインドの削除",
@@ -7423,25 +12508,44 @@
"sortByPrecedeneLabel": "優先順位で並べ替え (降順)",
"source": "ソース",
"title": "{0} ({1})",
- "when": "いつ",
- "whenContextInputAriaLabel": "when コンテキストを入力してください。確定するには Enter キーを、キャンセルするには Escape キーを押してください。"
+ "when": "いつ"
},
"vs/workbench/contrib/preferences/browser/keybindingsEditorContribution": {
"defineKeybinding.kbLayoutErrorMessage": "現在のキーボード レイアウトでは、このキーの組み合わせを生成することはできません。",
"defineKeybinding.kbLayoutLocalAndUSMessage": "現在のキーボード レイアウトで示すと **{0}** です。(US 標準: **{1}**)",
- "defineKeybinding.kbLayoutLocalMessage": "現在のキーボード レイアウトで示すと **{0}** です。",
- "defineKeybinding.start": "キー バインドの定義"
+ "defineKeybinding.kbLayoutLocalMessage": "現在のキーボード レイアウトで示すと **{0}** です。"
},
- "vs/workbench/contrib/preferences/browser/preferences.contribution": {
- "Keyboard Shortcuts": "キーボード ショートカット",
- "clear": "検索結果のクリア",
- "clearHistory": "キーボード ショートカットの検索履歴をクリア",
- "filterUntrusted": "信頼されていないワークスペース設定を表示する",
- "keybindingsEditor": "キー バインド エディター",
- "miOpenOnlineSettings": "オンライン サービスの設定(&&O)",
- "miOpenSettings": "設定(&&S)",
+ "vs/workbench/contrib/preferences/browser/keybindingWidgets": {
+ "defineKeybinding.chordsTo": "の次に",
+ "defineKeybinding.existing": "{0} つの既存のコマンドがこのキーバインドを使用しています",
+ "defineKeybinding.initial": "任意のキーの組み合わせを押し、ENTER キーを押します。",
+ "defineKeybinding.oneExists": "1 つの既存のコマンドがこのキーバインドを使用しています"
+ },
+ "vs/workbench/contrib/preferences/browser/keyboardLayoutPicker": {
+ "autoDetect": "自動検出",
+ "configureKeyboardLayout": "キーボード レイアウトの構成",
+ "displayLanguage": "ブラウザー環境の VS Code で使用するキーボード レイアウトを定義します。",
+ "doc": "VS Code を開き、コマンド パレットから \"開発者: キー マッピングの検査 (JSON)\" を実行します。",
+ "fail.createSettings": "'{0}' ({1}) を作成できません。",
+ "keyboard.chooseLayout": "キーボード レイアウトの変更",
+ "keyboardLayout": "レイアウト: {0}",
+ "layoutPicks": "キーボード レイアウト ({0})",
+ "pickKeyboardLayout": "キーボード レイアウトの選択",
+ "status.workbench.keyboardLayout": "キーボード レイアウト"
+ },
+ "vs/workbench/contrib/preferences/browser/preferences.contribution": {
+ "clear": "検索結果のクリア",
+ "clearHistory": "キーボード ショートカットの検索履歴をクリア",
+ "defineKeybinding.start": "キー バインドの定義",
+ "filterUntrusted": "信頼されていないワークスペース設定を表示する",
+ "keybindingsEditor": "キー バインド エディター",
+ "keyboardShortcuts": "キーボード ショートカット",
+ "miOpenOnlineSettings": "オンライン サービスの設定(&&O)",
+ "miOpenSettings": "設定(&&S)",
+ "miOpenTelemetrySettings": "テレメトリの設定(&&T)",
"miPreferences": "ユーザー設定(&&P)",
- "openCurrentProfileSettingsJson": "現在のプロファイル設定を開く (JSON)",
+ "openAccessibilitySettings": "アクセシビリティ設定を開く",
+ "openApplicationSettingsJson": "アプリケーション設定を開く (JSON)",
"openDefaultKeybindingsFile": "既定のキーボード ショートカットを開く (JSON)",
"openFolderSettings": "フォルダーの設定を開く",
"openFolderSettingsFile": "フォルダーの設定を開く (JSON)",
@@ -7457,6 +12561,7 @@
"openWorkspaceSettings": "ワークスペース設定を開く",
"openWorkspaceSettingsFile": "ワークスペース設定を開く (JSON)",
"preferences": "基本設定",
+ "preferencesEditor": "ユーザー設定エディター",
"settings": "設定",
"settings.clearResults": "検索結果のクリア設定",
"settings.focusFile": "設定ファイルにフォーカスする",
@@ -7466,42 +12571,51 @@
"settings.focusSettingsList": "リストのフォーカス設定",
"settings.focusSettingsTOC": "設定目次にフォーカス",
"settings.showContextMenu": "設定のコンテキスト メニューの表示",
+ "settings.toggleAiSearch": "AI 設定の検索を切り替える",
"settingsEditor2": "設定エディター 2",
- "showDefaultKeybindings": "既定のキーバインドを表示",
+ "showDefaultKeybindings": "システム キー バインドの表示",
"showExtensionKeybindings": "拡張機能のキー バインドを表示する",
- "showTelemtrySettings": "テレメトリの設定",
- "showUserKeybindings": "ユーザーのキーバインドを表示"
+ "showUserKeybindings": "ユーザーのキーバインドを表示",
+ "workbench.action.openSettingsJson.description": "現在のユーザー プロファイル設定を含む JSON ファイルを開きます"
},
"vs/workbench/contrib/preferences/browser/preferencesActions": {
"configureLanguageBasedSettings": "言語固有の設定を構成します...",
"languageDescriptionConfigured": "({0})",
"pickLanguage": "言語の選択"
},
+ "vs/workbench/contrib/preferences/browser/preferencesEditor": {
+ "FullTextSearchPlaceholder": "{0} を検索してください",
+ "preferencesTabSwitcherBarAriaLabel": "[ユーザー設定] タブ スイッチャー"
+ },
"vs/workbench/contrib/preferences/browser/preferencesIcons": {
"keybindingsAddIcon": "キー バインド UI 内の追加アクションのアイコン。",
"keybindingsEditIcon": "キー バインド UI 内の編集アクションのアイコン。",
"keybindingsRecordKeysIcon": "キー バインド UI 内の 'キーを記録' アクションのアイコン。",
"keybindingsSortIcon": "キー バインド UI 内の '優先順位で並べ替え' の切り替えのアイコン。",
+ "preferencesAiResults": "設定 UI に AI 結果を表示するアイコン。",
"preferencesClearInput": "設定およびキー バインド UI 内での入力のクリアのアイコン。",
"preferencesDiscardIcon": "設定 UI 内の破棄アクションのアイコン。",
"preferencesOpenSettings": "設定を開くコマンドのアイコン。",
- "settingsAddIcon": "設定 UI 内の追加アクションのアイコン。",
"settingsEditIcon": "設定 UI 内の編集アクションのアイコン。",
"settingsFilter": "設定 UI のフィルターを提案するボタンのアイコン。",
- "settingsGroupCollapsedIcon": "分割 JSON 設定エディター内の折りたたまれたセクションのアイコン。",
- "settingsGroupExpandedIcon": "分割 JSON 設定エディター内の展開されたセクションのアイコン。",
"settingsMoreActionIcon": "設定 UI 内の [その他のアクション] アクションのアイコン。",
"settingsRemoveIcon": "設定 UI 内の削除アクションのアイコン。",
"settingsScopeDropDownIcon": "分割 JSON 設定エディター内のフォルダー ドロップダウン ボタンのアイコン。"
},
"vs/workbench/contrib/preferences/browser/preferencesRenderers": {
+ "allProfileSettingWhileInNonDefaultProfileSetting": "この設定は、設定{0}を使用してすべてのプロファイルに適用されるように構成されているため、適用できません。代わりに既定のプロファイルの値が使用されます。",
"copyDefaultValue": "設定にコピー",
"defaultProfileSettingWhileNonDefaultActive": "既定以外のプロファイルがアクティブな間は、この設定を適用できません。既定のプロファイルがアクティブになった時点で適用されます。",
"editTtile": "編集",
"manage workspace trust": "ワークスペースの信頼を管理",
+ "mcp.renderer.openRemoteConfig": "リモート ユーザー MCP 構成を開く",
+ "mcp.renderer.openUserConfig": "ユーザー MCP 構成を開く",
+ "mcp.renderer.remoteConfigFound": "MCP サーバーは、リモート ユーザー設定で構成しないでください。代わりに専用の MCP 構成を使用してください。",
+ "mcp.renderer.userConfigFound": "MCP サーバーは、ユーザー設定で構成しないでください。代わりに専用の MCP 構成を使用してください。",
"replaceDefaultValue": "設定を置換",
"unknown configuration setting": "不明な構成設定",
- "unsupportedApplicationSetting": "この設定にはアプリケーション スコープがあり、ユーザー設定ファイルでのみ設定できます。",
+ "unsupportLanguageOverrideSetting": "言語オーバーライド設定として登録されていないため、この設定を適用できません。",
+ "unsupportedApplicationSetting": "この設定にはアプリケーション スコープがあり、既定のプロファイルからの設定ファイルでのみ設定できます。",
"unsupportedMachineSetting": "この設定は、ローカル ウィンドウのユーザー設定、またはリモート ウィンドウのリモート設定にのみ適用できます。",
"unsupportedPolicySetting": "この設定はシステム ポリシーで構成されているため、適用できません。",
"unsupportedProperty": "サポートされていないプロパティ",
@@ -7523,13 +12637,20 @@
"filterInput": "フィルターの設定",
"lastSyncedLabel": "最終同期: {0}",
"moreThanOneResult": "{0} 個の設定が見つかりました",
+ "moreThanOneResultWithAiAvailable": "{0} 個の設定が見つかりました。使用可能な結果がありません",
+ "noAiResults": "現時点では、利用できる AI の結果はありません。",
"noResults": "設定が見つかりません",
+ "noResultsWithAiAvailable": "設定が見つかりません。使用可能な結果がありません",
"oneResult": "1 個の設定が見つかりました",
+ "oneResultWithAiAvailable": "1 個の設定が見つかりました。使用可能な結果がありません",
"settings": "設定",
"settings require trust": "ワークスペースの信頼",
- "turnOnSyncButton": "設定の同期をオンにする"
+ "showAiResultsDisabled": "現時点では、AI の結果で利用できるものはありません...",
+ "showAiResultsEnabled": "AI が推奨する結果を表示する",
+ "turnOnSyncButton": "バックアップと同期の設定"
},
"vs/workbench/contrib/preferences/browser/settingsEditorSettingIndicators": {
+ "advancedLabel": "詳細",
"alsoConfiguredElsewhere": "他の場所でも変更済み",
"alsoConfiguredIn": "次でも変更されています",
"alsoModifiedInScopes": "設定は、次のスコープでも変更されています:",
@@ -7538,32 +12659,47 @@
"applicationSettingDescriptionAccessible": "プロファイルの切り替え時に保持される設定値",
"configuredElsewhere": "他の場所で変更済み",
"configuredIn": "変更されています",
- "defaultOverriddenDetails": "{0} によってオーバーライドされた既定の設定値",
+ "defaultOverriddenDetails": "`{0}` によってオーバーライドされた既定の設定値",
"defaultOverriddenDetailsAriaLabel": "{0} により既定値がオーバーライドされます",
"defaultOverriddenLabel": "既定値が変更済み",
"defaultOverriddenLanguagesList": "{0} の言語固有の既定値が存在します",
+ "experimentalLabel": "試験段階",
"extensionSyncIgnoredLabel": "同期されていません",
"hasDefaultOverridesForLanguages": "次の言語には既定のオーバーライドがあります:",
+ "manageWorkspaceTrust": "ワークスペースの信頼を管理",
"modifiedInScopeForLanguage": "{1} の {0} スコープ",
"modifiedInScopeForLanguageMidSentence": "{1} の {0} スコープ",
"modifiedInScopes": "この設定は、次のスコープで変更されています:",
+ "multipleDefaultOverriddenDetailsAriaLabel": "{0} は既定値をオーバーライドします",
+ "multipledefaultOverriddenDetails": "既定値が {0} によって設定されています",
+ "policyDescription": "この設定は組織によって管理されており、実績値は変更できません。",
+ "policyDescriptionAccessible": "組織のポリシーによって管理されます。設定値が適用されていません",
+ "policyFilterLink": "ポリシー設定を表示",
+ "policyLabelText": "organizationによって管理されています",
+ "previewLabel": "プレビュー",
"remote": "リモート",
"syncIgnoredAriaLabel": "同期中に設定が無視されました",
"syncIgnoredTitle": "この設定は同期中は無視されます",
+ "trustLabel": "この設定値は、信頼されたワークスペース内でのみ適用できます。",
"user": "ユーザー",
- "workspace": "ワークスペース"
+ "workspace": "ワークスペース",
+ "workspaceUntrustedAriaLabel": "ワークスペースが信頼されていません。設定値が適用されていません",
+ "workspaceUntrustedLabel": "ワークスペースの信頼が必要です"
},
"vs/workbench/contrib/preferences/browser/settingsLayout": {
+ "accessibility": "アクセシビリティ",
+ "accessibility.signals": "アクセシビリティ シグナル",
"appearance": "外観",
"application": "アプリケーション",
- "audioCues": "オーディオ キュー",
"breadcrumbs": "階層リンク",
+ "chat": "チャット",
"comments": "コメント",
"commonlyUsed": "よく使用するもの",
"cursor": "カーソル",
"debug": "デバッグ",
"diffEditor": "差分エディター",
"editorManagement": "エディターの管理",
+ "experimental": "試験段階",
"extensions": "拡張機能",
"features": "機能",
"fileExplorer": "エクスプローラー",
@@ -7571,10 +12707,14 @@
"find": "検索",
"font": "フォント",
"formatting": "書式設定",
+ "issueReporter": "問題報告者",
"keyboard": "キーボード",
+ "mergeEditor": "マージ エディター",
"minimap": "ミニマップ",
+ "multiDiffEditor": "マルチファイル差分エディター",
"newWindow": "新しいウィンドウ",
"notebook": "ノートブック",
+ "other": "その他",
"output": "出力",
"problems": "問題",
"proxy": "プロキシ",
@@ -7599,51 +12739,67 @@
"zenMode": "Zen Mode"
},
"vs/workbench/contrib/preferences/browser/settingsSearchMenu": {
+ "advancedSettingsSearch": "詳細",
+ "advancedSettingsSearchTooltip": "詳細設定を表示します",
+ "experimental": "試験段階",
+ "experimentalSettingsSearchTooltip": "試験段階の設定を表示します",
"extSettingsSearch": "拡張機能 ID...",
"extSettingsSearchTooltip": "拡張機能 ID フィルターの追加",
"featureSettingsSearch": "フィーチャー...",
"featureSettingsSearchTooltip": "機能フィルターを追加する",
+ "idSettingsSearch": "設定 ID...",
+ "idSettingsSearchTooltip": "設定 ID フィルターの追加",
"langSettingsSearch": "言語...",
"langSettingsSearchTooltip": "言語 ID フィルターの追加",
"modifiedSettingsSearch": "変更済み",
"modifiedSettingsSearchTooltip": "変更された設定フィルターの追加または削除",
"onlineSettingsSearch": "オンライン サービス",
"onlineSettingsSearchTooltip": "オンライン サービスの設定を表示",
- "policySettingsSearch": "ポリシー サービス",
- "policySettingsSearchTooltip": "ポリシー サービスの設定を表示",
+ "policySettingsSearch": "組織のポリシー",
+ "policySettingsSearchTooltip": "組織のポリシー設定を表示します",
+ "previewSettings": "プレビュー",
+ "previewSettingsSearchTooltip": "プレビュー設定を表示します",
+ "stableSettings": "安定",
+ "stableSettingsSearchTooltip": "安定した設定を表示します",
"tagSettingsSearch": "タグ...",
"tagSettingsSearchTooltip": "タグ フィルターを追加"
},
"vs/workbench/contrib/preferences/browser/settingsTree": {
+ "applyToAllProfiles": "設定をすべてのプロファイルに適用",
"copySettingAsJSONLabel": "JSON として設定をコピー",
+ "copySettingAsURLLabel": "URL として設定をコピー",
"copySettingIdLabel": "設定 ID をコピー",
+ "dismiss": "閉じる",
"editInSettingsJson": "settings.json で編集",
"editLanguageSettingLabel": "{0} の設定を編集する",
"extensions": "拡張機能",
- "manageWorkspaceTrust": "ワークスペースの信頼を管理",
"modified": "設定は現在のスコープで構成済みです。",
"newExtensionsButtonLabel": "一致する拡張機能を表示",
- "policyLabel": "この設定は組織によって管理されています。",
"resetSettingLabel": "設定をリセット",
"settings": "設定",
"settings.Default": "既定",
"settings.Modified": "変更済み。",
"settingsContextMenuTitle": "その他の操作... ",
+ "showExtension": "拡張機能を表示する",
"stopSyncingSetting": "この設定を同期する",
- "trustLabel": "この設定は、信頼されたワークスペース内でのみ適用できます",
- "validationError": "検証エラー。",
- "viewPolicySettings": "ポリシー設定を表示"
+ "validationError": "検証エラー。"
},
"vs/workbench/contrib/preferences/browser/settingsWidgets": {
"addItem": "項目の追加",
"addPattern": "パターンを追加",
"cancelButton": "キャンセル",
"editExcludeItem": "除外項目を編集",
+ "editIncludeItem": "含める項目の編集",
"editItem": "項目の編集",
+ "excludeIncludeSource": ".`{0}` によって設定された既定値",
"excludePatternHintLabel": "`{0}` に一致するファイルを除外",
"excludePatternInputPlaceholder": "除外パターン...",
"excludeSiblingHintLabel": "`{1}` に一致するファイルが存在するとき、`{0}` に一致するファイルを除外",
"excludeSiblingInputPlaceholder": "パターンが存在するとき...",
+ "includePatternHintLabel": "`{0}` に一致するファイルを含める",
+ "includePatternInputPlaceholder": "パターンを含める...",
+ "includeSiblingHintLabel": "`{0}` に一致するファイルが存在するとき、`{1}` に一致するファイルを含める",
+ "includeSiblingInputPlaceholder": "パターンが存在するとき...",
"itemInputPlaceholder": "項目",
"listSiblingHintLabel": "兄弟 '${1}' を持つ項目 '{0}' を一覧表示",
"listSiblingInputPlaceholder": "兄弟...",
@@ -7651,10 +12807,12 @@
"objectKeyHeader": "項目",
"objectKeyInputPlaceholder": "キー",
"objectPairHintLabel": "プロパティ '{0}' は '{1}' に設定されています。",
+ "objectPairHintLabelWithSource": "プロパティ `{0}` は `{2}` によって `{1}` に設定されています。",
"objectValueHeader": "値",
"objectValueInputPlaceholder": "値",
"okButton": "OK",
"removeExcludeItem": "除外項目を削除",
+ "removeIncludeItem": "含める項目の削除",
"removeItem": "項目の削除",
"resetItem": "項目のリセット"
},
@@ -7662,9 +12820,14 @@
"groupRowAriaLabel": "{0}、グループ",
"settingsTOC": "設定の目次"
},
+ "vs/workbench/contrib/preferences/common/preferences": {
+ "advancedIndicatorDescription": "詳細設定: この設定は詳細なシナリオや構成を対象としています。これは、動作内容を理解している場合のみ変更します。",
+ "experimentalIndicatorDescription": "試験的な設定: この設定は、開発中で不安定になる可能性のある新しい機能を制御します。変更または削除される可能性があります。",
+ "previewIndicatorDescription": "プレビュー設定: この設定は、まだ改良中の新しい機能を制御します。フィードバックをお待ちしております。"
+ },
"vs/workbench/contrib/preferences/common/preferencesContribution": {
"enableNaturalLanguageSettingsSearch": "設定で自然文検索モードを有効にするかどうかを制御します。自然文検索はMicrosoft オンライン サービスによって提供されます。",
- "settingsSearchTocBehavior": "検索中の設定エディターの目次の動作を制御します。",
+ "settingsSearchTocBehavior": "検索中の設定エディターの目次の動作を制御します。設定エディターでこの設定を変更すると、検索クエリが変更された後に設定が有効になります。",
"settingsSearchTocBehavior.filter": "目次をフィルターして、一致している設定を持つカテゴリだけを表示します。カテゴリをクリックするとそのカテゴリに結果が絞り込まれます。",
"settingsSearchTocBehavior.hide": "検索中の目次を非表示にします。",
"splitSettingsEditorLabel": "分割設定エディター"
@@ -7686,28 +12849,45 @@
"settingsDropdownForeground": "設定エディターのドロップダウンの前景。",
"settingsDropdownListBorder": "設定エディターのドロップダウン リストの境界線。これは、オプションを囲み、オプションと説明を分割します。",
"settingsHeaderBorder": "ヘッダー コンテナーの枠線の色。",
+ "settingsHeaderHoverForeground": "セクション ヘッダーまたはアクティブなタイトルの前景色。",
"settingsSashBorder": "設定エディターの分割ビュー サッシュの枠線の色。",
"textInputBoxBackground": "設定エディターのテキスト入力ボックスの背景。",
"textInputBoxBorder": "設定エディターのテキスト入力ボックスの境界線。",
"textInputBoxForeground": "設定エディターのテキスト入力ボックスの前景。"
},
- "vs/workbench/contrib/profiles/common/profilesActions": {
- "confiirmation message": "これにより、現在の設定が置換えられます。続行しますか?",
- "export profile": "設定をプロファイルとしてエクスポート...",
- "export profile dialog": "プロファイルの保存",
- "export success": "{0}: 正常にエクスポートされました。",
- "import profile": "プロファイルから設定をインポート...",
- "import profile dialog": "プロファイルのインポート",
- "import profile placeholder": "プロファイル URL を指定するか、インポートするプロファイル ファイルを選択します",
- "import profile quick pick title": "プロファイルから設定をインポートする",
- "import profile title": "プロファイルから設定をインポートする",
- "select from file": "プロファイル ファイルからインポートする",
- "select from url": "URL からインポート"
+ "vs/workbench/contrib/processExplorer/browser/processExplorer.contribution": {
+ "miOpenProcessExplorerer": "&&プロセス エクスプローラーを開く",
+ "openProcessExplorer": "プロセス エクスプローラーを開く",
+ "promptOpenWith.processExplorer.displayName": "プロセス エクスプローラー"
+ },
+ "vs/workbench/contrib/processExplorer/browser/processExplorer.web.contribution": {
+ "processExplorer": "プロセス エクスプローラー"
+ },
+ "vs/workbench/contrib/processExplorer/browser/processExplorerControl": {
+ "copy": "コピー",
+ "copyAll": "すべてコピー",
+ "debug": "デバッグ",
+ "forceKillProcess": "プロセスの強制中止",
+ "killProcess": "プロセスの中止",
+ "processCpu": "CPU (%)",
+ "processExplorer": "プロセス エクスプローラー",
+ "processMemory": "メモリ (MB)",
+ "processName": "プロセス名",
+ "processPid": "PID"
+ },
+ "vs/workbench/contrib/processExplorer/browser/processExplorerEditorInput": {
+ "processExplorerEditorLabelIcon": "プロセス エクスプローラー エディター ラベルのアイコン。",
+ "processExplorerInputName": "プロセス エクスプローラー"
+ },
+ "vs/workbench/contrib/processExplorer/electron-browser/processExplorer.contribution": {
+ "processExplorer": "プロセス エクスプローラー"
},
"vs/workbench/contrib/quickaccess/browser/commandsQuickAccess": {
"clearButtonLabel": "クリア(&&C)",
"clearCommandHistory": "コマンド履歴のクリア",
"commandWithCategory": "{0}: {1}",
+ "commandsQuickAccess.askInChat": "チャットで質問する: {0}",
+ "commandsQuickAccess.configureAskInChatSetting": "可視性の構成",
"configure keybinding": "キーバインドの構成",
"confirmClearDetail": "この操作は元に戻せません。",
"confirmClearMessage": "最近使用したコマンドの履歴をクリアしますか?",
@@ -7724,13 +12904,13 @@
"miGotoLine": "行/列に移動(&&L)...",
"miOpenView": "ビューを開く(&&O)...",
"miShowAllCommands": "すべてのコマンドの表示",
+ "more": "その他",
"viewQuickAccess": "ビューを開きます",
"viewQuickAccessPlaceholder": "開くビュー、出力チャンネル、または端末の名前を入力します。"
},
"vs/workbench/contrib/quickaccess/browser/viewQuickAccess": {
"channels": "出力",
"debugConsoles": "デバッグ コンソール",
- "logChannel": "ログ ({0})",
"noViewResults": "一致するビューがありません",
"openView": "ビューを開きます",
"panels": "パネル",
@@ -7746,19 +12926,13 @@
"relaunchSettingMessage": "再起動が必要な設定を変更しました。",
"relaunchSettingMessageWeb": "有効にするには再読み込みが必要な設定変更が行われました。",
"restart": "再起動(&&R)",
+ "restartExtensionHost.reason": "ワークスペース フォルダーを変更しています",
"restartWeb": "再読み込み(&&R)"
},
"vs/workbench/contrib/remote/browser/explorerViewItems": {
- "remote.explorer.switch": "リモートの切り替え",
- "remotes": "リモートの切り替え"
+ "switchRemote.label": "リモートの切り替え"
},
"vs/workbench/contrib/remote/browser/remote": {
- "RemoteHelpInformationExtPoint": "リモートのヘルプ情報への参加",
- "RemoteHelpInformationExtPoint.documentation": "プロジェクトのドキュメント ページの URL、またはその URL を返すコマンド",
- "RemoteHelpInformationExtPoint.feedback": "プロジェクトのフィードバック レポーターの URL、またはその URL を返すコマンド",
- "RemoteHelpInformationExtPoint.getStarted": "プロジェクトの「はじめに」ページの URL、またはその URL を返すコマンド",
- "RemoteHelpInformationExtPoint.issues": "プロジェクトの懸案事項リストの URL、またはその URL を返すコマンド",
- "cancel": "キャンセル",
"connectionLost": "接続が失われました",
"pickRemoteExtension": "開く URL を選択する",
"reconnectNow": "今すぐ再接続",
@@ -7767,25 +12941,39 @@
"reconnectionWaitMany": "{0} 秒後に再接続しようとしています...",
"reconnectionWaitOne": "{0} 秒後に再接続しようとしています...",
"reloadWindow": "ウィンドウの再読み込み",
+ "reloadWindow.dialog": "ウィンドウの再読み込み(&&R)",
"remote.explorer": "リモート エクスプローラー",
"remote.help": "ヘルプとフィードバック",
"remote.help.documentation": "ドキュメントを読む",
- "remote.help.feedback": "フィードバックの送信",
"remote.help.getStarted": "開始する",
"remote.help.issues": "問題の確認",
"remote.help.report": "問題を報告",
"remotehelp": "リモート ヘルプ"
},
+ "vs/workbench/contrib/remote/browser/remoteConnectionHealth": {
+ "allow": "許可(&&A)",
+ "learnMore": "詳細情報(&&L)",
+ "remember": "今後表示しない",
+ "unsupportedGlibcBannerLearnMore": "詳細情報",
+ "unsupportedGlibcWarning": "{0} でサポートされていない OS バージョンに接続しようとしています。",
+ "unsupportedGlibcWarning.banner": "{0} でサポートされていない OS バージョンに接続しています。"
+ },
"vs/workbench/contrib/remote/browser/remoteExplorer": {
"1forwardedPort": "1 つの転送されたポート",
"nForwardedPorts": "{0} 個の転送されたポート",
+ "noRemoteNoPorts": "転送されたポートはありません。ポートを転送して、インターネット経由でローカルで実行されているサービスにアクセスします。\r\n[ポートの転送]({0})",
"ports": "ポート",
+ "remote.autoForwardPortsSource.fallback": "20 を超えるポートが自動的に転送されました。設定で、`プロセス` ベースの自動ポート転送が `ハイブリッド` に切り替わりました。一部のポートが検出されなくなる可能性があります。",
+ "remote.autoForwardPortsSource.fallback.showPortSourceSetting": "設定の表示",
+ "remote.autoForwardPortsSource.fallback.switchBack": "元に戻す",
"remote.forwardedPorts.statusbarTextNone": "転送されたポートなし",
"remote.forwardedPorts.statusbarTooltip": "転送されたポート: {0}",
- "remote.tunnelsView.automaticForward": "ポート {0} で実行されているアプリケーションは使用可能です。 ",
+ "remote.tunnelsView.automaticForward": "ポート {1} で実行されているアプリケーション {0} は使用可能です。 ",
"remote.tunnelsView.elevationButton": "ポート {0} を sudo として使用する...",
"remote.tunnelsView.elevationMessage": "ローカルでポート {0} を使用するには、スーパーユーザーとして実行する必要があります。",
+ "remote.tunnelsView.makePublic": "公開用にする",
"remote.tunnelsView.notificationLink2": "[すべての転送されたポートを表示]({0})",
+ "remoteNoPorts": "転送されたポートはありません。ポートを転送して、実行中のサービスにローカルでアクセスします。\r\n[ポートの転送]({0})",
"status.forwardedPorts": "転送されたポート"
},
"vs/workbench/contrib/remote/browser/remoteIcons": {
@@ -7814,18 +13002,30 @@
"host.open": "リモートを開いています...",
"host.reconnecting": "{0} に再接続しています...",
"host.tooltip": "{0} での編集",
- "installRemotes": "追加のリモート拡張機能をインストール...",
"miCloseRemote": "リモート接続を閉じる(&&M)",
+ "networkStatusHighLatencyTooltip": "ネットワークの待機時間が長いようです (最後の {0}ミリ秒、平均 {1}ミリ秒)、 特定の機能の応答が遅くなる可能性があります。",
+ "networkStatusOfflineTooltip": "ネットワークがオフラインのようです。一部の機能が利用できない可能性があります。",
"noHost.tooltip": "リモート ウィンドウを開きます",
"reloadWindow": "ウィンドウの再読み込み",
"remote.category": "リモート",
"remote.close": "リモート接続を終了する",
"remote.install": "リモート開発用の拡張機能のインストール",
+ "remote.showExtensionRecommendations": "有効にすると、[リモート インジケーター] メニューにリモート拡張機能のおすすめ候補が表示されます。",
"remote.showMenu": "リモート メニューの表示",
+ "remote.startActions.help": "詳細情報",
+ "remote.startActions.install": "インストール",
+ "remote.startActions.installingExtension": "拡張機能をインストールしています... ",
+ "remoteActions": "リモート ウィンドウを開くオプションを選択します",
"remoteHost": "リモート ホスト",
+ "retry": "再試行",
+ "unknownSetupError": "{0} の設定中にエラーが発生しました。もう一度やり直しますか?",
"workspace.tooltip": "{0} での編集",
"workspace.tooltip2": "仮想ファイル システム上にあるリソースで [一部の機能は使用できません]({0})。"
},
+ "vs/workbench/contrib/remote/browser/remoteStartEntry": {
+ "remote.category": "リモート",
+ "remote.showWebStartEntryActions": "Web のリモート 開始エントリを表示する"
+ },
"vs/workbench/contrib/remote/browser/tunnelFactory": {
"tunnelPrivacy.private": "非公開",
"tunnelPrivacy.public": "公開"
@@ -7847,6 +13047,7 @@
"remote.tunnel.copyAddressPlaceholdter": "転送されたポートの選択",
"remote.tunnel.forward": "ポートの転送",
"remote.tunnel.forwardError": "{0}:{1} を転送できません。ホストが利用できないか、そのリモート ポートが既に転送されている可能性があります",
+ "remote.tunnel.forwardErrorProvided": "{0} を転送できません:{1}。{2}",
"remote.tunnel.forwardItem": "ポートを転送する",
"remote.tunnel.forwardPrompt": "ポート番号またはアドレス (例: 3000 または 10.10.10.10:2000)。",
"remote.tunnel.label": "ポート ラベルの設定",
@@ -7869,10 +13070,10 @@
"remote.tunnelsView.labelPlaceholder": "ポート ラベル",
"remote.tunnelsView.portNumberToHigh": "ポート番号は、0 以上、{0} 未満でなければなりません。",
"remote.tunnelsView.portNumberValid": "転送されるポートは、数値または host:port にする必要があります。",
- "tunnel.addressColumn.label": "ローカル アドレス",
- "tunnel.addressColumn.tooltip": "転送されたポートをローカルで使用できるアドレス。",
+ "remote.tunnelsView.portShouldBeNumber": "ローカル ポートは数値にする必要があります。",
+ "tunnel.addressColumn.label": "転送されたアドレス",
+ "tunnel.addressColumn.tooltip": "転送されたポートが使用可能なアドレス。",
"tunnel.focusContext": "ポート ビューがフォーカスされているかどうか。",
- "tunnel.forwardedPortsViewEnabled": "ポート ビューが有効になっているかどうか。",
"tunnel.iconColumn.notRunning": "実行中のプロセスはありません。",
"tunnel.iconColumn.running": "ポートに実行中のプロセスがあります。",
"tunnel.originColumn.label": "配信元",
@@ -7891,17 +13092,21 @@
"tunnelView.runningProcess.inacessable": "プロセス情報を使用できません"
},
"vs/workbench/contrib/remote/common/remote.contribution": {
- "invalidWorkspaceCancel": "キャンセル(&&C)",
- "invalidWorkspaceDetail": "ワークスペースが存在しません。別のワークスペースを選択して開いてください。",
+ "invalidWorkspaceDetail": "開く別のワークスペースを選択してください。",
"invalidWorkspaceMessage": "ワークスペースが存在しません",
"invalidWorkspacePrimary": "ワークスペースを開く(&&O)...",
"pauseSocketWriting": "接続: ソケット書き込みを一時停止します",
"remote": "リモート",
- "remote.autoForwardPorts": "有効にすると、新しい実行中のプロセスが検出され、リッスンしているポートが自動的に転送されます。この設定を無効にしても、すべてのポートの転送を防ぐわけではありません。無効にした場合でも、拡張機能は引き続きポートの転送が可能であり、一部の URL を開ことにより、ポートが引き続き転送されます。",
- "remote.autoForwardPortsSource": "{0} が true の場合にポートが自動的に転送されるソースを設定します。Windows と Mac のリモートでは、'process' オプションは効果がなく、'output' が使用されます。有効化するには、再読み込みが必要です。",
+ "remote.autoForwardPortFallback": "ポートを自動転送し、'remote.autoForwardPortsSource' が 'process' に既定で設定されている場合に、'process' から 'hybrid' への切り替えをトリガーする自動転送ポートの数。フォールバックを無効にするには、'0' に設定します。`remote.autoForwardPortsFallback` が設定されていないが、`remote.autoForwardPortsSource` が設定されている場合、`remote.autoForwardPortsFallback` は 0 に設定されているものとして扱われます。",
+ "remote.autoForwardPorts": "有効にすると、新しい実行中のプロセスが検出され、リッスンしているポートが自動的に転送されます。この設定を無効にしても、すべてのポートの転送を防ぐわけではありません。無効にした場合でも、拡張機能は引き続きポートの転送が可能であり、一部の URL を開ことにより、ポートが引き続き転送されます。{0} も参照してください。",
+ "remote.autoForwardPortsSource": "{0} が true の場合にポートが自動的に転送されるソースを設定します。{0} が false の場合、 {1} は既に転送されているポートに関する情報を検索するために使用されます。Windows と macOS のリモートでは、`process` および `hybrid` オプションは効果がなく、`output` が使用されます。",
+ "remote.autoForwardPortsSource.hybrid": "ポートは、ターミナルとデバッグの出力を読み取ることによって検出されたときに自動的に転送されます。ポートを使用するすべてのプロセスで統合ターミナルまたはデバッグ コンソールに出力されるわけではないため、一部のポートは見逃されます。ポートは、終了するこのポートをリッスンするプロセスをモニタリングすることで\"転送が解除\" されます。",
"remote.autoForwardPortsSource.output": "ポートは、ターミナルとデバッグの出力を読み取ることによって検出されたときに自動的に転送されます。ポートを使用するすべてのプロセスで統合ターミナルまたはデバッグ コンソールに出力されるわけではないため、一部のポートは見逃されます。出力に基づいて転送されたポートは、再度読み込むか、ユーザーがポート ビューでポートを閉じない限り、\"転送を解除\" されることはありません。",
"remote.autoForwardPortsSource.process": "ポートは、開始済みで、ポートが含まれるプロセスを監視することによって検出されたときに自動的に転送されます。",
+ "remote.defaultExtensionsIfInstalledLocally.invalidFormat": "拡張機能の識別子は \"publisher.name\" の形式である必要があります。",
+ "remote.defaultExtensionsIfInstalledLocally.markdownDescription": "リモートへの接続時に既にローカルにインストールされている拡張機能の一覧。",
"remote.extensionKind": "拡張子の種類をオーバーライドします。'ui' 拡張機能はローカル マシンでインストールされて実行されますが、'workspace' 拡張機能はリモートで実行されます。この設定を使用して拡張機能の既定の種類をオーバーライドすることで、その拡張機能をローカルまたはリモートのいずれかでインストールして有効にするかどうかを指定します。",
+ "remote.forwardOnClick": "ターミナルとデバッグ コンソールから開いたときに、ポートを持つローカル URL を転送するかどうかを制御します。",
"remote.localPortHost": "ポート転送に使用するローカル ホスト名を指定します。",
"remote.portsAttributes": "特定のポート番号が転送されるときに適用されるプロパティを設定します。例:\r\n\r\n```\r\n\"3000\": {\r\n \"label\": \"Application\"\r\n},\r\n\"40000-55000\": {\r\n \"onAutoForward\": \"ignore\"\r\n},\r\n\".+\\\\/server.js\": {\r\n \"onAutoForward\": \"openPreview\"\r\n}\r\n```",
"remote.portsAttributes.defaults": "設定 {0} からプロパティを取得しないすべてのポートに適用される既定のプロパティを設定します。例:\r\n\r\n'''\r\n{\r\n \"onAutoForward\": \"ignore\"\r\n}\r\n'''",
@@ -7920,41 +13125,125 @@
"remote.portsAttributes.requireLocalPort": "True の場合、選択したローカルポートが転送に使用されていない場合は、モーダル ダイアログが表示されます。",
"remote.portsAttributes.silent": "このポートが自動的に転送されたときに通知を表示せず、何も実行しません。",
"remote.restoreForwardedPorts": "ワークスペースで転送したポートを復元します。",
- "remoteExtensionLog": "リモート サーバー",
- "remotePtyHostLog": "リモート PTY ホスト",
"triggerReconnect": "接続: 再接続を開始します",
"ui": "UI 拡張機能の種類。リモート ウィンドウでは、これらの拡張機能はローカル マシンで使用可能な場合にのみ有効になります。",
"workspace": "ワークスペース拡張機能の種類。リモート ウィンドウでは、これらの拡張機能はリモートで使用可能な場合にのみ有効になります。"
},
- "vs/workbench/contrib/remote/electron-sandbox/remote.contribution": {
+ "vs/workbench/contrib/remote/electron-browser/remote.contribution": {
"remote": "リモート",
- "remote.downloadExtensionsLocally": "有効にすると、拡張機能がローカルにダウンロードされ、リモート上にインストールされます。"
+ "remote.actions.closeUnusedPorts": "未使用の転送ポートを閉じる",
+ "remote.category": "リモート",
+ "remote.downloadExtensionsLocally": "有効にすると、拡張機能がローカルにダウンロードされ、リモート上にインストールされます。",
+ "wslFeatureInstalled": "プラットフォームに WSL 機能がインストールされているかどうか"
+ },
+ "vs/workbench/contrib/remoteCodingAgents/browser/remoteCodingAgents.contribution": {
+ "remoteCodingAgentsExtPoint": "リモート コーディング エージェントの統合をチャット ウィジェットに提供します。",
+ "remoteCodingAgentsExtPoint.command": "実行するコマンドの識別子。このコマンドは \"commands\" セクションで宣言する必要があります。",
+ "remoteCodingAgentsExtPoint.description": "メニューやヒントで使用するリモート エージェントの説明。",
+ "remoteCodingAgentsExtPoint.displayName": "メニューでの表示に使用される、この項目のユーザー フレンドリ名。",
+ "remoteCodingAgentsExtPoint.followUpRegex": "既存のチャット会話におけるパターンの最後の出現箇所が、フォローアップ応答を容易にするために関与する拡張機能に送信されます。",
+ "remoteCodingAgentsExtPoint.id": "このサーバーの一意識別子。",
+ "remoteCodingAgentsExtPoint.when": "このアイテムを表示するために満たす必要がある条件。"
+ },
+ "vs/workbench/contrib/remoteTunnel/electron-browser/remoteTunnel.contribution": {
+ "accountPreference.placeholder": "リモート アクセスを有効にするには、アカウントにサインインしてください",
+ "action.copyToClipboard": "ブラウザー リンクをクリップボードにコピーする",
+ "action.doNotShowAgain": "今後表示しない",
+ "action.showExtension": "拡張機能を表示する",
+ "enable": "有効にする(&&E)",
+ "initialize.progress.title": "[リモート トンネルを探しています](コマンド:{0})",
+ "manage.placeholder": "呼び出すコマンドを選択します",
+ "manage.showLog": "ログの表示",
+ "manage.title.attached": "{0} に対してリモート トンネルが有効になりました (外部で起動)",
+ "manage.title.off": "リモート トンネル アクセスが有効ではありません",
+ "manage.title.orunning": "{0} に対してリモート トンネル アクセスが有効になりました",
+ "manage.tunnelName": "トンネル名の変更",
+ "others": "その他",
+ "progress.turnOn.failed": "リモート トンネル アクセスを有効にできません。詳細については、\"リモート トンネル サービス\" ログを確認してください。",
+ "progress.turnOn.final": "安全なトンネル [{0}](command:{4}) 経由で、どこからでもこのコンピューターにアクセスできるようになりました。別のコンピューター経由で接続するには、生成された [{1}]({2}) リンクを使用するか、デスクトップまたは Web で [{6}]({7}) 拡張機能を使用します。[VS Code アカウント] メニュー経由で、このアクセスを [構成] (command:{3}) または[オフ] (command:{5}) にすることができます。",
+ "recommend.remoteExtension": "トンネル '{0}' はリモート アクセスに利用できます。{1} 拡張機能を使用して接続できます。",
+ "remoteTunnel.actions.configure": "トンネル名を構成する...",
+ "remoteTunnel.actions.copyToClipboard": "ブラウザー URI をクリップボードにコピーする",
+ "remoteTunnel.actions.learnMore": "トンネルを使用して開始",
+ "remoteTunnel.actions.manage.connecting": "リモート トンネル アクセスが接続中です",
+ "remoteTunnel.actions.manage.on.v2": "リモート トンネル アクセスはオンです",
+ "remoteTunnel.actions.showLog": "リモート トンネル サービス ログの表示",
+ "remoteTunnel.actions.turnOff": "リモート トンネル アクセスを無効にします...",
+ "remoteTunnel.actions.turnOn": "リモート トンネル アクセスを有効にします...",
+ "remoteTunnel.category": "リモート トンネル",
+ "remoteTunnel.serviceInstallFailed": "サービスとしてインストールできませんでした。このセッションのトンネルの実行に戻りました。詳細については、[エラー ログ](command:{0})を参照してください。",
+ "remoteTunnel.turnOff.confirm": "リモート トンネル アクセスを無効にしますか?",
+ "remoteTunnel.turnOffAttached.confirm": "リモート トンネル アクセスを無効にしますか? これにより、外部で開始されたサービスも停止されます。",
+ "remoteTunnelAccess.machineName": "リモート トンネル アクセスに登録されている名前。設定されていない場合は、ホスト名が使用されます。",
+ "remoteTunnelAccess.machineNameRegex": "名前は文字、数字、アンダースコア、ダッシュのみで構成する必要があります。ダッシュで始めることはできません。",
+ "remoteTunnelAccess.preventSleep": "リモート トンネル アクセスが有効になっているときに、このコンピューターがスリープ状態にならないようにします。",
+ "sign in using account": "{0} でサインイン",
+ "signed in": "サインイン済み",
+ "startTunnel.progress.title": "リモート トンネルを開始中](コマンド:{0})",
+ "tunnel.enable.placeholder": "アクセスを有効にする方法を選択する",
+ "tunnel.enable.service": "サービスとしてインストールする",
+ "tunnel.enable.service.description": "ログインするたびに実行する",
+ "tunnel.enable.session": "このセッションに対してオンにする",
+ "tunnel.enable.session.description": "{0}が開いているときに実行する",
+ "tunnel.preview": "リモート トンネルは現在プレビュー中です。「Help: Report Issue」コマンドを使用して問題を報告してください。"
+ },
+ "vs/workbench/contrib/replNotebook/browser/repl.contribution": {
+ "repl.execute": "REPL 入力の実行",
+ "repl.focusLastReplOutput": "最新の REPL 実行にフォーカスする",
+ "repl.input.focus": "入力エディターのフォーカス"
+ },
+ "vs/workbench/contrib/replNotebook/browser/replEditor": {
+ "replEditorInput": "REPL 入力"
+ },
+ "vs/workbench/contrib/replNotebook/browser/replEditorAccessibilityHelp": {
+ "replEditor.accessibilityView": "アイテムの出力のアクセス可能なビューの履歴を移動しながら、[アクセシビリティ ビューを開く] コマンド {0} を実行します。",
+ "replEditor.autoFocusRepl": "設定 `accessibility.replEditor.autoFocusReplExecution` は、コードの実行後にフォーカスが自動的に REPL に移動するかどうかを制御します。",
+ "replEditor.cellNavigation": "[編集の終了] コマンド {0} では、セル コンテナーにフォーカスが移動します。このコンテナーでは、上矢印と下矢印も履歴内のセル間でフォーカスを移動します。",
+ "replEditor.configReadExecution": "設定 `accessibility.replEditor.readLastExecutionOutput` は、実行が完了したときに出力が自動的に読み取られるかどうかを制御します。",
+ "replEditor.execute": "実行コマンド {0} は入力ボックスの式を評価します。",
+ "replEditor.focusCellEditor": "[セルの編集] コマンド{0} は、セルの入力用の読み取り専用エディターにフォーカスを移動します。",
+ "replEditor.focusInOutput": "フォーカス出力コマンド {0} は、前に実行した項目にフォーカスがある場合に、出力にフォーカスを合わせます。",
+ "replEditor.focusLastItemAdded": "[最後の実行にフォーカス] コマンド {0} は、REPL 履歴で最後に実行された項目にフォーカスを移動します。",
+ "replEditor.focusReplInput": "フォーカス入力エディター コマンド {0} は、フォーカスをこのエディターに戻します。",
+ "replEditor.focusReplInputFromHistory": "フォーカス入力エディターコマンド {0} はフォーカスを REPL 入力ボックスに移動します。",
+ "replEditor.historyOverview": "REPL 履歴に含まれています。これは、REPL で実行されたセルの一覧です。各セルには、入力、出力、およびセル コンテナーがあります。",
+ "replEditor.inputAccessibilityView": "この入力ボックスから [アクセシビリティ ビューを開く] コマンド {0} を実行すると、最後の実行からの出力がアクセシビリティ ビューに表示されます。",
+ "replEditor.inputOverview": "REPL エディター入力ボックスにいます。REPL で実行されるコードを受け入れます。"
+ },
+ "vs/workbench/contrib/replNotebook/browser/replEditorInput": {
+ "replEditorLabelIcon": "REPL エディター ラベルのアイコン。"
},
"vs/workbench/contrib/sash/browser/sash.contribution": {
"sashHoverDelay": "ビューまたはエディター間のドラッグ領域のホバー フィードバックの遅延をミリ秒単位で制御します。",
"sashSize": "ビューまたはエディター間にあるドラッグ領域のフィードバック領域のサイズをピクセル単位で制御します。マウスを使用してビューのサイズを変更するのが困難な場合は、これを大きな値に設定してください。"
},
"vs/workbench/contrib/scm/browser/activity": {
+ "scmActiveResourceHasChanges": "アクティブなリソースに変更があるかどうか",
+ "scmActiveResourceRepository": "アクティブなリソースのリポジトリ",
"scmPendingChangesBadge": "{0} 個の保留中の変更",
- "status.scm": "ソース管理"
+ "status.scm": "ソース管理",
+ "status.scm.provider": "ソース管理プロバイダー"
},
- "vs/workbench/contrib/scm/browser/dirtydiffDecorator": {
- "change": "{1} 個のうち {0} 個の変更 ",
- "changes": "{1} 個のうち {0} 個の変更",
- "editorGutterAddedBackground": "追加された行を示すエディター余白の背景色。",
- "editorGutterDeletedBackground": "削除された行を示すエディター余白の背景色。",
- "editorGutterModifiedBackground": "編集された行を示すエディター余白の背景色。",
+ "vs/workbench/contrib/scm/browser/menus": {
+ "miShare": "共有"
+ },
+ "vs/workbench/contrib/scm/browser/quickDiffDecorator": {
+ "diffAdded": "追加された行",
+ "diffDeleted": "削除された行",
+ "diffModified": "変更された行"
+ },
+ "vs/workbench/contrib/scm/browser/quickDiffWidget": {
+ "change": "{0} - {1}/{2} の変更",
+ "changes": "{0} - {1}/{2} の変更",
"label.close": "閉じる",
"miGotoNextChange": "次の変更箇所(&&C)",
"miGotoPreviousChange": "前の変更箇所(&&C)",
- "minimapGutterAddedBackground": "追加された行のミニマップとじしろの背景色。",
- "minimapGutterDeletedBackground": "削除された行のミニマップの余白の背景色。",
- "minimapGutterModifiedBackground": "変更された行のミニマップとじしろの背景色。",
"move to next change": "次の変更に移動",
"move to previous change": "前の変更に移動",
- "overviewRulerAddedForeground": "追加されたコンテンツを示す概要ルーラーのマーカー色。",
- "overviewRulerDeletedForeground": "削除されたコンテンツを示す概要ルーラーのマーカー色。",
- "overviewRulerModifiedForeground": "変更されたコンテンツを示す概要ルーラーのマーカー色。",
+ "multiChange": "{1} 個のうち {0} 個の変更 ",
+ "multiChanges": "{1} 個のうち {0} 個の変更",
+ "quickDiff.base.switch": "クイック差分ベースの切り替え",
+ "remotes": "クイック差分ベースの切り替え",
"show next change": "次の変更箇所を表示",
"show previous change": "前の変更箇所を表示"
},
@@ -7970,16 +13259,22 @@
"diffGutterWidth": "余白の差分表示 (追加と変更) の幅 (ピクセル) を制御します。",
"inputFontFamily": "入力メッセージのフォントを制御します。ワークベンチ ユーザー インターフェイスのフォント ファミリーを使う場合は 'default'、'#editor.fontFamily#' の値を使う場合は 'editor' を使用します。カスタム フォント ファミリーを使うこともできます。",
"inputFontSize": "入力メッセージのフォント サイズをピクセル単位で制御します。",
+ "inputMaxLines": "入力が自動拡張される行の最大数を制御します。",
+ "inputMinLines": "入力の自動拡張元の行の最小数を制御します。",
"manageWorkspaceTrustAction": "ワークスペースの信頼を管理",
"miViewSCM": "ソース管理(&&C)",
+ "no history items": "選択したソース管理プロバイダーには、ソース管理履歴項目がありません。",
"no open repo": "ソース管理プロバイダーが登録されていません。",
"no open repo in an untrusted workspace": "制限モードで動作する登録済みのソース管理プロバイダーはありません。",
- "open in terminal": "ターミナルで開く",
- "providersVisible": "ソース管理リポジトリのセクションに表示するリポジトリの数を制御します。'0' に設定すると、ビューのサイズを手動で変更できるようになります。",
+ "open in external terminal": "外部ターミナルで開く",
+ "open in integrated terminal": "統合ターミナルで開く",
+ "providersVisible": "ソース管理リポジトリのセクションに表示するリポジトリの数を制御します。0 に設定すると、ビューのサイズを手動で変更できるようになります。",
+ "quickDiffDecoration": "差分装飾",
"repositoriesSortOrder": "ソース管理リポジトリ ビューのリポジトリの並べ替え順序を制御します。",
"scm accept": "ソース管理: 入力を受け入れる",
"scm view next commit": "ソース管理: 次のコミットの表示",
- "scm view previous commit": "ソース管理: 以前のコミットの表示",
+ "scm view previous commit": "ソース管理: 前のコミットの表示",
+ "scm.compactFolders": "ソース管理ビューでフォルダーをコンパクトな形式でレンダリングするかどうかを制御します。このような形式では、単一の子フォルダーは結合されたツリー要素に圧縮されます。",
"scm.countBadge": "アクティビティ バーのソース管理アイコンのカウント バッジを制御します。",
"scm.countBadge.all": "すべてのソース管理プロバイダー カウント バッジの合計を表示します。",
"scm.countBadge.focused": "フォーカスのあるソース管理プロバイダーのカウント バッジを表示します。",
@@ -8005,32 +13300,138 @@
"scm.diffDecorationsIgnoreTrimWhitespace.false": "先頭と末尾の空白を無視しないでください。",
"scm.diffDecorationsIgnoreTrimWhitespace.inherit": "'diffEditor.ignoreTrimWhitespace' から継承します。",
"scm.diffDecorationsIgnoreTrimWhitespace.true": "先頭と末尾の空白を無視します。",
- "scm.providerCountBadge": "ソース管理プロバイダー ヘッダーのカウント バッジを制御します。これらのヘッダーは、複数のプロバイダーがある場合にのみ表示されます。",
+ "scm.graph.badges": "ソース管理グラフ ビューにどのバッジを表示するかを制御します。バッジはグラフの右側に表示され、履歴項目グループの名前を示します。",
+ "scm.graph.badges.all": "すべての履歴項目グループのバッジをソース管理グラフ ビューに表示します。",
+ "scm.graph.badges.filter": "フィルターとして使用されている履歴項目グループのバッジのみをソース管理グラフ ビューに表示します。",
+ "scm.graph.pageOnScroll": "リストの最後までスクロールしたときにソース管理グラフ ビューに次のページの項目を読み込むかどうかを制御します。",
+ "scm.graph.pageSize": "ソース管理グラフ ビューに既定で、および追加の項目を読み込むときに表示する項目の数。",
+ "scm.graph.showIncomingChanges": "ソース管理グラフ ビューに受信した変更点を表示するかどうかを制御します。",
+ "scm.graph.showOutgoingChanges": "ソース管理グラフ ビューに送信した変更点を表示するかどうかを制御します。",
+ "scm.providerCountBadge": "ソース管理プロバイダー ヘッダーのカウント バッジを制御します。これらのヘッダーは、複数のプロバイダーがある場合、または {0} 設定が有効になっている場合に、[ソース管理] ビューと、[ソース管理リポジトリ] ビューに表示されます。",
"scm.providerCountBadge.auto": "0 以外の場合にのみ、ソース管理プロバイダーのカウント バッジを表示します。",
"scm.providerCountBadge.hidden": "ソース管理プロバイダーのカウント バッジを非表示にします。",
"scm.providerCountBadge.visible": "ソース管理プロバイダーのカウント バッジを表示します。",
+ "scm.repositories.explorer": "ソース管理リポジトリ ビューにリポジトリの成果物を表示するかどうかを制御します。この機能は試験段階で、{0} が `{1}` に設定されている場合にのみ動作します。",
+ "scm.repositories.selectionMode": "ソース管理リポジトリ ビューのリポジトリの選択モードを制御します。",
+ "scm.repositories.selectionMode.multiple": "複数のリポジトリを同時に選択できます。",
+ "scm.repositories.selectionMode.single": "一度に選択できるリポジトリは 1 つのみです。",
"scm.repositoriesSortOrder.discoveryTime": "ソース管理リポジトリ ビューのリポジトリは、検出時刻順に並べ替えられます。ソース管理ビューのリポジトリは、選択された順序で並べ替えられます。",
"scm.repositoriesSortOrder.name": "ソース管理リポジトリおよびソース管理ビューのリポジトリは、リポジトリ名で並べ替えられます。",
"scm.repositoriesSortOrder.path": "ソース管理リポジトリおよびソース管理ビューのリポジトリは、リポジトリ パスで並べ替えられます。",
+ "scm.workingSets.default": "作業セットがないソース管理履歴項目グループに切り替えるときに使用する既定のワーキング セットを制御します。",
+ "scm.workingSets.default.current": "作業セットがないソース管理履歴項目グループに切り替える場合は、現在のワーキング セットを使用します。",
+ "scm.workingSets.default.empty": "ワーキング セットがないソース コード管理履歴項目グループに切り替える場合は、空のワーキング セットを使用します。",
+ "scm.workingSets.enabled": "ソース コード管理履歴項目グループを切り替えるときにエディターのワーキング セットを格納するかどうかを制御します。",
+ "scmActiveRepositoryAutoDescription": "アクティブなリポジトリは、アクティブなエディターに基づいて更新されます",
+ "scmActiveRepositoryPlaceHolder": "アクティブなリポジトリを選択し、入力してすべてのリポジトリをフィルター処理します",
+ "scmChanges": "変更",
"scmConfigurationTitle": "ソース管理",
+ "scmEditorResolveMergeConflict": "AI を使った競合の解決",
+ "scmGraph": "グラフ",
+ "scmRepositories": "リポジトリ",
"showActionButton": "ソース管理ビューにアクション ボタンを表示するかどうかを制御します。",
+ "showInputActionButton": "[ソース管理] の入力にアクション ボタンを表示するかどうかを制御します。",
"source control": "ソース管理",
+ "source control graph": "ソース管理グラフ",
"source control repositories": "ソース管理リポジトリ",
+ "source control view": "ソース管理",
"sourceControlViewIcon": "ソース管理ビューの表示アイコン。"
},
+ "vs/workbench/contrib/scm/browser/scmAccessibilityHelp": {
+ "disabled": "無効",
+ "enabled": "有効",
+ "scm-graph-msg1": "[ソース管理: ソース管理グラフ ビューにフォーカス] コマンドを使用して、ソース管理グラフ ビューを開きます。",
+ "scm-graph-msg2": "ソース管理グラフ ビューには、リポジトリのグラフ履歴項目が表示されます。ワークスペースに複数のリポジトリが含まれている場合、アクティブなリポジトリの履歴項目が一覧表示されます。",
+ "scm-graph-msg3": "ソース管理グラフ ビューを開くと、次の操作を実行できます。",
+ "scm-graph-msg4": " - 上/下方向キーを使用して履歴項目の一覧を移動します。",
+ "scm-graph-msg5": "- Space キーを使用して、履歴項目の詳細をマルチファイル diff エディターで開きます。",
+ "scm-msg1": "[ソース管理: ソース管理ビューにフォーカス] コマンドを使用して、ソース管理ビューを開きます。",
+ "scm-msg2": "ソース管理ビューには、リポジトリのリソース グループとリソースが表示されます。ワークスペースに複数のリポジトリが含まれている場合、ソース管理リポジトリ ビューで選択されたリポジトリのリソース グループとリソースが一覧表示されます。",
+ "scm-msg3": "ソース管理ビューを開くと、次の操作を実行できます。",
+ "scm-msg4": " - 上下方向キーを使用して、リポジトリ、リソース グループ、リソースの一覧内を移動します。",
+ "scm-msg5": " - リソース グループを展開または折りたたむには Space キーを使用します。",
+ "scm-repositories-msg1": "[ソース管理: ソース管理リポジトリ ビューにフォーカス] コマンドを使用して、ソース管理リポジトリ ビューを開きます。",
+ "scm-repositories-msg2": "ソース管理リポジトリ ビューには、ワークスペースのすべてのリポジトリが一覧表示され、ワークスペースに複数のリポジトリが含まれている場合にのみ表示されます。",
+ "scm-repositories-msg3": "[ソース管理リポジトリ] ビューを開くと、次の操作を実行できます。",
+ "scm-repositories-msg4": " - リポジトリの一覧内を移動するには、上下の方向キーを使用します。",
+ "scm-repositories-msg5": " - Enter キーまたは Space キーを使用してリポジトリを選択します。",
+ "scm-repositories-msg6": " - Shift + ↑/↓ キーを使用して複数のリポジトリを選択します。",
+ "state-msg1": "表示されるリポジトリ: {0}",
+ "state-msg2": "リポジトリ: {0}",
+ "state-msg3": "履歴項目の参照: {0}",
+ "state-msg4": "コミット メッセージ: {0}",
+ "state-msg5": "動作設定ボタン: {0}、{1}",
+ "state-msg6": "リソース グループ: {0}"
+ },
+ "vs/workbench/contrib/scm/browser/scmHistory": {
+ "incomingChanges": "受信した変更点",
+ "outgoingChanges": "送信した変更点",
+ "scmGraph.HistoryItemHoverAdditionsForeground": "履歴項目のホバー追加の前景色。",
+ "scmGraph.HistoryItemHoverDeletionsForeground": "履歴項目のホバー削除の前景色。",
+ "scmGraphForeground1": "ソース管理グラフの前景色 (1)。",
+ "scmGraphForeground2": "ソース管理グラフの前景色 (2)。",
+ "scmGraphForeground3": "ソース管理グラフの前景色 (3)。",
+ "scmGraphForeground4": "ソース管理グラフの前景色 (4)。",
+ "scmGraphForeground5": "ソース管理グラフの前景色 (5)。",
+ "scmGraphHistoryItemBaseRefColor": "履歴項目の基本参照色。",
+ "scmGraphHistoryItemHoverDefaultLabelBackground": "履歴項目のホバー時の既定ラベルの背景色。",
+ "scmGraphHistoryItemHoverDefaultLabelForeground": "履歴項目のホバー時の既定ラベルの前景色。",
+ "scmGraphHistoryItemHoverLabelForeground": "履歴項目のホバー ラベルの前景色。",
+ "scmGraphHistoryItemRefColor": "履歴項目の参照色。",
+ "scmGraphHistoryItemRemoteRefColor": "履歴項目のリモート参照色。"
+ },
+ "vs/workbench/contrib/scm/browser/scmHistoryChatContext": {
+ "chat.action.scmHistoryItemContext": "チャットに追加",
+ "chat.action.scmHistoryItemSummarize": "変更の説明",
+ "chatContext.scmHistoryItems": "ソース管理...",
+ "chatContext.scmHistoryItems.placeholder": "変更を選択する",
+ "files": "ファイル"
+ },
+ "vs/workbench/contrib/scm/browser/scmHistoryViewPane": {
+ "activeRepository": "アクティブなリポジトリのソース管理グラフを表示する",
+ "all": "すべて",
+ "allHistoryItemRefs": "すべての履歴項目の参照",
+ "auto": "自動",
+ "currentHistoryItemRef": "現在の履歴項目の参照",
+ "goToCurrentHistoryItem": "現在の履歴項目に移動",
+ "incomingChanges": "受信した変更点",
+ "items": "{0} 個の項目",
+ "loadMore": "{0} さらに読み込む...",
+ "openChanges": "変更を開く",
+ "openFile": "ファイルを開く",
+ "outgoingChanges": "送信した変更点",
+ "referencePicker": "履歴項目の参照ピッカー",
+ "refreshGraph": "最新の情報に更新",
+ "repositoryPicker": "リポジトリ ピッカー",
+ "scm history": "ソース管理履歴",
+ "scmGraphHistoryItemRef": "表示する履歴項目の参照を 1 つ以上選択し、入力してフィルター処理する",
+ "scmGraphRepository": "表示するリポジトリを選択し、入力してすべてのリポジトリをフィルター処理する",
+ "scmGraphViewOutdated": "最新の情報に更新操作 ($(refresh)) を使用してグラフを最新の情報に更新してください。",
+ "setListViewMode": "一覧として表示",
+ "setTreeViewMode": "ツリーとして表示"
+ },
"vs/workbench/contrib/scm/browser/scmRepositoriesViewPane": {
"scm": "ソース管理リポジトリ"
},
"vs/workbench/contrib/scm/browser/scmViewPane": {
"collapse all": "すべてのリポジトリを折りたたむ",
"expand all": "Expand All Repositories",
- "input": "ソース管理の入力",
+ "label.close": "閉じる",
"repositories": "リポジトリ",
+ "repositoryMultiSelectionMode": "複数のリポジトリの選択",
+ "repositorySingleSelectionMode": "単一のリポジトリの選択",
"repositorySortByDiscoveryTime": "検出時刻で並べ替え",
"repositorySortByName": "名前順で並べ替え",
"repositorySortByPath": "パス順で並べ替え",
"scm": "ソース管理の管理",
- "scm.providerBorder": "SCM プロバイダーの区切りの境界線。",
+ "scmInput": "ソース管理の入力",
+ "scmInput.accessibilityHelp": "{0}、{1} を使用して、ソース管理のアクセシビリティのヘルプを開きます。",
+ "scmInput.accessibilityHelpNoKb": "{0}、詳細については、[ユーザー補助ヘルプを開く] コマンドを実行して詳細を確認してください。",
+ "scmInputCancelAction": "取り消す",
+ "scmInputGenerateCommitMessage": "コミット メッセージの生成",
+ "scmInputMoreActions": "その他のアクション...",
+ "scmInputRow.accessibilityHelp": "ソース管理の入力です。{0} を使用して、ソース管理のアクセシビリティ のヘルプを開きます。",
+ "scmInputRow.accessibilityHelpNoKb": "ソース管理入力、詳細については [ユーザー補助ヘルプ] コマンドを実行してください。",
"setListViewMode": "一覧として表示",
"setTreeViewMode": "ツリーとして表示",
"sortAction": "表示と並べ替え",
@@ -8038,14 +13439,41 @@
"sortChangesByPath": "パスで変更を並べ替える",
"sortChangesByStatus": "状態で変更を並べ替える"
},
- "vs/workbench/contrib/scm/browser/scmViewPaneContainer": {
- "source control": "ソース管理"
+ "vs/workbench/contrib/scm/browser/scmViewService": {
+ "auto": "オート"
+ },
+ "vs/workbench/contrib/scm/common/quickDiff": {
+ "editorGutterAddedBackground": "追加された行を示すエディター余白の背景色。",
+ "editorGutterAddedSecondaryBackground": "追加された行を示す、エディター余白の第 2 背景色。",
+ "editorGutterDeletedBackground": "削除された行を示すエディター余白の背景色。",
+ "editorGutterDeletedSecondaryBackground": "削除された行を示す、エディター余白の第 2 背景色。",
+ "editorGutterItemBackground": "ガター項目背景のためのエディター ガター装飾色。この色は不透明である必要があります。",
+ "editorGutterItemGlyphForeground": "ガター項目グリフのためのエディター ガター装飾色。",
+ "editorGutterModifiedBackground": "編集された行を示すエディター余白の背景色。",
+ "editorGutterModifiedSecondaryBackground": "変更された行を示す、エディター余白の第 2 背景色。",
+ "minimapGutterAddedBackground": "追加された行のミニマップとじしろの背景色。",
+ "minimapGutterDeletedBackground": "削除された行のミニマップの余白の背景色。",
+ "minimapGutterModifiedBackground": "変更された行のミニマップとじしろの背景色。",
+ "overviewRulerAddedForeground": "追加されたコンテンツを示す概要ルーラーのマーカー色。",
+ "overviewRulerDeletedForeground": "削除されたコンテンツを示す概要ルーラーのマーカー色。",
+ "overviewRulerModifiedForeground": "変更されたコンテンツを示す概要ルーラーのマーカー色。"
+ },
+ "vs/workbench/contrib/scrollLocking/browser/scrollLocking": {
+ "holdLockedScrolling": "エディター間のロックされたスクロールの切り替え",
+ "miHoldLockedScrolling": "ロックされたスクロール",
+ "miToggleLockedScrolling": "ロックされたスクロール",
+ "mouseLockScrollingEnabled": "ロックされたスクロールが有効です",
+ "mouseScrolllingLocked": "スクロールがロックされています",
+ "synchronizeScrolling": "スクロール エディターの同期",
+ "toggleLockedScrolling": "エディター間のロックされたスクロールの切り替え"
},
"vs/workbench/contrib/search/browser/anythingQuickAccess": {
+ "chat": "クイック チャットを開く",
"closeEditor": "最近開いた項目から削除",
"fileAndSymbolResultsSeparator": "ファイルとシンボルの結果",
"filePickAriaLabelDirty": "{0} は変更が保存されていません",
"fileResultsSeparator": "結果ファイル",
+ "helpPickAriaLabel": "{0}、{1}",
"noAnythingResults": "一致する結果がありません",
"openToBottom": "一番下に開く",
"openToSide": "横に開く",
@@ -8056,67 +13484,73 @@
"onlySearchInOpenEditors": "開いているエディターでのみ検索",
"useExcludesAndIgnoreFilesDescription": "除外設定を使用してファイルを無視"
},
+ "vs/workbench/contrib/search/browser/quickTextSearch/textSearchQuickAccess": {
+ "QuickSearchMore": "その他",
+ "QuickSearchOpenInFile": "ファイルを開く",
+ "QuickSearchSeeMoreFiles": "その他のファイルを表示",
+ "enterSearchTerm": "ファイル全体を検索する用語を入力します。",
+ "goToSearch": "検索ビューで開く",
+ "noAnythingResults": "一致する結果がありません",
+ "showMore": "検索ビューで開く"
+ },
"vs/workbench/contrib/search/browser/replaceService": {
"fileReplaceChanges": "{0} ↔ {1} (置換のプレビュー)",
"searchReplace.source": "検索と置換"
},
"vs/workbench/contrib/search/browser/search.contribution": {
- "CancelSearchAction.label": "検索のキャンセル",
- "ClearSearchResultsAction.label": "検索結果のクリア",
- "CollapseDeepestExpandedLevelAction.label": "すべて折りたたんで表示します。",
- "ExpandAllAction.label": "すべて展開",
- "RefreshAction.label": "最新の情報に更新",
"anythingQuickAccess": "ファイルに移動する",
"anythingQuickAccessPlaceholder": "ファイルを名前で検索 ({0} を追加して行に移動するか、{1} を追加してシンボルに移動します)",
- "clearSearchHistoryLabel": "検索履歴のクリア",
- "copyAllLabel": "すべてコピー",
- "copyMatchLabel": "コピー",
- "copyPathLabel": "パスのコピー",
- "exclude": "フルテキスト検索と Quick Open でファイルとフォルダーを除外するための [glob パターン](https://code.visualstudio.com/docs/editor/codebasics#_advanced-search-options) を構成します。`#files.exclude#` 設定からすべての glob パターンを継承します。",
+ "exclude": "フルテキスト検索と Quick Open のファイル検索でファイルとフォルダーを除外するための [glob パターン](https://code.visualstudio.com/docs/editor/codebasics#_advanced-search-options) を構成します。クイック オープンで最近開いたリストからファイルを除外するには、パターンを絶対 (例: '**/node_modules/**') にする必要があります。'#files.exclude#' 設定からすべての glob パターンを継承します。",
"exclude.boolean": "ファイル パスの照合基準となる glob パターン。これを true または false に設定すると、パターンがそれぞれ有効/無効になります。",
"exclude.when": "一致するファイルの兄弟をさらにチェックします。一致するファイル名の変数として \\$(basename) を使用します。",
"filterSortOrder": "フィルター処理時に、 Quick Open におけるエディター履歴の並べ替え順序を制御します。",
"filterSortOrder.default": "履歴エントリは、使用されるフィルター値に基づいて関連性によって並び替えられます。関連性の高いエントリが最初に表示されます。",
"filterSortOrder.recency": "履歴エントリは、新しい順に並べ替えられます。最近開いたエントリが最初に表示されます。",
- "findInFiles": "フォルダーを指定して検索",
- "findInFiles.args": "検索のためのオプションのセット",
- "findInFiles.description": "ワークスペース検索を開く",
- "findInFolder": "フォルダー内を検索...",
- "findInWorkspace": "ワークスペース内を検索...",
- "focusSearchListCommandLabel": "リストにフォーカス",
"maintainFileSearchCacheDeprecated": "検索キャッシュは、シャットダウンしない拡張機能ホストに保持されるため、この設定は不要になります。",
- "miFindInFiles": "フォルダーを指定して検索(&&I)",
- "miGotoSymbolInWorkspace": "ワークスペース内のシンボルへ移動(&&W)...",
- "miReplaceInFiles": "フォルダーを指定して置換(&&I)",
"miViewSearch": "検索(&&S)",
- "name": "検索",
- "revealInSideBar": "エクスプローラーで表示",
+ "scm.defaultViewMode.list": "検索結果をリストとして表示します。",
+ "scm.defaultViewMode.tree": "検索結果をツリーとして表示します。",
"search": "検索",
"search.actionsPosition": "検索ビューの行内のアクションバーの位置を制御します。",
"search.actionsPositionAuto": "検索ビューが狭い場合はアクションバーを右に、検索ビューが広い場合はコンテンツの直後にアクションバーを配置します。",
"search.actionsPositionRight": "アクションバーを常に右側に表示します。",
"search.collapseAllResults": "検索結果を折りたたむか展開するかどうかを制御します。",
"search.collapseResults.auto": "結果が 10 件未満のファイルが展開されます。他のファイルは折りたたまれます。",
+ "search.decorations.badges": "検索ファイルの装飾にバッジを使用するかどうかを制御します。",
+ "search.decorations.colors": "検索ファイルの装飾に色を使用するかどうかを制御します。",
+ "search.defaultViewMode": "既定の検索結果ビュー モードを制御します。",
+ "search.experimental.closedNotebookResults": "閉じているノートブックのノートブック エディターのリッチ コンテンツの結果を表示します。この設定を変更した後、検索結果を更新してください。",
"search.followSymlinks": "検索中にシンボリック リンクをたどるかどうかを制御します。",
"search.globalFindClipboard": "macOS で検索ビューが共有の検索クリップボードを読み取りまたは変更するかどうかを制御します。",
"search.location": "検索をサイドバーのビューとして表示するか、より水平方向の空間をとるためにパネル領域のパネルとして表示するかを制御します。",
"search.location.deprecationMessage": "この設定は非推奨です。代わりに、検索アイコンを新しい場所にドラッグできます。",
"search.maintainFileSearchCache": "有効にすると、searchService プロセスは 1 時間操作がない場合でもシャットダウンされず、アクティブな状態に保たれます。これにより、ファイル検索キャッシュがメモリに保持されます。",
"search.maxResults": "検索結果の最大数を制御します。これを ' null ' (空) に設定して、無制限の結果を返すことができます。",
- "search.mode": "[検索: フォルダーを指定して検索] と [フォルダー内を検索] の新しい操作が実行される場所を制御します。検索ビューまたは検索エディターのいずれかになります",
+ "search.mode": "[検索: フォルダーを指定して検索] と [フォルダー内を検索] の新しい操作が実行される場所を制御します。検索ビューまたは検索エディターのいずれかになります。",
"search.mode.newEditor": "新しい検索エディターで検索します。",
"search.mode.reuseEditor": "存在する場合は既存の検索エディターで、それ以外の場合は新しい検索エディターで検索します。",
"search.mode.view": "パネルまたはサイド バーのいずれかで検索ビュー内を検索します。",
+ "search.quickAccess.preserveInput": "次回開いたとき、クイック検索の最後の入力を復元するかどうかを制御します。",
"search.quickOpen.includeHistory": "最近開いたファイルの結果を、Quick Open の結果ファイルに含めるかどうか。",
"search.quickOpen.includeSymbols": "グローバル シンボル検索の結果を、Quick Open の結果ファイルに含めるかどうか。",
+ "search.ripgrep.maxThreads": "検索に使用するスレッドの数。0 に設定すると、エンジンによってこの値が自動的に決定されます。",
"search.searchEditor.defaultNumberOfContextLines": "新しい検索エディターを作成するときに使用する、前後のコンテキスト行の既定数です。'#search.searchEditor.reusePriorSearchConfiguration#' を使用している場合、検索エディターの以前の構成を使用するには、これを 'null ' (空) に設定することができます。",
- "search.searchEditor.doubleClickBehaviour": "検索エディターで結果をダブル クリックした場合の効果を構成します。",
+ "search.searchEditor.doubleClickBehaviour": "検索エディターで結果をダブルクリックした場合の効果を構成します。",
"search.searchEditor.doubleClickBehaviour.goToLocation": "ダブルクリックすると、アクティブなエディター グループに結果が開きます。",
"search.searchEditor.doubleClickBehaviour.openLocationToSide": "ダブルクリックすると、結果はエディター グループの横に開かれ、まだ存在しない場合は作成されます。",
"search.searchEditor.doubleClickBehaviour.selectWord": "ダブルクリックすると、カーソルの下にある単語が選択されます。",
+ "search.searchEditor.focusResultsOnSearch": "検索がトリガーされたら、検索エディターの入力ではなく、検索エディターの結果にフォーカスを置きます。",
"search.searchEditor.reusePriorSearchConfiguration": "有効にすると、新しい検索エディターで、以前に開かれていた検索エディターの包含、除外、フラグが再利用されます。",
+ "search.searchEditor.singleClickBehaviour": "検索エディターで結果をダブルクリックした場合の効果を構成します。",
+ "search.searchEditor.singleClickBehaviour.default": "シングルクリックでは何も行われません。",
+ "search.searchEditor.singleClickBehaviour.peekDefinition": "シングルクリックすると、[定義をここに表示] ウィンドウが開きます。",
"search.searchOnType": "入力中の文字列を全てのファイルから検索する。",
"search.searchOnTypeDebouncePeriod": "{0} が有効になっている場合、文字入力と検索開始の間の入力待ちをミリ秒単位で制御します。{0} が無効になっている場合、効果はありません。",
+ "search.searchView.keywordSuggestions": "検索ビューでキーワード候補を有効にします。",
+ "search.searchView.semanticSearchBehavior": "検索ビューに表示されるセマンティック検索結果の動作を制御します。",
+ "search.searchView.semanticSearchBehavior.auto": "検索ごとにセマンティック結果を自動的に要求します。",
+ "search.searchView.semanticSearchBehavior.manual": "セマンティック検索結果のみを手動で要求します。",
+ "search.searchView.semanticSearchBehavior.runOnEmpty": "テキスト検索結果が空の場合にのみ、セマンティック結果を自動的に要求します。",
"search.seedOnFocus": "検索ビューにフォーカスを置いたときに、検索クエリが、エディターで選択されているテキストに更新されます。これは、クリックされたときか、`workbench.views.search.focus` コマンドがトリガーされたときに発生します。",
"search.seedWithNearestWord": "アクティブなエディターで何も選択されていないときに、カーソルに最も近い語からのシード検索を有効にします。",
"search.showLineNumbers": "検索結果に行番号を表示するかどうかを制御します。",
@@ -8131,25 +13565,92 @@
"searchSortOrder.filesOnly": "結果はフォルダーの順序を無視したファイル名でアルファベット順に並べ替えられます。",
"searchSortOrder.modified": "結果は、ファイルの最終更新日で降順に並べ替えられます。",
"searchSortOrder.type": "結果は、ファイル拡張子でアルファベット順に並べ替えられます。",
- "showTriggerActions": "ワークスペース内のシンボルへ移動...",
"symbolsQuickAccess": "ワークスペース内のシンボルへ移動",
"symbolsQuickAccessPlaceholder": "開くシンボルの名前を入力します。",
- "useGlobalIgnoreFiles": "ファイルを検索するときに、グローバルの `.gitignore` と `.ignore` ファイルを使用するかどうかを制御します。`#search.useIgnoreFiles#` を有効にする必要があります。",
+ "textSearchPickerHelp": "テキストの検索",
+ "textSearchPickerPlaceholder": "ワークスペース ファイル内のテキストを検索します。",
+ "useGlobalIgnoreFiles": "ファイルを検索するときに、グローバル gitignore ファイル (たとえば、'$HOME/.config/git/ignore' から) を使用するかどうかを制御します。{0} を有効にする必要があります。",
"useIgnoreFiles": "ファイルを検索するときに、`.gitignore` ファイルと `.ignore` ファイルを使用するかどうかを制御します。",
"usePCRE2Deprecated": "廃止されました。PCRE2 でのみサポートされている正規表現機能を使用すると、PCRE2 が自動的に使用されます。",
- "useParentIgnoreFiles": "ファイルを検索するときに、親ディレクトリで `.gitignore` ファイルと `.ignore` ファイルを使用するかどうかを制御します。`#search.useIgnoreFiles#` を有効にする必要があります。",
+ "useParentIgnoreFiles": "ファイルを検索するときに、親ディレクトリで `.gitignore` ファイルと `.ignore` ファイルを使用するかどうかを制御します。{0} を有効にする必要があります。",
"useRipgrep": "この設定は推奨されず、現在 \"search.usePCRE2\" にフォール バックします。",
"useRipgrepDeprecated": "推奨されません。高度な正規表現機能サポートのために \"search.usePCRE2\" の利用を検討してください。"
},
- "vs/workbench/contrib/search/browser/searchActions": {
+ "vs/workbench/contrib/search/browser/searchActionsBase": {
+ "search": "検索"
+ },
+ "vs/workbench/contrib/search/browser/searchActionsCopy": {
+ "copyAllLabel": "すべてコピー",
+ "copyMatchLabel": "コピー",
+ "copyPathLabel": "パスのコピー",
+ "getSearchResultsLabel": "検索結果の取得"
+ },
+ "vs/workbench/contrib/search/browser/searchActionsFind": {
+ "excludeFileTypeFromSearch": "検索からファイルの種類を除外する",
+ "excludeFolderFromSearch": "フォルダーを検索から除外",
+ "findInFiles": "フォルダーを指定して検索",
+ "findInFiles.args": "検索のためのオプションのセット",
+ "findInFiles.description": "ワークスペース検索を開く",
+ "findInFolder": "フォルダー内を検索...",
+ "findInWorkspace": "ワークスペース内を検索...",
+ "includeFileTypeInSearch": "検索からファイルの種類を含める",
+ "miFindInFiles": "フォルダーを指定して検索(&&I)",
+ "restrictResultsToFolder": "検索をフォルダーに制限",
+ "revealInSideBar": "エクスプローラー ビューで表示",
+ "search.expandRecursively": "再帰的に展開する"
+ },
+ "vs/workbench/contrib/search/browser/searchActionsNav": {
+ "AddCursorsAtSearchResults.label": "検索結果にカーソルを追加",
+ "CloseReplaceWidget.label": "置換ウィジェットを閉じる",
+ "FocusNextInputAction.label": "次の入力にフォーカス",
"FocusNextSearchResult.label": "次の検索結果にフォーカス",
+ "FocusPreviousInputAction.label": "前の入力にフォーカス",
"FocusPreviousSearchResult.label": "前の検索結果にフォーカス",
- "RemoveAction.label": "無視",
- "file.replaceAll.label": "すべて置換",
- "match.replace.label": "置換",
+ "FocusSearchFromResults.label": "結果から検索にフォーカス",
+ "OpenMatch.label": "一致を開く",
+ "OpenMatchToSide.label": "一致を横に開く",
+ "ToggleCaseSensitiveCommandId.label": "大文字と小文字の区別の切り替え",
+ "TogglePreserveCaseId.label": "大文字と小文字の区別の保持の切り替え",
+ "ToggleQueryDetailsAction.label": "クエリ詳細の切り替え",
+ "ToggleRegexCommandId.label": "正規表現の切り替え",
+ "ToggleWholeWordCommandId.label": "単語単位に切り替え",
+ "focusSearchListCommandLabel": "リストにフォーカス",
"replaceInFiles": "複数のファイルで置換",
"toggleTabs": "型の検索を切り替える"
},
+ "vs/workbench/contrib/search/browser/searchActionsRemoveReplace": {
+ "RemoveAction.label": "無視",
+ "file.replaceAll.label": "すべて置換",
+ "match.replace.label": "置換"
+ },
+ "vs/workbench/contrib/search/browser/searchActionsSymbol": {
+ "miGotoSymbolInWorkspace": "ワークスペース内のシンボルへ移動(&&W)...",
+ "showTriggerActions": "ワークスペース内のシンボルへ移動..."
+ },
+ "vs/workbench/contrib/search/browser/searchActionsTextQuickAccess": {
+ "quickTextSearch": "クイック検索:"
+ },
+ "vs/workbench/contrib/search/browser/searchActionsTopBar": {
+ "CancelSearchAction.label": "検索のキャンセル",
+ "ClearSearchResultsAction.label": "検索結果のクリア",
+ "CollapseDeepestExpandedLevelAction.label": "すべて折りたたんで表示します。",
+ "ExpandAllAction.label": "すべて展開",
+ "RefreshAction.label": "最新の情報に更新",
+ "SearchWithAIAction.label": "AI を使用した検索",
+ "ViewAsListAction.label": "リストとして表示",
+ "ViewAsTreeAction.label": "ツリーとして表示",
+ "clearSearchHistoryLabel": "検索履歴のクリア"
+ },
+ "vs/workbench/contrib/search/browser/searchChatContext": {
+ "chatContext.attach.files.placeholder": "ファイルまたはフォルダーを名前で検索してください",
+ "chatContext.folder": "ファイルとフォルダー...",
+ "chatContext.searchResults": "検索結果",
+ "select.symb": "記号の選択",
+ "symbols": "記号..."
+ },
+ "vs/workbench/contrib/search/browser/searchFindInput": {
+ "searchFindInputNotebookFilter.label": "ノートブック検索フィルター"
+ },
"vs/workbench/contrib/search/browser/searchIcons": {
"searchClearIcon": "検索ビュー内の結果をクリアするためのアイコン。",
"searchCollapseAllIcon": "検索ビュー内の結果を折りたたむためのアイコン。",
@@ -8157,12 +13658,18 @@
"searchExpandAllIcon": "検索ビュー内の結果を展開するためのアイコン。",
"searchHideReplaceIcon": "検索ビュー内の置換セクションを折りたたむためのアイコン。",
"searchNewEditorIcon": "新しい検索エディターを開くためのアクションのアイコン。",
+ "searchOpenInFile": "現在の検索結果のファイルに移動するアクションのアイコン。",
"searchRefreshIcon": "検索ビュー内で最新の情報に更新するためのアイコン。",
"searchRemoveIcon": "検索結果を削除するためのアイコン。",
"searchReplaceAllIcon": "検索ビュー内のすべてを置換するためのアイコン。",
"searchReplaceIcon": "検索ビュー内の置換のためのアイコン。",
+ "searchSeeMoreIcon": "検索ビューでさらにコンテキストを表示するアイコン。",
+ "searchShowAsList": "検索ビューで結果をリストとして表示するためのアイコン。",
+ "searchShowAsTree": "検索ビューで結果をツリーとして表示するためのアイコン。",
"searchShowContextIcon": "検索エディターでコンテキストを切り替えるためのアイコン。",
"searchShowReplaceIcon": "検索ビューの置換セクションを展開するためのアイコン。",
+ "searchSparkleEmpty": "検索で AI の結果を非表示にするアイコン。",
+ "searchSparkleFilled": "AI の結果を検索に表示するアイコン。",
"searchStopIcon": "検索ビュー内の停止のためのアイコン。",
"searchViewIcon": "検索ビューのアイコンを表示します。"
},
@@ -8176,29 +13683,31 @@
"lineNumStr": "{0} 行から",
"numLinesStr": "さらに {0} 行",
"otherFilesAriaLabel": "ワークスペースの外側で {0} 件の一致、検索結果",
- "replacePreviewResultAria": "テキスト {3} の {2} 列目の {0} を {1} に置換します",
+ "replacePreviewResultAria": "列 {1} の '{0}' によって {2} が {3} に置き換えられます",
"search": "検索",
"searchFileMatch": "{0} 個のファイルが見つかりました",
"searchFileMatches": "{0} 個のファイルが見つかりました",
+ "searchFolderMatch.aiText.label": "AI 支援の結果",
"searchFolderMatch.other.label": "その他のファイル",
+ "searchFolderMatch.plainText.label": "結果のテキスト表示",
"searchMatch": "一致する項目が {0} 件見つかりました",
"searchMatches": "一致する項目が {0} 件見つかりました",
- "searchResultAria": "テキスト {2} の {1} 列目に {0} が見つかりました"
+ "searchResultAria": "列 {1} の '{0}' によって {2} が見つかりました"
},
"vs/workbench/contrib/search/browser/searchView": {
- "ariaSearchResultsClearStatus": "検索結果がクリアされました",
"ariaSearchResultsStatus": "検索により {1} 個のファイル内の {0} 件の結果が返されました",
"disableOpenEditors": "ワークスペース全体での検索",
"emptySearch": "空の検索",
"excludes.enable": "有効にする",
"forTerm": " - 検索: {0}",
+ "keywordSuggestion.message": "代わりに次を検索します。",
"moreSearch": "詳細検索の切り替え",
"noOpenEditorResultsExcludes": "'{0}' 以外の開いているエディターで結果は見つかりませんでした - ",
- "noOpenEditorResultsFound": "開いているエディターで結果は見つかりませんでした。設定の構成除外をレビューし、お客様の gitignore ファイルをご確認ください - ",
+ "noOpenEditorResultsFound": "開いているエディターで結果は見つかりませんでした。構成済み除外をレビューし、gitignore ファイルをご確認ください - ",
"noOpenEditorResultsIncludes": "'{0}' と一致する、開いているエディターに結果が見つかりませんでした - ",
"noOpenEditorResultsIncludesExcludes": "'{1}' を除外した、'{0}' と一致する、開いているエディターに結果は見つかりませんでした -",
"noResultsExcludes": "'{0}' を除外した結果はありませんでした - ",
- "noResultsFound": "結果がありません。除外構成の設定を確認し、gitignore ファイルを調べてください - ",
+ "noResultsFound": "結果が見つかりませんでした。構成済み除外をレビューし、gitignore ファイルをご確認ください - ",
"noResultsIncludes": "'{0}' に結果はありません - ",
"noResultsIncludesExcludes": "'{0}' に '{1}' を除外した結果はありません - ",
"onlyOpenEditors": "開いているファイルのみ検索する",
@@ -8206,7 +13715,6 @@
"openFolder": "フォルダーを開く",
"openInEditor.message": "エディターで開く",
"openInEditor.tooltip": "現在の検索結果をエディターにコピーする",
- "openSettings.learnMore": "詳細を表示",
"openSettings.message": "設定を開く",
"placeholder.excludes": "例: *.ts, src/**/exclude",
"placeholder.includes": "例: *.ts, src/**/include",
@@ -8239,7 +13747,9 @@
"searchPathNotFoundError": "検索パスが見つかりません: {0}",
"searchScope.excludes": "除外するファイル",
"searchScope.includes": "含めるファイル",
+ "searchWithAIButtonTooltip": "AI で検索します",
"searchWithoutFolder": "フォルダーを開いたり指定したりしていません。開いているファイルのみが現在検索されています - ",
+ "triggerAISearch.tooltip": "AI を使用して検索します。",
"useExcludesAndIgnoreFilesDescription": "除外設定を使用してファイルを無視",
"useIgnoresAndExcludesDisabled": "設定の除外とファイルの無視が無効です"
},
@@ -8292,6 +13802,7 @@
"searchEditor.deleteResultBlock": "ファイル削除の結果"
},
"vs/workbench/contrib/searchEditor/browser/searchEditorInput": {
+ "searchEditorLabelIcon": "検索エディター ラベルのアイコン。",
"searchTitle": "検索",
"searchTitle.withQuery": "検索: {0}"
},
@@ -8304,30 +13815,20 @@
"oneResult": "1 件の結果",
"searchMaxResultsWarning": "結果セットにはすべての一致項目のサブセットのみが含まれています。より限定的な検索条件を入力して、検索結果を絞り込みます。"
},
- "vs/workbench/contrib/sessionSync/browser/sessionSync.contribution": {
- "apply edit session warning": "編集セッションを適用すると、コミットされていない既存の変更が上書きされる可能性があります。続行しますか?",
- "apply failed": "編集セッションを適用できませんでした。",
- "applying edit session": "編集セッションを適用しています...",
- "client too old": "この編集セッションを適用するには、新しいバージョンの {0} にアップグレードしてください。",
- "continue edit session": "編集セッションを続行...",
- "continue edit session in local folder": "ローカル フォルダーで開く",
- "continueEditSession.openLocalFolder.title": "ローカル フォルダーを選択して編集セッションを続行する",
- "continueEditSessionExtPoint": "別の環境で現在の編集セッションを続行するためのオプションを提供する",
- "continueEditSessionExtPoint.command": "実行するコマンドの識別子。コマンドは、'commands' セクションで宣言し、現在の編集セッションを続行できる別の環境を表す URI を返す必要があります。",
- "continueEditSessionExtPoint.group": "このアイテムが属するグループ。",
- "continueEditSessionExtPoint.when": "このアイテムを表示するために満たす必要がある条件。",
- "continueEditSessionItem.openInLocalFolder": "ローカル フォルダーで開く",
- "continueEditSessionPick.placeholder": "作業を続行する方法を選択する",
- "continueEditSessionPick.title": "編集セッションを続行...",
- "editSessionsEnabled": "Web、デスクトップ、またはデバイスを切り替えるときに、コミットされていない変更を保存および再開するためのクラウド対応アクションを表示するかどうかを制御します。",
- "no edit session": "適用する編集セッションはありません。",
- "no edit session content for ref": "ID {0} の編集セッション コンテンツを適用できませんでした。",
- "no edits to store": "保存する編集がないため、編集セッションの保存をスキップしました。",
- "payload failed": "編集セッションを保存できません。",
- "payload too large": "編集セッションがサイズ制限を超えたため、保存できません。",
- "resume latest": "最新の編集セッションを再開する",
- "store current": "現在の編集セッションを保存する",
- "storing edit session": "編集セッションを保存しています..."
+ "vs/workbench/contrib/share/browser/share.contribution": {
+ "close": "閉じる",
+ "experimental.share.enabled": "{0} が {1} の場合に、コマンド センターの横に [共有] アクションを表示するかどうかを制御します。",
+ "generating link": "リンクを生成しています...",
+ "open link": "リンクを開く",
+ "share": "共有...",
+ "shareSuccess": "リンクをクリップボードにコピーしました!",
+ "shareTextSuccess": "テキストがクリップボードにコピーされました。"
+ },
+ "vs/workbench/contrib/share/browser/shareService": {
+ "shareProviderCount": "使用可能な共有プロバイダーの数",
+ "toggle.share": "共有",
+ "toggle.shareDescription": "タイトル バーの共有アクションの表示/非表示を切り替えます",
+ "type to filter": "{0} を共有する方法を選択する"
},
"vs/workbench/contrib/snippets/browser/commands/abstractSnippetsActions": {
"snippets": "スニペット"
@@ -8336,22 +13837,23 @@
"bad_name1": "無効なファイル名",
"bad_name2": "'{0}' は無効なファイル名です",
"bad_name3": "'{0}' は既に存在します",
+ "detail.label": "({0}) {1}",
"global.1": "({0})",
"global.scope": "(グローバル)",
"group.global": "既存のスニペット",
- "miOpenSnippets": "ユーザー スニペット(&&S)",
+ "miOpenSnippets": "&&スニペット",
"name": "スニペット ファイル名の入力",
"new.folder": "'{0}' の新しいスニペット ファイル...",
"new.global": "新しいグローバル スニペット ファイル...",
"new.global.sep": "新しいスニペット",
"new.global_scope": "GLOBAL",
"new.workspace_scope": "{0} ワークスペース",
- "openSnippet.label": "ユーザー スニペットの構成",
+ "openSnippet.label": "スニペットの構成",
"openSnippet.pickLanguage": "スニペット ファイルの選択もしくはスニペットの作成",
- "userSnippets": "ユーザー スニペット"
+ "userSnippets": "スニペット"
},
"vs/workbench/contrib/snippets/browser/commands/fileTemplateSnippets": {
- "label": "スニペットからファイルを作成する",
+ "label": "スニペットでファイルを満たす",
"placeholder": "スニペットを選択する"
},
"vs/workbench/contrib/snippets/browser/commands/insertSnippet": {
@@ -8361,7 +13863,8 @@
"label": "スニペットで囲む..."
},
"vs/workbench/contrib/snippets/browser/snippetCodeActionProvider": {
- "codeAction": "囲み付き: {0}",
+ "codeAction": "{0}",
+ "more": "その他...",
"overflow.start.title": "スニペットで始める",
"title": "次で始める: {0}"
},
@@ -8404,10 +13907,41 @@
"vscode.extension.contributes.snippets-language": "このスニペットの提供先の言語識別子です。",
"vscode.extension.contributes.snippets-path": "スニペット ファイルのパス。拡張機能フォルダーの相対パスであり、通常 './snippets/' で始まります。"
},
- "vs/workbench/contrib/surveys/browser/ces.contribution": {
- "cesSurveyQuestion": "VS Code チームを支援しませんか? これまで VS Code を使ったご感想をお聞かせください。",
- "giveFeedback": "フィードバックの送信",
- "remindLater": "後で通知する"
+ "vs/workbench/contrib/speech/browser/speechService": {
+ "speechProviderDescription": "UI に表示される、この音声認識プロバイダーの説明。",
+ "speechProviderName": "この音声プロバイダーの一意の名前。",
+ "vscode.extension.contributes.speechProvider": "音声プロバイダーを提供する"
+ },
+ "vs/workbench/contrib/speech/common/speechService": {
+ "hasSpeechProvider": "音声プロバイダーが音声サービスに登録されています。",
+ "speechLanguage.da-DK": "デンマーク語 (デンマーク)",
+ "speechLanguage.de-DE": "ドイツ語 (ドイツ)",
+ "speechLanguage.en-AU": "英語 (オーストラリア)",
+ "speechLanguage.en-CA": "英語 (カナダ)",
+ "speechLanguage.en-GB": "英語 (イギリス)",
+ "speechLanguage.en-IE": "英語 (アイルランド)",
+ "speechLanguage.en-IN": "英語 (インド)",
+ "speechLanguage.en-NZ": "英語 (ニュージーランド)",
+ "speechLanguage.en-US": "英語 (米国)",
+ "speechLanguage.es-ES": "スペイン語 (スペイン)",
+ "speechLanguage.es-MX": "スペイン語 (メキシコ)",
+ "speechLanguage.fr-CA": "フランス語 (カナダ)",
+ "speechLanguage.fr-FR": "フランス語 (フランス)",
+ "speechLanguage.hi-IN": "ヒンディー語 (インド)",
+ "speechLanguage.it-IT": "イタリア語 (イタリア)",
+ "speechLanguage.ja-JP": "日本語 (日本)",
+ "speechLanguage.ko-KR": "韓国語 (韓国)",
+ "speechLanguage.nl-NL": "オランダ語 (オランダ)",
+ "speechLanguage.pt-BR": "ポルトガル語 (ブラジル)",
+ "speechLanguage.pt-PT": "ポルトガル語 (ポルトガル)",
+ "speechLanguage.ru-RU": "ロシア語 (ロシア)",
+ "speechLanguage.sv-SE": "スウェーデン語 (スウェーデン)",
+ "speechLanguage.tr-TR": "トルコ語 (トルコ)",
+ "speechLanguage.zh-CN": "中国語 (簡体字、中国)",
+ "speechLanguage.zh-HK": "中国語 (繁体、香港特別行政区)",
+ "speechLanguage.zh-TW": "中国語 (繁体字、台湾)",
+ "speechToTextInProgress": "音声テキスト変換セッションが進行中です。",
+ "textToSpeechInProgress": "テキスト読み上げセッションが進行中です。"
},
"vs/workbench/contrib/surveys/browser/languageSurveys.contribution": {
"helpUs": "{0} のサポートの改善にご協力ください",
@@ -8421,13 +13955,6 @@
"surveyQuestion": "短いフィードバック アンケートにご協力をお願いできますか?",
"takeSurvey": "アンケートの実施"
},
- "vs/workbench/contrib/tags/electron-browser/workspaceTagsService": {
- "workspaceFound": "このフォルダーには、ワークスペース ファイル '{0}' が含まれています。それを開きますか? ワークスペース ファイルに関しての [詳細情報]({1}) をご覧ください。",
- "openWorkspace": "ワークスペースを開く",
- "workspacesFound": "このフォルダーには、複数のワークスペース ファイルが含まれています。1 つを開いてみますか?ワークスペース ファイルに関しての [詳細情報]({0}) をご覧ください。",
- "selectWorkspace": "ワークスペースを選択",
- "selectToOpen": "開くワークスペースを選択します。"
- },
"vs/workbench/contrib/tasks/browser/abstractTaskService": {
"ConfigureTaskRunnerAction.label": "タスクの構成",
"TaskServer.folderIgnored": "{0} フォルダーはタスク バージョン 0.1.0 を使用しているために無視されます",
@@ -8443,18 +13970,23 @@
"TaskService.fetchingBuildTasks": "ビルド タスクをフェッチしています...",
"TaskService.fetchingTestTasks": "テスト タスクをフェッチしています...",
"TaskService.ignoredFolder": "次のワークスペース フォルダーはタスク バージョン 0.1.0 を使用しているため無視されます: {0}",
+ "TaskService.instanceToTerminate": "終了するインスタンスを選択してください",
"TaskService.noBuildTask": "実行するビルド タスクがありません。ビルド タスクを構成する...",
"TaskService.noBuildTask1": "ビルド タスクが定義されていません。tasks.json ファイルでタスクに 'isBuildCommand' というマークを付けてください。",
"TaskService.noBuildTask2": "ビルド タスクが定義されていません。tasks.json ファイルでタスクに 'build' グループとしてマークを付けてください。",
- "TaskService.noConfiguration": "エラー: {0} タスクの検出は、次の構成のタスクに貢献しませんでした:\r\n{1}\r\nそのタスクは無視されます。\r\n",
+ "TaskService.noConfiguration": "エラー: {0} タスクの検出は、次の構成のタスクに貢献しませんでした。\r\n{1}\r\nこのタスクは無視されます。",
"TaskService.noEntryToRun": "タスクの構成",
+ "TaskService.noInstanceRunning": "現在実行中のインスタンスはありません",
+ "TaskService.noRunningTasks": "再起動する実行中のタスクがありません",
"TaskService.noTaskIsRunning": "実行中のタスクはありません",
"TaskService.noTaskRunning": "現在実行中のタスクはありません",
"TaskService.noTaskToRestart": "再起動するタスクがありません",
+ "TaskService.noTasks": "再接続する永続タスクはありません。",
"TaskService.noTestTask1": "テスト タスクが定義されていません。tasks.json ファイルでタスクに 'isTestCommand' というマークを付けてください。",
"TaskService.noTestTask2": "テスト タスクが定義されていません。tasks.json ファイルでタスクに 'test' グループとしてマークを付けてください。",
"TaskService.noTestTaskTerminal": "実行するテスト タスクがありません。タスクを構成する...",
"TaskService.notAgain": "今後表示しない",
+ "TaskService.notConnecting": "設定タスクは構成値 {0} に接続され、タスクは既に {1} に再接続されました",
"TaskService.openJsonFile": "tasks.json ファイルを開く",
"TaskService.pickBuildTask": "実行するビルド タスクを選択",
"TaskService.pickBuildTaskForLabel": "ビルド タスクを選択します (既定のビルド タスクが定義されていません)",
@@ -8464,19 +13996,24 @@
"TaskService.pickShowTask": "出力を表示するタスクを選択",
"TaskService.pickTask": "構成するタスクを選択",
"TaskService.pickTestTask": "実行するテスト タスクを選択してください",
- "TaskService.providerUnavailable": "警告: {0} タスクは現在の環境では使用できません。\r\n",
+ "TaskService.providerUnavailable": "警告: {0} タスクは現在の環境では使用できません。",
+ "TaskService.reconnected": "実行中のタスクに再接続しました。",
+ "TaskService.reconnecting": "実行中のタスクに再接続しています...",
+ "TaskService.reconnectingTasks": "{0} タスクに再接続しています...",
"TaskService.requestTrust": "タスクを一覧表示して実行するには、このワークスペース内の一部のファイルをコードとして実行している必要があります。",
+ "TaskService.skippingReconnection": "ウィンドウの再読み込み、接続されたタスクの設定、永続タスクの削除ではなく、スタートアップの種類",
"TaskService.taskToRestart": "再起動するタスクを選択してください",
"TaskService.taskToTerminate": "終了するタスクを選択",
"TaskService.template": "タスク テンプレートを選択",
"TaskService.terminateAllRunningTasks": "すべての実行中のタスク",
+ "TaskSystem.InstancePolicy.warn": "このタスクのインスタンス制限に達しました。",
"TaskSystem.active": "既に実行中のタスクがあります。まずこのタスクを終了してから、別のタスクを実行してください。",
- "TaskSystem.activeSame.noBackground": "タスク '{0}' は既にアクティブです。",
"TaskSystem.configurationErrors": "エラー: 指定したタスク構成に検証エラーがあり、使用できません。最初にエラーを修正してください。",
- "TaskSystem.invalidTaskJson": "エラー: tasks.json ファイルの内容に構文エラーがあります。タスクを実行する前に修正してください。\r\n",
- "TaskSystem.invalidTaskJsonOther": "エラー: {0} の tasks json の内容に構文エラーがあります。タスクを実行する前に修正してください。\r\n",
+ "TaskSystem.invalidTaskJson": "エラー: tasks.json ファイルの内容に構文エラーがあります。タスクを実行する前に修正してください。",
+ "TaskSystem.invalidTaskJsonOther": "エラー: {0}の json タスクの内容に構文エラーがあります。タスクを実行する前に修正してください。",
"TaskSystem.restartFailed": "タスク {0} を終了して再開できませんでした",
"TaskSystem.saveBeforeRun.prompt.title": "すべてのエディターを保存しますか?",
+ "TaskSystem.taskNoLongerExists": "タスク {0} は存在しないか、変更されています。再起動できません。",
"TaskSystem.unknownError": "タスクの実行中にエラーが発生しました。詳細については、タスク ログを参照してください。",
"TaskSystem.versionSettings": "タスク バージョン 2.0.0 のみがユーザ設定で許可されています。",
"TaskSystem.versionWorkspaceFile": "タスク バージョン 2.0.0 のみがワークスペース構成ファイルで許可されています。",
@@ -8490,44 +14027,55 @@
"customizeParseErrors": "現在のタスクの構成にはエラーがあります。タスクをカスタマイズする前にエラーを修正してください。",
"detail": "タスクを実行する前にすべてのエディターを保存しますか?",
"detected": "検出されたタスク",
- "moreThanOneBuildTask": "tasks.json には定義されたビルド タスクが多数あります。最初の 1 つを実行します。\r\n",
+ "moreThanOneBuildTask": "tasks.json には定義されたビルド タスクが多数あります。最初の 1 つを実行します。",
"recentlyUsed": "最近使用されたタスク",
- "restartTask": "タスクの再開",
"runTask.arg": "クイック ピックに表示されるタスクをフィルター処理します",
"runTask.label": "フィルター処理するタスクのラベルまたは用語",
- "runTask.task": "The task's label or a term to filter by",
+ "runTask.task": "フィルター処理するタスクのラベルまたは用語",
"runTask.type": "投稿済みタスクの種類",
- "saveBeforeRun.dontSave": "保存しない",
- "saveBeforeRun.save": "保存",
+ "saveBeforeRun.dontSave": "保存しない(&&N)",
+ "saveBeforeRun.save": "保存(&&S)",
+ "savePersistentTask": "永続タスクの保存中: {0}",
"selectProblemMatcher": "スキャンするタスク出力のエラーと警告の種類を選択",
"showOutput": "出力の表示",
+ "task.longRunningTaskCompleted": "タスクは {0} で終了しました。",
+ "task.longRunningTaskCompletedWithLabel": "タスク \"{0}\" は {1} で終了しました。",
+ "task.longRunningTaskDurationMinutes": "{0} 分",
+ "task.longRunningTaskDurationMinutesSeconds": "{0} 分 {1} 秒",
+ "task.longRunningTaskDurationSeconds": "{0} 秒",
+ "taskEvent": "タスク イベントの種類: {0}",
"taskQuickPick.userSettings": "ユーザー",
- "taskService.ignoreingFolder": "ワークスペース フォルダー {0} のタスク構成を無視します。マルチ フォルダー ワークスペースのタスク サポートでは、すべてのフォルダーでタスク バージョン 2.0.0 が使用されている必要があります\r\n",
+ "taskService.getSavedTasks": "タスク ストレージからタスクを取得しています。",
+ "taskService.getSavedTasks.error": "タスク ストレージからタスクをフェッチできませんでした: {0}。",
+ "taskService.getSavedTasks.reading": "タスク ストレージ ({0}、{1}、{2}) からタスクを読み取り中",
+ "taskService.getSavedTasks.resolved": "解決されたタスク {0}",
+ "taskService.getSavedTasks.unresolved": "ツール {0} を解決できません ",
+ "taskService.gettingCachedTasks": "キャッシュされたタスク {0} を返しています",
+ "taskService.ignoringFolder": "ワークスペース フォルダー {0}のタスク構成を無視します。マルチ フォルダー ワークスペースのタスク サポートでは、すべてのフォルダーでタスク バージョン 2.0.0 が使用されている必要があります",
"taskService.openDiff": "差分を開く",
"taskService.openDiffs": "差分を開く",
+ "taskService.removePersistentTask": "永続タスク {0} を削除しています",
+ "taskService.setPersistentTask": "永続タスク {0} を設定しています",
"taskService.upgradeVersion": "非推奨のタスク バージョン 0.1.0 が削除されました。タスクはバージョン 2.0.0 にアップグレードされました。差分を開いて、アップグレードを確認します。",
"taskService.upgradeVersionPlural": "非推奨のタスク バージョン 0.1.0 が削除されました。タスクはバージョン 2.0.0 にアップグレードされました。差分を開いて、アップグレードを確認します。",
"taskServiceOutputPrompt": "タスク エラーがあります。詳細は出力をご覧ください。",
+ "taskServiceOutputPromptChat": "タスク エラーがあります。チャットを使用して修正するか、詳細の出力を表示します。",
"tasks": "タスク",
"tasksJsonComment": "\t// tasks.json の形式に関するドキュメントについては \r\n\t// https://go.microsoft.com/fwlink/?LinkId=733558 を参照してください",
- "terminateTask": "タスクの終了",
+ "troubleshootWithChat": "AI で修正",
"unexpectedTaskType": "\"{0}\" タスクのタスク プロバイダーで予期せずに種類が \"{1}\" のタスクが提供されました。\r\n"
},
"vs/workbench/contrib/tasks/browser/runAutomaticTasks": {
- "allow": "許可して実行",
- "disallow": "許可しない",
- "openTask": "ファイルを開く",
- "openTasks": "ファイルを開く",
- "tasks.run.allowAutomatic": "このワークスペースには、このワークスペースを開くと自動的に実行されるよう定義されている ({1}) タスク ({0}) が入っています。このワークスペースを開くときにタスクの自動実行を許可しますか?",
- "workbench.action.tasks.allowAutomaticTasks": "フォルダーで自動タスクを許可する",
- "workbench.action.tasks.disallowAutomaticTasks": "フォルダー内で自動タスクを許可しない",
- "workbench.action.tasks.manageAutomaticRunning": "フォルダー内の自動タスクの管理"
+ "workbench.action.tasks.allowAutomaticTasks": "自動タスクの許可",
+ "workbench.action.tasks.disallowAutomaticTasks": "自動タスクの許可",
+ "workbench.action.tasks.manageAutomaticRunning": "自動タスクの管理"
},
"vs/workbench/contrib/tasks/browser/task.contribution": {
"BuildAction.label": "ビルド タスクの実行",
"ConfigureDefaultBuildTask.label": "既定のビルド タスクを構成する",
"ConfigureDefaultTestTask.label": "既定のテスト タスクを構成する",
"ReRunTaskAction.label": "最後のタスクを再実行",
+ "RerunAllRunningTasksAction.label": "実行中のすべてのタスクを再実行します",
"RestartTaskAction.label": "実行中のタスクの再起動",
"RunTaskAction.label": "タスクの実行",
"ShowLogAction.label": "タスク ログの表示",
@@ -8545,12 +14093,12 @@
"numberOfRunningTasks": "{0} 件の実行中のタスク",
"runningTasks": "実行中のタスクを表示",
"status.runningTasks": "実行中のタスク",
+ "task.NotifyWindowOnTaskCompletion": "ウィンドウがフォーカスされていない間にタスクが終了した場合、OS 通知を表示するまでの最小タスク実行時間 (ミリ秒) を制御します。通知を無効にするには -1 に設定します。通知を常に表示するには 0 に設定します。これには、ウィンドウ バッジと通知トーストが含まれます。",
"task.SaveBeforeRun.prompt": "実行前にエディターを保存するかどうかを確認します。",
- "task.allowAutomaticTasks": "フォルダー内の自動タスクを有効にします。",
- "task.allowAutomaticTasks.auto": "各フォルダーのアクセス許可ダイアログを表示する",
+ "task.allowAutomaticTasks": "自動タスクを有効にする - タスクは信頼されていないワークスペースでは実行されないことに注意してください。",
"task.allowAutomaticTasks.off": "なし",
+ "task.allowAutomaticTasks.on": "常に",
"task.autoDetect": "すべてのタスク プロバイダー拡張機能に対する 'provideTasks' の有効化を制御します。Tasks: Run Task コマンドが低速の場合、タスク プロバイダーの自動検出を無効にすると改善される可能性があります。個々の拡張機能で、自動検出を無効にする設定が備わっている場合もあります。",
- "task.experimental.reconnection": "On window reload, reconnect to running watch/background tasks. Note that this is experimental, so you could encounter issues.",
"task.problemMatchers.neverPrompt": "タスクの実行時に問題マッチャーのプロンプトを表示するかどうかを構成します。'true' に設定してプロンプトしないようにするか、タスクの種類のディクショナリを使用して、特定のタスクの種類に対してのみプロンプトをオフにします。",
"task.problemMatchers.neverPrompt.array": "問題マッチャーを表示しないブール型のタスクのペアを含むオブジェクト。",
"task.problemMatchers.neverPrompt.boolean": "すべてのタスクの動作を表示する問題マッチャーを設定します。",
@@ -8558,24 +14106,25 @@
"task.quickOpen.history": "タスククイックオープンダイアログで追跡された最近のアイテムの数を制御します。",
"task.quickOpen.showAll": "タスクがプロバイダーによってグループ化されている場合、[タスク: タスクの実行] コマンドで、高速の 2 レベル ピッカーの代わりに低速の [すべて表示] の動作を使用します。",
"task.quickOpen.skip": "選択するタスクが 1 つしかない場合に、タスクのクイック ピックをスキップするかどうかを制御します。",
+ "task.reconnection": "ウィンドウの再読み込み時に、問題マッチャーがあるタスクに再接続します。",
"task.saveBeforeRun": "タスクを実行する前に、すべてのダーティなエディターを保存してください。",
"task.saveBeforeRun.always": "実行する前に常にすべてのエディターを保存します。",
"task.saveBeforeRun.never": "実行する前にエディターを保存しません。",
- "task.showDecorations": "監視タスクで見つかった最初の問題など、ターミナル バッファーの関心のあるポイントの装飾を表示します。これは今後のタスクに対してのみ有効になります。",
"task.slowProviderWarning": "プロバイダーの速度が遅いときに警告を表示するかどうかを構成します",
"task.slowProviderWarning.array": "低速なプロバイダーの警告を表示しないタスクの種類の配列。",
"task.slowProviderWarning.boolean": "すべてのタスクに対して低速プロバイダー警告を設定します。",
+ "task.verboseLogging": "タスクの詳細ログを有効にします。",
+ "tasks": "タスク",
"tasksConfigurationTitle": "タスク",
"tasksQuickAccessHelp": "タスクの実行",
"tasksQuickAccessPlaceholder": "実行するタスクの名前を入力します。",
- "ttask.allowAutomaticTasks.on": "常に",
"workbench.action.tasks.openUserTasks": "ユーザー タスクを開く",
- "workbench.action.tasks.openWorkspaceFileTasks": "ワークスペース タスクを開く"
+ "workbench.action.tasks.openWorkspaceFileTasks": "ワークスペース タスクを開く",
+ "workbench.action.tasks.rerunForActiveTerminal": "タスクの再実行"
},
"vs/workbench/contrib/tasks/browser/taskQuickPick": {
- "TaskQuickPick.changeSettingDetails": "{0} タスクのタスク検出を行うと、開いているワークスペース内のファイルがコードとして実行されます。{0} タスク検出の有効化はユーザー設定であり、開いているすべてのワークスペースに適用されます。すべてのワークスペースに対して {0} タスク検出を有効にしますか?",
+ "TaskQuickPick.changeSettingDetails": "{0} タスクのタスク検出を行うと、開いているワークスペース内のファイルがコードとして実行されます。{0} タスク検出の有効化はユーザー設定であり、開いているすべてのワークスペースに適用されます。\r\n\r\nすべてのワークスペースに対して {0} タスク検出を有効にしますか?",
"TaskQuickPick.changeSettingNo": "いいえ",
- "TaskQuickPick.changeSettingYes": "はい",
"TaskQuickPick.changeSettingsOptions": "$(gear) {0} タスク検出がオフになっています。{1} タスク検出を有効にします...",
"TaskQuickPick.goBack": "戻る ↩",
"TaskQuickPick.noTasksForType": "{0} タスクが見つかりませんでした。戻る ↩",
@@ -8591,6 +14140,13 @@
"taskQuickPick.showAll": "すべてのタスクの表示...",
"taskType": "すべての {0} タスク"
},
+ "vs/workbench/contrib/tasks/browser/taskService": {
+ "taskService.processTaskSystem": "プロセス タスク システムは Web でサポートされていません。"
+ },
+ "vs/workbench/contrib/tasks/browser/tasksQuickAccess": {
+ "TaskService.pickRunTask": "実行するタスクの選択",
+ "noTaskResults": "一致するタスクがありません"
+ },
"vs/workbench/contrib/tasks/browser/taskTerminalStatus": {
"task.watchFirstError": "この実行で検出されたエラーの開始",
"taskTerminalStatus.active": "実行中のタスク",
@@ -8603,10 +14159,6 @@
"taskTerminalStatus.warnings": "タスクに警告があります",
"taskTerminalStatus.warningsInactive": "タスクに警告があり、待機しています..."
},
- "vs/workbench/contrib/tasks/browser/tasksQuickAccess": {
- "TaskService.pickRunTask": "実行するタスクの選択",
- "noTaskResults": "一致するタスクがありません"
- },
"vs/workbench/contrib/tasks/browser/terminalTaskSystem": {
"TerminalTaskSystem": "cmd.exe を使用して UNC ドライブ上でシェル コマンドを実行できません。",
"TerminalTaskSystem.nonWatchingMatcher": "タスク {0} はバックグラウンド タスクですが、背景パターンのない問題マッチャーを使用します",
@@ -8615,46 +14167,14 @@
"closeTerminal": "任意のキーを押してターミナルを終了します。",
"dependencyCycle": "依存関係の循環があります。タスク {0} を参照してください。",
"dependencyFailed": "ワークスペース フォルダー '{1}' 内で依存タスクの '{0}' を解決できませんでした",
+ "rerunTask": "タスクの再実行",
"reuseTerminal": "ターミナルはタスクで再利用されます、閉じるには任意のキーを押してください。",
"task.executing": "実行するタスク: {0}",
+ "task.executing.shell-integration": "実行するタスク: {0}",
+ "task.executing.shellIntegration": "実行するタスク: {0}",
"task.executingInFolder": "フォルダー {0} で実行するタスク: {1}",
"unknownProblemMatcher": "問題マッチャー {0} を解決できません。このマッチャーは無視されます"
},
- "vs/workbench/contrib/tasks/common/jsonSchemaCommon": {
- "JsonSchema.args": "さらにコマンドに渡される引数。",
- "JsonSchema.background": "実行済みのタスクが維持され、バッググラウンドで実行されているかどうか。",
- "JsonSchema.command": "実行するコマンド。外部プログラムまたはシェル コマンドを指定できます。",
- "JsonSchema.echoCommand": "実行されるコマンドが出力にエコーされるかどうかを制御します。既定は false です。",
- "JsonSchema.matchers": "使用する問題マッチャー。1 つの文字列または問題マッチャー定義か、文字列と問題マッチャーの配列です。",
- "JsonSchema.options": "追加のコマンド オプション",
- "JsonSchema.options.cwd": "実行されるプログラムまたはスクリプトの現在の作業ディレクトリ。省略すると、Code の現在のワークスペースのルートが使用されます。",
- "JsonSchema.options.env": "実行されるプログラムまたはシェルの環境。省略すると、親プロセスの環境が使用されます。",
- "JsonSchema.promptOnClose": "バックグラウンド タスクの実行中に VS Code を閉じる時に、ユーザーに対してプロンプトが表示されるかどうか。",
- "JsonSchema.shell.args": "シェル引数。",
- "JsonSchema.shell.executable": "使用するシェル。",
- "JsonSchema.shellConfiguration": "使用するシェルを構成します。",
- "JsonSchema.showOutput": "実行中のタスクの出力が表示されるかどうかを制御します。省略すると、'always' が使用されます。",
- "JsonSchema.suppressTaskName": "タスク名を引数としてコマンドに追加するかどうかを制御します。既定は false です。",
- "JsonSchema.taskSelector": "引数がタスクであることを示すプレフィックス。",
- "JsonSchema.tasks": "タスクの構成。普通は外部タスク ランナーで既に定義されているタスクのエンリッチメントです。",
- "JsonSchema.tasks.args": "タスクが呼び出されるときにコマンドに渡される引数。",
- "JsonSchema.tasks.background": "実行されているタスクのキープ アライブを行い、バックグラウンドで実行したままにするかどうか。",
- "JsonSchema.tasks.build": "このタスクを Code の既定のビルド コマンドにマップします。",
- "JsonSchema.tasks.linux": "Linux 固有のコマンド構成",
- "JsonSchema.tasks.mac": "Mac 固有のコマンド構成",
- "JsonSchema.tasks.matcherError": "問題マッチャーを認識できません。この問題マッチャーを提供する拡張機能はインストールされていますか?",
- "JsonSchema.tasks.matchers": "使用する問題マッチャー。文字列、問題マッチャー定義、または文字列と問題マッチャーの配列のいずれかを使用できます。",
- "JsonSchema.tasks.promptOnClose": "タスクを実行したまま VS Code を閉じる場合にユーザーに確認メッセージを表示するかどうか。",
- "JsonSchema.tasks.showOutput": "実行中のタスクの出力が表示されるかどうかを制御します。省略すると、グローバルに定義された値が使用されます。",
- "JsonSchema.tasks.suppressTaskName": "タスク名を引数としてコマンドに追加するかどうかを制御します。省略すると、グローバルに定義された値が使用されます。",
- "JsonSchema.tasks.taskName": "タスクの名前",
- "JsonSchema.tasks.test": "このタスクを Code の既定のテスト コマンドにマップします。",
- "JsonSchema.tasks.watching": "実行済みのタスクが維持され、ファイル システムをウォッチしているかどうか。",
- "JsonSchema.tasks.watching.deprecation": "使用しないでください。代わりに isBackground をご使用ください。",
- "JsonSchema.tasks.windows": "Windows 固有のコマンド構成",
- "JsonSchema.watching": "実行済みのタスクが維持され、ファイル システムをウォッチしているかどうか。",
- "JsonSchema.watching.deprecation": "使用しないでください。代わりに isBackground をご使用ください。"
- },
"vs/workbench/contrib/tasks/common/jsonSchema_v1": {
"JsonSchema._runner": "ランナーが新しくなります。正式なランナー プロパティを使用してください",
"JsonSchema.linux": "Linux 固有のコマンド構成",
@@ -8703,6 +14223,12 @@
"JsonSchema.tasks.identifier": "launch.json または dependsOn 句のタスクを参照するユーザー定義の識別子。",
"JsonSchema.tasks.identifier.deprecated": "ユーザー定義識別子は非推奨です。カスタム タスクには参照として名前が使用され、拡張機能から提供されるタスクには定義されたタスク識別子が使用されます。",
"JsonSchema.tasks.instanceLimit": "同時に実行できるタスクのインスタンスの数。",
+ "JsonSchema.tasks.instancePolicy": "インスタンスの制限に達したときに適用するポリシー。",
+ "JsonSchema.tasks.instancePolicy.prompt": "終了するインスタンスを確認します。",
+ "JsonSchema.tasks.instancePolicy.silent": "何もしません。",
+ "JsonSchema.tasks.instancePolicy.terminateNewest": "最新のインスタンスを終了します。",
+ "JsonSchema.tasks.instancePolicy.terminateOldest": "最も古いインスタンスを終了します。",
+ "JsonSchema.tasks.instancePolicy.warn": "インスタンスの制限に達したことを警告する以外に何もしません。",
"JsonSchema.tasks.isBuildCommand.deprecated": "isBuildCommand プロパティは非推奨です。代わりに group プロパティを使用してください。また 1.14 リリース ノートをご確認ください。",
"JsonSchema.tasks.isShellCommand.deprecated": "isShellCommand プロパティは使用されていません。代わりに、タスクの type プロパティとオプションの shell プロパティをご使用ください。また 1.14 リリース ノートをご確認ください。",
"JsonSchema.tasks.isTestCommand.deprecated": "isTestCommand プロパティは非推奨です。代わりに group プロパティを使用してください。また 1.14 リリース ノートをご確認ください。",
@@ -8715,6 +14241,7 @@
"JsonSchema.tasks.presentation.focus": "パネルがフォーカスされるかどうかを制御します。既定は false です。true に設定した場合、パネルも表示されます。",
"JsonSchema.tasks.presentation.group": "分割ウィンドウを使用して特定の端末グループでタスクを実行するかどうかを制御します。",
"JsonSchema.tasks.presentation.instance": "タスク間でパネルを共有するか、またはこのタスクで占有するか、実行ごとに新しいパネルを作成するかどうかを制御します。",
+ "JsonSchema.tasks.presentation.preserveTerminalName": "タスク完了後にターミナルでタスク名を保持するかどうかを制御します。",
"JsonSchema.tasks.presentation.reveal": "タスクを実行しているターミナルを表示するかどうかを制御します。オプション \"revealProblems\" によってオーバーライドされる可能性があります。既定値は \"常時\" です。",
"JsonSchema.tasks.presentation.reveal.always": "タスクを実行したとき常にターミナルを表示します。",
"JsonSchema.tasks.presentation.reveal.never": "このタスクを実行するときに、今後ターミナルを表示しません。",
@@ -8742,6 +14269,41 @@
"JsonSchema.version": "構成のバージョン番号。",
"JsonSchema.windows": "Windows 固有のコマンド構成"
},
+ "vs/workbench/contrib/tasks/common/jsonSchemaCommon": {
+ "JsonSchema.args": "さらにコマンドに渡される引数。",
+ "JsonSchema.background": "実行済みのタスクが維持され、バッググラウンドで実行されているかどうか。",
+ "JsonSchema.command": "実行するコマンド。外部プログラムまたはシェル コマンドを指定できます。",
+ "JsonSchema.echoCommand": "実行されるコマンドが出力にエコーされるかどうかを制御します。既定は false です。",
+ "JsonSchema.matchers": "使用する問題マッチャー。1 つの文字列または問題マッチャー定義か、文字列と問題マッチャーの配列です。",
+ "JsonSchema.options": "追加のコマンド オプション",
+ "JsonSchema.options.cwd": "実行されるプログラムまたはスクリプトの現在の作業ディレクトリ。省略すると、Code の現在のワークスペースのルートが使用されます。",
+ "JsonSchema.options.env": "実行されるプログラムまたはシェルの環境。省略すると、親プロセスの環境が使用されます。",
+ "JsonSchema.promptOnClose": "バックグラウンド タスクの実行中に VS Code を閉じる時に、ユーザーに対してプロンプトが表示されるかどうか。",
+ "JsonSchema.shell.args": "シェル引数。",
+ "JsonSchema.shell.executable": "使用するシェル。",
+ "JsonSchema.shellConfiguration": "使用するシェルを構成します。",
+ "JsonSchema.showOutput": "実行中のタスクの出力が表示されるかどうかを制御します。省略すると、'always' が使用されます。",
+ "JsonSchema.suppressTaskName": "タスク名を引数としてコマンドに追加するかどうかを制御します。既定は false です。",
+ "JsonSchema.taskSelector": "引数がタスクであることを示すプレフィックス。",
+ "JsonSchema.tasks": "タスクの構成。普通は外部タスク ランナーで既に定義されているタスクのエンリッチメントです。",
+ "JsonSchema.tasks.args": "タスクが呼び出されるときにコマンドに渡される引数。",
+ "JsonSchema.tasks.background": "実行されているタスクのキープ アライブを行い、バックグラウンドで実行したままにするかどうか。",
+ "JsonSchema.tasks.build": "このタスクを Code の既定のビルド コマンドにマップします。",
+ "JsonSchema.tasks.linux": "Linux 固有のコマンド構成",
+ "JsonSchema.tasks.mac": "Mac 固有のコマンド構成",
+ "JsonSchema.tasks.matcherError": "問題マッチャーを認識できません。この問題マッチャーを提供する拡張機能はインストールされていますか?",
+ "JsonSchema.tasks.matchers": "使用する問題マッチャー。文字列、問題マッチャー定義、または文字列と問題マッチャーの配列のいずれかを使用できます。",
+ "JsonSchema.tasks.promptOnClose": "タスクを実行したまま VS Code を閉じる場合にユーザーに確認メッセージを表示するかどうか。",
+ "JsonSchema.tasks.showOutput": "実行中のタスクの出力が表示されるかどうかを制御します。省略すると、グローバルに定義された値が使用されます。",
+ "JsonSchema.tasks.suppressTaskName": "タスク名を引数としてコマンドに追加するかどうかを制御します。省略すると、グローバルに定義された値が使用されます。",
+ "JsonSchema.tasks.taskName": "タスクの名前",
+ "JsonSchema.tasks.test": "このタスクを Code の既定のテスト コマンドにマップします。",
+ "JsonSchema.tasks.watching": "実行済みのタスクが維持され、ファイル システムをウォッチしているかどうか。",
+ "JsonSchema.tasks.watching.deprecation": "使用しないでください。代わりに isBackground をご使用ください。",
+ "JsonSchema.tasks.windows": "Windows 固有のコマンド構成",
+ "JsonSchema.watching": "実行済みのタスクが維持され、ファイル システムをウォッチしているかどうか。",
+ "JsonSchema.watching.deprecation": "使用しないでください。代わりに isBackground をご使用ください。"
+ },
"vs/workbench/contrib/tasks/common/problemMatcher": {
"LegacyProblemMatcherSchema.watchedBegin": "ファイル ウォッチでトリガーされた ウォッチ対象タスクの実行が開始されたことを伝達する正規表現。",
"LegacyProblemMatcherSchema.watchedBegin.deprecated": "このプロパティは非推奨です。代わりに watching プロパティをご使用ください。",
@@ -8767,22 +14329,23 @@
"ProblemMatcherParser.unknownSeverity": "情報: 不明な重大度 {0} です。有効な値は、エラー、警告、情報です。\r\n",
"ProblemMatcherSchema.applyTo": "テキスト ドキュメントで報告された問題が、開いているドキュメントのみ、閉じられたドキュメントのみ、すべてのドキュメントのいずれに適用されるかを制御します。",
"ProblemMatcherSchema.background": "バックグラウンド タスクでアクティブなマッチャーの開始と終了を追跡するパターン。",
- "ProblemMatcherSchema.background.activeOnStart": "true に設定すると、タスクの起動時にバックグラウンド モニターがアクティブ モードになります。これは beginsPattern に一致する行を発行するのと同じです。",
+ "ProblemMatcherSchema.background.activeOnStart": "true に設定すると、バックグラウンド モニターはアクティブ モードで開始されます。これは、タスクの開始時に beginsPattern に一致する行を出力するのと同じです。",
"ProblemMatcherSchema.background.beginsPattern": "出力内で一致すると、バックグラウンド タスクの開始が通知されます。",
"ProblemMatcherSchema.background.endsPattern": "出力内で一致すると、バックグラウンド タスクの終了が通知されます。",
"ProblemMatcherSchema.base": "使用する基本問題マッチャーの名前。",
- "ProblemMatcherSchema.fileLocation": "問題パターンで報告されるファイル名を解釈する方法を定義します。相対的な fileLocation では、配列を使用することができ、配列の 2 番目の要素が相対的なファイル位置を指定するパスになります。",
+ "ProblemMatcherSchema.fileLocation": "問題パターンで報告されたファイル名の解釈方法を定義します。相対 fileLocation は配列である可能性があります。配列の 2 番目の要素は相対ファイルの場所のパスです。検索 fileLocation モードは、2 番目の要素の include/exclude プロパティ (指定されていない場合は現在のワークスペース ディレクトリ) で指定されたディレクトリ内で、詳細 (且つ、おそらく重い) ファイル システムの詳細な検索を実行します。",
"ProblemMatcherSchema.owner": "Code 内の問題の所有者。base を指定すると省略できます。省略して base を指定しない場合、既定は 'external' になります。",
"ProblemMatcherSchema.severity": "キャプチャされた問題の既定の重大度。パターンが重要度の一致グループを定義していない場合に使用されます。",
"ProblemMatcherSchema.source": "'typescript' または 'super lint' のような、この診断のソースを記述する解読可能な文字列",
"ProblemMatcherSchema.watching": "監視パターンの開始と終了を追跡するマッチャー。",
- "ProblemMatcherSchema.watching.activeOnStart": "true に設定すると、タスクの開始時にウォッチャーがアクティブ モードになります。これは beginPattern と一致する行の発行と同等です。",
+ "ProblemMatcherSchema.watching.activeOnStart": "true に設定すると、Watcher はアクティブ モードで開始されます。これは、タスクの開始時に beginsPattern に一致する行を出力するのと同じです。",
"ProblemMatcherSchema.watching.beginsPattern": "出力内で一致すると、ウォッチ中のタスクの開始が通知されます。",
"ProblemMatcherSchema.watching.deprecated": "watching プロパティは使用されなくなりました。代わりに background をご使用ください。",
"ProblemMatcherSchema.watching.endsPattern": "出力内で一致すると、ウォッチ中のタスクの終了が通知されます。",
"ProblemPatternExtPoint": "問題パターンを提供",
"ProblemPatternParser.invalidRegexp": "エラー: 文字列 {0} は有効な正規表現ではありません。\r\n",
"ProblemPatternParser.loopProperty.notLast": "ループ プロパティは、最終行マッチャーでのみサポートされています。",
+ "ProblemPatternParser.problemPattern.emptyPattern": "問題のパターンが無効です。少なくとも 1 つのパターンが含まれている必要があります。",
"ProblemPatternParser.problemPattern.kindProperty.notFirst": "問題のパターンが正しくありません。kind プロパティは最初の要素のみで指定される必要があります。",
"ProblemPatternParser.problemPattern.missingLocation": "問題のパターンが正しくありません。kind: \"file\" または line や location の一致グループのいずれかが必要です。",
"ProblemPatternParser.problemPattern.missingProperty": "問題のパターンが正しくありません。少なくとも、file と message が必要です",
@@ -8836,11 +14399,20 @@
"TaskDefinitionExtPoint": "タスクの種類を提供",
"TaskTypeConfiguration.noType": "タスクの種類を構成するのに必要な 'taskType' プロパティがありません"
},
+ "vs/workbench/contrib/tasks/common/tasks": {
+ "TaskDefinition.missingRequiredProperty": "エラー: タスク識別子 '{0}' に必要な '{1}' プロパティがありません。タスク識別子は無視されます。",
+ "rerunTaskIcon": "再実行タスクの表示アイコン。",
+ "taskTerminalActive": "アクティブなターミナルがタスク ターミナルであるかどうか。",
+ "tasks.taskRunningContext": "タスクが現在実行されているかどうか。",
+ "tasksCategory": "タスク"
+ },
"vs/workbench/contrib/tasks/common/taskService": {
"tasks.customExecutionSupported": "CustomExecution タスクがサポートされているかどうか。'taskDefinition' コントリビューションの WHEN 句で使用することを検討してください。",
"tasks.processExecutionSupported": "ProcessExecution タスクがサポートされているかどうか。'taskDefinition' コントリビューションの WHEN 句で使用することを検討してください。",
+ "tasks.serverlessWebContext": "リモート権限のない Web の場合は True です。",
"tasks.shellExecutionSupported": "ShellExecution タスクがサポートされているかどうか。'taskDefinition' コントリビューションの WHEN 句で使用することを検討してください。",
- "tasks.taskCommandsRegistered": "タスク コマンドがまだ登録されているかどうか"
+ "tasks.taskCommandsRegistered": "タスク コマンドがまだ登録されているかどうか",
+ "tasks.tasksAvailable": "ワークスペースに利用可能なタスクがあるかどうか。"
},
"vs/workbench/contrib/tasks/common/taskTemplates": {
"Maven": "共通の maven コマンドを実行する",
@@ -8848,114 +14420,68 @@
"externalCommand": "任意の外部コマンドを実行する例",
"msbuild": "ビルド ターゲットを実行"
},
- "vs/workbench/contrib/tasks/common/tasks": {
- "TaskDefinition.missingRequiredProperty": "エラー: タスク識別子 '{0}' に必要な '{1}' プロパティがありません。タスク識別子は無視されます。",
- "tasks.taskRunningContext": "タスクが現在実行されているかどうか。",
- "tasksCategory": "タスク"
- },
- "vs/workbench/contrib/tasks/electron-sandbox/taskService": {
+ "vs/workbench/contrib/tasks/electron-browser/taskService": {
"TaskSystem.exitAnyways": "このまま終了(&&E)",
"TaskSystem.noProcess": "起動したタスクは既に存在しません。タスクを起動したバックグラウンド プロセスが VS コードで終了すると、プロセスが孤立することがあります。これを回避するには、待機フラグを設定して最後のバックグラウンド プロセスを開始します。",
"TaskSystem.runningTask": "実行中のタスクがあります。終了しますか?",
"TaskSystem.terminateTask": "タスクの終了(&&T)"
},
+ "vs/workbench/contrib/telemetry/browser/telemetry.contribution": {
+ "showTelemetry": "テレメトリの表示"
+ },
"vs/workbench/contrib/terminal/browser/baseTerminalBackend": {
- "nonResponsivePtyHost": "ターミナルの pty ホスト プロセスへの接続が応答しないため、ターミナルが動作しなくなる可能性があります。",
- "restartPtyHost": "pty ホストの再起動"
+ "nonResponsivePtyHost": "ターミナルの PTY ホスト プロセスへの接続が応答しないため、ターミナルが動作しなくなる可能性があります。PTY ホストを手動で再起動するには、クリックしてください。",
+ "ptyHostStatus": "PTY ホストの状態",
+ "ptyHostStatus.ariaLabel": "PTY ホストが応答しません",
+ "ptyHostStatus.short": "PTY ホスト"
},
"vs/workbench/contrib/terminal/browser/environmentVariableInfo": {
- "extensionEnvironmentContributionChanges": "拡張機能は、ターミナルの環境に次の変更を加えようとしています:",
- "extensionEnvironmentContributionInfo": "拡張機能によって、このターミナルの環境に変更が加えられました",
- "extensionEnvironmentContributionRemoval": "拡張機能によって、ターミナルの環境からこれらの既存の変更を削除しようとしています:",
- "relaunchTerminalLabel": "ターミナルの再起動"
- },
- "vs/workbench/contrib/terminal/browser/links/terminalLink": {
- "focusFolder": "エクスプローラーのフォルダーにフォーカス",
- "openFile": "エディターでファイルを開く",
- "openFolder": "フォルダーを新しいウィンドウで開く"
- },
- "vs/workbench/contrib/terminal/browser/links/terminalLinkDetectorAdapter": {
- "focusFolder": "エクスプローラーのフォルダーにフォーカス",
- "followLink": "リンクにアクセス",
- "openFile": "エディターでファイルを開く",
- "openFolder": "フォルダーを新しいウィンドウで開く",
- "searchWorkspace": "ワークスペースを検索"
- },
- "vs/workbench/contrib/terminal/browser/links/terminalLinkManager": {
- "followForwardedLink": "転送ポートを使用してリンクにアクセスする",
- "followLink": "リンクにアクセス",
- "followLinkUrl": "リンク",
- "terminalLinkHandler.followLinkAlt": "Alt + クリック",
- "terminalLinkHandler.followLinkAlt.mac": "option + クリック",
- "terminalLinkHandler.followLinkCmd": "cmd + クリック",
- "terminalLinkHandler.followLinkCtrl": "Ctrl + クリック"
- },
- "vs/workbench/contrib/terminal/browser/links/terminalLinkQuickpick": {
- "terminal.integrated.localFileLinks": "ローカル ファイル",
- "terminal.integrated.openDetectedLink": "リンクを選択して開く",
- "terminal.integrated.searchLinks": "ワークスペース検索",
- "terminal.integrated.showMoreLinks": "その他のリンクを表示",
- "terminal.integrated.urlLinks": "URL"
+ "ScopedEnvironmentContributionInfo": "ワークスペース",
+ "extensionEnvironmentContributionInfoActive": "次の拡張機能がこのターミナルの環境に変更を加えました:",
+ "extensionEnvironmentContributionInfoStale": "次の拡張機能がこのターミナルの環境に変更を加えるため、ターミナルの再起動を要求しています。",
+ "relaunchTerminalLabel": "ターミナルの再起動",
+ "showEnvironmentContributions": "環境への変更を表示"
},
"vs/workbench/contrib/terminal/browser/terminal.contribution": {
"miToggleIntegratedTerminal": "ターミナル(&&T)",
- "tasksQuickAccessHelp": "開いているすべてのターミナルを表示",
- "tasksQuickAccessPlaceholder": "開く端末名を入力します。",
"terminal": "ターミナル"
},
"vs/workbench/contrib/terminal/browser/terminalActions": {
"emptyTerminalNameInfo": "名前を指定しない場合、既定値にリセットされます",
+ "newWithProfile.location": "ターミナルを作成する場所",
+ "newWithProfile.location.editor": "エディターでターミナルを作成する",
+ "newWithProfile.location.view": "ターミナル ビューでターミナルを作成する",
"noUnattachedTerminals": "アタッチ先にする、アタッチされていないターミナルがありません",
- "quickAccessTerminal": "アクティブなターミナルの切り替え",
"showTerminalTabs": "タブの表示",
"terminalLaunchHelp": "ヘルプを開く",
"workbench.action.terminal.attachToSession": "セッションにアタッチ",
"workbench.action.terminal.clear": "クリア",
- "workbench.action.terminal.clearCommandHistory": "コマンド履歴のクリア",
"workbench.action.terminal.clearSelection": "選択のクリア",
- "workbench.action.terminal.copyLastCommand": "直近のコマンドのコピー",
- "workbench.action.terminal.copySelection": "選択内容のコピー",
- "workbench.action.terminal.copySelectionAsHtml": "選択内容を HTML としてコピー",
"workbench.action.terminal.createTerminalEditor": "エディター領域で新しいターミナルを作成",
"workbench.action.terminal.createTerminalEditorSide": "エディター領域の横に新しいターミナルを作成",
"workbench.action.terminal.detachSession": "セッションを切断",
- "workbench.action.terminal.findNext": "次を検索",
- "workbench.action.terminal.findPrevious": "前を検索",
"workbench.action.terminal.focus.tabsView": "ターミナル タブ ビューにフォーカス",
- "workbench.action.terminal.focusFind": "検索にフォーカスを置く",
"workbench.action.terminal.focusNext": "次のターミナル グループにフォーカス",
"workbench.action.terminal.focusNextPane": "ターミナル グループ内の次のターミナルにフォーカス",
"workbench.action.terminal.focusPrevious": "前のターミナル グループにフォーカス",
"workbench.action.terminal.focusPreviousPane": "ターミナル グループ内の前のターミナルにフォーカス",
- "workbench.action.terminal.goToRecentDirectory": "最近使用したディレクトリに移動する...",
- "workbench.action.terminal.hideFind": "検索を非表示にする",
- "workbench.action.terminal.join": "ターミナルに参加する",
+ "workbench.action.terminal.join": "ターミナルに参加する...",
"workbench.action.terminal.join.insufficientTerminals": "参加アクションに必要なターミナルが不足しています",
"workbench.action.terminal.join.onlySplits": "すべてのターミナルは既に参加済みです",
"workbench.action.terminal.joinInstance": "ターミナルに参加する",
"workbench.action.terminal.kill": "アクティブなターミナルインスタンスを強制終了",
"workbench.action.terminal.killAll": "すべてのターミナルを強制終了する",
"workbench.action.terminal.killEditor": "エディター領域でアクティブなターミナルを強制終了",
- "workbench.action.terminal.navigationModeExit": "ナビゲーション モードの終了",
- "workbench.action.terminal.navigationModeFocusNext": "次の行にフォーカスを移動 (ナビゲーション モード)",
- "workbench.action.terminal.navigationModeFocusNextPage": "次のページにフォーカスする (ナビゲーション モード)",
- "workbench.action.terminal.navigationModeFocusPrevious": "前の行にフォーカスを移動 (ナビゲーション モード)",
- "workbench.action.terminal.navigationModeFocusPreviousPage": "前のページにフォーカスする (ナビゲーション モード)",
"workbench.action.terminal.new": "新しいターミナルを作成する",
"workbench.action.terminal.newInActiveWorkspace": "(アクティブなワークスペースで) ターミナルを作成する",
- "workbench.action.terminal.newWithCwd": "カスタム作業ディレクトリで新しいターミナルの作成を開始する",
"workbench.action.terminal.newWithCwd.cwd": "ターミナル起動時のディレクトリ",
"workbench.action.terminal.newWithProfile": "(プロファイルを使用した) 新しいターミナルを作成する",
"workbench.action.terminal.newWithProfile.profileName": "作成するプロファイルの名前",
"workbench.action.terminal.newWorkspacePlaceholder": "新しいターミナルの作業ディレクトリを選択してください",
- "workbench.action.terminal.openDetectedLink": "検出されたリンクを開く...",
- "workbench.action.terminal.openLastLocalFileLink": "最新のローカル ファイル リンクを開く",
- "workbench.action.terminal.openLastUrlLink": "最新の URL リンクを開く",
"workbench.action.terminal.openSettings": "ターミナル設定の構成",
- "workbench.action.terminal.paste": "アクティブな端末に貼り付け",
- "workbench.action.terminal.pasteSelection": "アクティブなターミナルへの選択範囲の張り付け",
+ "workbench.action.terminal.overriddenCwdDescription": "(オーバーライド済み) {0}",
"workbench.action.terminal.relaunch": "アクティブなターミナルの再起動",
- "workbench.action.terminal.renameWithArg": "現在アクティブなターミナルの名前を変更する",
+ "workbench.action.terminal.rename.prompt": "ターミナルの名前を入力してください",
"workbench.action.terminal.renameWithArg.name": "ターミナルの新しい名前",
"workbench.action.terminal.renameWithArg.noName": "名前引数が指定されていません",
"workbench.action.terminal.resizePaneDown": "ターミナルのサイズを縮小する",
@@ -8964,46 +14490,24 @@
"workbench.action.terminal.resizePaneUp": "ターミナルのサイズを拡大する",
"workbench.action.terminal.runActiveFile": "アクティブなファイルをアクティブなターミナルで実行",
"workbench.action.terminal.runActiveFile.noFile": "ターミナルで実行できるのは、ディスク上のファイルのみです",
- "workbench.action.terminal.runRecentCommand": "最近使用したコマンドを実行する...",
"workbench.action.terminal.runSelectedText": "アクティブなターミナルで選択したテキストを実行",
"workbench.action.terminal.scrollDown": "下にスクロール (行)",
"workbench.action.terminal.scrollDownPage": "スクロール ダウン (ページ)",
"workbench.action.terminal.scrollToBottom": "一番下にスクロール",
- "workbench.action.terminal.scrollToNextCommand": "次のコマンドにスクロール",
- "workbench.action.terminal.scrollToPreviousCommand": "前のコマンドにスクロール",
"workbench.action.terminal.scrollToTop": "一番上にスクロール",
"workbench.action.terminal.scrollUp": "上にスクロール (行)",
"workbench.action.terminal.scrollUpPage": "スクロール アップ (ページ)",
- "workbench.action.terminal.searchWorkspace": "ワークスペースで検索",
"workbench.action.terminal.selectAll": "すべてを選択",
"workbench.action.terminal.selectDefaultShell": "既定のプロファイルの選択",
"workbench.action.terminal.selectToNextCommand": "次のコマンドを選択",
"workbench.action.terminal.selectToNextLine": "次の行を選択",
"workbench.action.terminal.selectToPreviousCommand": "前のコマンドを選択",
"workbench.action.terminal.selectToPreviousLine": "前の行を選択",
- "workbench.action.terminal.sendSequence": "ターミナルにカスタム シークエンスを送る",
"workbench.action.terminal.setFixedDimensions": "固定寸法の設定",
- "workbench.action.terminal.showEnvironmentInformation": "環境情報の表示",
- "workbench.action.terminal.showTabs": "タブの表示",
- "workbench.action.terminal.sizeToContentWidth": "コンテンツの幅にサイズを切り替える",
"workbench.action.terminal.splitInActiveWorkspace": "(アクティブなワークスペースで) ターミナルの分割",
- "workbench.action.terminal.switchTerminal": "ターミナルの切り替え",
- "workbench.action.terminal.toggleEscapeSequenceLogging": "エスケープ シーケンスのログの切り替え",
- "workbench.action.terminal.toggleFindCaseSensitive": "大文字小文字を区別した検索に切り替える",
- "workbench.action.terminal.toggleFindRegex": "正規表現を使用した検索に切り替える",
- "workbench.action.terminal.toggleFindWholeWord": "単語単位での検索に切り替える",
- "workbench.action.terminal.writeDataToTerminal": "ターミナルへのデータの書き込み",
- "workbench.action.terminal.writeDataToTerminal.prompt": "pty をバイパスして、ターミナルに直接書き込むデータを入力します"
- },
- "vs/workbench/contrib/terminal/browser/terminalConfigHelper": {
- "install": "インストール",
- "useWslExtension.title": "WSL のターミナルを開くには、'{0}' 拡張機能をお勧めします。"
- },
- "vs/workbench/contrib/terminal/browser/terminalDecorationsProvider": {
- "label": "ターミナル"
+ "workbench.action.terminal.switchTerminal": "ターミナルの切り替え"
},
"vs/workbench/contrib/terminal/browser/terminalEditorInput": {
- "cancel": "キャンセル",
"confirmDirtyTerminal.button": "終了(&&T)",
"confirmDirtyTerminal.detail": "閉じると、このターミナルで実行中のプロセスが終了します。",
"confirmDirtyTerminal.message": "実行中のプロセスを終了しますか?",
@@ -9014,122 +14518,129 @@
"killTerminalIcon": "ターミナル インスタンスを強制終了するためのアイコン。",
"newTerminalIcon": "新しいターミナル インスタンスを作成するためのアイコン。",
"renameTerminalIcon": "ターミナル クイック メニュー内の名前変更のためのアイコン。",
+ "terminalCommandHistoryFuzzySearch": "コマンド履歴のあいまい検索を切り替えるためのアイコン。",
+ "terminalCommandHistoryOpenFile": "シェル履歴ファイルを開くアイコン。",
+ "terminalCommandHistoryOutput": "ターミナル コマンドの出力を表示するためのアイコン。",
+ "terminalCommandHistoryRemove": "コマンド履歴からターミナル コマンドを削除するためのアイコン。",
+ "terminalDecorationError": "エラーが発生したコマンドのターミナルの装飾のアイコン。",
+ "terminalDecorationIncomplete": "未完了のコマンドのターミナルの装飾のアイコン。",
+ "terminalDecorationMark": "ターミナルの装飾マークのアイコン。",
+ "terminalDecorationSuccess": "成功したコマンドのターミナルの装飾のアイコン。",
"terminalViewIcon": "ターミナル ビューのアイコンを表示します。"
},
"vs/workbench/contrib/terminal/browser/terminalInstance": {
"bellStatus": "ベル",
+ "changeColor": "ターミナルの色を選択します",
"configureTerminalSettings": "ターミナル設定の構成",
- "confirmMoveTrashMessageFilesAndDirectories": "{0} 行のテキストをターミナルに貼り付けますか?",
"disconnectStatus": "プロセスへの接続が失われました",
- "doNotAskAgain": "今後このメッセージを表示しない",
"keybindingHandling": "一部のキーバインドは既定ではターミナルに送られず、代わりに {0} によって処理されます。",
"launchFailed.errorMessage": "ターミナル プロセスが起動に失敗しました: {0}。",
"launchFailed.exitCodeAndCommandLine": "ターミナル プロセス \"{0}\" が起動に失敗しました (終了コード: {1})。",
"launchFailed.exitCodeOnly": "ターミナル プロセスが起動に失敗しました (終了コード: {0})。",
"launchFailed.exitCodeOnlyShellIntegration": "ユーザー設定でシェル統合を無効にすると、役に立つ場合があります。",
- "multiLinePasteButton": "貼り付け(&&P)",
- "preview": "プレビュー:",
- "removeCommand": "コマンド履歴から削除",
- "selectRecentCommand": "実行するコマンドを選択する (Alt キーを押しながらコマンドを編集する)",
- "selectRecentCommandMac": "実行するコマンドを選択する (Option キーを押しながらコマンドを編集する)",
- "selectRecentDirectory": "移動するディレクトリを選択する (Alt キーを押しながらコマンドを編集する)",
- "selectRecentDirectoryMac": "移動するディレクトリを選択する (Option キーを押しながらコマンドを編集する)",
"setTerminalDimensionsColumn": "固定寸法の設定: 列",
"setTerminalDimensionsRow": "固定寸法の設定: 行",
- "shellFileHistoryCategory": "{0} 履歴",
"shellIntegration.learnMore": "シェルの統合に関する詳細情報",
"shellIntegration.openSettings": "ユーザー設定を開く",
- "terminal.contiguousSearch": "Contiguous Search の使用",
- "terminal.fuzzySearch": "あいまい検索の使用",
"terminal.integrated.a11yPromptLabel": "ターミナル入力",
- "terminal.integrated.a11yTooMuchOutput": "通知する出力が多すぎます。行に移動して手動で読み取ってください",
- "terminal.integrated.copySelection.noSelection": "ターミナルにコピー対象の選択範囲がありません",
+ "terminal.integrated.useAccessibleBuffer": "アクセス可能なバッファー {0} を使用して、出力を手動で確認します",
+ "terminal.integrated.useAccessibleBufferNoKb": "ターミナルの使用: アクセス可能なバッファー コマンドをフォーカスして、出力を手動で確認する",
"terminal.requestTrust": "ターミナル プロセスを作成するには、コードを実行する必要があります",
- "terminalNavigationMode": "{0} と {1} を使用してターミナル バッファーを移動します",
+ "terminalHelpAriaLabel": "ターミナル ユーザー補助のヘルプに {0} を使用する",
+ "terminalScreenReaderMode": "コマンドを実行する: スクリーン リーダーのユーザー補助モードを切り替え、スクリーン リーダーのエクスペリエンスを最適化する",
"terminalStaleTextBoxAriaLabel": "ターミナル {0} の環境が古くなっています。詳細については、[環境情報の表示] コマンドを実行してください",
"terminalTextBoxAriaLabel": "ターミナル {0}",
"terminalTextBoxAriaLabelNumberAndTitle": "ターミナル {0}、{1}",
- "terminalTypeLocal": "ローカル",
- "terminalTypeTask": "タスク",
"terminated.exitCodeAndCommandLine": "ターミナル プロセス \"{0}\" が終了コード {1} で終了しました。",
"terminated.exitCodeOnly": "ターミナル プロセスが終了コード {0} で終了しました。",
- "viewCommandOutput": "View Command Output",
- "workbench.action.terminal.rename.prompt": "ターミナルの名前を入力してください",
"workspaceNotTrustedCreateTerminal": "信頼されていないワークスペースでターミナル プロセスを起動することはできません",
"workspaceNotTrustedCreateTerminalCwd": "cwd {0} と userHome {1} を含む信頼されていないワークスペースでターミナル プロセスを起動することはできません"
},
- "vs/workbench/contrib/terminal/browser/terminalMainContribution": {
- "ptyHost": "PTY ホスト"
- },
"vs/workbench/contrib/terminal/browser/terminalMenus": {
"defaultTerminalProfile": "{0} (既定値)",
+ "launchProfile": "プロファイルを起動...",
+ "miNewInNewWindow": "新しいターミナル ウィンドウ(&W)",
"miNewTerminal": "新しいターミナル(&&N)",
"miRunActiveFile": "アクティブなファイルの実行(&&A)",
"miRunSelectedText": "選択したテキストの実行(&&S)",
"miSplitTerminal": "ターミナルの分割(&&S)",
- "splitTerminal": "ターミナルの分割",
- "terminal.new": "新しいターミナル",
+ "split.profile": "プロファイルを使用してターミナルを分割する",
+ "workbench.action.tasks.configureTaskRunner": "タスクの構成...",
+ "workbench.action.tasks.runTask": "タスクの実行...",
"workbench.action.terminal.changeColor": "色の変更...",
"workbench.action.terminal.changeIcon": "アイコンの変更...",
"workbench.action.terminal.clear": "クリア",
+ "workbench.action.terminal.clearLong": "ターミナルのクリア",
"workbench.action.terminal.copySelection.short": "コピー",
"workbench.action.terminal.copySelectionAsHtml": "HTML としてコピーする",
"workbench.action.terminal.joinInstance": "ターミナルに参加する",
- "workbench.action.terminal.new.short": "新しいターミナル",
- "workbench.action.terminal.newWithProfile.short": "プロファイルを使用した新しいターミナル",
+ "workbench.action.terminal.newWithProfile.short": "プロファイルを使用した新しいターミナル...",
"workbench.action.terminal.openSettings": "ターミナル設定の構成",
"workbench.action.terminal.paste.short": "貼り付け",
"workbench.action.terminal.renameInstance": "名前の変更...",
+ "workbench.action.terminal.runActiveFile": "アクティブなファイルの実行",
+ "workbench.action.terminal.runSelectedText": "選択したテキストの実行",
"workbench.action.terminal.selectAll": "すべてを選択",
"workbench.action.terminal.selectDefaultProfile": "既定のプロファイルの選択",
- "workbench.action.terminal.showsTabs": "タブの表示",
- "workbench.action.terminal.sizeToContentWidthInstance": "コンテンツの幅にサイズを切り替える",
+ "workbench.action.terminal.startVoice": "ディクテーションの開始",
+ "workbench.action.terminal.startVoiceEditor": "ディクテーションの開始",
+ "workbench.action.terminal.stopVoice": "ディクテーションの停止",
+ "workbench.action.terminal.stopVoiceEditor": "ディクテーションの停止",
"workbench.action.terminal.switchTerminal": "ターミナルの切り替え"
},
"vs/workbench/contrib/terminal/browser/terminalProcessManager": {
+ "killportfailure": "ポート {0} でリッスンしているプロセスを中止できませんでした。コマンドはエラー {1} で終了しました",
"ptyHostRelaunch": "シェル プロセスへの接続が失われたため、ターミナルを再起動しています..."
},
"vs/workbench/contrib/terminal/browser/terminalProfileQuickpick": {
"ICreateContributedTerminalProfileOptions": "投稿済み",
+ "cancel": "キャンセル",
"createQuickLaunchProfile": "ターミナルのプロファイルを構成する",
"enterTerminalProfileName": "ターミナルのプロファイル名を入力する",
"terminal.integrated.chooseDefaultProfile": "既定のターミナルのプロファイルを選択する",
"terminal.integrated.selectProfileToCreate": "作成するターミナル プロファイルを選択します",
"terminalProfileAlreadyExists": "その名前のターミナルのプロファイルは既に存在します",
"terminalProfiles": "プロファイル",
- "terminalProfiles.detected": "検出済み"
- },
- "vs/workbench/contrib/terminal/browser/terminalProfileResolverService": {
- "migrateToProfile": "移行",
- "terminalProfileMigration": "ターミナルは非推奨の shell/shellArgs 設定を使用しています。プロファイルにこれを移行しますか?"
- },
- "vs/workbench/contrib/terminal/browser/terminalQuickAccess": {
- "renameTerminal": "ターミナルの名前変更",
- "workbench.action.terminal.newWithProfilePlus": "プロファイルを使用した新しいターミナルを作成する",
- "workbench.action.terminal.newplus": "新しいターミナルの作成"
+ "terminalProfiles.detected": "検出済み",
+ "unsafePathWarning": "このプロファイルでは、別のユーザーが変更できる安全でない可能性のあるパスを使用しています: {0}。使用しますか?",
+ "yes": "はい"
},
"vs/workbench/contrib/terminal/browser/terminalService": {
"localTerminalRemote": "このシェルは、接続されたリモート コンピューターではなく、{0}ローカル{1} マシンで実行されます",
"localTerminalVirtualWorkspace": "このシェルは、仮想フォルダーではなく、{0}ローカル{1} フォルダーに対して開かれています",
"terminalService.terminalCloseConfirmationPlural": "{0} 件のアクティブなターミナル セッションを終了しますか?",
"terminalService.terminalCloseConfirmationSingular": "アクティブなターミナルセッションを終了しますか?",
- "terminate": "終了"
+ "terminate": "終了(&&T)"
},
"vs/workbench/contrib/terminal/browser/terminalTabbedView": {
"hideTabs": "タブの非表示",
"moveTabsLeft": "タブを左へ移動",
"moveTabsRight": "タブを右へ移動"
},
+ "vs/workbench/contrib/terminal/browser/terminalTabsChatEntry": {
+ "terminal.tabs.chatEntryAriaLabelPlural": "非表示のチャット ターミナルを {0} 件表示する",
+ "terminal.tabs.chatEntryAriaLabelSingle": "非表示のチャット ターミナルを 1 件表示する",
+ "terminal.tabs.chatEntryLabelPlural": "{0} 件の非表示のターミナル",
+ "terminal.tabs.chatEntryLabelSingle": "{0} 件の非表示のターミナル",
+ "terminal.tabs.chatEntryTooltip": "非表示のチャット ターミナルを表示します"
+ },
"vs/workbench/contrib/terminal/browser/terminalTabsList": {
+ "label": "ターミナル",
"splitTerminalAriaLabel": "ターミナル {0} {1}、スプリット {3} の {2}",
"terminal.tabs": "ターミナル タブ",
"terminalAriaLabel": "ターミナル {0} {1}",
"terminalInputAriaLabel": "ターミナル名を入力します。Enter キーを押して確認するか、Esc キーを押して取り消します。"
},
"vs/workbench/contrib/terminal/browser/terminalTooltip": {
- "launchFailed.exitCodeOnlyShellIntegration": "ターミナル プロセスを起動できませんでした。terminal.integrated.shellIntegration.enabled とのシェル統合を無効にすると、役に立つ場合があります。",
- "shellIntegration.activationFailed": "シェル統合をアクティブ化できませんでした",
- "shellIntegration.enabled": "シェル統合がアクティブ化されました"
+ "hideDetails": "詳細を非表示にする",
+ "shellIntegration": "シェルの統合",
+ "shellIntegration.basic": "基本",
+ "shellIntegration.injectionFailed": "挿入をアクティブ化できませんでした",
+ "shellIntegration.no": "いいえ",
+ "shellIntegration.rich": "リッチ",
+ "shellProcessTooltip.commandLine": "コマンド ライン: {0}",
+ "shellProcessTooltip.processId": "プロセス ID ({0}): {1}",
+ "showDetails": "詳細を表示する"
},
"vs/workbench/contrib/terminal/browser/terminalView": {
"terminal.monospaceOnly": "ご使用の端末はモノスペース フォントのみをサポートします。これが新しくインストールされたフォントである場合は、VS Code を再起動してください。",
@@ -9138,41 +14649,48 @@
"terminals": "ターミナルを開きます。"
},
"vs/workbench/contrib/terminal/browser/xterm/decorationAddon": {
- "changeDefaultIcon": "既定のアイコンの変更",
- "changeErrorIcon": "エラー アイコンの変更",
- "changeSuccessIcon": "サクセス アイコンの変更",
- "gutter": "コマンド デコレーションの余白",
- "overviewRuler": "概要ルーラー コマンドのデコレーション",
- "terminal.configureCommandDecorations": "コマンド デコレーションの構成",
- "terminal.copyCommand": "Copy コマンド",
- "terminal.copyOutput": "出力データをコピーします",
- "terminal.copyOutputAsHtml": "出力を HTML としてコピーする",
+ "gutter": "コマンド左側のアイコン",
+ "no": "いいえ",
+ "overviewRuler": "コマンド右側の概要ルーラー",
+ "rerun": "コマンドを実行しますか: {0}",
+ "terminal.attachToChat": "チャットに添付",
+ "terminal.copyCommand": "コマンドをコピー",
+ "terminal.copyCommandAndOutput": "コマンドと出力のコピー",
+ "terminal.copyOutput": "出力をコピー",
+ "terminal.copyOutputAsHtml": "出力を HTML としてコピー",
"terminal.learnShellIntegration": "シェル統合に関する詳細情報",
- "terminal.rerunCommand": "再実行コマンド",
- "terminalPromptCommandFailed": "命令は {0} を実行し、失敗しました",
- "terminalPromptCommandFailedWithExitCode": "命令は {0} を実行し、失敗しました (終了コード {1})",
- "terminalPromptCommandSuccess": "命令は {0} を実行しました",
- "terminalPromptContextMenu": "コマンド アクションを表示",
- "toggleVisibility": "表示の切り替え"
+ "terminal.rerunCommand": "コマンドを再実行",
+ "toggleVisibility": "表示を切り替え",
+ "workbench.action.terminal.goToRecentDirectory": "最近使用したディレクトリに移動する",
+ "workbench.action.terminal.runRecentCommand": "最近のコマンドを実行",
+ "workbench.action.terminal.toggleVisibility": "表示を切り替える",
+ "yes": "はい"
+ },
+ "vs/workbench/contrib/terminal/browser/xterm/decorationStyles": {
+ "terminalCommandDecoration.running": "実行中",
+ "terminalCommandDecoration.unknown": "不明",
+ "terminalPromptCommandFailed": "コマンドは {0} に実行され、失敗しました",
+ "terminalPromptCommandFailed.duration": "命令は {0} を実行し、{1} かかって失敗しました",
+ "terminalPromptCommandFailedWithExitCode": "コマンドは {0} に実行され、失敗しました (終了コード {1})",
+ "terminalPromptCommandFailedWithExitCode.duration": "命令は {0} を実行し、{1} かかって失敗しました (終了コード {2})",
+ "terminalPromptCommandSuccess": "コマンドは現在 {0} に実行されました",
+ "terminalPromptCommandSuccess.": "コマンドは {0} に実行されました",
+ "terminalPromptCommandSuccess.duration": "命令は {0} を実行し、{1} かかりました",
+ "terminalPromptContextMenu": "コマンド操作を表示"
},
"vs/workbench/contrib/terminal/browser/xterm/xtermTerminal": {
- "dontShowAgain": "今後表示しない",
- "no": "いいえ",
- "terminal.slowRendering": "ターミナルの GPU アクセラレーションが使用中のコンピューターで遅くなっているようです。パフォーマンスの向上を見込めるものに切り替えて無効にしますか? [ターミナルの設定についてこちらを参照してください](https://code.visualstudio.com/docs/editor/integrated-terminal#_changing-how-the-terminal-is-rendered)。",
- "yes": "はい"
+ "terminal.integrated.copySelection.noSelection": "ターミナルにコピー対象の選択範囲がありません"
},
"vs/workbench/contrib/terminal/common/terminal": {
- "terminalCategory": "ターミナル",
"vscode.extension.contributes.terminal": "ターミナル機能を提供します。",
+ "vscode.extension.contributes.terminal.completionProviders": "拡張機能のアクティブ化時に登録されるターミナルの入力候補プロバイダーを定義します。",
+ "vscode.extension.contributes.terminal.completionProviders.description": "入力候補プロバイダーの機能の説明です。これは、設定 UI に表示されます。",
"vscode.extension.contributes.terminal.profiles": "ユーザーが作成できる追加のターミナル プロファイルを定義します。",
"vscode.extension.contributes.terminal.profiles.id": "ターミナル プロファイル プロバイダーの ID。",
"vscode.extension.contributes.terminal.profiles.title": "このターミナル プロファイルのタイトル。",
- "vscode.extension.contributes.terminal.types": "ユーザーが作成できる追加のターミナルの種類を定義します。",
- "vscode.extension.contributes.terminal.types.command": "ユーザーがこの種類のターミナルを作成するときに実行するコマンドです。",
"vscode.extension.contributes.terminal.types.icon": "この種類のターミナルに関連付ける codicon、URI、または明るい URI と 暗い URI。",
"vscode.extension.contributes.terminal.types.icon.dark": "暗いテーマを使用した場合のアイコンのパス",
- "vscode.extension.contributes.terminal.types.icon.light": "明るいテーマを使用した場合のアイコンのパス",
- "vscode.extension.contributes.terminal.types.title": "この種類のターミナルのタイトル。"
+ "vscode.extension.contributes.terminal.types.icon.light": "明るいテーマを使用した場合のアイコンのパス"
},
"vs/workbench/contrib/terminal/common/terminalColorRegistry": {
"terminal.ansiColor": "ターミナルの '{0}' ANSI カラー。",
@@ -9184,6 +14702,8 @@
"terminal.findMatchHighlightBackground": "ターミナル内の他の検索一致項目の色。基になるターミナル コンテンツを非表示にしないように、色を不透明にすることはできません。",
"terminal.findMatchHighlightBorder": "ターミナル内の他の検索一致項目の境界線の色。",
"terminal.foreground": "ターミナルの前景色。",
+ "terminal.hoverHighlightBackground": "ホバーが表示されている語の下を強調表示します。この色は、基本装飾が非表示にならないよう不透明にすることはできません。",
+ "terminal.inactiveSelectionBackground": "フォーカスがない場合のターミナルの選択背景色。",
"terminal.selectionBackground": "ターミナルの選択範囲の背景色。",
"terminal.selectionForeground": "ターミナルの選択前景色。これが null の場合、選択前景は保持され、最小コントラスト比率機能が適用されます。",
"terminal.tab.activeBorder": "パネル内のターミナル タブの側面にある境界線。これは既定値では tab.activeBorder です。",
@@ -9192,40 +14712,52 @@
"terminalCommandDecoration.successBackground": "成功したコマンドのターミナル コマンド装飾の背景色。",
"terminalCursor.background": "ターミナルのカーソルの背景色。ブロックカーソルで重ねた文字の色をカスタマイズできます。",
"terminalCursor.foreground": "ターミナルのカーソル前景色。",
+ "terminalInitialHintForeground": "ターミナルの初期ヒントの前景色。",
+ "terminalOverviewRuler.border": "概要ルーラーの左側の境界線の色。",
"terminalOverviewRuler.cursorForeground": "概要ルーラーカーソルの色。",
"terminalOverviewRuler.findMatchHighlightForeground": "ターミナルで一致する検索の概要ルーラー マーカーの色。"
},
"vs/workbench/contrib/terminal/common/terminalConfiguration": {
- "cwd": "現在のターミナルの作業ディレクトリ",
+ "cwd": "ターミナルの現在の作業ディレクトリ。",
"cwdFolder": "現在のターミナルの作業ディレクトリ。マルチ ルート ワークスペースの場合は表示され、または初期作業ディレクトリと値が異なる場合にはシングル ルート ワークスペースに表示されます。Windows では、シェル統合が有効になっている場合にのみ表示されます。",
- "local": "リモート ワークスペース内のローカル ターミナルを示す",
+ "enableFileLinks.notRemote": "リモート ワークスペースにない場合にのみ有効にします。",
+ "enableFileLinks.off": "常にオフ。",
+ "enableFileLinks.on": "常にオン。",
+ "hideOnStartup.always": "永続的なセッションが復元された場合でも、常にターミナルを非表示にします。",
+ "hideOnStartup.never": "起動時にターミナル ビューを常に表示します。",
+ "hideOnStartup.whenEmpty": "永続的なセッションが復元されていない場合にのみ、ターミナルを非表示にします。",
+ "local": "リモート ワークスペース内のローカル ターミナルを示します。",
"openDefaultSettingsJson": "既定の設定の JSON を開く",
"openDefaultSettingsJson.capitalized": "既定の設定 (JSON) を開く",
- "process": "ターミナル プロセスの名前",
- "separator": "値か固定のテキストで囲われたとき、条件付きの区切り記号 (\" - \") を表示します。",
- "sequence": "プロセスによってターミナルに指定された名前",
- "task": "このターミナルがタスクに関連付けられていることを示す",
+ "process": "ターミナル プロセスの名前。",
+ "progress": "`OSC 9;4` シーケンスによって報告される進行状況の状態。",
+ "separator": "値を持つ変数または静的テキストで囲まれている場合にのみ表示される条件付きの区切り記号 {0}。",
+ "sequence": "プロセスによってターミナルに指定された名前。",
+ "shellCommand": "シェル統合に従って実行されるコマンド。これには、検出されたコマンド ラインに対する高い信頼性も必要であり、一部のプロンプト フレームワークでは機能しない可能性があります。",
+ "shellPromptInput": "シェルの統合に従ってシェルの完全プロンプト入力。",
+ "shellType": "検出されたシェルの種類。",
+ "task": "このターミナルがタスクに関連付けられていることを示します。",
"terminal.integrated.allowChords": "ターミナルでコードのキーバインドを許可するかどうか。これが true で、キーストロークの結果がコード内の場合、{0} をバイパスすることに注意してください。これを false に設定すると、Ctrl + k キーを (VS Code ではなく) シェルに移動する場合に特に便利です。",
"terminal.integrated.allowMnemonics": "メニュー バー ニーモニック (Alt+F など) でメニュー バーを開くかどうかを指定します。これを true にした場合、すべての Alt キーストロークがシェルをスキップするようになることにご注意ください。これは、macOS では何の効果もありません。",
+ "terminal.integrated.allowedLinkSchemes": "ターミナルがリンクを開くことを許可されている URI スキームを含む文字列の配列。既定では、セキュリティ上の理由から、可能なスキームの小さなサブセットのみが許可されます。",
"terminal.integrated.altClickMovesCursor": "有効にすると、alt/option を押しながらクリックすると、{0} が {1} (既定値) に設定されているときに、プロンプト カーソルがマウスの下に移動します。シェルによっては、これは確実に機能しない可能性があります。",
- "terminal.integrated.autoReplies": "ターミナルで検出されたときに自動的に応答されるメッセージ セットです。メッセージが十分に具体的であれば、これを使用して一般的な応答を自動化できます。\r\n\r\n注釈:\r\n\r\n- {0} を使用して、Windows.でバッチ ジョブの終了プロンプトに自動的に応答します。\r\n- メッセージにはエスケープ シーケンスが含まれるため、返信はスタイル付きテキストにならない可能性があります。\r\n- 各返信は 1 秒に 1 回のみ行えます。\r\n- 返信で Enter キーを示すには、{1} を使用します。\r\n- 既定のキーの設定を解除するには、値を null 値に設定します。\r\n- 新しい VS Code が適用されない場合は、VS Code を再起動します。",
- "terminal.integrated.autoReplies.reply": "プロセスに送信する返信。",
"terminal.integrated.bellDuration": "トリガーされた場合に、ターミナル タブ内にベルを表示するためのミリ秒数です。",
"terminal.integrated.commandsToSkipShell": "キー バインドがシェルに送信されず、代わりに常に VS Code で処理されるコマンド ID のセット。これにより、シェルによって通常使用されるキー バインドが、ターミナルがフォーカスされていない場合と同じ動作をするようにします。たとえば、'Ctrl+P' で Quick Open を起動します。\r\n\r\n \r\n\r\n既定では、多くのコマンドがスキップされます。既定値をオーバーライドし、代わりにそのコマンドのキー バインドをシェルに渡すには、先頭に '-' 文字が付いているコマンドを追加します。たとえば、'-workbench.action.quickOpen' を追加して、'Ctrl+P' でシェルにアクセスできるようにします。\r\n\r\n \r\n\r\n既定でスキップされる以下のコマンドの一覧は、設定エディターで表示したときには切り詰められます。完全な一覧を表示するには、下の一覧から最初のコマンドを {1} して検索します。\r\n\r\n \r\n\r\n既定でスキップされるコマンド:\r\n\r\n{0}",
- "terminal.integrated.confirmOnExit": "アクティブなターミナル セッションがある場合に、ウィンドウを閉じたときに確認を行うかどうかを制御します。",
+ "terminal.integrated.confirmOnExit": "アクティブなターミナル セッションがある場合にウィンドウを閉じるタイミングを確認するかどうかを制御します。一部の拡張機能によって起動されたようなバックグラウンド ターミナルでは、確認はトリガーされません。",
"terminal.integrated.confirmOnExit.always": "ターミナルがあるかどうか常に確認します。",
"terminal.integrated.confirmOnExit.hasChildProcesses": "子プロセスがあるターミナルがあるかどうかを確認します。",
"terminal.integrated.confirmOnExit.never": "確認しません。",
- "terminal.integrated.confirmOnKill": "子プロセスがある場合にターミナルの強制終了を確認するかどうかを制御します。エディターに設定すると、子プロセスがある場合、エディター領域のターミナルは変更済みとしてマークされます。子プロセスの検出は、シェルの子プロセスとしてプロセスを実行しない Git Bash のようなシェルでは適切に機能しない可能性があることに注意してください。",
+ "terminal.integrated.confirmOnKill": "子プロセスがある場合にターミナルの強制終了を確認するかどうかを制御します。エディターに設定すると、子プロセスがある場合、エディター領域のターミナルは変更済みとしてマークされます。子プロセスの検出は、シェルの子プロセスとしてプロセスを実行しない Git Bash のようなシェルでは適切に機能しない可能性があることに注意してください。一部の拡張機能によって起動されたようなバックグラウンド ターミナルでは、確認はトリガーされません。",
"terminal.integrated.confirmOnKill.always": "ターミナルがエディターとパネルのどちらにあるかを確認します。",
"terminal.integrated.confirmOnKill.editor": "ターミナルがエディター内にあるかどうかを確認します。",
"terminal.integrated.confirmOnKill.never": "確認しません。",
"terminal.integrated.confirmOnKill.panel": "ターミナルがパネル内にあるかどうかを確認します。",
"terminal.integrated.copyOnSelection": "ターミナルで選択したテキストをクリップボードにコピーするかどうかを制御します。",
"terminal.integrated.cursorBlinking": "ターミナルでカーソルを点滅させるかどうかを制御します。",
- "terminal.integrated.cursorStyle": "ターミナル カーソルのスタイルを制御します。",
+ "terminal.integrated.cursorStyle": "ターミナルにフォーカスがある場合のターミナル カーソルのスタイルを制御します。",
+ "terminal.integrated.cursorStyleInactive": "ターミナルにフォーカスがない場合のターミナル カーソルのスタイルを制御します。",
"terminal.integrated.cursorWidth": "{0} が {1} に設定されている場合のカーソルの幅を制御します。",
- "terminal.integrated.customGlyphs": "フォントを使用する代わりに、ブロック要素およびボックス描画文字のカスタム グリフを描画するかどうか。通常は、連続した直線を使用した方が適切なレンダリングを行います。これは DOM レンダラーでは動作しないことにご注意ください",
+ "terminal.integrated.customGlyphs": "フォントを使用する代わりに、ブロック要素およびボックス描画文字のカスタム グリフを描画するかどうか。通常は、連続した直線を使用した方が適切なレンダリングを行います。これは {0} が無効である場合は動作しないことにご注意ください。",
"terminal.integrated.cwd": "ターミナルが起動される明示的な開始パスです。これは、シェル プロセスの現在の作業ディレクトリ (cwd) として使用されます。これは特に、ルート ディレクトリが便利な cwd でない場合にワークスペースの設定で役立ちます。",
"terminal.integrated.defaultLocation": "新規に作成されたターミナルの表示場所を制御します。",
"terminal.integrated.defaultLocation.editor": "エディターでのターミナルの作成",
@@ -9234,70 +14766,81 @@
"terminal.integrated.detectLocale.auto": "既存の変数が存在しないか、または `'.UTF-8'` で終わっていない場合に、`$LANG` 環境変数を設定します。",
"terminal.integrated.detectLocale.off": "$LANG' 環境変数は設定しないでください。",
"terminal.integrated.detectLocale.on": "常に '$LANG' 環境変数を設定します。",
+ "terminal.integrated.developer.devMode": "ターミナルの開発者モードを有効にします。これにより、シェル統合シーケンスの追加のデバッグ情報と視覚エフェクトが表示されます。",
+ "terminal.integrated.developer.ptyHost.latency": "PTY ホストへのすべての呼び出しに適用されるシミュレート済み待機時間 (ミリ秒) です。これは、待機時間が長い環境でターミナルの動作をテストする際に役立ちます。",
+ "terminal.integrated.developer.ptyHost.startupDelay": "PTY ホスト プロセスのシミュレート済み起動の遅延時間 (ミリ秒) です。これは、起動が遅い環境でのターミナル初期化のテストに役立ちます。",
"terminal.integrated.drawBoldTextInBrightColors": "ターミナルの太字のテキストで常に \"明るい\" ANSI 色のバリエーションを使用するかどうかを制御します。",
- "terminal.integrated.enableBell": "端末のベルを有効にするかどうかを制御します。これは、ターミナル名の横に視覚的ベルで表示されます。",
+ "terminal.integrated.enableBell": "これは非推奨になりました。代わりに、'terminal.integrated.enableVisualBell' および 'accessibility.signals.terminalBell' 設定を使用してください。",
"terminal.integrated.enableFileLinks": "ターミナルのファイル リンクを有効にするかどうかを指定します。各ファイルのリンクがファイル システムに対して確認されるため、特にネットワーク ドライブ上での作業時にリンクの動作が低速になることがあります。この変更は、新しいターミナルでのみ有効になります。",
- "terminal.integrated.enableMultiLinePasteWarning": "ターミナルに複数の行を貼り付けるときに警告ダイアログを表示します。ダイアログに when:\r\n\r\n- 角かっこで囲まれた貼り付けモードが表示されない 有効 (シェルはネイティブで複数行貼り付けをサポート)\r\n- 貼り付けはシェルの読み取りラインによって処理されます (pwsh の場合)。",
+ "terminal.integrated.enableImages": "ターミナルでイメージのサポートを有効にします。これは、{0} が有効な場合にのみ機能します。Linux と macOS では、sixel と iTerm の両方のインライン イメージ プロトコルがサポートされています。これは、Windows に付属している ConPTY >= v2 のバージョンに対してのみ Windows で動作します。{1} も参照してください。現在、ウィンドウの再読み込み/再接続の間はイメージは復元されません。",
+ "terminal.integrated.enableMultiLinePasteWarning": "ターミナルに複数行を貼り付ける場合に警告ダイアログを表示するかどうかを制御します。",
+ "terminal.integrated.enableMultiLinePasteWarning.always": "テキストに改行が含まれている場合は常に警告を表示します。",
+ "terminal.integrated.enableMultiLinePasteWarning.auto": "警告を有効にしますが、次の場合は表示しません。\r\n\r\n- ブラケットで囲まれた貼り付けモードが有効である (シェルはネイティブで複数行貼り付けをサポート)\r\n- 貼り付けはシェルの読み取りラインによって処理される (pwsh の場合)",
+ "terminal.integrated.enableMultiLinePasteWarning.never": "警告を表示しません。",
"terminal.integrated.enablePersistentSessions": "ウィンドウの再読み込み時にワークスペースのターミナル セッション/履歴を保持します。",
+ "terminal.integrated.enableVisualBell": "視覚的端末ベルを有効にするかどうかを制御します。これは、ターミナル名の横に表示されます。",
"terminal.integrated.env.linux": "Linux 上のターミナルで使用される VS Code プロセスに追加される環境変数を含むオブジェクト。環境変数を削除するには、'null' に設定します。",
"terminal.integrated.env.osx": "macOS 上のターミナルで使用される VS Code プロセスに追加される環境変数を含むオブジェクトです。環境変数を削除するには、'null' に設定します。",
"terminal.integrated.env.windows": "Windows 上のターミナルで使用される VS Code プロセスに追加される環境変数を含むオブジェクトです。環境変数を削除するには、'null' に設定します。",
- "terminal.integrated.environmentChangesIndicator": "各ターミナルに環境変更インジケーターを表示するかどうかを指定します。これは、拡張機能によってターミナルの環境が変更されたかどうか、または変更を加えたいかどうかを示します。",
- "terminal.integrated.environmentChangesIndicator.off": "インジケーターを無効にします。",
- "terminal.integrated.environmentChangesIndicator.on": "インジケーターを有効にします。",
- "terminal.integrated.environmentChangesIndicator.warnonly": "ターミナルの環境が「古く」なった場合にのみ警告インジケーターを表示します。これは、ターミナルの環境が拡張機能によって変更されたことを示す情報インジケーターではありません。",
"terminal.integrated.environmentChangesRelaunch": "拡張機能が環境に参加する必要があり、まだ対話が行われていない場合に、自動的に端末を再起動するかどうか。",
"terminal.integrated.fastScrollSensitivity": "'Alt' キーを押した時のスクロール速度の乗数。",
- "terminal.integrated.fontFamily": "ターミナルのフォント ファミリを制御し、{0} の初期値に戻ります。",
+ "terminal.integrated.focusAfterRun": "[ターミナル: アクティブなターミナルで選択したテキストを実行する] が実行された後に、ターミナル、アクセス可能なバッファー、またはどちらもフォーカスしないかを制御します。",
+ "terminal.integrated.focusAfterRun.accessible-buffer": "アクセス可能なバッファーに常にフォーカスします。",
+ "terminal.integrated.focusAfterRun.none": "何もしない。",
+ "terminal.integrated.focusAfterRun.terminal": "常にターミナルにフォーカスします。",
+ "terminal.integrated.fontFamily": "ターミナルのフォント ファミリを制御し、既定値は {0} となります。",
+ "terminal.integrated.fontLigatures.enabled": "ターミナルでフォント合字を有効にするかどうかを制御します。合字は、構成された {0} でサポートされている場合にのみ機能します。",
+ "terminal.integrated.fontLigatures.fallbackLigatures": "{0} が有効で、特定の {1} を解析できない場合、これは常に一緒に描画される一連の文字シーケンスです。これにより、フォントがサポートされていない場合でも、固定の合字セットを使用できます。",
+ "terminal.integrated.fontLigatures.featureSettings": "合字が有効な場合に使用されるフォント機能の設定を、`font-feature-settings` CSS プロパティの形式で制御します。フォントに応じて有効な例をいくつか示します。",
"terminal.integrated.fontSize": "ターミナルのフォント サイズをピクセル単位で制御します。",
"terminal.integrated.fontWeight": "端末内で太字以外のテキストに使用するフォントの太さ。\"normal\" と \"bold\" のキーワード、または 1 から 1000 の間の数字を受け入れます。",
"terminal.integrated.fontWeightBold": "端末内で太字のテキストに使用するフォントの太さ。\"normal\" と \"bold\" のキーワード、または 1 から 1000 の間の数字を受け入れます。",
"terminal.integrated.fontWeightError": "使用できるのは \"標準\" および \"太字\" のキーワードまたは 1 ~ 1000 の数字のみです。",
"terminal.integrated.gpuAcceleration": "ターミナルで GPU を利用してレンダリングを行うかどうかを制御します。",
"terminal.integrated.gpuAcceleration.auto": "最適なエクスペリエンスを提供するレンダラーを VS Code で検出できるようにします。",
- "terminal.integrated.gpuAcceleration.canvas": "ターミナルのフォールバック キャンバス レンダラーを使用します。これは、一部のシステムでパフォーマンスが向上する可能性がある Webgl の代わりに 2D コンテキストを使用します。キャンバス レンダラーでは、不透明な選択など一部の機能が制限されることにご注意ください。",
"terminal.integrated.gpuAcceleration.off": "ターミナル内の GPU アクセラレータを無効にします。GPU アクセラレータをオフにすると、ターミナルのレンダリング速度は大幅に低下しますが、すべてのシステムで確実に動作するはずです。",
"terminal.integrated.gpuAcceleration.on": "ターミナル内の GPU アクセラレーションを有効にします。",
- "terminal.integrated.letterSpacing": "ターミナルの文字間隔を制御します。これは、文字間に追加する追加のピクセルの量を表す整数値です。",
+ "terminal.integrated.hideOnLastClosed": "最後のターミナルが閉じられたときにターミナル ビューを非表示にするかどうか。これは、ターミナルがビュー コンテナー内の唯一の表示可能なビューである場合にのみ発生します。",
+ "terminal.integrated.hideOnStartup": "スタートアップ時にターミナル ビューを非表示にするかどうか。固定セッションがない場合にターミナルを作成しないようにします。",
+ "terminal.integrated.ignoreBracketedPasteMode": "ターミナルがモードに設定されている場合でも、ターミナルがかっこで囲まれた貼り付けモードを無視するかどうかを制御します。貼り付け時に {0} と {1} シーケンスを省略します。これは、たとえばサブシェルで発生する可能性のあるモードをシェルが優先していない場合に便利です。",
+ "terminal.integrated.letterSpacing": "ターミナルの文字間隔を制御します。これは、文字間に追加する追加のピクセル数を表す整数値です。",
"terminal.integrated.lineHeight": "ターミナルの行の高さを制御します。この数にターミナルのフォント サイズを掛けて、実際の行の高さをピクセル単位で算出します。",
- "terminal.integrated.localEchoEnabled": "ローカル エコーを有効にする必要がある場合。これにより、{0} をオーバーライドします",
- "terminal.integrated.localEchoEnabled.auto": "リモート ワークスペースに対してのみ有効",
- "terminal.integrated.localEchoEnabled.off": "常に無効",
- "terminal.integrated.localEchoEnabled.on": "常に有効",
- "terminal.integrated.localEchoExcludePrograms": "これらのプログラム名のいずれかがターミナル タイトルに見つかったとき、ローカル エコーは無効になります。",
- "terminal.integrated.localEchoLatencyThreshold": "ネットワーク遅延の長さ (ミリ秒単位)。ローカルの編集内容はサーバーの確認を待たずに端末にエコーされます。'0' の場合ローカル エコーは常にオンになり、'-1' の場合は無効になります。",
- "terminal.integrated.localEchoStyle": "ローカル エコー テキストの端末スタイル。フォント スタイルまたは RGB カラー。",
"terminal.integrated.macOptionClickForcesSelection": "macOS で option キーを押しながらクリックしたときに選択を強制するかどうかを制御します。これにより、標準 (行) の選択が強制され、列選択モードが使用されなくなります。これにより、たとえば tmux でマウス モードが有効になっている場合などに、通常のターミナル選択を使用してコピーと貼り付けを行うことができます。",
"terminal.integrated.macOptionIsMeta": "option キーを macOS 上のターミナルの meta キーとして扱うかどうかを制御します。",
+ "terminal.integrated.middleClickBehavior": "ターミナルがミドル クリックにどのように反応するかを制御します。",
+ "terminal.integrated.middleClickBehavior.default": "プラットフォームは既定でターミナルにフォーカスします。Linux では、選択内容も貼り付けられます。",
+ "terminal.integrated.middleClickBehavior.paste": "ミドル クリック時に貼り付けます。",
"terminal.integrated.minimumContrastRatio": "各セルの前景色を設定すると、指定されたコントラスト比に見合うように変更を試みます。#146406 ごとの 'powerline' 文字には適用されないことに注意してください。値の例: \r\n\r\n- 1: 何も実行せず、標準テーマ カラーを使用します。\r\n- 4.5: [WCAG AA 準拠 (最低)](https://www.w3.org/TR/UNDERSTANDING-WCAG20/visual-audio-contrast-contrast.html) (既定)。\r\n- 7: [WCAG AAA 準拠 (拡張)](https://www.w3.org/TR/UNDERSTANDING-WCAG20/visual-audio-contrast7.html)。\r\n- 21: 黒地に白、または白地に黒。",
"terminal.integrated.mouseWheelScrollSensitivity": "マウス ホイールのスクロール イベントの 'deltaY' で使用される乗数です。",
"terminal.integrated.persistentSessionReviveProcess": "ターミナル プロセスをシャットダウンする必要がある場合 (例: ウィンドウまたはアプリケーションが閉じた場合)、これにより、前のターミナル セッション/履歴の内容を復元し、ワークスペースを次回開いたときにプロセスを再作成するタイミングが決定されます。\r\n\r\nCaveats:\r\n\r\n- プロセスの現在の作業ディレクトリの復元は、それがシェルでサポートされているかどうかによって異なります。\r\n- シャットダウン中にセッションを保持する時間が制限されるため、待機時間の長いリモート接続を使用している場合に中止される可能性があります。",
"terminal.integrated.persistentSessionReviveProcess.never": "ターミナル バッファーの復元や、プロセスの再作成を行わないでください。",
"terminal.integrated.persistentSessionReviveProcess.onExit": "Windows または Linux で最後のウィンドウが閉じられた後、`workbench.action.quit` コマンドがトリガーされた場合 (コマンド パレット、キー バインド、メニュー) にプロセスの再活性化を行います。",
"terminal.integrated.persistentSessionReviveProcess.onExitAndWindowClose": "Windows または Linux で最後のウィンドウが閉じられた後、`workbench.action.quit` コマンドがトリガーされた場合 (コマンド パレット、キー バインド、メニュー)、またはウィンドウが閉じられた場合にプロセスの再活性化を行います。",
+ "terminal.integrated.rescaleOverlappingGlyphs": "横幅が 1 セルのグリフで、後続のセルに重なるグリフがあるときに、グリフを横方向にリスケールするかどうか。これは通常、等幅フォントでは使用されないあいまいな幅文字 (例: ローマ数字文字 U+2160+) で発生します。絵文字グリフはリスケーリングされません。",
"terminal.integrated.rightClickBehavior": "右クリックに対するターミナルの反応を制御します。",
"terminal.integrated.rightClickBehavior.copyPaste": "選択範囲がある場合はコピーし、それ以外の場合は貼り付けます。",
"terminal.integrated.rightClickBehavior.default": "コンテキスト メニューを表示します。",
"terminal.integrated.rightClickBehavior.nothing": "何もせず、ターミナルにイベントを渡します。",
"terminal.integrated.rightClickBehavior.paste": "右クリック時に貼り付けます。",
"terminal.integrated.rightClickBehavior.selectWord": "カーソルの下にある単語を選択して、コンテキスト メニューを表示します。",
- "terminal.integrated.scrollback": "ターミナルがバッファーに保持する最大行数を制御します。",
+ "terminal.integrated.scrollback": "ターミナルがバッファーに保持する最大行数を制御します。スムーズなエクスペリエンスを実現するために、この値に基づいてメモリを事前に割り当てます。そのため、値が大きくなると、メモリの量も増えます。",
"terminal.integrated.sendKeybindingsToShell": "ワークベンチではなくターミナルにほとんどのキー バインドをディスパッチし、{0} をオーバーライドします。これは、精細な調整の代わりに使用できます。",
- "terminal.integrated.shellIntegration.decorationIcon": "スキップまたは空のコマンドに使用するアイコンを制御します。アイコンを非表示にするか、 {1} でデコレーションを無効にするには、{0} に設定します。",
- "terminal.integrated.shellIntegration.decorationIconError": "終了コードが関連付けられているシェル統合が有効になっているターミナルの各コマンドで使用されるアイコンを制御します。アイコンを非表示にするか、{1} でデコレーションを無効にするには、{0} に設定します。",
- "terminal.integrated.shellIntegration.decorationIconSuccess": "終了コードが関連付けられていないシェル統合が有効になっているターミナルの各コマンドで使用されるアイコンを制御します。アイコンを非表示にするか、 {1} でデコレーションを無効にするには、{0} に設定します。",
"terminal.integrated.shellIntegration.decorationsEnabled": "シェル統合が有効になっている場合は、コマンドごとに装飾を追加します。",
"terminal.integrated.shellIntegration.decorationsEnabled.both": "余白 (左) と概要ルーラー (右) にデコレーションを表示する",
"terminal.integrated.shellIntegration.decorationsEnabled.gutter": "ターミナルの左側に余白のデコレーションを表示する",
- "terminal.integrated.shellIntegration.decorationsEnabled.never": "デコレーションを表示しない",
+ "terminal.integrated.shellIntegration.decorationsEnabled.never": "装飾を表示しない",
"terminal.integrated.shellIntegration.decorationsEnabled.overviewRuler": "ターミナルの右側に概要ルーラー デコレーションを表示する",
- "terminal.integrated.shellIntegration.enabled": "強化されたコマンド追跡や現在の作業ディレクトリの検出などの機能をサポートするために、シェル統合で自動挿入するか否かを決定します。\r\n\r\n シェル統合は、シェルをスタートアップ スクリプトで導入することで機能します。そのスクリプトは、ターミナル内で何が起こっているかについて VS Code 分析情報を提供します。\r\n\r\nサポートされているシェル:\r\n\r\n- Linux/macOS: bash、pwsh、zsh\r\n - Windows: pwsh\r\n\r\nこの設定はターミナルが作成されたときにのみ適用されるため、ターミナルを再起動して有効にする必要があります。\r\n\r\n ターミナル プロファイルでカスタム引数が定義されている場合、[complex bash `PROMPT_COMMAND`](https://code.visualstudio.com/docs/editor/integrated-terminal#_complex-bash-promptcommand)、またはその他のサポートされていないセットアップがある場合は、スクリプト挿入が機能しないことがあります。デコレーションを無効化するには、{0} をご覧ください",
- "terminal.integrated.shellIntegration.history": "ターミナル コマンド履歴に保持する最近使用したコマンドの数を制御します。ターミナル コマンド履歴を無効にするには、[0] に設定します。",
+ "terminal.integrated.shellIntegration.enabled": "強化されたコマンド追跡や現在の作業ディレクトリの検出などの機能をサポートするために、シェル統合で自動挿入するか否かを決定します。\r\n\r\nシェル統合は、シェルをスタートアップ スクリプトで導入することで機能します。そのスクリプトは、ターミナル内で何が起こっているかについて VS Code 分析情報を提供します。\r\n\r\nサポートされているシェル:\r\n\r\n- Linux/macOS: bash、fish、pwsh、zsh\r\n- Windows: pwsh、git bash\r\n\r\nこの設定はターミナルが作成されたときにのみ適用されるため、ターミナルを再起動して有効にする必要があります。\r\n\r\nターミナル プロファイルでカスタム引数が定義されていて、{1}が有効になっている場合、[complex bash `PROMPT_COMMAND`](https://code.visualstudio.com/docs/editor/integrated-terminal#_complex-bash-promptcommand)、またはその他のサポートされていないセットアップがある場合は、スクリプト挿入が機能しないことがあります。デコレーションを無効化するには、{0} をご覧ください",
+ "terminal.integrated.shellIntegration.environmentReporting": "シェル環境を報告するかどうかを制御し、{0} などの機能での使用を有効にします。これにより、シェルのプロンプトを印刷するときに速度が低下する可能性があります。",
+ "terminal.integrated.shellIntegration.quickFixEnabled": "シェル統合が有効な場合、プロンプトの左側に電球や火花のアイコンとして表示されるターミナルのコマンドのクイック修正が有効になります。",
+ "terminal.integrated.shellIntegration.timeout": "シェル統合が起動後に存在しないと宣言するまでの待機時間をミリ秒単位で設定します。最小時間 (500ms) を待機する場合は、{0} に設定してください。既定値の {1} は、シェル統合のインジェクションが有効かどうか、このシェル統合がリモート ウィンドウかどうかに応じて待機時間が変動することを意味します。シェル統合を意図的に無効にしている場合はこれを短い値、またはシェルの起動が非常に遅い場合は長い値に設定することを検討してください。",
"terminal.integrated.showExitAlert": "終了コードがゼロ以外の場合に、\"ターミナルの処理が終了しました (終了コード: )\" という警告を表示するかどうかを制御します。",
+ "terminal.integrated.smoothScrolling": "アニメーションでターミナルをスクロールするかどうかを制御します。",
"terminal.integrated.splitCwd": "分割ターミナルの開始点となる作業ディレクトリを制御します。",
"terminal.integrated.splitCwd.inherited": "macOS と Linux では、新しい分割ターミナルは親ターミナルの作業ディレクトリを使用します。Windows では、初期の動作と同じになります。",
"terminal.integrated.splitCwd.initial": "新しい分割ターミナルでは、親ターミナルの起動時の作業ディレクトリが使用されます。",
"terminal.integrated.splitCwd.workspaceRoot": "新しい分割ターミナルでは、ワークスペースのルートが作業ディレクトリとして使用されます。マルチ ルートのワークスペースでは、どのルート フォルダーを使用するか選択できます。",
+ "terminal.integrated.tabStopWidth": "タブ位置のセル数。",
"terminal.integrated.tabs.defaultColor": "既定でターミナル アイコンに関連付けるテーマ カラー ID。",
"terminal.integrated.tabs.defaultIcon": "既定でターミナル アイコンに関連付けるcodicon ID。",
"terminal.integrated.tabs.enableAnimation": "ターミナル タブの状態がアニメーションをサポートするかどうかを制御します (例: 進行中のタスク)。",
@@ -9312,7 +14855,7 @@
"terminal.integrated.tabs.location": "ターミナル タブの場所を、実際のターミナルの左または右のいずれかに制御します。",
"terminal.integrated.tabs.location.left": "ターミナルの左側にターミナル タブ ビューを表示する",
"terminal.integrated.tabs.location.right": "ターミナルの右側にターミナル タブ ビューを表示する",
- "terminal.integrated.tabs.separator": "{0} と {0} で使用される区切り記号。",
+ "terminal.integrated.tabs.separator": "{0} と {1} で使用される区切り記号。",
"terminal.integrated.tabs.showActions": "新しいターミナル ボタンの横にターミナルの分割ボタンと強制終了ボタンを表示するかどうかを制御します。",
"terminal.integrated.tabs.showActions.always": "常にアクションを表示する",
"terminal.integrated.tabs.showActions.never": "アクションを表示しない",
@@ -9327,25 +14870,31 @@
"terminal.integrated.unicodeVersion.eleven": "バージョン 11 の Unicode。このバージョンでは、Unicode の最新バージョンを使用する最新のシステムでのサポートが向上しています。",
"terminal.integrated.unicodeVersion.six": "バージョン 6 の Unicode。これは古いバージョンであり、古いシステムで適切に動作するはずです。",
"terminal.integrated.windowsEnableConpty": "Windows ターミナル プロセス通信に ConPTY を使用するかどうかを指定します (Windows 10 のビルド番号 18309 以上が必要です)。これが false の場合は、winpty が使用されます。",
- "terminal.integrated.wordSeparators": "ダブルクリックによる単語選択機能で単語区切り記号として扱われるすべての文字を含む文字列。",
+ "terminal.integrated.windowsUseConptyDll": "Windows に付属する conpty.dll (v1.22.250204002) ではなく、VS Code に付属する試験的なバージョンを使用するかどうか。",
+ "terminal.integrated.wordSeparators": "ダブルクリックして単語を選択し、フォールバック 'word' リンクの検出時に、単語区切り記号と見なされるすべての文字を含む文字列。これはリンク検出に使用されるため、リンクの検出時に使用される ':' などの文字を含めると、'file:10:5' などのリンクの行と列の部分が無視されます。",
"terminalDescription": "タイトルの右側に表示されるターミナルの説明を制御します。変数は以下のコンテキストに基づいて置換されます。",
"terminalIntegratedConfigurationTitle": "統合ターミナル",
"terminalTitle": "ターミナル タイトルを制御します。変数は以下のコンテキストに基づいて置換されます。",
- "workspaceFolder": "ターミナルを起動したワークスペース"
+ "workspaceFolder": "ターミナルが起動されたワークスペース。",
+ "workspaceFolderName": "ターミナルが起動されたワークスペースの `name`。"
},
"vs/workbench/contrib/terminal/common/terminalContextKey": {
"inTerminalRunCommandPickerContextKey": "ターミナルの実行コマンド ピッカーが現在開いているかどうか。",
"isSplitTerminalContextKey": "優先タブのターミナルがターミナルの分割かどうか。",
+ "splitPaneActive": "アクティブなターミナルが分割ウィンドウかどうか。",
"terminalAltBufferActive": "ターミナルの Alt バッファーがアクティブであるかどうか。",
"terminalCountContextKey": "現在のターミナル数。",
"terminalEditorFocusContextKey": "エディター領域内のターミナルが対象であるかどうか。",
"terminalFocusContextKey": "ターミナルがフォーカスされているかどうか。",
+ "terminalFocusInAnyContextKey": "他の UI で使用されるデタッチされたターミナルを含め、いずれかのターミナルがフォーカスされているかどうか。",
"terminalProcessSupportedContextKey": "ターミナル プロセスを現在のワークスペースで起動できるかどうか。",
"terminalShellIntegrationEnabled": "アクティブなターミナルでシェル統合が有効になっているかどうか",
- "terminalShellTypeContextKey": "アクティブなターミナルのシェルの種類。ターミナルが存在しない場合は、これは最新の既知の値に設定されます。",
+ "terminalShellTypeContextKey": "アクティブなターミナルのシェルの種類。これは、型が検出可能な場合に設定されます。",
+ "terminalSuggestWidgetVisible": "ターミナルの提案ウィジェットが表示されるかどうか。",
"terminalTabsFocusContextKey": "ターミナル タブ ウィジェットがフォーカスされているかどうか。",
"terminalTabsSingularSelectedContextKey": "ターミナル タブの一覧でターミナルが選択されているかどうか。",
"terminalTextSelectedContextKey": "アクティブなターミナルでテキストが選択されているかどうか。",
+ "terminalTextSelectedInFocusedContextKey": "フォーカスされたターミナルでテキストが選択されているかどうか。",
"terminalViewShowing": "ターミナル ビューが表示されているかどうか"
},
"vs/workbench/contrib/terminal/common/terminalStrings": {
@@ -9353,90 +14902,766 @@
"doNotShowAgain": "今後表示しない",
"killTerminal": "ターミナルの強制終了",
"killTerminal.short": "強制終了",
+ "local": "ローカル",
+ "moveIntoNewWindow": "ターミナルを新しいウィンドウに移動",
"moveToEditor": "ターミナルをエディター領域へ移動",
+ "newInNewWindow": "新しいターミナル ウィンドウ",
"previousSessionCategory": "前のセッション",
"splitTerminal": "ターミナルの分割",
"splitTerminal.short": "分割",
+ "task": "タスク",
"terminal": "ターミナル",
+ "terminal.new": "新しいターミナル",
+ "terminalCategory": "ターミナル",
"unsplitTerminal": "ターミナルの分割解除",
"workbench.action.terminal.changeColor": "色の変更...",
"workbench.action.terminal.changeIcon": "アイコンの変更...",
"workbench.action.terminal.focus": "ターミナルにフォーカス",
+ "workbench.action.terminal.focusAndHideAccessibleBuffer": "ターミナルにフォーカスし、アクセス可能なバッファーを非表示にする",
+ "workbench.action.terminal.focusHover": "ホバーにフォーカスを置く",
+ "workbench.action.terminal.focusInstance": "ターミナルにフォーカス",
"workbench.action.terminal.moveToTerminalPanel": "ターミナルをパネルへ移動",
+ "workbench.action.terminal.newWithCwd": "カスタム作業ディレクトリで新しいターミナルの作成を開始する",
"workbench.action.terminal.rename": "名前の変更...",
+ "workbench.action.terminal.renameWithArg": "現在アクティブなターミナルの名前を変更する",
+ "workbench.action.terminal.revealCommand": "ターミナルでコマンドを表示する",
+ "workbench.action.terminal.scrollToNextCommand": "次のコマンドにスクロール",
+ "workbench.action.terminal.scrollToPreviousCommand": "前のコマンドにスクロール",
"workbench.action.terminal.sizeToContentWidthInstance": "コンテンツの幅にサイズを切り替える"
},
- "vs/workbench/contrib/terminal/electron-sandbox/terminalRemote": {
+ "vs/workbench/contrib/terminal/electron-browser/terminalRemote": {
"workbench.action.terminal.newLocal": "新しい統合ターミナルを作成 (ローカル)"
},
+ "vs/workbench/contrib/terminalContrib/accessibility/browser/terminal.accessibility.contribution": {
+ "workbench.action.terminal.accessibleBufferGoToNextCommand": "アクセス可能なバッファー [次のコマンドに移動]",
+ "workbench.action.terminal.accessibleBufferGoToPreviousCommand": "アクセス可能なバッファー [前のコマンドに移動]",
+ "workbench.action.terminal.focusAccessibleBuffer": "Focus Accessible Terminal View",
+ "workbench.action.terminal.scrollToBottomAccessibleView": "アクセス可能なビューの下にスクロール",
+ "workbench.action.terminal.scrollToTopAccessibleView": "アクセス可能なビューの上にスクロール"
+ },
+ "vs/workbench/contrib/terminalContrib/accessibility/browser/terminalAccessibilityHelp": {
+ "commandPromptMigration": "エクスペリエンスを向上させるため、コマンド プロンプトの代わりに PowerShell を使用することを検討してください",
+ "focusAccessibleTerminalView": "[Focus Accessible Terminal View] (アクセス可能なターミナルビューにフォーカス) コマンドを使用すると、スクリーン リーダーはターミナル コンテンツを読み取ることができます。",
+ "focusAfterRun": "ターミナルで選択したテキストを `{0}` で実行した後にフォーカスされる内容を構成します。",
+ "focusViewOnExecution": "ターミナルでコマンドが実行されたときに Terminal Accessible View ビューに自動的にフォーカスするには、'terminal.integrated.accessibleViewFocusOnCommandExecution' を有効にします。",
+ "goToNextCommand": "アクセス可能なビューで [次のコマンドに移動] ",
+ "goToPreviousCommand": "アクセス可能なビューで [前のコマンドに移動] ",
+ "goToRecentDirectory": "最近使用したディレクトリに移動する ",
+ "goToSymbol": "シンボルに移動 ",
+ "newWithProfile": "[(プロファイルを使用した) 新しいターミナルを作成する] コマンドを使用すると、特定のプロファイルを使用して簡単にターミナルを作成できます。",
+ "noShellIntegration": "シェル統合が有効になっていません。一部のアクセシビリティ機能を利用できない可能性があります。",
+ "openDetectedLink": "[検出されたリンクを開く ] コマンドを使用すると、スクリーン リーダーはターミナルにあるリンクを簡単に開くことができるようになります。",
+ "preserveCursor": "'terminal.integrated.accessibleViewPreserveCursorPosition' を使用して、ターミナルとアクセス可能なビューを切り替えるときのカーソルの動作をカスタマイズします。",
+ "runRecentCommand": "最近のコマンドの実行 ",
+ "shellIntegration": "ターミナルにはシェル統合と呼ばれる機能があり、強化されたエクスペリエンスを提供し、スクリーン リーダーに次のような便利なコマンドを提供します:",
+ "suggest": "ターミナル提案ウィジェットにフォーカスがある場合:",
+ "suggestCommands": "- 提案を受け入れ<キーバインド:{0}>、候補の設定を構成します<キーバインド:{1}>。",
+ "suggestCommandsMore": "- 提案に関する詳細を見るには、ウィジェットとターミナル間を切り替え<キーバインド:{0}>、詳細フォーカスを切り替えます<キーバインド:{1}>。",
+ "suggestConfigure": "-候補設定を構成する<キーバインド:{0}>",
+ "suggestLearnMore": "- 提案に関する詳細をご確認ください<キーバインド :{0}>。",
+ "suggestTrigger": "ターミナル要求完了コマンドは、keybinding:{0}> を<手動で呼び出すことができますが、入力中にも表示されます。"
+ },
+ "vs/workbench/contrib/terminalContrib/accessibility/common/terminalAccessibilityConfiguration": {
+ "terminal.integrated.accessibleViewFocusOnCommandExecution": "コマンド実行時にターミナルのアクセス可能ビューをフォーカスします。",
+ "terminal.integrated.accessibleViewPreserveCursorPosition": "バッファーの下部に設定するのではなく、ターミナルのアクセス可能なビューを再度開いたときにカーソルの位置を保持します。"
+ },
+ "vs/workbench/contrib/terminalContrib/autoReplies/common/terminalAutoRepliesConfiguration": {
+ "terminal.integrated.autoReplies": "ターミナルで検出されたときに自動的に応答されるメッセージ セットです。メッセージが十分に具体的であれば、これを使用して一般的な応答を自動化できます。\r\n\r\n注釈:\r\n\r\n- {0} を使用して、Windows でバッチ ジョブの終了プロンプトに自動的に応答します。\r\n- メッセージにはエスケープ シーケンスが含まれるため、返信はスタイル付きテキストにならない可能性があります。\r\n- 各返信は 1 秒に 1 回のみ行えます。\r\n- 返信で Enter キーを示すには、{1} を使用します。\r\n- 既定のキーの設定を解除するには、値を null 値に設定します。\r\n- 新しい VS Code が適用されない場合は、VS Code を再起動します。",
+ "terminal.integrated.autoReplies.reply": "プロセスに送信する返信。"
+ },
+ "vs/workbench/contrib/terminalContrib/chat/browser/terminal.initialHint.contribution": {
+ "disableHint": " このヒントを無効にするには、設定の {0} を切り替えます。",
+ "disableInitialHint": "初期ヒントを無効にする",
+ "emptyHintText": "チャット {0} を開きます。",
+ "hintTextDismiss": "入力を開始して閉じます。",
+ "inlineChatHint": "[[チャットを開く]] または入力を開始して閉じます。"
+ },
+ "vs/workbench/contrib/terminalContrib/chat/browser/terminalChat": {
+ "chatAgentRegisteredContextKey": "チャット エージェントがターミナルの場所に登録されているかどうか。",
+ "chatFocusedContextKey": "チャット ビューがフォーカスされているかどうか。",
+ "chatInputHasTextContextKey": "チャット入力にテキストがあるかどうか。",
+ "chatRequestActiveContextKey": "アクティブなチャット要求があるかどうか。",
+ "chatResponseContainsCodeBlockContextKey": "チャット応答にコード ブロックが含まれているかどうか。",
+ "chatResponseContainsMultipleCodeBlocksContextKey": "チャット応答に複数のコード ブロックが含まれているかどうか。",
+ "chatVisibleContextKey": "チャット ビューが表示されるかどうか。",
+ "terminalHasChatTerminals": "チャット ターミナルがあるかどうか。",
+ "terminalHasHiddenChatTerminals": "非表示のチャット ターミナルがあるかどうか。"
+ },
+ "vs/workbench/contrib/terminalContrib/chat/browser/terminalChatAccessibilityHelp": {
+ "chat.signals": "アクセシビリティ シグナルは、signals.chat のプレフィックスを持つ設定を使用して変更できます。既定では、要求に 4 秒以上かかる場合は、進行状況がまだ発生していることを示すサウンドが聞こえます。",
+ "inlineChat.access": "コマンド: Terminal: Start Chat ({0}) を使用してアクティブ化できます。これにより入力ボックスがフォーカスを取得します。",
+ "inlineChat.focusInput": "応答 ({0}) から入力ボックスに到達します。",
+ "inlineChat.focusInputNoKb": "Shift キーを押しながら Tab キーを押すか、コマンド: Focus Terminal Input のキー バインドを割り当てることで、入力ボックスから応答に到達します。",
+ "inlineChat.focusResponse": "入力ボックス ({0}) から応答に到達します。",
+ "inlineChat.focusResponseNoKb": "タブ移動するか、コマンド (ターミナル応答にフォーカス) にキー バインドを割り当てると、入力ボックスから応答に到達します。",
+ "inlineChat.input": "入力ボックスは、ユーザーが要求を入力し、要求 ({0}) を行うことができる場所です。ウィジェットは閉じられ、Esc キーが押されるとすべてのコンテンツが破棄され、ターミナルはフォーカスを再取得します。",
+ "inlineChat.inputNoKb": "入力ボックスは、ユーザーが要求を入力し、[要求の作成] ボタンにタブ移動して要求を行うことができる場所ですが、これは現在、キーバインドではトリガーできません。ウィジェットは閉じられ、Esc キーが押されるとすべてのコンテンツが破棄され、ターミナルはフォーカスを再取得します。",
+ "inlineChat.insertCommand": "入力ボックス のコマンド エディターにフォーカスがある場合、Terminal: Insert Chat コマンド ({0}) アクション。",
+ "inlineChat.insertCommandNoKb": "現在、キー バインドによってアクションをトリガーできないため、ボタンに Tab キーを押してコマンドを挿入します。",
+ "inlineChat.inspectResponseMessage": "応答は、アクセシビリティの高いビュー ({0}) で検査できます。",
+ "inlineChat.inspectResponseNoKb": "入力ボックスがフォーカスされている状態で、[アクセス可能なビューを開く] コマンドを使用してアクセス可能なビューの応答を検査します。これは現在、キー バインドではトリガーできません。",
+ "inlineChat.overview": "インライン チャットはターミナル内で行われます。ターミナル コマンドを提案する場合に便利です。AI によって生成されたコードが正しくない可能性があることにご注意ください。",
+ "inlineChat.runCommand": "入力ボックスまたはコマンド エディターにフォーカスがある場合、Terminal: Run Chat コマンド ({0}) アクション。",
+ "inlineChat.runCommandNoKb": "現在、キー バインドによってアクションをトリガーできないため、Tab キーでボタンに移動してコマンドを実行します。",
+ "inlineChat.toolbar": "タブを使用して、コマンド、ステータス、メッセージ応答などの条件付き部分にアクセスします。"
+ },
+ "vs/workbench/contrib/terminalContrib/chat/browser/terminalChatActions": {
+ "chat.rerun.label": "要求の再実行",
+ "chatTerminal.lastCommand": "最後: {0}",
+ "closeChat": "閉じる",
+ "insert": "挿入",
+ "insertCommand": "チャットの挿入コマンド",
+ "insertFirst": "最初に挿入",
+ "insertFirstCommand": "最初にチャットを挿入コマンド",
+ "run": "実行",
+ "runCommand": "チャットの実行コマンド",
+ "runFirst": "最初に実行",
+ "runFirstCommand": "最初のチャット コマンドの実行",
+ "selectChatTerminal": "表示してフォーカスするチャット ターミナルを選択する",
+ "showChatTerminals.title": "チャット ターミナル",
+ "startChat": "インライン チャットを開く",
+ "terminalCategory": "ターミナル",
+ "terminalCategory2": "ターミナル",
+ "viewHiddenChatTerminals": "非表示のチャット ターミナルを表示する",
+ "viewInChat": "チャットで表示する"
+ },
+ "vs/workbench/contrib/terminalContrib/chat/browser/terminalChatWidget": {
+ "askAboutCommands": "コマンドについて質問"
+ },
+ "vs/workbench/contrib/terminalContrib/chat/common/terminalInitialHintConfiguration": {
+ "terminal.integrated.initialHint": "入力されていない最初のターミナルがフォーカスされているときに使用可能なアクションに関するヒントを表示するかどうかを制御します。"
+ },
+ "vs/workbench/contrib/terminalContrib/chatAgentTools/browser/runInTerminalHelpers": {
+ "allowSession": "このセッションのすべてのコマンドを許可する",
+ "allowSessionTooltip": "このツールを確認せずにこのセッションで実行できるようにします。",
+ "autoApprove.baseCommand": "コマンドを常に許可する: {0}",
+ "autoApprove.baseCommandSingle": "コマンドを常に許可する: {0}",
+ "autoApprove.configure": "自動承認の構成...",
+ "autoApprove.exactCommand": "常に正確なコマンド ラインを許可する"
+ },
+ "vs/workbench/contrib/terminalContrib/chatAgentTools/browser/terminal.chatAgentTools.contribution": {
+ "addTerminalSelection": "チャットにターミナルの選択を追加する",
+ "terminalSelection": "ターミナルの選択",
+ "toolset.shell": "Run commands in the terminal"
+ },
+ "vs/workbench/contrib/terminalContrib/chatAgentTools/browser/tools/commandLineAnalyzer/commandLineAutoApproveAnalyzer": {
+ "autoApprove.global": "{0} の設定による自動承認",
+ "autoApprove.rule": "ルール {0} による自動承認",
+ "autoApprove.rules": "ルール {0} による自動承認",
+ "autoApprove.session": "このセッションに関して自動承認済み",
+ "autoApprove.session.disable": "無効にする",
+ "autoApproveDenied.rule": "ルール {0} によって自動承認が拒否されました",
+ "autoApproveDenied.rules": "ルール {0} によって自動承認が拒否されました",
+ "ruleTooltip": "設定でルールを表示する",
+ "ruleTooltip.global": "設定の表示",
+ "runInTerminal.promptInjectionDisclaimer": "Web コンテンツには悪意のあるコードが含まれていたり、プロンプト インジェクション攻撃を試みたりする可能性があります。"
+ },
+ "vs/workbench/contrib/terminalContrib/chatAgentTools/browser/tools/commandLineAnalyzer/commandLineFileWriteAnalyzer": {
+ "runInTerminal.fileWriteBlockedDisclaimer": "自動承認できないファイルの書き込み操作が検出されました: {0}",
+ "runInTerminal.fileWriteDisclaimer": "検出されたファイル書き込み操作: {0}"
+ },
+ "vs/workbench/contrib/terminalContrib/chatAgentTools/browser/tools/getTerminalLastCommandTool": {
+ "getTerminalLastCommand.past": "最後のターミナル コマンドを取得しました",
+ "getTerminalLastCommand.progressive": "最後のターミナル コマンドを取得しています",
+ "terminalLastCommandTool.displayName": "ターミナルの最後のコマンドを取得する"
+ },
+ "vs/workbench/contrib/terminalContrib/chatAgentTools/browser/tools/getTerminalOutputTool": {
+ "bg.past": "バックグラウンド ターミナル出力を確認しました",
+ "bg.progressive": "バックグラウンド ターミナル出力を確認しています",
+ "getTerminalOutputTool.displayName": "ターミナル出力の取得"
+ },
+ "vs/workbench/contrib/terminalContrib/chatAgentTools/browser/tools/getTerminalSelectionTool": {
+ "getTerminalSelection.past": "ターミナル選択の読み取り",
+ "getTerminalSelection.progressive": "ターミナルの選択を読み取っています",
+ "terminalSelectionTool.displayName": "ターミナルの選択を取得する"
+ },
+ "vs/workbench/contrib/terminalContrib/chatAgentTools/browser/tools/monitoring/outputMonitor": {
+ "poll.terminal.accept": "はい",
+ "poll.terminal.acceptRun": "許可",
+ "poll.terminal.confirmRequired": "ターミナルが入力を待機しています。",
+ "poll.terminal.confirmRunDetail": "{0}\r\n '{1}'{2} をターミナルに送信し、その後に 'Enter' を押しますか?",
+ "poll.terminal.enterInput": "ターミナルにフォーカス",
+ "poll.terminal.inputRequest": "ターミナルが入力を待機しています。",
+ "poll.terminal.polling": "これは引き続き出力のポーリングを行い、ターミナルが最大 2 分間アイドル状態になるタイミングを判断します。",
+ "poll.terminal.reject": "いいえ",
+ "poll.terminal.rejectRun": "ターミナルにフォーカス",
+ "poll.terminal.requireInput": "{0}\r\nターミナルに必要な入力を指定してください。\r\n\r\n",
+ "poll.terminal.waiting": "'{0}' の待機を続けますか?"
+ },
+ "vs/workbench/contrib/terminalContrib/chatAgentTools/browser/tools/runInTerminalConfirmationTool": {
+ "confirmTerminalCommandTool.displayName": "ターミナル コマンドの確認",
+ "confirmTerminalCommandTool.userDescription": "ターミナル コマンドを確認するツール"
+ },
+ "vs/workbench/contrib/terminalContrib/chatAgentTools/browser/tools/runInTerminalTool": {
+ "runInTerminal": "`{0}` コマンドを実行しますか?",
+ "runInTerminal.background": "`{0}` コマンドを実行しますか?(バックグラウンド ターミナル)",
+ "runInTerminalTool.displayName": "ターミナルで実行",
+ "runInTerminalTool.userDescription": "Run commands in the terminal"
+ },
+ "vs/workbench/contrib/terminalContrib/chatAgentTools/browser/tools/task/createAndRunTaskTool": {
+ "allowTaskCreationExecution": "タスクの作成と実行を許可しますか?",
+ "alreadyRunning": "タスクは `{0}` 既に実行中です。",
+ "copilotChat.fetchingTask": "タスクの解決",
+ "copilotChat.noTerminal": "タスクが開始されましたが、次のターミナルが見つかりませんでした: `{0}`",
+ "copilotChat.runningTask": "タスク `{0}` を実行しています",
+ "copilotChat.taskNotFound": "タスクが見つかりませんでした: `{0}`",
+ "createAndRunTask.displayName": "タスクを作成して実行する",
+ "createAndRunTask.userDescription": "ワークスペースでタスクを作成して実行する",
+ "createTask": "コマンド '{1}'{2} を使用するタスク '{0}' が作成されます。",
+ "createdTask": "タスク `{0}` を作成しました",
+ "createdTaskPast": "タスク `{0}` を作成しました",
+ "taskExists": "タスク `{0}` は既に存在します。",
+ "taskExistsPast": "タスク `{0}` は既に存在します。"
+ },
+ "vs/workbench/contrib/terminalContrib/chatAgentTools/browser/tools/task/getTaskOutputTool": {
+ "copilotChat.checkedTerminalOutput": "タスク '{0}' の出力を確認しました",
+ "copilotChat.checkingTerminalOutput": "タスク '{0}' の出力を確認しています",
+ "copilotChat.taskAlreadyRunning": "タスク `{0}` は既に実行中です。",
+ "copilotChat.taskNotFound": "タスクが見つかりませんでした: `{0}`",
+ "copilotChat.terminalNotFound": "タスク `{0}` のターミナルが見つかりません",
+ "getTaskOutputTool.displayName": "タスク出力の取得"
+ },
+ "vs/workbench/contrib/terminalContrib/chatAgentTools/browser/tools/task/runTaskTool": {
+ "chat.allowTaskRunMsg": "タスク '{0}' の実行を許可しますか?",
+ "chat.allowTaskRunTitle": "タスクの実行を許可しますか?",
+ "chat.noTerminal": "タスクが開始されましたが、次のターミナルが見つかりませんでした: `{0}`",
+ "chat.ranTask": "`{0}` を実行しました",
+ "chat.runningTask": "`{0}` を実行しています",
+ "chat.startedTask": "`{0}` を開始しました",
+ "chat.taskAlreadyActive": "このタスクは既に実行中です。",
+ "chat.taskAlreadyRunning": "タスク `{0}` は既に実行中です。",
+ "chat.taskIsAlreadyRunning": "`{0}` は既に実行中です。",
+ "chat.taskNotFound": "タスクが見つかりませんでした: `{0}`",
+ "chat.taskWasAlreadyRunning": "`{0}` は既に実行されています。",
+ "runInTerminalTool.displayName": "タスクの実行",
+ "runInTerminalTool.userDescription": "Run tasks in the workspace"
+ },
+ "vs/workbench/contrib/terminalContrib/chatAgentTools/browser/tools/task/taskHelpers": {
+ "copilotChat.taskFailedWithExitCode": "タスク `{0}` は終了コード {1} で失敗しました。"
+ },
+ "vs/workbench/contrib/terminalContrib/chatAgentTools/common/terminalChatAgentToolsConfiguration": {
+ "autoApprove.defaults": "コマンドを許可および拒否する既定のルール セットがあることに注意してください。{0} を {1} に設定して、すべての既定のルールを無視し、独自のルールと競合しないよう徹底することを検討してください。これは自己責任で行ってください。既定の拒否ルールは、危険なコマンドの実行から保護できるよう設計されています。",
+ "autoApprove.deprecated": "代わりに {0} を使用してください",
+ "autoApprove.description.commandLine": "オブジェクトを使用すると、サブコマンドやインライン コマンドではなく、完全なコマンド ラインと照合できます (例: {0})。自動承認されるためには、サブコマンドとコマンド ラインの両方が明示的に拒否されていない必要があり、その後、すべてのサブコマンドまたはコマンド ラインのいずれかが承認される必要があります。",
+ "autoApprove.description.examples.binTest": "パス {0} ({1}、{2} など) に一致するすべてのコマンドを許可する",
+ "autoApprove.description.examples.description": "説明",
+ "autoApprove.description.examples.mkdir": "{0} で始まるすべてのコマンドを許可する",
+ "autoApprove.description.examples.npmRunBuild": "{0} で始まるすべてのコマンドを許可する",
+ "autoApprove.description.examples.ps1": "大文字と小文字の区別に関係なく、{0} を含む \"コマンド ライン\" に対して明示的な承認を要求する",
+ "autoApprove.description.examples.regexAll": "すべてのコマンドを許可する (拒否されたコマンドには引き続き承認が必要)",
+ "autoApprove.description.examples.regexCase": "大文字と小文字を区別せずに {0} コマンドを許可します",
+ "autoApprove.description.examples.regexGit": "{0} と、{1} で始まるすべてのコマンドを許可します",
+ "autoApprove.description.examples.rm": "{0} で始まるコマンドすべてに明示的な承認を要求します",
+ "autoApprove.description.examples.rmUnset": "{1} の既定値 {0} の設定を解除します",
+ "autoApprove.description.examples.title": "例:",
+ "autoApprove.description.examples.value": "値",
+ "autoApprove.description.intro": "ターミナル ツール コマンドでの実行に明示的な承認が必要かどうかを制御するコマンドまたは正規表現のリスト。これらはコマンドの先頭と照合されます。正規表現を指定するには、文字列を {0} 文字でラップし、その後に大文字と小文字を区別しない省略可能なフラグ ({1} など) を付けます。",
+ "autoApprove.description.subCommands": "これらのコマンドと正規表現は、完全な \"コマンド ライン\" 内のすべての \"サブコマンド\" に対して評価されるため、たとえば、{0} では {1} と {2} の両方が {3} エントリと一致する必要があり、自動承認のためには {4} エントリと一致してはなりません。{5} (プロセスの置換) のようなインライン コマンドも検出される必要があります。",
+ "autoApprove.description.values": "コマンドを自動的に承認するには {0} に設定し、明示的な承認を常に必要とするには {1} に設定し、値を設定解除するには {2} に設定します。",
+ "autoApprove.false": "パターンの明示的な承認が必要です。",
+ "autoApprove.key": "照合するコマンドの先頭。正規表現は、文字列を '/' 文字で囲むことで指定できます。",
+ "autoApprove.matchCommandLine": "サブコマンドとインライン コマンドによる分割ではなく、完全なコマンド ラインと照合するかどうか。",
+ "autoApprove.matchCommandLine.false": "サブコマンドとインライン コマンドと一致させます。例: `foo && bar` は `foo` と `bar` の両方が一致する必要があります。",
+ "autoApprove.matchCommandLine.true": "完全なコマンド ラインと照合します。例: 'foo && bar'。",
+ "autoApprove.null": "パターンを無視します。これは、上位スコープで設定された同じパターンを解除するのに便利です。",
+ "autoApprove.true": "パターンを自動的に承認します。",
+ "autoApproveMode.description": "ターミナル ツールでの実行時に自動承認を許可するかどうかを制御します。",
+ "autoReplyToPrompts.key": "ターミナルのプロンプト (例: `確認しますか? y/n`) に自動で応答するかどうかを指定します。これは実験的な機能であり、すべてのシナリオで動作するとは限りません。",
+ "blockFileWrites.all": "検出されたすべてのファイル書き込みをブロックします。",
+ "blockFileWrites.description": "検出されたファイル書き込み操作をターミナル ツールでの実行時にブロックするかどうかを制御します。検出された場合、コマンドが通常は自動承認されるかどうかに関わらず、明示的な承認が必要になります。これにより、すべてのファイル書き込み方法を検出できるわけではありません。現在検出されている内容は、次のとおりです:\r\n\r\n- ファイル リダイレクト (Bash または PowerShell のツリー シッター文法を介して検出されました)",
+ "blockFileWrites.never": "検出されたすべてのファイル書き込みを許可します。",
+ "blockFileWrites.outsideWorkspace": "ワークスペース外で検出されたファイル書き込みをブロックします。これは、ターミナルの現在の作業ディレクトリを特定するためにシェル統合機能が正常に動作しているかどうかによって異なります。",
+ "ignoreDefaultAutoApproveRules.description": "{0} で定義されているとおりにターミナル ツールでの実行に使用される組み込みの既定の自動承認ルールを無視するかどうか。この設定を有効にすると、ターミナル ツールでの実行では、既定のルール セットからのルールは無視されますが、ユーザー設定、リモート設定、ワークスペース設定で定義されているルールには引き続き従います。この設定は自己責任で使用してください。既定の自動承認ルールは、危険なコマンドの実行から保護できるよう設計されています。",
+ "outputLocation.description": "ターミナル ツール セッションの実行結果の出力を表示する場所です。",
+ "outputLocation.none": "ターミナルを自動的に表示しません。",
+ "outputLocation.terminal": "コマンドの実行時にターミナルを表示します。",
+ "shellIntegrationTimeout.deprecated": "代わりに {0} を使用してください",
+ "shellIntegrationTimeout.description": "ターミナル ツールで実行が新しいターミナルを起動したときに、シェル統合が検出されるまでの待機時間をミリ秒単位で構成します。待機時間を最小限にするには '0' に設定します。既定値 '-1' は、待機時間が {0} の値とリモート ウィンドウかどうかに基づいて可変することを意味します。シェルの起動が非常に遅い場合は値を大きくし、シェル統合を意図的に使用していない場合は値を低くします。",
+ "terminalChatAgentProfile.linux": "チャット エージェントをターミナル ツールで実行する際に Linux で使用するターミナル プロファイル。",
+ "terminalChatAgentProfile.osx": "チャット エージェントをターミナル ツールで実行する際に macOS で使用するターミナル プロファイル。",
+ "terminalChatAgentProfile.path": "シェル実行可能ファイルへのパス。",
+ "terminalChatAgentProfile.windows": "チャット エージェントをターミナル ツールで実行する際に Windows で使用するターミナル プロファイル。"
+ },
+ "vs/workbench/contrib/terminalContrib/clipboard/browser/terminal.clipboard.contribution": {
+ "workbench.action.terminal.copyAndClearSelection": "選択範囲のコピーとクリア",
+ "workbench.action.terminal.copyLastCommand": "直近のコマンドのコピー",
+ "workbench.action.terminal.copyLastCommandAndOutput": "直近のコマンドと出力をコピーする",
+ "workbench.action.terminal.copyLastCommandOutput": "直近のコマンド出力をコピーする",
+ "workbench.action.terminal.copySelection": "選択内容のコピー",
+ "workbench.action.terminal.copySelectionAsHtml": "選択内容を HTML としてコピー",
+ "workbench.action.terminal.paste": "アクティブな端末に貼り付け",
+ "workbench.action.terminal.pasteSelection": "アクティブなターミナルへの選択範囲の張り付け"
+ },
+ "vs/workbench/contrib/terminalContrib/clipboard/browser/terminalClipboard": {
+ "confirmMoveTrashMessageFilesAndDirectories": "{0} 行のテキストをターミナルに貼り付けますか?",
+ "doNotAskAgain": "今後このメッセージを表示しない",
+ "multiLinePasteButton": "貼り付け(&&P)",
+ "multiLinePasteButton.oneLine": "1 行として貼り付け(&&O)",
+ "preview": "プレビュー:"
+ },
+ "vs/workbench/contrib/terminalContrib/commandGuide/browser/terminal.commandGuide.contribution": {
+ "terminalCommandGuide.foreground": "コマンドの左側に表示されるターミナル コマンド ガイドの前景色と、ホバー時の出力。"
+ },
+ "vs/workbench/contrib/terminalContrib/commandGuide/common/terminalCommandGuideConfiguration": {
+ "showCommandGuide": "ターミナルでコマンドをポイントしたときにコマンド ガイドを表示するかどうか。"
+ },
+ "vs/workbench/contrib/terminalContrib/developer/browser/terminal.developer.contribution": {
+ "workbench.action.terminal.recordSession": "ターミナル セッションのレコード",
+ "workbench.action.terminal.recordSession.recording": "ターミナル セッションをレコードしています...",
+ "workbench.action.terminal.restartPtyHost": "PTY ホストの再起動",
+ "workbench.action.terminal.showTextureAtlas": "ターミナル テクスチャ Atlas の表示",
+ "workbench.action.terminal.writeDataToTerminal": "ターミナルへのデータの書き込み",
+ "workbench.action.terminal.writeDataToTerminal.prompt": "pty をバイパスして、ターミナルに直接書き込むデータを入力します"
+ },
+ "vs/workbench/contrib/terminalContrib/environmentChanges/browser/terminal.environmentChanges.contribution": {
+ "ScopedEnvironmentContributionInfo": "ワークスペース",
+ "envChanges": "ターミナル環境の変更",
+ "extension": "拡張機能: {0}",
+ "workbench.action.terminal.showEnvironmentContributions": "環境への変更を表示"
+ },
+ "vs/workbench/contrib/terminalContrib/find/browser/terminal.find.contribution": {
+ "workbench.action.terminal.findNext": "次を検索",
+ "workbench.action.terminal.findPrevious": "前を検索",
+ "workbench.action.terminal.focusFind": "検索にフォーカスを置く",
+ "workbench.action.terminal.hideFind": "検索を非表示にする",
+ "workbench.action.terminal.searchWorkspace": "ワークスペースで検索",
+ "workbench.action.terminal.toggleFindCaseSensitive": "大文字小文字を区別した検索に切り替える",
+ "workbench.action.terminal.toggleFindRegex": "正規表現を使用した検索に切り替える",
+ "workbench.action.terminal.toggleFindWholeWord": "単語単位での検索に切り替える"
+ },
+ "vs/workbench/contrib/terminalContrib/history/browser/terminal.history.contribution": {
+ "goToRecentDirectory.metadata": "最近使用したフォルダーに移動します",
+ "workbench.action.terminal.clearPreviousSessionHistory": "以前のセッション履歴をクリアする",
+ "workbench.action.terminal.goToRecentDirectory": "最近使用したディレクトリに移動する...",
+ "workbench.action.terminal.runRecentCommand": "最近使用したコマンドの実行..."
+ },
+ "vs/workbench/contrib/terminalContrib/history/browser/terminalRunRecentQuickPick": {
+ "openShellHistoryFile": "ファイルを開く",
+ "removeCommand": "コマンド履歴から削除",
+ "selectRecentCommand": "実行するコマンドを選択する (Alt キーを押しながらコマンドを編集する)",
+ "selectRecentCommandMac": "実行するコマンドを選択する (Option キーを押しながらコマンドを編集する)",
+ "selectRecentDirectory": "移動するディレクトリを選択する (Alt キーを押しながらコマンドを編集する)",
+ "selectRecentDirectoryMac": "移動するディレクトリを選択する (Option キーを押しながらコマンドを編集する)",
+ "shellFileHistoryCategory": "{0} 履歴",
+ "viewCommandOutput": "コマンド出力の表示"
+ },
+ "vs/workbench/contrib/terminalContrib/history/common/terminal.history": {
+ "terminal.integrated.shellIntegration.history": "ターミナル コマンド履歴に保持する最近使用したコマンドの数を制御します。ターミナル コマンド履歴を無効にするには、[0] に設定します。"
+ },
+ "vs/workbench/contrib/terminalContrib/links/browser/terminal.links.contribution": {
+ "workbench.action.terminal.openDetectedLink": "検出されたリンクを開く...",
+ "workbench.action.terminal.openLastLocalFileLink": "最新のローカル ファイル リンクを開く",
+ "workbench.action.terminal.openLastUrlLink": "最新の URL リンクを開く",
+ "workbench.action.terminal.openLastUrlLink.description": "ターミナルで最後に検出された URL/URI リンクを開きます"
+ },
+ "vs/workbench/contrib/terminalContrib/links/browser/terminalLinkDetectorAdapter": {
+ "focusFolder": "エクスプローラーのフォルダーにフォーカス",
+ "followLink": "リンクにアクセス",
+ "openFile": "エディターでファイルを開く",
+ "openFolder": "フォルダーを新しいウィンドウで開く",
+ "searchWorkspace": "ワークスペースを検索"
+ },
+ "vs/workbench/contrib/terminalContrib/links/browser/terminalLinkManager": {
+ "allow": "{0} を許可",
+ "followForwardedLink": "転送ポートを使用してリンクにアクセスする",
+ "followLink": "リンクにアクセス",
+ "followLinkUrl": "リンク",
+ "scheme": "URI を開くのは安全でない可能性があります。スキーム {0} でリンクを開くことを許可しますか?",
+ "terminalLinkHandler.followLinkAlt": "Alt + クリック",
+ "terminalLinkHandler.followLinkAlt.mac": "option + クリック",
+ "terminalLinkHandler.followLinkCmd": "cmd + クリック",
+ "terminalLinkHandler.followLinkCtrl": "Ctrl + クリック"
+ },
+ "vs/workbench/contrib/terminalContrib/links/browser/terminalLinkQuickpick": {
+ "terminal.integrated.localFileLinks": "ファイル",
+ "terminal.integrated.localFolderLinks": "フォルダー",
+ "terminal.integrated.openDetectedLink": "開くリンクを選択し、入力してすべてのリンクをフィルター処理します",
+ "terminal.integrated.searchLinks": "ワークスペース検索",
+ "terminal.integrated.urlLinks": "URL"
+ },
+ "vs/workbench/contrib/terminalContrib/quickAccess/browser/terminal.quickAccess.contribution": {
+ "quickAccessTerminal": "アクティブなターミナルの切り替え",
+ "tasksQuickAccessHelp": "開いているすべてのターミナルを表示",
+ "tasksQuickAccessPlaceholder": "開く端末名を入力します。"
+ },
+ "vs/workbench/contrib/terminalContrib/quickAccess/browser/terminalQuickAccess": {
+ "renameTerminal": "ターミナルの名前変更",
+ "workbench.action.terminal.newWithProfilePlus": "(プロファイルを使用した) 新しいターミナルを作成する...",
+ "workbench.action.terminal.newplus": "新しいターミナルの作成"
+ },
+ "vs/workbench/contrib/terminalContrib/quickFix/browser/quickFixAddon": {
+ "codeAction.widget.id.quickfix": "クイック修正",
+ "quickFix.command": "実行: {0}",
+ "quickFix.opener": "開く: {0}"
+ },
+ "vs/workbench/contrib/terminalContrib/quickFix/browser/terminal.quickFix.contribution": {
+ "workbench.action.terminal.showQuickFixes": "ターミナルのクイック修正を表示する"
+ },
+ "vs/workbench/contrib/terminalContrib/quickFix/browser/terminalQuickFixBuiltinActions": {
+ "terminal.createPR": "PR {0} の作成",
+ "terminal.freePort": "空きポート {0}"
+ },
+ "vs/workbench/contrib/terminalContrib/quickFix/browser/terminalQuickFixService": {
+ "vscode.extension.contributes.terminalQuickFixes": "ターミナルのクイック修正を提供します。",
+ "vscode.extension.contributes.terminalQuickFixes.commandExitResult": "一致するコマンド終了結果",
+ "vscode.extension.contributes.terminalQuickFixes.commandLineMatcher": "コマンド ラインをテストする正規表現または文字列",
+ "vscode.extension.contributes.terminalQuickFixes.id": "クイック修正プロバイダーの ID。",
+ "vscode.extension.contributes.terminalQuickFixes.kind": "結果として得られるクイック修正の種類。これにより、クイック修正の表示方法が変わります。既定値は {0} に設定されます。",
+ "vscode.extension.contributes.terminalQuickFixes.outputMatcher": "出力の単一行に一致するための正規表現または文字列で、terminalCommand および URI で参照されるグループを提供します。\r\n\r\n例えば:\r\n\r\n `lineMatcher: /git push --set-upstream origin (?[^s]+)/;`\r\n\r\n`terminalCommand: 'git push --set-upstream origin ${group:branchName}';`\r\n"
+ },
+ "vs/workbench/contrib/terminalContrib/sendSequence/browser/terminal.sendSequence.contribution": {
+ "sendSequence": "送信シーケンス",
+ "sendSequence.text.desc": "ターミナルに送信するテキストのシーケンス",
+ "workbench.action.terminal.sendSequence.prompt": "ターミナルに送信するシーケンスを入力する"
+ },
+ "vs/workbench/contrib/terminalContrib/sendSignal/browser/terminal.sendSignal.contribution": {
+ "SIGCONT": "プロセスの続行",
+ "SIGHUP": "ハングアップ",
+ "SIGINT": "プロセスを中断する (Ctrl+C)",
+ "SIGKILL": "プロセスの強制中止",
+ "SIGQUIT": "プロセスの終了",
+ "SIGSTOP": "プロセスの停止",
+ "SIGTERM": "プロセスを正常に終了する",
+ "SIGUSR1": "ユーザー定義シグナル 1",
+ "SIGUSR2": "ユーザー定義シグナル 2",
+ "enterSignal": "シグナル名を入力してください (例: SIGTERM、SIGKILL)",
+ "manualSignal": "シグナルを手動で入力する",
+ "selectSignal": "ターミナル プロセスに送信するシグナルを選択する",
+ "sendSignal": "シグナルの送信",
+ "sendSignal.signal.desc": "ターミナル プロセスに送信するシグナル (例: 'SIGTERM'、'SIGINT'、'SIGKILL')"
+ },
+ "vs/workbench/contrib/terminalContrib/stickyScroll/browser/terminal.stickyScroll.contribution": {
+ "miStickyScroll": "スティッキー スクロール(&&S)",
+ "stickyScroll": "スティッキー スクロール",
+ "workbench.action.terminal.toggleStickyScroll": "スティッキー スクロールの切り替え"
+ },
+ "vs/workbench/contrib/terminalContrib/stickyScroll/browser/terminalStickyScrollColorRegistry": {
+ "terminalStickyScroll.background": "ターミナルに表示されるスティッキー スクロール オーバーレイの背景色。",
+ "terminalStickyScroll.border": "ターミナルに表示されるスティッキー スクロール オーバーレイの境界線。",
+ "terminalStickyScrollHover.background": "マウスが置かれているときにターミナルに表示されるスティッキー スクロール オーバーレイの背景色。"
+ },
+ "vs/workbench/contrib/terminalContrib/stickyScroll/browser/terminalStickyScrollOverlay": {
+ "labelWithKeybinding": "{0} ({1})",
+ "stickyScrollHoverTitle": "コマンドに移動"
+ },
+ "vs/workbench/contrib/terminalContrib/stickyScroll/common/terminalStickyScrollConfiguration": {
+ "stickyScroll.enabled": "ターミナルの上部に現在のコマンドを表示します。この機能を有効にするには、[シェル統合]({0}) が必要です。{1} 以下を参照してください。",
+ "stickyScroll.maxLineCount": "表示するスティッキー行の最大数を定義します。スティッキー スクロール行は、この設定に関係なくビューポートの 40% を超えることはありません。"
+ },
+ "vs/workbench/contrib/terminalContrib/suggest/browser/terminal.suggest.contribution": {
+ "workbench.action.terminal.acceptSelectedSuggestion": "挿入",
+ "workbench.action.terminal.acceptSelectedSuggestionEnter": "選択した候補を承諾する (Enter)",
+ "workbench.action.terminal.configureSuggestSettings": "構成",
+ "workbench.action.terminal.hideSuggestWidget": "提案ウィジェットを非表示にする",
+ "workbench.action.terminal.hideSuggestWidgetAndNavigateHistory": "候補ウィジェットと移動履歴を非表示にする",
+ "workbench.action.terminal.learnMore": "詳細情報",
+ "workbench.action.terminal.resetSuggestWidgetSize": "候補のウィジェットのサイズをリセット",
+ "workbench.action.terminal.selectNextPageSuggestion": "次のページ候補を選択する",
+ "workbench.action.terminal.selectNextSuggestion": "[次の提案] を選択する",
+ "workbench.action.terminal.selectPrevPageSuggestion": "前のページの候補を選択する",
+ "workbench.action.terminal.selectPrevSuggestion": "前の候補を選択する",
+ "workbench.action.terminal.suggestToggleDetails": "提案の切り替えの詳細",
+ "workbench.action.terminal.suggestToggleDetailsFocus": "提案の表示/非表示のフォーカス",
+ "workbench.action.terminal.suggestToggleExplainMode": "候補の説明モードの切り替え",
+ "workbench.action.terminal.triggerSuggest": "候補をトリガーする"
+ },
+ "vs/workbench/contrib/terminalContrib/suggest/browser/terminalSuggestAddon": {
+ "alias": "エイリアス",
+ "argument": "引数",
+ "branch": "ブランチ",
+ "commit": "コミット",
+ "file": "ファイル",
+ "flag": "フラグ",
+ "folder": "フォルダー",
+ "inlineSuggestion": "インライン候補",
+ "inlineSuggestionAlwaysOnTop": "インライン候補",
+ "method": "メソッド",
+ "option": "オプション",
+ "optionValue": "オプションの値",
+ "pullRequest": "pull request",
+ "pullRequestDone": "pull request (完了)",
+ "remote": "リモート",
+ "stash": "スタッシュ",
+ "symbolicLinkFile": "シンボリック リンク ファイル",
+ "symbolicLinkFolder": "シンボリック リンク フォルダー",
+ "tag": "タグ"
+ },
+ "vs/workbench/contrib/terminalContrib/suggest/browser/terminalSymbolIcons": {
+ "terminalSymbolAliasIcon": "ターミナルの候補ウィジェットのエイリアスのアイコン。",
+ "terminalSymbolArgumentIcon": "ターミナルの候補ウィジェットの引数のアイコン。",
+ "terminalSymbolBranchIcon": "ターミナル提案ウィジェットのブランチのアイコン。",
+ "terminalSymbolCommitIcon": "ターミナル提案ウィジェットのコミットのアイコン。",
+ "terminalSymbolFileIcon": "ターミナルの候補ウィジェットのファイルのアイコン。",
+ "terminalSymbolFlagIcon": "ターミナルの候補ウィジェットのフラグのアイコン。",
+ "terminalSymbolFolderIcon": "ターミナルの候補ウィジェットのフォルダーのアイコン。",
+ "terminalSymbolIcon.aliasForeground": "エイリアス アイコンの前景色。これらのアイコンはターミナルの候補ウィジェットに表示されます。",
+ "terminalSymbolIcon.argumentForeground": "引数アイコンの前景色。これらのアイコンはターミナルの候補ウィジェットに表示されます。",
+ "terminalSymbolIcon.branchForeground": "分岐アイコンの前景色。これらのアイコンは、ターミナル候補ウィジェットに表示されます。",
+ "terminalSymbolIcon.commitForeground": "コミット アイコンの前景色。これらのアイコンは、ターミナル候補ウィジェットに表示されます。",
+ "terminalSymbolIcon.enumMemberForeground": "列挙メンバー アイコンの前景色。これらのアイコンはターミナルの候補ウィジェットに表示されます。",
+ "terminalSymbolIcon.fileForeground": "ファイル アイコンの前景色。これらのアイコンはターミナルの候補ウィジェットに表示されます。",
+ "terminalSymbolIcon.flagForeground": "フラグ アイコンの前景色。これらのアイコンはターミナルの候補ウィジェットに表示されます。",
+ "terminalSymbolIcon.folderForeground": "フォルダー アイコンの前景色。これらのアイコンはターミナルの候補ウィジェットに表示されます。",
+ "terminalSymbolIcon.inlineSuggestionForeground": "インライン候補アイコンの前景色。これらのアイコンはターミナルの候補ウィジェットに表示されます。",
+ "terminalSymbolIcon.methodForeground": "メソッド アイコンの前景色。これらのアイコンはターミナルの候補ウィジェットに表示されます。",
+ "terminalSymbolIcon.optionForeground": "オプション アイコンの前景色。これらのアイコンはターミナルの候補ウィジェットに表示されます。",
+ "terminalSymbolIcon.pullRequestDoneForeground": "完了した pull request アイコンの前景色。これらのアイコンは、ターミナル候補ウィジェットに表示されます。",
+ "terminalSymbolIcon.pullRequestForeground": "pull request アイコンの前景色。これらのアイコンは、ターミナル候補ウィジェットに表示されます。",
+ "terminalSymbolIcon.remoteForeground": "リモート アイコンの前景色。これらのアイコンは、ターミナル候補ウィジェットに表示されます。",
+ "terminalSymbolIcon.stashForeground": "スタッシュ アイコンの前景色。これらのアイコンは、ターミナル候補ウィジェットに表示されます。",
+ "terminalSymbolIcon.symbolTextForeground": "プレーンテキストの候補の前景色。これらのアイコンは、ターミナル候補ウィジェットに表示されます。",
+ "terminalSymbolIcon.symbolicLinkFileForeground": "シンボリック リンク ファイル アイコンの前景色。これらのアイコンはターミナルの候補ウィジェットに表示されます。",
+ "terminalSymbolIcon.symbolicLinkFolderForeground": "シンボリック リンク フォルダー アイコンの前景色。これらのアイコンはターミナルの候補ウィジェットに表示されます。",
+ "terminalSymbolIcon.tagForeground": "タグ アイコンの前景色。これらのアイコンは、ターミナル候補ウィジェットに表示されます。",
+ "terminalSymbolInlineSuggestionIcon": "ターミナルの候補ウィジェットのインライン候補のアイコン。",
+ "terminalSymbolMethodIcon": "ターミナルの候補ウィジェットのメソッドのアイコン。",
+ "terminalSymbolOptionIcon": "ターミナルの候補ウィジェットのオプションのアイコン。",
+ "terminalSymbolOptionValue": "ターミナルの候補ウィジェットの列挙型メンバーのアイコン。",
+ "terminalSymbolPullRequestDoneIcon": "ターミナル候補ウィジェット内の完了した pull request のアイコン。",
+ "terminalSymbolPullRequestIcon": "ターミナル候補ウィジェット内の pull request のアイコン。",
+ "terminalSymbolRemoteIcon": "ターミナル提案ウィジェットのリモートのアイコン。",
+ "terminalSymbolStashIcon": "ターミナル提案ウィジェットのスタッシュのアイコン。",
+ "terminalSymbolSymboTextIcon": "ターミナルの候補ウィジェットのプレーンテキスト候補のアイコン。",
+ "terminalSymbolSymbolicLinkFileIcon": "ターミナルの候補ウィジェットのシンボリック リンク ファイルのアイコン。",
+ "terminalSymbolSymbolicLinkFolderIcon": "ターミナル提案ウィジェットのシンボリック リンク フォルダーのアイコン。",
+ "terminalSymbolTagIcon": "ターミナル提案ウィジェットのタグのアイコン。"
+ },
+ "vs/workbench/contrib/terminalContrib/suggest/common/terminalSuggestConfiguration": {
+ "runOnEnter.always": "常に `Enter` キーで実行します。",
+ "runOnEnter.exactMatch": "候補が完全に入力されたときに `Enter` キーで実行します。",
+ "runOnEnter.exactMatchIgnoreExtension": "候補が完全に入力されたとき、または拡張子を含めずにファイルが入力されたときに `Enter` キーで実行します。",
+ "runOnEnter.never": "`Enter` キーで実行しません。",
+ "suggest.cdPath": "現在の作業ディレクトリに関係なく、$CDPATH変数内のフォルダーの子を公開する$CDPATHサポートを有効にするかどうかを制御します。$CDPATHは Windows ではセミコロンで区切り、他のプラットフォームではコロンで区切る必要があります。",
+ "suggest.cdPath.absolute": "機能を有効にして、絶対パスを使用します。これは、シェルが '$CDPATH' をネイティブにサポートしていない場合に便利です。",
+ "suggest.cdPath.off": "機能を無効にします。",
+ "suggest.cdPath.relative": "機能を有効にして、相対パスを使用します。",
+ "suggest.enabled": "{1} が {2} に設定されている場合、サポートされているシェル ({0}) のターミナル IntelliSense 候補 (プレビュー) が有効になります。",
+ "suggest.inlineSuggestion": "シェルのインライン候補を検出する必要があるかどうか、およびそのスコア付け方法を制御します。",
+ "suggest.inlineSuggestion.alwaysOnTop": "機能を有効にして、常にインライン提案を上に配置します。",
+ "suggest.inlineSuggestion.alwaysOnTopExceptExactMatch": "機能を有効にして、インライン候補を強制的に一番上に表示せずに並べ替えます。これは、完全一致がインライン提案の上にあることを意味します。",
+ "suggest.inlineSuggestion.off": "機能を無効にします。",
+ "suggest.insertTrailingSpace": "候補を受け入れて候補を再トリガーした後にスペースを自動的に挿入するかどうかを制御します。フォルダーとシンボリック リンク フォルダーの末尾にはスペースが追加されません。",
+ "suggest.provider.lsp.description": "言語サーバーからの候補を表示します。",
+ "suggest.provider.title": "{0} から候補を表示します。",
+ "suggest.providers": "プロバイダーは既定で有効になっています。プロバイダーの ID を 'false' に設定して、これらを省略します。",
+ "suggest.providersEnabledByDefault": "入力中に自動的に表示される候補を制御します。候補プロバイダーは既定で有効です。",
+ "suggest.quickSuggestions": "入力中に候補を自動的に表示するかどうかを制御します。また、提案が特殊文字によってトリガーされるかどうかを制御する {0}-設定にも注意してください。",
+ "suggest.quickSuggestions.arguments": "コマンド ライン入力の最初の単語の後にある引数のクイック候補を有効にします。",
+ "suggest.quickSuggestions.commands": "コマンド ライン入力の最初の単語であるコマンドのクイック候補を有効にします。",
+ "suggest.quickSuggestions.unknown": "最適な候補が不明な場合にクイック候補を有効にします。これがファイルにあり、フォルダーがフォールバックとして提案される場合。",
+ "suggest.runOnEnter": "`Enter` キー (`タブ` ではない) を使用して結果を承諾するときに候補をすぐに実行するかどうかを制御します。",
+ "suggest.showStatusBar": "ターミナル候補ステータス バーを表示するかどうかを制御します。",
+ "suggest.suggestOnTriggerCharacters": "トリガー文字の入力時に候補が自動的に表示されるようにするかどうかを制御します。",
+ "suggest.upArrowNavigatesHistory": "最初の候補にフォーカスがあり、ナビゲーションがまだ行われていない場合に、上矢印キーでコマンド履歴を移動するかどうかを決定します。false に設定した場合、上矢印キーを押すと代わりに最後の候補にフォーカスが移動します。",
+ "terminal.integrated.selectionMode": "統合ターミナルで候補の選択がどのように機能するかを制御します。",
+ "terminal.integrated.selectionMode.always": "IntelliSense を自動的にトリガーするときは、常に候補を選択してください。最初の候補を受け入れるには、`Enter` キーまたは `Tab` キーを使用できます。",
+ "terminal.integrated.selectionMode.never": "IntelliSense を自動でトリガーする場合は、候補を選択しないでください。'Enter' または 'Tab' キーでアクティブな候補を受け入れるには、まず `Down` キーで候補リストを移動する必要があります。",
+ "terminal.integrated.selectionMode.partial": "IntelliSense を自動的にトリガーするときに候補を部分的に選択します。最初の候補を受け入れるには `Tab` キーを使用します。候補を `Down` キーで移動した後であれば、`Enter` キーでもアクティブな候補を受け入れることができます。",
+ "terminalSuggestProvidersConfigurationTitle": "ターミナル提案プロバイダー",
+ "terminalWindowsExecutableSuggestionSetting": "ターミナルに候補として含まれる Windows コマンド実行可能拡張機能のセットです。\r\n\r\n既定では、多くの実行可能ファイルが含まれています。以下に示します:\r\n\r\n{0}。\r\n\r\n拡張機能を除外するには、'false' に設定します\r\n\r\n.リストに含まれていないものを含める場合は、追加して 'true' に設定します。"
+ },
+ "vs/workbench/contrib/terminalContrib/typeAhead/common/terminalTypeAheadConfiguration": {
+ "terminal.integrated.localEchoEnabled": "ローカル エコーを有効にする必要がある場合。これにより、{0} をオーバーライドします",
+ "terminal.integrated.localEchoEnabled.auto": "リモート ワークスペースに対してのみ有効",
+ "terminal.integrated.localEchoEnabled.off": "常に無効",
+ "terminal.integrated.localEchoEnabled.on": "常に有効",
+ "terminal.integrated.localEchoExcludePrograms": "これらのプログラム名のいずれかがターミナル タイトルに見つかったとき、ローカル エコーは無効になります。",
+ "terminal.integrated.localEchoLatencyThreshold": "ネットワーク遅延の長さ (ミリ秒単位)。ローカルの編集内容はサーバーの確認を待たずに端末にエコーされます。'0' の場合ローカル エコーは常にオンになり、'-1' の場合は無効になります。",
+ "terminal.integrated.localEchoStyle": "ローカル エコー テキストの端末スタイル。フォント スタイルまたは RGB カラー。"
+ },
+ "vs/workbench/contrib/terminalContrib/voice/browser/terminalVoice": {
+ "terminalVoiceTextInserted": "{0} が挿入されました"
+ },
+ "vs/workbench/contrib/terminalContrib/voice/browser/terminalVoiceActions": {
+ "enableExtension": "拡張機能を有効にする",
+ "installExtension": "拡張機能のインストール",
+ "terminal.voice.detail": "マイクのサポートには、この拡張機能が必要です。",
+ "terminal.voice.enableSpeechExtension": "音声拡張機能を有効にしますか?",
+ "terminal.voice.installSpeechExtension": "'Microsoft' から 'VS Code Speech' 拡張機能をインストールしますか?",
+ "workbench.action.terminal.startDictation": "ターミナルでディクテーションを開始する",
+ "workbench.action.terminal.stopDictation": "ターミナルでディクテーションを停止する"
+ },
+ "vs/workbench/contrib/terminalContrib/wslRecommendation/browser/terminal.wslRecommendation.contribution": {
+ "install": "インストール",
+ "useWslExtension.title": "WSL のターミナルを開くには、'{0}' 拡張機能をお勧めします。"
+ },
+ "vs/workbench/contrib/terminalContrib/zoom/browser/terminal.zoom.contribution": {
+ "fontZoomIn": "フォント サイズの拡大",
+ "fontZoomOut": "フォント サイズの縮小",
+ "fontZoomReset": "フォント サイズのリセット"
+ },
+ "vs/workbench/contrib/terminalContrib/zoom/common/terminal.zoom": {
+ "terminal.integrated.mouseWheelZoom": "`Ctrl` キーを押しながらマウス ホイールを使用してターミナルのフォントをズームします。",
+ "terminal.integrated.mouseWheelZoom.mac": "`Cmd` キーを押しながらマウス ホイールを使用してターミナルのフォントをズームします。"
+ },
+ "vs/workbench/contrib/testing/browser/codeCoverageDecorations": {
+ "coverage.branchCovered": "{1} のブランチ {0} は {2} 回実行されました。",
+ "coverage.branchCoveredYes": "{1} のブランチ {0} が実行されました。",
+ "coverage.branchNotCovered": "{1} のブランチ {0} はカバーされませんでした。",
+ "coverage.branches": "{2} のブランチの {0} / {1} がカバーされました。",
+ "coverage.declExecutedCount": "`{0}` は {1} 回実行されました。",
+ "coverage.declExecutedNo": "'{0}' は実行されませんでした。",
+ "coverage.declExecutedYes": "`{0}` が実行されました。",
+ "coverage.hideInline": "インライン カバレッジを非表示にする",
+ "coverage.toggleInline": "インライン カバレッジの切り替え",
+ "testing.coverageForTestAvailable": "{0} 個のテストがこのファイルでコードを実行しました",
+ "testing.filterActionLabel": "テスト カバレッジをフィルター処理する",
+ "testing.goToNextMissedLine": "カバーされていない次の行へ移動",
+ "testing.goToNextMissedLineDesc": "テストでカバーされていない次の行に移動します。",
+ "testing.goToPreviousMissedLine": "カバーされていない前の行へ移動",
+ "testing.goToPreviousMissedLineDesc": "テストでカバーされていない前の行に移動します。",
+ "testing.hideCoverageInExplorer": "エクスプローラーでカバレッジを非表示にする",
+ "testing.hideInlineCoverage": "インライン カバレッジを非表示にする",
+ "testing.rerun": "再実行",
+ "testing.showInlineCoverage": "インライン カバレッジの表示",
+ "testing.toggleCoverageInExplorerDesc": "エクスプローラー ビューでテスト カバレッジの表示を切り替えます。",
+ "testing.toggleCoverageInExplorerTitle": "エクスプローラーでカバレッジを切り替える",
+ "testing.toggleInlineCoverage": "インラインの切り替え",
+ "testing.toggleToolbarDesc": "エディターで固定カバレッジ バーを切り替えます。",
+ "testing.toggleToolbarTitle": "テスト カバレッジ ツール バー"
+ },
+ "vs/workbench/contrib/testing/browser/codeCoverageDisplayUtils": {
+ "changePerTestFilter": "クリックすると、1 つのテストのカバレッジが表示されます",
+ "testing.allTests": "すべてのテスト",
+ "testing.coverageForTest": "\"{0}\" を表示しています",
+ "testing.percentCoverage": "{0} カバレッジ",
+ "testing.pickTest": "カバレッジを表示するテストの選択"
+ },
"vs/workbench/contrib/testing/browser/icons": {
"filterIcon": "テスト ビュー内の 'フィルター' アクションのアイコン。",
"hiddenIcon": "以前は表示されていた非表示のテストの横に表示されるアイコン。",
"testViewIcon": "テスト ビューのアイコンを表示します。",
"testingCancelIcon": "実行中のテストの実行をキャンセルするアイコン。",
"testingCancelRefreshTests": "テストの更新をキャンセルするボタンのアイコン。",
+ "testingCoverage": "テスト カバレッジを表すアイコン",
+ "testingCoverageIcon": "[カバレッジを使用してテストを実行] アクションのアイコン。",
"testingDebugAllIcon": "\"すべてのテストをデバッグする\" アクションのアイコン。",
"testingDebugIcon": "\"テストのデバッグ\" アクションのアイコン。",
"testingErrorIcon": "エラーが発生したテストについて表示されるアイコン。",
"testingFailedIcon": "失敗したテストについて表示されるアイコン。",
+ "testingMissingBranch": "範囲がない未カバーのブロックを表すアイコン",
"testingPassedIcon": "成功したテストについて表示されるアイコン。",
"testingQueuedIcon": "キューに入っているテストについて表示されるアイコン。",
"testingRefreshTests": "テストを更新するためのボタンのアイコン。",
+ "testingRerunIcon": "\"テストの再実行\" アクションのアイコン。",
+ "testingResultsIcon": "テスト結果のアイコン。",
"testingRunAllIcon": "\"すべてのテストを実行する\" アクションのアイコン。",
+ "testingRunAllWithCoverageIcon": "[カバレッジを使用してすべてのテストを実行] アクションのアイコン。",
"testingRunIcon": "\"テストの実行\" アクションのアイコン。",
"testingShowAsList": "テスト エクスプローラーがツリーとして無効になったときに表示されるアイコン。",
"testingShowAsTree": "テスト エクスプローラーが一覧として無効になったときに表示されるアイコン。",
"testingSkippedIcon": "スキップされたテストについて表示されるアイコン。",
+ "testingTurnContinuousRunIsOn": "テスト項目に対して継続的実行がオンになっている場合のアイコン。",
+ "testingTurnContinuousRunOff": "連続テストの実行を無効にするアイコン。",
+ "testingTurnContinuousRunOn": "連続テストの実行を有効にするアイコン。",
"testingUnsetIcon": "設定解除状態のテストについて表示されるアイコン。",
- "testingUpdateProfiles": "更新するテスト プロファイルに表示されるアイコン。"
+ "testingUpdateProfiles": "更新するテスト プロファイルに表示されるアイコン。",
+ "testingWasCovered": "要素がカバーされたことを表すアイコン"
+ },
+ "vs/workbench/contrib/testing/browser/testCoverageBars": {
+ "branchCoverage": "{0}/{1} 対象となるブランチ ({2})",
+ "functionCoverage": "{0}/{1} 対象となる関数 ({2})",
+ "statementCoverage": "{0}/{1} 対象となるステートメント ({2})"
+ },
+ "vs/workbench/contrib/testing/browser/testCoverageView": {
+ "filteredToTest": "\"{0}\" のカバレッジを表示しています",
+ "functionsWithoutCoverage": "カバレッジなしの {0} 宣言...",
+ "loadingCoverageDetails": "カバレッジの詳細を読み込んでいます...",
+ "testCoverageItemLabel": "{0} カバレッジ: {0}%",
+ "testCoverageTreeLabel": "テスト カバレッジ エクスプローラー",
+ "testing.changeCoverageFilter": "テストでカバレッジをフィルター処理",
+ "testing.changeCoverageSort": "並べ替え順序の変更",
+ "testing.coverageCollapseAll": "すべてのカバレッジを折りたたむ",
+ "testing.coverageSortByCoverage": "カバレッジで並べ替え",
+ "testing.coverageSortByCoverageDescription": "ファイルと宣言は、合計カバレッジ順に並べ替えられます",
+ "testing.coverageSortByLocation": "場所で並べ替え",
+ "testing.coverageSortByLocationDescription": "ファイルはアルファベット順に並べ替えられ、宣言は位置順に並べ替えられます",
+ "testing.coverageSortByName": "名前順で並べ替え",
+ "testing.coverageSortByNameDescription": "ファイルと宣言はアルファベット順に並べ替えられます",
+ "testing.coverageSortPlaceholder": "テスト カバレッジ ビューを並べ替えます..."
},
"vs/workbench/contrib/testing/browser/testExplorerActions": {
"configureProfile": "更新するプロフィールを選択してください",
+ "coverageSelectedTests": "カバレッジを使用してテストを実行",
"debug test": "テストのデバッグ",
"debugAllTests": "すべてのテストをデバッグする",
"debugSelectedTests": "テストのデバッグ",
"discoveringTests": "テストの探索",
+ "getExplorerSelection": "エクスプローラーの選択を取得する",
+ "getSelectedProfiles": "選択したプロファイルを取得する",
"hideTest": "テストの非表示",
+ "noCoverageTestProvider": "このワークスペースにカバレッジ ランナーを含むテストは見つかりませんでした。テスト プロバイダー拡張機能をインストールする必要がある可能性があります",
"noDebugTestProvider": "このワークスペースでデバッグ可能なテストが見つかりません。テスト プロバイダー拡張機能をインストールする必要がある可能性があります",
+ "noRelatedCode": "関連するコードが見つかりません。",
+ "noTestFound": "関連するテストが見つかりませんでした。",
"noTestProvider": "このワークスペースにテストが見つかりません。テスト プロバイダー拡張機能をインストールする必要がある可能性があります",
+ "noTests": "選択したファイルまたはフォルダーにテストが見つかりませんでした",
+ "noTestsAtCursor": "ここにはテストが見つかりません",
+ "noTestsInFile": "このファイルにはテストが見つかりませんでした",
+ "relatedCode": "関連コード",
+ "relatedTests": "関連テスト",
"run test": "テストの実行",
+ "run with cover test": "カバレッジを使用してテストを実行",
"runAllTests": "すべてのテストを実行する",
+ "runAllWithCoverage": "カバレッジを使用してすべてのテストを実行",
"runSelectedTests": "テストの実行",
"testing.cancelRun": "テストの実行をキャンセル",
"testing.cancelTestRefresh": "テストの更新をキャンセル",
+ "testing.clearCoverage": "カバレッジのクリア",
"testing.clearResults": "すべての結果をクリア",
"testing.collapseAll": "すべてのテストを折りたたむ",
"testing.configureProfile": "テスト プロファイルの構成",
+ "testing.coverageAtCursor": "カバレッジを使用してカーソル位置でテストを実行",
+ "testing.coverageCurrentFile": "現在のファイルでカバレッジを使用してテストを実行",
+ "testing.coverageLastRun": "カバレッジを使用した前回の実行を再実行",
"testing.debugAtCursor": "カーソル位置でテストをデバッグ",
"testing.debugCurrentFile": "現在のファイルでテストをデバッグ",
"testing.debugFailTests": "失敗したテストのデバッグ",
+ "testing.debugFailedFromLastRun": "前回の実行から失敗したテストをデバッグする",
"testing.debugLastRun": "最後の実行のデバッグ",
"testing.editFocusedTest": "テストに移動",
+ "testing.goToRelatedCode": "関連コードに移動",
+ "testing.goToRelatedTest": "関連テストに移動",
+ "testing.noCoverage": "前回のテストの実行で利用可能なカバレッジ情報はありません。",
+ "testing.noProfiles": "テストの連続的実行が有効なプロファイルが見つかりませんでした",
+ "testing.openCoverage": "カバレッジを開く",
"testing.openOutputPeek": "出力をクイック表示する",
+ "testing.peekToRelatedCode": "関連コードのピーク",
+ "testing.peekToRelatedTest": "関連テストのピーク",
"testing.reRunFailTests": "失敗したテストの再実行",
+ "testing.reRunFailedFromLastRun": "前回の実行から失敗したテストを再実行する",
"testing.reRunLastRun": "最後の実行の再実行",
"testing.refreshTests": "テストの更新",
"testing.runAtCursor": "カーソル位置でテストを実行",
"testing.runCurrentFile": "現在のファイルでテストを実行",
"testing.runUsing": "プロファイルを使用して実行します...",
"testing.searchForTestExtension": "テスト拡張機能の検索",
+ "testing.selectContinuousProfiles": "ファイルの変更時に実行するプロファイルの選択:",
"testing.selectDefaultTestProfiles": "既定のプロファイルの選択",
"testing.showMostRecentOutput": "出力の表示",
"testing.sortByDuration": "期間順に並べ替え",
"testing.sortByLocation": "場所で並べ替え",
"testing.sortByStatus": "状態順で並べ替え",
+ "testing.startContinuous": "連続実行の開始",
+ "testing.startContinuousRunUsing": "以下を使用して継続的実行を開始する...",
+ "testing.stopContinuous": "連続実行の停止",
+ "testing.toggleContinuousRunOff": "継続的実行をオフにする",
+ "testing.toggleContinuousRunOn": "継続的実行をオンにする",
"testing.toggleInlineTestOutput": "インライン テスト出力の切り替え",
+ "testing.toggleResultsViewLayout": "ツリーの位置の切り替え",
"testing.viewAsList": "一覧として表示",
"testing.viewAsTree": "ツリーとして表示",
"unhideAllTests": "すべてのテストを再表示",
"unhideTest": "テストの再表示"
},
"vs/workbench/contrib/testing/browser/testing.contribution": {
- "miViewTesting": "テスト(&T)",
+ "miViewTesting": "テスト(&&E)",
"noTestProvidersRegistered": "このワークスペースでまだテストが見つかりません。",
"searchForAdditionalTestExtensions": "追加のテスト拡張機能をインストール...",
"test": "テスト",
- "testExplorer": "テスト エクスプローラー"
+ "testCoverage": "テスト カバレッジ",
+ "testExplorer": "テスト エクスプローラー",
+ "testResultsPanelName": "テスト結果"
},
"vs/workbench/contrib/testing/browser/testingConfigurationUi": {
"testConfigurationUi.pick": "使用するテスト プロファイルを選択してください",
@@ -9444,6 +15669,7 @@
},
"vs/workbench/contrib/testing/browser/testingDecorations": {
"actual.title": "実際",
+ "coverage test": "カバレッジを使用して実行",
"debug all test": "すべてのテストをデバッグする",
"debug test": "テストをデバッグ",
"expected.title": "必要",
@@ -9451,19 +15677,24 @@
"peekTestOutout": "ピーク テストの出力",
"reveal test": "テスト エクスプローラーで表示",
"run all test": "すべてのテストを実行する",
+ "run all test with coverage": "カバレッジを使用してすべてのテストを実行",
"run test": "テストを実行する",
+ "selectTestToRun": "実行するテストの選択",
+ "testOverflowItems": "その他 {0} 件のテスト...",
+ "testing.cancelRun": "テストの実行をキャンセル",
"testing.gutterMsg.contextMenu": "テスト オプションをクリックする",
+ "testing.gutterMsg.coverage": "カバレッジを使用したテストを実行するにはクリックし、さらにオプションを表示するには右クリックします",
"testing.gutterMsg.debug": "テストをデバッグするにはクリックし、さらにオプションを表示するには右クリックします",
"testing.gutterMsg.run": "テストを実行するにはクリックし、さらにオプションを表示するには右クリックします",
"testing.runUsing": "プロファイルを使用して実行します..."
},
"vs/workbench/contrib/testing/browser/testingExplorerFilter": {
- "filter": "フィルター",
"testExplorerFilter": "フィルター (例: テキスト、! 除外、@タグ)",
"testExplorerFilterLabel": "エクスプローラーでテスト用に、テキストをフィルター処理する",
"testing.filters.currentFile": "アクティブなファイルのみを表示",
"testing.filters.fuzzyMatch": "あいまい一致",
"testing.filters.menu": "その他のフィルター...",
+ "testing.filters.openedFiles": "開いているファイルにのみ表示する",
"testing.filters.removeTestExclusions": "すべてのテストを再表示",
"testing.filters.showExcludedTests": "非表示のテストを表示",
"testing.filters.showOnlyExecuted": "実行されたテストのみを表示",
@@ -9472,86 +15703,139 @@
"vs/workbench/contrib/testing/browser/testingExplorerView": {
"configureTestProfiles": "テスト プロファイルの構成",
"defaultTestProfile": "{0} (既定値)",
+ "noResults": "テスト結果はまだありません。",
"selectDefaultConfigs": "既定のプロファイルの選択",
"testExplorer": "テスト エクスプローラー",
"testing.treeElementLabelDuration": "{1} の {0}",
+ "testing.treeElementLabelOutdated": "{0}、期限切れの結果",
+ "testingContinuousBadge": "変更のテストを監視しています",
+ "testingCountBadgeFailed": "失敗したテスト: {0} 件",
+ "testingCountBadgePassed": "成功したテスト: {0} 件",
+ "testingCountBadgeSkipped": "スキップされたテスト: {0} 件",
"testingFindExtension": "ワークスペースの表示テスト",
- "testingNoTest": "このファイルにはテストが見つかりませんでした。"
+ "testingNoTest": "このファイルにはテストが見つかりませんでした。",
+ "testingSelectConfig": "構成の選択..."
},
"vs/workbench/contrib/testing/browser/testingOutputPeek": {
"close": "閉じる",
+ "testOutputTitle": "テスト出力",
+ "testing.collapsePeekStack": "スタック フレームを折りたたむ",
+ "testing.goToNextMessage": "次のテスト エラーに移動",
+ "testing.goToNextMessage.description": "ファイル内の次のエラー メッセージを表示します",
+ "testing.goToPreviousMessage": "前のテスト エラーに移動",
+ "testing.goToPreviousMessage.description": "ファイル内の前のエラー メッセージを表示します",
+ "testing.markdownPeekError": "マークダウン プレビューを開けませんでした: {0}。\r\n\r\nマークダウン拡張機能が有効になっていることを確認してください。",
+ "testing.openMessageInEditor": "エディターで開く",
+ "testing.toggleTestingPeekHistory": "クイック表示でのテスト履歴の切り替え",
+ "testing.toggleTestingPeekHistory.description": "プレビュー ビューでのテスト実行の履歴の表示と非表示を切り替えます"
+ },
+ "vs/workbench/contrib/testing/browser/testingViewPaneContainer": {
+ "testing": "テスト"
+ },
+ "vs/workbench/contrib/testing/browser/testResultsView/testResultsOutput": {
+ "caseNoOutput": "テスト ケースで出力が報告されませんでした。",
+ "runNoOutput": "テストの実行で、出力が記録されませんでした。",
+ "runNoOutputForPast": "テスト出力は、新しいテストの実行でのみ使用できます。",
+ "testingOutputActual": "実際の結果",
+ "testingOutputExpected": "予期された結果"
+ },
+ "vs/workbench/contrib/testing/browser/testResultsView/testResultsTree": {
+ "closeTestCoverage": "テスト カバレッジを閉じる",
"debug test": "テストのデバッグ",
"messageMoreLines1": "さらに 1 行追加",
"messageMoreLinesN": "さらに {0} 行追加",
+ "nOlderResults": "{0}以前の結果",
+ "oneOlderResult": "1 件の古い結果",
+ "openTestCoverage": "テスト カバレッジの表示",
"run test": "テストの実行",
- "testUnnamedTask": "名前の指定されていないタスク",
- "testing.debugLastRun": "テスト実行のデバッグ",
- "testing.goToFile": "ファイルに移動する",
- "testing.goToNextMessage": "次のテスト エラーに移動",
- "testing.goToPreviousMessage": "前のテスト エラーに移動",
- "testing.openMessageInEditor": "エディターで開く",
- "testing.reRunLastRun": "テスト実行の再実行",
+ "testing.cancelRun": "テストの実行をキャンセル",
+ "testing.debugFailedFromLastRun": "失敗したテストのデバッグ",
+ "testing.debugLastRun": "最後の実行のデバッグ",
+ "testing.debugTest": "テストのデバッグ",
+ "testing.goToError": "エラーへ移動",
+ "testing.goToTest": "テストに移動",
+ "testing.reRunFailedFromLastRun": "失敗したテストの再実行",
+ "testing.reRunLastRun": "最後の実行の再実行",
+ "testing.reRunTest": "テストの再実行",
"testing.revealInExplorer": "テスト エクスプローラーで表示",
"testing.showResultOutput": "結果出力の表示",
- "testing.toggleTestingPeekHistory": "クイック表示でのテスト履歴の切り替え",
- "testingOutputActual": "実際の結果",
- "testingOutputExpected": "予期された結果",
"testingPeekLabel": "テスト結果メッセージ"
},
- "vs/workbench/contrib/testing/browser/testingOutputTerminalService": {
- "runFinished": "{0} でのテストの実行が終了しました",
- "runNoOutout": "テストの実行で、出力が記録されませんでした。",
- "testNoRunYet": "\r\n実行されたレポートはまだありません。\r\n",
- "testOutputTerminalTitle": "テスト出力",
- "testOutputTerminalTitleWithDate": "{0} でのテスト出力"
- },
- "vs/workbench/contrib/testing/browser/testingProgressUiService": {
- "testProgress.completed": "{1} 個中 {0} 個のテストが成功しました ({2}%)",
- "testProgress.running": "テストを実行しています。{1} 個中 {0} 個が成功しました ({2}%)",
- "testProgress.runningInitial": "テストの実行中...",
- "testProgressWithSkip.completed": "{1} 個中 {0} 個のテストが成功しました ({2}%、{3} 個がスキップされました)",
- "testProgressWithSkip.running": "テストを実行しています。{1} 個中 {0} 個が成功しました ({2}%、{3} 個がスキップされました)"
- },
- "vs/workbench/contrib/testing/browser/testingViewPaneContainer": {
- "testing": "テスト"
+ "vs/workbench/contrib/testing/browser/testResultsView/testResultsViewContent": {
+ "testFollowup.more": "その他 {0} 件...",
+ "testing.callStack.debug": "テストのデバッグ",
+ "testing.callStack.run": "テストの再実行"
},
"vs/workbench/contrib/testing/browser/theme": {
+ "testing.coverCountBadgeBackground": "実行回数を示すバッジの背景",
+ "testing.coverCountBadgeForeground": "実行回数を示すバッジの前景",
+ "testing.coveredBackground": "カバーされたテキストの背景色。",
+ "testing.coveredBorder": "カバーされたテキストの境界線の色。",
+ "testing.coveredGutterBackground": "コードがカバーされた領域のとじしろの色。",
"testing.iconErrored": "テスト エクスプローラーの 'エラー発生' アイコンの色です。",
+ "testing.iconErrored.retired": "テスト エクスプローラーの 'エラー発生' アイコンの廃止された色です。",
"testing.iconFailed": "テスト エクスプローラーの '失敗' アイコンの色です。",
+ "testing.iconFailed.retired": "テスト エクスプローラーの '失敗' アイコンの廃止された色です。",
"testing.iconPassed": "テスト エクスプローラーの '成功' アイコンの色です。",
+ "testing.iconPassed.retired": "テスト エクスプローラーの '成功' アイコンの廃止された色です。",
"testing.iconQueued": "テスト エクスプローラーの 'キューに登録済み' アイコンの色です。",
+ "testing.iconQueued.retired": "テスト エクスプローラーの 'キューに登録済み' アイコンの廃止された色です。",
"testing.iconSkipped": "テスト エクスプローラーの 'スキップ' アイコンの色です。",
+ "testing.iconSkipped.retired": "テスト エクスプローラーの 'スキップ' アイコンの廃止された色です。",
"testing.iconUnset": "テスト エクスプローラーの '設定解除' アイコンの色です。",
- "testing.message.error.decorationForeground": "エディター内にインラインで表示されるテスト エラー メッセージのテキストの色です。",
+ "testing.iconUnset.retired": "テスト エクスプローラーの '設定解除' アイコンの廃止された色です。",
+ "testing.message.error.badgeBackground": "エディター内にインラインで表示されるテスト エラー メッセージの背景色です。",
+ "testing.message.error.badgeBorder": "エディター内にインラインで表示されるテスト エラー メッセージの境界線色です。",
+ "testing.message.error.badgeForeground": "エディター内にインラインで表示されるテスト エラー メッセージのテキストの色です。",
"testing.message.error.marginBackground": "エディターでインラインに表示されるエラー メッセージの横の余白色。",
"testing.message.info.decorationForeground": "エディター内にインラインで表示されるテスト情報メッセージのテキストの色です。",
"testing.message.info.marginBackground": "エディターでインラインに表示される情報メッセージの余白色。",
+ "testing.messagePeekBorder": "ログに記録されたメッセージを表示するときのピーク ビューの境界線と矢印の色。",
+ "testing.messagePeekHeaderBackground": "ログに記録されたメッセージを表示するときのピーク ビューの境界線と矢印の色。",
"testing.peekBorder": "ピーク ビューの境界と矢印の色。",
- "testing.runAction": "エディター内の '実行' アイコンの色です。"
+ "testing.runAction": "エディター内の '実行' アイコンの色です。",
+ "testing.uncoveredBackground": "カバーされていないテキストの背景色。",
+ "testing.uncoveredBorder": "カバーされていないテキストの境界線の色。",
+ "testing.uncoveredBranchBackground": "未カバーのブランチに対して表示されるウィジェットの背景。",
+ "testing.uncoveredGutterBackground": "コードがカバーされていない領域のとじしろの色。"
},
"vs/workbench/contrib/testing/common/configuration": {
"testConfigurationTitle": "テスト",
- "testing.alwaysRevealTestOnStateChange": "'#testing.followRunningTest#' がオンの場合は、実行されたテストを常に公開します。この設定をオフにすると、失敗したテストのみ公開されます。",
- "testing.autoRun.delay": "テストが期限切れとしてマークされ、新しい実行を開始してから待機する時間 (ミリ秒単位)。",
- "testing.autoRun.mode": "どのテストを自動的に実行するかを制御します。",
- "testing.autoRun.mode.allInWorkspace": "自動実行が切り替えられたときに、検出されたすべてのテストを自動的に実行します。変更されたときに、個々のテストを再実行します。",
- "testing.autoRun.mode.onlyPreviouslyRun": "変更されたときに、個々のテストを再実行します。まだ実行されていないテストは自動的に実行されません。",
+ "testing.ShowCoverageInExplorer": "エクスプローラー ビューでテスト カバレッジをダウンさせるかどうか。",
+ "testing.alwaysRevealTestOnStateChange": "{0} がオンの場合、実行されたテストが常に公開されます。この設定をオフにすると、失敗したテストのみ公開されます。",
"testing.automaticallyOpenPeekView": "エラーのピーク ビューを自動的に開くタイミングを構成します。",
"testing.automaticallyOpenPeekView.failureAnywhere": "エラーの場所に関係なく、自動的に開きます。",
"testing.automaticallyOpenPeekView.failureInVisibleDocument": "参照可能なドキュメントでテストが失敗したときに自動的に開きます。",
"testing.automaticallyOpenPeekView.never": "自動的に開くことはありません。",
- "testing.automaticallyOpenPeekViewDuringAutoRun": "自動実行モードでピーク ビューを自動的に開くかどうかを制御します。",
+ "testing.automaticallyOpenPeekViewDuringContinuousRun": "連続実行モードでピーク ビューを自動的に開くかどうかを制御します。",
+ "testing.countBadge": "アクティビティ バーの [テスト] アイコンのカウント バッジを制御します。",
+ "testing.countBadge.failed": "失敗したテストの数を表示する",
+ "testing.countBadge.off": "テスト カウント バッジを無効にする",
+ "testing.countBadge.passed": "成功したテストの数を表示する",
+ "testing.countBadge.skipped": "スキップされたテストの数を表示する",
+ "testing.coverageBarThresholds": "テスト カバレッジ バーの割合に使用する色を構成します。",
+ "testing.coverageToolbarEnabled": "カバレッジ ツール バーをエディターに表示するかどうかを制御します。",
"testing.defaultGutterClickAction": "とじしろ内のテスト デコレーションをクリックした場合に実行する操作を制御します。",
"testing.defaultGutterClickAction.contextMenu": "その他のオプションについては、コンテキスト メニューを開きます。",
+ "testing.defaultGutterClickAction.coverage": "カバレッジを使用してテストを実行します。",
"testing.defaultGutterClickAction.debug": "テストをデバッグします。",
"testing.defaultGutterClickAction.run": "テストを実行します。",
- "testing.followRunningTest": "実行中のテストをテスト エクスプローラー ビューでフォローするかどうかを制御します",
+ "testing.displayedCoveragePercent": "テスト カバレッジに対して既定で表示される割合を構成します。",
+ "testing.displayedCoveragePercent.minimum": "ステートメント、関数、ブランチ カバレッジの最小値。",
+ "testing.displayedCoveragePercent.statement": "ステートメント カバレッジ。",
+ "testing.displayedCoveragePercent.totalCoverage": "結合されたステートメント、関数、ブランチ カバレッジの計算。",
+ "testing.followRunningTest": "実行中のテストをテスト エクスプローラー ビューでフォローするかどうかを制御します。",
"testing.gutterEnabled": "テスト デコレーションがエディターのとじしろに表示するかどうかを制御します。",
"testing.openTesting": "いつテスト ビューを開くかを制御します。",
"testing.openTesting.neverOpen": "テスト ビューを自動的に開かない",
- "testing.openTesting.openOnTestFailure": "テストの失敗に関するテスト ビューを開く",
- "testing.openTesting.openOnTestStart": "テストの開始時にテスト ビューを開く",
- "testing.saveBeforeTest": "テストを実行する前にすべてのダーティ エディターを保存するかどうかを制御します。"
+ "testing.openTesting.openExplorerOnTestStart": "テストの開始時にテスト エクスプローラーを開く",
+ "testing.openTesting.openOnTestFailure": "テストの失敗時にテスト結果ビューを開く",
+ "testing.openTesting.openOnTestStart": "テストの開始時にテスト結果ビューを開く",
+ "testing.resultsView.layout": "テスト結果ビューのレイアウトを制御します。",
+ "testing.resultsView.layout.treeLeft": "左側にテスト実行ツリーを表示し、右側に詳細を表示します。",
+ "testing.resultsView.layout.treeRight": "右側にテスト実行ツリーを表示し、左側に詳細を表示します。",
+ "testing.saveBeforeTest": "テストを実行する前にすべてのダーティ エディターを保存するかどうかを制御します。",
+ "testing.showAllMessages": "すべてのテストの実行からメッセージを表示するかどうかを制御します。"
},
"vs/workbench/contrib/testing/common/constants": {
"testGroup.coverage": "カバレッジ",
@@ -9566,65 +15850,123 @@
"testState.unset": "未実行",
"testing.treeElementLabel": "{0} ({1})"
},
- "vs/workbench/contrib/testing/common/testResult": {
- "runFinished": "{0} でのテスト実行"
- },
- "vs/workbench/contrib/testing/common/testServiceImpl": {
- "testError": "テストを実行しようとしてエラーが発生しました: {0}",
- "testTrust": "テストを実行すると、ワークスペースでコードが実行される可能性があります。"
+ "vs/workbench/contrib/testing/common/testingChatAgentTool": {
+ "runTestTool.confirm.all": "モデルはすべてのテストを実行しようとしています。",
+ "runTestTool.confirm.invocation": "テストを実行しています...",
+ "runTestTool.confirm.message": "モデルは {0}でテストを実行しようとしています。",
+ "runTestTool.confirm.title": "テストの実行を許可しますか?",
+ "runTestTool.invoke.cancelled": "テストの実行が取り消されました。",
+ "runTestTool.invoke.filesProgress": "テストを検出しています...",
+ "runTestTool.invoke.filterProgress": "テストをフィルター処理しています...",
+ "runTestTool.invoke.progress": "テストの実行を開始しています...",
+ "runTestTool.noRunStarted": "テストの実行は開始されませんでした。これは、テスト実行プログラムまたは拡張機能の問題である可能性があります。",
+ "runTestTool.noTests": "ファイルにテストが見つかりませんでした",
+ "runTestTool.userDescription": "Run unit tests (optionally with coverage)"
+ },
+ "vs/workbench/contrib/testing/common/testingContentProvider": {
+ "runNoOutout": "テストの実行で、出力が記録されませんでした。"
},
"vs/workbench/contrib/testing/common/testingContextKeys": {
+ "testing.activeEditorHasTests": "現在のエディターにテストが存在するかどうかを示します",
+ "testing.canGoToRelatedCode": "コントローラーがテストに関連するコードを検索する機能を実装するかどうか",
+ "testing.canGoToRelatedTest": "コントローラーがコードに関連するテストを検索する機能を実装するかどうか",
"testing.canRefresh": "テスト コントローラーにアタッチされた更新ハンドラーがあるかどうかを示します。",
"testing.controllerId": "現在のテスト項目のコントローラー ID",
+ "testing.coverageToolbarEnabled": "カバレッジ ツール バーが有効かどうかを示します",
+ "testing.cursorInsideTestRange": "カーソルが現在テスト範囲内にあるかどうか",
"testing.hasConfigurableConfig": "任意のテスト構成を構成できるかどうかを示す",
"testing.hasCoverableTests": "任意のテスト コントローラーがカバレッジ構成を登録したかどうかを示します",
+ "testing.hasCoverageInFile": "現在のエディターでカバレッジが報告されたことを示します。",
"testing.hasDebuggableTests": "任意のテスト コントローラーがデバッグ構成を登録したかどうかを示します",
+ "testing.hasInlineCoverageDetails": "インライン表示で詳細な行単位カバレッジを使用できるかどうかを示します",
"testing.hasNonDefaultConfig": "任意のテスト コントローラーが既定以外の構成を登録したかどうかを示します",
+ "testing.hasPerTestCoverage": "テストごとのカバレッジが利用可能かどうかを示します",
"testing.hasRunnableTests": "任意のテスト コントローラーが実行構成を登録したかどうかを示します",
+ "testing.inlineCoverageEnabled": "インライン カバレッジが表示されるかどうかを示します",
+ "testing.isContinuousModeOn": "連続テスト モードがオンかどうかを示します。",
+ "testing.isCoverageFilteredToTest": "カバレッジが単一のテストにフィルター処理されたかどうかを示します",
+ "testing.isParentRunningContinuously": "テスト項目のメニュー コンテキストで設定された、テストの親が継続的に実行されているかどうかを示します",
"testing.isRefreshing": "現在、任意のテスト コントローラーでテストを更新しているかどうかを示します。",
+ "testing.isTestCoverageOpen": "テスト カバレッジ レポートが開かれているかどうかを示します",
+ "testing.peekHasStack": "ピーク ビューに表示されるメッセージにスタック トレースがあるかどうか",
"testing.peekItemType": "出力クイック表示の項目の種類。\"Test\"、\"message\"、\"task\"、または \"result\" のいずれかです。",
+ "testing.profile.context.group": "テスト プロファイルの構成サブメニューが存在するメニューの種類。\"run\"、\"debug\"、または \"coverage\" のいずれか",
+ "testing.supportsContinuousRun": "連続テストの実行がサポートされているかどうかを示します",
"testing.testId": "テスト項目でメニューを作成するか開くときに設定される、現在のテスト項目の ID",
"testing.testItemHasUri": "テスト項目に URI が定義されているかどうかを示すブール値",
- "testing.testItemIsHidden": "テスト項目が非表示になっているかどうかを示すブール値"
+ "testing.testItemIsHidden": "テスト項目が非表示になっているかどうかを示すブール値",
+ "testing.testMessage": "'testMessage.contextValue' に設定された値。エディター/コンテンツ、テスト/メッセージ/コンテキストで使用できます",
+ "testing.testResultOutdated": "結果が古い場合にエディター/コンテンツとテスト/メッセージ/コンテキストで使用できる値",
+ "testing.testResultState": "項目の状態を示す使用可能なテスト/項目/結果の値。"
+ },
+ "vs/workbench/contrib/testing/common/testingProgressMessages": {
+ "testProgress.completed": "{1} 個中 {0} 個のテストが成功しました ({2}%)",
+ "testProgress.running": "テストを実行しています。{1} 個中 {0} 個が成功しました ({2}%)",
+ "testProgress.runningInitial": "テストを実行しています...",
+ "testProgressWithSkip.completed": "{1} 個中 {0} 個のテストが成功しました ({2}%、{3} 個がスキップされました)",
+ "testProgressWithSkip.running": "テストを実行しています。{1} 個中 {0} 個が成功しました ({2}%、{3} 個がスキップされました)"
+ },
+ "vs/workbench/contrib/testing/common/testResult": {
+ "runFinished": "{0} でのテスト実行",
+ "testUnnamedTask": "名前の指定されていないタスク"
+ },
+ "vs/workbench/contrib/testing/common/testServiceImpl": {
+ "testError": "テストを実行しようとしてエラーが発生しました: {0}",
+ "testTrust": "テストを実行すると、ワークスペースでコードが実行される可能性があります。"
+ },
+ "vs/workbench/contrib/testing/common/testTypes": {
+ "testing.runProfileBitset.coverage": "カバレッジ",
+ "testing.runProfileBitset.debug": "デバッグ",
+ "testing.runProfileBitset.run": "実行"
},
"vs/workbench/contrib/themes/browser/themes.contribution": {
+ "browseColorThemeInMarketPlace.label": "Marketplace で色のテーマを参照する",
"browseColorThemes": "その他の色のテーマを参照...",
"browseProductIconThemes": "その他の Product Icon テーマを参照する...",
+ "cannotToggle": "設定で '{0}' が有効になっている場合、明るいテーマと暗いテーマを切り替えることはできません。",
"defaultProductIconThemeLabel": "既定",
"fileIconThemeCategory": "ファイル アイコン テーマ",
"generateColorTheme.label": "現在の設定から配色テーマを生成する",
+ "goToSetting": "[設定] を開く",
"installColorThemes": "その他の色のテーマをインストール...",
+ "installExtension.button.ok": "OK",
+ "installExtension.confirm": "これにより、'{1}' によって公開された拡張機能 '{0}' がインストールされます。続行しますか?",
"installIconThemes": "その他のファイル アイコンのテーマをインストール...",
"installProductIconThemes": "その他の製品アイコンのテーマをインストール...",
"installing extensions": "拡張機能 '{0}' のインストール中です",
"manage extension": "拡張機能の管理",
"manageExtensionIcon": "テーマ クイック 選択の [管理] アクションのアイコン。",
- "miSelectColorTheme": "配色テーマ(&&C)",
- "miSelectIconTheme": "ファイル アイコンのテーマ(&&I)",
- "miSelectProductIconTheme": "製品アイコンのテーマ(&&P)",
+ "miSelectTheme": "テーマ(&&T)",
"noIconThemeDesc": "ファイル アイコンを無効にします",
"noIconThemeLabel": "なし",
"productIconThemeCategory": "製品アイコンのテーマ",
+ "search.error": "テーマの検索中にエラーが発生しました: {0}",
"selectIconTheme.label": "ファイル アイコンのテーマ",
"selectProductIconTheme.label": "製品アイコンのテーマ",
"selectTheme.label": "配色テーマ",
+ "themes": "テーマ",
"themes.category.dark": "ダーク テーマ",
"themes.category.hc": "ハイ コントラスト テーマ",
"themes.category.light": "ライト テーマ",
+ "themes.configure.switchingDisabled": "システム カラー モードが無効になっているのを検出します。クリックして構成してください。",
+ "themes.configure.switchingEnabled": "システム カラー モードが有効になっているのを検出します。クリックして構成してください。",
"themes.selectIconTheme": "File Icon テーマ (プレビューするには、上/下キー) を選択する",
"themes.selectIconTheme.label": "ファイル アイコンのテーマ",
"themes.selectMarketplaceTheme": "入力して詳細を検索します。選択してインストールします。プレビューするには、上下のキーを使用してください。",
"themes.selectProductIconTheme": "Product Icon テーマ (プレビューするには、上/下キー) を選択する",
"themes.selectProductIconTheme.label": "製品アイコンのテーマ",
- "themes.selectTheme": "配色テーマの選択 (上/下キーでプレビュー可能)",
+ "themes.selectTheme.darkHC": "ハイ コントラスト ダーク モードの配色テーマを選択する",
+ "themes.selectTheme.darkScheme": "システム ダーク モードの配色テーマを選択する",
+ "themes.selectTheme.default": "配色テーマの選択 (システム カラー モードを無効にした場合の検出)",
+ "themes.selectTheme.lightHC": "ハイ コントラスト ライト モードの配色テーマを選択する",
+ "themes.selectTheme.lightScheme": "システム ライト モードの配色テーマの選択",
"toggleLightDarkThemes.label": "ライト テーマとダーク テーマの切り替え"
},
"vs/workbench/contrib/timeline/browser/timeline.contribution": {
"files.openTimeline": "タイムラインを開く",
"filterTimeline": "タイムラインのフィルター処理",
- "timeline.excludeSources": "タイムライン ビューから除外する必要があるタイムライン ソースの配列です。",
- "timeline.pageOnScroll": "試験段階。リストの最後までスクロールしたとき、タイムライン ビューで次のページの項目を読み込むかどうかを制御します。",
- "timeline.pageSize": "タイムライン ビューで、既定の場合と、さらに項目を読み込む場合に表示する項目数。'null' (既定値) に設定すると、タイムライン ビューの表示可能な領域に基づいて自動的にページ サイズが選択されます。",
+ "timeline.pageOnScroll": "リストの最後までスクロールしたとき、タイムライン ビューで次のページの項目を読み込むかどうかを制御します。",
+ "timeline.pageSize": "タイムライン ビューで、既定の場合と、さらに項目を読み込む場合に表示する項目数。'null' に設定すると、タイムライン ビューの表示可能な領域に基づいて自動的にページ サイズが選択されます。",
"timelineConfigurationTitle": "タイムライン",
"timelineFilter": "フィルター タイムライン アクションのアイコン。",
"timelineOpenIcon": "タイムラインを開くアクションのアイコン。",
@@ -9638,7 +15980,11 @@
"timeline.loadMore": "さらに読み込む",
"timeline.loading": "{0} のタイムラインを読み込んでいます...",
"timeline.loadingMore": "読み込み中...",
+ "timeline.noLocalHistoryYet": "ローカル履歴では、ファイルが除外されている場合や大きすぎる場合を除き、最近の変更を保存すると追跡されます。",
+ "timeline.noSCM": "ソース管理が構成されていません。",
"timeline.noTimelineInfo": "タイムライン情報は提供されていません。",
+ "timeline.noTimelineInfoFromEnabledSources": "フィルター処理されたタイムライン情報は指定されませんでした。",
+ "timeline.noTimelineSourcesEnabled": "すべてのタイムライン ソースがフィルターで除外されました。",
"timeline.toggleFollowActiveEditorCommand.follow": "現在のタイムラインをピン留めする",
"timeline.toggleFollowActiveEditorCommand.unfollow": "現在のタイムラインのピン留めを外す",
"timelinePin": "タイムラインのピン留めアクションのアイコン。",
@@ -9671,23 +16017,25 @@
},
"vs/workbench/contrib/update/browser/releaseNotesEditor": {
"releaseNotesInputName": "リリース ノート: {0}",
+ "showOnUpdate": "更新後にリリース ノートを表示",
"unassigned": "未割り当て"
},
"vs/workbench/contrib/update/browser/update": {
"DownloadingUpdate": "更新をダウンロードしています...",
- "cancel": "キャンセル",
"checkForUpdates": "更新の確認...",
- "checkingForUpdates": "更新プログラムを確認しています...",
+ "checkingForUpdates": "{0} 更新プログラムを確認しています...",
+ "checkingForUpdates2": "更新プログラムを確認しています...",
"download update": "更新プログラムのダウンロード",
"download update_1": "更新プログラムのダウンロード (1)",
- "downloading": "ダウンロード中...",
+ "downloading": "{0} 更新プログラムをダウンロードしています...",
"installUpdate": "更新プログラムのインストール",
"installUpdate...": "更新プログラムのインストール... (1)",
"installingUpdate": "更新プログラムをインストールしています...",
"later": "後で",
+ "learn more": "詳細情報",
"noUpdatesAvailable": "現在入手可能な更新はありません。",
"read the release notes": "{0} v{1} へようこそ! リリース ノートを確認しますか?",
- "relaunchDetailInsiders": "[再読み込み] ボタンを押すと、VSCode の Insider バージョンに切り替えることができます。",
+ "relaunchDetailInsiders": "[再読み込み] ボタンを押すと、VSCode の Insiders バージョンに切り替えることができます。",
"relaunchDetailStable": "[再読み込み] ボタンを押すと、VSCode の安定バージョンに切り替えることができます。",
"relaunchMessage": "バージョンの変更を有効にするには、再読み込みが必要です",
"releaseNotes": "リリース ノート",
@@ -9695,27 +16043,35 @@
"restartToUpdate": "再起動して更新する (1)",
"selectSyncService.detail": "Insiders バージョンの VS Code では、既定で個別の Insiders 設定の同期サービスを使用して、設定、キー バインド、拡張機能、スニペット、UI 状態を同期します。",
"selectSyncService.message": "バージョンの変更後に使用する設定の同期サービスを選択します",
- "showReleaseNotes": "リリース ノートの表示",
- "switchToInsiders": "Insider バージョンに切り替え...",
+ "showUpdateReleaseNotes": "更新プログラムのリリース ノートを表示する",
+ "switchToInsiders": "Insiders バージョンに切り替え...",
"switchToStable": "安定バージョンに切り替え...",
"thereIsUpdateAvailable": "利用可能な更新プログラムがあります。",
"update service": "サービスの更新",
+ "update service disabled": "{0}のユーザー スコープインストールを管理者として実行しているため、更新は無効になっています。",
"update.noReleaseNotesOnline": "このバージョンの {0} には、オンラインのリリース ノートがありません",
"updateAvailable": "利用可能な更新プログラムがあります: {0} {1}",
"updateAvailableAfterRestart": "最新の更新プログラムを適用するために {0} を再起動してください。",
"updateIsReady": "新しい更新 {0} が利用可能です。",
"updateNow": "今すぐ更新",
- "updating": "更新しています...",
- "use insiders": "Insiders",
- "use stable": "Stable (現在)"
+ "updating": "{0} を更新しています...",
+ "use insiders": "Insiders(&&I)",
+ "use stable": "安定(&&S) (現在)"
},
"vs/workbench/contrib/update/browser/update.contribution": {
"applyUpdate": "更新の適用...",
+ "checkForUpdates": "更新の確認...",
+ "developerCategory": "開発者",
"downloadUpdate": "更新プログラムのダウンロード",
"installUpdate": "更新プログラムのインストール",
- "miReleaseNotes": "リリース ノート(&&R)",
+ "mshowReleaseNotes": "リリース ノートの表示(&&R)",
+ "openDownloadPage": "{0} のダウンロード",
"pickUpdate": "更新の適用",
+ "releaseNotesFromFileNone": "現在のファイルをリリース ノートとして開くことができません",
"restartToUpdate": "再起動して更新",
+ "showReleaseNotes": "リリース ノートの表示",
+ "showReleaseNotesCurrentFile": "現在のファイルをリリース ノートとして開く",
+ "update.noReleaseNotesOnline": "このバージョンの {0} には、オンラインのリリース ノートがありません",
"updateButton": "&更新(&U)"
},
"vs/workbench/contrib/url/browser/trustedDomains": {
@@ -9727,10 +16083,9 @@
"trustedDomain.trustSubDomain": "{0} とそのすべてのサブドメインを信頼する"
},
"vs/workbench/contrib/url/browser/trustedDomainsValidator": {
- "cancel": "キャンセル",
- "configureTrustedDomains": "信頼されているドメインの構成",
- "copy": "コピー",
- "open": "開く",
+ "configureTrustedDomains": "信頼されているドメインの構成(&&T)",
+ "copy": "コピー(&&C)",
+ "open": "開く(&&O)",
"openExternalLinkAt": "{0} で外部の Web サイトを開きますか?"
},
"vs/workbench/contrib/url/browser/url.contribution": {
@@ -9739,108 +16094,186 @@
"workbench.trustedDomains.promptInTrustedWorkspace": "有効にすると、信頼されたワークスペースでリンクを開いたときに信頼されたドメインのプロンプトが表示されます。"
},
"vs/workbench/contrib/userDataProfile/browser/userDataProfile": {
- "currentProfile": "現在の設定プロファイルは {0} です",
- "manageProfiles": "{0} ({1})",
- "profileTooltip": "{0}: {1}",
- "settingsProfilesIcon": "設定プロファイルのアイコン。",
- "statusBarItemSettingsProfileBackground": "ステータス バーの設定プロファイル エントリの背景色。",
- "statusBarItemSettingsProfileForeground": "ステータス バーの設定プロファイル エントリの前景色。",
- "workbench.experimental.settingsProfiles.enabled": "設定プロファイル プレビュー機能を有効にするかどうかを制御します。"
- },
- "vs/workbench/contrib/userDataProfile/common/userDataProfileActions": {
- "cleanup profile": "設定プロファイルのクリーンアップ",
- "confiirmation message": "これにより、現在の設定が置換えられます。続行しますか?",
- "create and enter empty profile": "空のプロファイルを作成します...",
- "create empty profile": "空の設定プロファイルを作成...",
- "create profile": "作成...",
- "create settings profile": "{0}: 作成...",
+ "New Profile Window": "プロファイルを含む新しいウィンドウ",
+ "change profile": "{0} プロファイルに切り替える",
+ "create profile": "新しいプロファイル...",
"current": "現在",
- "delete profile": "削除...",
- "edit settings profile": "設定プロファイルの名前を変更...",
- "export profile": "エクスポート...",
- "export profile dialog": "プロファイルの保存",
- "export success": "{0}: 正常にエクスポートされました。",
- "import profile": "インポート...",
- "import profile dialog": "プロファイルのインポート",
- "import profile placeholder": "プロファイル URL を指定するか、インポートするプロファイル ファイルを選択します",
- "import profile quick pick title": "プロファイルから設定をインポートする",
- "import profile title": "プロファイルから設定をインポートする",
- "name": "プロファイル名",
- "pick profile": "設定プロファイルの選択",
- "pick profile to delete": "削除する設定プロファイルの選択",
- "pick profile to rename": "名前を変更する設定プロファイルの選択",
- "rename profile": "名前の変更...",
- "save profile as": "現在の設定プロファイルから作成...",
- "select from file": "プロファイル ファイルからインポートする",
- "select from url": "URL からインポート",
- "switch profile": "切り替え…"
+ "delete profile": "プロファイルの削除...",
+ "delete specific profile": "プロファイルの削除...",
+ "export profile": "プロファイルをエクスポート...",
+ "export profile in share": "プロファイルのエクスポート ({0})...",
+ "manage profiles": "プロファイル",
+ "miOpenProfiles": "プロファイル(&&P)",
+ "new window with profile": "プロファイルを含む新しいウィンドウ",
+ "newWindowWithProfile": "プロファイルを含む新しいウィンドウ...",
+ "open": "{0} プロファイルを開く",
+ "open profile": "{0} プロファイルで新しいウィンドウを開く",
+ "open profiles": "プロファイルを開く (UI)",
+ "openShort": "{0}",
+ "pick profile": "プロファイルの選択",
+ "pick profile to delete": "削除するプロファイルを選択",
+ "profiles": "プロファイル ({0})",
+ "save profile as": "現在のプロファイルに名前を付けて保存...",
+ "selectProfile": "プロファイルの選択",
+ "switchProfile": "プロファイルの切り替え...",
+ "userdataprofilesEditor": "プロファイル エディター"
+ },
+ "vs/workbench/contrib/userDataProfile/browser/userDataProfileActions": {
+ "cleanup profile": "プロファイルのクリーンアップ",
+ "create temporary profile": "一時プロファイルを含む新しいウィンドウ",
+ "reset workspaces": "ワークスペース プロファイルの関連付けをリセットする"
+ },
+ "vs/workbench/contrib/userDataProfile/browser/userDataProfilesEditor": {
+ "activeProfile": "アクティブ",
+ "addButton": "フォルダーの追加",
+ "addFolder": "フォルダーの追加",
+ "addFolderTitle": "追加するフォルダーの選択",
+ "change profile": "プロファイルを変更する",
+ "changeIcon": "クリックしてアイコンを変更する",
+ "contents": "コンテンツ",
+ "contents source description": "このプロファイルのコンテンツ ソースの構成\r\n",
+ "copy description": "コピー",
+ "copy from default": "{0} (コピー)",
+ "copy from description": "コンテンツのコピー元となるプロファイル ソースを選択します",
+ "copy from profile description": "{1} プロファイルから {0} をコピーします",
+ "copy info": "- *{0}:* {1} プロファイルのコンテンツをコピーします\r\n",
+ "copy profile from": "プロファイルのコピー元",
+ "create from": "コピー元",
+ "current description": "{1} プロファイルから {0} を使用します",
+ "default": "既定値",
+ "default description": "既定プロファイルの {0} を使用します",
+ "default info": "- *既定:* 既定プロファイルのコンテンツを使用します\r\n",
+ "default profile contents description": "このプロファイルのコンテンツを参照する\r\n",
+ "defaultProfileIcon": "既定のプロファイルのアイコンは変更できません",
+ "defaultProfileName": "既定のプロファイルの名前は変更できません",
+ "deleteTrustedUri": "パスの削除",
+ "editIcon": "プロファイル エディターのフォルダー編集アイコンのアイコン。",
+ "empty profile": "なし",
+ "enable for current window": "現在のウィンドウでこのプロファイルを使用する",
+ "enable for new windows": "このプロファイルを新しいウィンドウの既定として使用する",
+ "extensions": "拡張機能",
+ "folders_workspaces": "フォルダーとワークスペース",
+ "folders_workspaces_description": "次のフォルダーとワークスペースがこのプロファイルを使用しています",
+ "from existing profiles": "既存のプロファイル",
+ "from template": "テンプレートから",
+ "from templates": "プロファイル テンプレート",
+ "hostColumnLabel": "ホスト",
+ "icon": "プロファイル アイコン",
+ "icon-description": "アクティビティ バーに表示するプロファイル アイコン",
+ "icon-label": "アイコン",
+ "import from file": "ファイルの選択...",
+ "import from url": "URL からインポート",
+ "import profile dialog": "プロファイル テンプレート ファイルを選択する",
+ "import profile placeholder": "プロファイル テンプレートの URL を指定する",
+ "import profile quick pick title": "プロファイル テンプレートからインポートする...",
+ "importProfile": "プロファイルのインポート...",
+ "keybindings": "キーボード ショートカット",
+ "localAuthority": "ローカル",
+ "mcp": "MCP サーバー",
+ "name": "名前",
+ "name required": "プロファイル名は必須であり、空でない値である必要があります。",
+ "new from template": "テンプレートからの新しいプロファイル",
+ "newProfile": "新しいプロファイル",
+ "no_folder_description": "このプロファイルを使用しているフォルダーまたはワークスペースはありません",
+ "none": "なし",
+ "none description": "空の {0} を作成します",
+ "none info": "- *なし:* 空のコンテンツを作成します\r\n",
+ "open": "新しいウィンドウで開く",
+ "options": "ソース",
+ "pathColumnLabel": "パス",
+ "profileExists": "{0} という名前のプロファイルは既に存在します。",
+ "profileName": "プロファイル名",
+ "profiles": "プロファイル",
+ "profilesSashBorder": "プロファイル エディターの分割ビュー サッシュの枠線の色。",
+ "removeIcon": "プロファイル エディターのフォルダー削除アイコンのアイコン。",
+ "settings": "設定",
+ "snippets": "スニペット",
+ "tasks": "タスク",
+ "trustedFolderAriaLabel": "{0}、信頼済み",
+ "trustedFolderWithHostAriaLabel": "{1} の {0}、信頼済み",
+ "trustedFoldersAndWorkspaces": "信頼済みフォルダーとワークスペース",
+ "use for curren window": "現在のウィンドウに使用",
+ "use for new windows": "新しい Windows に使用する",
+ "userDataProfiles": "プロファイル"
+ },
+ "vs/workbench/contrib/userDataProfile/browser/userDataProfilesEditorModel": {
+ "active": "現在のウィンドウでこのプロファイルを使用する",
+ "applyToAllProfiles": "すべてのプロファイルに拡張機能を適用する",
+ "cancel": "キャンセル",
+ "copy from": "{0} (コピー)",
+ "copyFromProfile": "重複...",
+ "create": "作成",
+ "delete": "削除",
+ "deleteProfile": "プロファイル '{0}' を削除しますか?",
+ "discard": "破棄して作成する",
+ "export": "エクスポート...",
+ "import in desktop": "{0} で作成",
+ "invalid configurations": "プロファイルには、少なくとも 1 つの構成が含まれている必要があります。",
+ "name required": "プロファイル名は必須であり、空でない値である必要があります。",
+ "new profile exists": "新しいプロファイルは既に作成されています。破棄して新しいプロファイルを作成しますか?",
+ "open": "横に並べて開く",
+ "open new window": "このプロファイルで新しいウィンドウを開く",
+ "preview": "プレビュー",
+ "profileExists": "{0} という名前のプロファイルは既に存在します。",
+ "replace": "置換",
+ "untitled": "無題"
},
"vs/workbench/contrib/userDataSync/browser/userDataSync": {
- "Theirs": "他のユーザー用",
- "Yours": "自分用",
"accept failed": "変更を受け入れているときにエラーが発生しました。詳細については、[ログ]({0})を確認してください。",
- "accept merges title": "マージの許可",
- "ask to turn on in global": "設定の同期がオフ (1)",
"auth failed": "設定の同期を有効にするときにエラーが発生しました。認証に失敗しました。",
- "cancel": "キャンセル",
- "change later": "後でいつでも実行できます。",
+ "cancel turning on sync": "キャンセル",
+ "complete merges title": "マージの完了",
"configure": "構成...",
- "configure and turn on sync detail": "デバイス間でデータを同期するには、サインインしてください。",
- "configure sync": "{0}: 構成...",
+ "configure and turn on sync detail": "サインインして、デバイス間でデータをバックアップして同期してください。",
+ "configure sync": "構成...",
"configure sync placeholder": "同期対象を選択する",
+ "configure sync title": "{0}: 構成...",
"conflicts detected": "{0} で競合が発生したため、同期できません。続行するには解決してください。",
"default": "既定",
+ "download sync activity complete": "設定の同期アクティビティが正常にダウンロードされました。",
"error reset required": "クラウド内のデータがクライアントのものより前のものであるため、設定の同期が無効になっています。同期をオンにする前に、クラウド内のデータを消去してください。",
"error reset required while starting sync": "クラウド内のデータがクライアントのものより前のものであるため、設定の同期をオンにできません。同期をオンにする前に、クラウド内のデータを消去してください。",
"error upgrade required": "現在のバージョン ({0}、{1}) は同期サービスと互換性がないため、設定の同期が無効になっています。同期をオンにする前に、更新してください。",
"error upgrade required while starting sync": "現在のバージョン ({0}、{1}) は同期サービスと互換性がないため、設定の同期をオンにできません。同期をオンにする前に、更新してください。",
"errorInvalidConfiguration": "ファイルの内容が無効であるため、{0} を同期できません。ファイルを開いて修正してください。",
- "global activity turn on sync": "設定の同期をオンにする...",
+ "global activity turn on sync": "バックアップと同期の設定...",
"has conflicts": "{0}: 競合が検出されました",
- "insiders": "インサイダー",
- "learn more": "詳細情報",
- "localResourceName": "{0} (ローカル)",
+ "insiders": "Insiders",
+ "method not found": "クライアントが無効な要求を行っているため、設定の同期が無効になっています。ログに関する問題を報告してください。",
"no authentication providers": "利用できる認証プロバイダーがありません。",
"open file": "{0} ファイルを開く",
"operationId": "操作 ID: {0}",
- "per platform": "各プラットフォーム用",
- "remoteResourceName": "{0} (リモート)",
"replace local": "ローカルを置換",
"replace remote": "リモートを置換",
+ "report issue": "問題点の報告",
"reset": "クラウド内のデータを消去...",
- "resolveConflicts_global": "{0}: 設定の競合を表示する (1)",
- "resolveKeybindingsConflicts_global": "{0}: キー バインドの競合を表示する (1)",
- "resolveSnippetsConflicts_global": "{0}: ユーザー スニペットの競合を表示する ({1})",
- "resolveTasksConflicts_global": "{0}: ユーザー タスクの競合 (1) を表示する",
+ "resolveConflicts_global": "競合の表示 ({0})",
"service changed and turned off": "{0} は別のサービスを使用するようになったため、設定の同期がオフになりました。同期をもう一度オンにしてください。",
"service switched to insiders": "設定の同期が Insiders サービスに切り替えられました",
"service switched to stable": "設定の同期が Stable サービスに切り替えられました",
"session expired": "現在のセッションの有効期限が切れたため、設定の同期がオフになりました。同期をオンにするには、もう一度サインインしてください。",
- "settings sync is off": "設定の同期がオフ",
"show conflicts": "競合の表示",
"show sync log title": "{0}: ログを表示する",
"show sync log toolrip": "ログの表示",
- "show synced data": "{0}: 同期されたデータを表示する",
+ "show sync logs": "ログの表示",
+ "show synced data": "同期されたデータの表示",
"show synced data action": "同期されたデータの表示",
- "showConflicts": "{0}: 設定の競合を表示する",
- "showKeybindingsConflicts": "{0}: キー バインドの競合を表示する",
- "showSnippetsConflicts": "{0}: ユーザー スニペットの競合を表示する",
- "showTasksConflicts": "{0}: ユーザー タスクの競合を表示する",
"sign in accounts": "サインインして設定を同期する (1)",
- "sign in and turn on": "サインインしてオンにする",
+ "sign in and turn on": "サインイン",
"sign in global": "サインインして設定を同期する",
"sign in to sync": "サインインして設定を同期する",
"stable": "安定",
- "stop sync": "{0}: オフにする",
+ "stop sync": "オフにする",
"switchSyncService.description": "複数の環境と同期するときに同じ設定の同期サービスを使用していることをご確認ください",
"switchSyncService.title": "{0}: サービスの選択",
"sync is on": "設定の同期がオン",
- "sync now": "{0}: 今すぐ同期する",
- "sync settings": "{0}: 設定を表示する",
+ "sync now": "今すぐ同期",
+ "sync settings": "設定を表示",
"synced with time": "同期された {0}",
"syncing": "同期中",
"too large": "同期する {1} ファイルのサイズが {2} より大きいため、{0} の同期を無効にしました。ファイルを開いてサイズを小さくし、同期を有効にしてください",
"too large while starting sync": "同期する {0} ファイルのサイズが {1} を超えているため、設定の同期をオンにすることができません。ファイルを開いてサイズを小さくし、同期をオンにしてください",
+ "too many profiles": "同期するプロファイルが多すぎるため、プロファイルの同期を無効にしました。[設定の同期] でサポートされているのは最大で 20 個のプロファイルです。プロファイルの数を減らし、同期を有効にしてください",
"turn off": "オフにする(&&T)",
"turn off failed": "設定の同期をオフにしているときにエラーが発生しました。詳細については、[ログ]({0})を確認してください。",
"turn off sync confirmation": "同期をオフにしますか?",
@@ -9848,15 +16281,11 @@
"turn off sync everywhere": "すべてのデバイスで同期をオフにし、クラウドからデータを消去します。",
"turn on failed": "設定の同期を有効にするときにエラーが発生しました。{0}",
"turn on failed with user data sync error": "設定の同期を有効にしているときにエラーが発生しました。詳細については、[ログ]({0}) を確認してください。",
- "turn on settings sync": "設定の同期をオンにする",
"turn on sync": "設定の同期をオンにする...",
- "turn on sync with category": "{0}: オンにする...",
"turned off": "別のデバイスから設定の同期がオフにされました。同期をもう一度オンにしてください。",
- "turnin on sync": "設定の同期をオンにしています...",
+ "turning on sync": "設定の同期をオンにしています...",
"turning on syncing": "設定の同期をオンにしています...",
- "turnon sync after initialization message": "設定、キーバインド、拡張機能、スニペット、および UI の状態は初期化されましたが、同期はされていません。設定の同期をオンにしますか?",
"using separate service": "設定の同期は別のサービスを使用するようになりました。詳細については、[設定の同期に関するドキュメント](https://aka.ms/vscode-settings-sync-help#_syncing-stable-versus-insiders)をご覧ください。",
- "workbench.action.showSyncRemoteBackup": "同期されたデータの表示",
"workbench.actions.syncData.reset": "クラウド内のデータを消去..."
},
"vs/workbench/contrib/userDataSync/browser/userDataSync.contribution": {
@@ -9869,38 +16298,24 @@
"settings sync": "設定の同期。操作 ID: {0}",
"show sync logs": "ログの表示"
},
- "vs/workbench/contrib/userDataSync/browser/userDataSyncMergesView": {
- "accept local": "ローカルを受け入れる",
- "accept merges": "マージを受け入れる",
- "accept remote": "リモートを受け入れる",
- "accepted": "受け入れ済み",
- "cancel": "キャンセル",
- "conflict": "競合が検出されました",
- "conflicts detected": "競合が検出されました",
- "explanation": "各エントリを確認し、マージして、同期を有効にしてください。",
- "label": "UserDataSyncResources",
- "leftResourceName": "{0} (リモート)",
- "merges": "{0} (マージ)",
- "preview": "{0} (プレビュー)",
- "resolve": "競合が発生しているため、同期できません。続行するには、それらを解決してください。",
- "rightResourceName": "{0} (ローカル)",
- "sideBySideDescription": "設定の同期",
- "sideBySideLabels": "{0} ↔ {1}",
- "turn on sync": "設定の同期をオンにする",
- "turning on": "オンにしています...",
+ "vs/workbench/contrib/userDataSync/browser/userDataSyncConflictsView": {
+ "Theirs": "他のユーザー用",
+ "Yours": "自分用",
+ "explanation": "各エントリを確認し、マージして、競合を解決してください。",
+ "localResourceName": "{0} (ローカル)",
+ "remoteResourceName": "{0} (リモート)",
"workbench.actions.sync.acceptLocal": "ローカルを受け入れる",
"workbench.actions.sync.acceptRemote": "リモートを受け入れる",
- "workbench.actions.sync.discard": "破棄",
- "workbench.actions.sync.merge": "マージ",
- "workbench.actions.sync.showChanges": "変更点を開く"
+ "workbench.actions.sync.openConflicts": "競合の表示"
},
"vs/workbench/contrib/userDataSync/browser/userDataSyncViews": {
"confirm replace": "現在の {0} を選択したもので置き換えますか?",
+ "conflicts": "競合",
"current": "現在のマシン",
+ "downloaded sync activity title": "同期アクティビティ (開発者)",
"last sync states": "最新の同期済みリモート",
"leftResourceName": "{0} (リモート)",
"local sync activity title": "同期アクティビティ (ローカル)",
- "merges": "マージ",
"no machines": "マシンがありません",
"not found": "ID: {0} のマシンが見つかりません",
"placeholder": "マシンの名前を入力してください",
@@ -9908,6 +16323,7 @@
"remoteToLocalDiff": "{0} ↔ {1}",
"reset": "同期されたデータのリセット",
"rightResourceName": "{0} (ローカル)",
+ "select sync activity file": "同期アクティビティ ファイルまたはフォルダーの選択",
"sideBySideLabels": "{0} ↔ {1}",
"sync logs": "ログ",
"synced machines": "同期されたマシン",
@@ -9918,24 +16334,21 @@
"valid message": "マシン名は、一意の、空ではない値である必要があります",
"workbench.actions.sync.compareWithLocal": "ローカルとの比較",
"workbench.actions.sync.editMachineName": "名前の編集",
+ "workbench.actions.sync.loadActivity": "同期アクティビティの読み込み",
"workbench.actions.sync.replaceCurrent": "復元",
- "workbench.actions.sync.resolveResourceRef": "生の JSON 同期データの表示",
+ "workbench.actions.sync.resolveResourceRef": "未加工の JSON 同期データの表示",
"workbench.actions.sync.turnOffSyncOnMachine": "設定の同期をオフにする"
},
- "vs/workbench/contrib/userDataSync/electron-sandbox/userDataSync.contribution": {
+ "vs/workbench/contrib/userDataSync/electron-browser/userDataSync.contribution": {
"Open Backup folder": "ローカル バックアップ フォルダーを開く",
- "no backups": "ローカルのバックアップ フォルダーが存在しません"
- },
- "vs/workbench/contrib/views/browser/treeView": {
- "no-dataprovider": "ビュー データを提供できるデータ プロバイダーが登録されていません。",
- "refresh": "最新の情報に更新",
- "collapseAll": "すべて折りたたんで表示します。",
- "command-error": "コマンド {1} の実行中にエラー {0} が発生しました。{1} を提供する拡張機能が原因である可能性があります。"
+ "download sync activity complete": "設定の同期アクティビティが正常にダウンロードされました。",
+ "no backups": "ローカルのバックアップ フォルダーが存在しません",
+ "open": "フォルダーを開く"
},
"vs/workbench/contrib/watermark/browser/watermark": {
"tips.enabled": "有効にすると、エディターを 1 つも開いていないときに透かしのヒントが表示されます。",
"watermark.findInFiles": "フォルダーを指定して検索",
- "watermark.newUntitledFile": "無題の新規ファイル",
+ "watermark.newUntitledFile": "新しい無題のテキスト ファイル",
"watermark.openFile": "ファイルを開く",
"watermark.openFileFolder": "ファイルまたはフォルダーを開く",
"watermark.openFolder": "フォルダーを開く",
@@ -9952,288 +16365,46 @@
"cut": "切り取り",
"paste": "貼り付け"
},
- "vs/workbench/contrib/webview/browser/webviewElement": {
- "fatalErrorMessage": "Web ビューの読み込みエラー: {0}"
- },
- "vs/workbench/contrib/webview/electron-sandbox/webviewCommands": {
- "iframeWebviewAlert": "iframe ベースの Web ビューをデバッグするために標準の開発ツールを使用しています",
- "openToolsLabel": "Webview 開発者ツールを開く"
- },
- "vs/workbench/contrib/webviewPanel/browser/webviewCommands": {
- "editor.action.webvieweditor.findNext": "次を検索",
- "editor.action.webvieweditor.findPrevious": "前を検索",
- "editor.action.webvieweditor.hideFind": "検索を停止する",
- "editor.action.webvieweditor.showFind": "検索の表示",
- "refreshWebviewLabel": "Web ビューの再読み込み"
- },
- "vs/workbench/contrib/webviewPanel/browser/webviewPanel.contribution": {
- "webview.editor.label": "Web ビュー エディター"
- },
- "vs/workbench/contrib/welcome/common/newFile.contribution": {
- "Built-In": "ビルトイン",
- "Create": "作成",
- "change keybinding": "キーバインドの構成",
- "createNew": "新規作成...",
- "file": "ファイル",
- "miNewFile2": "テキスト ファイル",
- "notebook": "ノートブック",
- "welcome.newFile": "新しいファイル..."
- },
- "vs/workbench/contrib/welcome/common/viewsWelcomeContribution": {
- "ViewsWelcomeExtensionPoint.proposedAPI": "'group' 提案プロパティを使用するには、'{0}'の viewsWelcome コントリビューションに 'enabledApiProposals: [\"contribViewsWelcome\"]' が必要です。"
- },
- "vs/workbench/contrib/welcome/common/viewsWelcomeExtensionPoint": {
- "contributes.viewsWelcome": "コントリビューション ビューのウェルカム コンテンツです。ウェルカム コンテンツは、開かれているフォルダーがないエクスプローラーなど、表示する意味のあるコンテンツがない場合にツリー ベースのビューに表示されます。このようなコンテンツは、製品内ドキュメントとして役立ち、特定の機能が使用可能になる前にユーザーがそれらの機能を使用するよう促します。エクスプローラーのウェルカム ビューの [リポジトリの複製] ボタンが良い例です。",
- "contributes.viewsWelcome.view": "特定のビューにウェルカム コンテンツを提供しました。",
- "contributes.viewsWelcome.view.contents": "表示されるウェルカム コンテンツ。コンテンツの形式は Markdown のサブセットで、リンクのみをサポートします。",
- "contributes.viewsWelcome.view.enablement": "ウェルカム コンテンツ ボタンとコマンド リンクを有効にする場合の条件。",
- "contributes.viewsWelcome.view.group": "このウェルカム コンテンツが属するグループ。提案された API。",
- "contributes.viewsWelcome.view.view": "このウェルカム コンテンツのターゲット ビュー識別子です。ツリー ベースのビューのみがサポートされています。",
- "contributes.viewsWelcome.view.when": "ウェルカム コンテンツを表示する必要がある場合の条件。"
- },
- "vs/workbench/contrib/welcome/gettingStarted/browser/gettingStarted": {
- "allDone": "完了のマーク",
- "checkboxTitle": "チェックをオンにすると、スタートアップ時にこのページが表示されます。",
- "close": "非表示",
- "footer": "{0} は使用状況データを収集します。{1} を読んで、{2} の方法をご確認ください。",
- "getStarted": "作業の開始",
- "gettingStarted.allStepsComplete": "{0} ステップすべてが完了",
- "gettingStarted.editingEvolved": "進化した編集",
- "gettingStarted.someStepsComplete": "{1} ステップのうち {0} ステップが完了",
- "imageShowing": "{0} を示す画像",
- "new": "新規",
- "newItems": "更新",
- "nextOne": "次のセクション",
- "optOut": "オプトアウト",
- "pickWalkthroughs": "チュートリアルを開きます...",
- "privacy statement": "プライバシーに関する声明",
- "recent": "最近",
- "show more recents": "最近使ったフォルダーをすべて表示 {0}",
- "showAll": "その他...",
- "start": "開始",
- "walkthroughs": "チュートリアル",
- "welcomeAriaLabel": "エディターをすぐに理解するための概要を表示します。",
- "welcomePage.openFolderWithPath": "パス {1} のフォルダー {0} を開く",
- "welcomePage.showOnStartup": "起動時にウェルカム ページを表示する"
- },
- "vs/workbench/contrib/welcome/gettingStarted/browser/gettingStarted.contribution": {
- "getStarted": "作業の開始",
- "help": "ヘルプ",
- "miGetStarted": "作業の開始",
- "pickWalkthroughs": "チュートリアルを開きます...",
- "welcome.goBack": "前に戻る",
- "welcome.markStepComplete": "ステップ完了のマーク",
- "welcome.markStepInomplete": "ステップを未完了としてマーク",
- "welcome.showAllWalkthroughs": "チュートリアルを開きます...",
- "workbench.welcomePage.preferReducedMotion": "有効にした場合、ウェルカム ページでの動作を減らします。",
- "workbench.welcomePage.walkthroughs.openOnInstall": "有効にすると、拡張機能のインストール時に拡張機能のチュートリアルが開きます。",
- "workspacePlatform": "現在のワークスペースのプラットフォーム で、リモートまたはサーバーレスのコンテキストでは UI のプラットフォームとは異なる場合があります。"
- },
- "vs/workbench/contrib/welcome/gettingStarted/browser/gettingStartedColors": {
- "welcomePage.background": "ウェルカム ページの背景色。",
- "welcomePage.progress.background": "ウェルカム ページの進行状況バーの前景色。",
- "welcomePage.progress.foreground": "ウェルカム ページの進行状況バーの背景色。",
- "welcomePage.tileBackground": "[はじめに] ページのタイルの背景色。",
- "welcomePage.tileHoverBackground": "[はじめに] のタイルのホバー背景色。",
- "welcomePage.tileShadow": "ウェルカム ページ チュートリアル カテゴリのボタンのシャドウの色。"
- },
- "vs/workbench/contrib/welcome/gettingStarted/browser/gettingStartedExtensionPoint": {
- "pathDeprecated": "非推奨です。代わりに 'image' または 'makrdown' を使用してください",
- "title": "タイトル",
- "walkthroughs": "ユーザーが拡張機能を使い始めるのに役立つチュートリアルを投稿します。",
- "walkthroughs.description": "チュートリアルの説明。",
- "walkthroughs.featuredFor": "これらの glob パターンのいずれかと一致するチュートリアルは、指定されたファイルがあるワークスペースでは、 'おすすめ' として表示されます。たとえば、TypeScript プロジェクトのチュートリアルでは、'tsconfig.json' をここで指定できます。",
- "walkthroughs.id": "このチュートリアルの一意識別子。",
- "walkthroughs.steps": "このチュートリアルの一環として完了するステップ",
- "walkthroughs.steps.button.deprecated.interpolated": "非推奨です。説明にはマークダウン リンクを使用します (すなわち、{0}、{1}、または {2})",
- "walkthroughs.steps.completionEvents": "このステップをチェック済みにするためにトリガーするイベントです。空の場合、または定義されていない場合、ステップは、いずれかのステップのボタンまたはリンクがクリックされたときにチェック済みになります。ステップにボタンやリンクがない場合、選択されたときにチェック オンになります。",
- "walkthroughs.steps.completionEvents.extensionInstalled": "指定された ID を持つ拡張機能がインストールされている場合に、ステップをチェック済みにします。拡張機能が既にインストールされている場合は、ステップがチェック済みで開始されます。",
- "walkthroughs.steps.completionEvents.onCommand": "指定されたのコマンドが VS Code の任意の場所で実行されると、ステップをチェック済みします。",
- "walkthroughs.steps.completionEvents.onContext": "コンテキスト キー式が true の場合にステップをチェック済みにします。",
- "walkthroughs.steps.completionEvents.onLink": "指定されたリンクがチュートリアルのステップで開かれたときにステップをチェック済にします。",
- "walkthroughs.steps.completionEvents.onSettingChanged": "指定した設定が変更されたときにステップをチェック済みにする",
- "walkthroughs.steps.completionEvents.onView": "指定されたビューが開かれたときのステップをチェック済みにする",
- "walkthroughs.steps.completionEvents.stepSelected": "選択したらすぐにステップをチェック済みにします。",
- "walkthroughs.steps.description.interpolated": "ステップの説明。 ``preformatted``、__italic__、* * bold * * のテキストをサポートします。コマンドまたは外部リンクには、{0}、{1}、または {2}のマークダウン スタイルのリンクを使用します。独自の行にあるリンクはボタンとして表示されます。",
- "walkthroughs.steps.doneOn": "ステップを完了としてマークするためのシグナル。",
- "walkthroughs.steps.doneOn.deprecation": "doneOn は非推奨になりました。既定では、ステップはボタンがクリックされたときにチェック済みになり、その他の CompletionEvents が構成されます",
- "walkthroughs.steps.id": "このステップの一意識別子。これは、完了したタスクを追跡するために使用されます。",
- "walkthroughs.steps.media": "このステップに沿って表示するメディア (画像またはマークダウンのコンテンツ)。",
- "walkthroughs.steps.media.altText": "画像を読み込むことができない場合やスクリーン リーダーに表示する代替テキスト。",
- "walkthroughs.steps.media.image.path.dark.string": "ダーク テーマのイメージへのパス。拡張ディレクトリに対する相対パスです。",
- "walkthroughs.steps.media.image.path.hc.string": "ハイコントラスト テーマのイメージへのパス。拡張ディレクトリに対する相対パスです。",
- "walkthroughs.steps.media.image.path.light.string": "ライト テーマのイメージへのパス。拡張ディレクトリに対する相対パスです。",
- "walkthroughs.steps.media.image.path.string": "ライト、ダーク、ハイコントラスト の各イメージへのパスで構成される、拡張ディレクトリへのパスです。コンテキストに応じて、イメージは400px から800px の幅に表示され、高さも同様の境界で表示されます。HIDPI ディスプレイをサポートするために、イメージは 1.5 x のスケールで描画されます。たとえば900物理ピクセル幅のイメージは、600論理ピクセルの幅として表示されます。",
- "walkthroughs.steps.media.image.path.svg": "ワークベンチと一致するようにテーマをサポートするため、変数では svg へのパス、カラー トークンがサポートされています。",
- "walkthroughs.steps.media.markdown.path": "拡張ディレクトリに対して相対的なマークダウン ドキュメントへのパスです。",
- "walkthroughs.steps.oneOn.command": "指定したコマンドが実行されたときに、ステップを完了としてマークします。",
- "walkthroughs.steps.title": "ステップのタイトル。",
- "walkthroughs.steps.when": "このステップの表示を制御するコンテキスト キー式。",
- "walkthroughs.title": "チュートリアルのタイトル。",
- "walkthroughs.when": "このチュートリアルの表示を制御するコンテキスト キー式。"
- },
- "vs/workbench/contrib/welcome/gettingStarted/browser/gettingStartedIcons": {
- "gettingStartedChecked": "完了したチュートリアルのステップを表すために使用されます",
- "gettingStartedUnchecked": "完了していないチュートリアルのステップを表すために使用されます"
- },
- "vs/workbench/contrib/welcome/gettingStarted/browser/gettingStartedInput": {
- "getStarted": "作業の開始"
- },
- "vs/workbench/contrib/welcome/gettingStarted/browser/gettingStartedService": {
- "builtin": "ビルトイン"
- },
- "vs/workbench/contrib/welcome/gettingStarted/common/gettingStartedContent": {
- "browseLangExts": "言語拡張機能の参照",
- "browsePopular": "人気の Web 拡張機能の閲覧",
- "browseRecommended": "おすすめの拡張機能の参照",
- "cloneRepo": "リポジトリのクローン",
- "commandPalette": "コマンド パレットを開く",
- "enableSync": "設定の同期を有効にする",
- "enableTrust": "信頼を有効にする",
- "getting-started-beginner-icon": "ウェルカム ページの初心者カテゴリに使用されるアイコン",
- "getting-started-intermediate-icon": "ウェルカム ページの中級カテゴリに使用されるアイコン",
- "getting-started-setup-icon": "ウェルカム ページの設定カテゴリに使用されるアイコン",
- "gettingStarted.beginner.description": "VS Code をすぐに開始して、必須の機能の概要を取得します。",
- "gettingStarted.beginner.title": "基礎の学習",
- "gettingStarted.commandPalette.description.interpolated": "コマンドは、VS Code で任意のタスクを実行するためのキーボード方法です。使用頻度の高いコマンドを検索して時間を節約し、フローを維持します。\r\n{0}\r\n__ 'ビューの切り替え' を探します。",
- "gettingStarted.commandPalette.title": "すべてにアクセスするためのショートカット",
- "gettingStarted.debug.description.interpolated": "起動構成を設定して、編集、ビルド、テスト、デバッグのループを高速化します。\r\n{0}",
- "gettingStarted.debug.title": "動作中のコードを監視する",
- "gettingStarted.extensions.description.interpolated": "拡張機能により、VS Code が強化されます。生産性を上げる便利なコツから、すぐに使える機能の拡張、まったく新しい機能の追加まで、多岐に渡ります。\r\n{0}",
- "gettingStarted.extensions.title": "無限の拡張性",
- "gettingStarted.extensionsWeb.description.interpolated": "拡張機能は VS Code のパワーアップです。Web で利用できる数が増加しています。\r\n{0}",
- "gettingStarted.findLanguageExts.description.interpolated": "構文の強調表示、コード補完、リンティング、デバッグなどの機能でよりスマートにコードを記述します。多数の言語が組み込まれていますが、拡張機能としてさらに多くの言語を追加できます。\r\n{0}",
- "gettingStarted.findLanguageExts.title": "すべての言語の豊富なサポート",
- "gettingStarted.installGit.description.interpolated": "プロジェクト内の変更を追跡するために Git をインストールします。\r\n{0}",
- "gettingStarted.installGit.title": "Git をインストール",
- "gettingStarted.intermediate.description": "次のヒントとコツを使って、開発ワークフローを最適化します。",
- "gettingStarted.intermediate.title": "生産性の向上",
- "gettingStarted.menuBar.description.interpolated": "ドロップダウン メニューで充実したメニュー バーを利用でき、コードを入力するスペースを確保できます。その外観を切り替えることで、より速いアクセスが可能になります。\r\n{0}",
- "gettingStarted.menuBar.title": "適度な UI の量",
- "gettingStarted.newFile.description": "無題の新しいファイル、ノートブック、またはカスタム エディターを開きます。",
- "gettingStarted.newFile.title": "新しいファイル...",
- "gettingStarted.notebook.title": "ノートブックのカスタマイズ",
- "gettingStarted.notebookProfile.description": "ノートブックを好みの感覚にする",
- "gettingStarted.notebookProfile.title": "ノートブックのレイアウトを選択します",
- "gettingStarted.openFile.description": "作業を開始するには、ファイルを開いてください",
- "gettingStarted.openFile.title": "ファイルを開く...",
- "gettingStarted.openFolder.description": "フォルダーを開いて作業を開始します",
- "gettingStarted.openFolder.title": "フォルダーを開く...",
- "gettingStarted.openMac.description": "作業を開始するには、ファイルまたはフォルダーを開いてください",
- "gettingStarted.openMac.title": "開く...",
- "gettingStarted.pickColor.description.interpolated": "右のカラー パレットを使用すると、コードに集中でき、見た目もやさしく、単に楽しく使えるようになります。\r\n{0}",
- "gettingStarted.pickColor.title": "好きな外観を選択します",
- "gettingStarted.playground.description.interpolated": "コードをより速く、よりスマートに記述したくないですか? 対話型のプレイグラウンドで強力なコード編集機能を実践します。\r\n{0}",
- "gettingStarted.playground.title": "編集スキルを再定義する",
- "gettingStarted.quickOpen.description.interpolated": "1 回のキーボード操作でファイル間を瞬時に移動します。ヒント: →を押すと、複数のファイルが開きます。\r\n{0}",
- "gettingStarted.quickOpen.title": "ファイル間をすばやく移動する",
- "gettingStarted.scm.description.interpolated": "もう Git コマンドを検索する必要はありません。Git および GitHub ワークフローはシームレスに統合されています。\r\n{0}",
- "gettingStarted.scm.title": "Git でコードを追跡する",
- "gettingStarted.scmClone.description.interpolated": "プロジェクトに、組み込みのバージョン管理を設定して、変更を追跡し、他のユーザーと共同作業を行います。\r\n{0}",
- "gettingStarted.scmSetup.description.interpolated": "プロジェクトに、組み込みのバージョン管理を設定して、変更を追跡し、他のユーザーと共同作業を行います。\r\n{0}",
- "gettingStarted.settings.description.interpolated": "好みに合わせて VS Code のあらゆるアスペクトと拡張機能を調整します。よく使用される設定は最初に表示されます。\r\n{0}",
- "gettingStarted.settings.title": "設定の調整",
- "gettingStarted.settingsSync.description.interpolated": "重要な VS Code のカスタマイズをバックアップし、すべてのデバイスで更新します。\r\n{0}",
- "gettingStarted.settingsSync.title": "他のデバイスとの同期",
- "gettingStarted.setup.OpenFolder.description.interpolated": "コーディングを開始する準備ができました。プロジェクト フォルダーを開いて、ファイルをVS Codeに取り込みます。\r\n{0}",
- "gettingStarted.setup.OpenFolder.title": "コードを開く",
- "gettingStarted.setup.OpenFolderWeb.description.interpolated": "コーディングを開始する準備が整いました。ローカル プロジェクトまたはリモート リポジトリを開いて、ファイルを VS Code に取り込むことができます。\r\n{0}\r\n{1}",
- "gettingStarted.setup.description": "最適なカスタマイズを見つけて、好みの VS Code にしてください。",
- "gettingStarted.setup.title": "VS Code を開始する",
- "gettingStarted.setupWeb.description": "最適なカスタマイズを見つけて、好みの Web 用 VS Code にしてください。",
- "gettingStarted.setupWeb.title": "Web で VS Code を開始する",
- "gettingStarted.shortcuts.description.interpolated": "お気に入りのコマンドを見つけたら、すぐにアクセスするためのカスタム キーボード ショートカットを作成します。\r\n{0}",
- "gettingStarted.shortcuts.title": "ショートカットのカスタマイズ",
- "gettingStarted.splitview.description.interpolated": "ファイルを左右、垂直、水平に並べて表示して、画面を最大限に活用します。\r\n{0}",
- "gettingStarted.splitview.title": "左右に並べて編集",
- "gettingStarted.tasks.description.interpolated": "よく使うワークフロー用にタスクを作成し、スクリプトを実行して結果を自動的に確認するという統合化されたエクスペリエンスを利用しましょう。\r\n{0}",
- "gettingStarted.tasks.title": "プロジェクト タスクを自動化する",
- "gettingStarted.terminal.description.interpolated": "コードのすぐ横で、シェル コマンドをすばやく実行し、ビルド出力を監視します。\r\n{0}",
- "gettingStarted.terminal.title": "便利な組み込みターミナル",
- "gettingStarted.topLevelGitClone.description": "リモート リポジトリをローカル フォルダーにクローンする",
- "gettingStarted.topLevelGitClone.title": "Git リポジトリのクローン...",
- "gettingStarted.topLevelGitOpen.description": "リモート リポジトリまたはプル要求に接続して、閲覧、検索、編集、コミットを行う",
- "gettingStarted.topLevelGitOpen.title": "リポジトリを開く...",
- "gettingStarted.topLevelShowWalkthroughs.description": "エディターまたは拡張機能のチュートリアルを表示する",
- "gettingStarted.topLevelShowWalkthroughs.title": "チュートリアルを開く...",
- "gettingStarted.videoTutorial.description.interpolated": "VS Code の主要な機能については、一連の短く実際的なビデオ チュートリアルの最初のものをご覧ください。\r\n{0}",
- "gettingStarted.videoTutorial.title": "ゆったり学習する",
- "gettingStarted.workspaceTrust.description.interpolated": "{0} では、プロジェクト フォルダーで自動コードの実行を **許可または制限する** かどうかを決定できます。__(拡張機能、デバッグなどに必要)__。\r\nファイル/フォルダーを開くと、信頼を付与するよう求めるダイアログが表示されます。後でいつでも {1} できます。",
- "gettingStarted.workspaceTrust.title": "コードの安全な閲覧と編集",
- "initRepo": "Git リポジトリの初期化",
- "installGit": "Git をインストール",
- "keyboardShortcuts": "キーボード ショートカット",
- "openEditorPlayground": "エディター プレイグラウンドを開く",
- "openFolder": "フォルダーを開く",
- "openRepository": "リポジトリを開く",
- "openSCM": "オープン ソース管理",
- "pickFolder": "フォルダーの選択",
- "quickOpen": "ファイルをすばやく開く",
- "runProject": "プロジェクトの実行",
- "runTasks": "自動検出されたタスクの実行",
- "showTerminal": "ターミナル パネルの表示",
- "splitEditor": "エディターの分割",
- "titleID": "色のテーマを参照する",
- "toggleMenuBar": "メニュー バーの切り替え",
- "tweakSettings": "自分の設定を調整",
- "watch": "チュートリアルを見る",
- "workspaceTrust": "ワークスペースの信頼"
- },
- "vs/workbench/contrib/welcome/gettingStarted/common/media/example_markdown_media": {
- "HighContrast": "ハイ コントラスト",
- "dark": "ダーク",
- "light": "ライト",
- "seeMore": "その他のテーマを表示..."
- },
- "vs/workbench/contrib/welcome/gettingStarted/common/media/notebookProfile": {
- "colab": "Colab",
- "default": "既定",
- "jupyter": "Jupyter"
- },
- "vs/workbench/contrib/welcome/overlay/browser/welcomeOverlay": {
- "hideWelcomeOverlay": "インターフェイスの概要を非表示にします",
- "welcomeOverlay": "ユーザー インターフェイスの概要",
- "welcomeOverlay.commandPalette": "すべてのコマンドの検索と実行",
- "welcomeOverlay.debug": "起動およびデバッグ",
- "welcomeOverlay.explorer": "エクスプローラー",
- "welcomeOverlay.extensions": "拡張機能の管理",
- "welcomeOverlay.git": "ソース コード管理",
- "welcomeOverlay.notifications": "通知を表示",
- "welcomeOverlay.problems": "エラーおよび警告の表示",
- "welcomeOverlay.search": "複数ファイルの検索",
- "welcomeOverlay.terminal": "統合ターミナルの切り替え"
+ "vs/workbench/contrib/webview/browser/webviewElement": {
+ "fatalErrorMessage": "Web ビューの読み込みエラー: {0}"
},
- "vs/workbench/contrib/welcome/page/browser/welcomePage.contribution": {
- "workbench.startupEditor": "起動時にどのエディターを表示するかを制御します。無い場合、前のセッションを復元します。",
- "workbench.startupEditor.newUntitledFile": "無題の新規ファイルを開きます (空のウィンドウが開かれているときのみ)。",
- "workbench.startupEditor.none": "エディターなしで開始",
- "workbench.startupEditor.readme": "README を含むフォルダーを開くときに README を開き、それ以外の場合は 'welcomePage' にフォールバックします。注意: これはグローバル構成として確認されました。これは、ワークスペースまたはフォルダー構成で設定されている場合は無視されます。",
- "workbench.startupEditor.welcomePage": "ウェルカム ページを開き、VS Codeと拡張機能を使って作業を開始するのに役立つコンテンツを表示します。",
- "workbench.startupEditor.welcomePageInEmptyWorkbench": "空のワークベンチを開くとき、ウェルカム ページを開きます。"
+ "vs/workbench/contrib/webview/electron-browser/webviewCommands": {
+ "iframeWebviewAlert": "iframe ベースの Web ビューをデバッグするために標準の開発ツールを使用しています",
+ "openToolsDescription": "アクティブな Web ビューの開発者ツールを開く",
+ "openToolsLabel": "Webview 開発者ツールを開く"
},
- "vs/workbench/contrib/welcome/walkThrough/browser/editor/editorWalkThrough": {
- "editorWalkThrough": "対話型エディタープレイグラウンド",
- "editorWalkThrough.title": "エディター プレイグラウンド"
+ "vs/workbench/contrib/webviewPanel/browser/webviewCommands": {
+ "editor.action.webvieweditor.findNext": "次を検索",
+ "editor.action.webvieweditor.findPrevious": "前を検索",
+ "editor.action.webvieweditor.hideFind": "検索を停止する",
+ "editor.action.webvieweditor.showFind": "検索の表示",
+ "refreshWebviewLabel": "Web ビューの再読み込み"
},
- "vs/workbench/contrib/welcome/walkThrough/browser/walkThrough.contribution": {
- "miPlayground": "エディター プレイグラウンド(&&N)",
- "walkThrough.editor.label": "プレイグラウンド"
+ "vs/workbench/contrib/webviewPanel/browser/webviewEditor": {
+ "context.activeWebviewId": "現在アクティブなWeb ビュー パネルの viewType。"
},
- "vs/workbench/contrib/welcome/walkThrough/browser/walkThroughPart": {
- "walkThrough.embeddedEditorBackground": "対話型プレイグラウンドの埋め込みエディターの背景色。",
- "walkThrough.gitNotFound": "システムに Git がインストールされていない可能性があります。",
- "walkThrough.unboundCommand": "バインドなし"
+ "vs/workbench/contrib/webviewPanel/browser/webviewPanel.contribution": {
+ "webview.editor.label": "Web ビュー エディター"
+ },
+ "vs/workbench/contrib/welcomeDialog/browser/welcomeDialog.contribution": {
+ "workbench.welcome.dialog": "有効にすると、ようこそウィジェットがエディターに表示されます"
+ },
+ "vs/workbench/contrib/welcomeDialog/browser/welcomeWidget": {
+ "dialogClose": "ダイアログを閉じる"
},
"vs/workbench/contrib/welcomeGettingStarted/browser/gettingStarted": {
+ "acessibleViewHint": "ユーザー補助対応のビューでこれを検査します ({0})。\r\n",
+ "acessibleViewHintNoKbOpen": "キー バインドを介して現在トリガーできない [ユーザー補助対応のビューを開く] コマンドを使用して、ユーザー補助対応のビューでこれを検査します。\r\n",
"allDone": "完了のマーク",
"checkboxTitle": "チェックをオンにすると、スタートアップ時にこのページが表示されます。",
"close": "非表示",
+ "closeAriaLabel": "非表示",
"footer": "{0} は使用状況データを収集します。{1} を読んで、{2} の方法をご確認ください。",
- "getStarted": "作業の開始",
"gettingStarted.allStepsComplete": "{0} ステップすべてが完了",
"gettingStarted.editingEvolved": "進化した編集",
"gettingStarted.keyboardTip": "ヒント: キーボード ショートカットを使用する",
"gettingStarted.someStepsComplete": "{1} ステップのうち {0} ステップが完了",
+ "goBack": "戻る",
"imageShowing": "{0} を示す画像",
"new": "新規",
"newItems": "更新",
@@ -10247,47 +16418,59 @@
"show more recents": "最近使ったフォルダーをすべて表示 {0}",
"showAll": "その他...",
"start": "開始",
+ "stepDone": "ステップ {0} のチェックボックス: 完了",
+ "stepNotDone": "ステップ {0} のチェックボックス: 未完了",
"toStart": "開始へ。",
+ "videoAltText": "{0} のビデオ",
+ "videoShowing": "{0} を示すビデオ",
"walkthroughs": "チュートリアル",
+ "welcome": "ようこそ",
"welcomeAriaLabel": "エディターをすぐに理解するための概要を表示します。",
"welcomePage.openFolderWithPath": "パス {1} のフォルダー {0} を開く",
"welcomePage.showOnStartup": "起動時にウェルカム ページを表示"
},
"vs/workbench/contrib/welcomeGettingStarted/browser/gettingStarted.contribution": {
"deprecationMessage": "非推奨です。グローバル `workbench.reduceMotion` を使用してください。",
- "getStarted": "作業の開始",
- "help": "ヘルプ",
- "miGetStarted": "作業の開始",
- "pickWalkthroughs": "チュートリアルを開きます...",
+ "miWelcome": "ようこそ",
+ "minWelcomeDescription": "VS Code の使用を開始するためのチュートリアルを開きます。",
+ "pickWalkthroughs": "開くチュートリアルの選択",
+ "welcome": "ようこそ",
"welcome.goBack": "前に戻る",
"welcome.markStepComplete": "ステップ完了のマーク",
"welcome.markStepInomplete": "ステップを未完了としてマーク",
"welcome.showAllWalkthroughs": "チュートリアルを開きます...",
"workbench.startupEditor": "起動時にどのエディターを表示するかを制御します。無い場合、前のセッションを復元します。",
- "workbench.startupEditor.newUntitledFile": "無題の新規ファイルを開きます (空のウィンドウが開かれているときのみ)。",
+ "workbench.startupEditor.newUntitledFile": "無題の新規テキスト ファイルを開きます (空のウィンドウが開かれているときのみ)。",
"workbench.startupEditor.none": "エディターなしで開始",
"workbench.startupEditor.readme": "README を含むフォルダーを開くときに README を開き、それ以外の場合は 'welcomePage' にフォールバックします。注意: これはグローバル構成として確認されました。これは、ワークスペースまたはフォルダー構成で設定されている場合は無視されます。",
+ "workbench.startupEditor.terminal": "エディター領域で新しいターミナルを開きます。",
"workbench.startupEditor.welcomePage": "ウェルカム ページを開き、VS Codeと拡張機能を使って作業を開始するのに役立つコンテンツを表示します。",
"workbench.startupEditor.welcomePageInEmptyWorkbench": "空のワークベンチを開くとき、ウェルカム ページを開きます。",
"workbench.welcomePage.preferReducedMotion": "有効にした場合、ウェルカム ページでの動作を減らします。",
- "workbench.welcomePage.videoTutorials": "有効にすると、[始めよう] のページにビデオ チュートリアルへの追加のリンクが表示されます。",
"workbench.welcomePage.walkthroughs.openOnInstall": "有効にすると、拡張機能のインストール時に拡張機能のチュートリアルが開きます。",
"workspacePlatform": "現在のワークスペースのプラットフォーム で、リモートまたはサーバーレスのコンテキストでは UI のプラットフォームとは異なる場合があります。"
},
+ "vs/workbench/contrib/welcomeGettingStarted/browser/gettingStartedAccessibleView": {
+ "gettingStarted.description": "説明: {0}",
+ "gettingStarted.step": "{0}\r\n{1}",
+ "gettingStarted.title": "タイトル: {0}"
+ },
"vs/workbench/contrib/welcomeGettingStarted/browser/gettingStartedColors": {
+ "walkthrough.stepTitle.foreground": "各チュートリアル ステップの見出しの前景色",
"welcomePage.background": "ウェルカム ページの背景色。",
"welcomePage.progress.background": "ウェルカム ページの進行状況バーの前景色。",
"welcomePage.progress.foreground": "ウェルカム ページの進行状況バーの背景色。",
- "welcomePage.tileBackground": "[はじめに] ページのタイルの背景色。",
- "welcomePage.tileHoverBackground": "[はじめに] のタイルのホバー背景色。",
- "welcomePage.tileShadow": "ウェルカム ページ チュートリアル カテゴリのボタンのシャドウの色。"
+ "welcomePage.tileBackground": "ウェルカム ページのタイルの背景色。",
+ "welcomePage.tileBorder": "ウェルカム ページのタイルの罫線色。",
+ "welcomePage.tileHoverBackground": "[ようこそ] のタイルのホバー背景色。"
},
"vs/workbench/contrib/welcomeGettingStarted/browser/gettingStartedExtensionPoint": {
- "pathDeprecated": "非推奨です。代わりに 'image' または 'makrdown' を使用してください",
+ "pathDeprecated": "非推奨です。代わりに 'image' または 'markdown' を使用してください",
"title": "タイトル",
"walkthroughs": "ユーザーが拡張機能を使い始めるのに役立つチュートリアルを投稿します。",
"walkthroughs.description": "チュートリアルの説明。",
"walkthroughs.featuredFor": "これらの glob パターンのいずれかと一致するチュートリアルは、指定されたファイルがあるワークスペースでは、 'おすすめ' として表示されます。たとえば、TypeScript プロジェクトのチュートリアルでは、'tsconfig.json' をここで指定できます。",
+ "walkthroughs.icon": "チュートリアルのアイコンへの相対パス。パスは拡張機能の場所からの相対パスです。指定しない場合、アイコンは既定で拡張機能の使用可能なアイコンになります。",
"walkthroughs.id": "このチュートリアルの一意識別子。",
"walkthroughs.steps": "このチュートリアルの一環として完了するステップ",
"walkthroughs.steps.button.deprecated.interpolated": "非推奨です。説明にはマークダウン リンクを使用します (すなわち、{0}、{1}、または {2})",
@@ -10323,44 +16506,76 @@
"gettingStartedUnchecked": "完了していないチュートリアルのステップを表すために使用されます"
},
"vs/workbench/contrib/welcomeGettingStarted/browser/gettingStartedInput": {
- "getStarted": "作業の開始"
+ "getStarted": "ようこそ",
+ "walkthroughPageTitle": "チュートリアル: {0}"
},
"vs/workbench/contrib/welcomeGettingStarted/browser/gettingStartedService": {
"builtin": "ビルトイン",
"developer": "開発者",
+ "resetGettingStartedProgressDescription": "[ようこそ] ページのすべてのチュートリアル手順の進行状況をリセットして、初めて表示されているかのように表示されるようにし、作業の開始エクスペリエンスを新たに開始します。",
"resetWelcomePageWalkthroughProgress": "ウェルカム ページのチュートリアルの進行状況をリセットする"
},
+ "vs/workbench/contrib/welcomeGettingStarted/browser/startupPage": {
+ "startupPage.markdownPreviewError": "マークダウン プレビューを開けませんでした: {0}。\r\n\r\nマークダウン拡張機能が有効になっていることを確認してください。",
+ "welcome.displayName": "ウェルカム ページ"
+ },
"vs/workbench/contrib/welcomeGettingStarted/common/gettingStartedContent": {
"browseLangExts": "言語拡張機能の参照",
- "browsePopular": "人気の Web 拡張機能の閲覧",
- "browseRecommended": "おすすめの拡張機能の参照",
+ "browsePopular": "人気の拡張機能の閲覧",
+ "browsePopularWeb": "人気の Web 拡張機能の閲覧",
"cloneRepo": "リポジトリのクローン",
"commandPalette": "コマンド パレットを開く",
- "enableSync": "設定の同期を有効にする",
+ "enableSync": "バックアップと同期の設定",
"enableTrust": "信頼を有効にする",
"getting-started-beginner-icon": "ウェルカム ページの初心者カテゴリに使用されるアイコン",
- "getting-started-intermediate-icon": "ウェルカム ページの中級カテゴリに使用されるアイコン",
"getting-started-setup-icon": "ウェルカム ページの設定カテゴリに使用されるアイコン",
- "gettingStarted.beginner.description": "VS Code をすぐに開始して、必須の機能の概要を取得します。",
+ "gettingStarted.accessibilityHelp.description.interpolated": "アクセシビリティのヘルプ ダイアログには、機能に期待される内容と、操作するためのコマンド/キー バインドに関する情報が表示されます。\r\n エディター、ターミナル、ノートブック、チャット応答、コメント、またはデバッグ コンソールでフォーカスがある状態で [アクセシビリティ ヘルプを開く] コマンドを使用すると、関連するダイアログを開くことができます。\r\n{0}",
+ "gettingStarted.accessibilityHelp.title": "アクセシビリティ ヘルプ ダイアログを使用して機能について学習する",
+ "gettingStarted.accessibilitySettings.description.interpolated": "アクセシビリティ設定は、[アクセシビリティ設定を開く] コマンドを実行して構成できます。\r\n{0}",
+ "gettingStarted.accessibilitySettings.title": "アクセシビリティ設定を構成する",
+ "gettingStarted.accessibilitySignals.description.interpolated": "ワークベンチの周辺の機能では、さまざまなイベントに対して、アクセシビリティ サウンドとお知らせが再生されます。\r\n これらは、List Signal Sound コマンドと List Signal Announcements コマンドを使用して検出および構成できます。\r\n{0}\r\n{1}",
+ "gettingStarted.accessibilitySignals.title": "オーディオまたは点字デバイスを介して受信するアクセシビリティ信号を微調整する",
+ "gettingStarted.accessibleView.description.interpolated": "アクセシビリティ対応ビューは、ターミナル、ホバー、通知、コメント、ノートブック出力、チャット応答、インライン入力候補、デバッグ コンソール出力で使用できます。\r\n これらの機能にフォーカスがある場合は、[アクセシビリティ対応ビューを開く] コマンドを使用して開くことができます。\r\n{0}",
+ "gettingStarted.accessibleView.title": "スクリーン リーダー ユーザーは、アクセス可能なビューで、コンテンツを 1 行ずつ、文字ごとに検査できます。",
+ "gettingStarted.beginner.description": "最も重要な機能の概要を取得する",
"gettingStarted.beginner.title": "基礎の学習",
- "gettingStarted.commandPalette.description.interpolated": "コマンドは、VS Code で任意のタスクを実行するためのキーボード方法です。使用頻度の高いコマンドを検索して時間を節約し、フローを維持します。\r\n{0}\r\n__ 'ビューの切り替え' を探します。",
- "gettingStarted.commandPalette.title": "すべてにアクセスするためのショートカット",
+ "gettingStarted.beginner.walkthroughPageTitle": "重要な機能",
+ "gettingStarted.codeFolding.description.interpolated": "[折りたたみの切り替え] コマンドを使用してコード セクションを折りたたむか展開します。\r\n{0}\r\n [折りたたみの再帰的切り替え] コマンドを使用して再帰的に折りたたむか展開する\r\n{1}\r\n",
+ "gettingStarted.codeFolding.title": "コードの折りたたみを使用して、コードのブロックを折りたたみ、関心のあるコードにフォーカスします。",
+ "gettingStarted.commandPalette.description.interpolated": "マウスに接続せずにコマンドを実行して、VS Code のタスクを完了します。\r\n{0}",
+ "gettingStarted.commandPalette.title": "コマンド パレットを使用して生産性を高める ",
+ "gettingStarted.commandPaletteAccessibility.description.interpolated": "マウスに接続せずにコマンドを実行して、VS Code のタスクを完了します。\r\n{0}",
+ "gettingStarted.commandPaletteAccessibility.title": "コマンド パレットを使用して生産性を高める",
+ "gettingStarted.copilotSetup.description": "[Copilot]({0}) を使用すると、自然言語を使用して、複数のファイル間でコードを生成したり、エラーを修正したり、コードに関する質問をしたりできます。",
+ "gettingStarted.copilotSetup.terms": "{0} Copilot を続行することにより、{1} の [使用条件]({2}) および [プライバシーに関する声明]({3}) に同意したものと見なされます",
+ "gettingStarted.copilotSetup.title": "Copilot で AI 機能を無料で使用する",
"gettingStarted.debug.description.interpolated": "起動構成を設定して、編集、ビルド、テスト、デバッグのループを高速化します。\r\n{0}",
"gettingStarted.debug.title": "動作中のコードを監視する",
+ "gettingStarted.dictation.description.interpolated": "ディクテーションを使用すると、音声を使用してコードとテキストを記述できます。\"音声: エディターでディクテーションを開始\" コマンドを使用してアクティブ化できます。\r\n{0}\r\n ターミナルでディクテーションを行うには、\"音声: ターミナルでディクテーションを開始\" と \"音声: ターミナルでディクテーションを停止\" コマンドを使用します。\r\n{1}\r\n{2}",
+ "gettingStarted.dictation.title": "ディクテーションを使用して、エディターとターミナルでコードとテキストを記述する",
"gettingStarted.extensions.description.interpolated": "拡張機能により、VS Code が強化されます。生産性を上げる便利なコツから、すぐに使える機能の拡張、まったく新しい機能の追加まで、多岐に渡ります。\r\n{0}",
- "gettingStarted.extensions.title": "無限の拡張性",
+ "gettingStarted.extensions.title": "拡張機能を含むコード",
"gettingStarted.extensionsWeb.description.interpolated": "拡張機能は VS Code のパワーアップです。Web で利用できる数が増加しています。\r\n{0}",
- "gettingStarted.findLanguageExts.description.interpolated": "構文の強調表示、コード補完、リンティング、デバッグなどの機能でよりスマートにコードを記述します。多数の言語が組み込まれていますが、拡張機能としてさらに多くの言語を追加できます。\r\n{0}",
+ "gettingStarted.findLanguageExts.description.interpolated": "構文の強調表示、インラインの提案、リンティング、デバッグなどの機能でよりスマートにコードを記述します。多数の言語が組み込まれていますが、拡張機能としてさらに多くの言語を追加できます。\r\n{0}",
"gettingStarted.findLanguageExts.title": "すべての言語の豊富なサポート",
- "gettingStarted.installGit.description.interpolated": "プロジェクト内の変更を追跡するために Git をインストールします。\r\n{0}",
+ "gettingStarted.goToSymbol.description.interpolated": "[シンボルに移動] コマンドは、ドキュメント内の重要なランドマーク間を移動する場合に便利です。\r\n{0}",
+ "gettingStarted.goToSymbol.title": "ファイル内のシンボルに移動する",
+ "gettingStarted.hover.description.interpolated": "エディター上で変数またはシンボルにフォーカスがある状態で [ホバーを表示] または [ホバーを開く] コマンドを使用すると、ホバーにフォーカスを移動できます。\r\n{0}",
+ "gettingStarted.hover.title": "エディターでホバー機能を使用して、変数またはシンボルに関する詳細情報を取得する",
+ "gettingStarted.installGit.description.interpolated": "Git をインストールして、プロジェクトの変更を追跡します。\r\n{0}\r\nインストール後に{1}ウィンドウを再読み込み{2}して、Git のセットアップを完了します。",
"gettingStarted.installGit.title": "Git をインストール",
- "gettingStarted.intermediate.description": "次のヒントとコツを使って、開発ワークフローを最適化します。",
- "gettingStarted.intermediate.title": "生産性の向上",
+ "gettingStarted.intellisense.description.interpolated": "Intellisense の候補は、[Intellisense をトリガーする] コマンドを使用して開くことができます。\r\n{0}\r\n インライン IntelliSense の候補は、[インライン候補をトリガーする] コマンドを使用してトリガーできます\r\n{1}\r\n 便利な設定には、editor.inlineCompletionsAccessibilityVerbose と editor.screenReaderAn wavnceInlineSuggestion があります。",
+ "gettingStarted.intellisense.title": "Intellisense を使用してコーディング効率を向上させる",
+ "gettingStarted.keyboardShortcuts.description.interpolated": "お気に入りのコマンドを見つけたら、すぐにアクセスするためのカスタム キーボード ショートカットを作成します。\r\n{0}",
+ "gettingStarted.keyboardShortcuts.title": "キーボード ショートカットをカスタマイズする",
"gettingStarted.menuBar.description.interpolated": "ドロップダウン メニューで充実したメニュー バーを利用でき、コードを入力するスペースを確保できます。その外観を切り替えることで、より速いアクセスが可能になります。\r\n{0}",
"gettingStarted.menuBar.title": "適度な UI の量",
- "gettingStarted.newFile.description": "無題の新しいファイル、ノートブック、またはカスタム エディターを開きます。",
+ "gettingStarted.newFile.description": "無題の新しいテキスト ファイル、ノートブック、またはカスタム エディターを開きます。",
"gettingStarted.newFile.title": "新しいファイル...",
+ "gettingStarted.newWorkspaceChat.description": "新しいワークスペースを作成するためにチャットする",
+ "gettingStarted.newWorkspaceChat.title": "新しいワークスペースの生成...",
"gettingStarted.notebook.title": "ノートブックのカスタマイズ",
+ "gettingStarted.notebook.walkthroughPageTitle": "ノートブック",
"gettingStarted.notebookProfile.description": "ノートブックを好みの感覚にする",
"gettingStarted.notebookProfile.title": "ノートブックのレイアウトを選択します",
"gettingStarted.openFile.description": "作業を開始するには、ファイルを開いてください",
@@ -10369,63 +16584,80 @@
"gettingStarted.openFolder.title": "フォルダーを開く...",
"gettingStarted.openMac.description": "作業を開始するには、ファイルまたはフォルダーを開いてください",
"gettingStarted.openMac.title": "開く...",
- "gettingStarted.pickColor.description.interpolated": "右のカラー パレットを使用すると、コードに集中でき、見た目もやさしく、単に楽しく使えるようになります。\r\n{0}",
- "gettingStarted.pickColor.title": "好きな外観を選択します",
- "gettingStarted.playground.description.interpolated": "コードをより速く、よりスマートに記述したくないですか? 対話型のプレイグラウンドで強力なコード編集機能を実践します。\r\n{0}",
- "gettingStarted.playground.title": "編集スキルを再定義する",
+ "gettingStarted.pickColor.description.interpolated": "右のテーマを使用すると、コードに集中でき、見た目もやさしく、単により楽しく使えるようになります。\r\n{0}",
+ "gettingStarted.pickColor.title": "テーマの選択",
"gettingStarted.quickOpen.description.interpolated": "1 回のキーボード操作でファイル間を瞬時に移動します。ヒント: →を押すと、複数のファイルが開きます。\r\n{0}",
"gettingStarted.quickOpen.title": "ファイル間をすばやく移動する",
"gettingStarted.scm.description.interpolated": "もう Git コマンドを検索する必要はありません。Git および GitHub ワークフローはシームレスに統合されています。\r\n{0}",
"gettingStarted.scm.title": "Git でコードを追跡する",
"gettingStarted.scmClone.description.interpolated": "プロジェクトに、組み込みのバージョン管理を設定して、変更を追跡し、他のユーザーと共同作業を行います。\r\n{0}",
"gettingStarted.scmSetup.description.interpolated": "プロジェクトに、組み込みのバージョン管理を設定して、変更を追跡し、他のユーザーと共同作業を行います。\r\n{0}",
- "gettingStarted.settings.description.interpolated": "好みに合わせて VS Code のあらゆるアスペクトと拡張機能を調整します。よく使用される設定は最初に表示されます。\r\n{0}",
"gettingStarted.settings.title": "設定の調整",
- "gettingStarted.settingsSync.description.interpolated": "重要な VS Code のカスタマイズをバックアップし、すべてのデバイスで更新します。\r\n{0}",
- "gettingStarted.settingsSync.title": "他のデバイスとの同期",
- "gettingStarted.setup.OpenFolder.description.interpolated": "コーディングを開始する準備ができました。プロジェクト フォルダーを開いて、ファイルをVS Codeに取り込みます。\r\n{0}",
+ "gettingStarted.settingsAndSync.description.interpolated": "VS Code のあらゆる側面をカスタマイズし、カスタマイズ内容をデバイス間で [同期](command:workbench.userDataSync.actions.turnOn) できます。\r\n{0}",
+ "gettingStarted.settingsSync.description.interpolated": "重要なカスタマイズをバックアップし、すべてのデバイスで更新します。\r\n{0}",
+ "gettingStarted.settingsSync.title": "デバイス間での設定の同期",
"gettingStarted.setup.OpenFolder.title": "コードを開く",
"gettingStarted.setup.OpenFolderWeb.description.interpolated": "コーディングを開始する準備が整いました。ローカル プロジェクトまたはリモート リポジトリを開いて、ファイルを VS Code に取り込むことができます。\r\n{0}\r\n{1}",
- "gettingStarted.setup.description": "最適なカスタマイズを見つけて、好みの VS Code にしてください。",
- "gettingStarted.setup.title": "VS Code を開始する",
- "gettingStarted.setupWeb.description": "最適なカスタマイズを見つけて、好みの Web 用 VS Code にしてください。",
- "gettingStarted.setupWeb.title": "Web で VS Code を開始する",
+ "gettingStarted.setup.description": "エディターをカスタマイズし、基礎を学び、コーディングを開始する",
+ "gettingStarted.setup.title": "VS Code の使用を開始する",
+ "gettingStarted.setup.walkthroughPageTitle": "VS Code のセットアップ",
+ "gettingStarted.setupAccessibility.description": "VS Code をより使いやすくするツールとショートカットについて説明します。チュートリアルのコンテキスト内では実行できないアクションもありますのでご注意ください。",
+ "gettingStarted.setupAccessibility.title": "アクセシビリティ機能を使い始める",
+ "gettingStarted.setupAccessibility.walkthroughPageTitle": "VS Code アクセシビリティのセットアップ",
+ "gettingStarted.setupWeb.description": "エディターをカスタマイズし、基礎を学び、コーディングを開始する",
+ "gettingStarted.setupWeb.title": "Web 用の VS Code を開始する",
+ "gettingStarted.setupWeb.walkthroughPageTitle": "VS Code Web のセットアップ",
"gettingStarted.shortcuts.description.interpolated": "お気に入りのコマンドを見つけたら、すぐにアクセスするためのカスタム キーボード ショートカットを作成します。\r\n{0}",
"gettingStarted.shortcuts.title": "ショートカットのカスタマイズ",
- "gettingStarted.splitview.description.interpolated": "ファイルを左右、垂直、水平に並べて表示して、画面を最大限に活用します。\r\n{0}",
- "gettingStarted.splitview.title": "左右に並べて編集",
"gettingStarted.tasks.description.interpolated": "よく使うワークフロー用にタスクを作成し、スクリプトを実行して結果を自動的に確認するという統合化されたエクスペリエンスを利用しましょう。\r\n{0}",
"gettingStarted.tasks.title": "プロジェクト タスクを自動化する",
"gettingStarted.terminal.description.interpolated": "コードのすぐ横で、シェル コマンドをすばやく実行し、ビルド出力を監視します。\r\n{0}",
- "gettingStarted.terminal.title": "便利な組み込みターミナル",
+ "gettingStarted.terminal.title": "組み込みターミナル",
"gettingStarted.topLevelGitClone.description": "リモート リポジトリをローカル フォルダーにクローンする",
"gettingStarted.topLevelGitClone.title": "Git リポジトリのクローン...",
"gettingStarted.topLevelGitOpen.description": "リモート リポジトリまたはプル要求に接続して、閲覧、検索、編集、コミットを行う",
"gettingStarted.topLevelGitOpen.title": "リポジトリを開く...",
- "gettingStarted.topLevelShowWalkthroughs.description": "エディターまたは拡張機能のチュートリアルを表示する",
- "gettingStarted.topLevelShowWalkthroughs.title": "チュートリアルを開く...",
- "gettingStarted.topLevelVideoTutorials.description": "VS Code の主な機能に関する一連の短い、実用的なビデオ チュートリアルを見ましょう。",
- "gettingStarted.topLevelVideoTutorials.title": "ビデオ チュートリアルを見る",
+ "gettingStarted.topLevelOpenTunnel.description": "トンネルでリモート マシンに接続します",
+ "gettingStarted.topLevelOpenTunnel.title": "トンネルを開く...",
+ "gettingStarted.topLevelRemoteOpen.description": "リモート開発ワークスペースに接続します。",
+ "gettingStarted.topLevelRemoteOpen.title": "次に接続します...",
+ "gettingStarted.verbositySettings.description.interpolated": "ワークベンチの周辺の機能には、ユーザーが機能に慣れた後に操作方法についてのヒントを聞かないようにするためのスクリーン リーダー詳細度設定があります。たとえば、アクセシビリティ ヘルプ ダイアログが存在する機能では、その機能の詳細度設定が無効にされるまでダイアログを開く方法を示し続けます。\r\n これらの設定とその他のアクセシビリティ設定は、[アクセシビリティ設定を開く] コマンドを実行して構成できます。\r\n{0}",
+ "gettingStarted.verbositySettings.title": "aria ラベルの詳細度を制御する",
"gettingStarted.videoTutorial.description.interpolated": "VS Code の主要な機能については、一連の短く実際的なビデオ チュートリアルの最初のものをご覧ください。\r\n{0}",
- "gettingStarted.videoTutorial.title": "ゆったり学習する",
+ "gettingStarted.videoTutorial.title": "ビデオ チュートリアルを見る",
"gettingStarted.workspaceTrust.description.interpolated": "{0} では、プロジェクト フォルダーで自動コードの実行を **許可または制限する** かどうかを決定できます。__(拡張機能、デバッグなどに必要)__。\r\nファイル/フォルダーを開くと、信頼を付与するよう求めるダイアログが表示されます。後でいつでも {1} できます。",
"gettingStarted.workspaceTrust.title": "コードの安全な閲覧と編集",
"initRepo": "Git リポジトリの初期化",
"installGit": "Git をインストール",
"keyboardShortcuts": "キーボード ショートカット",
- "openEditorPlayground": "エディター プレイグラウンドを開く",
+ "listSignalAnnouncements": "シグナル アナウンスを一覧表示する",
+ "listSignalSounds": "シグナル サウンドの一覧表示",
+ "openAccessibilityHelp": "アクセシビリティのヘルプを開く",
+ "openAccessibilitySettings": "アクセシビリティ設定を開く",
+ "openAccessibleView": "アクセシビリティ対応ビューを開く",
"openFolder": "フォルダーを開く",
+ "openGoToSymbol": "シンボルに移動する",
"openRepository": "リポジトリを開く",
"openSCM": "オープン ソース管理",
- "pickFolder": "フォルダーの選択",
+ "openVerbositySettings": "アクセシビリティ設定を開く",
"quickOpen": "ファイルをすばやく開く",
"runProject": "プロジェクトの実行",
"runTasks": "自動検出されたタスクの実行",
- "showTerminal": "ターミナル パネルの表示",
- "splitEditor": "エディターの分割",
+ "settings": "{0}Copilot は、[パブリック コード]({1}) の提案を表示し、お客様のデータを使用して製品を改善する場合があります。これらの [設定]({2}) はいつでも変更できます。",
+ "setupCopilotButton.chatWithCopilot": "チャットを開始",
+ "setupCopilotButton.setup": "AI 機能を使用する",
+ "showOrFocusHover": "[表示またはフォーカス] ホバー",
+ "showTerminal": "ターミナルを開く",
+ "terminalStartDictation": "ターミナル: ターミナルでディクテーションを開始",
+ "terminalStopDictation": "ターミナル: ターミナルでディクテーションを停止",
"titleID": "色のテーマを参照する",
+ "toggleDictation": "音声: エディターでディクテーションを開始",
+ "toggleFold": "折りたたみの切り替え",
+ "toggleFoldRecursively": "折りたたみを再帰的に切り替える",
"toggleMenuBar": "メニュー バーの切り替え",
- "tweakSettings": "自分の設定を調整",
+ "triggerInlineSuggestion": "インライン候補をトリガーする",
+ "triggerIntellisense": "Intellisense をトリガーする",
+ "tweakSettings": "[設定] を開く",
"watch": "チュートリアルを見る",
"workspaceTrust": "ワークスペースの信頼"
},
@@ -10437,10 +16669,16 @@
"vs/workbench/contrib/welcomeGettingStarted/common/media/theme_picker": {
"HighContrast": "ダーク ハイ コントラスト",
"HighContrastLight": "ライト ハイ コントラスト",
- "dark": "ダーク",
- "light": "ライト",
+ "dark": "ダーク モダン",
+ "light": "ライト モダン",
"seeMore": "その他のテーマを表示..."
},
+ "vs/workbench/contrib/welcomeGettingStarted/common/media/theme_picker_small": {
+ "HighContrast": "ダーク ハイ コントラスト",
+ "HighContrastLight": "ライト ハイ コントラスト",
+ "dark": "ダーク モダン",
+ "light": "ライト モダン"
+ },
"vs/workbench/contrib/welcomeOverlay/browser/welcomeOverlay": {
"hideWelcomeOverlay": "インターフェイスの概要を非表示にします",
"welcomeOverlay": "ユーザー インターフェイスの概要",
@@ -10452,15 +16690,8 @@
"welcomeOverlay.notifications": "通知を表示",
"welcomeOverlay.problems": "エラーおよび警告の表示",
"welcomeOverlay.search": "複数ファイルの検索",
- "welcomeOverlay.terminal": "統合ターミナルの切り替え"
- },
- "vs/workbench/contrib/welcomePage/browser/welcomePage.contribution": {
- "workbench.startupEditor": "起動時にどのエディターを表示するかを制御します。無い場合、前のセッションを復元します。",
- "workbench.startupEditor.newUntitledFile": "無題の新規ファイルを開きます (空のウィンドウが開かれているときのみ)。",
- "workbench.startupEditor.none": "エディターなしで開始",
- "workbench.startupEditor.readme": "README を含むフォルダーを開くときに README を開き、それ以外の場合は 'welcomePage' にフォールバックします。注意: これはグローバル構成として確認されました。これは、ワークスペースまたはフォルダー構成で設定されている場合は無視されます。",
- "workbench.startupEditor.welcomePage": "ウェルカム ページを開き、VS Codeと拡張機能を使って作業を開始するのに役立つコンテンツを表示します。",
- "workbench.startupEditor.welcomePageInEmptyWorkbench": "空のワークベンチを開くとき、ウェルカム ページを開きます。"
+ "welcomeOverlay.terminal": "統合ターミナルの切り替え",
+ "welcomeOverlayBackground": "welcomeOverlay 背景色。"
},
"vs/workbench/contrib/welcomeViews/common/newFile.contribution": {
"Built-In": "ビルトイン",
@@ -10468,9 +16699,10 @@
"change keybinding": "キーバインドの構成",
"file": "ファイル",
"miNewFile2": "テキスト ファイル",
- "miNewFileWithName": "新しいファイル ({0})",
+ "miNewFileWithName": "新しいファイル ({0}) の作成",
+ "newFilePlaceholder": "ファイルの種類を選択するか、ファイル名を入力してください...",
+ "newFileTitle": "新しいファイル...",
"notebook": "ノートブック",
- "selectFileType": "ファイルの種類を選択...",
"welcome.newFile": "新しいファイル..."
},
"vs/workbench/contrib/welcomeViews/common/viewsWelcomeContribution": {
@@ -10487,43 +16719,46 @@
},
"vs/workbench/contrib/welcomeWalkthrough/browser/editor/editorWalkThrough": {
"editorWalkThrough": "対話型エディタープレイグラウンド",
- "editorWalkThrough.title": "エディター プレイグラウンド"
+ "editorWalkThrough.title": "エディター プレイグラウンド",
+ "editorWalkThroughMetadata": "エディターについて学習するための対話型プレイグラウンドを開きます。"
},
"vs/workbench/contrib/welcomeWalkthrough/browser/walkThrough.contribution": {
"miPlayground": "エディター プレイグラウンド(&&N)",
"walkThrough.editor.label": "プレイグラウンド"
},
"vs/workbench/contrib/welcomeWalkthrough/browser/walkThroughPart": {
- "walkThrough.embeddedEditorBackground": "対話型プレイグラウンドの埋め込みエディターの背景色。",
"walkThrough.gitNotFound": "システムに Git がインストールされていない可能性があります。",
"walkThrough.unboundCommand": "バインドなし"
},
+ "vs/workbench/contrib/welcomeWalkthrough/common/walkThroughUtils": {
+ "walkThrough.embeddedEditorBackground": "対話型プレイグラウンドの埋め込みエディターの背景色。"
+ },
"vs/workbench/contrib/workspace/browser/workspace.contribution": {
"addWorkspaceFolderDetail": "現在信頼されていないファイルを信頼されたワークスペースに追加しようとしています。これらの新しいファイルの作成者を信頼しますか?",
"addWorkspaceFolderMessage": "このフォルダー内のファイルの作成者を信頼しますか?",
- "cancel": "キャンセル",
"cancelWorkspaceTrustButton": "キャンセル",
"checkboxString": "親フォルダー '{0}' 内のすべてのファイルの作成者を信頼します",
- "configureWorkspaceTrust": "ワークスペースの信頼を構成する",
+ "configureWorkspaceTrustSettings": "ワークスペースの信頼設定を構成",
"dontTrustFolderOptionDescription": "制限モードでフォルダーを参照する",
- "dontTrustOption": "いいえ、作成者を信頼しません",
+ "dontTrustOption": "いいえ、作成者を信頼しません(&&N)",
"dontTrustWorkspaceOptionDescription": "制限モードでのワークスペースの参照",
"folderStartupTrustDetails": "{0} は、このフォルダー内のファイルを自動的に実行する可能性のある機能を提供します。",
"folderTrust": "このフォルダー内のファイルの作成者を信頼しますか?",
- "grantFolderTrustButton": "フォルダーを信頼して続行",
- "grantWorkspaceTrustButton": "ワークスペースを信頼して続行",
- "immediateTrustRequestLearnMore": "If you don't trust the authors of these files, we do not recommend continuing as the files may be malicious. See [our docs](https://aka.ms/vscode-workspace-trust) to learn more.",
+ "grantFolderTrustButton": "フォルダーを信頼して続行(&&T)",
+ "grantWorkspaceTrustButton": "ワークスペースを信頼して続行(&&T)",
+ "immediateTrustRequestLearnMore": "これらのファイルの作成者を信頼していない場合は、悪意のあるファイルである可能性があるため、続行することをお勧めしません。詳細については、[ドキュメント](https://aka.ms/vscode-workspace-trust) を参照してください。",
"immediateTrustRequestMessage": "使用しようとしている機能は、現在開いているファイルまたはフォルダーのソースを信頼できない場合、セキュリティ リスクとなるおそれがあります。",
"manageWorkspaceTrust": "ワークスペースの信頼を管理",
- "manageWorkspaceTrustButton": "管理",
- "newWindow": "制限モードで開く",
+ "manageWorkspaceTrustButton": "管理(&&M)",
+ "newWindow": "制限モードで開く(&&R)",
"no": "いいえ",
- "open": "開く",
- "openLooseFileLearnMore": "If you don't trust the authors of these files, we recommend to open them in Restricted Mode in a new window as the files may be malicious. See [our docs](https://aka.ms/vscode-workspace-trust) to learn more.",
- "openLooseFileMesssage": "これらのファイルの作成者を信頼しますか?",
+ "open": "開く(&&O)",
+ "openLooseFileLearnMore": "信頼できないファイルを開きたくない場合は、悪意のあるファイルである可能性があるため、新しいウィンドウで制限モードで続行することをお勧めします。詳細については、[ドキュメント](https://aka.ms/vscode-workspace-trust) を参照してください。",
"openLooseFileWindowDetails": "信頼されていないファイルを信頼されているウィンドウで開こうとしています。",
+ "openLooseFileWindowMesssage": "このウィンドウで信頼されていないファイルを許可しますか?",
"openLooseFileWorkspaceCheckbox": "すべてのワークスペースに対してこの決定を記憶する",
"openLooseFileWorkspaceDetails": "信頼されていないファイルを信頼されているワークスペースで開こうとしています。",
+ "openLooseFileWorkspaceMesssage": "このワークスペースで信頼されていないファイルを許可しますか?",
"restrictedModeBannerAriaLabelFolder": "制限モードは、安全なコード参照のためのものです。すべての機能を有効にするには、このフォルダーを信頼します。ナビゲーションキーを使用して、バナーの操作にアクセスします。",
"restrictedModeBannerAriaLabelWindow": "制限モードは、安全なコード参照のためのものです。すべての機能を有効にするには、このウィンドウを信頼します。ナビゲーションキーを使用して、バナーの操作にアクセスします。",
"restrictedModeBannerAriaLabelWorkspace": "制限モードは、安全なコード参照のためのものです。すべての機能を有効にするには、このワークスペースを信頼します。ナビゲーションキーを使用して、バナーの操作にアクセスします。",
@@ -10532,12 +16767,8 @@
"restrictedModeBannerMessageFolder": "制限モードは、安全なコード参照のためのものです。すべての機能を有効にするには、このフォルダーを信頼します。",
"restrictedModeBannerMessageWindow": "制限モードは、安全なコード参照のためのものです。すべての機能を有効にするには、このウィンドウを信頼します。",
"restrictedModeBannerMessageWorkspace": "制限モードは、安全なコード参照のためのものです。すべての機能を有効にするには、このワークスペースを信頼します。",
- "securityConfigurationTitle": "セキュリティ",
- "startupTrustRequestLearnMore": "If you don't trust the authors of these files, we recommend to continue in restricted mode as the files may be malicious. See [our docs](https://aka.ms/vscode-workspace-trust) to learn more.",
+ "startupTrustRequestLearnMore": "これらのファイルの作成者を信頼していない場合は、悪意のあるファイルである可能性があるため、制限モードで続行することをお勧めします。詳細については、[ドキュメント](https://aka.ms/vscode-workspace-trust) を参照してください。",
"status.WorkspaceTrust": "ワークスペースの信頼",
- "status.ariaTrustedFolder": "このフォルダは信頼されています。",
- "status.ariaTrustedWindow": "このウィンドウは信頼されています。",
- "status.ariaTrustedWorkspace": "このワークスペースは信頼されています。",
"status.ariaUntrustedFolder": "制限モード: このフォルダーは信頼されていないため、一部の機能が無効になっています。",
"status.ariaUntrustedWindow": "制限モード: このウィンドウは信頼されていないため、一部の機能が無効になっています。",
"status.ariaUntrustedWorkspace": "制限モード: このワークスペースは信頼されていないため、一部の機能が無効になっています。",
@@ -10545,8 +16776,9 @@
"status.tooltipUntrustedWindow2": "制限モードで実行\r\n\r\nこの[ウィンドウは信頼されていない]({1})ため、一部の[機能が無効になっています]({0})。",
"status.tooltipUntrustedWorkspace2": "制限モードで実行\r\n\r\nこの[ワークスペースは信頼されていない]({1})ため、一部の[機能が無効になっています]({0})。",
"trustFolderOptionDescription": "フォルダーを信頼してすべての機能を有効にする",
- "trustOption": "はい、作成者を信頼します",
+ "trustOption": "はい、作成者を信頼します(&&Y)",
"trustWorkspaceOptionDescription": "ワークスペースを信頼してすべての機能を有効にする",
+ "untrusted": "制限モード",
"workspace.trust.banner.always": "信頼されていないワークスペースが開かれるたびにバナーを表示します。",
"workspace.trust.banner.description": "制限モードでバナーを表示するタイミングを制御します。",
"workspace.trust.banner.never": "信頼されていないワークスペースが開かれる場合はバナーを表示しません。",
@@ -10564,8 +16796,7 @@
"workspaceStartupTrustDetails": "{0} は、このワークスペース内のファイルを自動的に実行する可能性のある機能を提供します。",
"workspaceTrust": "このワークスペース内のファイルの作成者を信頼しますか?",
"workspaceTrustEditor": "ワークスペース信頼エディター",
- "workspacesCategory": "ワークスペース",
- "yes": "はい"
+ "workspacesCategory": "ワークスペース"
},
"vs/workbench/contrib/workspace/browser/workspaceTrustEditor": {
"addButton": "フォルダーの追加",
@@ -10577,6 +16808,7 @@
"folderPickerIcon": "ワークスペース信頼エディターの [フォルダーの選択] アイコンのアイコン。",
"hostColumnLabel": "ホスト",
"invalidTrust": "リポジトリ内の個々のフォルダーを信頼することはできません。",
+ "keyboardShortcut": "キーボード ショートカット: {0}",
"localAuthority": "ローカル",
"no untrustedSettings": "信頼が必要なワークスペース設定が適用されない",
"noTrustedFoldersDescriptions": "フォルダーまたはワークスペース ファイルをまだ信頼していません。",
@@ -10594,7 +16826,7 @@
"trustUri": "信頼済みフォルダー",
"trustedDebugging": "デバッグが有効です",
"trustedDescription": "ワークスペースに信頼が付与されているため、すべての機能が有効になっています。",
- "trustedExtensions": "すべての拡張機能が有効になっています",
+ "trustedExtensions": "有効なすべての拡張機能がアクティブ化されています",
"trustedFolder": "信頼済みフォルダー内",
"trustedFolderAriaLabel": "{0}、信頼済み",
"trustedFolderSubtitle": "現在のフォルダー内のファイルの作成者を信頼します。すべての機能が有効になっています:",
@@ -10614,7 +16846,7 @@
"trustedWorkspaceSubtitle": "現在のワークスペース内のファイルの作成者を信頼します。すべての機能が有効になっています:",
"untrustedDebugging": "デバッグが無効です",
"untrustedDescription": "{0} は、セーフ コードを閲覧するための制限モードになっています。",
- "untrustedExtensions": "[{0} 拡張機能] ({1}) が無効になっているか、機能の制限があります",
+ "untrustedExtensions": "[{0} 拡張機能]({1}) が無効になっているか、機能の制限があります",
"untrustedFolderReason": "このフォルダーは、以下の信頼済みフォルダーの太字のエントリを介して信頼されています。",
"untrustedFolderSubtitle": "現在のフォルダー内のファイルの作成者を信頼しません。次の機能が無効になっています。",
"untrustedHeader": "制限モードになっています",
@@ -10624,7 +16856,7 @@
"untrustedWorkspace": "制限モードで",
"untrustedWorkspaceReason": "このワークスペースは、以下の信頼済みフォルダーの太字のエントリを介して信頼されています。",
"untrustedWorkspaceSubtitle": "現在のワークスペース内のファイルの作成者を信頼しません。次の機能が無効になっています。",
- "workspaceTrustEditorHeaderActions": "[Configure your settings]({0}) or [learn more](https://aka.ms/vscode-workspace-trust).",
+ "workspaceTrustEditorHeaderActions": "[設定の構成] ({0}) または [詳細情報](https://aka.ms/vscode-workspace-trust)。",
"xListIcon": "ワークスペース信頼エディターのクロスのアイコン。"
},
"vs/workbench/contrib/workspace/common/workspace": {
@@ -10632,53 +16864,90 @@
"workspaceTrustedCtx": "現在のワークスペースがユーザーによって信頼されているかどうか。"
},
"vs/workbench/contrib/workspaces/browser/workspaces.contribution": {
+ "alreadyOpen": "このワークスペースは既に開いています。",
+ "foundWorkspace": "このフォルダーには、ワークスペース ファイル '{0}' が含まれています。それを開きますか? ワークスペース ファイルに関しての [詳細情報]({1}) をご覧ください。",
+ "foundWorkspaces": "このフォルダーには、複数のワークスペース ファイルが含まれています。1 つを開いてみますか?ワークスペース ファイルに関しての [詳細情報]({0}) をご覧ください。",
"openWorkspace": "ワークスペースを開く",
"selectToOpen": "開くワークスペースを選択します。",
- "selectWorkspace": "ワークスペースを選択",
- "workspaceFound": "このフォルダーには、ワークスペース ファイル '{0}' が含まれています。それを開きますか? ワークスペース ファイルに関しての [詳細情報]({1}) をご覧ください。",
- "workspacesFound": "このフォルダーには、複数のワークスペース ファイルが含まれています。1 つを開いてみますか?ワークスペース ファイルに関しての [詳細情報]({0}) をご覧ください。"
+ "selectWorkspace": "ワークスペースを選択"
+ },
+ "vs/workbench/services/accounts/common/defaultAccount": {
+ "sign in": "サインイン"
},
"vs/workbench/services/actions/common/menusExtensionPoint": {
+ "command name": "ID",
+ "command title": "タイトル",
+ "commands": "コマンド",
"comment.actions": "コメント エディターの下にボタンとして表示される投稿されたコメント コンテキスト メニュー",
+ "comment.commentContext": "コメント スレッドのプレビューの個別のコメントに右クリック メニューとしてレンダリングされる、投稿されたコメント コンテキスト メニュー。",
"comment.title": "投稿されたコメントのタイトル メニュー",
"commentThread.actions": "コメント エディターの下のボタンとして表示される、投稿されたコメント スレッド コンテキスト メニュー",
+ "commentThread.editorActions": "投稿されたコメント エディターアクション",
"commentThread.title": "投稿されたコメント スレッドのタイトル メニュー",
- "dup": "コマンド `{0}` が `commands` セクションで複数回出現します。",
+ "commentThread.titleContext": "投稿されたコメント スレッドのタイトルのプレビュー コンテキスト メニュー。コメント スレッドのプレビュー タイトルの右クリック メニューとして表示されます。",
+ "commentsView.threadActions": "コメント ビューでの投稿されたコメント スレッドのコンテキスト メニュー",
+ "dup0": "コマンド `{0}` は既に登録されています",
+ "dup1": "コマンド `{0}` は既に {1} ({2}) によって登録されています",
"dupe.command": "メニュー項目において、既定と alt コマンドが同じコマンドを参照しています",
+ "editorLineNumberContext": "提供されたエディター行番号のコンテキスト メニュー",
"file.newFile": "ウェルカム ページおよび [ファイル] メニューに表示される、[新しいファイル...] クイック ピック。",
"inlineCompletions.actions": "インライン入力候補にカーソルを合わせたときに表示されるアクション",
"interactive.cell.title": "提供された対話型セルのタイトル メニュー",
"interactive.toolbar": "提供された対話型セルのツールバー メニュー",
+ "issue.reporter": "提供された問題の報告者メニュー",
+ "keyboard shortcuts": "キーボード ショートカット",
+ "menuContexts": "メニュー コンテキスト",
+ "menus.artifactContext": "ソース管理成果物のコンテキスト メニュー",
+ "menus.artifactGroupContext": "ソース管理成果物グループのコンテキスト メニュー",
"menus.changeTitle": "ソース管理のインライン変更メニュー",
+ "menus.chatMultiDiffContext": "[チャット Multi-Diff] コンテキスト メニュー。",
+ "menus.chatSessions": "[チャット セッション] メニュー。",
+ "menus.chatSessionsNewSession": "新しいチャット セッションのメニューです。",
+ "menus.chatTextEditor": "テキスト エディターのコンテキスト メニューの [チャット] サブメニュー。",
"menus.commandPalette": "コマンド パレット",
"menus.debugCallstackContext": "[コール スタックのデバッグ] ビューのコンテキスト メニュー",
+ "menus.debugCreateConfiguation": "デバッグの作成構成メニュー",
"menus.debugToolBar": "デバッグ ツール バーのメニュー",
"menus.debugVariablesContext": "[変数のデバッグ] ビューのコンテキスト メニュー",
+ "menus.debugWatchContext": "デバッグ ウォッチ ビューのコンテキスト メニュー",
+ "menus.diffEditorGutterToolBarMenus": "差分エディターの余白ツール バー",
"menus.editorContext": "エディターのコンテキスト メニュー",
"menus.editorContextCopyAs": "エディターのコンテキスト メニューの [形式を選択してコピー] サブメニュー",
"menus.editorContextShare": "エディターのコンテキスト メニューの [共有] サブメニュー",
"menus.editorTabContext": "エディターのタブのコンテキスト メニュー",
"menus.editorTitle": "エディターのタイトル メニュー",
+ "menus.editorTitleContextShare": "エディターのタイトル コンテキスト メニュー内の '共有' サブメニュー",
"menus.editorTitleRun": "エディターのタイトル メニュー内のサブメニューを実行",
"menus.explorerContext": "エクスプローラーのコンテキスト メニュー",
+ "menus.explorerContextShare": "エクスプローラーのコンテキスト メニューの '共有' サブメニュー",
"menus.extensionContext": "拡張機能のコンテキスト メニュー",
+ "menus.historyItemContext": "ソース管理履歴項目のコンテキスト メニュー",
+ "menus.historyItemRefContext": "ソース管理履歴項目の参照コンテキスト メニュー",
"menus.home": "ホーム インジケーターのコンテキスト メニュー (Web のみ)",
+ "menus.input": "ソース管理の入力ボックス メニュー",
+ "menus.mergeEditorResult": "マージ エディターの結果ツール バー",
+ "menus.multiDiffEditorResource": "マルチ差分エディターのリソース ツール バー",
+ "menus.notebookVariablesContext": "[Notebook 変数] ビューのコンテキスト メニュー",
"menus.opy": "最上位レベルの [編集] メニューの [形式を選択してコピー] サブメニュー",
"menus.resourceFolderContext": "ソース管理リソース フォルダーのコンテキスト メニュー",
"menus.resourceGroupContext": "ソース管理リソース グループのコンテキスト メニュー",
"menus.resourceStateContext": "ソース管理リソース状態のコンテキスト メニュー",
+ "menus.scmHistoryTitle": "ソース管理履歴のタイトル メニュー",
"menus.scmSourceControl": "ソース管理メニュー",
+ "menus.scmSourceControlInline": "ソース管理リポジトリ メニュー",
+ "menus.scmSourceControlTitle": "ソース管理リポジトリのタイトル メニュー",
"menus.scmTitle": "ソース管理のタイトル メニュー",
"menus.share": "最上位レベルの [ファイル] メニューに表示される [共有] サブメニュー。",
"menus.statusBarRemoteIndicator": "ステータス バーのリモート インジケーター メニュー",
+ "menus.terminalContext": "ターミナル コンテキスト メニュー",
+ "menus.terminalTabContext": "ターミナル タブのコンテキスト メニュー",
"menus.touchBar": "Touch Bar (macOS のみ)",
- "merge.toolbar": "マージエディター内の目立つbotton",
+ "merge.toolbar": "エディター内の目立つボタンで、そのコンテンツをオーバーレイします",
"missing.altCommand": "メニュー項目が、'commands' セクションで定義されていない alt コマンド `{0}` を参照しています。",
"missing.command": "メニュー項目が、'commands' セクションで定義されていないコマンド `{0}` を参照しています。",
"missing.submenu": "メニュー項目で、'submenus' セクションに定義されていないサブメニュー `{0}` が参照されています。",
"nonempty": "空でない値が必要です。",
"notebook.cell.execute": "投稿されたノートブックのセルの実行メニュー",
- "notebook.cell.executePrimary": "投稿された主たるノートブックのセル実行ボタン",
"notebook.cell.title": "提供されたノートブック セルのタイトル メニュー",
"notebook.kernelSource": "提供されたノートブックのカーネル ソース メニュー",
"notebook.toolbar": "提供されたノートブックのツールバー メニュー",
@@ -10691,13 +16960,19 @@
"requirearray": "サブメニュー項目は配列である必要があります",
"requirestring": "プロパティ '{0}' は必須で、'string' 型である必要があります",
"requirestrings": "プロパティの `{0}` と `{1}` は必須で、`string` 型でなければなりません",
+ "searchPanel.aiResultsCommands": "AI 検索タイトルの横のボタンとして表示されるメニューに貢献するコマンド",
"submenuId.duplicate.id": "'{0}' サブメニューは既に登録されています。",
"submenuId.invalid.id": "'{0}' は有効なサブメニュー識別子ではありません",
"submenuId.invalid.label": "'{0}' は有効なサブメニュー ラベルではありません",
"submenuItem.duplicate": "'{0}' サブメニューは既に '{1}' メニューに追加されています。",
"testing.item.context": "提供されたテスト項目のメニュー",
"testing.item.gutter.title": "テスト項目のとじしろ装飾のメニュー",
+ "testing.item.result.title": "テスト結果ビューまたはクイック表示の項目のメニュー。",
+ "testing.message.content.title": "結果ツリー内のメッセージのコンテキスト メニュー",
+ "testing.message.context.title": "メッセージが表示されるエディター コンテンツをオーバーレイする目立つボタン",
+ "testing.profiles.context.title": "テスト プロファイルを構成するためのメニュー。",
"unsupported.submenureference": "メニュー項目で、サブメニューがサポートされていないメニューのサブメニューが参照されています。",
+ "view.containerTitle": "提供されたビュー コンテナーのタイトル メニュー",
"view.itemContext": "提供されたビュー項目のコンテキスト メニュー",
"view.timelineContext": "タイムライン ビュー項目のコンテキスト メニュー",
"view.timelineTitle": "タイムライン ビュー タイトル メニュー",
@@ -10705,9 +16980,10 @@
"view.tunnelOriginInline": "ポート ビュー項目の配信元インライン メニュー",
"view.tunnelPortInline": "ポート ビュー項目のポート インライン メニュー",
"view.viewTitle": "提供されたビューのタイトル メニュー",
+ "viewContainerTitle.when": "{0} メニューのコントリビューションでは、{2} 句で {1} を確認する必要があります。",
"vscode.extension.contributes.commandType.category": "(省略可能) コマンドが UI でグループ分けされるカテゴリ文字列",
"vscode.extension.contributes.commandType.command": "実行するコマンドの識別子",
- "vscode.extension.contributes.commandType.icon": "(省略可能) UI でコマンドを表すために使用されるアイコン。ファイル パス、暗いテーマと明るいテーマのファイル パスを持つオブジェクト、またはテーマ アイコンの参照 (`\\$(zap)` など)",
+ "vscode.extension.contributes.commandType.icon": "(省略可能) UI でコマンドを表すために使用されるアイコン。ファイル パス、暗いテーマと明るいテーマのファイル パスを持つオブジェクト、またはテーマ アイコンの参照 (\"\\$(zap)\" など)",
"vscode.extension.contributes.commandType.icon.dark": "暗いテーマを使用した場合のアイコンのパス",
"vscode.extension.contributes.commandType.icon.light": "明るいテーマを使用した場合のアイコンのパス",
"vscode.extension.contributes.commandType.precondition": "(省略可能) UI (メニューおよびキーバインド) のコマンドを有効にするために true でなければならない条件です。'executeCommand'-api などの他の方法によってそのコマンドの実行が妨げられることはありません。",
@@ -10720,7 +16996,7 @@
"vscode.extension.contributes.menuItem.submenu": "この項目に表示するサブメニューの識別子。",
"vscode.extension.contributes.menuItem.when": "この項目を表示するために true にする必要がある条件",
"vscode.extension.contributes.menus": "メニュー項目をエディターに提供します",
- "vscode.extension.contributes.submenu.icon": "(省略可能) UI でサブメニューを表すために使用されるアイコン。ファイル パス、暗いテーマと明るいテーマのファイル パスを持つオブジェクト、またはテーマ アイコンの参照 (`\\$(zap)` など)",
+ "vscode.extension.contributes.submenu.icon": "(省略可能) UI でサブメニューを表すために使用されるアイコン。ファイル パス、暗いテーマと明るいテーマのファイル パスを持つオブジェクト、またはテーマ アイコンの参照 (\"\\$(zap)\" など)",
"vscode.extension.contributes.submenu.icon.dark": "暗いテーマを使用した場合のアイコンのパス",
"vscode.extension.contributes.submenu.icon.light": "明るいテーマを使用した場合のアイコンのパス",
"vscode.extension.contributes.submenu.id": "サブメニューとして表示するメニューの識別子。",
@@ -10728,38 +17004,78 @@
"vscode.extension.contributes.submenus": "エディターにサブメニュー項目を提供します",
"webview.context": "Web ビューのコンテキスト メニュー"
},
- "vs/workbench/services/authentication/browser/authenticationService": {
+ "vs/workbench/services/activity/common/activity": {
+ "activityErrorBadge.background": "エラー アクティビティ バッジの背景色",
+ "activityErrorBadge.foreground": "エラー アクティビティ バッジの前景色",
+ "activityWarningBadge.background": "警告アクティビティ バッジの背景色",
+ "activityWarningBadge.foreground": "警告アクティビティ バッジの前景色"
+ },
+ "vs/workbench/services/assignment/common/assignmentService": {
+ "workbench.enableExperiments": "Microsoft のオンライン サービスから実行する実験を取得します。"
+ },
+ "vs/workbench/services/authentication/browser/authenticationExtensionsService": {
"accessRequest": "{1}... (1) による {0} へのアクセスを許可します",
- "allow": "許可",
- "authentication.Placeholder": "要求されたアカウントはまだありません...",
- "authentication.id": "認証プロバイダーの ID。",
- "authentication.idConflict": "この認証 ID '{0}' は既に登録されています",
- "authentication.label": "認証プロバイダーを表す、人が認識できる名前です。",
- "authentication.missingId": "認証のコントリビューションには ID を指定する必要があります。",
- "authentication.missingLabel": "認証のコントリビューションにはラベルを指定する必要があります。",
- "authenticationExtensionPoint": "認証を提供します",
- "cancel": "キャンセル",
+ "allow": "許可(&&A)",
"confirmAuthenticationAccess": "拡張機能 '{0}' は、{1} アカウント '{2}' の認証情報にアクセスしようとしています。",
- "deny": "拒否",
+ "deny": "拒否(&&D)",
"getSessionPlateholder": "使用する '{0}' のアカウントを選択するか、Esc を押してキャンセルしてください",
- "loading": "読み込み中...",
"selectAccount": "拡張機能 '{0}' には、{1} アカウントへのアクセスが必要です",
"sign in": "サインインが要求されました",
"signInRequest": "{1} (1) を使用するには {0} でサインインします",
"useOtherAccount": "別のアカウントにサインインする"
},
- "vs/workbench/services/bulkEdit/browser/bulkEditService": {
- "summary.0": "編集は行われませんでした",
- "summary.nm": "{1} 個のファイルで {0} 件のテキスト編集を実行",
- "summary.n0": "1 つのファイルで {0} 個のテキストを編集",
- "workspaceEdit": "ワークスペースの編集",
- "nothing": "編集は行われませんでした"
+ "vs/workbench/services/authentication/browser/authenticationMcpService": {
+ "accessRequest": "{1}... (1) による {0} へのアクセスを許可します",
+ "allow": "許可(&&A)",
+ "confirmAuthenticationAccess": "MCP サーバー '{0}' は、{1} アカウント '{2}' にアクセスする必要があります。",
+ "deny": "拒否(&&D)",
+ "getSessionPlateholder": "使用する '{0}' のアカウントを選択するか、Esc を押してキャンセルしてください",
+ "selectAccount": "MCP サーバー '{0}' は、{1} アカウントにアクセスする必要があります",
+ "sign in": "サインインが要求されました",
+ "signInRequest": "{1} (1) を使用するには {0} でサインインします",
+ "useOtherAccount": "別のアカウントにサインインする"
+ },
+ "vs/workbench/services/authentication/browser/authenticationService": {
+ "authentication.authorizationServerGlobs": "このプロバイダーがサポートする承認サーバーに一致する glob の一覧。",
+ "authentication.authorizationServerGlobsDescription": "このプロバイダーがサポートする承認サーバーに一致する glob の一覧。",
+ "authentication.id": "認証プロバイダーの ID。",
+ "authentication.idConflict": "この認証 ID '{0}' は既に登録されています",
+ "authentication.label": "認証プロバイダーを表す、人が認識できる名前です。",
+ "authentication.missingId": "認証のコントリビューションには ID を指定する必要があります。",
+ "authentication.missingLabel": "認証のコントリビューションにはラベルを指定する必要があります。",
+ "authenticationExtensionPoint": "認証を提供します"
+ },
+ "vs/workbench/services/auxiliaryWindow/browser/auxiliaryWindowService": {
+ "lifecycleVeto": "変更内容は保存されない可能性があります。[キャンセル] を押して、もう一度お試しください。",
+ "retry": "再試行(&&R)",
+ "unableToOpenWindow": "ブラウザーによって新しいウィンドウを開くことがブロックされました。[再試行] を押して、もう一度やり直してください。",
+ "unableToOpenWindowDetail": "[ブラウザー設定]({0}) でこの Web サイトのポップアップを許可してください。",
+ "unableToOpenWindowError": "新しいウィンドウを開くことができません。"
+ },
+ "vs/workbench/services/auxiliaryWindow/electron-browser/auxiliaryWindowService": {
+ "backupErrorDetails": "最初に変更が保存されていないエディターを保存または復元してから、もう一度お試しください。"
+ },
+ "vs/workbench/services/chat/common/chatEntitlementService": {
+ "learnMore": "詳細情報",
+ "ok": "OK",
+ "retry": "再試行",
+ "signUpInvalidResponseError": "応答のコンテンツが無効です。",
+ "signUpNoResponseContentsError": "応答には内容がありません。",
+ "signUpNoResponseError": "応答を受信しませんでした。",
+ "signUpUnexpectedStatusError": "状態コード {0} は予期しないものです。",
+ "unknownSignUpError": "GitHub Copilot Free プランへのサインアップ中にエラーが発生しました。もう一度やり直しますか?",
+ "unprocessableSignUpError": "GitHub Copilot Free プランへのサインアップ中にエラーが発生しました。"
+ },
+ "vs/workbench/services/clipboard/browser/clipboardService": {
+ "clipboardError": "ブラウザーのクリップボードから読み取ることができません。この Web サイトがクリップボードから読み取るためのアクセス権を付与していることを確認してください。",
+ "learnMore": "詳細情報",
+ "retry": "再試行"
},
"vs/workbench/services/configuration/browser/configurationService": {
"configurationDefaults.description": "構成の既定値を提供する",
- "experimental": "実験"
+ "setting description": "すべてのプロファイルに適用する設定を構成します。"
},
- "vs/workbench/services/configuration/common/configurationEditingService": {
+ "vs/workbench/services/configuration/common/configurationEditing": {
"errorConfigurationFileDirty": "ファイルの変更が保存されていないため、ユーザー設定を書き込めません。ユーザー設定ファイルを保存してから、もう一度お試しください。",
"errorConfigurationFileDirtyFolder": "ファイルの変更が保存されていないため、フォルダー設定を書き込めません。'{0}' フォルダー設定ファイルを保存してから、もう一度お試しください。",
"errorConfigurationFileDirtyWorkspace": "ファイルの変更が保存されていないため、ワークスペース設定を書き込めません。ワークスペース設定ファイルを保存してから、もう一度お試しください。",
@@ -10772,6 +17088,7 @@
"errorInvalidFolderConfiguration": "{0} はフォルダーのリソース スコープをサポートしていないため、フォルダー設定に書き込むことができません。",
"errorInvalidFolderTarget": "リソースが指定されていないため、フォルダー設定に書き込むことができません。",
"errorInvalidLaunchConfiguration": "起動構成ファイルに書き込めません。ファイルを開いて、ファイル内のエラー/警告を修正してからもう一度お試しください。",
+ "errorInvalidMCPConfiguration": "MCP 構成ファイルに書き込めません。ファイルを開いて、ファイル内のエラー/警告を修正してからもう一度お試しください。",
"errorInvalidRemoteConfiguration": "リモートユーザーの設定を書き込めませんでした。リモートユーザーの設定を開き、エラーや警告を修正して再試行してください。",
"errorInvalidResourceLanguageConfiguration": "{0} がリソースの言語設定ではないため、言語設定に書き込めません。",
"errorInvalidTaskConfiguration": "タスク構成ファイルに書き込めません。ファイルを開いて、ファイル内のエラー/警告を修正してからもう一度お試しください。",
@@ -10781,6 +17098,8 @@
"errorInvalidWorkspaceTarget": "{0} はマルチ フォルダー ワークスペースでワークスペース スコープをサポートしていないため、ワークスペース設定を書き込むことができません。",
"errorLaunchConfigurationFileDirty": "ファイルの変更が保存されていないため、起動構成ファイルに書き込めません。ファイルを保存してから、もう一度お試しください。",
"errorLaunchConfigurationFileModifiedSince": "ファイルのコンテンツが新しくなっているため、起動構成ファイルに書き込むことができません。",
+ "errorMCPConfigurationFileDirty": "ファイルの変更が保存されていないため、MCP 構成ファイルに書き込めません。最初に保存してから、もう一度お試しください。",
+ "errorMCPConfigurationFileModifiedSince": "ファイルのコンテンツが新しくなっているため、MCP 構成ファイルに書き込むことができません。",
"errorNoWorkspaceOpened": "開いているワークスペースがないため、{0} に書き込むことができません。最初にワークスペースを開いてから、もう一度お試しください。",
"errorPolicyConfiguration": "システム ポリシーで構成されているため、{0} を書き込むことができません。",
"errorRemoteConfigurationFileDirty": "ファイルの変更が保存されていないため、リモート ユーザー設定を書き込めません。リモート ユーザー設定ファイルを保存してから、もう一度お試しください。",
@@ -10790,8 +17109,10 @@
"errorUnknown": "内部エラーのため、{0} に書き込むことができません。",
"errorUnknownKey": "{1} は登録済みの構成ではないため、{0} に書き込むことができません。",
"folderTarget": "フォルダーの設定",
+ "fsError": "{0} への書き込み中にエラーが発生しました。 {1}",
"open": "設定を開く",
"openLaunchConfiguration": "起動構成を開く",
+ "openMcpConfiguration": "MCP 構成を開く",
"openTasksConfiguration": "タスク構成を開く",
"remoteUserTarget": "リモート ユーザーの設定",
"saveAndRetry": "保存して再試行",
@@ -10799,7 +17120,6 @@
"workspaceTarget": "ワークスペースの設定"
},
"vs/workbench/services/configuration/common/jsonEditingService": {
- "errorFileDirty": "ファイルの変更が保存されていないため、ファイルに書き込めません。ファイルを保存してからもう一度お試しください。",
"errorInvalidFile": "ファイルに書き込めません。ファイルを開いて、ファイル内のエラー/警告を修正してからもう一度お試しください。"
},
"vs/workbench/services/configurationResolver/browser/baseConfigurationResolverService": {
@@ -10832,6 +17152,7 @@
},
"vs/workbench/services/configurationResolver/common/variableResolver": {
"canNotFindFolder": "変数 {0} を解決できません。フォルダー '{1}' がありません。",
+ "canNotResolveColumnNumber": "変数 {0} を解決できません。アクティブなエディターに選択済みの列があることをご確認ください。",
"canNotResolveFile": "変数 {0} を解決できません。エディターを開いてください。",
"canNotResolveFolderForFile": "変数 {0} で '{1}' のワークスペース フォルダーが見つかりません。",
"canNotResolveLineNumber": "変数 {0} を解決できません。アクティブなエディターに選択済みの行があることをご確認ください。",
@@ -10852,7 +17173,6 @@
},
"vs/workbench/services/dialogs/browser/abstractFileDialogService": {
"allFiles": "すべてのファイル",
- "cancel": "キャンセル",
"dontSave": "保存しない(&&N)",
"filterName.workspace": "ワークスペース",
"noExt": "拡張子なし",
@@ -10868,21 +17188,35 @@
"saveChangesMessages": "次の {0} ファイルに対する変更を保存しますか?",
"saveFileAs.title": "名前を付けて保存"
},
+ "vs/workbench/services/dialogs/browser/fileDialogService": {
+ "learnMore": "詳細情報(&&L)",
+ "openFiles": "ファイルを開く(&&F)...",
+ "openRemote": "リモートを開く(&&R)...",
+ "pickFolderAndOpen": "フォルダーを開くことができません。代わりにワークスペースにフォルダーを追加してみてください。",
+ "pickWorkspaceAndOpen": "ワークスペースを開くことができません。代わりにワークスペースにフォルダーを追加してみてください。",
+ "unsupportedBrowserDetail": "お使いのブラウザーではローカル フォルダーを開くことができません。\r\n 単一のファイルを開くか、リモート リポジトリを開くことができます。",
+ "unsupportedBrowserMessage": "ローカル フォルダーを開く操作はサポートされていません"
+ },
"vs/workbench/services/dialogs/browser/simpleFileDialog": {
"openLocalFile": "ローカル ファイルを開く...",
"openLocalFileFolder": "ローカルを開く...",
"openLocalFolder": "ローカル フォルダーを開く...",
- "remoteFileDialog.badPath": "パスが存在しません。",
+ "remoteFileDialog.badPath": "パスが存在しません。ホーム ディレクトリに移動するには、 ~ を使用します。",
"remoteFileDialog.cancel": "キャンセル",
+ "remoteFileDialog.hideDotFiles": "ドット ファイルを非表示にする",
"remoteFileDialog.invalidPath": "有効なパスを入力してください。",
"remoteFileDialog.local": "ローカルを表示します。",
"remoteFileDialog.notConnectedToRemote": "{0} のファイル システム プロバイダーは使用できません。",
+ "remoteFileDialog.placeholder": "フォルダー パス",
+ "remoteFileDialog.showDotFiles": "ドット ファイルの表示",
"remoteFileDialog.validateBadFilename": "有効なファイル名を入力してください。",
+ "remoteFileDialog.validateCreateDirectory": "フォルダー {0} が存在しません。作成しますか?",
"remoteFileDialog.validateExisting": "{0} は既に存在します。上書きしますか?",
"remoteFileDialog.validateFileOnly": "ファイルを選択してください。",
"remoteFileDialog.validateFolder": "このフォルダーは既に存在します。新しいファイル名を使用してください。",
"remoteFileDialog.validateFolderOnly": "フォルダーを選択してください。",
"remoteFileDialog.validateNonexistentDir": "存在しているパスを入力してください。",
+ "remoteFileDialog.validateReadonlyFolder": "このフォルダーは保存先として使用できません。別のフォルダーを選択してください",
"remoteFileDialog.windowsDriveLetter": "パスの先頭にドライブ文字を指定してください。",
"saveLocalFile": "ローカル ファイルの保存..."
},
@@ -10898,27 +17232,28 @@
"promptOpenWith.updateDefaultPlaceHolder": "'{0}' の新しい既定のエディターを選択する"
},
"vs/workbench/services/editor/common/editorResolverService": {
- "editor.editorAssociations": "glob パターンをエディターに構成します (例: `\"*.hex\": \"hexEditor.hexEdit\"`)。これらは既定の動作よりも優先されます。"
+ "editor.editorAssociations": "[glob パターン](https://aka.ms/vscode-glob-patterns) をエディターに構成します (`\"*.hex\": \"hexEditor.hexedit\"` など)。これらは既定の動作よりも優先されます。"
},
"vs/workbench/services/extensionManagement/browser/extensionBisect": {
+ "I cannot reproduce": "再現できません",
+ "This is Bad": "再現できます",
"bisect": "拡張機能のバイセクトがアクティブであり、{0} の拡張機能が無効化されました。問題を再現できるかどうかを確認し、これらのオプションから選択して続行します。",
"bisect.plural": "拡張機能のバイセクトがアクティブであり、{0} の拡張機能が無効化されました。問題を再現できるかどうかを確認し、これらのオプションから選択して続行します。",
"bisect.singular": "拡張機能のバイセクトがアクティブであり、1 つの拡張機能が無効化されました。問題を再現できるかどうかを確認し、これらのオプションから選択して続行します。",
+ "continue": "続行",
"detail.start": "拡張機能のバイセクトではバイナリ検索が使用され、問題の原因となっている拡張機能が検索されます。処理中に、ウィンドウが繰り返し再読み込みされます (最大 {0} 回)。問題がまだ発生しているかどうかを毎回確認する必要があります。",
- "done": "続行",
"done.detail": "拡張機能のバイセクトが実行され、問題の原因となっている拡張機能として {0} が識別されました。",
"done.detail2": "拡張機能のバイセクトが実行されましたが、拡張機能は何も識別されませんでした。これは {0} の問題である可能性があります。",
"done.disbale": "この拡張機能を無効にしておく",
"done.msg": "拡張機能のバイセクト",
- "help": "ヘルプ",
"msg.next": "拡張機能のバイセクト",
"msg.start": "拡張機能のバイセクト",
- "msg2": "拡張機能のバイセクトを開始",
- "next.bad": "問題がある",
- "next.cancel": "キャンセル",
- "next.good": "問題ない",
- "next.stop": "バイセクトを停止",
- "report": "問題を報告して続行",
+ "msg2": "拡張機能のバイセクトを開始(&&S)",
+ "next.bad": "&&再現できます",
+ "next.cancel": "バイセクトのキャンセル(&&C)",
+ "next.good": "&&再現できません",
+ "next.stop": "バイセクトを停止(&&S)",
+ "report": "問題を報告して続行(&&R)",
"title.isBad": "拡張機能のバイセクトを続行",
"title.start": "拡張機能のバイセクトを開始",
"title.stop": "拡張機能のバイセクトを停止"
@@ -10926,47 +17261,93 @@
"vs/workbench/services/extensionManagement/browser/extensionEnablementService": {
"Reload": "拡張機能を再度読み込んで有効にする",
"cannot change disablement environment": "{0} の拡張機能を有効化する設定は変更できません。なぜなら、環境に従って無効化されているからです",
+ "cannot change disallowed extension enablement": "{0} 拡張機能は許可されていないため、有効化を変更できません",
"cannot change enablement dependency": "\"{0}\" 拡張機能は有効化できません。なぜなら、有効化できない \"{1}\" 拡張機能に依存しているためです",
"cannot change enablement environment": "{0} の拡張機能を有効化する設定は変更できません。なぜなら、環境に従って有効化されているからです",
"cannot change enablement extension kind": "拡張機能の種類により、{0} 拡張機能の有効化を変更できません",
+ "cannot change enablement malicious": "{0} 拡張機能には悪意があるため、有効化を変更できません",
"cannot change enablement virtual workspace": "{0} の拡張機能を有効化する設定は変更できません。なぜなら、仮想ワークスペースをサポートしていないためです",
+ "cannot change invalid extension enablement": "拡張機能が無効であるため、{0} 拡張機能の有効化を変更できません",
"cannot disable auth extension": "設定の同期が {0} 拡張機能に依存しているため、これが有効かどうかは変更できません。",
"cannot disable auth extension in workspace": "{0} 拡張機能は認証プロバイダーに提供されているため、それを有効にするかどうかは変更できません",
"cannot disable language pack extension": "{0} 拡張機能は言語パックに提供されているため、それを有効にするかどうかは変更できません。",
"extensionsDisabled": "インストールされているすべての拡張機能が一時的に無効になります。",
"noWorkspace": "ワークスペースがありません。"
},
+ "vs/workbench/services/extensionManagement/browser/webExtensionsScannerService": {
+ "not a web extension": "この拡張機能は Web 拡張機能ではないため、'{0}' を追加できません。",
+ "openInstalledWebExtensionsResource": "インストールされている Web 拡張機能リソースを開く"
+ },
+ "vs/workbench/services/extensionManagement/common/extensionFeaturesManagemetService": {
+ "accessExtensionFeature": "'{0}' 機能へのアクセス",
+ "accessExtensionFeatureMessage": "拡張機能 '{0}' は、'{1}' 機能にアクセスしようとしています。",
+ "allow": "許可",
+ "disallow": "許可しない"
+ },
+ "vs/workbench/services/extensionManagement/common/extensionManagementServerService": {
+ "browser": "ブラウザー",
+ "remote": "リモート"
+ },
"vs/workbench/services/extensionManagement/common/extensionManagementService": {
"Manifest is not found": "拡張機能 {0} をインストールできませんでした。マニフェストが見つかりません。",
"VS Code for Web": "Web 版の {0}",
- "cancel": "キャンセル",
+ "allUnverifed": "すべての発行元は [**not** 確認済み]({0}) です。",
"cannot be installed": "'{0}' 拡張機能は、このセットアップで使用できないため、インストールできません。",
+ "cannot be installed in server": "'{0}' 拡張機能は、'{1}' のセットアップで使用できないため、インストールできません。",
+ "checkAllTrustedPublishersTitle": "発行元の \"{0}\" を信頼し、他の発行元 {1} しますか?",
+ "checkTrustedPublisherTitle": "発行元の \"{0}\" を信頼しますか?",
+ "checkTwoTrustedPublishersTitle": "発行元の \"{0}\" と \"{1}\" を信頼しますか?",
+ "extension published by message": "拡張機能 {0} は {1} によって公開されています。",
"extensionInstallWorkspaceTrustButton": "ワークスペースを信頼してインストールする",
"extensionInstallWorkspaceTrustContinueButton": "インストール",
"extensionInstallWorkspaceTrustManageButton": "詳細情報",
"extensionInstallWorkspaceTrustMessage": "この拡張機能を有効にするには、信頼されたワークスペースが必要です。",
- "install": "インストール",
- "install and do no sync": "インストール (同期しない)",
- "install anyways": "インストールする",
+ "firstTimeInstallingMessage": "これらの発行元からの拡張機能のインストールは今回が初めてです。",
+ "install": "インストール(&&I)",
+ "install and do no sync": "インストール (同期しない)(&&N)",
+ "install anyways": "インストールする(&&I)",
"install extension": "拡張機能のインストール",
"install extensions": "拡張機能のインストール",
"install multiple extensions": "拡張機能をインストールしてデバイス間で同期しますか?",
"install single extension": "'{0}' 拡張機能をインストールしてデバイス間で同期しますか?",
+ "learnMore": "詳細情報(&&L)",
"limited support": "'{0}' には、{1} で制限された機能があります。",
+ "main.notFound": "アクティブ化できません。{0} が見つからないためです",
+ "manifest is not found": "マニフェストが見つかりません",
+ "message1": "拡張機能 {0} は {1} によって公開されています。これは、この発行元からインストールする最初の拡張機能です。",
+ "message2": "{0} は、個人データの管理方法など、サード パーティの拡張機能の動作を制御できません。発行元が信頼できる場合にのみ続行してください。",
+ "message3": "この拡張機能をインストールすると、{1} および {2} によって発行された [拡張機能]({0}) もインストールされます。",
+ "message4": "{0} は、個人データの管理方法など、サード パーティの拡張機能の動作を制御できません。発行元が信頼できる場合にのみ続行してください。",
+ "multiInstallMessage": "発行元の {0} と {1} から拡張機能をインストールすることは初めてです。",
"multipleDependentsError": "拡張機能 '{0}' をアンインストールできません。拡張機能 '{1}'、'{2}'、その他がこの拡張機能に依存しています。",
"non web extensions": "'{0}' には、{1} でサポートされていない拡張機能が含まれています。",
"non web extensions detail": "サポートされていない拡張機能が含まれています。",
- "showExtensions": "拡張機能を表示する",
+ "showExtensions": "拡張機能の表示(&&S)",
"singleDependentError": "拡張機能 '{0}' をアンインストールできません。拡張機能 '{1}' がこの拡張機能に依存しています。",
- "twoDependentsError": "拡張機能 '{0}' をアンインストールできません。拡張機能 '{1}' と '{2}' がこの拡張機能に依存しています。"
+ "singleUntrustedPublisher": "この拡張機能をインストールすると、{1} によって発行された [拡張機能]({0}) もインストールされます。",
+ "trust and install": "発行元を信頼してインストールする(&&I)",
+ "trust publishers and install": "発行元を信頼してインストールする(&&I)",
+ "twoDependentsError": "拡張機能 '{0}' をアンインストールできません。拡張機能 '{1}' と '{2}' がこの拡張機能に依存しています。",
+ "unverifiedPublisherWithName": "{0} は [**未**検証]({1}) です。",
+ "unverifiedPublishers": "{0} と {1} は [**未**検証]({2}) です。",
+ "verifiedPublisherWithName": "{0} が {1} の所有権を確認しました。"
+ },
+ "vs/workbench/services/extensionManagement/common/extensionsIcons": {
+ "extensionDefault": "拡張機能ビューとエディターの既定の拡張機能に使用されるアイコン。",
+ "extensionIconVerifiedForeground": "拡張機能の確認済みの発行元のアイコンの色。",
+ "verifiedPublisher": "拡張機能ビューとエディターで確認済みの拡張機能の発行元用に使用されるアイコン。"
+ },
+ "vs/workbench/services/extensionManagement/electron-browser/extensionGalleryManifestService": {
+ "extensionGalleryManifestService.accountChange": "{0} が別のマーケットプレースに構成されました。変更を適用するには、再起動してください。",
+ "restart": "再起動(&&R)"
},
- "vs/workbench/services/extensionManagement/electron-sandbox/extensionManagementServerService": {
- "local": "LOCAL",
+ "vs/workbench/services/extensionManagement/electron-browser/extensionManagementServerService": {
+ "local": "ローカル",
"remote": "リモート"
},
- "vs/workbench/services/extensionManagement/electron-sandbox/remoteExtensionManagementService": {
+ "vs/workbench/services/extensionManagement/electron-browser/remoteExtensionManagementService": {
+ "incompatibleAPI": "'{0}' 拡張機能をインストールできません。{1}",
"notFoundCompatibleDependency": "{1} の現在のバージョン (バージョン {2}) と互換性がないため、\"{0}\" 拡張機能はインストールできません。",
- "notFoundCompatiblePrereleaseDependency": "{1} の現在のバージョン (バージョン {2}) と互換性がないため、\"{0}\" 拡張機能のプレリリースバージョンはインストールできません。",
"notFoundReleaseExtension": "'{0}' 拡張機能のリリース バージョンがないため、リリース バージョンをインストールできません。"
},
"vs/workbench/services/extensionRecommendations/common/workspaceExtensionsConfig": {
@@ -10976,33 +17357,36 @@
"workspace folder": "ワークスペース フォルダー"
},
"vs/workbench/services/extensions/browser/extensionUrlHandler": {
- "Installing": "拡張機能 '{0}' をインストールしています...",
- "confirmUrl": "拡張機能がこの URI を開くことを許可しますか?",
- "enableAndHandle": "Extension '{0}' は無効です。Extension を有効にして、URL を開きますか?",
- "enableAndReload": "有効にして開く(&&E)",
+ "confirmUrl": "'{0}' 拡張機能がこの URI を開くことを許可しますか?",
"extensions": "拡張機能",
- "install and open": "インストールして開く(&&I)",
- "installAndHandle": "Extension '{0}' がインストールされていません。Extension のインストールをご所望で、この URL を開きますか?",
+ "installDetail": "拡張機能では URI を開く必要があります:",
"manage": "承認された拡張 URI を管理します...",
"no": "現在、承認されている拡張機能の URI はありません。",
"open": "開く(&&O)",
+ "openUri": "URI を開く",
"reloadAndHandle": "拡張機能 '{0}' は読み込まれていません。拡張機能を読み込んで URL を開くためにウィンドウを再読み込みしますか?",
"reloadAndOpen": "ウィンドウを再読み込みして開く(&&R)",
- "rememberConfirmUrl": "この拡張機能を再度表示しません。"
- },
- "vs/workbench/services/extensions/browser/webWorkerExtensionHost": {
- "name": "worker 拡張機能ホスト"
+ "rememberConfirmUrl": "今後、この拡張機能についてメッセージを表示しない"
},
"vs/workbench/services/extensions/common/abstractExtensionService": {
+ "activation": "アクティブ化イベント",
+ "disconnectRemote": "リモート エージェントの切断",
"extensionService.autoRestart": "拡張機能ホストが予期せずに終了しました。再起動しています...",
"extensionService.crash": "拡張機能ホストが過去 5 分間に予期せず 3 回終了しました。",
+ "extensionStopVetoError": "{0} (エラー: {1})",
+ "extensionStopVetoMessage": "拡張機能の再起動を確認してください。",
"extensionTestError": "{0} で Test Runner を起動できる拡張機能ホストが見つかりませんでした。",
"looping": "次の拡張機能には循環参照が存在するため、無効になっています。: {0}",
- "restart": "リモート拡張ホストの再起動"
+ "proceedAnyways": "再起動する",
+ "restart": "リモート拡張ホストの再起動",
+ "stopExtensionHosts": "拡張機能ホストを停止しています"
},
"vs/workbench/services/extensions/common/extensionHostManager": {
"measureExtHostLatency": "拡張機能ホストの待ち時間を測定"
},
+ "vs/workbench/services/extensions/common/extensionsProposedApi": {
+ "enabledProposedAPIs": "API の提案"
+ },
"vs/workbench/services/extensions/common/extensionsRegistry": {
"extensionKind": "拡張機能の種類を定義します。'ui' 拡張機能はローカル マシンにインストールされて実行されますが、'workspace' 拡張機能はリモート上で実行されます。",
"extensionKind.empty": "ローカルとリモート マシンのいずれのリモート コンテキストでも実行できない拡張機能を定義します。",
@@ -11014,6 +17398,7 @@
"ui": "UI 拡張機能の種類。リモート ウィンドウでは、これらの拡張機能はローカル マシンで使用可能な場合にのみ有効になります。",
"vscode.extension.activationEvents": "VS Code 拡張機能のアクティブ化イベント。",
"vscode.extension.activationEvents.onAuthenticationRequest": "指定された認証プロバイダーからセッションが要求されるたびに生成されるアクティブ化イベントです。",
+ "vscode.extension.activationEvents.onChatParticipant": "指定されたチャット参加者が呼び出されたときに生成されるアクティブ化イベント。",
"vscode.extension.activationEvents.onCommand": "指定したコマンドが呼び出されるたびにアクティブ化イベントが発行されます。",
"vscode.extension.activationEvents.onCustomEditor": "指定したカスタム エディターが表示されるたびに生成されるアクティブ化イベント。",
"vscode.extension.activationEvents.onDebug": "デバッグの開始またはデバッグ構成がセットアップされるたびにアクティブ化イベントが発行されます。",
@@ -11021,22 +17406,31 @@
"vscode.extension.activationEvents.onDebugDynamicConfigurations": "すべてのデバッグ構成のリストを作成する必要がある (また、\"動的\" スコープのすべての provideDebugConfigurations メソッドを呼び出す必要がある) 場合に発生するアクティブ化イベント。",
"vscode.extension.activationEvents.onDebugInitialConfigurations": "\"launch.json\" を作成する必要があるたびに (または、すべての provideDebugConfiguration メソッドを呼び出す必要があるたびに) アクティブ化イベントを発行します。",
"vscode.extension.activationEvents.onDebugResolve": "特定のタイプのデバッグ セッションが起動されるたびに(または、対応する resolveDebugConfiguration メソッドを呼び出す必要があるたびに)、アクティブ化イベントを発行します。",
+ "vscode.extension.activationEvents.onEditSession": "指定されたスキームに編集セッションが関連付けられるたびにアクティブ化イベントが発行されます。",
"vscode.extension.activationEvents.onFileSystem": "指定されたスキーマにファイルかフォルダーが関連付けられるたびにアクティブ化イベントが発行されます。",
- "vscode.extension.activationEvents.onIdentity": "指定されたユーザー ID の場合に生成されるアクティブ化イベント。",
+ "vscode.extension.activationEvents.onIssueReporterOpened": "イシュー レポーターが開かれたときに生成されるアクティブ化イベント。",
"vscode.extension.activationEvents.onLanguage": "指定された言語を解決するファイルが開かれるたびにアクティブ化イベントが発行されます。",
+ "vscode.extension.activationEvents.onLanguageModelChatProvider": "特定のベンダーのチャット モデル プロバイダーが要求されたときに生成されるアクティブ化イベント。",
+ "vscode.extension.activationEvents.onLanguageModelTool": "指定した言語モデル ツールが呼び出されたときに生成されるアクティブ化イベント。",
+ "vscode.extension.activationEvents.onMcpCollection": "MCP サーバーからツールが要求されるたびにアクティブ化イベントが発生します。",
"vscode.extension.activationEvents.onNotebook": "指定したノートブック ドキュメントが開かれるたびにアクティブ化イベントが発行されます。",
"vscode.extension.activationEvents.onOpenExternalUri": "外部 URI (http や https リンクなど) が開かれるときに生成されるアクティブ化イベント。",
"vscode.extension.activationEvents.onRenderer": "ノートブック出力レンダラーが使用されるたびに発生するアクティブ化イベント。",
"vscode.extension.activationEvents.onSearch": "指定されたスキームを使用してフォルダーでの検索が開始されるたびにアクティブ化イベントが発行されます。",
"vscode.extension.activationEvents.onStartupFinished": "起動が完了した後 ('*' でアクティブ化されたすべての拡張機能のアクティブ化が完了した後) に発生するアクティブ化イベント。",
"vscode.extension.activationEvents.onTaskType": "特定の種類のタスクを一覧表示または解決する必要があるときにアクティブ化イベントが生成されます。",
+ "vscode.extension.activationEvents.onTerminal": "指定されたシェル型のターミナルが開かれたときに生成されるアクティブ化イベントです。",
"vscode.extension.activationEvents.onTerminalProfile": "特定のターミナル プロファイルが起動されたときに発生するアクティブ化イベント。",
+ "vscode.extension.activationEvents.onTerminalQuickFixRequest": "コマンドがこの ID に関連付けられたセレクターと一致したときに発行されるアクティブ化イベント",
+ "vscode.extension.activationEvents.onTerminalShellIntegration": "指定されたシェルの種類に対してターミナル シェル統合がアクティブ化されたときに生成されるアクティブ化イベント。",
"vscode.extension.activationEvents.onUri": "この拡張機能用のシステム全体の URI が開かれるたびにアクティブ化イベントが発行されます。",
"vscode.extension.activationEvents.onView": "指定したビューを展開するたびにアクティブ化イベントが発行されます。",
"vscode.extension.activationEvents.onWalkthrough": "指定したチュートリアルが開いたときに生成されるアクティブ化イベント。",
"vscode.extension.activationEvents.onWebviewPanel": "特定の viewType の Web ビューが読み込まれたときに発生するアクティブ化イベント",
"vscode.extension.activationEvents.star": "VS Code 起動時にアクティブ化イベントを発行します。優れたエンドユーザー エクスペリエンスを確保するために、他のアクティブ化イベントの組み合わせでは望む動作にならないときのみ使用してください。",
"vscode.extension.activationEvents.workspaceContains": "指定した glob パターンに一致するファイルを少なくとも 1 つ以上含むフォルダーを開くたびにアクティブ化イベントが発行されます。",
+ "vscode.extension.api": "この拡張機能によって提供される API について説明します。詳細については、以下にアクセスしてください: https://code.visualstudio.com/api/advanced-topics/remote-extensions#handling-dependencies-with-remote-extensions",
+ "vscode.extension.api.none": "API をエクスポートする機能を完全に放棄します。これにより、この拡張機能に依存する他の拡張機能を、別の拡張機能ホスト プロセスまたはリモート コンピューターで実行できます。",
"vscode.extension.badges": "Marketplace の拡張機能ページのサイドバーに表示されるバッジの配列。",
"vscode.extension.badges.description": "バッジの説明。",
"vscode.extension.badges.href": "バッジのリンク。",
@@ -11071,8 +17465,10 @@
"vscode.extension.galleryBanner.color": "VS Code マーケットプレース ページ ヘッダー上のバナーの色。",
"vscode.extension.galleryBanner.theme": "バナーで使用されるフォントの配色テーマ。",
"vscode.extension.icon": "128x128 ピクセルのアイコンへのパス。",
+ "vscode.extension.l10n": "ローカライズ (bundle.l10n.*.json) ファイルを含むフォルダーへの相対パス。vscode.l10n API を使用している場合は、指定する必要があります。",
"vscode.extension.markdown": "Marketplace で使用される Markdown レンダリング エンジンを制御します。github (既定) か standard のいずれかを指定できます。",
"vscode.extension.preview": "Marketplace で Preview としてフラグが付けられるように拡張機能を設定します。",
+ "vscode.extension.pricing": "拡張機能の価格情報。無料 (既定) または試用版を指定できます。詳細については、「https://code.visualstudio.com/api/working-with-extensions/publishing-extension#extension-pricing-label」を参照してください。",
"vscode.extension.publisher": "VS Code 拡張機能の公開元。",
"vscode.extension.qna": "Marketplase の Q&A リンクを制御します。既定の Marketplace Q&A サイトを有効にするには、[marketplace] に設定します。カスタムの Q&A サイトの URL を提供するには、その文字列に設定します。Q&A を無効にする場合は、[false] に設定します。",
"vscode.extension.scripts.prepublish": "パッケージが VS Code 拡張機能として公開される前に実行されるスクリプト。",
@@ -11081,16 +17477,22 @@
},
"vs/workbench/services/extensions/common/extensionsUtil": {
"extensionUnderDevelopment": "開発の拡張機能を {0} に読み込んでいます",
- "overwritingExtension": "拡張機能 {0} を {1} で上書きしています。"
- },
- "vs/workbench/services/extensions/common/remoteExtensionHost": {
- "remote extension host Log": "リモート拡張ホスト"
+ "overwritingExtension": "拡張機能 {0} を {1} で上書きしています。",
+ "overwritingWithWorkspaceExtension": "ワークスペース拡張機能 {1} で {0} 上書きしています。"
},
- "vs/workbench/services/extensions/electron-sandbox/cachedExtensionScanner": {
+ "vs/workbench/services/extensions/electron-browser/cachedExtensionScanner": {
"extensionCache.invalid": "拡張機能がディスク上で変更されています。ウィンドウを再読み込みしてください。",
+ "extensionUnderDevelopment.invalid": "開発中の拡張機能 '{0}' は無効であるため、読み込めませんでした: {1}",
+ "extensionsUnderDevelopment.invalid": "開発中の拡張機能 {0} は無効であるため、読み込めませんでした: {1}",
+ "reloadWindow": "ウィンドウの再読み込み"
+ },
+ "vs/workbench/services/extensions/electron-browser/localProcessExtensionHost": {
+ "extensionHost.startupFail": "拡張機能ホストが 10 秒以内に開始されませんでした。問題が発生している可能性があります。",
+ "extensionHost.startupFailDebug": "拡張機能ホストが 10 秒以内に開始されませんでした。先頭行で停止している可能性があり、続行するにはデバッガーが必要です。",
+ "join.extensionDevelopment": "拡張機能デバッグ セッションを終了しています",
"reloadWindow": "ウィンドウの再読み込み"
},
- "vs/workbench/services/extensions/electron-sandbox/electronExtensionService": {
+ "vs/workbench/services/extensions/electron-browser/nativeExtensionService": {
"devTools": "開発者ツールを開く",
"enable": "有効にしてリロード",
"enableResolver": "リモート ウィンドウを開くには、拡張機能 '{0}' が必要です。\r\n有効にしますか?",
@@ -11100,89 +17502,28 @@
"getEnvironmentFailure": "リモート環境をフェッチできませんでした",
"install": "インストールして再度読み込む",
"installResolver": "リモート ウィンドウを開くには、拡張機能 '{0}' が必要です。\r\nこの拡張機能をインストールしますか?",
- "looping": "次の拡張機能には循環参照が存在するため、無効になっています。: {0}",
+ "learnMore": "詳細情報",
"relaunch": "VS Code を再起動",
"resolverExtensionNotFound": "`{0}` がマーケットプレイスで見つからない",
"restart": "拡張機能のホストを再起動",
- "restartExtensionHost": "拡張機能のホストを再起動"
- },
- "vs/workbench/services/extensions/electron-sandbox/localProcessExtensionHost": {
- "extension host Log": "拡張機能ホスト",
- "extensionHost.error": "拡張機能ホストからのエラー: {0}",
- "extensionHost.startupFail": "拡張機能ホストが 10 秒以内に開始されませんでした。問題が発生している可能性があります。",
- "extensionHost.startupFailDebug": "拡張機能ホストが 10 秒以内に開始されませんでした。先頭行で停止している可能性があり、続行するにはデバッガーが必要です。",
- "join.extensionDevelopment": "拡張機能デバッグ セッションを終了しています",
- "reloadWindow": "ウィンドウの再読み込み"
+ "restartExtensionHost": "拡張機能のホストを再起動",
+ "restartExtensionHost.reason": "明示的な要求",
+ "startBisect": "拡張機能のバイセクトを開始"
},
"vs/workbench/services/files/electron-browser/diskFileSystemProvider": {
- "binFailed": "'{0}' をごみ箱に移動できませんでした",
- "trashFailed": "'{0}' をごみ箱に移動できませんでした"
- },
- "vs/workbench/services/gettingStarted/common/gettingStartedContent": {
- "getting-started-setup-icon": "作業の開始の設定カテゴリに使用されるアイコン",
- "getting-started-beginner-icon": "作業の開始の初心者カテゴリに使用されるアイコン",
- "getting-started-codespaces-icon": "作業の開始の Codespaces カテゴリに使用されるアイコン",
- "gettingStarted.newFile.title": "新しいファイル",
- "gettingStarted.newFile.description": "空の新しいファイルを使用して開始します",
- "gettingStarted.openMac.title": "開く...",
- "gettingStarted.openMac.description": "作業を開始するには、ファイルまたはフォルダーを開いてください",
- "gettingStarted.openFile.title": "ファイルを開く...",
- "gettingStarted.openFile.description": "作業を開始するには、ファイルを開いてください",
- "gettingStarted.openFolder.title": "フォルダーを開く...",
- "gettingStarted.openFolder.description": "フォルダーを開いて作業を開始します",
- "gettingStarted.cloneRepo.title": "Git リポジトリの複製...",
- "gettingStarted.cloneRepo.description": "Git リポジトリを複製します",
- "gettingStarted.topLevelCommandPalette.title": "コマンドの実行...",
- "gettingStarted.topLevelCommandPalette.description": "コマンド パレットを使用して、VSCode のコマンドをすべて表示して実行します",
- "gettingStarted.codespaces.title": "Codespaces 入門",
- "gettingStarted.codespaces.description": "インスタント コード環境を開始します。",
- "gettingStarted.runProject.title": "お客様のアプリをビルドおよび実行",
- "gettingStarted.runProject.description": "ブラウザーから直接、コードをクラウドでビルド、実行、デバッグできます。",
- "gettingStarted.runProject.button": "デバッグの開始 (F5)",
- "gettingStarted.forwardPorts.title": "実行中のアプリケーションへのアクセス",
- "gettingStarted.forwardPorts.description": "codespace 内で実行されているポートは自動的に Web に転送されるため、ブラウザーで開くことができます。",
- "gettingStarted.forwardPorts.button": "ポート パネルを表示",
- "gettingStarted.pullRequests.title": "pull request をすぐに利用可能",
- "gettingStarted.pullRequests.description": "お客様の GitHub ワークフローをお客様のコードに近づけることで、pull request のレビュー、コメントの追加、ブランチのマージなどを行うことができます。",
- "gettingStarted.pullRequests.button": "GitHub ビューを開く",
- "gettingStarted.remoteTerminal.title": "統合ターミナルでのタスクの実行",
- "gettingStarted.remoteTerminal.description": "組み込みのターミナルを使用してクイック コマンドライン タスクを実行します。",
- "gettingStarted.remoteTerminal.button": "ターミナルにフォーカス",
- "gettingStarted.openVSC.title": "VS Code でのリモート開発",
- "gettingStarted.openVSC.description": "ローカル VS Code からお客様のクラウド開発環境の機能にアクセスできます。それを設定するには、GitHub Codespaces 拡張機能をインストールしてお客様の GitHub アカウントを接続します。",
- "gettingStarted.openVSC.button": "VS Code で開く",
- "gettingStarted.setup.title": "クイック セットアップ",
- "gettingStarted.setup.description": "VS Code の拡張とカスタマイズを行って自分仕様にします。",
- "gettingStarted.pickColor.title": "テーマを使用した外観のカスタマイズ",
- "gettingStarted.pickColor.description": "コーディング中に自分の好みと気分に合う色テーマを選択します。",
- "gettingStarted.pickColor.button": "テーマを選択",
- "gettingStarted.findLanguageExts.title": "エディターを切り替えずにどの言語でもコードを書く",
- "gettingStarted.findLanguageExts.description": "VS Code は、50 以上のプログラミング言語をサポートしています。多くは組み込まれていますが、それ以外については、1 回のクリックで拡張機能として簡単にインストールできます。",
- "gettingStarted.findLanguageExts.button": "言語拡張機能の参照",
- "gettingStarted.settingsSync.title": "お気に入りの設定を同期",
- "gettingStarted.settingsSync.description": "最適な VS Code 設定を失うことはありません。設定の同期によって、複数の VS Code インスタンス間で設定、キー バインド、拡張機能がバックアップおよび共有されます。",
- "gettingStarted.settingsSync.button": "設定の同期を有効にする",
- "gettingStarted.setup.OpenFolder.title": "プロジェクトを開く",
- "gettingStarted.setup.OpenFolder.description": "開始するには、プロジェクト フォルダーを開いてください。",
- "gettingStarted.setup.OpenFolder.button": "フォルダーの選択",
- "gettingStarted.setup.OpenFolder.description2": "開始するにはフォルダーを開いてください。",
- "gettingStarted.beginner.title": "基礎の学習",
- "gettingStarted.beginner.description": "必須のショートカットと機能を使用して、時間を節約します。",
- "gettingStarted.commandPalette.title": "コマンドの検索および実行",
- "gettingStarted.commandPalette.description": "VS Code で実行可能なすべての機能を見つける最も簡単な方法です。機能またはショートカットをお探しの場合は、まずこちらをご確認ください。",
- "gettingStarted.commandPalette.button": "コマンド パレットを開く",
- "gettingStarted.terminal.title": "統合ターミナルでのタスクの実行",
- "gettingStarted.terminal.description": "コードのすぐ隣で、すぐにシェル コマンドを実行し、ビルド出力を監視します。",
- "gettingStarted.terminal.button": "ターミナルを開く",
- "gettingStarted.extensions.title": "無限の拡張性",
- "gettingStarted.extensions.description": "拡張機能により、VS Code が強化されます。生産性を上げる便利なコツから、すぐに使える機能の拡張、まったく新しい機能の追加まで、多岐に渡ります。",
- "gettingStarted.extensions.button": "推奨される拡張機能の参照",
- "gettingStarted.settings.title": "設定がすべて",
- "gettingStarted.settings.description": "VS Code の外観のすべての部分を好みに合わせて最適化します。設定の同期を有効にすると、マシン間でお客様の調整が共有されます。",
- "gettingStarted.settings.button": "自分の設定を調整",
- "gettingStarted.videoTutorial.title": "ゆったり学習する",
- "gettingStarted.videoTutorial.description": "VS Code の主要な機能については、一連の短く実際的なビデオ チュートリアルの最初のものをご覧ください。",
- "gettingStarted.videoTutorial.button": "チュートリアルを見る"
+ "fileWatcher": "File Watcher"
+ },
+ "vs/workbench/services/files/electron-browser/elevatedFileService": {
+ "fileNotTrusted": "ワークスペースは信頼されていません。",
+ "fileNotTrustedMessagePosix": "'{0}' をスーパー ユーザーとして保存しようとしています。",
+ "fileNotTrustedMessageWindows": "'{0}' を管理者として保存しようとしています。"
+ },
+ "vs/workbench/services/filesConfiguration/common/filesConfigurationService": {
+ "configuredReadonly": "ファイルが設定によって読み取り専用に設定されているため、エディターは読み取り専用です。[ここをクリック](command:{0}) して構成するか、[このセッションを切り替えます](command:{1})。",
+ "fileLocked": "ファイルのアクセス許可のため、エディターは読み取り専用です。書き込み可能に設定するには [ここをクリック](command:{0}) します。",
+ "fileReadonly": "ファイルが読み取り専用であるため、エディターは読み取り専用です。",
+ "providerReadonly": "ファイルのファイル システムが読み取り専用であるため、エディターは読み取り専用です。",
+ "sessionReadonly": "このセッションでファイルが読み取り専用に設定されたため、エディターは読み取り専用です。書き込み可能に設定するには、[ここをクリック](command:{0}) します。"
},
"vs/workbench/services/history/browser/historyService": {
"canNavigateBack": "エディター履歴内で前に戻ることができるかどうか",
@@ -11195,20 +17536,51 @@
"canNavigateToLastNavigationLocation": "エディターで最後のナビゲーションの場所に移動できるかどうか",
"canReopenClosedEditor": "最後に閉じたエディターを再度開くことができるかどうか"
},
- "vs/workbench/services/integrity/electron-sandbox/integrityService": {
+ "vs/workbench/services/host/browser/browserHostService": {
+ "retry": "再試行(&&R)",
+ "unableToOpenExternal": "ブラウザーによって新しいタブまたはウィンドウを開くことがブロックされました。[再試行] を押して、もう一度やり直してください。",
+ "unableToOpenExternalWorkspace": "ブラウザーで '{0}' の新しいタブまたはウィンドウを開けませんでした。[再試行] を押して、もう一度やり直してください。",
+ "unableToOpenWindowDetail": "[ブラウザー設定]({0}) でこの Web サイトのポップアップを許可してください。"
+ },
+ "vs/workbench/services/hover/browser/hoverWidget": {
+ "hoverhint": "{0} キーを押しながらマウス ポインターを合わせます"
+ },
+ "vs/workbench/services/integrity/electron-browser/integrityService": {
"integrity.dontShowAgain": "今後表示しない",
"integrity.moreInformation": "詳細情報",
"integrity.prompt": "{0} インストールが壊れている可能性があります。再インストールしてください。"
},
+ "vs/workbench/services/issue/browser/issueTroubleshoot": {
+ "I cannot reproduce": "再現できません",
+ "Stop": "停止",
+ "This is Bad": "再現できます",
+ "ask to download insiders": "{0} Insider で問題をダウンロードして再現してみてください。",
+ "ask to reproduce issue": "{0} Insider で問題を再現してみて、問題が存在するかどうかを確認してください。",
+ "bad": "再現できます",
+ "detail.start": "問題のトラブルシューティングは、問題の原因を特定するのに役立つプロセスです。問題の原因は、拡張機能による設定ミス、または {0} 自体である可能性があります。\r\n\r\nプロセス中、ウィンドウは繰り返し再読み込みされます。毎回、問題がまだ発生しているかどうかを確認する必要があります。",
+ "download insiders": "{0} Insider のダウンロード",
+ "empty.profile": "問題のトラブルシューティングがアクティブになっており、構成が一時的に既定値にリセットされています。問題をまだ再現できるかどうかを確認し、これらのオプションから選択して続行してください。",
+ "good": "再現できません",
+ "issue is in core": "問題のトラブルシューティングで、{0} に問題があることが判明しました。",
+ "issue is with configuration": "問題のトラブルシューティングにより、問題の原因が構成にあることが特定されました。\"Export Profile\" コマンドを使用して構成をエクスポートして問題を報告し、問題レポートでファイルを共有してください。",
+ "msg": "&&問題のトラブルシューティング",
+ "profile.extensions.disabled": "問題のトラブルシューティングがアクティブになっており、インストールされているすべての拡張機能が一時的に無効になっています。問題をまだ再現できるかどうかを確認し、これらのオプションから選択して続行してください。",
+ "report anyway": "問題を報告する",
+ "stop": "停止",
+ "title.stop": "問題のトラブルシューティングの停止",
+ "troubleshoot issue": "問題のトラブルシューティング",
+ "troubleshootIssue": "問題のトラブルシューティング...",
+ "use insiders": "これは、問題が既に解決されており、今後のリリースで利用可能になる可能性があることを意味している可能性があります。新しい安定バージョンが利用可能になるまで、{0} Insider を安全に使用できます。"
+ },
"vs/workbench/services/keybinding/browser/keybindingService": {
- "dispatch": "`code` (推奨) または `keyCode` のいずれかを使用するキー操作のディスパッチ ロジックを制御します。",
"invalid.keybindings": "正しくない `contributes.{0}`: {1}",
+ "keybindings.commandsIsArray": "型が正しくありません。 \"{0}\" が必要です。フィールド 'command' は複数のコマンドの実行をサポートしていません。コマンド 'runCommands' を使用して、実行する複数のコマンドを渡します。",
"keybindings.json.args": "実行するコマンドに渡す引数。",
"keybindings.json.command": "実行するコマンドの名前",
"keybindings.json.key": "キーまたはキー シーケンス (スペースで区切る) を押します",
+ "keybindings.json.removalCommand": "キーボード ショートカットを削除するコマンドの名前は以下のとおりです:",
"keybindings.json.title": "キー バインドの構成",
"keybindings.json.when": "キーがアクティブの場合の条件。",
- "keyboardConfigurationTitle": "キーボード",
"nonempty": "空でない値が必要です。",
"optstring": "プロパティ `{0}` は省略するか、`string` 型にする必要があります",
"requirestring": "プロパティ `{0}` は必須で、`string` 型でなければなりません",
@@ -11222,6 +17594,10 @@
"vscode.extension.contributes.keybindings.when": "キーがアクティブの場合の条件。",
"vscode.extension.contributes.keybindings.win": "Windows 固有のキーまたはキー シーケンス。"
},
+ "vs/workbench/services/keybinding/browser/keyboardLayoutService": {
+ "keyboard.layout.config": "Web で使用するキーボード レイアウトを制御します。",
+ "keyboardConfigurationTitle": "キーボード"
+ },
"vs/workbench/services/keybinding/common/keybindingEditing": {
"emptyKeybindingsHeader": "既定値を上書きするには、このファイル内にキー バインドを挿入します",
"errorInvalidConfiguration": "キー バインド構成ファイルを書き込めません。配列型ではないオブジェクトが存在します。クリーン アップするファイルを開いてからもう一度お試しください。",
@@ -11244,8 +17620,13 @@
"workspaceNameVerbose": "{0} (ワークスペース)"
},
"vs/workbench/services/language/common/languageService": {
+ "file extensions": "ファイル拡張子",
+ "grammar": "文法",
"invalid": "`contributes.{0}` が無効です。配列が必要です。",
"invalid.empty": "`contributes.{0}` に対する空の値",
+ "language id": "ID",
+ "language name": "名前",
+ "languages": "プログラミング言語",
"opt.aliases": "`{0}` プロパティを省略するか、`string[]` 型にする必要があります",
"opt.configuration": "プロパティ `{0}` を省略するか、型 `string` にする必要があります",
"opt.extensions": "`{0}` プロパティを省略するか、`string[]` 型にする必要があります",
@@ -11254,6 +17635,7 @@
"opt.icon": "プロパティ `{0}` は省略でき、`object` 型である必要があります。プロパティ `{1}` と `{2}` 型 `string` である必要があります",
"opt.mimetypes": "`{0}` プロパティを省略するか、`string[]` 型にする必要があります",
"require.id": "プロパティ `{0}` は必須で、`string` 型でなければなりません",
+ "snippets": "スニペット",
"vscode.extension.contributes.languages": "言語の宣言を提供します。",
"vscode.extension.contributes.languages.aliases": "言語の名前のエイリアス。",
"vscode.extension.contributes.languages.configuration": "言語の構成オプションを含むファイルへの相対パス。",
@@ -11267,41 +17649,37 @@
"vscode.extension.contributes.languages.id": "言語の ID。",
"vscode.extension.contributes.languages.mimetypes": "言語に関連付けられている MIME の種類。"
},
- "vs/workbench/services/lifecycle/electron-sandbox/lifecycleService": {
- "errorClose": "ウィンドウを閉じようとしているときに、予期しないエラーがスローされました ({0})。",
- "errorLoad": "ウィンドウのワークスペースを変更しようとしているときに、予期しないエラーがスローされました ({0})。",
- "errorQuit": "アプリケーションを終了しようとしているときに、予期しないエラーがスローされました ({0})。",
- "errorReload": "ウィンドウを再度読み込もうとしているときに、予期しないエラーがスローされました ({0})。"
+ "vs/workbench/services/lifecycle/browser/lifecycleService": {
+ "lifecycleVeto": "変更内容は保存されない可能性があります。[キャンセル] を押して、もう一度お試しください。"
},
- "vs/workbench/services/mode/common/workbenchLanguageService": {
- "invalid": "`contributes.{0}` が無効です。配列が必要です。",
- "invalid.empty": "`contributes.{0}` に対する空の値",
- "opt.aliases": "`{0}` プロパティを省略するか、`string[]` 型にする必要があります",
- "opt.configuration": "プロパティ `{0}` を省略するか、型 `string` にする必要があります",
- "opt.extensions": "`{0}` プロパティを省略するか、`string[]` 型にする必要があります",
- "opt.filenames": "`{0}` プロパティを省略するか、`string[]` 型にする必要があります",
- "opt.firstLine": "プロパティ `{0}` を省略するか、型 `string` にする必要があります",
- "opt.mimetypes": "`{0}` プロパティを省略するか、`string[]` 型にする必要があります",
- "require.id": "プロパティ `{0}` は必須で、`string` 型でなければなりません",
- "vscode.extension.contributes.languages": "言語の宣言を提供します。",
- "vscode.extension.contributes.languages.aliases": "言語の名前のエイリアス。",
- "vscode.extension.contributes.languages.configuration": "言語の構成オプションを含むファイルへの相対パス。",
- "vscode.extension.contributes.languages.extensions": "言語に関連付けられているファイルの拡張子。",
- "vscode.extension.contributes.languages.filenamePatterns": "言語に関連付けられたファイル名の glob パターン。",
- "vscode.extension.contributes.languages.filenames": "言語に関連付けられたファイル名。",
- "vscode.extension.contributes.languages.firstLine": "言語のファイルの最初の行に一致する正規表現。",
- "vscode.extension.contributes.languages.id": "言語の ID。",
- "vscode.extension.contributes.languages.mimetypes": "言語に関連付けられている MIME の種類。"
+ "vs/workbench/services/localization/browser/localeService": {
+ "clearDisplayLanguageDetail": "[再読み込み] ボタンを押してページを更新し、ブラウザーの言語を使用します。",
+ "clearDisplayLanguageMessage": "表示言語を変更するには、{0} を再度読み込む必要があります",
+ "relaunchDisplayLanguageDetail": "[再読み込み] ボタンを押してページを更新し、表示言語を{0}に設定します。",
+ "relaunchDisplayLanguageMessage": "表示言語を変更するには、{0} を再度読み込む必要があります",
+ "reload": "再読み込み(&&R)"
+ },
+ "vs/workbench/services/localization/electron-browser/localeService": {
+ "argvInvalid": "表示言語に書き込めません。ランタイム設定を開いて、ファイル内のエラー/警告を修正してからもう一度お試しください。",
+ "installing": "{0} 言語サポートをインストールしています...",
+ "openArgv": "ランタイム設定を開く",
+ "restart": "再起動(&&R)",
+ "restartDisplayLanguageDetail1": "表示言語を変更するには、{0}、{1} を再起動する必要があります。",
+ "restartDisplayLanguageMessage1": "{0} を再起動して、{1} に切り替えますか?"
+ },
+ "vs/workbench/services/log/common/logConstants": {
+ "window": "ウィンドウ"
},
"vs/workbench/services/notification/common/notificationService": {
"neverShowAgain": "今後表示しない"
},
"vs/workbench/services/preferences/browser/keybindingsEditorInput": {
+ "keybindingsEditorLabelIcon": "キー バインド エディター ラベルのアイコン。",
"keybindingsInputName": "キーボード ショートカット"
},
"vs/workbench/services/preferences/browser/keybindingsEditorModel": {
"cat.title": "{0}: {1}",
- "default": "既定",
+ "default": "システム",
"extension": "拡張機能",
"meta": "meta",
"option": "オプション",
@@ -11314,7 +17692,10 @@
"openFolderFirst": "ワークスペースまたはフォルダーの設定を作成するには、最初にフォルダーまたはワークスペースを開きます。"
},
"vs/workbench/services/preferences/common/preferencesEditorInput": {
- "settingsEditor2InputName": "設定"
+ "preferencesEditorInputName": "ユーザー設定",
+ "preferencesEditorLabelIcon": "ユーザー設定エディター ラベルのアイコン。",
+ "settingsEditor2InputName": "設定",
+ "settingsEditorLabelIcon": "設定エディター ラベルのアイコン。"
},
"vs/workbench/services/preferences/common/preferencesModels": {
"commonlyUsed": "よく使用するもの",
@@ -11322,6 +17703,7 @@
},
"vs/workbench/services/preferences/common/preferencesValidation": {
"invalidTypeError": "設定に無効な型が含まれています。{0} が必要です。JSON で修正してください。",
+ "regexParsingError": "u フラグの有無にかかわらず、次の正規表現の解析中にエラーが発生しました。",
"validations.arrayIncorrectType": "型が正しくありません。配列が必要です。",
"validations.booleanIncorrectType": "型が正しくありません。\"ブール値\" が必要です。",
"validations.colorFormat": "色の形式が無効です。#RGB、#RGBA、#RRGGBB、#RRGGBBAA をお使いください。",
@@ -11350,14 +17732,6 @@
"validations.uriMissing": "URI が必要です。",
"validations.uriSchemeMissing": "スキームの URI が必要です。"
},
- "vs/workbench/services/profiles/common/profile": {
- "profile": "設定プロファイル",
- "settings profiles": "設定プロファイル"
- },
- "vs/workbench/services/profiles/common/profileService": {
- "applied profile": "{0}: 正常に適用されました。",
- "profiles.applying": "{0}: 適用中..."
- },
"vs/workbench/services/progress/browser/progressService": {
"cancel": "キャンセル",
"dismiss": "無視",
@@ -11366,32 +17740,102 @@
"progress.title3": "[{0}] {1}: {2}",
"status.progress": "進行状況メッセージ"
},
+ "vs/workbench/services/remote/browser/remoteAgentService": {
+ "connectionError": "このページの再読み込みが必要な予期しないエラーが発生しました。",
+ "connectionErrorDetail": "ワークベンチをサーバーに接続できませんでした (エラー: {0})",
+ "reload": "再読み込み(&&R)"
+ },
"vs/workbench/services/remote/common/remoteExplorerService": {
+ "RemoteHelpInformationExtPoint": "リモートのヘルプ情報への参加",
+ "RemoteHelpInformationExtPoint.documentation": "プロジェクトのドキュメント ページの URL、またはその URL を返すコマンド",
+ "RemoteHelpInformationExtPoint.feedback": "プロジェクトのフィードバック レポーターの URL、またはその URL を返すコマンド",
+ "RemoteHelpInformationExtPoint.feedback.deprecated": "代わりに {0} を使用してください",
+ "RemoteHelpInformationExtPoint.getStarted": "プロジェクトの [はじめに] ページの URL またはこの URL を返すコマンド、またはプロジェクトの拡張機能によって提供されるチュートリアル ID",
+ "RemoteHelpInformationExtPoint.issues": "プロジェクトの懸案事項リストの URL、またはその URL を返すコマンド",
+ "RemoteHelpInformationExtPoint.reportIssue": "プロジェクトの問題のレポーターの URL、またはその URL を返すコマンド",
+ "getStartedWalkthrough.id": "開く [はじめに] チュートリアルの ID。"
+ },
+ "vs/workbench/services/remote/common/tunnelModel": {
"remote.localPortMismatch.single": "ローカル ポート {0} をリモート ポート {1} に転送するために使用できませんでした。\r\n\r\nこれは通常、ローカルポート {0} を使用している別のプロセスがすでに存在する場合に発生します。代わりに\r\n\r\nポート番号{2}が使用されました。",
+ "tunnel.forwardedPortsViewEnabled": "ポート ビューが有効になっているかどうか。",
"tunnel.source.auto": "自動転送",
"tunnel.source.user": "ユーザーによる転送",
"tunnel.staticallyForwarded": "静的転送"
},
- "vs/workbench/services/remote/electron-sandbox/remoteAgentService": {
+ "vs/workbench/services/remote/electron-browser/remoteAgentService": {
"connectionError": "リモート拡張ホスト サーバーへの接続に失敗しました (エラー: {0})",
"devTools": "開発者ツールを開く",
"directUrl": "ブラウザーで開く"
},
+ "vs/workbench/services/request/browser/requestService": {
+ "network": "ネットワーク"
+ },
+ "vs/workbench/services/request/electron-browser/requestService": {
+ "network": "ネットワーク"
+ },
+ "vs/workbench/services/search/browser/searchService": {
+ "errorSearchFile": "Web ワーカー ファイル検索機能で検索できません",
+ "errorSearchText": "Web ワーカー テキスト検索機能で検索できません"
+ },
"vs/workbench/services/search/common/queryBuilder": {
"search.noWorkspaceWithName": "ワークスペース フォルダーが存在しません: {0}"
},
- "vs/workbench/services/sessionSync/browser/sessionSyncWorkbenchService": {
- "account preference": "編集セッションを使用するにはサインインしてください",
- "choose account placeholder": "サインインするアカウントを選択してください",
- "others": "その他",
- "reset auth": "サインアウト",
- "sign in using account": "{0} でサインイン",
- "signed in": "サインイン済み"
+ "vs/workbench/services/secrets/electron-browser/secretStorageService": {
+ "encryptionNotAvailableJustTroubleshootingGuide": "現在のデスクトップ環境で暗号化関連データを保存するための OS キーリングを識別できませんでした。",
+ "isGnome": "GNOME 環境で実行していますが、OS キーリングを暗号化に使用できません。 gnome-keyring または別の libsecret 互換実装がインストールされ、実行されていることを確認してください。",
+ "isKwallet": "KDE 環境で実行していますが、OS キーリングを暗号化に使用できません。 kwallet が実行されていることを確認してください。",
+ "troubleshootingButton": "トラブルシューティング ガイドを開く",
+ "usePlainText": "弱い暗号化を使用する",
+ "usePlainTextExtraSentence": "トラブルシューティング ガイドを開いてこれに対処するか、OS キーリングを使用しない弱い暗号化を使用することができます。"
+ },
+ "vs/workbench/services/suggest/browser/simpleSuggestWidget": {
+ "ariaCurrenttSuggestionReadDetails": "{0}、ドキュメント: {1}",
+ "label": "{0}、{1}",
+ "label.desc": "{0}、{1} {2}",
+ "label.detail": "{0}{1} {2}",
+ "label.full": "{0}{1}、{2} {3}",
+ "simpleSuggestWidgetFirstSuggestionFocused": "最初の簡単な提案に焦点を当てるかどうか",
+ "simpleSuggestWidgetHasFocusedSuggestion": "簡単な候補がフォーカスされているかどうか",
+ "simpleSuggestWidgetHasNavigated": "単純な候補ウィジェットが下に移動されたかどうか",
+ "suggest": "提案",
+ "suggestWidget.loading": "読み込み中...",
+ "suggestWidget.noSuggestions": "提案はありません。"
+ },
+ "vs/workbench/services/suggest/browser/simpleSuggestWidgetDetails": {
+ "details.close": "閉じる",
+ "loading": "読み込み中..."
+ },
+ "vs/workbench/services/textfile/browser/textFileService": {
+ "confirmMakeWriteable": "'{0}' は読み取り専用としてマークされています。それでも保存しますか?",
+ "confirmMakeWriteableDetail": "パスは、設定を使用して読み取り専用として構成できます。",
+ "confirmOverwrite": "{0} は既に存在します。上書きしますか?",
+ "deleted": "削除",
+ "fileBinaryError": "ファイルはバイナリである可能性があり、テキストとして開くことができません",
+ "makeWriteableButtonLabel": "とにかく保存(&&S)",
+ "overwriteIrreversible": "'{0}' という名前のファイルまたはフォルダーは、フォルダー '{1}' に既に存在します。置き換えると、現在の内容が上書きされます。",
+ "readonly": "読み取り専用",
+ "readonlyAndDeleted": "削除済み、読み取り専用",
+ "replaceButtonLabel": "置換(&&R)",
+ "textFileCreate.source": "ファイルが作成されました",
+ "textFileModelDecorations": "テキスト ファイル モデルの装飾",
+ "textFileOverwrite.source": "ファイルが置換されました"
+ },
+ "vs/workbench/services/textfile/common/textFileEditorModel": {
+ "saveParticipants": "'{0}' を保存しています",
+ "saveTextFile": "ファイルに書き込んでいます...",
+ "textFileCreate.source": "ファイル のエンコードが変更されました"
+ },
+ "vs/workbench/services/textfile/common/textFileEditorModelManager": {
+ "genericSaveError": "'{0}' の保存に失敗しました: {1}"
+ },
+ "vs/workbench/services/textfile/common/textFileSaveParticipant": {
+ "saveParticipants1": "コード アクションとフォーマッタを実行しています...",
+ "skip": "スキップ"
},
- "vs/workbench/services/sessionSync/common/sessionSync": {
- "session sync": "セッションの編集"
+ "vs/workbench/services/textfile/electron-browser/nativeTextFileService": {
+ "join.textFiles": "テキスト ファイルの保存"
},
- "vs/workbench/services/textMate/browser/abstractTextMateService": {
+ "vs/workbench/services/textMate/browser/textMateTokenizationFeatureImpl": {
"alreadyDebugging": "既にログ記録しています。",
"invalid.embeddedLanguages": "`contributes.{0}.embeddedLanguages` の値が無効です。スコープ名から言語へのオブジェクト マップである必要があります。指定された値: {1}",
"invalid.injectTo": "`contributes.{0}.injectTo` の値が無効です。言語の範囲名の配列である必要があります。指定された値: {1}",
@@ -11415,30 +17859,6 @@
"vscode.extension.contributes.grammars.tokenTypes": "スコープ名のトークン タイプへの割当て。",
"vscode.extension.contributes.grammars.unbalancedBracketScopes": "バランスが取れた角かっこを含まないスコープ名を定義します。"
},
- "vs/workbench/services/textfile/browser/textFileService": {
- "confirmOverwrite": "{0} は既に存在します。上書きしますか?",
- "deleted": "削除",
- "fileBinaryError": "ファイルはバイナリである可能性があり、テキストとして開くことができません",
- "irreversible": "'{0}' という名前のファイルまたはフォルダーは、フォルダー '{1}' に既に存在します。置き換えると、現在の内容が上書きされます。",
- "readonly": "読み取り専用",
- "readonlyAndDeleted": "削除済み、読み取り専用",
- "replaceButtonLabel": "置換(&&R)",
- "textFileCreate.source": "ファイルが作成されました",
- "textFileModelDecorations": "テキスト ファイル モデルの装飾",
- "textFileOverwrite.source": "ファイルが置換されました"
- },
- "vs/workbench/services/textfile/common/textFileEditorModel": {
- "textFileCreate.source": "ファイル のエンコードが変更されました"
- },
- "vs/workbench/services/textfile/common/textFileEditorModelManager": {
- "genericSaveError": "'{0}' の保存に失敗しました: {1}"
- },
- "vs/workbench/services/textfile/common/textFileSaveParticipant": {
- "saveParticipants": "'{0}' を保存しています"
- },
- "vs/workbench/services/textfile/electron-sandbox/nativeTextFileService": {
- "join.textFiles": "テキスト ファイルの保存"
- },
"vs/workbench/services/themes/browser/fileIconThemeData": {
"error.cannotparseicontheme": "ファイル アイコン ファイル {0} の解析で問題が発生しました",
"error.invalidformat": "ファイル アイコン テーマ ファイルの無効な形式: オブジェクトが必要です。"
@@ -11451,7 +17871,7 @@
"error.fontStyle": "フォント '{0}' に無効なフォント スタイルが含まれています。設定を無視します。",
"error.fontWeight": "フォント '{0}' に無効なフォントの太さが含まれています。設定を無視します。",
"error.icon.font": "アイコン定義 '{0}' をスキップしています。不明なフォントです。",
- "error.icon.fontCharacter": "アイコン定義 '{0}' をスキップしています。不明な fontCharacter があります。",
+ "error.icon.fontCharacter": "アイコン定義 '{0}' をスキップしています: 定義する必要があります",
"error.invalidformat": "製品アイコン テーマ ファイルの無効な形式: オブジェクトが必要です。",
"error.missingProperties": "製品アイコン テーマ ファイルの形式が無効です。アイコン定義とフォントが含まれている必要があります。",
"error.noFontSrc": "フォント '{0}' に有効なフォント ソースがありません。フォント定義を無視しています。",
@@ -11461,6 +17881,7 @@
"error.cannotloadtheme": "{0} を読み込むことができません: {1}"
},
"vs/workbench/services/themes/common/colorExtensionPoint": {
+ "colors": "色",
"contributes.color": "拡張機能でテーマ設定の可能な配色を提供します",
"contributes.color.description": "テーマ設定可能な色の説明",
"contributes.color.id": "テーマ設定可能な配色の識別子",
@@ -11469,6 +17890,11 @@
"contributes.defaults.highContrast": "ハイ コントラストでダーク テーマの既定の色。16 進数 (#RRGGBB[AA]) または既定値を提供するテーマ設定可能な色の識別子。指定しない場合、ハイ コントラストのダーク テーマの既定として 'dark' 色が使用されます。",
"contributes.defaults.highContrastLight": "ハイ コントラストでライト テーマの既定の色。16 進数の色値 (#RRGGBB[AA]) または既定値を提供するテーマ可能な色の識別子。指定しない場合は、ハイ コントラスト ライト テーマの既定として 'light' 色が使用されます。",
"contributes.defaults.light": "light テーマの既定の配色。配色の値は 16 進数(#RRGGBB[AA]) 、または 既定で提供されているテーマ設定可能な配色の識別子の既定値のいずれか。",
+ "defaultDark": "ダーク テーマの既定値",
+ "defaultHC": "ハイ コントラストの既定値",
+ "defaultLight": "ライト テーマの既定値",
+ "description": "説明",
+ "id": "ID",
"invalid.colorConfiguration": "'configuration.colors' は配列である必要があります",
"invalid.default.colorType": "{0} は 16 進数(#RRGGBB[AA] または #RGB[A]) 、または 既定で提供されているテーマ設定可能な配色の識別子の既定値のいずれかでなければなりません。",
"invalid.defaults": "'configuration.colors.defaults' は定義する必要があります。'light' と 'dark' を含める必要があります。",
@@ -11517,7 +17943,7 @@
"schema.folderNamesExpanded": "フォルダー名を展開したフォルダーのアイコンに関連付けます。オブジェクト キーはフォルダー名ですが、パスの部分は含みません。パターンやワイルドカードは使用できません。フォルダー名の一致では大文字と小文字を区別しません。",
"schema.font-format": "フォントの形式。",
"schema.font-path": "現在のファイル アイコン テーマ ファイルに相対的なフォント パス。",
- "schema.font-size": "フォントの既定のサイズ。有効な値については、https://developer.mozilla.org/ja-jp/docs/Web/CSS/font-size をご覧ください。",
+ "schema.font-size": "フォントの既定のサイズ。パーセンテージ値 (125% など) を使用することを強くお勧めします。",
"schema.font-style": "フォントのスタイル。有効な値については、https://developer.mozilla.org/ja/docs/Web/CSS/font-style を参照してください。",
"schema.font-weight": "フォントの太さ。有効な値については、https://developer.mozilla.org/ja/docs/Web/CSS/font-weight を参照してください。",
"schema.fontCharacter": "グリフ フォントを使用する場合: 使用するフォントの文字。",
@@ -11531,15 +17957,19 @@
"schema.iconDefinitions": "ファイルをアイコンに関連付けるときに使用できるすべてのアイコンの説明。",
"schema.iconPath": "SVG または PNG を使用する場合: イメージへのパス。アイコン設定ファイルへの相対パスです。",
"schema.id": "フォントの ID。",
- "schema.id.formatError": "ID に使用できるのは、文字、数字、アンダースコア、マイナスのみです。",
"schema.languageId": "関連付けのためのアイコン定義の ID。",
"schema.languageIds": "言語をアイコンに関連付けます。オブジェクト キーは言語のコントリビューション ポイントで定義された言語 ID です。",
"schema.light": "明るい配色テーマでのファイル アイコンの任意の関連付け。",
+ "schema.rootFolder": "折りたたまれたルート フォルダーのフォルダー アイコン、および rootFolderExpanded が設定されていない場合は、展開されたルート フォルダーのフォルダー アイコン。",
+ "schema.rootFolderExpanded": "展開されたルート フォルダーのフォルダー アイコン。展開されたルート フォルダー アイコンは省略可能です。設定しない場合は、ルート フォルダーに定義されているアイコンが表示されます。",
+ "schema.rootFolderNameExpanded": "関連付けのためのアイコン定義の ID。",
+ "schema.rootFolderNames": "ルート フォルダー名をアイコンに関連付けます。オブジェクト キーはルート フォルダー名です。パターンやワイルドカードは使用できません。ルート フォルダー名の照合では大文字と小文字が区別されません。",
+ "schema.rootFolderNamesExpanded": "ルート フォルダー名を展開されたルート フォルダーのアイコンに関連付けます。オブジェクト キーはルート フォルダー名です。パターンやワイルドカードは使用できません。ルート フォルダー名の照合では大文字と小文字が区別されません。",
"schema.showLanguageModeIcons": "テーマで言語のアイコンが定義されていない場合に、既定の言語アイコンを使用するかどうかを構成します。",
"schema.src": "フォントの場所。"
},
"vs/workbench/services/themes/common/iconExtensionPoint": {
- "contributes.icon.default": "アイコンの既定値。既存の ThemeIcon への参照またはアイコン フォントのアイコンのいずれかです。",
+ "contributes.icon.default": "アイコンの既定値。既存の ThemeIcon への参照またはアイコン フォントのアイコン。",
"contributes.icon.default.fontCharacter": "アイコン フォントのアイコンの文字。",
"contributes.icon.default.fontPath": "アイコンを定義するアイコン フォントのパス。",
"contributes.icon.description": "テーマ設定可能なアイコンの説明",
@@ -11560,16 +17990,15 @@
"schema.font-weight": "フォントの太さ。有効な値については、https://developer.mozilla.org/ja/docs/Web/CSS/font-weight を参照してください。",
"schema.iconDefinitions": "アイコン名のフォント文字との関連付け。",
"schema.id": "フォントの ID。",
- "schema.id.formatError": "ID に使用できるのは、文字、数字、アンダースコア、マイナスのみです。",
"schema.src": "フォントの場所。"
},
"vs/workbench/services/themes/common/themeConfiguration": {
- "autoDetectHighContrast": "有効にすると、OS でハイ コントラスト テーマが使用されている場合にはハイ コントラスト テーマに自動的に変更されます。使用するハイ コントラスト テーマは `#{0}#` と `#{1}#` で指定されます。",
- "colorTheme": "ワークベンチで使用される配色テーマを指定します。",
+ "autoDetectHighContrast": "有効にすると、OS がハイ コントラスト テーマを使用している場合、自動的にハイ コントラスト テーマに変更されます。使用するハイ コントラスト テーマは、{0} と {1} によって指定されます。",
+ "colorTheme": "{0} が有効になっていない場合に、ワークベンチで使用される配色テーマを指定します。",
"colorThemeError": "テーマが不明、またはインストールされていません。",
"defaultProductIconThemeDesc": "既定",
"defaultProductIconThemeLabel": "既定",
- "detectColorScheme": "設定すると、OS の外観に基づいて好みのカラー テーマに自動的に切り替わります。OS の外観がダーク テーマの場合、`#{0}#` で指定されたテーマが使われ、ライト テーマの場合には `#{1}#`で指定されたテーマが使われます。",
+ "detectColorScheme": "有効にすると、システム カラー モードに基づいて自動的に配色テーマが選択されます。システム カラー モードが濃い場合は、{0} が使用されます。それ以外の場合は {1} が使用されます。",
"editorColors": "エディターの構文の色とフォント スタイルを、現在選択されている配色テーマからオーバーライドします。",
"editorColors.comments": "コメントの色とスタイルを設定します",
"editorColors.functions": "関数定義と参照の色とスタイルを設定します。",
@@ -11577,7 +18006,7 @@
"editorColors.numbers": "数値リテラルの色とスタイルを設定します。",
"editorColors.semanticHighlighting": "このテーマに対してセマンティックの強調表示を有効にするかどうか。",
"editorColors.semanticHighlighting.deprecationMessage": "代わりに 'editor.semanticTokenColorCustomizations' 設定で 'enabled' を使用してください。",
- "editorColors.semanticHighlighting.deprecationMessageMarkdown": "代わりに `#editor.semanticTokenColorCustomizations#` 設定で 'enabled' を使用してください。",
+ "editorColors.semanticHighlighting.deprecationMessageMarkdown": "代わりに {0} 設定で 'enabled' を使用してください。",
"editorColors.semanticHighlighting.enabled": "このテーマのセマンティック強調表示を有効にするか無効にするか",
"editorColors.semanticHighlighting.rules": "このテーマのセマンティック トークン スタイル ルール。",
"editorColors.strings": "文字列リテラルの色とスタイルを設定します。",
@@ -11588,20 +18017,24 @@
"iconThemeError": "ファイルのアイコン テーマが不明またはインストールされていません。",
"noIconThemeDesc": "ファイル アイコンがありません",
"noIconThemeLabel": "なし",
- "preferredDarkColorTheme": "`#{0}#` が有効な場合に、ダークな OS の外観に適した色のテーマを指定します。",
- "preferredHCDarkColorTheme": "`#{0}#` が有効な場合に、ハイ コントラスト ダーク モードで使われている中から、ご所望のカラー テーマを指定します。",
- "preferredHCLightColorTheme": "`#{0}#` が有効な場合に、ハイ コントラスト ライト モードで使われている中で、ご所望のカラー テーマを指定します。",
- "preferredLightColorTheme": "`#{0}#` が有効な場合に、ライトな OS の外観に適した色のテーマを指定します。",
+ "preferredDarkColorTheme": "システム カラー モードがダークで、{0} が有効になっている場合の配色テーマを指定します。",
+ "preferredHCDarkColorTheme": "ハイ コントラスト ダーク モードで、{0} が有効になっている場合の配色テーマを指定します。",
+ "preferredHCLightColorTheme": "ハイ コントラスト ライト モードで、{0} が有効になっている場合の配色テーマを指定します。",
+ "preferredLightColorTheme": "システム カラー モードがライトで、{0} が有効になっている場合の配色テーマを指定します。",
"productIconTheme": "使用する製品アイコンのテーマを指定します。",
"productIconThemeError": "製品アイコンのテーマが不明であるか、インストールされていません。",
"semanticTokenColors": "現在選択されている配色テーマからの、エディターのセマンティック トークンの色とスタイルをオーバーライドします。",
"workbenchColors": "現在選択している配色テーマで配色を上書きします。"
},
"vs/workbench/services/themes/common/themeExtensionPoints": {
+ "color themes": "配色テーマ",
+ "file icon themes": "ファイル アイコン テーマ",
"invalid.path.1": "拡張機能のフォルダー ({2}) の中に `contributes.{0}.path` ({1}) が含まれている必要があります。これにより拡張を移植できなくなる可能性があります。",
+ "product icon themes": "製品アイコンのテーマ",
"reqarray": "拡張点`{0}` は配列でなければなりません。",
"reqid": "`contributes.{0}.id` で想定される文字列。指定された値: {1}",
"reqpath": "`contributes.{0}.path` に文字列が必要です。提供された値: {1}",
+ "themes": "テーマ",
"vscode.extension.contributes.iconThemes": "ファイル アイコンのテーマを提供します。",
"vscode.extension.contributes.iconThemes.id": "ユーザー設定で使用されるファイル アイコン テーマの ID。",
"vscode.extension.contributes.iconThemes.label": "UI に示されているファイル アイコン テーマのラベル。",
@@ -11642,87 +18075,191 @@
"invalid.semanticTokenTypeConfiguration": "'configuration.semanticTokenType' は配列である必要があります",
"invalid.superType.format": "'configuration.{0}.superType' は letterOrDigit[-_letterOrDigit]* というパターンに従う必要があります"
},
+ "vs/workbench/services/themes/electron-browser/themes.contribution": {
+ "window.systemColorTheme": "ネイティブ ダイアログ、メニュー、タイトル バーなどのネイティブ UI 要素のカラー モードを設定します。OS がライトなカラー モードで構成されている場合でも、ウィンドウにはダークなシステム カラー テーマを選択できます。{0} 設定に基づいて自動的に調整するように構成することもできます。\r\n\r\n注: {1} が有効になっている場合、この設定は無視されます。",
+ "window.systemColorTheme.auto": "ライト カラーのテーマにはライトなネイティブ ウィジェットの色を使用し、ダーク テーマには濃色を使用します。",
+ "window.systemColorTheme.dark": "ダークなネイティブ ウィジェットの色を使用します。",
+ "window.systemColorTheme.default": "ネイティブ ウィジェットの色は、システム カラーと一致します。",
+ "window.systemColorTheme.light": "ライトなネイティブ ウィジェットの色を使用します。"
+ },
+ "vs/workbench/services/userDataProfile/browser/extensionsResource": {
+ "all profiles and disabled": "すべてのプロファイル",
+ "exclude": "{0} 拡張機能を選択",
+ "extensions": "拡張機能",
+ "installingExtension": "拡張機能 {0} をインストールしています...."
+ },
+ "vs/workbench/services/userDataProfile/browser/globalStateResource": {
+ "globalState": "UI の状態"
+ },
+ "vs/workbench/services/userDataProfile/browser/keybindingsResource": {
+ "keybindings": "キーボード ショートカット"
+ },
+ "vs/workbench/services/userDataProfile/browser/mcpProfileResource": {
+ "mcp": "MCP サーバー"
+ },
+ "vs/workbench/services/userDataProfile/browser/settingsResource": {
+ "settings": "設定"
+ },
+ "vs/workbench/services/userDataProfile/browser/snippetsResource": {
+ "exclude": "スニペット {0} の選択",
+ "snippets": "スニペット"
+ },
+ "vs/workbench/services/userDataProfile/browser/tasksResource": {
+ "tasks": "タスク"
+ },
+ "vs/workbench/services/userDataProfile/browser/userDataProfileImportExportService": {
+ "applying global state": "UI 状態を適用しています...",
+ "close": "閉じる",
+ "copy": "リンクのコピー(&&C)",
+ "create from profile": "プロファイルの作成: {0}",
+ "create keybindings": "キーボード ショートカットを作成しています...",
+ "create snippets": "スニペットを作成しています...",
+ "create tasks": "タスクを作成しています...",
+ "creating settings": "設定を作成しています...",
+ "export profile dialog": "プロファイルの保存",
+ "export profile name": "プロファイルに名前を付ける",
+ "export profile title": "プロファイルのエクスポート",
+ "export success": "プロファイル '{0}' は正常にエクスポートされました。",
+ "file": "ファイル",
+ "from default": "既定のプロファイルから",
+ "installing extensions": "拡張機能をインストールしています...",
+ "invalid profile content": "このプロファイルは無効です。",
+ "local": "ローカル",
+ "open": "リンクを開く(&&O)",
+ "open in": "{0} で開く(&&O)",
+ "overwrite": "置換(&&R)",
+ "profile already exists": "'{0}' という名前のプロファイルは既に存在します。内容を置き換えますか?",
+ "profile name required": "プロファイル名を指定する必要があります。",
+ "profiles.exporting": "{0}: エクスポート中...",
+ "progress extensions": "拡張機能を適用しています...",
+ "progress global state": "状態を適用しています...",
+ "progress keybindings": "キーボード ショートカットを適用しています...",
+ "progress settings": "設定を適用しています...",
+ "progress snippets": "スニペットを適用しています...",
+ "progress tasks": "タスクを適用しています...",
+ "select": "{0} の選択",
+ "select profile": "プロファイルの選択",
+ "select profile content handler": "プロファイル '{0}' を以下としてエクスポート...",
+ "switching profile": "プロファイルを切り替えています",
+ "troubleshoot issue": "問題のトラブルシューティング",
+ "troubleshoot profile progress": "トラブルシューティング プロファイルの設定: {0}"
+ },
"vs/workbench/services/userDataProfile/browser/userDataProfileManagement": {
- "cannotDeleteDefaultProfile": "既定の設定プロファイルを削除できません",
- "cannotRenameDefaultProfile": "既定の設定プロファイルの名前を変更できません",
+ "cannotDeleteDefaultProfile": "既定のプロファイルを削除できません",
+ "cannotRenameDefaultProfile": "既定のプロファイル名を変更できません",
"reload button": "再読み込み(&&R)",
- "reload message": "設定プロファイルを切り替えるには、VS Codeを再読み込みする必要があります。",
- "reload message when removed": "現在の設定プロファイルは削除されました。既定の設定プロファイルに切り替えるには、再度読み込んでください"
+ "reload message": "プロファイルを切り替えるには、VS Code の再読み込みが必要です。",
+ "reload message when removed": "現在のプロファイルは削除されました。既定のプロファイルに切り替えるには、再度読み込んでください",
+ "reload message when switched": "現在のワークスペースが現在のプロファイルから削除されました。更新されたプロファイルに切り替えるには、再度読み込んでください",
+ "reload message when updated": "現在のプロファイルが更新されました。更新されたプロファイルに切り替えるには、再度読み込んでください",
+ "switch profile": "プロファイルに切り替えています"
},
"vs/workbench/services/userDataProfile/common/userDataProfile": {
- "profile": "設定プロファイル",
- "settings profiles": "設定プロファイル"
+ "defaultProfileIcon": "既定のプロファイルのアイコン。",
+ "profile": "プロファイル",
+ "profiles": "プロファイル"
},
- "vs/workbench/services/userDataProfile/common/userDataProfileImportExportService": {
- "applied profile": "{0}: 正常に適用されました。",
- "imported profile": "{0}: 正常にインポートされました。",
- "name": "プロファイル名",
- "profiles.applying": "{0}: 適用中...",
- "profiles.importing": "{0}: インポートしています...",
- "save profile as": "現在のプロファイルから作成します..."
+ "vs/workbench/services/userDataProfile/common/userDataProfileIcons": {
+ "settingsViewBarIcon": "ビューバーの設定アイコン。"
},
"vs/workbench/services/userDataSync/browser/userDataSyncWorkbenchService": {
- "cancel": "キャンセル",
+ "and": " および",
"choose account placeholder": "サインインするアカウントを選択してください",
- "conflicts detected": "競合が検出されました",
- "first time sync detail": "前回は別のマシンから同期されたようです。\r\nクラウド内のデータとマージまたは置換しますか?",
+ "conflicts detected": "{0} で検出された競合",
+ "download sync activity dialog open label": "保存",
+ "download sync activity dialog title": "[設定の同期] アクティビティをダウンロードするフォルダーを選択する",
"last used": "同期での最終使用日",
- "merge": "マージ",
- "merge Manually": "手動でマージする...",
- "merge or replace": "マージまたは置換",
- "no": "いいえ(&&N)",
+ "no": "いいえ",
"no account": "使用可能なアカウントはありません",
"no authentication providers": "利用できる認証プロバイダーがないため、設定の同期を有効にできません。",
+ "no authentication providers during signin": "使用可能な認証プロバイダーがないため、サインインできません。",
"others": "その他",
- "replace local": "ローカルを置換",
+ "replace local": "リモートを受け入れる(&&R)",
+ "replace local single": "リモートの{0}を受け入れる(&&R)",
+ "replace remote": "ローカルを受け入れる(&&L)",
+ "replace remote single": "ローカルの{0}を受け入れる(&&L)",
"reset": "これを実行すると、データがクラウドから消去され、すべてのデバイスでの同期が停止します。",
"reset title": "クリア",
"resetButton": "リセット(&&R)",
- "resolve": "競合が発生しているため、マージできません。続行するには、手動でマージしてください...",
+ "resolve": "オンにするには、競合を解決してください...",
+ "resolving conflicts": "競合を解決中...",
"settings sync": "設定の同期",
- "show log": "ログの表示",
- "sign in": "サインイン",
+ "show conflicts": "競合の表示(&&S)",
"sign in using account": "{0} でサインイン",
"signed in": "サインイン済み",
- "successive auth failures": "Settings sync is suspended because of successive authorization failures. Please sign in again to continue synchronizing",
"sync in progress": "設定の同期がオンになっています。取り消しますか?",
"sync turned on": "{0} がオンになりました",
- "syncing resource": "{0} を同期しています...",
+ "syncing...": "オンにしています...",
"turning on": "オンにしています...",
"yes": "はい(&&Y)"
},
"vs/workbench/services/userDataSync/common/userDataSync": {
+ "download sync activity title": "設定の同期アクティビティのダウンロード",
"extensions": "拡張機能",
"keybindings": "キーボード ショートカット",
+ "mcp": "MCP サーバー",
+ "profiles": "プロファイル",
+ "prompts": "プロンプトと指示",
"settings": "設定",
- "snippets": "ユーザー スニペット",
+ "snippets": "スニペット",
"sync category": "設定の同期",
"syncViewIcon": "設定同期ビューの表示アイコン。",
- "tasks": "ユーザー タスク",
- "ui state label": "UI の状態"
+ "tasks": "タスク",
+ "ui state label": "UI の状態",
+ "workspace state label": "ワークスペース状態"
},
"vs/workbench/services/views/browser/viewDescriptorService": {
- "cachedViewContainerPositions": "コンテナーの場所のカスタマイズを表示する",
- "cachedViewPositions": "場所のカスタマイズを表示する",
"hideView": "'{0}' の非表示",
- "resetViewLocation": "場所のリセット"
+ "hideViewDescription": "表示されている場合は {0} ビューを非表示にし、そのビュー コンテナーが表示されている場合は非表示にします",
+ "resetViewLocation": "場所のリセット",
+ "toggleVisibilityDescription": "配置されているビュー コンテナーが表示されている場合に、{0} ビューの表示/非表示を切り替えます",
+ "user": "ビュー コンテナーの使用"
+ },
+ "vs/workbench/services/views/browser/viewsService": {
+ "editor": "テキスト エディター",
+ "focus view": "{0} ビューにフォーカスを置く",
+ "open view": "ビュー {0} を開きます",
+ "preserveFocus": "ビューを開くときに既存のフォーカスを保持するかどうか。",
+ "resetViewLocation": "場所のリセット",
+ "show view": "{0} を表示",
+ "toggle view": "{0} の切り替え"
},
- "vs/workbench/services/views/common/viewContainerModel": {
- "globalViewsStateStorageId": "{0} ビュー コンテナーでの表示のカスタマイズ"
+ "vs/workbench/services/views/test/browser/viewContainerModel.test": {
+ "Test View 1": "テスト ビュー 1",
+ "Test View 2": "テスト ビュー 2",
+ "Test View 3": "テスト ビュー 3",
+ "Test View 4": "テスト ビュー 4",
+ "Test View 5": "テスト ビュー 5",
+ "test": "テスト"
+ },
+ "vs/workbench/services/views/test/browser/viewDescriptorService.test": {
+ "Test View 1": "テスト ビュー 1",
+ "Test View 2": "テスト ビュー 2",
+ "Test View 3": "テスト ビュー 3",
+ "Test View 4": "テスト ビュー 4",
+ "test": "テスト"
+ },
+ "vs/workbench/services/voiceRecognition/electron-sandbox/workbenchVoiceRecognitionService": {
+ "voiceTranscription": "文字起こしの共有",
+ "voiceTranscriptionError": "音声の文字起こしに失敗しました: {0}",
+ "voiceTranscriptionGettingReady": "マイクの準備をしています...",
+ "voiceTranscriptionRecording": "マイクから録音しています..."
},
"vs/workbench/services/workingCopy/common/fileWorkingCopyManager": {
+ "confirmMakeWriteable": "'{0}' は読み取り専用としてマークされています。それでも保存しますか?",
+ "confirmMakeWriteableDetail": "パスは、設定を使用して読み取り専用として構成できます。",
"confirmOverwrite": "{0} は既に存在します。上書きしますか?",
"deleted": "削除",
"fileWorkingCopyCreate.source": "ファイルが作成されました",
"fileWorkingCopyDecorations": "ファイル作業コピーの装飾",
"fileWorkingCopyReplace.source": "ファイルが置換されました",
- "irreversible": "'{0}' という名前のファイルまたはフォルダーは、フォルダー '{1}' に既に存在します。置き換えると、現在の内容が上書きされます。",
+ "makeWriteableButtonLabel": "とにかく保存(&&S)",
+ "overwriteIrreversible": "'{0}' という名前のファイルまたはフォルダーは、フォルダー '{1}' に既に存在します。置き換えると、現在の内容が上書きされます。",
"readonly": "読み取り専用",
"readonlyAndDeleted": "削除済み、読み取り専用",
"replaceButtonLabel": "置換(&&R)"
},
"vs/workbench/services/workingCopy/common/storedFileWorkingCopy": {
- "discard": "破棄",
"genericSaveError": "'{0}' の保存に失敗しました: {1}",
"overwrite": "上書き",
"overwriteElevated": "管理者権限で上書き...",
@@ -11733,55 +18270,62 @@
"readonlySaveErrorAdmin": "'{0}' を保存できませんでした。ファイルは読み取り専用です。[管理者権限で上書き] を選択し、管理者として再試行してください。",
"readonlySaveErrorSudo": "'{0}' を保存できませんでした。ファイルは読み取り専用です。'Overwrite as Sudo' を選択してスーパーユーザーとして再試行してください。",
"retry": "再試行",
+ "revert": "元に戻す",
"saveAs": "名前を付けて保存...",
"saveElevated": "管理者権限で再試行...",
"saveElevatedSudo": "Sudo 権限で再試行...",
+ "saveParticipants": "'{0}' を保存しています",
+ "saveTextFile": "ファイルに書き込んでいます...",
"staleSaveError": "'{0}' を保存できませんでした: ファイルの内容がより新しいものです。ファイルを変更した内容で上書きしますか?"
},
"vs/workbench/services/workingCopy/common/storedFileWorkingCopyManager": {
"join.fileWorkingCopyManager": "作業コピーを保存しています"
},
"vs/workbench/services/workingCopy/common/storedFileWorkingCopySaveParticipant": {
- "saveParticipants": "'{0}' を保存しています"
+ "saveParticipants1": "コード アクションとフォーマッタを実行しています...",
+ "skip": "スキップ"
},
"vs/workbench/services/workingCopy/common/workingCopyHistoryService": {
"default.source": "ファイルが保存されました",
+ "join.workingCopyHistory": "ローカル履歴を保存しています",
"moved.source": "ファイルが移動されました",
"renamed.source": "ファイル名が変更されました"
},
"vs/workbench/services/workingCopy/common/workingCopyHistoryTracker": {
"undoRedo.source": "元に戻す/やり直す"
},
- "vs/workbench/services/workingCopy/electron-sandbox/workingCopyBackupService": {
+ "vs/workbench/services/workingCopy/electron-browser/workingCopyBackupService": {
"join.workingCopyBackups": "作業コピーのバックアップ"
},
- "vs/workbench/services/workingCopy/electron-sandbox/workingCopyBackupTracker": {
+ "vs/workbench/services/workingCopy/electron-browser/workingCopyBackupTracker": {
"backupBeforeShutdownDetail": "待機を停止し、変更が保存されていないエディターを保存または元に戻すには、[キャンセル] をクリックしてください。",
"backupBeforeShutdownMessage": "変更が保存されていないエディターのバックアップに少し時間がかかっています...",
"backupErrorDetails": "最初に変更が保存されていないエディターを保存または復元してから、もう一度お試しください。",
"backupTrackerBackupFailed": "次の変更が保存されていないエディターをバックアップ場所に保存できませんでした。",
"backupTrackerConfirmFailed": "次の変更が保存されていないエディターを保存または元に戻すことができませんでした。",
"discardBackupsBeforeShutdown": "バックアップの破棄に少し時間がかかっています...",
+ "ok": "OK(&&O)",
"revertBeforeShutdown": "変更が保存されていないエディターを元に戻すのに少し時間がかかっています...",
- "saveBeforeShutdown": "変更が保存されていないエディターの保存に少し時間がかかっています..."
- },
- "vs/workbench/services/workingCopy/electron-sandbox/workingCopyHistoryService": {
- "join.workingCopyHistory": "ローカル履歴を保存しています"
+ "saveBeforeShutdown": "変更が保存されていないエディターの保存に少し時間がかかっています...",
+ "shutdownForceClose": "閉じる",
+ "shutdownForceQuit": "このまま終了する",
+ "shutdownForceReload": "このまま再度読み込む"
},
"vs/workbench/services/workspaces/browser/abstractWorkspaceEditingService": {
"errorInvalidTaskConfiguration": "ワークスペース構成ファイルに書き込めません。ファイルを開いて、ファイル内のエラー/警告を修正してからもう一度お試しください。",
- "errorWorkspaceConfigurationFileDirty": "ファイルの変更が保存されていないため、ワークスペース構成ファイルに書き込めません。ファイルを保存してから、もう一度お試しください。",
"openWorkspaceConfigurationFile": "ワークスペースの構成を開く",
"save": "保存",
"saveWorkspace": "ワークスペースを保存"
},
"vs/workbench/services/workspaces/browser/workspaceTrustEditorInput": {
- "workspaceTrustEditorInputName": "ワークスペースの信頼"
+ "workspaceTrustEditorInputName": "ワークスペースの信頼",
+ "workspaceTrustEditorLabelIcon": "ワークスペース信頼エディター ラベルのアイコン。"
},
- "vs/workbench/services/workspaces/electron-sandbox/workspaceEditingService": {
- "cancel": "キャンセル",
- "doNotSave": "保存しない",
- "save": "保存",
+ "vs/workbench/services/workspaces/electron-browser/workspaceEditingService": {
+ "doNotAskAgain": "確認なしで、常に無題のワークスペースを破棄する",
+ "doNotSave": "保存しない(&&N)",
+ "restartExtensionHost.reason": "マルチルート ワークスペースを開いています",
+ "save": "保存(&&S)",
"saveWorkspaceDetail": "再度開く予定があるならワークスペースを保存します。",
"saveWorkspaceMessage": "ワークスペースの構成をファイルとして保存しますか?",
"workspaceOpenedDetail": "ワークスペースは既に別のウィンドウで開いています。最初にそのウィンドウを閉じててから、もう一度やり直してください。",
diff --git a/i18n/vscode-language-pack-ko/package.json b/i18n/vscode-language-pack-ko/package.json
index a497577323..eff1c76ce2 100644
--- a/i18n/vscode-language-pack-ko/package.json
+++ b/i18n/vscode-language-pack-ko/package.json
@@ -2,7 +2,7 @@
"name": "vscode-language-pack-ko",
"displayName": "Korean Language Pack for Visual Studio Code",
"description": "Language pack extension for Korean",
- "version": "1.70.0",
+ "version": "1.108.0",
"publisher": "MS-CEINTL",
"repository": {
"type": "git",
@@ -10,12 +10,15 @@
},
"license": "SEE MIT LICENSE IN LICENSE.md",
"engines": {
- "vscode": "^1.70.0"
+ "vscode": "^1.108.0"
},
"icon": "languagepack.png",
"categories": [
"Language Packs"
],
+ "keywords": [
+ "한국어"
+ ],
"contributes": {
"localizations": [
{
@@ -27,601 +30,369 @@
"id": "vscode",
"path": "./translations/main.i18n.json"
},
+ {
+ "id": "ms-vscode.js-debug",
+ "path": "./translations/extensions/ms-vscode.js-debug.i18n.json"
+ },
{
"id": "vscode.bat",
- "path": "./translations/extensions/bat.i18n.json"
+ "path": "./translations/extensions/vscode.bat.i18n.json"
+ },
+ {
+ "id": "vscode.builtin-notebook-renderers",
+ "path": "./translations/extensions/vscode.builtin-notebook-renderers.i18n.json"
},
{
"id": "vscode.clojure",
- "path": "./translations/extensions/clojure.i18n.json"
+ "path": "./translations/extensions/vscode.clojure.i18n.json"
},
{
"id": "vscode.coffeescript",
- "path": "./translations/extensions/coffeescript.i18n.json"
+ "path": "./translations/extensions/vscode.coffeescript.i18n.json"
},
{
"id": "vscode.configuration-editing",
- "path": "./translations/extensions/configuration-editing.i18n.json"
+ "path": "./translations/extensions/vscode.configuration-editing.i18n.json"
},
{
"id": "vscode.cpp",
- "path": "./translations/extensions/cpp.i18n.json"
+ "path": "./translations/extensions/vscode.cpp.i18n.json"
},
{
"id": "vscode.csharp",
- "path": "./translations/extensions/csharp.i18n.json"
+ "path": "./translations/extensions/vscode.csharp.i18n.json"
},
{
"id": "vscode.css-language-features",
- "path": "./translations/extensions/css-language-features.i18n.json"
+ "path": "./translations/extensions/vscode.css-language-features.i18n.json"
},
{
"id": "vscode.css",
- "path": "./translations/extensions/css.i18n.json"
+ "path": "./translations/extensions/vscode.css.i18n.json"
},
{
"id": "vscode.dart",
- "path": "./translations/extensions/dart.i18n.json"
+ "path": "./translations/extensions/vscode.dart.i18n.json"
},
{
"id": "vscode.debug-auto-launch",
- "path": "./translations/extensions/debug-auto-launch.i18n.json"
+ "path": "./translations/extensions/vscode.debug-auto-launch.i18n.json"
},
{
"id": "vscode.debug-server-ready",
- "path": "./translations/extensions/debug-server-ready.i18n.json"
+ "path": "./translations/extensions/vscode.debug-server-ready.i18n.json"
},
{
"id": "vscode.diff",
- "path": "./translations/extensions/diff.i18n.json"
+ "path": "./translations/extensions/vscode.diff.i18n.json"
},
{
"id": "vscode.docker",
- "path": "./translations/extensions/docker.i18n.json"
+ "path": "./translations/extensions/vscode.docker.i18n.json"
+ },
+ {
+ "id": "vscode.dotenv",
+ "path": "./translations/extensions/vscode.dotenv.i18n.json"
},
{
"id": "vscode.emmet",
- "path": "./translations/extensions/emmet.i18n.json"
+ "path": "./translations/extensions/vscode.emmet.i18n.json"
},
{
"id": "vscode.extension-editing",
- "path": "./translations/extensions/extension-editing.i18n.json"
+ "path": "./translations/extensions/vscode.extension-editing.i18n.json"
},
{
"id": "vscode.fsharp",
- "path": "./translations/extensions/fsharp.i18n.json"
+ "path": "./translations/extensions/vscode.fsharp.i18n.json"
},
{
"id": "vscode.git-base",
- "path": "./translations/extensions/git-base.i18n.json"
- },
- {
- "id": "vscode.git-ui",
- "path": "./translations/extensions/git-ui.i18n.json"
+ "path": "./translations/extensions/vscode.git-base.i18n.json"
},
{
"id": "vscode.git",
- "path": "./translations/extensions/git.i18n.json"
+ "path": "./translations/extensions/vscode.git.i18n.json"
},
{
"id": "vscode.github-authentication",
- "path": "./translations/extensions/github-authentication.i18n.json"
- },
- {
- "id": "vscode.github-browser",
- "path": "./translations/extensions/github-browser.i18n.json"
+ "path": "./translations/extensions/vscode.github-authentication.i18n.json"
},
{
"id": "vscode.github",
- "path": "./translations/extensions/github.i18n.json"
+ "path": "./translations/extensions/vscode.github.i18n.json"
},
{
"id": "vscode.go",
- "path": "./translations/extensions/go.i18n.json"
+ "path": "./translations/extensions/vscode.go.i18n.json"
},
{
"id": "vscode.groovy",
- "path": "./translations/extensions/groovy.i18n.json"
+ "path": "./translations/extensions/vscode.groovy.i18n.json"
},
{
"id": "vscode.grunt",
- "path": "./translations/extensions/grunt.i18n.json"
+ "path": "./translations/extensions/vscode.grunt.i18n.json"
},
{
"id": "vscode.gulp",
- "path": "./translations/extensions/gulp.i18n.json"
+ "path": "./translations/extensions/vscode.gulp.i18n.json"
},
{
"id": "vscode.handlebars",
- "path": "./translations/extensions/handlebars.i18n.json"
+ "path": "./translations/extensions/vscode.handlebars.i18n.json"
},
{
"id": "vscode.hlsl",
- "path": "./translations/extensions/hlsl.i18n.json"
+ "path": "./translations/extensions/vscode.hlsl.i18n.json"
},
{
"id": "vscode.html-language-features",
- "path": "./translations/extensions/html-language-features.i18n.json"
+ "path": "./translations/extensions/vscode.html-language-features.i18n.json"
},
{
"id": "vscode.html",
- "path": "./translations/extensions/html.i18n.json"
- },
- {
- "id": "vscode.image-preview",
- "path": "./translations/extensions/image-preview.i18n.json"
+ "path": "./translations/extensions/vscode.html.i18n.json"
},
{
"id": "vscode.ini",
- "path": "./translations/extensions/ini.i18n.json"
+ "path": "./translations/extensions/vscode.ini.i18n.json"
},
{
"id": "vscode.ipynb",
- "path": "./translations/extensions/ipynb.i18n.json"
+ "path": "./translations/extensions/vscode.ipynb.i18n.json"
},
{
"id": "vscode.jake",
- "path": "./translations/extensions/jake.i18n.json"
+ "path": "./translations/extensions/vscode.jake.i18n.json"
},
{
"id": "vscode.java",
- "path": "./translations/extensions/java.i18n.json"
+ "path": "./translations/extensions/vscode.java.i18n.json"
},
{
"id": "vscode.javascript",
- "path": "./translations/extensions/javascript.i18n.json"
+ "path": "./translations/extensions/vscode.javascript.i18n.json"
},
{
"id": "vscode.json-language-features",
- "path": "./translations/extensions/json-language-features.i18n.json"
+ "path": "./translations/extensions/vscode.json-language-features.i18n.json"
},
{
"id": "vscode.json",
- "path": "./translations/extensions/json.i18n.json"
+ "path": "./translations/extensions/vscode.json.i18n.json"
},
{
"id": "vscode.julia",
- "path": "./translations/extensions/julia.i18n.json"
+ "path": "./translations/extensions/vscode.julia.i18n.json"
},
{
"id": "vscode.latex",
- "path": "./translations/extensions/latex.i18n.json"
+ "path": "./translations/extensions/vscode.latex.i18n.json"
},
{
"id": "vscode.less",
- "path": "./translations/extensions/less.i18n.json"
+ "path": "./translations/extensions/vscode.less.i18n.json"
},
{
"id": "vscode.log",
- "path": "./translations/extensions/log.i18n.json"
+ "path": "./translations/extensions/vscode.log.i18n.json"
},
{
"id": "vscode.lua",
- "path": "./translations/extensions/lua.i18n.json"
+ "path": "./translations/extensions/vscode.lua.i18n.json"
},
{
"id": "vscode.make",
- "path": "./translations/extensions/make.i18n.json"
- },
- {
- "id": "vscode.markdown-basics",
- "path": "./translations/extensions/markdown-basics.i18n.json"
+ "path": "./translations/extensions/vscode.make.i18n.json"
},
{
"id": "vscode.markdown-language-features",
- "path": "./translations/extensions/markdown-language-features.i18n.json"
+ "path": "./translations/extensions/vscode.markdown-language-features.i18n.json"
},
{
"id": "vscode.markdown-math",
- "path": "./translations/extensions/markdown-math.i18n.json"
- },
- {
- "id": "vscode.markdown-notebook-math",
- "path": "./translations/extensions/markdown-notebook-math.i18n.json"
- },
- {
- "id": "vscode.merge-conflict",
- "path": "./translations/extensions/merge-conflict.i18n.json"
- },
- {
- "id": "vscode.microsoft-authentication",
- "path": "./translations/extensions/microsoft-authentication.i18n.json"
+ "path": "./translations/extensions/vscode.markdown-math.i18n.json"
},
{
- "id": "vscode.ms-vscode.github-browser",
- "path": "./translations/extensions/ms-vscode.github-browser.i18n.json"
- },
- {
- "id": "vscode.ms-vscode.js-debug",
- "path": "./translations/extensions/ms-vscode.js-debug.i18n.json"
- },
- {
- "id": "vscode.ms-vscode.node-debug",
- "path": "./translations/extensions/ms-vscode.node-debug.i18n.json"
+ "id": "vscode.markdown",
+ "path": "./translations/extensions/vscode.markdown.i18n.json"
},
{
- "id": "vscode.ms-vscode.node-debug2",
- "path": "./translations/extensions/ms-vscode.node-debug2.i18n.json"
+ "id": "vscode.media-preview",
+ "path": "./translations/extensions/vscode.media-preview.i18n.json"
},
{
- "id": "vscode.ms-vscode.remotehub",
- "path": "./translations/extensions/ms-vscode.remotehub.i18n.json"
+ "id": "vscode.merge-conflict",
+ "path": "./translations/extensions/vscode.merge-conflict.i18n.json"
},
{
- "id": "vscode.notebook-markdown-extensions",
- "path": "./translations/extensions/notebook-markdown-extensions.i18n.json"
+ "id": "vscode.mermaid-chat-features",
+ "path": "./translations/extensions/vscode.mermaid-chat-features.i18n.json"
},
{
- "id": "vscode.notebook-renderers",
- "path": "./translations/extensions/notebook-renderers.i18n.json"
+ "id": "vscode.microsoft-authentication",
+ "path": "./translations/extensions/vscode.microsoft-authentication.i18n.json"
},
{
"id": "vscode.npm",
- "path": "./translations/extensions/npm.i18n.json"
+ "path": "./translations/extensions/vscode.npm.i18n.json"
},
{
"id": "vscode.objective-c",
- "path": "./translations/extensions/objective-c.i18n.json"
+ "path": "./translations/extensions/vscode.objective-c.i18n.json"
},
{
"id": "vscode.perl",
- "path": "./translations/extensions/perl.i18n.json"
+ "path": "./translations/extensions/vscode.perl.i18n.json"
},
{
"id": "vscode.php-language-features",
- "path": "./translations/extensions/php-language-features.i18n.json"
+ "path": "./translations/extensions/vscode.php-language-features.i18n.json"
},
{
"id": "vscode.php",
- "path": "./translations/extensions/php.i18n.json"
+ "path": "./translations/extensions/vscode.php.i18n.json"
},
{
"id": "vscode.powershell",
- "path": "./translations/extensions/powershell.i18n.json"
+ "path": "./translations/extensions/vscode.powershell.i18n.json"
+ },
+ {
+ "id": "vscode.prompt",
+ "path": "./translations/extensions/vscode.prompt.i18n.json"
},
{
"id": "vscode.pug",
- "path": "./translations/extensions/pug.i18n.json"
+ "path": "./translations/extensions/vscode.pug.i18n.json"
},
{
"id": "vscode.python",
- "path": "./translations/extensions/python.i18n.json"
+ "path": "./translations/extensions/vscode.python.i18n.json"
},
{
"id": "vscode.r",
- "path": "./translations/extensions/r.i18n.json"
+ "path": "./translations/extensions/vscode.r.i18n.json"
},
{
"id": "vscode.razor",
- "path": "./translations/extensions/razor.i18n.json"
+ "path": "./translations/extensions/vscode.razor.i18n.json"
},
{
"id": "vscode.references-view",
- "path": "./translations/extensions/references-view.i18n.json"
+ "path": "./translations/extensions/vscode.references-view.i18n.json"
},
{
"id": "vscode.restructuredtext",
- "path": "./translations/extensions/restructuredtext.i18n.json"
+ "path": "./translations/extensions/vscode.restructuredtext.i18n.json"
},
{
"id": "vscode.ruby",
- "path": "./translations/extensions/ruby.i18n.json"
+ "path": "./translations/extensions/vscode.ruby.i18n.json"
},
{
"id": "vscode.rust",
- "path": "./translations/extensions/rust.i18n.json"
+ "path": "./translations/extensions/vscode.rust.i18n.json"
},
{
"id": "vscode.scss",
- "path": "./translations/extensions/scss.i18n.json"
+ "path": "./translations/extensions/vscode.scss.i18n.json"
},
{
"id": "vscode.search-result",
- "path": "./translations/extensions/search-result.i18n.json"
+ "path": "./translations/extensions/vscode.search-result.i18n.json"
},
{
"id": "vscode.shaderlab",
- "path": "./translations/extensions/shaderlab.i18n.json"
+ "path": "./translations/extensions/vscode.shaderlab.i18n.json"
},
{
"id": "vscode.shellscript",
- "path": "./translations/extensions/shellscript.i18n.json"
+ "path": "./translations/extensions/vscode.shellscript.i18n.json"
},
{
"id": "vscode.simple-browser",
- "path": "./translations/extensions/simple-browser.i18n.json"
+ "path": "./translations/extensions/vscode.simple-browser.i18n.json"
},
{
"id": "vscode.sql",
- "path": "./translations/extensions/sql.i18n.json"
+ "path": "./translations/extensions/vscode.sql.i18n.json"
},
{
"id": "vscode.swift",
- "path": "./translations/extensions/swift.i18n.json"
+ "path": "./translations/extensions/vscode.swift.i18n.json"
},
{
- "id": "vscode.testing-editor-contributions",
- "path": "./translations/extensions/testing-editor-contributions.i18n.json"
+ "id": "vscode.terminal-suggest",
+ "path": "./translations/extensions/vscode.terminal-suggest.i18n.json"
},
{
"id": "vscode.theme-abyss",
- "path": "./translations/extensions/theme-abyss.i18n.json"
+ "path": "./translations/extensions/vscode.theme-abyss.i18n.json"
},
{
"id": "vscode.theme-defaults",
- "path": "./translations/extensions/theme-defaults.i18n.json"
+ "path": "./translations/extensions/vscode.theme-defaults.i18n.json"
},
{
"id": "vscode.theme-kimbie-dark",
- "path": "./translations/extensions/theme-kimbie-dark.i18n.json"
+ "path": "./translations/extensions/vscode.theme-kimbie-dark.i18n.json"
},
{
"id": "vscode.theme-monokai-dimmed",
- "path": "./translations/extensions/theme-monokai-dimmed.i18n.json"
+ "path": "./translations/extensions/vscode.theme-monokai-dimmed.i18n.json"
},
{
"id": "vscode.theme-monokai",
- "path": "./translations/extensions/theme-monokai.i18n.json"
+ "path": "./translations/extensions/vscode.theme-monokai.i18n.json"
},
{
"id": "vscode.theme-quietlight",
- "path": "./translations/extensions/theme-quietlight.i18n.json"
+ "path": "./translations/extensions/vscode.theme-quietlight.i18n.json"
},
{
"id": "vscode.theme-red",
- "path": "./translations/extensions/theme-red.i18n.json"
- },
- {
- "id": "vscode.theme-seti",
- "path": "./translations/extensions/theme-seti.i18n.json"
+ "path": "./translations/extensions/vscode.theme-red.i18n.json"
},
{
"id": "vscode.theme-solarized-dark",
- "path": "./translations/extensions/theme-solarized-dark.i18n.json"
+ "path": "./translations/extensions/vscode.theme-solarized-dark.i18n.json"
},
{
"id": "vscode.theme-solarized-light",
- "path": "./translations/extensions/theme-solarized-light.i18n.json"
+ "path": "./translations/extensions/vscode.theme-solarized-light.i18n.json"
},
{
"id": "vscode.theme-tomorrow-night-blue",
- "path": "./translations/extensions/theme-tomorrow-night-blue.i18n.json"
+ "path": "./translations/extensions/vscode.theme-tomorrow-night-blue.i18n.json"
},
{
- "id": "vscode.typescript-basics",
- "path": "./translations/extensions/typescript-basics.i18n.json"
+ "id": "vscode.tunnel-forwarding",
+ "path": "./translations/extensions/vscode.tunnel-forwarding.i18n.json"
},
{
"id": "vscode.typescript-language-features",
- "path": "./translations/extensions/typescript-language-features.i18n.json"
- },
- {
- "id": "vscode.vb",
- "path": "./translations/extensions/vb.i18n.json"
- },
- {
- "id": "vscode.vscode-chrome-debug-core",
- "path": "./translations/extensions/vscode-chrome-debug-core.i18n.json"
- },
- {
- "id": "ms-vscode.node-debug",
- "path": "./translations/extensions/vscode-node-debug.i18n.json"
- },
- {
- "id": "ms-vscode.node-debug2",
- "path": "./translations/extensions/vscode-node-debug2.i18n.json"
+ "path": "./translations/extensions/vscode.typescript-language-features.i18n.json"
},
{
- "id": "vscode.vscode.bat",
- "path": "./translations/extensions/vscode.bat.i18n.json"
- },
- {
- "id": "vscode.vscode.clojure",
- "path": "./translations/extensions/vscode.clojure.i18n.json"
- },
- {
- "id": "vscode.vscode.coffeescript",
- "path": "./translations/extensions/vscode.coffeescript.i18n.json"
- },
- {
- "id": "vscode.vscode.cpp",
- "path": "./translations/extensions/vscode.cpp.i18n.json"
- },
- {
- "id": "vscode.vscode.csharp",
- "path": "./translations/extensions/vscode.csharp.i18n.json"
- },
- {
- "id": "vscode.vscode.css",
- "path": "./translations/extensions/vscode.css.i18n.json"
- },
- {
- "id": "vscode.vscode.docker",
- "path": "./translations/extensions/vscode.docker.i18n.json"
- },
- {
- "id": "vscode.vscode.fsharp",
- "path": "./translations/extensions/vscode.fsharp.i18n.json"
- },
- {
- "id": "vscode.vscode.go",
- "path": "./translations/extensions/vscode.go.i18n.json"
- },
- {
- "id": "vscode.vscode.groovy",
- "path": "./translations/extensions/vscode.groovy.i18n.json"
- },
- {
- "id": "vscode.vscode.handlebars",
- "path": "./translations/extensions/vscode.handlebars.i18n.json"
- },
- {
- "id": "vscode.vscode.hlsl",
- "path": "./translations/extensions/vscode.hlsl.i18n.json"
- },
- {
- "id": "vscode.vscode.html",
- "path": "./translations/extensions/vscode.html.i18n.json"
- },
- {
- "id": "vscode.vscode.ini",
- "path": "./translations/extensions/vscode.ini.i18n.json"
- },
- {
- "id": "vscode.vscode.java",
- "path": "./translations/extensions/vscode.java.i18n.json"
- },
- {
- "id": "vscode.vscode.javascript",
- "path": "./translations/extensions/vscode.javascript.i18n.json"
- },
- {
- "id": "vscode.vscode.json",
- "path": "./translations/extensions/vscode.json.i18n.json"
- },
- {
- "id": "vscode.vscode.less",
- "path": "./translations/extensions/vscode.less.i18n.json"
- },
- {
- "id": "vscode.vscode.log",
- "path": "./translations/extensions/vscode.log.i18n.json"
- },
- {
- "id": "vscode.vscode.lua",
- "path": "./translations/extensions/vscode.lua.i18n.json"
- },
- {
- "id": "vscode.vscode.make",
- "path": "./translations/extensions/vscode.make.i18n.json"
- },
- {
- "id": "vscode.vscode.markdown",
- "path": "./translations/extensions/vscode.markdown.i18n.json"
- },
- {
- "id": "vscode.vscode.objective-c",
- "path": "./translations/extensions/vscode.objective-c.i18n.json"
- },
- {
- "id": "vscode.vscode.perl",
- "path": "./translations/extensions/vscode.perl.i18n.json"
- },
- {
- "id": "vscode.vscode.php",
- "path": "./translations/extensions/vscode.php.i18n.json"
- },
- {
- "id": "vscode.vscode.powershell",
- "path": "./translations/extensions/vscode.powershell.i18n.json"
- },
- {
- "id": "vscode.vscode.pug",
- "path": "./translations/extensions/vscode.pug.i18n.json"
- },
- {
- "id": "vscode.vscode.r",
- "path": "./translations/extensions/vscode.r.i18n.json"
- },
- {
- "id": "vscode.vscode.razor",
- "path": "./translations/extensions/vscode.razor.i18n.json"
- },
- {
- "id": "vscode.vscode.ruby",
- "path": "./translations/extensions/vscode.ruby.i18n.json"
- },
- {
- "id": "vscode.vscode.rust",
- "path": "./translations/extensions/vscode.rust.i18n.json"
- },
- {
- "id": "vscode.vscode.scss",
- "path": "./translations/extensions/vscode.scss.i18n.json"
- },
- {
- "id": "vscode.vscode.shaderlab",
- "path": "./translations/extensions/vscode.shaderlab.i18n.json"
- },
- {
- "id": "vscode.vscode.shellscript",
- "path": "./translations/extensions/vscode.shellscript.i18n.json"
- },
- {
- "id": "vscode.vscode.sql",
- "path": "./translations/extensions/vscode.sql.i18n.json"
- },
- {
- "id": "vscode.vscode.swift",
- "path": "./translations/extensions/vscode.swift.i18n.json"
- },
- {
- "id": "vscode.vscode.theme-abyss",
- "path": "./translations/extensions/vscode.theme-abyss.i18n.json"
- },
- {
- "id": "vscode.vscode.theme-defaults",
- "path": "./translations/extensions/vscode.theme-defaults.i18n.json"
- },
- {
- "id": "vscode.vscode.theme-kimbie-dark",
- "path": "./translations/extensions/vscode.theme-kimbie-dark.i18n.json"
- },
- {
- "id": "vscode.vscode.theme-monokai-dimmed",
- "path": "./translations/extensions/vscode.theme-monokai-dimmed.i18n.json"
- },
- {
- "id": "vscode.vscode.theme-monokai",
- "path": "./translations/extensions/vscode.theme-monokai.i18n.json"
- },
- {
- "id": "vscode.vscode.theme-quietlight",
- "path": "./translations/extensions/vscode.theme-quietlight.i18n.json"
- },
- {
- "id": "vscode.vscode.theme-red",
- "path": "./translations/extensions/vscode.theme-red.i18n.json"
- },
- {
- "id": "vscode.vscode.theme-solarized-dark",
- "path": "./translations/extensions/vscode.theme-solarized-dark.i18n.json"
- },
- {
- "id": "vscode.vscode.theme-solarized-light",
- "path": "./translations/extensions/vscode.theme-solarized-light.i18n.json"
- },
- {
- "id": "vscode.vscode.theme-tomorrow-night-blue",
- "path": "./translations/extensions/vscode.theme-tomorrow-night-blue.i18n.json"
- },
- {
- "id": "vscode.vscode.typescript",
+ "id": "vscode.typescript",
"path": "./translations/extensions/vscode.typescript.i18n.json"
},
{
- "id": "vscode.vscode.vb",
+ "id": "vscode.vb",
"path": "./translations/extensions/vscode.vb.i18n.json"
},
{
- "id": "vscode.vscode.vscode-theme-seti",
+ "id": "vscode.vscode-theme-seti",
"path": "./translations/extensions/vscode.vscode-theme-seti.i18n.json"
},
- {
- "id": "vscode.vscode.xml",
- "path": "./translations/extensions/vscode.xml.i18n.json"
- },
- {
- "id": "vscode.vscode.yaml",
- "path": "./translations/extensions/vscode.yaml.i18n.json"
- },
{
"id": "vscode.xml",
- "path": "./translations/extensions/xml.i18n.json"
+ "path": "./translations/extensions/vscode.xml.i18n.json"
},
{
"id": "vscode.yaml",
- "path": "./translations/extensions/yaml.i18n.json"
+ "path": "./translations/extensions/vscode.yaml.i18n.json"
}
]
}
diff --git a/i18n/vscode-language-pack-ko/translations/extensions/bat.i18n.json b/i18n/vscode-language-pack-ko/translations/extensions/bat.i18n.json
deleted file mode 100644
index 8a064113b8..0000000000
--- a/i18n/vscode-language-pack-ko/translations/extensions/bat.i18n.json
+++ /dev/null
@@ -1,16 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "package": {
- "description": "Windows 배치 파일에서 코드 조각, 구문 강조 표시, 괄호 일치 및 접기를 제공합니다.",
- "displayName": "Windows Bat 언어 기본"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-ko/translations/extensions/clojure.i18n.json b/i18n/vscode-language-pack-ko/translations/extensions/clojure.i18n.json
deleted file mode 100644
index 5de75aed9c..0000000000
--- a/i18n/vscode-language-pack-ko/translations/extensions/clojure.i18n.json
+++ /dev/null
@@ -1,16 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "package": {
- "description": "Clojure 파일에서 구문 강조 표시 및 괄호 일치를 제공합니다.",
- "displayName": "Clojure 언어 기본 사항"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-ko/translations/extensions/coffeescript.i18n.json b/i18n/vscode-language-pack-ko/translations/extensions/coffeescript.i18n.json
deleted file mode 100644
index 47ce058562..0000000000
--- a/i18n/vscode-language-pack-ko/translations/extensions/coffeescript.i18n.json
+++ /dev/null
@@ -1,16 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "package": {
- "description": "CoffeeScript 파일에서 코드 조각, 구문 강조 표시, 괄호 일치 및 접기를 제공합니다.",
- "displayName": "CoffeeScript 언어 기본"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-ko/translations/extensions/configuration-editing.i18n.json b/i18n/vscode-language-pack-ko/translations/extensions/configuration-editing.i18n.json
deleted file mode 100644
index 1536a63fee..0000000000
--- a/i18n/vscode-language-pack-ko/translations/extensions/configuration-editing.i18n.json
+++ /dev/null
@@ -1,70 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "dist/configurationEditingMain": {
- "cwd": "시작 시 작업 실행기의 현재 작업 디렉터리",
- "defaultBuildTask": "기본 빌드 작업의 이름입니다. 단일 기본 빌드 작업이 없는 경우 빠른 선택이 표시되어 빌드 작업을 선택할 수 있습니다.",
- "extensionInstallFolder": "확장이 설치된 경로입니다.",
- "file": "현재 열린 파일",
- "fileBasename": "현재 열려 있는 파일의 기본 이름",
- "fileBasenameNoExtension": "현재 열려 있는 파일의 기본 이름(파일 확장명 제외)",
- "fileDirname": "현재 열려 있는 파일의 dirname",
- "fileExtname": "현재 열려 있는 파일의 확장명",
- "lineNumber": "활성 파일에서 현재 선택된 줄 번호",
- "pathSeparator": "운영 체제에서 파일 경로의 구성 요소를 구분하는 데 사용하는 문자",
- "relativeFile": "${workspaceFolder}을(를) 기준으로 현재 열려 있는 파일",
- "relativeFileDirname": "${workspaceFolder}와 관련된 현재 열린 파일의 dirname",
- "selectedText": "활성 파일에서 현재 선택된 텍스트",
- "workspaceFolder": "VS Code에서 연 폴더의 경로",
- "workspaceFolderBasename": "VS Code에서 연 폴더의 이름(슬래시(/) 제외)"
- },
- "dist/extensionsProposals": {
- "exampleExtension": "예제"
- },
- "dist/settingsDocumentHelper": {
- "activeEditor": "현재 활성 텍스트 편집기(있는 경우)의 언어 사용",
- "activeEditorLong": "파일의 전체 경로(예: /Users/Development/myFolder/myFileFolder/myFile.txt)",
- "activeEditorMedium": "작업 영역 폴더에 상대적인 파일 경로(예: myFolder/myFileFolder/myFile.txt)",
- "activeEditorShort": "파일 이름(예: myFile.txt)",
- "activeFolderLong": "파일이 포함된 폴더의 전체 경로(예: /Users/Development/myFolder/myFileFolder)",
- "activeFolderMedium": "작업 영역 폴더에 상대적인, 파일이 포함된 폴더의 경로(예: myFolder/myFileFolder)",
- "activeFolderShort": "파일이 포함된 폴더의 이름(예: myFileFolder)",
- "appName": "예: VS Code",
- "assocDescriptionFile": "파일 이름에서 GLOB 패턴과 일치하는 모든 파일을 지정된 ID를 사용하는 언어에 매핑합니다.",
- "assocDescriptionPath": "경로에서 절대 경로 GLOB 패턴과 일치하는 모든 파일을 지정된 ID를 사용하는 언어에 매핑합니다.",
- "assocLabelFile": "확장명이 있는 파일",
- "assocLabelPath": "경로가 있는 파일",
- "derivedDescription": "동일한 이름의 형제가 있지만 확장명이 다른 파일을 일치시킵니다.",
- "derivedLabel": "이름별 형제가 있는 파일",
- "dirty": "활성 편집기에 저장되지 않은 변경 내용이 있는 경우에 대한 표시기",
- "fileDescription": "특정 파일 확장명이 있는 모든 파일을 일치시킵니다.",
- "fileLabel": "확장명별 파일",
- "filesDescription": "파일 확장명이 있는 모든 파일을 일치시킵니다.",
- "filesLabel": "여러 확장명이 있는 파일",
- "folderDescription": "모든 위치에 있는 특정 이름의 폴더를 일치시킵니다.",
- "folderLabel": "이름별 폴더(모든 위치)",
- "folderName": "파일이 포함된 작업 영역 폴더의 이름(예: myFolder)",
- "folderPath": "파일이 포함된 작업 영역 폴더의 파일 경로(예: /Users/Development/myFolder)",
- "remoteName": "예: SSH",
- "rootName": "작업 영역 이름(예: myFolder 또는 myWorkspace)",
- "rootPath": "작업 영역 파일 경로(예: /Users/Development/myWorkspace)",
- "separator": "값이 있는 변수로 둘러싸인 경우에만 표시되는 조건부 구분 기호 (' - ')",
- "siblingsDescription": "동일한 이름의 형제가 있지만 확장명이 다른 파일을 일치시킵니다.",
- "topFolderDescription": "특정 이름의 최상위 폴더를 일치시킵니다.",
- "topFolderLabel": "이름별 폴더(최상위)",
- "topFoldersDescription": "여러 최상위 폴더를 일치시킵니다.",
- "topFoldersLabel": "이름이 여러 개 있는 폴더(최상위)"
- },
- "package": {
- "description": "설정, 시작 및 확장 추천 파일과 같은 구성 파일에서 기능(고급 IntelliSense, 자동 수정)을 제공합니다.",
- "displayName": "구성 편집"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-ko/translations/extensions/cpp.i18n.json b/i18n/vscode-language-pack-ko/translations/extensions/cpp.i18n.json
deleted file mode 100644
index 0cabdb2849..0000000000
--- a/i18n/vscode-language-pack-ko/translations/extensions/cpp.i18n.json
+++ /dev/null
@@ -1,16 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "package": {
- "description": "C/C++ 파일에서 코드 조각, 구문 강조 표시, 괄호 일치 및 접기를 제공합니다.",
- "displayName": "C/C++ 언어 기본"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-ko/translations/extensions/csharp.i18n.json b/i18n/vscode-language-pack-ko/translations/extensions/csharp.i18n.json
deleted file mode 100644
index 9cdaced0ab..0000000000
--- a/i18n/vscode-language-pack-ko/translations/extensions/csharp.i18n.json
+++ /dev/null
@@ -1,16 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "package": {
- "description": "C# 파일에서 코드 조각, 구문 강조 표시, 괄호 일치 및 접기를 제공합니다.",
- "displayName": "C# 언어 기본"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-ko/translations/extensions/css-language-features.i18n.json b/i18n/vscode-language-pack-ko/translations/extensions/css-language-features.i18n.json
deleted file mode 100644
index f55b7629f0..0000000000
--- a/i18n/vscode-language-pack-ko/translations/extensions/css-language-features.i18n.json
+++ /dev/null
@@ -1,128 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "client\\dist\\node/cssClient": {
- "cssserver.name": "CSS 언어 서버",
- "folding.end": "접기 영역 끝",
- "folding.start": "접기 영역 시작"
- },
- "package": {
- "css.colorDecorators.enable.deprecationMessage": "`css.colorDecorators.enable` 설정은 `editor.colorDecorators`를 위해 사용되지 않습니다.",
- "css.completion.completePropertyWithSemicolon.desc": "CSS 속성을 완료할 때 줄의 끝에 세미콜론을 삽입합니다.",
- "css.completion.triggerPropertyValueCompletion.desc": "기본적으로 VS Code는 CSS 속성을 선택한 후 속성 값 완료를 트리거합니다. 이 동작을 비활성화하려면 이 설정을 사용합니다.",
- "css.customData.desc": "[사용자 지정 데이터 형식](https://github.com/microsoft/vscode-css-languageservice/blob/master/docs/customData.md)에 따라 JSON 파일을 가리키는 상대 파일 경로의 목록입니다.\r\n\r\nVS Code는 시작 시 사용자 지정 데이터를 로드하여 JSON 파일에 지정하는 지시문, 의사 클래스 및 의사 요소에서 사용자 지정 CSS 속성에 대한 CSS 지원을 향상합니다.\r\n\r\n파일 경로는 작업 영역에 상대적이며 작업 영역 폴더 설정만 고려됩니다.",
- "css.format.braceStyle.desc": "규칙(`collapse`)과 동일한 줄에 중괄호를 배치하거나 자체 줄(`expand`)에 중괄호를 배치합니다.",
- "css.format.enable.desc": "기본 CSS 포맷터를 활성화/비활성화합니다.",
- "css.format.maxPreserveNewLines.desc": "`#css.format.preserveNewLines#`을(를) 사용하는 경우 한 청크에서 보존할 최대 줄 바꿈 수입니다.",
- "css.format.newlineBetweenRules.desc": "규칙 집합을 빈 줄로 구분합니다.",
- "css.format.newlineBetweenSelectors.desc": "선택기를 새 줄로 구분합니다.",
- "css.format.preserveNewLines.desc": "요소를 보존하기 전에 기존 줄 바꿈 여부입니다.",
- "css.format.spaceAroundSelectorSeparator.desc": "선택기 구분 기호 '>', '+', '~' 주위에 공백 문자가 있는지 확인합니다(예: 'a > b').",
- "css.hover.documentation": "CSS 호버에 태그 및 특성 설명서를 표시합니다.",
- "css.hover.references": "CSS 호버에 MDN에 대한 참조를 표시합니다.",
- "css.lint.argumentsInColorFunction.desc": "매개 변수 개수가 잘못되었습니다.",
- "css.lint.boxModel.desc": "'padding' 또는 'border'를 사용하는 경우 'width' 또는 'height'를 사용하지 마세요.",
- "css.lint.compatibleVendorPrefixes.desc": "공급업체 관련 접두사를 사용할 경우 다른 모든 공급업체 관련 속성도 포함합니다.",
- "css.lint.duplicateProperties.desc": "중복된 스타일 정의를 사용하지 마세요.",
- "css.lint.emptyRules.desc": "빈 규칙 집합을 사용하지 마세요.",
- "css.lint.float.desc": "'float'를 사용하지 않도록 합니다. Float를 사용하면 레이아웃의 한쪽이 바뀔 경우 CSS가 쉽게 깨질 수 있습니다.",
- "css.lint.fontFaceProperties.desc": "`@font-face` 규칙에서 'src' 및 'font-family' 속성을 정의해야 합니다.",
- "css.lint.hexColorLength.desc": "헥스 색상은 3개 또는 6개의 16진수로 구성되어야 합니다.",
- "css.lint.idSelector.desc": "이러한 규칙은 HTML과 긴밀하게 결합되므로 선택기에 ID를 포함하면 안 됩니다.",
- "css.lint.ieHack.desc": "IE 핵(Hack)은 IE7 이상을 지원할 때만 필요합니다.",
- "css.lint.importStatement.desc": "Import 문은 병렬로 로드되지 않습니다.",
- "css.lint.important.desc": "'!important'는 사용하지 않도록 합니다. 이것은 전체 CSS의 특정성에 문제가 있어서 리팩터링해야 함을 나타냅니다.",
- "css.lint.propertyIgnoredDueToDisplay.desc": "display 때문에 속성이 무시됩니다. 예를 들어 'display: inline'을 사용할 경우 'width', 'height', 'margin-top', 'margin-bottom' 및 'float' 속성은 적용되지 않습니다.",
- "css.lint.universalSelector.desc": "범용 선택기(*)는 느린 것으로 알려져 있습니다.",
- "css.lint.unknownAtRules.desc": "알 수 없는 @ 규칙 입니다.",
- "css.lint.unknownProperties.desc": "알 수 없는 속성입니다.",
- "css.lint.unknownVendorSpecificProperties.desc": "알 수 없는 공급업체 관련 속성입니다.",
- "css.lint.validProperties.desc": "`unknownProperties` 규칙에 따라 유효성이 검사되지 않은 속성 목록입니다.",
- "css.lint.vendorPrefix.desc": "공급업체 관련 접두사를 사용할 경우 표준 속성도 포함합니다.",
- "css.lint.zeroUnits.desc": "0에는 단위가 필요하지 않습니다.",
- "css.title": "CSS",
- "css.trace.server.desc": "VS Code와 CSS 언어 서버 간 통신을 추적합니다.",
- "css.validate.desc": "모든 유효성 검사를 사용하거나 사용하지 않습니다.",
- "css.validate.title": "CSS 유효성 검사 및 문제 심각도를 제어합니다.",
- "description": "CSS, LESS 및 SCSS 파일에 대한 다양한 언어 지원을 제공합니다.",
- "displayName": "CSS 언어 기능",
- "less.colorDecorators.enable.deprecationMessage": "`less.colorDecorators.enable` 설정은 `editor.colorDecorators`를 위해 사용되지 않습니다.",
- "less.completion.completePropertyWithSemicolon.desc": "CSS 속성을 완료할 때 줄의 끝에 세미콜론을 삽입합니다.",
- "less.completion.triggerPropertyValueCompletion.desc": "기본적으로 VS Code는 CSS 속성을 선택한 후 속성 값 완료를 트리거합니다. 이 동작을 비활성화하려면 이 설정을 사용합니다.",
- "less.format.braceStyle.desc": "규칙(`collapse`)과 동일한 줄에 중괄호를 배치하거나 자체 줄(`expand`)에 중괄호를 배치합니다.",
- "less.format.enable.desc": "기본 LESS 포맷터를 활성화/비활성화합니다.",
- "less.format.maxPreserveNewLines.desc": "`#less.format.preserveNewLines#`을(를) 사용하는 경우 한 청크에서 보존할 최대 줄 바꿈 수입니다.",
- "less.format.newlineBetweenRules.desc": "규칙 집합을 빈 줄로 구분합니다.",
- "less.format.newlineBetweenSelectors.desc": "선택기를 새 줄로 구분합니다.",
- "less.format.preserveNewLines.desc": "요소를 보존하기 전에 기존 줄 바꿈 여부입니다.",
- "less.format.spaceAroundSelectorSeparator.desc": "선택기 구분 기호 '>', '+', '~' 주위에 공백 문자가 있는지 확인합니다(예: 'a > b').",
- "less.hover.documentation": "LESS 호버에 태그 및 특성 설명서를 표시합니다.",
- "less.hover.references": "LESS 호버에 MDN에 대한 참조를 표시합니다.",
- "less.lint.argumentsInColorFunction.desc": "매개 변수 개수가 잘못되었습니다.",
- "less.lint.boxModel.desc": "'padding' 또는 'border'를 사용하는 경우 'width' 또는 'height'를 사용하지 마세요.",
- "less.lint.compatibleVendorPrefixes.desc": "공급업체 관련 접두사를 사용할 경우 다른 모든 공급업체 관련 속성도 포함합니다.",
- "less.lint.duplicateProperties.desc": "중복된 스타일 정의를 사용하지 마세요.",
- "less.lint.emptyRules.desc": "빈 규칙 집합을 사용하지 마세요.",
- "less.lint.float.desc": "'float'를 사용하지 않도록 합니다. Float를 사용하면 레이아웃의 한쪽이 바뀔 경우 CSS가 쉽게 깨질 수 있습니다.",
- "less.lint.fontFaceProperties.desc": "`@font-face` 규칙에서 'src' 및 'font-family' 속성을 정의해야 합니다.",
- "less.lint.hexColorLength.desc": "헥스 색상은 3개 또는 6개의 16진수로 구성되어야 합니다.",
- "less.lint.idSelector.desc": "이러한 규칙은 HTML과 긴밀하게 결합되므로 선택기에 ID를 포함하면 안 됩니다.",
- "less.lint.ieHack.desc": "IE 핵(Hack)은 IE7 이상을 지원할 때만 필요합니다.",
- "less.lint.importStatement.desc": "Import 문은 병렬로 로드되지 않습니다.",
- "less.lint.important.desc": "'!important'는 사용하지 않도록 합니다. 이것은 전체 CSS의 특정성에 문제가 있어서 리팩터링해야 함을 나타냅니다.",
- "less.lint.propertyIgnoredDueToDisplay.desc": "display 때문에 속성이 무시됩니다. 예를 들어 'display: inline'을 사용할 경우 'width', 'height', 'margin-top', 'margin-bottom' 및 'float' 속성은 적용되지 않습니다.",
- "less.lint.universalSelector.desc": "범용 선택기(*)는 느린 것으로 알려져 있습니다.",
- "less.lint.unknownAtRules.desc": "알 수 없는 @ 규칙 입니다.",
- "less.lint.unknownProperties.desc": "알 수 없는 속성입니다.",
- "less.lint.unknownVendorSpecificProperties.desc": "알 수 없는 공급업체 관련 속성입니다.",
- "less.lint.validProperties.desc": "`unknownProperties` 규칙에 따라 유효성이 검사되지 않은 속성 목록입니다.",
- "less.lint.vendorPrefix.desc": "공급업체 관련 접두사를 사용할 경우 표준 속성도 포함합니다.",
- "less.lint.zeroUnits.desc": "0에는 단위가 필요하지 않습니다.",
- "less.title": "LESS",
- "less.validate.desc": "모든 유효성 검사를 사용하거나 사용하지 않습니다.",
- "less.validate.title": "LESS 유효성 검사 및 문제 심각도를 제어합니다.",
- "scss.colorDecorators.enable.deprecationMessage": "`scss.colorDecorators.enable` 설정은 `editor.colorDecorators`를 위해 사용되지 않습니다.",
- "scss.completion.completePropertyWithSemicolon.desc": "CSS 속성을 완료할 때 줄의 끝에 세미콜론을 삽입합니다.",
- "scss.completion.triggerPropertyValueCompletion.desc": "기본적으로 VS Code는 CSS 속성을 선택한 후 속성 값 완료를 트리거합니다. 이 동작을 비활성화하려면 이 설정을 사용합니다.",
- "scss.format.braceStyle.desc": "규칙(`collapse`)과 동일한 줄에 중괄호를 배치하거나 자체 줄(`expand`)에 중괄호를 배치합니다.",
- "scss.format.enable.desc": "기본 SCSS 포맷터를 활성화/비활성화합니다.",
- "scss.format.maxPreserveNewLines.desc": "`#scss.format.preserveNewLines#`을(를) 사용하도록 설정한 경우 한 청크에서 보존할 최대 줄 바꿈 수입니다.",
- "scss.format.newlineBetweenRules.desc": "규칙 집합을 빈 줄로 구분합니다.",
- "scss.format.newlineBetweenSelectors.desc": "선택기를 새 줄로 구분합니다.",
- "scss.format.preserveNewLines.desc": "요소를 보존하기 전에 기존 줄 바꿈 여부입니다.",
- "scss.format.spaceAroundSelectorSeparator.desc": "선택기 구분 기호 '>', '+', '~' 주위에 공백 문자가 있는지 확인합니다(예: 'a > b').",
- "scss.hover.documentation": "SCSS 호버에 태그 및 특성 설명서를 표시합니다.",
- "scss.hover.references": "SCSS 호버에 MDN에 대한 참조를 표시합니다.",
- "scss.lint.argumentsInColorFunction.desc": "매개 변수 개수가 잘못되었습니다.",
- "scss.lint.boxModel.desc": "'padding' 또는 'border'를 사용하는 경우 'width' 또는 'height'를 사용하지 마세요.",
- "scss.lint.compatibleVendorPrefixes.desc": "공급업체 관련 접두사를 사용할 경우 다른 모든 공급업체 관련 속성도 포함합니다.",
- "scss.lint.duplicateProperties.desc": "중복된 스타일 정의를 사용하지 마세요.",
- "scss.lint.emptyRules.desc": "빈 규칙 집합을 사용하지 마세요.",
- "scss.lint.float.desc": "'float'를 사용하지 않도록 합니다. Float를 사용하면 레이아웃의 한쪽이 바뀔 경우 CSS가 쉽게 깨질 수 있습니다.",
- "scss.lint.fontFaceProperties.desc": "`@font-face` 규칙에서 'src' 및 'font-family' 속성을 정의해야 합니다.",
- "scss.lint.hexColorLength.desc": "헥스 색상은 3개 또는 6개의 16진수로 구성되어야 합니다.",
- "scss.lint.idSelector.desc": "이러한 규칙은 HTML과 긴밀하게 결합되므로 선택기에 ID를 포함하면 안 됩니다.",
- "scss.lint.ieHack.desc": "IE 핵(Hack)은 IE7 이상을 지원할 때만 필요합니다.",
- "scss.lint.importStatement.desc": "Import 문은 병렬로 로드되지 않습니다.",
- "scss.lint.important.desc": "'!important'는 사용하지 않도록 합니다. 이것은 전체 CSS의 특정성에 문제가 있어서 리팩터링해야 함을 나타냅니다.",
- "scss.lint.propertyIgnoredDueToDisplay.desc": "display 때문에 속성이 무시됩니다. 예를 들어 'display: inline'을 사용할 경우 'width', 'height', 'margin-top', 'margin-bottom' 및 'float' 속성은 적용되지 않습니다.",
- "scss.lint.universalSelector.desc": "범용 선택기(*)는 느린 것으로 알려져 있습니다.",
- "scss.lint.unknownAtRules.desc": "알 수 없는 @ 규칙 입니다.",
- "scss.lint.unknownProperties.desc": "알 수 없는 속성입니다.",
- "scss.lint.unknownVendorSpecificProperties.desc": "알 수 없는 공급업체 관련 속성입니다.",
- "scss.lint.validProperties.desc": "`unknownProperties` 규칙에 따라 유효성이 검사되지 않은 속성 목록입니다.",
- "scss.lint.vendorPrefix.desc": "공급업체 관련 접두사를 사용할 경우 표준 속성도 포함합니다.",
- "scss.lint.zeroUnits.desc": "0에는 단위가 필요하지 않습니다.",
- "scss.title": "SCSS(Sass)",
- "scss.validate.desc": "모든 유효성 검사를 사용하거나 사용하지 않습니다.",
- "scss.validate.title": "SCSS 유효성 검사 및 문제 심각도를 제어합니다."
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-ko/translations/extensions/css.i18n.json b/i18n/vscode-language-pack-ko/translations/extensions/css.i18n.json
deleted file mode 100644
index 50f33e3850..0000000000
--- a/i18n/vscode-language-pack-ko/translations/extensions/css.i18n.json
+++ /dev/null
@@ -1,16 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "package": {
- "description": "CSS,LESS,SCSS 파일에서 구문 강조 표시와 괄호 일치를 제공합니다.",
- "displayName": "CSS 언어 기본 사항"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-ko/translations/extensions/debug-auto-launch.i18n.json b/i18n/vscode-language-pack-ko/translations/extensions/debug-auto-launch.i18n.json
deleted file mode 100644
index 2f2aad4edf..0000000000
--- a/i18n/vscode-language-pack-ko/translations/extensions/debug-auto-launch.i18n.json
+++ /dev/null
@@ -1,38 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "dist/extension": {
- "debug.javascript.autoAttach.always.description": "터미널에서 시작되는 모든 Node.js 프로세스에 자동으로 연결합니다.",
- "debug.javascript.autoAttach.always.label": "항상",
- "debug.javascript.autoAttach.disabled.description": "자동 연결이 사용하지 않도록 설정되어 있고 상태 표시줄에 표시되지 않습니다.",
- "debug.javascript.autoAttach.disabled.label": "사용 안 함",
- "debug.javascript.autoAttach.onlyWithFlag.description": "'--inspect' 플래그가 지정된 경우에만 자동으로 연결합니다.",
- "debug.javascript.autoAttach.onlyWithFlag.label": "플래그가 있는 경우에만",
- "debug.javascript.autoAttach.smart.description": "node_modules 폴더에 있지 않은 스크립트를 실행할 때 자동으로 연결합니다.",
- "debug.javascript.autoAttach.smart.label": "스마트",
- "scope.global": "이 머신에서 자동 연결 토글",
- "scope.workspace": "이 작업 영역에서 자동 연결 토글",
- "status.name.auto.attach": "자동 연결 디버그",
- "status.text.auto.attach.always": "자동 연결: 항상",
- "status.text.auto.attach.disabled": "자동 연결: 사용 안 함",
- "status.text.auto.attach.smart": "자동 연결: 스마트",
- "status.text.auto.attach.withFlag": "자동 연결: 플래그가 있는 경우",
- "status.tooltip.auto.attach": "디버그 모드에서 node.js 프로세스에 자동 연결",
- "tempDisable.disable": "이 세션에서 자동 연결을 일시적으로 사용 안 함",
- "tempDisable.enable": "자동 연결을 다시 사용하도록 설정",
- "tempDisable.suffix": "자동 연결: 사용 안 함"
- },
- "package": {
- "description": "노드 디버그 확장이 비활성화될 때 자동 연결 기능을 위한 도우미입니다.",
- "displayName": "노드 디버그 자동 연결",
- "toggle.auto.attach": "자동 연결 설정/해제"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-ko/translations/extensions/debug-server-ready.i18n.json b/i18n/vscode-language-pack-ko/translations/extensions/debug-server-ready.i18n.json
deleted file mode 100644
index 4e5dcdded4..0000000000
--- a/i18n/vscode-language-pack-ko/translations/extensions/debug-server-ready.i18n.json
+++ /dev/null
@@ -1,29 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "dist/extension": {
- "server.ready.nocapture.error": "형식 uri( '{0}')은(는) 대체 자리 표시자를 사용하지만 패턴은 아무것도 캡처하지 않습니다.",
- "server.ready.placeholder.error": "형식 uri('{0}')는 하나의 대체 자리 표시자만 포함해야 합니다."
- },
- "package": {
- "debug.server.ready.action.debugWithChrome.description": "'Debugger for Chrome'을 사용하여 디버깅을 시작하세요.",
- "debug.server.ready.action.description": "서버가 준비되었을 때 URI로 무엇을 하시겠습니까?",
- "debug.server.ready.action.openExternally.description": "기본 애플리케이션에서 외부 URI 열기",
- "debug.server.ready.action.startDebugging.description": "다른 시작 구성을 실행합니다.",
- "debug.server.ready.debugConfigName.description": "실행할 시작 구성의 이름입니다.",
- "debug.server.ready.pattern.description": "이 패턴이 디버그 콘솔에 나타나면 서버가 준비됩니다. 첫 번째 캡처 그룹에는 URI 또는 포트 번호가 포함되어야 합니다.",
- "debug.server.ready.serverReadyAction.description": "디버깅중인 서버 프로그램이 준비되면 URI에 따라 작동합니다( '포트 3000에서 수신 대기'또는 '지금 수신 대기 중: https://localhost:5001'양식의 출력을 디버그 콘솔에 보내면 나타남).",
- "debug.server.ready.uriFormat.description": "포트 번호에서 URI를 구성할 때 사용되는 형식 문자열입니다. 첫 번째 '%s'는 포트 번호로 대체됩니다.",
- "debug.server.ready.webRoot.description": "'Debugger for Chrome'의 디버그 구성에 전달된 값입니다.",
- "description": "디버깅 중인 서버가 준비되면 브라우저에서 URI를 엽니다.",
- "displayName": "서버 준비 작업"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-ko/translations/extensions/docker.i18n.json b/i18n/vscode-language-pack-ko/translations/extensions/docker.i18n.json
deleted file mode 100644
index 75a8438e7a..0000000000
--- a/i18n/vscode-language-pack-ko/translations/extensions/docker.i18n.json
+++ /dev/null
@@ -1,16 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "package": {
- "description": "Docker 파일에서 구문 강조 표시 및 괄호 일치를 제공합니다.",
- "displayName": "Docker 언어 기본"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-ko/translations/extensions/emmet.i18n.json b/i18n/vscode-language-pack-ko/translations/extensions/emmet.i18n.json
deleted file mode 100644
index bf825c3758..0000000000
--- a/i18n/vscode-language-pack-ko/translations/extensions/emmet.i18n.json
+++ /dev/null
@@ -1,79 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "dist\\node/abbreviationActions": {
- "wrapWithAbbreviationPrompt": "약어 입력"
- },
- "package": {
- "command.balanceIn": "균형있게(안쪽으로)",
- "command.balanceOut": "균형있게(바깥쪽으로)",
- "command.decrementNumberByOne": "1씩 감소",
- "command.decrementNumberByOneTenth": "0.1씩 감소",
- "command.decrementNumberByTen": "10씩 감소",
- "command.evaluateMathExpression": "수식 평가",
- "command.incrementNumberByOne": "1씩 증가",
- "command.incrementNumberByOneTenth": "0.1씩 증가",
- "command.incrementNumberByTen": "10씩 증가",
- "command.matchTag": "일치하는 쌍으로 이동",
- "command.mergeLines": "줄 병합",
- "command.nextEditPoint": "다음 편집 점으로 이동",
- "command.prevEditPoint": "이전 편집 점으로 이동",
- "command.reflectCSSValue": "CSS 값 반영",
- "command.removeTag": "태그 제거",
- "command.selectNextItem": "다음 항목 선택",
- "command.selectPrevItem": "이전 항목 선택",
- "command.showEmmetCommands": "Emmet 명령 표시",
- "command.splitJoinTag": "태그 분할/조인",
- "command.toggleComment": "주석 토글",
- "command.updateImageSize": "이미지 크기 업데이트",
- "command.updateTag": "태그 업데이트",
- "command.wrapWithAbbreviation": "약어로 래핑",
- "description": "VS Code에 대한 Emmet 지원",
- "emmetExclude": "Emmet 약어는 확장하면 안 되는 언어의 배열입니다.",
- "emmetExtensionsPath": "각 경로에 Emmet 구문Profiles 및/또는 코드 조각 파일이 포함될 수 있는 경로 배열입니다.\r\n충돌하는 경우 이후 경로의 프로필/코드 조각이 이전 경로의 프로필/코드 조각을 재정의합니다.\r\n자세한 내용과 예제 코드 조각 파일은 https://code.visualstudio.com/docs/editor/emmet을 참조하세요.",
- "emmetExtensionsPathItem": "Emmet syntaxProfiles 및/또는 코드 조각을 포함하는 경로입니다.",
- "emmetIncludeLanguages": "기본적으로 지원되지 않는 언어에서 Emmet 약어를 사용하도록 설정합니다. 언어와 Emmet 지원 언어 간에 매핑을 여기에 추가합니다.\r\n예: '{\"vue-html\": \"html\", \"javascript\": \"javascriptreact\"}'",
- "emmetOptimizeStylesheetParsing": "'false'로 설정할 경우 전체 파일이 구문 분석되어 현재 위치가 Emmet 약어 확장에 유효한지 확인합니다. 'true'로 설정할 경우 CSS/SCSS/Less 파일에서 현재 위치 주변의 콘텐츠만 구문 분석합니다.",
- "emmetPreferences": "Emmet의 일부 작업 및 해결 프로그램의 동작을 수정하는 데 사용되는 기본 설정입니다.",
- "emmetPreferencesAllowCompactBoolean": "'true'인 경우 부울 속성의 축소된 표기법이 생성됩니다.",
- "emmetPreferencesBemElementSeparator": "BEM 필터 사용시 요소 구분자를 클래스로 사용합니다.",
- "emmetPreferencesBemModifierSeparator": "BEM 필터 사용시 변경된 구분자를 클래스로 사용합니다.",
- "emmetPreferencesCssAfter": "CSS 약어를 확장할 때 CSS 속성의 끝에 배치할 기호입니다.",
- "emmetPreferencesCssBetween": "CSS 약어를 확장할 때 CSS 속성 및 값 사이에 배치할 기호입니다.",
- "emmetPreferencesCssColorShort": "`true`이면 `#f` 같은 색 값이 `#ffffff` 대신 `#fff`로 확장됩니다.",
- "emmetPreferencesCssFuzzySearchMinScore": "유사 일치 약어가 획득해야 하는 최소 점수(0에서 1 사이)입니다. 값이 낮을수록 가양성 일치 항목이 늘 수 있고, 값이 높을수록 가능한 일치 항목이 줄 수 있습니다.",
- "emmetPreferencesCssMozProperties": "`-`으로 시작하는 Emmet 약어에서 사용될 때 'moz' 공급업체 접두사를 가져오는 쉼표로 구분된 CSS 속성입니다. 항상 'moz' 접두사를 사용하지 않으려면 빈 문자열로 설정합니다.",
- "emmetPreferencesCssMsProperties": "`-`으로 시작하는 Emmet 약어에서 사용할 때 'ms' 공급업체 접두사를 가져오는 쉼표로 구분된 CSS 속성입니다. 항상 'ms' 접두사를 사용하지 않으려면 빈 문자열로 설정합니다.",
- "emmetPreferencesCssOProperties": "`-`으로 시작하는 Emmet 약어에서 사용할 때 'o' 공급업체 접두사를 가져오는 쉼표로 구분된 CSS 속성입니다. 항상 'o' 접두사를 사용하지 않으려면 빈 문자열로 설정합니다.",
- "emmetPreferencesCssWebkitProperties": "`-`으로 시작하는 Emmet 약어에서 사용될 때 'webkit' 공급업체 접두사를 가져오는 쉼표로 구분된 CSS 속성입니다. 항상 'webkit' 접두사를 사용하지 않으려면 빈 문자열로 설정합니다.",
- "emmetPreferencesFilterCommentAfter": "코멘트 필터가 적용 될때 코맨트 표시는 해당된 요소 뒤에 배치 해야합니다.",
- "emmetPreferencesFilterCommentBefore": "코멘트 필터가 적용 될때 코맨트 표시는 해당된 요소 앞에 배치 해야합니다.",
- "emmetPreferencesFilterCommentTrigger": "콤마로 구분된 리스트의 속성은 코멘트 필터 약어로 존재해야 합니다.",
- "emmetPreferencesFloatUnit": "부동 소수점 값의 기본 단위입니다.",
- "emmetPreferencesFormatForceIndentTags": "항상 내부 들여쓰기를 해야 하는 태그 이름의 배열입니다.",
- "emmetPreferencesFormatNoIndentTags": "절대로 내부 들여쓰기하면 안 되는 태그 이름 배열입니다.",
- "emmetPreferencesIntUnit": "정수 값의 기본 단위",
- "emmetPreferencesOutputInlineBreak": "줄 바꿈을 요소 사이에 배치하는 데 필요한 형제 인라인 요소 수입니다. '0'인 경우 인라인 요소가 항상 한 줄로 확장됩니다.",
- "emmetPreferencesOutputReverseAttributes": "'true'이면 코드 조각을 확인할 때 특성 병합 방향이 역방향이 됩니다.",
- "emmetPreferencesOutputSelfClosingStyle": "자체 닫는 태그의 스타일: html (` `), xml (` `) 또는 xhtml (` `).",
- "emmetPreferencesSassAfter": "Sass 파일에서 CSS 약어를 확장할 때 CSS 속성의 끝에 배치할 기호입니다.",
- "emmetPreferencesSassBetween": "Sass 파일에서 CSS 약어를 확장할 때 CSS 속성 및 값 사이에 배치할 기호입니다.",
- "emmetPreferencesStylusAfter": "Stylus 파일에서 CSS 약어를 확장할 때 CSS 속성의 끝에 배치할 기호입니다.",
- "emmetPreferencesStylusBetween": "Stylus 파일에서 CSS 약어를 확장할 때 CSS 속성 및 값 사이에 배치할 기호입니다.",
- "emmetShowAbbreviationSuggestions": "가능한 Emmet 약어를 제안으로 표시합니다. 스타일시트에는 적용되지 않고 emmet.showExpandedAbbreviation이 \"never\"로 설정되어 있을 때도 적용되지 않습니다.",
- "emmetShowExpandedAbbreviation": "확장된 Emmet 약어를 제안 사항으로 표시합니다.\r\n`\"inMarkupAndStylesheetFilesOnly\"` 옵션은 html, haml, jade, slim, xml, xsl, css, scss, sass, less 및 stylus에 적용됩니다.\r\n`\"always\"` 옵션은 태그/css에 관계없이 파일의 모든 부분에 적용됩니다.",
- "emmetShowSuggestionsAsSnippets": "'True'이면 Emmet 제안이 코드 조각으로 표시되며 `#editor.snippetSuggestions#` 설정에 따라 코드 조각을 정렬할 수 있습니다.",
- "emmetSyntaxProfiles": "지정된 구문에 대한 프로필을 정의하거나 특정 규칙이 포함된 고유한 프로필을 사용하세요.",
- "emmetTriggerExpansionOnTab": "사용하도록 설정하면 emmet 약어는 Tab 키를 눌렀을 때 확장됩니다.",
- "emmetUseInlineCompletions": "'true'인 경우 Emmet은 인라인 완성을 사용하여 확장을 제안합니다. 이 설정이 'true'인 동안 인라인이 아닌 완료 항목 공급자가 자주 표시되지 않도록 하려면 '다른' 항목에 대해 '#editor.quickSuggestions#'를 'inline' 또는 'off'로 전환합니다.",
- "emmetVariables": "emmet 조각에 사용되는 변수입니다."
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-ko/translations/extensions/extension-editing.i18n.json b/i18n/vscode-language-pack-ko/translations/extensions/extension-editing.i18n.json
deleted file mode 100644
index 784b9a9dc0..0000000000
--- a/i18n/vscode-language-pack-ko/translations/extensions/extension-editing.i18n.json
+++ /dev/null
@@ -1,30 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "dist/extensionLinter": {
- "apiProposalNotListed": "이 확장에 대해 제품이 고정된 API 제안 세트를 정의하므로 이 제안을 사용할 수 없습니다. 확장을 테스트할 수 있지만 게시하기 전에 VS Code 팀에 연락해야 합니다.",
- "dataUrlsNotValid": "데이터 URL은 올바른 이미지 소스가 아닙니다.",
- "embeddedSvgsNotValid": "내장 SVG는 올바른 이미지 소스가 아닙니다.",
- "httpsRequired": "이미지는 HTTPS 프로토콜을 사용해야 합니다.",
- "relativeBadgeUrlRequiresHttpsRepository": "관계형 배지 URL은 package.json에 HTTPS 프로토콜이 지정된 저장소가 필요합니다.",
- "relativeIconUrlRequiresHttpsRepository": "아이콘은 package.json에 HTTPS 프로토콜이 지정된 저장소가 필요합니다.",
- "relativeUrlRequiresHttpsRepository": "관계형 이미지 URL은 package.json에 HTTPS 프로토콜이 지정된 저장소가 필요합니다.",
- "svgsNotValid": "SVG는 올바른 이미지 소스가 아닙니다."
- },
- "dist/packageDocumentHelper": {
- "languageSpecificEditorSettings": "언어별 편집기 설정",
- "languageSpecificEditorSettingsDescription": "언어용 편집기 설정 재정의"
- },
- "package": {
- "description": "확장 제작을 위한 Lint 기능을 제공합니다.",
- "displayName": "확장 제작"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-ko/translations/extensions/fsharp.i18n.json b/i18n/vscode-language-pack-ko/translations/extensions/fsharp.i18n.json
deleted file mode 100644
index 29a3799f3a..0000000000
--- a/i18n/vscode-language-pack-ko/translations/extensions/fsharp.i18n.json
+++ /dev/null
@@ -1,16 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "package": {
- "description": "F# 파일에서 코드 조각, 구문 강조 표시, 괄호 일치 및 접기를 제공합니다.",
- "displayName": "F# 언어 기본"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-ko/translations/extensions/git-base.i18n.json b/i18n/vscode-language-pack-ko/translations/extensions/git-base.i18n.json
deleted file mode 100644
index 16dca4a8d8..0000000000
--- a/i18n/vscode-language-pack-ko/translations/extensions/git-base.i18n.json
+++ /dev/null
@@ -1,30 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "dist/remoteSource": {
- "branch name": "분기 이름",
- "error": "{0} 오류: {1}",
- "none found": "원격 리포지토리를 찾을 수 없습니다.",
- "pick url": "복제할 URL을 선택하세요.",
- "provide url": "리포지토리 URL 제공",
- "provide url or pick": "리포지토리 URL을 입력하거나 리포지토리 소스를 선택하세요.",
- "recently opened": "최근에 사용한 항목",
- "remote sources": "원격 소스",
- "type to filter": "리포지토리 이름",
- "type to search": "리포지토리 이름(입력하여 검색)",
- "url": "URL"
- },
- "package": {
- "command.api.getRemoteSources": "원격 원본 가져오기",
- "description": "GIT 고정적 기여 및 선택기입니다.",
- "displayName": "GIT 기준"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-ko/translations/extensions/git-ui.i18n.json b/i18n/vscode-language-pack-ko/translations/extensions/git-ui.i18n.json
deleted file mode 100644
index fa7abbedee..0000000000
--- a/i18n/vscode-language-pack-ko/translations/extensions/git-ui.i18n.json
+++ /dev/null
@@ -1,16 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "package": {
- "displayName": "Git UI",
- "description": "Git SCM UI 통합"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-ko/translations/extensions/git.i18n.json b/i18n/vscode-language-pack-ko/translations/extensions/git.i18n.json
deleted file mode 100644
index 8895578fdc..0000000000
--- a/i18n/vscode-language-pack-ko/translations/extensions/git.i18n.json
+++ /dev/null
@@ -1,577 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "dist/actionButton": {
- "scm button commit and push title": "{0} 커밋 및 푸시",
- "scm button commit and push tooltip": "변경 내용 커밋 및 푸시",
- "scm button commit and sync title": "{0} 커밋 및 동기화",
- "scm button commit and sync tooltip": "변경 내용 커밋 및 동기화",
- "scm button commit title": "{0} 커밋",
- "scm button commit to new branch and push tooltip": "새 분기에 커밋 및 변경 내용 푸시",
- "scm button commit to new branch and sync tooltip": "새 분기에 커밋 및 변경 내용 동기화",
- "scm button commit to new branch tooltip": "새 분기에 변경 내용 커밋",
- "scm button commit tooltip": "변경 내용 커밋",
- "scm button committing and pushing tooltip": "변경 내용 커밋 및 푸시 중...",
- "scm button committing and synching tooltip": "변경 내용 커밋 및 동기화 중...",
- "scm button committing to new branch and pushing tooltip": "새 분기에 대한 커밋 및 변경 내용 추진...",
- "scm button committing to new branch and synching tooltip": "새 분기에 커밋하고 변경 내용을 동기화하는 중...",
- "scm button committing to new branch tooltip": "새 분기에 변경 내용 커밋 중...",
- "scm button committing tooltip": "변경 내용 커밋 중...",
- "scm button continue title": "{0} Continue",
- "scm button continue tooltip": "Continue Rebase",
- "scm button continuing tooltip": "Continuing Rebase...",
- "scm button publish branch": "Branch 게시",
- "scm button publish branch running": "Branch를 게시하는 중...",
- "scm button sync description": "{0} 변경 내용 동기화 {1}{2}",
- "scm publish branch action button title": "{0} Branch 게시",
- "scm secondary button commit": "커밋",
- "syncing changes": "변경 내용을 동기화하는 중..."
- },
- "dist/askpass-main": {
- "missOrInvalid": "자격 증명이 없거나 잘못되었습니다."
- },
- "dist/autofetch": {
- "no": "아니요",
- "not now": "나중에 물어보기",
- "suggest auto fetch": "Code에서 ['git fetch']({0})를 정기적으로 실행하도록 하시겠습니까?",
- "yes": "예"
- },
- "dist/commands": {
- "HEAD not available": "'{0}'의 HEAD 버전이 없습니다.",
- "Theirs": "다른 사용자들의 항목",
- "Yours": "사용자 버전",
- "add": "작업 영역에 추가",
- "add remote": "새 원격 추가...",
- "addFrom": "URL에서 원격 추가",
- "addfrom": "{0}에서 원격 추가",
- "addremote": "원격 추가",
- "always": "항상",
- "are you sure": "'{0}'에서 Git 리포지토리가 만들어집니다. 계속하시겠습니까?",
- "auth failed": "git remote에 인증하지 못했습니다.",
- "auth failed specific": "git remote에 인증하지 못했습니다.\r\n\r\n{0}",
- "branch already exists": "이름이 '{0}'인 분기가 이미 있습니다.",
- "branch name": "분기 이름",
- "branch name does not match sanitized": "새 브랜치는 '{0}'입니다.",
- "branch name format invalid": "분기 이름은 regex {0}과(와) 일치해야 합니다.",
- "cant push": "참조를 원격에 푸시할 수 없습니다. 먼저 '풀'을 실행하여 변경 내용을 통합하세요.",
- "checkout detached": "체크 아웃 분리됨...",
- "choose": "폴더 선택...",
- "clean repo": "체크 아웃하기 전에 리포지토리 작업 트리를 정리하세요.",
- "clonefrom": "{0}에서 복제",
- "cloning": "Git 리포지토리 '{0}'을(를) 복제하는 중...",
- "commit": "스테이징된 변경 사항 커밋",
- "commit anyway": "빈 커밋 만들기",
- "commit changes": "커밋 진행",
- "commit hash": "커밋 해시",
- "commit message": "커밋 메시지",
- "commit to branch": "새 브랜치에 커밋",
- "commitMessageWithHeadLabel2": "메시지('{0}'에서 커밋)",
- "confirm branch protection commit": "보호된 브랜치에 커밋하려고 하며 커밋을 원격으로 푸시할 수 있는 권한이 없을 수 있습니다.\r\n\r\n어떻게 진행하시겠습니까?",
- "confirm delete": "{0}을(를) 삭제하시겠습니까?\r\n이 작업은 취소할 수 없습니다!\r\n계속하면 이 파일이 영구적으로 손실됩니다.",
- "confirm delete multiple": "파일 {0}개를 삭제하시겠습니까?\r\n이 작업은 취소할 수 없습니다!\r\n계속하면 해당 파일이 영구적으로 손실됩니다.",
- "confirm discard": "{0}의 변경 내용을 취소하시겠습니까?",
- "confirm discard all": "파일 {0}개의 변경 내용을 모두 취소하시겠습니까?\r\n이 작업은 취소할 수 없습니다!\r\n계속하면 현재 작업 집합이 영구적으로 손실됩니다.",
- "confirm discard all 2": "{0}\r\n\r\n이 작업은 되돌릴 수 없으며, 현재 작업 설정이 영구적으로 손실됩니다.",
- "confirm discard all single": "{0}의 변경 내용을 취소하시겠습니까?",
- "confirm discard multiple": "{0}개 파일의 변경 내용을 취소하시겠습니까?",
- "confirm empty commit": "Are you sure you want to create an empty commit?",
- "confirm force delete branch": "'{0}' 분기가 완벽히 병합되지 않았습니다. 그래도 삭제할까요?",
- "confirm force push": "변경 내용을 강제로 푸시하려고 합니다. 이렇게 하면 다른 사람의 변경 내용을 무시하거나 의도하지 않게 덮어쓸 수 있습니다.\r\n\r\n계속하시겠습니까?",
- "confirm no verify commit": "확인 없이 변경 내용을 커밋하려고 합니다. 그러면 pre-commit 후크를 건너뛰고 바람직하지 않을 수 있습니다.\r\n\r\n계속하시겠습니까?",
- "confirm publish branch": "'{0}' 분기에 원격 분기가 없습니다. 이 분기를 게시하시겠습니까?",
- "confirm restore": "{0}을(를) 복원하시겠습니까?",
- "confirm restore multiple": "{0}개 파일을 복원하겠습니까?",
- "confirm stage file with merge conflicts": "병합 충돌이 있는 {0}을(를) 스테이징하시겠습니까?",
- "confirm stage files with merge conflicts": "병합 충돌이 있는 {0} 파일을 스테이징하시겠습니까?",
- "create branch": "새 분기 만들기...",
- "create branch from": "에서 새 분기 만들기...",
- "create repo": "리포지토리 초기화",
- "current": "현재",
- "default": "기본값",
- "delete": "파일 삭제",
- "delete branch": "분기 삭제",
- "delete file": "파일 삭제",
- "delete files": "파일 삭제",
- "deleted by them": "타인이 '{0}' 파일을 삭제하고 본인이 수정했습니다.\r\n\r\n수행하고 싶은 작업을 선택하세요.",
- "deleted by us": "본인이 '{0}' 파일을 삭제하고 타인이 수정했습니다.\r\n\r\n수행하고 싶은 작업을 선택하세요.",
- "discard": "변경 내용 취소",
- "discardAll": "{0}개 파일 모두 버리기",
- "discardAll multiple": "1개 파일 취소",
- "drop all stashes": "모든 스태시를 삭제하시겠습니까? 정리 대상이 될 스태시가 {0}개 있으며 복구가 불가능할 수 있습니다.",
- "drop one stash": "모든 스태시를 삭제하시겠습니까? 정리 대상이 될 스태시가 1개 있으며 복구가 불가능할 수 있습니다.",
- "empty commit": "커밋 메시지가 비어 있어 커밋 작업이 취소되었습니다.",
- "force": "강제 체크 아웃",
- "force push not allowed": "강제 푸시가 허용되지 않습니다. 'git.allowForcePush' 설정으로 사용하도록 설정하세요.",
- "git error": "Git 오류",
- "git error details": "Git: {0}",
- "git.timeline.openDiffCommand": "비교 열기",
- "git.title.diff": "{0} ↔ {1}",
- "git.title.diffRefs": "{0}({1}) ↔ {0} ({2})",
- "git.title.index": "{0}(인덱스)",
- "git.title.ref": "{0} ({1})",
- "git.title.workingTree": "{0}(작업 트리)",
- "init": "Git 리포지토리를 초기화할 작업 영역 폴더 선택",
- "init repo": "리포지토리 초기화",
- "invalid branch name": "잘못된 분기 이름",
- "keep ours": "현재 버전 유지",
- "keep theirs": "다른 사용자 버전 유지",
- "learn more": "자세한 정보",
- "local changes": "체크 아웃하면 로컬 변경 내용을 덮어씁니다.",
- "merge commit": "마지막 커밋은 병합 커밋이었습니다. 실행 취소하시겠습니까?",
- "merge conflicts": "병합 충돌이 있습니다. 해결한 후 계속하세요.",
- "missing user info": "Git에서 'user.name' 및 'user.email'을 구성하세요.",
- "never": "안 함",
- "never again": "다시 표시 안 함",
- "never ask again": "네, 다시 표시 안 함",
- "no changes": "커밋할 변경 내용이 없습니다.",
- "no changes stash": "스태시할 변경 내용이 없습니다.",
- "no more": "HEAD가 커밋을 가리키지 않으므로 실행 취소할 수 없습니다.",
- "no rebase": "진행 중인 다시 지정이 없습니다.",
- "no remotes added": "리포지토리에 원격 항목이 없습니다.",
- "no remotes to fetch": "이 리포지토리에 페치할 원격 항목이 구성되어 있지 않습니다.",
- "no remotes to publish": "리포지토리에 게시하도록 구성된 원격이 없습니다.",
- "no remotes to pull": "리포지토리에 풀하도록 구성된 원격 항목이 없습니다.",
- "no remotes to push": "리포지토리에 푸시하도록 구성된 원격이 없습니다.",
- "no staged changes": "커밋할 스테이징된 변경 사항이 없습니다.\r\n\r\n모든 변경 사항을 스테이징하고 직접 커밋하시겠습니까?",
- "no stashes": "리포지토리에 스태시가 없습니다.",
- "no tags": "이 리포지토리에는 태그가 없습니다.",
- "no verify commit not allowed": "확인 없는 커밋은 허용되지 않습니다. 'git.allowNoVerifyCommit' 설정을 통해 사용하도록 설정하세요.",
- "nobranch": "원격에 푸시할 분기를 체크 아웃하세요.",
- "ok": "확인",
- "open git log": "Git 로그 열기",
- "open repo": "리포지토리 열기",
- "openrepo": "열기",
- "openreponew": "새 창에서 열기",
- "pick branch pull": "다음에서 가져올 분기 선택",
- "pick provider": "'{0}' 분기를 다음에 게시할 공급자 선택:",
- "pick remote": "'{0}' 분기를 다음에 게시하려면 원격을 선택하세요:",
- "pick remote pull repo": "분기를 가져올 원격 선택",
- "pick stash to apply": "적용할 스태시 선택",
- "pick stash to drop": "삭제할 스태시 선택",
- "pick stash to pop": "표시할 스태시 선택",
- "proposeopen": "복제된 리포지토리를 여시겠습니까?",
- "proposeopen init": "초기화된 리포지토리를 여시겠습니까?",
- "proposeopen2": "복제된 리포지토리를 열거나 현재 작업 영역에 추가하시겠습니까?",
- "proposeopen2 init": "초기화된 리포지토리를 열거나 현재 작업 영역에 추가하겠습니까?",
- "provide branch name": "새 분기 이름을 제공하세요.",
- "provide commit hash": "커밋 해시를 제공하세요.",
- "provide commit message": "커밋 메시지를 제공하세요.",
- "provide remote name": "원격 이름을 제공하세요.",
- "provide stash message": "필요한 경우 스태시 메시지를 입력하세요.",
- "provide tag message": "태그에 주석을 달 메시지를 입력하세요.",
- "provide tag name": "태그 이름을 입력하세요.",
- "publish to": "{0}에 게시",
- "remote already exists": "원격 '{0}'이(가) 이미 존재합니다.",
- "remote branch at": "{0}에서 원격 분기",
- "remote name": "원격 이름",
- "remote name format invalid": "잘못된 원격 이름 형식",
- "remove remote": "제거할 원격 선택",
- "repourl": "리포지토리 URL",
- "restore file": "파일 복원",
- "restore files": "파일 복원",
- "save and commit": "모두 저장 및 커밋",
- "save and stash": "모두 저장 및 스태시",
- "select a branch to merge from": "병합할 분기 선택",
- "select a branch to rebase onto": "다시 지정할 대상 분기 선택",
- "select a ref to checkout": "체크아웃할 참조 선택",
- "select a ref to checkout detached": "분리 모드에서 체크 아웃할 참조 선택",
- "select a ref to create a new branch from": "ref를 선택하여 다음에서 '{0}' 분기를 만듭니다.",
- "select a tag to delete": "삭제할 태그 선택",
- "select branch to delete": "삭제할 분기 선택",
- "select log level": "로그 수준 선택",
- "selectFolder": "리포지토리 위치 선택",
- "show command output": "명령 출력 표시",
- "stash": "스태시",
- "stash merge conflicts": "스태시를 적용하는 중 병합 충돌이 발생했습니다.",
- "stash message": "스태시 메시지",
- "stashcheckout": "스태시 및 체크 아웃",
- "sure drop": "스태시 {0}을(를) 삭제하시겠습니까?",
- "sync is unpredictable": "이 작업은 '{0}/{1}'에서 커밋을 가져오고 푸시합니다.",
- "tag at": "{0}의 태그",
- "tag message": "메시지",
- "tag name": "태그 이름",
- "there are untracked files": "취소하는 경우 {0}개의 추적되지 않은 파일이 디스크에서 삭제됩니다.",
- "there are untracked files single": "취소한 경우 다음 추적되지 않은 파일이 디스크에서 삭제됩니다. {0}.",
- "undo commit": "병합 커밋 실행 취소",
- "unsaved files": "저장되지 않은 {0}개의 파일이 있습니다.\r\n\r\n커밋하기 전에 저장하시겠습니까?",
- "unsaved files single": "파일 {0}에는 계속하는 경우 커밋에 포함되지 않을 저장되지 않은 변경 내용이 있습니다.\r\n\r\n커밋하기 전에 저장하시겠습니까?",
- "unsaved stash files": "저장되지 않은 파일이 {0}개 있습니다.\r\n\r\n스태시하기 전에 저장하시겠습니까?",
- "unsaved stash files single": "계속하는 경우 파일의 저장되지 않은 변경 내용이 스태시에 포함되지 않습니다{0}.\r\n\r\n스태시하기 전에 저장하시겠습니까?",
- "warn untracked": "이렇게 하면 {0}개의 추적되지 않은 파일이 삭제됩니다!\r\n삭제 후에는 되돌릴 수 없습니다!\r\n이 파일은 영원히 손실됩니다.",
- "yes": "예",
- "yes discard tracked": "1개의 추적된 파일 취소",
- "yes discard tracked multiple": "{0}개의 추적된 파일 취소",
- "yes never again": "예, 다시 표시 안 함"
- },
- "dist/log": {
- "gitLogLevel": "로그 수준: {0}"
- },
- "dist/main": {
- "downloadgit": "Git 다운로드",
- "git20": "Git {0}이(가) 설치된 것 같습니다. 코드는 2 이하의 Git에서 최적으로 작동합니다.",
- "git2526": "설치된 Git {0}에 알려진 문제가 있습니다. Git 기능이 제대로 작동하도록 하려면 2.27 이상의 Git으로 업데이트하세요.",
- "neverShowAgain": "다시 표시 안 함",
- "notfound": "Git을 찾을 수 없습니다. 'git.path'를 사용하여 Git을 설치하거나 구성합니다.",
- "skipped": "다음 위치에서 찾은 git 건너뛰기: {0}",
- "updateGit": "Git 업데이트",
- "using git": "{1}에서 git {0}을(를) 사용하는 중",
- "validating": "{0}에서 찾은 git 유효성을 검사하는 중"
- },
- "dist/model": {
- "no repositories": "사용 가능한 리포지토리가 없습니다.",
- "not supported": "'git.scanRepositories' 설정에서는 절대 경로를 사용할 수 없습니다.",
- "pick repo": "리포지토리 선택",
- "repoOnHomeDriveRootWarning": "'{0}'에서 Git 리포지토리를 자동으로 열 수 없습니다. 해당 Git 리포지토리를 열려면 VS Code 폴더로 직접 여세요.",
- "too many submodules": "'{0}' 리포지토리에 자동으로 열리지 않는 {1}개의 하위 모듈이 있습니다. 모듈 내의 파일을 열러 각 모듈을 개별적으로 열 수는 있습니다."
- },
- "dist/postCommitCommands": {
- "scm secondary button commit and push": "커밋 및 밀기",
- "scm secondary button commit and sync": "커밋 및 동기화"
- },
- "dist/repository": {
- "add known": "'{0}'을(를) .gitignore에 추가하시겠어요?",
- "added by them": "충돌: 타인이 추가",
- "added by us": "충돌: 자체 추가",
- "always pull": "항상 풀",
- "both added": "충돌: 양쪽에서 추가",
- "both deleted": "충돌: 양쪽에서 삭제",
- "both modified": "충돌: 양쪽에서 수정",
- "changes": "변경 사항",
- "commit": "커밋",
- "commit in rebase": "기준 주소를 다시 지정하는 중에는 커밋 메시지를 변경할 수 없습니다. 기준 주소 다시 지정 작업을 완료하고, 대신 대화형 기준 주소 다시 지정을 사용하세요.",
- "commitMessage": "메시지(커밋할 {0})",
- "commitMessageCountdown": "현재 줄에서 {0} 글자 남음",
- "commitMessageWarning": "현재 줄에서 {0} 글자 초과 {1}",
- "commitMessageWhitespacesOnlyWarning": "현재 커밋 메시지에는 공백 문자만 포함됩니다.",
- "commitMessageWithHeadLabel": "메시지('{1}'에서 커밋할 {0})",
- "deleted": "삭제",
- "deleted by them": "충돌: 타인이 삭제",
- "deleted by us": "충돌: 자체 삭제",
- "dont pull": "풀 안 함",
- "git.title.deleted": "{0}(삭제됨)",
- "git.title.index": "{0}(인덱스)",
- "git.title.ours": "{0}(우리의 변경 내용)",
- "git.title.theirs": "{0}(다른 사용자의 변경 내용)",
- "git.title.untracked": "{0}(추적되지 않음)",
- "git.title.workingTree": "{0}(작업 트리)",
- "huge": "'{0}'의 Git 리포지토리에 활성 변경 내용이 너무 많습니다. Git 기능의 하위 집합만 사용할 수 있도록 설정됩니다.",
- "ignored": "무시됨",
- "index added": "인덱스 추가됨",
- "index copied": "인덱스 복사됨",
- "index deleted": "인덱스 삭제됨",
- "index modified": "인덱스 수정됨",
- "index renamed": "인덱스 이름 변경됨",
- "intent to add": "추가할 의도",
- "merge changes": "변경 사항 병합",
- "modified": "수정",
- "neveragain": "다시 표시 안 함",
- "no": "아니요",
- "ok": "확인",
- "open": "열기",
- "open.merge": "병합 열기",
- "pull": "풀",
- "pull branch maybe rebased": "현재 분기 '{0}'이(가) 다시 지정된 것 같습니다. 해당 분기로 풀하시겠습니까?",
- "pull maybe rebased": "현재 분기가 다시 지정된 것 같습니다. 해당 분기로 풀하시겠습니까?",
- "pull n": "{1}/{2}에서 {0}개 커밋 풀",
- "pull push n": "{2}/{3} 간에 {0}개 커밋 풀 및 {1}개 커밋 푸시",
- "push n": "{1}/{2}(으)로 {0}개 커밋 푸시",
- "push success": "성공적으로 푸시 되었습니다.",
- "staged changes": "스테이징된 변경 사항",
- "sync changes": "변경 내용 동기화",
- "sync is unpredictable": "동기화 중입니다. 취소하면 리포지토리가 손상될 수 있습니다.",
- "tooManyChangesWarning": "너무 많은 변경 내용이 감지되었습니다. 첫 번째 {0} 변경 내용만 아래에 표시됩니다.",
- "untracked": "추적되지 않음",
- "untracked changes": "추적되지 않은 변경 사항",
- "yes": "예"
- },
- "dist/statusbar": {
- "checkout": "분기/태그 체크 아웃...",
- "publish branch": "분기 게시",
- "publish to": "{0}에 게시",
- "publish to...": "다음에 게시...",
- "rebasing": "기준 주소 다시 지정",
- "syncing changes": "변경 내용을 동기화하는 중..."
- },
- "dist/timelineProvider": {
- "git.timeline.email": "전자 메일",
- "git.timeline.openComparison": "비교 열기",
- "git.timeline.source": "Git 기록",
- "git.timeline.stagedChanges": "스테이징된 변경 내용",
- "git.timeline.uncommitedChanges": "커밋되지 않은 변경 내용",
- "git.timeline.you": "사용자"
- },
- "package": {
- "colors.added": "추가된 리소스의 색입니다.",
- "colors.conflict": "충돌이 발생한 리소스의 색상입니다.",
- "colors.deleted": "삭제된 리소스의 색상입니다.",
- "colors.ignored": "무시된 리소스의 색상입니다.",
- "colors.modified": "수정된 리소스의 색상입니다.",
- "colors.renamed": "이름이 바뀌었거나 복사된 리소스의 색입니다.",
- "colors.stageDeleted": "스테이징되어 있는 삭제된 리소스의 색입니다.",
- "colors.stageModified": "스테이징되어 있는 수정된 리소스의 색입니다.",
- "colors.submodule": "서브모듈 자원의 색상",
- "colors.untracked": "추적되지 않은 리소스의 색상입니다.",
- "command.addRemote": "원격 추가...",
- "command.api.getRemoteSources": "원격 원본 가져오기",
- "command.api.getRepositories": "Git 리포지토리",
- "command.api.getRepositoryState": "리포지토리 상태 가져오기",
- "command.branch": "분기 만들기...",
- "command.branchFrom": "분기를 만듭니다...",
- "command.checkout": "다음으로 체크 아웃...",
- "command.checkoutDetached": "체크 아웃(분리됨)...",
- "command.cherryPick": "cherry-pick...",
- "command.clean": "변경 내용 취소",
- "command.cleanAll": "모든 변경 내용 취소",
- "command.cleanAllTracked": "추적된 모든 변경 내용 취소",
- "command.cleanAllUntracked": "추적되지 않은 모든 변경 내용 취소",
- "command.clone": "복제하다",
- "command.cloneRecursive": "복제(재귀)",
- "command.close": "리포지토리 닫기",
- "command.closeAllDiffEditors": "모든 diff 편집기 닫기",
- "command.commit": "커밋",
- "command.commitAll": "모두 커밋",
- "command.commitAllAmend": "모두 커밋 (수정)",
- "command.commitAllAmendNoVerify": "모두 커밋(수정, 확인 안 함)",
- "command.commitAllNoVerify": "모두 커밋(확인 안 함)",
- "command.commitAllSigned": "모두 커밋(로그오프됨)",
- "command.commitAllSignedNoVerify": "모두 커밋(로그오프됨, 확인 안 함)",
- "command.commitEmpty": "빈 내용을 커밋합니다.",
- "command.commitEmptyNoVerify": "빈 상태로 커밋(확인 안 함)",
- "command.commitMessageAccept": "커밋 메시지 수락",
- "command.commitMessageDiscard": "커밋 메시지 삭제",
- "command.commitNoVerify": "커밋(확인 안 함)",
- "command.commitStaged": "스테이징된 항목 커밋",
- "command.commitStagedAmend": "스테이징된 항목 커밋(수정)",
- "command.commitStagedAmendNoVerify": "커밋 스테이징됨(수정, 확인 안 함)",
- "command.commitStagedNoVerify": "커밋 스테이징됨(확인 안 함)",
- "command.commitStagedSigned": "스테이징된 항목 커밋(로그오프됨)",
- "command.commitStagedSignedNoVerify": "커밋 스테이징됨(로그오프됨, 확인 안 함)",
- "command.createTag": "태그 만들기",
- "command.deleteBranch": "분기 삭제...",
- "command.deleteTag": "태그 삭제",
- "command.fetch": "페치",
- "command.fetchAll": "모든 원격에서 페치",
- "command.fetchPrune": "페치(정리)",
- "command.git.acceptMerge": "병합 수락",
- "command.ignore": ".gitignore에 추가",
- "command.init": "리포지토리 초기화",
- "command.merge": "분기 병합...",
- "command.openAllChanges": "모든 변경 내용 열기",
- "command.openChange": "변경 내용 열기",
- "command.openFile": "파일 열기",
- "command.openHEADFile": "파일 열기(HEAD)",
- "command.openRepository": "리포지토리 열기",
- "command.publish": "분기 게시...",
- "command.pull": "풀",
- "command.pullFrom": "가져올 위치...",
- "command.pullRebase": "풀(다시 지정)",
- "command.push": "푸시",
- "command.pushFollowTags": "푸시(태그 팔로우)",
- "command.pushFollowTagsForce": "푸시(태그 팔로우, 강제 적용)",
- "command.pushForce": "푸시(강제)",
- "command.pushTags": "푸시 태그",
- "command.pushTo": "다음으로 푸시...",
- "command.pushToForce": "...로 푸시 (강제)",
- "command.rebase": "분기 다시 지정...",
- "command.rebaseAbort": "다시 지정 중단",
- "command.refresh": "새로 고침",
- "command.removeRemote": "원격 제거",
- "command.rename": "이름 바꾸기",
- "command.renameBranch": "분기 이름 바꾸기...",
- "command.restoreCommitTemplate": "커밋 템플릿 복원",
- "command.revealFileInOS.linux": "상위 폴더 열기",
- "command.revealFileInOS.mac": "Finder에 표시",
- "command.revealFileInOS.windows": "파일 탐색기에 표시",
- "command.revealInExplorer": "탐색기 보기에 표시",
- "command.revertChange": "변경 내용 되돌리기",
- "command.revertSelectedRanges": "선택한 범위 되돌리기",
- "command.setLogLevel": "로그 수준 설정...",
- "command.showOutput": "Git 출력 표시",
- "command.stage": "변경 내용 스테이징",
- "command.stageAll": "모든 변경 내용 스테이징",
- "command.stageAllMerge": "모든 병합 변경 내용 스테이징",
- "command.stageAllTracked": "추적된 모든 변경 내용 스테이징",
- "command.stageAllUntracked": "추적되지 않은 모든 변경 내용 스테이징",
- "command.stageChange": "변경 내용 스테이징",
- "command.stageSelectedRanges": "선택한 범위 스테이징",
- "command.stash": "스태시",
- "command.stashApply": "스태시 적용하기...",
- "command.stashApplyLatest": "최신 스태시 적용하기",
- "command.stashDrop": "스태시 삭제...",
- "command.stashDropAll": "모든 스태시 삭제...",
- "command.stashIncludeUntracked": "스태시(미추적 포함)",
- "command.stashPop": "스태시 꺼내기...",
- "command.stashPopLatest": "최신 스태시 꺼내기",
- "command.sync": "동기화",
- "command.syncRebase": "동기화(다시 지정)",
- "command.timelineCompareWithSelected": "선택한 항목과 비교",
- "command.timelineCopyCommitId": "커밋 ID 복사",
- "command.timelineCopyCommitMessage": "커밋 메시지 복사",
- "command.timelineOpenDiff": "변경 내용 열기",
- "command.timelineSelectForCompare": "비교를 위해 선택",
- "command.undoCommit": "마지막 커밋 실행 취소",
- "command.unstage": "변경 내용 스테이징 취소",
- "command.unstageAll": "모든 변경 내용 스테이징 취소",
- "command.unstageSelectedRanges": "선택한 범위 스테이징 취소",
- "config.allowForcePush": "강제 푸시(임대 사용 또는 사용 안 함)가 가능한지 여부를 제어합니다.",
- "config.allowNoVerifyCommit": "pre-commit 및 commit-msg 후크를 실행하지 않는 커밋이 허용되는지를 제어합니다.",
- "config.alwaysShowStagedChangesResourceGroup": "스테이징된 변경 내용 리소스 그룹을 항상 표시합니다.",
- "config.alwaysSignOff": "모든 커밋에 대한 확인 플래그를 제어합니다.",
- "config.autoRepositoryDetection": "리포지토리가 자동으로 감지되어야 하는 경우를 구성합니다.",
- "config.autoRepositoryDetection.false": "자동 리포지토리 검사를 사용하지 않습니다.",
- "config.autoRepositoryDetection.openEditors": "열려 있는 파일의 부모 폴더를 검사합니다.",
- "config.autoRepositoryDetection.subFolders": "현재 열려 있는 폴더의 하위 폴더를 검사합니다.",
- "config.autoRepositoryDetection.true": "현재 열려 있는 폴더의 하위 폴더와 열려 있는 파일의 부모 폴더를 모두 검사합니다.",
- "config.autoStash": "풀하기 전에 변경 내용을 스태시하고 풀하는 데 성공한 후 변경 내용을 복원합니다.",
- "config.autofetch": "true로 설정하면 커밋이 현재 Git 리포지토리의 기본 원격에서 자동으로 페치됩니다. 'all'로 설정하면 모든 원격에서 페치됩니다.",
- "config.autofetchPeriod": "#git.autofetch#가 사용되는 경우 각 자동 git fetch 사이의 시간(초)입니다.",
- "config.autorefresh": "자동 새로 고침을 사용할지 여부입니다.",
- "config.branchPrefix": "새 브랜치를 만들 때 사용되는 접두사입니다.",
- "config.branchProtection": "보호된 브랜치 목록입니다. 기본적으로 변경 내용이 보호된 브랜치에 커밋되기 전에 프롬프트가 표시됩니다. 프롬프트는 '#git.branchProtectionPrompt#' 설정을 사용하여 제어할 수 있습니다.",
- "config.branchProtectionPrompt": "변경 내용을 보호된 브랜치에 커밋하기 전에 프롬프트를 표시할지 여부를 제어합니다.",
- "config.branchProtectionPrompt.alwaysCommit": "항상 보호된 브랜치에 변경 내용을 커밋합니다.",
- "config.branchProtectionPrompt.alwaysCommitToNewBranch": "변경 사항을 항상 새 브랜치에 커밋",
- "config.branchProtectionPrompt.alwaysPrompt": "변경 내용이 보호된 분기에 커밋되기 전에 항상 프롬프트를 표시합니다.",
- "config.branchRandomNameDictionary": "무작위로 생성된 분기 이름에 사용되는 사전 목록입니다. 각 값은 분기 이름의 세그먼트를 생성하는 데 사용되는 사전을 나타냅니다. 지원되는 사전: '형용사', '동물', '색상', '숫자'.",
- "config.branchRandomNameDictionary.adjectives": "무작위 형용사",
- "config.branchRandomNameDictionary.animals": "임의의 동물 이름",
- "config.branchRandomNameDictionary.colors": "임의의 색상 이름",
- "config.branchRandomNameDictionary.numbers": "100에서 999 사이의 난수",
- "config.branchRandomNameEnable": "새 브랜치를 만들 때 임의 이름이 생성되는지 여부를 제어합니다.",
- "config.branchSortOrder": "분기의 정렬 순서를 제어합니다.",
- "config.branchValidationRegex": "새 분기 이름의 유효성을 검사하는 정규식입니다.",
- "config.branchWhitespaceChar": "새 브랜치 이름의 공백을 바꾸고 임의로 생성된 브랜치 이름의 세그먼트를 구분할 문자입니다.",
- "config.checkoutType": "'다음으로 체크 아웃...'을 실행할 때 나열되는 Git 참조의 형식을 제어합니다.",
- "config.checkoutType.local": "로컬 분기",
- "config.checkoutType.remote": "원격 분기",
- "config.checkoutType.tags": "태그",
- "config.closeDiffOnOperation": "변경 내용을 스태시, 커밋, 삭제, 스테이징 또는 스테이징 해제할 때 diff 편집기를 자동으로 닫을지 여부를 제어합니다.",
- "config.commandsToLog": "`stdout`를 [git output](command:git.showOutput)에 기록하는 git 명령(예: 커밋, 푸시) 목록입니다. git 명령에 클라이언트 측 후크가 구성된 경우 클라이언트 측 후크의 `stdout`도 [git output](command:git.showOutput)에 기록됩니다.",
- "config.confirmEmptyCommits": "'Git: Commit Empty' 명령에 대한 빈 항목 생성 커밋을 항상 확인합니다.",
- "config.confirmForcePush": "강제 푸시하기 전에 확인을 요청할지 여부를 제어합니다.",
- "config.confirmNoVerifyCommit": "확인하지 않고 커밋하기 전에 확인을 요청할지를 제어합니다.",
- "config.confirmSync": "Git 리포지토리를 동기화하기 전에 확인합니다.",
- "config.countBadge": "Git 개수 배지를 제어합니다.",
- "config.countBadge.all": "모든 변경 내용을 계산합니다.",
- "config.countBadge.off": "카운터를 끕니다.",
- "config.countBadge.tracked": "추적된 변경 내용만 계산합니다.",
- "config.decorations.enabled": "Git에서 색과 배지를 탐색기와 열려 있는 편집기 뷰에 적용하는지 여부를 제어합니다.",
- "config.defaultCloneDirectory": "Git 리포지토리를 복제할 기본 위치입니다.",
- "config.detectSubmodules": "Git 하위 모듈을 자동으로 검색할지 여부를 제어합니다.",
- "config.detectSubmodulesLimit": "Git submodules 검출 개수의 제한을 제어합니다.",
- "config.discardAllScope": "`모든 변경 내용 취소` 명령으로 취소되는 변경 내용을 제어합니다. `all`이면 모든 변경 내용을 취소합니다. `tracked`이면 추적된 파일만 취소합니다. `prompt`이면 작업을 실행할 때마다 프롬프트 대화 상자를 표시합니다.",
- "config.enableCommitSigning": "GPG 또는 X.509로 서명 커밋을 사용합니다.",
- "config.enableSmartCommit": "단계적 변경 사항이 없는 경우 모든 변경 사항을 저장합니다.",
- "config.enableStatusBarSync": "Git Sync 명령이 상태 표시줄에 표시되는지 여부를 제어합니다.",
- "config.enabled": "Git을 사용하도록 설정했는지 여부입니다.",
- "config.experimental.installGuide": "Git 설정 흐름에 대한 실험적 개선 사항입니다.",
- "config.fetchOnPull": "사용하도록 설정하면 풀할 때 모든 분기를 페치합니다. 그렇지 않으면 현재 분기만 페치합니다.",
- "config.followTagsWhenSync": "동기화 명령을 실행할 때 모든 푸시 태그를 팔로우합니다.",
- "config.ignoreLegacyWarning": "레거시 Git 경고를 무시합니다.",
- "config.ignoreLimitWarning": "리포지토리에 변경 내용이 너무 많으면 경고를 무시합니다.",
- "config.ignoreMissingGitWarning": "Git이 없으면 경고를 무시합니다.",
- "config.ignoreRebaseWarning": "풀할 때 분기가 다시 지정된 것 같은 경우 경고를 무시합니다.",
- "config.ignoreSubmodules": "파일 트리의 하위 모듈 수정 내용을 무시합니다.",
- "config.ignoreWindowsGit27Warning": "Windows에 Git 2.25~2.26이 설치되어 있는 경우 경고를 무시합니다.",
- "config.ignoredRepositories": "무시할 Git 리포지토리의 목록입니다.",
- "config.inputValidation": "커밋 메시지 입력 유효성 검사를 언제 표시할지 제어합니다.",
- "config.inputValidationLength": "경고 표시를 위한 커밋 메시지 길이 임계값을 제어합니다.",
- "config.inputValidationSubjectLength": "경고 표시를 위한 커밋 메시지 제목 길이 임계값을 제어합니다. `config.inputValidationLength` 값을 상속하려면 이 임계값 설정을 해제하세요.",
- "config.logLevel": "[git output](command:git.showOutput)에 로그할 정보(있는 경우)를 지정합니다.",
- "config.logLevel.critical": "중요한 정보만 로그",
- "config.logLevel.debug": "로그 전용 디버그, 정보, 경고, 오류 및 중요 정보",
- "config.logLevel.error": "로그 전용 오류 및 중요 정보",
- "config.logLevel.info": "로그 전용 정보, 경고, 오류 및 중요 정보",
- "config.logLevel.off": "아무 것도 로그하지 않음",
- "config.logLevel.trace": "모든 정보 로그",
- "config.logLevel.warn": "로그 전용 경고, 오류 및 중요 정보",
- "config.mergeEditor": "현재 충돌 중인 파일의 병합 편집기를 엽니다.",
- "config.openAfterClone": "복제 후에 자동으로 리포지토리를 열지 여부를 제어합니다.",
- "config.openAfterClone.always": "항상 현재 창에서 엽니다.",
- "config.openAfterClone.alwaysNewWindow": "항상 새 창에서 엽니다.",
- "config.openAfterClone.prompt": "항상 동작을 확인합니다.",
- "config.openAfterClone.whenNoFolderOpen": "열려 있는 폴더가 없는 경우에만 현재 창에서 엽니다.",
- "config.openDiffOnClick": "변경을 클릭할 때 Diff 편집기가 열릴지 여부를 제어합니다. 그렇지 않으면 일반 편집기가 열립니다.",
- "config.path": "git 실행 파일의 경로 및 파일 이름입니다(예: `C:\\Program Files\\Git\\bin\\git.exe`(Windows)). 조회할 여러 경로를 포함하는 문자열 값의 배열일 수도 있습니다.",
- "config.postCommitCommand": "커밋 후 git 명령을 실행합니다.",
- "config.postCommitCommand.none": "커밋 후 명령을 실행하지 않습니다.",
- "config.postCommitCommand.push": "성공적인 커밋 후 'Git Push'를 실행합니다.",
- "config.postCommitCommand.sync": "성공적인 커밋 후 'Git Sync'를 실행합니다.",
- "config.promptToSaveFilesBeforeCommit": "Git가 제출(commit)하기 전에 저장되지 않은 파일을 검사할지를 제어합니다.",
- "config.promptToSaveFilesBeforeCommit.always": "저장되지 않은 파일이 있는지 확인합니다.",
- "config.promptToSaveFilesBeforeCommit.never": "이 검사를 사용하지 않도록 설정합니다.",
- "config.promptToSaveFilesBeforeCommit.staged": "저장되지 않은 스테이징된 파일만 확인합니다.",
- "config.promptToSaveFilesBeforeStash": "Git이 변경 사항을 스태시하기 전에 저장되지 않은 파일을 검사할지를 제어합니다.",
- "config.promptToSaveFilesBeforeStash.always": "저장되지 않은 파일이 있는지 확인합니다.",
- "config.promptToSaveFilesBeforeStash.never": "이 검사를 사용하지 않도록 설정합니다.",
- "config.promptToSaveFilesBeforeStash.staged": "저장되지 않은 스테이징된 파일만 확인합니다.",
- "config.pruneOnFetch": "페치할 때 정리합니다.",
- "config.pullTags": "풀할 때 모든 태그를 페치합니다.",
- "config.rebaseWhenSync": "동기화 명령을 실행할 때 Git에서 다시 지정을 사용하게 합니다.",
- "config.repositoryScanIgnoredFolders": "`#git.autoRepositoryDetection#`이 `true` 또는 `subFolders`로 설정된 경우 Git 리포지토리를 검색하는 동안 무시되는 폴더 목록입니다.",
- "config.repositoryScanMaxDepth": "`#git.autoRepositoryDetection#`이 `true` 또는 `subFolders`로 설정된 경우 Git 리포지토리에 대한 작업 영역 간 폴더를 스캔할 때 사용되는 깊이를 제어합니다. 제한 없이 '-1'로 설정할 수 있습니다.",
- "config.requireGitUserConfig": "명시적 Git 사용자 구성을 요구할지 또는 누락된 경우 Git에서 추측하도록 허용할지를 제어합니다.",
- "config.scanRepositories": "Git 리포지토리를 검색할 경로의 목록입니다.",
- "config.showActionButton": "작업 단추가 원본 제어 뷰에 표시되는지 여부를 제어합니다.",
- "config.showActionButton.commit": "로컬 분기에서 커밋할 준비가 된 파일을 수정한 경우 변경 내용을 커밋하는 작업 단추를 표시합니다.",
- "config.showActionButton.publish": "추적 원격 분기가 없는 경우 로컬 분기를 게시하는 작업 단추를 표시합니다.",
- "config.showActionButton.sync": "로컬 분기가 원격 분기 앞이나 뒤에 있을 때 변경 내용을 동기화하는 작업 단추를 표시합니다.",
- "config.showCommitInput": "Git 소스 제어판에 커밋 입력을 표시할지 여부를 제어합니다.",
- "config.showInlineOpenFileAction": "Git 변경점 보기에서 파일 열기 동작 줄을 표시할지의 여부를 제어합니다.",
- "config.showProgress": "Git 작업에서 진행률을 표시할지 여부를 제어합니다.",
- "config.showPushSuccessNotification": "푸시가 성공했을 때 알림을 표시할지 여부를 제어합니다.",
- "config.smartCommitChanges": "스마트 커밋에서 자동으로 스테이징되는 변경 사항을 제어합니다.",
- "config.smartCommitChanges.all": "모든 변경 사항을 자동으로 스테이징합니다.",
- "config.smartCommitChanges.tracked": "추적된 변경 사항만 자동으로 스테이징했습니다.",
- "config.statusLimit": "Git 상태 명령에서 구문 분석할 수 있는 변경 내용의 수를 제한하는 방법을 제어합니다. 제한이 없는 경우 0으로 설정할 수 있습니다.",
- "config.suggestSmartCommit": "스마트 커밋을 사용하도록 제안합니다(스테이징된 변경 사항이 없는 경우 모든 변경 사항 커밋).",
- "config.supportCancellation": "동기화 작업을 실행할 때 사용자가 작업을 취소할 수 있도록 알림이 표시되는지 여부를 제어합니다.",
- "config.terminalAuthentication": "통합 터미널에서 생성된 git 프로세스의 인증 처리기로 VS Code를 사용할지 여부를 제어합니다. 참고: 이 설정의 변경 내용을 적용하려면 터미널을 다시 시작해야 합니다.",
- "config.terminalGitEditor": "통합 터미널에서 생성된 git 프로세스에 대한 git 편집기로 VS Code 사용할지 여부를 제어합니다. 참고: 이 설정에서 변경 사항을 선택하려면 터미널을 다시 시작해야 합니다.",
- "config.timeline.date": "타임라인 보기에서 항목에 사용할 날짜를 제어합니다.",
- "config.timeline.date.authored": "작성 날짜 사용",
- "config.timeline.date.committed": "커밋된 날짜 사용",
- "config.timeline.showAuthor": "타임라인 보기에 커밋 작성자를 표시할지를 제어합니다.",
- "config.timeline.showUncommitted": "타임라인 보기에서 커밋되지 않은 변경 내용을 표시할지 여부를 제어합니다.",
- "config.untrackedChanges": "추적되지 않은 변경 내용의 작동 방식을 제어합니다.",
- "config.untrackedChanges.hidden": "추적되지 않은 변경 내용이 숨겨지고 여러 작업에서 제외됩니다.",
- "config.untrackedChanges.mixed": "추적 및 추적되지 않은 모든 변경 내용이 함께 표시되고 동일한 작업이 수행됩니다.",
- "config.untrackedChanges.separate": "추적되지 않은 변경 내용은 소스 제어 보기에 별도로 표시됩니다. 또한 여러 작업에서 제외됩니다.",
- "config.useCommitInputAsStashMessage": "커밋 입력 상자의 메시지를 기본 스태시 메시지로 사용할지 여부를 제어합니다.",
- "config.useEditorAsCommitInput": "커밋 입력 상자에 메시지가 제공되지 않을 때마다 커밋 메시지를 작성하는 데 전체 텍스트 편집기를 사용할지 여부를 제어합니다.",
- "config.useForcePushWithLease": "강제 푸시가 좀 더 안전한 force-with-lease 변형을 사용하는지 여부를 제어합니다.",
- "config.useIntegratedAskPass": "통합 버전을 사용하기 위해 GIT_ASKPASS를 덮어써야 하는지 여부를 제어합니다.",
- "config.verboseCommit": "'#git.useEditorAsCommitInput#'이 사용하도록 설정된 경우 자세한 정보 표시 출력을 사용하도록 설정합니다.",
- "description": "Git SCM 통합",
- "displayName": "Git",
- "submenu.branch": "분기",
- "submenu.changes": "변경 사항",
- "submenu.commit": "커밋",
- "submenu.commit.amend": "수정",
- "submenu.commit.signoff": "승인",
- "submenu.explorer": "Git",
- "submenu.pullpush": "풀, 푸시",
- "submenu.remotes": "원격",
- "submenu.stash": "스태시",
- "submenu.tags": "태그",
- "view.workbench.cloneRepository": "리포지토리를 로컬에서 복제할 수 있습니다.\r\n[리포지토리 복제](command:git.clone 'Git 확장이 활성화되면 리포지토리 복제')",
- "view.workbench.learnMore": "VS Code에서 Git 및 소스 제어를 사용하는 방법에 대해 자세히 알아보려면 [Microsoft Docs](https://aka.ms/vscode-scm)를 참조하세요.",
- "view.workbench.scm.disabled": "git 기능을 사용하려면 [설정](command:workbench.action.openSettings?%5B%22git.enabled%22%5D)에서 git을 사용하도록 설정하세요.\r\nVS Code에서 Git 및 원본 제어를 사용하는 방법에 대해 자세히 알아보려면 [Microsoft Docs](https://aka.ms/vscode-scm)를 참조하세요.",
- "view.workbench.scm.empty": "Git 기능을 사용하려면 Git 리포지토리가 포함된 폴더를 열거나 URL에서 복제할 수 있습니다.\r\n[폴더 열기](command:vscode.openFolder)\r\n[리포지토리 복제](command:git.clone)\r\nVS Code에서 Git 및 소스 제어를 사용하는 방법에 대해 자세히 알아보려면 [관련 문서를 참조](https://aka.ms/vscode-scm)하세요.",
- "view.workbench.scm.emptyWorkspace": "현재 열려 있는 작업 영역에 Git 리포지토리를 포함하는 폴더가 없습니다.\r\n[작업 영역에 폴더 추가](command:workbench.action.addRootFolder)\r\nVS Code에서 Git 및 소스 제어를 사용하는 방법에 대해 자세히 알아보려면 [관련 문서를 참조](https://aka.ms/vscode-scm)하세요.",
- "view.workbench.scm.folder": "현재 열린 폴더에 Git 리포지토리가 없습니다. Git에서 제공하는 소스 제어 기능을 사용하도록 설정할 리포지토리를 초기화할 수 있습니다.\r\n[리포지토리 초기화](command:git.init?%5Btrue%5D)\r\nVS Code에서 Git 및 소스 제어를 사용하는 방법에 대해 자세히 알아보려면 [Microsoft Docs](https://aka.ms/vscode-scm)를 읽어보세요.",
- "view.workbench.scm.missing": "인기 있는 소스 제어 시스템인 Git을 설치하여 코드 변경 내용을 추적하고 다른 사용자와 공동 작업합니다. [Git 가이드](https://aka.ms/vscode-scm)에서 자세히 알아보세요.",
- "view.workbench.scm.missing.linux": "소스 제어는 설치 중인 Git에 따라 달라집니다.\r\n[Linux용 Git 다운로드](https://git-scm.com/download/linux)\r\n설치 후에는 [다시 로드하세요](command:workbench.action.reloadWindow)(또는 [문제를 해결하세요](command:git.showOutput)). 추가 원본 제어 공급자는 [Marketplace](command:workbench.extensions.search?%22%40category%3A%5C%22scm%20providers%5C%22%22)에서 설치할 수 있습니다.",
- "view.workbench.scm.missing.mac": "[macOS용 GIT 다운로드](https://git-scm.com/download/mac)\r\n설치 후에는 [다시 로드하세요](command:workbench.action.reloadWindow)(또는 [문제를 해결하세요](command:git.showOutput)). 추가 원본 제어 공급자는 [Marketplace](command:workbench.extensions.search?%22%40category%3A%5C%22scm%20providers%5C%22%22)에서 설치할 수 있습니다.",
- "view.workbench.scm.missing.windows": "[Windows용 GIT 다운로드](https://git-scm.com/download/win)\r\n설치 후에는 [다시 로드하세요](command:workbench.action.reloadWindow)(또는 [문제를 해결하세요](command:git.showOutput)). 추가 원본 제어 공급자는 [Marketplace](command:workbench.extensions.search?%22%40category%3A%5C%22scm%20providers%5C%22%22)에서 설치할 수 있습니다.",
- "view.workbench.scm.workspace": "현재 열린 작업 영역에 Git 리포지토리가 포함된 폴더가 없습니다. Git에서 제공하는 소스 제어 기능을 사용하도록 설정할 폴더의 리포지토리를 초기화할 수 있습니다.\r\n[리포지토리 초기화](command:git.init)\r\nVS Code에서 Git 및 소스 제어를 사용하는 방법에 대해 자세히 알아보려면 [Microsoft Docs](https://aka.ms/vscode-scm)를 읽어보세요."
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-ko/translations/extensions/github-authentication.i18n.json b/i18n/vscode-language-pack-ko/translations/extensions/github-authentication.i18n.json
deleted file mode 100644
index f671e7b44a..0000000000
--- a/i18n/vscode-language-pack-ko/translations/extensions/github-authentication.i18n.json
+++ /dev/null
@@ -1,27 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "dist/githubServer": {
- "code.detail": "인증을 완료하려면 GitHub로 이동하여 위의 일회용 코드를 붙여넣으세요.",
- "code.title": "코드: {0}",
- "no": "아니요",
- "otherReasonMessage": "GitHub를 사용하기 위해 이 확장에 대한 승인을 아직 완료하지 않았습니다. 계속 시도하시겠습니까?",
- "progress": "새 탭에서 [{0}]({0})을 열고 일회성 코드 {1}을(를) 붙여넣습니다.",
- "signingIn": "github.com 로그인하는 중...",
- "signingInAnotherWay": "github.com 로그인하는 중...",
- "userCancelledMessage": "로그인하는 데 문제가 있나요? 다른 방법을 시도해 보시겠습니까?",
- "yes": "예"
- },
- "package": {
- "description": "GitHub 인증 공급자",
- "displayName": "GitHub 인증"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-ko/translations/extensions/github-browser.i18n.json b/i18n/vscode-language-pack-ko/translations/extensions/github-browser.i18n.json
deleted file mode 100644
index d654de055f..0000000000
--- a/i18n/vscode-language-pack-ko/translations/extensions/github-browser.i18n.json
+++ /dev/null
@@ -1,19 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "package": {
- "displayName": "GitHub 브라우저",
- "description": "GitHub 리포지토리 원격 탐색"
- },
- "dist/scm": {
- "no changes": "커밋할 변경 내용이 없습니다."
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-ko/translations/extensions/github.i18n.json b/i18n/vscode-language-pack-ko/translations/extensions/github.i18n.json
deleted file mode 100644
index 5d77304461..0000000000
--- a/i18n/vscode-language-pack-ko/translations/extensions/github.i18n.json
+++ /dev/null
@@ -1,46 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "dist/publish": {
- "ignore": "리포지토리에 포함할 파일을 선택합니다.",
- "openingithub": "GitHub에서 열기",
- "pick folder": "GitHub에 게시할 폴더 선택",
- "publishing_done": "'{0}' 리포지토리를 GitHub에 게시했습니다.",
- "publishing_firstcommit": "첫 번째 커밋을 만드는 중",
- "publishing_private": "프라이빗 GitHub 리포지토리에 게시하는 중",
- "publishing_public": "퍼블릭 GitHub 리포지토리에 게시하는 중",
- "publishing_uploading": "파일을 업로드하는 중"
- },
- "dist/pushErrorHandler": {
- "create a fork": "포크 만들기",
- "create fork": "GitHub 포크 만들기",
- "createghpr": "GitHub 끌어오기 요청을 만드는 중...",
- "createpr": "PR 만들기",
- "donepr": "GitHub에 PR '{0}/{1}#{2}'을(를) 만들었습니다.",
- "fork": "GitHub의 '{0}/{1}'(으)로 푸시할 수 있는 권한이 없습니다. 대신 포크를 만들어 포크에 푸시하시겠습니까?",
- "forking": "'{0}/{1}'을(를) 포크하는 중...",
- "forking_done": "GitHub에 '{0}' 포크를 만들었습니다.",
- "forking_pushing": "변경 내용을 푸시하는 중...",
- "no": "아니요",
- "no pr template": "템플릿 없음",
- "openingithub": "GitHub에서 열기",
- "openpr": "PR 열기",
- "select pr template": "끌어오기 요청 템플릿 선택"
- },
- "package": {
- "config.gitAuthentication": "VS Code 내에서 Git 명령에 대해 자동 GitHub 인증을 사용하도록 설정할지 여부를 제어합니다.",
- "config.gitProtocol": "GitHub 리포지토리를 복제하는 데 사용되는 프로토콜 제어",
- "description": "VS Code용 GitHub 기능",
- "displayName": "GitHub",
- "welcome.publishFolder": "이 폴더를 GitHub 리포지토리에 직접 게시할 수도 있습니다. 게시된 후에는 Git 및 GitHub에서 제공하는 소스 제어 기능에 액세스할 수 있습니다.\r\n[$(github) GitHub에 게시](command:github.publish)",
- "welcome.publishWorkspaceFolder": "작업 영역 폴더를 GitHub 리포지토리에 직접 게시할 수도 있습니다. 게시된 후에는 Git 및 GitHub에서 제공하는 소스 제어 기능에 액세스할 수 있습니다.\r\n[$(github) GitHub에 게시](command:github.publish)"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-ko/translations/extensions/go.i18n.json b/i18n/vscode-language-pack-ko/translations/extensions/go.i18n.json
deleted file mode 100644
index 68cfdc0152..0000000000
--- a/i18n/vscode-language-pack-ko/translations/extensions/go.i18n.json
+++ /dev/null
@@ -1,16 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "package": {
- "description": "Go 파일에서 구문 강조 표시 및 괄호 일치를 제공합니다.",
- "displayName": "Go 언어 기본"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-ko/translations/extensions/groovy.i18n.json b/i18n/vscode-language-pack-ko/translations/extensions/groovy.i18n.json
deleted file mode 100644
index 9996f074bf..0000000000
--- a/i18n/vscode-language-pack-ko/translations/extensions/groovy.i18n.json
+++ /dev/null
@@ -1,16 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "package": {
- "description": "Groovy 파일에서 코드 조각, 구문 강조 표시, 괄호 일치 및 접기를 제공합니다.",
- "displayName": "Groovy 언어 기본"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-ko/translations/extensions/grunt.i18n.json b/i18n/vscode-language-pack-ko/translations/extensions/grunt.i18n.json
deleted file mode 100644
index 4889a1bd5d..0000000000
--- a/i18n/vscode-language-pack-ko/translations/extensions/grunt.i18n.json
+++ /dev/null
@@ -1,25 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "dist/main": {
- "execFailed": "폴더 {0}에 대해 Grunt 자동 검색에 실패하고 {1} 오류가 발생했습니다.",
- "gruntShowOutput": "출력으로 이동",
- "gruntTaskDetectError": "까다로운 작업을 찾는 동안 문제가 발생했습니다. 자세한 내용은 출력을 참조하세요."
- },
- "package": {
- "config.grunt.autoDetect": "Grunt 작업 검색의 활성화를 제어합니다. Grunt 작업 검색으로 인해 열려 있는 작업 영역의 파일이 실행될 수 있습니다.",
- "description": "VS Code에 Grunt 기능을 추가할 확장입니다.",
- "displayName": "VS Code에 대한 Grunt 지원",
- "grunt.taskDefinition.args.description": "Grunt 작업에 전달할 명령줄 인수",
- "grunt.taskDefinition.file.description": "작업을 제공하는 Grunt 파일이며 생략할 수 있습니다.",
- "grunt.taskDefinition.type.description": "사용자 지정할 Grunt 작업입니다."
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-ko/translations/extensions/gulp.i18n.json b/i18n/vscode-language-pack-ko/translations/extensions/gulp.i18n.json
deleted file mode 100644
index eaaf2c8ea3..0000000000
--- a/i18n/vscode-language-pack-ko/translations/extensions/gulp.i18n.json
+++ /dev/null
@@ -1,24 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "dist/main": {
- "execFailed": "폴더 {0}에 대해 Gulp 자동 검색에 실패하고 {1} 오류가 발생했습니다.",
- "gulpShowOutput": "출력으로 이동",
- "gulpTaskDetectError": "Gulp 작업을 찾는 데 문제가 있습니다. 자세한 내용은 출력을 참조하세요."
- },
- "package": {
- "config.gulp.autoDetect": "Gulp 작업 검색의 활성화를 제어합니다. Gulp 작업 검색으로 인해 열려 있는 작업 영역의 파일이 실행될 수 있습니다.",
- "description": "VSCode에 Gulp 기능을 추가할 확장입니다.",
- "displayName": "VSCode에 대한 Gulp 지원",
- "gulp.taskDefinition.file.description": "작업을 제공하는 Gulp 파일이며 생략할 수 있습니다.",
- "gulp.taskDefinition.type.description": "사용자 지정할 Gulp 작업입니다."
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-ko/translations/extensions/handlebars.i18n.json b/i18n/vscode-language-pack-ko/translations/extensions/handlebars.i18n.json
deleted file mode 100644
index 594d8c5cda..0000000000
--- a/i18n/vscode-language-pack-ko/translations/extensions/handlebars.i18n.json
+++ /dev/null
@@ -1,16 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "package": {
- "description": "Handlebars 파일에서 구문 강조 표시 및 괄호 일치를 제공합니다.",
- "displayName": "Handlebars 언어 기본"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-ko/translations/extensions/hlsl.i18n.json b/i18n/vscode-language-pack-ko/translations/extensions/hlsl.i18n.json
deleted file mode 100644
index 27b335199b..0000000000
--- a/i18n/vscode-language-pack-ko/translations/extensions/hlsl.i18n.json
+++ /dev/null
@@ -1,16 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "package": {
- "description": "HLSL 파일에서 구문 강조 표시 및 괄호 일치를 제공합니다.",
- "displayName": "HLSL 언어 기본 사항"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-ko/translations/extensions/html-language-features.i18n.json b/i18n/vscode-language-pack-ko/translations/extensions/html-language-features.i18n.json
deleted file mode 100644
index 7ffc1c9563..0000000000
--- a/i18n/vscode-language-pack-ko/translations/extensions/html-language-features.i18n.json
+++ /dev/null
@@ -1,59 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "client\\dist\\node/htmlClient": {
- "configureButton": "구성",
- "folding.end": "접기 영역 끝",
- "folding.html": "간단한 HTML5 시작 지점",
- "folding.start": "영역 접기 시작",
- "htmlserver.name": "HTML 언어 서버",
- "linkedEditingQuestion": "VS Code에 이제 태그 이름 자동 바꾸기가 기본적으로 지원됩니다. 사용하도록 설정하시겠습니까?"
- },
- "package": {
- "description": "HTML 및 Handlebar 파일에 대해 다양한 언어 지원을 제공합니다.",
- "displayName": "HTML 언어 기능",
- "html.autoClosingTags": "HTML 태그의 자동 닫기를 사용하거나 사용하지 않습니다.",
- "html.autoCreateQuotes": "HTML 속성 할당을 위한 따옴표 자동 생성을 사용하도록/사용하지 않도록 설정합니다. 따옴표의 유형은 `#html.completion.attributeDefaultValue#`로 구성할 수 있습니다.",
- "html.completion.attributeDefaultValue": "완료가 수락되는 경우 특성의 기본값을 제어합니다.",
- "html.completion.attributeDefaultValue.doublequotes": "특성 값이 \"\"(으)로 설정됩니다.",
- "html.completion.attributeDefaultValue.empty": "특성 값이 설정되지 않았습니다.",
- "html.completion.attributeDefaultValue.singlequotes": "특성 값이 ''(으)로 설정되어 있습니다.",
- "html.customData.desc": "[사용자 지정 데이터 형식](https://github.com/microsoft/vscode-html-languageservice/blob/master/docs/customData.md)에 따라 JSON 파일을 가리키는 상대 파일 경로의 목록입니다.\r\n\r\nVS Code는 시작 시 사용자 지정 데이터를 로드하여 JSON 파일에 지정하는 사용자 지정 HTML 태그, 특성 및 특성 값에 대한 HTML 지원을 향상합니다.\r\n\r\n파일 경로는 작업 영역에 상대적이며 작업 영역 폴더 설정만 고려됩니다.",
- "html.format.contentUnformatted.desc": "쉼표로 분리된 태그 목록으로, 콘텐츠의 서식을 다시 지정해서는 안 됩니다. 'pre' 태그의 기본값은 'null'로 설정됩니다.",
- "html.format.enable.desc": "기본 HTML 포맷터를 사용하거나 사용하지 않도록 설정합니다.",
- "html.format.extraLiners.desc": "쉼표로 분리된 태그 목록으로 앞에 줄 바꿈을 추가로 넣어야 합니다. '\"head, body, /html\"'의 기본값은 'null'로 설정됩니다.",
- "html.format.indentHandlebars.desc": "`{{#foo}}` 및 `{{/foo}}`를 서식 지정하고 들여쓰기합니다.",
- "html.format.indentInnerHtml.desc": "'' 및 '' 섹션을 들여씁니다.",
- "html.format.maxPreserveNewLines.desc": "청크 한 개에 유지할 수 있는 최대 줄 바꿈 수입니다. 무제한일 때는 'null'을 사용합니다.",
- "html.format.preserveNewLines.desc": "요소 앞에 있는 기존 줄 바꿈을 유지해야 하는지 제어합니다. 요소 앞에만 적용되며 태그 안에서나 텍스트에는 적용되지 않습니다.",
- "html.format.templating.desc": "django, erb, handlebars 및 php 템플릿 언어 태그를 사용합니다.",
- "html.format.unformatted.desc": "쉼표로 분리된 태그 목록으로, 서식을 다시 지정해서는 안 됩니다. https://www.w3.org/TR/html5/dom.html#phrasing-content에 나열된 모든 태그의 기본값은 'null'로 설정됩니다.",
- "html.format.unformattedContentDelimiter.desc": "이 문자열 간에 텍스트 콘텐츠를 함께 유지합니다.",
- "html.format.wrapAttributes.alignedmultiple": "줄 길이를 초과하는 경우 줄 바꿈하여 특성을 세로로 정렬합니다.",
- "html.format.wrapAttributes.auto": "줄 길이를 초과하는 경우에만 특성을 래핑합니다.",
- "html.format.wrapAttributes.desc": "특성을 래핑합니다.",
- "html.format.wrapAttributes.force": "첫 번째 특성을 제외한 각 특성을 래핑합니다.",
- "html.format.wrapAttributes.forcealign": "첫 번째 특성을 제외한 각 특성을 래핑하고 정렬된 상태를 유지합니다.",
- "html.format.wrapAttributes.forcemultiline": "각 특성을 래핑합니다.",
- "html.format.wrapAttributes.preserve": "특성 줄 바꿈을 유지합니다.",
- "html.format.wrapAttributes.preservealigned": "특성의 줄 바꿈을 유지하되 정렬합니다.",
- "html.format.wrapAttributesIndentSize.desc": "래핑된 속성을 N자 이후로 들여씁니다. 기본 들여쓰기 크기를 사용하려면 'null'을 사용하세요. `#html.format.wrapAttributes#`가 '정렬'로 설정된 경우 무시됩니다.",
- "html.format.wrapLineLength.desc": "한 줄당 최대 문자 수입니다(0 = 사용 안 함).",
- "html.hover.documentation": "가리킬 때 태그 및 특성 설명서를 표시합니다.",
- "html.hover.references": "가리킬 때 MDN에 대한 참조를 표시합니다.",
- "html.mirrorCursorOnMatchingTag": "일치하는 HTML 태그에서 미러링 커서를 활성화/비활성화합니다.",
- "html.mirrorCursorOnMatchingTagDeprecationMessage": "사용되지 않으며, 대신 `editor.linkedEditing`이 사용됩니다.",
- "html.suggest.html5.desc": "기본으로 제공하는 HTML 언어 지원에서 HTML5 태그와 속성 및 값을 제안할지 여부를 제어합니다.",
- "html.trace.server.desc": "VS Code와 HTML 언어 서버 간 통신을 추적합니다.",
- "html.validate.scripts": "기본으로 제공하는 HTML 언어 지원에서 포함된 스크립트 유효성을 검사할지 여부를 제어합니다.",
- "html.validate.styles": "기본으로 제공하는 HTML 언어 지원에서 포함된 스타일의 유효성을 검사할지 여부를 제어합니다."
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-ko/translations/extensions/html.i18n.json b/i18n/vscode-language-pack-ko/translations/extensions/html.i18n.json
deleted file mode 100644
index bda6731ab8..0000000000
--- a/i18n/vscode-language-pack-ko/translations/extensions/html.i18n.json
+++ /dev/null
@@ -1,16 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "package": {
- "description": "HTML 파일에서 구문 강조 표시, 대괄호 일치 및 코드 조각 기능을 제공합니다.",
- "displayName": "HTML 언어 기본 사항"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-ko/translations/extensions/image-preview.i18n.json b/i18n/vscode-language-pack-ko/translations/extensions/image-preview.i18n.json
deleted file mode 100644
index d7b9dc0544..0000000000
--- a/i18n/vscode-language-pack-ko/translations/extensions/image-preview.i18n.json
+++ /dev/null
@@ -1,39 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "dist/binarySizeStatusBarEntry": {
- "sizeB": "{0}B",
- "sizeGB": "{0}GB",
- "sizeKB": "{0}KB",
- "sizeMB": "{0}MB",
- "sizeStatusBar.name": "이미지 이진 크기",
- "sizeTB": "{0}TB"
- },
- "dist/preview": {
- "preview.imageLoadError": "이미지를 로드하는 동안 오류가 발생했습니다.",
- "preview.imageLoadErrorLink": "VS Code의 표준 텍스트/바이너리 편집기를 사용하여 파일을 여시겠습니까?"
- },
- "dist/sizeStatusBarEntry": {
- "sizeStatusBar.name": "이미지 크기"
- },
- "dist/zoomStatusBarEntry": {
- "zoomStatusBar.name": "이미지 확대/축소",
- "zoomStatusBar.placeholder": "확대/축소 수준 선택",
- "zoomStatusBar.wholeImageLabel": "전체 이미지"
- },
- "package": {
- "command.zoomIn": "확대",
- "command.zoomOut": "축소",
- "customEditors.displayName": "이미지 미리 보기",
- "description": "VS Code의 기본 제공 이미지 미리 보기를 제공함",
- "displayName": "이미지 미리 보기"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-ko/translations/extensions/ini.i18n.json b/i18n/vscode-language-pack-ko/translations/extensions/ini.i18n.json
deleted file mode 100644
index 14a67c6569..0000000000
--- a/i18n/vscode-language-pack-ko/translations/extensions/ini.i18n.json
+++ /dev/null
@@ -1,16 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "package": {
- "description": "Ini 파일에서 구문 강조 표시 및 괄호 일치를 제공합니다.",
- "displayName": "Ini 언어 기본 사항"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-ko/translations/extensions/ipynb.i18n.json b/i18n/vscode-language-pack-ko/translations/extensions/ipynb.i18n.json
deleted file mode 100644
index 1fc7f34ab1..0000000000
--- a/i18n/vscode-language-pack-ko/translations/extensions/ipynb.i18n.json
+++ /dev/null
@@ -1,16 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "package": {
- "description": "Jupyter의 .ipynb 노트북 파일 열기 및 읽기에 대한 기본 지원을 제공합니다",
- "displayName": ".ipynb 지원"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-ko/translations/extensions/jake.i18n.json b/i18n/vscode-language-pack-ko/translations/extensions/jake.i18n.json
deleted file mode 100644
index 215c2d6d49..0000000000
--- a/i18n/vscode-language-pack-ko/translations/extensions/jake.i18n.json
+++ /dev/null
@@ -1,24 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "dist/main": {
- "execFailed": "폴더 {0}에 대해 Jake 자동 검색에 실패하고 {1} 오류가 발생했습니다.",
- "jakeShowOutput": "출력으로 이동",
- "jakeTaskDetectError": "jake 작업을 찾는 데 문제가 있습니다. 자세한 내용은 출력을 참조하세요."
- },
- "package": {
- "config.jake.autoDetect": "Jake 작업 검색의 사용 여부를 제어합니다. Jake 작업 검색으로 인해 열려 있는 작업 영역의 파일이 실행될 수 있습니다.",
- "description": "VS Code에 Jake 기능을 추가할 확장입니다.",
- "displayName": "VS Code에 대한 Jake 지원",
- "jake.taskDefinition.file.description": "작업을 제공하는 Jake 파일이며 생략할 수 있습니다.",
- "jake.taskDefinition.type.description": "사용자 지정할 Jake 작업입니다."
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-ko/translations/extensions/java.i18n.json b/i18n/vscode-language-pack-ko/translations/extensions/java.i18n.json
deleted file mode 100644
index 27d0ca6cbf..0000000000
--- a/i18n/vscode-language-pack-ko/translations/extensions/java.i18n.json
+++ /dev/null
@@ -1,16 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "package": {
- "description": "Java 파일에서 코드 조각, 구문 강조 표시, 괄호 일치 및 접기를 제공합니다.",
- "displayName": "Java 언어 기본"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-ko/translations/extensions/javascript.i18n.json b/i18n/vscode-language-pack-ko/translations/extensions/javascript.i18n.json
deleted file mode 100644
index 6074ec5dce..0000000000
--- a/i18n/vscode-language-pack-ko/translations/extensions/javascript.i18n.json
+++ /dev/null
@@ -1,16 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "package": {
- "description": "JavaScript 파일에서 코드 조각, 구문 강조 표시, 괄호 일치 및 접기를 제공합니다.",
- "displayName": "JavaScript 언어 기본"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-ko/translations/extensions/json-language-features.i18n.json b/i18n/vscode-language-pack-ko/translations/extensions/json-language-features.i18n.json
deleted file mode 100644
index af01447aef..0000000000
--- a/i18n/vscode-language-pack-ko/translations/extensions/json-language-features.i18n.json
+++ /dev/null
@@ -1,73 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "client\\dist\\node/jsonClient": {
- "json.clearCache.completed": "JSON 스키마 캐시를 지웠습니다.",
- "json.resolveError": "JSON: 스키마 확인 오류",
- "json.schemaResolutionDisabledMessage": "스키마 다운로드를 사용할 수 없습니다. 구성하려면 클릭하세요.",
- "json.schemaResolutionErrorMessage": "스키마를 확인할 수 없습니다. 다시 시도하려면 클릭하세요.",
- "jsonserver.name": "JSON 언어 서버",
- "schemaDownloadDisabled": "'{0}' 설정을 통해 스키마 다운로드를 사용하지 않도록 설정함",
- "untitled.schema": "{0}을(를) 로드할 수 없습니다."
- },
- "client\\dist\\node/languageStatus": {
- "documentColorsStatusItem.name": "JSON 색 기호 상태",
- "documentSymbolsStatusItem.name": "JSON 개요 상태",
- "foldingRangesStatusItem.name": "JSON 접기 상태",
- "openExtension": "확장 열기",
- "openSettings": "설정 열기",
- "pending.detail": "JSON 정보 로드 중",
- "schema.noSchema": "이 파일에 대해 구성된 스키마가 없습니다.",
- "schema.showdocs": "JSON 스키마 구성에 대한 자세한 정보...",
- "schemaFromFolderSettings": "작업 영역 설정에 구성됨",
- "schemaFromUserSettings": "사용자 설정에 구성됨",
- "schemaFromextension": "확장별로 구성: {0}",
- "schemaPicker.title": "{0}에 사용되는 JSON 스키마",
- "status.button.configure": "구성",
- "status.error": "사용된 스키마를 계산할 수 없습니다.",
- "status.limitedDocumentColors.details": "{0} 색 데코레이터만 표시됨",
- "status.limitedDocumentColors.short": "색 기호 제한",
- "status.limitedDocumentSymbols.details": "표시된 {0} 문서 기호만",
- "status.limitedDocumentSymbols.short": "개요 제한",
- "status.limitedFoldingRanges.details": "{0} 접기 범위만 표시됨",
- "status.limitedFoldingRanges.short": "접기 범위 제한",
- "status.multipleSchema": "여러 JSON 스키마가 구성됨",
- "status.noSchema": "구성된 JSON 스키마가 없음",
- "status.noSchema.short": "스키마 유효성 검사 없음",
- "status.notJSON": "JSON 편집기 아님",
- "status.openSchemasLink": "스키마 표시",
- "status.singleSchema": "JSON 스키마가 구성됨",
- "status.withSchema.short": "스키마 유효성 검사됨",
- "status.withSchemas.short": "스키마 유효성 검사됨",
- "statusItem.name": "JSON 유효성 검사 상태"
- },
- "package": {
- "description": "JSON 파일에 대한 다양한 언어 지원을 제공합니다.",
- "displayName": "JSON 언어 기능",
- "json.clickToRetry": "다시 시도하려면 클릭하세요.",
- "json.colorDecorators.enable.deprecationMessage": "`json.colorDecorators.enable` 설정은 `editor.colorDecorators`를 위해 사용되지 않습니다.",
- "json.colorDecorators.enable.desc": "색 데코레이터 사용 또는 사용 안 함",
- "json.command.clearCache": "스키마 캐시 지우기",
- "json.enableSchemaDownload.desc": "사용하도록 설정하면 http 및 https 위치에서 JSON 스키마를 페치할 수 있습니다.",
- "json.format.enable.desc": "기본 JSON 포맷터를 사용하거나 사용하지 않습니다.",
- "json.format.keepLines.desc": "서식을 지정할 때 기존의 모든 새 줄을 유지합니다.",
- "json.maxItemsComputed.desc": "계산된 최대 윤곽선 기호 및 폴딩 영역의 수입니다(성능상의 이유로 제한됨).",
- "json.maxItemsExceededInformation.desc": "최대 윤곽 기호 및 접기 영역 수를 초과하는 경우 알림을 표시합니다.",
- "json.schemaResolutionErrorMessage": "스키마를 확인할 수 없습니다.",
- "json.schemas.desc": "현재 프로젝트에서 스키마를 JSON 파일에 연결합니다.",
- "json.schemas.fileMatch.desc": "JSON 파일을 스키마로 확인할 때 일치하려는 파일 패턴의 배열입니다. `*`를 와일드카드로 사용할 수 있습니다. 제외 패턴을 정의하고 '!'로 시작할 수 있습니다. 하나 이상의 일치 패턴이 있고 마지막 일치 패턴이 제외 패턴이 아닌 경우 파일이 일치합니다.",
- "json.schemas.fileMatch.item.desc": "JSON 파일로 스키마를 확인할 때 일치할 '*'를 포함할 수 있는 파일 패턴입니다.",
- "json.schemas.schema.desc": "지정된 URL의 스키마 정의입니다. 스키마는 스키마 URL에 대한 액세스 방지를 위해서만 제공해야 합니다.",
- "json.schemas.url.desc": "현재 디렉터리에 있는 스키마의 URL 또는 상대 경로",
- "json.tracing.desc": "VS Code와 JSON 언어 서버 간 통신을 추적합니다.",
- "json.validate.enable.desc": "JSON 유효성 검사를 사용하거나 사용하지 않도록 설정합니다."
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-ko/translations/extensions/json.i18n.json b/i18n/vscode-language-pack-ko/translations/extensions/json.i18n.json
deleted file mode 100644
index 94d100984b..0000000000
--- a/i18n/vscode-language-pack-ko/translations/extensions/json.i18n.json
+++ /dev/null
@@ -1,16 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "package": {
- "description": "JSON 파일에서 구문 강조 표시 및 대괄호 일치 기능을 제공합니다.",
- "displayName": "JSON 언어 기본 사항"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-ko/translations/extensions/less.i18n.json b/i18n/vscode-language-pack-ko/translations/extensions/less.i18n.json
deleted file mode 100644
index 70f515cad1..0000000000
--- a/i18n/vscode-language-pack-ko/translations/extensions/less.i18n.json
+++ /dev/null
@@ -1,16 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "package": {
- "description": "Less 파일에서 구문 강조 표시, 괄호 일치 및 접기를 제공합니다.",
- "displayName": "Less 언어 기본"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-ko/translations/extensions/log.i18n.json b/i18n/vscode-language-pack-ko/translations/extensions/log.i18n.json
deleted file mode 100644
index 72988b2220..0000000000
--- a/i18n/vscode-language-pack-ko/translations/extensions/log.i18n.json
+++ /dev/null
@@ -1,16 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "package": {
- "description": "확장명이 .log인 파일에 대해 구문 강조 표시를 제공합니다.",
- "displayName": "로그"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-ko/translations/extensions/lua.i18n.json b/i18n/vscode-language-pack-ko/translations/extensions/lua.i18n.json
deleted file mode 100644
index d6b8a80ac9..0000000000
--- a/i18n/vscode-language-pack-ko/translations/extensions/lua.i18n.json
+++ /dev/null
@@ -1,16 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "package": {
- "description": "Lua 파일에서 구문 강조 표시 및 괄호 일치를 제공합니다.",
- "displayName": "Lua 언어 기본 사항"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-ko/translations/extensions/make.i18n.json b/i18n/vscode-language-pack-ko/translations/extensions/make.i18n.json
deleted file mode 100644
index d50707846e..0000000000
--- a/i18n/vscode-language-pack-ko/translations/extensions/make.i18n.json
+++ /dev/null
@@ -1,16 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "package": {
- "description": "Make 파일에서 구문 강조 표시 및 괄호 일치를 제공합니다.",
- "displayName": "Make 언어 기본"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-ko/translations/extensions/markdown-basics.i18n.json b/i18n/vscode-language-pack-ko/translations/extensions/markdown-basics.i18n.json
deleted file mode 100644
index a82dd8bc4f..0000000000
--- a/i18n/vscode-language-pack-ko/translations/extensions/markdown-basics.i18n.json
+++ /dev/null
@@ -1,16 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "package": {
- "description": "Markdown에 대해 코드 조각 및 구문 강조 표시를 제공합니다.",
- "displayName": "Markdown 언어 기본 사항"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-ko/translations/extensions/markdown-language-features.i18n.json b/i18n/vscode-language-pack-ko/translations/extensions/markdown-language-features.i18n.json
deleted file mode 100644
index 04474ceed7..0000000000
--- a/i18n/vscode-language-pack-ko/translations/extensions/markdown-language-features.i18n.json
+++ /dev/null
@@ -1,90 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "dist/client": {
- "markdownServer.name": "Markdown 언어 서버"
- },
- "dist/languageFeatures/diagnostics": {
- "ignoreLinksQuickFix.title": "링크 유효성 검사에서 '{0}'을(를) 제외합니다."
- },
- "dist/languageFeatures/fileReferences": {
- "error.noResource": "파일 참조를 찾지 못했습니다. 리소스가 제공되지 않았습니다.",
- "progress.title": "파일 참조를 찾는 중"
- },
- "dist/preview/documentRenderer": {
- "preview.notFound": "{0}을(를) 찾을 수 없습니다.",
- "preview.securityMessage.label": "콘텐츠 사용할 수 없음 보안 경고",
- "preview.securityMessage.text": "이 문서에서 일부 콘텐츠가 사용하지 않도록 설정되었습니다.",
- "preview.securityMessage.title": "Markdown 미리 보기에서 잠재적으로 안전하지 않거나 보안되지 않은 콘텐츠가 사용하지 않도록 설정되어 있습니다. 안전하지 않은 콘텐츠를 허용하거나 스크립트를 사용하려면 Markdown 미리 보기 보안 설정을 변경하세요."
- },
- "dist/preview/preview": {
- "lockedPreviewTitle": "[미리 보기] {0}",
- "onPreviewStyleLoadError": "'markdown.styles': {0}을(를) 불러올 수 없음",
- "preview.clickOpenFailed": "{0}을(를) 열 수 없습니다.",
- "previewTitle": "미리 보기 {0}"
- },
- "dist/preview/security": {
- "disable.description": "모든 콘텐츠 및 스크립트 실행을 허용합니다. 권장하지 않습니다.",
- "disable.title": "사용 안 함",
- "disableSecurityWarning.title": "이 작업 영역에서 미리보기 보안 경고 사용 안 함",
- "enableSecurityWarning.title": "이 작업 영역에서 미리 보기 보안 경고 사용",
- "insecureContent.description": "http를 통한 콘텐츠 로드 사용",
- "insecureContent.title": "안전하지 않은 콘텐츠 허용",
- "insecureLocalContent.description": "localhost에서 제공되는 http를 통한 콘텐츠 로드 사용",
- "insecureLocalContent.title": "안전하지 않은 로컬 콘텐츠 허용",
- "moreInfo.title": "추가 정보",
- "preview.showPreviewSecuritySelector.title": "이 작업 영역에 대해 Markdown 미리 보기의 보안 설정 선택",
- "strict.description": "보안 콘텐츠만 로드",
- "strict.title": "Strict",
- "toggleSecurityWarning.description": "콘텐츠 보안 수준에 영향을 주지 않습니다."
- },
- "package": {
- "configuration.markdown.editor.drop.enabled": "Enable/disable dropping into the markdown editor to insert shift. Requires enabling `#editor.dropIntoEditor.enabled#`.",
- "configuration.markdown.editor.pasteLinks.enabled": "마크다운 편집기에 파일 붙여넣기 활성화/비활성화는 마크다운 링크를 삽입합니다. `#editor.experimental.pasteActions.enabled#`를 활성화해야 합니다.",
- "configuration.markdown.experimental.validate.enabled.description": "Markdown 파일에서 모든 오류 보고를 사용/사용하지 않도록 설정합니다.",
- "configuration.markdown.experimental.validate.fileLinks.enabled.description": "Markdown 파일의 다른 파일에 대한 링크의 유효성을 검사합니다(예: '[link](/path/to/file.md)'). 그러면 대상 파일이 있는지 확인합니다. '#markdown.experimental.validate.enabled#'을 사용하도록 설정해야 합니다.",
- "configuration.markdown.experimental.validate.fileLinks.markdownFragmentLinks.description": "Markdown 파일의 다른 파일에 있는 헤더에 대한 링크의 조각 부분을 확인합니다. `[링크](/path/to/file.md#header)`. 기본적으로 `#markdown.experimental.validate.fragmentLinks.enabled#`의 설정 값을 상속합니다.",
- "configuration.markdown.experimental.validate.fragmentLinks.enabled.description": "현재 Markdown 파일의 헤더에 대한 조각 링크(예: '[link](#header)')의 유효성을 검사합니다. `#markdown.experimental.validate.enabled#`을 사용하도록 설정해야 합니다.",
- "configuration.markdown.experimental.validate.ignoreLinks.description": "유효성을 검사하지 않아야 하는 링크를 구성합니다. 예를 들어 `/about`은 `[about](/about)` 링크의 유효성을 검사하지 않는다면, glob `/assets/**/*.svg`를 사용하면 `assets` 디렉터리 아래의 `.svg` 파일로 연결되는 모든 링크에 대한 유효성 검사를 건너뛸 수 있습니다.",
- "configuration.markdown.experimental.validate.referenceLinks.enabled.description": "Markdown 파일에서 참조 링크(예: `[link][ref]`)의 유효성을 검사합니다. '#markdown.experimental.validate.enabled#'을 사용하도록 설정해야 합니다.",
- "configuration.markdown.links.openLocation.beside": "활성 편집기 옆에 있는 링크를 엽니다.",
- "configuration.markdown.links.openLocation.currentGroup": "활성 편집기 그룹에서 링크를 엽니다.",
- "configuration.markdown.links.openLocation.description": "Markdown 파일의 링크를 열어야 하는 위치를 제어합니다.",
- "configuration.markdown.preview.openMarkdownLinks.description": "Markdown 미리 보기에서 다른 Markdown 파일의 링크를 여는 방법을 제어합니다.",
- "configuration.markdown.preview.openMarkdownLinks.inEditor": "편집기에서 링크를 열어 보세요.",
- "configuration.markdown.preview.openMarkdownLinks.inPreview": "Markdown 미리 보기에서 링크를 열어 보세요.",
- "configuration.markdown.suggest.paths.enabled.description": "markdown 링크에 대한 경로 제안 사용/사용 안 함",
- "description": "Markdown에 대한 다양한 언어 지원을 제공합니다.",
- "displayName": "Markdown 언어 기능",
- "markdown.findAllFileReferences": "파일 참조 찾기",
- "markdown.preview.breaks.desc": "Markdown 미리 보기에서 줄 바꿈을 렌더링하는 방식을 설정합니다. 'true'로 설정하면 단락 내에 줄 바꿈이 생성됩니다.",
- "markdown.preview.doubleClickToSwitchToEditor.desc": "Markdown 미리 보기에서 두 번 클릭하여 편집기로 전환합니다.",
- "markdown.preview.fontFamily.desc": "Markdown 미리 보기에서 사용되는 글꼴 패밀리를 제어합니다.",
- "markdown.preview.fontSize.desc": "Markdown 미리 보기에서 사용되는 글꼴 크기(픽셀)를 제어합니다.",
- "markdown.preview.lineHeight.desc": "Markdown 미리 보기에 사용되는 줄 높이를 제어합니다. 이 숫자는 글꼴 크기에 상대적입니다.",
- "markdown.preview.linkify": "Markdown 미리 보기에서 URL 같은 텍스트를 링크로 변환을 사용하거나 사용하지 않도록 설정합니다.",
- "markdown.preview.markEditorSelection.desc": "Markdown 미리 보기에 현재 편집기 선택을 표시합니다.",
- "markdown.preview.refresh.title": "미리 보기 새로 고침",
- "markdown.preview.scrollEditorWithPreview.desc": "Markdown 미리 보기를 스크롤할 때 편집기의 보기를 업데이트합니다.",
- "markdown.preview.scrollPreviewWithEditor.desc": "Markdown 편집기를 스크롤할 때 미리 보기의 보기를 업데이트합니다.",
- "markdown.preview.title": "미리 보기 열기",
- "markdown.preview.toggleLock.title": "미리 보기 잠금 설정/해제",
- "markdown.preview.typographer": "Markdown 미리 보기에서 일부 언어 중립적인 대체 및 인용 미화를 사용하거나 사용하지 않도록 설정합니다.",
- "markdown.previewSide.title": "측면에서 미리 보기 열기",
- "markdown.showLockedPreviewToSide.title": "측면에서 잠긴 미리 보기 열기",
- "markdown.showPreviewSecuritySelector.title": "미리 보기 보안 설정 변경",
- "markdown.showSource.title": "소스 표시",
- "markdown.styles.dec": "Markdown 미리 보기에서 사용할 CSS 스타일시트의 URL 또는 로컬 경로 목록입니다. 상대 경로는 Explorer에서 열린 폴더를 기준으로 해석됩니다. 열린 폴더가 없으면 Markdown 파일의 위치를 기준으로 해석됩니다. 모든 '\\'는 '\\\\'로 써야 합니다.",
- "markdown.trace.extension.desc": "Markdown 확장에 대해 디버그 로깅을 사용하도록 설정합니다.",
- "markdown.trace.server.desc": "VS Code와 Markdown 언어 서버 간 통신을 추적합니다.",
- "workspaceTrust": "작업 영역에 구성된 스타일을 로드하는 데 필요합니다."
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-ko/translations/extensions/markdown-math.i18n.json b/i18n/vscode-language-pack-ko/translations/extensions/markdown-math.i18n.json
deleted file mode 100644
index 922dc38787..0000000000
--- a/i18n/vscode-language-pack-ko/translations/extensions/markdown-math.i18n.json
+++ /dev/null
@@ -1,17 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "package": {
- "config.markdown.math.enabled": "기본 제공 Markdown 미리 보기에서 렌더링 수학을 사용하거나 사용하지 않도록 설정합니다.",
- "description": "전자 필기장의 Markdown에 수학 지원을 추가합니다.",
- "displayName": "Markdown 수학"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-ko/translations/extensions/markdown-notebook-math.i18n.json b/i18n/vscode-language-pack-ko/translations/extensions/markdown-notebook-math.i18n.json
deleted file mode 100644
index 14df261f8f..0000000000
--- a/i18n/vscode-language-pack-ko/translations/extensions/markdown-notebook-math.i18n.json
+++ /dev/null
@@ -1,16 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "package": {
- "displayName": "Markdown Notebook 수학",
- "description": "Markdown에 대한 다양한 언어 지원을 제공합니다."
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-ko/translations/extensions/merge-conflict.i18n.json b/i18n/vscode-language-pack-ko/translations/extensions/merge-conflict.i18n.json
deleted file mode 100644
index 469c116cae..0000000000
--- a/i18n/vscode-language-pack-ko/translations/extensions/merge-conflict.i18n.json
+++ /dev/null
@@ -1,35 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "package": {
- "command.accept.all-both": "둘 다 모두 수락",
- "command.accept.all-current": "모든 현재 사항 수락",
- "command.accept.all-incoming": "수신 모두 수락",
- "command.accept.both": "둘 다 수락",
- "command.accept.current": "현재 수락",
- "command.accept.incoming": "수신 수락",
- "command.accept.selection": "선택 수락",
- "command.category": "충돌 병합",
- "command.compare": "현재 충돌 비교",
- "command.next": "다음 충돌",
- "command.previous": "이전 충돌",
- "config.autoNavigateNextConflictEnabled": "병합 충돌을 해결한 후 다음 병합 충돌로 자동으로 이동할지 여부입니다.",
- "config.codeLensEnabled": "편집기 내에서 병합 충돌 블록에 대한 Code Lens를 만듭니다.",
- "config.decoratorsEnabled": "편집기 내에서 병합 충돌 블록에 대한 decorator를 만듭니다.",
- "config.diffViewPosition": "병합 충돌에서 변경 내용을 비교할 때 diff 뷰가 열리는 위치를 제어합니다.",
- "config.diffViewPosition.below": "현재 편집기 그룹 아래에 diff 뷰를 엽니다.",
- "config.diffViewPosition.beside": "현재 편집기 그룹 옆에 있는 diff 뷰를 엽니다.",
- "config.diffViewPosition.current": "현재 편집기 그룹에서 diff 뷰를 엽니다.",
- "config.title": "충돌 병합",
- "description": "인라인 병합 충돌에 대한 강조 표시 및 명령입니다.",
- "displayName": "충돌 병합"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-ko/translations/extensions/microsoft-authentication.i18n.json b/i18n/vscode-language-pack-ko/translations/extensions/microsoft-authentication.i18n.json
deleted file mode 100644
index 3a72dcc339..0000000000
--- a/i18n/vscode-language-pack-ko/translations/extensions/microsoft-authentication.i18n.json
+++ /dev/null
@@ -1,24 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "dist/AADHelper": {
- "pasteCodePlaceholder": "Paste authorization code here...",
- "pasteCodePrompt": "Provide the authorization code to complete the sign in flow.",
- "pasteCodeTitle": "Microsoft Authentication",
- "signOut": "저장된 인증 정보를 읽는 데 실패하여 로그아웃되었습니다."
- },
- "package": {
- "description": "Microsoft 인증 공급자",
- "displayName": "Microsoft 계정",
- "signIn": "로그인",
- "signOut": "로그아웃"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-ko/translations/extensions/ms-vscode.github-browser.i18n.json b/i18n/vscode-language-pack-ko/translations/extensions/ms-vscode.github-browser.i18n.json
deleted file mode 100644
index 7a6b0c9148..0000000000
--- a/i18n/vscode-language-pack-ko/translations/extensions/ms-vscode.github-browser.i18n.json
+++ /dev/null
@@ -1,16 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "package": {
- "displayName": "GitHub 브라우저",
- "description": "GitHub 리포지토리 원격 탐색"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-ko/translations/extensions/ms-vscode.js-debug.i18n.json b/i18n/vscode-language-pack-ko/translations/extensions/ms-vscode.js-debug.i18n.json
index c8c133672c..8d60b2bd54 100644
--- a/i18n/vscode-language-pack-ko/translations/extensions/ms-vscode.js-debug.i18n.json
+++ b/i18n/vscode-language-pack-ko/translations/extensions/ms-vscode.js-debug.i18n.json
@@ -8,281 +8,14 @@
],
"version": "1.0.0",
"contents": {
- "/src/adapter/breakpoints/userDefinedBreakpoint": {
- "breakpoint.provisionalBreakpoint": "바인딩되지 않은 중단점"
- },
- "/src/adapter/console/queryObjectsMessage": {
- "queryObject.couldNotQuery": "제공된 개체를 쿼리할 수 없습니다.",
- "queryObject.errorPreview": "미리 보기를 생성할 수 있습니다. {0}",
- "queryObject.invalidObject": "개체만 쿼리할 수 있습니다."
- },
- "/src/adapter/console/textualMessage": {
- "console.assert": "어설션 실패"
- },
- "/src/adapter/customBreakpoints": {
- "breakpoint.animationFrameFired": "애니메이션 프레임 발생",
- "breakpoint.cancelAnimationFrame": "애니메이션 프레임 취소",
- "breakpoint.closeAudioContext": "AudioContext 닫기",
- "breakpoint.createAudioContext": "AudioContext 만들기",
- "breakpoint.createCanvasContext": "캔버스 컨텍스트 만들기",
- "breakpoint.cspViolation": "콘텐츠 보안 정책으로 차단된 스크립트",
- "breakpoint.cspViolationNamed": "CSP 위반 \"{0}\"",
- "breakpoint.cspViolationNamedDetails": "콘텐츠 보안 정책 위반 계측 중단점에서 일시 중지됨, 지시문 \"{0}\"",
- "breakpoint.eventListenerNamed": "이벤트 수신기 중단점 \"{0}\"에서 일시 중지됨, \"{1}\"에서 트리거됨",
- "breakpoint.instrumentationNamed": "계측 중단점 \"{0}\"에서 일시 중지됨",
- "breakpoint.requestAnimationFrame": "애니메이션 프레임 요청",
- "breakpoint.resumeAudioContext": "AudioContext 다시 시작",
- "breakpoint.scriptFirstStatement": "스크립트 첫 번째 문",
- "breakpoint.setInnerHtml": "innerHTML 설정",
- "breakpoint.setIntervalFired": "setInterval 발생",
- "breakpoint.setTimeoutFired": "setTimeout 발생",
- "breakpoint.suspendAudioContext": "AudioContext 일시 중단",
- "breakpoint.webglErrorFired": "WebGL 오류 발생",
- "breakpoint.webglErrorNamed": "WebGL 오류 \"{0}\"",
- "breakpoint.webglErrorNamedDetails": "WebGL 오류 계측 중단점에서 일시 중지됨, 오류 \"{0}\"",
- "breakpoint.webglWarningFired": "WebGL 경고 발생"
- },
- "/src/adapter/debugAdapter": {
- "breakpoint.caughtExceptions": "catch된 예외",
- "breakpoint.caughtExceptions.description": "나중에 catch되는 경우에도 모든 throw 오류 발생 시 중단됩니다.",
- "breakpoint.uncaughtExceptions": "catch되지 않은 예외",
- "error.cannotPrettyPrint": "자동 서식을 지정할 수 없음",
- "error.sourceContentDidFail": "소스 콘텐츠를 검색할 수 없음",
- "error.sourceNotFound": "소스를 찾을 수 없음",
- "error.variableNotFound": "변수를 찾을 수 없음"
- },
- "/src/adapter/profiling/basicCpuProfiler": {
- "profile.cpu.description": "Chrome devtools에서 열 수 있는 .cpuprofile 파일을 생성합니다.",
- "profile.cpu.label": "CPU 프로필"
- },
- "/src/adapter/profiling/basicHeapProfiler": {
- "profile.heap.description": "Chrome devtools에서 열 수 있는 .heapprofile 파일을 생성합니다.",
- "profile.heap.label": "힙 프로필"
- },
- "/src/adapter/profiling/heapDumpProfiler": {
- "profile.heap.description": "Chrome 개발자 도구에서 열 수 있는 .heapsnapshot 파일을 생성합니다",
- "profile.heap.label": "힙 스냅샷"
- },
- "/src/adapter/sources": {
- "source.skipFiles": "skipFiles에서 건너뜀"
- },
- "/src/adapter/stackTrace": {
- "scope.block": "블록",
- "scope.catch": "Catch 블록",
- "scope.closure": "닫기",
- "scope.closureNamed": "닫기({0})",
- "scope.eval": "Eval",
- "scope.global": "전역",
- "scope.local": "로컬",
- "scope.module": "모듈",
- "scope.returnValue": "반환 값",
- "scope.script": "스크립트",
- "scope.with": "With 블록",
- "smartStepSkipLabel": "smartStep에서 건너뜀",
- "source.skipFiles": "skipFiles에서 건너뜀"
- },
- "/src/adapter/threads": {
- "error.evaluateDidFail": "평가할 수 없음",
- "error.evaluateOnAsyncStackFrame": "비동기 스택 프레임에서 평가할 수 없음",
- "error.pauseDidFail": "일시 중지할 수 없음",
- "error.restartFrameAsync": "비동기 프레임을 다시 시작할 수 없음",
- "error.resumeDidFail": "다시 시작할 수 없음",
- "error.stackFrameNotFound": "스택 프레임을 찾을 수 없음",
- "error.stepInDidFail": "한 단계씩 코드를 실행할 수 없음",
- "error.stepOutDidFail": "프로시저에서 나갈 수 없음",
- "error.stepOverDidFail": "다음 프로시저로 이동할 수 없음",
- "error.threadNotPaused": "스레드가 일시 중지되지 않음",
- "error.threadNotPausedOnException": "예외에서 스레드가 일시 중지되지 않음",
- "error.unknownRestartError": "프레임을 다시 시작할 수 없습니다.",
- "pause.DomBreakpoint": "DOM 중단점에서 일시 중지됨",
- "pause.assert": "어설션에서 일시 중지됨",
- "pause.breakpoint": "중단점에서 일시 중지됨",
- "pause.debugCommand": "debug() 호출에서 일시 중지됨",
- "pause.default": "일시 중지됨",
- "pause.eventListener": "이벤트 수신기에서 일시 중지됨",
- "pause.exception": "예외에서 일시 중지됨",
- "pause.instrumentation": "계측 중단점에서 일시 중지됨",
- "pause.oom": "메모리 부족 예외 전에 일시 중지됨",
- "pause.promiseRejection": "프라미스 거부에서 일시 중지됨",
- "pause.xhr": "XMLHttpRequest 또는 페치에서 일시 중지됨",
- "reason.description.restart": "프레임 입력에서 일시 중지됨",
- "warnings.handleSourceMapPause.didNotWait": "경고: {0}의 소스 맵을 처리하는 데 {1}밀리초보다 긴 시간이 걸려 스크립트에 대한 모든 중단점을 설정할 때까지 기다리지 않고 실행을 계속했습니다."
- },
- "/src/adapter/variableStore": {
- "error.customValueDescriptionGeneratorFailed": "{0}(설명할 수 없음: {1})",
- "error.emptyExpression": "빈 값을 설정할 수 없음",
- "error.invalidExpression": "잘못된 식",
- "error.setVariableDidFail": "변수 값을 설정할 수 없음",
- "error.unknown": "알 수 없는 오류",
- "error.variableNotFound": "변수를 찾을 수 없음"
- },
- "/src/binder": {
- "breakpoint.provisionalBreakpoint": "바인딩되지 않은 중단점"
- },
- "/src/dap/errors": {
- "NVM_HOME.not.found.message": "'runtimeVersion' 특성에는 Node.js 버전 관리자 'nvm-windows' 또는 'nvs'가 필요합니다.",
- "NVS_HOME.not.found.message": "'runtimeVersion' 특성을 사용하려면 Node.js 버전 관리자 'nvs' 또는 'nvm'을 설치해야 합니다.",
- "VSND2011": "터미널({0})에서 디버그 대상을 시작할 수 없습니다.",
- "VSND2029": "파일({0})에서 환경 변수를 로드할 수 없습니다.",
- "asyncScopesNotAvailable": "비동기 스택에서 변수를 사용할 수 없음",
- "breakpointSyntaxError": "줄 {1}의 조건 {0}을(를) 사용하여 중단점을 설정하는 동안 구문 오류가 발생함: {2}",
- "browserVersionNotFound": "{0} 버전 {1}을(를) 찾을 수 없습니다. 사용 가능한 자동 검색 버전은 {2}입니다. launch.json의 \"runtimeExecutable\"을 해당 항목 중 하나로 설정하거나 브라우저 실행 파일의 절대 경로를 제공할 수 있습니다.",
- "error.browserAttachError": "브라우저에 연결할 수 없음",
- "error.browserLaunchError": "\"{0}\" 브라우저를 시작할 수 없음",
- "error.threadNotFound": "대상 페이지를 찾을 수 없습니다. 디버그하려는 페이지와 일치하도록 \"urlFilter\"를 업데이트해야 할 수 있습니다.",
- "invalidHitCondition": "적중 조건 \"{0}\"이(가) 잘못되었습니다. \"> 42\" 또는 \"== 2\" 같은 식이 필요합니다.",
- "noBrowserInstallFound": "시스템에서 브라우저 설치를 찾을 수 없습니다. 설치를 시도하거나 launch.json의 \"runtimeExecutable\"에서 브라우저에 대한 절대 경로를 제공하세요.",
- "noUwpPipeFound": "UWP Webview 파이프에 연결할 수 없습니다. webview가 디버그 모드에서 호스팅되고 `launch.json`의 `pipeName`이 올바른지 확인하세요.",
- "profile.error.concurrent": "새 프로필을 시작하기 전에 실행 중인 프로필을 중지하세요.",
- "profile.error.generic": "대상에서 프로필을 가져오는 동안 오류가 발생했습니다.",
- "runtime.node.notfound": "Node.js 이진 \"{0}\"을(를) 찾을 수 없습니다. {1}. Node.js가 설치되어 있고 PATH에 있는지 확인하거나 launch.json에서 \"runtimeExecutable\"을 설정하세요.",
- "runtime.node.outdated": "\"{0}\"의 Node 버전이 오래되었습니다(버전 {1}). Node 8.x 이상이 필요합니다.",
- "runtime.version.not.found.message": "버전 관리자 {1}을(를) 사용하여 Node.js 버전 '{0}'이(가) 설치되지 않았습니다.",
- "sourcemapParseError": "{0}의 소스 맵을 읽을 수 없음: {1}",
- "uwpPipeNotAvailable": "UWP webview 디버깅은 플랫폼에서 사용할 수 없습니다."
- },
- "/src/debugServer": {
- "breakpoint.provisionalBreakpoint": "바인딩되지 않은 중단점"
- },
- "/src/targets/browser/browserAttacher": {
- "attach.cannotConnect": "{0}에서 대상에 연결할 수 없음: {1}",
- "chrome.targets.placeholder": "탭 선택"
- },
- "/src/targets/node/nodeAttacher": {
- "node.attach.restart.message": "디버기에 대한 연결이 끊김, {0}ms 후에 다시 연결함\r\n"
- },
- "/src/targets/node/nodeBinaryProvider": {
- "outOfDate": "{0} 디버깅을 계속하시겠습니까?",
- "runtime.node.notfound.enoent": "경로가 없음",
- "runtime.node.notfound.spawnErr": "버전을 가져오는 중 오류 발생: {0}",
- "warning.16bpIssue": "일부 중단점은 Node.js 버전에서 작동하지 않을 수 있습니다. 최신 버그, 성능 및 보안 픽스를 업그레이드하는 것이 좋습니다. 세부 정보: https://aka.ms/AAcsvqm",
- "warning.8outdated": "이전 버전의 Node.js를 실행하고 있습니다. 최신 버그, 성능 및 보안 픽스를 업그레이드하는 것이 좋습니다.",
- "yes": "예"
- },
- "/src/ui/autoAttach": {
- "details": "세부 정보"
- },
- "/src/ui/companionBrowserLaunch": {
- "cannotDebugInBrowser": "여기서는 디버그 모드에서 브라우저를 시작할 수 없습니다. 데스크톱의 VS Code에서 이 작업 영역을 열어 디버깅을 사용하도록 설정하세요."
- },
- "/src/ui/configuration/chromiumDebugConfigurationProvider": {
- "chrome.launch.name": "localhost에 대해 Chrome 시작",
- "existingBrowser.alert": "브라우저가 이미 {0}에서 실행되고 있는 것 같습니다. 디버깅을 시도하기 전에 먼저 브라우저를 닫으세요. 그러지 않으면 VS Code가 브라우저에 연결하지 못할 수 있습니다.",
- "existingBrowser.debugAnyway": "디버그",
- "existingBrowser.location.default": "이전 디버그 세션",
- "existingBrowser.location.userDataDir": "구성된 userDataDir"
- },
- "/src/ui/configuration/edgeDebugConfigurationProvider": {
- "chrome.launch.name": "localhost에 대해 Microsoft Edge 시작"
- },
- "/src/ui/configuration/nodeDebugConfigurationProvider": {
- "debug.terminal.label": "JavaScript 디버그 터미널",
- "node.launch.currentFile": "현재 파일 실행",
- "node.launch.script": "스크립트 실행: {0}"
- },
- "/src/ui/configuration/nodeDebugConfigurationResolver": {
- "cwd.notFound": "구성된 'cwd' {0}이(가) 없습니다.",
- "mern.starter.explanation": "'{0}' 프로젝트에 대한 구성 시작이 생성되었습니다.",
- "node.launch.config.name": "프로그램 시작",
- "outFiles.explanation": "생성된 JavaScript를 포함하도록 'outFiles' 특성의 GLOB 패턴을 조정합니다.",
- "program.guessed.from.package.json.explanation": "'package.json'을 기반으로 구성 시작이 생성되었습니다.",
- "program.not.found.message": "디버그할 프로그램을 찾을 수 없습니다."
- },
- "/src/ui/debugLinkUI": {
- "debugLink.invalidUrl": "지정된 URL이 잘못되었습니다.",
- "debugLink.savePrompt": "나중에 쉽게 액세스할 수 있도록 launch.json에 구성을 저장하시겠습니까?",
- "never": "안 함",
- "no": "아니요",
- "yes": "예"
- },
- "/src/ui/debugNpmScript": {
- "debug.npm.noScripts": "package.json에서 npm 스크립트를 찾을 수 없습니다.",
- "debug.npm.noWorkspaceFolder": "npm 스크립트를 디버그하려면 작업 영역 폴더를 열어야 합니다.",
- "debug.npm.notFound.open": "package.json 편집",
- "debug.npm.parseError": "{0}을(를) 읽을 수 없습니다. {1}"
- },
- "/src/ui/debugTerminalUI": {
- "terminal.cwdpick": "새 터미널의 현재 작업 디렉토리를 선택합니다."
- },
- "/src/ui/diagnosticsUI": {
- "inspectSessionEnded": "디버그 세션이 이미 종료된 것 같습니다. 디버깅을 다시 시도한 후 \"디버그: 중단점 문제 진단\" 명령을 실행하세요.",
- "never": "안 함",
- "notNow": "나중에",
- "selectInspectSession": "검사할 세션 선택:",
- "yes": "예"
- },
- "/src/ui/disableSourceMapUI": {
- "always": "항상",
- "disableSourceMapUi.msg": "sourcemap에서 참조하는 누락된 파일 경로입니다. 대신 컴파일된 버전을 디버그하시겠습니까?",
- "no": "아니요",
- "yes": "예"
- },
- "/src/ui/edgeDevToolOpener": {
- "selectEdgeToolSession": "Devtools를 열 페이지를 선택합니다."
- },
- "/src/ui/linkedBreakpointLocationUI": {
- "ignore": "무시",
- "readMore": "자세한 정보"
- },
- "/src/ui/longPredictionUI": {
- "longPredictionWarning.disable": "다시 표시 안 함",
- "longPredictionWarning.message": "중단점을 구성하는 데 다소 시간이 소요됩니다. launch.json에서 'outFiles'를 업데이트하여 이 속도를 높일 수 있습니다.",
- "longPredictionWarning.noFolder": "열려 있는 작업 영역 폴더가 없습니다.",
- "longPredictionWarning.open": "launch.json 열기"
- },
- "/src/ui/processPicker": {
- "cannot.enable.debug.mode.error": "프로세스에 연결: 프로세스 '{0}'({1})에 대해 디버그 모드를 사용하도록 설정할 수 없습니다.",
- "pickNodeProcess": "연결할 Node.js 프로세스 선택",
- "process.id.error": "프로세스에 연결: '{0}'은(는) 프로세스 ID가 아닌 것 같습니다.",
- "process.id.port.signal": "프로세스 ID: {0}, 디버그 포트: {1}({2})",
- "process.id.signal": "프로세스 ID: {0}({1})",
- "process.picker.error": "프로세스 선택기 실패({0})"
- },
- "/src/ui/profiling/breakpointTerminationCondition": {
- "breakpointTerminationWarnConfirm": "확인",
- "breakpointTerminationWarnSlow": "중단점을 사용하도록 설정된 프로파일링은 코드의 성능을 변경할 수 있습니다. \"기간\" 또는 \"수동\" 종료 조건으로 검색 결과의 유효성을 검사하는 데 유용할 수 있습니다.",
- "profile.termination.breakpoint.description": "특정 중단점이 적중될 때까지 실행",
- "profile.termination.breakpoint.label": "중단점 선택"
- },
- "/src/ui/profiling/durationTerminationCondition": {
- "profile.termination.duration.description": "특정 시간 동안 실행",
- "profile.termination.duration.inputTitle": "프로필 지속 기간",
- "profile.termination.duration.invalidFormat": "숫자를 입력하세요.",
- "profile.termination.duration.invalidLength": "1보다 큰 숫자를 입력하세요.",
- "profile.termination.duration.label": "기간",
- "profile.termination.duration.placeholder": "프로필 지속 기간(초)(예: \"5\")"
- },
- "/src/ui/profiling/manualTerminationCondition": {
- "profile.termination.duration.description": "수동으로 중지될 때까지 실행",
- "profile.termination.duration.label": "수동"
- },
- "/src/ui/profiling/uiProfileManager": {
- "no": "아니요",
- "profile.alreadyRunning": "프로파일링 세션이 이미 실행 중입니다. 해당 세션을 중지하고 새 세션을 시작하시겠습니까?",
- "profile.sessionState": "프로파일링",
- "profile.status.default": "$(loading~spin) 프로파일링을 중지하려면 클릭",
- "profile.status.multiSession": "$(loading~spin) 프로파일링을 중지하려면 클릭하세요({0} 세션).",
- "profile.status.single": "$(loading~spin) 프로파일링을 중지하려면 클릭하세요({0}).",
- "profile.termination.title": "프로필 실행 시간:",
- "profile.type.title": "프로필 형식:",
- "yes": "예"
- },
- "/src/ui/profiling/uiProfileSession": {
- "profile.saving": "저장 중",
- "progress.profile.start": "프로필 시작 중...",
- "progress.profile.stop": "프로필 중지 중..."
- },
- "/src/ui/terminalLinkHandler": {
- "cantOpenChromeOnWeb": "여기서는 디버그 모드에서 브라우저를 시작할 수 없습니다. 이 웹 페이지를 디버그하려면 데스크톱의 VS Code에서 이 작업 영역을 여세요.",
- "terminalLinkHover.debug": "URL 디버그"
- },
- "/src/vsDebugServer": {
- "session.rootSessionName": "JavaScript 디버그 어댑터"
- },
"package": {
- "add.browser.breakpoint": "브라우저 중단점 추가",
+ "add.eventListener.breakpoint": "이벤트 수신기 중단점 토글",
+ "add.xhr.breakpoint": "XHR/fetch 중단점 추가",
"attach.node.process": "Node 프로세스에 연결",
"base.cascadeTerminateToConfigurations.label": "이 디버그 세션이 종료되면 중지되는 디버그 세션 목록입니다.",
+ "base.enableDWARF.label": "디버거가 리소스를 많이 사용할 수 있는 WebAssembly에서 DWARF 디버그 기호를 읽으려고 시도할지 여부를 전환합니다. 작동하려면 'ms-vscode.wasm-dwarf-debugging' 확장이 필요합니다.",
+ "breakpoint.xhr.any": "모든 XHR/fetch",
+ "breakpoint.xhr.contains": "URL에 다음이 포함된 경우 중단:",
"browser.address.description": "디버그된 브라우저에서 수신 대기 중인 IP 주소 또는 호스트 이름입니다.",
"browser.attach.port.description": "원격에서 브라우저를 디버그하는 데 사용할 포트입니다. 브라우저를 시작할 때 `--remote-debugging-port`로 제공됩니다.",
"browser.baseUrl.description": "경로 baseUrl을 확인할 기본 URL입니다. 디스크의 파일에 URL을 매핑할 때 baseURL이 잘립니다. 기본값은 시작 URL 도메인입니다.",
@@ -294,7 +27,9 @@
"browser.env.description": "브라우저용 환경 키/값 쌍의 선택적 사전입니다.",
"browser.file.description": "브라우저에서 열 로컬 html 파일",
"browser.includeDefaultArgs.description": "(디버깅을 어렵게 만들 수 있는 기능을 사용하지 않도록 하기 위해) 기본 브라우저 시작 인수를 시작에 포함할지 여부.",
+ "browser.includeLaunchArgs.description": "고급: 브라우저에서 기본 시작/디버깅 인수가 설정되는지 여부입니다. 디버거는 브라우저가 '--remote-debugging-pipe'와 함께 제공되는 것과 같은 파이프 디버깅을 사용한다고 가정합니다.",
"browser.inspectUri.description": "inspectUri를 재작성하는 데 사용할 형식: `{curlyBraces}`의 키를 보간하는 템플릿 문자열입니다. 사용 가능한 키는 다음과 같습니다. \r\n- `url.*`는 실행 중인 애플리케이션의 구문 분석된 주소입니다. 예: `{url.port}`, `{url.hostname}` - `port`는 Chrome에서 수신 대기하는 디버그 포트입니다. \r\n - `browserInspectUri`는 시작된 브라우저의 검사기 URI입니다. \r\n - `browserInspectUriPath`는 시작된 브라우저의 검사기 URI 경로 부분입니다(예: \"/devtools/browser/e9ec0098-306e-472a-8133-5e42488929c2\"). \r\n - `wsProtocol`은 힌트 WebSocket 프로토콜입니다.\r\n 원래 URL이 `https`인 경우 `wss`로 설정되고, 그렇지 않은 경우 `ws`로 설정됩니다\r\n.",
+ "browser.killBehavior.description": "'cleanUp: wholeBrowser'를 사용하여 세션을 중지할 때 브라우저 프로세스가 종료되는 방법을 구성합니다. 다음과 같이 설정할 수 있습니다.\r\n\r\n- forceful(기본값): 프로세스 트리를 강제로 종료합니다. posix에서는 SIGKILL을 보내고, Windows에서는 'taskkill.exe /F'를 사용합니다.\r\n- polite: 프로세스 트리를 정상적으로 종료합니다. 이 방식에서는 오작동하는 프로세스가 종료 후에도 계속 실행될 수 있습니다. posix에서는 SIGTERM을 보내고, Windows에서는 '/F'(force) 플래그 없이 'taskkill.exe'를 사용합니다.\r\n- none: 종료 작업이 수행되지 않습니다.",
"browser.launch.port.description": "브라우저에서 수신 대기할 포트입니다. 기본값은 \"0\"입니다. 기본값으로 설정하면 파이프를 통해 브라우저가 디버그됩니다. 이는 일반적으로 더 안전하며 다른 도구에서 브라우저에 연결해야 하는 경우가 아니면 선택해야 합니다.",
"browser.pathMapping.description": "로컬 폴더의 URL/경로 매핑, 브라우저에서 스크립트를 디스크의 스크립트로 확인",
"browser.perScriptSourcemaps.description": "스크립트가 소스 파일의 basename이 포함된 고유한 sourcemap을 사용하여 개별적으로 로드되는지 여부입니다. 많은 작은 스크립트를 처리할 때 이 옵션을 설정하여 sourcemap 처리를 최적화할 수 있습니다. \"자동\"으로 설정된 경우 알려진 사례가 검색됩니다(해당하는 경우).",
@@ -305,7 +40,7 @@
"browser.runtimeExecutable.description": "'canary', 'stable', 'custom', 브라우저 실행 파일의 경로 중 하나입니다. 사용자 지정은 사용자 지정 래퍼, 사용자 지정 빌드 또는 CHROME_PATH 환경 변수를 의미합니다.",
"browser.runtimeExecutable.edge.description": "'canary', 'stable', 'dev', 'custom' 또는 브라우저 실행 파일의 경로입니다. custom은 사용자 지정 래퍼, 사용자 지정 빌드 또는 EDGE_PATH 환경 변수를 나타냅니다.",
"browser.server.description": "시작할 웹 서버를 구성합니다. '노드' 시작 작업과 동일한 구성을 수행합니다.",
- "browser.skipFiles.description": "디버그할 때 건너뛸 파일 또는 폴더 이름이나 경로 GLOB의 배열입니다.",
+ "browser.skipFiles.description": "디버깅할 때 건너뛸 파일 또는 폴더 이름 또는 경로 glob의 배열입니다. 예를 들어 별 패턴과 부정이 허용됩니다(예: `[\"**/node_modules/**\", \"!**/node_modules/my-module/**\"]`)",
"browser.smartStep.description": "소스 매핑된 파일의 매핑되지 않은 줄을 자동으로 단계별로 실행합니다. 이러한 줄의 예로는 async/await 또는 기타 기능을 다운 컴파일하는 경우 TypeScript에서 자동으로 생성하는 코드가 있습니다.",
"browser.sourceMapPathOverrides.description": "sourcemap의 위치에서 디스크의 위치로 소스 파일의 위치를 다시 작성하기 위한 매핑 세트입니다. 자세한 내용은 추가 정보를 참조하세요.",
"browser.sourceMapRenames.description": "소스 맵에서 \"이름\" 매핑을 사용할지 여부입니다. 이를 위해서는 특정 디버거에서 느려질 수 있는 원본 콘텐츠를 요청해야 합니다.",
@@ -330,6 +65,12 @@
"commands.callersRemoveAll.label": "제외된 모든 호출자 제거",
"commands.disableSourceMapStepping.label": "원본 매핑된 단계별 실행 사용 안 함",
"commands.enableSourceMapStepping.label": "원본 매핑된 단계별 실행 사용",
+ "commands.networkClear.label": "네트워크 로그 지우기",
+ "commands.networkCopyURI.label": "요청 URL 복사",
+ "commands.networkOpenBody.label": "응답 본문 열기",
+ "commands.networkOpenBodyInHexEditor.label": "16진수 편집기에서 응답 본문 열기",
+ "commands.networkReplayXHR.label": "재생 요청",
+ "commands.networkViewRequest.label": "요청을 cURL로 보기",
"configuration.autoAttachMode": "`#debug.node.autoAttach#`이 설정되어 있는 경우 자동으로 연결 및 디버그할 프로세스를 구성합니다. 이 설정과 관계없이 `--inspect` 플래그로 시작한 노드 프로세스가 항상 연결됩니다.",
"configuration.autoAttachMode.always": "터미널에서 시작되는 모든 Node.js 프로세스에 자동으로 연결합니다.",
"configuration.autoAttachMode.disabled": "자동 연결이 사용하지 않도록 설정되어 있고 상태 표시줄에 표시되지 않습니다.",
@@ -340,6 +81,7 @@
"configuration.breakOnConditionalError": "조건부 중단점에서 오류가 발생하면 중지할지 여부입니다.",
"configuration.debugByLinkOptions": "디버그 터미널 내부에서 클릭한 열린 링크를 디버깅할 때 사용되는 옵션입니다. 이 동작을 사용하지 않도록 설정하려면 \"false\"로 설정할 수 있습니다.",
"configuration.defaultRuntimeExecutables": "지정되지 않은 경우 시작 구성에 사용되는 기본 `runtimeExecutable`입니다. 이 설정을 사용하여 Node.js 또는 브라우저 설치의 사용자 지정 경로를 구성할 수 있습니다.",
+ "configuration.enableNetworkView": "실험적 네트워크 보기를 지원하는 대상에 대해 실험적 네트워크 보기를 활성화합니다.",
"configuration.npmScriptLensLocation": "npm 스크립트에 \"실행\" 및 \"디버그\" 코드 렌즈가 표시되어야 하는 위치입니다. \"all\", 스크립트, 스크립트 섹션의 \"top\" 또는 \"never\"일 수 있습니다.",
"configuration.pickAndAttachOptions": "'디버그: Node.js 프로세스에 연결' 명령을 통해 프로세스를 디버그할 때 사용되는 기본 옵션입니다.",
"configuration.resourceRequestOptions": "디버거에서 소스 맵과 같은 리소스를 로드할 때 사용할 요청 옵션입니다. 예를 들어 sourcemap에서 인증을 요구하거나 자체 서명된 인증서를 사용하는 경우 이 옵션을 구성해야 할 수 있습니다. 옵션은 [`got`](https://github.com/sindresorhus/got) 라이브러리를 사용하여 요청을 만드는 데 사용됩니다.\r\n\r\n일반적으로 `{ \"https\": { \"rejectUnauthorized\": false } }`를 전달하여 인증서 확인을 사용하지 않도록 설정할 수 있습니다.",
@@ -371,6 +113,7 @@
"edge.port.description": "웹 보기를 디버그할 때 웹 보기 디버거에서 수신 대기하는 포트입니다. 설정하지 않은 경우 자동으로 검색됩니다.",
"edge.useWebView.attach.description": "UWP에서 호스팅된 Webview2에 대한 디버그 파이프의 `pipeName`을 포함하는 개체입니다. 이는 \"\\\\.\\pipe\\LOCAL\\MyTestSharedMemory\" 파이프를 만드는 경우 \"MyTestSharedMemory\"를 말합니다.",
"edge.useWebView.launch.description": "'true'이면 디버거는 런타임 실행 파일을 WebView가 포함된 호스트 애플리케이션으로 취급하여 WebView 스크립트 콘텐츠를 디버그할 수 있도록 합니다.",
+ "edit.xhr.breakpoint": "XHR/fetch 중단점 편집",
"enableContentValidation.description": "디스크에 있는 파일의 내용이 런타임에 로드된 파일의 내용과 일치하는지 확인할지를 전환합니다. 이는 여러 시나리오에서 유용하며 몇몇 시나리오에서는 반드시 필요하지만, 경우에 따라(예: 스크립트의 서버 쪽 변환이 있는 경우) 문제를 발생시킬 수 있습니다.",
"errors.timeout": "{0}: {1}ms 후 시간 초과",
"extension.description": "Node.js 프로그램 및 Chrome 디버깅을 위한 확장입니다.",
@@ -382,26 +125,30 @@
"extensionHost.launch.rendererDebugOptions": "'debugWebviews' 또는 'debugWebWorkerHost'를 사용하여 렌더러 프로세스에 연결하는 데 사용되는 크롬 시작 옵션입니다.",
"extensionHost.launch.runtimeExecutable.description": "VS Code의 절대 경로입니다.",
"extensionHost.launch.stopOnEntry.description": "시작된 후 확장 호스트를 자동으로 중지합니다.",
+ "extensionHost.launch.testConfiguration": "[test CLI](https://code.visualstudio.com/api/working-with-extensions/testing-extension#quick-setup-the-test-cli)에 대한 테스트 구성 파일의 경로입니다.",
+ "extensionHost.launch.testConfigurationLabel": "파일에서 실행할 단일 구성입니다. 지정하지 않으면 선택하라는 메시지가 표시될 수 있습니다.",
"extensionHost.snippet.launch.description": "디버그 모드에서 VS Code 확장 시작",
"extensionHost.snippet.launch.label": "VS Code 확장 개발",
"getDiagnosticLogs.label": "진단 JS 디버그 로그 저장",
- "longPredictionWarning.disable": "다시 표시 안 함",
+ "longPredictionWarning.disable": "다시 표시하지 않음",
"longPredictionWarning.message": "중단점을 구성하는 데 다소 시간이 소요됩니다. launch.json에서 'outFiles'를 업데이트하여 이 속도를 높일 수 있습니다.",
"longPredictionWarning.noFolder": "열려 있는 작업 영역 폴더가 없습니다.",
"longPredictionWarning.open": "launch.json 열기",
"node.address.description": "디버그할 프로세스의 TCP/IP 주소입니다. 기본값은 'localhost'입니다.",
- "node.attach.attachExistingChildren.description": "이미 생성된 자식 프로세스에 연결하려고 할지 여부입니다.",
+ "node.attach.attachExistingChildren.description": "이미 생성된 자식 프로세스에 연결을 시도할지 여부입니다.",
"node.attach.attachSpawnedProcesses.description": "연결된 프로세스에서 환경 변수를 설정하여 생성된 자식을 추적할지 여부입니다.",
"node.attach.config.name": "연결",
"node.attach.continueOnAttach": "true이면 시작되어 `--inspect-brk`를 기다리는 프로그램을 자동으로 다시 시작합니다.",
"node.attach.processId.description": "연결할 프로세스의 ID입니다.",
"node.attach.restart.description": "연결이 끊어지면 프로그램에 다시 연결해 보세요. `true`로 설정된 경우 영원히 1초에 한 번 시도합니다. 대신 개체의 `delay` 및 `maxAttempts`를 지정하여 시도 간격 및 최대 시도 횟수를 사용자 지정할 수 있습니다.",
"node.attachSimplePort.description": "설정된 경우 지정된 포트를 통해 프로세스에 연결합니다. 이 기능은 일반적으로 Node.js 프로그램에는 더 이상 필요하지 않으며 자식 프로세스를 디버그하는 기능을 잃게 되지만, Deno 및 Docker 시작 같은 더 난해한 시나리오에서는 유용할 수 있습니다. 0으로 설정된 경우 임의 포트가 선택되고 시작 인수에 자동으로 --inspect-brk가 추가됩니다.",
- "node.console.title": "Node 디버그 콘솔",
+ "node.console.title": "노드 디버그 콘솔",
"node.disableOptimisticBPs.description": "해당 파일에 대한 sourcemap이 로드될 때까지 파일에서 중단점을 설정하지 마세요.",
+ "node.enableTurboSourcemaps.description": "소스맵 검색을 위해 새롭고 더 빠른 메커니즘을 사용할지 여부를 구성합니다.",
+ "node.experimentalNetworking.description": "Node.js에서 실험적 검사를 활성화합니다. '자동'으로 설정하면 이를 지원하는 Node.js 버전에서 이 기능이 활성화됩니다. '켜기' 또는 '끄기'로 설정하여 명시적으로 활성화 또는 비활성화할 수 있습니다.",
"node.killBehavior.description": "세션을 중지할 때 디버그 프로세스가 종료되는 방식을 구성합니다. 이 방식은 다음과 같을 수 있습니다.\r\n\r\n- forceful(기본값): 프로세스 트리를 강제로 삭제합니다. posix에서는 SIGKILL을 보내고, Windows에서는 `taskkill.exe /F`를 보냅니다.\r\n- polite: 프로세스 트리를 정상적으로 삭제합니다. 잘못 동작하는 프로세스는 이 방식으로 종료된 후 계속 실행될 수 있습니다. posix에서는 SIGTERM을 보내고, Windows에서는 `/F`(force) 플래그 없이 `taskkill.exe`를 보냅니다.\r\n- none: 종료가 수행되지 않습니다.",
"node.label": "Node.js",
- "node.launch.args.description": "Command line arguments passed to the program.\r\n\r\nCan be an array of strings or a single string. When the program is launched in a terminal, setting this property to a single string will result in the arguments not being escaped for the shell.",
+ "node.launch.args.description": "프로그램에 전달되는 명령줄 인수입니다.\r\n\r\n문자열 배열 또는 단일 문자열일 수 있습니다. 프로그램이 터미널에서 시작될 때 이 속성을 단일 문자열로 설정하면 셸에 대해 인수가 이스케이프되지 않습니다.",
"node.launch.autoAttachChildProcesses.description": "디버거를 새로 생성된 자식 프로세스에 자동으로 연결합니다.",
"node.launch.config.name": "시작",
"node.launch.console.description": "디버그 대상을 시작할 위치입니다.",
@@ -428,6 +175,7 @@
"node.port.description": "연결할 디버그 포트입니다. 기본값은 9229입니다.",
"node.processattach.config.name": "프로세스에 연결",
"node.profileStartup.description": "true인 경우 프로세스가 시작되면 프로파일링이 즉시 시작됩니다.",
+ "node.remote.host.header.description": "검사기의 WebSocket에 연결할 때 사용할 명시적 호스트 헤더입니다. 지정하지 않으면 호스트 헤더가 'localhost'로 설정됩니다. 검사기가 특정 호스트 헤더만 허용하는 프록시 뒤에서 실행 중일 때 유용합니다.",
"node.remoteRoot.description": "프로그램이 포함된 원격 디렉터리의 절대 경로입니다.",
"node.resolveSourceMapLocations.description": "소스 맵을 사용하여 로컬 파일을 확인할 수 있는 위치(폴더 및 URL)에 대한 minimatch 패턴 목록입니다. 외부 소스 매핑 코드에서 잘못 중단되지 않도록 하는 데 사용할 수 있습니다. 패턴은 \"!\" 접두사를 붙여 제외할 수 있습니다. 제한을 피하기 위해 빈 배열 또는 null로 설정할 수 있습니다.",
"node.showAsyncStacks.description": "현재 호출 스택을 생성하는 비동기 호출을 표시합니다.",
@@ -462,8 +210,9 @@
"pretty.print.script": "디버그를 위한 예쁜 인쇄",
"profile.start": "성능 프로필 수행",
"profile.stop": "성능 프로필 중지",
- "remove.browser.breakpoint": "브라우저 중단점 제거",
- "remove.browser.breakpoint.all": "모든 브라우저 중단점 제거",
+ "remove.eventListener.breakpoint.all": "모든 이벤트 수신기 중단점 제거",
+ "remove.xhr.breakpoint": "XHR/fetch 중단점 제거",
+ "remove.xhr.breakpoint.all": "모든 XHR/fetch 중단점 제거",
"requestCDPProxy.label": "디버그 세션에 대한 CDP 프록시 요청",
"skipFiles.description": "디버그할 때 건너뛰는 파일의 GLOB 패턴 배열입니다. `/**` 패턴은 모든 내부 Node.js 모듈과 일치합니다.",
"smartStep.description": "다시 원래 소스에 매핑할 수 없는 생성된 코드를 자동으로 단계별로 실행합니다.",
@@ -481,6 +230,230 @@
"trace.logFile.description": "온디스크 로그가 기록되는 위치를 구성합니다.",
"trace.stdio.description": "시작된 애플리케이션 또는 브라우저에서 추적 데이터를 반활하지 여부.",
"workspaceTrust.description": "이 작업 영역에서 코드를 디버깅하려면 신뢰가 필요합니다."
+ },
+ "bundle": {
+ "A profiling session is already running, would you like to stop it and start a new session?": "프로파일링 세션이 이미 실행 중입니다. 해당 세션을 중지하고 새 세션을 시작하시겠습니까?",
+ "Add XHR Breakpoint": "XHR 중단점 추가",
+ "Add new URL...": "새 URL 추가...",
+ "Adjust glob pattern(s) in the 'outFiles' attribute so that they cover the generated JavaScript.": "생성된 JavaScript를 포함하도록 'outFiles' 특성의 GLOB 패턴을 조정합니다.",
+ "Always": "항상",
+ "Always in this Workspace": "이 작업 영역에서 항상",
+ "An error occurred taking a profile from the target.": "대상에서 프로필을 가져오는 동안 오류가 발생했습니다.",
+ "Animation Frame Fired": "애니메이션 프레임 발생",
+ "Any XHR or fetch": "모든 XHR 또는 fetch",
+ "Assertion failed": "어설션 실패",
+ "Attach to process: '{0}' doesn't look like a process id.": "프로세스에 연결: '{0}'은(는) 프로세스 ID가 아닌 것 같습니다.",
+ "Attach to process: cannot enable debug mode for process '{0}' ({1}).": "프로세스에 연결: 프로세스 '{0}'({1})에 대해 디버그 모드를 사용하도록 설정할 수 없습니다.",
+ "Attribute 'runtimeVersion' requires Node.js version manager 'nvm-windows' or 'nvs'.": "'runtimeVersion' 특성에는 Node.js 버전 관리자 'nvm-windows' 또는 'nvs'가 필요합니다.",
+ "Attribute 'runtimeVersion' requires Node.js version manager 'nvs', 'nvm' or 'fnm' to be installed.": "특성 'runtimeVersion'에는 Node.js 버전 관리자 'nvs', 'nvm' 또는 'fnm'이 설치되어 있어야 합니다.",
+ "Attribute 'runtimeVersion' with a flavor/architecture requires 'nvs' to be installed.": "flavor/architecture를 사용하는 'runtimeVersion' 특성은 'nvs'를 설치해야 합니다.",
+ "Bidder Bidding Phase Start": "입찰자 입찰 단계 시작",
+ "Bidder Reporting Phase Start": "입찰자 보고 단계 시작",
+ "Block": "차단",
+ "Break when URL Contains": "URL이 다음을 포함하면 중단",
+ "Breaks on all throw errors, even if they're caught later.": "나중에 catch되는 경우에도 모든 throw 오류 발생 시 중단됩니다.",
+ "Breaks only on errors or promise rejections that are not handled.": "오류에서만 중단되거나 처리되지 않는 거부를 약속합니다.",
+ "Browser connection failed, will retry: {0}": "브라우저 연결에 실패했습니다. 다시 시도합니다. {0}",
+ "CPU Profile": "CPU 프로필",
+ "CPU profile saved as \"{0}\" in your workspace folder": "작업 영역 폴더에 \"{0}\"(으)로 저장된 CPU 프로필",
+ "CSP violation \"{0}\"": "CSP 위반 \"{0}\"",
+ "Can't find Node.js binary \"{0}\": {1}. Make sure Node.js is installed and in your PATH, or set the \"runtimeExecutable\" in your launch.json": "Node.js 이진 \"{0}\"을(를) 찾을 수 없습니다. {1}. Node.js가 설치되어 있고 PATH에 있는지 확인하거나 launch.json에서 \"runtimeExecutable\"을 설정하세요.",
+ "Can't load environment variables from file ({0}).": "파일({0})에서 환경 변수를 로드할 수 없습니다.",
+ "Cancel Animation Frame": "애니메이션 프레임 취소",
+ "Cannot connect to the target at {0}: {1}": "{0}에서 대상에 연결할 수 없음: {1}",
+ "Cannot find `{0}` installed in {1}": "{1}에 설치된 ‘{0}’을 찾을 수 없음",
+ "Cannot find a program to debug": "디버그할 프로그램을 찾을 수 없습니다.",
+ "Cannot find test configuration with label `{0}`, got: {1}": "레이블이 ‘{0}’인 테스트 구성을 찾을 수 없으며 {1}을(를) 받았음",
+ "Cannot launch debug target in terminal ({0}).": "터미널({0})에서 디버그 대상을 시작할 수 없습니다.",
+ "Cannot restart asynchronous frame": "비동기 프레임을 다시 시작할 수 없음",
+ "Cannot set an empty value": "빈 값을 설정할 수 없음",
+ "Catch Block": "블록 포착",
+ "Caught Exceptions": "catch된 예외",
+ "Close AudioContext": "AudioContext 닫기",
+ "Closure": "닫기",
+ "Closure ({0})": "닫기({0})",
+ "Console profile started": "콘솔 프로필 시작됨",
+ "Could not connect to any UWP Webview pipe. Make sure your webview is hosted in debug mode, and that the `pipeName` in your `launch.json` is correct.": "UWP Webview 파이프에 연결할 수 없습니다. webview가 디버그 모드에서 호스팅되고 `launch.json`의 `pipeName`이 올바른지 확인하세요.",
+ "Could not find a location for the variable": "변수의 위치를 찾을 수 없습니다.",
+ "Could not query the provided object": "제공된 개체를 쿼리할 수 없습니다.",
+ "Could not read source map for {0}: {1}": "{0}의 소스 맵을 읽을 수 없음: {1}",
+ "Could not read {0}: {1}": "{0}을(를) 읽을 수 없습니다. {1}",
+ "Create AudioContext": "AudioContext 만들기",
+ "Create canvas context": "캔버스 컨텍스트 만들기",
+ "Debug Anyway": "디버그",
+ "Debug URL": "URL 디버그",
+ "Details": "자세히",
+ "Don't show again": "다시 표시하지 않음",
+ "Duration": "기간",
+ "Duration of Profile": "프로필 지속 기간",
+ "Edit XHR Breakpoint": "XHR 중단점 편집",
+ "Edit package.json": "package.json 편집",
+ "Enables Node.js [auto attach]({0}) debugging in \"{1}\" mode/{Locked='[auto attach]({0})'}the 2nd placeholder is the setting value": "\"{1}\" 모드에서 Node.js [auto attach]({0}) 디버깅을 활성화합니다.",
+ "Enter a URL or a pattern to match": "일치시킬 URL 또는 패턴 입력",
+ "Eval": "Eval",
+ "Frame could not be restarted": "프레임을 다시 시작할 수 없습니다.",
+ "Generates a .cpuprofile file you can open in VS Code or the Edge/Chrome devtools": "VS Code 또는 Edge/Chrome devtools에서 열 수 있는 .cpuprofile 파일을 생성합니다.",
+ "Generates a .heapprofile file you can open in VS Code or the Edge/Chrome devtools": "VS Code 또는 Edge/Chrome devtools에서 열 수 있는 .heapprofile 파일을 생성합니다.",
+ "Generates a .heapsnapshot file you can open in VS Code or the Edge/Chrome devtools": "VS Code 또는 Edge/Chrome devtools에서 열 수 있는 .heapsnapshot 파일을 생성합니다.",
+ "Global": "글로벌",
+ "Globals": "전역",
+ "Got it!": "확인했습니다!",
+ "Heap Profile": "힙 프로필",
+ "Heap Snapshot": "힙 스냅샷",
+ "How long to run the profile": "프로필 실행 시간",
+ "Ignore": "무시",
+ "Installation complete! The extension will be used after you restart your debug session.": "설치가 완료되었습니다! 디버그 세션을 다시 시작하면 확장이 사용됩니다.",
+ "Installing the DWARF debugger...": "이 디버거를 설치하는 중...",
+ "Invalid expression": "잘못된 식",
+ "Invalid hit condition \"{0}\". Expected an expression like \"> 42\" or \"== 2\".": "적중 조건 \"{0}\"이(가) 잘못되었습니다. \"> 42\" 또는 \"== 2\" 같은 식이 필요합니다.",
+ "It looks like a browser is already running from {0}. Please close it before trying to debug, otherwise VS Code may not be able to connect to it.": "브라우저가 이미 {0}에서 실행되고 있는 것 같습니다. 디버깅을 시도하기 전에 먼저 브라우저를 닫으세요. 그러지 않으면 VS Code가 브라우저에 연결하지 못할 수 있습니다.",
+ "It looks like your debug session has already ended. Try debugging again, then run the \"Debug: Diagnose Breakpoint Problems\" command.": "디버그 세션이 이미 종료된 것 같습니다. 디버깅을 다시 시도한 후 \"디버그: 중단점 문제 진단\" 명령을 실행하세요.",
+ "It's taking a while to configure your breakpoints. You can speed this up by updating the 'outFiles' in your launch.json.": "중단점을 구성하는 데 다소 시간이 소요됩니다. launch.json에서 'outFiles'를 업데이트하여 이 속도를 높일 수 있습니다.",
+ "JavaScript Debug Terminal": "JavaScript 디버그 터미널",
+ "JavaScript debug adapter": "JavaScript 디버그 어댑터",
+ "Launch Chrome against localhost": "localhost에 대해 Chrome 시작",
+ "Launch Edge against localhost": "localhost에 대해 Microsoft Edge 시작",
+ "Launch Program": "프로그램 시작",
+ "Launch configuration created based on 'package.json'.": "'package.json'을 기반으로 구성 시작이 생성되었습니다.",
+ "Launch configuration for '{0}' project created.": "'{0}' 프로젝트에 대한 구성 시작이 생성되었습니다.",
+ "Local": "로컬",
+ "Locals": "로컬",
+ "Lost connection to debugee, reconnecting in {0}ms\r\n": "디버기에 대한 연결이 끊김, {0}ms 후에 다시 연결함\r\n",
+ "Manual": "수동",
+ "Missing source information. Did you set \"originalUrl\" or \"source\"?": "원본 정보가 없습니다. \"originalUrl\" 또는 \"source\"를 설정했습니까?",
+ "Module": "모듈",
+ "Networking not available.": "네트워킹을 사용할 수 없습니다.",
+ "Never": "안 함",
+ "No": "아니요",
+ "No npm scripts found in the workspace folder.": "작업 영역 폴더에서 npm 스크립트를 찾을 수 없습니다.",
+ "No npm scripts found in your package.json": "package.json에서 npm 스크립트를 찾을 수 없습니다.",
+ "No package.json files found in your workspace.": "작업 영역에서 package.json 파일을 찾을 수 없습니다.",
+ "No workspace folder open.": "열려 있는 작업 영역 폴더가 없습니다.",
+ "Node Attributes": "노드 특성",
+ "Node.js version '{0}' not installed using version manager {1}.": "버전 관리자 {1}을(를) 사용하여 Node.js 버전 '{0}'이(가) 설치되지 않았습니다.",
+ "Not Now": "나중에",
+ "Only objects can be queried": "개체만 쿼리할 수 있습니다.",
+ "Open launch.json": "launch.json 열기",
+ "Output has been truncated to the first {0} characters. Run `{1}` to copy the full output.": "출력이 앞 {0} 번째 문자까지 잘렸습니다. '{1}'을(를) 실행하여 전체 출력을 복사합니다.",
+ "Parameters": "매개 변수",
+ "Paused": "일시 중지됨",
+ "Paused before Out Of Memory exception": "메모리 부족 예외 전에 일시 중지됨",
+ "Paused on Content Security Policy violation instrumentation breakpoint, directive \"{0}\"": "콘텐츠 보안 정책 위반 계측 중단점에서 일시 중지됨, 지시문 \"{0}\"",
+ "Paused on DOM breakpoint": "DOM 중단점에서 일시 중지됨",
+ "Paused on WebGL Error instrumentation breakpoint, error \"{0}\"": "WebGL 오류 계측 중단점에서 일시 중지됨, 오류 \"{0}\"",
+ "Paused on XMLHttpRequest or fetch": "XMLHttpRequest 또는 페치에서 일시 중지됨",
+ "Paused on assert": "어설션에서 일시 중지됨",
+ "Paused on breakpoint": "중단점에서 일시 중지됨",
+ "Paused on debug() call": "debug() 호출에서 일시 중지됨",
+ "Paused on debugger statement": "디버거 문에서 일시 중지됨",
+ "Paused on event listener": "이벤트 수신기에서 일시 중지됨",
+ "Paused on event listener breakpoint \"{0}\", triggered on \"{1}\"": "이벤트 수신기 중단점 \"{0}\"에서 일시 중지됨, \"{1}\"에서 트리거됨",
+ "Paused on exception": "예외에서 일시 중지됨",
+ "Paused on frame entry": "프레임 입력에서 일시 중지됨",
+ "Paused on instrumentation breakpoint": "계측 중단점에서 일시 중지됨",
+ "Paused on instrumentation breakpoint \"{0}\"": "계측 중단점 \"{0}\"에서 일시 중지됨",
+ "Paused on {0}": "{0}에서 일시 중지됨",
+ "Pick Breakpoint": "중단점 선택",
+ "Pick the node.js process to attach to": "연결할 Node.js 프로세스 선택",
+ "Please enter a number": "숫자를 입력하세요.",
+ "Please enter a number greater than 1": "1보다 큰 숫자를 입력하세요.",
+ "Please stop the running profile before starting a new one.": "새 프로필을 시작하기 전에 실행 중인 프로필을 중지하세요.",
+ "Process picker failed ({0})": "프로세스 선택기 실패({0})",
+ "Profile duration in seconds, e.g \"5\"": "프로필 지속 기간(초)(예: \"5\")",
+ "Profiling": "프로파일링",
+ "Profiling with breakpoints enabled can change the performance of your code. It can be useful to validate your findings with the \"duration\" or \"manual\" termination conditions.": "중단점을 사용하도록 설정된 프로파일링은 코드의 성능을 변경할 수 있습니다. \"기간\" 또는 \"수동\" 종료 조건으로 검색 결과의 유효성을 검사하는 데 유용할 수 있습니다.",
+ "Read More": "자세히 알아보기",
+ "Request Animation Frame": "애니메이션 프레임 요청",
+ "Resume AudioContext": "AudioContext 다시 시작",
+ "Return value": "반환 값",
+ "Run Current File": "현재 파일 실행",
+ "Run Node.js tool": "Node.js 도구 실행",
+ "Run Script: {0}": "스크립트 실행: {0}",
+ "Run Script: {0} ({1})": "스크립트 실행: {0}({1})",
+ "Run for a specific amount of time": "특정 시간 동안 실행",
+ "Run until a specific breakpoint is hit": "특정 중단점이 적중될 때까지 실행",
+ "Run until manually stopped": "수동으로 중지될 때까지 실행",
+ "Runs a Node.js command-line installed in the workspace node_modules.": "작업 영역 node_modules 설치된 Node.js 명령줄을 실행합니다.",
+ "Saving": "저장 중",
+ "Script": "스크립트",
+ "Script Blocked by Content Security Policy": "콘텐츠 보안 정책으로 차단된 스크립트",
+ "Script First Statement": "스크립트 첫 번째 문",
+ "Select a tab": "탭 선택",
+ "Select a tool to run": "실행할 도구 선택",
+ "Select current working directory for new terminal": "새 터미널의 현재 작업 디렉토리를 선택합니다.",
+ "Select test configuration to run": "실행할 테스트 구성 선택",
+ "Select the page where you want to open the devtools": "Devtools를 열 페이지를 선택합니다.",
+ "Select the session you want to inspect:": "검사할 세션 선택:",
+ "Seller Reporting Phase Start": "판매자 보고 단계 시작",
+ "Seller Scoring Phase Start": "판매자 채점 단계 시작",
+ "Set innerHTML": "innerHTML 설정",
+ "Skipped by skipFiles": "skipFiles에서 건너뜀",
+ "Skipped by smartStep": "smartStep에서 건너뜀",
+ "Some breakpoints might not work in your version of Node.js. We recommend upgrading for the latest bug, performance, and security fixes. Details: https://aka.ms/AAcsvqm": "일부 중단점은 Node.js 버전에서 작동하지 않을 수 있습니다. 최신 버그, 성능 및 보안 픽스를 업그레이드하는 것이 좋습니다. 세부 정보: https://aka.ms/AAcsvqm",
+ "Source not a source map": "소스 맵이 아닌 원본",
+ "Source not found": "소스를 찾을 수 없음",
+ "Stack frame not found": "스택 프레임을 찾을 수 없음",
+ "Starting profile...": "프로필 시작 중...",
+ "Stopping profile...": "프로필 중지 중...",
+ "Suspend AudioContext": "AudioContext 일시 중단",
+ "Syntax error setting breakpoint with condition {0} on line {1}: {2}": "줄 {1}의 조건 {0}을(를) 사용하여 중단점을 설정하는 동안 구문 오류가 발생함: {2}",
+ "Target page not found. You may need to update your \"urlFilter\" to match the page you want to debug.": "대상 페이지를 찾을 수 없습니다. 디버그하려는 페이지와 일치하도록 \"urlFilter\"를 업데이트해야 할 수 있습니다.",
+ "The Node version in \"{0}\" is outdated (version {1}), we require at least Node 8.x.": "\"{0}\"의 Node 버전이 오래되었습니다(버전 {1}). Node 8.x 이상이 필요합니다.",
+ "The URL provided is invalid": "지정된 URL이 잘못되었습니다.",
+ "The browser process exited with code {0} before connecting to the debug server. Make sure the `runtimeExecutable` is configured correctly and that it can run without errors.": "디버그 서버에 연결하기 전에 브라우저 프로세스가 코드 {0}과(와) 함께 종료되었습니다. 'runtimeExecutable'이 올바르게 구성되어 있고 오류 없이 실행할 수 있는지 확인하세요.",
+ "The configured `cwd` {0} does not exist.": "구성된 'cwd' {0}이(가) 없습니다.",
+ "The configured `cwd` {0} is not a folder.": "구성된 `cwd` {0}은(는) 폴더가 아닙니다.",
+ "This is a missing file path referenced by a sourcemap. Would you like to debug the compiled version instead?": "sourcemap에서 참조하는 누락된 파일 경로입니다. 대신 컴파일된 버전을 디버그하시겠습니까?",
+ "Thread is not paused": "스레드가 일시 중지되지 않음",
+ "Thread is not paused on exception": "예외에서 스레드가 일시 중지되지 않음",
+ "Thread not found": "스레드를 찾을 수 없음",
+ "Type of profile": "프로필 유형",
+ "URL contains \"{0}\"": "URL에 \"{0}\"이(가) 포함됨",
+ "UWP webview debugging is not available on your platform.": "UWP webview 디버깅은 플랫폼에서 사용할 수 없습니다.",
+ "Unable to attach to browser": "브라우저에 연결할 수 없음",
+ "Unable to evaluate": "평가할 수 없음",
+ "Unable to evaluate on async stack frame": "비동기 스택 프레임에서 평가할 수 없음",
+ "Unable to find an installation of the browser on your system. Try installing it, or providing an absolute path to the browser in the \"runtimeExecutable\" in your launch.json.": "시스템에서 브라우저 설치를 찾을 수 없습니다. 설치를 시도하거나 launch.json의 \"runtimeExecutable\"에서 브라우저에 대한 절대 경로를 제공하세요.",
+ "Unable to find {0} version {1}. Available auto-discovered versions are: {2}. You can set the \"runtimeExecutable\" in your launch.json to one of these, or provide an absolute path to the browser executable.": "{0} 버전 {1}을(를) 찾을 수 없습니다. 사용 가능한 자동 검색 버전은 {2}입니다. launch.json의 \"runtimeExecutable\"을 해당 항목 중 하나로 설정하거나 브라우저 실행 파일의 절대 경로를 제공할 수 있습니다.",
+ "Unable to launch browser: \"{0}\"": "\"{0}\" 브라우저를 시작할 수 없음",
+ "Unable to pause": "일시 중지할 수 없음",
+ "Unable to pretty print": "자동 서식을 지정할 수 없음",
+ "Unable to resume": "다시 시작할 수 없음",
+ "Unable to retrieve source content": "소스 콘텐츠를 검색할 수 없음",
+ "Unable to set variable value": "변수 값을 설정할 수 없음",
+ "Unable to step in": "한 단계씩 코드를 실행할 수 없음",
+ "Unable to step next": "다음 프로시저로 이동할 수 없음",
+ "Unable to step out": "프로시저에서 나갈 수 없음",
+ "Unbound breakpoint": "바인딩되지 않은 중단점",
+ "Uncaught Exceptions": "포착되지 않은 예외",
+ "Unknown error": "알 수 없는 오류",
+ "VS Code can provide better debugging experience for WebAssembly via \"DWARF Debugging\" extension. Would you like to install it?/\"DWARF Debugging\" is the extension name and should not be localized.": "VS Code에서 \"DWARF 디버깅\" 확장을 통해 WebAssembly에 더 나은 디버깅 환경을 제공할 수 있습니다. 설치하시겠습니까?",
+ "Variable not found": "변수를 찾을 수 없음",
+ "Variables not available in async stacks": "비동기 스택에서 변수를 사용할 수 없음",
+ "WARNING: Processing source-maps of {0} took longer than {1} ms so we continued execution without waiting for all the breakpoints for the script to be set.": "경고: {0}의 소스 맵을 처리하는 데 {1}밀리초보다 긴 시간이 걸려 스크립트에 대한 모든 중단점을 설정할 때까지 기다리지 않고 실행을 계속했습니다.",
+ "We can't launch a browser in debug mode from here. If you want to debug this webpage, open this workspace from VS Code on your desktop.": "여기서는 디버그 모드에서 브라우저를 시작할 수 없습니다. 이 웹 페이지를 디버그하려면 데스크톱의 VS Code에서 이 작업 영역을 여세요.",
+ "We can't launch a browser in debug mode from here. Open this workspace in VS Code on your desktop to enable debugging.": "여기서는 디버그 모드에서 브라우저를 시작할 수 없습니다. 데스크톱의 VS Code에서 이 작업 영역을 열어 디버깅을 사용하도록 설정하세요.",
+ "WebGL Error Fired": "WebGL 오류 발생",
+ "WebGL Warning Fired": "WebGL 경고 발생",
+ "With Block": "With 블록",
+ "Would you like to save a configuration in your launch.json for easy access later?": "나중에 쉽게 액세스할 수 있도록 launch.json에 구성을 저장하시겠습니까?",
+ "XHR/Fetch URLs": "XHR/fetch URL",
+ "Yes": "예",
+ "You may install the `{}` module via npm for enhanced WebAssembly debugging": "향상된 WebAssembly 디버깅을 위해 npm을 통해 '{}' 모듈을 설치할 수 있습니다.",
+ "You need to open a workspace folder to debug npm scripts.": "npm 스크립트를 디버그하려면 작업 영역 폴더를 열어야 합니다.",
+ "You're running an outdated version of Node.js. We recommend upgrading for the latest bug, performance, and security fixes.": "이전 버전의 Node.js를 실행하고 있습니다. 최신 버그, 성능 및 보안 픽스를 업그레이드하는 것이 좋습니다.",
+ "an old debug session": "이전 디버그 세션",
+ "breakpoint.provisionalBreakpoint": "breakpoint.provisionalBreakpoint",
+ "path does not exist": "경로가 없음",
+ "process id: {0} ({1})": "프로세스 ID: {0}({1})",
+ "process id: {0}, debug port: {1} ({2})": "프로세스 ID: {0}, 디버그 포트: {1}({2})",
+ "setInterval fired": "setInterval 발생",
+ "setTimeout fired": "setTimeout 발생",
+ "the configured userDataDir": "구성된 userDataDir",
+ "{0} (couldn't describe: {1})": "{0}(설명할 수 없음: {1})",
+ "{0} Click to Stop Profiling": "{0} 클릭하여 프로파일링 중지",
+ "{0} Click to Stop Profiling ({1} sessions)": "{0} 클릭으로 프로파일링 중지({1}개 세션)",
+ "{0} Click to Stop Profiling ({1})": "{0} 클릭하여 프로파일링 중지({1})"
}
}
}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-ko/translations/extensions/ms-vscode.node-debug.i18n.json b/i18n/vscode-language-pack-ko/translations/extensions/ms-vscode.node-debug.i18n.json
deleted file mode 100644
index 483d0cf665..0000000000
--- a/i18n/vscode-language-pack-ko/translations/extensions/ms-vscode.node-debug.i18n.json
+++ /dev/null
@@ -1,183 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "dist/node/extension/autoAttach": {
- "process.with.pid.label": "자동 연결됨({0})"
- },
- "dist/node/extension/cluster": {
- "child.process.with.pid.label": "자식 프로세스 {0}"
- },
- "dist/node/extension/configurationProvider": {
- "NVM_DIR.not.found.message": "'runtimeVersion' 특성에는 Node.js 버전 관리자 'nvm' 또는 'nvs'.가 필요합니다.",
- "NVM_HOME.not.found.message": "'runtimeVersion' 특성에는 Node.js 버전 관리자 'nvm-windows' 또는 'nvs'가 필요합니다.",
- "NVS_HOME.not.found.message": "'runtimeVersion' 특성에는 Node.js 버전 관리자 'nvs'가 필요합니다.",
- "mern.starter.explanation": "'{0}' 프로젝트에 대한 구성 시작이 생성되었습니다.",
- "node.launch.config.name": "프로그램 시작",
- "outFiles.explanation": "생성된 JavaScript를 포함하도록 'outFiles' 특성의 GLOB 패턴을 조정합니다.",
- "program.guessed.from.package.json.explanation": "'package.json'을 기반으로 구성 시작이 생성되었습니다.",
- "program.not.found.message": "디버그할 프로그램을 찾을 수 없습니다.",
- "runtime.version.not.found.message": "Node.js 버전 '{0}'이(가) '{1}'에 대해 설치되어 있지 않습니다.",
- "useWslDeprecationWarning.doNotShowAgain": "다시 표시 안 함",
- "useWslDeprecationWarning.title": "'useWSL' 특성은 더 이상 사용되지 않습니다. 대신 '원격 WSL' 확장을 사용하세요. 자세한 내용을 보려면 [여기]({0})를 클릭하세요."
- },
- "dist/node/extension/processPicker": {
- "cannot.enable.debug.mode.error": "프로세스에 연결: 프로세스 '{0}'({1})에 대해 디버그 모드를 사용하도록 설정할 수 없습니다.",
- "pickNodeProcess": "연결할 Node.js 프로세스 선택",
- "pid.error": "프로세스에 연결: 디버그 모드에서 프로세스 '{0}'을 넣을 수 없습니다.",
- "process.id.error": "프로세스에 연결: '{0}'은(는) 프로세스 ID가 아닌 것 같습니다.",
- "process.id.port": "프로세스 ID: {0}, 디버그 포트: {1}",
- "process.id.port.legacy": "프로세스 ID: {0}, 디버그 포트: {1}(레거시 프로토콜)",
- "process.id.port.signal": "프로세스 ID: {0}, 디버그 포트: {1}({2})",
- "process.id.signal": "프로세스 ID: {0}({1})",
- "process.picker.error": "프로세스 선택기 실패({0})"
- },
- "dist/node/extension/protocolDetection": {
- "protocol.switch.legacy.detected": "레거시 프로토콜이 검색되었기 때문에 레거시 프로토콜로 디버그합니다.",
- "protocol.switch.legacy.version": "노드 {0}이(가) 감지되었으므로 레거시 프로토콜로 디버그합니다.",
- "protocol.switch.unknown.error": "Node.js 버전을 확인할 수 없으므로 검사기 프로토콜로 디버그합니다({0})."
- },
- "dist/node/nodeDebug": {
- "VSND2001": "PATH에서 '{0}' 런타임을 찾을 수 없습니다. '{0}'이(가) 설치되어 있는지 확인하세요.",
- "VSND2002": "'{0}' 프로그램을 시작할 수 없습니다. 소스 맵을 구성하면 도움이 될 수 있습니다.",
- "VSND2003": "'{0}' 프로그램을 시작할 수 없습니다. '{1}' 특성을 설정하면 도움이 될 수 있습니다.",
- "VSND2009": "해당 JavaScript를 찾을 수 없으므로 '{0}' 프로그램을 시작할 수 없습니다.",
- "VSND2010": "런타임 프로세스에 연결할 수 없습니다(이유: {0}).",
- "VSND2011": "터미널({0})에서 디버그 대상을 시작할 수 없습니다.",
- "VSND2015": "Node.js가 응답하지 않아 '{_request}' 요청이 취소되었습니다.",
- "VSND2016": "Node.js가 적절한 시간 내에 '{_request}' 요청에 응답하지 않았습니다.",
- "VSND2017": "디버그 대상({0})을 시작할 수 없습니다.",
- "VSND2018": "사용할 수 있는 호출 스택이 없습니다({_command}: {_error}).",
- "VSND2019": "내부 모듈 {0}을(를) 찾을 수 없습니다.",
- "VSND2022": "프로그램이 JavaScript 밖에서 일시 중지되었기 때문에 호출 스택이 없습니다.",
- "VSND2023": "호출 스택을 사용할 수 없습니다.",
- "VSND2028": "알 수 없는 콘솔 유형 '{0}'입니다.",
- "VSND2029": "파일({0})에서 환경 변수를 로드할 수 없습니다.",
- "VSND2033": "런타임에 연결할 수 없습니다. 런타임이 '레거시' 디버그 모드에 있는지 확인합니다.",
- "VSND2034": "'legacy' 프로토콜을 통해 런타임에 연결할 수 없으므로 'inspector' 프로토콜을 사용해 보세요.",
- "anonymous.function": "(익명 함수)",
- "attribute.path.not.absolute": "'{0}' 특성이 절대('{1}')가 아닙니다. 절대로 설정하려면 접두사로 '{2}'을(를) 추가하는 것이 좋습니다.",
- "attribute.path.not.exist": "'{0}' 특성이 없습니다('{1}').",
- "attribute.wls.not.exist": "Windows Subsystem Linux 설치를 찾을 수 없음",
- "eval.invalid.expression": "잘못된 식: {0}",
- "eval.not.available": "사용할 수 없음",
- "exception.paused.promise.rejection": "약속 거부에서 일시 중지됨",
- "exception.promise.rejection": "약속 거부",
- "exception.promise.rejection.text": "약속 거부({0})",
- "exceptions.all": "모든 예외",
- "exceptions.rejects": "약속 거부",
- "exceptions.uncaught": "확인할 수 없는 예외",
- "file.on.disk.changed": "디스크의 파일이 변경되었기 때문에 확인되지 않았습니다. 디버그 세션을 다시 시작하세요.",
- "more.information": "추가 정보",
- "node.console.title": "노드 디버그 콘솔",
- "origin.core.module": "읽기 전용 코어 모듈",
- "origin.from.node": "Node.js의 읽기 전용 콘텐츠",
- "origin.from.remote.node": "원격 Node.js의 읽기 전용 콘텐츠",
- "origin.inlined.source.map": "소스 맵의 읽기 전용 인라인 콘텐츠",
- "program.path.case.mismatch.warning": "프로그램 경로에 디스크의 파일과 다른 대/소문자가 사용됩니다. 이로 인해 중단점이 적중되지 않을 수 있습니다.",
- "reason.description.breakpoint": "중단점에서 일시 중지됨",
- "reason.description.debugger_statement": "디버거 문에서 일시 중지됨",
- "reason.description.entry": "항목에서 일시 중지됨",
- "reason.description.exception": "예외에서 일시 중지됨",
- "reason.description.restart": "프레임 입력에서 일시 중지됨",
- "reason.description.step": "단계에서 일시 중지됨",
- "reason.description.user_request": "사용자 요청에서 일시 중지됨",
- "scope.block": "차단",
- "scope.catch": "Catch",
- "scope.closure": "닫기",
- "scope.exception": "예외",
- "scope.global": "GLOBAL",
- "scope.local": "LOCAL",
- "scope.local.with.count": "로컬({0}/{1})",
- "scope.script": "스크립트",
- "scope.unknown": "알 수 없는 범위 유형: {0}",
- "scope.with": "함께",
- "setVariable.error": "설정 값이 지원되지 않습니다.",
- "source.not.found": "콘텐츠를 검색할 수 없습니다.",
- "source.skipFiles": "'skipFiles'로 인해 건너뜀",
- "source.smartstep": "'smartStep'으로 인해 건너뜀",
- "sourcemapping.fail.message": "생성된 코드를 찾을 수 없어 중단점이 무시되었습니다(소스 맵 문제?)."
- },
- "dist/node/nodeV8Protocol": {
- "not.connected": "런타임에 연결되지 않음",
- "runtime.timeout": "{0}ms 후에 제한 시간 초과",
- "runtime.unresponsive": "Node.js가 응답하지 않아 취소됨"
- },
- "package": {
- "attach.node.process": "Node 프로세스에 연결(레거시)",
- "debug.node.showUseWslIsDeprecatedWarning.description": "'useWSL' 특성을 사용할 때 경고를 표시할지 여부를 제어합니다.",
- "extension.description": "Node.js 디버깅 지원(버전 8.0 미만)",
- "launch.args.description": "프로그램에 전달된 명령줄 인수입니다.",
- "node.address.description": "디버그할 프로세스의 TCP/IP 주소입니다(Node.js >= 5.0인 경우에만). 기본값은 'localhost'입니다.",
- "node.attach.config.name": "연결",
- "node.attach.processId.description": "연결할 프로세스의 ID입니다.",
- "node.disableOptimisticBPs.description": "해당 파일에 대한 sourcemap이 로드될 때까지 파일에서 중단점을 설정하지 마세요.",
- "node.label": "Node.js(레거시)",
- "node.launch.autoAttachChildProcesses.description": "디버거를 새로 생성된 자식 프로세스에 자동으로 연결합니다.",
- "node.launch.config.name": "시작",
- "node.launch.console.description": "디버그 대상을 시작할 위치입니다.",
- "node.launch.console.externalTerminal.description": "사용자 설정을 통해 구성 가능한 외부 터미널",
- "node.launch.console.integratedTerminal.description": "VS Code의 통합 터미널",
- "node.launch.console.internalConsole.description": "VS Code 디버그 콘솔(프로그램에서 입력 읽기를 지원하지 않음)",
- "node.launch.cwd.description": "디버그 중인 프로그램 작업 디렉터리의 절대 경로입니다.",
- "node.launch.env.description": "프로그램에 전달된 환경 변수입니다. 'null' 값은 환경에서 변수를 제거합니다.",
- "node.launch.envFile.description": "환경 변수 정의를 포함하는 파일의 절대 경로입니다.",
- "node.launch.externalConsole.deprecationMessage": "'externalConsole' 특성은 사용되지 않으므로 대신 'console'을 사용하세요.",
- "node.launch.outputCapture.description": "출력 메시지를 캡처할 위치에서: 디버그 API 또는 stdout/stderr이 스트림됩니다.",
- "node.launch.program.description": "프로그램의 절대 경로입니다. 생성된 값은 package.json 및 열린 파일을 보고 추측한 것입니다. 이 특성을 편집하세요.",
- "node.launch.runtimeArgs.description": "런타임 실행 파일에 전달되는 선택적 인수입니다.",
- "node.launch.runtimeExecutable.description": "사용할 런타임입니다. PATH에서 사용할 수 있는 런타임의 이름 또는 절대 경로입니다. 생략하면 `node`로 간주합니다.",
- "node.launch.runtimeVersion.description": "사용할 `node` 런타임의 버전입니다. `nvm`이 필요합니다.",
- "node.launch.useWSL.deprecation": "'useWSL'은 사용되지 않으며 지원이 중단됩니다. 대신 '원격 - WSL' 확장을 사용하세요.",
- "node.launch.useWSL.description": "Linux용 Windows 하위 시스템을 사용합니다.",
- "node.localRoot.description": "프로그램이 포함된 로컬 디렉터리의 경로입니다.",
- "node.port.description": "연결할 디버그 포트입니다. 기본값은 5858입니다.",
- "node.processattach.config.name": "프로세스에 연결",
- "node.protocol.auto.description": "Node 8.0 이상 버전을 실행할 때 '검사기'를 선택하여, 가장 적합한 프로토콜을 자동으로 검색합니다.",
- "node.protocol.description": "사용할 Node.js 디버그 프로토콜입니다.",
- "node.protocol.inspector.description": "Node.js 버전 6.3 이상에서 지원되는 새 프로토콜",
- "node.protocol.legacy.description": "Node.js 버전 8.0 미만에서 지원되는 이전 프로토콜",
- "node.remoteRoot.description": "프로그램이 포함된 원격 디렉터리의 절대 경로입니다.",
- "node.restart.description": "Node.js가 종료된 후 세션을 다시 시작합니다.",
- "node.showAsyncStacks.description": "현재 호출 스택을 발생시킨 비동기 호출을 표시합니다. 'inspector' 프로토콜에만 해당됩니다.",
- "node.snippet.attach.description": "실행 중인 노드 프로그램에 연결",
- "node.snippet.attach.label": "Node.js: 연결",
- "node.snippet.attachProcess.description": "프로세스 선택기를 열어 연결할 Node 프로세스 선택",
- "node.snippet.attachProcess.label": "Node.js: 프로세스에 연결",
- "node.snippet.electron.description": "Electron 주 프로세스 디버그",
- "node.snippet.electron.label": "Node.js: Electron 주",
- "node.snippet.gulp.description": "Gulp 작업 디버그(프로젝트에 로컬 Gulp가 설치되어 있는지 확인하세요.)",
- "node.snippet.gulp.label": "Node.js: Gulp 작업",
- "node.snippet.launch.description": "디버그 모드에서 노드 프로그램 시작",
- "node.snippet.launch.label": "Node.js: 프로그램 실행",
- "node.snippet.mocha.description": "Mocha 테스트 디버그",
- "node.snippet.mocha.label": "Node.js: Mocha 테스트",
- "node.snippet.nodemon.description": "nodemon을 사용하여 소스 변경 내용에 대한 디버그 세션 다시 시작",
- "node.snippet.nodemon.label": "Node.js: Nodemon 설정",
- "node.snippet.npm.description": "npm 'debug' 스크립트를 통해 노드 프로그램 시작",
- "node.snippet.npm.label": "Node.js: NPM을 통해 시작",
- "node.snippet.remoteattach.description": "원격 노드 프로그램의 디버그 포트에 연결합니다.",
- "node.snippet.remoteattach.label": "Node.js: 원격 프로그램에 연결",
- "node.snippet.yo.description": "yeoman 생성기 디버그(프로젝트 폴더에서 `npm link`를 실행하여 설치)",
- "node.snippet.yo.label": "Node.js: Yeoman 생성기",
- "node.sourceMapPathOverrides.description": "소스맵의 정보로부터 디스크의 위치로 소스 파일 위치를 다시 쓰기 위한 매핑 집합입니다.",
- "node.sourceMaps.description": "JavaScript 소스 맵을 사용합니다(있는 경우).",
- "node.stopOnEntry.description": "시작된 후 프로그램을 자동으로 중지합니다.",
- "node.timeout.description": "Node.js 연결을 다시 시도하는 시간(밀리초)입니다. 기본값은 10,000ms입니다.",
- "open.loaded.script": "로드된 스크립트 열기",
- "outDir.deprecationMessage": "'outDir' 특성은 사용되지 않습니다. 'outFiles'를 대신 사용하세요.",
- "outFiles.description": "소스 맵을 사용하도록 설정한 경우 이러한 GLOB 패턴은 생성된 JavaScript 파일을 지정합니다. 패턴이 '!'로 시작하면 파일이 제외됩니다. 파일을 지정하지 않으면 생성된 코드가 소스와 동일한 디렉터리에 필요합니다. 예: `[\"${workspaceFolder}/out/**/*.js\"]`",
- "skipFiles.description": "디버그할 때 건너뛰는 파일의 GLOB 패턴 배열입니다. `/**` 패턴은 모든 내부 Node.js 모듈과 일치합니다.",
- "smartStep.description": "다시 원래 소스에 매핑할 수 없는 생성된 코드를 자동으로 단계별로 실행합니다.",
- "start.with.stop.on.entry": "디버깅 시작 및 항목에서 중지(레거시)",
- "toggle.skipping.this.file": "이 파일 건너뛰기 토글",
- "trace.description": "진단 출력을 생성합니다. true로 설정하는 대신 하나 이상의 선택기를 쉼표로 구분하여 나열할 수 있습니다. '자세한 정보 표시' 선택기를 통해 아주 자세한 출력을 사용할 수 있습니다."
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-ko/translations/extensions/ms-vscode.node-debug2.i18n.json b/i18n/vscode-language-pack-ko/translations/extensions/ms-vscode.node-debug2.i18n.json
deleted file mode 100644
index dd3ed9ed8e..0000000000
--- a/i18n/vscode-language-pack-ko/translations/extensions/ms-vscode.node-debug2.i18n.json
+++ /dev/null
@@ -1,138 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "node_modules\\vscode-chrome-debug-core\\out/src/chrome/breakpoints": {
- "bp.fail.noscript": "중단점 요청 스크립트를 찾을 수 없습니다.",
- "bp.fail.unbound": "중단점이 설정되었지만 아직 바인딩되지 않았습니다.",
- "invalidHitCondition": "잘못된 적중 조건: {0}",
- "setBPTimedOut": "중단점 설정 요청 시간이 초과되었습니다.",
- "validateBP.notFound": "대상 경로를 찾을 수 없어 중단점이 무시되었습니다.",
- "validateBP.sourcemapFail": "생성된 코드를 찾을 수 없어 중단점이 무시되었습니다(소스 맵 문제?)."
- },
- "node_modules\\vscode-chrome-debug-core\\out/src/chrome/chromeDebugAdapter": {
- "exceptions.all": "모든 예외",
- "exceptions.promise_rejects": "약속 거부",
- "exceptions.uncaught": "확인할 수 없는 예외"
- },
- "node_modules\\vscode-chrome-debug-core\\out/src/chrome/chromeTargetDiscoveryStrategy": {
- "attach.cannotConnect": "대상에 연결할 수 없습니다. {0}",
- "attach.devToolsAttached": "Chrome DevTools가 연결되어 있을 수 있는 {0} 대상에 연결할 수는 없습니다.",
- "attach.invalidResponse": "대상의 응답이 잘못된 것 같습니다. 오류: {0}. 응답: {1}",
- "attach.invalidResponseArray": "대상의 응답이 잘못된 것 같습니다. {0}",
- "attach.noMatchingTarget": "{0}과(와) 일치하는 유효한 대상을 찾을 수 없습니다. 사용 가능한 페이지: {1}",
- "attach.responseButNoTargets": "대상 앱의 응답을 가져왔지만 대상 페이지를 찾을 수 없습니다."
- },
- "node_modules\\vscode-chrome-debug-core\\out/src/chrome/stackFrames": {
- "scope.exception": "예외",
- "skipReason": "('{0}' 건너뜀)"
- },
- "node_modules\\vscode-chrome-debug-core\\out/src/chrome/stoppedEvent": {
- "reason.description.breakpoint": "중단점에서 일시 중지됨",
- "reason.description.caughtException": "catch된 예외에서 일시 중지됨",
- "reason.description.debugger_statement": "디버거 문에서 일시 중지됨",
- "reason.description.entry": "항목에서 일시 중지됨",
- "reason.description.exception": "예외에서 일시 중지됨",
- "reason.description.promiseRejection": "프라미스 거부에서 일시 중지됨",
- "reason.description.restart": "프레임 입력에서 일시 중지됨",
- "reason.description.step": "단계에서 일시 중지됨",
- "reason.description.uncaughtException": "catch되지 않은 예외에서 일시 중지됨",
- "reason.description.user_request": "사용자 요청에서 일시 중지됨"
- },
- "node_modules\\vscode-chrome-debug-core\\out/src/errors": {
- "VSND2010": "런타임 프로세스에 연결할 수 없습니다. {0}ms 후 시간 초과 - (원인: {1}).",
- "VSND2023": "호출 스택을 사용할 수 없습니다.",
- "attribute.path.not.absolute": "'{0}' 특성이 절대('{1}')가 아닙니다. 절대로 설정하려면 접두사로 '{2}'을(를) 추가하는 것이 좋습니다.",
- "attribute.path.not.exist": "'{0}' 특성이 없습니다('{1}').",
- "eval.not.available": "사용할 수 없음",
- "failed.to.read.port": "파일을 읽지 못했습니다. {dataDirPath}, {error}",
- "more.information": "추가 정보",
- "not.connected": "런타임에 연결되지 않음",
- "port.file.contents.invalid": "파일 위치: \"{dataDirPath}\"에 유효한 포트 데이터가 포함되어 있지 않습니다. {dataDirContents}",
- "restartFrame.cannot": "프레임을 다시 시작할 수 없음",
- "setVariable.error": "설정 값이 지원되지 않습니다.",
- "source.not.found": "콘텐츠를 검색할 수 없습니다."
- },
- "node_modules\\vscode-chrome-debug-core\\out/src/transformers/baseSourceMapTransformer": {
- "origin.inlined.source.map": "소스 맵의 읽기 전용 인라인 콘텐츠"
- },
- "node_modules\\vscode-chrome-debug-core\\out/src/transformers/remotePathTransformer": {
- "localRootAndRemoteRoot": "localRoot 및 remoteRoot를 둘 다 지정해야 합니다."
- },
- "out/src/errors": {
- "VSND2001": "PATH에서 '{0}' 런타임을 찾을 수 없습니다. '{0}'이(가) 설치되어 있나요?",
- "VSND2002": "'{0}' 프로그램을 시작할 수 없습니다. 소스 맵을 구성하면 도움이 될 수 있습니다.",
- "VSND2003": "'{0}' 프로그램을 시작할 수 없습니다. '{1}' 특성을 설정하면 도움이 될 수 있습니다.",
- "VSND2009": "해당 JavaScript를 찾을 수 없으므로 '{0}' 프로그램을 시작할 수 없습니다.",
- "VSND2011": "터미널({0})에서 디버그 대상을 시작할 수 없습니다.",
- "VSND2017": "디버그 대상({0})을 시작할 수 없습니다.",
- "VSND2028": "알 수 없는 콘솔 유형 '{0}'입니다.",
- "VSND2029": "파일({0})에서 환경 변수를 로드할 수 없습니다.",
- "VSND2035": "확장({0})을 디버그할 수 없습니다."
- },
- "out/src/nodeDebugAdapter": {
- "VSND2001": "PATH에서 '{0}' 런타임을 찾을 수 없습니다. '{0}'이(가) 설치되어 있는지 확인하세요.",
- "attribute.path.not.absolute": "'{0}' 특성이 절대('{1}')가 아닙니다. 절대로 설정하려면 접두사로 '{2}'을(를) 추가하는 것이 좋습니다.",
- "attribute.path.not.exist": "'{0}' 특성이 없습니다('{1}').",
- "attribute.wsl.not.exist": "Linux 설치에 대한 Windows 하위 시스템을 찾을 수 없습니다.",
- "more.information": "추가 정보",
- "node.console.title": "노드 디버그 콘솔",
- "origin.core.module": "읽기 전용 코어 모듈",
- "origin.from.node": "Node.js의 읽기 전용 콘텐츠",
- "program.path.case.mismatch.warning": "프로그램 경로에 디스크의 파일과 다른 대/소문자가 사용됩니다. 이로 인해 중단점이 적중되지 않을 수 있습니다."
- },
- "package": {
- "extension.description": "Node.js 디버깅 지원",
- "extensionHost.label": "VS Code 확장 개발",
- "extensionHost.launch.config.name": "확장 시작",
- "extensionHost.launch.env.description": "확장 호스트에 전달된 환경 변수입니다.",
- "extensionHost.launch.runtimeExecutable.description": "VS Code의 절대 경로입니다.",
- "extensionHost.launch.stopOnEntry.description": "시작된 후 확장 호스트를 자동으로 중지합니다.",
- "extensionHost.snippet.launch.description": "디버그 모드에서 VS Code 확장 시작",
- "extensionHost.snippet.launch.label": "VS Code 확장 개발",
- "node.address.description": "디버그 포트의 TCP/IP 주소입니다. 기본값은 'localhost'입니다.",
- "node.attach.config.name": "연결",
- "node.attach.localRoot.description": "'remoteRoot'에 해당하는 로컬 소스 루트입니다.",
- "node.attach.processId.description": "연결할 프로세스의 ID입니다.",
- "node.attach.remoteRoot.description": "원격 호스트의 소스 루트입니다.",
- "node.diagnosticLogging.deprecationMessage": "'diagnosticLogging'은 사용되지 않습니다. 'trace'를 대신 사용하세요.",
- "node.diagnosticLogging.description": "true인 경우 어댑터가 자체 진단 정보를 콘솔에 로그합니다.",
- "node.disableOptimisticBPs.description": "해당 파일에 대한 sourcemap이 로드될 때까지 파일에서 중단점을 설정하지 마세요.",
- "node.enableSourceMapCaching.description": "sourcemap이 URL에서 다운로드되면 이를 디스크에 캐시합니다.",
- "node.label": "검사 프로토콜을 통한 Node.js v6.3 이상",
- "node.launch.args.description": "프로그램에 전달된 명령줄 인수입니다.",
- "node.launch.config.name": "시작",
- "node.launch.console.description": "디버그 대상을 시작할 위치: 내부 콘솔, 통합 터미널 또는 외부 터미널.",
- "node.launch.cwd.description": "디버그 중인 프로그램 작업 디렉터리의 절대 경로입니다.",
- "node.launch.env.description": "프로그램에 전달된 환경 변수입니다. 'null' 값은 환경에서 변수를 제거합니다.",
- "node.launch.envFile.description": "환경 변수 정의를 포함하는 파일의 절대 경로입니다.",
- "node.launch.outputCapture.description": "출력 메시지를 캡처할 위치에서: 디버그 API 또는 stdout/stderr이 스트림됩니다.",
- "node.launch.program.description": "프로그램의 절대 경로입니다.",
- "node.launch.runtimeArgs.description": "런타임 실행 파일에 전달되는 선택적 인수입니다.",
- "node.launch.runtimeExecutable.description": "사용할 런타임입니다. PATH에서 사용 가능한 런타임의 절대 경로 또는 이름입니다. 생략하면 'node'가 사용됩니다.",
- "node.outFiles.description": "소스 맵이 사용하도록 설정되면 이 전역 패턴은 생성된 JavaScript 파일을 지정합니다. 패턴이 '!'로 시작하면 파일이 제외됩니다. 지정하지 않을 경우 생성된 코드는 소스와 동일한 디렉터리에 있어야 합니다.",
- "node.port.description": "연결할 디버그 포트입니다. 기본값은 9229입니다.",
- "node.processattach.config.name": "프로세스에 연결",
- "node.restart.description": "Node.js가 종료된 후 세션을 다시 시작합니다.",
- "node.showAsyncStacks.description": "현재 호출 스택을 생성하는 비동기 호출을 표시합니다.",
- "node.skipFiles.description": "디버그할 때 건너뛸 파일 또는 폴더 이름이나 GLOB 패턴의 배열입니다.",
- "node.smartStep.description": "다시 원래 소스에 매핑할 수 없는 생성된 코드를 자동으로 단계별로 실행합니다.",
- "node.sourceMapPathOverrides.description": "sourcemap의 위치에서 디스크의 위치로 소스 파일의 위치를 다시 작성하기 위한 매핑 세트입니다. 자세한 내용은 추가 정보를 참조하세요.",
- "node.sourceMaps.description": "JavaScript 소스 맵을 사용합니다(있는 경우).",
- "node.stopOnEntry.description": "시작된 후 프로그램을 자동으로 중지합니다.",
- "node.timeout.description": "Node.js 연결을 다시 시도하는 시간(밀리초)입니다. 기본값은 10,000ms입니다.",
- "node.trace.description": "'true'인 경우 디버거가 추적 정보를 파일에 로그합니다. 'verbose'인 경우 로그를 콘솔에도 표시합니다.",
- "node.verboseDiagnosticLogging.deprecationMessage": "'verboseDiagnosticLogging'은 사용되지 않습니다. 'trace'를 대신 사용하세요.",
- "node.verboseDiagnosticLogging.description": "true인 경우 어댑터가 'diagnosticLogging'에 의해 로그된 정보뿐만 아니라 클라이언트와 대상이 있는 모든 트래픽을 로그합니다.",
- "outDir.deprecationMessage": "'outDir' 특성은 사용되지 않습니다. 'outFiles'를 대신 사용하세요.",
- "toggle.skipping.this.file": "이 파일 건너뛰기 토글",
- "workspaceTrust": "이 작업 영역에서 코드를 디버깅하려면 신뢰가 필요합니다."
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-ko/translations/extensions/ms-vscode.remotehub.i18n.json b/i18n/vscode-language-pack-ko/translations/extensions/ms-vscode.remotehub.i18n.json
deleted file mode 100644
index 1b5ffbdd1b..0000000000
--- a/i18n/vscode-language-pack-ko/translations/extensions/ms-vscode.remotehub.i18n.json
+++ /dev/null
@@ -1,81 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "package": {
- "colors.added": "Color for added resources",
- "colors.conflict": "Color for resources with conflicts",
- "colors.deleted": "Color for deleted resources",
- "colors.incomingAdded": "Color for incoming added resources",
- "colors.incomingDeleted": "Color for incoming deleted resources",
- "colors.incomingModified": "Color for incoming modified resources",
- "colors.incomingRenamed": "Color for incoming renamed resources",
- "colors.modified": "Color for modified resources",
- "colors.possibleConflict": "Color for resources with possible conflicts",
- "command.timeline.compareWithSelected": "Compare with Selected",
- "command.timeline.copyCommitId": "Copy Commit ID",
- "command.timeline.copyCommitMessage": "Copy Commit Message",
- "command.timeline.openDiff": "Open Changes",
- "command.timeline.openOnGitHub": "Open on GitHub",
- "command.timeline.selectForCompare": "Select for Compare",
- "commands.addRepositoryToWorkspace": "Add Remote Repository to Workspace...",
- "commands.clone": "Clone Repository Locally...",
- "commands.commit": "Commit",
- "commands.continueOn": "Continue on...",
- "commands.createBranch": "Create New Branch...",
- "commands.createBranchFrom": "Create New Branch from...",
- "commands.createDraftPullRequest": "Create a Draft Pull Request",
- "commands.createPullRequest": "Create a Pull Request",
- "commands.deleteAllLocalRepositoryData": "Delete All Local Repository Data",
- "commands.deleteLocalRepositoryData": "Delete Local Repository Data...",
- "commands.discardAllChanges": "Discard All Changes",
- "commands.discardChanges": "Discard Changes",
- "commands.enableIndexing": "Enable Search Indexing",
- "commands.exportPatch": "Export Changes...",
- "commands.fetch": "Fetch",
- "commands.keepChanges": "Keep Changes",
- "commands.openChanges": "Open Changes",
- "commands.openFile": "Open File",
- "commands.openInCodespaces": "Open in Codespaces...",
- "commands.openOnDesktop": "Reopen on the Desktop",
- "commands.openOnRemote": "Open on GitHub",
- "commands.openOnWeb": "Reopen on the Web",
- "commands.openRepository": "Open Remote Repository...",
- "commands.pull": "Pull",
- "commands.stageAllChanges": "Stage All Changes",
- "commands.stageChanges": "Stage Changes",
- "commands.switchToBranch": "Switch to Branch...",
- "commands.sync": "Sync (Pull & Push)",
- "commands.unstageAllChanges": "Unstage All Changes",
- "commands.unstageChanges": "Unstage Changes",
- "config.autoFetch.enabled": "Specifies whether to periodically fetch from the upstream repository",
- "config.autoFetch.interval": "Specifies the interval, in seconds, to periodically fetch from the upstream repository",
- "config.search.download.corsProxy": "Specifies the proxy to use when downloading repository indicies from a browser context",
- "config.search.download.enabled": "Specifies whether text search should download an index of the repository in order to provide more accurate search results",
- "config.search.download.repoLimit": "Specifies the maximum number of search indicies cached per repo. Each reference requires a separate search index",
- "config.search.download.sizeLimit": "Specifies the size (in MB) of search index cache. The search cache is located in the extension's global storage folder",
- "config.staging.enabled": "Specifies whether to enable the staging of changes before committing",
- "config.staging.smart": "Specifies whether to automatically stage all changes, if there are none, before committing",
- "description": "Remotely browse and edit a GitHub repository",
- "displayName": "Remote Repositories (RemoteHub)",
- "displayNameInsiders": "RemoteHub (Insiders)",
- "submenu.branch": "Branch",
- "submenu.changes": "Changes",
- "submenu.commit": "Commit",
- "submenu.export": "Export",
- "submenu.pullRequest": "Pull Request",
- "viewsWelcome.debug": "Run and Debug are not available in this environment. To run and debug, you will need to continue in another Visual Studio Code setup.",
- "viewsWelcome.debug.continueOn": "[Continue on...](command:remoteHub.continueOn 'Continue working on this remote repository elsewhere')",
- "viewsWelcome.explorer": "Or, you can remotely open a repository or pull request directly from Visual Studio Code without cloning.\r\n[Open Remote Repository](command:remoteHub.openRepository 'Open a remote repository (e.g. from GitHub)')",
- "viewsWelcome.explorer.web": "Or, you can remotely open a repository or pull request directly from Visual Studio Code.\r\n[Open Remote Repository](command:remoteHub.openRepository 'Open a remote repository (e.g. from GitHub)')",
- "viewsWelcome.terminal": "Terminals are not available in this environment. To use the terminal, you will need to continue in another Visual Studio Code setup.",
- "viewsWelcome.terminal.continueOn": "[Continue on...](command:remoteHub.continueOn 'Continue working on this remote repository elsewhere')"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-ko/translations/extensions/notebook-markdown-extensions.i18n.json b/i18n/vscode-language-pack-ko/translations/extensions/notebook-markdown-extensions.i18n.json
deleted file mode 100644
index ca5ecd50e5..0000000000
--- a/i18n/vscode-language-pack-ko/translations/extensions/notebook-markdown-extensions.i18n.json
+++ /dev/null
@@ -1,16 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "package": {
- "description": "Markdown에 대한 다양한 언어 지원을 제공합니다.",
- "displayName": "Markdown Notebook 수학"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-ko/translations/extensions/npm.i18n.json b/i18n/vscode-language-pack-ko/translations/extensions/npm.i18n.json
deleted file mode 100644
index b0fcef91fa..0000000000
--- a/i18n/vscode-language-pack-ko/translations/extensions/npm.i18n.json
+++ /dev/null
@@ -1,77 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "dist/commands": {
- "noScriptFound": "선택 영역에서 유효한 npm 스크립트를 찾을 수 없습니다."
- },
- "dist/features/bowerJSONContribution": {
- "json.bower.default": "기본 bower.json",
- "json.bower.error.repoaccess": "Bower 리포지토리 요청 실패: {0}",
- "json.bower.latest.version": "최신"
- },
- "dist/features/packageJSONContribution": {
- "json.npm.error.repoaccess": "NPM 리포지토리 요청 실패: {0}",
- "json.npm.latestversion": "패키지의 현재 최신 버전",
- "json.npm.majorversion": "최신 주 버전(1.x.x)과 일치",
- "json.npm.minorversion": "최신 부 버전(1.2.x)과 일치",
- "json.npm.version.hover": "최신 버전: {0}",
- "json.package.default": "기본 package.json"
- },
- "dist/npmScriptLens": {
- "codelens.debug": "디버그"
- },
- "dist/npmView": {
- "autoDetectIsOff": "\"npm.autoDetect\" 설정이 \"해제\"되어 있습니다.",
- "noScripts": "스크립트를 찾을 수 없습니다."
- },
- "dist/scriptHover": {
- "debugScript": "디버그 스크립트",
- "debugScript.tooltip": "디버거에서 스크립트 실행",
- "runScript": "스크립트 실행",
- "runScript.tooltip": "작업으로 스크립트 실행"
- },
- "dist/tasks": {
- "npm.multiplePMWarning": "기본 패키지 관리자로 {0}을(를) 사용하고 있습니다. {1}에 대한 잠금 파일을 여러 개 찾았습니다. 이 문제를 해결하려면 기본 패키지 관리자와 일치하지 않는 잠금 파일을 삭제하거나 \"npm.packageManager\" 설정을 \"auto\" 이외의 값으로 변경하세요.",
- "npm.multiplePMWarning.doNotShow": "다시 표시 안 함",
- "npm.multiplePMWarning.learnMore": "자세한 정보",
- "npm.parseError": "npm 작업 검색: {0} 파일을 구문 분석하지 못했습니다."
- },
- "package": {
- "command.debug": "디버그",
- "command.openScript": "열기",
- "command.packageManager": "구성된 패키지 관리자 가져오기",
- "command.refresh": "새로 고침",
- "command.run": "실행",
- "command.runInstall": "설치 실행",
- "command.runScriptFromFolder": "폴더에서 NPM 스크립트 실행...",
- "command.runSelectedScript": "스크립트 실행",
- "config.npm.autoDetect": "npm 스크립트가 자동으로 감지되어야 하는지 여부를 제어합니다.",
- "config.npm.enableRunFromFolder": "탐색기 컨텍스트 메뉴의 폴더에 포함된 NPM 스크립트 실행을 사용하도록 설정합니다.",
- "config.npm.enableScriptExplorer": "최상위 'package.json' 파일이 없는 경우 npm 스크립트의 탐색기 보기를 사용하도록 설정합니다.",
- "config.npm.exclude": "자동 스크립트 검색에서 제외할 폴더에 대한 Glob 패턴을 구성합니다.",
- "config.npm.fetchOnlinePackageInfo": "https://registry.npmjs.org 및 https://registry.bower.io에서 데이터를 가져와 npm 종속성의 가리키기 기능에 대한 정보 및 자동 완성을 제공합니다.",
- "config.npm.packageManager": "스크립트를 실행하는 데 사용하는 패키지 관리자.",
- "config.npm.packageManager.auto": "잠금 파일 및 설치된 패키지 관리자를 기반으로 스크립트를 실행하는 데 사용할 패키지 관리자를 자동 검색합니다.",
- "config.npm.packageManager.npm": "스크립트를 실행하는 데 패키지 관리자로 npm을 사용합니다.",
- "config.npm.packageManager.pnpm": "스크립트를 실행하는 데 패키지 관리자로 pnpm을 사용합니다.",
- "config.npm.packageManager.yarn": "스크립트를 실행하는 데 패키지 관리자로 yarn을 사용합니다.",
- "config.npm.runSilent": "`--silent` 옵션으로 npm 명령 실행.",
- "config.npm.scriptExplorerAction": "npm 스크립트 탐색기에서 사용되는 기본 클릭 동작('열기' 또는 '실행')입니다. 기본값은 '열기'입니다.",
- "config.npm.scriptExplorerExclude": "NPM 스크립트 뷰에서 제외해야 하는 스크립트를 나타내는 정규식 배열입니다.",
- "description": "npm 스크립트에 대한 작업 지원을 추가할 확장입니다.",
- "displayName": "VS Code에 대한 Npm 지원",
- "npm.parseError": "npm 작업 검색: {0} 파일을 구문 분석하지 못했습니다.",
- "taskdef.path": "스크립트를 제공하는 package.json 파일의 폴더 경로이며 생략할 수 있습니다.",
- "taskdef.script": "사용자 지정할 npm 스크립트입니다.",
- "view.name": "Npm 스크립트",
- "workspaceTrust": "이 확장은 신뢰를 필요로 하는 작업을 실행합니다."
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-ko/translations/extensions/objective-c.i18n.json b/i18n/vscode-language-pack-ko/translations/extensions/objective-c.i18n.json
deleted file mode 100644
index c523edc935..0000000000
--- a/i18n/vscode-language-pack-ko/translations/extensions/objective-c.i18n.json
+++ /dev/null
@@ -1,16 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "package": {
- "description": "Objective-C 파일에서 구문 강조 표시 및 괄호 일치를 제공합니다.",
- "displayName": "Objective-C 언어 기본"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-ko/translations/extensions/perl.i18n.json b/i18n/vscode-language-pack-ko/translations/extensions/perl.i18n.json
deleted file mode 100644
index 3da32e223f..0000000000
--- a/i18n/vscode-language-pack-ko/translations/extensions/perl.i18n.json
+++ /dev/null
@@ -1,16 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "package": {
- "description": "Perl 파일에서 구문 강조 표시 및 괄호 일치를 제공합니다.",
- "displayName": "Perl 언어 기본 사항"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-ko/translations/extensions/php-language-features.i18n.json b/i18n/vscode-language-pack-ko/translations/extensions/php-language-features.i18n.json
deleted file mode 100644
index 77ff21fc9e..0000000000
--- a/i18n/vscode-language-pack-ko/translations/extensions/php-language-features.i18n.json
+++ /dev/null
@@ -1,31 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "dist/features/validationProvider": {
- "goToSetting": "설정 열기",
- "noExecutable": "PHP 실행 파일이 설정되지 않았기 때문에 유효성을 검사할 수 없습니다. 'php.validate.executablePath' 설정을 사용하여 PHP 실행 파일을 구성하세요.",
- "noPhp": "PHP 설치를 찾을 수 없기 때문에 유효성을 검사할 수 없습니다. 'php.validate.executablePath' 설정을 사용하여 PHP 실행 파일을 구성하세요.",
- "unknownReason": "{0} 경로를 사용하여 php를 실행하지 못했습니다. 이유를 알 수 없습니다.",
- "wrongExecutable": "{0}은(는) 유효한 PHP 실행 파일이 아니기 때문에 유효성을 검사할 수 없습니다. 'php.validate.executablePath' 설정을 사용하여 PHP 실행 파일을 구성하세요."
- },
- "package": {
- "command.untrustValidationExecutable": "PHP 유효성 검사 실행 파일을 허용하지 않음(작업 영역 설정으로 정의됨)",
- "commands.categroy.php": "PHP",
- "configuration.suggest.basic": "기본 제공 PHP 언어 제안을 사용하는지 여부를 구성합니다. 지원에서는 PHP 전역 및 변수를 제안합니다.",
- "configuration.title": "PHP",
- "configuration.validate.enable": "기본 제공 PHP 유효성 검사를 사용하거나 사용하지 않습니다.",
- "configuration.validate.executablePath": "PHP 실행 파일을 가리킵니다.",
- "configuration.validate.run": "저장 시 또는 입력 시 Linter의 실행 여부입니다.",
- "description": "PHP 파일에 대한 다양한 언어 지원을 제공합니다.",
- "displayName": "PHP 언어 기능",
- "workspaceTrust": "`php.validate.executablePath` 설정이 작업 영역에서 PHP 버전을 로드할 때 확장에서 작업 영역 신뢰를 필요로 합니다."
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-ko/translations/extensions/php.i18n.json b/i18n/vscode-language-pack-ko/translations/extensions/php.i18n.json
deleted file mode 100644
index f8077c9555..0000000000
--- a/i18n/vscode-language-pack-ko/translations/extensions/php.i18n.json
+++ /dev/null
@@ -1,16 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "package": {
- "description": "PHP 파일에서 구문 강조 표시 및 괄호 일치를 제공합니다.",
- "displayName": "PHP 언어 기본 사항"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-ko/translations/extensions/powershell.i18n.json b/i18n/vscode-language-pack-ko/translations/extensions/powershell.i18n.json
deleted file mode 100644
index 0d7c39776f..0000000000
--- a/i18n/vscode-language-pack-ko/translations/extensions/powershell.i18n.json
+++ /dev/null
@@ -1,16 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "package": {
- "description": "Powershell 파일에서 코드 조각, 구문 강조 표시, 괄호 일치 및 접기를 제공합니다.",
- "displayName": "Powershell 언어 기본 사항"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-ko/translations/extensions/pug.i18n.json b/i18n/vscode-language-pack-ko/translations/extensions/pug.i18n.json
deleted file mode 100644
index f8980d1cfe..0000000000
--- a/i18n/vscode-language-pack-ko/translations/extensions/pug.i18n.json
+++ /dev/null
@@ -1,16 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "package": {
- "description": "Pug 파일에서 구문 강조 표시 및 괄호 일치를 제공합니다.",
- "displayName": "Pug 언어 기본 사항"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-ko/translations/extensions/r.i18n.json b/i18n/vscode-language-pack-ko/translations/extensions/r.i18n.json
deleted file mode 100644
index ba2ec7d1eb..0000000000
--- a/i18n/vscode-language-pack-ko/translations/extensions/r.i18n.json
+++ /dev/null
@@ -1,16 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "package": {
- "description": "R 파일에서 구문 강조 표시 및 괄호 일치를 제공합니다.",
- "displayName": "R 언어 기본 사항"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-ko/translations/extensions/razor.i18n.json b/i18n/vscode-language-pack-ko/translations/extensions/razor.i18n.json
deleted file mode 100644
index e7ed391d54..0000000000
--- a/i18n/vscode-language-pack-ko/translations/extensions/razor.i18n.json
+++ /dev/null
@@ -1,16 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "package": {
- "description": "Razor 파일에서 구문 강조 표시, 괄호 일치 및 접기를 제공합니다.",
- "displayName": "Razor 언어 기본"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-ko/translations/extensions/references-view.i18n.json b/i18n/vscode-language-pack-ko/translations/extensions/references-view.i18n.json
deleted file mode 100644
index a79c18e7cb..0000000000
--- a/i18n/vscode-language-pack-ko/translations/extensions/references-view.i18n.json
+++ /dev/null
@@ -1,73 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "dist/calls/model": {
- "noresult": "결과가 없습니다.",
- "open": "통화 열기",
- "title.callers": "의 호출자",
- "title.calls": "의 호출"
- },
- "dist/references/index": {
- "title": "참조"
- },
- "dist/references/model": {
- "noresult": "결과가 없습니다.",
- "open": "참조 열기",
- "result.1": "{1}개 파일에서 {0}개 결과",
- "result.1n": "{1}개 파일에서 {0}개 결과",
- "result.n1": "{1}개 파일에서 {0}개 결과",
- "result.nm": "{1}개 파일에서 {0}개 결과"
- },
- "dist/tree": {
- "noresult": "결과가 없습니다.",
- "noresult2": "결과가 없습니다. 이전 검색을 다시 실행해 보세요.",
- "placeholder": "이전 참조 검색 선택",
- "title": "참조",
- "title.rerun": "다시 실행"
- },
- "dist/types/model": {
- "noresult": "결과가 없습니다.",
- "title.openType": "형식 열기",
- "title.sub": "의 하위 형식",
- "title.sup": "의 상위 형식"
- },
- "package": {
- "cmd.category.references": "참조",
- "cmd.references-view.clear": "삭제",
- "cmd.references-view.clearHistory": "기록 지우기",
- "cmd.references-view.copy": "복사",
- "cmd.references-view.copyAll": "모두 복사",
- "cmd.references-view.copyPath": "경로 복사",
- "cmd.references-view.findImplementations": "모든 구현 찾기",
- "cmd.references-view.findReferences": "모든 참조 찾기",
- "cmd.references-view.next": "다음 참조로 이동",
- "cmd.references-view.pickFromHistory": "기록 표시",
- "cmd.references-view.prev": "이전 참조로 이동",
- "cmd.references-view.refind": "다시 실행",
- "cmd.references-view.refresh": "새로 고침",
- "cmd.references-view.removeCallItem": "해제",
- "cmd.references-view.removeReferenceItem": "해제",
- "cmd.references-view.removeTypeItem": "해제",
- "cmd.references-view.showCallHierarchy": "호출 계층 구조 표시",
- "cmd.references-view.showIncomingCalls": "수신 호출 표시",
- "cmd.references-view.showOutgoingCalls": "발신 전화 표시",
- "cmd.references-view.showSubtypes": "하위 형식 표시",
- "cmd.references-view.showSupertypes": "상위 형식 표시",
- "cmd.references-view.showTypeHierarchy": "형식 계층 구조 표시",
- "config.references.preferredLocation": "코드 렌즈 참조를 선택할 때 '참조 피킹' 또는 '참조 찾기'를 호출할지 여부를 제어합니다.",
- "config.references.preferredLocation.peek": "Peek 편집기에서 참조를 표시합니다.",
- "config.references.preferredLocation.view": "참조를 별도의 보기로 표시합니다.",
- "container.title": "참조",
- "description": "사이드바에서 검색 결과를 별도의 안정적인 보기로 참조",
- "displayName": "참조 검색 보기",
- "view.title": "결과"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-ko/translations/extensions/ruby.i18n.json b/i18n/vscode-language-pack-ko/translations/extensions/ruby.i18n.json
deleted file mode 100644
index 82b5a9c7e3..0000000000
--- a/i18n/vscode-language-pack-ko/translations/extensions/ruby.i18n.json
+++ /dev/null
@@ -1,16 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "package": {
- "description": "Ruby 파일에서 구문 강조 표시 및 괄호 일치를 제공합니다.",
- "displayName": "Ruby 언어 기본"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-ko/translations/extensions/rust.i18n.json b/i18n/vscode-language-pack-ko/translations/extensions/rust.i18n.json
deleted file mode 100644
index 7b7c8076a7..0000000000
--- a/i18n/vscode-language-pack-ko/translations/extensions/rust.i18n.json
+++ /dev/null
@@ -1,16 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "package": {
- "description": "Rust 파일에서 구문 강조 표시 및 괄호 일치를 제공합니다.",
- "displayName": "Rust 언어 기본"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-ko/translations/extensions/scss.i18n.json b/i18n/vscode-language-pack-ko/translations/extensions/scss.i18n.json
deleted file mode 100644
index cfbf99dda3..0000000000
--- a/i18n/vscode-language-pack-ko/translations/extensions/scss.i18n.json
+++ /dev/null
@@ -1,16 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "package": {
- "description": "SCSS 파일에서 구문 강조 표시, 괄호 일치 및 접기를 제공합니다.",
- "displayName": "SCSS 언어 기본 사항"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-ko/translations/extensions/shaderlab.i18n.json b/i18n/vscode-language-pack-ko/translations/extensions/shaderlab.i18n.json
deleted file mode 100644
index b5ec7023de..0000000000
--- a/i18n/vscode-language-pack-ko/translations/extensions/shaderlab.i18n.json
+++ /dev/null
@@ -1,16 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "package": {
- "description": "Shaderlab 파일에서 구문 강조 표시 및 괄호 일치를 제공합니다.",
- "displayName": "Shaderlab 언어 기본"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-ko/translations/extensions/shellscript.i18n.json b/i18n/vscode-language-pack-ko/translations/extensions/shellscript.i18n.json
deleted file mode 100644
index 05c6371b39..0000000000
--- a/i18n/vscode-language-pack-ko/translations/extensions/shellscript.i18n.json
+++ /dev/null
@@ -1,16 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "package": {
- "description": "셸 스크립트 파일에서 구문 강조 표시 및 괄호 일치를 제공합니다.",
- "displayName": "셸 스크립트 언어 기본"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-ko/translations/extensions/simple-browser.i18n.json b/i18n/vscode-language-pack-ko/translations/extensions/simple-browser.i18n.json
deleted file mode 100644
index 4c39b22939..0000000000
--- a/i18n/vscode-language-pack-ko/translations/extensions/simple-browser.i18n.json
+++ /dev/null
@@ -1,30 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "dist/extension": {
- "openTitle": "간단한 브라우저에서 열기",
- "simpleBrowser.show.placeholder": "https://example.com",
- "simpleBrowser.show.prompt": "방문할 URL 입력"
- },
- "dist/simpleBrowserView": {
- "control.back.title": "뒤로",
- "control.forward.title": "앞으로",
- "control.openExternal.title": "브라우저에서 열기",
- "control.reload.title": "다시 로드",
- "view.iframe-focused": "포커스 잠금",
- "view.title": "간단한 브라우저"
- },
- "package": {
- "configuration.focusLockIndicator.enabled.description": "간단한 브라우저에 포커스가 있을 때를 보여 주는 부동 표시기를 사용하도록 설정/사용하지 않도록 설정합니다.",
- "description": "웹 콘텐츠를 표시하기 위한 매우 기본적인 기본 제공 웹 보기입니다.",
- "displayName": "간단한 브라우저"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-ko/translations/extensions/sql.i18n.json b/i18n/vscode-language-pack-ko/translations/extensions/sql.i18n.json
deleted file mode 100644
index 0ad8aec9a9..0000000000
--- a/i18n/vscode-language-pack-ko/translations/extensions/sql.i18n.json
+++ /dev/null
@@ -1,16 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "package": {
- "description": "SQL 파일에서 구문 강조 표시 및 괄호 일치를 제공합니다.",
- "displayName": "SQL 언어 기본 사항"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-ko/translations/extensions/swift.i18n.json b/i18n/vscode-language-pack-ko/translations/extensions/swift.i18n.json
deleted file mode 100644
index 49af2be275..0000000000
--- a/i18n/vscode-language-pack-ko/translations/extensions/swift.i18n.json
+++ /dev/null
@@ -1,16 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "package": {
- "description": "Swift 파일에서 코드 조각, 구문 강조 표시 및 괄호 일치를 제공합니다.",
- "displayName": "Swift 언어 기본"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-ko/translations/extensions/testing-editor-contributions.i18n.json b/i18n/vscode-language-pack-ko/translations/extensions/testing-editor-contributions.i18n.json
deleted file mode 100644
index 2eb588f4d2..0000000000
--- a/i18n/vscode-language-pack-ko/translations/extensions/testing-editor-contributions.i18n.json
+++ /dev/null
@@ -1,27 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "package": {
- "action.debug": "디버그",
- "action.run": "테스트 실행",
- "config.enableCodeLens": "테스트 사례 및 도구 모음에 CodeLens가 표시되어야 하는지 여부입니다.",
- "config.enableProblemDiagnostics": "테스트 실패를 '문제' 보기에 보고하고 편집기에서 오류로 표시할지 여부입니다.",
- "description": "테스트 및 테스트 결과에 대해 편집기 내 환경을 제공합니다.",
- "displayName": "편집기 기여 테스트",
- "state.failed": "실패",
- "state.passed": "통과",
- "state.passedWithDuration": "{0} 이내에 통과",
- "tooltip.debug": "{0} 디버그",
- "tooltip.run": "{0} 실행",
- "tooltip.runState": "{0}/{1}개 테스트 통과",
- "tooltip.runStateWithDuration": "{2} 이내에 {0}/{1}개 테스트 통과"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-ko/translations/extensions/theme-abyss.i18n.json b/i18n/vscode-language-pack-ko/translations/extensions/theme-abyss.i18n.json
deleted file mode 100644
index 30800543c7..0000000000
--- a/i18n/vscode-language-pack-ko/translations/extensions/theme-abyss.i18n.json
+++ /dev/null
@@ -1,17 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "package": {
- "description": "Visual Studio Code용 심해 테마",
- "displayName": "심해 테마",
- "themeLabel": "심연"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-ko/translations/extensions/theme-defaults.i18n.json b/i18n/vscode-language-pack-ko/translations/extensions/theme-defaults.i18n.json
deleted file mode 100644
index 42bbd9650d..0000000000
--- a/i18n/vscode-language-pack-ko/translations/extensions/theme-defaults.i18n.json
+++ /dev/null
@@ -1,23 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "package": {
- "darkColorThemeLabel": "어둡게(Visual Studio)",
- "darkPlusColorThemeLabel": "어둡게+(기본 어둡게)",
- "description": "기본 Visual Studio 밝은 테마 및 어두운 테마",
- "displayName": "기본 테마",
- "hcColorThemeLabel": "어두운 고대비",
- "lightColorThemeLabel": "밝게(Visual Studio)",
- "lightHcColorThemeLabel": "밝은 고대비",
- "lightPlusColorThemeLabel": "밝게+(기본 밝게)",
- "minimalIconThemeLabel": "최소(Visual Studio Code)"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-ko/translations/extensions/theme-kimbie-dark.i18n.json b/i18n/vscode-language-pack-ko/translations/extensions/theme-kimbie-dark.i18n.json
deleted file mode 100644
index ca6e3c8b1b..0000000000
--- a/i18n/vscode-language-pack-ko/translations/extensions/theme-kimbie-dark.i18n.json
+++ /dev/null
@@ -1,17 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "package": {
- "description": "Visual Studio Code용 Kimbie 어두운 테마",
- "displayName": "Kimbie 어두운 테마",
- "themeLabel": "Kimbie 어둡게"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-ko/translations/extensions/theme-monokai-dimmed.i18n.json b/i18n/vscode-language-pack-ko/translations/extensions/theme-monokai-dimmed.i18n.json
deleted file mode 100644
index dfd63e05a3..0000000000
--- a/i18n/vscode-language-pack-ko/translations/extensions/theme-monokai-dimmed.i18n.json
+++ /dev/null
@@ -1,17 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "package": {
- "description": "Visual Studio Code용 Monokai 흐릿한 테마",
- "displayName": "Monokai 흐릿한 테마",
- "themeLabel": "Monokai 흐릿한"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-ko/translations/extensions/theme-monokai.i18n.json b/i18n/vscode-language-pack-ko/translations/extensions/theme-monokai.i18n.json
deleted file mode 100644
index 18ec1a71bd..0000000000
--- a/i18n/vscode-language-pack-ko/translations/extensions/theme-monokai.i18n.json
+++ /dev/null
@@ -1,17 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "package": {
- "description": "Visual Studio Code용 Monokai 테마",
- "displayName": "Monokai 테마",
- "themeLabel": "Monokai"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-ko/translations/extensions/theme-quietlight.i18n.json b/i18n/vscode-language-pack-ko/translations/extensions/theme-quietlight.i18n.json
deleted file mode 100644
index 4e694ae17e..0000000000
--- a/i18n/vscode-language-pack-ko/translations/extensions/theme-quietlight.i18n.json
+++ /dev/null
@@ -1,17 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "package": {
- "description": "Visual Studio Code용 고요한 밝은 테마",
- "displayName": "고요한 밝은 테마",
- "themeLabel": "고요한 밝은"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-ko/translations/extensions/theme-red.i18n.json b/i18n/vscode-language-pack-ko/translations/extensions/theme-red.i18n.json
deleted file mode 100644
index 29a2059221..0000000000
--- a/i18n/vscode-language-pack-ko/translations/extensions/theme-red.i18n.json
+++ /dev/null
@@ -1,17 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "package": {
- "description": "Visual Studio Code용 빨간색 테마",
- "displayName": "빨간색 테마",
- "themeLabel": "빨간색"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-ko/translations/extensions/theme-seti.i18n.json b/i18n/vscode-language-pack-ko/translations/extensions/theme-seti.i18n.json
deleted file mode 100644
index 704c40eb29..0000000000
--- a/i18n/vscode-language-pack-ko/translations/extensions/theme-seti.i18n.json
+++ /dev/null
@@ -1,17 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "package": {
- "description": "Seti UI 파일 아이콘으로 만든 파일 아이콘 테마",
- "displayName": "Seti 파일 아이콘 테마",
- "themeLabel": "Seti(Visual Studio Code)"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-ko/translations/extensions/theme-solarized-dark.i18n.json b/i18n/vscode-language-pack-ko/translations/extensions/theme-solarized-dark.i18n.json
deleted file mode 100644
index 97f83abe8c..0000000000
--- a/i18n/vscode-language-pack-ko/translations/extensions/theme-solarized-dark.i18n.json
+++ /dev/null
@@ -1,17 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "package": {
- "description": "Visual Studio Code용 노출 어두운 테마",
- "displayName": "노출 어두운 테마",
- "themeLabel": "노출 어두운"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-ko/translations/extensions/theme-solarized-light.i18n.json b/i18n/vscode-language-pack-ko/translations/extensions/theme-solarized-light.i18n.json
deleted file mode 100644
index 30b675948a..0000000000
--- a/i18n/vscode-language-pack-ko/translations/extensions/theme-solarized-light.i18n.json
+++ /dev/null
@@ -1,17 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "package": {
- "description": "Visual Studio Code용 노출 밝은 테마",
- "displayName": "노출 밝은 테마",
- "themeLabel": "노출 밝은"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-ko/translations/extensions/theme-tomorrow-night-blue.i18n.json b/i18n/vscode-language-pack-ko/translations/extensions/theme-tomorrow-night-blue.i18n.json
deleted file mode 100644
index 42c411c26a..0000000000
--- a/i18n/vscode-language-pack-ko/translations/extensions/theme-tomorrow-night-blue.i18n.json
+++ /dev/null
@@ -1,17 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "package": {
- "description": "Visual Studio Code용 내일 밤 파란색 테마",
- "displayName": "내일 밤 파란색 테마",
- "themeLabel": "내일 밤 파란색"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-ko/translations/extensions/typescript-basics.i18n.json b/i18n/vscode-language-pack-ko/translations/extensions/typescript-basics.i18n.json
deleted file mode 100644
index 1e57649e8d..0000000000
--- a/i18n/vscode-language-pack-ko/translations/extensions/typescript-basics.i18n.json
+++ /dev/null
@@ -1,16 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "package": {
- "description": "TypeScript 파일에서 코드 조각, 구문 강조 표시, 괄호 일치 및 접기를 제공합니다.",
- "displayName": "TypeScript 언어 기본 사항"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-ko/translations/extensions/typescript-language-features.i18n.json b/i18n/vscode-language-pack-ko/translations/extensions/typescript-language-features.i18n.json
deleted file mode 100644
index 083150022d..0000000000
--- a/i18n/vscode-language-pack-ko/translations/extensions/typescript-language-features.i18n.json
+++ /dev/null
@@ -1,328 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "dist/languageFeatures/codeLens/baseCodeLensProvider": {
- "referenceErrorLabel": "참조를 확인할 수 없음"
- },
- "dist/languageFeatures/codeLens/implementationsCodeLens": {
- "manyImplementationLabel": "구현 {0}개",
- "oneImplementationLabel": "구현 1개"
- },
- "dist/languageFeatures/codeLens/referencesCodeLens": {
- "manyReferenceLabel": "참조 {0}개",
- "oneReferenceLabel": "참조 1개"
- },
- "dist/languageFeatures/completions": {
- "acquiringTypingsDetail": "IntelliSense에 대한 typings 정의를 가져오는 중입니다.",
- "acquiringTypingsLabel": "입력을 가져오는 중...",
- "selectCodeAction": "적용할 코드 동작 선택"
- },
- "dist/languageFeatures/directiveCommentCompletions": {
- "ts-check": "JavaScript 파일에서 의미 검사를 사용합니다. 파일의 최상단에 있어야 합니다.",
- "ts-expect-error": "파일 다음 줄에서 @ts-check 오류를 억제하며 하나 이상이 존재할 것으로 예상합니다.",
- "ts-ignore": "파일의 다음 행에서 @ts-check 오류를 억제합니다.",
- "ts-nocheck": "JavaScript 파일에서 의미 검사를 사용하지 않습니다. 파일의 최상단에 있어야 합니다."
- },
- "dist/languageFeatures/fileReferences": {
- "error.noResource": "파일 참조를 찾지 못했습니다. 리소스가 제공되지 않았습니다.",
- "error.unknownFile": "파일 참조를 찾지 못했습니다. 알 수 없는 파일 형식입니다.",
- "error.unsupportedLanguage": "파일 참조를 찾지 못했습니다. 지원되지 않는 파일 형식입니다.",
- "error.unsupportedVersion": "파일 참조를 찾지 못했습니다. TypeScript 4.2 이상이 필요합니다.",
- "progress.title": "파일 참조를 찾는 중"
- },
- "dist/languageFeatures/fixAll": {
- "autoFix.label": "수정 가능한 모든 JS/TS 문제 수정",
- "autoFix.missingImports.label": "모든 누락된 가져오기 추가",
- "autoFix.unused.label": "사용하지 않는 모든 코드 제거"
- },
- "dist/languageFeatures/jsDocCompletions": {
- "typescript.jsDocCompletionItem.documentation": "JSDoc 주석"
- },
- "dist/languageFeatures/organizeImports": {
- "organizeImportsAction.title": "가져오기 구성",
- "sortImportsAction.title": "가져오기 정렬"
- },
- "dist/languageFeatures/quickFix": {
- "fixAllInFileLabel": "{0} (파일에서 모두 수정)"
- },
- "dist/languageFeatures/refactor": {
- "extractConstant.disabled.reason": "현재 선택 영역을 추출할 수 없습니다.",
- "extractConstant.disabled.title": "상수로 추출",
- "extractFunction.disabled.reason": "현재 선택 영역을 추출할 수 없습니다.",
- "extractFunction.disabled.title": "함수로 추출",
- "refactor.documentation.title": "JS/TS 리팩터링에 대해 자세히 알아보기",
- "refactoringFailed": "리팩터링을 적용할 수 없습니다."
- },
- "dist/languageFeatures/rename": {
- "fileRenameFail": "파일 이름을 바꾸는 중 오류 발생"
- },
- "dist/languageFeatures/sourceDefinition": {
- "error.noReferences": "원본 정의를 찾을 수 없습니다.",
- "error.noResource": "원본 정의로 이동하지 못했습니다. 리소스가 제공되지 않았습니다.",
- "error.unknownFile": "원본 정의로 이동하지 못했습니다. 알 수 없는 파일 형식입니다.",
- "error.unsupportedLanguage": "원본 정의로 이동하지 못했습니다. 지원되지 않는 파일 형식입니다.",
- "error.unsupportedVersion": "원본 정의로 이동하지 못했습니다. TypeScript 4.7 이상이 필요합니다.",
- "progress.title": "원본 정의 찾기"
- },
- "dist/languageFeatures/tsconfig": {
- "documentLink.tooltip": "링크로 이동",
- "openTsconfigExtendsModuleFail": "{0}을(를) 모듈로 확인하지 못했습니다."
- },
- "dist/languageFeatures/updatePathsOnRename": {
- "accept.title": "예",
- "always.title": "항상 자동으로 가져오기 업데이트",
- "moreFile": "...1개의 추가 파일이 표시되지 않음",
- "moreFiles": "...{0}개의 추가 파일이 표시되지 않음",
- "never.title": "자동으로 가져오기를 업데이트하지 않음",
- "prompt": "'{0}'에 대한 가져오기를 업데이트하시겠습니까?",
- "promptMoreThanOne": "다음 {0} 파일에 대한 가져오기를 업데이트하시겠습니까?",
- "reject.title": "아니요",
- "renameProgress.title": "JS/TS 가져오기 업데이트 확인"
- },
- "dist/task/taskProvider": {
- "badTsConfig": "tasks.json의 TypeScript 작업에 \"\\\\\"가 포함되어 있습니다. TypeScript 작업 tsconfig는 \"/\"를 사용해야 합니다.",
- "buildAndWatchTscLabel": "감시 - {0}",
- "buildTscLabel": "빌드 - {0}"
- },
- "dist/tsServer/serverProcess.electron": {
- "noServerFound": "경로 {0}이(가) 올바른 tsserver 설치를 가리키지 않습니다. 포함된 TypeScript 버전을 대신 사용합니다."
- },
- "dist/tsServer/versionManager": {
- "allow": "허용",
- "dismiss": "해제",
- "learnMore": "TypeScript 버전 관리에 대한 자세한 정보",
- "promptUseWorkspaceTsdk": "이 작업 영역에는 TypeScript 버전이 포함되어 있습니다. TypeScript 및 JavaScript 언어 기능에 작업 영역 TypeScript 버전을 사용하시겠습니까?",
- "selectTsVersion": "JavaScript 및 TypeScript 언어 기능에 사용되는 TypeScript 버전 선택",
- "suppress prompt": "이 작업 영역에서 안 함",
- "useVSCodeVersionOption": "VS Code의 버전 사용",
- "useWorkspaceVersionOption": "작업 영역 버전 사용"
- },
- "dist/typescriptServiceClient": {
- "noServerFound": "경로 {0}이(가) 올바른 tsserver 설치를 가리키지 않습니다. 포함된 TypeScript 버전을 대신 사용합니다.",
- "openTsServerLog.openFileFailedFailed": "TS 서버 로그 파일을 열 수 없습니다.",
- "serverDied": "TypeScript 언어 서비스가 지난 5분 동안 예기치 않게 5번 종료되었습니다.",
- "serverDiedAfterStart": "TypeScript 언어 서비스가 시작된 직후 5번 종료되었습니다. 서비스가 다시 시작되지 않습니다.",
- "serverDiedOnce": "TypeScript 언어 서비스가 예기치 않게 종료되었습니다.",
- "serverDiedReportIssue": "문제 신고",
- "serverExitedWithError": "오류가 발생하여 TypeScript 언어 서버가 종료되었습니다. 오류 메시지: {0}",
- "serverLoading.progress": "JS/TS 언어 기능 초기화",
- "typescript.openTsServerLog.enableAndReloadOption": "로깅 사용 및 TS 서버 다시 시작",
- "typescript.openTsServerLog.loggingNotEnabled": "TS 서버 로깅이 꺼져 있습니다. `typescript.tsserver.log`를 설정하고 TS 서버를 다시 시작하여 로깅을 사용하도록 설정하세요.",
- "typescript.openTsServerLog.noLogFile": "TS 서버에서 로깅을 시작하지 않았습니다.",
- "usingOldTsVersion.detail": "작업 공간에서 이전 버전의 TypeScript({0})를 사용하고 있습니다.\r\n\r\n문제를 보고하기 전에 최신 안정적인 TypeScript 릴리스를 사용하도록 작업영역을 업데이트하여 버그가 아직 수정되지 않았는지 확인하세요.",
- "usingOldTsVersion.title": "TypeScript 버전을 업데이트하세요."
- },
- "dist/ui/intellisenseStatus": {
- "pending.detail": "IntelliSense 상태 로드 중",
- "resolved.command.title.createJsconfig": "jsconfig 생성",
- "resolved.command.title.createTsconfig": "tsconfig 만들기",
- "resolved.command.title.open": "구성 파일 열기",
- "resolved.detail.noJsConfig": "jsconfig 없음",
- "resolved.detail.noOpenedFolders": "열린 폴더 없음",
- "resolved.detail.noTsConfig": "tsconfig 없음",
- "resolved.detail.notInOpenedFolder": "파일이 열린 폴더의 일부가 아닙니다.",
- "statusItem.name": "JS/TS IntelliSense 상태",
- "syntaxOnly.command.title.learnMore": "자세한 정보",
- "syntaxOnly.detail": "프로젝트 전체 IntelliSense를 사용할 수 없음",
- "syntaxOnly.text": "부분 모드"
- },
- "dist/ui/versionStatus": {
- "versionStatus.command": "버전 선택",
- "versionStatus.detail": "TypeScript 버전",
- "versionStatus.name": "TypeScript 버전"
- },
- "dist/utils/api": {
- "invalidVersion": "잘못 된 버전"
- },
- "dist/utils/logger": {
- "channelName": "TypeScript"
- },
- "dist/utils/tsconfig": {
- "typescript.configureJsconfigQuickPick": "jsconfig.json 구성",
- "typescript.configureTsconfigQuickPick": "tsconfig.json 구성",
- "typescript.noJavaScriptProjectConfig": "파일이 JavaScript 프로젝트의 일부가 아닙니다. 자세한 내용은 [jsconfig.json 설명서]({0})를 참조하세요.",
- "typescript.noTypeScriptProjectConfig": "파일이 TypeScript 프로젝트의 일부가 아닙니다. 자세한 내용은 [tsconfig.json 설명서]({0})를 참조하세요.",
- "typescript.projectConfigCouldNotGetInfo": "TypeScript 또는 JavaScript 프로젝트를 확인할 수 없습니다.",
- "typescript.projectConfigNoWorkspace": "TypeScript 또는 JavaScript 프로젝트를 사용하려면 VS Code의 폴더를 여세요.",
- "typescript.projectConfigUnsupportedFile": "TypeScript 또는 JavaScript 프로젝트를 확인할 수 없습니다. 지원되지 않는 파일 형식"
- },
- "package": {
- "codeActions.refactor.extract.constant.description": "식을 상수로 추출합니다.",
- "codeActions.refactor.extract.constant.title": "상수 추출",
- "codeActions.refactor.extract.function.description": "메서드 또는 함수에 대한 식추출.",
- "codeActions.refactor.extract.function.title": "추출 함수",
- "codeActions.refactor.extract.interface.description": "인터페이스에 대한 형식을 추출합니다.",
- "codeActions.refactor.extract.interface.title": "인터페이스 추출",
- "codeActions.refactor.extract.type.description": "형식 별칭에 대한 추출 형식입니다.",
- "codeActions.refactor.extract.type.title": "추출 유형",
- "codeActions.refactor.move.newFile.description": "식을 새 파일로 이동합니다.",
- "codeActions.refactor.move.newFile.title": "새 파일로 이동",
- "codeActions.refactor.rewrite.arrow.braces.description": "화살표 함수에서 중괄호를 추가하거나 제거합니다.",
- "codeActions.refactor.rewrite.arrow.braces.title": "화살표 중괄호 다시 쓰기",
- "codeActions.refactor.rewrite.export.description": "기본 내보내기와 명명된 내보내기 간에 변환합니다.",
- "codeActions.refactor.rewrite.export.title": "내보내기 변환",
- "codeActions.refactor.rewrite.import.description": "명명된 가져오기와 네임스페이스 가져오기 간에 변환합니다.",
- "codeActions.refactor.rewrite.import.title": "가져오기 변환",
- "codeActions.refactor.rewrite.parameters.toDestructured.title": "매개 변수를 구조 파괴 개체로 변환",
- "codeActions.refactor.rewrite.property.generateAccessors.description": "'get' 및 'set' 접근자 생성",
- "codeActions.refactor.rewrite.property.generateAccessors.title": "접근자 생성",
- "codeActions.source.organizeImports.title": "가져오기 구성",
- "configuration.implicitProjectConfig.checkJs": "JavaScript 파일의 의미 체계 검사를 사용하거나 사용하지 않도록 설정합니다. 기존 `jsconfig.json` 또는 `tsconfig.json` 파일은 이 설정을 재정의합니다.",
- "configuration.implicitProjectConfig.experimentalDecorators": "프로젝트의 일부가 아닌 JavaScript 파일에서 'experimentalDecorators'를 사용하거나 사용하지 않도록 설정합니다. 기존 `jsconfig.json` 또는 `tsconfig.json` 파일은 이 설정을 재정의합니다.",
- "configuration.implicitProjectConfig.module": "프로그램의 모듈 시스템을 설정합니다. 자세한 내용은 https://www.typescriptlang.org/tsconfig#module을 참조하세요.",
- "configuration.implicitProjectConfig.strictFunctionTypes": "프로젝트의 일부가 아닌 JavaScript 및 TypeScript 파일에서 [strict 함수 형식](https://www.typescriptlang.org/tsconfig#strictFunctionTypes)을 사용하거나 사용하지 않도록 설정합니다. 기존 `jsconfig.json` 또는 `tsconfig.json` 파일은 이 설정을 재정의합니다.",
- "configuration.implicitProjectConfig.strictNullChecks": "프로젝트의 일부가 아닌 JavaScript 및 TypeScript 파일에서 [strict null 검사](https://www.typescriptlang.org/tsconfig#strictNullChecks)를 사용하거나 사용하지 않도록 설정합니다. 기존 `jsconfig.json` 또는 `tsconfig.json` 파일은 이 설정을 재정의합니다.",
- "configuration.implicitProjectConfig.target": "내보낸 JavaScript에 대한 대상 JavaScript 언어 버전을 설정하고 라이브러리 선언을 포함합니다. 자세한 내용은 https://www.typescriptlang.org/tsconfig#target을 참조하세요.",
- "configuration.inlayHints.parameterNames.suppressWhenArgumentMatchesName": "텍스트가 매개변수 이름과 동일한 인수에 대해 매개변수 이름 힌트를 표시하지 않습니다.",
- "configuration.inlayHints.variableTypes.suppressWhenTypeMatchesName": "이름이 형식 이름과 동일한 변수에 대한 형식 힌트를 표시하지 않습니다. 작업 영역에서 TypeScript 4.8+를 사용해야 합니다.",
- "configuration.javascript.checkJs.checkJs.deprecation": "이 설정은 사용되지 않으며 대신 `js/ts.implicitProjectConfig.checkJs`가 사용됩니다.",
- "configuration.javascript.checkJs.experimentalDecorators.deprecation": "이 설정은 사용되지 않으며 대신 `js/ts.implicitProjectConfig.experimentalDecorators`가 사용됩니다.",
- "configuration.suggest.autoImports": "자동 가져오기 제안을 사용하거나 사용하지 않도록 설정합니다.",
- "configuration.suggest.classMemberSnippets.enabled": "클래스 멤버에 대한 코드 조각 완성을 사용하거나 사용하지 않도록 설정합니다. 작업 영역에서 TypeScript 4.5+를 사용해야 합니다.",
- "configuration.suggest.completeFunctionCalls": "매개 변수 서명으로 함수를 완료하세요.",
- "configuration.suggest.completeJSDocs": "제안을 사용하거나 사용하지 않도록 설정하여 JSDoc 주석을 완료합니다.",
- "configuration.suggest.includeAutomaticOptionalChainCompletions": "선택적 체인 호출을 삽입하는 잠재적으로 정의되지 않은 값에 대한 완료 표시를 사용하거나 사용하지 않도록 설정합니다. 사용하려면 TS 3.7 이상 및 엄격한 null 검사가 필요합니다.",
- "configuration.suggest.includeCompletionsForImportStatements": "부분적으로 입력된 import 문에서 import 스타일 자동 완성을 사용하거나 사용하지 않도록 설정합니다. 작업 영역에서 TypeScript 4.3 이상을 사용해야 합니다.",
- "configuration.suggest.includeCompletionsWithSnippetText": "TS 서버에서 코드 조각 완성을 사용하거나 사용하지 않도록 설정합니다. 작업 영역에서 TypeScript 4.3 이상을 사용해야 합니다.",
- "configuration.suggest.jsdoc.generateReturns": "JSDoc 템플릿에 대한 `@returns` 주석 생성을 사용하도록 설정/비활성화합니다. 작업 영역에서 TypeScript 4.2 이상을 사용해야 합니다.",
- "configuration.suggest.names": "JavaScrip 제안에서 파일의 고유한 이름 포함을 사용하거나 사용하지 않도록 설정합니다. 이름 제안은 `@ts-check` 또는 `checkJs`를 사용하여 의미 체계적으로 확인되는 JavaScript 코드에서 항상 사용하지 않도록 설정됩니다.",
- "configuration.suggest.objectLiteralMethodSnippets.enabled": "개체 리터럴의 메서드에 대한 코드 조각 완성을 사용하거나 사용하지 않도록 설정합니다. 작업 영역에서 TypeScript 4.7+를 사용해야 합니다.",
- "configuration.suggest.paths": "import 문 및 요청 호출의 경로에 대한 제안을 사용하거나 사용하지 않도록 설정합니다.",
- "configuration.surveys.enabled": "VS Code의 Javascript 및 Typescript 지원을 개선하는 데 도움이 되는 가끔 있는 설문을 사용하거나 사용하지 않도록 설정합니다.",
- "configuration.tsserver.experimental.enableProjectDiagnostics": "(실험) 프로젝트 전체 오류 보고를 사용합니다.",
- "configuration.tsserver.maxTsServerMemory": "TypeScript 서버 프로세스에 할당할 최대 메모리 양(MB)입니다.",
- "configuration.tsserver.useSeparateSyntaxServer": "구문 관련 작업(예: 접기 계산 또는 문서 기호 컴퓨팅)에 더 빨리 응답할 수 있는 별도 TypeScript 서버의 생성을 활성화/비활성화합니다. 작업 영역에서 TypeScript 3.4.0 이상을 사용해야 합니다.",
- "configuration.tsserver.useSeparateSyntaxServer.deprecation": "이 설정은 `typescript.tsserver.useSyntaxServer`를 위해 더 이상 사용되지 않습니다.",
- "configuration.tsserver.useSyntaxServer": "TypeScript가 컴퓨팅 코드 접기와 같은 구문 관련 작업을 보다 빠르게 처리하기 위해 전용 서버를 시작하는지 여부를 제어합니다.",
- "configuration.tsserver.useSyntaxServer.always": "경량 구문 서버를 사용하여 모든 IntelliSense 작업을 처리하세요. 이 구문 서버는 열린 파일에 대해서만 IntelliSense를 제공할 수 있습니다.",
- "configuration.tsserver.useSyntaxServer.auto": "전체 서버와 구문 작업 전용의 경량 서버를 모두 생성하세요. 구문 서버는 프로젝트를 로드하는 동안 구문 작업을 가속화하고 IntelliSense를 제공하는 데 사용됩니다.",
- "configuration.tsserver.useSyntaxServer.never": "전용 구문 서버를 사용하지 마세요. 단일 서버를 사용하여 모든 IntelliSense 작업을 처리하세요.",
- "configuration.tsserver.watchOptions": "파일 및 디렉터리 추적에 사용할 감시 전략을 구성합니다. 작업 영역에서 TypeScript 3.8 이상을 사용해야 합니다.",
- "configuration.tsserver.watchOptions.fallbackPolling": "파일 시스템 이벤트를 사용하는 경우, 이 옵션은 시스템에 기본 파일 감시자가 부족하고/부족하거나 시스템에서 기본 파일 감시자를 지원하지 않는 경우 사용되는 폴링 전략을 지정합니다.",
- "configuration.tsserver.watchOptions.fallbackPolling.dynamicPriorityPolling ": "자주 수정되지 않는 파일이 덜 자주 검사되는 동적 큐를 사용합니다.",
- "configuration.tsserver.watchOptions.fallbackPolling.fixedPollingInterval": "모든 파일의 변경 사항을 고정된 간격으로 초당 여러 번 확인합니다.",
- "configuration.tsserver.watchOptions.fallbackPolling.priorityPollingInterval": "모든 파일에서 1초에 여러 번 변경 내용을 확인하지만, 휴리스틱을 사용하여 특정 형식의 파일은 다른 파일보다 덜 자주 확인합니다.",
- "configuration.tsserver.watchOptions.synchronousWatchDirectory": "디렉터리에서 지연 감시를 사용하지 않습니다. 지연 감시는 많은 파일 변경이 한꺼번에 발생하는 경우(예: 실행 중인 npm install에서 node_modules 변경) 유용하지만, 덜 일반적인 설정의 경우 이 플래그를 사용하여 지연 감시를 사용하지 않도록 설정할 수 있습니다.",
- "configuration.tsserver.watchOptions.watchDirectory": "재귀 파일 감시 기능이 없는 시스템에서 전체 디렉터리 트리를 감시하는 방법에 대한 전략입니다.",
- "configuration.tsserver.watchOptions.watchDirectory.dynamicPriorityPolling": "수정이 자주 발생하지 않는 디렉터리가 덜 자주 검사되는 동적 큐를 사용합니다.",
- "configuration.tsserver.watchOptions.watchDirectory.fixedChunkSizePolling": "정기적으로 디렉터리를 청크 단위로 폴링합니다. 작업 영역에서 TypeScript 4.3 이상을 사용해야 합니다.",
- "configuration.tsserver.watchOptions.watchDirectory.fixedPollingInterval": "모든 디렉터리에서 고정된 간격으로 초당 여러 번 변경 내용을 확인합니다.",
- "configuration.tsserver.watchOptions.watchDirectory.useFsEvents": "디렉터리 변경에 운영 체제/파일 시스템의 기본 이벤트를 사용하려고 시도합니다.",
- "configuration.tsserver.watchOptions.watchFile": "개별 파일을 감시하는 방법에 대한 전략입니다.",
- "configuration.tsserver.watchOptions.watchFile.dynamicPriorityPolling": "자주 수정되지 않는 파일이 덜 자주 검사되는 동적 큐를 사용합니다.",
- "configuration.tsserver.watchOptions.watchFile.fixedChunkSizePolling": "정기적으로 파일을 청크 단위로 폴링합니다. 작업 영역에서 TypeScript 4.3 이상을 사용해야 합니다.",
- "configuration.tsserver.watchOptions.watchFile.fixedPollingInterval": "모든 파일의 변경 내용을 고정된 간격으로 초당 여러 번 확인합니다.",
- "configuration.tsserver.watchOptions.watchFile.priorityPollingInterval": "모든 파일의 변경 내용을 1초에 여러 번 확인하지만, 휴리스틱을 사용하여 특정 형식의 파일은 다른 파일보다 덜 자주 확인합니다.",
- "configuration.tsserver.watchOptions.watchFile.useFsEvents": "파일 변경에 운영 체제/파일 시스템의 기본 이벤트를 사용하려고 시도합니다.",
- "configuration.tsserver.watchOptions.watchFile.useFsEventsOnParentDirectory": "운영 체제/파일 시스템의 기본 이벤트를 사용하여 파일이 포함된 디렉터리의 대한 변경 내용을 수신합니다. 그러면 파일 감시자를 적게 사용할 수 있지만 정확도가 떨어집니다.",
- "configuration.typescript": "TypeScript",
- "description": "JavaScript 및 TypeScript에 대한 다양한 언어 지원을 제공합니다.",
- "displayName": "TypeScript 및 JavaScript 언어 기능",
- "format.insertSpaceAfterCommaDelimiter": "쉼표 구분 기호 뒤에 오는 공백 처리를 정의합니다.",
- "format.insertSpaceAfterConstructor": "생성자 키워드 뒤에 오는 공백 처리를 정의합니다.",
- "format.insertSpaceAfterFunctionKeywordForAnonymousFunctions": "익명 함수의 function 키워드 뒤에 오는 공백 처리를 정의합니다.",
- "format.insertSpaceAfterKeywordsInControlFlowStatements": "제어 흐름 문의 키워드 뒤에 오는 공백 처리를 정의합니다.",
- "format.insertSpaceAfterOpeningAndBeforeClosingEmptyBraces": "비어 있는 여는 중괄호 뒤와 닫는 중괄호 앞의 공백 처리를 정의합니다.",
- "format.insertSpaceAfterOpeningAndBeforeClosingJsxExpressionBraces": "JSX 식의 여는 중괄호 뒤와 닫는 중괄호 앞의 공백 처리를 정의합니다.",
- "format.insertSpaceAfterOpeningAndBeforeClosingNonemptyBraces": "비어 있지 않은 여는 중괄호 뒤와 닫는 중괄호 앞의 공백 처리를 정의합니다.",
- "format.insertSpaceAfterOpeningAndBeforeClosingNonemptyBrackets": "비어 있지 않은 여는 대괄호 뒤와 닫는 대괄호 앞에 오는 공백 처리를 정의합니다.",
- "format.insertSpaceAfterOpeningAndBeforeClosingNonemptyParenthesis": "비어 있지 않은 여는 괄호 뒤와 닫는 괄호 앞에 오는 공백 처리를 정의합니다.",
- "format.insertSpaceAfterOpeningAndBeforeClosingTemplateStringBraces": "템플릿 문자열의 여는 중괄호 뒤와 닫는 중괄호 앞의 공백 처리를 정의합니다.",
- "format.insertSpaceAfterSemicolonInForStatements": "for 문에서 세미콜론 뒤에 오는 공백 처리를 정의합니다.",
- "format.insertSpaceAfterTypeAssertion": "TypeScript에서 형식 어설션 뒤에 오는 공백 처리를 정의합니다.",
- "format.insertSpaceBeforeAndAfterBinaryOperators": "이항 연산자 뒤에 오는 공백 처리를 정의합니다.",
- "format.insertSpaceBeforeFunctionParenthesis": "함수 인수 괄호 앞에 오는 공백 처리를 정의합니다.",
- "format.placeOpenBraceOnNewLineForControlBlocks": "제어 블록의 새 줄에 여는 중괄호를 넣을지 정의합니다.",
- "format.placeOpenBraceOnNewLineForFunctions": "함수의 새 줄에 여는 중괄호를 넣을지 정의합니다.",
- "format.semicolons": "선택적 세미콜론 처리를 정의합니다. 작업 영역에서 TypeScript 3.7 이상을 사용해야 합니다.",
- "format.semicolons.ignore": "세미콜론을 삽입하거나 제거하지 마세요.",
- "format.semicolons.insert": "문 끝에 세미콜론을 삽입합니다.",
- "format.semicolons.remove": "불필요한 세미콜론을 제거합니다.",
- "goToProjectConfig.title": "프로젝트 구성으로 이동",
- "inlayHints.parameterNames.all": "리터럴 및 비리터럴 인수에 대한 매개변수 이름 힌트를 활성화합니다.",
- "inlayHints.parameterNames.literals": "리터럴 인수에 대해서만 매개변수 이름 힌트를 활성화합니다.",
- "inlayHints.parameterNames.none": "매개변수 이름 힌트를 비활성화합니다.",
- "javascript.format.enable": "기본 JavaScript 포맷터를 사용하거나 사용하지 않습니다.",
- "javascript.preferences.jsxAttributeCompletionStyle.auto": "prop 형식에 따라 특성 이름 뒤에 `={}` 또는 `=\"\"`를 삽입합니다. 문자열 특성에 사용되는 따옴표 형식을 제어하려면 `javascript.preferences.quoteStyle`을 참조하세요.",
- "javascript.referencesCodeLens.enabled": "JavaScript 파일에서 CodeLense 참조를 사용/사용 안 함으로 설정합니다.",
- "javascript.referencesCodeLens.showOnAllFunctions": "JavaScript 파일의 모든 기능에 대한 참조 CodeLens를 사용/사용하지 않도록 설정합니다.",
- "javascript.suggestionActions.enabled": "편집기에서 JavaScript 파일에 대한 제안 진단을 사용하거나 사용하지 않도록 설정합니다.",
- "javascript.validate.enable": "JavaScript 유효성 검사를 사용하거나 사용하지 않습니다.",
- "reloadProjects.title": "프로젝트 다시 로드",
- "taskDefinition.tsconfig.description": "TS 빌드를 정의하는 tsconfig 파일입니다.",
- "typescript.autoClosingTags": "JSX 태그의 자동 닫기를 사용하거나 사용하지 않도록 설정합니다.",
- "typescript.check.npmIsInstalled": "Check if npm is installed for [Automatic Type Acquisition](https://code.visualstudio.com/docs/nodejs/working-with-javascript#_typings-and-automatic-type-acquisition).",
- "typescript.disableAutomaticTypeAcquisition": "[자동 형식 인식](https://code.visualstudio.com/docs/nodejs/working-with-javascript#_typings-and-automatic-type-acquisition)을 사용하지 않도록 설정합니다. 자동 형식 인식은 npm에서 '@types' 패키지를 가져와 외부 라이브러리에 대한 IntelliSense를 개선합니다.",
- "typescript.enablePromptUseWorkspaceTsdk": "Intellisense 작업 영역에서 구성된 TypeScript 버전을 사용하라는 메시지를 사용자에게 표시할 수 있습니다.",
- "typescript.findAllFileReferences": "파일 참조 찾기",
- "typescript.format.enable": "기본 TypeScript 포맷터를 사용하거나 사용하지 않습니다.",
- "typescript.goToSourceDefinition": "원본 정의로 이동",
- "typescript.implementationsCodeLens.enabled": "CodeLens 구현을 사용하거나 사용하지 않습니다. 이 CodeLens는 인터페이스의 구현자를 표시합니다.",
- "typescript.locale": "JavaScript 및 TypeScript 오류를 보고하는 데 사용되는 로케일을 설정합니다. 기본값은 VS Code의 로케일을 사용하는 것입니다.",
- "typescript.npm": "Specifies the path to the npm executable used for [Automatic Type Acquisition](https://code.visualstudio.com/docs/nodejs/working-with-javascript#_typings-and-automatic-type-acquisition).",
- "typescript.openTsServerLog.title": "TS 서버 로그 열기",
- "typescript.preferences.autoImportFileExcludePatterns": "자동 가져오기에서 제외할 파일의 glob 패턴을 지정합니다. 작업 영역에서 TypeScript 4.8 이상을 사용해야 합니다.",
- "typescript.preferences.importModuleSpecifier": "자동 가져오기의 기본 경로 스타일입니다.",
- "typescript.preferences.importModuleSpecifier.nonRelative": "`jsconfig.json` / `tsconfig.json`에 구성된 `baseUrl` 또는 `paths`를 기반으로 상대적이지 않은 가져오기를 사용합니다.",
- "typescript.preferences.importModuleSpecifier.projectRelative": "상대적 가져오기 경로가 패키지 또는 프로젝트 디렉터리를 나가는 경우에만 상대적이지 않은 가져오기를 사용합니다. 작업 영역에서 TypeScript 4.2 이상을 사용해야 합니다.",
- "typescript.preferences.importModuleSpecifier.relative": "가져온 파일 위치의 상대 경로를 사용합니다.",
- "typescript.preferences.importModuleSpecifier.shortest": "상대적 가져오기보다 적은 경로 세그먼트가 포함된 가져오기가 사용 가능한 경우에만 상대적이지 않은 가져오기를 사용합니다.",
- "typescript.preferences.importModuleSpecifierEnding": "자동 가져오기에 대한 기본 경로 종료입니다. 작업 영역에서 TypeScript 4.5 이상을 사용해야 합니다.",
- "typescript.preferences.importModuleSpecifierEnding.auto": "프로젝트 설정을 사용하여 기본값을 선택합니다.",
- "typescript.preferences.importModuleSpecifierEnding.index": "`./component/index.js`를 `./component/index`로 줄입니다.",
- "typescript.preferences.importModuleSpecifierEnding.js": "경로 끝을 줄이지 마세요. `.js` 확장명을 포함하세요.",
- "typescript.preferences.importModuleSpecifierEnding.minimal": "`./component/index.js`를 `./component`로 줄입니다.",
- "typescript.preferences.includePackageJsonAutoImports": "사용할 수 있는 자동 가져오기 기능의 'package.json' 종속성을 검색하도록/하지 않도록 설정합니다.",
- "typescript.preferences.includePackageJsonAutoImports.auto": "예상 성능 영향에 따라 종속성을 검색합니다.",
- "typescript.preferences.includePackageJsonAutoImports.off": "종속성을 검색하지 않습니다.",
- "typescript.preferences.includePackageJsonAutoImports.on": "종속성을 항상 검색합니다.",
- "typescript.preferences.jsxAttributeCompletionStyle": "JSX 특성 완성에 선호되는 스타일입니다.",
- "typescript.preferences.jsxAttributeCompletionStyle.auto": "prop 형식에 따라 특성 이름 뒤에 `={}` 또는 `=\"\"`를 삽입합니다. 문자열 특성에 사용되는 따옴표 형식을 제어하려면 `typescript.preferences.quoteStyle`을 참조하세요.",
- "typescript.preferences.jsxAttributeCompletionStyle.braces": "속성 이름 뒤에 `={}`를 삽입하세요.",
- "typescript.preferences.jsxAttributeCompletionStyle.none": "특성 이름만 삽입하세요.",
- "typescript.preferences.quoteStyle": "빠른 수정에 사용할 기본 견적 스타일입니다.",
- "typescript.preferences.quoteStyle.auto": "기존 코드에서 따옴표 형식 유추",
- "typescript.preferences.quoteStyle.double": "항상 큰따옴표(`\"`) 사용",
- "typescript.preferences.quoteStyle.single": "항상 작은따옴표(`'`) 사용",
- "typescript.preferences.renameShorthandProperties.deprecationMessage": "'typescript.preferences.renameShorthandProperties' 설정 대신 'typescript.preferences.useAliasesForRenames'가 사용됩니다.",
- "typescript.preferences.useAliasesForRenames": "이름을 바꾸는 동안 개체 줄임 속성의 별칭 소개를 사용하거나 사용하지 않도록 설정합니다. 작업 영역에서 TypeScript 3.4 이상을 사용해야 합니다.",
- "typescript.problemMatchers.tsc.label": "TypeScript 문제",
- "typescript.problemMatchers.tscWatch.label": "TypeScript 문제(감시 모드)",
- "typescript.referencesCodeLens.enabled": "TypeScript 파일에서 참조 CodeLens를 사용하거나 사용하지 않도록 설정합니다.",
- "typescript.referencesCodeLens.showOnAllFunctions": "TypeScript 파일의 모든 기능에 대한 참조 CodeLens를 사용/사용하지 않도록 설정합니다.",
- "typescript.reportStyleChecksAsWarnings": "스타일 검사를 경고로 보고합니다.",
- "typescript.restartTsServer": "TS 서버 다시 시작",
- "typescript.selectTypeScriptVersion.title": "TypeScript 버전 선택...",
- "typescript.suggest.enabled": "자동 완성 제안을 사용하거나 사용하지 않도록 설정합니다.",
- "typescript.suggestionActions.enabled": "편집기에서 TypeScript 파일에 대한 제안 진단을 사용하거나 사용하지 않도록 설정합니다.",
- "typescript.tsc.autoDetect": "tsc 작업의 자동 검색을 제어합니다.",
- "typescript.tsc.autoDetect.build": "단일 실행 컴파일 작업만 만듭니다.",
- "typescript.tsc.autoDetect.off": "이 기능을 사용하지 않도록 설정합니다.",
- "typescript.tsc.autoDetect.on": "빌드 및 조사식 작업을 모두 만듭니다.",
- "typescript.tsc.autoDetect.watch": "컴파일 및 조사식 작업만 만듭니다.",
- "typescript.tsdk.desc": "IntelliSense에 사용할 TypeScript 설치에서 tsserver 및 `lib*.d.ts` 파일의 폴더 경로를 지정합니다. 예: `./node_modules/typescript/lib`.\r\n\r\n- 사용자 설정으로 지정한 경우 'typescript.tsdk'의 TypeScript 버전이 자동으로 기본 제공 TypeScript 버전을 바꿉니다.\r\n- 작업 영역 설정으로 지정한 경우 'typescript.tsdk'를 사용하여 'TypeScript: TypeScript 버전 선택' 명령으로 IntelliSense용 TypeScript의 해당 작업 영역 버전을 사용하도록 전환할 수 있습니다.\r\n\r\nTypeScript 버전 관리에 대한 자세한 내용은 [TypeScript 설명서](https://code.visualstudio.com/docs/typescript/typescript-compiling#_using-newer-typescript-versions)를 참조하세요.",
- "typescript.tsserver.enableTracing": "디렉터리에 대해 TS 서버 성능 추적을 사용하도록 설정합니다. 이 추적 파일은 TS 서버 성능 문제를 진단하는 데 사용될 수 있습니다. 로그에는 파일 경로, 소스 코드 및 프로젝트에서 잠재적으로 중요한 기타 정보가 포함될 수 있습니다.",
- "typescript.tsserver.log": "파일에 대해 TS 서버 로깅을 사용하도록 설정합니다. 이 로그는 TS 서버 문제를 진단하는 데 사용될 수 있습니다. 로그에는 파일 경로, 소스 코드 및 프로젝트에서 잠재적으로 중요한 기타 정보가 포함될 수 있습니다.",
- "typescript.tsserver.pluginPaths": "TypeScript 언어 서비스 플러그 인을 검색할 추가 경로입니다.",
- "typescript.tsserver.pluginPaths.item": "절대 또는 상대 경로입니다. 상대 경로는 작업 영역 폴더를 기준으로 확인됩니다.",
- "typescript.tsserver.trace": "TS 서버로 전송한 메시지 추적을 사용하도록 설정합니다. 이 추적은 TS 서버 문제를 진단하는 데 사용될 수 있습니다. 추적에는 파일 경로, 소스 코드 및 프로젝트에서 잠재적으로 중요한 기타 정보가 포함될 수 있습니다.",
- "typescript.updateImportsOnFileMove.enabled": "VS Code에서 파일을 이동하거나 이름을 바꿀 때 가져오기 경로의 자동 업데이트를 사용하거나 사용하지 않도록 설정합니다.",
- "typescript.updateImportsOnFileMove.enabled.always": "항상 경로를 자동으로 업데이트합니다.",
- "typescript.updateImportsOnFileMove.enabled.never": "경로 이름을 바꾸지 않고 메시지를 표시하지 않습니다.",
- "typescript.updateImportsOnFileMove.enabled.prompt": "이름을 바꿀 때마다 프롬프트를 표시합니다.",
- "typescript.validate.enable": "TypeScript 유효성 검사를 사용하거나 사용하지 않습니다.",
- "typescript.workspaceSymbols.scope": "[작업 영역에서 기호로 이동](https://code.visualstudio.com/docs/editor/editingevolved#_open-symbol-by-name)하여 검색할 파일을 제어합니다.",
- "typescript.workspaceSymbols.scope.allOpenProjects": "열려 있는 모든 JavaScript 또는 TypeScript 프로젝트에서 기호를 검색합니다. 작업 영역에서 TypeScript 3.9 이상을 사용해야 합니다.",
- "typescript.workspaceSymbols.scope.currentProject": "현재 JavaScript 또는 TypeScript 프로젝트에서만 기호를 검색합니다.",
- "virtualWorkspaces": "가상 작업 공간에서는 파일에서 참조를 확인하고 찾는 기능이 지원되지 않습니다.",
- "workspaceTrust": "확장 기능은 작업 영역에서 지정한 코드를 실행하기 때문에 작업 영역 버전을 사용할 때 작업 영역 신뢰가 필요합니다."
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-ko/translations/extensions/vb.i18n.json b/i18n/vscode-language-pack-ko/translations/extensions/vb.i18n.json
deleted file mode 100644
index ac197baa15..0000000000
--- a/i18n/vscode-language-pack-ko/translations/extensions/vb.i18n.json
+++ /dev/null
@@ -1,16 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "package": {
- "description": "Visual Basic 파일에서 코드 조각, 구문 강조 표시, 괄호 일치 및 접기를 제공합니다.",
- "displayName": "Visual Basic 언어 기본 사항"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-ko/translations/extensions/vscode-chrome-debug-core.i18n.json b/i18n/vscode-language-pack-ko/translations/extensions/vscode-chrome-debug-core.i18n.json
deleted file mode 100644
index d36de62057..0000000000
--- a/i18n/vscode-language-pack-ko/translations/extensions/vscode-chrome-debug-core.i18n.json
+++ /dev/null
@@ -1,69 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "errors": {
- "eval.not.available": "사용할 수 없음",
- "not.connected": "런타임에 연결되지 않음",
- "restartFrame.cannot": "프레임을 다시 시작할 수 없습니다.",
- "attribute.path.not.exist": "'{0}' 특성이 없습니다('{1}').",
- "attribute.path.not.absolute": "'{0}' 특성이 절대('{1}')가 아닙니다. 절대로 설정하려면 접두사로 '{2}'을(를) 추가하는 것이 좋습니다.",
- "more.information": "추가 정보",
- "setVariable.error": "설정 값이 지원되지 않습니다.",
- "source.not.found": "콘텐츠를 검색할 수 없습니다.",
- "VSND2010": "런타임 프로세스에 연결할 수 없습니다. {0}ms 후 시간 초과 - (원인: {1}).",
- "VSND2023": "호출 스택을 사용할 수 없습니다.",
- "failed.to.read.port": "파일을 읽지 못했습니다. {dataDirPath}, {error}",
- "port.file.contents.invalid": "파일 위치: \"{dataDirPath}\"에 유효한 포트 데이터가 포함되어 있지 않습니다. {dataDirContents}"
- },
- "chrome/breakpoints": {
- "setBPTimedOut": "중단점 설정 요청 시간이 초과되었습니다.",
- "bp.fail.unbound": "중단점이 설정되었지만 아직 바인딩되지 않았습니다.",
- "bp.fail.noscript": "중단점 요청 스크립트를 찾을 수 없습니다.",
- "validateBP.sourcemapFail": "생성된 코드를 찾을 수 없어 중단점이 무시되었습니다(소스 맵 문제?).",
- "validateBP.notFound": "대상 경로를 찾을 수 없어 중단점이 무시되었습니다.",
- "invalidHitCondition": "잘못된 적중 조건: {0}"
- },
- "chrome/chromeDebugAdapter": {
- "exceptions.all": "모든 예외",
- "exceptions.uncaught": "catch되지 않은 예외",
- "exceptions.promise_rejects": "프라미스 거부"
- },
- "chrome/chromeTargetDiscoveryStrategy": {
- "attach.responseButNoTargets": "대상 앱의 응답을 가져왔지만 대상 페이지를 찾을 수 없습니다.",
- "attach.cannotConnect": "대상에 연결할 수 없습니다. {0}",
- "attach.invalidResponse": "대상의 응답이 잘못된 것 같습니다. 오류: {0}. 응답: {1}",
- "attach.invalidResponseArray": "대상의 응답이 잘못된 것 같습니다. {0}",
- "attach.noMatchingTarget": "{0}과(와) 일치하는 유효한 대상을 찾을 수 없습니다. 사용 가능한 페이지: {1}",
- "attach.devToolsAttached": "Chrome DevTools가 연결되어 있을 수 있는 {0} 대상에 연결할 수는 없습니다."
- },
- "chrome/stackFrames": {
- "skipReason": "('{0}' 건너뜀)",
- "scope.exception": "예외"
- },
- "chrome/stoppedEvent": {
- "reason.description.step": "단계에서 일시 중지됨",
- "reason.description.breakpoint": "중단점에서 일시 중지됨",
- "reason.description.exception": "예외에서 일시 중지됨",
- "reason.description.uncaughtException": "catch되지 않은 예외에서 일시 중지됨",
- "reason.description.caughtException": "catch된 예외에서 일시 중지됨",
- "reason.description.user_request": "사용자 요청에서 일시 중지됨",
- "reason.description.entry": "입력에서 일시 중지됨",
- "reason.description.debugger_statement": "디버거 문에서 일시 중지됨",
- "reason.description.restart": "프레임 입력에서 일시 중지됨",
- "reason.description.promiseRejection": "프라미스 거부에서 일시 중지됨"
- },
- "transformers/baseSourceMapTransformer": {
- "origin.inlined.source.map": "소스 맵의 읽기 전용 인라인 콘텐츠"
- },
- "transformers/remotePathTransformer": {
- "localRootAndRemoteRoot": "localRoot 및 remoteRoot를 둘 다 지정해야 합니다."
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-ko/translations/extensions/vscode-node-debug.i18n.json b/i18n/vscode-language-pack-ko/translations/extensions/vscode-node-debug.i18n.json
deleted file mode 100644
index dee4c19ec2..0000000000
--- a/i18n/vscode-language-pack-ko/translations/extensions/vscode-node-debug.i18n.json
+++ /dev/null
@@ -1,185 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "package": {
- "extension.description": "Node.js 디버깅 지원(버전 8.0 미만)",
- "node.label": "Node.js",
- "open.loaded.script": "로드된 스크립트 열기",
- "attach.node.process": "Node 프로세스에 연결",
- "toggle.skipping.this.file": "이 파일 건너뛰기 토글",
- "start.with.stop.on.entry": "디버깅 시작 및 항목에서 중지",
- "smartStep.description": "다시 원래 소스에 매핑할 수 없는 생성된 코드를 자동으로 단계별로 실행합니다.",
- "skipFiles.description": "디버그할 때 건너뛰는 파일의 GLOB 패턴 배열입니다. `/**` 패턴은 모든 내부 Node.js 모듈과 일치합니다.",
- "outFiles.description": "소스 맵을 사용하도록 설정한 경우 이러한 GLOB 패턴은 생성된 JavaScript 파일을 지정합니다. 패턴이 '!'로 시작하면 파일이 제외됩니다. 파일을 지정하지 않으면 생성된 코드가 소스와 동일한 디렉터리에 필요합니다. 예: `[\"${workspaceFolder}/out/**/*.js\"]`",
- "outDir.deprecationMessage": "'outDir' 특성은 사용되지 않습니다. 'outFiles'를 대신 사용하세요.",
- "trace.description": "진단 출력을 생성합니다. true로 설정하는 대신 하나 이상의 선택기를 쉼표로 구분하여 나열할 수 있습니다. '자세한 정보 표시' 선택기를 통해 아주 자세한 출력을 사용할 수 있습니다.",
- "launch.args.description": "프로그램에 전달된 명령줄 인수입니다.",
- "debug.node.showUseWslIsDeprecatedWarning.description": "'useWSL' 특성을 사용할 때 경고를 표시할지 여부를 제어합니다.",
- "debug.node.useV3.description": "【실험적】 js-debug 확장에 \"node\"-type 시작 구성을 위임할지 여부를 제어합니다.",
- "debug.extensionHost.useV3.description": "【실험적】 js-debug 확장에 \"extensionHost\"-type 시작 구성을 위임할지 여부를 제어합니다.",
- "node.protocol.description": "사용할 Node.js 디버그 프로토콜입니다.",
- "node.protocol.auto.description": "Node 8.0 이상 버전을 실행할 때 '검사기'를 선택하여, 가장 적합한 프로토콜을 자동으로 검색합니다.",
- "node.protocol.inspector.description": "Node.js 버전 6.3 이상에서 지원되는 새 프로토콜",
- "node.protocol.legacy.description": "Node.js 버전 8.0 미만에서 지원되는 이전 프로토콜",
- "node.sourceMaps.description": "JavaScript 소스 맵을 사용합니다(있는 경우).",
- "node.stopOnEntry.description": "시작된 후 프로그램을 자동으로 중지합니다.",
- "node.port.description": "연결할 디버그 포트입니다. 기본값은 5858입니다.",
- "node.address.description": "디버그할 프로세스의 TCP/IP 주소입니다(Node.js >= 5.0인 경우에만). 기본값은 'localhost'입니다.",
- "node.timeout.description": "Node.js 연결을 다시 시도하는 시간(밀리초)입니다. 기본값은 10,000ms입니다.",
- "node.restart.description": "Node.js가 종료된 후 세션을 다시 시작합니다.",
- "node.localRoot.description": "프로그램이 포함된 로컬 디렉터리의 경로입니다.",
- "node.remoteRoot.description": "프로그램이 포함된 원격 디렉터리의 절대 경로입니다.",
- "node.showAsyncStacks.description": "현재 호출 스택을 발생시킨 비동기 호출을 표시합니다. 'inspector' 프로토콜에만 해당됩니다.",
- "node.sourceMapPathOverrides.description": "소스맵의 정보로부터 디스크의 위치로 소스 파일 위치를 다시 쓰기 위한 매핑 집합입니다.",
- "node.disableOptimisticBPs.description": "해당 파일에 대한 sourcemap이 로드될 때까지 파일에서 중단점을 설정하지 마세요.",
- "node.launch.program.description": "프로그램의 절대 경로입니다. 생성된 값은 package.json 및 열린 파일을 보고 추측한 것입니다. 이 특성을 편집하세요.",
- "node.launch.externalConsole.deprecationMessage": "'externalConsole' 특성은 사용되지 않으므로 대신 'console'을 사용하세요.",
- "node.launch.console.description": "디버그 대상을 시작할 위치입니다.",
- "node.launch.console.internalConsole.description": "VS Code 디버그 콘솔(프로그램에서 입력 읽기를 지원하지 않음)",
- "node.launch.console.integratedTerminal.description": "VS Code의 통합 터미널",
- "node.launch.console.externalTerminal.description": "사용자 설정을 통해 구성 가능한 외부 터미널",
- "node.launch.cwd.description": "디버그 중인 프로그램 작업 디렉터리의 절대 경로입니다.",
- "node.launch.runtimeExecutable.description": "사용할 런타임입니다. PATH에서 사용할 수 있는 런타임의 이름 또는 절대 경로입니다. 생략하면 `node`로 간주합니다.",
- "node.launch.runtimeArgs.description": "런타임 실행 파일에 전달되는 선택적 인수입니다.",
- "node.launch.runtimeVersion.description": "사용할 `node` 런타임의 버전입니다. `nvm`이 필요합니다.",
- "node.launch.env.description": "프로그램에 전달된 환경 변수입니다. 'null' 값은 환경에서 변수를 제거합니다.",
- "node.launch.envFile.description": "환경 변수 정의를 포함하는 파일의 절대 경로입니다.",
- "node.launch.useWSL.description": "Linux용 Windows 하위 시스템을 사용합니다.",
- "node.launch.useWSL.deprecation": "'useWSL'은 사용되지 않으며 지원이 중단됩니다. 대신 '원격 - WSL' 확장을 사용하세요.",
- "node.launch.outputCapture.description": "출력 메시지를 캡처할 위치에서: 디버그 API 또는 stdout/stderr이 스트림됩니다.",
- "node.launch.autoAttachChildProcesses.description": "디버거를 새로 생성된 자식 프로세스에 자동으로 연결합니다.",
- "node.launch.config.name": "시작",
- "node.attach.processId.description": "연결할 프로세스의 ID입니다.",
- "node.attach.config.name": "연결",
- "node.processattach.config.name": "프로세스에 연결",
- "node.snippet.launch.label": "Node.js: 프로그램 실행",
- "node.snippet.launch.description": "디버그 모드에서 노드 프로그램 시작",
- "node.snippet.npm.label": "Node.js: NPM을 통해 시작",
- "node.snippet.npm.description": "npm 'debug' 스크립트를 통해 노드 프로그램 시작",
- "node.snippet.attach.label": "Node.js: 연결",
- "node.snippet.attach.description": "실행 중인 노드 프로그램에 연결",
- "node.snippet.remoteattach.label": "Node.js: 원격 프로그램에 연결",
- "node.snippet.remoteattach.description": "원격 노드 프로그램의 디버그 포트에 연결합니다.",
- "node.snippet.attachProcess.label": "Node.js: 프로세스에 연결",
- "node.snippet.attachProcess.description": "프로세스 선택기를 열어 연결할 Node 프로세스 선택",
- "node.snippet.nodemon.label": "Node.js: Nodemon 설정",
- "node.snippet.nodemon.description": "nodemon을 사용하여 소스 변경 내용에 대한 디버그 세션 다시 시작",
- "node.snippet.mocha.label": "Node.js: Mocha 테스트",
- "node.snippet.mocha.description": "Mocha 테스트 디버그",
- "node.snippet.yo.label": "Node.js: Yeoman 생성기",
- "node.snippet.yo.description": "yeoman 생성기 디버그(프로젝트 폴더에서 `npm link`를 실행하여 설치)",
- "node.snippet.gulp.label": "Node.js: Gulp 작업",
- "node.snippet.gulp.description": "Gulp 작업 디버그(프로젝트에 로컬 Gulp가 설치되어 있는지 확인하세요.)",
- "node.snippet.electron.label": "Node.js: Electron 주",
- "node.snippet.electron.description": "Electron 주 프로세스 디버그"
- },
- "dist/node/nodeDebug": {
- "setVariable.error": "설정 값이 지원되지 않습니다.",
- "exception.paused.promise.rejection": "약속 거부에서 일시 중지됨",
- "exception.promise.rejection.text": "약속 거부({0})",
- "exception.promise.rejection": "약속 거부",
- "reason.description.step": "단계에서 일시 중지됨",
- "reason.description.breakpoint": "중단점에서 일시 중지됨",
- "reason.description.exception": "예외에서 일시 중지됨",
- "reason.description.user_request": "사용자 요청에서 일시 중지됨",
- "reason.description.entry": "항목에서 일시 중지됨",
- "reason.description.debugger_statement": "디버거 문에서 일시 중지됨",
- "reason.description.restart": "프레임 입력에서 일시 중지됨",
- "exceptions.all": "모든 예외",
- "exceptions.uncaught": "확인할 수 없는 예외",
- "exceptions.rejects": "약속 거부",
- "VSND2028": "알 수 없는 콘솔 유형 '{0}'입니다.",
- "attribute.wls.not.exist": "Windows Subsystem Linux 설치를 찾을 수 없음",
- "VSND2001": "PATH에서 '{0}' 런타임을 찾을 수 없습니다. '{0}'이(가) 설치되어 있는지 확인하세요.",
- "program.path.case.mismatch.warning": "프로그램 경로에 디스크의 파일과 다른 대/소문자가 사용됩니다. 이로 인해 중단점이 적중되지 않을 수 있습니다.",
- "VSND2002": "'{0}' 프로그램을 시작할 수 없습니다. 소스 맵을 구성하면 도움이 될 수 있습니다.",
- "VSND2009": "해당 JavaScript를 찾을 수 없으므로 '{0}' 프로그램을 시작할 수 없습니다.",
- "VSND2003": "'{0}' 프로그램을 시작할 수 없습니다. '{1}' 특성을 설정하면 도움이 될 수 있습니다.",
- "VSND2029": "파일({0})에서 환경 변수를 로드할 수 없습니다.",
- "node.console.title": "노드 디버그 콘솔",
- "VSND2011": "터미널({0})에서 디버그 대상을 시작할 수 없습니다.",
- "VSND2017": "디버그 대상({0})을 시작할 수 없습니다.",
- "VSND2010": "런타임 프로세스에 연결할 수 없습니다(이유: {0}).",
- "VSND2033": "런타임에 연결할 수 없습니다. 런타임이 '레거시' 디버그 모드에 있는지 확인합니다.",
- "VSND2034": "'legacy' 프로토콜을 통해 런타임에 연결할 수 없으므로 'inspector' 프로토콜을 사용해 보세요.",
- "file.on.disk.changed": "디스크의 파일이 변경되었기 때문에 확인되지 않았습니다. 디버그 세션을 다시 시작하세요.",
- "VSND2019": "내부 모듈 {0}을(를) 찾을 수 없습니다.",
- "sourcemapping.fail.message": "생성된 코드를 찾을 수 없어 중단점이 무시되었습니다(소스 맵 문제?).",
- "VSND2022": "프로그램이 JavaScript 밖에서 일시 중지되었기 때문에 호출 스택이 없습니다.",
- "VSND2023": "호출 스택을 사용할 수 없습니다.",
- "VSND2018": "사용할 수 있는 호출 스택이 없습니다({_command}: {_error}).",
- "origin.from.node": "Node.js의 읽기 전용 콘텐츠",
- "origin.from.remote.node": "원격 Node.js의 읽기 전용 콘텐츠",
- "origin.core.module": "읽기 전용 코어 모듈",
- "source.skipFiles": "'skipFiles'로 인해 건너뜀",
- "source.smartstep": "'smartStep'으로 인해 건너뜀",
- "origin.inlined.source.map": "소스 맵의 읽기 전용 인라인 콘텐츠",
- "anonymous.function": "(익명 함수)",
- "scope.local.with.count": "로컬({0}/{1})",
- "scope.unknown": "알 수 없는 범위 유형: {0}",
- "scope.exception": "예외",
- "eval.not.available": "사용할 수 없음",
- "eval.invalid.expression": "잘못된 식: {0}",
- "source.not.found": "콘텐츠를 검색할 수 없습니다.",
- "attribute.path.not.exist": "'{0}' 특성이 없습니다('{1}').",
- "attribute.path.not.absolute": "'{0}' 특성이 절대('{1}')가 아닙니다. 절대로 설정하려면 접두사로 '{2}'을(를) 추가하는 것이 좋습니다.",
- "more.information": "추가 정보",
- "VSND2015": "Node.js가 응답하지 않아 '{_request}' 요청이 취소되었습니다.",
- "VSND2016": "Node.js가 적절한 시간 내에 '{_request}' 요청에 응답하지 않았습니다.",
- "scope.global": "GLOBAL",
- "scope.local": "LOCAL",
- "scope.with": "함께",
- "scope.closure": "닫기",
- "scope.catch": "Catch",
- "scope.block": "차단",
- "scope.script": "스크립트"
- },
- "dist/node/nodeV8Protocol": {
- "not.connected": "런타임에 연결되지 않음",
- "runtime.unresponsive": "Node.js가 응답하지 않아 취소됨",
- "runtime.timeout": "{0}ms 후에 제한 시간 초과"
- },
- "dist/node/extension/autoAttach": {
- "process.with.pid.label": "자동 연결됨({0})"
- },
- "dist/node/extension/cluster": {
- "child.process.with.pid.label": "자식 프로세스 {0}"
- },
- "dist/node/extension/configurationProvider": {
- "program.not.found.message": "디버그할 프로그램을 찾을 수 없습니다.",
- "useWslDeprecationWarning.title": "'useWSL' 특성은 더 이상 사용되지 않습니다. 대신 '원격 WSL' 확장을 사용하세요. 자세한 내용을 보려면 [여기]({0})를 클릭하세요.",
- "useWslDeprecationWarning.doNotShowAgain": "다시 표시 안 함",
- "NVS_HOME.not.found.message": "'runtimeVersion' 특성에는 Node.js 버전 관리자 'nvs'가 필요합니다.",
- "NVM_HOME.not.found.message": "'runtimeVersion' 특성에는 Node.js 버전 관리자 'nvm-windows' 또는 'nvs'가 필요합니다.",
- "NVM_DIR.not.found.message": "'runtimeVersion' 특성에는 Node.js 버전 관리자 'nvm' 또는 'nvs'.가 필요합니다.",
- "runtime.version.not.found.message": "Node.js 버전 '{0}'이(가) '{1}'에 대해 설치되어 있지 않습니다.",
- "node.launch.config.name": "프로그램 시작",
- "mern.starter.explanation": "'{0}' 프로젝트에 대한 구성 시작이 생성되었습니다.",
- "program.guessed.from.package.json.explanation": "'package.json'을 기반으로 구성 시작이 생성되었습니다.",
- "outFiles.explanation": "생성된 JavaScript를 포함하도록 'outFiles' 특성의 GLOB 패턴을 조정합니다."
- },
- "dist/node/extension/processPicker": {
- "pid.error": "프로세스에 연결: 디버그 모드에서 프로세스 '{0}'을 넣을 수 없습니다.",
- "process.id.error": "프로세스에 연결: '{0}'은(는) 프로세스 ID가 아닌 것 같습니다.",
- "pickNodeProcess": "연결할 Node.js 프로세스 선택",
- "process.picker.error": "프로세스 선택기 실패({0})",
- "process.id.port": "프로세스 ID: {0}, 디버그 포트: {1}",
- "process.id.port.legacy": "프로세스 ID: {0}, 디버그 포트: {1}(레거시 프로토콜)",
- "process.id.port.signal": "프로세스 ID: {0}, 디버그 포트: {1}({2})",
- "process.id.signal": "프로세스 ID: {0}({1})",
- "cannot.enable.debug.mode.error": "프로세스에 연결: 프로세스 '{0}'({1})에 대해 디버그 모드를 사용하도록 설정할 수 없습니다."
- },
- "dist/node/extension/protocolDetection": {
- "protocol.switch.legacy.detected": "레거시 프로토콜이 검색되었기 때문에 레거시 프로토콜로 디버그합니다.",
- "protocol.switch.unknown.error": "Node.js 버전을 확인할 수 없으므로 검사기 프로토콜로 디버그합니다({0}).",
- "protocol.switch.legacy.version": "노드 {0}이(가) 감지되었으므로 레거시 프로토콜로 디버그합니다."
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-ko/translations/extensions/vscode-node-debug2.i18n.json b/i18n/vscode-language-pack-ko/translations/extensions/vscode-node-debug2.i18n.json
deleted file mode 100644
index 1992fb85b7..0000000000
--- a/i18n/vscode-language-pack-ko/translations/extensions/vscode-node-debug2.i18n.json
+++ /dev/null
@@ -1,80 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "package": {
- "extension.description": "Node.js 디버깅 지원",
- "node.label": "검사 프로토콜을 통한 Node.js v6.3 이상",
- "node.sourceMaps.description": "JavaScript 소스 맵을 사용합니다(있는 경우).",
- "outDir.deprecationMessage": "'outDir' 특성은 사용되지 않습니다. 'outFiles'를 대신 사용하세요.",
- "node.outFiles.description": "소스 맵이 사용하도록 설정되면 이 전역 패턴은 생성된 JavaScript 파일을 지정합니다. 패턴이 '!'로 시작하면 파일이 제외됩니다. 지정하지 않을 경우 생성된 코드는 소스와 동일한 디렉터리에 있어야 합니다.",
- "node.stopOnEntry.description": "시작된 후 프로그램을 자동으로 중지합니다.",
- "node.port.description": "연결할 디버그 포트입니다. 기본값은 9229입니다.",
- "node.address.description": "디버그 포트의 TCP/IP 주소입니다. 기본값은 'localhost'입니다.",
- "node.timeout.description": "Node.js 연결을 다시 시도하는 시간(밀리초)입니다. 기본값은 10,000ms입니다.",
- "node.smartStep.description": "다시 원래 소스에 매핑할 수 없는 생성된 코드를 자동으로 단계별로 실행합니다.",
- "node.enableSourceMapCaching.description": "sourcemap이 URL에서 다운로드되면 이를 디스크에 캐시합니다.",
- "node.diagnosticLogging.description": "true인 경우 어댑터가 자체 진단 정보를 콘솔에 로그합니다.",
- "node.diagnosticLogging.deprecationMessage": "'diagnosticLogging'은 사용되지 않습니다. 'trace'를 대신 사용하세요.",
- "node.verboseDiagnosticLogging.description": "true인 경우 어댑터가 'diagnosticLogging'에 의해 로그된 정보뿐만 아니라 클라이언트와 대상이 있는 모든 트래픽을 로그합니다.",
- "node.verboseDiagnosticLogging.deprecationMessage": "'verboseDiagnosticLogging'은 사용되지 않습니다. 'trace'를 대신 사용하세요.",
- "node.trace.description": "'true'인 경우 디버거가 추적 정보를 파일에 로그합니다. 'verbose'인 경우 로그를 콘솔에도 표시합니다.",
- "node.sourceMapPathOverrides.description": "sourcemap의 위치에서 디스크의 해당 위치로 소스 파일의 위치를 다시 작성하기 위한 매핑 세트입니다. 자세한 내용은 추가 정보를 참조하세요.",
- "node.skipFiles.description": "디버그할 때 건너뛸 파일 또는 폴더 이름이나 전역 패턴의 배열입니다.",
- "node.restart.description": "Node.js가 종료된 후 세션을 다시 시작합니다.",
- "node.showAsyncStacks.description": "현재 호출 스택을 생성하는 비동기 호출을 표시합니다.",
- "node.disableOptimisticBPs.description": "해당 파일에 대한 sourcemap이 로드될 때까지 파일에서 중단점을 설정하지 마세요.",
- "node.launch.program.description": "프로그램의 절대 경로입니다.",
- "node.launch.console.description": "디버그 대상을 시작할 위치: 내부 콘솔, 통합 터미널 또는 외부 터미널.",
- "node.launch.args.description": "프로그램에 전달된 명령줄 인수입니다.",
- "node.launch.cwd.description": "디버그 중인 프로그램 작업 디렉터리의 절대 경로입니다.",
- "node.launch.runtimeExecutable.description": "사용할 런타임입니다. PATH에서 사용 가능한 런타임의 절대 경로 또는 이름입니다. 생략하면 'node'가 사용됩니다.",
- "node.launch.runtimeArgs.description": "런타임 실행 파일에 전달되는 선택적 인수입니다.",
- "node.launch.env.description": "프로그램에 전달된 환경 변수입니다. 'null' 값은 환경에서 변수를 제거합니다.",
- "node.launch.envFile.description": "환경 변수 정의를 포함하는 파일의 절대 경로입니다.",
- "node.launch.outputCapture.description": "출력 메시지를 캡처할 위치에서: 디버그 API 또는 stdout/stderr이 스트림됩니다.",
- "node.launch.config.name": "시작",
- "node.attach.processId.description": "연결할 프로세스의 ID입니다.",
- "node.attach.localRoot.description": "'remoteRoot'에 해당하는 로컬 소스 루트입니다.",
- "node.attach.remoteRoot.description": "원격 호스트의 소스 루트입니다.",
- "node.attach.config.name": "연결",
- "node.processattach.config.name": "프로세스에 연결",
- "toggle.skipping.this.file": "이 파일 건너뛰기 토글",
- "extensionHost.label": "VS Code 확장 개발",
- "extensionHost.launch.runtimeExecutable.description": "VS Code의 절대 경로입니다.",
- "extensionHost.launch.stopOnEntry.description": "시작된 후 확장 호스트를 자동으로 중지합니다.",
- "extensionHost.launch.env.description": "확장 호스트에 전달된 환경 변수입니다.",
- "extensionHost.snippet.launch.label": "VS Code 확장 개발",
- "extensionHost.snippet.launch.description": "디버그 모드에서 VS Code 확장 시작",
- "extensionHost.launch.config.name": "확장 시작"
- },
- "out/src/errors": {
- "VSND2001": "PATH에서 '{0}' 런타임을 찾을 수 없습니다. '{0}'이(가) 설치되어 있나요?",
- "VSND2011": "터미널({0})에서 디버그 대상을 시작할 수 없습니다.",
- "VSND2017": "디버그 대상({0})을 시작할 수 없습니다.",
- "VSND2035": "확장({0})을 디버그할 수 없습니다.",
- "VSND2028": "알 수 없는 콘솔 유형 '{0}'입니다.",
- "VSND2002": "'{0}' 프로그램을 시작할 수 없습니다. 소스 맵을 구성하면 도움이 될 수 있습니다.",
- "VSND2003": "'{0}' 프로그램을 시작할 수 없습니다. '{1}' 특성을 설정하면 도움이 될 수 있습니다.",
- "VSND2009": "해당 JavaScript를 찾을 수 없으므로 '{0}' 프로그램을 시작할 수 없습니다.",
- "VSND2029": "파일({0})에서 환경 변수를 로드할 수 없습니다."
- },
- "out/src/nodeDebugAdapter": {
- "attribute.wsl.not.exist": "Linux 설치에 대한 Windows 하위 시스템을 찾을 수 없습니다.",
- "program.path.case.mismatch.warning": "프로그램 경로에 디스크의 파일과 다른 대/소문자가 사용됩니다. 이로 인해 중단점이 적중되지 않을 수 있습니다.",
- "node.console.title": "노드 디버그 콘솔",
- "attribute.path.not.exist": "'{0}' 특성이 없습니다('{1}').",
- "attribute.path.not.absolute": "'{0}' 특성이 절대('{1}')가 아닙니다. 절대로 설정하려면 접두사로 '{2}'을(를) 추가하는 것이 좋습니다.",
- "VSND2001": "PATH에서 '{0}' 런타임을 찾을 수 없습니다. '{0}'이(가) 설치되어 있는지 확인하세요.",
- "more.information": "추가 정보",
- "origin.from.node": "Node.js의 읽기 전용 콘텐츠",
- "origin.core.module": "읽기 전용 핵심 모듈"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-ko/translations/extensions/vscode.bat.i18n.json b/i18n/vscode-language-pack-ko/translations/extensions/vscode.bat.i18n.json
index 7fccec3d96..8a064113b8 100644
--- a/i18n/vscode-language-pack-ko/translations/extensions/vscode.bat.i18n.json
+++ b/i18n/vscode-language-pack-ko/translations/extensions/vscode.bat.i18n.json
@@ -9,8 +9,8 @@
"version": "1.0.0",
"contents": {
"package": {
- "displayName": "Windows Bat 언어 기본",
- "description": "Windows 배치 파일에서 코드 조각, 구문 강조 표시, 괄호 일치 및 접기를 제공합니다."
+ "description": "Windows 배치 파일에서 코드 조각, 구문 강조 표시, 괄호 일치 및 접기를 제공합니다.",
+ "displayName": "Windows Bat 언어 기본"
}
}
}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-ko/translations/extensions/notebook-renderers.i18n.json b/i18n/vscode-language-pack-ko/translations/extensions/vscode.builtin-notebook-renderers.i18n.json
similarity index 100%
rename from i18n/vscode-language-pack-ko/translations/extensions/notebook-renderers.i18n.json
rename to i18n/vscode-language-pack-ko/translations/extensions/vscode.builtin-notebook-renderers.i18n.json
diff --git a/i18n/vscode-language-pack-ko/translations/extensions/vscode.clojure.i18n.json b/i18n/vscode-language-pack-ko/translations/extensions/vscode.clojure.i18n.json
index 2f02496134..5de75aed9c 100644
--- a/i18n/vscode-language-pack-ko/translations/extensions/vscode.clojure.i18n.json
+++ b/i18n/vscode-language-pack-ko/translations/extensions/vscode.clojure.i18n.json
@@ -9,8 +9,8 @@
"version": "1.0.0",
"contents": {
"package": {
- "displayName": "Clojure 언어 기본 사항",
- "description": "Clojure 파일에서 구문 강조 표시 및 괄호 일치를 제공합니다."
+ "description": "Clojure 파일에서 구문 강조 표시 및 괄호 일치를 제공합니다.",
+ "displayName": "Clojure 언어 기본 사항"
}
}
}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-ko/translations/extensions/vscode.coffeescript.i18n.json b/i18n/vscode-language-pack-ko/translations/extensions/vscode.coffeescript.i18n.json
index e4f50afbb8..47ce058562 100644
--- a/i18n/vscode-language-pack-ko/translations/extensions/vscode.coffeescript.i18n.json
+++ b/i18n/vscode-language-pack-ko/translations/extensions/vscode.coffeescript.i18n.json
@@ -9,8 +9,8 @@
"version": "1.0.0",
"contents": {
"package": {
- "displayName": "CoffeeScript 언어 기본",
- "description": "CoffeeScript 파일에서 코드 조각, 구문 강조 표시, 괄호 일치 및 접기를 제공합니다."
+ "description": "CoffeeScript 파일에서 코드 조각, 구문 강조 표시, 괄호 일치 및 접기를 제공합니다.",
+ "displayName": "CoffeeScript 언어 기본"
}
}
}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-ko/translations/extensions/vscode.configuration-editing.i18n.json b/i18n/vscode-language-pack-ko/translations/extensions/vscode.configuration-editing.i18n.json
new file mode 100644
index 0000000000..a2ce48c17b
--- /dev/null
+++ b/i18n/vscode-language-pack-ko/translations/extensions/vscode.configuration-editing.i18n.json
@@ -0,0 +1,77 @@
+{
+ "": [
+ "--------------------------------------------------------------------------------------------",
+ "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."
+ ],
+ "version": "1.0.0",
+ "contents": {
+ "bundle": {
+ "Example": "예제",
+ "Files by Extension": "확장명별 파일",
+ "Files with Extension": "확장명이 있는 파일",
+ "Files with Multiple Extensions": "여러 확장명이 있는 파일",
+ "Files with Path": "경로가 있는 파일",
+ "Files with Siblings by Name": "이름별 형제가 있는 파일",
+ "Folder by Name (Any Location)": "이름별 폴더(모든 위치)",
+ "Folder by Name (Top Level)": "이름별 폴더(최상위)",
+ "Folders with Multiple Names (Top Level)": "이름이 여러 개 있는 폴더(최상위)",
+ "GitHub": "GitHub",
+ "Map all files matching the absolute path glob pattern in their path to the language with the given identifier.": "경로에서 절대 경로 GLOB 패턴과 일치하는 모든 파일을 지정된 ID를 사용하는 언어에 매핑합니다.",
+ "Map all files matching the glob pattern in their filename to the language with the given identifier.": "파일 이름에서 GLOB 패턴과 일치하는 모든 파일을 지정된 ID를 사용하는 언어에 매핑합니다.",
+ "Match a folder with a specific name in any location.": "모든 위치에 있는 특정 이름의 폴더를 일치시킵니다.",
+ "Match a top level folder with a specific name.": "특정 이름의 최상위 폴더를 일치시킵니다.",
+ "Match all files of a specific file extension.": "특정 파일 확장명이 있는 모든 파일을 일치시킵니다.",
+ "Match all files with any of the file extensions.": "파일 확장명이 있는 모든 파일을 일치시킵니다.",
+ "Match files that have siblings with the same name but a different extension.": "동일한 이름의 형제가 있지만 확장명이 다른 파일을 일치시킵니다.",
+ "Match multiple top level folders.": "여러 최상위 폴더를 일치시킵니다.",
+ "The character used by the operating system to separate components in file paths. Is also aliased to '/'.": "운영 체제에서 파일 경로의 구성 요소를 구분하는 데 사용하는 문자입니다. '/'에도 별칭이 지정됩니다.",
+ "The current opened file": "현재 열린 파일",
+ "The current opened file relative to ${workspaceFolder}": "${workspaceFolder}을(를) 기준으로 현재 열려 있는 파일",
+ "The current opened file workspace folder name without any slashes (/)": "슬래시(/)가 없는 현재 열려 있는 파일 작업 영역 폴더 이름",
+ "The current opened file's basename": "현재 열려 있는 파일의 기본 이름",
+ "The current opened file's basename with no file extension": "현재 열려 있는 파일의 기본 이름(파일 확장명 제외)",
+ "The current opened file's dirname": "현재 열려 있는 파일의 dirname",
+ "The current opened file's dirname relative to ${workspaceFolder}": "${workspaceFolder}와 관련된 현재 열린 파일의 dirname",
+ "The current opened file's extension": "현재 열려 있는 파일의 확장명",
+ "The current opened file's folder name": "현재 열려 있는 파일의 폴더 이름",
+ "The current selected line number in the active file": "활성 파일에서 현재 선택된 줄 번호",
+ "The current selected text in the active file": "활성 파일에서 현재 선택된 텍스트",
+ "The file extension of the editor (e.g. txt)": "편집기의 파일 확장명(e.g. txt)",
+ "The file name of the editor without its directory or extension (e.g. myFile)": "디렉터리 또는 확장명을 사용하지 않는 편집기의 파일 이름(예: myFile)",
+ "The name of the default build task. If there is not a single default build task then a quick pick is shown to choose the build task.": "기본 빌드 작업의 이름입니다. 단일 기본 빌드 작업이 없는 경우 빠른 선택이 표시되어 빌드 작업을 선택할 수 있습니다.",
+ "The name of the folder opened in VS Code without any slashes (/)": "VS Code에서 연 폴더의 이름(슬래시(/) 제외)",
+ "The nth parent folder name of the editor": "편집기의 n번째 부모 폴더 이름",
+ "The parent folder name of the editor (e.g. myFileFolder)": "편집기의 부모 폴더 이름(예: myFileFolder)",
+ "The path of the folder opened in VS Code": "VS Code에서 연 폴더의 경로",
+ "The path where an extension is installed.": "확장이 설치된 경로입니다.",
+ "The task runner's current working directory on startup": "시작 시 작업 실행기의 현재 작업 디렉터리",
+ "Use the language of the currently active text editor if any": "현재 활성 텍스트 편집기(있는 경우)의 언어 사용",
+ "a conditional separator (' - ') that only shows when surrounded by variables with values": "값이 있는 변수로 둘러싸인 경우에만 표시되는 조건부 구분 기호 (' - ')",
+ "an indicator for when the active editor has unsaved changes": "활성 편집기에 저장되지 않은 변경 내용이 있는 경우에 대한 표시기",
+ "e.g. SSH": "예: SSH",
+ "e.g. VS Code": "예: VS Code",
+ "file path of the workspace (e.g. /Users/Development/myWorkspace)": "작업 영역 파일 경로(예: /Users/Development/myWorkspace)",
+ "file path of the workspace folder the file is contained in (e.g. /Users/Development/myFolder)": "파일이 포함된 작업 영역 폴더의 파일 경로(예: /Users/Development/myFolder)",
+ "gist": "gist",
+ "name of the workspace folder the file is contained in (e.g. myFolder)": "파일이 포함된 작업 영역 폴더의 이름(예: myFolder)",
+ "name of the workspace with optional remote name and workspace indicator if applicable (e.g. myFolder, myRemoteFolder [SSH] or myWorkspace (Workspace))": "해당되는 경우 선택적인 원격 이름 및 작업 영역 표시기가 있는 작업 영역의 이름(예: myFolder, myRemoteFolder [SSH] 또는 myWorkspace(Workspace))",
+ "shortened name of the workspace without suffixes (e.g. myFolder or myWorkspace)": "접미사가 없는 작업 영역의 단축된 이름(예: myFolder 또는 myWorkspace)",
+ "the file name (e.g. myFile.txt)": "파일 이름(예: myFile.txt)",
+ "the full path of the file (e.g. /Users/Development/myFolder/myFileFolder/myFile.txt)": "파일의 전체 경로(예: /Users/Development/myFolder/myFileFolder/myFile.txt)",
+ "the full path of the folder the file is contained in (e.g. /Users/Development/myFolder/myFileFolder)": "파일이 포함된 폴더의 전체 경로(예: /Users/Development/myFolder/myFileFolder)",
+ "the name of the active branch in the active repository (e.g. main)": "활성 리포지토리의 활성 분기 이름(예: main)",
+ "the name of the active repository (e.g. vscode)": "활성 리포지토리의 이름(예: vscode)",
+ "the name of the folder the file is contained in (e.g. myFileFolder)": "파일이 포함된 폴더의 이름(예: myFileFolder)",
+ "the path of the file relative to the workspace folder (e.g. myFolder/myFileFolder/myFile.txt)": "작업 영역 폴더에 상대적인 파일 경로(예: myFolder/myFileFolder/myFile.txt)",
+ "the path of the folder the file is contained in, relative to the workspace folder (e.g. myFolder/myFileFolder)": "작업 영역 폴더에 상대적인, 파일이 포함된 폴더의 경로(예: myFolder/myFileFolder)",
+ "the state of the active editor (e.g. modified).": "활성 편집기의 상태(예: 수정됨)입니다."
+ },
+ "package": {
+ "description": "설정, 시작 및 확장 추천 파일과 같은 구성 파일에서 기능(고급 IntelliSense, 자동 수정)을 제공합니다.",
+ "displayName": "구성 편집"
+ }
+ }
+}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-ko/translations/extensions/vscode.cpp.i18n.json b/i18n/vscode-language-pack-ko/translations/extensions/vscode.cpp.i18n.json
index d17486e08c..0cabdb2849 100644
--- a/i18n/vscode-language-pack-ko/translations/extensions/vscode.cpp.i18n.json
+++ b/i18n/vscode-language-pack-ko/translations/extensions/vscode.cpp.i18n.json
@@ -9,8 +9,8 @@
"version": "1.0.0",
"contents": {
"package": {
- "displayName": "C/C++ 언어 기본",
- "description": "C/C++ 파일에서 코드 조각, 구문 강조 표시, 괄호 일치 및 접기를 제공합니다."
+ "description": "C/C++ 파일에서 코드 조각, 구문 강조 표시, 괄호 일치 및 접기를 제공합니다.",
+ "displayName": "C/C++ 언어 기본"
}
}
}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-ko/translations/extensions/vscode.csharp.i18n.json b/i18n/vscode-language-pack-ko/translations/extensions/vscode.csharp.i18n.json
index d9e87e4367..9cdaced0ab 100644
--- a/i18n/vscode-language-pack-ko/translations/extensions/vscode.csharp.i18n.json
+++ b/i18n/vscode-language-pack-ko/translations/extensions/vscode.csharp.i18n.json
@@ -9,8 +9,8 @@
"version": "1.0.0",
"contents": {
"package": {
- "displayName": "C# 언어 기본",
- "description": "C# 파일에서 코드 조각, 구문 강조 표시, 괄호 일치 및 접기를 제공합니다."
+ "description": "C# 파일에서 코드 조각, 구문 강조 표시, 괄호 일치 및 접기를 제공합니다.",
+ "displayName": "C# 언어 기본"
}
}
}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-ko/translations/extensions/vscode.css-language-features.i18n.json b/i18n/vscode-language-pack-ko/translations/extensions/vscode.css-language-features.i18n.json
new file mode 100644
index 0000000000..10e96dbbf7
--- /dev/null
+++ b/i18n/vscode-language-pack-ko/translations/extensions/vscode.css-language-features.i18n.json
@@ -0,0 +1,368 @@
+{
+ "": [
+ "--------------------------------------------------------------------------------------------",
+ "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."
+ ],
+ "version": "1.0.0",
+ "contents": {
+ "bundle": {
+ "\"store\" a boolean test for later evaluation in a guard or if().": "나중에 가드 또는 if()에서 평가하기 위한 부울 테스트를 \"저장\"합니다.",
+ "'from' expected": "'from' 필요",
+ "'in' expected": "'in' 필요",
+ "'through' or 'to' expected": "'through' 또는 'to' 필요",
+ "'{0}'": "'{0}'",
+ "( expected": "( 필요",
+ ") expected": ") 필요",
+ "": "",
+ "@font-face": "@font-face",
+ "@font-face rule must define 'src' and 'font-family' properties": "@font-face 규칙은 'src' 및 'font-family' 속성을 정의해야 함",
+ "@keyframes {0}": "@keyframes {0}",
+ "A list of properties that are not validated against the `unknownProperties` rule.": "`unknownProperties` 규칙에 따라 유효성이 검사되지 않은 속성 목록입니다.",
+ "Adds quotes to a string.": "문자열에 따옴표를 추가합니다.",
+ "Also define the standard property '{0}' for compatibility": "호환성을 위해 표준 속성 '{0}'도 정의",
+ "Always define standard rule '@keyframes' when defining keyframes.": "키프레임을 정의할 때 항상 표준 규칙 '@keyframes'를 정의합니다.",
+ "Always include all vendor specific properties: Missing: {0}": "항상 모든 공급업체별 속성 포함: 누락: {0}",
+ "Always include all vendor specific rules: Missing: {0}": "항상 모든 공급업체별 규칙 포함: 누락: {0}",
+ "Appends a single value onto the end of a list.": "목록의 끝에 단일 값을 추가합니다.",
+ "Appends selectors to one another without spaces in between.": "사이에 공백 없이 선택자를 서로 추가합니다.",
+ "Avoid using !important. It is an indication that the specificity of the entire CSS has gotten out of control and needs to be refactored.": "!important는 사용하지 않도록 합니다. 이것은 전체 CSS의 특수성이 통제되지 않아 리팩터링해야 함을 나타냅니다.",
+ "Avoid using 'float'. Floats lead to fragile CSS that is easy to break if one aspect of the layout changes.": "'float'를 사용하지 않도록 합니다. Float를 사용하면 레이아웃의 한쪽이 바뀔 경우 CSS가 쉽게 깨질 수 있습니다.",
+ "CSS Language Server": "CSS 언어 서버",
+ "CSS fix is outdated and can't be applied to the document.": "CSS 수정이 오래되어 문서에 적용할 수 없습니다.",
+ "Causes one or more rules to be emitted at the root of the document.": "하나 이상의 규칙이 문서의 루트에서 내보내지도록 합니다.",
+ "Changes one or more properties of a color.": "색상의 하나 이상의 속성을 변경합니다.",
+ "Changes the alpha component for a color.": "색의 알파 구성 요소를 변경합니다.",
+ "Changes the hue of a color.": "색의 색상을 변경합니다.",
+ "Combines several lists into a single multidimensional list.": "여러 목록을 하나의 다차원 목록으로 결합합니다.",
+ "Converts a color into the format understood by IE filters.": "색을 IE 필터에서 이해하는 형식으로 변환합니다.",
+ "Converts a color to grayscale.": "색을 회색조로 변환합니다.",
+ "Converts a string to lower case.": "문자열을 소문자로 변환합니다.",
+ "Converts a string to upper case.": "문자열을 대문자로 변환합니다.",
+ "Converts a unitless number to a percentage.": "단위 없는 숫자를 백분율로 변환합니다.",
+ "Creates a Color from hue, saturation, and lightness values.": "색상, 채도 및 밝기 값으로 색을 만듭니다.",
+ "Creates a Color from hue, saturation, lightness, and alpha values.": "색상, 채도, 밝기 및 알파 값으로 색을 만듭니다.",
+ "Creates a Color from hue, white, and black values.": "색상, 흰색 및 검은색 값으로 색을 만듭니다.",
+ "Creates a Color from lightness, a, and b values.": "밝기, a 및 b 값으로 색을 만듭니다.",
+ "Creates a Color from lightness, chroma, and hue values.": "밝기, 색 및 색상 값에서 색을 만듭니다.",
+ "Creates a Color from red, green, and blue values.": "빨간색, 녹색 및 파란색 값으로 색을 만듭니다.",
+ "Creates a Color from red, green, blue, and alpha values.": "빨간색, 녹색, 파란색 및 알파 값으로 색을 만듭니다.",
+ "Creates a Color from the hue, saturation, and lightness values of another Color.": "다른 색의 색상, 채도 및 밝기 값에서 색을 만듭니다.",
+ "Creates a Color from the hue, white, and black values of another Color.": "다른 색의 색상, 흰색 및 검은색 값으로 색을 만듭니다.",
+ "Creates a Color from the lightness, a, and b values of another Color.": "다른 색의 밝기, a 및 b 값으로 색을 만듭니다.",
+ "Creates a Color from the lightness, chroma, and hue values of another Color.": "다른 색의 밝기, 색 및 색상 값으로 색을 만듭니다.",
+ "Creates a Color from the red, green, and blue values of another Color.": "다른 색의 빨간색, 녹색 및 파란색 값으로 색을 만듭니다.",
+ "Creates a Color in a specific color space from red, green, and blue values.": "빨간색, 녹색 및 파란색 값으로 특정 색 공간에 색을 만듭니다.",
+ "Creates a Color in a specific color space from the red, green, and blue values of another Color.": "다른 색의 빨강, 녹색 및 파랑 값에서 특정 색 공간에 색을 만듭니다.",
+ "Defines complex operations that can be re-used throughout stylesheets.": "스타일시트 전체에서 재사용할 수 있는 복잡한 작업을 정의합니다.",
+ "Defines styles that can be re-used throughout the stylesheet with `@include`.": "'@include'을 사용하여 스타일시트 전체에서다시 사용할 수 있는 스타일을 정의합니다.",
+ "Do not use duplicate style definitions": "중복된 스타일 정의를 사용하지 말 것",
+ "Do not use empty rulesets": "빈 규칙 집합 사용 금지",
+ "Do not use width or height when using padding or border": "패딩 또는 테두리를 사용하는 경우 너비 또는 높이를 사용하지 마세요.",
+ "Dynamically calls a Sass function.": "Sass 함수를 동적으로 호출합니다.",
+ "Each loop that sets `$var` to each item in the list or map, then outputs the styles it contains using that value of `$var`.": "목록 또는 맵의 각 항목에 `$var`를 설정한 다음 `$var` 값을 사용하여 포함된 스타일을 출력하는 각 루프.",
+ "Exposes the details of Sass’s inner workings.": "Sass의 내부 작업에 대한 세부 정보를 공개합니다.",
+ "Extends $extendee with $extender within $selector.": "$selector 내에서 $extender로 $extendee를 확장합니다.",
+ "Extracts a substring from $string.": "$string에서 substring을 추출합니다.",
+ "Failed to apply CSS fix to the document. Please consider opening an issue with steps to reproduce.": "문서에 CSS 수정 사항을 적용하지 못했습니다. 단계별 실행으로 재현하여 문제를 여는 것이 좋습니다.",
+ "Finds the maximum of several numbers.": "여러 숫자의 최대값을 찾습니다.",
+ "Finds the minimum of several numbers.": "여러 숫자의 최소값을 찾습니다.",
+ "Fluidly scales one or more properties of a color.": "색의 한 개 이상의 속성을 유동적으로 조정합니다.",
+ "Folding Region End": "접기 영역 끝",
+ "Folding Region Start": "접는 영역 시작",
+ "For loop that repeatedly outputs a set of styles for each `$var` in the `from/through` or `from/to` clause.": "`from/through` 또는 `from/to` 절에서 각 `$var`에 대한 스타일 세트를 반복적으로 출력하는 For 루프입니다.",
+ "Generates new colors based on existing ones, making it easy to build color themes.": "기존 색을 기반으로 새 색을 생성하여 색 테마를 쉽게 빌드할 수 있습니다.",
+ "Gets the blue component of a color.": "색의 파란색 구성 요소를 가져옵니다.",
+ "Gets the green component of a color.": "색상의 녹색 구성 요소를 가져옵니다.",
+ "Gets the hue component of a color.": "색의 색상 구성 요소를 가져옵니다.",
+ "Gets the lightness component of a color.": "색의 밝기 구성 요소를 가져옵니다.",
+ "Gets the opacity component of a color.": "색의 불투명도 구성 요소를 가져옵니다.",
+ "Gets the red component of a color.": "색상의 빨간색 구성 요소를 가져옵니다.",
+ "Gets the saturation component of a color.": "색의 채도 구성 요소를 가져옵니다.",
+ "Hex colors must consist of three, four, six or eight hex numbers": "16진수 색은 3, 4, 6 또는 8개의 16진수 숫자로 구성되어야 함",
+ "IE hacks are only necessary when supporting IE7 and older": "IE 핵(HACK)은 IE7 이상을 지원할 때만 필요",
+ "Import statements do not load in parallel": "Import 문은 병렬로 로드되지 않음",
+ "Includes the body if the expression does not evaluate to `false` or `null`.": "식이 'false' 또는 'null'로 평가되지 않는 경우 본문을 포함합니다.",
+ "Includes the styles defined by another mixin into the current rule.": "다른 mixin에서 정의한 스타일을 현재 규칙에 포함합니다.",
+ "Increases or decreases one or more components of a color.": "색의 구성 요소 하나 이상을 늘리거나 줄입니다.",
+ "Inherits the styles of another selector.": "다른 선택기의 스타일을 상속합니다.",
+ "Insert url() Function": "url() 함수 삽입",
+ "Insert url() Functions": "url() 함수 삽입",
+ "Inserts $insert into $string at $index.": "$insert를 $index의 $string에 삽입합니다.",
+ "Invalid number of parameters": "잘못된 매개 변수 개수",
+ "Joins together two lists into one.": "두 목록을 하나로 결합합니다.",
+ "Lets you access and modify values in lists.": "목록의 값에 액세스하고 수정할 수 있습니다.",
+ "Loads a Sass stylesheet and makes its mixins, functions, and variables available when this stylesheet is loaded with the @use rule.": "Sass 스타일시트를 로드하고, 이 스타일시트가 @use 규칙과 함께 로드될 때 해당 mixin, 함수, 변수를 사용할 수 있게 합니다.",
+ "Loads mixins, functions, and variables from other Sass stylesheets as 'modules', and combines CSS from multiple stylesheets together.": "다른 Sass 스타일시트의 mixin, 함수 및 변수를 '모듈'로 로드하고 여러 스타일시트의 CSS를 함께 결합합니다.",
+ "Makes a color darker.": "색상을 더 어둡게 만듭니다.",
+ "Makes a color less saturated.": "색을 채도를 낮춥니다.",
+ "Makes a color lighter.": "색을 더 밝게 만듭니다.",
+ "Makes a color more opaque.": "색을 더 불투명하게 만듭니다.",
+ "Makes a color more saturated.": "색의 채도를 높입니다.",
+ "Makes a color more transparent.": "색상을 더 투명하게 만듭니다.",
+ "Makes it easy to combine, search, or split apart strings.": "문자열을 쉽게 결합, 검색 또는 분할합니다.",
+ "Makes it possible to look up the value associated with a key in a map, and much more.": "맵에서 키와 관련된 값 등을 조회할 수 있습니다.",
+ "Merges two maps together into a new map.": "두 맵을 하나의 새 맵으로 병합합니다.",
+ "Mix two colors together in a polar color space.": "극좌표 색 공간에서 두 색을 함께 섞습니다.",
+ "Mix two colors together in a rectangular color space.": "사각형 색 공간에서 두 색을 함께 섞습니다.",
+ "Mixes two colors together.": "두 색을 혼합합니다.",
+ "Nests selector beneath one another like they would be nested in the stylesheet.": "스타일시트에 중첩되는 것처럼 선택기를 서로 중첩합니다.",
+ "No unit for zero needed": "영점 단위 필요 없음",
+ "Parses a selector into the format returned by &.": "선택기를 &에서 반환한 형식으로 구문 분석합니다.",
+ "Prints the value of an expression to the standard error output stream. Useful for debugging complicated Sass files.": "식의 값을 표준 오류 출력 스트림에 인쇄합니다. 복잡한 Sass 파일을 디버깅하는 데 유용합니다.",
+ "Prints the value of an expression to the standard error output stream. Useful for libraries that need to warn users of deprecations or recovering from minor mixin usage mistakes. Warnings can be turned off with the `--quiet` command-line option or the `:quiet` Sass option.": "식의 값을 표준 오류 출력 스트림에 인쇄합니다. 사용자에게 사용 중단을 경고하거나 사소한 mixin 사용 실수로부터 복구해야 하는 라이브러리에 유용합니다. 경고는 '--quiet' 명령줄 옵션 또는 ':quiet' Sass 옵션을 사용하여 끌 수 있습니다.",
+ "Property is ignored due to the display.": "display로 인해 속성이 무시됩니다.",
+ "Property is ignored due to the display. With 'display: block', vertical-align should not be used.": "display로 인해 속성이 무시됩니다. 'display: block'에서 vertical-align을 사용할 수 없습니다.",
+ "Provides access to Sass’s powerful selector engine.": "Sass의 강력한 선택기 엔진에 대한 액세스를 제공합니다.",
+ "Provides functions that operate on numbers.": "숫자에서 작동하는 함수를 제공합니다.",
+ "Removes quotes from a string.": "문자열에서 따옴표를 제거합니다.",
+ "Rename to '{0}'": "'{0}'(으)로 이름 바꾸기",
+ "Replaces $original with $replacement within $selector.": "$selector 내에서 $original을(를) $replacement(으)로 바꿉니다.",
+ "Replaces the nth item in a list.": "목록의 n번째 항목을 바꿉니다.",
+ "Returns a list of all keys in a map.": "맵의 모든 키 목록을 반환합니다.",
+ "Returns a list of all values in a map.": "맵의 모든 값 목록을 반환합니다.",
+ "Returns a new map with keys removed.": "키가 제거된 새 맵을 반환합니다.",
+ "Returns a random number.": "임의의 수를 반환합니다.",
+ "Returns a specific item in a list.": "목록의 특정 항목을 반환합니다.",
+ "Returns the absolute value of a number.": "숫자의 절대 값을 반환합니다.",
+ "Returns the complement of a color.": "색상의 보색을 반환합니다.",
+ "Returns the index of the first occurance of $substring in $string.": "$string에서 $substring이 처음 나타나는 인덱스를 반환합니다.",
+ "Returns the inverse of a color.": "색의 정반대 값을 반환합니다.",
+ "Returns the keywords passed to a function that takes variable arguments.": "가변 인수를 사용하는 함수에 전달된 키워드를 반환합니다.",
+ "Returns the length of a list.": "목록의 길이를 반환합니다.",
+ "Returns the number of characters in a string.": "문자열의 문자 수를 반환합니다.",
+ "Returns the position of a value within a list.": "목록 내 값 위치를 반환합니다.",
+ "Returns the separator of a list.": "목록의 구분 기호를 반환합니다.",
+ "Returns the simple selectors that comprise a compound selector.": "복합 선택자를 구성하는 단순 선택자를 반환합니다.",
+ "Returns the string representation of a value as it would be represented in Sass.": "Sass에 표현되는 대로의 값 문자열 표현을 반환합니다.",
+ "Returns the type of a value.": "값의 유형을 반환합니다.",
+ "Returns the unit(s) associated with a number.": "숫자와 연관된 단위를 반환합니다.",
+ "Returns the value in a map associated with a given key.": "지정된 키와 연결된 맵의 값을 반환합니다.",
+ "Returns whether $super matches all the elements $sub does, and possibly more.": "$super이(가) $sub가 일치하는 모든 요소 또는 더 많은 요소와 일치하는지 여부를 반환합니다.",
+ "Returns whether a feature exists in the current Sass runtime.": "현재 Sass 런타임에 기능이 있는지 여부를 반환합니다.",
+ "Returns whether a function with the given name exists.": "주어진 이름의 함수가 존재하는지 여부를 반환합니다.",
+ "Returns whether a map has a value associated with a given key.": "맵에 지정된 키와 연결된 값이 있는지 여부를 반환합니다.",
+ "Returns whether a mixin with the given name exists.": "지정된 이름의 mixin이 존재하는지 여부를 반환합니다.",
+ "Returns whether a number has units.": "숫자에 단위가 있는지 여부를 반환합니다.",
+ "Returns whether a variable with the given name exists in the current scope.": "지정된 이름의 변수가 현재 범위에 있는지 여부를 반환합니다.",
+ "Returns whether a variable with the given name exists in the global scope.": "지정된 이름의 변수가 전체 범위에 있는지 여부를 반환합니다.",
+ "Returns whether two numbers can be added, subtracted, or compared.": "두 숫자를 더하거나, 빼거나, 비교할 수 있는지 여부를 반환합니다.",
+ "Rounds a number down to the previous whole number.": "숫자를 바로 아래 정수로 버림합니다.",
+ "Rounds a number to the nearest whole number.": "숫자를 가장 가까운 정수로 반올림합니다.",
+ "Rounds a number up to the next whole number.": "이 숫자를 바로 위 정수로 올림합니다.",
+ "Sass documentation": "Sass 설명서",
+ "Selector Specificity": "선택기 특이성",
+ "Selectors should not contain IDs because these rules are too tightly coupled with the HTML.": "이러한 규칙은 HTML과 긴밀하게 결합되므로 선택기에 ID를 포함하면 안 됩니다.",
+ "The universal selector (*) is known to be slow": "범용 선택기(*)는 느린 것으로 알려져 있습니다.",
+ "Throws the value of an expression as a fatal error with stack trace. Useful for validating arguments to mixins and functions.": "스택 추적으로 식 값을 치명적 오류로 throw합니다. mixin과 함수에 대한 인수의 유효성을 검사하는 데 유용합니다.",
+ "URI expected": "URI 필요",
+ "URL encodes a string": "URL은 문자열을 인코딩",
+ "Unifies two selectors to produce a selector that matches elements matched by both.": "두 선택기를 통합하여 이 둘 다와 일치하는 요소와 일치되는 선택기를 생성합니다.",
+ "Unknown at-rule.": "알 수 없는 @ 규칙 입니다.",
+ "Unknown property.": "알 수 없는 속성입니다.",
+ "Unknown property: '{0}'": "알 수 없는 속성: '{0}'",
+ "Unknown vendor specific property.": "알 수 없는 공급업체 관련 속성입니다.",
+ "When using a vendor-specific prefix also include the standard property": "공급업체별 접두사를 사용할 경우 표준 속성도 포함",
+ "When using a vendor-specific prefix make sure to also include all other vendor-specific properties": "공급업체별 접두사를 사용할 경우 다른 모든 공급업체별 속성도 포함해야 함",
+ "While loop that takes an expression and repeatedly outputs the nested styles until the statement evaluates to `false`.": "식을 사용하고 명령문이 'false'로 평가될 때까지 중첩된 스타일을 반복적으로 출력하는 While 루프입니다.",
+ "[ expected": "[ 필요",
+ "] expected": "] 필요",
+ "absolute value of a number": "숫자의 절대 값",
+ "arccosine - inverse of cosine function": "arccosine - 코사인 함수의 역함수",
+ "arcsine - inverse of sine function": "아크사인 - 사인 함수의 역함수",
+ "arctangent - inverse of tangent function": "아크탄젠트 - 탄젠트 함수의 역함수",
+ "argument from '{0}'": "'{0}'의 인수",
+ "at-rule or selector expected": "@ 규칙 또는 선택기 필요",
+ "at-rule unknown": "@ 규칙 알 수 없음",
+ "bind the evaluation of a ruleset to each member of a list.": "규칙 집합의 평가를 목록의 각 구성원에 바인딩합니다.",
+ "calculates square root of a number": "숫자의 제곱근 계산",
+ "colon expected": "결장 예상",
+ "comma expected": "쉼표 필요",
+ "condition expected": "조건 필요",
+ "converts numbers from one type into another": "숫자를 한 유형에서 다른 유형으로 변환",
+ "converts to a %, e.g. 0.5 > 50%": "%로 변환(예: 0.5 > 50%)",
+ "cosine function": "코사인 함수",
+ "creates a #AARRGGBB": "#AARRGGBB를 만듦",
+ "creates a color": "색을 만듦",
+ "css.builtin.lab": "css.builtin.lab",
+ "dot expected": "점 필요",
+ "escape string content": "이스케이프 문자열 콘텐츠",
+ "expression expected": "식 필요",
+ "first argument modulus second argument": "첫 번째 인수를 두 번째 인수로 나눈 나머지",
+ "first argument raised to the power of the second argument": "첫 번째 인수는 두 번째 인수의 거듭제곱",
+ "generate a list spanning a range of values": "값 범위에 걸친 목록 생성",
+ "identifier expected": "식별자 필요",
+ "identifier or variable expected": "식별자 또는 변수 필요",
+ "identifier or wildcard expected": "식별자 또는 와일드카드가 필요합니다.",
+ "inline-block is ignored due to the float. If 'float' has a value other than 'none', the box is floated and 'display' is treated as 'block'": "inline-block은 float로 인해 무시됩니다. 'float'에 'none' 이외의 값이 있는 경우 상자가 표시되고 'display'가 'block'으로 처리됩니다.",
+ "inlines a resource and falls back to `url()`": "리소스를 인라인하고 'url()'로 대체",
+ "media query expected": "미디어 쿼리 필요",
+ "number expected": "숫자 필요",
+ "operator expected": "연산자 필요",
+ "page directive or declaraton expected": "페이지 지시문 또는 선언 필요",
+ "parses a string to a color": "문자열을 색으로 구문 분석",
+ "percentage expected": "백분율 필요",
+ "property value expected": "속성 값 필요",
+ "remove or change the unit of a dimension": "차원의 단위를 제거 또는 변경",
+ "return `@color` 10% points darker": "`@color` 10% 포인트 더 어둡게 반환",
+ "return `@color` 10% points less saturated": "`@color` 채도를 10% 포인트 낮추어 반환",
+ "return `@color` 10% points less transparent": "`@color`를 10% 포인트 덜 투명하게 반환",
+ "return `@color` 10% points lighter": "`@color`를 10% 포인트 더 밝게 반환",
+ "return `@color` 10% points more saturated": "`@color`의 채도를 10% 포인트 높여서 반환",
+ "return `@color` 10% points more transparent": "`@color`를 10% 포인트 더 투명하게 반환",
+ "return `@color` with 50% transparency": "`@color`를 50% 투명도로 반환",
+ "return `@color` with a 10 degree larger in hue": "`@color`의 색상을 10도 더 크게 반환",
+ "return `@darkcolor` if `@color1 is> 43% luma` otherwise return `@lightcolor`, see notes": "`@color1이 > 43% luma`인 경우 `@darkcolor`를 반환하고 그렇지 않으면 `@lightcolor`를 반환합니다. 참고 사항을 참조하세요.",
+ "return a mix of `@color1` and `@color2`": "`@color1` 및 `@color2`의 혼합 반환",
+ "returns a grey, 100% desaturated color": "100% 채도를 낮춘 색인 회색을 반환",
+ "returns a value at the specified position in the list": "목록에서 지정한 위치에 있는 값 반환",
+ "returns one of two values depending on a condition.": "조건에 따라 두 값 중 하나를 반환합니다.",
+ "returns pi": "pi 반환",
+ "returns the `alpha` channel of `@color`": "`@color`의 `alpha` 채널 반환",
+ "returns the `blue` channel of `@color`": "`@color`의 `blue` 채널 반환",
+ "returns the `green` channel of `@color`": "`@color`의 `green` 채널 반환",
+ "returns the `hue` channel of `@color` in the HSL space": "HSL 공간에서 `@color`의 `hue` 채널을 반환",
+ "returns the `hue` channel of `@color` in the HSV space": "HSV 공간에서 `@color`의 `hue` 채널을 반환합니다.",
+ "returns the `lightness` channel of `@color` in the HSL space": "HSL 공간에서 `@color`의 `lightness` 채널 반환",
+ "returns the `luma` value (perceptual brightness) of `@color`": "'@color'의 'luma' 값(인지되는 밝기)을 반환",
+ "returns the `red` channel of `@color`": "`@color`의 `red` 채널 반환",
+ "returns the `saturation` channel of `@color` in the HSL space": "HSL 공간에서 `@color`의 `saturation` 채널을 반환합니다.",
+ "returns the `saturation` channel of `@color` in the HSV space": "HSV 공간에서 `@color`의 `saturation` 채널 반환",
+ "returns the `value` channel of `@color` in the HSV space": "HSV 공간에서 `@color`의 `value` 채널을 반환합니다.",
+ "returns the lowest of one or more values": "하나 이상의 값 중 최저값 반환",
+ "returns the number of elements in a value list": "값 목록의 요소 수를 반환합니다.",
+ "rounds a number to a number of places": "숫자를 특정 자리수까지 반올림",
+ "rounds down to an integer": "정수로 내림합니다.",
+ "rounds up to an integer": "정수로 반올림",
+ "selector expected": "선택기 필요",
+ "semi-colon expected": "세미콜론 필요",
+ "sine function": "사인 함수",
+ "string literal expected": "문자열 리터럴 필요",
+ "string replace": "문자열 바꾸기",
+ "tangent function": "탄젠트 함수",
+ "term expected": "용어 필요",
+ "unknown keyword": "알 수 없는 키워드",
+ "uri or string expected": "URI 또는 문자열 필요",
+ "variable name expected": "변수 이름 필요",
+ "variable value expected": "변수 값 예상",
+ "whitespace expected": "공백 필요",
+ "wildcard expected": "와일드카드 필요",
+ "{ expected": "{ 필요",
+ "{0}, '{1}'": "{0}, '{1}'",
+ "} expected": "} 필요"
+ },
+ "package": {
+ "css.colorDecorators.enable.deprecationMessage": "`css.colorDecorators.enable` 설정은 `editor.colorDecorators`를 위해 사용되지 않습니다.",
+ "css.completion.completePropertyWithSemicolon.desc": "CSS 속성을 완료할 때 줄의 끝에 세미콜론을 삽입합니다.",
+ "css.completion.triggerPropertyValueCompletion.desc": "기본적으로 VS Code는 CSS 속성을 선택한 후 속성 값 완료를 트리거합니다. 이 동작을 비활성화하려면 이 설정을 사용합니다.",
+ "css.customData.desc": "[사용자 지정 데이터 형식](https://github.com/microsoft/vscode-css-languageservice/blob/master/docs/customData.md)에 따라 JSON 파일을 가리키는 상대 파일 경로의 목록입니다.\r\n\r\nVS Code는 시작 시 사용자 지정 데이터를 로드하여 JSON 파일에서 지정한 CSS 사용자 지정 속성(변수), at-rules, 의사 클래스 및 의사 요소에 대한 CSS 지원을 향상시킵니다.\r\n\r\n파일 경로는 작업 영역에 상대적이며 작업 영역 폴더 설정만 고려됩니다.",
+ "css.format.braceStyle.desc": "규칙(`collapse`)과 동일한 줄에 중괄호를 배치하거나 자체 줄(`expand`)에 중괄호를 배치합니다.",
+ "css.format.enable.desc": "기본 CSS 포맷터를 활성화/비활성화합니다.",
+ "css.format.maxPreserveNewLines.desc": "`#css.format.preserveNewLines#`을(를) 사용하는 경우 한 청크에서 보존할 최대 줄 바꿈 수입니다.",
+ "css.format.newlineBetweenRules.desc": "규칙 집합을 빈 줄로 구분합니다.",
+ "css.format.newlineBetweenSelectors.desc": "선택기를 새 줄로 구분합니다.",
+ "css.format.preserveNewLines.desc": "규칙 및 선언 전에 기존 줄 바꿈을 유지해야 하는지 여부입니다.",
+ "css.format.spaceAroundSelectorSeparator.desc": "선택기 구분 기호 '>', '+', '~' 주위에 공백 문자가 있는지 확인합니다(예: 'a > b').",
+ "css.hover.documentation": "CSS 가리키기에서 속성 및 값 설명서를 표시합니다.",
+ "css.hover.references": "CSS 호버에 MDN에 대한 참조를 표시합니다.",
+ "css.lint.argumentsInColorFunction.desc": "매개 변수 개수가 잘못되었습니다.",
+ "css.lint.boxModel.desc": "'padding' 또는 'border'를 사용하는 경우 'width' 또는 'height'를 사용하지 마세요.",
+ "css.lint.compatibleVendorPrefixes.desc": "공급업체 관련 접두사를 사용할 경우 다른 모든 공급업체 관련 속성도 포함합니다.",
+ "css.lint.duplicateProperties.desc": "중복된 스타일 정의를 사용하지 마세요.",
+ "css.lint.emptyRules.desc": "빈 규칙 집합을 사용하지 마세요.",
+ "css.lint.float.desc": "'float'를 사용하지 않도록 합니다. Float를 사용하면 레이아웃의 한쪽이 바뀔 경우 CSS가 쉽게 깨질 수 있습니다.",
+ "css.lint.fontFaceProperties.desc": "`@font-face` 규칙에서 'src' 및 'font-family' 속성을 정의해야 합니다.",
+ "css.lint.hexColorLength.desc": "16진수 색상은 3, 4, 6 또는 8진수로 구성되어야 합니다.",
+ "css.lint.idSelector.desc": "이러한 규칙은 HTML과 긴밀하게 결합되므로 선택기에 ID를 포함하면 안 됩니다.",
+ "css.lint.ieHack.desc": "IE 핵(Hack)은 IE7 이상을 지원할 때만 필요합니다.",
+ "css.lint.importStatement.desc": "Import 문은 병렬로 로드되지 않습니다.",
+ "css.lint.important.desc": "'!important'는 사용하지 않도록 합니다. 이것은 전체 CSS의 특정성에 문제가 있어서 리팩터링해야 함을 나타냅니다.",
+ "css.lint.propertyIgnoredDueToDisplay.desc": "display 때문에 속성이 무시됩니다. 예를 들어 'display: inline'을 사용할 경우 'width', 'height', 'margin-top', 'margin-bottom' 및 'float' 속성은 적용되지 않습니다.",
+ "css.lint.universalSelector.desc": "범용 선택기(*)는 느린 것으로 알려져 있습니다.",
+ "css.lint.unknownAtRules.desc": "알 수 없는 @ 규칙 입니다.",
+ "css.lint.unknownProperties.desc": "알 수 없는 속성입니다.",
+ "css.lint.unknownVendorSpecificProperties.desc": "알 수 없는 공급업체 관련 속성입니다.",
+ "css.lint.validProperties.desc": "`unknownProperties` 규칙에 따라 유효성이 검사되지 않은 속성 목록입니다.",
+ "css.lint.vendorPrefix.desc": "공급업체 관련 접두사를 사용할 경우 표준 속성도 포함합니다.",
+ "css.lint.zeroUnits.desc": "0에는 단위가 필요하지 않습니다.",
+ "css.title": "CSS",
+ "css.trace.server.desc": "VS Code와 CSS 언어 서버 간 통신을 추적합니다.",
+ "css.validate.desc": "모든 유효성 검사를 사용하거나 사용하지 않습니다.",
+ "css.validate.title": "CSS 유효성 검사 및 문제 심각도를 제어합니다.",
+ "description": "CSS, LESS 및 SCSS 파일에 대한 다양한 언어 지원을 제공합니다.",
+ "displayName": "CSS 언어 기능",
+ "less.colorDecorators.enable.deprecationMessage": "`less.colorDecorators.enable` 설정은 `editor.colorDecorators`를 위해 사용되지 않습니다.",
+ "less.completion.completePropertyWithSemicolon.desc": "CSS 속성을 완료할 때 줄의 끝에 세미콜론을 삽입합니다.",
+ "less.completion.triggerPropertyValueCompletion.desc": "기본적으로 VS Code는 CSS 속성을 선택한 후 속성 값 완료를 트리거합니다. 이 동작을 비활성화하려면 이 설정을 사용합니다.",
+ "less.format.braceStyle.desc": "규칙(`collapse`)과 동일한 줄에 중괄호를 배치하거나 자체 줄(`expand`)에 중괄호를 배치합니다.",
+ "less.format.enable.desc": "기본 LESS 포맷터를 활성화/비활성화합니다.",
+ "less.format.maxPreserveNewLines.desc": "`#less.format.preserveNewLines#`을(를) 사용하는 경우 한 청크에서 보존할 최대 줄 바꿈 수입니다.",
+ "less.format.newlineBetweenRules.desc": "규칙 집합을 빈 줄로 구분합니다.",
+ "less.format.newlineBetweenSelectors.desc": "선택기를 새 줄로 구분합니다.",
+ "less.format.preserveNewLines.desc": "규칙 및 선언 전에 기존 줄 바꿈을 유지해야 하는지 여부입니다.",
+ "less.format.spaceAroundSelectorSeparator.desc": "선택기 구분 기호 '>', '+', '~' 주위에 공백 문자가 있는지 확인합니다(예: 'a > b').",
+ "less.hover.documentation": "LESS 가리키기에서 속성 및 값 설명서를 표시합니다.",
+ "less.hover.references": "LESS 호버에 MDN에 대한 참조를 표시합니다.",
+ "less.lint.argumentsInColorFunction.desc": "매개 변수 개수가 잘못되었습니다.",
+ "less.lint.boxModel.desc": "'padding' 또는 'border'를 사용하는 경우 'width' 또는 'height'를 사용하지 마세요.",
+ "less.lint.compatibleVendorPrefixes.desc": "공급업체 관련 접두사를 사용할 경우 다른 모든 공급업체 관련 속성도 포함합니다.",
+ "less.lint.duplicateProperties.desc": "중복된 스타일 정의를 사용하지 마세요.",
+ "less.lint.emptyRules.desc": "빈 규칙 집합을 사용하지 마세요.",
+ "less.lint.float.desc": "'float'를 사용하지 않도록 합니다. Float를 사용하면 레이아웃의 한쪽이 바뀔 경우 CSS가 쉽게 깨질 수 있습니다.",
+ "less.lint.fontFaceProperties.desc": "`@font-face` 규칙에서 'src' 및 'font-family' 속성을 정의해야 합니다.",
+ "less.lint.hexColorLength.desc": "16진수 색상은 3, 4, 6 또는 8진수로 구성되어야 합니다.",
+ "less.lint.idSelector.desc": "이러한 규칙은 HTML과 긴밀하게 결합되므로 선택기에 ID를 포함하면 안 됩니다.",
+ "less.lint.ieHack.desc": "IE 핵(Hack)은 IE7 이상을 지원할 때만 필요합니다.",
+ "less.lint.importStatement.desc": "Import 문은 병렬로 로드되지 않습니다.",
+ "less.lint.important.desc": "'!important'는 사용하지 않도록 합니다. 이것은 전체 CSS의 특정성에 문제가 있어서 리팩터링해야 함을 나타냅니다.",
+ "less.lint.propertyIgnoredDueToDisplay.desc": "display 때문에 속성이 무시됩니다. 예를 들어 'display: inline'을 사용할 경우 'width', 'height', 'margin-top', 'margin-bottom' 및 'float' 속성은 적용되지 않습니다.",
+ "less.lint.universalSelector.desc": "범용 선택기(*)는 느린 것으로 알려져 있습니다.",
+ "less.lint.unknownAtRules.desc": "알 수 없는 @ 규칙 입니다.",
+ "less.lint.unknownProperties.desc": "알 수 없는 속성입니다.",
+ "less.lint.unknownVendorSpecificProperties.desc": "알 수 없는 공급업체 관련 속성입니다.",
+ "less.lint.validProperties.desc": "`unknownProperties` 규칙에 따라 유효성이 검사되지 않은 속성 목록입니다.",
+ "less.lint.vendorPrefix.desc": "공급업체 관련 접두사를 사용할 경우 표준 속성도 포함합니다.",
+ "less.lint.zeroUnits.desc": "0에는 단위가 필요하지 않습니다.",
+ "less.title": "LESS",
+ "less.validate.desc": "모든 유효성 검사를 사용하거나 사용하지 않습니다.",
+ "less.validate.title": "LESS 유효성 검사 및 문제 심각도를 제어합니다.",
+ "scss.colorDecorators.enable.deprecationMessage": "`scss.colorDecorators.enable` 설정은 `editor.colorDecorators`를 위해 사용되지 않습니다.",
+ "scss.completion.completePropertyWithSemicolon.desc": "CSS 속성을 완료할 때 줄의 끝에 세미콜론을 삽입합니다.",
+ "scss.completion.triggerPropertyValueCompletion.desc": "기본적으로 VS Code는 CSS 속성을 선택한 후 속성 값 완료를 트리거합니다. 이 동작을 비활성화하려면 이 설정을 사용합니다.",
+ "scss.format.braceStyle.desc": "규칙(`collapse`)과 동일한 줄에 중괄호를 배치하거나 자체 줄(`expand`)에 중괄호를 배치합니다.",
+ "scss.format.enable.desc": "기본 SCSS 포맷터를 활성화/비활성화합니다.",
+ "scss.format.maxPreserveNewLines.desc": "`#scss.format.preserveNewLines#`을(를) 사용하도록 설정한 경우 한 청크에서 보존할 최대 줄 바꿈 수입니다.",
+ "scss.format.newlineBetweenRules.desc": "규칙 집합을 빈 줄로 구분합니다.",
+ "scss.format.newlineBetweenSelectors.desc": "선택기를 새 줄로 구분합니다.",
+ "scss.format.preserveNewLines.desc": "규칙 및 선언 전에 기존 줄 바꿈을 유지해야 하는지 여부입니다.",
+ "scss.format.spaceAroundSelectorSeparator.desc": "선택기 구분 기호 '>', '+', '~' 주위에 공백 문자가 있는지 확인합니다(예: 'a > b').",
+ "scss.hover.documentation": "SCSS 가리키기에서 속성 및 값 설명서를 표시합니다.",
+ "scss.hover.references": "SCSS 호버에 MDN에 대한 참조를 표시합니다.",
+ "scss.lint.argumentsInColorFunction.desc": "매개 변수 개수가 잘못되었습니다.",
+ "scss.lint.boxModel.desc": "'padding' 또는 'border'를 사용하는 경우 'width' 또는 'height'를 사용하지 마세요.",
+ "scss.lint.compatibleVendorPrefixes.desc": "공급업체 관련 접두사를 사용할 경우 다른 모든 공급업체 관련 속성도 포함합니다.",
+ "scss.lint.duplicateProperties.desc": "중복된 스타일 정의를 사용하지 마세요.",
+ "scss.lint.emptyRules.desc": "빈 규칙 집합을 사용하지 마세요.",
+ "scss.lint.float.desc": "'float'를 사용하지 않도록 합니다. Float를 사용하면 레이아웃의 한쪽이 바뀔 경우 CSS가 쉽게 깨질 수 있습니다.",
+ "scss.lint.fontFaceProperties.desc": "`@font-face` 규칙에서 'src' 및 'font-family' 속성을 정의해야 합니다.",
+ "scss.lint.hexColorLength.desc": "16진수 색상은 3, 4, 6 또는 8진수로 구성되어야 합니다.",
+ "scss.lint.idSelector.desc": "이러한 규칙은 HTML과 긴밀하게 결합되므로 선택기에 ID를 포함하면 안 됩니다.",
+ "scss.lint.ieHack.desc": "IE 핵(Hack)은 IE7 이상을 지원할 때만 필요합니다.",
+ "scss.lint.importStatement.desc": "Import 문은 병렬로 로드되지 않습니다.",
+ "scss.lint.important.desc": "'!important'는 사용하지 않도록 합니다. 이것은 전체 CSS의 특정성에 문제가 있어서 리팩터링해야 함을 나타냅니다.",
+ "scss.lint.propertyIgnoredDueToDisplay.desc": "display 때문에 속성이 무시됩니다. 예를 들어 'display: inline'을 사용할 경우 'width', 'height', 'margin-top', 'margin-bottom' 및 'float' 속성은 적용되지 않습니다.",
+ "scss.lint.universalSelector.desc": "범용 선택기(*)는 느린 것으로 알려져 있습니다.",
+ "scss.lint.unknownAtRules.desc": "알 수 없는 @ 규칙 입니다.",
+ "scss.lint.unknownProperties.desc": "알 수 없는 속성입니다.",
+ "scss.lint.unknownVendorSpecificProperties.desc": "알 수 없는 공급업체 관련 속성입니다.",
+ "scss.lint.validProperties.desc": "`unknownProperties` 규칙에 따라 유효성이 검사되지 않은 속성 목록입니다.",
+ "scss.lint.vendorPrefix.desc": "공급업체 관련 접두사를 사용할 경우 표준 속성도 포함합니다.",
+ "scss.lint.zeroUnits.desc": "0에는 단위가 필요하지 않습니다.",
+ "scss.title": "SCSS(Sass)",
+ "scss.validate.desc": "모든 유효성 검사를 사용하거나 사용하지 않습니다.",
+ "scss.validate.title": "SCSS 유효성 검사 및 문제 심각도를 제어합니다."
+ }
+ }
+}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-ko/translations/extensions/vscode.css.i18n.json b/i18n/vscode-language-pack-ko/translations/extensions/vscode.css.i18n.json
index 61d9e14396..50f33e3850 100644
--- a/i18n/vscode-language-pack-ko/translations/extensions/vscode.css.i18n.json
+++ b/i18n/vscode-language-pack-ko/translations/extensions/vscode.css.i18n.json
@@ -9,8 +9,8 @@
"version": "1.0.0",
"contents": {
"package": {
- "displayName": "CSS 언어 기본 사항",
- "description": "CSS,LESS,SCSS 파일에서 구문 강조 표시와 괄호 일치를 제공합니다."
+ "description": "CSS,LESS,SCSS 파일에서 구문 강조 표시와 괄호 일치를 제공합니다.",
+ "displayName": "CSS 언어 기본 사항"
}
}
}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-ko/translations/extensions/dart.i18n.json b/i18n/vscode-language-pack-ko/translations/extensions/vscode.dart.i18n.json
similarity index 100%
rename from i18n/vscode-language-pack-ko/translations/extensions/dart.i18n.json
rename to i18n/vscode-language-pack-ko/translations/extensions/vscode.dart.i18n.json
diff --git a/i18n/vscode-language-pack-ko/translations/extensions/vscode.debug-auto-launch.i18n.json b/i18n/vscode-language-pack-ko/translations/extensions/vscode.debug-auto-launch.i18n.json
new file mode 100644
index 0000000000..2a242fffa3
--- /dev/null
+++ b/i18n/vscode-language-pack-ko/translations/extensions/vscode.debug-auto-launch.i18n.json
@@ -0,0 +1,38 @@
+{
+ "": [
+ "--------------------------------------------------------------------------------------------",
+ "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."
+ ],
+ "version": "1.0.0",
+ "contents": {
+ "bundle": {
+ "Always": "항상",
+ "Auto Attach: Always": "자동 연결: 항상",
+ "Auto Attach: Disabled": "자동 연결: 사용 안 함",
+ "Auto Attach: Smart": "자동 연결: 스마트",
+ "Auto Attach: With Flag": "자동 연결: 플래그가 있는 경우",
+ "Auto attach is disabled and not shown in status bar": "자동 연결이 사용하지 않도록 설정되어 있고 상태 표시줄에 표시되지 않습니다.",
+ "Auto attach to every Node.js process launched in the terminal": "터미널에서 시작되는 모든 Node.js 프로세스에 자동으로 연결합니다.",
+ "Auto attach when running scripts that aren't in a node_modules folder": "node_modules 폴더에 있지 않은 스크립트를 실행할 때 자동으로 연결합니다.",
+ "Automatically attach to node.js processes in debug mode": "디버그 모드에서 node.js 프로세스에 자동 연결",
+ "Debug Auto Attach": "자동 연결 디버그",
+ "Disabled": "사용 안 함",
+ "Only With Flag": "플래그가 있는 경우에만",
+ "Only auto attach when the `--inspect` flag is given": "'--inspect' 플래그가 지정된 경우에만 자동으로 연결합니다.",
+ "Re-enable auto attach": "자동 연결을 다시 사용하도록 설정",
+ "Smart": "스마트",
+ "Temporarily disable auto attach in this session": "이 세션에서 자동 연결을 일시적으로 사용 안 함",
+ "Toggle Auto Attach": "자동 연결 설정/해제",
+ "Toggle auto attach in this workspace": "이 작업 영역에서 자동 연결 토글",
+ "Toggle auto attach on this machine": "이 머신에서 자동 연결 토글"
+ },
+ "package": {
+ "description": "노드 디버그 확장이 비활성화될 때 자동 연결 기능을 위한 도우미입니다.",
+ "displayName": "노드 디버그 자동 연결",
+ "toggle.auto.attach": "자동 연결 설정/해제"
+ }
+ }
+}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-ko/translations/extensions/vscode.debug-server-ready.i18n.json b/i18n/vscode-language-pack-ko/translations/extensions/vscode.debug-server-ready.i18n.json
new file mode 100644
index 0000000000..b78beb9805
--- /dev/null
+++ b/i18n/vscode-language-pack-ko/translations/extensions/vscode.debug-server-ready.i18n.json
@@ -0,0 +1,31 @@
+{
+ "": [
+ "--------------------------------------------------------------------------------------------",
+ "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."
+ ],
+ "version": "1.0.0",
+ "contents": {
+ "bundle": {
+ "Format uri ('{0}') must contain exactly one substitution placeholder.": "형식 uri('{0}')는 하나의 대체 자리 표시자만 포함해야 합니다.",
+ "Format uri ('{0}') uses a substitution placeholder but pattern did not capture anything.": "형식 uri( '{0}')은(는) 대체 자리 표시자를 사용하지만 패턴은 아무것도 캡처하지 않습니다."
+ },
+ "package": {
+ "debug.server.ready.action.debugWithChrome.description": "'Debugger for Chrome'을 사용하여 디버깅을 시작하세요.",
+ "debug.server.ready.action.description": "서버가 준비되었을 때 URI로 무엇을 하시겠습니까?",
+ "debug.server.ready.action.openExternally.description": "기본 애플리케이션에서 외부 URI 열기",
+ "debug.server.ready.action.startDebugging.description": "다른 시작 구성을 실행합니다.",
+ "debug.server.ready.debugConfig.description": "실행할 디버그 구성입니다.",
+ "debug.server.ready.debugConfigName.description": "실행할 시작 구성의 이름입니다.",
+ "debug.server.ready.killOnServerStop.description": "부모 세션이 중지되면 자식 세션을 중지합니다.",
+ "debug.server.ready.pattern.description": "이 패턴이 디버그 콘솔에 나타나면 서버가 준비됩니다. 첫 번째 캡처 그룹에는 URI 또는 포트 번호가 포함되어야 합니다.",
+ "debug.server.ready.serverReadyAction.description": "디버깅중인 서버 프로그램이 준비되면 URI에 따라 작동합니다( '포트 3000에서 수신 대기'또는 '지금 수신 대기 중: https://localhost:5001'양식의 출력을 디버그 콘솔에 보내면 나타남).",
+ "debug.server.ready.uriFormat.description": "포트 번호에서 URI를 구성할 때 사용되는 형식 문자열입니다. 첫 번째 '%s'는 포트 번호로 대체됩니다.",
+ "debug.server.ready.webRoot.description": "'Debugger for Chrome'의 디버그 구성에 전달된 값입니다.",
+ "description": "디버깅 중인 서버가 준비되면 브라우저에서 URI를 엽니다.",
+ "displayName": "서버 준비 작업"
+ }
+ }
+}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-ko/translations/extensions/diff.i18n.json b/i18n/vscode-language-pack-ko/translations/extensions/vscode.diff.i18n.json
similarity index 100%
rename from i18n/vscode-language-pack-ko/translations/extensions/diff.i18n.json
rename to i18n/vscode-language-pack-ko/translations/extensions/vscode.diff.i18n.json
diff --git a/i18n/vscode-language-pack-ko/translations/extensions/vscode.docker.i18n.json b/i18n/vscode-language-pack-ko/translations/extensions/vscode.docker.i18n.json
index a5143b76a2..75a8438e7a 100644
--- a/i18n/vscode-language-pack-ko/translations/extensions/vscode.docker.i18n.json
+++ b/i18n/vscode-language-pack-ko/translations/extensions/vscode.docker.i18n.json
@@ -9,8 +9,8 @@
"version": "1.0.0",
"contents": {
"package": {
- "displayName": "Docker 언어 기본",
- "description": "Docker 파일에서 구문 강조 표시 및 괄호 일치를 제공합니다."
+ "description": "Docker 파일에서 구문 강조 표시 및 괄호 일치를 제공합니다.",
+ "displayName": "Docker 언어 기본"
}
}
}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-ko/translations/extensions/vscode.dotenv.i18n.json b/i18n/vscode-language-pack-ko/translations/extensions/vscode.dotenv.i18n.json
new file mode 100644
index 0000000000..4bc387ec46
--- /dev/null
+++ b/i18n/vscode-language-pack-ko/translations/extensions/vscode.dotenv.i18n.json
@@ -0,0 +1,16 @@
+{
+ "": [
+ "--------------------------------------------------------------------------------------------",
+ "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."
+ ],
+ "version": "1.0.0",
+ "contents": {
+ "package": {
+ "description": "Docker 파일에서 구문 강조 표시 및 괄호 일치를 제공합니다.",
+ "displayName": "Dotenv 언어 기본 사항"
+ }
+ }
+}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-ko/translations/extensions/vscode.emmet.i18n.json b/i18n/vscode-language-pack-ko/translations/extensions/vscode.emmet.i18n.json
new file mode 100644
index 0000000000..9f1c14b3c6
--- /dev/null
+++ b/i18n/vscode-language-pack-ko/translations/extensions/vscode.emmet.i18n.json
@@ -0,0 +1,83 @@
+{
+ "": [
+ "--------------------------------------------------------------------------------------------",
+ "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."
+ ],
+ "version": "1.0.0",
+ "contents": {
+ "bundle": {
+ "Emmet Abbreviation": "Emmet 약어",
+ "Enter Abbreviation": "약어 입력",
+ "Invalid emmet.variables field. See https://code.visualstudio.com/docs/editor/emmet#_emmet-configuration for a valid example.": "잘못된 emmet.variables 필드입니다. 유효한 예는 https://code.visualstudio.com/docs/editor/emmet#_emmet-configuration을 참조하세요.",
+ "Invalid snippets file. See https://code.visualstudio.com/docs/editor/emmet#_using-custom-emmet-snippets for a valid example.": "잘못된 코드 조각 파일입니다. 유효한 예는 https://code.visualstudio.com/docs/editor/emmet#_using-custom-emmet-snippets를 참조하세요.",
+ "Invalid syntax profile. See https://code.visualstudio.com/docs/editor/emmet#_emmet-configuration for a valid example.": "잘못된 구문 프로필입니다. 유효한 예는 https://code.visualstudio.com/docs/editor/emmet#_emmet-configuration을 참조하세요."
+ },
+ "package": {
+ "command.balanceIn": "균형있게(안쪽으로)",
+ "command.balanceOut": "균형있게(바깥쪽으로)",
+ "command.decrementNumberByOne": "1씩 감소",
+ "command.decrementNumberByOneTenth": "0.1씩 감소",
+ "command.decrementNumberByTen": "10씩 감소",
+ "command.evaluateMathExpression": "수식 평가",
+ "command.incrementNumberByOne": "1씩 증가",
+ "command.incrementNumberByOneTenth": "0.1씩 증가",
+ "command.incrementNumberByTen": "10씩 증가",
+ "command.matchTag": "일치하는 쌍으로 이동",
+ "command.mergeLines": "줄 병합",
+ "command.nextEditPoint": "다음 편집 점으로 이동",
+ "command.prevEditPoint": "이전 편집 점으로 이동",
+ "command.reflectCSSValue": "CSS 값 반영",
+ "command.removeTag": "태그 제거",
+ "command.selectNextItem": "다음 항목 선택",
+ "command.selectPrevItem": "이전 항목 선택",
+ "command.showEmmetCommands": "Emmet 명령 표시",
+ "command.splitJoinTag": "태그 분할/조인",
+ "command.toggleComment": "주석 토글",
+ "command.updateImageSize": "이미지 크기 업데이트",
+ "command.updateTag": "태그 업데이트",
+ "command.wrapWithAbbreviation": "약어로 래핑",
+ "description": "VS Code에 대한 Emmet 지원",
+ "emmetExclude": "Emmet 약어는 확장하면 안 되는 언어의 배열입니다.",
+ "emmetExtensionsPath": "각 경로에 Emmet 구문Profiles 및/또는 코드 조각 파일이 포함될 수 있는 경로 배열입니다.\r\n충돌하는 경우 이후 경로의 프로필/코드 조각이 이전 경로의 프로필/코드 조각을 재정의합니다.\r\n자세한 내용과 예제 코드 조각 파일은 https://code.visualstudio.com/docs/editor/emmet을 참조하세요.",
+ "emmetExtensionsPathItem": "Emmet syntaxProfiles 및/또는 코드 조각을 포함하는 경로입니다.",
+ "emmetIncludeLanguages": "기본적으로 지원되지 않는 언어에서 Emmet 약어를 사용하도록 설정합니다. 언어와 Emmet 지원 언어 간에 매핑을 여기에 추가합니다.\r\n예: '{\"vue-html\": \"html\", \"javascript\": \"javascriptreact\"}'",
+ "emmetOptimizeStylesheetParsing": "'false'로 설정할 경우 전체 파일이 구문 분석되어 현재 위치가 Emmet 약어 확장에 유효한지 확인합니다. 'true'로 설정할 경우 CSS/SCSS/Less 파일에서 현재 위치 주변의 콘텐츠만 구문 분석합니다.",
+ "emmetPreferences": "Emmet의 일부 작업 및 해결 프로그램의 동작을 수정하는 데 사용되는 기본 설정입니다.",
+ "emmetPreferencesAllowCompactBoolean": "'true'인 경우 부울 속성의 축소된 표기법이 생성됩니다.",
+ "emmetPreferencesBemElementSeparator": "BEM 필터 사용시 요소 구분자를 클래스로 사용합니다.",
+ "emmetPreferencesBemModifierSeparator": "BEM 필터 사용시 변경된 구분자를 클래스로 사용합니다.",
+ "emmetPreferencesCssAfter": "CSS 약어를 확장할 때 CSS 속성의 끝에 배치할 기호입니다.",
+ "emmetPreferencesCssBetween": "CSS 약어를 확장할 때 CSS 속성 및 값 사이에 배치할 기호입니다.",
+ "emmetPreferencesCssColorShort": "`true`이면 `#f` 같은 색 값이 `#ffffff` 대신 `#fff`로 확장됩니다.",
+ "emmetPreferencesCssFuzzySearchMinScore": "유사 일치 약어가 획득해야 하는 최소 점수(0에서 1 사이)입니다. 값이 낮을수록 가양성 일치 항목이 늘 수 있고, 값이 높을수록 가능한 일치 항목이 줄 수 있습니다.",
+ "emmetPreferencesCssMozProperties": "`-`으로 시작하는 Emmet 약어에서 사용될 때 'moz' 공급업체 접두사를 가져오는 쉼표로 구분된 CSS 속성입니다. 항상 'moz' 접두사를 사용하지 않으려면 빈 문자열로 설정합니다.",
+ "emmetPreferencesCssMsProperties": "`-`으로 시작하는 Emmet 약어에서 사용할 때 'ms' 공급업체 접두사를 가져오는 쉼표로 구분된 CSS 속성입니다. 항상 'ms' 접두사를 사용하지 않으려면 빈 문자열로 설정합니다.",
+ "emmetPreferencesCssOProperties": "`-`으로 시작하는 Emmet 약어에서 사용할 때 'o' 공급업체 접두사를 가져오는 쉼표로 구분된 CSS 속성입니다. 항상 'o' 접두사를 사용하지 않으려면 빈 문자열로 설정합니다.",
+ "emmetPreferencesCssWebkitProperties": "`-`으로 시작하는 Emmet 약어에서 사용될 때 'webkit' 공급업체 접두사를 가져오는 쉼표로 구분된 CSS 속성입니다. 항상 'webkit' 접두사를 사용하지 않으려면 빈 문자열로 설정합니다.",
+ "emmetPreferencesFilterCommentAfter": "코멘트 필터가 적용 될때 코맨트 표시는 해당된 요소 뒤에 배치 해야합니다.",
+ "emmetPreferencesFilterCommentBefore": "코멘트 필터가 적용 될때 코맨트 표시는 해당된 요소 앞에 배치 해야합니다.",
+ "emmetPreferencesFilterCommentTrigger": "콤마로 구분된 리스트의 속성은 코멘트 필터 약어로 존재해야 합니다.",
+ "emmetPreferencesFloatUnit": "부동 소수점 값의 기본 단위입니다.",
+ "emmetPreferencesFormatForceIndentTags": "항상 내부 들여쓰기를 해야 하는 태그 이름의 배열입니다.",
+ "emmetPreferencesFormatNoIndentTags": "절대로 내부 들여쓰기하면 안 되는 태그 이름 배열입니다.",
+ "emmetPreferencesIntUnit": "정수 값의 기본 단위",
+ "emmetPreferencesOutputInlineBreak": "줄 바꿈을 요소 사이에 배치하는 데 필요한 형제 인라인 요소 수입니다. '0'인 경우 인라인 요소가 항상 한 줄로 확장됩니다.",
+ "emmetPreferencesOutputReverseAttributes": "'true'이면 코드 조각을 확인할 때 특성 병합 방향이 역방향이 됩니다.",
+ "emmetPreferencesOutputSelfClosingStyle": "자체 닫는 태그의 스타일: html (` `), xml (` `) 또는 xhtml (` `).",
+ "emmetPreferencesSassAfter": "Sass 파일에서 CSS 약어를 확장할 때 CSS 속성의 끝에 배치할 기호입니다.",
+ "emmetPreferencesSassBetween": "Sass 파일에서 CSS 약어를 확장할 때 CSS 속성 및 값 사이에 배치할 기호입니다.",
+ "emmetPreferencesStylusAfter": "Stylus 파일에서 CSS 약어를 확장할 때 CSS 속성의 끝에 배치할 기호입니다.",
+ "emmetPreferencesStylusBetween": "Stylus 파일에서 CSS 약어를 확장할 때 CSS 속성 및 값 사이에 배치할 기호입니다.",
+ "emmetShowAbbreviationSuggestions": "가능한 Emmet 약어를 제안으로 표시합니다. 스타일시트에는 적용되지 않고 emmet.showExpandedAbbreviation이 \"never\"로 설정되어 있을 때도 적용되지 않습니다.",
+ "emmetShowExpandedAbbreviation": "확장된 Emmet 약어를 제안 사항으로 표시합니다.\r\n`\"inMarkupAndStylesheetFilesOnly\"` 옵션은 html, haml, jade, slim, xml, xsl, css, scss, sass, less 및 stylus에 적용됩니다.\r\n`\"always\"` 옵션은 태그/css에 관계없이 파일의 모든 부분에 적용됩니다.",
+ "emmetShowSuggestionsAsSnippets": "'True'이면 Emmet 제안이 코드 조각으로 표시되며 `#editor.snippetSuggestions#` 설정에 따라 코드 조각을 정렬할 수 있습니다.",
+ "emmetSyntaxProfiles": "지정된 구문에 대한 프로필을 정의하거나 특정 규칙이 포함된 고유한 프로필을 사용하세요.",
+ "emmetTriggerExpansionOnTab": "사용하도록 설정하면 완성된 내용이 표시되지 않는 경우에도 Tab 키를 누르면 Emmet 약어가 확장됩니다. 사용하지 않도록 설정하더라도 완성된 내용이 표시되는 경우에 Tab 키를 눌러 확장할 수 있습니다.",
+ "emmetUseInlineCompletions": "'true'인 경우 Emmet은 인라인 완성을 사용하여 확장을 제안합니다. 이 설정이 'true'인 동안 인라인이 아닌 완료 항목 공급자가 자주 표시되지 않도록 하려면 '다른' 항목에 대해 '#editor.quickSuggestions#'를 'inline' 또는 'off'로 전환합니다.",
+ "emmetVariables": "emmet 조각에 사용되는 변수입니다."
+ }
+ }
+}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-ko/translations/extensions/vscode.extension-editing.i18n.json b/i18n/vscode-language-pack-ko/translations/extensions/vscode.extension-editing.i18n.json
new file mode 100644
index 0000000000..e81fd920da
--- /dev/null
+++ b/i18n/vscode-language-pack-ko/translations/extensions/vscode.extension-editing.i18n.json
@@ -0,0 +1,33 @@
+{
+ "": [
+ "--------------------------------------------------------------------------------------------",
+ "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."
+ ],
+ "version": "1.0.0",
+ "contents": {
+ "bundle": {
+ "Data URLs are not a valid image source.": "데이터 URL은 올바른 이미지 소스가 아닙니다.",
+ "Embedded SVGs are not a valid image source.": "내장 SVG는 올바른 이미지 소스가 아닙니다.",
+ "Error parsing the when-clause:": "when 절 구문 분석 오류:",
+ "Images must use the HTTPS protocol.": "이미지는 HTTPS 프로토콜을 사용해야 합니다.",
+ "Language specific editor settings": "언어별 편집기 설정",
+ "Override editor settings for language": "언어용 편집기 설정 재정의",
+ "Relative badge URLs require a repository with HTTPS protocol to be specified in this package.json.": "관계형 배지 URL은 package.json에 HTTPS 프로토콜이 지정된 저장소가 필요합니다.",
+ "Relative image URLs require a repository with HTTPS protocol to be specified in the package.json.": "관계형 이미지 URL은 package.json에 HTTPS 프로토콜이 지정된 저장소가 필요합니다.",
+ "Remove activation event": "활성화 이벤트 제거",
+ "SVGs are not a valid image source.": "SVG는 올바른 이미지 소스가 아닙니다.",
+ "This activation event can be removed as VS Code generates these automatically from your package.json contribution declarations.": "이 활성화 이벤트는 VS Code가 package.json 기여 선언에서 자동으로 생성하므로 제거할 수 있습니다.",
+ "This activation event can be removed for extensions targeting engine version ^1.75.0 as VS Code will generate these automatically from your package.json contribution declarations.": "이 활성화 이벤트는 VS Code가 package.json 기여 선언으로부터 자동 생성하므로 엔진 버전 ^1.75.0을 대상으로 하는 확장을 위해 제거할 수 있습니다.",
+ "This activation event cannot be explicitly listed by your extension.": "확장에서 이 활성화 이벤트를 명시적으로 나열할 수 없습니다.",
+ "This proposal cannot be used because for this extension the product defines a fixed set of API proposals. You can test your extension but before publishing you MUST reach out to the VS Code team.": "이 확장에 대해 제품이 고정된 API 제안 세트를 정의하므로 이 제안을 사용할 수 없습니다. 확장을 테스트할 수 있지만 게시하기 전에 VS Code 팀에 연락해야 합니다.",
+ "Using '*' activation is usually a bad idea as it impacts performance.": "일반적으로 '*' 활성화는 성능에 영향을 주므로 사용하지 않는 것이 좋습니다."
+ },
+ "package": {
+ "description": "확장 제작을 위한 Lint 기능을 제공합니다.",
+ "displayName": "확장 제작"
+ }
+ }
+}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-ko/translations/extensions/vscode.fsharp.i18n.json b/i18n/vscode-language-pack-ko/translations/extensions/vscode.fsharp.i18n.json
index 45e20d6faf..29a3799f3a 100644
--- a/i18n/vscode-language-pack-ko/translations/extensions/vscode.fsharp.i18n.json
+++ b/i18n/vscode-language-pack-ko/translations/extensions/vscode.fsharp.i18n.json
@@ -9,8 +9,8 @@
"version": "1.0.0",
"contents": {
"package": {
- "displayName": "F# 언어 기본",
- "description": "F# 파일에서 코드 조각, 구문 강조 표시, 괄호 일치 및 접기를 제공합니다."
+ "description": "F# 파일에서 코드 조각, 구문 강조 표시, 괄호 일치 및 접기를 제공합니다.",
+ "displayName": "F# 언어 기본"
}
}
}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-ko/translations/extensions/vscode.git-base.i18n.json b/i18n/vscode-language-pack-ko/translations/extensions/vscode.git-base.i18n.json
new file mode 100644
index 0000000000..db62c616c6
--- /dev/null
+++ b/i18n/vscode-language-pack-ko/translations/extensions/vscode.git-base.i18n.json
@@ -0,0 +1,30 @@
+{
+ "": [
+ "--------------------------------------------------------------------------------------------",
+ "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."
+ ],
+ "version": "1.0.0",
+ "contents": {
+ "bundle": {
+ "Branch name": "분기 이름",
+ "Choose a URL to clone from.": "복제할 URL을 선택하세요.",
+ "No remote repositories found.": "원격 리포지토리를 찾을 수 없습니다.",
+ "Provide repository URL": "리포지토리 URL 제공",
+ "Provide repository URL or pick a repository source.": "리포지토리 URL을 입력하거나 리포지토리 소스를 선택하세요.",
+ "Repository name": "리포지토리 이름",
+ "Repository name (type to search)": "리포지토리 이름(입력하여 검색)",
+ "URL": "URL",
+ "recently opened": "최근에 사용한 항목",
+ "remote sources": "원격 소스",
+ "{0} Error: {1}": "{0} 오류: {1}"
+ },
+ "package": {
+ "command.api.getRemoteSources": "원격 원본 가져오기",
+ "description": "GIT 고정적 기여 및 선택기입니다.",
+ "displayName": "GIT 기준"
+ }
+ }
+}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-ko/translations/extensions/vscode.git.i18n.json b/i18n/vscode-language-pack-ko/translations/extensions/vscode.git.i18n.json
new file mode 100644
index 0000000000..f6c43e6f66
--- /dev/null
+++ b/i18n/vscode-language-pack-ko/translations/extensions/vscode.git.i18n.json
@@ -0,0 +1,807 @@
+{
+ "": [
+ "--------------------------------------------------------------------------------------------",
+ "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."
+ ],
+ "version": "1.0.0",
+ "contents": {
+ "bundle": {
+ "\n\nAre you sure you want to discard ALL changes in {0} files?": "{0} 파일의 모든 변경 내용을 취소하시겠습니까?",
+ "\n\nAre you sure you want to discard changes in '{0}'?": "\n\n'{0}'의 변경 내용을 취소하시겠습니까?",
+ "\n and {0} more file{1}...": "\n 그리고 {0} 더 많은 파일{1}...",
+ "\"{0}\" has fingerprint \"{1}\"": "\"{0}\"에 지문 \"{1}\"이(가) 있음",
+ "$(info) Remote \"{0}\" has no tags.": "$(info) 원격 \"{0}\"에 태그가 없습니다.",
+ "$(info) This repository has no stashes.": "$(정보) 이 리포지토리에는 스테이시가 없습니다.",
+ "$(info) This repository has no tags.": "$(info) 이 리포지토리에는 태그가 없습니다.",
+ "$(info) This repository has no worktrees.": "$(정보) 이 리포지토리에는 작업 트리 없습니다.",
+ "A branch named \"{0}\" already exists": "이름이 \"{0}\"인 분기가 이미 있습니다.",
+ "A git repository was found in the parent folders of the workspace or the open file(s). Would you like to open the repository?": "작업 영역의 부모 폴더 또는 열린 파일에서 Git 리포지토리를 찾았습니다. 리포지토리를 열까요?",
+ "A worktree already exists at \"{0}\".": "\"{0}\"에 이미 작업 트리가 존재합니다.",
+ "Absolute paths not supported in \"git.scanRepositories\" setting.": "“git.scanRepositories” 설정에서는 절대 경로를 사용할 수 없습니다.",
+ "Add Remote": "원격 추가",
+ "Add a new remote...": "새 원격 추가...",
+ "Add remote from URL": "URL에서 원격 추가",
+ "Add remote from {0}": "{0}에서 원격 추가",
+ "Add to Workspace": "작업 영역에 추가",
+ "All Repositories": "모든 리포지토리",
+ "Always": "항상",
+ "Always Pull": "항상 풀",
+ "Always Replace Local Tag(s)": "항상 로컬 태그 교체",
+ "Are you sure you want to DELETE the following untracked file: '{0}'?{1}": "추적되지 않은 '{0}' 파일을 삭제하시겠습니까?{1}",
+ "Are you sure you want to DELETE the {0} untracked files?{1}": "{0}개의 추적되지 않은 파일을 삭제하시겠습니까?{1}",
+ "Are you sure you want to continue connecting?": "연결을 계속 진행하시겠습니까?",
+ "Are you sure you want to create an empty commit?": "빈 커밋을 만드시겠습니까?",
+ "Are you sure you want to delete branch \"{0}\"? This action will permanently remove the branch reference from the repository.": "\"{0}\" 분기를 삭제하시겠습니까? 이 작업을 수행하면 리포지토리에서 분기 참조가 영구적으로 제거됩니다.",
+ "Are you sure you want to delete tag \"{0}\"? This action will permanently remove the tag reference from the repository.": "\"{0}\" 태그를 삭제하시겠습니까? 이 작업을 수행하면 리포지토리에서 태그 참조가 영구적으로 제거됩니다.",
+ "Are you sure you want to discard ALL changes in {0} files?\n\nThis is IRREVERSIBLE!\nYour current working set will be FOREVER LOST if you proceed.": "{0} 파일의 변경 내용을 모두 취소하시겠습니까?\n\n이 작업은 취소할 수 없습니다!\n계속하면 현재 작업 집합이 영구적으로 손실됩니다.",
+ "Are you sure you want to discard changes in '{0}'?": "'{0}'의 변경 내용을 취소하시겠습니까?",
+ "Are you sure you want to drop ALL stashes? There are {0} stashes that will be subject to pruning, and MAY BE IMPOSSIBLE TO RECOVER.": "모든 스태시를 삭제하시겠습니까? 정리 대상이 될 스태시가 {0}개 있으며 복구가 불가능할 수 있습니다.",
+ "Are you sure you want to drop ALL stashes? There is 1 stash that will be subject to pruning, and MAY BE IMPOSSIBLE TO RECOVER.": "모든 스태시를 삭제하시겠습니까? 정리 대상이 될 스태시가 1개 있으며 복구가 불가능할 수 있습니다.",
+ "Are you sure you want to drop the stash: {0}?": "스태시 {0}을(를) 삭제하시겠습니까?",
+ "Are you sure you want to restore '{0}'?": "'{0}'을(를) 복원하시겠습니까?",
+ "Are you sure you want to restore ALL {0} files?": "모든 {0}개 파일을 복원하시겠습니까?",
+ "Are you sure you want to stage {0} files with merge conflicts?": "병합 충돌이 있는 {0} 파일을 스테이징하시겠습니까?",
+ "Are you sure you want to stage {0} with merge conflicts?": "병합 충돌이 있는 {0}을(를) 스테이징하시겠습니까?",
+ "Ask Me Later": "나중에 물어보기",
+ "Branch \"{0}\" already exists": "분기 \"{0}\"이(가) 이미 있습니다.",
+ "Branch \"{0}\" is already checked out in the current repository.": "분기 \"{0}\"이(가) 현재 리포지토리에서 이미 체크 아웃되었습니다.",
+ "Branch \"{0}\" is already checked out in the current window.": "분기 \"{0}\"이(가) 현재 창에서 이미 체크 아웃되었습니다.",
+ "Branch \"{0}\" is already checked out in the worktree at \"{1}\".": "'{0}' 분기가 '{1}'의 작업 트리에서 이미 체크 아웃되어 있습니다.",
+ "Branch name": "분기 이름",
+ "Branch name needs to match regex: {0}": "분기 이름은 regex {0}과(와) 일치해야 합니다.",
+ "Branches": "분기",
+ "Can't force push refs to remote. The tip of the remote-tracking branch has been updated since the last checkout. Try running \"Pull\" first to pull the latest changes from the remote branch first.": "푸시 참조를 원격으로 강제 적용할 수 없습니다. 마지막 체크 아웃 이후 원격 추적 분기의 팁이 업데이트되었습니다. 먼저 \"끌어오기\"를 실행하여 원격 분기에서 최신 변경 내용을 먼저 끌어오세요.",
+ "Can't push refs to remote. Try running \"Pull\" first to integrate your changes.": "참조를 원격에 푸시할 수 없습니다. 먼저 '풀'을 실행하여 변경 내용을 통합하세요.",
+ "Can't undo because HEAD doesn't point to any commit.": "HEAD가 커밋을 가리키지 않으므로 실행 취소할 수 없습니다.",
+ "Changes": "변경 사항",
+ "Checking Out Branch/Tag...": "분기/태그를 체크 아웃하는 중...",
+ "Checking Out Changes...": "변경 내용을 확인하는 중...",
+ "Checkout Branch/Tag...": "분기/태그 체크 아웃...",
+ "Choose Folder...": "폴더 선택...",
+ "Choose a folder to clone {0} into": "{0}을(를) 복제할 폴더를 선택하세요.",
+ "Choose a repository": "리포지토리 선택",
+ "Choose which repository to clone": "복제할 리포지토리 선택",
+ "Choose which repository to publish": "게시할 리포지토리 선택",
+ "Clear whitespace characters": "공백 문자 지우기",
+ "Clone again": "다시 복제",
+ "Clone from URL": "리포지토리 URL",
+ "Clone from {0}": "{0}에서 복제",
+ "Cloning git repository \"{0}\"...": "Git 리포지토리 \"{0}\"을(를) 복제하는 중...",
+ "Commit": "커밋",
+ "Commit & Push Changes": "변경 내용 커밋 및 푸시",
+ "Commit & Sync Changes": "변경 내용 커밋 및 동기화",
+ "Commit Anyway": "커밋 진행",
+ "Commit Changes": "변경 내용 커밋",
+ "Commit Changes on \"{0}\"": "\"{0}\"에 변경 내용 커밋",
+ "Commit Changes to New Branch": "새 분기에 변경 내용 커밋",
+ "Commit Hash": "커밋 해시",
+ "Commit message": "커밋 메시지",
+ "Commit operation was cancelled due to empty commit message.": "커밋 메시지가 비어 있어 커밋 작업이 취소되었습니다.",
+ "Commit to New Branch & Push Changes": "새 분기에 커밋 및 변경 내용 푸시",
+ "Commit to New Branch & Synchronize Changes": "새 분기에 커밋 및 변경 내용 동기화",
+ "Commit to a New Branch": "새 브랜치에 커밋",
+ "Commits without verification are not allowed, please enable them with the \"git.allowNoVerifyCommit\" setting.": "확인 없는 커밋은 허용되지 않습니다. \"git.allowNoVerifyCommit\" 설정을 통해 사용하도록 설정하세요.",
+ "Committing & Pushing Changes...": "변경 내용 커밋 및 푸시 중...",
+ "Committing & Synchronizing Changes...": "커밋 및 변경 내용을 동기화하는 중...",
+ "Committing Changes to New Branch...": "새 분기에 변경 내용 커밋 중...",
+ "Committing Changes...": "변경 내용 커밋 중...",
+ "Committing to New Branch & Pushing Changes...": "새 분기에 대한 커밋 및 변경 내용 푸시 중...",
+ "Committing to New Branch & Synchronizing Changes...": "새 분기에 커밋 및 변경 내용을 동기화하는 중...",
+ "Conflict: Added By Them": "충돌: 타인이 추가",
+ "Conflict: Added By Us": "충돌: 자체 추가",
+ "Conflict: Both Added": "충돌: 양쪽에서 추가",
+ "Conflict: Both Deleted": "충돌: 양쪽에서 삭제",
+ "Conflict: Both Modified": "충돌: 양쪽에서 수정",
+ "Conflict: Deleted By Them": "충돌: 타인이 삭제",
+ "Conflict: Deleted By Us": "충돌: 자체 삭제",
+ "Continue Merge": "병합 계속",
+ "Continue Rebase": "계속 기준 다시 지정",
+ "Continuing Merge...": "병합 계속 중...",
+ "Continuing Rebase...": "기준 주소 다시 지정을 계속하는 중...",
+ "Copy Commit Hash": "커밋 해시 복사",
+ "Could not clone your repository as Git is not installed.": "Git이 설치되지 않아 저장소를 복제할 수 없습니다.",
+ "Create Empty Commit": "빈 커밋 만들기",
+ "Create New Branch": "새 분기 만들기",
+ "Current": "현재",
+ "Current commit message only contains whitespace characters": "현재 커밋 메시지에는 공백 문자만 포함됩니다.",
+ "Delete All {0} Files": "모든 {0} 파일 삭제",
+ "Delete Branch": "분기 삭제",
+ "Delete File": "파일 삭제",
+ "Delete Tag": "태그 삭제",
+ "Deleted": "삭제",
+ "Discard 1 Tracked File": "1개의 추적된 파일 취소",
+ "Discard All {0} Files": "{0}개 파일 모두 버리기",
+ "Discard All {0} Tracked Files": "추적된 모든 {0}개 파일 취소",
+ "Discard File": "파일 삭제",
+ "Don't Pull": "풀 안 함",
+ "Don't Show Again": "다시 표시 안 함",
+ "Download Git": "Git 다운로드",
+ "Enables the following features: {0}": "다음 기능을 사용하도록 설정: {0}",
+ "Failed to authenticate to git remote.": "git remote에 인증하지 못했습니다.",
+ "Failed to authenticate to git remote:\n\n{0}": "git remote에 인증하지 못했습니다.\n\n{0}",
+ "Failed to delete using the Recycle Bin. Do you want to permanently delete instead?": "휴지통을 사용하여 삭제하지 못했습니다. 대신 영구히 삭제하시겠습니까?",
+ "Failed to delete using the Trash. Do you want to permanently delete instead?": "휴지통을 사용하여 삭제하지 못했습니다. 대신 영구히 삭제하시겠습니까?",
+ "Failed to open changes between \"{0}\" and \"{1}\": {2}": "\"{0}\"과(와) \"{1}\" 간 변경 내용을 열지 못했습니다. {2}",
+ "File \"{0}\" was deleted by them and modified by us.\n\nWhat would you like to do?": "“{0}” 파일을 다른 사용자가 삭제하고 Microsoft가 수정했습니다.\n\n원하는 작업을 선택하세요.",
+ "File \"{0}\" was deleted by us and modified by them.\n\nWhat would you like to do?": "“{0}” 파일을 Microsoft가 삭제하고 다른 사용자가 수정했습니다.\n\n원하는 작업을 선택하세요.",
+ "Force Checkout": "강제 체크 아웃",
+ "Force Delete": "강제 삭제",
+ "Force push is not allowed, please enable it with the \"git.allowForcePush\" setting.": "강제 푸시가 허용되지 않습니다. \"git.allowForcePush\" 설정으로 사용하도록 설정하세요.",
+ "Git Blame Information": "Git 원인 정보",
+ "Git History": "Git 기록",
+ "Git Local Changes (Index)": "Git 로컬 변경 내용(인덱스)",
+ "Git Local Changes (Working Tree)": "Git 로컬 변경 내용(작업 트리)",
+ "Git error": "Git 오류",
+ "Git not found. Install it or configure it using the \"git.path\" setting.": "Git을 찾을 수 없습니다. “git.path”를 사용하여 Git을 설치하거나 구성합니다.",
+ "Git repositories were found in the parent folders of the workspace or the open file(s). Would you like to open the repositories?": "작업 영역의 부모 폴더 또는 열린 파일에서 Git 리포지토리를 찾았습니다. 리포지토리를 열까요?",
+ "Git: {0}": "Git: {0}",
+ "HEAD version of \"{0}\" is not available.": "“{0}”의 HEAD 버전을 사용할 수 없습니다.",
+ "Hard wrap all lines": "모든 줄 하드 래핑",
+ "Hard wrap line": "줄 하드 래핑",
+ "Ignored": "무시됨",
+ "Incoming": "수신",
+ "Incoming Changes": "들어오는 변경 내용",
+ "Incoming Changes (added)": "들어오는 변경 내용(추가됨)",
+ "Incoming Changes (deleted)": "들어오는 변경 내용(삭제됨)",
+ "Incoming Changes (modified)": "들어오는 변경 내용(수정됨)",
+ "Incoming Changes (renamed)": "들어오는 변경 내용(이름 변경)",
+ "Index Added": "인덱스 추가됨",
+ "Index Copied": "인덱스 복사됨",
+ "Index Deleted": "인덱스 삭제됨",
+ "Index Modified": "인덱스 수정됨",
+ "Index Renamed": "인덱스 이름 변경됨",
+ "Initialize Repository": "리포지토리 초기화",
+ "Intent to Add": "추가할 의도",
+ "Intent to Rename": "이름 바꾸기 의도",
+ "Invalid branch name": "잘못된 분기 이름",
+ "It looks like the current branch \"{0}\" might have been rebased. Are you sure you still want to pull into it?": "현재 분기 \"{0}\"이(가) 다시 지정된 것 같습니다. 해당 분기로 풀하시겠습니까?",
+ "It looks like the current branch might have been rebased. Are you sure you still want to pull into it?": "현재 분기가 다시 지정된 것 같습니다. 해당 분기로 풀하시겠습니까?",
+ "It's not possible to change the commit message in the middle of a rebase. Please complete the rebase operation and use interactive rebase instead.": "기준 주소를 다시 지정하는 중에는 커밋 메시지를 변경할 수 없습니다. 기준 주소 다시 지정 작업을 완료하고, 대신 대화형 기준 주소 다시 지정을 사용하세요.",
+ "Keep Our Version": "현재 버전 유지",
+ "Keep Their Version": "다른 사용자 버전 유지",
+ "Learn More": "자세한 정보",
+ "Make sure you configure your \"user.name\" and \"user.email\" in git.": "git에서 \"user.name\" 및 \"user.email\"를 구성해야 합니다.",
+ "Manage Unsafe Repositories": "안전하지 않은 리포지토리 관리",
+ "Merge Changes": "변경 사항 병합",
+ "Message": "메시지",
+ "Message (commit on \"{0}\")": "메시지(“{0}”에서 커밋)",
+ "Message ({0} to commit on \"{1}\")": "메시지({0}(으)로 \"{1}\"에 커밋)",
+ "Message ({0} to commit)": "메시지({0}(으)로 커밋)",
+ "Migrate Changes": "변경 내용 마이그레이션",
+ "Modified": "수정",
+ "Move to Recycle Bin": "휴지통으로 이동",
+ "Move to Trash": "휴지통으로 이동",
+ "Never": "안 함",
+ "No": "아니요",
+ "No hunk found at cursor position.": "커서 위치에서 헝크를 찾을 수 없습니다.",
+ "No rebase in progress.": "진행 중인 다시 지정이 없습니다.",
+ "Not Committed Yet": "아직 커밋되지 않음",
+ "Not Committed Yet (Staged)": "아직 커밋되지 않음(스테이징됨)",
+ "OK": "확인",
+ "OK, Don't Ask Again": "네, 다시 표시 안 함",
+ "OK, Don't Show Again": "다시 표시 안 함",
+ "Open": "열기",
+ "Open Commit": "커밋 열기",
+ "Open Comparison": "비교 열기",
+ "Open Existing Repository Clone": "기존 리포지토리 복제본 열기",
+ "Open File": "파일 열기",
+ "Open Git Log": "Git 로그 열기",
+ "Open Merge": "병합 열기",
+ "Open Repositories In Parent Folders": "부모 폴더에서 리포지토리 열기",
+ "Open Repository": "리포지토리 열기",
+ "Open Settings": "설정 열기",
+ "Open Worktree in Current Window": "현재 창에서 작업 트리 열기",
+ "Open Worktree in New Window": "새 창에서 작업 트리 열기",
+ "Open in New Window": "새 창에서 열기",
+ "Optionally provide a stash message": "필요한 경우 스태시 메시지를 입력하세요.",
+ "Passphrase": "암호",
+ "Pick a branch to pull from": "다음에서 가져올 분기 선택",
+ "Pick a provider to publish the branch \"{0}\" to:": "공급자를 선택하여 “{0}” 분기를 다음에 게시:",
+ "Pick a remote to publish the branch \"{0}\" to:": "“{0}” 분기를 다음에 게시하려면 원격을 선택하세요:",
+ "Pick a remote to pull the branch from": "분기를 가져올 원격 선택",
+ "Pick a remote to remove": "제거할 원격 선택",
+ "Pick a repository to mark as safe and open": "안전하고 개방된 것으로 표시할 리포지토리 선택",
+ "Pick a repository to open": "열려는 리포지토리 선택",
+ "Pick a repository to reopen": "다시 열 리포지토리 선택",
+ "Pick a stash to apply": "적용할 스태시 선택",
+ "Pick a stash to drop": "삭제할 스태시 선택",
+ "Pick a stash to pop": "표시할 스태시 선택",
+ "Pick a stash to view": "볼 스태시 선택",
+ "Pick workspace folder to initialize git repo in": "Git 리포지토리를 초기화할 작업 영역 폴더 선택",
+ "Please check out a branch to push to a remote.": "원격에 푸시할 분기를 체크 아웃하세요.",
+ "Please clean your repository working tree before checkout.": "체크 아웃하기 전에 리포지토리 작업 트리를 정리하세요.",
+ "Please provide a commit message": "커밋 메시지를 제공하세요.",
+ "Please provide a message to annotate the tag": "태그에 주석을 달 메시지를 입력하세요.",
+ "Please provide a new branch name": "새 분기 이름을 제공하세요.",
+ "Please provide a remote name": "원격 이름을 제공하세요.",
+ "Please provide a tag name": "태그 이름을 입력하세요.",
+ "Please provide a worktree path": "작업 트리 경로를 제공하세요.",
+ "Please provide the commit hash": "커밋 해시를 제공하세요.",
+ "Proceed": "진행",
+ "Proceed with migrating changes to the current repository?": "현재 리포지토리로 변경 내용을 마이그레이션하시겠습니까?",
+ "Publish Branch": "분기 게시",
+ "Publish Branch \"{0}\"/{Locked=\"Branch\"}Do not translate \"Branch\" as it is a git term": "분기 (Branch) \"{0}\" 게시",
+ "Publish Branch/{Locked=\"Branch\"}Do not translate \"Branch\" as it is a git term": "게시 Branch",
+ "Publish to {0}": "{0}에 게시",
+ "Publish to...": "다음에 게시...",
+ "Publishing Branch \"{0}\".../{Locked=\"Branch\"}Do not translate \"Branch\" as it is a git term": "분기 (Branch) \"{0}\" 게시하는 중...",
+ "Publishing Branch.../{Locked=\"Branch\"}Do not translate \"Branch\" as it is a git term": "게시 Branch...",
+ "Pull": "풀",
+ "Pull {0} and push {1} commits between {2}/{3}": "{2}/{3} 간에 {0}개 커밋 풀 및 {1}개 커밋 푸시",
+ "Pull {0} commits from {1}/{2}": "{1}/{2}에서 {0}개 커밋 풀",
+ "Push {0} commits to {1}/{2}": "{1}/{2}(으)로 {0}개 커밋 푸시",
+ "Rebasing": "기준 주소 다시 지정",
+ "Regenerate Branch Name": "분기 이름 다시 생성",
+ "Remote \"{0}\" already exists.": "원격 \"{0}\"이(가) 이미 존재합니다.",
+ "Remote branch at {0}": "{0}에서 원격 분기",
+ "Remote name": "원격 이름",
+ "Remote name format invalid": "잘못된 원격 이름 형식",
+ "Remote tag at {0}": "{0} 원격 태그",
+ "Reopen Closed Repositories": "닫힌 리포지토리 다시 열기",
+ "Replace Local Tag(s)": "로컬 태그 교체",
+ "Restore All {0} Files": "모든 {0} 파일 복원",
+ "Restore File": "파일 복원",
+ "Save All & Commit Changes": "변경 내용 모두 저장 및 커밋",
+ "Save All & Stash": "모두 저장 및 스태시",
+ "Select Worktree Destination": "작업 트리 대상을 선택하세요.",
+ "Select a branch or tag to checkout": "체크 아웃할 분기 또는 태그 선택",
+ "Select a branch or tag to create the new worktree from": "새 작업 트리를 만들 분기 또는 태그 선택",
+ "Select a branch or tag to merge from": "병합할 분기 또는 태그 선택",
+ "Select a branch to checkout in detached mode": "분리 모드에서 체크 아웃할 분기 선택",
+ "Select a branch to delete": "삭제할 분기 선택",
+ "Select a branch to rebase onto": "다시 지정할 대상 분기 선택",
+ "Select a ref to create the branch from": "분기를 만들 ref 선택",
+ "Select a reference to compare with": "비교할 참조 선택",
+ "Select a remote branch to delete": "삭제할 원격 분기 선택",
+ "Select a remote tag to delete": "삭제할 원격 태그 선택",
+ "Select a remote to delete a tag from": "태그를 삭제할 원격 선택",
+ "Select a remote to fetch": "가져올 원격 선택",
+ "Select a tag to delete": "삭제할 태그 선택",
+ "Select a worktree to delete": "삭제할 작업 트리 선택",
+ "Select a worktree to migrate changes from": "변경 사항을 마이그레이션할 작업 트리를 선택하세요.",
+ "Select as Repository Destination": "리포지토리 대상으로 선택",
+ "Select as Worktree Destination": "작업 트리 대상으로 선택",
+ "Show Changes": "변경 내용 표시",
+ "Show Command Output": "명령 출력 표시",
+ "Staged Changes": "스테이징된 변경 사항",
+ "Stash & Checkout": "스태시 및 체크 아웃",
+ "Stash Anyway": "스태시",
+ "Stash message": "스태시 메시지",
+ "Stashed Changes": "스태시된 변경 내용",
+ "Successfully pushed.": "성공적으로 푸시 되었습니다.",
+ "Synchronize Changes": "변경 내용 동기화",
+ "Synchronizing Changes...": "변경 내용을 동기화하는 중...",
+ "Syncing. Cancelling may cause serious damages to the repository": "동기화 중입니다. 취소하면 리포지토리가 손상될 수 있습니다.",
+ "Tag at {0}": "{0}의 태그",
+ "Tag name": "태그 이름",
+ "Tags": "태그",
+ "The \"{0}\" repository has {1} submodules which won't be opened automatically. You can still open each one individually by opening a file within.": "\"{0}\" 리포지토리에 자동으로 열리지 않는 {1}개의 하위 모듈이 있습니다. 모듈 내의 파일을 열러 각 모듈을 개별적으로 열 수는 있습니다.",
+ "The \"{0}\" repository has {1} worktrees which won't be opened automatically. You can still open each one individually by opening a file within.": "\"{0}\" 리포지토리에 자동으로 열리지 않는 작업 트리가 {1}개 있습니다. 모듈 내의 파일을 열러 각 모듈을 개별적으로 열 수는 있습니다.",
+ "The active branch cannot be deleted.": "활성 분기를 삭제할 수 없습니다.",
+ "The branch \"{0}\" has no remote branch. Would you like to publish this branch?": "“{0}” 분기에 원격 분기가 없습니다. 이 분기를 게시하시겠습니까?",
+ "The branch \"{0}\" is not fully merged. Delete anyway?": "\"{0}\" 분기가 완전히 병합되지 않았습니다. 그래도 삭제하시겠습니까?",
+ "The changes are already present in the current branch.": "변경 내용이 현재 분기에 이미 있습니다.",
+ "The current branch is not published to the remote. Would you like to publish it to access your changes elsewhere?": "현재 분기는 원격에 게시되지 않습니다. 다른 곳에서 변경 사항에 액세스할 수 있도록 게시하시겠습니까?",
+ "The following file has unresolved diagnostics: '{0}'.\n\nHow would you like to proceed?": "다음 파일의 진단 확인되지 않았습니다. '{0}'.\n\n어떻게 진행하시겠습니까?",
+ "The following file has unsaved changes which won't be included in the commit if you proceed: {0}.\n\nWould you like to save it before committing?": "파일 {0}에는 계속하는 경우 커밋에 포함되지 않을 저장되지 않은 변경 내용이 있습니다.\n\n커밋하기 전에 저장하시겠습니까?",
+ "The following file has unsaved changes which won't be included in the stash if you proceed: {0}.\n\nWould you like to save it before stashing?": "계속하는 경우 파일의 저장되지 않은 변경 내용이 스태시에 포함되지 않습니다{0}.\n\n스태시하기 전에 저장하시겠습니까?",
+ "The git repositories in the current folder are potentially unsafe as the folders are owned by someone other than the current user.": "현재 폴더의 Git 리포지토리는 현재 사용자가 아닌 다른 사람이 폴더를 소유하고 있으므로 잠재적으로 안전하지 않습니다.",
+ "The git repository at \"{0}\" has too many active changes, only a subset of Git features will be enabled.": "“{0}”의 Git 리포지토리에 활성 변경 내용이 너무 많습니다. Git 기능의 하위 집합만 사용할 수 있도록 설정합니다.",
+ "The git repository in the current folder is potentially unsafe as the folder is owned by someone other than the current user.": "현재 폴더의 Git 리포지토리는 현재 사용자가 아닌 다른 사람이 폴더를 소유하고 있으므로 잠재적으로 안전하지 않습니다.",
+ "The last commit was a merge commit. Are you sure you want to undo it?": "마지막 커밋은 병합 커밋이었습니다. 실행 취소하시겠습니까?",
+ "The new branch will be \"{0}\"": "새 분기는 \"{0}\" 입니다.",
+ "The remote branch of the active branch cannot be deleted.": "활성 분기의 원격 분기를 삭제할 수 없습니다.",
+ "The repository does not have any changes.": "리포지토리에 변경 내용이 없습니다.",
+ "The repository does not have any commits. Please make an initial commit before creating a stash.": "리포지토리에 커밋이 없습니다. 스태시를 만들기 전에 초기 커밋을 만드세요.",
+ "The repository does not have any staged changes.": "리포지토리에 스테이징된 변경 내용이 없습니다.",
+ "The repository does not have any untracked changes.": "리포지토리에 추적되지 않은 변경 내용이 없습니다.",
+ "The selection range does not contain any changes.": "선택 범위에 변경 내용이 없습니다.",
+ "The source repository could not be found.": "원본 리포지토리를 찾을 수 없습니다.",
+ "The worktree contains modified or untracked files. Do you want to force delete?": "작업 트리에 수정되거나 추적되지 않은 파일이 있습니다. 강제로 삭제하시겠습니까?",
+ "There are known issues with the installed Git \"{0}\". Please update to Git >= 2.27 for the git features to work correctly.": "설치된 Git “{0}”에 알려진 문제가 있습니다. Git 기능이 제대로 작동하도록 하려면 2.27 이상의 Git으로 업데이트하세요.",
+ "There are merge conflicts from migrating changes. Please resolve them before committing.": "변경 내용을 마이그레이션하는 동안 병합 충돌이 발생했습니다. 커밋하기 전에 해결하세요.",
+ "There are merge conflicts while applying the stash. Please resolve them before committing your changes.": "스태시를 적용하는 동안 병합 충돌이 발생했습니다. 변경 내용을 커밋하기 전에 resolve.",
+ "There are merge conflicts. Please resolve them before committing your changes.": "병합 충돌이 있습니다. 변경 내용을 커밋하기 전에 resolve.",
+ "There are no available repositories": "사용 가능한 리포지토리가 없습니다.",
+ "There are no available repositories matching the filter": "필터와 일치하는 리포지토리가 없습니다.",
+ "There are no changes between \"{0}\" and \"{1}\".": "\"{0}\"과(와) \"{1}\" 사이에 변경 내용이 없습니다.",
+ "There are no changes in the selected worktree to migrate.": "선택한 작업 트리에 마이그레이션할 변경 내용이 없습니다.",
+ "There are no changes to commit.": "커밋할 변경 내용이 없습니다.",
+ "There are no changes to stash.": "스태시할 변경 내용이 없습니다.",
+ "There are no staged changes to commit.\n\nWould you like to stage all your changes and commit them directly?": "커밋할 스테이징된 변경 사항이 없습니다.\n\n모든 변경 사항을 스테이징하고 직접 커밋하시겠습니까?",
+ "There are no staged changes to stash.": "스태시할 스테이징된 변경 사항이 없습니다.",
+ "There are no stashes in the repository.": "리포지토리에 스태시가 없습니다.",
+ "There are {0} files that have unresolved diagnostics.\n\nHow would you like to proceed?": "확인되지 않은 진단 {0} 파일이 있습니다.\n\n어떻게 진행하시겠습니까?",
+ "There are {0} unsaved files.\n\nWould you like to save them before committing?": "저장되지 않은 {0}개의 파일이 있습니다.\n\n커밋하기 전에 저장하시겠습니까?",
+ "There are {0} unsaved files.\n\nWould you like to save them before stashing?": "저장되지 않은 파일이 {0}개 있습니다.\n\n스태시하기 전에 저장하시겠습니까?",
+ "There were merge conflicts while cherry picking the changes. Resolve the conflicts before committing them.": "변경 내용을 Cherry Pick 하는 동안 병합 충돌이 발생했습니다. 커밋하기 전에 충돌을 해결하세요.",
+ "This action will pull and push commits from and to \"{0}/{1}\".": "이 작업은 '{0}/{1}'을(를) 오가는 커밋을 풀/푸시합니다.",
+ "This is IRREVERSIBLE!\nThese files will be FOREVER LOST if you proceed.": "이 작업은 취소할 수 없습니다!\n계속하면 해당 파일이 영구적으로 손실됩니다.",
+ "This is IRREVERSIBLE!\nThis file will be FOREVER LOST if you proceed.": "이 작업은 취소할 수 없습니다!\n계속하면 해당 파일이 영구적으로 손실됩니다.",
+ "This repository has no remotes configured to fetch from.": "이 리포지토리에 페치할 원격 항목이 구성되어 있지 않습니다.",
+ "This will apply the worktree's changes to this repository and discard changes in the worktree.\nThis is IRREVERSIBLE!": "이 작업은 작업 트리의 변경 내용을 이 리포지토리에 적용하고 작업 트리의 변경 내용을 취소합니다.\n이 작업은 취소할 수 없습니다!",
+ "This will create a Git repository in \"{0}\". Are you sure you want to continue?": "'{0}'에서 Git 리포지토리가 만들어집니다. 계속하시겠습니까?",
+ "Too many changes were detected. Only the first {0} changes will be shown below.": "너무 많은 변경 내용이 감지되었습니다. 첫 번째 {0} 변경 내용만 아래에 표시됩니다.",
+ "Type Changed": "형식을 변경했습니다.",
+ "Unable to pull from remote repository due to conflicting tag(s): {0}. Would you like to resolve the conflict by replacing the local tag(s)?": "충돌하는 태그로 인해 원격 리포지토리에서 가져올 수 없음: {0}. 로컬 태그를 교체하여 충돌을 해결하시겠습니까?",
+ "Uncommitted Changes": "커밋되지 않은 변경 내용",
+ "Undo merge commit": "병합 커밋 실행 취소",
+ "Untracked": "추적되지 않음",
+ "Untracked Changes": "추적되지 않은 변경 사항",
+ "Update Git": "Git 업데이트",
+ "View Problems": "문제 보기",
+ "Workspace": "작업 영역",
+ "Workspace: {0}": "작업 영역: {0}",
+ "Worktree": "작업 트리",
+ "Worktree path": "작업 트리 경로",
+ "Would you like to add \"{0}\" to .gitignore?": "\"{0}\"을(를) .gitignore에 추가하시겠습니까?",
+ "Would you like to open the initialized repository, or add it to the current workspace?": "초기화된 리포지토리를 열거나 현재 작업 영역에 추가하겠습니까?",
+ "Would you like to open the initialized repository?": "초기화된 리포지토리를 여시겠습니까?",
+ "Would you like to open the repository, or add it to the current workspace?": "리포지토리를 열거나 현재 작업 영역에 추가하시겠습니까?",
+ "Would you like to open the repository?": "리포지토리를 여시겠습니까?",
+ "Would you like to publish this repository to continue working on it elsewhere?": "이 리포지토리를 게시하여 다른 곳에서 계속 작업하시겠습니까?",
+ "Would you like {0} to [periodically run \"git fetch\"]({1})?": "{0}에서 [\"git fetch\"]({1})을(를) 정기적으로 실행]하도록 하시겠습니까?",
+ "Yes": "예",
+ "Yes, Don't Show Again": "예, 다시 표시 안 함",
+ "You": "사용자",
+ "You are about to commit your changes without verification, this skips pre-commit hooks and can be undesirable.\n\nAre you sure to continue?": "확인 없이 변경 내용을 커밋하려고 합니다. 그러면 pre-commit 후크를 건너뛰고 바람직하지 않을 수 있습니다.\n\n계속하시겠습니까?",
+ "You are about to force push your changes, this can be destructive and could inadvertently overwrite changes made by others.\n\nAre you sure to continue?": "변경 내용을 강제로 푸시하려고 합니다. 이렇게 하면 다른 사람의 변경 내용을 무시하거나 의도하지 않게 덮어쓸 수 있습니다.\n\n계속하시겠습니까?",
+ "You are trying to commit to a protected branch and you might not have permission to push your commits to the remote.\n\nHow would you like to proceed?": "보호된 브랜치에 커밋하려고 하며 커밋을 원격으로 푸시할 수 있는 권한이 없을 수 있습니다.\n\n어떻게 진행하시겠습니까?",
+ "You can restore these files from the Recycle Bin.": "휴지통에서 이러한 파일을 복원할 수 있습니다.",
+ "You can restore these files from the Trash.": "휴지통에서 이러한 파일을 복원할 수 있습니다.",
+ "You can restore this file from the Recycle Bin.": "휴지통에서 이 파일을 복원할 수 있습니다.",
+ "You can restore this file from the Trash.": "휴지통에서 이 파일을 복원할 수 있습니다.",
+ "You cannot delete the worktree you are currently in. Please switch to the main repository first.": "현재 사용 중인 작업 트리는 삭제할 수 없습니다. 먼저 기본 리포지토리로 전환하세요.",
+ "You seem to have git \"{0}\" installed. Code works best with git >= 2": "Git \"{0}\"이(가) 설치된 것 같습니다. 코드는 2 이하의 Git에서 최적으로 작동합니다.",
+ "Your local changes to the following files would be overwritten by merge:\n {0}\n\nPlease stage, commit, or stash your changes in the repository before migrating changes.": "다음 파일에 대한 로컬 변경 내용은 병합을 통해 덮어쓰게 됩니다.\n {0}\n\n변경 내용을 마이그레이션하기 전에 리포지토리에서 변경 내용을 스테이징, 커밋 또는 스태시하세요.",
+ "Your local changes would be overwritten by checkout.": "체크 아웃하면 로컬 변경 내용을 덮어씁니다.",
+ "Your repository has no remotes configured to publish to.": "리포지토리에 게시하도록 구성된 원격이 없습니다.",
+ "Your repository has no remotes configured to pull from.": "리포지토리에 풀하도록 구성된 원격 항목이 없습니다.",
+ "Your repository has no remotes configured to push to.": "리포지토리에 푸시하도록 구성된 원격이 없습니다.",
+ "Your repository has no remotes.": "리포지토리에 원격 항목이 없습니다.",
+ "[main] Log level: {0}": "[main] 로그 수준: {0}",
+ "[main] Skipped found git in: \"{0}\"": "[main] “{0}”에서 찾은 Git 건너뜀",
+ "[main] Using git \"{0}\" from \"{1}\"": "[main] \"{0}\"에서 git \"{1}\"을(를) 사용하는 중",
+ "[main] Validating found git in: \"{0}\"": "[main] \"{0}\"에서 찾은 git 유효성을 검사하는 중",
+ "branches": "분기",
+ "in {0}": "{0} 내",
+ "no": "아니요",
+ "now": "지금",
+ "remote branches": "원격 분기",
+ "tags": "태그",
+ "yes": "예",
+ "{0} (Deleted)": "{0}(삭제됨)",
+ "{0} (Index)": "{0}(인덱스)",
+ "{0} (Intent to add)": "{0}(추가할 의도)",
+ "{0} (Ours)": "{0}(우리의 변경 내용)",
+ "{0} (Theirs)": "{0}(다른 사용자의 변경 내용)",
+ "{0} (Type changed)": "{0}(형식을 변경함)",
+ "{0} (Untracked)": "{0}(추적되지 않음)",
+ "{0} (Working Tree)": "{0}(작업 트리)",
+ "{0} ({1})": "{0} ({1})",
+ "{0} ({1}) ș {0} ({2})": "{0} ({1}) ș {0} ({2})",
+ "{0} Checkout detached...": "{0} 체크 아웃 분리됨...",
+ "{0} Commit": "{0} 커밋",
+ "{0} Commit & Push": "{0} 커밋 및 푸시",
+ "{0} Commit & Sync": "{0} 커밋 및 동기화",
+ "{0} Commit (Amend)": "{0} 커밋(수정)",
+ "{0} Continue": "{0} 계속",
+ "{0} Create new branch from...": "{0} 다음에서 새 분기 만들기...",
+ "{0} Create new branch...": "{0} 새 분기 만들기...",
+ "{0} Fetch all remotes": "{0} 모든 원격 가져오기",
+ "{0} Publish Branch/{Locked=\"Branch\"}Do not translate \"Branch\" as it is a git term": "{0} 게시 Branch",
+ "{0} Sync Changes{1}{2}": "{0} 변경 내용 동기화 {1}{2}",
+ "{0} characters over {1} in current line": "현재 줄에서 {0} 글자 초과 {1}",
+ "{0} day": "{0}일",
+ "{0} day ago": "{0}일 전",
+ "{0} days": "{0}일",
+ "{0} days ago": "{0}일 전",
+ "{0} deletions{1}": "{0}개 삭제{1}",
+ "{0} deletion{1}": "{0}개 삭제{1}",
+ "{0} file changed": "{0}개 파일이 변경됨",
+ "{0} files changed": "파일 {0}개를 변경함",
+ "{0} hour": "{0}시간",
+ "{0} hour ago": "{0}시간 전",
+ "{0} hours": "{0}시간",
+ "{0} hours ago": "{0}시간 전",
+ "{0} hr": "{0}시간",
+ "{0} hr ago": "{0}시간 전",
+ "{0} hrs": "{0}시간",
+ "{0} hrs ago": "{0}시간 전",
+ "{0} insertions{1}": "{0}개 삽입{1}",
+ "{0} insertion{1}": "{0}개 삽입{1}",
+ "{0} min": "{0}분",
+ "{0} min ago": "{0}분 전",
+ "{0} mins": "{0}분",
+ "{0} mins ago": "{0}분 전",
+ "{0} minute": "{0}분",
+ "{0} minute ago": "{0}분 전",
+ "{0} minutes": "{0}분",
+ "{0} minutes ago": "{0}분 전",
+ "{0} mo": "{0}개월",
+ "{0} mo ago": "{0}개월 전",
+ "{0} month": "{0}개월",
+ "{0} month ago": "{0}개월 전",
+ "{0} months": "{0}개월",
+ "{0} months ago": "{0}개월 전",
+ "{0} mos": "{0}개월",
+ "{0} mos ago": "{0}개월 전",
+ "{0} sec": "{0}초",
+ "{0} sec ago": "{0}초 전",
+ "{0} second": "{0}초",
+ "{0} second ago": "{0}초 전",
+ "{0} seconds": "{0}초",
+ "{0} seconds ago": "{0}초 전",
+ "{0} secs": "{0}초",
+ "{0} secs ago": "{0}초 전",
+ "{0} week": "{0}주",
+ "{0} week ago": "{0}주 전",
+ "{0} weeks": "{0}주",
+ "{0} weeks ago": "{0}주 전",
+ "{0} wk": "{0}주",
+ "{0} wk ago": "{0}주 전",
+ "{0} wks": "{0}주",
+ "{0} wks ago": "{0}주 전",
+ "{0} year": "{0}년",
+ "{0} year ago": "{0}년 전",
+ "{0} years": "{0}년",
+ "{0} years ago": "{0}년 전",
+ "{0} yr": "{0}년",
+ "{0} yr ago": "{0}년 전",
+ "{0} yrs": "{0}년",
+ "{0} yrs ago": "{0}년 전",
+ "{0} ș {1}": "{0} ș {1}"
+ },
+ "package": {
+ "colors.added": "추가된 리소스의 색입니다.",
+ "colors.blameEditorDecoration": "블레임 편집기 장식의 색입니다.",
+ "colors.conflict": "충돌이 발생한 리소스의 색상입니다.",
+ "colors.deleted": "삭제된 리소스의 색상입니다.",
+ "colors.ignored": "무시된 리소스의 색상입니다.",
+ "colors.incomingAdded": "추가된 들어오는 리소스의 색상입니다.",
+ "colors.incomingDeleted": "삭제된 수신 리소스의 색상.",
+ "colors.incomingModified": "수정된 들어오는 리소스의 색상입니다.",
+ "colors.incomingRenamed": "이름이 변경된 들어오는 리소스의 색상입니다.",
+ "colors.modified": "수정된 리소스의 색상입니다.",
+ "colors.renamed": "이름이 바뀌었거나 복사된 리소스의 색입니다.",
+ "colors.stageDeleted": "스테이징되어 있는 삭제된 리소스의 색입니다.",
+ "colors.stageModified": "스테이징되어 있는 수정된 리소스의 색입니다.",
+ "colors.submodule": "서브모듈 자원의 색상",
+ "colors.untracked": "추적되지 않은 리소스의 색상입니다.",
+ "command.addRemote": "원격 추가...",
+ "command.api.getRemoteSources": "원격 원본 가져오기",
+ "command.api.getRepositories": "Git 리포지토리",
+ "command.api.getRepositoryState": "리포지토리 상태 가져오기",
+ "command.blameToggleEditorDecoration": "Git 원인 편집기 장식 설정/해제",
+ "command.blameToggleStatusBarItem": "Git 원인 상태 표시줄 항목 토글",
+ "command.branch": "새 분기 만들기...",
+ "command.branchFrom": "타 분기에서 새 분기 만들기...",
+ "command.checkout": "다음으로 체크 아웃...",
+ "command.checkoutDetached": "체크 아웃(분리됨)...",
+ "command.cherryPick": "cherry-pick...",
+ "command.cherryPickAbort": "Cherry Pick 중단",
+ "command.clean": "변경 내용 취소",
+ "command.cleanAll": "모든 변경 내용 취소",
+ "command.cleanAllTracked": "추적된 모든 변경 내용 취소",
+ "command.cleanAllUntracked": "추적되지 않은 모든 변경 내용 취소",
+ "command.clone": "클론",
+ "command.cloneRecursive": "복제(재귀)",
+ "command.close": "리포지토리 닫기",
+ "command.closeAllDiffEditors": "모든 diff 편집기 닫기",
+ "command.closeAllUnmodifiedEditors": "수정되지 않은 편집기 모두 닫기",
+ "command.closeOtherRepositories": "다른 리포지토리 닫기",
+ "command.commit": "커밋",
+ "command.commitAll": "모두 커밋",
+ "command.commitAllAmend": "모두 커밋 (수정)",
+ "command.commitAllAmendNoVerify": "모두 커밋(수정, 확인 안 함)",
+ "command.commitAllNoVerify": "모두 커밋(확인 안 함)",
+ "command.commitAllSigned": "모두 커밋(로그오프됨)",
+ "command.commitAllSignedNoVerify": "모두 커밋(로그오프됨, 확인 안 함)",
+ "command.commitAmend": "커밋(수정)",
+ "command.commitAmendNoVerify": "커밋(수정, 확인 안 함)",
+ "command.commitEmpty": "빈 내용을 커밋합니다.",
+ "command.commitEmptyNoVerify": "빈 상태로 커밋(확인 안 함)",
+ "command.commitMessageAccept": "커밋 메시지 수락",
+ "command.commitMessageDiscard": "커밋 메시지 삭제",
+ "command.commitNoVerify": "커밋(확인 안 함)",
+ "command.commitSigned": "커밋(로그오프됨)",
+ "command.commitSignedNoVerify": "커밋(로그오프됨, 확인 안 함)",
+ "command.commitStaged": "스테이징된 항목 커밋",
+ "command.commitStagedAmend": "스테이징된 항목 커밋(수정)",
+ "command.commitStagedAmendNoVerify": "커밋 스테이징 됨(수정, 확인 안 함)",
+ "command.commitStagedNoVerify": "커밋 스테이징됨(확인 안 함)",
+ "command.commitStagedSigned": "스테이징된 항목 커밋(로그오프됨)",
+ "command.commitStagedSignedNoVerify": "커밋 스테이징됨(로그오프됨, 확인 안 함)",
+ "command.compareWithWorkspace": "작업 영역과 비교",
+ "command.continueInLocalClone": "리포지토리를 로컬로 복제하고 데스크톱에서 열기...",
+ "command.continueInLocalClone.qualifiedName": "새 로컬 복제본에서 계속 작업하기",
+ "command.createFrom": "다음에서 만들기...",
+ "command.createTag": "태그 만들기...",
+ "command.createWorktree": "작업 트리 만들기...",
+ "command.deleteBranch": "분기 삭제...",
+ "command.deleteRef": "삭제",
+ "command.deleteRemoteBranch": "원격 분기 삭제...",
+ "command.deleteRemoteTag": "원격 태그 삭제...",
+ "command.deleteTag": "태그 삭제...",
+ "command.deleteWorktree": "작업 트리 삭제...",
+ "command.deleteWorktree2": "작업 트리 삭제",
+ "command.fetch": "페치",
+ "command.fetchAll": "모든 원격에서 페치",
+ "command.fetchPrune": "페치(정리)",
+ "command.git.acceptMerge": "병합 완료",
+ "command.git.openMergeEditor": "병합 편집기에서 확인",
+ "command.git.runGitMerge": "Git과 충돌 계산",
+ "command.git.runGitMergeDiff3": "Git과 충돌 계산(Diff3)",
+ "command.graphCheckout": "체크 아웃",
+ "command.graphCheckoutDetached": "체크 아웃(분리됨)",
+ "command.graphCherryPick": "Cherry Pick",
+ "command.graphCompareRef": "비교 대상...",
+ "command.graphCompareWithMergeBase": "병합 기준과 비교",
+ "command.graphCompareWithRemote": "원격과 비교",
+ "command.graphDeleteBranch": "분기 삭제",
+ "command.graphDeleteTag": "태그 삭제",
+ "command.ignore": ".gitignore에 추가",
+ "command.init": "리포지토리 초기화",
+ "command.manageUnsafeRepositories": "안전하지 않은 리포지토리 관리",
+ "command.merge": "병합...",
+ "command.merge2": "병합",
+ "command.mergeAbort": "병합 중단",
+ "command.migrateWorktreeChanges": "작업 트리 변경 사항 마이그레이션...",
+ "command.openAllChanges": "모든 변경 내용 열기",
+ "command.openChange": "변경 내용 열기",
+ "command.openFile": "파일 열기",
+ "command.openHEADFile": "파일 열기(HEAD)",
+ "command.openRepositoriesInParentFolders": "부모 폴더에서 리포지토리 열기",
+ "command.openRepository": "리포지토리 열기",
+ "command.openWorktree": "현재 창에서 작업 트리 열기",
+ "command.openWorktreeInNewWindow": "새 창에서 작업 트리 열기",
+ "command.publish": "분기 게시...",
+ "command.pull": "풀",
+ "command.pullFrom": "가져올 위치...",
+ "command.pullRebase": "풀(다시 지정)",
+ "command.push": "푸시",
+ "command.pushFollowTags": "푸시(태그 팔로우)",
+ "command.pushFollowTagsForce": "푸시(태그 팔로우, 강제 적용)",
+ "command.pushForce": "푸시(강제)",
+ "command.pushTags": "푸시 태그",
+ "command.pushTo": "다음으로 푸시...",
+ "command.pushToForce": "...로 푸시 (강제)",
+ "command.rebase": "분기 다시 지정...",
+ "command.rebase2": "기준 주소 다시 지정",
+ "command.rebaseAbort": "다시 지정 중단",
+ "command.refresh": "새로 고침",
+ "command.removeRemote": "원격 제거",
+ "command.rename": "이름 바꾸기",
+ "command.renameBranch": "분기 이름 바꾸기...",
+ "command.reopenClosedRepositories": "닫힌 리포지토리 다시 열기...",
+ "command.restoreCommitTemplate": "커밋 템플릿 복원",
+ "command.revealFileInOS.linux": "상위 폴더 열기",
+ "command.revealFileInOS.mac": "Finder에 표시",
+ "command.revealFileInOS.windows": "파일 탐색기에 표시",
+ "command.revealInExplorer": "탐색기 보기에 표시",
+ "command.revertChange": "변경 내용 되돌리기",
+ "command.revertSelectedRanges": "선택한 범위 되돌리기",
+ "command.showOutput": "Git 출력 표시",
+ "command.stage": "변경 내용 스테이징",
+ "command.stageAll": "모든 변경 내용 스테이징",
+ "command.stageAllMerge": "모든 병합 변경 내용 스테이징",
+ "command.stageAllTracked": "추적된 모든 변경 내용 스테이징",
+ "command.stageAllUntracked": "추적되지 않은 모든 변경 내용 스테이징",
+ "command.stageBlock": "스테이지 블록",
+ "command.stageChange": "변경 내용 스테이징",
+ "command.stageSelectedRanges": "선택한 범위 스테이징",
+ "command.stageSelection": "스테이지 선택",
+ "command.stash": "스태시",
+ "command.stashApply": "스태시 적용하기...",
+ "command.stashApplyEditor": "스태시 적용하기",
+ "command.stashApplyLatest": "최신 스태시 적용하기",
+ "command.stashDrop": "스태시 삭제...",
+ "command.stashDropAll": "모든 스태시 삭제...",
+ "command.stashDropEditor": "스태시 삭제",
+ "command.stashIncludeUntracked": "스태시(미추적 포함)",
+ "command.stashPop": "스태시 꺼내기...",
+ "command.stashPopEditor": "스태시 표시",
+ "command.stashPopLatest": "최신 스태시 꺼내기",
+ "command.stashStaged": "스테이징된 스태시",
+ "command.stashView": "스태시 보기...",
+ "command.sync": "동기화",
+ "command.syncRebase": "동기화(다시 지정)",
+ "command.timelineCompareWithSelected": "선택한 항목과 비교",
+ "command.timelineCopyCommitId": "커밋 ID 복사",
+ "command.timelineCopyCommitMessage": "커밋 메시지 복사",
+ "command.timelineOpenDiff": "변경 내용 열기",
+ "command.timelineSelectForCompare": "비교를 위해 선택",
+ "command.undoCommit": "마지막 커밋 실행 취소",
+ "command.unstage": "변경 내용 스테이징 취소",
+ "command.unstageAll": "모든 변경 내용 스테이징 취소",
+ "command.unstageChange": "변경 사항 스테이징 취소",
+ "command.unstageSelectedRanges": "선택한 범위 스테이징 취소",
+ "command.viewChanges": "변경 내용 열기",
+ "command.viewCommit": "커밋 열기",
+ "command.viewStagedChanges": "스테이징된 변경 내용 열기",
+ "command.viewUntrackedChanges": "추적되지 않은 변경 내용 열기",
+ "config.allowForcePush": "강제 푸시(임대 사용 또는 사용 안 함)가 가능한지 여부를 제어합니다.",
+ "config.allowNoVerifyCommit": "pre-commit 및 commit-msg 후크를 실행하지 않는 커밋이 허용되는지를 제어합니다.",
+ "config.alwaysShowStagedChangesResourceGroup": "스테이징된 변경 내용 리소스 그룹을 항상 표시합니다.",
+ "config.alwaysSignOff": "모든 커밋에 대한 확인 플래그를 제어합니다.",
+ "config.autoRepositoryDetection": "리포지토리가 자동으로 감지되어야 하는 경우를 구성합니다.",
+ "config.autoRepositoryDetection.false": "자동 리포지토리 검사를 사용하지 않습니다.",
+ "config.autoRepositoryDetection.openEditors": "열려 있는 파일의 부모 폴더를 검사합니다.",
+ "config.autoRepositoryDetection.subFolders": "현재 열려 있는 폴더의 하위 폴더를 검사합니다.",
+ "config.autoRepositoryDetection.true": "현재 열려 있는 폴더의 하위 폴더와 열려 있는 파일의 부모 폴더를 모두 검사합니다.",
+ "config.autoStash": "풀하기 전에 변경 내용을 스태시하고 풀하는 데 성공한 후 변경 내용을 복원합니다.",
+ "config.autofetch": "true로 설정하면 커밋이 현재 Git 리포지토리의 기본 원격에서 자동으로 페치됩니다. 'all'로 설정하면 모든 원격에서 페치됩니다.",
+ "config.autofetchPeriod": "#git.autofetch#가 사용되는 경우 각 자동 git fetch 사이의 시간(초)입니다.",
+ "config.autorefresh": "자동 새로 고침을 사용할지 여부입니다.",
+ "config.blameEditorDecoration.enabled": "편집기 장식을 사용하여 편집기에서 git 블레임 정보를 표시할지 여부를 제어합니다.",
+ "config.blameEditorDecoration.template": "블레임 정보 편집기 장식의 템플릿입니다. 지원되는 변수:\r\n\r\n* `hash`: 커밋 해시\r\n\r\n* 'hashShort': '#git.commitShortHashLength#'에 따라 커밋 해시의 첫 번째 N 문자\r\n\r\n* 'subject': 커밋 메시지의 첫 줄\r\n\r\n* 'authorName': 작성자 이름\r\n\r\n* 'authorEmail': 작성자 이메일\r\n\r\n* 'authorDate': 작성자 날짜\r\n\r\n* 'authorDateAgo': 현재 날짜와 작성자 날짜 간의 시간 차이\r\n\r\n",
+ "config.blameStatusBarItem.enabled": "상태 표시줄에 블레임 정보를 표시할지 여부를 제어합니다.",
+ "config.blameStatusBarItem.template": "블레임 정보 상태 표시줄 항목에 대한 템플릿입니다. 지원되는 변수:\r\n\r\n* `hash`: 커밋 해시\r\n\r\n* 'hashShort': '#git.commitShortHashLength#'에 따라 커밋 해시의 첫 번째 N 문자\r\n\r\n* 'subject': 커밋 메시지의 첫 줄\r\n\r\n* 'authorName': 작성자 이름\r\n\r\n* 'authorEmail': 작성자 이메일\r\n\r\n* 'authorDate': 작성자 날짜\r\n\r\n* 'authorDateAgo': 현재 날짜와 작성자 날짜 간의 시간 차이\r\n\r\n",
+ "config.branchPrefix": "새 브랜치를 만들 때 사용되는 접두사입니다.",
+ "config.branchProtection": "보호된 브랜치 목록입니다. 기본적으로 변경 내용이 보호된 브랜치에 커밋되기 전에 프롬프트가 표시됩니다. 프롬프트는 '#git.branchProtectionPrompt#' 설정을 사용하여 제어할 수 있습니다.",
+ "config.branchProtectionPrompt": "변경 내용이 보호된 분기에 커밋되기 전에 프롬프트가 표시되는지 여부를 제어합니다.",
+ "config.branchProtectionPrompt.alwaysCommit": "항상 보호된 브랜치에 변경 내용을 커밋합니다.",
+ "config.branchProtectionPrompt.alwaysCommitToNewBranch": "변경 사항을 항상 새 브랜치에 커밋",
+ "config.branchProtectionPrompt.alwaysPrompt": "변경 내용이 보호된 분기에 커밋되기 전에 항상 프롬프트를 표시합니다.",
+ "config.branchRandomNameDictionary": "무작위로 생성된 분기 이름에 사용되는 사전 목록입니다. 각 값은 분기 이름의 세그먼트를 생성하는 데 사용되는 사전을 나타냅니다. 지원되는 사전: '형용사', '동물', '색상', '숫자'.",
+ "config.branchRandomNameDictionary.adjectives": "무작위 형용사",
+ "config.branchRandomNameDictionary.animals": "임의의 동물 이름",
+ "config.branchRandomNameDictionary.colors": "임의의 색상 이름",
+ "config.branchRandomNameDictionary.numbers": "100에서 999 사이의 난수",
+ "config.branchRandomNameEnable": "새 브랜치를 만들 때 임의 이름이 생성되는지 여부를 제어합니다.",
+ "config.branchSortOrder": "분기의 정렬 순서를 제어합니다.",
+ "config.branchValidationRegex": "새 분기 이름의 유효성을 검사하는 정규식입니다.",
+ "config.branchWhitespaceChar": "새 브랜치 이름의 공백을 바꾸고 임의로 생성된 브랜치 이름의 세그먼트를 구분할 문자입니다.",
+ "config.checkoutType": "'다음으로 체크 아웃...'을 실행할 때 나열되는 Git 참조의 형식을 제어합니다.",
+ "config.checkoutType.local": "로컬 분기",
+ "config.checkoutType.remote": "원격 분기",
+ "config.checkoutType.tags": "태그",
+ "config.closeDiffOnOperation": "변경 내용을 스태시, 커밋, 삭제, 스테이징 또는 스테이징 해제할 때 diff 편집기를 자동으로 닫을지 여부를 제어합니다.",
+ "config.commandsToLog": "`stdout`를 [git output](command:git.showOutput)에 기록하는 git 명령(예: 커밋, 푸시) 목록입니다. git 명령에 클라이언트 측 후크가 구성된 경우 클라이언트 측 후크의 `stdout`도 [git output](command:git.showOutput)에 기록됩니다.",
+ "config.commitShortHashLength": "커밋 짧은 해시의 길이를 제어합니다.",
+ "config.confirmEmptyCommits": "'Git: Commit Empty' 명령에 대한 빈 항목 생성 커밋을 항상 확인합니다.",
+ "config.confirmForcePush": "강제 푸시하기 전에 확인을 요청할지 여부를 제어합니다.",
+ "config.confirmNoVerifyCommit": "확인하지 않고 커밋하기 전에 확인을 요청할지를 제어합니다.",
+ "config.confirmSync": "Git 리포지토리를 동기화하기 전에 확인합니다.",
+ "config.countBadge": "Git 개수 배지를 제어합니다.",
+ "config.countBadge.all": "모든 변경 내용을 계산합니다.",
+ "config.countBadge.off": "카운터를 끕니다.",
+ "config.countBadge.tracked": "추적된 변경 내용만 계산합니다.",
+ "config.decorations.enabled": "Git에서 색과 배지를 탐색기와 열려 있는 편집기 뷰에 적용하는지 여부를 제어합니다.",
+ "config.defaultBranchName": "새 Git 리포지토리를 초기화할 때 기본 분기(예: main, trunk, development)의 이름입니다. 빈 값으로 설정하면 Git에 구성된 기본 분기 이름이 사용됩니다. **참고:** Git 버전 `2.28.0` 이상이 필요합니다.",
+ "config.defaultCloneDirectory": "Git 리포지토리를 복제할 기본 위치입니다.",
+ "config.detectSubmodules": "Git 하위 모듈을 자동으로 검색할지 여부를 제어합니다.",
+ "config.detectSubmodulesLimit": "Git submodules 검출 개수의 제한을 제어합니다.",
+ "config.detectWorktrees": "Git 작업 트리를 자동으로 검색할지 여부를 제어합니다.",
+ "config.detectWorktreesLimit": "검색된 Git 작업 트리의 제한을 제어합니다.",
+ "config.diagnosticsCommitHook.enabled": "커밋하기 전에 해결되지 않은 진단을 확인할지 여부를 제어합니다.",
+ "config.diagnosticsCommitHook.sources": "커밋하기 전에 고려할 원본 목록(**항목**) 및 최소 심각도(**값**)를 제어합니다. **참고:** 특정 원본의 진단을 무시하려면 원본을 목록에 추가하고 최소 심각도를 '없음'으로 설정합니다.",
+ "config.discardAllScope": "`모든 변경 내용 취소` 명령으로 취소되는 변경 내용을 제어합니다. `all`이면 모든 변경 내용을 취소합니다. `tracked`이면 추적된 파일만 취소합니다. `prompt`이면 작업을 실행할 때마다 프롬프트 대화 상자를 표시합니다.",
+ "config.discardUntrackedChangesToTrash": "추적되지 않은 변경 내용을 삭제할 때 파일을 영구적으로 삭제하는 대신 휴지통(Windows), 휴지통(macOS, Linux)으로 이동할지 여부를 제어합니다. **참고:** 이 설정은 원격에 연결되거나 Linux에서 스냅 패키지로 실행할 경우에는 영향을 주지 않습니다.",
+ "config.enableCommitSigning": "GPG, X.509 또는 SSH로 서명 커밋을 사용합니다.",
+ "config.enableSmartCommit": "단계적 변경 사항이 없는 경우 모든 변경 사항을 저장합니다.",
+ "config.enableStatusBarSync": "Git Sync 명령이 상태 표시줄에 표시되는지 여부를 제어합니다.",
+ "config.enabled": "Git을 사용하도록 설정했는지 여부입니다.",
+ "config.experimental.installGuide": "Git 설정 흐름에 대한 실험적 개선 사항입니다.",
+ "config.fetchOnPull": "사용하도록 설정하면 풀할 때 모든 분기를 페치합니다. 그렇지 않으면 현재 분기만 페치합니다.",
+ "config.followTagsWhenSync": "동기화 명령을 실행할 때 주석이 추가된 모든 태그를 푸시합니다.",
+ "config.ignoreLegacyWarning": "레거시 Git 경고를 무시합니다.",
+ "config.ignoreLimitWarning": "리포지토리에 변경 내용이 너무 많으면 경고를 무시합니다.",
+ "config.ignoreMissingGitWarning": "Git이 없으면 경고를 무시합니다.",
+ "config.ignoreRebaseWarning": "풀할 때 분기가 다시 지정된 것 같은 경우 경고를 무시합니다.",
+ "config.ignoreSubmodules": "파일 트리의 하위 모듈 수정 내용을 무시합니다.",
+ "config.ignoreWindowsGit27Warning": "Windows에 Git 2.25~2.26이 설치되어 있는 경우 경고를 무시합니다.",
+ "config.ignoredRepositories": "무시할 Git 리포지토리의 목록입니다.",
+ "config.inputValidation": "커밋 메시지 입력 유효성 검사 진단을 표시할지 여부를 제어합니다.",
+ "config.inputValidationLength": "경고 표시를 위한 커밋 메시지 길이 임계값을 제어합니다.",
+ "config.inputValidationSubjectLength": "경고 표시를 위한 커밋 메시지 제목 길이 임계값을 제어합니다. `#git.inputValidationLength#` 값을 상속하려면 이 임계값 설정을 해제하세요.",
+ "config.mergeEditor": "현재 충돌 된 파일의 병합 편집기를 엽니다.",
+ "config.openAfterClone": "복제 후에 자동으로 리포지토리를 열지 여부를 제어합니다.",
+ "config.openAfterClone.always": "항상 현재 창에서 엽니다.",
+ "config.openAfterClone.alwaysNewWindow": "항상 새 창에서 엽니다.",
+ "config.openAfterClone.prompt": "항상 동작을 확인합니다.",
+ "config.openAfterClone.whenNoFolderOpen": "열려 있는 폴더가 없는 경우에만 현재 창에서 엽니다.",
+ "config.openDiffOnClick": "변경을 클릭할 때 Diff 편집기가 열릴지 여부를 제어합니다. 그렇지 않으면 일반 편집기가 열립니다.",
+ "config.openRepositoryInParentFolders": "작업 영역 또는 열린 파일의 부모 폴더에 있는 리포지토리를 열지 여부를 제어합니다.",
+ "config.openRepositoryInParentFolders.always": "항상 작업 영역의 부모 폴더에서 리포지토리를 열거나 파일을 엽니다.",
+ "config.openRepositoryInParentFolders.never": "작업 영역의 부모 폴더에서 리포지토리를 열거나 파일을 열지 마세요.",
+ "config.openRepositoryInParentFolders.prompt": "작업 영역의 부모 폴더에서 리포지토리를 열거나 파일을 열기 전에 프롬프트를 표시합니다.",
+ "config.optimisticUpdate": "Git 명령을 실행한 후 소스 제어 뷰의 상태를 낙관적으로 업데이트할지 여부를 제어합니다.",
+ "config.path": "git 실행 파일의 경로 및 파일 이름입니다(예: `C:\\Program Files\\Git\\bin\\git.exe`(Windows)). 조회할 여러 경로를 포함하는 문자열 값의 배열일 수도 있습니다.",
+ "config.postCommitCommand": "커밋이 성공한 후 git 명령을 실행합니다.",
+ "config.postCommitCommand.none": "커밋 후 명령을 실행하지 않습니다.",
+ "config.postCommitCommand.push": "커밋이 성공한 후 'git push'를 실행합니다.",
+ "config.postCommitCommand.sync": "커밋이 성공한 후 'git pull' 및 'git push'를 실행합니다.",
+ "config.promptToSaveFilesBeforeCommit": "Git가 제출(commit)하기 전에 저장되지 않은 파일을 검사할지를 제어합니다.",
+ "config.promptToSaveFilesBeforeCommit.always": "저장되지 않은 파일이 있는지 확인합니다.",
+ "config.promptToSaveFilesBeforeCommit.never": "이 검사를 사용하지 않도록 설정합니다.",
+ "config.promptToSaveFilesBeforeCommit.staged": "저장되지 않은 스테이징된 파일만 확인합니다.",
+ "config.promptToSaveFilesBeforeStash": "Git이 변경 사항을 스태시하기 전에 저장되지 않은 파일을 검사할지를 제어합니다.",
+ "config.promptToSaveFilesBeforeStash.always": "저장되지 않은 파일이 있는지 확인합니다.",
+ "config.promptToSaveFilesBeforeStash.never": "이 검사를 사용하지 않도록 설정합니다.",
+ "config.promptToSaveFilesBeforeStash.staged": "저장되지 않은 스테이징된 파일만 확인합니다.",
+ "config.pruneOnFetch": "페치할 때 정리합니다.",
+ "config.publishBeforeContinueOn": "Git 리포지토리에서 계속 작업을 사용할 때 게시되지 않은 Git 상태를 게시할지 여부를 제어합니다.",
+ "config.publishBeforeContinueOn.always": "Git 리포지토리에서 계속 작업을 사용할 때 항상 게시되지 않은 Git 상태를 게시합니다.",
+ "config.publishBeforeContinueOn.never": "Git 리포지토리에서 계속 작업을 사용할 때 게시되지 않은 Git 상태를 게시하지 마세요.",
+ "config.publishBeforeContinueOn.prompt": "Git 리포지토리에서 계속 작업을 사용할 때 게시되지 않은 Git 상태를 게시하라는 메시지 표시",
+ "config.pullBeforeCheckout": "나가는 커밋이 없는 분기를 체크아웃하기 전에 빨리 감기할지 여부를 제어합니다.",
+ "config.pullTags": "풀할 때 모든 태그를 페치합니다.",
+ "config.rebaseWhenSync": "동기화 명령을 실행할 때 Git에서 다시 지정을 사용하게 합니다.",
+ "config.rememberPostCommitCommand": "커밋 후 실행된 마지막 git 명령을 기억하세요.",
+ "config.replaceTagsWhenPull": "풀 명령을 실행할 때 충돌이 발생할 경우 로컬 태그를 원격 태그로 자동으로 교체합니다.",
+ "config.repositoryScanIgnoredFolders": "`#git.autoRepositoryDetection#`이 `true` 또는 `subFolders`로 설정된 경우 Git 리포지토리를 검색하는 동안 무시되는 폴더 목록입니다.",
+ "config.repositoryScanMaxDepth": "`#git.autoRepositoryDetection#`이 `true` 또는 `subFolders`로 설정된 경우 Git 리포지토리에 대한 작업 영역 간 폴더를 스캔할 때 사용되는 깊이를 제어합니다. 제한 없이 '-1'로 설정할 수 있습니다.",
+ "config.requireGitUserConfig": "명시적 Git 사용자 구성을 요구할지 또는 누락된 경우 Git에서 추측하도록 허용할지를 제어합니다.",
+ "config.scanRepositories": "Git 리포지토리를 검색할 경로의 목록입니다.",
+ "config.showActionButton": "작업 단추가 원본 제어 뷰에 표시되는지 여부를 제어합니다.",
+ "config.showActionButton.commit": "로컬 분기에서 커밋할 준비가 된 파일을 수정한 경우 변경 내용을 커밋하는 작업 단추를 표시합니다.",
+ "config.showActionButton.publish": "추적 원격 분기가 없는 경우 로컬 분기를 게시하는 작업 단추를 표시합니다.",
+ "config.showActionButton.sync": "로컬 분기가 원격 분기 앞이나 뒤에 있을 때 변경 내용을 동기화하는 작업 단추를 표시합니다.",
+ "config.showCommitInput": "Git 소스 제어판에 커밋 입력을 표시할지 여부를 제어합니다.",
+ "config.showInlineOpenFileAction": "Git 변경점 보기에서 파일 열기 동작 줄을 표시할지의 여부를 제어합니다.",
+ "config.showProgress": "Git 작업에서 진행률을 표시할지 여부를 제어합니다.",
+ "config.showPushSuccessNotification": "푸시가 성공했을 때 알림을 표시할지 여부를 제어합니다.",
+ "config.showReferenceDetails": "Git 참조에 대한 마지막 커밋의 세부 정보를 checkout, branch 및 tag 선택기에 표시할지 여부를 제어합니다.",
+ "config.similarityThreshold": "추가/삭제된 파일 쌍의 변경 사항을 이름 변경으로 간주하기 위한 유사성 색인의 임계값(파일 크기와 비교한 추가/삭제 양)을 제어합니다. **참고:** Git 버전 `2.18.0` 이상이 필요합니다.",
+ "config.smartCommitChanges": "스마트 커밋에서 자동으로 스테이징되는 변경 사항을 제어합니다.",
+ "config.smartCommitChanges.all": "모든 변경 사항을 자동으로 스테이징합니다.",
+ "config.smartCommitChanges.tracked": "추적된 변경 사항만 자동으로 스테이징했습니다.",
+ "config.statusLimit": "Git 상태 명령에서 구문 분석할 수 있는 변경 내용의 수를 제한하는 방법을 제어합니다. 제한이 없는 경우 0으로 설정할 수 있습니다.",
+ "config.suggestSmartCommit": "스마트 커밋을 사용하도록 제안합니다(스테이징된 변경 사항이 없는 경우 모든 변경 사항 커밋).",
+ "config.supportCancellation": "동기화 작업을 실행할 때 사용자가 작업을 취소할 수 있도록 알림이 표시되는지 여부를 제어합니다.",
+ "config.terminalAuthentication": "통합 터미널에서 생성된 Git 프로세스의 인증 처리기로 VS Code를 사용할지를 제어합니다. 참고: 이 설정의 변경 내용을 적용하려면 터미널을 다시 시작해야 합니다.",
+ "config.terminalGitEditor": "통합 터미널에서 생성된 Git 프로세스에 대해 Git 편집기로 VS Code를 사용할지 여부를 제어합니다. 참고: 이 설정에서 변경 사항을 선택하려면 터미널을 다시 시작해야 합니다.",
+ "config.timeline.date": "타임라인 보기에서 항목에 사용할 날짜를 제어합니다.",
+ "config.timeline.date.authored": "작성 날짜 사용",
+ "config.timeline.date.committed": "커밋된 날짜 사용",
+ "config.timeline.showAuthor": "타임라인 보기에 커밋 작성자를 표시할지를 제어합니다.",
+ "config.timeline.showUncommitted": "타임라인 보기에서 커밋되지 않은 변경 내용을 표시할지 여부를 제어합니다.",
+ "config.untrackedChanges": "추적되지 않은 변경 내용의 작동 방식을 제어합니다.",
+ "config.untrackedChanges.hidden": "추적되지 않은 변경 내용이 숨겨지고 여러 작업에서 제외됩니다.",
+ "config.untrackedChanges.mixed": "추적 및 추적되지 않은 모든 변경 내용이 함께 표시되고 동일한 작업이 수행됩니다.",
+ "config.untrackedChanges.separate": "추적되지 않은 변경 내용은 소스 제어 보기에 별도로 표시됩니다. 또한 여러 작업에서 제외됩니다.",
+ "config.useCommitInputAsStashMessage": "커밋 입력 상자의 메시지를 기본 스태시 메시지로 사용할지 여부를 제어합니다.",
+ "config.useEditorAsCommitInput": "커밋 입력 상자에 메시지가 제공되지 않을 때마다 커밋 메시지를 작성하는 데 전체 텍스트 편집기를 사용할지 여부를 제어합니다.",
+ "config.useForcePushIfIncludes": "강제 푸시가 더 안전한 force-if-includes 변형을 사용하는지 여부를 제어합니다. 참고: 이 설정을 사용하려면 '#git.useForcePushWithLease#' 설정 및 Git 버전 '2.30.0' 이상이 필요합니다.",
+ "config.useForcePushWithLease": "강제 푸시가 좀 더 안전한 force-with-lease 변형을 사용하는지 여부를 제어합니다.",
+ "config.useIntegratedAskPass": "통합 버전을 사용하기 위해 GIT_ASKPASS를 덮어써야 하는지 여부를 제어합니다.",
+ "config.verboseCommit": "'#git.useEditorAsCommitInput#'이 사용하도록 설정된 경우 자세한 정보 표시 출력을 사용하도록 설정합니다.",
+ "description": "Git SCM 통합",
+ "displayName": "Git",
+ "submenu.branch": "분기",
+ "submenu.changes": "변경 사항",
+ "submenu.commit": "커밋",
+ "submenu.commit.amend": "수정",
+ "submenu.commit.signoff": "승인",
+ "submenu.explorer": "Git",
+ "submenu.pullpush": "풀, 푸시",
+ "submenu.remotes": "원격",
+ "submenu.stash": "스태시",
+ "submenu.tags": "태그",
+ "submenu.worktrees": "작업 트리",
+ "view.workbench.cloneRepository": "리포지토리를 로컬에서 복제할 수 있습니다.\r\n[리포지토리 복제](command:git.clone 'Git 확장이 활성화되면 리포지토리 복제')",
+ "view.workbench.learnMore": "VS Code에서 Git 및 소스 제어를 사용하는 방법에 대해 자세히 알아보려면 [Microsoft Docs](https://aka.ms/vscode-scm)를 참조하세요.",
+ "view.workbench.scm.closedRepositories": "이전에 닫힌 Git 리포지토리가 발견되었습니다.\r\n[닫힌 리포지토리 다시 열기](command:git.reopenClosedRepositories)\r\nVS Code에서 Git 및 소스 제어를 사용하는 방법에 대해 자세히 알아보려면 [Microsoft Docs](https://aka.ms/vscode-scm)를 참조하세요.",
+ "view.workbench.scm.closedRepository": "이전에 닫힌 Git 리포지토리가 발견되었습니다.\r\n[닫힌 리포지토리 다시 열기](command:git.reopenClosedRepositories)\r\nVS Code에서 Git 및 소스 제어를 사용하는 방법에 대해 자세히 알아보려면 [Microsoft Docs](https://aka.ms/vscode-scm)를 참조하세요.",
+ "view.workbench.scm.disabled": "Git 기능을 사용하려면 [설정](command:workbench.action.openSettings?%5B%22git.enabled%22%5D)에서 Git을 활성화하세요.\r\nVS Code에서 Git 및 소스 제어를 사용하는 방법에 대해 자세히 알아보려면 [Microsoft Docs](https://aka.ms/vscode-scm)를 참조하세요.",
+ "view.workbench.scm.empty": "Git 기능을 사용하려면 Git 리포지토리가 포함된 폴더를 열거나 URL에서 복제할 수 있습니다.\r\n[폴더 열기](command:vscode.openFolder)\r\n[리포지토리 복제](command:git.cloneRecursive)\r\nVS Code에서 Git 및 소스 제어를 사용하는 방법에 대해 자세히 알아보려면 [Microsoft Docs](https://aka.ms/vscode-scm)를 참조하세요.",
+ "view.workbench.scm.emptyWorkspace": "현재 열린 작업 영역에 Git 리포지토리가 포함된 폴더가 없습니다.\r\n[작업 영역에 폴더 추가](command:workbench.action.addRootFolder)\r\nVS Code에서 Git 및 소스 제어를 사용하는 방법에 대해 자세히 알아보려면 [Microsoft Docs](https://aka.ms/vscode-scm)를 참조하세요.",
+ "view.workbench.scm.folder": "현재 열린 폴더에 Git 리포지토리가 없습니다. Git에서 제공하는 소스 제어 기능을 사용하도록 설정할 리포지토리를 초기화할 수 있습니다.\r\n[리포지토리 초기화](command:git.init?%5Btrue%5D)\r\nVS Code에서 Git 및 소스 제어를 사용하는 방법에 대해 자세히 알아보려면 [Microsoft Docs](https://aka.ms/vscode-scm)를 참조하세요.",
+ "view.workbench.scm.missing": "인기 있는 소스 제어 시스템인 Git을 설치하여 코드 변경 내용을 추적하고 다른 사용자와 공동 작업합니다. [Git 가이드](https://aka.ms/vscode-scm)에서 자세히 알아보세요.",
+ "view.workbench.scm.missing.linux": "소스 제어는 설치 중인 Git에 따라 달라집니다.\r\n[Linux용 Git 다운로드](https://git-scm.com/download/linux)\r\n설치 후에는 [다시 로드하세요](command:workbench.action.reloadWindow)(또는 [문제를 해결하세요](command:git.showOutput)). 추가 원본 제어 공급자는 [Marketplace](command:workbench.extensions.search?%22%40category%3A%5C%22scm%20providers%5C%22%22)에서 설치할 수 있습니다.",
+ "view.workbench.scm.missing.mac": "[macOS용 GIT 다운로드](https://git-scm.com/download/mac)\r\n설치 후에는 [다시 로드하세요](command:workbench.action.reloadWindow)(또는 [문제를 해결하세요](command:git.showOutput)). 추가 원본 제어 공급자는 [Marketplace](command:workbench.extensions.search?%22%40category%3A%5C%22scm%20providers%5C%22%22)에서 설치할 수 있습니다.",
+ "view.workbench.scm.missing.windows": "[Windows용 GIT 다운로드](https://git-scm.com/download/win)\r\n설치 후에는 [다시 로드하세요](command:workbench.action.reloadWindow)(또는 [문제를 해결하세요](command:git.showOutput)). 추가 원본 제어 공급자는 [Marketplace](command:workbench.extensions.search?%22%40category%3A%5C%22scm%20providers%5C%22%22)에서 설치할 수 있습니다.",
+ "view.workbench.scm.repositoriesInParentFolders": "Git 리포지토리가 작업 영역의 부모 폴더 또는 열린 파일에서 발견되었습니다.\r\n[리포지토리 열기](command:git.openRepositoriesInParentFolders)\r\n[git.openRepositoryInParentFolders](command:workbench.action.openSettings?%5B%22git.openRepositoryInParentFolders%22%5D) 설정을 사용하여 작업 영역의 부모 폴더 또는 열린 파일의 Git 리포지토리를 열지 여부를 제어합니다. 자세한 내용은 [문서를 읽어보세요](https://aka.ms/vscode-git-repository-in-parent-folders).",
+ "view.workbench.scm.repositoryInParentFolders": "Git 리포지토리가 작업 영역의 부모 폴더 또는 열린 파일에서 발견되었습니다.\r\n[리포지토리 열기](command:git.openRepositoriesInParentFolders)\r\n[git.openRepositoryInParentFolders](command:workbench.action.openSettings?%5B%22git.openRepositoryInParentFolders%22%5D) 설정을 사용하여 작업 영역의 부모 폴더 또는 열린 파일의 Git 리포지토리를 열지 여부를 제어합니다. 자세한 내용은 [문서를 읽어보세요](https://aka.ms/vscode-git-repository-in-parent-folders).",
+ "view.workbench.scm.scanFolderForRepositories": "Git 리포지토리용 폴더 검색 중...",
+ "view.workbench.scm.scanWorkspaceForRepositories": "Git 리포지토리에 대한 작업 영역을 검색하는 중...",
+ "view.workbench.scm.unsafeRepositories": "검색된 Git 리포지토리는 폴더를 현재 사용자가 아닌 다른 사람이 소유하고 있으므로 잠재적으로 안전하지 않을 수 있습니다.\r\n[안전하지 않은 저장소 관리](command:git.manageUnsafeRepositories)\r\n안전하지 않은 리포지토리에 대해 자세히 알아보려면 [문서를 읽어보세요](https://aka.ms/vscode-git-unsafe-repository).",
+ "view.workbench.scm.unsafeRepository": "검색된 Git 리포지토리는 폴더를 현재 사용자가 아닌 다른 사람이 소유하고 있으므로 잠재적으로 안전하지 않습니다.\r\n[안전하지 않은 저장소 관리](command:git.manageUnsafeRepositories)\r\n안전하지 않은 리포지토리에 대해 자세히 알아보려면 [문서를 읽어보세요](https://aka.ms/vscode-git-unsafe-repository).",
+ "view.workbench.scm.workspace": "현재 열린 작업 영역에 Git 리포지토리가 포함된 폴더가 없습니다. Git에서 제공하는 소스 제어 기능을 사용하도록 설정할 폴더의 리포지토리를 초기화할 수 있습니다.\r\n[리포지토리 초기화](command:git.init)\r\nVS Code에서 Git 및 소스 제어를 사용하는 방법에 대해 자세히 알아보려면 [Microsoft Docs](https://aka.ms/vscode-scm)를 참조하세요."
+ }
+ }
+}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-ko/translations/extensions/vscode.github-authentication.i18n.json b/i18n/vscode-language-pack-ko/translations/extensions/vscode.github-authentication.i18n.json
new file mode 100644
index 0000000000..62f5418883
--- /dev/null
+++ b/i18n/vscode-language-pack-ko/translations/extensions/vscode.github-authentication.i18n.json
@@ -0,0 +1,47 @@
+{
+ "": [
+ "--------------------------------------------------------------------------------------------",
+ "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."
+ ],
+ "version": "1.0.0",
+ "contents": {
+ "bundle": {
+ "A reload is required for the fetch setting change to take effect.": "가져오기 설정 변경 내용을 적용하려면 다시 로드해야 합니다.",
+ "Apple": "Apple",
+ "Continue to GitHub": "GitHub로 계속 진행",
+ "Continue to GitHub to create a Personal Access Token (PAT)": "GitHub로 계속 진행하여 PAT(개인용 액세스 토큰) 만들기",
+ "Copy & Continue to {0}": "복사 후 계속하기 {0}",
+ "GitHub": "GitHub",
+ "GitHub Authentication - Reload required": "GitHub 인증 - 다시 로드 필요",
+ "GitHub Enterprise Server URI is not a valid URI: {0}": "GitHub Enterprise 서버 URI가 올바른 URI가 아닙니다. {0}",
+ "Google": "Google",
+ "Having trouble logging in? Would you like to try a different way? ({0})": "로그인하는 데 문제가 있나요? 다른 방법을 시도해 보시겠습니까?({0})",
+ "No": "아니요",
+ "Open [{0}]({0}) in a new tab and paste your one-time code: {1}/The [{0}]({0}) will be a url and the {1} will be a code, e.g. 123-456{Locked=\"[{0}]({0})\"}": "새 탭에서 [{0}]({0})을 열고 일회성 코드 {1}을(를) 붙여넣습니다.",
+ "Reload Window": "창 다시 로드",
+ "Sign in failed: {0}": "로그인 실패: {0}",
+ "Sign out failed: {0}": "로그아웃 실패: {0}",
+ "Signing in to {0}.../The {0} will be a url, e.g. github.com": "{0}에 로그인하는 중...",
+ "To finish authenticating, navigate to GitHub and paste in the above one-time code.": "인증을 완료하려면 GitHub로 이동하여 위의 일회용 코드를 붙여넣으세요.",
+ "To finish authenticating, navigate to GitHub to create a PAT then paste the PAT into the input box.": "인증을 완료하려면 GitHub로 이동하여 PAT를 만든 다음 입력 상자에 PAT를 붙여넣습니다.",
+ "Yes": "예",
+ "You have not yet finished authorizing this extension to use GitHub. Would you like to try a different way? ({0})": "이 확장 프로그램이 GitHub를 사용하도록 승인하는 작업을 아직 완료하지 않았습니다. 다른 방법을 시도해 보시겠습니까?({0})",
+ "Your Code: {0}/The {0} will be a code, e.g. 123-456": "코드: {0}",
+ "device code": "디바이스 코드",
+ "local server": "로컬 서버",
+ "personal access token": "개인용 액세스 토큰",
+ "url handler": "URL 처리기"
+ },
+ "package": {
+ "config.github-authentication.preferDeviceCodeFlow.description": "true면 사용 가능한 다른 흐름 대신 인증을 위해 디바이스 코드 흐름의 우선 순위를 지정합니다. 이는 로컬 서버 또는 URL 처리기 흐름이 예상대로 작동하지 않을 수 있는 WSL과 같은 환경에 유용합니다.",
+ "config.github-authentication.useElectronFetch.description": "true이면 HTTP 요청에 Electron의 기본 제공 가져오기 함수를 사용합니다. false이면 Node.js 전역 가져오기 함수를 사용합니다. 이 설정은 Electron 환경에서 실행되는 경우에만 적용됩니다. **참고:** 이 설정을 적용하려면 다시 시작해야 합니다.",
+ "config.github-enterprise.title": "GHE.com 및 GitHub Enterprise 서버 인증",
+ "config.github-enterprise.uri.description": "GHE.com 또는 GitHub Enterprise Server instance URI입니다.\r\n\r\n예제:\r\n* GHE.com: 'https://octocat.ghe.com`\r\n* GitHub Enterprise Server: 'https://github.octocat.com`\r\n\r\n> **참고:** 이 값은 _not_이(가) GitHub.com URI로 설정되어야 합니다. 계정이 GitHub.com 있거나 GitHub Enterprise 관리되는 사용자인 경우 추가 구성이 필요하지 않으며 GitHub에 로그인할 수 있습니다.",
+ "description": "GitHub 인증 공급자",
+ "displayName": "GitHub 인증"
+ }
+ }
+}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-ko/translations/extensions/vscode.github.i18n.json b/i18n/vscode-language-pack-ko/translations/extensions/vscode.github.i18n.json
new file mode 100644
index 0000000000..812308accf
--- /dev/null
+++ b/i18n/vscode-language-pack-ko/translations/extensions/vscode.github.i18n.json
@@ -0,0 +1,65 @@
+{
+ "": [
+ "--------------------------------------------------------------------------------------------",
+ "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."
+ ],
+ "version": "1.0.0",
+ "contents": {
+ "bundle": {
+ "Checkout on vscode.dev": "vscode.dev 체크 아웃",
+ "Commit Changes": "변경 내용 커밋",
+ "Copy Anyway": "그래도 복사",
+ "Copy vscode.dev Link": "vscode.dev 링크 복사",
+ "Create Fork": "포크 만들기",
+ "Create GitHub fork": "GitHub 포크 만들기",
+ "Create PR": "PR 만들기",
+ "Creating GitHub Pull Request...": "GitHub 끌어오기 요청을 만드는 중...",
+ "Creating first commit": "첫 번째 커밋을 만드는 중",
+ "Forking \"{0}/{1}\"...": "“{0}/{1}”을(를) 포크하는 중...",
+ "Learn More": "더 알아보기",
+ "Log level: {0}": "로그 수준: {0}",
+ "No": "아니요",
+ "No GitHub remotes found that contain this commit.": "이 커밋을 포함하는 GitHub 원격을 찾을 수 없습니다.",
+ "No template": "템플릿 없음",
+ "Open PR": "PR 열기",
+ "Open on GitHub": "GitHub에서 열기",
+ "Pick a folder to publish to GitHub": "GitHub에 게시할 폴더 선택",
+ "Publish Branch & Copy Link": "분기 게시 및 링크 복사",
+ "Publishing to a private GitHub repository": "프라이빗 GitHub 리포지토리에 게시하는 중",
+ "Publishing to a public GitHub repository": "퍼블릭 GitHub 리포지토리에 게시하는 중",
+ "Pull Changes & Copy Link": "변경 내용 끌어오기 및 링크 복사",
+ "Push Commits & Copy Link": "푸시 커밋 및 링크 복사",
+ "Pushing changes...": "변경 내용을 푸시하는 중...",
+ "Select the Pull Request template": "끌어오기 요청 템플릿 선택",
+ "Select which files should be included in the repository.": "리포지토리에 포함할 파일을 선택합니다.",
+ "Successfully published the \"{0}\" repository to GitHub.": "“{0}” 리포지토리를 GitHub에 게시했습니다.",
+ "The PR \"{0}/{1}#{2}\" was successfully created on GitHub.": "GitHub에 “{0}/{1}#{2}” PR을 만들었습니다.",
+ "The current branch has unpublished commits. Would you like to push your commits before copying a link?": "현재 분기에 게시되지 않은 커밋이 있습니다. 링크를 복사하기 전에 커밋을 푸시하시겠습니까?",
+ "The current branch is not published to the remote. Would you like to publish your branch before copying a link?": "현재 분기가 원격에 게시되지 않았습니다. 링크를 복사하기 전에 분기를 게시하시겠습니까?",
+ "The current branch is not up to date. Would you like to pull before copying a link?": "현재 분기가 최신이 아닙니다. 링크를 복사하기 전에 당기시겠습니까?",
+ "The current file has uncommitted changes. Please commit your changes before copying a link.": "현재 파일에 커밋되지 않은 변경 내용이 있습니다. 링크를 복사하기 전에 변경 내용을 커밋하세요.",
+ "The fork \"{0}\" was successfully created on GitHub.": "GitHub에 “{0}” 포크를 만들었습니다.",
+ "Uploading files": "파일을 업로드하는 중",
+ "You don't have permissions to push to \"{0}/{1}\" on GitHub. Would you like to create a fork and push to it instead?": "GitHub의 “{0}/{1}”(으)로 푸시할 권한이 없습니다. 대신 포크를 만들어 해당 포크로 푸시할까요?",
+ "Your push to \"{0}/{1}\" was rejected by GitHub because push protection is enabled and one or more secrets were detected.": "푸시 보호가 활성화되어 있고 하나 이상의 비밀이 검색되었기 때문에 \"{0}/{1}\"에 대한 푸시가 GitHub에서 거부되었습니다.",
+ "{0} Open on GitHub": "GitHub에서 열기 {0}"
+ },
+ "package": {
+ "command.copyVscodeDevLink": "vscode.dev 링크 복사",
+ "command.openOnGitHub": "GitHub에서 열기",
+ "command.openOnVscodeDev": "vscode.dev에서 열기",
+ "command.publish": "GitHub에 게시",
+ "config.branchProtection": "GitHub 리포지토리에 대한 리포지토리 규칙을 쿼리할지 여부를 제어합니다.",
+ "config.gitAuthentication": "VS Code 내에서 Git 명령에 대해 자동 GitHub 인증을 사용하도록 설정할지 여부를 제어합니다.",
+ "config.gitProtocol": "GitHub 리포지토리를 복제하는 데 사용되는 프로토콜 제어",
+ "config.showAvatar": "다양한 호버에 커밋 작성자 GitHub 아바타를 표시할지 여부를 제어합니다(예: Git 블레임, Timeline, Source Control Graph 등).",
+ "description": "VS Code용 GitHub 기능",
+ "displayName": "GitHub",
+ "welcome.publishFolder": "이 폴더를 GitHub 리포지토리에 직접 게시할 수 있습니다. 게시된 후에는 Git 및 GitHub에서 제공하는 소스 제어 기능에 액세스할 수 있습니다.\r\n[$(github) GitHub에 게시](command:github.publish)",
+ "welcome.publishWorkspaceFolder": "작업 영역 폴더를 GitHub 리포지토리에 직접 게시할 수 있습니다. 게시된 후에는 Git 및 GitHub에서 제공하는 소스 제어 기능에 액세스할 수 있습니다.\r\n[$(github) GitHub에 게시](command:github.publish)"
+ }
+ }
+}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-ko/translations/extensions/vscode.go.i18n.json b/i18n/vscode-language-pack-ko/translations/extensions/vscode.go.i18n.json
index 6d26890a4f..68cfdc0152 100644
--- a/i18n/vscode-language-pack-ko/translations/extensions/vscode.go.i18n.json
+++ b/i18n/vscode-language-pack-ko/translations/extensions/vscode.go.i18n.json
@@ -9,8 +9,8 @@
"version": "1.0.0",
"contents": {
"package": {
- "displayName": "Go 언어 기본",
- "description": "Go 파일에서 구문 강조 표시 및 괄호 일치를 제공합니다."
+ "description": "Go 파일에서 구문 강조 표시 및 괄호 일치를 제공합니다.",
+ "displayName": "Go 언어 기본"
}
}
}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-ko/translations/extensions/vscode.groovy.i18n.json b/i18n/vscode-language-pack-ko/translations/extensions/vscode.groovy.i18n.json
index 96d7a4a0fb..9996f074bf 100644
--- a/i18n/vscode-language-pack-ko/translations/extensions/vscode.groovy.i18n.json
+++ b/i18n/vscode-language-pack-ko/translations/extensions/vscode.groovy.i18n.json
@@ -9,8 +9,8 @@
"version": "1.0.0",
"contents": {
"package": {
- "displayName": "Groovy 언어 기본",
- "description": "Groovy 파일에서 코드 조각, 구문 강조 표시, 괄호 일치 및 접기를 제공합니다."
+ "description": "Groovy 파일에서 코드 조각, 구문 강조 표시, 괄호 일치 및 접기를 제공합니다.",
+ "displayName": "Groovy 언어 기본"
}
}
}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-ko/translations/extensions/vscode.grunt.i18n.json b/i18n/vscode-language-pack-ko/translations/extensions/vscode.grunt.i18n.json
new file mode 100644
index 0000000000..d608946b12
--- /dev/null
+++ b/i18n/vscode-language-pack-ko/translations/extensions/vscode.grunt.i18n.json
@@ -0,0 +1,25 @@
+{
+ "": [
+ "--------------------------------------------------------------------------------------------",
+ "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."
+ ],
+ "version": "1.0.0",
+ "contents": {
+ "bundle": {
+ "Auto detecting Grunt for folder {0} failed with error: {1}', this.workspaceFolder.name, err.error ? err.error.toString() : 'unknown": "다음 오류로 {0} 폴더에 대한 Grunt를 자동으로 검색하지 못했습니다. {1}', this.workspaceFolder.name, err.error ? err.error.toString() : 'unknown",
+ "Go to output": "출력으로 이동",
+ "Problem finding grunt tasks. See the output for more information.": "까다로운 작업을 찾는 동안 문제가 발생했습니다. 자세한 내용은 출력을 참조하세요."
+ },
+ "package": {
+ "config.grunt.autoDetect": "Grunt 작업 검색의 활성화를 제어합니다. Grunt 작업 검색으로 인해 열려 있는 작업 영역의 파일이 실행될 수 있습니다.",
+ "description": "VS Code에 Grunt 기능을 추가할 확장입니다.",
+ "displayName": "VS Code에 대한 Grunt 지원",
+ "grunt.taskDefinition.args.description": "Grunt 작업에 전달할 명령줄 인수",
+ "grunt.taskDefinition.file.description": "작업을 제공하는 Grunt 파일이며 생략할 수 있습니다.",
+ "grunt.taskDefinition.type.description": "사용자 지정할 Grunt 작업입니다."
+ }
+ }
+}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-ko/translations/extensions/vscode.gulp.i18n.json b/i18n/vscode-language-pack-ko/translations/extensions/vscode.gulp.i18n.json
new file mode 100644
index 0000000000..c142db7780
--- /dev/null
+++ b/i18n/vscode-language-pack-ko/translations/extensions/vscode.gulp.i18n.json
@@ -0,0 +1,24 @@
+{
+ "": [
+ "--------------------------------------------------------------------------------------------",
+ "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."
+ ],
+ "version": "1.0.0",
+ "contents": {
+ "bundle": {
+ "Auto detecting gulp for folder {0} failed with error: {1}', this.workspaceFolder.name, err.error ? err.error.toString() : 'unknown": "{0} 폴더에 대한 자동 gulp 검색이 실패했습니다(오류: {1}', this.workspaceFolder.name, err.error ? err.error.toString() : 'unknown).",
+ "Go to output": "출력으로 이동",
+ "Problem finding gulp tasks. See the output for more information.": "Gulp 작업을 찾는 데 문제가 있습니다. 자세한 내용은 출력을 참조하세요."
+ },
+ "package": {
+ "config.gulp.autoDetect": "Gulp 작업 검색의 활성화를 제어합니다. Gulp 작업 검색으로 인해 열려 있는 작업 영역의 파일이 실행될 수 있습니다.",
+ "description": "VSCode에 Gulp 기능을 추가할 확장입니다.",
+ "displayName": "VSCode에 대한 Gulp 지원",
+ "gulp.taskDefinition.file.description": "작업을 제공하는 Gulp 파일이며 생략할 수 있습니다.",
+ "gulp.taskDefinition.type.description": "사용자 지정할 Gulp 작업입니다."
+ }
+ }
+}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-ko/translations/extensions/vscode.handlebars.i18n.json b/i18n/vscode-language-pack-ko/translations/extensions/vscode.handlebars.i18n.json
index 4155ef1ee0..594d8c5cda 100644
--- a/i18n/vscode-language-pack-ko/translations/extensions/vscode.handlebars.i18n.json
+++ b/i18n/vscode-language-pack-ko/translations/extensions/vscode.handlebars.i18n.json
@@ -9,8 +9,8 @@
"version": "1.0.0",
"contents": {
"package": {
- "displayName": "Handlebars 언어 기본",
- "description": "Handlebars 파일에서 구문 강조 표시 및 괄호 일치를 제공합니다."
+ "description": "Handlebars 파일에서 구문 강조 표시 및 괄호 일치를 제공합니다.",
+ "displayName": "Handlebars 언어 기본"
}
}
}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-ko/translations/extensions/vscode.hlsl.i18n.json b/i18n/vscode-language-pack-ko/translations/extensions/vscode.hlsl.i18n.json
index 988bf9a84e..27b335199b 100644
--- a/i18n/vscode-language-pack-ko/translations/extensions/vscode.hlsl.i18n.json
+++ b/i18n/vscode-language-pack-ko/translations/extensions/vscode.hlsl.i18n.json
@@ -9,8 +9,8 @@
"version": "1.0.0",
"contents": {
"package": {
- "displayName": "HLSL 언어 기본 사항",
- "description": "HLSL 파일에서 구문 강조 표시 및 괄호 일치를 제공합니다."
+ "description": "HLSL 파일에서 구문 강조 표시 및 괄호 일치를 제공합니다.",
+ "displayName": "HLSL 언어 기본 사항"
}
}
}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-ko/translations/extensions/vscode.html-language-features.i18n.json b/i18n/vscode-language-pack-ko/translations/extensions/vscode.html-language-features.i18n.json
new file mode 100644
index 0000000000..42304c2802
--- /dev/null
+++ b/i18n/vscode-language-pack-ko/translations/extensions/vscode.html-language-features.i18n.json
@@ -0,0 +1,304 @@
+{
+ "": [
+ "--------------------------------------------------------------------------------------------",
+ "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."
+ ],
+ "version": "1.0.0",
+ "contents": {
+ "bundle": {
+ "\"store\" a boolean test for later evaluation in a guard or if().": "가드 또는 if()에서 나중에 평가하기 위한 부울 테스트를 \"저장\"합니다.",
+ "'from' expected": "'from' 필요",
+ "'in' expected": "'in'이 필요함",
+ "'through' or 'to' expected": "'through' 또는 'to' 필요",
+ "'{0}'": "'{0}'",
+ "( expected": "( 필요",
+ ") expected": ") 필요함",
+ "": "",
+ "@font-face": "@font-face",
+ "@font-face rule must define 'src' and 'font-family' properties": "@font-face 규칙은 'src' 및 'font-family' 속성을 정의해야 합니다.",
+ "@keyframes {0}": "@키프레임 {0}",
+ "A list of properties that are not validated against the `unknownProperties` rule.": "`unknownProperties` 규칙에 따라 유효성이 검사되지 않은 속성 목록입니다.",
+ "Adds quotes to a string.": "문자열에 따옴표를 추가합니다.",
+ "Also define the standard property '{0}' for compatibility": "호환성을 위해 표준 속성 '{0}'도 정의하세요.",
+ "Always define standard rule '@keyframes' when defining keyframes.": "키프레임을 정의할 때 항상 표준 규칙 '@keyframes'를 정의합니다.",
+ "Always include all vendor specific properties: Missing: {0}": "항상 모든 공급업체별 속성 포함: 누락: {0}",
+ "Always include all vendor specific rules: Missing: {0}": "항상 모든 공급업체별 규칙 포함: 누락: {0}",
+ "Appends a single value onto the end of a list.": "목록의 끝에 단일 값을 추가합니다.",
+ "Appends selectors to one another without spaces in between.": "사이에 공백 없이 선택기를 서로 더합니다.",
+ "Avoid using !important. It is an indication that the specificity of the entire CSS has gotten out of control and needs to be refactored.": "!important는 가급적 사용하지 않습니다. !important는 전체 CSS의 특수성이 통제되지 않아 리팩터링해야 함을 나타냅니다.",
+ "Avoid using 'float'. Floats lead to fragile CSS that is easy to break if one aspect of the layout changes.": "'float'는 가급적 사용하지 않습니다. Float를 사용하면 레이아웃의 한쪽이 바뀔 경우 CSS가 쉽게 깨질 수 있습니다.",
+ "Causes one or more rules to be emitted at the root of the document.": "하나 이상의 규칙이 문서의 루트에서 내보내지도록 합니다.",
+ "Changes one or more properties of a color.": "색 속성 한 개 이상을 변경합니다.",
+ "Changes the alpha component for a color.": "색상의 알파 구성 요소를 변경합니다.",
+ "Changes the hue of a color.": "색의 색상을 변경합니다.",
+ "Character entity representing '{0}'": "'{0}'을(를) 나타내는 문자 엔터티",
+ "Character entity representing '{0}', unicode equivalent '{1}'": "'{0}'을(를) 나타내는 문자 엔터티, 유니코드에 해당하는 '{1}'",
+ "Closing bracket expected.": "닫는 대괄호가 필요합니다.",
+ "Closing bracket missing.": "닫는 괄호가 없습니다.",
+ "Combines several lists into a single multidimensional list.": "여러 목록을 하나의 다차원 목록으로 결합합니다.",
+ "Configure": "구성",
+ "Converts a color into the format understood by IE filters.": "색을 IE 필터에서 이해하는 형식으로 변환합니다.",
+ "Converts a color to grayscale.": "색상을 회색조로 변환합니다.",
+ "Converts a string to lower case.": "문자열을 소문자로 변환합니다.",
+ "Converts a string to upper case.": "문자열을 대문자로 변환합니다.",
+ "Converts a unitless number to a percentage.": "단위 없는 숫자를 백분율로 변환합니다.",
+ "Creates a Color from hue, saturation, and lightness values.": "색조, 채도 및 밝기 값에서 색상을 만듭니다.",
+ "Creates a Color from hue, saturation, lightness, and alpha values.": "색조, 채도, 밝기 및 알파 값에서 색상을 만듭니다.",
+ "Creates a Color from hue, white, and black values.": "색상, 흰색 및 검은색 값으로 색을 만듭니다.",
+ "Creates a Color from lightness, a, and b values.": "밝기, a 및 b 값으로 색을 만듭니다.",
+ "Creates a Color from lightness, chroma, and hue values.": "밝기, 색 및 색상 값에서 색을 만듭니다.",
+ "Creates a Color from red, green, and blue values.": "빨간색, 녹색, 파란색 값으로 색을 만듭니다.",
+ "Creates a Color from red, green, blue, and alpha values.": "빨강, 녹색, 파랑 및 알파 값으로 색을 만듭니다.",
+ "Creates a Color from the hue, saturation, and lightness values of another Color.": "다른 색의 색상, 채도 및 밝기 값에서 색을 만듭니다.",
+ "Creates a Color from the hue, white, and black values of another Color.": "다른 색의 색상, 흰색 및 검은색 값으로 색을 만듭니다.",
+ "Creates a Color from the lightness, a, and b values of another Color.": "다른 색의 밝기, a 및 b 값으로 색을 만듭니다.",
+ "Creates a Color from the lightness, chroma, and hue values of another Color.": "다른 색의 밝기, 색 및 색상 값으로 색을 만듭니다.",
+ "Creates a Color from the red, green, and blue values of another Color.": "다른 색의 빨간색, 녹색 및 파란색 값으로 색을 만듭니다.",
+ "Creates a Color in a specific color space from red, green, and blue values.": "빨간색, 녹색 및 파란색 값으로 특정 색 공간에 색을 만듭니다.",
+ "Creates a Color in a specific color space from the red, green, and blue values of another Color.": "다른 색의 빨강, 녹색 및 파랑 값에서 특정 색 공간에 색을 만듭니다.",
+ "Defines complex operations that can be re-used throughout stylesheets.": "스타일시트 전체에서 재사용할 수 있는 복잡한 작업을 정의합니다.",
+ "Defines styles that can be re-used throughout the stylesheet with `@include`.": "`@include`를 사용하여 스타일시트 전체에서 다시 사용할 수 있는 스타일을 정의합니다.",
+ "Do not use duplicate style definitions": "중복된 스타일 정의를 사용하지 말 것",
+ "Do not use empty rulesets": "빈 규칙 집합을 사용하지 마세요.",
+ "Do not use width or height when using padding or border": "패딩 또는 테두리를 사용하는 경우 너비 또는 높이를 사용하지 않음",
+ "Dynamically calls a Sass function.": "Sass 함수를 동적으로 호출합니다.",
+ "Each loop that sets `$var` to each item in the list or map, then outputs the styles it contains using that value of `$var`.": "목록 또는 맵의 각 항목에 `$var`를 설정한 다음 `$var` 값을 사용하여 포함된 스타일을 출력하는 각 루프.",
+ "End tag name expected.": "종료 태그 이름이 필요합니다.",
+ "Exposes the details of Sass’s inner workings.": "Sass의 내부 작업에 대한 세부 정보를 공개합니다.",
+ "Extends $extendee with $extender within $selector.": "$selector 내에서 $extender로 $extendee를 확장합니다.",
+ "Extracts a substring from $string.": "$string에서 substring을 추출합니다.",
+ "Finds the maximum of several numbers.": "여러 숫자의 최대값을 찾습니다.",
+ "Finds the minimum of several numbers.": "여러 숫자 중 최소값을 찾습니다.",
+ "Fluidly scales one or more properties of a color.": "색의 속성 한 개 이상을 유동적으로 조정합니다.",
+ "Folding Region End": "접는 영역 끝",
+ "Folding Region Start": "폴딩 지역 시작",
+ "For loop that repeatedly outputs a set of styles for each `$var` in the `from/through` or `from/to` clause.": "`from/through` 또는 `from/to` 절에서 각 `$var`에 대한 스타일 세트를 반복적으로 출력하는 For 루프입니다.",
+ "Generates new colors based on existing ones, making it easy to build color themes.": "기존 색을 기반으로 새 색을 생성하여 색 테마를 쉽게 빌드할 수 있습니다.",
+ "Gets the blue component of a color.": "색상의 파란색 구성 요소를 가져옵니다.",
+ "Gets the green component of a color.": "색상의 녹색 구성 요소를 가져옵니다.",
+ "Gets the hue component of a color.": "색의 색상 구성 요소를 가져옵니다.",
+ "Gets the lightness component of a color.": "색상의 밝기 구성 요소를 가져옵니다.",
+ "Gets the opacity component of a color.": "색상의 불투명도 구성 요소를 가져옵니다.",
+ "Gets the red component of a color.": "색상의 빨간색 구성 요소를 가져옵니다.",
+ "Gets the saturation component of a color.": "색의 채도 구성 요소를 가져옵니다.",
+ "HTML Language Server": "HTML 언어 서버",
+ "Hex colors must consist of three, four, six or eight hex numbers": "16진수 색은 3개, 4개, 6개 또는 8개의 16진수로 구성되어야 합니다.",
+ "IE hacks are only necessary when supporting IE7 and older": "IE 핵은 IE7 이상을 지원할 때만 필요",
+ "Import statements do not load in parallel": "Import 문은 병렬로 로드되지 않음",
+ "Includes the body if the expression does not evaluate to `false` or `null`.": "식이 `false` 또는 `null`로 평가되지 않는 경우 본문을 포함합니다.",
+ "Includes the styles defined by another mixin into the current rule.": "다른 혼합에 의해 정의된 스타일을 현재 규칙에 포함합니다.",
+ "Increases or decreases one or more components of a color.": "색상의 하나 이상의 구성 요소를 늘리거나 줄입니다.",
+ "Inherits the styles of another selector.": "다른 선택기의 스타일을 상속합니다.",
+ "Inserts $insert into $string at $index.": "$insert를 $index의 $string에 삽입합니다.",
+ "Invalid number of parameters": "잘못된 매개 변수 개수",
+ "Joins together two lists into one.": "두 목록을 하나로 결합합니다.",
+ "Lets you access and modify values in lists.": "목록의 값에 액세스하고 수정할 수 있습니다.",
+ "Loads a Sass stylesheet and makes its mixins, functions, and variables available when this stylesheet is loaded with the @use rule.": "Sass 스타일시트를 로드하고, 이 스타일시트가 @use 규칙과 함께 로드될 때 해당 Mixin, 함수, 변수를 사용할 수 있게 합니다.",
+ "Loads mixins, functions, and variables from other Sass stylesheets as 'modules', and combines CSS from multiple stylesheets together.": "다른 Sass 스타일시트의 믹스인(mixin), 함수 및 변수를 '모듈'로 로드하고 여러 스타일시트의 CSS를 함께 결합합니다.",
+ "Makes a color darker.": "색상을 더 어둡게 만듭니다.",
+ "Makes a color less saturated.": "색을 채도를 낮춥니다.",
+ "Makes a color lighter.": "색상을 더 밝게 만듭니다.",
+ "Makes a color more opaque.": "색상을 더 불투명하게 만듭니다.",
+ "Makes a color more saturated.": "색의 채도를 올립니다.",
+ "Makes a color more transparent.": "색을 더 투명하게 만듭니다.",
+ "Makes it easy to combine, search, or split apart strings.": "문자열을 쉽게 결합, 검색 또는 분할합니다.",
+ "Makes it possible to look up the value associated with a key in a map, and much more.": "맵에서 키와 관련된 값 등을 조회할 수 있습니다.",
+ "Merges two maps together into a new map.": "두 맵을 새 맵으로 병합합니다.",
+ "Mix two colors together in a polar color space.": "극좌표 색 공간에서 두 색을 함께 섞습니다.",
+ "Mix two colors together in a rectangular color space.": "사각형 색 공간에서 두 색을 함께 섞습니다.",
+ "Mixes two colors together.": "두 색을 혼합합니다.",
+ "Nests selector beneath one another like they would be nested in the stylesheet.": "스타일시트에 중첩된 것처럼 선택기를 서로 중첩합니다.",
+ "No unit for zero needed": "영점 단위 필요 없음",
+ "Parses a selector into the format returned by &.": "선택기를 &에서 반환한 형식으로 구문 분석합니다.",
+ "Prints the value of an expression to the standard error output stream. Useful for debugging complicated Sass files.": "식의 값을 표준 오류 출력 스트림에 인쇄합니다. 복잡한 Sass 파일을 디버깅하는 데 유용합니다.",
+ "Prints the value of an expression to the standard error output stream. Useful for libraries that need to warn users of deprecations or recovering from minor mixin usage mistakes. Warnings can be turned off with the `--quiet` command-line option or the `:quiet` Sass option.": "식의 값을 표준 오류 출력 스트림에 인쇄합니다. 사용자에게 사용 중단을 경고하거나 사소한 Mixin 사용 실수로부터 복구해야 하는 라이브러리에 유용합니다. 경고는 `--quiet` 명령줄 옵션 또는 `:quiet` Sass 옵션을 사용하여 끌 수 있습니다.",
+ "Property is ignored due to the display.": "표시로 인해 속성이 무시됩니다.",
+ "Property is ignored due to the display. With 'display: block', vertical-align should not be used.": "디스플레이로 인해 속성이 무시됩니다. 'display: block'에서 세로 맞춤을 사용할 수 없습니다.",
+ "Provides access to Sass’s powerful selector engine.": "Sass의 강력한 선택기 엔진에 대한 액세스를 제공합니다.",
+ "Provides functions that operate on numbers.": "숫자에 대해 작동하는 함수를 제공합니다.",
+ "Removes quotes from a string.": "문자열에서 따옴표를 제거합니다.",
+ "Rename to '{0}'": "'{0}'(으)로 이름 바꾸기",
+ "Replaces $original with $replacement within $selector.": "$selector 내에서 $original을 $replacement로 바꿉니다.",
+ "Replaces the nth item in a list.": "목록의 n번째 항목을 바꿉니다.",
+ "Returns a list of all keys in a map.": "맵의 모든 키 목록을 반환합니다.",
+ "Returns a list of all values in a map.": "맵의 모든 값 목록을 반환합니다.",
+ "Returns a new map with keys removed.": "키가 제거된 새 맵을 반환합니다.",
+ "Returns a random number.": "난수를 반환합니다.",
+ "Returns a specific item in a list.": "목록의 특정 항목을 반환합니다.",
+ "Returns the absolute value of a number.": "숫자의 절대 값을 반환합니다.",
+ "Returns the complement of a color.": "색상의 보색을 반환합니다.",
+ "Returns the index of the first occurance of $substring in $string.": "$string에서 $substring이 처음 나타나는 인덱스를 반환합니다.",
+ "Returns the inverse of a color.": "색의 정반대 값을 반환합니다.",
+ "Returns the keywords passed to a function that takes variable arguments.": "가변 인수를 사용하는 함수에 전달된 키워드를 반환합니다.",
+ "Returns the length of a list.": "목록의 길이를 반환합니다.",
+ "Returns the number of characters in a string.": "문자열의 문자 수를 반환합니다.",
+ "Returns the position of a value within a list.": "목록 내 값 위치를 반환합니다.",
+ "Returns the separator of a list.": "목록의 구분 기호를 반환합니다.",
+ "Returns the simple selectors that comprise a compound selector.": "복합 선택자를 구성하는 단순 선택자를 반환합니다.",
+ "Returns the string representation of a value as it would be represented in Sass.": "Sass에 표현되는 대로의 값 문자열 표현을 반환합니다.",
+ "Returns the type of a value.": "값의 유형을 반환합니다.",
+ "Returns the unit(s) associated with a number.": "숫자와 연관된 단위를 반환합니다.",
+ "Returns the value in a map associated with a given key.": "지정된 키와 연결된 맵의 값을 반환합니다.",
+ "Returns whether $super matches all the elements $sub does, and possibly more.": "$super이(가) $sub가 일치하는 모든 요소 또는 더 많은 요소와 일치하는지 여부를 반환합니다.",
+ "Returns whether a feature exists in the current Sass runtime.": "현재 Sass 런타임에 기능이 있는지를 반환합니다.",
+ "Returns whether a function with the given name exists.": "주어진 이름의 함수가 존재하는지 여부를 반환합니다.",
+ "Returns whether a map has a value associated with a given key.": "맵에 지정된 키와 연결된 값이 있는지를 반환합니다.",
+ "Returns whether a mixin with the given name exists.": "주어진 이름을 가진 믹스인이 존재하는지 여부를 반환합니다.",
+ "Returns whether a number has units.": "숫자에 단위가 있는지 여부를 반환합니다.",
+ "Returns whether a variable with the given name exists in the current scope.": "지정된 이름의 변수가 현재 범위에 있는지 여부를 반환합니다.",
+ "Returns whether a variable with the given name exists in the global scope.": "지정된 이름의 변수가 전체 범위에 있는지 여부를 반환합니다.",
+ "Returns whether two numbers can be added, subtracted, or compared.": "두 숫자를 더하거나, 빼거나, 비교할 수 있는지 여부를 반환합니다.",
+ "Rounds a number down to the previous whole number.": "숫자를 이전 정수로 내림합니다.",
+ "Rounds a number to the nearest whole number.": "숫자를 가장 가까운 정수로 반올림합니다.",
+ "Rounds a number up to the next whole number.": "숫자를 다음 정수로 올림합니다.",
+ "Sass documentation": "Sass 설명서",
+ "Selector Specificity": "선택기 특이성",
+ "Selectors should not contain IDs because these rules are too tightly coupled with the HTML.": "이러한 규칙은 HTML과 긴밀하게 결합되므로 선택기에 ID를 포함하면 안 됩니다.",
+ "Simple HTML5 starting point": "간단한 HTML5 시작 지점",
+ "Start tag name expected.": "시작 태그 이름이 필요합니다.",
+ "Tag name must directly follow the open bracket.": "태그 이름은 여는 괄호 바로 뒤에 와야 합니다.",
+ "The universal selector (*) is known to be slow": "범용 선택기(*)는 느린 것으로 알려져 있습니다.",
+ "Throws the value of an expression as a fatal error with stack trace. Useful for validating arguments to mixins and functions.": "스택 추적에서 식 값을 오류로 throw합니다. 믹스인과 함수에 대한 인수의 유효성을 검사하는 데 유용합니다.",
+ "URI expected": "URI가 필요함",
+ "URL encodes a string": "URL은 문자열을 인코딩합니다.",
+ "Unexpected character in tag.": "태그에 필요하지 않은 문자가 있습니다.",
+ "Unifies two selectors to produce a selector that matches elements matched by both.": "두 선택기를 통합하여 둘 다와 일치하는 요소와 일치되는 선택기를 생성합니다.",
+ "Unknown at-rule.": "알 수 없는 @ 규칙입니다.",
+ "Unknown property.": "알 수 없는 속성입니다.",
+ "Unknown property: '{0}'": "알 수 없는 속성: '{0}'",
+ "Unknown vendor specific property.": "알 수 없는 공급업체 관련 속성입니다.",
+ "VS Code now has built-in support for auto-renaming tags. Do you want to enable it?": "VS Code에 이제 태그 이름 자동 바꾸기가 기본적으로 지원됩니다. 사용하도록 설정하시겠습니까?",
+ "When using a vendor-specific prefix also include the standard property": "공급업체별 접두사를 사용할 경우 표준 속성도 포함",
+ "When using a vendor-specific prefix make sure to also include all other vendor-specific properties": "공급업체별 접두사를 사용할 경우 다른 모든 공급업체별 속성도 포함해야 함",
+ "While loop that takes an expression and repeatedly outputs the nested styles until the statement evaluates to `false`.": "식을 사용하고 명령문이 'false'로 평가될 때까지 중첩된 스타일을 반복적으로 출력하는 While 루프입니다.",
+ "[ expected": "[ 필요",
+ "] expected": "] 필요",
+ "absolute value of a number": "숫자의 절대 값",
+ "arccosine - inverse of cosine function": "아크코사인 - 코사인 함수의 역함수",
+ "arcsine - inverse of sine function": "아크사인 - 사인 함수의 역함수",
+ "arctangent - inverse of tangent function": "아크탄젠트 - 탄젠트 함수의 역함수",
+ "argument from '{0}'": "'{0}'의 인수",
+ "at-rule or selector expected": "at-rule 또는 선택기가 필요함",
+ "at-rule unknown": "일반적으로 알 수 없음",
+ "bind the evaluation of a ruleset to each member of a list.": "규칙 집합의 평가를 목록의 각 멤버에 바인딩합니다.",
+ "calculates square root of a number": "숫자의 제곱근을 계산합니다.",
+ "colon expected": "콜론이 필요합니다.",
+ "comma expected": "쉼표 필요함",
+ "condition expected": "조건 필요",
+ "converts numbers from one type into another": "숫자를 한 유형에서 다른 유형으로 변환합니다.",
+ "converts to a %, e.g. 0.5 > 50%": "%로 변환(예: 0.5 > 50%)",
+ "cosine function": "코사인 함수",
+ "creates a #AARRGGBB": "#AARRGGBB 만들기",
+ "creates a color": "색을 만듦",
+ "css.builtin.lab": "css.builtin.lab",
+ "dot expected": "점 필요",
+ "escape string content": "이스케이프 문자열 내용",
+ "expression expected": "식 필요",
+ "first argument modulus second argument": "첫 번째 인수를 두 번째 인수로 나눈 나머지",
+ "first argument raised to the power of the second argument": "첫 번째 인수는 두 번째 인수의 거듭제곱입니다.",
+ "generate a list spanning a range of values": "값 범위에 걸친 목록 생성",
+ "identifier expected": "식별자 필요",
+ "identifier or variable expected": "식별자 또는 변수 예상",
+ "identifier or wildcard expected": "식별자 또는 와일드카드가 필요합니다.",
+ "inline-block is ignored due to the float. If 'float' has a value other than 'none', the box is floated and 'display' is treated as 'block'": "inline-block은 float로 인해 무시됩니다. 'float'에 'none' 이외의 값이 있는 경우 상자가 부동으로 표시되고 'display'가 'block'으로 처리됩니다.",
+ "inlines a resource and falls back to `url()`": "리소스를 인라인하고 `url()`'로 대체",
+ "media query expected": "미디어 쿼리 예상",
+ "number expected": "숫자 필요",
+ "operator expected": "연산자 필요",
+ "page directive or declaraton expected": "page 지시문 또는 선언 필요",
+ "parses a string to a color": "문자열을 색상으로 구문 분석",
+ "percentage expected": "백분율이 필요합니다.",
+ "property value expected": "속성 값 예상",
+ "remove or change the unit of a dimension": "차원의 단위를 제거 또는 변경",
+ "return `@color` 10% points darker": "`@color`를 10% 포인트 더 어둡게 반환",
+ "return `@color` 10% points less saturated": "`@color` 채도를 10% 포인트 낮추어 반환",
+ "return `@color` 10% points less transparent": "`@color`를 10% 포인트 덜 투명하게 반환",
+ "return `@color` 10% points lighter": "`@color`를 10% 포인트 더 밝게 반환",
+ "return `@color` 10% points more saturated": "`@color`의 채도를 10% 포인트 높여서 반환",
+ "return `@color` 10% points more transparent": "`@color`를 10% 포인트 더 투명하게 반환",
+ "return `@color` with 50% transparency": "50% 투명도로 `@color` 반환",
+ "return `@color` with a 10 degree larger in hue": "`@color`의 색상을 10도 더 크게 반환",
+ "return `@darkcolor` if `@color1 is> 43% luma` otherwise return `@lightcolor`, see notes": "`@color1이 > 43% luma`인 경우 `@darkcolor`를 반환하고 그렇지 않으면 `@lightcolor`를 반환합니다. 참고 사항을 참조하세요.",
+ "return a mix of `@color1` and `@color2`": "`@color1` 및 `@color2`의 혼합 반환",
+ "returns a grey, 100% desaturated color": "100% 채도를 낮춘 색인 회색을 반환",
+ "returns a value at the specified position in the list": "목록에서 지정한 위치에 있는 값 반환",
+ "returns one of two values depending on a condition.": "조건에 따라 두 값 중 하나를 반환합니다.",
+ "returns pi": "pi 반환",
+ "returns the `alpha` channel of `@color`": "`@color`의 `alpha` 채널을 반환합니다.",
+ "returns the `blue` channel of `@color`": "`@color`의 `blue` 채널을 반환합니다.",
+ "returns the `green` channel of `@color`": "`@color`의 `green` 채널 반환",
+ "returns the `hue` channel of `@color` in the HSL space": "HSL 공간에서 `@color`의 `hue` 채널 반환",
+ "returns the `hue` channel of `@color` in the HSV space": "HSV 공간에서 `@color`의 `hue` 채널을 반환합니다.",
+ "returns the `lightness` channel of `@color` in the HSL space": "HSL 공간에서 `@color`의 `lightness` 채널을 반환합니다.",
+ "returns the `luma` value (perceptual brightness) of `@color`": "`@color`의 `luma` 값(perceptual brightness) 반환",
+ "returns the `red` channel of `@color`": "`@color`의 `red` 채널 반환",
+ "returns the `saturation` channel of `@color` in the HSL space": "HSL 공간에서 `@color`의 `saturation` 채널을 반환합니다.",
+ "returns the `saturation` channel of `@color` in the HSV space": "HSV 공간에서 `@color`의 `saturation` 채널을 반환합니다.",
+ "returns the `value` channel of `@color` in the HSV space": "HSV 공간에서 `@color`의 `value` 채널을 반환합니다.",
+ "returns the lowest of one or more values": "하나 이상의 값 중 가장 낮은 값을 반환합니다.",
+ "returns the number of elements in a value list": "값 목록의 요소 수를 반환합니다.",
+ "rounds a number to a number of places": "숫자를 소수점 이하 특정 개수까지 반올림",
+ "rounds down to an integer": "정수로 반내림합니다.",
+ "rounds up to an integer": "정수로 반올림",
+ "selector expected": "선택기 예상",
+ "semi-colon expected": "세미콜론이 필요함",
+ "sine function": "사인 함수",
+ "string literal expected": "문자열 리터럴 필요",
+ "string replace": "문자열 바꾸기",
+ "tangent function": "탄젠트 함수",
+ "term expected": "용어 필요",
+ "unknown keyword": "알 수 없는 키워드",
+ "uri or string expected": "URI 또는 문자열이 필요합니다.",
+ "variable name expected": "변수 이름 필요",
+ "variable value expected": "변수 값 예상",
+ "whitespace expected": "공백 필요",
+ "wildcard expected": "와일드카드가 필요함",
+ "{ expected": "{ 필요",
+ "{0}, '{1}'": "{0}, '{1}'",
+ "} expected": "} 필요"
+ },
+ "package": {
+ "description": "HTML 및 Handlebar 파일에 대해 다양한 언어 지원을 제공합니다.",
+ "displayName": "HTML 언어 기능",
+ "html.autoClosingTags": "HTML 태그의 자동 닫기를 사용하거나 사용하지 않습니다.",
+ "html.autoCreateQuotes": "HTML 속성 할당을 위한 따옴표 자동 생성을 사용하도록/사용하지 않도록 설정합니다. 따옴표의 유형은 `#html.completion.attributeDefaultValue#`로 구성할 수 있습니다.",
+ "html.completion.attributeDefaultValue": "완료가 수락되는 경우 특성의 기본값을 제어합니다.",
+ "html.completion.attributeDefaultValue.doublequotes": "특성 값이 \"\"(으)로 설정됩니다.",
+ "html.completion.attributeDefaultValue.empty": "특성 값이 설정되지 않았습니다.",
+ "html.completion.attributeDefaultValue.singlequotes": "특성 값이 ''(으)로 설정되어 있습니다.",
+ "html.customData.desc": "[사용자 지정 데이터 형식](https://github.com/microsoft/vscode-html-languageservice/blob/master/docs/customData.md)에 따라 JSON 파일을 가리키는 상대 파일 경로의 목록입니다.\r\n\r\nVS Code는 시작 시 사용자 지정 데이터를 로드하여 JSON 파일에 지정하는 사용자 지정 HTML 태그, 특성 및 특성 값에 대한 HTML 지원을 향상합니다.\r\n\r\n파일 경로는 작업 영역에 상대적이며 작업 영역 폴더 설정만 고려됩니다.",
+ "html.format.contentUnformatted.desc": "쉼표로 분리된 태그 목록으로, 콘텐츠의 서식을 다시 지정해서는 안 됩니다. 'pre' 태그의 기본값은 'null'로 설정됩니다.",
+ "html.format.enable.desc": "기본 HTML 포맷터를 사용하거나 사용하지 않도록 설정합니다.",
+ "html.format.extraLiners.desc": "쉼표로 분리된 태그 목록으로 앞에 줄 바꿈을 추가로 넣어야 합니다. '\"head, body, /html\"'의 기본값은 'null'로 설정됩니다.",
+ "html.format.indentHandlebars.desc": "`{{#foo}}` 및 `{{/foo}}`를 서식 지정하고 들여쓰기합니다.",
+ "html.format.indentInnerHtml.desc": "'' 및 '' 섹션을 들여씁니다.",
+ "html.format.maxPreserveNewLines.desc": "청크 한 개에 유지할 수 있는 최대 줄 바꿈 수입니다. 무제한일 때는 'null'을 사용합니다.",
+ "html.format.preserveNewLines.desc": "요소 앞에 있는 기존 줄 바꿈을 유지해야 하는지 제어합니다. 요소 앞에만 적용되며 태그 안에서나 텍스트에는 적용되지 않습니다.",
+ "html.format.templating.desc": "django, erb, handlebars 및 php 템플릿 언어 태그를 사용합니다.",
+ "html.format.unformatted.desc": "쉼표로 분리된 태그 목록으로, 서식을 다시 지정해서는 안 됩니다. https://www.w3.org/TR/html5/dom.html#phrasing-content에 나열된 모든 태그의 기본값은 'null'로 설정됩니다.",
+ "html.format.unformattedContentDelimiter.desc": "이 문자열 간에 텍스트 콘텐츠를 함께 유지합니다.",
+ "html.format.wrapAttributes.alignedmultiple": "줄 길이를 초과하는 경우 줄 바꿈하여 특성을 세로로 정렬합니다.",
+ "html.format.wrapAttributes.auto": "줄 길이를 초과하는 경우에만 특성을 래핑합니다.",
+ "html.format.wrapAttributes.desc": "특성을 래핑합니다.",
+ "html.format.wrapAttributes.force": "첫 번째 특성을 제외한 각 특성을 래핑합니다.",
+ "html.format.wrapAttributes.forcealign": "첫 번째 특성을 제외한 각 특성을 래핑하고 정렬된 상태를 유지합니다.",
+ "html.format.wrapAttributes.forcemultiline": "각 특성을 래핑합니다.",
+ "html.format.wrapAttributes.preserve": "특성 줄 바꿈을 유지합니다.",
+ "html.format.wrapAttributes.preservealigned": "특성의 줄 바꿈을 유지하되 정렬합니다.",
+ "html.format.wrapAttributesIndentSize.desc": "래핑된 속성을 N자 이후로 들여씁니다. 기본 들여쓰기 크기를 사용하려면 'null'을 사용하세요. `#html.format.wrapAttributes#`가 `aligned`(정렬)로 설정된 경우 무시됩니다.",
+ "html.format.wrapLineLength.desc": "한 줄당 최대 문자 수입니다(0 = 사용 안 함).",
+ "html.hover.documentation": "가리킬 때 태그 및 특성 설명서를 표시합니다.",
+ "html.hover.references": "가리킬 때 MDN에 대한 참조를 표시합니다.",
+ "html.mirrorCursorOnMatchingTag": "일치하는 HTML 태그에서 미러링 커서를 활성화/비활성화합니다.",
+ "html.mirrorCursorOnMatchingTagDeprecationMessage": "사용되지 않으며, 대신 `editor.linkedEditing`이 사용됩니다.",
+ "html.suggest.hideEndTagSuggestions.desc": "기본 제공 HTML 언어 지원이 종료 태그를 제안할지 제어합니다. 사용하지 않도록 설정하면 ''과(와) 같은 종료 태그 완성이 표시되지 않습니다.",
+ "html.suggest.html5.desc": "기본으로 제공하는 HTML 언어 지원에서 HTML5 태그와 속성 및 값을 제안할지 여부를 제어합니다.",
+ "html.trace.server.desc": "VS Code와 HTML 언어 서버 간 통신을 추적합니다.",
+ "html.validate.scripts": "기본으로 제공하는 HTML 언어 지원에서 포함된 스크립트 유효성을 검사할지 여부를 제어합니다.",
+ "html.validate.styles": "기본으로 제공하는 HTML 언어 지원에서 포함된 스타일의 유효성을 검사할지 여부를 제어합니다."
+ }
+ }
+}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-ko/translations/extensions/vscode.html.i18n.json b/i18n/vscode-language-pack-ko/translations/extensions/vscode.html.i18n.json
index 9f30bc4797..bda6731ab8 100644
--- a/i18n/vscode-language-pack-ko/translations/extensions/vscode.html.i18n.json
+++ b/i18n/vscode-language-pack-ko/translations/extensions/vscode.html.i18n.json
@@ -9,8 +9,8 @@
"version": "1.0.0",
"contents": {
"package": {
- "displayName": "HTML 언어 기본 사항",
- "description": "HTML 파일에서 구문 강조 표시, 대괄호 일치 및 코드 조각 기능을 제공합니다."
+ "description": "HTML 파일에서 구문 강조 표시, 대괄호 일치 및 코드 조각 기능을 제공합니다.",
+ "displayName": "HTML 언어 기본 사항"
}
}
}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-ko/translations/extensions/vscode.ini.i18n.json b/i18n/vscode-language-pack-ko/translations/extensions/vscode.ini.i18n.json
index 8222ca89f6..14a67c6569 100644
--- a/i18n/vscode-language-pack-ko/translations/extensions/vscode.ini.i18n.json
+++ b/i18n/vscode-language-pack-ko/translations/extensions/vscode.ini.i18n.json
@@ -9,8 +9,8 @@
"version": "1.0.0",
"contents": {
"package": {
- "displayName": "Ini 언어 기본 사항",
- "description": "Ini 파일에서 구문 강조 표시 및 괄호 일치를 제공합니다."
+ "description": "Ini 파일에서 구문 강조 표시 및 괄호 일치를 제공합니다.",
+ "displayName": "Ini 언어 기본 사항"
}
}
}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-ko/translations/extensions/vscode.ipynb.i18n.json b/i18n/vscode-language-pack-ko/translations/extensions/vscode.ipynb.i18n.json
new file mode 100644
index 0000000000..e49a66930f
--- /dev/null
+++ b/i18n/vscode-language-pack-ko/translations/extensions/vscode.ipynb.i18n.json
@@ -0,0 +1,29 @@
+{
+ "": [
+ "--------------------------------------------------------------------------------------------",
+ "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."
+ ],
+ "version": "1.0.0",
+ "contents": {
+ "bundle": {
+ "Insert Image as Attachment": "이미지를 첨부 파일로 삽입"
+ },
+ "package": {
+ "addCellOutputToChat.title": "채팅에 셀 출력 추가",
+ "cleanInvalidImageAttachment.title": "잘못된 이미지 첨부 파일 참조 정리",
+ "copyCellOutput.title": "셀 출력 복사",
+ "description": "Jupyter의 .ipynb 노트북 파일 열기 및 읽기에 대한 기본 지원을 제공합니다",
+ "displayName": ".ipynb 지원",
+ "ipynb.experimental.serialization": "작업자 스레드에서 Jupyter Notebook을 직렬화하는 실험적 기능입니다.",
+ "ipynb.pasteImagesAsAttachments.enabled": "ipynb 노트북 파일의 Markdown 셀에 이미지 붙여넣기를 활성화/비활성화합니다. 붙여넣은 이미지는 셀에 첨부 파일로 삽입됩니다.",
+ "markdownAttachmentRenderer.displayName": "Markdown-It ipynb 셀 첨부 파일 렌더러",
+ "newUntitledIpynb.shortTitle": "Jupyter Notebook",
+ "newUntitledIpynb.title": "새 Jupyter Notebook",
+ "openCellOutput.title": "텍스트 편집기에서 셀 출력 열기",
+ "openIpynbInNotebookEditor.title": "Notebook 편집기에서 IPYNB 파일 열기"
+ }
+ }
+}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-ko/translations/extensions/vscode.jake.i18n.json b/i18n/vscode-language-pack-ko/translations/extensions/vscode.jake.i18n.json
new file mode 100644
index 0000000000..9c04cd7ec3
--- /dev/null
+++ b/i18n/vscode-language-pack-ko/translations/extensions/vscode.jake.i18n.json
@@ -0,0 +1,24 @@
+{
+ "": [
+ "--------------------------------------------------------------------------------------------",
+ "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."
+ ],
+ "version": "1.0.0",
+ "contents": {
+ "bundle": {
+ "Auto detecting Jake for folder {0} failed with error: {1}', this.workspaceFolder.name, err.error ? err.error.toString() : 'unknown": "폴더 {0}에 대해 자동으로 검색하지 못했습니다. {1}', this.workspaceFolder.name, err.error ? err.error.toString() : 'unknown",
+ "Go to output": "출력으로 이동",
+ "Problem finding jake tasks. See the output for more information.": "jake 작업을 찾는 데 문제가 있습니다. 자세한 내용은 출력을 참조하세요."
+ },
+ "package": {
+ "config.jake.autoDetect": "Jake 작업 검색의 사용 여부를 제어합니다. Jake 작업 검색으로 인해 열려 있는 작업 영역의 파일이 실행될 수 있습니다.",
+ "description": "VS Code에 Jake 기능을 추가할 확장입니다.",
+ "displayName": "VS Code에 대한 Jake 지원",
+ "jake.taskDefinition.file.description": "작업을 제공하는 Jake 파일이며 생략할 수 있습니다.",
+ "jake.taskDefinition.type.description": "사용자 지정할 Jake 작업입니다."
+ }
+ }
+}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-ko/translations/extensions/vscode.java.i18n.json b/i18n/vscode-language-pack-ko/translations/extensions/vscode.java.i18n.json
index b5e7748caa..27d0ca6cbf 100644
--- a/i18n/vscode-language-pack-ko/translations/extensions/vscode.java.i18n.json
+++ b/i18n/vscode-language-pack-ko/translations/extensions/vscode.java.i18n.json
@@ -9,8 +9,8 @@
"version": "1.0.0",
"contents": {
"package": {
- "displayName": "Java 언어 기본",
- "description": "Java 파일에서 코드 조각, 구문 강조 표시, 괄호 일치 및 접기를 제공합니다."
+ "description": "Java 파일에서 코드 조각, 구문 강조 표시, 괄호 일치 및 접기를 제공합니다.",
+ "displayName": "Java 언어 기본"
}
}
}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-ko/translations/extensions/vscode.javascript.i18n.json b/i18n/vscode-language-pack-ko/translations/extensions/vscode.javascript.i18n.json
index be5c282a8b..6074ec5dce 100644
--- a/i18n/vscode-language-pack-ko/translations/extensions/vscode.javascript.i18n.json
+++ b/i18n/vscode-language-pack-ko/translations/extensions/vscode.javascript.i18n.json
@@ -9,8 +9,8 @@
"version": "1.0.0",
"contents": {
"package": {
- "displayName": "JavaScript 언어 기본",
- "description": "JavaScript 파일에서 코드 조각, 구문 강조 표시, 괄호 일치 및 접기를 제공합니다."
+ "description": "JavaScript 파일에서 코드 조각, 구문 강조 표시, 괄호 일치 및 접기를 제공합니다.",
+ "displayName": "JavaScript 언어 기본"
}
}
}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-ko/translations/extensions/vscode.json-language-features.i18n.json b/i18n/vscode-language-pack-ko/translations/extensions/vscode.json-language-features.i18n.json
new file mode 100644
index 0000000000..a424a34a47
--- /dev/null
+++ b/i18n/vscode-language-pack-ko/translations/extensions/vscode.json-language-features.i18n.json
@@ -0,0 +1,190 @@
+{
+ "": [
+ "--------------------------------------------------------------------------------------------",
+ "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."
+ ],
+ "version": "1.0.0",
+ "contents": {
+ "bundle": {
+ "$ref '{0}' in '{1}' can not be resolved.": "'{1}'의 $ref '{0}'을(를) 확인할 수 없습니다.",
+ "": "",
+ "A default value. Used by suggestions.": "기본값입니다. 제안에서 사용됩니다.",
+ "A descriptive title of the schema.": "설명이 포함된 스키마의 제목입니다.",
+ "A long description of the schema. Used in hover menus and suggestions.": "스키마에 대한 자세한 설명입니다. 가리킨 메뉴 및 제안에서 사용됩니다.",
+ "A map of property names to either an array of property names or a schema. An array of property names means the property named in the key depends on the properties in the array being present in the object in order to be valid. If the value is a schema, then the schema is only applied to the object if the property in the key exists on the object.": "속성 이름 배열 또는 스키마에 대한 속성 이름 맵입니다. 속성 이름의 배열은 키에 이름이 지정된 속성이 유효하기 위해 개체에 있는 배열의 속성에 종속됨을 의미합니다. 값이 스키마이면 키의 속성이 개체에 있는 경우에만 스키마가 개체에 적용됩니다.",
+ "A map of property names to schemas for each property.": "각 속성의 스키마에 대한 속성 이름 맵입니다.",
+ "A map of regular expressions on property names to schemas for matching properties.": "일치하는 속성의 스키마에 대한 속성 이름의 정규식 맵입니다.",
+ "A number that should cleanly divide the current value (i.e. have no remainder).": "현재 값을 나머지 없이 깔끔하게 나눠야 하는 숫자입니다.",
+ "A regular expression to match the string against. It is not implicitly anchored.": "문자열과 일치시킬 정규식입니다. 암시적으로 앵커가 지정되지 않습니다.",
+ "A schema which must not match.": "일치하지 않아야 하는 스키마입니다.",
+ "A unique identifier for the schema.": "스키마의 고유 식별자입니다.",
+ "An array instance is valid against \"contains\" if at least one of its elements is valid against the given schema.": "지정된 스키마에 대해 하나 이상의 요소가 유효한 경우 \"contains\"에 대해 배열 인스턴스가 유효합니다.",
+ "An array of schemas, all of which must match.": "스키마 배열입니다. 모두 일치해야 합니다.",
+ "An array of schemas, exactly one of which must match.": "정확히 하나가 일치해야 하는 스키마 배열입니다.",
+ "An array of schemas, where at least one must match.": "하나 이상의 스키마가 일치해야 하는 스키마 배열입니다.",
+ "An array of strings that lists the names of all properties required on this object.": "이 개체에 필요한 모든 속성의 이름을 나열하는 문자열 배열입니다.",
+ "An instance validates successfully against this keyword if its value is equal to the value of the keyword.": "인스턴스 값이 키워드 값과 같을 경우 인스턴스에서 이 키워드에 대해 유효성을 검사합니다.",
+ "Array does not contain required item.": "배열에 필수 항목이 없습니다.",
+ "Array has duplicate items.": "배열에 중복된 항목이 있습니다.",
+ "Array has too few items that match the contains contraint. Expected {0} or more.": "배열에 contains 제약 조건과 일치하는 항목이 너무 적습니다. {0} 이상이어야 합니다.",
+ "Array has too few items. Expected {0} or more.": "배열에 항목이 너무 적습니다. {0}개 이상 필요합니다.",
+ "Array has too many items according to schema. Expected {0} or fewer.": "스키마에 따르면 배열에 항목이 너무 많습니다. {0} 이하여야 합니다.",
+ "Array has too many items that match the contains contraint. Expected {0} or less.": "배열에 contains 제약 조건과 일치하는 항목이 너무 많습니다. {0} 이하여야 합니다.",
+ "Array has too many items. Expected {0} or fewer.": "배열에 항목이 너무 많습니다. {0} 이하여야 합니다.",
+ "Colon expected": "콜론 필요",
+ "Comments are not permitted in JSON.": "주석은 JSON에서 허용되지 않습니다.",
+ "Comments from schema authors to readers or maintainers of the schema.": "스키마 작성자가 스키마의 독자 또는 유지 관리자에게 전하는 설명입니다.",
+ "Configure": "구성",
+ "Configured by extension: {0}": "확장별로 구성: {0}",
+ "Configured in user settings": "사용자 설정에 구성됨",
+ "Configured in workspace settings": "작업 영역 설정에 구성됨",
+ "Default value": "기본값",
+ "Describes the content encoding of a string property.": "문자열 속성의 콘텐츠 인코딩을 설명합니다.",
+ "Describes the format expected for the value. By default, not used for validation": "값에 필요한 형식을 설명합니다. 기본적으로 유효성 검사에 사용되지 않음",
+ "Describes the media type of a string property.": "문자열 속성의 미디어 유형을 설명합니다.",
+ "Downloading schemas is disabled in untrusted workspaces": "신뢰할 수 없는 작업 영역에서는 스키마 다운로드가 비활성화되어 있습니다.",
+ "Downloading schemas is disabled through setting '{0}'": "'{0}' 설정을 통해 스키마 다운로드를 사용하지 않도록 설정함",
+ "Downloading schemas is disabled. Click to configure.": "스키마 다운로드를 사용할 수 없습니다. 구성하려면 클릭하세요.",
+ "Draft-03 schemas are not supported.": "Draft-03 스키마는 지원되지 않습니다.",
+ "Duplicate anchor declaration: '{0}'": "앵커 선언 중복: '{0}'",
+ "Duplicate object key": "중복된 개체 키",
+ "Either a schema or a boolean. If a schema, used to validate all properties not matched by 'properties', 'propertyNames', or 'patternProperties'. If false, any properties not defined by the adajacent keywords will cause this schema to fail.": "스키마 또는 부울입니다. 스키마인 경우, 'properties', 'propertyNames' 또는 'patternProperties'와 일치하지 않는 모든 속성의 유효성 검사에 사용됩니다. false이면 adjacent 키워드로 정의되지 않은 속성이 있을 때 이 스키마가 실패합니다.",
+ "Either a string of one of the basic schema types (number, integer, null, array, object, boolean, string) or an array of strings specifying a subset of those types.": "기본 스키마 형식(숫자, 정수, null, 배열, 개체, 부울, 문자열) 중 하나의 문자열 또는 이러한 형식의 하위 집합을 지정하는 문자열의 배열입니다.",
+ "End of file expected.": "파일의 끝이 필요합니다.",
+ "Expected a JSON object, array or literal.": "JSON 개체, 배열 또는 리터럴이 필요합니다.",
+ "Expected comma": "쉼표 필요",
+ "Expected comma or closing brace": "쉼표 또는 닫는 중괄호 필요",
+ "Expected comma or closing bracket": "쉼표 또는 닫는 대괄호 필요",
+ "Failed to sort the JSONC document, please consider opening an issue.": "JSONC 문서를 정렬하지 못했습니다. 문제를 여는 것이 좋습니다.",
+ "For arrays, only when items is set as an array. If items are a schema, this schema validates items after the ones specified by the items schema. If false, additional items will cause validation to fail.": "배열의 경우 항목이 배열로 설정된 경우에만 해당합니다. 항목이 스키마인 경우, 이 스키마는 항목 스키마에서 지정한 것 뒤에 오는 항목의 유효성을 검사합니다. false이면 추가 항목이 있을 때 유효성 검사가 실패합니다.",
+ "For arrays. Can either be a schema to validate every element against or an array of schemas to validate each item against in order (the first schema will validate the first element, the second schema will validate the second element, and so on.": "배열의 경우입니다. 모든 요소의 유효성을 검사할 대상 스키마이거나 각 항목의 유효성을 검사할 대상 스키마 배열일 수 있습니다. 첫 번째 스키마는 첫 번째 요소의 유효성을 검사하고, 두 번째 스키마는 두 번째 요소의 유효성을 검사하는 순서입니다.",
+ "If all of the items in the array must be unique. Defaults to false.": "배열의 모든 항목이 고유해야 하는 경우입니다. 기본값은 false입니다.",
+ "If the instance is an object, this keyword validates if every property name in the instance validates against the provided schema.": "인스턴스가 개체인 경우 이 키워드는 인스턴스의 모든 속성 이름이 제공된 스키마에 대해 유효성을 검사하는지 확인합니다.",
+ "Incorrect type. Expected \"{0}\".": "잘못된 형식입니다. \"{0}\"이(가) 필요합니다.",
+ "Incorrect type. Expected one of {0}.": "잘못된 형식입니다. {0} 중 하나가 필요합니다.",
+ "Indicates that the value of the instance is managed exclusively by the owning authority.": "인스턴스 값이 소유 기관에서 단독으로 관리됨을 나타냅니다.",
+ "Invalid characters in string. Control characters must be escaped.": "문자열에 유효하지 않은 문자가 있습니다. 제어 문자를 이스케이프해야 합니다.",
+ "Invalid color format. Use #RGB, #RGBA, #RRGGBB or #RRGGBBAA.": "색 형식이 잘못되었습니다. #RGB, #RGBA, #RRGGBB 또는 #RRGGBBAA를 사용하세요.",
+ "Invalid escape character in string.": "문자열에 유효하지 않은 이스케이프 문자가 있습니다.",
+ "Invalid number format.": "유효하지 않은 숫자 형식입니다.",
+ "Invalid unicode sequence in string.": "문자열의 유니코드 시퀀스가 잘못되었습니다.",
+ "Item does not match any validation rule from the array.": "항목이 배열의 유효성 검사 규칙과 일치하지 않습니다.",
+ "JSON Language Server": "JSON 언어 서버",
+ "JSON Outline Status": "JSON 개요 상태",
+ "JSON Validation Status": "JSON 유효성 검사 상태",
+ "JSON schema cache cleared.": "JSON 스키마 캐시를 지웠습니다.",
+ "JSON schema configured": "JSON 스키마가 구성됨",
+ "JSON: Schema Resolution Error": "JSON: 스키마 확인 오류",
+ "Learn more about JSON schema configuration...": "JSON 스키마 구성에 대한 자세한 정보...",
+ "Loading JSON info": "JSON 정보 로드 중",
+ "Makes the maximum property exclusive.": "최대 속성이 포함되지 않도록 합니다.",
+ "Makes the minimum property exclusive.": "최소 속성이 포함되지 않도록 합니다.",
+ "Matches a schema that is not allowed.": "허용되지 않는 스키마와 일치합니다.",
+ "Matches multiple schemas when only one must validate.": "하나의 스키마만 유효성을 검사해야 하는 경우 여러 스키마를 일치시킵니다.",
+ "Missing property \"{0}\".": "\"{0}\" 속성이 없습니다.",
+ "New array": "새 배열",
+ "New object": "새 개체",
+ "No schema configured for this file": "이 파일에 대해 구성된 스키마가 없습니다.",
+ "No schema validation": "스키마 유효성 검사 없음",
+ "Not used for validation. Place subschemas here that you wish to reference inline with $ref.": "유효성 검사에 사용되지 않습니다. $ref를 사용하여 인라인으로 참조할 하위 스키마를 여기에 배치합니다.",
+ "Object has fewer properties than the required number of {0}": "개체에 있는 속성이 필요한 개수 {0}보다 적습니다.",
+ "Object has more properties than limit of {0}.": "개체에 한도 {0}보다 많은 속성이 있습니다.",
+ "Object is missing property {0} required by property {1}.": "개체에 {1} 속성에 필요한 {0} 속성이 없습니다.",
+ "Open Extension": "오픈 익스텐션",
+ "Open Settings": "설정 열기",
+ "Outline": "개요",
+ "Problem reading content from '{0}': UTF-8 with BOM detected, only UTF 8 is allowed.": "'{0}'에서 콘텐츠를 읽는 동안 문제가 발생했습니다. BOM이 있는 UTF-8이 검색되었습니다. UTF 8만 허용됩니다.",
+ "Problems loading reference '{0}': {1}": "참조 '{0}'을(를) 로드하는 동안 문제가 발생했습니다. {1}",
+ "Property expected": "속성 필요",
+ "Property keys must be doublequoted": "속성 키는 큰따옴표로 묶어야 합니다.",
+ "Property {0} is not allowed.": "속성 {0}은(는) 허용되지 않습니다.",
+ "Reference a definition hosted on any location.": "모든 위치에서 호스트되는 정의를 참조합니다.",
+ "Sample JSON values associated with a particular schema, for the purpose of illustrating usage.": "사용을 표현하기 위해 특정 스키마와 연결된 샘플 JSON 값입니다.",
+ "Schema not found: {0}": "스키마를 찾을 수 없음: {0}",
+ "Schema validated": "스키마 유효성 검사됨",
+ "Select the schema to use for {0}": "{0}에 사용할 스키마 선택",
+ "Show Schemas": "스키마 표시",
+ "Sort JSON": "JSON 정렬",
+ "String does not match the pattern of \"{0}\".": "문자열이 \"{0}\" 패턴과 일치하지 않습니다.",
+ "String is longer than the maximum length of {0}.": "문자열이 최대 길이 {0}보다 깁니다.",
+ "String is not a RFC3339 date-time.": "문자열이 RFC3339 날짜-시간이 아닙니다.",
+ "String is not a RFC3339 date.": "문자열이 RFC3339 날짜가 아닙니다.",
+ "String is not a RFC3339 time.": "문자열이 RFC3339 시간이 아닙니다.",
+ "String is not a URI: {0}": "문자열이 URI가 아닙니다. {0}",
+ "String is not a hostname.": "문자열이 호스트 이름이 아닙니다.",
+ "String is not an IPv4 address.": "문자열이 IPv4 주소가 아닙니다.",
+ "String is not an IPv6 address.": "문자열이 IPv6 주소가 아닙니다.",
+ "String is not an e-mail address.": "문자열이 이메일 주소가 아닙니다.",
+ "String is shorter than the minimum length of {0}.": "문자열이 최소 길이 {0}보다 짧습니다.",
+ "The \"else\" subschema is used for validation when the \"if\" subschema fails.": "\"else\" 하위 스키마는 \"if\" 하위 스키마가 실패할 때 유효성 검사에 사용됩니다.",
+ "The \"then\" subschema is used for validation when the \"if\" subschema succeeds.": "\"if\" 하위 스키마가 성공하면 \"then\" 하위 스키마가 유효성 검사에 사용됩니다.",
+ "The maximum length of a string.": "문자열의 최대 길이입니다.",
+ "The maximum number of items that can be inside an array. Inclusive.": "배열 내에 있을 수 있는 최대 항목 수입니다. 명시한 수를 포함합니다.",
+ "The maximum number of properties an object can have. Inclusive.": "개체가 가질 수 있는 최대 속성 수입니다. 명시한 숫자를 포함합니다.",
+ "The maximum numerical value, inclusive by default.": "최대 숫자 값입니다. 기본적으로 명시한 숫자를 포함합니다.",
+ "The minimum length of a string.": "문자열의 최소 길이입니다.",
+ "The minimum number of items that can be inside an array. Inclusive.": "배열 내에 있을 수 있는 최소 항목 수입니다. 명시한 숫자를 포함합니다.",
+ "The minimum number of properties an object can have. Inclusive.": "개체가 가질 수 있는 최소 속성 수입니다. 명시한 숫자를 포함합니다.",
+ "The minimum numerical value, inclusive by default.": "최소 숫자 값입니다. 기본적으로 명시한 숫자를 포함합니다.",
+ "The schema to verify this document against.": "이 문서를 확인할 스키마입니다.",
+ "The schema uses meta-schema features ({0}) that are not yet supported by the validator.": "스키마는 유효성 검사기에서 아직 지원하지 않는 메타 스키마 기능({0})을 사용합니다.",
+ "The set of literal values that are valid.": "유효한 리터럴 값 집합입니다.",
+ "The validation outcome of the \"if\" subschema controls which of the \"then\" or \"else\" keywords are evaluated.": "\"if\" 하위 스키마의 유효성 검사 결과는 \"then\" 또는 \"else\" 키워드 중 평가되는 키워드를 제어합니다.",
+ "Trailing comma": "후행 쉼표",
+ "URI expected.": "URI가 필요합니다.",
+ "URI is expected.": "URI가 필요합니다.",
+ "URI with a scheme is expected.": "구성표가 있는 URI가 필요합니다.",
+ "Unable to compute used schemas: No document": "사용된 스키마를 계산할 수 없음: 문서 없음",
+ "Unable to compute used schemas: {0}": "사용된 스키마를 계산할 수 없음: {0}",
+ "Unable to download schemas in untrusted workspaces.": "신뢰할 수 없는 작업 영역에서는 스키마를 다운로드할 수 없습니다.",
+ "Unable to load schema from '{0}'. No schema request service available": "'{0}'에서 스키마를 로드할 수 없습니다. 사용할 수 있는 스키마 요청 서비스가 없습니다.",
+ "Unable to load schema from '{0}': No content.": "'{0}'에서 스키마를 로드할 수 없습니다. 콘텐츠가 없습니다.",
+ "Unable to load schema from '{0}': {1}.": "'{0}'에서 스키마를 로드할 수 없습니다. {1}.",
+ "Unable to load {0}": "{0}을(를) 로드할 수 없습니다.",
+ "Unable to parse content from '{0}': Parse error at offset {1}.": "'{0}'의 콘텐츠를 구문 분석할 수 없습니다. 오프셋 {1}에서의 구문 분석 오류입니다.",
+ "Unable to resolve schema. Click to retry.": "스키마를 확인할 수 없습니다. 다시 시도하려면 클릭하세요.",
+ "Unexpected end of comment.": "필요하지 않은 주석 끝입니다.",
+ "Unexpected end of number.": "필요하지 않은 번호 끝입니다.",
+ "Unexpected end of string.": "예기치 않은 문자열의 끝입니다.",
+ "Value expected": "값 필요",
+ "Value is above the exclusive maximum of {0}.": "값이 최대값인 {0}(포함 안 됨)을(를) 초과합니다.",
+ "Value is above the maximum of {0}.": "값이 {0} 최대값을 초과합니다.",
+ "Value is below the exclusive minimum of {0}.": "값이 최소값인 {0}(포함 안 됨) 미만입니다.",
+ "Value is below the minimum of {0}.": "값이 최소값 {0} 미만입니다.",
+ "Value is deprecated": "값이 더 이상 사용되지 않습니다.",
+ "Value is not accepted. Valid values: {0}.": "값이 허용되지 않습니다. 유효한 값은 {0}입니다.",
+ "Value is not divisible by {0}.": "값은 {0}(으)로 나눌 수 없습니다.",
+ "Value must be {0}.": "값은 {0}이어야 합니다.",
+ "multiple JSON schemas configured": "여러 JSON 스키마가 구성됨",
+ "no JSON schema configured": "구성된 JSON 스키마가 없음",
+ "only {0} document symbols shown for performance reasons": "성능상의 이유로 {0} 문서 기호만 표시됨",
+ "{0} is a directory, not a file": "{0}은(는) 파일이 아닌 디렉터리입니다."
+ },
+ "package": {
+ "description": "JSON 파일에 대한 다양한 언어 지원을 제공합니다.",
+ "displayName": "JSON 언어 기능",
+ "json.clickToRetry": "다시 시도하려면 클릭하세요.",
+ "json.colorDecorators.enable.deprecationMessage": "`json.colorDecorators.enable` 설정은 `editor.colorDecorators`를 위해 사용되지 않습니다.",
+ "json.colorDecorators.enable.desc": "색 데코레이터 사용 또는 사용 안 함",
+ "json.command.clearCache": "스키마 캐시 지우기",
+ "json.command.sort": "문서 정렬",
+ "json.enableSchemaDownload.desc": "사용하도록 설정하면 http 및 https 위치에서 JSON 스키마를 페치할 수 있습니다.",
+ "json.format.enable.desc": "기본 JSON 포맷터를 사용하거나 사용하지 않습니다.",
+ "json.format.keepLines.desc": "서식을 지정할 때 기존의 모든 새 줄을 유지합니다.",
+ "json.maxItemsComputed.desc": "계산된 최대 윤곽선 기호 및 폴딩 영역의 수입니다(성능상의 이유로 제한됨).",
+ "json.maxItemsExceededInformation.desc": "최대 윤곽 기호 및 접기 영역 수를 초과하는 경우 알림을 표시합니다.",
+ "json.schemaResolutionErrorMessage": "스키마를 확인할 수 없습니다.",
+ "json.schemas.desc": "현재 프로젝트에서 스키마를 JSON 파일에 연결합니다.",
+ "json.schemas.fileMatch.desc": "JSON 파일을 스키마로 확인할 때 일치하려는 파일 패턴의 배열입니다. `*` 및 '**'를 와일드카드로 사용할 수 있습니다. 제외 패턴을 정의하고 '!'로 시작할 수 있습니다. 하나 이상의 일치 패턴이 있고 마지막 일치 패턴이 제외 패턴이 아닌 경우 파일이 일치합니다.",
+ "json.schemas.fileMatch.item.desc": "JSON 파일을 스키마로 확인할 때 일치시킬 '*' 및 '**'를 포함할 수 있는 파일 패턴입니다. '!'로 시작하면 제외 패턴을 정의합니다.",
+ "json.schemas.schema.desc": "지정된 URL의 스키마 정의입니다. 스키마는 스키마 URL에 대한 액세스 방지를 위해서만 제공해야 합니다.",
+ "json.schemas.url.desc": "스키마에 대한 URL 또는 절대 파일 경로입니다. 작업 영역 및 작업 영역 폴더 설정에서 상대 경로('./'로 시작)일 수 있습니다.",
+ "json.tracing.desc": "VS Code와 JSON 언어 서버 간 통신을 추적합니다.",
+ "json.validate.enable.desc": "JSON 유효성 검사를 사용하거나 사용하지 않도록 설정합니다.",
+ "json.workspaceTrust": "확장 기능은 http 및 https에서 스키마를 로드하기 위해 작업 영역 신뢰가 필요합니다."
+ }
+ }
+}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-ko/translations/extensions/vscode.json.i18n.json b/i18n/vscode-language-pack-ko/translations/extensions/vscode.json.i18n.json
index 4fde814402..94d100984b 100644
--- a/i18n/vscode-language-pack-ko/translations/extensions/vscode.json.i18n.json
+++ b/i18n/vscode-language-pack-ko/translations/extensions/vscode.json.i18n.json
@@ -9,8 +9,8 @@
"version": "1.0.0",
"contents": {
"package": {
- "displayName": "JSON 언어 기본 사항",
- "description": "JSON 파일에서 구문 강조 표시 및 대괄호 일치 기능을 제공합니다."
+ "description": "JSON 파일에서 구문 강조 표시 및 대괄호 일치 기능을 제공합니다.",
+ "displayName": "JSON 언어 기본 사항"
}
}
}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-ko/translations/extensions/julia.i18n.json b/i18n/vscode-language-pack-ko/translations/extensions/vscode.julia.i18n.json
similarity index 100%
rename from i18n/vscode-language-pack-ko/translations/extensions/julia.i18n.json
rename to i18n/vscode-language-pack-ko/translations/extensions/vscode.julia.i18n.json
diff --git a/i18n/vscode-language-pack-ko/translations/extensions/latex.i18n.json b/i18n/vscode-language-pack-ko/translations/extensions/vscode.latex.i18n.json
similarity index 100%
rename from i18n/vscode-language-pack-ko/translations/extensions/latex.i18n.json
rename to i18n/vscode-language-pack-ko/translations/extensions/vscode.latex.i18n.json
diff --git a/i18n/vscode-language-pack-ko/translations/extensions/vscode.less.i18n.json b/i18n/vscode-language-pack-ko/translations/extensions/vscode.less.i18n.json
index 9586aa4bb2..70f515cad1 100644
--- a/i18n/vscode-language-pack-ko/translations/extensions/vscode.less.i18n.json
+++ b/i18n/vscode-language-pack-ko/translations/extensions/vscode.less.i18n.json
@@ -9,8 +9,8 @@
"version": "1.0.0",
"contents": {
"package": {
- "displayName": "Less 언어 기본",
- "description": "Less 파일에서 구문 강조 표시, 괄호 일치 및 접기를 제공합니다."
+ "description": "Less 파일에서 구문 강조 표시, 괄호 일치 및 접기를 제공합니다.",
+ "displayName": "Less 언어 기본"
}
}
}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-ko/translations/extensions/vscode.log.i18n.json b/i18n/vscode-language-pack-ko/translations/extensions/vscode.log.i18n.json
index ffddf1d5b6..72988b2220 100644
--- a/i18n/vscode-language-pack-ko/translations/extensions/vscode.log.i18n.json
+++ b/i18n/vscode-language-pack-ko/translations/extensions/vscode.log.i18n.json
@@ -9,8 +9,8 @@
"version": "1.0.0",
"contents": {
"package": {
- "displayName": "로그",
- "description": "확장명이 .log인 파일에 대해 구문 강조 표시를 제공합니다."
+ "description": "확장명이 .log인 파일에 대해 구문 강조 표시를 제공합니다.",
+ "displayName": "로그"
}
}
}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-ko/translations/extensions/vscode.lua.i18n.json b/i18n/vscode-language-pack-ko/translations/extensions/vscode.lua.i18n.json
index a61f36262f..d6b8a80ac9 100644
--- a/i18n/vscode-language-pack-ko/translations/extensions/vscode.lua.i18n.json
+++ b/i18n/vscode-language-pack-ko/translations/extensions/vscode.lua.i18n.json
@@ -9,8 +9,8 @@
"version": "1.0.0",
"contents": {
"package": {
- "displayName": "Lua 언어 기본 사항",
- "description": "Lua 파일에서 구문 강조 표시 및 괄호 일치를 제공합니다."
+ "description": "Lua 파일에서 구문 강조 표시 및 괄호 일치를 제공합니다.",
+ "displayName": "Lua 언어 기본 사항"
}
}
}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-ko/translations/extensions/vscode.make.i18n.json b/i18n/vscode-language-pack-ko/translations/extensions/vscode.make.i18n.json
index 0237916eb2..d50707846e 100644
--- a/i18n/vscode-language-pack-ko/translations/extensions/vscode.make.i18n.json
+++ b/i18n/vscode-language-pack-ko/translations/extensions/vscode.make.i18n.json
@@ -9,8 +9,8 @@
"version": "1.0.0",
"contents": {
"package": {
- "displayName": "Make 언어 기본",
- "description": "Make 파일에서 구문 강조 표시 및 괄호 일치를 제공합니다."
+ "description": "Make 파일에서 구문 강조 표시 및 괄호 일치를 제공합니다.",
+ "displayName": "Make 언어 기본"
}
}
}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-ko/translations/extensions/vscode.markdown-language-features.i18n.json b/i18n/vscode-language-pack-ko/translations/extensions/vscode.markdown-language-features.i18n.json
new file mode 100644
index 0000000000..f663f01953
--- /dev/null
+++ b/i18n/vscode-language-pack-ko/translations/extensions/vscode.markdown-language-features.i18n.json
@@ -0,0 +1,172 @@
+{
+ "": [
+ "--------------------------------------------------------------------------------------------",
+ "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."
+ ],
+ "version": "1.0.0",
+ "contents": {
+ "bundle": {
+ "...1 additional file not shown": "...1개의 추가 파일이 표시되지 않음",
+ "...{0} additional files not shown": "...{0}개의 추가 파일이 표시되지 않음",
+ "Allow all content and script execution. Not recommended": "모든 콘텐츠 및 스크립트 실행을 허용합니다. 권장하지 않습니다.",
+ "Allow insecure content": "안전하지 않은 콘텐츠 허용",
+ "Allow insecure local content": "안전하지 않은 로컬 콘텐츠 허용",
+ "Always": "항상",
+ "An unexpected error occurred while restoring the Markdown preview.": "Markdown 미리 보기를 복원하는 동안 예기치 않은 오류가 발생했습니다.",
+ "Checking for Markdown links to update": "업데이트할 Markdown 링크 확인",
+ "Content Disabled Security Warning": "콘텐츠 사용할 수 없음 보안 경고",
+ "Could not load 'markdown.styles': {0}": "'markdown.styles': {0}을(를) 불러올 수 없음",
+ "Could not open {0}": "{0}을(를) 열 수 없습니다.",
+ "Disable": "사용 안 함",
+ "Disable preview security warning in this workspace": "이 작업 영역에서 미리보기 보안 경고 사용 안 함",
+ "Disable validation of Markdown links": "Markdown 링크의 유효성 검사 사용 안 함",
+ "Does not affect the content security level": "콘텐츠 보안 수준에 영향을 주지 않습니다.",
+ "Enable": "사용",
+ "Enable loading content over http": "http를 통한 콘텐츠 로드 사용",
+ "Enable loading content over http served from localhost": "localhost에서 제공되는 http를 통한 콘텐츠 로드 사용",
+ "Enable preview security warnings in this workspace": "이 작업 영역에서 미리 보기 보안 경고 사용",
+ "Enable validation of Markdown links": "Markdown 링크의 유효성 검사 사용",
+ "Exclude '{0}' from link validation.": "링크 유효성 검사에서 '{0}'을(를) 제외합니다.",
+ "Extract to link definition": "정의를 연결하려면 추출",
+ "File does not exist at path: {0}": "경로에 파일이 없습니다. {0}",
+ "Find file references failed. No resource provided.": "파일 참조를 찾지 못했습니다. 리소스가 제공되지 않았습니다.",
+ "Finding file references": "파일 참조를 찾는 중",
+ "Follow link": "링크로 이동",
+ "Go to link definition": "링크 정의로 이동",
+ "Header does not exist in file: {0}": "헤더가 파일에 없습니다. {0}",
+ "Insert Markdown Audio": "Markdown 오디오 삽입",
+ "Insert Markdown Image": "Markdown 이미지 삽입",
+ "Insert Markdown Images": "Markdown 이미지 삽입",
+ "Insert Markdown Images and Links": "Markdown 이미지 및 링크 삽입",
+ "Insert Markdown Link": "Markdown 링크 삽입",
+ "Insert Markdown Links": "Markdown 링크 삽입",
+ "Insert Markdown Media": "Markdown 미디어 삽입",
+ "Insert Markdown Media and Images": "Markdown 미디어 및 이미지 삽입",
+ "Insert Markdown Media and Links": "Markdown 미디어 및 링크 삽입",
+ "Insert Markdown Video": "Markdown 비디오 삽입",
+ "Insert image": "이미지 삽입",
+ "Insert link": "링크 삽입",
+ "Link definition for '{0}' already exists": "'{0}'에 대한 링크 정의가 이미 있습니다.",
+ "Link definition is unused": "링크 정의가 사용되지 않습니다.",
+ "Link is already a reference": "링크가 이미 참조입니다.",
+ "Link is also defined here": "링크가 여기에도 정의되어 있습니다.",
+ "Link to '# {0}' in '{1}'": "'{1}'의 '# {0}' 링크",
+ "Link to '{0}'": "'{0}' 링크",
+ "Markdown Language Server": "Markdown 언어 서버",
+ "Markdown link validation disabled": "Markdown 링크 유효성 검사 사용 안 함",
+ "Markdown link validation enabled": "Markdown 링크 유효성 검사 사용",
+ "Media": "미디어",
+ "More Information": "추가 정보",
+ "Never": "안 함",
+ "No": "아니요",
+ "No header found: '{0}'": "헤더를 찾을 수 없습니다. '{0}'",
+ "No link definition found: '{0}'": "링크 정의를 찾을 수 없음: '{0}'",
+ "Not on link": "링크에 없음",
+ "Only load secure content": "보안 콘텐츠만 로드",
+ "Paste and update pasted links": "붙여넣은 링크 붙여넣기 및 업데이트",
+ "Potentially unsafe or insecure content has been disabled in the Markdown preview. Change the Markdown preview security setting to allow insecure content or enable scripts": "Markdown 미리 보기에서 잠재적으로 안전하지 않거나 보안되지 않은 콘텐츠가 사용하지 않도록 설정되어 있습니다. 안전하지 않은 콘텐츠를 허용하거나 스크립트를 사용하려면 Markdown 미리 보기 보안 설정을 변경하세요.",
+ "Preview {0}": "미리 보기 {0}",
+ "Reference link '{0}'": "참조 링크 '{0}'",
+ "Remove duplicate link definition": "중복 링크 정의 제거",
+ "Remove unused link definition": "사용되지 않는 링크 정의 제거",
+ "Renaming is not supported here. Try renaming a header or link.": "여기서는 이름을 바꾸는 것이 지원되지 않습니다. 머리글 또는 링크의 이름을 변경해 보세요.",
+ "Select security settings for Markdown previews in this workspace": "이 작업 영역에 대해 Markdown 미리 보기의 보안 설정 선택",
+ "Some content has been disabled in this document": "이 문서에서 일부 콘텐츠가 사용하지 않도록 설정되었습니다.",
+ "Strict": "Strict",
+ "Update Markdown links for '{0}'?": "'{0}'에 대한 Markdown 링크를 업데이트하시겠습니까?",
+ "Update Markdown links for the following {0} files?": "다음 파일 {0}개에 대한 Markdown 링크를 업데이트할까요?",
+ "Yes": "예",
+ "[Preview] {0}": "[미리 보기] {0}",
+ "{0} cannot be found": "{0}을(를) 찾을 수 없습니다."
+ },
+ "package": {
+ "configuration.copyIntoWorkspace.mediaFiles": "외부 이미지 및 비디오 파일을 작업 영역에 복사해 봅니다.",
+ "configuration.copyIntoWorkspace.never": "외부 파일을 작업 영역에 복사하지 마세요.",
+ "configuration.markdown.copyFiles.destination": "복사/붙여넣기 또는 끌어서 놓기로 만든 파일의 경로와 파일 이름을 설정합니다. 새 파일을 만들어야 하는 대상 경로에 대한 Markdown 문서 경로와 일치하는 GLOB 맵입니다.\r\n\r\n대상 경로는 다음 변수를 사용할 수 있습니다.\r\n\r\n- '${documentDirName}' — Markdown 문서의 절대 부모 디렉터리 경로입니다(예: '/Users/me/myProject/docs').\r\n- '${documentRelativeDirName}' — Markdown 문서의 상대 부모 디렉터리 경로입니다(예: 'docs'). 파일이 작업 영역의 일부가 아닌 경우 '${documentDirName}'과(와) 동일합니다.\r\n- '${documentFileName}' — Markdown 문서의 전체 파일 이름입니다(예: 'README.md').\r\n- '${documentBaseName}' — Markdown 문서의 기본 이름입니다(예: 'README').\r\n- '${documentExtName}' — Markdown 문서의 확장입니다(예: 'md').\r\n- '${documentFilePath}' — Markdown 문서의 절대 경로입니다(예: '/Users/me/myProject/docs/README.md').\r\n- '${documentRelativeFilePath}' — Markdown 문서의 상대 경로입니다(예: 'docs/README.md'). 파일이 작업 영역의 일부가 아닌 경우 '${documentFilePath}'과(와) 동일합니다.\r\n- '${documentWorkspaceFolder}' — Markdown 문서의 작업 영역 폴더입니다(예: '/Users/me/myProject'). 파일이 작업 영역의 일부가 아닌 경우 '${documentDirName}'과(와) 동일합니다.\r\n- '${fileName}' — 삭제된 파일의 파일 이름입니다(예: 'image.png').\r\n- '${fileExtName}' — 삭제된 파일의 확장명입니다(예: 'png').\r\n- '${unixTime}' - 현재 Unix 타임스탬프입니다(밀리초 단위).\r\n- '${isoTime}' — ISO 8601 형식의 현재 시간입니다(예: '2025-06-06T08:40:32.123Z').",
+ "configuration.markdown.copyFiles.overwriteBehavior": "놓기 또는 붙여넣기로 만든 파일이 기존 파일을 덮어쓸지 여부를 제어합니다.",
+ "configuration.markdown.copyFiles.overwriteBehavior.nameIncrementally": "이름이 같은 파일이 이미 있는 경우 파일 이름에 숫자를 추가합니다(예: 'image.png'는 'image-1.png'가 됩니다.).",
+ "configuration.markdown.copyFiles.overwriteBehavior.overwrite": "이름이 같은 파일이 이미 있는 경우 덮어씁니다.",
+ "configuration.markdown.editor.drop.copyIntoWorkspace": "Markdown 편집기에 놓인 작업 영역 외부의 파일을 작업 영역으로 복사할지 여부를 제어합니다.\r\n\r\n`#markdown.copyFiles.destination#`을 사용하여 복사한 파일을 만들 위치를 구성합니다.",
+ "configuration.markdown.editor.drop.enabled": "Shift 키를 누른 상태에서 Markdown 편집기에 파일 놓기를 설정합니다. '#editor.dropIntoEditor.enabled#'을 사용하도록 설정해야 합니다.",
+ "configuration.markdown.editor.drop.enabled.always": "항상 Markdown 링크를 삽입합니다.",
+ "configuration.markdown.editor.drop.enabled.never": "Markdown 링크를 만들지 않습니다.",
+ "configuration.markdown.editor.drop.enabled.smart": "코드 블록 또는 다른 특수 요소에 드롭하지 않을 때 기본적으로 Markdown 링크를 스마트하게 만듭니다. 드롭 위젯을 사용하여 일반 텍스트로 붙여넣기 또는 Markdown 링크로 붙여넣기 간에 전환합니다.",
+ "configuration.markdown.editor.filePaste.audioSnippet": "Markdown에 오디오를 추가할 때 사용되는 코드 조각입니다. 이 코드 조각은 다음 변수를 사용할 수 있습니다.\r\n- `${src}` - 오디오 파일의 확인된 경로입니다.\r\n- `${title}` - 오디오에 사용되는 제목입니다. 이 변수에 대한 코드 조각 자리 표시자가 자동으로 만들어집니다.",
+ "configuration.markdown.editor.filePaste.copyIntoWorkspace": "Markdown 편집기에 붙여넣은 작업 영역 외부의 파일을 작업 영역으로 복사할지 여부를 제어합니다.\r\n\r\n`#markdown.copyFiles.destination#`을 사용하여 복사한 파일을 만들 위치를 구성합니다.",
+ "configuration.markdown.editor.filePaste.enabled": "Markdown 편집기에 파일을 붙여넣어 Markdown 링크를 만들 수 있습니다. `#editor.pasteAs.enabled#를 활성화해야 합니다.",
+ "configuration.markdown.editor.filePaste.enabled.always": "항상 Markdown 링크를 삽입합니다.",
+ "configuration.markdown.editor.filePaste.enabled.never": "Markdown 링크를 만들지 않습니다.",
+ "configuration.markdown.editor.filePaste.enabled.smart": "코드 블록 또는 다른 특수 요소에 붙여넣지 않을 때 기본적으로 Markdown 링크를 스마트하게 만듭니다. 붙여넣기 위젯을 사용하여 일반 텍스트로 붙여넣기 또는 Markdown 링크로 붙여넣기 간에 전환합니다.",
+ "configuration.markdown.editor.filePaste.videoSnippet": "Markdown에 비디오를 추가할 때 사용되는 코드 조각입니다. 이 코드 조각은 다음 변수를 사용할 수 있습니다.\r\n- `${src}` - 비디오 파일의 확인된 경로입니다.\r\n- `${title}` - 비디오에 사용되는 제목입니다. 이 변수에 대한 코드 조각 자리 표시자가 자동으로 만들어집니다.",
+ "configuration.markdown.editor.pasteUrlAsFormattedLink.enabled": "URL을 Markdown 편집기에 붙여넣을 때 Markdown 링크가 만들어지는지 여부를 제어합니다. '#editor.pasteAs.enabled#'을 사용하도록 설정해야 합니다.",
+ "configuration.markdown.editor.updateLinksOnPaste.enabled": "Markdown 편집기 간에 복사하여 붙여넣은 텍스트의 링크 및 참조를 업데이트하는 붙여넣기 옵션을 사용/사용 안 함으로 설정합니다.\r\n\r\n이 기능을 사용하려면 업데이트 가능한 링크가 포함된 텍스트를 붙여넣은 후 붙여넣기 위젯을 클릭하고 '붙여넣은 링크 붙여넣기 및 업데이트'를 선택하기만 하면 됩니다.",
+ "configuration.markdown.links.openLocation.beside": "활성 편집기 옆에 있는 링크를 엽니다.",
+ "configuration.markdown.links.openLocation.currentGroup": "활성 편집기 그룹에서 링크를 엽니다.",
+ "configuration.markdown.links.openLocation.description": "Markdown 파일의 링크를 열어야 하는 위치를 제어합니다.",
+ "configuration.markdown.occurrencesHighlight.enabled": "현재 문서에서 링크 항목 강조 표시를 사용하도록 설정합니다.",
+ "configuration.markdown.preferredMdPathExtensionStyle": "markdown 파일 링크에 파일 확장명(예: `.md`)이 추가되는지 여부를 제어합니다. 이 설정은 경로 완성 또는 파일 이름 바꾸기와 같은 도구를 사용하여 파일 경로를 추가할 때 사용됩니다.",
+ "configuration.markdown.preferredMdPathExtensionStyle.auto": "기존 경로인 경우 파일 확장명 형식을 유지하려고 합니다. 새 경로인 경우 파일 확장명을 추가합니다.",
+ "configuration.markdown.preferredMdPathExtensionStyle.includeExtension": "파일 확장명 포함을 선호합니다. 예를 들어 이름이 `file.md`인 파일에 대한 경로 완성은 `file.md`를 삽입합니다.",
+ "configuration.markdown.preferredMdPathExtensionStyle.removeExtension": "파일 확장명 제거를 선호합니다. 예를 들어 이름이 `file.md`인 파일에 대한 경로 완성은 `.md` 없이 `file`을 삽입합니다.",
+ "configuration.markdown.preview.openMarkdownLinks.description": "Markdown 미리 보기에서 다른 Markdown 파일의 링크를 여는 방법을 제어합니다.",
+ "configuration.markdown.preview.openMarkdownLinks.inEditor": "편집기에서 링크를 열어 보세요.",
+ "configuration.markdown.preview.openMarkdownLinks.inPreview": "Markdown 미리 보기에서 링크를 열어 보세요.",
+ "configuration.markdown.suggest.paths.enabled.description": "Markdown 파일에서 링크를 작성하는 동안 경로 제안을 사용하도록 설정합니다.",
+ "configuration.markdown.suggest.paths.includeWorkspaceHeaderCompletions": "현재 작업 영역의 다른 Markdown 파일에서 헤더에 대한 제안을 사용하도록 설정합니다. 이러한 제안 중 하나를 수락하면 헤더 전체 경로(예: '[link text](/path/to/file.md#header)')가 해당 파일에 삽입됩니다.",
+ "configuration.markdown.suggest.paths.includeWorkspaceHeaderCompletions.never": "작업 영역 헤더 제안을 사용하지 않습니다.",
+ "configuration.markdown.suggest.paths.includeWorkspaceHeaderCompletions.onDoubleHash": "경로에 '##'을 입력한 후 작업 영역 헤더 제안을 사용합니다. 예: '[link text](##'.",
+ "configuration.markdown.suggest.paths.includeWorkspaceHeaderCompletions.onSingleOrDoubleHash": "경로에 '##' 또는 '#'을 입력한 후 작업 영역 헤더 제안을 사용합니다. 예: '[link text](#' 또는 '[link text](##'.",
+ "configuration.markdown.updateLinksOnFileMove.enableForDirectories": "작업 영역에서 디렉터리를 이동하거나 이름을 바꿀 때 링크를 업데이트할 수 있도록 설정합니다.",
+ "configuration.markdown.updateLinksOnFileMove.enabled": "작업 영역에서 파일 이름 변경/이동 시 Markdown 파일의 링크를 업데이트해 보세요. 링크 업데이트를 트리거하는 파일을 구성하려면 `#markdown.updateLinksOnFileMove.include#`를 사용하세요.",
+ "configuration.markdown.updateLinksOnFileMove.enabled.always": "링크를 항상 자동으로 업데이트합니다.",
+ "configuration.markdown.updateLinksOnFileMove.enabled.never": "링크를 업데이트하지 않고 메시지를 표시하지 마세요.",
+ "configuration.markdown.updateLinksOnFileMove.enabled.prompt": "각 파일 이동에 대한 프롬프트입니다.",
+ "configuration.markdown.updateLinksOnFileMove.include": "자동 링크 업데이트를 트리거하는 파일을 지정하는 GLOB 패턴입니다. 이 기능에 대한 자세한 내용은 '#markdown.updateLinksOnFileMove.enabled#'를 참조하세요.",
+ "configuration.markdown.updateLinksOnFileMove.include.property": "파일 경로를 일치시킬 GLOB 패턴입니다. 패턴을 사용하도록 설정하려면 true로 설정합니다.",
+ "configuration.markdown.validate.duplicateLinkDefinitions.description": "현재 파일에서 중복된 정의의 유효성을 검사합니다.",
+ "configuration.markdown.validate.enabled.description": "Markdown 파일에서 모든 오류 보고를 사용하도록 설정합니다.",
+ "configuration.markdown.validate.fileLinks.enabled.description": "Markdown 파일에서 다른 파일로 연결되는 링크의 유효성을 검사합니다(예: `[link](/path/to/file.md)`). 이를 통해 대상 파일이 존재하는지 확인할 수 있습니다. `#markdown.experimental.validate.enabled#`를 사용하도록 설정해야 합니다.",
+ "configuration.markdown.validate.fileLinks.markdownFragmentLinks.description": "Markdown 파일에서 다른 파일의 헤더로 연결되는 링크의 조각 부분 유효성을 확인합니다(예: `[link](/path/to/file.md#header)`). 기본적으로 `#markdown.validate.fragmentLinks.enabled#`에서 설정 값을 상속합니다.",
+ "configuration.markdown.validate.fragmentLinks.enabled.description": "현재 Markdown 파일의 헤더로 연결되는 조각 링크의 유효성을 검사합니다(예: `[link](#header)`). `#markdown.validate.enabled#`를 사용하도록 설정해야 합니다.",
+ "configuration.markdown.validate.ignoredLinks.description": "유효성을 검사하지 않아야 하는 링크를 구성합니다. 예를 들어 `/about` 추가는 `[about](/about)` 링크의 유효성을 검사하지 않으며, glob `/assets/**/*.svg`를 사용하면 `assets` 디렉터리 아래의 `.svg` 파일로 연결되는 모든 링크에 대한 유효성 검사를 건너뛸 수 있습니다.",
+ "configuration.markdown.validate.referenceLinks.enabled.description": "Markdown 파일에서 참조 링크(예: `[link][ref]`)의 유효성을 검사합니다. `#markdown.validate.enabled#`를 사용하도록 설정해야 합니다.",
+ "configuration.markdown.validate.unusedLinkDefinitions.description": "현재 파일에서 사용되지 않는 링크 정의의 유효성을 검사합니다.",
+ "configuration.pasteUrlAsFormattedLink.always": "항상 Markdown 링크를 삽입합니다.",
+ "configuration.pasteUrlAsFormattedLink.never": "Markdown 링크를 만들지 않습니다.",
+ "configuration.pasteUrlAsFormattedLink.smart": "코드 블록 또는 다른 특수 요소에 붙여넣지 않을 때 기본적으로 Markdown 링크를 스마트하게 만듭니다. 붙여넣기 위젯을 사용하여 일반 텍스트로 붙여넣기 또는 Markdown 링크로 붙여넣기 간에 전환합니다.",
+ "configuration.pasteUrlAsFormattedLink.smartWithSelection": "텍스트를 선택했고 코드 블록이나 기타 특수 요소에 붙여넣지 않는 경우 기본적으로 스마트 Markdown 링크를 생성합니다. 붙여넣기 위젯을 사용하여 일반 텍스트로 붙여넣기 또는 Markdown 링크로 붙여넣기 간에 전환합니다.",
+ "description": "Markdown에 대한 다양한 언어 지원을 제공합니다.",
+ "displayName": "Markdown 언어 기능",
+ "markdown.copyImage.title": "이미지 복사",
+ "markdown.editor.insertImageFromWorkspace": "작업 영역에서 이미지 삽입",
+ "markdown.editor.insertLinkFromWorkspace": "작업 영역에 파일 링크 삽입",
+ "markdown.findAllFileReferences": "파일 참조 찾기",
+ "markdown.openImage.title": "이미지 열기",
+ "markdown.preview.breaks.desc": "Markdown 미리 보기에서 줄 바꿈을 렌더링하는 방식을 설정합니다. 'true'로 설정하면 단락 안의 줄 바꿈에 대해 ' '이(가) 생성됩니다.",
+ "markdown.preview.doubleClickToSwitchToEditor.desc": "Markdown 미리 보기에서 두 번 클릭하여 편집기로 전환합니다.",
+ "markdown.preview.fontFamily.desc": "Markdown 미리 보기에서 사용되는 글꼴 패밀리를 제어합니다.",
+ "markdown.preview.fontSize.desc": "Markdown 미리 보기에서 사용되는 글꼴 크기(픽셀)를 제어합니다.",
+ "markdown.preview.lineHeight.desc": "Markdown 미리 보기에 사용되는 줄 높이를 제어합니다. 이 숫자는 글꼴 크기에 상대적입니다.",
+ "markdown.preview.linkify": "Markdown 미리 보기에서 URL과 유사한 텍스트를 링크로 변환합니다.",
+ "markdown.preview.markEditorSelection.desc": "Markdown 미리 보기에 현재 편집기 선택을 표시합니다.",
+ "markdown.preview.refresh.title": "미리 보기 새로 고침",
+ "markdown.preview.scrollEditorWithPreview.desc": "Markdown 미리 보기를 스크롤할 때 편집기의 보기를 업데이트합니다.",
+ "markdown.preview.scrollPreviewWithEditor.desc": "Markdown 편집기를 스크롤할 때 미리 보기의 보기를 업데이트합니다.",
+ "markdown.preview.title": "미리 보기 열기",
+ "markdown.preview.toggleLock.title": "미리 보기 잠금 설정/해제",
+ "markdown.preview.typographer": "Markdown 미리 보기에서 언어 중립적인 대체 및 인용 부호를 사용하도록 설정합니다.",
+ "markdown.previewSide.title": "측면에서 미리 보기 열기",
+ "markdown.server.log.desc": "Markdown 언어 서버의 로깅 수준을 제어합니다.",
+ "markdown.showLockedPreviewToSide.title": "측면에서 잠긴 미리 보기 열기",
+ "markdown.showPreviewSecuritySelector.title": "미리 보기 보안 설정 변경",
+ "markdown.showSource.title": "소스 표시",
+ "markdown.styles.dec": "Markdown 미리 보기에서 사용할 CSS 스타일시트의 URL 또는 로컬 경로 목록입니다. 상대 경로는 Explorer에서 열린 폴더를 기준으로 해석됩니다. 열린 폴더가 없으면 Markdown 파일의 위치를 기준으로 해석됩니다. 모든 '\\'는 '\\\\'로 써야 합니다.",
+ "markdown.trace.extension.desc": "Markdown 확장에 대해 디버그 로깅을 사용하도록 설정합니다.",
+ "markdown.trace.server.desc": "VS Code와 Markdown 언어 서버 간 통신을 추적합니다.",
+ "workspaceTrust": "작업 영역에 구성된 스타일을 로드하는 데 필요합니다."
+ }
+ }
+}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-ko/translations/extensions/vscode.markdown-math.i18n.json b/i18n/vscode-language-pack-ko/translations/extensions/vscode.markdown-math.i18n.json
new file mode 100644
index 0000000000..425c8563db
--- /dev/null
+++ b/i18n/vscode-language-pack-ko/translations/extensions/vscode.markdown-math.i18n.json
@@ -0,0 +1,18 @@
+{
+ "": [
+ "--------------------------------------------------------------------------------------------",
+ "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."
+ ],
+ "version": "1.0.0",
+ "contents": {
+ "package": {
+ "config.markdown.math.enabled": "기본 제공 Markdown 미리 보기에서 렌더링 수학을 사용하거나 사용하지 않도록 설정합니다.",
+ "config.markdown.math.macros": "사용자 지정 매크로의 컬렉션입니다. 각 매크로는 키-값 쌍으로, 키는 새 명령 이름이고 값은 매크로의 확장입니다.",
+ "description": "전자 필기장의 Markdown에 수학 지원을 추가합니다.",
+ "displayName": "Markdown 수학"
+ }
+ }
+}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-ko/translations/extensions/vscode.markdown.i18n.json b/i18n/vscode-language-pack-ko/translations/extensions/vscode.markdown.i18n.json
index 8751c0e491..a82dd8bc4f 100644
--- a/i18n/vscode-language-pack-ko/translations/extensions/vscode.markdown.i18n.json
+++ b/i18n/vscode-language-pack-ko/translations/extensions/vscode.markdown.i18n.json
@@ -9,8 +9,8 @@
"version": "1.0.0",
"contents": {
"package": {
- "displayName": "Markdown 언어 기본 사항",
- "description": "Markdown에 대해 코드 조각 및 구문 강조 표시를 제공합니다."
+ "description": "Markdown에 대해 코드 조각 및 구문 강조 표시를 제공합니다.",
+ "displayName": "Markdown 언어 기본 사항"
}
}
}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-ko/translations/extensions/vscode.media-preview.i18n.json b/i18n/vscode-language-pack-ko/translations/extensions/vscode.media-preview.i18n.json
new file mode 100644
index 0000000000..83fa25277e
--- /dev/null
+++ b/i18n/vscode-language-pack-ko/translations/extensions/vscode.media-preview.i18n.json
@@ -0,0 +1,42 @@
+{
+ "": [
+ "--------------------------------------------------------------------------------------------",
+ "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."
+ ],
+ "version": "1.0.0",
+ "contents": {
+ "bundle": {
+ "An error occurred while loading the audio file.": "오디오 파일을 로드하는 동안 오류가 발생했습니다.",
+ "An error occurred while loading the image.": "이미지를 로드하는 동안 오류가 발생했습니다.",
+ "An error occurred while loading the video file.": "비디오 파일을 로드하는 동안 오류가 발생했습니다.",
+ "Image Binary Size": "이미지 이진 크기",
+ "Image Size": "이미지 크기",
+ "Image Zoom": "이미지 확대/축소",
+ "Open file using VS Code's standard text/binary editor?": "VS Code의 표준 텍스트/바이너리 편집기를 사용하여 파일을 여시겠습니까?",
+ "Select zoom level": "확대/축소 수준 선택",
+ "Whole Image": "전체 이미지",
+ "{0}B": "{0}B",
+ "{0}GB": "{0}GB",
+ "{0}KB": "{0}KB",
+ "{0}MB": "{0}MB",
+ "{0}TB": "{0}TB"
+ },
+ "package": {
+ "command.copyImage": "복사",
+ "command.reopenAsPreview": "이미지 미리 보기로 다시 열기",
+ "command.reopenAsText": "원본 텍스트로 다시 열기",
+ "command.zoomIn": "확대",
+ "command.zoomOut": "축소",
+ "customEditor.audioPreview.displayName": "오디오 미리 보기",
+ "customEditor.imagePreview.displayName": "이미지 미리 보기",
+ "customEditor.videoPreview.displayName": "비디오 미리 보기",
+ "description": "이미지, 오디오 및 비디오에 대한 VS Code 기본 제공 미리 보기를 제공합니다.",
+ "displayName": "미디어 미리 보기",
+ "videoPreviewerAutoPlay": "자동으로 음소거 시 비디오 재생을 시작합니다.",
+ "videoPreviewerLoop": "비디오를 자동으로 반복합니다."
+ }
+ }
+}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-ko/translations/extensions/vscode.merge-conflict.i18n.json b/i18n/vscode-language-pack-ko/translations/extensions/vscode.merge-conflict.i18n.json
new file mode 100644
index 0000000000..d50b434c02
--- /dev/null
+++ b/i18n/vscode-language-pack-ko/translations/extensions/vscode.merge-conflict.i18n.json
@@ -0,0 +1,49 @@
+{
+ "": [
+ "--------------------------------------------------------------------------------------------",
+ "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."
+ ],
+ "version": "1.0.0",
+ "contents": {
+ "bundle": {
+ "(Current Change)": "(현재 변경 사항)",
+ "(Incoming Change)": "(수신 변경 사항)",
+ "Accept Both Changes": "두 변경 사항 모두 수락",
+ "Accept Current Change": "현재 변경 사항 수락",
+ "Accept Incoming Change": "수신 변경 사항 수락",
+ "Compare Changes": "변경 사항 비교",
+ "Editor cursor is not within a merge conflict": "편집기 커서가 병합 충돌 내에 없음",
+ "Editor cursor is within the common ancestors block, please move it to either the \"current\" or \"incoming\" block": "편집기 커서가 공통 과거 블록 내에 있습니다. \"현재\" 또는 \"수신\" 블록으로 옮기세요.",
+ "Editor cursor is within the merge conflict splitter, please move it to either the \"current\" or \"incoming\" block": "편집기 커서가 병합 충돌 스플리터 내에 있습니다. \"현재\" 또는 \"수신\" 블록으로 옮기세요.",
+ "No merge conflicts found in this file": "이 파일에서 발견된 병합 충돌 없음",
+ "No other merge conflicts within this file": "이 파일 내에 다른 병합 충돌 없음",
+ "{0}: Current Changes ↔ Incoming Changes": "{0}: 현재 변경 사항 ⟷ 수신 변경 사항"
+ },
+ "package": {
+ "command.accept.all-both": "둘 다 모두 수락",
+ "command.accept.all-current": "모든 현재 사항 수락",
+ "command.accept.all-incoming": "수신 모두 수락",
+ "command.accept.both": "둘 다 수락",
+ "command.accept.current": "현재 수락",
+ "command.accept.incoming": "수신 수락",
+ "command.accept.selection": "선택 수락",
+ "command.category": "충돌 병합",
+ "command.compare": "현재 충돌 비교",
+ "command.next": "다음 충돌",
+ "command.previous": "이전 충돌",
+ "config.autoNavigateNextConflictEnabled": "병합 충돌을 해결한 후 다음 병합 충돌로 자동으로 이동할지 여부입니다.",
+ "config.codeLensEnabled": "편집기 내에서 병합 충돌 블록에 대한 Code Lens를 만듭니다.",
+ "config.decoratorsEnabled": "편집기 내에서 병합 충돌 블록에 대한 decorator를 만듭니다.",
+ "config.diffViewPosition": "병합 충돌에서 변경 내용을 비교할 때 diff 뷰가 열리는 위치를 제어합니다.",
+ "config.diffViewPosition.below": "현재 편집기 그룹 아래에 diff 뷰를 엽니다.",
+ "config.diffViewPosition.beside": "현재 편집기 그룹 옆에 있는 diff 뷰를 엽니다.",
+ "config.diffViewPosition.current": "현재 편집기 그룹에서 diff 뷰를 엽니다.",
+ "config.title": "충돌 병합",
+ "description": "인라인 병합 충돌에 대한 강조 표시 및 명령입니다.",
+ "displayName": "충돌 병합"
+ }
+ }
+}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-ko/translations/extensions/vscode.mermaid-chat-features.i18n.json b/i18n/vscode-language-pack-ko/translations/extensions/vscode.mermaid-chat-features.i18n.json
new file mode 100644
index 0000000000..62dbf8a862
--- /dev/null
+++ b/i18n/vscode-language-pack-ko/translations/extensions/vscode.mermaid-chat-features.i18n.json
@@ -0,0 +1,17 @@
+{
+ "": [
+ "--------------------------------------------------------------------------------------------",
+ "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."
+ ],
+ "version": "1.0.0",
+ "contents": {
+ "package": {
+ "config.enabled.description": "채팅 응답에서 실험용 Mermaid 다이어그램 렌더링 도구를 활성화하세요.",
+ "description": "기본 제공 채팅에 Mermaid 다이어그램 지원을 추가합니다.",
+ "displayName": "Mermaid 채팅 기능"
+ }
+ }
+}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-ko/translations/extensions/vscode.microsoft-authentication.i18n.json b/i18n/vscode-language-pack-ko/translations/extensions/vscode.microsoft-authentication.i18n.json
new file mode 100644
index 0000000000..4b616f6dfe
--- /dev/null
+++ b/i18n/vscode-language-pack-ko/translations/extensions/vscode.microsoft-authentication.i18n.json
@@ -0,0 +1,51 @@
+{
+ "": [
+ "--------------------------------------------------------------------------------------------",
+ "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."
+ ],
+ "version": "1.0.0",
+ "contents": {
+ "bundle": {
+ "Copy & Continue to Microsoft": "복사하고 Microsoft로 계속하기",
+ "Error validating custom environment setting: {0}": "사용자 지정 환경 설정 확인 오류: {0}",
+ "Having trouble logging in? Would you like to try a different way? ({0})": "로그인하는 데 문제가 있나요? 다른 방법을 시도해 보시겠습니까?({0})",
+ "Microsoft Account configuration has been changed.": "Microsoft 계정 구성이 변경되었습니다.",
+ "Microsoft Authentication": "Microsoft 인증",
+ "Microsoft Sovereign Cloud Authentication": "Microsoft 소버린 클라우드 인증",
+ "No": "아니요",
+ "Open [{0}]({0}) in a new tab and paste your one-time code: {1}/The [{0}]({0}) will be a url and the {1} will be a code, e.g. 123456{Locked=\"[{0}]({0})\"}": "새 탭에서 [{0}]({0})을 열고 일회성 코드 {1}을(를) 붙여넣습니다.",
+ "Open settings": "설정 열기",
+ "Reload": "다시 로드",
+ "Signing in to Microsoft...": "Microsoft에 로그인하는 중...",
+ "The environment `{0}` is not a valid environment.": "'{0}' 환경이 올바른 환경이 아닙니다.",
+ "To finish authenticating, navigate to Microsoft and paste in the above one-time code.": "인증을 완료하려면 Microsoft로 이동하여 위의 일회용 코드를 붙여넣으세요.",
+ "Yes": "예",
+ "You have not yet finished authorizing this extension to use your Microsoft Account. Would you like to try a different way? ({0})": "이 확장 프로그램이 Microsoft 계정을 사용하도록 승인하는 작업을 아직 완료하지 않았습니다. 다른 방법을 시도해 보시겠습니까?({0})",
+ "You must also specify a custom environment in order to use the custom environment auth provider.": "사용자 지정 환경 인증 공급자를 사용하려면 사용자 지정 환경도 지정해야 합니다.",
+ "Your Code: {0}/The {0} will be a code, e.g. 123-456": "코드: {0}"
+ },
+ "package": {
+ "description": "Microsoft 인증 공급자",
+ "displayName": "Microsoft 계정",
+ "microsoft-authentication.implementation.description": "Microsoft 계정 로그인하는 데 사용할 인증 구현입니다.",
+ "microsoft-authentication.implementation.enumDescriptions.msal": "MSAL(Microsoft 인증 라이브러리)을 사용하여 Microsoft 계정에 로그인합니다.",
+ "microsoft-authentication.implementation.enumDescriptions.msal-no-broker": "브라우저를 사용하여 Microsoft 계정으로 로그인하려면 Microsoft 인증 라이브러리(MSAL)를 사용하세요. 네이티브 브로커에 문제가 있는 경우에 유용합니다.",
+ "microsoft-sovereign-cloud.customEnvironment.activeDirectoryEndpointUrl.description": "사용자 지정 소버린 클라우드에 대한 Active Directory 엔드포인트입니다.",
+ "microsoft-sovereign-cloud.customEnvironment.activeDirectoryResourceId.description": "사용자 지정 소버린 클라우드의 Active Directory 리소스 ID입니다.",
+ "microsoft-sovereign-cloud.customEnvironment.description": "Microsoft 소버린 클라우드 인증 공급자와 함께 사용할 소버린 클라우드에 대한 사용자 지정 구성입니다. 이 기능을 사용하려면 `#microsoft-sovereign-cloud.environment#`을 'custom'으로 설정해야 합니다.",
+ "microsoft-sovereign-cloud.customEnvironment.managementEndpointUrl.description": "사용자 지정 소버린 클라우드의 관리 엔드포인트입니다.",
+ "microsoft-sovereign-cloud.customEnvironment.name.description": "사용자 지정 소버린 클라우드의 이름입니다.",
+ "microsoft-sovereign-cloud.customEnvironment.portalUrl.description": "사용자 지정 소버린 클라우드의 포털 URL입니다.",
+ "microsoft-sovereign-cloud.customEnvironment.resourceManagerEndpointUrl.description": "사용자 지정 소버린 클라우드에 대한 리소스 관리자 엔드포인트입니다.",
+ "microsoft-sovereign-cloud.environment.description": "인증에 사용할 소버린 클라우드입니다. 'custom'을 선택하는 경우 `#microsoft-sovereign-cloud.customEnvironment#` 설정도 설정해야 합니다.",
+ "microsoft-sovereign-cloud.environment.enumDescriptions.AzureChinaCloud": "Azure 중국",
+ "microsoft-sovereign-cloud.environment.enumDescriptions.AzureUSGovernment": "Azure US Government",
+ "microsoft-sovereign-cloud.environment.enumDescriptions.custom": "사용자 지정 Microsoft 소버린 클라우드",
+ "signIn": "로그인",
+ "signOut": "로그아웃"
+ }
+ }
+}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-ko/translations/extensions/vscode.npm.i18n.json b/i18n/vscode-language-pack-ko/translations/extensions/vscode.npm.i18n.json
new file mode 100644
index 0000000000..bf505352e5
--- /dev/null
+++ b/i18n/vscode-language-pack-ko/translations/extensions/vscode.npm.i18n.json
@@ -0,0 +1,127 @@
+{
+ "": [
+ "--------------------------------------------------------------------------------------------",
+ "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."
+ ],
+ "version": "1.0.0",
+ "contents": {
+ "bundle": {
+ "Could not find a valid npm script at the selection.": "선택 영역에서 유효한 npm 스크립트를 찾을 수 없습니다.",
+ "Debug": "디버그",
+ "Debug Script": "디버그 스크립트",
+ "Default package.json": "기본 package.json",
+ "Do not show again": "다시 표시 안 함",
+ "Latest version: {0}": "최신 버전: {0}",
+ "Latest version: {0} published {1}": "최신 버전: {0} 게시됨 {1}",
+ "Learn more": "자세한 정보",
+ "Matches the most recent major version (1.x.x)": "최신 주 버전(1.x.x)과 일치",
+ "Matches the most recent minor version (1.2.x)": "최신 부 버전(1.2.x)과 일치",
+ "No scripts found.": "스크립트를 찾을 수 없습니다.",
+ "Npm task detection: failed to parse the file {0}": "npm 작업 검색: {0} 파일을 구문 분석하지 못했습니다.",
+ "Request to the NPM repository failed: {0}": "NPM 리포지토리 요청 실패: {0}",
+ "Run Script": "스크립트 실행",
+ "Run the script as a task": "작업으로 스크립트 실행",
+ "Runs the script under the debugger": "디버거에서 스크립트 실행",
+ "The currently latest version of the package": "패키지의 현재 최신 버전",
+ "The setting \"npm.autoDetect\" is \"off\".": "\"npm.autoDetect\" 설정이 \"해제\"되어 있습니다.",
+ "Using {0} as the preferred package manager. Found multiple lockfiles for {1}. To resolve this issue, delete the lockfiles that don't match your preferred package manager or change the setting \"npm.packageManager\" to a value other than \"auto\".": "기본 패키지 관리자로 {0}을(를) 사용하고 있습니다. {1}에 대한 잠금 파일을 여러 개 찾았습니다. 이 문제를 해결하려면 기본 패키지 관리자와 일치하지 않는 잠금 파일을 삭제하거나 \"npm.packageManager\" 설정을 \"auto\" 이외의 값으로 변경하세요.",
+ "in {0}": "{0} 후",
+ "now": "지금",
+ "{0} day": "{0}일",
+ "{0} day ago": "{0}일 전",
+ "{0} days": "{0}일",
+ "{0} days ago": "{0}일 전",
+ "{0} hour": "{0}시간",
+ "{0} hour ago": "{0}시간 전",
+ "{0} hours": "{0}시간",
+ "{0} hours ago": "{0}시간 전",
+ "{0} hr": "{0}시간",
+ "{0} hr ago": "{0}시간 전",
+ "{0} hrs": "{0}시간",
+ "{0} hrs ago": "{0}시간 전",
+ "{0} min": "{0}분",
+ "{0} min ago": "{0}분 전",
+ "{0} mins": "{0}분",
+ "{0} mins ago": "{0}분 전",
+ "{0} minute": "{0}분",
+ "{0} minute ago": "{0}분 전",
+ "{0} minutes": "{0}분",
+ "{0} minutes ago": "{0}분 전",
+ "{0} mo": "{0}개월",
+ "{0} mo ago": "{0}개월 전",
+ "{0} month": "{0}월",
+ "{0} month ago": "{0}개월 전",
+ "{0} months": "{0}개월",
+ "{0} months ago": "{0}달 전",
+ "{0} mos": "{0}개월",
+ "{0} mos ago": "{0}개월 전",
+ "{0} sec": "{0}초",
+ "{0} sec ago": "{0}초 전",
+ "{0} second": "{0}초",
+ "{0} second ago": "{0}초 전",
+ "{0} seconds": "{0}초",
+ "{0} seconds ago": "{0}초 전",
+ "{0} secs": "{0}초",
+ "{0} secs ago": "{0}초 전",
+ "{0} week": "{0}주",
+ "{0} week ago": "{0}주 전",
+ "{0} weeks": "{0}주",
+ "{0} weeks ago": "{0}주 전",
+ "{0} wk": "{0}주",
+ "{0} wk ago": "{0}주 전",
+ "{0} wks": "{0}주",
+ "{0} wks ago": "{0}주 전",
+ "{0} year": "{0}년",
+ "{0} year ago": "{0}년 전",
+ "{0} years": "{0}년",
+ "{0} years ago": "{0}년 전",
+ "{0} yr": "{0}년",
+ "{0} yr ago": "{0}년 전",
+ "{0} yrs": "{0}년",
+ "{0} yrs ago": "{0}년 전"
+ },
+ "package": {
+ "command.debug": "디버그",
+ "command.openScript": "열기",
+ "command.packageManager": "구성된 패키지 관리자 가져오기",
+ "command.refresh": "새로 고침",
+ "command.run": "실행",
+ "command.runInstall": "설치 실행",
+ "command.runScriptFromFolder": "폴더에서 NPM 스크립트 실행...",
+ "command.runSelectedScript": "스크립트 실행",
+ "config.npm.autoDetect": "npm 스크립트가 자동으로 감지되어야 하는지 여부를 제어합니다.",
+ "config.npm.enableRunFromFolder": "탐색기 컨텍스트 메뉴의 폴더에 포함된 NPM 스크립트 실행을 사용하도록 설정합니다.",
+ "config.npm.enableScriptExplorer": "최상위 'package.json' 파일이 없는 경우 npm 스크립트의 탐색기 보기를 사용하도록 설정합니다.",
+ "config.npm.exclude": "자동 스크립트 검색에서 제외할 폴더에 대한 Glob 패턴을 구성합니다.",
+ "config.npm.fetchOnlinePackageInfo": "https://registry.npmjs.org 및 https://registry.bower.io에서 데이터를 가져와 npm 종속성의 가리키기 기능에 대한 정보 및 자동 완성을 제공합니다.",
+ "config.npm.packageManager": "종속성을 설치하는 데 사용되는 패키지 관리자입니다.",
+ "config.npm.packageManager.auto": "잠금 파일 및 설치된 패키지 관리자를 기반으로 사용할 패키지 관리자를 자동 감지합니다.",
+ "config.npm.packageManager.bun": "bun을 패키지 관리자로 사용합니다.",
+ "config.npm.packageManager.npm": "npm을 패키지 관리자로 사용합니다.",
+ "config.npm.packageManager.pnpm": "pnpm을 패키지 관리자로 사용합니다.",
+ "config.npm.packageManager.yarn": "yarn을 패키지 관리자로 사용합니다.",
+ "config.npm.runSilent": "`--silent` 옵션으로 npm 명령 실행.",
+ "config.npm.scriptExplorerAction": "NPM 스크립트 탐색기에서 사용되는 기본 클릭 작업: 'open' 또는 'run', 기본값은 'open'입니다.",
+ "config.npm.scriptExplorerExclude": "NPM 스크립트 뷰에서 제외해야 하는 스크립트를 나타내는 정규식 배열입니다.",
+ "config.npm.scriptHover": "스크립트에 대한 '실행' 및 '디버그' 명령으로 가리킵니다.",
+ "config.npm.scriptRunner": "스크립트를 실행하는 데 사용되는 스크립트 실행기입니다.",
+ "config.npm.scriptRunner.auto": "잠금 파일 및 설치된 패키지 관리자를 기반으로 사용할 스크립트 실행기를 자동 감지합니다.",
+ "config.npm.scriptRunner.bun": "스크립트 실행기로 번을 사용합니다.",
+ "config.npm.scriptRunner.node": "Node.js 스크립트 실행기로 사용합니다.",
+ "config.npm.scriptRunner.npm": "npm을 스크립트 실행기로 사용합니다.",
+ "config.npm.scriptRunner.pnpm": "pnpm을 스크립트 실행기로 사용합니다.",
+ "config.npm.scriptRunner.yarn": "Yarn을 스크립트 실행기로 사용합니다.",
+ "description": "npm 스크립트에 대한 작업 지원을 추가할 확장입니다.",
+ "displayName": "VS Code에 대한 Npm 지원",
+ "npm.parseError": "npm 작업 검색: {0} 파일을 구문 분석하지 못했습니다.",
+ "taskdef.path": "스크립트를 제공하는 package.json 파일의 폴더 경로이며 생략할 수 있습니다.",
+ "taskdef.script": "사용자 지정할 npm 스크립트입니다.",
+ "view.name": "Npm 스크립트",
+ "virtualWorkspaces": "가상 작업 영역에서는 'npm' 명령을 실행해야 하는 기능을 사용할 수 없습니다.",
+ "workspaceTrust": "이 확장은 신뢰를 필요로 하는 작업을 실행합니다."
+ }
+ }
+}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-ko/translations/extensions/vscode.objective-c.i18n.json b/i18n/vscode-language-pack-ko/translations/extensions/vscode.objective-c.i18n.json
index 51985ebc38..c523edc935 100644
--- a/i18n/vscode-language-pack-ko/translations/extensions/vscode.objective-c.i18n.json
+++ b/i18n/vscode-language-pack-ko/translations/extensions/vscode.objective-c.i18n.json
@@ -9,8 +9,8 @@
"version": "1.0.0",
"contents": {
"package": {
- "displayName": "Objective-C 언어 기본",
- "description": "Objective-C 파일에서 구문 강조 표시 및 괄호 일치를 제공합니다."
+ "description": "Objective-C 파일에서 구문 강조 표시 및 괄호 일치를 제공합니다.",
+ "displayName": "Objective-C 언어 기본"
}
}
}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-ko/translations/extensions/vscode.perl.i18n.json b/i18n/vscode-language-pack-ko/translations/extensions/vscode.perl.i18n.json
index 1f5b29503b..3da32e223f 100644
--- a/i18n/vscode-language-pack-ko/translations/extensions/vscode.perl.i18n.json
+++ b/i18n/vscode-language-pack-ko/translations/extensions/vscode.perl.i18n.json
@@ -9,8 +9,8 @@
"version": "1.0.0",
"contents": {
"package": {
- "displayName": "Perl 언어 기본 사항",
- "description": "Perl 파일에서 구문 강조 표시 및 괄호 일치를 제공합니다."
+ "description": "Perl 파일에서 구문 강조 표시 및 괄호 일치를 제공합니다.",
+ "displayName": "Perl 언어 기본 사항"
}
}
}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-ko/translations/extensions/vscode.php-language-features.i18n.json b/i18n/vscode-language-pack-ko/translations/extensions/vscode.php-language-features.i18n.json
new file mode 100644
index 0000000000..964c524995
--- /dev/null
+++ b/i18n/vscode-language-pack-ko/translations/extensions/vscode.php-language-features.i18n.json
@@ -0,0 +1,31 @@
+{
+ "": [
+ "--------------------------------------------------------------------------------------------",
+ "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."
+ ],
+ "version": "1.0.0",
+ "contents": {
+ "bundle": {
+ "Cannot validate since a PHP installation could not be found. Use the setting 'php.validate.executablePath' to configure the PHP executable.": "PHP 설치를 찾을 수 없기 때문에 유효성을 검사할 수 없습니다. 'php.validate.executablePath' 설정을 사용하여 PHP 실행 파일을 구성하세요.",
+ "Cannot validate since no PHP executable is set. Use the setting 'php.validate.executablePath' to configure the PHP executable.": "PHP 실행 파일이 설정되지 않았기 때문에 유효성을 검사할 수 없습니다. 'php.validate.executablePath' 설정을 사용하여 PHP 실행 파일을 구성하세요.",
+ "Cannot validate since {0} is not a valid php executable. Use the setting 'php.validate.executablePath' to configure the PHP executable.": "{0}은(는) 유효한 PHP 실행 파일이 아니기 때문에 유효성을 검사할 수 없습니다. 'php.validate.executablePath' 설정을 사용하여 PHP 실행 파일을 구성하세요.",
+ "Failed to run php using path: {0}. Reason is unknown.": "{0} 경로를 사용하여 php를 실행하지 못했습니다. 이유를 알 수 없습니다.",
+ "Open Settings": "설정 열기"
+ },
+ "package": {
+ "command.untrustValidationExecutable": "PHP 유효성 검사 실행 파일을 허용하지 않음(작업 영역 설정으로 정의됨)",
+ "commands.categroy.php": "PHP",
+ "configuration.suggest.basic": "기본 제공 PHP 언어 제안을 사용하는지 여부를 구성합니다. 지원에서는 PHP 전역 및 변수를 제안합니다.",
+ "configuration.title": "PHP",
+ "configuration.validate.enable": "기본 제공 PHP 유효성 검사를 사용하거나 사용하지 않습니다.",
+ "configuration.validate.executablePath": "PHP 실행 파일을 가리킵니다.",
+ "configuration.validate.run": "저장 시 또는 입력 시 Linter의 실행 여부입니다.",
+ "description": "PHP 파일에 대한 다양한 언어 지원을 제공합니다.",
+ "displayName": "PHP 언어 기능",
+ "workspaceTrust": "`php.validate.executablePath` 설정이 작업 영역에서 PHP 버전을 로드할 때 확장에서 작업 영역 신뢰를 필요로 합니다."
+ }
+ }
+}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-ko/translations/extensions/vscode.php.i18n.json b/i18n/vscode-language-pack-ko/translations/extensions/vscode.php.i18n.json
index 7862d02357..f8077c9555 100644
--- a/i18n/vscode-language-pack-ko/translations/extensions/vscode.php.i18n.json
+++ b/i18n/vscode-language-pack-ko/translations/extensions/vscode.php.i18n.json
@@ -9,8 +9,8 @@
"version": "1.0.0",
"contents": {
"package": {
- "displayName": "PHP 언어 기본 사항",
- "description": "PHP 파일에서 구문 강조 표시 및 괄호 일치를 제공합니다."
+ "description": "PHP 파일에서 구문 강조 표시 및 괄호 일치를 제공합니다.",
+ "displayName": "PHP 언어 기본 사항"
}
}
}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-ko/translations/extensions/vscode.powershell.i18n.json b/i18n/vscode-language-pack-ko/translations/extensions/vscode.powershell.i18n.json
index 73bd16b241..0d7c39776f 100644
--- a/i18n/vscode-language-pack-ko/translations/extensions/vscode.powershell.i18n.json
+++ b/i18n/vscode-language-pack-ko/translations/extensions/vscode.powershell.i18n.json
@@ -9,8 +9,8 @@
"version": "1.0.0",
"contents": {
"package": {
- "displayName": "Powershell 언어 기본 사항",
- "description": "Powershell 파일에서 코드 조각, 구문 강조 표시, 괄호 일치 및 접기를 제공합니다."
+ "description": "Powershell 파일에서 코드 조각, 구문 강조 표시, 괄호 일치 및 접기를 제공합니다.",
+ "displayName": "Powershell 언어 기본 사항"
}
}
}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-ko/translations/extensions/vscode.prompt.i18n.json b/i18n/vscode-language-pack-ko/translations/extensions/vscode.prompt.i18n.json
new file mode 100644
index 0000000000..375da61571
--- /dev/null
+++ b/i18n/vscode-language-pack-ko/translations/extensions/vscode.prompt.i18n.json
@@ -0,0 +1,16 @@
+{
+ "": [
+ "--------------------------------------------------------------------------------------------",
+ "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."
+ ],
+ "version": "1.0.0",
+ "contents": {
+ "package": {
+ "description": "프롬프트 및 지침 문서에 대한 구문 강조 표시",
+ "displayName": "프롬프트 언어 기본 사항"
+ }
+ }
+}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-ko/translations/extensions/vscode.pug.i18n.json b/i18n/vscode-language-pack-ko/translations/extensions/vscode.pug.i18n.json
index 3fe9a239c3..f8980d1cfe 100644
--- a/i18n/vscode-language-pack-ko/translations/extensions/vscode.pug.i18n.json
+++ b/i18n/vscode-language-pack-ko/translations/extensions/vscode.pug.i18n.json
@@ -9,8 +9,8 @@
"version": "1.0.0",
"contents": {
"package": {
- "displayName": "Pug 언어 기본 사항",
- "description": "Pug 파일에서 구문 강조 표시 및 괄호 일치를 제공합니다."
+ "description": "Pug 파일에서 구문 강조 표시 및 괄호 일치를 제공합니다.",
+ "displayName": "Pug 언어 기본 사항"
}
}
}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-ko/translations/extensions/python.i18n.json b/i18n/vscode-language-pack-ko/translations/extensions/vscode.python.i18n.json
similarity index 100%
rename from i18n/vscode-language-pack-ko/translations/extensions/python.i18n.json
rename to i18n/vscode-language-pack-ko/translations/extensions/vscode.python.i18n.json
diff --git a/i18n/vscode-language-pack-ko/translations/extensions/vscode.r.i18n.json b/i18n/vscode-language-pack-ko/translations/extensions/vscode.r.i18n.json
index ed9231ec91..ba2ec7d1eb 100644
--- a/i18n/vscode-language-pack-ko/translations/extensions/vscode.r.i18n.json
+++ b/i18n/vscode-language-pack-ko/translations/extensions/vscode.r.i18n.json
@@ -9,8 +9,8 @@
"version": "1.0.0",
"contents": {
"package": {
- "displayName": "R 언어 기본 사항",
- "description": "R 파일에서 구문 강조 표시 및 괄호 일치를 제공합니다."
+ "description": "R 파일에서 구문 강조 표시 및 괄호 일치를 제공합니다.",
+ "displayName": "R 언어 기본 사항"
}
}
}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-ko/translations/extensions/vscode.razor.i18n.json b/i18n/vscode-language-pack-ko/translations/extensions/vscode.razor.i18n.json
index 199a008b46..e7ed391d54 100644
--- a/i18n/vscode-language-pack-ko/translations/extensions/vscode.razor.i18n.json
+++ b/i18n/vscode-language-pack-ko/translations/extensions/vscode.razor.i18n.json
@@ -9,8 +9,8 @@
"version": "1.0.0",
"contents": {
"package": {
- "displayName": "Razor 언어 기본",
- "description": "Razor 파일에서 구문 강조 표시, 괄호 일치 및 접기를 제공합니다."
+ "description": "Razor 파일에서 구문 강조 표시, 괄호 일치 및 접기를 제공합니다.",
+ "displayName": "Razor 언어 기본"
}
}
}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-ko/translations/extensions/vscode.references-view.i18n.json b/i18n/vscode-language-pack-ko/translations/extensions/vscode.references-view.i18n.json
new file mode 100644
index 0000000000..9884d41c1d
--- /dev/null
+++ b/i18n/vscode-language-pack-ko/translations/extensions/vscode.references-view.i18n.json
@@ -0,0 +1,61 @@
+{
+ "": [
+ "--------------------------------------------------------------------------------------------",
+ "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."
+ ],
+ "version": "1.0.0",
+ "contents": {
+ "bundle": {
+ "Callers Of": "의 호출자",
+ "Calls From": "의 호출",
+ "No results.": "결과가 없습니다.",
+ "No results. Try running a previous search again:": "결과가 없습니다. 이전 검색을 다시 실행해 보세요.",
+ "Open Call": "통화 열기",
+ "Open Reference": "참조 열기",
+ "Open Type": "형식 열기",
+ "References": "참조",
+ "Rerun": "다시 실행",
+ "Select previous reference search": "이전 참조 검색 선택",
+ "Subtypes Of": "의 하위 형식",
+ "Supertypes Of": "의 상위 형식",
+ "{0} result in {1} file": "{1}개 파일에서 {0}개 결과",
+ "{0} result in {1} files": "{1}개 파일에서 {0}개 결과",
+ "{0} results in {1} file": "{1}개 파일에서 {0}개 결과",
+ "{0} results in {1} files": "{1}개 파일에서 {0}개 결과"
+ },
+ "package": {
+ "cmd.category.references": "참조",
+ "cmd.references-view.clear": "삭제",
+ "cmd.references-view.clearHistory": "기록 지우기",
+ "cmd.references-view.copy": "복사",
+ "cmd.references-view.copyAll": "모두 복사",
+ "cmd.references-view.copyPath": "경로 복사",
+ "cmd.references-view.findImplementations": "모든 구현 찾기",
+ "cmd.references-view.findReferences": "모든 참조 찾기",
+ "cmd.references-view.next": "다음 참조로 이동",
+ "cmd.references-view.pickFromHistory": "기록 표시",
+ "cmd.references-view.prev": "이전 참조로 이동",
+ "cmd.references-view.refind": "다시 실행",
+ "cmd.references-view.refresh": "새로 고침",
+ "cmd.references-view.removeCallItem": "해제",
+ "cmd.references-view.removeReferenceItem": "해제",
+ "cmd.references-view.removeTypeItem": "해제",
+ "cmd.references-view.showCallHierarchy": "호출 계층 구조 표시",
+ "cmd.references-view.showIncomingCalls": "수신 호출 표시",
+ "cmd.references-view.showOutgoingCalls": "발신 전화 표시",
+ "cmd.references-view.showSubtypes": "하위 형식 표시",
+ "cmd.references-view.showSupertypes": "상위 형식 표시",
+ "cmd.references-view.showTypeHierarchy": "형식 계층 구조 표시",
+ "config.references.preferredLocation": "CodeLens 참조를 선택할 때 '참조 피킹' 또는 '참조 찾기'를 호출할지 여부를 제어합니다.",
+ "config.references.preferredLocation.peek": "Peek 편집기에서 참조를 표시합니다.",
+ "config.references.preferredLocation.view": "참조를 별도의 보기로 표시합니다.",
+ "container.title": "참조",
+ "description": "사이드바에서 검색 결과를 별도의 안정적인 보기로 참조",
+ "displayName": "참조 검색 보기",
+ "view.title": "참조 검색 결과"
+ }
+ }
+}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-ko/translations/extensions/restructuredtext.i18n.json b/i18n/vscode-language-pack-ko/translations/extensions/vscode.restructuredtext.i18n.json
similarity index 100%
rename from i18n/vscode-language-pack-ko/translations/extensions/restructuredtext.i18n.json
rename to i18n/vscode-language-pack-ko/translations/extensions/vscode.restructuredtext.i18n.json
diff --git a/i18n/vscode-language-pack-ko/translations/extensions/vscode.ruby.i18n.json b/i18n/vscode-language-pack-ko/translations/extensions/vscode.ruby.i18n.json
index f7287e378e..82b5a9c7e3 100644
--- a/i18n/vscode-language-pack-ko/translations/extensions/vscode.ruby.i18n.json
+++ b/i18n/vscode-language-pack-ko/translations/extensions/vscode.ruby.i18n.json
@@ -9,8 +9,8 @@
"version": "1.0.0",
"contents": {
"package": {
- "displayName": "Ruby 언어 기본",
- "description": "Ruby 파일에서 구문 강조 표시 및 괄호 일치를 제공합니다."
+ "description": "Ruby 파일에서 구문 강조 표시 및 괄호 일치를 제공합니다.",
+ "displayName": "Ruby 언어 기본"
}
}
}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-ko/translations/extensions/vscode.rust.i18n.json b/i18n/vscode-language-pack-ko/translations/extensions/vscode.rust.i18n.json
index d33a90a9ad..7b7c8076a7 100644
--- a/i18n/vscode-language-pack-ko/translations/extensions/vscode.rust.i18n.json
+++ b/i18n/vscode-language-pack-ko/translations/extensions/vscode.rust.i18n.json
@@ -9,8 +9,8 @@
"version": "1.0.0",
"contents": {
"package": {
- "displayName": "Rust 언어 기본",
- "description": "Rust 파일에서 구문 강조 표시 및 괄호 일치를 제공합니다."
+ "description": "Rust 파일에서 구문 강조 표시 및 괄호 일치를 제공합니다.",
+ "displayName": "Rust 언어 기본"
}
}
}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-ko/translations/extensions/vscode.scss.i18n.json b/i18n/vscode-language-pack-ko/translations/extensions/vscode.scss.i18n.json
index f499f903c2..cfbf99dda3 100644
--- a/i18n/vscode-language-pack-ko/translations/extensions/vscode.scss.i18n.json
+++ b/i18n/vscode-language-pack-ko/translations/extensions/vscode.scss.i18n.json
@@ -9,8 +9,8 @@
"version": "1.0.0",
"contents": {
"package": {
- "displayName": "SCSS 언어 기본 사항",
- "description": "SCSS 파일에서 구문 강조 표시, 괄호 일치 및 접기를 제공합니다."
+ "description": "SCSS 파일에서 구문 강조 표시, 괄호 일치 및 접기를 제공합니다.",
+ "displayName": "SCSS 언어 기본 사항"
}
}
}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-ko/translations/extensions/search-result.i18n.json b/i18n/vscode-language-pack-ko/translations/extensions/vscode.search-result.i18n.json
similarity index 100%
rename from i18n/vscode-language-pack-ko/translations/extensions/search-result.i18n.json
rename to i18n/vscode-language-pack-ko/translations/extensions/vscode.search-result.i18n.json
diff --git a/i18n/vscode-language-pack-ko/translations/extensions/vscode.shaderlab.i18n.json b/i18n/vscode-language-pack-ko/translations/extensions/vscode.shaderlab.i18n.json
index 342e4552d0..b5ec7023de 100644
--- a/i18n/vscode-language-pack-ko/translations/extensions/vscode.shaderlab.i18n.json
+++ b/i18n/vscode-language-pack-ko/translations/extensions/vscode.shaderlab.i18n.json
@@ -9,8 +9,8 @@
"version": "1.0.0",
"contents": {
"package": {
- "displayName": "Shaderlab 언어 기본",
- "description": "Shaderlab 파일에서 구문 강조 표시 및 괄호 일치를 제공합니다."
+ "description": "Shaderlab 파일에서 구문 강조 표시 및 괄호 일치를 제공합니다.",
+ "displayName": "Shaderlab 언어 기본"
}
}
}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-ko/translations/extensions/vscode.shellscript.i18n.json b/i18n/vscode-language-pack-ko/translations/extensions/vscode.shellscript.i18n.json
index a95f3d4cdc..05c6371b39 100644
--- a/i18n/vscode-language-pack-ko/translations/extensions/vscode.shellscript.i18n.json
+++ b/i18n/vscode-language-pack-ko/translations/extensions/vscode.shellscript.i18n.json
@@ -9,8 +9,8 @@
"version": "1.0.0",
"contents": {
"package": {
- "displayName": "셸 스크립트 언어 기본",
- "description": "셸 스크립트 파일에서 구문 강조 표시 및 괄호 일치를 제공합니다."
+ "description": "셸 스크립트 파일에서 구문 강조 표시 및 괄호 일치를 제공합니다.",
+ "displayName": "셸 스크립트 언어 기본"
}
}
}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-ko/translations/extensions/vscode.simple-browser.i18n.json b/i18n/vscode-language-pack-ko/translations/extensions/vscode.simple-browser.i18n.json
new file mode 100644
index 0000000000..bfb254e781
--- /dev/null
+++ b/i18n/vscode-language-pack-ko/translations/extensions/vscode.simple-browser.i18n.json
@@ -0,0 +1,28 @@
+{
+ "": [
+ "--------------------------------------------------------------------------------------------",
+ "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."
+ ],
+ "version": "1.0.0",
+ "contents": {
+ "bundle": {
+ "Back": "뒤로",
+ "Enter url to visit": "방문할 URL 입력",
+ "Focus Lock": "포커스 잠금",
+ "Forward": "앞으로",
+ "Open in browser": "브라우저에서 열기",
+ "Open in simple browser": "간단한 브라우저에서 열기",
+ "Reload": "다시 로드",
+ "Simple Browser": "간단한 브라우저",
+ "https://example.com": "https://example.com"
+ },
+ "package": {
+ "configuration.focusLockIndicator.enabled.description": "간단한 브라우저에 포커스가 있을 때를 보여 주는 부동 표시기를 사용하도록 설정/사용하지 않도록 설정합니다.",
+ "description": "웹 콘텐츠를 표시하기 위한 매우 기본적인 기본 제공 웹 보기입니다.",
+ "displayName": "간단한 브라우저"
+ }
+ }
+}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-ko/translations/extensions/vscode.sql.i18n.json b/i18n/vscode-language-pack-ko/translations/extensions/vscode.sql.i18n.json
index 11ca0c6877..0ad8aec9a9 100644
--- a/i18n/vscode-language-pack-ko/translations/extensions/vscode.sql.i18n.json
+++ b/i18n/vscode-language-pack-ko/translations/extensions/vscode.sql.i18n.json
@@ -9,8 +9,8 @@
"version": "1.0.0",
"contents": {
"package": {
- "displayName": "SQL 언어 기본 사항",
- "description": "SQL 파일에서 구문 강조 표시 및 괄호 일치를 제공합니다."
+ "description": "SQL 파일에서 구문 강조 표시 및 괄호 일치를 제공합니다.",
+ "displayName": "SQL 언어 기본 사항"
}
}
}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-ko/translations/extensions/vscode.swift.i18n.json b/i18n/vscode-language-pack-ko/translations/extensions/vscode.swift.i18n.json
index 5ea9559159..49af2be275 100644
--- a/i18n/vscode-language-pack-ko/translations/extensions/vscode.swift.i18n.json
+++ b/i18n/vscode-language-pack-ko/translations/extensions/vscode.swift.i18n.json
@@ -9,8 +9,8 @@
"version": "1.0.0",
"contents": {
"package": {
- "displayName": "Swift 언어 기본",
- "description": "Swift 파일에서 코드 조각, 구문 강조 표시 및 괄호 일치를 제공합니다."
+ "description": "Swift 파일에서 코드 조각, 구문 강조 표시 및 괄호 일치를 제공합니다.",
+ "displayName": "Swift 언어 기본"
}
}
}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-ko/translations/extensions/vscode.terminal-suggest.i18n.json b/i18n/vscode-language-pack-ko/translations/extensions/vscode.terminal-suggest.i18n.json
new file mode 100644
index 0000000000..0709428cee
--- /dev/null
+++ b/i18n/vscode-language-pack-ko/translations/extensions/vscode.terminal-suggest.i18n.json
@@ -0,0 +1,18 @@
+{
+ "": [
+ "--------------------------------------------------------------------------------------------",
+ "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."
+ ],
+ "version": "1.0.0",
+ "contents": {
+ "package": {
+ "description": "zsh, bash 및 fish 터미널에 대한 터미널 완성을 추가하는 확장입니다.",
+ "displayName": "VS Code 터미널 제안",
+ "terminal.integrated.suggest.clearCachedGlobals": "캐시된 전역 제안 지우기",
+ "view.name": "터미널 제안"
+ }
+ }
+}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-ko/translations/extensions/vscode.theme-abyss.i18n.json b/i18n/vscode-language-pack-ko/translations/extensions/vscode.theme-abyss.i18n.json
index e95772e450..30800543c7 100644
--- a/i18n/vscode-language-pack-ko/translations/extensions/vscode.theme-abyss.i18n.json
+++ b/i18n/vscode-language-pack-ko/translations/extensions/vscode.theme-abyss.i18n.json
@@ -9,8 +9,8 @@
"version": "1.0.0",
"contents": {
"package": {
- "displayName": "심해 테마",
"description": "Visual Studio Code용 심해 테마",
+ "displayName": "심해 테마",
"themeLabel": "심연"
}
}
diff --git a/i18n/vscode-language-pack-ko/translations/extensions/vscode.theme-defaults.i18n.json b/i18n/vscode-language-pack-ko/translations/extensions/vscode.theme-defaults.i18n.json
index 59ee4c26ba..82d5e6b50b 100644
--- a/i18n/vscode-language-pack-ko/translations/extensions/vscode.theme-defaults.i18n.json
+++ b/i18n/vscode-language-pack-ko/translations/extensions/vscode.theme-defaults.i18n.json
@@ -9,13 +9,16 @@
"version": "1.0.0",
"contents": {
"package": {
- "displayName": "기본 테마",
- "description": "기본 Visual Studio 밝은 테마 및 어두운 테마",
- "darkPlusColorThemeLabel": "어둡게+(기본 어둡게)",
- "lightPlusColorThemeLabel": "밝게+(기본 밝게)",
"darkColorThemeLabel": "어둡게(Visual Studio)",
+ "darkModernThemeLabel": "다크 모던",
+ "darkPlusColorThemeLabel": "다크+",
+ "description": "기본 Visual Studio 밝은 테마 및 어두운 테마",
+ "displayName": "기본 테마",
+ "hcColorThemeLabel": "어두운 고대비",
"lightColorThemeLabel": "밝게(Visual Studio)",
- "hcColorThemeLabel": "고대비",
+ "lightHcColorThemeLabel": "밝은 고대비",
+ "lightModernThemeLabel": "라이트 모던",
+ "lightPlusColorThemeLabel": "Light+",
"minimalIconThemeLabel": "최소(Visual Studio Code)"
}
}
diff --git a/i18n/vscode-language-pack-ko/translations/extensions/vscode.theme-kimbie-dark.i18n.json b/i18n/vscode-language-pack-ko/translations/extensions/vscode.theme-kimbie-dark.i18n.json
index d0907acf10..43feb594a4 100644
--- a/i18n/vscode-language-pack-ko/translations/extensions/vscode.theme-kimbie-dark.i18n.json
+++ b/i18n/vscode-language-pack-ko/translations/extensions/vscode.theme-kimbie-dark.i18n.json
@@ -9,9 +9,9 @@
"version": "1.0.0",
"contents": {
"package": {
- "displayName": "Kimbie 어두운 테마",
"description": "Visual Studio Code용 Kimbie 어두운 테마",
- "themeLabel": "Kimbie 어둡게"
+ "displayName": "Kimbie 어두운 테마",
+ "themeLabel": "킴비 다크"
}
}
}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-ko/translations/extensions/vscode.theme-monokai-dimmed.i18n.json b/i18n/vscode-language-pack-ko/translations/extensions/vscode.theme-monokai-dimmed.i18n.json
index e4735927a5..dfd63e05a3 100644
--- a/i18n/vscode-language-pack-ko/translations/extensions/vscode.theme-monokai-dimmed.i18n.json
+++ b/i18n/vscode-language-pack-ko/translations/extensions/vscode.theme-monokai-dimmed.i18n.json
@@ -9,8 +9,8 @@
"version": "1.0.0",
"contents": {
"package": {
- "displayName": "Monokai 흐릿한 테마",
"description": "Visual Studio Code용 Monokai 흐릿한 테마",
+ "displayName": "Monokai 흐릿한 테마",
"themeLabel": "Monokai 흐릿한"
}
}
diff --git a/i18n/vscode-language-pack-ko/translations/extensions/vscode.theme-monokai.i18n.json b/i18n/vscode-language-pack-ko/translations/extensions/vscode.theme-monokai.i18n.json
index 8d535b36f4..18ec1a71bd 100644
--- a/i18n/vscode-language-pack-ko/translations/extensions/vscode.theme-monokai.i18n.json
+++ b/i18n/vscode-language-pack-ko/translations/extensions/vscode.theme-monokai.i18n.json
@@ -9,8 +9,8 @@
"version": "1.0.0",
"contents": {
"package": {
- "displayName": "Monokai 테마",
"description": "Visual Studio Code용 Monokai 테마",
+ "displayName": "Monokai 테마",
"themeLabel": "Monokai"
}
}
diff --git a/i18n/vscode-language-pack-ko/translations/extensions/vscode.theme-quietlight.i18n.json b/i18n/vscode-language-pack-ko/translations/extensions/vscode.theme-quietlight.i18n.json
index 3bae241bc8..4e694ae17e 100644
--- a/i18n/vscode-language-pack-ko/translations/extensions/vscode.theme-quietlight.i18n.json
+++ b/i18n/vscode-language-pack-ko/translations/extensions/vscode.theme-quietlight.i18n.json
@@ -9,8 +9,8 @@
"version": "1.0.0",
"contents": {
"package": {
- "displayName": "고요한 밝은 테마",
"description": "Visual Studio Code용 고요한 밝은 테마",
+ "displayName": "고요한 밝은 테마",
"themeLabel": "고요한 밝은"
}
}
diff --git a/i18n/vscode-language-pack-ko/translations/extensions/vscode.theme-red.i18n.json b/i18n/vscode-language-pack-ko/translations/extensions/vscode.theme-red.i18n.json
index d884de676c..29a2059221 100644
--- a/i18n/vscode-language-pack-ko/translations/extensions/vscode.theme-red.i18n.json
+++ b/i18n/vscode-language-pack-ko/translations/extensions/vscode.theme-red.i18n.json
@@ -9,8 +9,8 @@
"version": "1.0.0",
"contents": {
"package": {
- "displayName": "빨간색 테마",
"description": "Visual Studio Code용 빨간색 테마",
+ "displayName": "빨간색 테마",
"themeLabel": "빨간색"
}
}
diff --git a/i18n/vscode-language-pack-ko/translations/extensions/vscode.theme-solarized-dark.i18n.json b/i18n/vscode-language-pack-ko/translations/extensions/vscode.theme-solarized-dark.i18n.json
index 25a36c7df4..f95e488a99 100644
--- a/i18n/vscode-language-pack-ko/translations/extensions/vscode.theme-solarized-dark.i18n.json
+++ b/i18n/vscode-language-pack-ko/translations/extensions/vscode.theme-solarized-dark.i18n.json
@@ -9,9 +9,9 @@
"version": "1.0.0",
"contents": {
"package": {
- "displayName": "노출 어두운 테마",
"description": "Visual Studio Code용 노출 어두운 테마",
- "themeLabel": "노출 어두운"
+ "displayName": "노출 어두운 테마",
+ "themeLabel": "솔라이즈드 다크"
}
}
}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-ko/translations/extensions/vscode.theme-solarized-light.i18n.json b/i18n/vscode-language-pack-ko/translations/extensions/vscode.theme-solarized-light.i18n.json
index d22f5768c4..30b675948a 100644
--- a/i18n/vscode-language-pack-ko/translations/extensions/vscode.theme-solarized-light.i18n.json
+++ b/i18n/vscode-language-pack-ko/translations/extensions/vscode.theme-solarized-light.i18n.json
@@ -9,8 +9,8 @@
"version": "1.0.0",
"contents": {
"package": {
- "displayName": "노출 밝은 테마",
"description": "Visual Studio Code용 노출 밝은 테마",
+ "displayName": "노출 밝은 테마",
"themeLabel": "노출 밝은"
}
}
diff --git a/i18n/vscode-language-pack-ko/translations/extensions/vscode.theme-tomorrow-night-blue.i18n.json b/i18n/vscode-language-pack-ko/translations/extensions/vscode.theme-tomorrow-night-blue.i18n.json
index 3d024aee29..42c411c26a 100644
--- a/i18n/vscode-language-pack-ko/translations/extensions/vscode.theme-tomorrow-night-blue.i18n.json
+++ b/i18n/vscode-language-pack-ko/translations/extensions/vscode.theme-tomorrow-night-blue.i18n.json
@@ -9,8 +9,8 @@
"version": "1.0.0",
"contents": {
"package": {
- "displayName": "내일 밤 파란색 테마",
"description": "Visual Studio Code용 내일 밤 파란색 테마",
+ "displayName": "내일 밤 파란색 테마",
"themeLabel": "내일 밤 파란색"
}
}
diff --git a/i18n/vscode-language-pack-ko/translations/extensions/vscode.tunnel-forwarding.i18n.json b/i18n/vscode-language-pack-ko/translations/extensions/vscode.tunnel-forwarding.i18n.json
new file mode 100644
index 0000000000..82dd32ae42
--- /dev/null
+++ b/i18n/vscode-language-pack-ko/translations/extensions/vscode.tunnel-forwarding.i18n.json
@@ -0,0 +1,27 @@
+{
+ "": [
+ "--------------------------------------------------------------------------------------------",
+ "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."
+ ],
+ "version": "1.0.0",
+ "contents": {
+ "bundle": {
+ "Continue": "계속",
+ "Don't show again": "다시 표시 안 함",
+ "Port Forwarding": "포트 전달",
+ "Private": "프라이빗",
+ "Public": "공용",
+ "You're about to create a publicly forwarded port. Anyone on the internet will be able to connect to the service listening on port {0}. You should only proceed if this service is secure and non-sensitive.": "공개적으로 전달된 포트를 만들려고 합니다. 인터넷의 모든 사용자가 포트 {0}에서 수신 대기하는 서비스에 연결할 수 있습니다. 이 서비스가 안전하고 민감하지 않은 경우에만 계속 진행해야 합니다."
+ },
+ "package": {
+ "category": "포트 전달",
+ "command.restart": "전달 시스템 다시 시작",
+ "command.showLog": "로그 표시",
+ "description": "전달 로컬 포트를 인터넷을 통해 액세스할 수 있도록 허용합니다.",
+ "displayName": "로컬 터널 포트 전달"
+ }
+ }
+}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-ko/translations/extensions/vscode.typescript-language-features.i18n.json b/i18n/vscode-language-pack-ko/translations/extensions/vscode.typescript-language-features.i18n.json
new file mode 100644
index 0000000000..472f96ee92
--- /dev/null
+++ b/i18n/vscode-language-pack-ko/translations/extensions/vscode.typescript-language-features.i18n.json
@@ -0,0 +1,367 @@
+{
+ "": [
+ "--------------------------------------------------------------------------------------------",
+ "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."
+ ],
+ "version": "1.0.0",
+ "contents": {
+ "bundle": {
+ "(loading...)/Prefix displayed for hover entries while the server is still loading": "(로드 중...)",
+ "...1 additional file not shown": "...1개의 추가 파일이 표시되지 않음",
+ "...{0} additional files not shown": "...{0}개의 추가 파일이 표시되지 않음",
+ "1 implementation": "구현 1개",
+ "1 reference": "참조 1개",
+ "Acquiring typings definitions for IntelliSense./Typings refers to the *.d.ts typings files that power our IntelliSense. It should not be localized": "IntelliSense에 대한 typings 정의를 가져오는 중입니다.",
+ "Acquiring typings.../Typings refers to the *.d.ts typings files that power our IntelliSense. It should not be localized": "입력을 가져오는 중...",
+ "Add all missing imports": "모든 누락된 가져오기 추가",
+ "Add meaningful parameter name with AI": "AI를 사용하여 의미 있는 매개 변수 이름 추가",
+ "Add types to this code. Add separate interfaces when possible. Do not change the code except for adding types.": "이 코드에 유형을 추가합니다. 가능한 경우 별도의 인터페이스를 추가합니다. 유형을 추가하는 것 외에는 코드를 변경하지 마세요.",
+ "Allow": "허용",
+ "Always": "항상",
+ "An error occurred while renaming file": "파일 이름을 바꾸는 중 오류 발생",
+ "Analyzing '{0}' and its dependencies": "'{0}' 및 해당 종속성 분석",
+ "Checking for update of JS/TS imports": "JS/TS 가져오기 업데이트 확인",
+ "Configure Excludes": "제외 구성",
+ "Configure JSConfig": "JSConfig 구성",
+ "Configure TSConfig": "TSConfig 구성",
+ "Configure jsconfig.json": "jsconfig.json 구성",
+ "Configure tsconfig.json": "tsconfig.json 구성",
+ "Could not apply refactoring": "리팩터링을 적용할 수 없습니다.",
+ "Could not detect a Node installation to run TS Server.": "TS 서버를 실행할 노드 설치를 검색할 수 없습니다.",
+ "Could not determine TypeScript or JavaScript project": "TypeScript 또는 JavaScript 프로젝트를 확인할 수 없습니다.",
+ "Could not determine TypeScript or JavaScript project. Unsupported file type": "TypeScript 또는 JavaScript 프로젝트를 확인할 수 없습니다. 지원되지 않는 파일 형식",
+ "Could not determine references": "참조를 확인할 수 없음",
+ "Could not install typings files for JavaScript language features. Please ensure that NPM is installed, or configure 'typescript.npm' in your user settings. Alternatively, check the [documentation]({0}) to learn more.": "JavaScript 언어 기능에 대한 입력 파일을 설치할 수 없습니다. NPM이 설치되어 있는지 확인하거나 사용자 설정에서 'typescript.npm'을 구성하세요. 자세히 알아보려면 [설명서]({0})를 확인하세요.",
+ "Could not load the TypeScript version at this path": "이 경로에서 TypeScript 버전을 로드할 수 없음",
+ "Could not open TS Server log file": "TS 서버 로그 파일을 열 수 없습니다.",
+ "Disable logging": "로깅 사용 안 함",
+ "Disables semantic checking in a JavaScript file. Must be at the top of a file.": "JavaScript 파일에서 의미 검사를 사용하지 않습니다. 파일의 최상단에 있어야 합니다.",
+ "Dismiss": "해제",
+ "Don't Show Again": "다시 표시 안 함",
+ "Don't show again": "다시 표시 안 함",
+ "Enable logging and restart TS server": "로깅 사용 및 TS 서버 다시 시작",
+ "Enables semantic checking in a JavaScript file. Must be at the top of a file.": "JavaScript 파일에서 의미 검사를 사용합니다. 파일의 최상단에 있어야 합니다.",
+ "Enter file path": "파일 경로 입력",
+ "Enter new file path...": "새 파일 경로 입력...",
+ "Extract to constant": "상수로 추출",
+ "Extract to function": "함수로 추출",
+ "Failed to resolve {0} as module": "{0}을(를) 모듈로 확인하지 못했습니다.",
+ "Fetching data for better TypeScript IntelliSense": "TypeScript IntelliSense를 개선하기 위해 정보를 가져오는 중",
+ "File is not part of a JavaScript project. View the [jsconfig.json documentation]({0}) to learn more.": "파일이 JavaScript 프로젝트의 일부가 아닙니다. 자세한 내용은 [jsconfig.json 설명서]({0})를 참조하세요.",
+ "File is not part of a TypeScript project. View the [tsconfig.json documentation]({0}) to learn more.": "파일이 TypeScript 프로젝트의 일부가 아닙니다. 자세한 내용은 [tsconfig.json 설명서]({0})를 참조하세요.",
+ "File is not part opened folders": "파일이 열린 폴더의 일부가 아닙니다.",
+ "Find file references failed. No resource provided.": "파일 참조를 찾지 못했습니다. 리소스가 제공되지 않았습니다.",
+ "Find file references failed. Requires TypeScript 4.2+.": "파일 참조를 찾지 못했습니다. TypeScript 4.2 이상이 필요합니다.",
+ "Find file references failed. Unknown file type.": "파일 참조를 찾지 못했습니다. 알 수 없는 파일 형식입니다.",
+ "Find file references failed. Unsupported file type.": "파일 참조를 찾지 못했습니다. 지원되지 않는 파일 형식입니다.",
+ "Finding file references": "파일 참조를 찾는 중",
+ "Finding source definitions": "원본 정의 찾기",
+ "Fix all fixable JS/TS issues": "수정 가능한 모든 JS/TS 문제 수정",
+ "Follow link": "링크로 이동",
+ "Go to Source Definition failed. No resource provided.": "원본 정의로 이동하지 못했습니다. 리소스가 제공되지 않았습니다.",
+ "Go to Source Definition failed. Requires TypeScript 4.7+.": "원본 정의로 이동하지 못했습니다. TypeScript 4.7 이상이 필요합니다.",
+ "Go to Source Definition failed. Unknown file type.": "원본 정의로 이동하지 못했습니다. 알 수 없는 파일 형식입니다.",
+ "Go to Source Definition failed. Unsupported file type.": "원본 정의로 이동하지 못했습니다. 지원되지 않는 파일 형식입니다.",
+ "Implement missing function declaration '{0}' using AI": "AI를 사용하여 누락된 함수 선언 '{0}' 구현",
+ "Implement the stubbed-out class members for {0} with a useful implementation.": "유용한 구현을 통해 {0}에 대한 스텁 아웃 클래스 멤버를 구현합니다.",
+ "Infer types using AI": "AI를 사용하여 유형 유추",
+ "Initializing '{0}'": "'{0}'을(를) 초기화하는 중",
+ "JS/TS IntelliSense Status": "JS/TS IntelliSense 상태",
+ "JSDoc comment": "JSDoc 주석",
+ "Learn More": "자세한 정보",
+ "Learn more about JS/TS refactorings": "JS/TS 리팩터링에 대해 자세히 알아보기",
+ "Learn more about managing TypeScript versions": "TypeScript 버전 관리에 대한 자세한 정보",
+ "Loading IntelliSense status": "IntelliSense 상태 로드 중",
+ "Move to File": "파일로 이동",
+ "Never": "안 함 ",
+ "Never in this Workspace": "이 작업 영역에서 안 함",
+ "No": "아니요",
+ "No jsconfig": "jsconfig 없음",
+ "No opened folders": "열린 폴더 없음",
+ "No source definitions found.": "원본 정의를 찾을 수 없습니다.",
+ "No tsconfig": "tsconfig 없음",
+ "Not now": "나중에",
+ "Open Config File": "구성 파일 열기",
+ "Open on GitHub": "GitHub에서 열기",
+ "Organize Imports": "가져오기 구성",
+ "Partial mode": "부분 모드",
+ "Paste with imports": "가져오기로 붙여넣기",
+ "Please open a folder in VS Code to use a TypeScript or JavaScript project": "TypeScript 또는 JavaScript 프로젝트를 사용하려면 VS Code의 폴더를 여세요.",
+ "Please report an issue against Yarn PnP": "Yarn PnP에 대해 문제를 보고하세요.",
+ "Please update your TypeScript version": "TypeScript 버전을 업데이트하세요.",
+ "Project wide IntelliSense not available": "프로젝트 전체 IntelliSense를 사용할 수 없음",
+ "Provide a reasonable implementation of the function {0} given its type and the context it's called in.": "함수의 유형과 함수가 호출되는 컨텍스트를 고려하여 함수 {0}에 적절한 구현을 제공하세요.",
+ "Remove Unused Imports": "사용하지 않는 가져오기 제거",
+ "Remove all unused code": "사용하지 않는 모든 코드 제거",
+ "Rename the parameter {0} with a more meaningful name.": "매개 변수 {0} 이름을 보다 의미 있는 이름으로 바꿉니다.",
+ "Report Issue": "문제 신고",
+ "Report issue against Yarn PnP": "Yarn PnP에 대한 문제 보고",
+ "Select Version": "버전 선택",
+ "Select code action to apply": "적용할 코드 동작 선택",
+ "Select existing file...": "기존 파일 선택...",
+ "Select move destination": "이동 대상 선택",
+ "Select the TypeScript version used for JavaScript and TypeScript language features": "JavaScript 및 TypeScript 언어 기능에 사용되는 TypeScript 버전 선택",
+ "Sort Imports": "가져오기 정렬",
+ "Suppresses @ts-check errors on the next line of a file, expecting at least one to exist.": "파일 다음 줄에서 @ts-check 오류를 억제하며 하나 이상이 존재할 것으로 예상합니다.",
+ "Suppresses @ts-check errors on the next line of a file.": "파일의 다음 행에서 @ts-check 오류를 억제합니다.",
+ "TS Server has not started logging.": "TS 서버에서 로깅을 시작하지 않았습니다.",
+ "TS Server logging is currently enabled which may impact performance.": "TS 서버 로깅이 현재 사용하도록 설정되어 있어 성능에 영향을 미칠 수 있습니다.",
+ "TS Server logging is off. Please set 'typescript.tsserver.log' and restart the TS server to enable logging": "TS 서버 로깅이 꺼져 있습니다. “typescript.tsserver.log”를 설정하고 TS 서버를 다시 시작하여 로깅을 사용하도록 설정하세요.",
+ "The JS/TS language service crashed 5 times in the last 5 Minutes.": "JS/TS 언어 서비스가 지난 5분 동안 5번 충돌했습니다.",
+ "The JS/TS language service crashed 5 times in the last 5 Minutes.\nThis may be caused by a plugin contributed by one of these extensions: {0}\nPlease try disabling these extensions before filing an issue against VS Code.": "JS/TS 언어 서비스가 지난 5분 동안 5번 충돌했습니다.\n이는 다음 확장 프로그램 중 하나가 기여한 플러그인으로 인해 발생할 수 있습니다. {0}\nVS Code에 문제를 제기하기 전에 이러한 확장을 사용하지 않도록 설정해 보세요.",
+ "The JS/TS language service crashed.": "JS/TS 언어 서비스가 충돌했습니다.",
+ "The JS/TS language service crashed.\nThis may be caused by a plugin contributed by one of these extensions: {0}.\nPlease try disabling these extensions before filing an issue against VS Code.": "JS/TS 언어 서비스가 충돌했습니다.\n이는 다음 확장 프로그램 중 하나가 기여한 플러그인으로 인해 발생할 수 있습니다. {0}\nVS Code에 문제를 제기하기 전에 이러한 확장을 사용하지 않도록 설정해 보세요.",
+ "The JS/TS language service immediately crashed 5 times. The service will not be restarted.": "JS/TS 언어 서비스가 즉시 5번 충돌했습니다. 서비스가 다시 시작되지 않습니다.",
+ "The JS/TS language service immediately crashed 5 times. The service will not be restarted.\nThis may be caused by a plugin contributed by one of these extensions: {0}.\nPlease try disabling these extensions before filing an issue against VS Code.": "JS/TS 언어 서비스가 즉시 5번 충돌했습니다. 서비스가 다시 시작되지 않습니다.\n이는 다음 확장 프로그램 중 하나가 기여한 플러그인으로 인해 발생할 수 있습니다. {0}\nVS Code에 문제를 제기하기 전에 이러한 확장을 사용하지 않도록 설정해 보세요.",
+ "The TypeScript Go extension is not installed.": "TypeScript Go 확장이 설치되어 있지 않습니다.",
+ "The current selection cannot be extracted": "현재 선택 영역을 추출할 수 없습니다.",
+ "The path {0} doesn't point to a valid Node installation to run TS Server. Falling back to bundled Node.": "경로 {0}이(가) TS 서버를 실행하는 올바른 노드 설치를 가리키지 않습니다. 번들 노드로 대체합니다.",
+ "The path {0} doesn't point to a valid tsserver install. Falling back to bundled TypeScript version.": "경로 {0}이(가) 올바른 tsserver 설치를 가리키지 않습니다. 포함된 TypeScript 버전을 대신 사용합니다.",
+ "The workspace is using a version of the TypeScript Server that has been patched by Yarn PnP. This patching is a common source of bugs.": "작업 영역에서 Yarn PnP에 의해 패치된 TypeScript 서버 버전을 사용하고 있습니다. 이 패치는 버그의 일반적인 소스입니다.",
+ "The workspace is using an old version of TypeScript ({0}).\n\nBefore reporting an issue, please update the workspace to use TypeScript {1} or newer to make sure the bug has not already been fixed.": "작업 영역에서 이전 버전의 TypeScript({0})를 사용하고 있습니다.\n\n문제를 보고하기 전에 TypeScript {1} 이상 기능을 사용하도록 작업 영역을 업데이트하여 버그가 아직 수정되지 않았는지 확인하세요.",
+ "This workspace contains a TypeScript version. Would you like to use the workspace TypeScript version for TypeScript and JavaScript language features?": "이 작업 영역에는 TypeScript 버전이 포함되어 있습니다. TypeScript 및 JavaScript 언어 기능에 작업 영역 TypeScript 버전을 사용하시겠습니까?",
+ "This workspace wants to use the Node installation at '{0}' to run TS Server. Would you like to use it?": "이 작업 영역은 '{0}'의 노드 설치를 사용하여 TS 서버를 실행하려고 합니다. 사용하시겠습니까?",
+ "To enable project-wide JavaScript/TypeScript language features, exclude folders with many files, like: {0}": "프로젝트 전체에서 JavaScript/TypeScript 언어 기능을 사용하도록 설정하려면 {0}과(와) 같이 파일이 많은 폴더를 제외하세요.",
+ "To enable project-wide JavaScript/TypeScript language features, exclude large folders with source files that you do not work on.": "프로젝트 전체에서 JavaScript/TypeScript 언어 기능을 사용하도록 설정하려면 사용하지 않는 소스 파일이 포함된 큰 폴더를 제외하세요.",
+ "TypeScript Server Log": "TypeScript 서버 로그",
+ "TypeScript Task in tasks.json contains \"\\\\\". TypeScript tasks tsconfig must use \"/\"": "tasks.json의 TypeScript 작업에 \"\\\\\"가 포함되어 있습니다. TypeScript 작업 tsconfig는 \"/\"를 사용해야 합니다.",
+ "TypeScript Version": "TypeScript 버전",
+ "TypeScript language server exited with error. Error message is: {0}": "오류가 발생하여 TypeScript 언어 서버가 종료되었습니다. 오류 메시지: {0}",
+ "TypeScript version": "TypeScript 버전",
+ "TypeScript: Configure Excludes": "TypeScript: 제외 구성",
+ "Update imports for '{0}'?": "'{0}'에 대한 가져오기를 업데이트하시겠습니까?",
+ "Update imports for the following {0} files?": "다음 {0} 파일에 대한 가져오기를 업데이트하시겠습니까?",
+ "Use VS Code's Version": "VS Code의 버전 사용",
+ "Use Workspace Version": "작업 영역 버전 사용",
+ "VS Code's tsserver was deleted by another application such as a misbehaving virus detection tool. Please reinstall VS Code.": "잘못 동작하는 바이러스 감지 도구와 같은 다른 애플리케이션에서 VS Code의 tsserver가 삭제되었습니다. VS Code를 다시 설치하세요.",
+ "Yes": "예",
+ "build - {0}": "빌드 - {0}",
+ "destination files": "대상 파일",
+ "invalid version": "잘못 된 버전",
+ "watch - {0}": "감시 - {0}",
+ "{0} (Fix all in file)": "{0} (파일에서 모두 수정)",
+ "{0} implementations": "구현 {0}개",
+ "{0} references": "참조 {0}개",
+ "{0} with AI": "AI를 사용한 {0}"
+ },
+ "package": {
+ "configuration.format": "서식",
+ "configuration.hover.maximumLength": "가리키기에서 최대 문자 수입니다. 가리키기 시간이 이보다 길면 잘립니다. TypeScript 5.9 이상이 필요합니다.",
+ "configuration.implicitProjectConfig.checkJs": "JavaScript 파일의 의미 체계 검사를 사용하거나 사용하지 않도록 설정합니다. 기존 `jsconfig.json` 또는 `tsconfig.json` 파일은 이 설정을 재정의합니다.",
+ "configuration.implicitProjectConfig.experimentalDecorators": "프로젝트의 일부가 아닌 JavaScript 파일에서 'experimentalDecorators'를 사용하거나 사용하지 않도록 설정합니다. 기존 `jsconfig.json` 또는 `tsconfig.json` 파일은 이 설정을 재정의합니다.",
+ "configuration.implicitProjectConfig.module": "프로그램의 모듈 시스템을 설정합니다. 자세한 내용은 https://www.typescriptlang.org/tsconfig#module을 참조하세요.",
+ "configuration.implicitProjectConfig.strict": "프로젝트에 포함되지 않은 JavaScript 및 TypeScript 파일에서 [엄격 모드](https://www.typescriptlang.org/tsconfig#strict)를 사용하거나 사용하지 않도록 설정합니다. 기존 `jsconfig.json` 또는 `tsconfig.json` 파일은 이 설정을 재정의합니다.",
+ "configuration.implicitProjectConfig.strictFunctionTypes": "프로젝트의 일부가 아닌 JavaScript 및 TypeScript 파일에서 [strict 함수 형식](https://www.typescriptlang.org/tsconfig#strictFunctionTypes)을 사용하거나 사용하지 않도록 설정합니다. 기존 `jsconfig.json` 또는 `tsconfig.json` 파일은 이 설정을 재정의합니다.",
+ "configuration.implicitProjectConfig.strictNullChecks": "프로젝트의 일부가 아닌 JavaScript 및 TypeScript 파일에서 [strict null 검사](https://www.typescriptlang.org/tsconfig#strictNullChecks)를 사용하거나 사용하지 않도록 설정합니다. 기존 `jsconfig.json` 또는 `tsconfig.json` 파일은 이 설정을 재정의합니다.",
+ "configuration.implicitProjectConfig.target": "내보낸 JavaScript에 대한 대상 JavaScript 언어 버전을 설정하고 라이브러리 선언을 포함합니다. 자세한 내용은 https://www.typescriptlang.org/tsconfig#target을 참조하세요.",
+ "configuration.inlayHints": "인레이 힌트",
+ "configuration.inlayHints.enumMemberValues.enabled": "열거형 선언에서 멤버 값에 대한 인레이 힌트 활성화 또는 비활성화:\r\n```typescript\r\n\r\nenum MyValue {\r\n\tA /* = 0 */;\r\n\tB /* = 1 */;\r\n}\r\n \r\n```",
+ "configuration.inlayHints.functionLikeReturnTypes.enabled": "함수 시그니처에서 암시적 반환 형식에 대한 힌트 활성화 또는 비활성화:\r\n```typescript\r\n\r\nfunction foo() /* :number */ {\r\n\treturn Date.now();\r\n} \r\n \r\n```",
+ "configuration.inlayHints.parameterNames.enabled": "매개 변수 이름에 대한 인레이 힌트 활성화 또는 비활성화:\r\n```typescript\r\n\r\nparseInt(/* str: */ '123', /* radix: */ 8)\r\n \r\n```",
+ "configuration.inlayHints.parameterNames.suppressWhenArgumentMatchesName": "텍스트가 매개변수 이름과 동일한 인수에 대해 매개변수 이름 힌트를 표시하지 않습니다.",
+ "configuration.inlayHints.parameterTypes.enabled": "암시적 매개 변수 형식에 대한 인레이 힌트 활성화 또는 비활성화:\r\n```typescript\r\n\r\nel.addEventListener('click', e /* :MouseEvent */ => ...)\r\n \r\n ```",
+ "configuration.inlayHints.propertyDeclarationTypes.enabled": "속성 선언에서 암시적 형식에 대한 인레이 힌트 활성화 또는 비활성화:\r\n```typescript\r\n\r\nclass Foo {\r\n\tprop /* :number */ = Date.now();\r\n}\r\n \r\n```",
+ "configuration.inlayHints.variableTypes.enabled": "암시적 변수 형식에 대한 인레이 힌트 활성화 또는 비활성화:\r\n```typescript\r\n\r\nconst foo /* :number */ = Date.now();\r\n \r\n```",
+ "configuration.inlayHints.variableTypes.suppressWhenTypeMatchesName": "이름이 형식 이름과 동일한 변수에 대한 형식 힌트를 표시하지 않습니다.",
+ "configuration.preferGoToSourceDefinition": "대신 ‘원본 정의로 이동’을 트리거하여 가능한 경우 ‘정의로 이동’ 작업이 유형 선언 파일을 사용하지 않도록 합니다. 이렇게 하면 ‘원본 정의로 이동’이 마우스 제스처로 트리거될 수 있습니다.",
+ "configuration.preferences": "기본 설정",
+ "configuration.server": "TS 서버",
+ "configuration.suggest": "제안",
+ "configuration.suggest.autoImports": "자동 가져오기 제안을 사용하거나 사용하지 않도록 설정합니다.",
+ "configuration.suggest.classMemberSnippets.enabled": "클래스 멤버에 대한 코드 조각 완성을 활성화/비활성화합니다.",
+ "configuration.suggest.completeFunctionCalls": "매개 변수 서명으로 함수를 완료하세요.",
+ "configuration.suggest.completeJSDocs": "제안을 사용하거나 사용하지 않도록 설정하여 JSDoc 주석을 완료합니다.",
+ "configuration.suggest.includeAutomaticOptionalChainCompletions": "선택적 체인 호출을 삽입하는 잠재적으로 정의되지 않은 값에 대한 완료 표시를 활성/비활성화합니다. 사용하려면 엄격한 null 검사가 필요합니다.",
+ "configuration.suggest.includeCompletionsForImportStatements": "부분적으로 입력된 가져오기 문에서 가져오기 스타일 자동 완성을 활성/비활성화합니다.",
+ "configuration.suggest.jsdoc.generateReturns": "JSDoc 템플릿에 대한 '@returns' 주석 생성을 활성/비활성화합니다.",
+ "configuration.suggest.names": "JavaScript 제안에서 파일의 고유한 이름 포함을 사용하거나 사용하지 않도록 설정합니다. 이름 제안은 `@ts-check` 또는 `checkJs`를 사용하여 의미 체계적으로 확인되는 JavaScript 코드에서 항상 사용하지 않도록 설정됩니다.",
+ "configuration.suggest.objectLiteralMethodSnippets.enabled": "개체 리터럴의 메서드에 대한 코드 조각 완성을 활성화/비활성화합니다.",
+ "configuration.suggest.paths": "import 문 및 요청 호출의 경로에 대한 제안을 사용하거나 사용하지 않도록 설정합니다.",
+ "configuration.tsserver.experimental.enableProjectDiagnostics": "프로젝트 전체 오류 보고를 활성화합니다.",
+ "configuration.tsserver.maxTsServerMemory": "TypeScript 서버 프로세스에 할당할 최대 메모리 양(MB)입니다. 4GB보다 큰 메모리 제한을 사용하려면 '#typescript.tsserver.nodePath#'을 사용하여 사용자 지정 노드 설치로 TS Server를 실행합니다.",
+ "configuration.tsserver.nodePath": "사용자 지정 노드 설치에서 TS 서버를 실행합니다. 이 값은 노드 실행 파일의 경로이거나 VS 코드가 노드 설치를 감지하도록 하려는 경우 'node'일 수 있습니다.",
+ "configuration.tsserver.useSeparateSyntaxServer": "구문 관련 작업(예: 접기 계산 또는 문서 기호 컴퓨팅)에 더 빨리 응답할 수 있는 별도 TypeScript 서버의 생성을 활성/비활성화합니다.",
+ "configuration.tsserver.useSyntaxServer": "TypeScript가 컴퓨팅 코드 접기와 같은 구문 관련 작업을 보다 빠르게 처리하기 위해 전용 서버를 시작하는지 여부를 제어합니다.",
+ "configuration.tsserver.useSyntaxServer.always": "경량 구문 서버를 사용하여 모든 IntelliSense 작업을 처리하세요. 이 구문 서버는 열린 파일에 대해서만 IntelliSense를 제공할 수 있습니다.",
+ "configuration.tsserver.useSyntaxServer.auto": "전체 서버와 구문 작업 전용의 경량 서버를 모두 생성하세요. 구문 서버는 프로젝트를 로드하는 동안 구문 작업을 가속화하고 IntelliSense를 제공하는 데 사용됩니다.",
+ "configuration.tsserver.useSyntaxServer.never": "전용 구문 서버를 사용하지 마세요. 단일 서버를 사용하여 모든 IntelliSense 작업을 처리하세요.",
+ "configuration.tsserver.useVsCodeWatcher": "TypeScript 대신 VS Code 파일 감시자를 사용합니다. 작업 영역에서 TypeScript 5.4 이상을 사용해야 합니다.",
+ "configuration.tsserver.watchOptions": "파일 및 디렉터리 추적에 사용할 감시 전략을 구성합니다.",
+ "configuration.tsserver.watchOptions.fallbackPolling": "파일 시스템 이벤트를 사용하는 경우, 이 옵션은 시스템에 기본 파일 감시자가 부족하고/부족하거나 시스템에서 기본 파일 감시자를 지원하지 않는 경우 사용되는 폴링 전략을 지정합니다.",
+ "configuration.tsserver.watchOptions.fallbackPolling.dynamicPriorityPolling ": "자주 수정되지 않는 파일이 덜 자주 검사되는 동적 큐를 사용합니다.",
+ "configuration.tsserver.watchOptions.fallbackPolling.fixedPollingInterval": "모든 파일의 변경 사항을 고정된 간격으로 초당 여러 번 확인합니다.",
+ "configuration.tsserver.watchOptions.fallbackPolling.priorityPollingInterval": "모든 파일에서 1초에 여러 번 변경 내용을 확인하지만, 휴리스틱을 사용하여 특정 형식의 파일은 다른 파일보다 덜 자주 확인합니다.",
+ "configuration.tsserver.watchOptions.synchronousWatchDirectory": "디렉터리에서 지연 감시를 사용하지 않습니다. 지연 감시는 많은 파일 변경이 한꺼번에 발생하는 경우(예: 실행 중인 npm install에서 node_modules 변경) 유용하지만, 덜 일반적인 설정의 경우 이 플래그를 사용하여 지연 감시를 사용하지 않도록 설정할 수 있습니다.",
+ "configuration.tsserver.watchOptions.vscode": "TypeScript 대신 VS Code 파일 감시자를 사용합니다. 작업 영역에서 TypeScript 5.4 이상을 사용해야 합니다.",
+ "configuration.tsserver.watchOptions.watchDirectory": "재귀 파일 감시 기능이 없는 시스템에서 전체 디렉터리 트리를 감시하는 방법에 대한 전략입니다.",
+ "configuration.tsserver.watchOptions.watchDirectory.dynamicPriorityPolling": "수정이 자주 발생하지 않는 디렉터리가 덜 자주 검사되는 동적 큐를 사용합니다.",
+ "configuration.tsserver.watchOptions.watchDirectory.fixedChunkSizePolling": "정기적으로 디렉터리를 청크 단위로 폴링합니다.",
+ "configuration.tsserver.watchOptions.watchDirectory.fixedPollingInterval": "모든 디렉터리에서 고정된 간격으로 초당 여러 번 변경 내용을 확인합니다.",
+ "configuration.tsserver.watchOptions.watchDirectory.useFsEvents": "디렉터리 변경에 운영 체제/파일 시스템의 기본 이벤트를 사용하려고 시도합니다.",
+ "configuration.tsserver.watchOptions.watchFile": "개별 파일을 감시하는 방법에 대한 전략입니다.",
+ "configuration.tsserver.watchOptions.watchFile.dynamicPriorityPolling": "자주 수정되지 않는 파일이 덜 자주 검사되는 동적 큐를 사용합니다.",
+ "configuration.tsserver.watchOptions.watchFile.fixedChunkSizePolling": "정기적으로 파일을 청크 단위로 폴링합니다.",
+ "configuration.tsserver.watchOptions.watchFile.fixedPollingInterval": "모든 파일의 변경 내용을 고정된 간격으로 초당 여러 번 확인합니다.",
+ "configuration.tsserver.watchOptions.watchFile.priorityPollingInterval": "모든 파일의 변경 내용을 1초에 여러 번 확인하지만, 휴리스틱을 사용하여 특정 형식의 파일은 다른 파일보다 덜 자주 확인합니다.",
+ "configuration.tsserver.watchOptions.watchFile.useFsEvents": "파일 변경에 운영 체제/파일 시스템의 기본 이벤트를 사용하려고 시도합니다.",
+ "configuration.tsserver.watchOptions.watchFile.useFsEventsOnParentDirectory": "운영 체제/파일 시스템의 기본 이벤트를 사용하여 파일이 포함된 디렉터리의 대한 변경 내용을 수신합니다. 그러면 파일 감시자를 적게 사용할 수 있지만 정확도가 떨어집니다.",
+ "configuration.tsserver.web.projectWideIntellisense.enabled": "웹에서 프로젝트 전체 IntelliSense를 사용/사용 안 함으로 설정합니다. VS Code는 신뢰할 수 있는 컨텍스트에서 실행되어야 합니다.",
+ "configuration.tsserver.web.projectWideIntellisense.suppressSemanticErrors": "프로젝트 전체 IntelliSense를 사용하도록 설정한 경우에도 웹에서 의미 체계 오류를 표시하지 않습니다. 프로젝트 전체 IntelliSense를 사용하도록 설정하지 않았거나 사용할 수 없는 경우 항상 켜져 있습니다. `#typescript.tsserver.web.projectWideIntellisense.enabled#`를 참조하세요.",
+ "configuration.tsserver.web.typeAcquisition.enabled": "웹에서 패키지 취득을 사용하거나 사용하지 않도록 설정합니다. 이렇게 하면 가져온 패키지에 대해 IntelliSense가 활성화됩니다. '#typescript.tsserver.web.projectWideIntellisense.enabled#'이 필요합니다. 현재 Safari에서 지원되지 않습니다.",
+ "configuration.typescript": "TypeScript",
+ "configuration.updateImportsOnPaste": "코드를 붙여넣을 때 가져오기를 자동으로 업데이트합니다. TypeScript 5.6+가 필요합니다.",
+ "description": "JavaScript 및 TypeScript에 대한 다양한 언어 지원을 제공합니다.",
+ "displayName": "TypeScript 및 JavaScript 언어 기능",
+ "format.indentSwitchCase": "switch 문의 case 절을 들여쓰기합니다. 작업 영역에서 TypeScript 5.1+를 사용해야 합니다.",
+ "format.insertSpaceAfterCommaDelimiter": "쉼표 구분 기호 뒤에 오는 공백 처리를 정의합니다.",
+ "format.insertSpaceAfterConstructor": "생성자 키워드 뒤에 오는 공백 처리를 정의합니다.",
+ "format.insertSpaceAfterFunctionKeywordForAnonymousFunctions": "익명 함수의 function 키워드 뒤에 오는 공백 처리를 정의합니다.",
+ "format.insertSpaceAfterKeywordsInControlFlowStatements": "제어 흐름 문의 키워드 뒤에 오는 공백 처리를 정의합니다.",
+ "format.insertSpaceAfterOpeningAndBeforeClosingEmptyBraces": "비어 있는 여는 중괄호 뒤와 닫는 중괄호 앞의 공백 처리를 정의합니다.",
+ "format.insertSpaceAfterOpeningAndBeforeClosingJsxExpressionBraces": "JSX 식의 여는 중괄호 뒤와 닫는 중괄호 앞의 공백 처리를 정의합니다.",
+ "format.insertSpaceAfterOpeningAndBeforeClosingNonemptyBraces": "비어 있지 않은 여는 중괄호 뒤와 닫는 중괄호 앞의 공백 처리를 정의합니다.",
+ "format.insertSpaceAfterOpeningAndBeforeClosingNonemptyBrackets": "비어 있지 않은 여는 대괄호 뒤와 닫는 대괄호 앞에 오는 공백 처리를 정의합니다.",
+ "format.insertSpaceAfterOpeningAndBeforeClosingNonemptyParenthesis": "비어 있지 않은 여는 괄호 뒤와 닫는 괄호 앞에 오는 공백 처리를 정의합니다.",
+ "format.insertSpaceAfterOpeningAndBeforeClosingTemplateStringBraces": "템플릿 문자열의 여는 중괄호 뒤와 닫는 중괄호 앞의 공백 처리를 정의합니다.",
+ "format.insertSpaceAfterSemicolonInForStatements": "for 문에서 세미콜론 뒤에 오는 공백 처리를 정의합니다.",
+ "format.insertSpaceAfterTypeAssertion": "TypeScript에서 형식 어설션 뒤에 오는 공백 처리를 정의합니다.",
+ "format.insertSpaceBeforeAndAfterBinaryOperators": "이항 연산자 뒤에 오는 공백 처리를 정의합니다.",
+ "format.insertSpaceBeforeFunctionParenthesis": "함수 인수 괄호 앞에 오는 공백 처리를 정의합니다.",
+ "format.placeOpenBraceOnNewLineForControlBlocks": "제어 블록의 새 줄에 여는 중괄호를 넣을지 정의합니다.",
+ "format.placeOpenBraceOnNewLineForFunctions": "함수의 새 줄에 여는 중괄호를 넣을지 정의합니다.",
+ "format.semicolons": "선택적 세미콜론 처리를 정의합니다.",
+ "format.semicolons.ignore": "세미콜론을 삽입하거나 제거하지 마세요.",
+ "format.semicolons.insert": "문 끝에 세미콜론을 삽입합니다.",
+ "format.semicolons.remove": "불필요한 세미콜론을 제거합니다.",
+ "inlayHints.parameterNames.all": "리터럴 및 비리터럴 인수에 대한 매개변수 이름 힌트를 활성화합니다.",
+ "inlayHints.parameterNames.literals": "리터럴 인수에 대해서만 매개변수 이름 힌트를 활성화합니다.",
+ "inlayHints.parameterNames.none": "매개변수 이름 힌트를 비활성화합니다.",
+ "javascript.format.enable": "기본 JavaScript 포맷터를 사용하거나 사용하지 않습니다.",
+ "javascript.goToProjectConfig.title": "프로젝트 구성(jsconfig/tsconfig)으로 이동합니다.",
+ "javascript.preferences.jsxAttributeCompletionStyle.auto": "prop 유형을 기준으로 특성 이름 뒤에 `={}` 또는 `=\"\"`를 삽입합니다. 문자열 특성에 사용되는 따옴표 형식을 제어하려면 '#javascript.preferences.quoteStyle#'을 참조하세요.",
+ "javascript.preferences.organizeImports": "가져오기 순서 지정 방법을 제어하는 고급 기본 설정입니다.",
+ "javascript.referencesCodeLens.enabled": "JavaScript 파일에서 CodeLense 참조를 사용/사용 안 함으로 설정합니다.",
+ "javascript.referencesCodeLens.showOnAllFunctions": "JavaScript 파일의 모든 기능에 대한 참조 CodeLens를 사용/사용하지 않도록 설정합니다.",
+ "javascript.suggestionActions.enabled": "편집기에서 JavaScript 파일에 대한 제안 진단을 사용하거나 사용하지 않도록 설정합니다.",
+ "javascript.validate.enable": "JavaScript 유효성 검사를 사용하거나 사용하지 않습니다.",
+ "reloadProjects.title": "프로젝트 다시 로드",
+ "taskDefinition.tsconfig.description": "TS 빌드를 정의하는 tsconfig 파일입니다.",
+ "typescript.autoClosingTags": "JSX 태그의 자동 닫기를 사용하거나 사용하지 않도록 설정합니다.",
+ "typescript.check.npmIsInstalled": "[자동 형식 인식](https://code.visualstudio.com/docs/nodejs/working-with-javascript#_typings-and-automatic-type-acquisition)을 위해 npm이 설치되어 있는지 확인하세요.",
+ "typescript.disableAutomaticTypeAcquisition": "[자동 형식 인식](https://code.visualstudio.com/docs/nodejs/working-with-javascript#_typings-and-automatic-type-acquisition)을 사용하지 않도록 설정합니다. 자동 형식 인식은 npm에서 '@types' 패키지를 가져와 외부 라이브러리에 대한 IntelliSense를 개선합니다.",
+ "typescript.enablePromptUseWorkspaceTsdk": "Intellisense 작업 영역에서 구성된 TypeScript 버전을 사용하라는 메시지를 사용자에게 표시할 수 있습니다.",
+ "typescript.findAllFileReferences": "파일 참조 찾기",
+ "typescript.format.enable": "기본 TypeScript 포맷터를 사용하거나 사용하지 않습니다.",
+ "typescript.goToProjectConfig.title": "프로젝트 구성(tsconfig)으로 이동",
+ "typescript.goToSourceDefinition": "원본 정의로 이동",
+ "typescript.implementationsCodeLens.enabled": "CodeLens 구현을 사용하거나 사용하지 않습니다. 이 CodeLens는 인터페이스의 구현자를 표시합니다.",
+ "typescript.implementationsCodeLens.showOnAllClassMethods": "추상 메서드뿐만 아니라 모든 클래스 메서드 위에 구현 CodeLens를 표시할지를 설정합니다.",
+ "typescript.implementationsCodeLens.showOnInterfaceMethods": "구현 인터페이스의 CodeLens 메서드를 활성화/비활성화합니다.",
+ "typescript.locale": "JavaScript 및 TypeScript 오류를 보고하는 데 사용되는 로케일을 설정합니다. 기본값은 VS Code의 로케일을 사용하는 것입니다.",
+ "typescript.locale.auto": "VS Code의 구성된 표시 언어 사용",
+ "typescript.npm": "[자동 형식 인식](https://code.visualstudio.com/docs/nodejs/working-with-javascript#_typings-and-automatic-type-acquisition)에 사용되는 npm 실행 파일의 경로를 지정합니다.",
+ "typescript.openTsServerLog.title": "TS 서버 로그 열기",
+ "typescript.preferences.autoImportFileExcludePatterns": "자동 가져오기에서 제외할 파일의 GLOB 패턴을 지정합니다. 상대 경로는 작업 영역 루트를 기준으로 확인됩니다. 패턴은 tsconfig.json ['exclude'](https://www.typescriptlang.org/tsconfig#exclude) 의미 체계를 사용하여 평가됩니다.",
+ "typescript.preferences.autoImportSpecifierExcludeRegexes": "일치하는 가져오기 지정자를 사용하여 자동 가져오기를 제외할 정규식을 지정합니다. 예:\r\n\r\n- `^node:`\r\n- 'lib/internal'(슬래시는 이스케이프할 필요가 없습니다.)\r\n- '/lib\\/internal/i'(... 'i' 또는 'u' 플래그에 주변 슬래시를 포함하지 않는 한)\r\n- '^lodash$'(lodash에서 하위 경로 가져오기만 허용)",
+ "typescript.preferences.importModuleSpecifier": "자동 가져오기의 기본 경로 스타일입니다.",
+ "typescript.preferences.importModuleSpecifier.nonRelative": "`jsconfig.json` / `tsconfig.json`에 구성된 `baseUrl` 또는 `paths`를 기반으로 상대적이지 않은 가져오기를 사용합니다.",
+ "typescript.preferences.importModuleSpecifier.projectRelative": "상대 가져오기 경로가 패키지 또는 프로젝트 디렉터리를 벗어나는 경우에만 비 상대 가져오기를 선호합니다.",
+ "typescript.preferences.importModuleSpecifier.relative": "가져온 파일 위치의 상대 경로를 사용합니다.",
+ "typescript.preferences.importModuleSpecifier.shortest": "상대적 가져오기보다 적은 경로 세그먼트가 포함된 가져오기가 사용 가능한 경우에만 상대적이지 않은 가져오기를 사용합니다.",
+ "typescript.preferences.importModuleSpecifierEnding": "자동 가져오기를 위한 기본 경로 끝자리.",
+ "typescript.preferences.importModuleSpecifierEnding.auto": "프로젝트 설정을 사용하여 기본값을 선택합니다.",
+ "typescript.preferences.importModuleSpecifierEnding.index": "`./component/index.js`를 `./component/index`로 줄입니다.",
+ "typescript.preferences.importModuleSpecifierEnding.js": "경로 끝부분을 줄이지 마세요. `.js` 또는 `.ts` 확장명을 포함하세요.",
+ "typescript.preferences.importModuleSpecifierEnding.label.js": ".js / .ts",
+ "typescript.preferences.importModuleSpecifierEnding.minimal": "`./component/index.js`를 `./component`로 줄입니다.",
+ "typescript.preferences.includePackageJsonAutoImports": "사용할 수 있는 자동 가져오기 기능의 'package.json' 종속성을 검색하도록/하지 않도록 설정합니다.",
+ "typescript.preferences.includePackageJsonAutoImports.auto": "예상 성능 영향에 따라 종속성을 검색합니다.",
+ "typescript.preferences.includePackageJsonAutoImports.off": "종속성을 검색하지 않습니다.",
+ "typescript.preferences.includePackageJsonAutoImports.on": "종속성을 항상 검색합니다.",
+ "typescript.preferences.jsxAttributeCompletionStyle": "JSX 특성 완성에 선호되는 스타일입니다.",
+ "typescript.preferences.jsxAttributeCompletionStyle.auto": "prop 유형을 기준으로 특성 이름 뒤에 `={}` 또는 `=\"\"`를 삽입합니다. 문자열 특성에 사용되는 따옴표 형식을 제어하려면 '#typescript.preferences.quoteStyle#'을 참조하세요.",
+ "typescript.preferences.jsxAttributeCompletionStyle.braces": "속성 이름 뒤에 `={}`를 삽입하세요.",
+ "typescript.preferences.jsxAttributeCompletionStyle.none": "특성 이름만 삽입하세요.",
+ "typescript.preferences.organizeImports": "가져오기 순서 지정 방법을 제어하는 고급 기본 설정입니다.",
+ "typescript.preferences.organizeImports.accentCollation": "'organizeImports.unicodeCollation: 'unicode'’가 필요합니다. 문자와 기본 문자가 같지 않은 문자의 구분 기호를 비교합니다.",
+ "typescript.preferences.organizeImports.caseFirst": "'organizeImports.unicodeCollation: 'unicode''가 필요하고 'organizeImports.caseSensitivity'가 'caseInsensitive'가 아닙니다. 대문자를 소문자보다 앞에 정렬할지 여부를 나타냅니다.",
+ "typescript.preferences.organizeImports.caseFirst.default": "'로캘'에서 지정한 기본 순서입니다.",
+ "typescript.preferences.organizeImports.caseFirst.lower": "소문자가 대문자보다 앞에 옵니다. 예: a, A, z, Z'.",
+ "typescript.preferences.organizeImports.caseFirst.upper": "대문자가 소문자보다 앞에 옵니다. 예: 'A, a, B, b'.",
+ "typescript.preferences.organizeImports.caseSensitivity": "대/소문자 구분과 관련하여 가져오기를 정렬하는 방법을 지정합니다. 'auto' 또는 지정되지 않은 경우 파일당 대/소문자 구분을 검색합니다.",
+ "typescript.preferences.organizeImports.caseSensitivity.auto": "가져오기 정렬에 대한 대/소문자 구분을 검색합니다.",
+ "typescript.preferences.organizeImports.caseSensitivity.insensitive": "정렬은 대/소문자를 구분하지 않고 가져옵니다.",
+ "typescript.preferences.organizeImports.caseSensitivity.sensitive": "가져오기를 대/소문자를 구분하여 정렬합니다.",
+ "typescript.preferences.organizeImports.locale": "'organizeImports.unicodeCollation: 'unicode'’가 필요합니다. 데이터 정렬에 사용되는 로캘을 재정의합니다. UI 로캘을 사용하려면 `auto`로 지정하세요.",
+ "typescript.preferences.organizeImports.numericCollation": "'organizeImports.unicodeCollation: 'unicode'’가 필요합니다. 정수 값을 기준으로 숫자 문자열을 정렬합니다.",
+ "typescript.preferences.organizeImports.typeOrder": "형식 전용 명명된 가져오기를 정렬하는 방법을 지정합니다.",
+ "typescript.preferences.organizeImports.typeOrder.auto": "형식 전용 명명된 가져오기를 정렬해야 하는 위치를 검색합니다.",
+ "typescript.preferences.organizeImports.typeOrder.first": "형식은 명명된 가져오기만 가져오기 목록의 시작 부분으로 정렬됩니다. 예: 'import { type A, type Y, B, Z } from 'module';'",
+ "typescript.preferences.organizeImports.typeOrder.inline": "명명된 가져오기는 이름별로만 정렬됩니다. 예: `import { type A, B, type Y, Z } from 'module';`",
+ "typescript.preferences.organizeImports.typeOrder.last": "형식은 명명된 가져오기만 가져오기 목록의 끝으로 정렬됩니다. 예: 'import { B, Z, type A, type Y } from 'module';'",
+ "typescript.preferences.organizeImports.unicodeCollation": "유니코드 또는 서수 데이터 정렬을 사용하여 가져오기를 정렬할지 여부를 지정합니다.",
+ "typescript.preferences.organizeImports.unicodeCollation.ordinal": "각 코드 포인트의 숫자 값을 사용하여 가져오기를 정렬합니다.",
+ "typescript.preferences.organizeImports.unicodeCollation.unicode": "유니코드 코드 데이터 정렬을 사용하여 가져오기를 정렬합니다.",
+ "typescript.preferences.preferTypeOnlyAutoImports": "가능한 경우 항상 자동 가져오기에 `type` 키워드를 포함합니다. 작업 영역에서 TypeScript 5.3 이상을 사용해야 합니다.",
+ "typescript.preferences.quoteStyle": "빠른 수정에 사용할 기본 견적 스타일입니다.",
+ "typescript.preferences.quoteStyle.auto": "기존 코드에서 따옴표 형식 유추",
+ "typescript.preferences.quoteStyle.double": "항상 큰따옴표(`\"`) 사용",
+ "typescript.preferences.quoteStyle.single": "항상 작은따옴표(`'`) 사용",
+ "typescript.preferences.renameMatchingJsxTags": "JSX 태그에서 기호 이름을 바꾸는 대신 일치하는 태그의 이름을 바꾸세요. 작업 영역에서 TypeScript 5.1 이상을 사용해야 합니다.",
+ "typescript.preferences.useAliasesForRenames": "이름을 바꾸는 동안 개체 줄임 속성의 별칭 소개를 사용하거나 사용하지 않도록 설정합니다.",
+ "typescript.problemMatchers.tsc.label": "TypeScript 문제",
+ "typescript.problemMatchers.tscWatch.label": "TypeScript 문제(감시 모드)",
+ "typescript.problemMatchers.tsgo-watch.label": "TypeScript 문제(감시 모드)",
+ "typescript.referencesCodeLens.enabled": "TypeScript 파일에서 참조 CodeLens를 사용하거나 사용하지 않도록 설정합니다.",
+ "typescript.referencesCodeLens.showOnAllFunctions": "TypeScript 파일의 모든 기능에 대한 참조 CodeLens를 사용/사용하지 않도록 설정합니다.",
+ "typescript.removeUnusedImports": "사용하지 않는 가져오기 제거",
+ "typescript.reportStyleChecksAsWarnings": "스타일 검사를 경고로 보고합니다.",
+ "typescript.restartTsServer": "TS 서버 다시 시작",
+ "typescript.selectTypeScriptVersion.title": "TypeScript 버전 선택...",
+ "typescript.sortImports": "가져오기 정렬",
+ "typescript.suggest.enabled": "자동 완성 제안을 사용하거나 사용하지 않도록 설정합니다.",
+ "typescript.suggestionActions.enabled": "편집기에서 TypeScript 파일에 대한 제안 진단을 사용하거나 사용하지 않도록 설정합니다.",
+ "typescript.tsc.autoDetect": "tsc 작업의 자동 검색을 제어합니다.",
+ "typescript.tsc.autoDetect.build": "단일 실행 컴파일 작업만 만듭니다.",
+ "typescript.tsc.autoDetect.off": "이 기능을 사용하지 않도록 설정합니다.",
+ "typescript.tsc.autoDetect.on": "빌드 및 조사식 작업을 모두 만듭니다.",
+ "typescript.tsc.autoDetect.watch": "컴파일 및 조사식 작업만 만듭니다.",
+ "typescript.tsdk.desc": "IntelliSense에 사용할 TypeScript 설치에서 tsserver 및 `lib*.d.ts` 파일의 폴더 경로를 지정합니다. 예: `./node_modules/typescript/lib`.\r\n\r\n- 사용자 설정으로 지정한 경우 'typescript.tsdk'의 TypeScript 버전이 자동으로 기본 제공 TypeScript 버전을 바꿉니다.\r\n- 작업 영역 설정으로 지정한 경우 'typescript.tsdk'를 사용하여 'TypeScript: TypeScript 버전 선택' 명령으로 IntelliSense용 TypeScript의 해당 작업 영역 버전을 사용하도록 전환할 수 있습니다.\r\n\r\nTypeScript 버전 관리에 대한 자세한 내용은 [TypeScript 설명서](https://code.visualstudio.com/docs/typescript/typescript-compiling#_using-newer-typescript-versions)를 참조하세요.",
+ "typescript.tsserver.enableRegionDiagnostics": "TypeScript에서 지역 기반 진단을 사용하도록 설정합니다. 작업 영역에서 TypeScript 5.6 이상을 사용해야 합니다.",
+ "typescript.tsserver.enableTracing": "디렉터리에 대해 TS 서버 성능 추적을 사용하도록 설정합니다. 이 추적 파일은 TS 서버 성능 문제를 진단하는 데 사용될 수 있습니다. 로그에는 파일 경로, 소스 코드 및 프로젝트에서 잠재적으로 중요한 기타 정보가 포함될 수 있습니다.",
+ "typescript.tsserver.log": "파일에 대해 TS 서버 로깅을 사용하도록 설정합니다. 이 로그는 TS 서버 문제를 진단하는 데 사용될 수 있습니다. 로그에는 파일 경로, 소스 코드 및 프로젝트에서 잠재적으로 중요한 기타 정보가 포함될 수 있습니다.",
+ "typescript.tsserver.pluginPaths": "TypeScript 언어 서비스 플러그 인을 검색할 추가 경로입니다.",
+ "typescript.tsserver.pluginPaths.item": "절대 또는 상대 경로입니다. 상대 경로는 작업 영역 폴더를 기준으로 확인됩니다.",
+ "typescript.tsserver.trace": "TS 서버로 전송한 메시지 추적을 사용하도록 설정합니다. 이 추적은 TS 서버 문제를 진단하는 데 사용될 수 있습니다. 추적에는 파일 경로, 소스 코드 및 프로젝트에서 잠재적으로 중요한 기타 정보가 포함될 수 있습니다.",
+ "typescript.updateImportsOnFileMove.enabled": "VS Code에서 파일을 이동하거나 이름을 바꿀 때 가져오기 경로의 자동 업데이트를 사용하거나 사용하지 않도록 설정합니다.",
+ "typescript.updateImportsOnFileMove.enabled.always": "항상 경로를 자동으로 업데이트합니다.",
+ "typescript.updateImportsOnFileMove.enabled.never": "경로 이름을 바꾸지 않고 메시지를 표시하지 않습니다.",
+ "typescript.updateImportsOnFileMove.enabled.prompt": "이름을 바꿀 때마다 프롬프트를 표시합니다.",
+ "typescript.useTsgo": "TypeScript Go 실험적 확장을 사용할 수 있도록 TypeScript 및 JavaScript 언어 기능을 비활성화합니다. TypeScript Go를 설치하고 구성해야 합니다. 이 설정을 변경한 후 확장을 다시 로드해야 합니다.",
+ "typescript.validate.enable": "TypeScript 유효성 검사를 사용하거나 사용하지 않습니다.",
+ "typescript.workspaceSymbols.excludeLibrarySymbols": "‘Go to Symbol in Workspace(작업 영역에서 기호로 이동)’ 결과의 라이브러리 파일에서 가져온 기호를 제외합니다. 작업 영역에서 TypeScript 5.3+를 사용해야 합니다.",
+ "typescript.workspaceSymbols.scope": "[작업 영역에서 기호로 이동](https://code.visualstudio.com/docs/editor/editingevolved#_open-symbol-by-name)하여 검색할 파일을 제어합니다.",
+ "typescript.workspaceSymbols.scope.allOpenProjects": "열려 있는 모든 JavaScript 또는 TypeScript 프로젝트에서 기호를 검색합니다.",
+ "typescript.workspaceSymbols.scope.currentProject": "현재 JavaScript 또는 TypeScript 프로젝트에서만 기호를 검색합니다.",
+ "virtualWorkspaces": "가상 작업 공간에서는 파일에서 참조를 확인하고 찾는 기능이 지원되지 않습니다.",
+ "walkthroughs.nodejsWelcome.debugJsFile.altText": "Visual Studio Code를 사용하여 Node.js에서 JavaScript 코드를 디버그하고 실행합니다.",
+ "walkthroughs.nodejsWelcome.debugJsFile.description": "Node.js를 설치하면 ``node your-file-name.js``를 입력하여 터미널에서 JavaScript 프로그램을 실행할 수 있습니다.\r\nNode.js 프로그램을 실행하는 또 다른 쉬운 방법은 VS Code의 디버거를 사용하는 것입니다. 이 디버거를 사용하면 코드를 실행하고, 다른 지점에서 일시 중지하고, 단계별 진행 상황을 이해할 수 있습니다.\r\n[디버깅 시작](command:javascript-walkthrough.commands.debugJsFile)",
+ "walkthroughs.nodejsWelcome.debugJsFile.title": "JavaScript 실행 및 디버그",
+ "walkthroughs.nodejsWelcome.description": "Visual Studio Code의 최고 JavaScript 환경을 최대한 활용하세요.",
+ "walkthroughs.nodejsWelcome.downloadNode.forLinux.description": "Node.js는 JavaScript 코드를 실행하는 쉬운 방법입니다. 이를 사용하여 명령줄 앱과 서버를 빠르게 구축할 수 있습니다. 또한 JavaScript 코드를 쉽게 재사용하고 공유할 수 있는 패키지 관리자인 npm이 함께 제공됩니다.\r\n[Node.js 설치](https://nodejs.org/en/download/package-manager/)",
+ "walkthroughs.nodejsWelcome.downloadNode.forLinux.title": "Node.js 설치",
+ "walkthroughs.nodejsWelcome.downloadNode.forMacOrWindows.description": "Node.js는 JavaScript 코드를 실행하는 쉬운 방법입니다. 이를 사용하여 명령줄 앱과 서버를 빠르게 구축할 수 있습니다. 또한 JavaScript 코드를 쉽게 재사용하고 공유할 수 있는 패키지 관리자인 npm이 함께 제공됩니다.\r\n[Node.js 설치](https://nodejs.org/en/download/)",
+ "walkthroughs.nodejsWelcome.downloadNode.forMacOrWindows.title": "Node.js 설치",
+ "walkthroughs.nodejsWelcome.learnMoreAboutJs.altText": "Visual Studio Code의 JavaScript 및 Node.js에 대해 자세히 알아보세요.",
+ "walkthroughs.nodejsWelcome.learnMoreAboutJs.description": "JavaScript, Node.js 및 VS Code에 더 익숙해지고 싶으십니까? 문서를 확인하세요.\r\n[JavaScript](https://code.visualstudio.com/docs/nodejs/working-with-javascript) 및 [Node.js](https://code.visualstudio.com/docs/nodejs/nodejs-tutorial) 학습을 위한 많은 리소스가 있습니다.\r\n\r\n[자세한 정보](https://code.visualstudio.com/docs/nodejs/nodejs-tutorial)",
+ "walkthroughs.nodejsWelcome.learnMoreAboutJs.title": "추가 탐색",
+ "walkthroughs.nodejsWelcome.makeJsFile.description": "첫 번째 JavaScript 파일을 작성해 보겠습니다. 새 파일을 만들고 파일 이름 끝에 ``.js`` 확장자로 저장해야 합니다.\r\n[JavaScript 파일 만들기](command:javascript-walkthrough.commands.createJsFile)",
+ "walkthroughs.nodejsWelcome.makeJsFile.title": "JavaScript 파일 만들기",
+ "walkthroughs.nodejsWelcome.title": "JavaScript 및 Node.js 시작하기",
+ "workspaceTrust": "확장 기능은 작업 영역에서 지정한 코드를 실행하기 때문에 작업 영역 버전을 사용할 때 작업 영역 신뢰가 필요합니다."
+ }
+ }
+}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-ko/translations/extensions/vscode.typescript.i18n.json b/i18n/vscode-language-pack-ko/translations/extensions/vscode.typescript.i18n.json
index b43cef58e4..1e57649e8d 100644
--- a/i18n/vscode-language-pack-ko/translations/extensions/vscode.typescript.i18n.json
+++ b/i18n/vscode-language-pack-ko/translations/extensions/vscode.typescript.i18n.json
@@ -9,8 +9,8 @@
"version": "1.0.0",
"contents": {
"package": {
- "displayName": "TypeScript 언어 기본 사항",
- "description": "TypeScript 파일에서 코드 조각, 구문 강조 표시, 괄호 일치 및 접기를 제공합니다."
+ "description": "TypeScript 파일에서 코드 조각, 구문 강조 표시, 괄호 일치 및 접기를 제공합니다.",
+ "displayName": "TypeScript 언어 기본 사항"
}
}
}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-ko/translations/extensions/vscode.vb.i18n.json b/i18n/vscode-language-pack-ko/translations/extensions/vscode.vb.i18n.json
index 653949eefe..ac197baa15 100644
--- a/i18n/vscode-language-pack-ko/translations/extensions/vscode.vb.i18n.json
+++ b/i18n/vscode-language-pack-ko/translations/extensions/vscode.vb.i18n.json
@@ -9,8 +9,8 @@
"version": "1.0.0",
"contents": {
"package": {
- "displayName": "Visual Basic 언어 기본 사항",
- "description": "Visual Basic 파일에서 코드 조각, 구문 강조 표시, 괄호 일치 및 접기를 제공합니다."
+ "description": "Visual Basic 파일에서 코드 조각, 구문 강조 표시, 괄호 일치 및 접기를 제공합니다.",
+ "displayName": "Visual Basic 언어 기본 사항"
}
}
}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-ko/translations/extensions/vscode.vscode-theme-seti.i18n.json b/i18n/vscode-language-pack-ko/translations/extensions/vscode.vscode-theme-seti.i18n.json
index 272fc06b90..704c40eb29 100644
--- a/i18n/vscode-language-pack-ko/translations/extensions/vscode.vscode-theme-seti.i18n.json
+++ b/i18n/vscode-language-pack-ko/translations/extensions/vscode.vscode-theme-seti.i18n.json
@@ -9,8 +9,8 @@
"version": "1.0.0",
"contents": {
"package": {
- "displayName": "Seti 파일 아이콘 테마",
"description": "Seti UI 파일 아이콘으로 만든 파일 아이콘 테마",
+ "displayName": "Seti 파일 아이콘 테마",
"themeLabel": "Seti(Visual Studio Code)"
}
}
diff --git a/i18n/vscode-language-pack-ko/translations/extensions/vscode.xml.i18n.json b/i18n/vscode-language-pack-ko/translations/extensions/vscode.xml.i18n.json
index 72d2856dd7..6a1295255e 100644
--- a/i18n/vscode-language-pack-ko/translations/extensions/vscode.xml.i18n.json
+++ b/i18n/vscode-language-pack-ko/translations/extensions/vscode.xml.i18n.json
@@ -9,8 +9,8 @@
"version": "1.0.0",
"contents": {
"package": {
- "displayName": "XML 언어 기본 사항",
- "description": "XML 파일에서 구문 강조 표시 및 괄호 일치를 제공합니다."
+ "description": "XML 파일에서 구문 강조 표시 및 괄호 일치를 제공합니다.",
+ "displayName": "XML 언어 기본 사항"
}
}
}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-ko/translations/extensions/vscode.yaml.i18n.json b/i18n/vscode-language-pack-ko/translations/extensions/vscode.yaml.i18n.json
index f2df930507..5ae5ee289d 100644
--- a/i18n/vscode-language-pack-ko/translations/extensions/vscode.yaml.i18n.json
+++ b/i18n/vscode-language-pack-ko/translations/extensions/vscode.yaml.i18n.json
@@ -9,8 +9,8 @@
"version": "1.0.0",
"contents": {
"package": {
- "displayName": "YAML 언어 기본 사항",
- "description": "YAML 파일에서 구문 강조 표시 및 괄호 일치를 제공합니다."
+ "description": "YAML 파일에서 구문 강조 표시 및 괄호 일치를 제공합니다.",
+ "displayName": "YAML 언어 기본 사항"
}
}
}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-ko/translations/extensions/xml.i18n.json b/i18n/vscode-language-pack-ko/translations/extensions/xml.i18n.json
deleted file mode 100644
index 6a1295255e..0000000000
--- a/i18n/vscode-language-pack-ko/translations/extensions/xml.i18n.json
+++ /dev/null
@@ -1,16 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "package": {
- "description": "XML 파일에서 구문 강조 표시 및 괄호 일치를 제공합니다.",
- "displayName": "XML 언어 기본 사항"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-ko/translations/extensions/yaml.i18n.json b/i18n/vscode-language-pack-ko/translations/extensions/yaml.i18n.json
deleted file mode 100644
index 5ae5ee289d..0000000000
--- a/i18n/vscode-language-pack-ko/translations/extensions/yaml.i18n.json
+++ /dev/null
@@ -1,16 +0,0 @@
-{
- "": [
- "--------------------------------------------------------------------------------------------",
- "Copyright (c) Microsoft Corporation. All rights reserved.",
- "Licensed under the MIT License. See License.txt in the project root for license information.",
- "--------------------------------------------------------------------------------------------",
- "Do not edit this file. It is machine generated."
- ],
- "version": "1.0.0",
- "contents": {
- "package": {
- "description": "YAML 파일에서 구문 강조 표시 및 괄호 일치를 제공합니다.",
- "displayName": "YAML 언어 기본 사항"
- }
- }
-}
\ No newline at end of file
diff --git a/i18n/vscode-language-pack-ko/translations/main.i18n.json b/i18n/vscode-language-pack-ko/translations/main.i18n.json
index 8563529721..e8afaadcc0 100644
--- a/i18n/vscode-language-pack-ko/translations/main.i18n.json
+++ b/i18n/vscode-language-pack-ko/translations/main.i18n.json
@@ -22,6 +22,9 @@
"dialogWarningMessage": "경고",
"ok": "확인"
},
+ "vs/base/browser/ui/dropdown/dropdownActionViewItem": {
+ "moreActions": "더 많은 작업..."
+ },
"vs/base/browser/ui/findinput/findInput": {
"defaultLabel": "입력"
},
@@ -34,14 +37,21 @@
"defaultLabel": "입력",
"label.preserveCaseToggle": "대/소문자 보존"
},
- "vs/base/browser/ui/iconLabel/iconLabelHover": {
- "iconLabel.loading": "로드 중..."
+ "vs/base/browser/ui/hover/hoverWidget": {
+ "acessibleViewHint": "{0}을(를) 사용하여 접근성 보기에서 이를 검사합니다.",
+ "acessibleViewHintNoKbOpen": "현재 키 바인딩을 통해 트리거할 수 없는 접근성 보기 열기 명령을 통해 접근성 보기에서 이를 검사합니다."
+ },
+ "vs/base/browser/ui/icons/iconSelectBox": {
+ "iconSelect.noResults": "결과 없음",
+ "iconSelect.placeholder": "검색 아이콘"
},
"vs/base/browser/ui/inputbox/inputBox": {
"alertErrorMessage": "오류: {0}",
"alertInfoMessage": "정보: {0}",
"alertWarningMessage": "경고: {0}",
- "history.inputbox.hint": "기록용"
+ "clearedInput": "입력이 지워짐",
+ "history.inputbox.hint.suffix.inparens": " ({0} 기록용)",
+ "history.inputbox.hint.suffix.noparens": " 또는 {0} 기록의 경우"
},
"vs/base/browser/ui/keybindingLabel/keybindingLabel": {
"unbound": "바인딩 안 됨"
@@ -62,10 +72,17 @@
"vs/base/browser/ui/tree/abstractTree": {
"close": "닫기",
"filter": "필터",
- "not found": "찾은 요소가 없습니다.",
+ "foundResults": "{0}개 결과",
+ "fuzzySearch": "유사 항목 일치",
+ "not found": "결과를 찾을 수 없습니다.",
+ "replFindNoResults": "결과 없음",
"type to filter": "필터링할 형식",
"type to search": "입력하여 검색"
},
+ "vs/base/browser/ui/tree/asyncDataTree": {
+ "type to filter": "필터링할 형식",
+ "type to search": "검색할 형식"
+ },
"vs/base/browser/ui/tree/treeDefaults": {
"collapse all": "모두 축소"
},
@@ -126,7 +143,18 @@
"date.fromNow.years.singular": "{0}년",
"date.fromNow.years.singular.ago": "{0}년 전",
"date.fromNow.years.singular.ago.fullWord": "{0}년 전",
- "date.fromNow.years.singular.fullWord": "{0}년"
+ "date.fromNow.years.singular.fullWord": "{0}년",
+ "duration.d": "{0}일",
+ "duration.h": "{0}시간",
+ "duration.h.full": "{0}시간",
+ "duration.m": "{0}분",
+ "duration.m.full": "{0}분",
+ "duration.ms": "{0}밀리초",
+ "duration.ms.full": "{0}밀리초",
+ "duration.s": "{0}초",
+ "duration.s.full": "{0}초",
+ "today": "오늘",
+ "yesterday": "어제"
},
"vs/base/common/errorMessage": {
"error.defaultMessage": "알 수 없는 오류가 발생했습니다. 자세한 내용은 로그를 참조하세요.",
@@ -150,44 +178,37 @@
"altKey.long": "",
"cmdKey.long": "명령",
"ctrlKey": "Ctrl",
- "ctrlKey.long": "제어",
+ "ctrlKey.long": "Ctrl",
"optKey.long": "옵션",
- "shiftKey": "",
- "shiftKey.long": "",
+ "shiftKey": "Shift",
+ "shiftKey.long": "Shift",
"superKey": "슈퍼",
"superKey.long": "슈퍼",
"windowsKey": "Windows",
"windowsKey.long": "Windows"
},
- "vs/base/common/platform": {
- "ensureLoaderPluginIsLoaded": "_"
- },
- "vs/base/node/processes": {
- "TaskRunner.UNC": "UNC 드라이브에서 셸 명령을 실행할 수 없습니다."
+ "vs/base/common/policy": {
+ "extensionsConfigurationTitle": "확장",
+ "interactiveSessionConfigurationTitle": "채팅",
+ "telemetryConfigurationTitle": "원격 분석",
+ "terminalIntegratedConfigurationTitle": "통합 터미널",
+ "updateConfigurationTitle": "업데이트"
},
"vs/base/node/zip": {
"incompleteExtract": "완료되지 않았습니다. {1}개 항목 중 {0}개를 찾았습니다.",
"invalid file": "{0}을(를) 추출하는 동안 오류가 발생했습니다. 잘못된 파일입니다.",
"notFound": "zip 파일 내에 {0}이(가) 없습니다."
},
- "vs/base/parts/quickinput/browser/quickInput": {
- "custom": "사용자 지정",
- "inputModeEntry": "입력을 확인하려면 'Enter' 키를 누르고, 취소하려면 'Esc' 키를 누르세요.",
- "inputModeEntryDescription": "{0}(확인하려면 'Enter' 키를 누르고, 취소하려면 'Escape' 키를 누름)",
- "ok": "확인",
- "quickInput.back": "뒤로",
- "quickInput.backWithKeybinding": "뒤로({0})",
- "quickInput.checkAll": "모든 확인란 선택/해제",
- "quickInput.countSelected": "{0} 선택됨",
- "quickInput.steps": "{0} / {1}",
- "quickInput.visibleCount": "{0}개 결과",
- "quickInputBox.ariaLabel": "결과의 범위를 축소하려면 입력하세요."
+ "vs/editor/browser/controller/editContext/native/screenReaderSupport": {
+ "editor": "편집기"
},
- "vs/base/parts/quickinput/browser/quickInputList": {
- "quickInput": "빠른 입력"
+ "vs/editor/browser/controller/editContext/screenReaderUtils": {
+ "accessibilityModeOff": "현재 편집기에 액세스할 수 없습니다.",
+ "accessibilityOffAriaLabel": "{0} 화면 읽기 프로그램 최적화 모드를 사용하도록 설정하려면 {1}을(를) 사용합니다.",
+ "accessibilityOffAriaLabelNoKb": "{0} 화면 읽기 프로그램 최적화 모드를 사용하도록 설정하려면 {1}을(를) 사용하여 빠른 선택을 열고 화면 읽기 프로그램 접근성 모드 토글 명령을 실행합니다(이 명령은 현재 키보드를 통해 트리거할 수 없음).",
+ "accessibilityOffAriaLabelNoKbs": "{0} {1}을(를) 사용하여 키 바인딩 편집기에 액세스하여 화면 읽기 프로그램 접근성 모드 토글 명령에 대한 키 바인딩을 할당하고 실행하세요."
},
- "vs/editor/browser/controller/textAreaHandler": {
- "accessibilityOffAriaLabel": "현재 편집기에 액세스할 수 없습니다. 옵션을 보려면 {0}을(를) 누릅니다.",
+ "vs/editor/browser/controller/editContext/textArea/textAreaEditContext": {
"editor": "편집기"
},
"vs/editor/browser/coreCommands": {
@@ -202,22 +223,40 @@
"selectAll": "모두 선택",
"undo": "실행 취소"
},
- "vs/editor/browser/widget/codeEditorWidget": {
- "cursors.maximum": "커서 수는 {0}(으)로 제한되었습니다."
- },
- "vs/editor/browser/widget/diffEditorWidget": {
- "diff.tooLarge": "파일 1개가 너무 커서 파일을 비교할 수 없습니다.",
- "diffInsertIcon": "diff 편집기의 삽입에 대한 줄 데코레이션입니다.",
- "diffRemoveIcon": "diff 편집기의 제거에 대한 줄 데코레이션입니다."
- },
- "vs/editor/browser/widget/diffReview": {
+ "vs/editor/browser/gpu/viewGpuContext": {
+ "editor.dom.render": "DOM 기반 렌더링 사용"
+ },
+ "vs/editor/browser/services/inlineCompletionsService": {
+ "action.inlineSuggest.cancelSnooze": "인라인 제안 다시 알림 취소",
+ "action.inlineSuggest.snooze": "인라인 제안 다시 알림",
+ "inlineCompletions.snoozed": "인라인 완성이 현재 다시 알림 상태인지 여부",
+ "snooze.placeholder": "인라인 제안의 다시 알림 기간 선택"
+ },
+ "vs/editor/browser/widget/codeEditor/codeEditorWidget": {
+ "cursors.maximum": "커서 수를 {0}개로 제한했습니다. 더 큰 변경 내용을 위해서는 [찾아서 교체](https://code.visualstudio.com/docs/editor/codebasics#_find-and-replace)를 사용하거나 편집기 다중 커서 제한 설정을 늘리는 것이 좋습니다.",
+ "goToSetting": "다중 커서 제한 늘리기"
+ },
+ "vs/editor/browser/widget/diffEditor/commands": {
+ "accessibleDiffViewer": "액세스 가능한 Diff 뷰어",
+ "collapseAllUnchangedRegions": "변경되지 않은 모든 영역 축소",
+ "diffEditor": "diff 편집기",
+ "editor.action.accessibleDiffViewer.next": "다음 다른 항목으로 이동",
+ "editor.action.accessibleDiffViewer.prev": "다음 다른 항목으로 이동",
+ "exitCompareMove": "비교 이동 종료",
+ "revert": "되돌리기",
+ "showAllUnchangedRegions": "변경되지 않은 모든 영역 표시",
+ "switchSide": "스위치 쪽",
+ "toggleCollapseUnchangedRegions": "변경되지 않은 영역 축소 토글",
+ "toggleShowMovedCodeBlocks": "이동된 코드 블록 표시 토글",
+ "toggleUseInlineViewWhenSpaceIsLimited": "공간이 제한된 경우 인라인 보기 사용 설정/해제"
+ },
+ "vs/editor/browser/widget/diffEditor/components/accessibleDiffViewer": {
+ "accessibleDiffViewerCloseIcon": "접근 가능한 Diff 뷰어의 '닫기' 아이콘.",
+ "accessibleDiffViewerInsertIcon": "액세스 가능한 Diff 뷰어의 '삽입' 아이콘.",
+ "accessibleDiffViewerRemoveIcon": "액세스 가능한 Diff 뷰어의 '제거' 아이콘.",
+ "ariaLabel": "액세스 가능한 Diff 뷰어입니다. 탐색하려면 위쪽 및 아래쪽 화살표를 사용합니다.",
"blankLine": "비어 있음",
"deleteLine": "- {0} 원래 줄 {1}",
- "diffReviewCloseIcon": "Diff 검토에서 '닫기'의 아이콘입니다.",
- "diffReviewInsertIcon": "Diff 검토에서 '삽입'의 아이콘입니다.",
- "diffReviewRemoveIcon": "Diff 검토에서 '제거'의 아이콘입니다.",
- "editor.action.diffReview.next": "다음 다른 항목으로 이동",
- "editor.action.diffReview.prev": "다음 다른 항목으로 이동",
"equalLine": "{0} 원래 줄 {1} 수정된 줄 {2}",
"header": "차이 {0}/{1}: 원래 줄 {2}, {3}, 수정된 줄 {4}, {5}",
"insertLine": "+ {0} 수정된 줄 {1}",
@@ -227,7 +266,10 @@
"one_line_changed": "선 1개 변경됨",
"unchangedLine": "{0} 변경되지 않은 줄 {1}"
},
- "vs/editor/browser/widget/inlineDiffMargin": {
+ "vs/editor/browser/widget/diffEditor/components/diffEditorEditors": {
+ "diff-aria-navigation-tip": " {0}을(를) 사용하여 접근성 도움말을 엽니다."
+ },
+ "vs/editor/browser/widget/diffEditor/components/diffEditorViewZones/inlineDiffDeletedCodeMargin": {
"diff.clipboard.copyChangedLineContent.label": "변경된 줄({0}) 복사",
"diff.clipboard.copyChangedLinesContent.label": "변경된 줄 복사",
"diff.clipboard.copyChangedLinesContent.single.label": "변경된 줄 복사",
@@ -236,18 +278,76 @@
"diff.clipboard.copyDeletedLinesContent.single.label": "삭제된 줄 복사",
"diff.inline.revertChange.label": "이 변경 내용 되돌리기"
},
+ "vs/editor/browser/widget/diffEditor/diffEditor.contribution": {
+ "Open Accessible Diff Viewer": "액세스 가능한 Diff 뷰어 열기",
+ "revertHunk": "블록 되돌리기",
+ "revertSelection": "선택 항목 되돌리기",
+ "showMoves": "이동된 코드 블록 표시",
+ "useInlineViewWhenSpaceIsLimited": "공간이 제한된 경우 인라인 보기 사용"
+ },
+ "vs/editor/browser/widget/diffEditor/features/hideUnchangedRegionsFeature": {
+ "diff.bottom": "아래에 자세히 표시하려면 클릭하거나 끌어다 놓기",
+ "diff.hiddenLines.expandAll": "두 번 클릭하여 펼치기",
+ "diff.hiddenLines.top": "위에 자세히 표시하려면 클릭하거나 끌어다 놓기",
+ "foldUnchanged": "변경되지 않은 영역 접기",
+ "hiddenLines": "숨겨진 선 {0}개",
+ "showUnchangedRegion": "변경되지 않은 영역 표시"
+ },
+ "vs/editor/browser/widget/diffEditor/features/movedBlocksLinesFeature": {
+ "codeMovedFrom": "코드가 {0} - {1}줄에서 이동됨",
+ "codeMovedFromWithChanges": "변경 사항과 함께 코드가 {0} - {1}줄에서 이동됨",
+ "codeMovedTo": "코드가 {0} - {1}줄로 이동됨",
+ "codeMovedToWithChanges": "변경 사항과 함께 코드가 {0} - {1}줄로 이동됨"
+ },
+ "vs/editor/browser/widget/diffEditor/features/revertButtonsFeature": {
+ "revertChange": "변경 내용 되돌리기",
+ "revertSelectedChanges": "선택한 변경 내용 되돌리기"
+ },
+ "vs/editor/browser/widget/diffEditor/registrations.contribution": {
+ "diffEditor.move.border": "diff 편집기에서 이동된 텍스트의 테두리 색입니다.",
+ "diffEditor.moveActive.border": "diff 편집기에서 이동된 텍스트의 활성 테두리 색입니다.",
+ "diffEditor.unchangedRegionShadow": "변경되지 않은 영역 위젯 주위의 그림자 색입니다.",
+ "diffInsertIcon": "diff 편집기의 삽입에 대한 줄 데코레이션입니다.",
+ "diffRemoveIcon": "diff 편집기의 제거에 대한 줄 데코레이션입니다."
+ },
+ "vs/editor/browser/widget/multiDiffEditor/colors": {
+ "multiDiffEditor.background": "다중 파일 diff 편집기 배경색입니다.",
+ "multiDiffEditor.border": "다중 파일 차이 편집기의 테두리 색",
+ "multiDiffEditor.headerBackground": "diff 편집기 헤더의 배경색입니다."
+ },
+ "vs/editor/browser/widget/multiDiffEditor/multiDiffEditorWidgetImpl": {
+ "loading": "로드 중...",
+ "noChangedFiles": "변경된 파일 없음"
+ },
"vs/editor/common/config/editorConfigurationSchema": {
"codeLens": "편집기에서 CodeLens를 표시할 것인지 여부를 제어합니다.",
- "detectIndentation": "파일을 열 때 파일 콘텐츠를 기반으로 `#editor.tabSize#`와 `#editor.insertSpaces#`가 자동으로 검색되는지 여부를 제어합니다.",
+ "detectIndentation": "파일 내용을 기반으로 파일을 열 때 {0} 및 {1}을(를) 자동으로 감지할지 여부를 제어합니다.",
+ "diffAlgorithm.advanced": "고급 비교 알고리즘을 사용합니다.",
+ "diffAlgorithm.legacy": "레거시 비교 알고리즘을 사용합니다.",
+ "editor.experimental.asyncTokenization": "웹 작업자에서 토큰화가 비동기적으로 수행되어야 하는지 여부를 제어합니다.",
+ "editor.experimental.asyncTokenizationLogging": "비동기 토큰화가 기록되어야 하는지 여부를 제어합니다. 디버깅 전용입니다.",
+ "editor.experimental.asyncTokenizationVerification": "레거시 백그라운드 토큰화에 대해 비동기 토큰화를 확인해야 하는지 여부를 제어합니다. 토큰화 속도가 느려질 수 있습니다. 디버깅 전용입니다.",
+ "editor.experimental.preferTreeSitter.css": "css에 대한 트리 시터 구문 분석 설정 여부를 제어합니다. css의 경우 '#editor.experimental.treeSitterTelemetry#'보다 우선합니다.",
+ "editor.experimental.preferTreeSitter.ini": "ini에 대한 트리 시터 구문 분석 설정 여부를 제어합니다. ini의 경우 '#editor.experimental.treeSitterTelemetry#'보다 우선합니다.",
+ "editor.experimental.preferTreeSitter.regex": "regex에 트리 시터 구문 분석을 설정해야 하는지 여부를 제어합니다. 이는 regex에 대해 '#editor.experimental.treeSitterTelemetry#'보다 우선합니다.",
+ "editor.experimental.preferTreeSitter.typescript": "TypeScript에 대한 트리 시터 구문 분석 설정 여부를 제어합니다. TypeScript의 경우 '#editor.experimental.treeSitterTelemetry#'보다 우선합니다.",
+ "editor.experimental.treeSitterTelemetry": "트리 시터 구문 분석을 설정하고 원격 분석을 수집해야 하는지 여부를 제어합니다. 특정 언어에 대해 '#editor.experimental.preferTreeSitter#'를 설정하는 것이 우선적으로 적용됩니다.",
"editorConfigurationTitle": "편집기",
+ "hideUnchangedRegions.contextLineCount": "변경되지 않은 영역을 비교할 때 컨텍스트로 사용되는 줄 수를 제어합니다.",
+ "hideUnchangedRegions.enabled": "diff 편집기에 변경되지 않은 영역이 표시되는지 여부를 제어합니다.",
+ "hideUnchangedRegions.minimumLineCount": "변경되지 않은 영역의 최소값으로 사용되는 줄 수를 제어합니다.",
+ "hideUnchangedRegions.revealLineCount": "변경되지 않은 영역에 사용되는 줄 수를 제어합니다.",
"ignoreTrimWhitespace": "사용하도록 설정하면 Diff 편집기가 선행 또는 후행 공백의 변경 내용을 무시합니다.",
- "insertSpaces": "'탭' 키를 누를 때 공백을 삽입합니다. `#editor.detectIndentation#`이 켜져 있는 경우 이 설정은 파일 콘텐츠에 따라 재정의됩니다.",
+ "indentSize": "들여쓰기 또는 `\"tabSize\"에서 '#editor.tabSize#'의 값을 사용하는 데 사용되는 공백 수입니다. 이 설정은 '#editor.detectIndentation#'이 켜져 있는 경우 파일 내용에 따라 재정의됩니다.",
+ "insertSpaces": "`Tab`을 누를 때 공백을 삽입하세요. 이 설정은 {0}이(가) 켜져 있을 때 파일 내용을 기반으로 재정의됩니다.",
"largeFileOptimizations": "큰 파일에 대한 특수 처리로, 메모리를 많이 사용하는 특정 기능을 사용하지 않도록 설정합니다.",
"maxComputationTime": "diff 계산이 취소된 후 밀리초 단위로 시간을 제한합니다. 제한 시간이 없는 경우 0을 사용합니다.",
"maxFileSize": "차이를 계산할 최대 파일 크기(MB)입니다. 제한이 없으면 0을 사용합니다.",
"maxTokenizationLineLength": "이 길이를 초과하는 줄은 성능상의 이유로 토큰화되지 않습니다.",
+ "renderGutterMenu": "사용하도록 설정하면 diff 편집기에 되돌리기 및 단계 작업을 위한 특수 여백이 표시됩니다.",
"renderIndicators": "diff 편집기에서 추가/제거된 변경 내용에 대해 +/- 표시기를 표시하는지 여부를 제어합니다.",
"renderMarginRevertIcon": "활성화되면 diff 편집기는 변경 내용을 되돌리기 위해 글리프 여백에 화살표를 표시합니다.",
+ "renderSideBySideInlineBreakpoint": "diff 편집기 너비가 이 값보다 작으면 인라인 뷰가 사용됩니다.",
"schema.brackets": "들여쓰기를 늘리거나 줄이는 대괄호 기호를 정의합니다.",
"schema.closeBracket": "닫는 대괄호 문자 또는 문자열 시퀀스입니다.",
"schema.colorizedBracketPairs": "대괄호 쌍 색 지정을 사용하는 경우 중첩 수준에 따라 색이 지정된 대괄호 쌍을 정의합니다.",
@@ -256,16 +356,20 @@
"semanticHighlighting.enabled": "semanticHighlighting이 지원하는 언어에 대해 표시되는지 여부를 제어합니다.",
"semanticHighlighting.false": "모든 색 테마에 대해 의미 체계 강조 표시를 사용하지 않습니다.",
"semanticHighlighting.true": "모든 색 테마에 대해 의미 체계 강조 표시를 사용합니다.",
+ "showEmptyDecorations": "문자가 삽입되거나 삭제된 위치를 볼 수 있도록 diff 편집기에 빈 장식적 요소를 표시할지 여부를 제어합니다.",
+ "showMoves": "diff 편집기에서 감지된 코드 이동을 표시할지 여부를 제어합니다.",
"sideBySide": "diff 편집기에서 diff를 나란히 표시할지 인라인으로 표시할지를 제어합니다.",
"stablePeek": "해당 콘텐츠를 두 번 클릭하거나 'Esc' 키를 누르더라도 Peek 편집기를 열린 상태로 유지합니다.",
- "tabSize": "탭 한 개에 해당하는 공백 수입니다. `#editor.detectIndentation#`이 켜져 있는 경우 이 설정은 파일 콘텐츠에 따라 재정의됩니다.",
+ "tabSize": "탭이 같은 공백의 수입니다. 이 설정은 {0}이(가) 켜져 있을 때 파일 내용을 기반으로 재정의됩니다.",
"trimAutoWhitespace": "끝에 자동 삽입된 공백을 제거합니다.",
- "wordBasedSuggestions": "문서 내 단어를 기반으로 완성을 계산할지 여부를 제어합니다.",
- "wordBasedSuggestionsMode": "단어 기반 완성이 컴퓨팅되는 문서에서 제어합니다.",
- "wordBasedSuggestionsMode.allDocuments": "모든 열린 문서에서 단어를 제안합니다.",
- "wordBasedSuggestionsMode.currentDocument": "활성 문서에서만 단어를 제안합니다.",
- "wordBasedSuggestionsMode.matchingDocuments": "같은 언어의 모든 열린 문서에서 단어를 제안합니다.",
- "wordWrap.inherit": "`#editor.wordWrap#` 설정에 따라 줄이 바뀝니다.",
+ "useInlineViewWhenSpaceIsLimited": "사용하도록 설정하고 편집기 너비가 너무 작을 경우 인라인 보기가 사용됩니다.",
+ "useTrueInlineView": "사용하도록 설정하고 편집기에서 인라인 보기를 사용하는 경우 단어 변경 내용이 인라인으로 렌더링됩니다.",
+ "wordBasedSuggestions": "문서의 단어를 기준으로 완성도를 계산해야 하는지 여부 및 완성도가 계산되는 문서를 기준으로 계산되는지 여부를 제어합니다.",
+ "wordBasedSuggestions.allDocuments": "모든 열린 문서에서 단어를 제안합니다.",
+ "wordBasedSuggestions.currentDocument": "활성 문서에서만 단어를 제안합니다.",
+ "wordBasedSuggestions.matchingDocuments": "같은 언어의 모든 열린 문서에서 단어를 제안합니다.",
+ "wordBasedSuggestions.off": "단어 기반 추천을 끕니다.",
+ "wordWrap.inherit": "줄은 {0} 설정에 따라 줄 바꿈됩니다.",
"wordWrap.off": "줄이 바뀌지 않습니다.",
"wordWrap.on": "뷰포트 너비에서 줄이 바뀝니다."
},
@@ -274,46 +378,64 @@
"acceptSuggestionOnEnter": "'Tab' 키 외에 'Enter' 키에 대한 제안도 허용할지를 제어합니다. 새 줄을 삽입하는 동작과 제안을 허용하는 동작 간의 모호함을 없앨 수 있습니다.",
"acceptSuggestionOnEnterSmart": "텍스트를 변경할 때 `Enter` 키를 사용한 제안만 허용합니다.",
"accessibilityPageSize": "화면 읽기 프로그램에서 한 번에 읽을 수 있는 편집기 줄 수를 제어합니다. 화면 읽기 프로그램을 검색하면 기본값이 500으로 자동 설정됩니다. 경고: 기본값보다 큰 수의 경우 성능에 영향을 미칩니다.",
- "accessibilitySupport": "편집기를 화면 읽기 프로그램에 최적화된 모드로 실행할지 여부를 제어합니다. 사용하도록 설정하면 자동 줄 바꿈이 사용하지 않도록 설정됩니다.",
- "accessibilitySupport.auto": "편집기가 스크린 리더가 연결되면 플랫폼 API를 사용하여 감지합니다.",
- "accessibilitySupport.off": "편집기가 스크린 리더 사용을 위해 최적화되지 않습니다.",
- "accessibilitySupport.on": "편집기가 화면 읽기 프로그램과 함께 사용되도록 영구적으로 최적화되며, 자동 줄 바꿈이 사용하지 않도록 설정됩니다.",
+ "accessibilitySupport": "화면 판독기에 최적화된 모드에서 UI를 실행해야 하는지 여부를 제어합니다.",
+ "accessibilitySupport.auto": "플랫폼 API를 사용하여 화면 읽기 프로그램이 연결된 시기를 감지합니다.",
+ "accessibilitySupport.off": "화면 읽기 프로그램이 연결되어 있지 않다고 가정합니다.",
+ "accessibilitySupport.on": "화면 읽기 프로그램을 사용하여 사용을 최적화합니다.",
+ "allowVariableFonts": "편집기에서 변수 글꼴 사용을 허용할지 여부를 제어합니다.",
+ "allowVariableFontsInAccessibilityMode": "접근성 모드에서 편집기에서 변수 글꼴 사용을 허용할지 여부를 제어합니다.",
+ "allowVariableLineHeights": "편집기에서 가변 줄 높이 사용을 허용할지 여부를 제어합니다.",
"alternativeDeclarationCommand": "'선언으로 이동'의 결과가 현재 위치일 때 실행되는 대체 명령 ID입니다.",
"alternativeDefinitionCommand": "'정의로 이동'의 결과가 현재 위치일 때 실행되는 대체 명령 ID입니다.",
"alternativeImplementationCommand": "'구현으로 이동'의 결과가 현재 위치일 때 실행되는 대체 명령 ID입니다.",
"alternativeReferenceCommand": "'참조로 이동'의 결과가 현재 위치일 때 실행되는 대체 명령 ID입니다.",
"alternativeTypeDefinitionCommand": "'형식 정의로 이동'의 결과가 현재 위치일 때 실행되는 대체 명령 ID입니다.",
"autoClosingBrackets": "사용자가 여는 괄호를 추가한 후 편집기에서 괄호를 자동으로 닫을지 여부를 제어합니다.",
+ "autoClosingComments": "사용자가 여는 주석을 추가한 후 편집기에서 주석을 자동으로 닫을지 여부를 제어합니다.",
"autoClosingDelete": "삭제할 때 편집기에서 인접한 닫는 따옴표 또는 대괄호를 제거해야 할지를 제어합니다.",
"autoClosingOvertype": "편집자가 닫는 따옴표 또는 대괄호 위에 입력할지 여부를 제어합니다.",
"autoClosingQuotes": "사용자가 여는 따옴표를 추가한 후 편집기에서 따옴표를 자동으로 닫을지 여부를 제어합니다.",
"autoIndent": "사용자가 줄을 입력, 붙여넣기, 이동 또는 들여쓰기 할 때 편집기에서 들여쓰기를 자동으로 조정하도록 할지 여부를 제어합니다.",
+ "autoIndentOnPaste": "편집기에서 붙여넣은 콘텐츠를 자동으로 들여쓰기할지 여부를 제어합니다.",
+ "autoIndentOnPasteWithinString": "문자열 내에 붙여넣을 때 편집기가 붙여넣은 콘텐츠를 자동으로 들여쓰기할지 여부를 제어합니다. 이는 autoIndentOnPaste가 true인 경우에 적용됩니다.",
"autoSurround": "따옴표 또는 대괄호 입력 시 편집기가 자동으로 선택 영역을 둘러쌀지 여부를 제어합니다.",
"bracketPairColorization.enabled": "대괄호 쌍 색 지정을 사용할지 여부를 제어합니다. {0}을(를) 사용하여 대괄호 강조 색을 재정의합니다.",
"bracketPairColorization.independentColorPoolPerBracketType": "각 대괄호 형식에 고유한 독립적인 색 풀이 있는지 여부를 제어합니다.",
- "codeActions": "편집기에서 코드 동작 전구를 사용하도록 설정합니다.",
"codeLens": "편집기에서 CodeLens를 표시할 것인지 여부를 제어합니다.",
"codeLensFontFamily": "CodeLens의 글꼴 패밀리를 제어합니다.",
- "codeLensFontSize": "CodeLens의 글꼴 크기(픽셀)를 제어합니다. '0'으로 설정하면 `#editor.fontSize#`의 90%가 사용됩니다.",
+ "codeLensFontSize": "CodeLens의 글꼴 크기(픽셀)를 제어합니다. 0으로 설정하면 `#editor.fontSize#`의 90%가 사용됩니다.",
+ "colorDecoratorActivatedOn": "색 데코레이터에서 색 선택기를 표시할 조건을 제어합니다.",
"colorDecorators": "편집기에서 인라인 색 데코레이터 및 색 선택을 렌더링할지를 제어합니다.",
+ "colorDecoratorsLimit": "편집기에서 한 번에 렌더링할 수 있는 최대 색 데코레이터 수를 제어합니다.",
"columnSelection": "마우스와 키로 선택한 영역에서 열을 선택하도록 설정합니다.",
"comments.ignoreEmptyLines": "빈 줄을 줄 주석에 대한 토글, 추가 또는 제거 작업으로 무시해야 하는지를 제어합니다.",
"comments.insertSpace": "주석을 달 때 공백 문자를 삽입할지 여부를 제어합니다.",
"copyWithSyntaxHighlighting": "구문 강조 표시를 클립보드로 복사할지 여부를 제어합니다.",
"cursorBlinking": "커서 애니메이션 스타일을 제어합니다.",
+ "cursorHeight": "`#editor.cursorStyle#` 설정이 'line'으로 설정되어 있을 때 커서의 높이를 제어합니다. 커서의 최대 높이는 선 높이에 따라 달라집니다.",
"cursorSmoothCaretAnimation": "매끄러운 캐럿 애니메이션의 사용 여부를 제어합니다.",
- "cursorStyle": "커서 스타일을 제어합니다.",
- "cursorSurroundingLines": "커서 주위에 표시되는 선행 및 후행 줄의 최소 수를 제어합니다. 일부 다른 편집기에서는 'scrollOff' 또는 'scrollOffset'이라고 합니다.",
- "cursorSurroundingLinesStyle": "'cursorSurroundingLines'를 적용해야 하는 경우를 제어합니다.",
+ "cursorSmoothCaretAnimation.explicit": "부드러운 캐럿 애니메이션은 사용자가 명시적 제스처를 사용하여 커서를 이동할 때만 사용됩니다.",
+ "cursorSmoothCaretAnimation.off": "부드러운 캐럿 애니메이션을 사용할 수 없습니다.",
+ "cursorSmoothCaretAnimation.on": "부드러운 캐럿 애니메이션은 항상 사용됩니다.",
+ "cursorStyle": "삽입 입력 모드에서 커서 스타일을 제어합니다.",
+ "cursorSurroundingLines": "커서 주변에 표시되는 선행 줄(최소 0)과 후행 줄(최소 1)의 최소 수를 제어합니다. 일부 다른 편집기에서는 'scrollOff' 또는 'scrollOffset'으로 알려져 있습니다.",
+ "cursorSurroundingLinesStyle": "`#editor.cursorSurroundingLines#`를 적용해야 하는 경우를 제어합니다.",
"cursorSurroundingLinesStyle.all": "`cursorSurroundingLines`는 항상 적용됩니다.",
"cursorSurroundingLinesStyle.default": "'cursorSurroundingLines'는 키보드 나 API를 통해 트리거될 때만 적용됩니다.",
"cursorWidth": "`#editor.cursorStyle#` 설정이 'line'으로 설정되어 있을 때 커서의 넓이를 제어합니다.",
+ "defaultColorDecorators": "기본 문서 색 공급자를 사용하여 인라인 색 장식을 표시할지 여부를 제어합니다.",
"definitionLinkOpensInPeek": "이동 정의 마우스 제스처가 항상 미리 보기 위젯을 열지 여부를 제어합니다.",
"deprecated": "이 설정은 더 이상 사용되지 않습니다. 대신 'editor.suggest.showKeywords'또는 'editor.suggest.showSnippets'와 같은 별도의 설정을 사용하세요.",
"dragAndDrop": "편집기에서 끌어서 놓기로 선택 영역을 이동할 수 있는지 여부를 제어합니다.",
- "dropIntoEditor.enabled": "Controls whether you can drag and drop a file into a text editor by holding down `shift` (instead of opening the file in an editor).",
+ "dropIntoEditor.enabled": "편집기에서 파일을 여는 대신 `shift`를 누른 채 파일을 텍스트 편집기로 끌어서 놓을 수 있는지 여부를 제어합니다.",
+ "dropIntoEditor.showDropSelector": "편집기에 파일을 끌어 놓을 때 위젯을 표시할지 여부를 제어합니다. 이 위젯을 사용하면 파일을 드롭하는 방법을 제어할 수 있습니다.",
+ "dropIntoEditor.showDropSelector.afterDrop": "파일이 편집기에 드롭된 후 드롭 선택기 위젯을 표시합니다.",
+ "dropIntoEditor.showDropSelector.never": "드롭 선택기 위젯을 표시하지 않습니다. 대신 기본 드롭 공급자가 항상 사용됩니다.",
+ "editContext": "편집기에서 입력을 처리하기 위해 텍스트 영역 대신 EditContext API를 사용할지 여부를 설정합니다.",
"editor.autoClosingBrackets.beforeWhitespace": "커서가 공백의 왼쪽에 있는 경우에만 대괄호를 자동으로 닫습니다.",
"editor.autoClosingBrackets.languageDefined": "언어 구성을 사용하여 대괄호를 자동으로 닫을 경우를 결정합니다.",
+ "editor.autoClosingComments.beforeWhitespace": "커서가 공백의 왼쪽에 있는 경우에만 주석을 자동으로 닫습니다.",
+ "editor.autoClosingComments.languageDefined": "언어 구성을 사용하여 주석을 자동으로 닫을 경우를 결정합니다.",
"editor.autoClosingDelete.auto": "인접한 닫는 따옴표 또는 대괄호가 자동으로 삽입된 경우에만 제거합니다.",
"editor.autoClosingOvertype.auto": "닫기 따옴표 또는 대괄호가 자동으로 삽입된 경우에만 해당 항목 위에 입력합니다.",
"editor.autoClosingQuotes.beforeWhitespace": "커서가 공백의 왼쪽에 있는 경우에만 따옴표를 자동으로 닫습니다.",
@@ -326,22 +448,31 @@
"editor.autoSurround.brackets": "따옴표가 아닌 대괄호로 둘러쌉니다.",
"editor.autoSurround.languageDefined": "언어 구성을 사용하여 선택 항목을 자동으로 둘러쌀 경우를 결정합니다.",
"editor.autoSurround.quotes": "대괄호가 아닌 따옴표로 둘러쌉니다.",
+ "editor.colorDecoratorActivatedOn.click": "색 데코레이터를 클릭할 때 색 선택기를 표시합니다.",
+ "editor.colorDecoratorActivatedOn.clickAndHover": "색 데코레이터를 클릭하고 마우스로 가리킬 때 색 선택기를 표시합니다.",
+ "editor.colorDecoratorActivatedOn.hover": "색 데코레이터를 마우스로 가리키면 색 선택기가 표시되도록 설정",
+ "editor.defaultColorDecorators.always": "항상 기본 색 데코레이터를 표시합니다.",
+ "editor.defaultColorDecorators.auto": "색 데코레이터를 제공하는 확장이 없는 경우에만 기본 색 데코레이터를 표시합니다.",
+ "editor.defaultColorDecorators.never": "기본 색 데코레이터를 표시하지 않습니다.",
"editor.editor.gotoLocation.multipleDeclarations": "여러 대상 위치가 있는 경우 'Go to Declaration' 명령 동작을 제어합니다.",
"editor.editor.gotoLocation.multipleDefinitions": "여러 대상 위치가 있는 경우 '정의로 이동' 명령 동작을 제어합니다.",
"editor.editor.gotoLocation.multipleImplemenattions": "여러 대상 위치가 있는 경우 '구현으로 이동' 명령 동작을 제어합니다.",
"editor.editor.gotoLocation.multipleReferences": "여러 대상 위치가 있는 경우 '참조로 이동' 명령 동작을 제어합니다.",
"editor.editor.gotoLocation.multipleTypeDefinitions": "여러 대상 위치가 있는 경우 '유형 정의로 이동' 명령 동작을 제어합니다.",
- "editor.experimental.stickyScroll": "Shows the nested current scopes during the scroll at the top of the editor.",
"editor.find.autoFindInSelection.always": "선택 영역에서 찾기를 항상 자동으로 켭니다.",
"editor.find.autoFindInSelection.multiline": "여러 줄의 콘텐츠를 선택하면 선택 항목에서 찾기가 자동으로 켜집니다.",
"editor.find.autoFindInSelection.never": "선택 영역에서 찾기를 자동으로 켜지 않습니다(기본값).",
+ "editor.find.history.never": "찾기 위젯에서 검색 기록을 저장하지 않습니다.",
+ "editor.find.history.workspace": "활성 작업 영역에 검색 기록 저장",
+ "editor.find.replaceHistory.never": "바꾸기 위젯의 기록을 저장하지 마세요.",
+ "editor.find.replaceHistory.workspace": "활성 작업 영역에서 바꾸기 기록 저장",
"editor.find.seedSearchStringFromSelection.always": "커서 위치의 단어를 포함하여 항상 편집기 선택 영역에서 검색 문자열을 시드합니다.",
"editor.find.seedSearchStringFromSelection.never": "편집기 선택 영역에서 검색 문자열을 시드하지 마세요.",
"editor.find.seedSearchStringFromSelection.selection": "편집기 선택 영역에서만 검색 문자열을 시드하세요.",
"editor.gotoLocation.multiple.deprecated": "이 설정은 더 이상 사용되지 않습니다. 대신 'editor.editor.gotoLocation.multipleDefinitions' 또는 'editor.editor.gotoLocation.multipleImplementations'와 같은 별도의 설정을 사용하세요.",
- "editor.gotoLocation.multiple.goto": "기본 결과로 이동하고 다른 항목에 대해 peek 없는 탐색을 사용하도록 설정",
+ "editor.gotoLocation.multiple.goto": "기본 결과로 이동하여 다른 항목에 대해 Peek 없는 탐색을 사용하도록 설정합니다.",
"editor.gotoLocation.multiple.gotoAndPeek": "기본 결과로 이동하여 Peek 보기를 표시합니다.",
- "editor.gotoLocation.multiple.peek": "결과 Peek 뷰 표시(기본)",
+ "editor.gotoLocation.multiple.peek": "결과의 Peek 보기 표시(기본값)",
"editor.guides.bracketPairs": "대괄호 쌍 안내선의 사용 여부를 제어합니다.",
"editor.guides.bracketPairs.active": "활성 대괄호 쌍에 대해서만 대괄호 쌍 가이드를 사용하도록 설정합니다.",
"editor.guides.bracketPairs.false": "대괄호 쌍 가이드를 비활성화합니다.",
@@ -356,10 +487,20 @@
"editor.guides.highlightActiveIndentation.false": "활성 들여쓰기 안내선을 강조 표시하지 마세요.",
"editor.guides.highlightActiveIndentation.true": "활성 들여쓰기 안내선을 강조 표시합니다.",
"editor.guides.indentation": "편집기에서 들여쓰기 가이드를 렌더링할지를 제어합니다.",
- "editor.inlayHints.off": "인레이 힌트는 사용할 수 없음",
- "editor.inlayHints.offUnlessPressed": "인레이 힌트는 기본값으로 숨겨져 있으며 `Ctrl+Alt`를 누르면 표시됩니다.",
- "editor.inlayHints.on": "인레이 힌트를 사용할 수 있음",
- "editor.inlayHints.onUnlessPressed": "`Ctrl+Alt`를 누를 때 인레이 힌트가 기본적으로 표시되고 숨겨집니다.",
+ "editor.inlayHints.off": "인레이 힌트가 비활성화됨",
+ "editor.inlayHints.offUnlessPressed": "인레이 힌트는 기본값으로 숨겨져 있으며 {0}을(를) 길게 누르면 표시됩니다.",
+ "editor.inlayHints.on": "인레이 힌트가 활성화됨",
+ "editor.inlayHints.onUnlessPressed": "인레이 힌트는 기본값으로 표시되고 {0}을(를) 길게 누르면 숨겨집니다.",
+ "editor.inlineSuggest.edits.renderSideBySide.auto": "더 큰 제안은 공간이 충분하면 나란히 표시되고, 그렇지 않으면 아래에 표시됩니다.",
+ "editor.inlineSuggest.edits.renderSideBySide.never": "더 큰 제안은 나란히 표시되지 않으며 항상 아래에 표시됩니다.",
+ "editor.lightbulb.enabled.off": "코드 작업 메뉴를 사용하지 않도록 설정합니다.",
+ "editor.lightbulb.enabled.on": "커서가 코드가 있는 줄 또는 빈 줄에 있는 경우 코드 동작 메뉴를 표시합니다.",
+ "editor.lightbulb.enabled.onCode": "커서가 코드가 있는 줄에 있을 때 코드 동작 메뉴를 표시합니다.",
+ "editor.stickyScroll.defaultModel": "고정할 줄을 결정하는 데 사용할 모델을 정의합니다. 개요 모델이 없으면 들여쓰기 모델에 해당하는 접기 공급자 모델에서 대체됩니다. 이 순서는 세 가지 경우 모두 적용됩니다.",
+ "editor.stickyScroll.enabled": "편집기 위쪽에서 스크롤하는 동안 중첩된 현재 범위를 표시합니다.",
+ "editor.stickyScroll.maxLineCount": "표시할 최대 고정 선 수를 정의합니다.",
+ "editor.stickyScroll.scrollWithEditor": "편집기의 가로 스크롤 막대를 사용하여 고정 스크롤의 스크롤을 사용하도록 설정합니다.",
+ "editor.suggest.matchOnWordStartOnly": "IntelliSense 필터링을 활성화하면 첫 번째 문자가 단어 시작 부분과 일치해야 합니다(예: `c`의 경우 `Console` 또는 `WebContext`가 될 수 있으며 `description`은 _안 됨_). 비활성화하면 IntelliSense가 더 많은 결과를 표시하지만 여전히 일치 품질을 기준으로 정렬합니다.",
"editor.suggest.showClasss": "사용하도록 설정되면 IntelliSense에 '클래스' 제안이 표시됩니다.",
"editor.suggest.showColors": "사용하도록 설정되면 IntelliSense에 '색' 제안이 표시됩니다.",
"editor.suggest.showConstants": "사용하도록 설정되면 IntelliSense에 '상수' 제안이 표시됩니다.",
@@ -391,12 +532,23 @@
"editor.suggest.showVariables": "사용하도록 설정되면 IntelliSense에 '변수' 제안이 표시됩니다.",
"editorViewAccessibleLabel": "편집기 콘텐츠",
"emptySelectionClipboard": "선택 영역 없이 현재 줄 복사 여부를 제어합니다.",
+ "enabled": "편집기에서 코드 동작 전구를 사용하도록 설정합니다.",
+ "experimentalGpuAcceleration": "실험적 GPU 가속을 사용하여 편집기를 렌더링할지 여부를 제어합니다.",
+ "experimentalGpuAcceleration.off": "일반 DOM 기반 렌더링을 사용합니다.",
+ "experimentalGpuAcceleration.on": "GPU 가속을 사용합니다.",
+ "experimentalWhitespaceRendering": "공백이 새로운 실험적 메서드로 렌더링되는지 여부를 제어합니다.",
+ "experimentalWhitespaceRendering.font": "글꼴 문자와 함께 새 렌더링 방법을 사용합니다.",
+ "experimentalWhitespaceRendering.off": "안정적인 렌더링 방법을 사용합니다.",
+ "experimentalWhitespaceRendering.svg": "svgs와 함께 새 렌더링 메서드를 사용합니다.",
"fastScrollSensitivity": "'Alt' 키를 누를 때 스크롤 속도 승수입니다.",
"find.addExtraSpaceOnTop": "위젯 찾기에서 편집기 맨 위에 줄을 추가해야 하는지 여부를 제어합니다. true인 경우 위젯 찾기가 표시되면 첫 번째 줄 위로 스크롤할 수 있습니다.",
"find.autoFindInSelection": "선택 영역에서 찾기를 자동으로 설정하는 조건을 제어합니다.",
"find.cursorMoveOnType": "입력하는 동안 일치 항목을 찾기 위한 커서 이동 여부를 제어합니다.",
+ "find.findOnType": "입력하는 동안 찾기 위젯이 검색할지 여부를 제어합니다.",
"find.globalFindClipboard": "macOS에서 Find Widget이 공유 클립보드 찾기를 읽을지 수정할지 제어합니다.",
+ "find.history": "위젯 찾기 기록을 저장하는 방법을 제어합니다.",
"find.loop": "더 이상 일치하는 항목이 없을 때 검색을 처음이나 끝에서 자동으로 다시 시작할지 여부를 제어합니다.",
+ "find.replaceHistory": "바꾸기 위젯 기록을 저장하는 방법을 제어합니다.",
"find.seedSearchStringFromSelection": "편집기 선택에서 Find Widget의 검색 문자열을 시딩할지 여부를 제어합니다.",
"folding": "편집기에 코드 접기가 사용하도록 설정되는지 여부를 제어합니다.",
"foldingHighlight": "편집기에서 접힌 범위를 강조 표시할지 여부를 제어합니다.",
@@ -410,6 +562,9 @@
"fontLigatures": "글꼴 합자('calt' 및 'liga' 글꼴 기능)를 사용하거나 사용하지 않도록 설정합니다. 'font-feature-settings' CSS 속성의 세분화된 제어를 위해 문자열로 변경합니다.",
"fontLigaturesGeneral": "글꼴 합자 또는 글꼴 기능을 구성합니다. CSS 'font-feature-settings' 속성의 값에 대해 합자 또는 문자열을 사용하거나 사용하지 않도록 설정하기 위한 부울일 수 있습니다.",
"fontSize": "글꼴 크기(픽셀)를 제어합니다.",
+ "fontVariationSettings": "명시적 'font-variation-settings' CSS 속성입니다. font-weight만 font-variation-settings로 변환해야 하는 경우 부울을 대신 전달할 수 있습니다.",
+ "fontVariations": "font-weight에서 font-variation-settings로 변환을 사용/사용하지 않습니다. 'font-variation-settings' CSS 속성의 세분화된 컨트롤을 위해 이를 문자열로 변경합니다.",
+ "fontVariationsGeneral": "글꼴 변형을 구성합니다. font-weight에서 font-variation-settings로 변환을 사용/사용하지 않도록 설정하는 부울이거나 CSS 'font-variation-settings' 속성 값에 대한 문자열일 수 있습니다.",
"fontWeight": "글꼴 두께를 제어합니다. \"표준\" 및 \"굵게\" 키워드 또는 1~1000 사이의 숫자를 허용합니다.",
"fontWeightErrorMessage": "\"표준\" 및 \"굵게\" 키워드 또는 1~1000 사이의 숫자만 허용됩니다.",
"formatOnPaste": "붙여넣은 콘텐츠의 서식을 편집기에서 자동으로 지정할지 여부를 제어합니다. 포맷터를 사용할 수 있어야 하며 포맷터가 문서에서 범위의 서식을 지정할 수 있어야 합니다.",
@@ -419,13 +574,37 @@
"hover.above": "공백이 있는 경우 선 위에 마우스를 가져가는 것을 표시하는 것을 선호합니다.",
"hover.delay": "호버가 표시되기 전까지의 지연 시간(밀리초)을 제어합니다.",
"hover.enabled": "호버 표시 여부를 제어합니다.",
+ "hover.enabled.off": "마우스로 가리키기가 비활성화되었습니다.",
+ "hover.enabled.on": "마우스로 가리키기를 사용할 수 있습니다.",
+ "hover.enabled.onKeyboardModifier": "'{0}' 또는 'Alt'('#editor.multiCursorModifier#'의 반대 수정자)를 누르고 있을 때 가리키기가 표시됩니다.",
+ "hover.hidingDelay": "호버가 숨겨지기 전까지의 지연 시간(밀리초)을 제어합니다. '#editor.hover.sticky#'를 사용하도록 설정해야 합니다.",
"hover.sticky": "마우스를 해당 항목 위로 이동할 때 호버를 계속 표시할지 여부를 제어합니다.",
- "inlayHints.enable": "편집기에서 인레이 힌트를 사용하도록 설정합니다.",
+ "inertialScroll": "스크롤 관성 만들기 - Linux의 터치 패드에서 주로 유용합니다.",
+ "inlayHints.enable": "편집기에서 인레이 힌트를 활성화합니다.",
"inlayHints.fontFamily": "편집기에서 인레이 힌트의 글꼴 패밀리를 제어합니다. 비워 두면 {0}이(가) 사용됩니다.",
"inlayHints.fontSize": "편집기에서 인레이 힌트의 글꼴 크기를 제어합니다. 기본적으로 {0}은(는) 구성된 값이 {1}보다 작거나 편집기 글꼴 크기보다 큰 경우에 사용됩니다.",
- "inlayHints.padding": "편집기에서 인레이 힌트 주위의 패딩을 사용하도록 설정합니다.",
+ "inlayHints.maximumLength": "편집기에서 잘리기 전 한 줄에 대한 인레이 힌트의 최대 전체 길이입니다. 자르지 않으려면 `0`으로 설정하세요.",
+ "inlayHints.padding": "편집기에서 인레이 힌트 주위의 패딩을 활성화합니다.",
"inline": "빠른 제안이 유령 텍스트로 표시됨",
+ "inlineCompletionsAccessibilityVerbose": "인라인 완성이 표시될 때 화면 읽기 프로그램 사용자에게 접근성 힌트를 제공해야 하는지 여부를 제어합니다.",
+ "inlineSuggest.edits.allowCodeShifting": "제안을 표시하면 코드가 인라인으로 제안 공간을 만들 수 있는지 여부를 제어합니다.",
+ "inlineSuggest.edits.renderSideBySide": "더 큰 제안을 나란히 표시할 수 있는지 여부를 제어합니다.",
+ "inlineSuggest.edits.showCollapsed": "제안으로 점프할 때까지 제안을 축소된 것으로 표시할지 여부를 제어합니다.",
+ "inlineSuggest.edits.showLongDistanceHint": "장거리 인라인 제안을 표시할지 여부를 제어합니다.",
+ "inlineSuggest.emptyResponseInformation": "인라인 제안 공급자에서 요청 정보를 보낼지 여부를 제어합니다.",
"inlineSuggest.enabled": "편집기에서 인라인 제안을 자동으로 표시할지 여부를 제어합니다.",
+ "inlineSuggest.fontFamily": "인라인 제안의 글꼴 패밀리를 제어합니다.",
+ "inlineSuggest.minShowDelay": "입력 후 인라인 제안이 표시되기까지의 최소 지연 시간(밀리초)을 제어합니다.",
+ "inlineSuggest.showOnSuggestConflict": "제안 충돌이 있을 때 인라인 제안을 표시할지 여부를 제어합니다.",
+ "inlineSuggest.showToolbar": "인라인 추천 도구 모음을 표시할 시기를 제어합니다.",
+ "inlineSuggest.showToolbar.always": "인라인 추천을 표시힐 때마다 인라인 추천 도구 모음을 표시합니다.",
+ "inlineSuggest.showToolbar.never": "인라인 추천 도구 모음을 표시하지 않습니다.",
+ "inlineSuggest.showToolbar.onHover": "인라인 추천을 마우스로 가리키면 인라인 추천 도구 모음을 표시합니다.",
+ "inlineSuggest.suppressInSnippetMode": "코드 조각 모드에서 인라인 제안을 숨길지 여부를 제어합니다.",
+ "inlineSuggest.suppressInlineSuggestions": "지정한 확장 ID에 대한 인라인 완성을 억제합니다. 쉼표로 구분됩니다.",
+ "inlineSuggest.suppressSuggestions": "인라인 제안이 제안 위젯과 상호 작용하는 방법을 제어합니다. 사용하도록 설정하면 인라인 제안을 사용할 수 있을 때 제안 위젯이 자동으로 표시되지 않습니다.",
+ "inlineSuggest.syntaxHighlightingEnabled": "편집기에서 인라인 제안에 대한 구문 강조 표시를 표시할지 여부를 제어합니다.",
+ "inlineSuggest.triggerCommandOnProviderChange": "인라인 제안 공급자가 변경될 때 명령을 트리거할지 여부를 제어합니다.",
"letterSpacing": "문자 간격(픽셀)을 제어합니다.",
"lineHeight": "선 높이를 제어합니다. \r\n - 0을 사용하여 글꼴 크기에서 줄 높이를 자동으로 계산합니다.\r\n - 0에서 8 사이의 값은 글꼴 크기의 승수로 사용됩니다.\r\n - 8보다 크거나 같은 값이 유효 값으로 사용됩니다.",
"lineNumbers": "줄 번호의 표시 여부를 제어합니다.",
@@ -437,18 +616,29 @@
"links": "편집기에서 링크를 감지하고 클릭할 수 있게 만들지 여부를 제어합니다.",
"matchBrackets": "일치하는 대괄호를 강조 표시합니다.",
"minimap.autohide": "미니맵을 자동으로 숨길지 여부를 제어합니다.",
+ "minimap.autohide.mouseover": "마우스가 미니맵 위에 있지 않으면 미니맵이 숨겨지고, 마우스가 미니맵 위에 있으면 미니맵이 표시됩니다.",
+ "minimap.autohide.none": "미니맵은 항상 표시됩니다.",
+ "minimap.autohide.scroll": "미니맵은 편집기가 스크롤될 때만 표시됩니다.",
"minimap.enabled": "미니맵 표시 여부를 제어합니다.",
+ "minimap.markSectionHeaderRegex": "주석에서 섹션 헤더를 찾는 데 사용되는 정규식을 정의합니다. regex에는 섹션 헤더를 캡슐화하는 명명된 일치 그룹 'label'('(?.+)'으로 작성됨)이 포함되어야 합니다. 그렇지 않으면 작동하지 않습니다. 필요에 따라 'separator'라는 다른 일치 그룹을 포함할 수 있습니다. 패턴에서 \\n 사용하여 여러 줄 머리글을 일치시킬 수 있습니다.",
"minimap.maxColumn": "최대 특정 수의 열을 렌더링하도록 미니맵의 너비를 제한합니다.",
"minimap.renderCharacters": "줄의 실제 문자(색 블록 아님)를 렌더링합니다.",
"minimap.scale": "미니맵에 그려진 콘텐츠의 배율: 1, 2 또는 3.",
+ "minimap.sectionHeaderFontSize": "미니맵에서 섹션 머리글의 글꼴 크기를 제어합니다.",
+ "minimap.sectionHeaderLetterSpacing": "구역 머리글 문자 사이의 간격(픽셀)을 제어합니다. 이렇게 하면 작은 글꼴 크기의 머리글 가독성을 높이는 데 도움이 됩니다.",
+ "minimap.showMarkSectionHeaders": "MARK: 주석이 미니맵에 섹션 머리글로 표시되는지 여부를 제어합니다.",
+ "minimap.showRegionSectionHeaders": "명명된 영역을 미니맵에 섹션 머리글로 표시할지 여부를 제어합니다.",
"minimap.showSlider": "미니맵 슬라이더가 표시되는 시기를 제어합니다.",
"minimap.side": "미니맵을 렌더링할 측면을 제어합니다.",
"minimap.size": "미니맵의 크기를 제어합니다.",
"minimap.size.fill": "편집기의 높이를 맞추기 위해 필요에 따라 미니맵이 확장되거나 축소됩니다(스크롤 없음).",
"minimap.size.fit": "미니맵을 편집기보다 작게 유지할 수 있도록 필요에 따라 미니맵이 축소됩니다(스크롤 없음).",
"minimap.size.proportional": "미니맵의 크기는 편집기 내용과 동일하며 스크롤할 수 있습니다.",
+ "mouseMiddleClickAction": "편집기에서 마우스 가운데 버튼을 클릭할 때 동작을 제어합니다.",
"mouseWheelScrollSensitivity": "마우스 휠 스크롤 이벤트의 `deltaX` 및 `deltaY`에서 사용할 승수입니다.",
"mouseWheelZoom": "마우스 휠을 사용할 때 'Ctrl' 키를 누르고 있으면 편집기의 글꼴을 확대/축소합니다.",
+ "mouseWheelZoom.mac": "마우스 휠을 사용할 때 'Cmd` 키를 누르고 있으면 편집기의 글꼴을 확대/축소합니다.",
+ "multiCursorLimit": "한 번에 활성 편집기에 있을 수 있는 최대 커서 수를 제어합니다.",
"multiCursorMergeOverlapping": "여러 커서가 겹치는 경우 커서를 병합합니다.",
"multiCursorModifier": "마우스로 여러 커서를 추가할 때 사용할 수정자입니다. [정의로 이동] 및 [링크 열기] 마우스 제스처가 [멀티커서 수정자와](https://code.visualstudio.com/docs/editor/codebasics#_multicursor-modifier) 충돌하지 않도록 조정됩니다.",
"multiCursorModifier.alt": "Windows와 Linux의 'Alt'를 macOS의 'Option'으로 매핑합니다.",
@@ -456,29 +646,40 @@
"multiCursorPaste": "붙여넣은 텍스트의 줄 수가 커서 수와 일치하는 경우 붙여넣기를 제어합니다.",
"multiCursorPaste.full": "각 커서는 전체 텍스트를 붙여넣습니다.",
"multiCursorPaste.spread": "각 커서는 텍스트 한 줄을 붙여넣습니다.",
- "occurrencesHighlight": "편집기에서 의미 체계 기호 항목을 강조 표시할지 여부를 제어합니다.",
+ "occurrencesHighlight": "열린 파일 전체에서 발생 수를 강조 표시할지 여부를 제어합니다.",
+ "occurrencesHighlight.multiFile": "실험적: 모든 유효한 열린 파일에서 발생 항목을 강조 표시합니다.",
+ "occurrencesHighlight.off": "발생 항목을 강조 표시하지 않습니다.",
+ "occurrencesHighlight.singleFile": "현재 파일의 발생 항목만 강조 표시합니다.",
+ "occurrencesHighlightDelay": "발생이 강조 표시된 후의 지연 시간(밀리초)을 제어합니다.",
"off": "빠른 제안이 사용 중지되었습니다.",
"on": "제안 위젯 내부에 빠른 제안이 표시됩니다.",
+ "overtypeCursorStyle": "오버타입 입력 모드에서 커서 스타일을 제어합니다.",
+ "overtypeOnPaste": "붙여넣기를 오버타입해야 하는지 여부를 제어합니다.",
"overviewRulerBorder": "개요 눈금자 주위에 테두리를 그릴지 여부를 제어합니다.",
"padding.bottom": "편집기의 아래쪽 가장자리와 마지막 줄 사이의 공백을 제어합니다.",
"padding.top": "편집기의 위쪽 가장자리와 첫 번째 줄 사이의 공백을 제어합니다.",
"parameterHints.cycle": "매개변수 힌트 메뉴의 주기 혹은 목록의 끝에 도달하였을때 종료할 것인지 여부를 결정합니다.",
"parameterHints.enabled": "입력과 동시에 매개변수 문서와 유형 정보를 표시하는 팝업을 사용하도록 설정합니다.",
+ "pasteAs.enabled": "콘텐츠를 다른 방법으로 붙여넣을 수 있는지 여부를 제어합니다.",
+ "pasteAs.showPasteSelector": "콘텐츠를 편집기에 붙여넣을 때 위젯을 표시할지 여부를 제어합니다. 이 위젯을 사용하여 파일을 붙여넣는 방법을 제어할 수 있습니다.",
+ "pasteAs.showPasteSelector.afterPaste": "콘텐츠를 편집기에 붙여넣은 후 붙여넣기 선택기 위젯을 표시합니다.",
+ "pasteAs.showPasteSelector.never": "붙여넣기 선택기 위젯을 표시하지 않습니다. 대신 기본 붙여넣기 동작이 항상 사용됩니다.",
"peekWidgetDefaultFocus": "미리 보기 위젯에서 인라인 편집기에 포커스를 둘지 또는 트리에 포커스를 둘지를 제어합니다.",
"peekWidgetDefaultFocus.editor": "미리 보기를 열 때 편집기에 포커스",
"peekWidgetDefaultFocus.tree": "Peek를 여는 동안 트리에 포커스",
- "quickSuggestions": "입력하는 동안 제안을 자동으로 표시할지 여부를 제어합니다. 이것은 주석, 문자열 및 기타 코드를 입력하기 위해 제어할 수 있습니다. 빠른 제안은 고스트 텍스트 또는 제안 위젯으로 표시하도록 구성할 수 있습니다. 또한 제안이 특수 문자에 의해 실행되는지 여부를 제어하는 '{0}'-설정에 유의하세요.",
+ "quickSuggestions": "입력하는 동안 제안을 자동으로 표시할지 여부를 제어합니다. 이것은 주석, 문자열 및 기타 코드를 입력하기 위해 제어할 수 있습니다. 빠른 제안은 고스트 텍스트 또는 제안 위젯으로 표시하도록 구성할 수 있습니다. 또한 제안이 특수 문자에 의해 실행되는지 여부를 제어하는 {0}-설정에 유의하세요.",
"quickSuggestions.comments": "주석 내에서 빠른 제안을 사용합니다.",
"quickSuggestions.other": "문자열 및 주석 외부에서 빠른 제안을 사용합니다.",
"quickSuggestions.strings": "문자열 내에서 빠른 제안을 사용합니다.",
"quickSuggestionsDelay": "빠른 제안을 표시하기 전까지의 지연 시간(밀리초)을 제어합니다.",
"renameOnType": "편집기가 유형에 따라 자동으로 이름을 바꿀지 여부를 제어합니다.",
- "renameOnTypeDeprecate": "사용되지 않습니다. 대신 `editor.linkedEditing`을 사용하세요.",
+ "renameOnTypeDeprecate": "사용되지 않습니다. 대신 `#editor.linkedEditing#`을 사용하세요.",
"renderControlCharacters": "편집기에서 제어 문자를 렌더링할지를 제어합니다.",
"renderFinalNewline": "파일이 줄 바꿈으로 끝나면 마지막 줄 번호를 렌더링합니다.",
"renderLineHighlight": "편집기가 현재 줄 강조 표시를 렌더링하는 방식을 제어합니다.",
"renderLineHighlight.all": "제본용 여백과 현재 줄을 모두 강조 표시합니다.",
"renderLineHighlightOnlyWhenFocus": "편집기에 포커스가 있는 경우에만 편집기에서 현재 줄 강조 표시를 렌더링해야 하는지 제어합니다.",
+ "renderRichScreenReaderContent": "'#editor.editContext#' 설정을 사용할 때 서식 있는 화면 읽기 프로그램 콘텐츠를 렌더링할지 여부입니다.",
"renderWhitespace": "편집기에서 공백 문자를 렌더링할 방법을 제어합니다.",
"renderWhitespace.boundary": "단어 사이의 공백 하나를 제외한 공백 문자를 렌더링합니다.",
"renderWhitespace.selection": "선택한 텍스트에서만 공백 문자를 렌더링합니다.",
@@ -487,14 +688,17 @@
"rulers": "특정 수의 고정 폭 문자 뒤에 세로 눈금자를 렌더링합니다. 여러 눈금자의 경우 여러 값을 사용합니다. 배열이 비어 있는 경우 눈금자가 그려지지 않습니다.",
"rulers.color": "이 편집기 눈금자의 색입니다.",
"rulers.size": "이 편집기 눈금자에서 렌더링할 고정 폭 문자 수입니다.",
+ "screenReaderAnnounceInlineSuggestion": "화면 읽기 프로그램에서 인라인 제안을 발표하는지 여부를 제어합니다.",
"scrollBeyondLastColumn": "편집기에서 가로로 스크롤되는 범위를 벗어나는 추가 문자의 수를 제어합니다.",
"scrollBeyondLastLine": "편집기에서 마지막 줄 이후로 스크롤할지 여부를 제어합니다.",
+ "scrollOnMiddleClick": "가운데 단추를 누를 때 편집기가 스크롤할지 여부를 제어합니다.",
"scrollPredominantAxis": "세로와 가로로 동시에 스크롤할 때에만 주축을 따라서 스크롤합니다. 트랙패드에서 세로로 스크롤할 때 가로 드리프트를 방지합니다.",
"scrollbar.horizontal": "가로 스크롤 막대의 표시 유형을 제어합니다.",
"scrollbar.horizontal.auto": "가로 스크롤 막대는 필요한 경우에만 표시됩니다.",
"scrollbar.horizontal.fit": "가로 스크롤 막대를 항상 숨깁니다.",
"scrollbar.horizontal.visible": "가로 스크롤 막대가 항상 표시됩니다.",
"scrollbar.horizontalScrollbarSize": "가로 스크롤 막대의 높이입니다.",
+ "scrollbar.ignoreHorizontalScrollbarInContentHeight": "설정하면 가로 스크롤 막대가 편집기 콘텐츠의 크기를 늘리지 않습니다.",
"scrollbar.scrollByPage": "클릭이 페이지별로 스크롤되는지 또는 클릭 위치로 이동할지 여부를 제어합니다.",
"scrollbar.vertical": "세로 스크롤 막대의 표시 유형을 제어합니다.",
"scrollbar.vertical.auto": "세로 스크롤 막대는 필요한 경우에만 표시됩니다.",
@@ -502,8 +706,11 @@
"scrollbar.vertical.visible": "세로 스크롤 막대가 항상 표시됩니다.",
"scrollbar.verticalScrollbarSize": "세로 스크롤 막대의 너비입니다.",
"selectLeadingAndTrailingWhitespace": "선행 및 후행 공백을 항상 선택해야 하는지 여부입니다.",
+ "selectSubwords": "하위 단어(예: 'fooBar'의 'foo' 또는 'foo_bar')를 선택해야 하는지 여부입니다.",
"selectionClipboard": "Linux 주 클립보드의 지원 여부를 제어합니다.",
"selectionHighlight": "편집기가 선택 항목과 유사한 일치 항목을 강조 표시해야하는지 여부를 제어합니다.",
+ "selectionHighlightMaxLength": "유사한 일치 항목이 강조 표시가 사라지기 전에 선택 영역에 포함될 수 있는 문자의 개수를 제어합니다. 무제한의 경우 0으로 설정합니다.",
+ "selectionHighlightMultiline": "편집기에서 여러 줄에 걸쳐 일치된 선택 항목을 강조 표시할지 여부를 제어합니다.",
"showDeprecated": "취소선 사용되지 않는 변수를 제어합니다.",
"showFoldingControls": "여백의 접기 컨트롤이 표시되는 시기를 제어합니다.",
"showFoldingControls.always": "접기 컨트롤을 항상 표시합니다.",
@@ -519,11 +726,16 @@
"stickyTabStops": "들여쓰기에 공백을 사용할 때 탭 문자의 선택 동작을 에뮬레이트합니다. 선택 영역이 탭 정지에 고정됩니다.",
"suggest.filterGraceful": "제안 필터링 및 정렬에서 작은 오타를 설명하는지 여부를 제어합니다.",
"suggest.insertMode": "완료를 수락할 때 단어를 덮어쓸지 여부를 제어합니다. 이것은 이 기능을 선택하는 확장에 따라 다릅니다.",
+ "suggest.insertMode.always": "IntelliSense를 자동으로 트리거할 때 항상 제안을 선택합니다.",
"suggest.insertMode.insert": "커서의 텍스트 오른쪽을 덮어 쓰지않고 제안을 삽입합니다.",
+ "suggest.insertMode.never": "IntelliSense를 자동으로 트리거할 때 제안을 선택하지 마세요.",
"suggest.insertMode.replace": "제안을 삽입하고 커서의 오른쪽 텍스트를 덮어씁니다.",
+ "suggest.insertMode.whenQuickSuggestion": "입력할 때 IntelliSense를 트리거할 때만 제안을 선택합니다.",
+ "suggest.insertMode.whenTriggerCharacter": "트리거 문자에서 IntelliSense를 트리거할 때만 제안을 선택합니다.",
"suggest.localityBonus": "정렬할 때 커서 근처에 표시되는 단어를 우선할지를 제어합니다.",
"suggest.maxVisibleSuggestions.dep": "이 설정은 더 이상 사용되지 않습니다. 이제 제안 위젯의 크기를 조정할 수 있습니다.",
"suggest.preview": "편집기에서 제안 결과를 미리볼지 여부를 제어합니다.",
+ "suggest.selectionMode": "위젯이 표시될 때 제안을 선택할지 여부를 제어합니다. 이는 자동으로 트리거된 제안({0} 및 {1})에만 적용되며, 제안이 명시적으로 호출될 때 항상 선택됩니다(예: 'Ctrl+Space'를 통해).",
"suggest.shareSuggestSelections": "저장된 제안 사항 선택 항목을 여러 작업 영역 및 창에서 공유할 것인지 여부를 제어합니다(`#editor.suggestSelection#` 필요).",
"suggest.showIcons": "제안의 아이콘을 표시할지 여부를 제어합니다.",
"suggest.showInlineDetails": "제안 세부 정보가 레이블과 함께 인라인에 표시되는지 아니면 세부 정보 위젯에만 표시되는지를 제어합니다.",
@@ -540,19 +752,25 @@
"tabCompletion.off": "탭 완성을 사용하지 않도록 설정합니다.",
"tabCompletion.on": "탭 완료는 탭을 누를 때 가장 일치하는 제안을 삽입합니다.",
"tabCompletion.onlySnippets": "접두사가 일치하는 경우 코드 조각을 탭 완료합니다. 'quickSuggestions'를 사용하지 않을 때 가장 잘 작동합니다.",
+ "tabFocusMode": "편집기에서 탭을 받을지 또는 탐색을 위해 워크벤치로 미룰지를 제어합니다.",
+ "trimWhitespaceOnDelete": "줄 바꿈을 삭제할 때 편집기에서 다음 줄의 들여쓰기 공백도 삭제할지 여부를 제어합니다.",
"unfoldOnClickAfterEndOfLine": "접힌 줄이 줄을 펼친 후 빈 콘텐츠를 클릭할지 여부를 제어합니다.",
"unicodeHighlight.allowedCharacters": "강조 표시되지 않는 허용된 문자를 정의합니다.",
"unicodeHighlight.allowedLocales": "허용된 로캘에서 공통적인 유니코드 문자는 강조 표시되지 않습니다.",
"unicodeHighlight.ambiguousCharacters": "현재 사용자 로캘에서 공통되는 문자를 제외한 기본 ASCII 문자와 혼동할 수 있는 문자를 강조 표시할지 여부를 제어합니다.",
- "unicodeHighlight.includeComments": "주석의 문자도 유니코드 강조 표시를 받아야 하는지 여부를 제어합니다.",
- "unicodeHighlight.includeStrings": "문자열의 문자도 유니코드 강조 표시를 받아야 하는지 여부를 제어합니다.",
+ "unicodeHighlight.includeComments": "주석의 문자에도 유니코드 강조 표시를 적용해야 하는지 여부를 제어합니다.",
+ "unicodeHighlight.includeStrings": "문자열의 문자에도 유니코드 강조 표시를 적용해야 하는지 여부를 제어합니다.",
"unicodeHighlight.invisibleCharacters": "공백만 예약하거나 너비가 전혀 없는 문자를 강조 표시할지 여부를 제어합니다.",
"unicodeHighlight.nonBasicASCII": "기본이 아닌 모든 ASCII 문자를 강조 표시할지 여부를 제어합니다. U+0020과 U+007E 사이의 문자, 탭, 줄 바꿈 및 캐리지 리턴만 기본 ASCII로 간주됩니다.",
"unusualLineTerminators": "문제를 일으킬 수 있는 비정상적인 줄 종결자를 제거합니다.",
"unusualLineTerminators.auto": "비정상적인 줄 종결자가 자동으로 제거됩니다.",
"unusualLineTerminators.off": "비정상적인 줄 종결자가 무시됩니다.",
"unusualLineTerminators.prompt": "제거할 비정상적인 줄 종결자 프롬프트입니다.",
- "useTabStops": "탭 정지 뒤에 공백을 삽입 및 삭제합니다.",
+ "useTabStops": "탭 정지에 맞춰 공백과 탭이 삽입되고 삭제됩니다.",
+ "wordBreak": "중국어/일본어/한국어(CJK) 텍스트에 사용되는 단어 분리 규칙을 제어합니다.",
+ "wordBreak.keepAll": "단어 분리는 중국어/일본어/한국어(CJK) 텍스트에 사용할 수 없습니다. CJK가 아닌 텍스트 동작은 일반 텍스트 동작과 같습니다.",
+ "wordBreak.normal": "기본 줄 바꿈 규칙을 사용합니다.",
+ "wordSegmenterLocales": "단어 관련 탐색 또는 작업을 수행할 때 단어 구분에 사용할 로캘입니다. 인식할 단어의 BCP 47 언어 태그를 지정합니다(예: ja, zh-CN, zh-Hant-TW 등).",
"wordSeparators": "단어 관련 탐색 또는 작업을 수행할 때 단어 구분 기호로 사용할 문자입니다.",
"wordWrap": "줄 바꿈 여부를 제어합니다.",
"wordWrap.bounded": "뷰포트의 최소값 및 `#editor.wordWrapColumn#`에서 줄이 바뀝니다.",
@@ -560,19 +778,28 @@
"wordWrap.on": "뷰포트 너비에서 줄이 바뀝니다.",
"wordWrap.wordWrapColumn": "`#editor.wordWrapColumn#`에서 줄이 바뀝니다.",
"wordWrapColumn": "`#editor.wordWrap#`이 `wordWrapColumn` 또는 'bounded'인 경우 편집기의 열 줄 바꿈을 제어합니다.",
+ "wrapOnEscapedLineFeeds": "'#editor.wordWrap#'을 사용할 때 리터럴 '\\n'이 wordWrap을 트리거할지 여부를 제어합니다.\r\n\r\n예:\r\n```c\r\nchar* str=\"hello\\nworld\"\r\n```\r\n은(는) 다음과 같이 표시됩니다.\r\n```c\r\nchar* str=\"hello\\n\r\n world\"\r\n```",
"wrappingIndent": "줄 바꿈 행의 들여쓰기를 제어합니다.",
"wrappingIndent.deepIndent": "줄 바꿈 행이 부모 쪽으로 +2만큼 들여쓰기됩니다.",
"wrappingIndent.indent": "줄 바꿈 행이 부모 쪽으로 +1만큼 들여쓰기됩니다.",
"wrappingIndent.none": "들여쓰기가 없습니다. 줄 바꿈 행이 열 1에서 시작됩니다.",
"wrappingIndent.same": "줄 바꿈 행의 들여쓰기가 부모와 동일합니다.",
- "wrappingStrategy": "래핑 점을 계산하는 알고리즘을 제어합니다.",
+ "wrappingStrategy": "래핑 지점을 계산하는 알고리즘을 제어합니다. 접근성 모드에서는 최상의 환경을 위해 고급 기능이 사용됩니다.",
"wrappingStrategy.advanced": "래핑 점 계산을 브라우저에 위임합니다. 이 알고리즘은 매우 느려서 대용량 파일의 경우 중단될 수 있지만 모든 경우에 적절히 작동합니다.",
"wrappingStrategy.simple": "모든 문자가 동일한 너비라고 가정합니다. 이 알고리즘은 고정 폭 글꼴과 문자 모양의 너비가 같은 특정 스크립트(예: 라틴 문자)에 적절히 작동하는 빠른 알고리즘입니다."
},
"vs/editor/common/core/editorColorRegistry": {
"caret": "편집기 커서 색입니다.",
+ "deprecatedEditorActiveIndentGuide": "'editorIndentGuide.activeBackground'는 더 이상 사용되지 않습니다. 대신 'editorIndentGuide.activeBackground1'을 사용하세요.",
"deprecatedEditorActiveLineNumber": "ID는 사용되지 않습니다. 대신 'editorLineNumber.activeForeground'를 사용하세요.",
+ "deprecatedEditorIndentGuides": "'editorIndentGuide.background'는 더 이상 사용되지 않습니다. 대신 'editorIndentGuide.background1'을 사용하세요.",
"editorActiveIndentGuide": "활성 편집기 들여쓰기 안내선 색입니다.",
+ "editorActiveIndentGuide1": "활성 편집기 들여쓰기 안내선 색(1).",
+ "editorActiveIndentGuide2": "활성 편집기 들여쓰기 안내선 색(2).",
+ "editorActiveIndentGuide3": "활성 편집기 들여쓰기 안내선 색(3).",
+ "editorActiveIndentGuide4": "활성 편집기 들여쓰기 안내선 색(4).",
+ "editorActiveIndentGuide5": "활성 편집기 들여쓰기 안내선 색(5).",
+ "editorActiveIndentGuide6": "활성 편집기 들여쓰기 안내선 색(6).",
"editorActiveLineNumber": "편집기 활성 영역 줄번호 색상",
"editorBracketHighlightForeground1": "대괄호의 전경색(1)입니다. 대괄호 쌍 색 지정을 사용하도록 설정해야 합니다.",
"editorBracketHighlightForeground2": "대괄호의 전경색(2)입니다. 대괄호 쌍 색 지정을 사용하도록 설정해야 합니다.",
@@ -597,18 +824,30 @@
"editorBracketPairGuide.background6": "비활성 대괄호 쌍 안내선의 배경색입니다(6). 대괄호 쌍 안내선을 사용하도록 설정해야 합니다.",
"editorCodeLensForeground": "편집기 코드 렌즈의 전경색입니다.",
"editorCursorBackground": "편집기 커서의 배경색입니다. 블록 커서와 겹치는 글자의 색상을 사용자 정의할 수 있습니다.",
+ "editorDimmedLineNumber": "editor.renderFinalNewline이 흐리게 설정된 경우 최종 편집기 줄의 색입니다.",
"editorGhostTextBackground": "편집기에서 고스트 텍스트의 배경색입니다.",
"editorGhostTextBorder": "편집기에서 고스트 텍스트의 테두리 색입니다.",
"editorGhostTextForeground": "편집기에서 고스트 텍스트의 전경색입니다.",
"editorGutter": "편집기 거터의 배경색입니다. 거터에는 글리프 여백과 행 수가 있습니다.",
"editorIndentGuides": "편집기 들여쓰기 안내선 색입니다.",
+ "editorIndentGuides1": "편집기 들여쓰기 안내선 색(1).",
+ "editorIndentGuides2": "편집기 들여쓰기 안내선 색(2).",
+ "editorIndentGuides3": "편집기 들여쓰기 안내선 색(3).",
+ "editorIndentGuides4": "편집기 들여쓰기 안내선 색(4).",
+ "editorIndentGuides5": "편집기 들여쓰기 안내선 색(5).",
+ "editorIndentGuides6": "편집기 들여쓰기 안내선 색(6).",
"editorLineNumbers": "편집기 줄 번호 색입니다.",
- "editorOverviewRulerBackground": "편집기 개요 눈금자의 배경색입니다. 미니맵이 사용하도록 설정되어 편집기의 오른쪽에 배치된 경우에만 사용됩니다.",
+ "editorMultiCursorPrimaryBackground": "여러 커서가 있는 경우 기본 편집기 커서의 배경색입니다. 블록 커서와 겹치는 문자의 색을 사용자 지정할 수 있습니다.",
+ "editorMultiCursorPrimaryForeground": "여러 커서가 있는 경우 기본 편집기 커서의 색입니다.",
+ "editorMultiCursorSecondaryBackground": "여러 커서가 있는 경우 보조 편집기 커서의 배경색입니다. 블록 커서와 겹치는 문자의 색을 사용자 지정할 수 있습니다.",
+ "editorMultiCursorSecondaryForeground": "여러 커서가 있는 경우 보조 편집기 커서의 색입니다.",
+ "editorOverviewRulerBackground": "편집기 개요 눈금자의 배경색입니다.",
"editorOverviewRulerBorder": "개요 눈금 경계의 색상입니다.",
"editorRuler": "편집기 눈금의 색상입니다.",
"editorUnicodeHighlight.background": "유니코드 문자를 강조 표시하는 데 사용되는 배경색입니다.",
"editorUnicodeHighlight.border": "유니코드 문자를 강조 표시하는 데 사용되는 테두리 색입니다.",
"editorWhitespaces": "편집기의 공백 문자 색입니다.",
+ "inactiveLineHighlight": "편집기에 포커스가 없을 때 커서 위치의 선 강조 표시 배경색입니다.",
"lineHighlight": "커서 위치의 줄 강조 표시에 대한 배경색입니다.",
"lineHighlightBorderBox": "커서 위치의 줄 테두리에 대한 배경색입니다.",
"overviewRuleError": "오류의 개요 눈금자 마커 색입니다.",
@@ -623,6 +862,15 @@
"unnecessaryCodeOpacity": "편집기의 불필요한(사용하지 않는) 소스 코드 불투명도입니다. 예를 들어 \"#000000c0\"은 75% 불투명도로 코드를 렌더링합니다. 고대비 테마의 경우 페이드 아웃하지 않고 'editorUnnecessaryCode.border' 테마 색을 사용하여 불필요한 코드에 밑줄을 그으세요."
},
"vs/editor/common/editorContextKeys": {
+ "accessibleDiffViewerVisible": "액세스 가능한 Diff 뷰어 표시 여부",
+ "comparingMovedCode": "이동된 코드 블록이 비교를 위해 선택되었는지 여부",
+ "diffEditorHasChanges": "diff 편집기에 변경 사항이 있는지 여부",
+ "diffEditorInlineMode": "인라인 모드가 활성 상태인지 여부",
+ "diffEditorModifiedUri": "수정된 문서의 URI",
+ "diffEditorModifiedWritable": "diff 편집기에서 수정된 내용을 쓸 수 있는지 여부",
+ "diffEditorOriginalUri": "원본 문서의 URI입니다.",
+ "diffEditorOriginalWritable": "diff 편집기에서 수정된 내용을 쓸 수 있는지 여부",
+ "diffEditorRenderSideBySideInlineBreakpointReached": "diff 편집기에서 나란히 인라인 중단점에 연결할지 여부",
"editorColumnSelection": "'editor.columnSelection'을 사용하도록 설정되어 있는지 여부",
"editorFocus": "편집기 또는 편집기 위젯에 포커스가 있는지 여부(예: 포커스가 찾기 위젯에 있음)",
"editorHasCodeActionsProvider": "편집기에 코드 작업 공급자가 있는지 여부",
@@ -645,6 +893,7 @@
"editorHasSelection": "편집기에 선택된 텍스트가 있는지 여부",
"editorHasSignatureHelpProvider": "편집기에 시그니처 도움말 공급자가 있는지 여부",
"editorHasTypeDefinitionProvider": "편집기에 형식 정의 공급자가 있는지 여부",
+ "editorHoverFocused": "편집기 가리키기에 포커스가 있는지 여부",
"editorHoverVisible": "편집기 호버가 표시되는지 여부",
"editorLangId": "편집기의 언어 식별자",
"editorReadonly": "편집기가 읽기 전용인지 여부",
@@ -652,8 +901,73 @@
"editorTextFocus": "편집기 텍스트에 포커스가 있는지 여부(커서가 깜박임)",
"inCompositeEditor": "편집기가 더 큰 편집기(예: 전자 필기장)에 속해 있는지 여부",
"inDiffEditor": "컨텍스트가 diff 편집기인지 여부",
+ "inMultiDiffEditor": "컨텍스트가 다중 diff 편집기인지 여부",
+ "isEmbeddedDiffEditor": "컨텍스트가 포함된 diff 편집기인지 여부",
+ "multiDiffEditorAllCollapsed": "다중 diff 편집기의 모든 파일이 축소되는지 여부",
+ "standaloneColorPickerFocused": "독립 실행형 색 편집기가 포커스되는지 여부",
+ "standaloneColorPickerVisible": "독립 실행형 색 편집기가 표시되는지 여부",
+ "stickyScrollFocused": "고정 스크롤의 포커스 여부",
+ "stickyScrollVisible": "고정 스크롤의 가시성 여부",
"textInputFocus": "편집기 또는 서식 있는 텍스트 입력에 포커스가 있는지 여부(커서가 깜박임)"
},
+ "vs/editor/common/languages": {
+ "Array": "배열",
+ "Boolean": "부울",
+ "Class": "클래스",
+ "Constant": "상수",
+ "Constructor": "생성자",
+ "Enum": "열거형",
+ "EnumMember": "열거형 멤버",
+ "Event": "이벤트",
+ "Field": "필드",
+ "File": "파일",
+ "Function": "함수",
+ "Interface": "인터페이스",
+ "Key": "키",
+ "Method": "메서드",
+ "Module": "모듈",
+ "Namespace": "네임스페이스",
+ "Null": "Null",
+ "Number": "숫자",
+ "Object": "개체",
+ "Operator": "연산자",
+ "Package": "패키지",
+ "Property": "속성",
+ "String": "문자열",
+ "Struct": "구조체",
+ "TypeParameter": "형식 매개 변수",
+ "Variable": "변수",
+ "suggestWidget.kind.class": "클래스",
+ "suggestWidget.kind.color": "색",
+ "suggestWidget.kind.constant": "상수",
+ "suggestWidget.kind.constructor": "생성자",
+ "suggestWidget.kind.customcolor": "사용자 지정 색",
+ "suggestWidget.kind.enum": "열거형",
+ "suggestWidget.kind.enumMember": "열거형 멤버",
+ "suggestWidget.kind.event": "이벤트",
+ "suggestWidget.kind.field": "필드",
+ "suggestWidget.kind.file": "파일",
+ "suggestWidget.kind.folder": "폴더",
+ "suggestWidget.kind.function": "함수",
+ "suggestWidget.kind.interface": "인터페이스",
+ "suggestWidget.kind.issue": "문제",
+ "suggestWidget.kind.keyword": "키워드",
+ "suggestWidget.kind.method": "메서드",
+ "suggestWidget.kind.module": "모듈",
+ "suggestWidget.kind.operator": "연산자",
+ "suggestWidget.kind.property": "속성",
+ "suggestWidget.kind.reference": "참조",
+ "suggestWidget.kind.snippet": "코드 조각",
+ "suggestWidget.kind.struct": "구조체",
+ "suggestWidget.kind.text": "텍스트",
+ "suggestWidget.kind.tool": "도구",
+ "suggestWidget.kind.typeParameter": "형식 매개 변수",
+ "suggestWidget.kind.unit": "단위",
+ "suggestWidget.kind.user": "사용자",
+ "suggestWidget.kind.value": "값",
+ "suggestWidget.kind.variable": "변수",
+ "symbolAriaLabel": "{0}({1})"
+ },
"vs/editor/common/languages/modesRegistry": {
"plainText.alias": "일반 텍스트"
},
@@ -661,40 +975,58 @@
"edit": "입력하는 중"
},
"vs/editor/common/standaloneStrings": {
- "accessibilityHelpMessage": "접근성 옵션은 Alt+F1을 눌러여 합니다.",
- "auto_off": "편집기는 화면 판독기 사용을 위해 절대로 최적화되지 않도록 구성됩니다. 현재로서는 그렇지 않습니다.",
- "auto_on": "에디터를 화면 판독기와 함께 사용하기에 적합하도록 구성했습니다.",
+ "acceptSuggestAction": "현재 선택한 제안을 수락하려면 제안{0} 수락하세요.",
+ "accessibilityHelpTitle": "접근성 도움말",
+ "auto_off": "화면 읽기 프로그램을 사용하는 데 최적화되도록 애플리케이션을 구성하지 않습니다.",
+ "auto_on": "화면 읽기 프로그램을 사용하는 데 최적화되도록 애플리케이션을 구성합니다.",
"bulkEditServiceSummary": "{1} 파일에서 편집을 {0}개 했습니다.",
- "changeConfigToOnMac": "화면 판독기 사용에 최적화되도록 편집기를 구성하려면 지금 Command+E를 누르세요.",
- "changeConfigToOnWinLinux": "화면 판독기에 사용할 수 있도록 편집기를 최적화하려면 지금 Ctrl+E를 누르세요.",
- "editableDiffEditor": "diff 편집기 창에서.",
- "editableEditor": " 코드 편집기에서",
+ "changeConfigToOnMac": "화면 읽기 프로그램과 함께 사용하도록 애플리케이션을 최적화하도록 구성합니다(Command+E).",
+ "changeConfigToOnWinLinux": "화면 읽기 프로그램과 함께 사용하도록 애플리케이션을 최적화하도록 구성합니다(Control+E).",
+ "chatEditing.navigation": "편집기에서 이전{0} 및 다음{1}(으)로 탐색하고, 현재 변경 사항에 대해 수락{2}, 거부{3} 하거나 diff{4}을(를) 확인하세요. 모든 파일에서 편집을 수락하세요{5}.",
+ "chatEditorModification": "편집기에서 채팅에서 수행한 보류 중인 수정 내용이 포함되어 있습니다.",
+ "chatEditorRequestInProgress": "편집기가 현재 채팅에서 수정할 때까지 기다리고 있습니다.",
+ "codeFolding": "코드 폴딩을 사용하여 코드 블록을 축소하고 접기 명령 토글(Toggle Folding Command)을 통해 관심 있는 코드에 집중합니다.{0}",
+ "debug.startDebugging": "Debug: Start Debugging 명령{0}을 사용하면 디버그 세션이 시작됩니다.",
+ "debugConsole.addToWatch": "디버그: 조사식에 추가 명령{0}을 선택한 텍스트를 조사식 보기에 추가합니다.",
+ "debugConsole.executeSelection": "디버그: 선택 영역 실행 명령{0}이(가) 선택한 텍스트를 디버그 콘솔에서 실행합니다.",
+ "debugConsole.setBreakpoint": "디버그: {0} 인라인 중단점 명령이 현재 커서 위치에서 중단점을 설정하거나 해제합니다.",
+ "defaultWindowTitleExcludingEditorState": "activeEditorState - 수정, 문제 등은 현재 기본적으로 window.title 설정의 일부로 포함되지 않습니다. accessibility.windowTitleOptimized로 활성화합니다.",
+ "defaultWindowTitleIncludesEditorState": "activeEditorState - 수정, 문제 등은 기본적으로 window.title 설정의 일부로 포함됩니다. accessibility.windowTitleOptimized로 비활성화합니다.",
+ "editableDiffEditor": "diff 편집기의 창에 있습니다.",
+ "editableEditor": "코드 편집기에 있습니다.",
"editorViewAccessibleLabel": "편집기 콘텐츠",
- "emergencyConfOn": "이제 'accessibilitySupport' 설정을 'on'으로 변경합니다.",
+ "goToSymbol": "기호{0}로 이동하여 현재 파일의 기호 간을 빠르게 탐색합니다.",
"gotoLineActionLabel": "줄/열로 이동...",
+ "gotoOffsetActionLabel": "오프셋으로 이동...",
"helpQuickAccess": "빠른 액세스 공급자 모두 표시",
"inspectTokens": "개발자: 검사 토큰",
- "multiSelection": "{0} 선택 항목",
- "multiSelectionRange": "{0} 선택 항목({1}자 선택됨)",
- "noSelection": "없음 선택",
- "openDocMac": "Command+H를 눌러 편집기 접근성과 관련된 자세한 정보가 있는 브라우저 창을 여세요.",
- "openDocWinLinux": "Ctrl+H를 눌러 편집기 접근성과 관련된 자세한 정보가 있는 브라우저 창을 엽니다.",
- "openingDocs": "지금 편집기 접근성 문서 페이지를 여세요.",
- "outroMsg": "이 도구 설명을 해제하고 Esc 키 또는 Shift+Esc를 눌러서 편집기로 돌아갈 수 있습니다.",
+ "intellisense": "Intellisense를 사용하여 코딩 효율성을 개선하고 오류를 줄입니다. 제안을 트리거합니다{0}.",
+ "listAnnouncementsCommand": "알림 및 현재 상태에 대한 개요를 보려면 신호 공지 사항 나열 명령을 실행합니다.",
+ "listSignalSoundsCommand": "모든 소리 및 현재 상태에 대한 개요를 보려면 신호 소리를 나열하는 명령을 실행합니다.",
+ "openingDocs": "접근성 설명서 페이지를 엽니다.",
+ "quickChatCommand": "빠른 채팅{0}을(를) 전환하여 채팅 세션을 열거나 닫습니다.",
"quickCommandActionHelp": "명령 표시 및 실행",
"quickCommandActionLabel": "명령 팔레트",
"quickOutlineActionLabel": "기호로 가서...",
"quickOutlineByCategoryActionLabel": "범주별 기호로 이동...",
- "readonlyDiffEditor": "차이 편집기의 읽기 전용 창에서.",
- "readonlyEditor": " 읽기 전용 코드 편집기에서",
+ "readonlyDiffEditor": "diff 편집기의 읽기 전용 창에 있습니다.",
+ "readonlyEditor": "읽기 전용 코드 편집기에 있습니다.",
+ "screenReaderModeDisabled": "화면 읽기 프로그램 최적화 모드를 사용하지 않습니다.",
+ "screenReaderModeEnabled": "화면 읽기 프로그램 최적화 모드를 사용합니다.",
"showAccessibilityHelpAction": "접근성 도움말 표시",
- "singleSelection": "행 {0}, 열 {1}",
- "singleSelectionRange": "줄 {0}, 열 {1}({2} 선택됨)입니다.",
- "tabFocusModeOffMsg": "현재 편집기에서 키를 누르면 탭 문자가 삽입됩니다. {0}을(를) 눌러서 이 동작을 설정/해제합니다.",
- "tabFocusModeOffMsgNoKb": "현재 편집기에서 키를 누르면 탭 문자가 삽입됩니다. {0} 명령은 현재 키 바인딩으로 트리거할 수 없습니다.",
- "tabFocusModeOnMsg": "현재 편집기에서 키를 누르면 포커스가 다음 포커스 가능한 요소로 이동합니다. {0}을(를) 눌러서 이 동작을 설정/해제합니다.",
- "tabFocusModeOnMsgNoKb": "현재 편집기에서 키를 누르면 포커스가 다음 포커스 가능한 요소로 이동합니다. {0} 명령은 현재 키 바인딩으로 트리거할 수 없습니다.",
- "toggleHighContrast": "고대비 테마로 전환"
+ "showOrFocusHover": "가리키기{0}를 표시하거나 포커스를 지정하여 현재 기호에 대한 정보를 읽습니다.",
+ "startInlineChatCommand": "인라인 채팅{0}을(를) 시작하여 편집기 채팅 세션을 만듭니다.",
+ "stickScrollKb": "고정 스크롤{0}에 포커스를 두어 현재 중첩된 범위에 포커스를 지정합니다.",
+ "suggestActionsKb": "제안 위젯{0}을(를) 트리거하여 가능한 인라인 제안을 표시합니다.",
+ "tabFocusModeOffMsg": "현재 편집기에서 Tab 키를 누르면 탭 문자가 삽입됩니다. 이 동작을(를) 전환합니다.{0}",
+ "tabFocusModeOnMsg": "현재 편집기에서 Tab 키를 누르면 포커스가 다음 포커스 가능한 요소로 이동합니다. 이 동작{0}을(를) 전환합니다.",
+ "toggleHighContrast": "고대비 테마로 전환",
+ "toggleSuggestionFocus": "제안 위젯과 편집기{0} 간에 포커스를 전환하고{1} 사용하여 세부 정보 포커스를 전환하여 제안에 대해 자세히 알아보세요.",
+ "toolbar": "워크벤치에서 화면 읽기 프로그램에서 도구 모음에 연결했음을 알리는 경우 좁은 키를 사용하여 도구 모음의 작업 사이를 이동합니다."
+ },
+ "vs/editor/common/viewLayout/viewLineRenderer": {
+ "overflow.chars": "{0}자",
+ "showMore": "자세히 표시({0})"
},
"vs/editor/contrib/anchorSelect/browser/anchorSelect": {
"anchorSet": "{0}에 설정된 앵커: {1}",
@@ -708,7 +1040,9 @@
"miGoToBracket": "대괄호로 이동(&&B)",
"overviewRulerBracketMatchForeground": "괄호에 해당하는 영역을 표시자에 채색하여 표시합니다.",
"smartSelect.jumpBracket": "대괄호로 이동",
- "smartSelect.selectToBracket": "괄호까지 선택"
+ "smartSelect.removeBrackets": "대괄호 제거",
+ "smartSelect.selectToBracket": "괄호까지 선택",
+ "smartSelect.selectToBracketDescription": "대괄호 또는 중괄호를 포함하여 내부 텍스트를 선택합니다."
},
"vs/editor/contrib/caretOperations/browser/caretOperations": {
"caret.moveLeft": "선택한 텍스트를 왼쪽으로 이동",
@@ -728,8 +1062,10 @@
"miPaste": "붙여넣기(&&P)",
"share": "공유"
},
+ "vs/editor/contrib/codeAction/browser/codeAction": {
+ "applyCodeActionFailed": "코드 작업을 적용하는 중 알 수 없는 오류가 발생했습니다."
+ },
"vs/editor/contrib/codeAction/browser/codeActionCommands": {
- "applyCodeActionFailed": "코드 작업을 적용하는 중 알 수 없는 오류가 발생했습니다.",
"args.schema.apply": "반환된 작업이 적용되는 경우를 제어합니다.",
"args.schema.apply.first": "항상 반환된 첫 번째 코드 작업을 적용합니다.",
"args.schema.apply.ifSingle": "첫 번째 반환된 코드 작업을 적용합니다(이 작업만 있는 경우).",
@@ -754,30 +1090,65 @@
"editor.action.source.noneMessage.preferred.kind": "'{0}'에 대한 기본 소스 작업을 사용할 수 없음",
"fixAll.label": "모두 수정",
"fixAll.noneMessage": "모든 작업 수정 사용 불가",
+ "organizeImports.description": "현재 파일에서 가져오기를 구성합니다. 일부 도구에서 '가져오기 최적화'라고도 합니다.",
"organizeImports.label": "가져오기 구성",
"quickfix.trigger.label": "빠른 수정...",
"refactor.label": "리팩터링...",
- "refactor.preview.label": "미리 보기로 리팩터링...",
"source.label": "소스 작업..."
},
- "vs/editor/contrib/codeAction/browser/codeActionMenu": {
- "CodeActionMenuVisible": "코드 작업 목록 위젯이 표시되는지 여부",
- "label": "{0} to Refactor, {1} to Preview"
+ "vs/editor/contrib/codeAction/browser/codeActionContributions": {
+ "includeNearbyQuickFixes": "현재 진단 중이 아닐 때 줄 내에서 가장 가까운 빠른 수정 표시를 사용/사용 안 함으로 설정합니다.",
+ "showCodeActionHeaders": "코드 작업 메뉴에 그룹 헤더 표시를 활성화/비활성화합니다.",
+ "triggerOnFocusChange": "{1}이(가) {2}(으)로 설정될 때 {0} 트리거 활성화 코드 동작이 창 변경 및 포커스 변경에 대해 트리거되려면 {3}(으)로 설정되어야 합니다."
+ },
+ "vs/editor/contrib/codeAction/browser/codeActionController": {
+ "editingNewSelection": "컨텍스트: 줄 {1} 및 열 {2}의 {0}입니다.",
+ "hideMoreActions": "사용하지 않는 항목 숨기기",
+ "showMoreActions": "비활성화된 항목 표시"
},
- "vs/editor/contrib/codeAction/browser/codeActionWidgetContribution": {
- "codeActionWidget": "활성화하면 코드 작업 메뉴가 렌더링되는 방식이 조정됩니다."
+ "vs/editor/contrib/codeAction/browser/codeActionMenu": {
+ "codeAction.widget.id.convert": "재작성",
+ "codeAction.widget.id.extract": "추출",
+ "codeAction.widget.id.inline": "인라인",
+ "codeAction.widget.id.more": "추가 작업...",
+ "codeAction.widget.id.move": "이동",
+ "codeAction.widget.id.quickfix": "빠른 수정",
+ "codeAction.widget.id.source": "소스 작업",
+ "codeAction.widget.id.surround": "코드 감싸기"
},
"vs/editor/contrib/codeAction/browser/lightBulbWidget": {
"codeAction": "코드 작업 표시",
+ "codeActionAutoRun": "실행: {0}",
"codeActionWithKb": "코드 작업 표시({0})",
+ "gutterLightbulbAIFixAutoFixWidget": "편집기에 공간이 없고 AI 수정 및 빠른 수정을 사용할 수 있는 경우 여백에서 코드 작업 메뉴를 생성하는 아이콘입니다.",
+ "gutterLightbulbAIFixWidget": "편집기에 공간이 없고 AI 수정을 사용할 수 있는 경우 여백에서 코드 작업 메뉴를 생성하는 아이콘입니다.",
+ "gutterLightbulbAutoFixWidget": "편집기에 공간이 없고 빠른 수정을 사용할 수 있는 경우 여백에서 코드 작업 메뉴를 생성하는 아이콘입니다.",
+ "gutterLightbulbSparkleFilledWidget": "편집기에 공간이 없고 AI 수정 및 빠른 수정을 사용할 수 있는 경우 여백에서 코드 작업 메뉴를 생성하는 아이콘입니다.",
+ "gutterLightbulbWidget": "편집기에서 공간이 없을 때 여백에서 코드 동작 메뉴를 생성하는 아이콘입니다.",
"preferredcodeActionWithKb": "코드 작업 표시. 기본 설정 빠른 수정 사용 가능({0})"
},
"vs/editor/contrib/codelens/browser/codelensController": {
+ "placeHolder": "명령 선택",
"showLensOnLine": "현재 줄에 대한 코드 렌즈 명령 표시"
},
- "vs/editor/contrib/colorPicker/browser/colorPickerWidget": {
+ "vs/editor/contrib/colorPicker/browser/colorPickerParts/colorPickerCloseButton": {
+ "closeIcon": "Color Picker를 닫는 아이콘"
+ },
+ "vs/editor/contrib/colorPicker/browser/colorPickerParts/colorPickerHeader": {
"clickToToggleColorOptions": "색 옵션을 토글하려면 클릭하세요(rgb/hsl/hex)."
},
+ "vs/editor/contrib/colorPicker/browser/hoverColorPicker/hoverColorPickerParticipant": {
+ "hoverAccessibilityColorParticipant": "여기에 Color Picker가 있습니다."
+ },
+ "vs/editor/contrib/colorPicker/browser/standaloneColorPicker/standaloneColorPickerActions": {
+ "hideColorPicker": "Color Picker 숨기기",
+ "hideColorPickerDescription": "독립 실행형 Color Picker를 숨깁니다.",
+ "insertColorWithStandaloneColorPicker": "독립 실행형 Color Picker로 색 삽입",
+ "insertColorWithStandaloneColorPickerDescription": "포커스가 있는 독립 실행형 Color Picker를 사용하여 hex/rgb/hsl 색을 삽입합니다.",
+ "mishowOrFocusStandaloneColorPicker": "독립 실행형 Color Picker 표시 또는 포커스(&&S)",
+ "showOrFocusStandaloneColorPicker": "독립 실행형 Color Picker 표시 또는 포커스",
+ "showOrFocusStandaloneColorPickerDescription": "기본 색 공급자를 사용하는 독립 실행형 Color Picker를 표시하거나 포커스를 지정합니다. hex/rgb/hsl 색을 표시합니다."
+ },
"vs/editor/contrib/comment/browser/comment": {
"comment.block": "블록 주석 설정/해제",
"comment.line": "줄 주석 설정/해제",
@@ -788,7 +1159,7 @@
},
"vs/editor/contrib/contextmenu/browser/contextmenu": {
"action.showContextMenu.label": "편집기 상황에 맞는 메뉴 표시",
- "context.minimap.minimap": "Minimap",
+ "context.minimap.minimap": "미니맵",
"context.minimap.renderCharacters": "문자 렌더링",
"context.minimap.size": "세로 크기",
"context.minimap.size.fill": "채우기",
@@ -798,24 +1169,54 @@
"context.minimap.slider.always": "항상",
"context.minimap.slider.mouseover": "마우스 위로"
},
- "vs/editor/contrib/copyPaste/browser/copyPasteContribution": {
- "pasteActions": "붙여넣을 때 확장에서 편집 실행을 사용하거나 사용하지 않도록 설정합니다."
- },
"vs/editor/contrib/cursorUndo/browser/cursorUndo": {
"cursor.redo": "커서 다시 실행",
"cursor.undo": "커서 실행 취소"
},
- "vs/editor/contrib/dropIntoEditor/browser/dropIntoEditorContribution": {
- "dropProgressTitle": "드롭 처리기를 실행하는 중..."
+ "vs/editor/contrib/dropOrPasteInto/browser/copyPasteContribution": {
+ "pasteAs": "다른 이름으로 붙여넣기...",
+ "pasteAs.kind": "적용할 붙여넣기 편집의 종류입니다.\r\n이러한 종류의 편집이 여러 개 있는 경우 편집기에 선택기가 표시됩니다. 이러한 종류의 편집이 없으면 편집기에서 오류 메시지가 표시됩니다.",
+ "pasteAs.preferences": "적용할 기본 설정 붙여넣기 편집 종류 목록입니다.\r\n기본 설정과 일치하는 첫 번째 편집이 적용됩니다.",
+ "pasteAsText": "텍스트로 붙여넣기"
+ },
+ "vs/editor/contrib/dropOrPasteInto/browser/copyPasteController": {
+ "noPreferences": "비어 있음",
+ "pasteAsDefault": "기본 붙여넣기 작업 구성",
+ "pasteAsError": "'{0}'에 대한 붙여넣기 편집을 찾을 수 없습니다.",
+ "pasteAsPickerPlaceholder": "붙여넣기 작업 선택",
+ "pasteAsProgress": "붙여넣기 처리기를 실행하는 중",
+ "pasteIntoEditorProgress": "붙여넣기 처리기를 실행하는 중. 취소하고 기본 붙여넣기를 수행하려면 클릭하세요.",
+ "pasteWidgetVisible": "붙여넣기 위젯이 표시되는지 여부",
+ "postPasteWidgetTitle": "붙여넣기 옵션 표시...",
+ "resolveProcess": "'{0}' 붙여넣기 편집을 확인하는 중입니다. 취소하려면 클릭하세요."
+ },
+ "vs/editor/contrib/dropOrPasteInto/browser/defaultProviders": {
+ "defaultDropProvider.uriList.path": "경로 삽입",
+ "defaultDropProvider.uriList.paths": "경로 삽입",
+ "defaultDropProvider.uriList.relativePath": "상대 경로 삽입",
+ "defaultDropProvider.uriList.relativePaths": "상대 경로 삽입",
+ "defaultDropProvider.uriList.uri": "URI 삽입",
+ "defaultDropProvider.uriList.uris": "URI 삽입",
+ "pasteHtmlLabel": "HTML 삽입",
+ "text.label": "일반 텍스트 삽입"
+ },
+ "vs/editor/contrib/dropOrPasteInto/browser/dropIntoEditorController": {
+ "dropIntoEditorProgress": "드롭 처리기를 실행하는 중입니다. 취소하려면 클릭하세요.",
+ "dropWidgetVisible": "드롭 위젯이 표시되는지 여부",
+ "postDropWidgetTitle": "드롭 옵션 표시..."
+ },
+ "vs/editor/contrib/dropOrPasteInto/browser/postEditWidget": {
+ "applyError": "'{0}' 편집을 적용하는 동안 오류 발생:\r\n{1}",
+ "resolveError": "'{0}' 편집을 확인하는 동안 오류 발생:\r\n{1}"
},
"vs/editor/contrib/editorState/browser/keybindingCancellation": {
"cancellableOperation": "편집기에서 취소 가능한 작업(예: '참조 피킹')을 실행하는지 여부"
},
"vs/editor/contrib/find/browser/findController": {
- "actions.find.isRegexOverride": "\"정규식 사용\" 플래그를 재정의합니다.\r\n플래그는 미래를 위해 저장되지 않습니다.\r\n0: 아무것도 하지 않음\r\n1: True\r\n2: False",
- "actions.find.matchCaseOverride": "\"Math Case\" 플래그를 재정의합니다.\r\n플래그는 미래를 위해 저장되지 않습니다.\r\n0: 아무것도 하지 않음\r\n1: True\r\n2: False",
- "actions.find.preserveCaseOverride": "\"케이스 보존\" 플래그를 재정의합니다.\r\n플래그는 미래를 위해 저장되지 않습니다.\r\n0: 아무것도 하지 않음\r\n1: True\r\n2: False",
- "actions.find.wholeWordOverride": "\"전체 단어 일치\" 플래그를 재정의합니다.\r\n플래그는 미래를 위해 저장되지 않습니다.\r\n0: 아무것도 하지 않음\r\n1: True\r\n2: False",
+ "findMatchAction.goToMatch": "일치 항목으로 이동...",
+ "findMatchAction.inputPlaceHolder": "특정 일치 항목으로 이동하려면 숫자를 입력하세요(1~{0} 사이).",
+ "findMatchAction.inputValidationMessage": "1에서 {0} 사이의 숫자를 입력하세요",
+ "findMatchAction.noResults": "일치하는 항목이 없습니다. 다른 내용으로 검색해 보세요.",
"findNextMatchAction": "다음 찾기",
"findPreviousMatchAction": "이전 찾기",
"miFind": "찾기(&&F)",
@@ -825,14 +1226,14 @@
"startFindAction": "찾기",
"startFindWithArgsAction": "인수로 찾기",
"startFindWithSelectionAction": "선택 영역에서 찾기",
- "startReplace": "바꾸기"
+ "startReplace": "바꾸기",
+ "too.large.for.replaceall": "파일이 너무 커서 모두 바꾸기 작업을 수행할 수 없습니다."
},
"vs/editor/contrib/find/browser/findWidget": {
"ariaSearchNoResult": "'{1}'에 대한 {0}을(를) 찾음",
"ariaSearchNoResultEmpty": "{0}개 찾음",
"ariaSearchNoResultWithLineNum": "{2}에서 '{1}'에 대한 {0}을(를) 찾음",
"ariaSearchNoResultWithLineNumNoCurrentMatch": "'{1}'에 대한 {0}을(를) 찾음",
- "ctrlEnter.keybindingChanged": "Ctrl+Enter를 누르면 이제 모든 항목을 바꾸지 않고 줄 바꿈을 삽입합니다. editor.action.replaceAll의 키 바인딩을 수정하여 이 동작을 재정의할 수 있습니다.",
"findCollapsedIcon": "편집기 찾기 위젯이 축소되었음을 나타내는 아이콘입니다.",
"findExpandedIcon": "편집기 찾기 위젯이 확장되었음을 나타내는 아이콘입니다.",
"findNextMatchIcon": "편집기 찾기 위젯에서 '다음 찾기'의 아이콘입니다.",
@@ -842,6 +1243,7 @@
"findSelectionIcon": "편집기 찾기 위젯에서 '선택 영역에서 찾기'의 아이콘입니다.",
"label.closeButton": "닫기",
"label.find": "찾기",
+ "label.findDialog": "찾기/바꾸기",
"label.matchesLocation": "{1}의 {0}",
"label.nextMatchButton": "다음 검색 결과",
"label.noResults": "결과 없음",
@@ -856,44 +1258,42 @@
"title.matchesCountLimit": "처음 {0}개의 결과가 강조 표시되지만 모든 찾기 작업은 전체 텍스트에 대해 수행됩니다."
},
"vs/editor/contrib/folding/browser/folding": {
- "createManualFoldRange.label": "Create Manual Folding Range from Selection",
- "editorGutter.foldingControlForeground": "편집기 여백의 접기 컨트롤 색입니다.",
+ "createManualFoldRange.label": "선택 영역에서 접기 범위 만들기",
"foldAction.label": "접기",
"foldAllAction.label": "모두 접기",
"foldAllBlockComments.label": "모든 블록 코멘트를 접기",
- "foldAllExcept.label": "선택한 영역을 제외한 모든 영역 접기",
+ "foldAllExcept.label": "선택한 항목을 제외한 모든 항목 접기",
"foldAllMarkerRegions.label": "모든 영역 접기",
- "foldBackgroundBackground": "접힌 범위의 배경색입니다. 색은 기본 장식을 숨기지 않기 위해 불투명해서는 안 됩니다.",
"foldLevelAction.label": "수준 {0} 접기",
"foldRecursivelyAction.label": "재귀적으로 접기",
"gotoNextFold.label": "다음 접기 범위로 이동",
"gotoParentFold.label": "부모 폴딩으로 이동",
"gotoPreviousFold.label": "이전 접기 범위로 이동",
- "maximum fold ranges": "폴더블 영역의 수는 최대 {0}개로 제한됩니다. 폴더블 영역 수를 늘리려면 ['폴딩 최대 영역'](command:workbench.action.openSettings?[\"editor.foldingMaximumRegions\"]) 구성 옵션을 늘리세요.",
- "removeManualFoldingRanges.label": "Remove Manual Folding Ranges",
+ "removeManualFoldingRanges.label": "수동 폴딩 범위 제거",
"toggleFoldAction.label": "접기 전환",
+ "toggleFoldRecursivelyAction.label": "재귀적으로 접기 토글",
+ "toggleImportFold.label": "가져오기 접기 설정/해제",
"unFoldRecursivelyAction.label": "재귀적으로 펼치기",
"unfoldAction.label": "펼치기",
"unfoldAllAction.label": "모두 펼치기",
- "unfoldAllExcept.label": "선택한 영역을 제외한 모든 영역 펼치기",
+ "unfoldAllExcept.label": "선택한 항목을 제외한 모든 항목 표시",
"unfoldAllMarkerRegions.label": "모든 영역 펼치기"
},
"vs/editor/contrib/folding/browser/foldingDecorations": {
+ "collapsedTextColor": "접힌 범위의 첫 번째 줄 뒤에 있는 축소된 텍스트의 색입니다.",
+ "editorGutter.foldingControlForeground": "편집기 여백의 접기 컨트롤 색입니다.",
+ "foldBackgroundBackground": "접힌 범위의 배경색입니다. 색은 기본 장식을 숨기지 않기 위해 불투명해서는 안 됩니다.",
"foldingCollapsedIcon": "편집기 문자 모양 여백에서 축소된 범위의 아이콘입니다.",
"foldingExpandedIcon": "편집기 문자 모양 여백에서 확장된 범위의 아이콘입니다.",
- "foldingManualCollapedIcon": "Icon for manually collapsed ranges in the editor glyph margin.",
- "foldingManualExpandedIcon": "Icon for manually expanded ranges in the editor glyph margin."
+ "foldingManualCollapedIcon": "편집기 문자 모양 여백에서 수동으로 축소된 범위에 대한 아이콘입니다.",
+ "foldingManualExpandedIcon": "편집기 문자 모양 여백에서 수동으로 확장된 범위에 대한 아이콘입니다.",
+ "linesCollapsed": "범위를 확장하려면 클릭합니다.",
+ "linesExpanded": "범위를 축소하려면 클릭합니다."
},
"vs/editor/contrib/fontZoom/browser/fontZoom": {
- "EditorFontZoomIn.label": "편집기 글꼴 확대",
- "EditorFontZoomOut.label": "편집기 글꼴 축소",
- "EditorFontZoomReset.label": "편집기 글꼴 확대/축소 다시 설정"
- },
- "vs/editor/contrib/format/browser/format": {
- "hint11": "줄 {0}에서 1개 서식 편집을 수행했습니다.",
- "hint1n": "줄 {0}과(와) {1} 사이에서 1개 서식 편집을 수행했습니다.",
- "hintn1": "줄 {1}에서 {0}개 서식 편집을 수행했습니다.",
- "hintnn": "줄 {1}과(와) {2} 사이에서 {0}개 서식 편집을 수행했습니다."
+ "EditorFontZoomIn.label": "편집기 글꼴 크기 늘리기",
+ "EditorFontZoomOut.label": "편집기 글꼴 크기 줄이기",
+ "EditorFontZoomReset.label": "편집기 글꼴 크기 다시 설정"
},
"vs/editor/contrib/format/browser/formatActions": {
"formatDocument.label": "문서 서식",
@@ -983,8 +1383,8 @@
"vs/editor/contrib/gotoSymbol/browser/referencesModel": {
"aria.fileReferences.1": "{0}의 기호 1개, 전체 경로 {1}",
"aria.fileReferences.N": "{1}의 기호 {0}개, 전체 경로 {2}",
- "aria.oneReference": "{2}열, {1}줄, {0}의 기호",
- "aria.oneReference.preview": "열 {2}, {3}의 줄 {1}에 있는 {0}의 기호",
+ "aria.oneReference": "{2} 열에 있는 {1} 행의 {0}에",
+ "aria.oneReference.preview": "{3} 열에서 {2} 행의 {1}에 {0}",
"aria.result.0": "결과 없음",
"aria.result.1": "{0}에서 기호 1개를 찾았습니다.",
"aria.result.n1": "{1}에서 기호 {0}개를 찾았습니다.",
@@ -995,12 +1395,64 @@
"location": "{1}의 기호 {0}",
"location.kb": "{1}의 {0} 기호, 다음의 경우 {2}"
},
- "vs/editor/contrib/hover/browser/hover": {
+ "vs/editor/contrib/gpu/browser/gpuActions": {
+ "drawGlyph.label": "문자 모양 그리기",
+ "gpuDebug.label": "개발자: 디버그 편집기 GPU 렌더러",
+ "logTextureAtlasStats.label": "로그 텍스처 Atlas 통계",
+ "saveTextureAtlas.label": "텍스처 Atlas 저장"
+ },
+ "vs/editor/contrib/hover/browser/contentHoverRendered": {
+ "hoverAccessibilityStatusBar": "가리키기 상태 표시줄입니다.",
+ "hoverAccessibilityStatusBarActionWithKeybinding": "레이블 {0}과(와) {1} 키 바인딩이 포함된 작업이 있습니다.",
+ "hoverAccessibilityStatusBarActionWithoutKeybinding": "레이블 {0}이(가) 포함된 작업이 있습니다."
+ },
+ "vs/editor/contrib/hover/browser/hoverAccessibleViews": {
+ "decreaseVerbosity": "- 포커스된 가리킨 부분의 세부 정보 표시 수준은 가리키기 세부 정보 표시 줄이기 명령을 사용하여 줄일 수 있습니다.",
+ "increaseVerbosity": "- 포커스된 가리킨 부분의 세부 정보 표시 수준은 가리키기 세부 정보 표시 늘리기 명령을 사용하여 늘릴 수 있습니다."
+ },
+ "vs/editor/contrib/hover/browser/hoverActionIds": {
+ "decreaseHoverVerbosityLevel": "가리키기 세부 정보 표시 수준 감소",
+ "increaseHoverVerbosityLevel": "가리키기 세부 정보 표시 수준 늘리기"
+ },
+ "vs/editor/contrib/hover/browser/hoverActions": {
+ "goToBottomHover": "아래쪽 가리키기로 이동",
+ "goToBottomHoverDescription": "편집기 가리키기 맨 아래로 이동.",
+ "goToTopHover": "위쪽 가리키기로 이동",
+ "goToTopHoverDescription": "편집기 가리키기의 상단으로 이동.",
+ "hideHover": "가리킨 항목 숨기기",
+ "pageDownHover": "페이지 아래쪽 가리키기",
+ "pageDownHoverDescription": "에디터 가리키기 페이지 아래로.",
+ "pageUpHover": "페이지 위로 가리키기",
+ "pageUpHoverDescription": "편집기 가리키기 페이지 위로.",
+ "scrollDownHover": "아래로 스크롤 가리키기",
+ "scrollDownHoverDescription": "편집기 가리키기 아래로 스크롤.",
+ "scrollLeftHover": "왼쪽으로 스크롤 가리키기",
+ "scrollLeftHoverDescription": "편집기 가리키기 왼쪽 스크롤.",
+ "scrollRightHover": "오른쪽으로 스크롤 가리키기",
+ "scrollRightHoverDescription": "편집기 가리키기 오른쪽으로 스크롤.",
+ "scrollUpHover": "위로 스크롤 가리키기",
+ "scrollUpHoverDescription": "편집기 가리키기를 위로 스크롤.",
"showDefinitionPreviewHover": "정의 미리 보기 가리킨 항목 표시",
- "showHover": "가리키기 표시"
+ "showDefinitionPreviewHoverDescription": "편집기에서 정의 미리 보기 가리키기 표시.",
+ "showOrFocusHover": "가리키기 또는 포커스 표시",
+ "showOrFocusHover.focus.autoFocusImmediately": "마우스로 가리키면 포커스가 나타나는 경우 포커스가 자동으로 옮겨 갑니다.",
+ "showOrFocusHover.focus.focusIfVisible": "마우스로 가리키면 이미 표시된 경우에만 포커스가 옮겨 갑니다.",
+ "showOrFocusHover.focus.noAutoFocus": "마우스로 가리켜도 포커스가 옮겨 가지 않습니다.",
+ "showOrFocusHoverDescription": "현재 커서 위치에 있는 기호에 대한 설명서, 참조 및 기타 콘텐츠를 표시하는 편집기 가리키기를 표시하거나 포커스를 지정합니다."
+ },
+ "vs/editor/contrib/hover/browser/hoverCopyButton": {
+ "hover.copied": "클립보드에 복사됨",
+ "hover.copy": "복사"
},
"vs/editor/contrib/hover/browser/markdownHoverParticipant": {
+ "decreaseHoverVerbosity": "가리키기 세부 정보 표시를 줄이는 아이콘입니다.",
+ "decreaseVerbosity": "가리키기 세부 정보 표시 감소",
+ "decreaseVerbosityWithKb": "가리키기 세부 정보 표시 감소({0})",
+ "increaseHoverVerbosity": "가리키기 세부 정보 표시를 늘리기 위한 아이콘입니다.",
+ "increaseVerbosity": "가리키기 세부 정보 표시 증가",
+ "increaseVerbosityWithKb": "가리키기 세부 정보 표시 증가({0})",
"modesContentHover.loading": "로드 중...",
+ "stopped rendering": "성능상의 이유로 긴 줄로 인해 렌더링이 일시 중지되었습니다. `editor.stopRenderingLineAfter`를 통해 구성할 수 있습니다.",
"too many characters": "성능상의 이유로 긴 줄의 경우 토큰화를 건너뜁니다. 이 항목은 'editor.maxTokenizationLineLength'를 통해 구성할 수 있습니다."
},
"vs/editor/contrib/hover/browser/markerHoverParticipant": {
@@ -1009,24 +1461,31 @@
"quick fixes": "빠른 수정...",
"view problem": "문제 보기"
},
- "vs/editor/contrib/inPlaceReplace/browser/inPlaceReplace": {
- "InPlaceReplaceAction.next.label": "다음 값으로 바꾸기",
- "InPlaceReplaceAction.previous.label": "이전 값으로 바꾸기"
- },
"vs/editor/contrib/indentation/browser/indentation": {
+ "changeTabDisplaySize": "탭 표시 크기 변경",
+ "changeTabDisplaySizeDescription": "탭에 해당하는 공간 크기를 변경합니다.",
"configuredTabSize": "구성된 탭 크기",
+ "currentTabSize": "현재 탭 크기",
+ "defaultTabSize": "기본 탭 크기",
"detectIndentation": "콘텐츠에서 들여쓰기 감지",
+ "detectIndentationDescription": "콘텐츠에서 들여쓰기를 검색합니다.",
"editor.reindentlines": "줄 다시 들여쓰기",
+ "editor.reindentlinesDescription": "편집기의 줄을 다시 입력합니다.",
"editor.reindentselectedlines": "선택한 줄 다시 들여쓰기",
+ "editor.reindentselectedlinesDescription": "선택한 편집기 줄을 다시 들여쓰기합니다.",
"indentUsingSpaces": "공백을 사용한 들여쓰기",
+ "indentUsingSpacesDescription": "공백으로 들여쓰기를 사용합니다.",
"indentUsingTabs": "탭을 사용한 들여쓰기",
+ "indentUsingTabsDescription": "탭으로 들여쓰기를 사용합니다.",
"indentationToSpaces": "들여쓰기를 공백으로 변환",
+ "indentationToSpacesDescription": "탭 들여쓰기를 공백으로 변환합니다.",
"indentationToTabs": "들여쓰기를 탭으로 변환",
+ "indentationToTabsDescription": "공백 들여쓰기를 탭으로 변환합니다.",
"selectTabWidth": "현재 파일의 탭 크기 선택"
},
"vs/editor/contrib/inlayHints/browser/inlayHintsHover": {
"hint.cmd": "명령 실행",
- "hint.dbl": "삽입하려면 두 번 클릭하세요.",
+ "hint.dbl": "삽입하려면 두 번 클릭",
"hint.def": "정의로 이동({0})",
"hint.defAndCommand": "정의({0})로 이동하여 자세히 알아보려면 마우스 오른쪽 단추를 클릭합니다.",
"links.navigate.kb.alt": "Alt+클릭",
@@ -1034,27 +1493,105 @@
"links.navigate.kb.meta": "Ctrl+클릭",
"links.navigate.kb.meta.mac": "Cmd+클릭"
},
- "vs/editor/contrib/inlineCompletions/browser/ghostTextController": {
+ "vs/editor/contrib/inlineCompletions/browser/controller/commands": {
+ "accept": "수락",
+ "acceptLine": "줄 수락",
+ "acceptWord": "단어 수락",
+ "action.inlineSuggest.accept": "인라인 추천 수락",
+ "action.inlineSuggest.acceptNextLine": "인라인 제안의 다음 줄 수락",
+ "action.inlineSuggest.acceptNextWord": "인라인 제안의 다음 단어 수락",
+ "action.inlineSuggest.alwaysShowToolbar": "항상 도구 모음 표시",
+ "action.inlineSuggest.dev.extractRepro": "개발자: 인라인 제안 상태 추출",
+ "action.inlineSuggest.hide": "인라인 제안 숨기기",
+ "action.inlineSuggest.jump": "다음 인라인 편집으로 이동",
"action.inlineSuggest.showNext": "다음 인라인 제안 표시",
"action.inlineSuggest.showPrevious": "이전 인라인 제안 표시",
+ "action.inlineSuggest.toggleShowCollapsed": "인라인 제안 표시 축소 설정/해제",
"action.inlineSuggest.trigger": "인라인 제안 트리거",
+ "inlineSuggest.trigger.args": "인라인 제안을 트리거하는 옵션입니다.",
+ "inlineSuggest.trigger.description": "편집기에서 인라인 제안을 트리거합니다.",
+ "jump": "점프",
+ "noInlineSuggestionAvailable": "인라인 제안을 사용할 수 없습니다.",
+ "reject": "Reject"
+ },
+ "vs/editor/contrib/inlineCompletions/browser/controller/inlineCompletionContextKeys": {
+ "cursorAtInlineEdit": "커서가 인라인 편집에 있는지 여부",
+ "cursorBeforeGhostText": "커서가 고스트 텍스트인지 여부",
+ "cursorInIndentation": "커서가 들여쓰기 중인지 여부",
+ "editor.hasSelection": "편집기에 선택 항목이 있는지 여부",
+ "inInlineEditsPreviewEditor": "현재 코드 편집기에서 인라인 편집 미리 보기를 표시하는지 여부",
+ "inlineEditVisible": "인라인 편집 표시 여부",
"inlineSuggestionHasIndentation": "인라인 제안이 공백으로 시작하는지 여부",
"inlineSuggestionHasIndentationLessThanTabSize": "인라인 제안이 탭에 의해 삽입되는 것보다 작은 공백으로 시작하는지 여부",
- "inlineSuggestionVisible": "인라인 제안 표시 여부"
+ "inlineSuggestionVisible": "인라인 제안 표시 여부",
+ "suppressSuggestions": "현재 제안에 대한 제안 표시 여부",
+ "tabShouldAcceptInlineEdit": "탭에서 인라인 편집을 허용할지 여부입니다.",
+ "tabShouldJumpToInlineEdit": "탭을 인라인 편집으로 이동할지 여부입니다."
},
- "vs/editor/contrib/inlineCompletions/browser/ghostTextHoverParticipant": {
- "acceptInlineSuggestion": "수락",
- "inlineSuggestionFollows": "제안:",
- "showNextInlineSuggestion": "다음",
- "showPreviousInlineSuggestion": "이전"
+ "vs/editor/contrib/inlineCompletions/browser/controller/inlineCompletionsController": {
+ "showAccessibleViewHint": "접근성 보기에서 이를 검사({0})"
+ },
+ "vs/editor/contrib/inlineCompletions/browser/hintsWidget/hoverParticipant": {
+ "hoverAccessibilityStatusBar": "여기에 인라인 완성이 있습니다.",
+ "inlineSuggestionFollows": "제안:"
+ },
+ "vs/editor/contrib/inlineCompletions/browser/hintsWidget/inlineCompletionsHintsWidget": {
+ "content": "{0}({1})",
+ "next": "다음",
+ "parameterHintsNextIcon": "다음 매개 변수 힌트 표시의 아이콘입니다.",
+ "parameterHintsPreviousIcon": "이전 매개 변수 힌트 표시의 아이콘입니다.",
+ "previous": "이전"
+ },
+ "vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/components/gutterIndicatorMenu": {
+ "accept": "수락",
+ "goto": "이동",
+ "reject": "거부",
+ "settings": "설정",
+ "showCollapsed": "축소 표시",
+ "showExpanded": "확장 표시",
+ "snooze": "다시 알림"
+ },
+ "vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/components/gutterIndicatorView": {
+ "inlineSuggestion": "인라인 제안"
+ },
+ "vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/theme": {
+ "inlineEdit.gutterIndicator.background": "인라인 편집 여백 표시기 배경색입니다.",
+ "inlineEdit.gutterIndicator.primaryBackground": "기본 인라인 편집 여백 표시기 배경색입니다.",
+ "inlineEdit.gutterIndicator.primaryBorder": "기본 인라인 편집 여백 표시기의 테두리 색입니다.",
+ "inlineEdit.gutterIndicator.primaryForeground": "기본 인라인 편집 여백 표시기 전경색입니다.",
+ "inlineEdit.gutterIndicator.secondaryBackground": "보조 인라인 편집 여백 표시기 배경색입니다.",
+ "inlineEdit.gutterIndicator.secondaryBorder": "보조 인라인 편집 여백 표시기의 테두리 색입니다.",
+ "inlineEdit.gutterIndicator.secondaryForeground": "보조 인라인 편집 여백 표시기 전경색입니다.",
+ "inlineEdit.gutterIndicator.successfulBackground": "성공한 인라인 편집 여백 표시기 배경색입니다.",
+ "inlineEdit.gutterIndicator.successfulBorder": "성공적인 인라인 편집 여백 표시기의 테두리 색입니다.",
+ "inlineEdit.gutterIndicator.successfulForeground": "성공한 인라인 편집 여백 표시기 전경색입니다.",
+ "inlineEdit.modifiedBackground": "인라인 편집에서 수정된 텍스트의 배경색입니다.",
+ "inlineEdit.modifiedBorder": "인라인 편집에서 수정된 텍스트의 테두리 색입니다.",
+ "inlineEdit.modifiedChangedLineBackground": "인라인 편집의 수정된 텍스트에서 변경된 줄의 배경색입니다.",
+ "inlineEdit.modifiedChangedTextBackground": "인라인 편집의 수정된 텍스트에서 변경된 텍스트의 오버레이 색입니다.",
+ "inlineEdit.originalBackground": "인라인 편집에서 원본 텍스트의 배경색입니다.",
+ "inlineEdit.originalBorder": "인라인 편집에서 원래 텍스트의 테두리 색입니다.",
+ "inlineEdit.originalChangedLineBackground": "인라인 편집의 원래 텍스트에서 변경된 줄의 배경색입니다.",
+ "inlineEdit.originalChangedTextBackground": "인라인 편집의 원래 텍스트에서 변경된 텍스트의 오버레이 색입니다.",
+ "inlineEdit.tabWillAcceptModifiedBorder": "탭에서 허용하는 경우 인라인 편집 위젯의 수정된 테두리 색입니다.",
+ "inlineEdit.tabWillAcceptOriginalBorder": "인라인의 원래 테두리 색은 탭에서 허용할 때 원래 텍스트 위에 위젯을 편집합니다."
+ },
+ "vs/editor/contrib/inPlaceReplace/browser/inPlaceReplace": {
+ "InPlaceReplaceAction.next.label": "다음 값으로 바꾸기",
+ "InPlaceReplaceAction.previous.label": "이전 값으로 바꾸기"
+ },
+ "vs/editor/contrib/insertFinalNewLine/browser/insertFinalNewLine": {
+ "insertFinalNewLine": "마지막 줄 바꿈 삽입"
},
"vs/editor/contrib/lineSelection/browser/lineSelection": {
"expandLineSelection": "선 선택 영역 확장"
},
"vs/editor/contrib/linesOperations/browser/linesOperations": {
"duplicateSelection": "중복된 선택 영역",
+ "editor.transformToCamelcase": "Camel Case로 변환",
"editor.transformToKebabcase": "Kebab 사례로 변환",
"editor.transformToLowercase": "소문자로 변환",
+ "editor.transformToPascalcase": "Pascal Case 변환",
"editor.transformToSnakecase": "스네이크 표기법으로 변환",
"editor.transformToTitlecase": "단어의 첫 글자를 대문자로 변환",
"editor.transformToUppercase": "대문자로 변환",
@@ -1072,6 +1609,7 @@
"lines.moveDown": "줄 아래로 이동",
"lines.moveUp": "줄 위로 이동",
"lines.outdent": "줄 내어쓰기",
+ "lines.reverseLines": "역방향 선",
"lines.sortAscending": "줄을 오름차순 정렬",
"lines.sortDescending": "줄을 내림차순으로 정렬",
"lines.trimTrailingWhitespace": "후행 공백 자르기",
@@ -1142,6 +1680,8 @@
"peekViewEditorGutterBackground": "Peek 뷰 편집기의 거터 배경색입니다.",
"peekViewEditorMatchHighlight": "Peek 뷰 편집기의 일치 항목 강조 표시 색입니다.",
"peekViewEditorMatchHighlightBorder": "Peek 뷰 편집기의 일치 항목 강조 표시 테두리입니다.",
+ "peekViewEditorStickScrollBackground": "피킹 뷰 편집기의 고정 스크롤 배경색입니다.",
+ "peekViewEditorStickyScrollGutterBackground": "피킹 뷰 편집기의 고정 스크롤의 홈통 부분에 대한 배경색입니다.",
"peekViewResultsBackground": "Peek 뷰 결과 목록의 배경색입니다.",
"peekViewResultsFileForeground": "Peek 뷰 결과 목록에서 파일 노드의 전경색입니다.",
"peekViewResultsMatchForeground": "Peek 뷰 결과 목록에서 라인 노드의 전경색입니다.",
@@ -1152,12 +1692,19 @@
"peekViewTitleForeground": "Peek 뷰 제목 색입니다.",
"peekViewTitleInfoForeground": "Peek 뷰 제목 정보 색입니다."
},
+ "vs/editor/contrib/placeholderText/browser/placeholderText.contribution": {
+ "placeholderForeground": "편집기에서 자리 표시자 텍스트의 전경색입니다."
+ },
"vs/editor/contrib/quickAccess/browser/gotoLineQuickAccess": {
- "cannotRunGotoLine": "우선 텍스트 편집기를 열고 줄로 이동합니다.",
- "gotoLineColumnLabel": "줄 {0} 및 문자 {1}(으)로 이동합니다.",
- "gotoLineLabel": "{0} 줄로 이동합니다.",
- "gotoLineLabelEmpty": "현재 줄: {0}, 문자: {1}. 이동할 줄 번호를 입력합니다.",
- "gotoLineLabelEmptyWithLimit": "현재 줄: {0}, 문자: {1} 이동할 줄 1~{2} 사이의 번호를 입력합니다."
+ "gotoLine.ariaLabel": "현재 위치: {0}줄, {1}열. {2}",
+ "gotoLine.columnPrompt": "'Enter'를 눌러 줄 {0}(으)로 이동하거나 열 번호(1~{1})를 입력합니다.",
+ "gotoLine.goToPosition": "'Enter'를 눌러 열 {1}의 줄 {0}(으)로 이동합니다.",
+ "gotoLine.lineColumnPrompt": "'Enter'를 눌러 줄 {0}(으)로 이동하거나 콜론 :을 입력하여 열 번호를 추가합니다.",
+ "gotoLine.linePrompt": "이동하려는 줄 번호를 입력합니다(1~{0}).",
+ "gotoLine.noEditor": "먼저 텍스트 편집기를 열어 줄이나 오프셋으로 이동합니다.",
+ "gotoLine.offsetPrompt": "이동하려는 문자 위치를 입력합니다(1~{0}).",
+ "gotoLine.offsetPromptZero": "이동하려는 문자 위치(0~{0})를 입력합니다.",
+ "gotoLineToggle": "제로 기반 오프셋 사용"
},
"vs/editor/contrib/quickAccess/browser/gotoSymbolQuickAccess": {
"_constructor": "생성자({0})",
@@ -1200,6 +1747,8 @@
"vs/editor/contrib/rename/browser/rename": {
"aria": "'{0}'을(를) '{1}'(으)로 이름을 변경했습니다. 요약: {2}",
"enablePreview": "이름을 바꾸기 전에 변경 내용을 미리 볼 수 있는 기능 사용/사용 안 함",
+ "focusNextRenameSuggestion": "포커스 다음 이름 바꾸기 제안",
+ "focusPreviousRenameSuggestion": "이전 이름 바꾸기 제안 포커스",
"label": "'{0}'에서 '{1}'(으)로 이름을 바꾸는 중",
"no result": "결과가 없습니다.",
"quotableLabel": "{1}에 {0} 이름 바꾸기",
@@ -1208,10 +1757,14 @@
"rename.label": "기호 이름 바꾸기",
"resolveRenameLocationFailed": "위치 이름을 바꾸는 중 알 수 없는 오류가 발생했습니다."
},
- "vs/editor/contrib/rename/browser/renameInputField": {
+ "vs/editor/contrib/rename/browser/renameWidget": {
+ "cancelRenameSuggestionsButton": "취소",
+ "generateRenameSuggestionsButton": "새 이름 제안 생성",
"label": "이름 바꾸기 {0}, 미리 보기 {1}",
"renameAriaLabel": "입력 이름을 바꾸세요. 새 이름을 입력한 다음 [Enter] 키를 눌러 커밋하세요.",
- "renameInputVisible": "입력 이름 바꾸기 위젯이 표시되는지 여부"
+ "renameInputFocused": "입력 이름 바꾸기 위젯이 포커스되었는지 여부",
+ "renameInputVisible": "입력 이름 바꾸기 위젯이 표시되는지 여부",
+ "renameSuggestionsReceivedAria": "{0} 이름 바꾸기 제안을 받습니다."
},
"vs/editor/contrib/smartSelect/browser/smartSelect": {
"miSmartSelectGrow": "선택 영역 확장(&&E)",
@@ -1265,6 +1818,19 @@
"Wednesday": "수요일",
"WednesdayShort": "수"
},
+ "vs/editor/contrib/stickyScroll/browser/stickyScrollActions": {
+ "focusStickyScroll": "편집기 고정 스크롤 포커스",
+ "goToFocusedStickyScrollLine.title": "포커스가 있는 고정 스크롤 선으로 이동",
+ "miStickyScroll": "고정 스크롤(&&S)",
+ "mifocusEditorStickyScroll": "편집기 고정 스크롤 포커스(&&F)",
+ "mitoggleStickyScroll": "편집기 고정 스크롤 토글(&&T)",
+ "selectEditor.title": "편집기 선택",
+ "selectNextStickyScrollLine.title": "다음 편집기 고정 스크롤 선 선택",
+ "selectPreviousStickyScrollLine.title": "이전 고정 스크롤 선 선택",
+ "stickyScroll": "고정 스크롤",
+ "toggleEditorStickyScroll": "편집기 고정 스크롤 토글",
+ "toggleEditorStickyScroll.description": "뷰포트 맨 위에 중첩된 범위를 표시하는 편집기 고정 스크롤을 토글/활성화합니다."
+ },
"vs/editor/contrib/suggest/browser/suggest": {
"acceptSuggestionOnEnter": " 키를 누를 때 제안이 삽입되는지 여부",
"suggestWidgetDetailsVisible": "제안 세부 정보가 표시되는지 여부",
@@ -1279,7 +1845,7 @@
"accept.insert": "삽입",
"accept.replace": "바꾸기",
"aria.alert.snippet": "{0}의 {1}개의 수정사항을 수락하는 중",
- "detail.less": "더 보기",
+ "detail.less": "자세히 표시",
"detail.more": "간단히 표시",
"suggest.reset.label": "제안 위젯 크기 다시 설정",
"suggest.trigger.label": "제안 항목 트리거"
@@ -1295,9 +1861,10 @@
"editorSuggestWidgetSelectedForeground": "제한 위젯에서 선택된 항목의 전경색입니다.",
"editorSuggestWidgetSelectedIconForeground": "제한 위젯에서 선택된 항목의 아이콘 전경색입니다.",
"editorSuggestWidgetStatusForeground": "제안 위젯 상태의 배경색입니다.",
- "label.desc": "{0}, {1}",
- "label.detail": "{0}{1}",
- "label.full": "({0},{1}) {2}",
+ "label": "{0}, {1}",
+ "label.desc": "{0}, {1}, {2}",
+ "label.detail": "{0} {1}, {2}",
+ "label.full": "{0} {1}, {2}, {3}",
"suggest": "제안",
"suggestWidget.loading": "로드 중...",
"suggestWidget.noSuggestions": "제안 항목이 없습니다."
@@ -1310,8 +1877,8 @@
"readMore": "자세한 정보",
"suggestMoreInfoIcon": "제안 위젯에서 자세한 정보의 아이콘입니다."
},
- "vs/editor/contrib/suggest/browser/suggestWidgetStatus": {
- "ddd": "{0} ({1})"
+ "vs/editor/contrib/suggest/browser/wordContextKey": {
+ "desc": "단어 끝에 있을 때 true인 컨텍스트 키입니다. 탭 완성을 사용하도록 설정한 경우에만 정의됩니다."
},
"vs/editor/contrib/symbolIcons/browser/symbolIcons": {
"symbolIcon.arrayForeground": "배열 기호의 전경색입니다. 이러한 기호는 개요, 이동 경로 및 제안 위젯에 나타납니다.",
@@ -1349,6 +1916,7 @@
"symbolIcon.variableForeground": "변수 기호의 전경색입니다. 이러한 기호는 개요, 이동 경로 및 제안 위젯에 표시됩니다."
},
"vs/editor/contrib/toggleTabFocusMode/browser/toggleTabFocusMode": {
+ "tabMovesFocusDescriptions": "탭 키가 워크벤치 주위로 포커스를 이동할지 또는 현재 편집기에 탭 문자를 삽입할지 여부를 결정합니다. 이를 탭 트래핑, 탭 탐색 또는 탭 포커스 모드라고도 합니다.",
"toggle.tabMovesFocus": " 키로 포커스 이동 설정/해제",
"toggle.tabMovesFocus.off": "이제 키를 누르면 탭 문자가 삽입됩니다.",
"toggle.tabMovesFocus.on": "이제 키를 누르면 포커스가 다음 포커스 가능한 요소로 이동합니다."
@@ -1356,6 +1924,9 @@
"vs/editor/contrib/tokenization/browser/tokenization": {
"forceRetokenize": "개발자: 강제로 다시 토큰화"
},
+ "vs/editor/contrib/unicodeHighlighter/browser/bannerController": {
+ "closeBanner": "배너 닫기"
+ },
"vs/editor/contrib/unicodeHighlighter/browser/unicodeHighlighter": {
"action.unicodeHighlight.disableHighlightingInComments": "메모에서 문자 강조 표시 사용 안 함",
"action.unicodeHighlight.disableHighlightingInStrings": "문자열에서 문자 강조 표시 사용 안 함",
@@ -1366,6 +1937,7 @@
"unicodeHighlight.adjustSettings": "설정 조정",
"unicodeHighlight.allowCommonCharactersInLanguage": "언어 \"{0}\"에서 더 일반적인 유니코드 문자를 허용합니다.",
"unicodeHighlight.characterIsAmbiguous": "{0} 문자는 소스 코드에서 더 일반적인 {1} 문자와 혼동될 수 있습니다.",
+ "unicodeHighlight.characterIsAmbiguousASCII": "문자 {0}은(는) 소스 코드에서 더 일반적인 ASCII 문자 {1}과(와) 혼동될 수 있습니다.",
"unicodeHighlight.characterIsInvisible": "{0} 문자가 보이지 않습니다.",
"unicodeHighlight.characterIsNonBasicAscii": "{0} 문자는 기본 ASCII 문자가 아닙니다.",
"unicodeHighlight.configureUnicodeHighlightOptions": "유니코드 강조 표시 옵션 구성",
@@ -1383,42 +1955,147 @@
},
"vs/editor/contrib/unusualLineTerminators/browser/unusualLineTerminators": {
"unusualLineTerminators.detail": "이 파일 ‘\r\n’에 LS(줄 구분 기호) 또는 PS(단락 구분 기호) 같은 하나 이상의 비정상적인 줄 종결자 문자가 포함되어 있습니다.{0}\r\n파일에서 제거하는 것이 좋습니다. `editor.unusualLineTerminators`를 통해 구성할 수 있습니다.",
- "unusualLineTerminators.fix": "비정상적인 줄 종결자 제거",
+ "unusualLineTerminators.fix": "비정상적인 줄 종결자 제거(&&R)",
"unusualLineTerminators.ignore": "무시",
"unusualLineTerminators.message": "비정상적인 줄 종결자가 검색됨",
"unusualLineTerminators.title": "비정상적인 줄 종결자"
},
- "vs/editor/contrib/wordHighlighter/browser/wordHighlighter": {
+ "vs/editor/contrib/wordHighlighter/browser/highlightDecorations": {
"overviewRulerWordHighlightForeground": "기호 강조 표시의 개요 눈금자 표식 색입니다. 기본 장식을 숨기지 않도록 색은 불투명하지 않아야 합니다.",
"overviewRulerWordHighlightStrongForeground": "쓰기 액세스 기호에 대한 개요 눈금자 표식 색이 강조 표시됩니다. 기본 장식을 숨기지 않도록 색은 불투명하지 않아야 합니다.",
+ "overviewRulerWordHighlightTextForeground": "기호에 대한 텍스트 항목의 개요 눈금자 마커 색입니다. 기본 장식을 숨기지 않도록 색은 불투명하지 않아야 합니다.",
"wordHighlight": "변수 읽기와 같은 읽기 액세스 중 기호의 배경색입니다. 기본 장식을 숨기지 않도록 색은 불투명하지 않아야 합니다.",
- "wordHighlight.next.label": "다음 강조 기호로 이동",
- "wordHighlight.previous.label": "이전 강조 기호로 이동",
- "wordHighlight.trigger.label": "기호 강조 표시 트리거",
"wordHighlightBorder": "변수 읽기와 같은 읽기 액세스 중 기호의 테두리 색입니다.",
"wordHighlightStrong": "변수에 쓰기와 같은 쓰기 액세스 중 기호의 배경색입니다. 기본 장식을 숨기지 않도록 색은 불투명하지 않아야 합니다.",
- "wordHighlightStrongBorder": "변수에 쓰기와 같은 쓰기 액세스 중 기호의 테두리 색입니다."
+ "wordHighlightStrongBorder": "변수에 쓰기와 같은 쓰기 액세스 중 기호의 테두리 색입니다.",
+ "wordHighlightText": "기호에 대한 텍스트 항목의 배경색입니다. 기본 장식을 숨기지 않도록 색은 불투명하지 않아야 합니다.",
+ "wordHighlightTextBorder": "기호에 대한 텍스트 항목의 테두리 색입니다."
+ },
+ "vs/editor/contrib/wordHighlighter/browser/wordHighlighter": {
+ "wordHighlight.next.label": "다음 강조 기호로 이동",
+ "wordHighlight.previous.label": "이전 강조 기호로 이동",
+ "wordHighlight.trigger.label": "기호 강조 표시 트리거"
},
"vs/editor/contrib/wordOperations/browser/wordOperations": {
"deleteInsideWord": "단어 삭제"
},
+ "vs/platform/accessibilitySignal/browser/accessibilitySignalService": {
+ "accessibility.signals.chatEditModifiedFile": "채팅 편집에서 수정된 파일",
+ "accessibility.signals.chatRequestSent": "채팅 요청 전송됨",
+ "accessibility.signals.chatUserActionRequired": "채팅 사용자 작업 필요",
+ "accessibility.signals.clear": "지우기",
+ "accessibility.signals.codeActionRequestTriggered": "코드 작업 요청 트리거됨",
+ "accessibility.signals.editsKept": "편집 유지됨",
+ "accessibility.signals.editsUndone": "실행 취소 편집",
+ "accessibility.signals.format": "서식",
+ "accessibility.signals.lineHasBreakpoint": "중단점",
+ "accessibility.signals.lineHasError": "줄에 대한 오류",
+ "accessibility.signals.lineHasFoldedArea": "접힘",
+ "accessibility.signals.lineHasWarning": "줄에 대한 경고",
+ "accessibility.signals.nextEditSuggestion": "다음 편집 제안",
+ "accessibility.signals.noInlayHints": "인레이 힌트 없음",
+ "accessibility.signals.notebookCellCompleted": "Notebook 셀 완료됨",
+ "accessibility.signals.notebookCellFailed": "Notebook 셀 실패",
+ "accessibility.signals.onDebugBreak": "중단점",
+ "accessibility.signals.positionHasError": "오류",
+ "accessibility.signals.positionHasWarning": "경고",
+ "accessibility.signals.progress": "진행률",
+ "accessibility.signals.save": "저장",
+ "accessibility.signals.taskCompleted": "완료된 작업",
+ "accessibility.signals.taskFailed": "작업 실패",
+ "accessibility.signals.terminalBell": "터미널 벨",
+ "accessibility.signals.terminalCommandFailed": "명령이 실패했습니다.",
+ "accessibility.signals.terminalCommandSucceeded": "명령 성공",
+ "accessibility.signals.terminalQuickFix": "빠른 수정",
+ "accessibilitySignals.chatEditModifiedFile": "채팅 수정된 파일 편집",
+ "accessibilitySignals.chatRequestSent": "채팅 요청 전송됨",
+ "accessibilitySignals.chatResponseReceived": "채팅 응답 수신됨",
+ "accessibilitySignals.chatUserActionRequired": "채팅 사용자 작업 필요",
+ "accessibilitySignals.clear": "지우기",
+ "accessibilitySignals.codeActionApplied": "코드 동작 적용됨",
+ "accessibilitySignals.codeActionRequestTriggered": "코드 작업 요청 트리거됨",
+ "accessibilitySignals.diffLineDeleted": "Diff 줄 삭제됨",
+ "accessibilitySignals.diffLineInserted": "Diff 줄 삽입됨",
+ "accessibilitySignals.diffLineModified": "Diff 줄 수정됨",
+ "accessibilitySignals.editsKept": "편집 유지됨",
+ "accessibilitySignals.editsUndone": "편집 실행 취소",
+ "accessibilitySignals.format": "형식",
+ "accessibilitySignals.lineHasBreakpoint.name": "줄의 중단점",
+ "accessibilitySignals.lineHasError.name": "줄에 대한 오류",
+ "accessibilitySignals.lineHasFoldedArea.name": "줄의 접힌 부분",
+ "accessibilitySignals.lineHasInlineSuggestion.name": "줄의 인라인 제안",
+ "accessibilitySignals.lineHasWarning.name": "줄에 대한 경고",
+ "accessibilitySignals.nextEditSuggestion.name": "다음 줄에서 제안 편집",
+ "accessibilitySignals.noInlayHints": "해당 줄에 인레이 힌트 없음",
+ "accessibilitySignals.notebookCellCompleted": "Notebook 셀 완료됨",
+ "accessibilitySignals.notebookCellFailed": "Notebook 셀 실패",
+ "accessibilitySignals.onDebugBreak.name": "중단점에서 중지된 디버거",
+ "accessibilitySignals.positionHasError.name": "위치에 오류 발생",
+ "accessibilitySignals.positionHasWarning.name": "위치의 경고",
+ "accessibilitySignals.progress": "진행률",
+ "accessibilitySignals.save": "저장",
+ "accessibilitySignals.taskCompleted": "작업 완료",
+ "accessibilitySignals.taskFailed": "작업 실패",
+ "accessibilitySignals.terminalBell": "터미널 벨",
+ "accessibilitySignals.terminalCommandFailed": "터미널 명령 실패",
+ "accessibilitySignals.terminalCommandSucceeded": "터미널 명령 성공",
+ "accessibilitySignals.terminalQuickFix.name": "터미널 빠른 수정",
+ "accessibilitySignals.voiceRecordingStarted": "음성 녹음 시작됨",
+ "accessibilitySignals.voiceRecordingStopped": "음성 녹음 중지됨"
+ },
+ "vs/platform/action/common/actionCommonCategories": {
+ "developer": "개발자",
+ "file": "파일",
+ "help": "도움말",
+ "preferences": "기본 설정",
+ "test": "테스트",
+ "view": "보기"
+ },
+ "vs/platform/actions/browser/buttonbar": {
+ "labelWithKeybinding": "{0}({1})",
+ "moreActions": "기타 작업"
+ },
+ "vs/platform/actions/browser/dropdownActionViewItemWithKeybinding": {
+ "titleAndKb": "{0}({1})"
+ },
"vs/platform/actions/browser/menuEntryActionViewItem": {
+ "content": "{0}({1})",
+ "content2": "{1}부터 {0}까지",
"titleAndKb": "{0}({1})",
"titleAndKbAndAlt": "{0}\r\n[{1}] {2}"
},
+ "vs/platform/actions/browser/toolbar": {
+ "hide": "숨기기",
+ "resetThisMenu": "메뉴 다시 설정"
+ },
"vs/platform/actions/common/menuResetAction": {
- "cat": "보기",
- "title": "숨겨진 메뉴 다시 설정"
+ "title": "모든 메뉴 다시 설정"
},
"vs/platform/actions/common/menuService": {
+ "configure keybinding": "키 바인딩 구성",
"hide.label": "'{0}' 숨기기"
},
+ "vs/platform/actionWidget/browser/actionList": {
+ "customQuickFixWidget": "작업 위젯",
+ "customQuickFixWidget.labels": "{0}, 사용 안 함 이유: {1}",
+ "label": "신청하려면 {0}",
+ "label-preview": "적용하려면 {0}, 미리 보기하려면 {1}"
+ },
+ "vs/platform/actionWidget/browser/actionWidget": {
+ "acceptSelected.title": "선택한 작업 수락",
+ "actionBar.toggledBackground": "작업 표시줄에서 토글된 작업 항목의 배경색입니다.",
+ "codeActionMenuVisible": "작업 위젯 목록 표시 여부",
+ "hideCodeActionWidget.title": "작업 위젯 숨기기",
+ "previewSelected.title": "선택한 작업 미리 보기",
+ "selectNextCodeAction.title": "다음 작업 선택",
+ "selectPrevCodeAction.title": "이전 작업 선택"
+ },
"vs/platform/configuration/common/configurationRegistry": {
"config.policy.duplicate": "'{0}'을(를) 등록할 수 없습니다. 연결된 정책 {1}이(가) 이미 {2}에 등록되어 있습니다.",
"config.property.duplicate": "'{0}'을(를) 등록할 수 없습니다. 이 속성은 이미 등록되어 있습니다.",
"config.property.empty": "빈 속성을 등록할 수 없음",
"config.property.languageDefault": "'{0}'을(를) 등록할 수 없습니다. 이는 언어별 편집기 설정을 설명하는 속성 패턴인 '\\\\[.*\\\\]$'과(와) 일치합니다. 'configurationDefaults' 기여를 사용하세요.",
- "defaultLanguageConfiguration.description": "{0}에서 재정의할 설정을 구성합니다.",
+ "defaultLanguageConfiguration.description": "{0}에 대해 재정의할 설정을 구성합니다.",
"defaultLanguageConfigurationOverrides.title": "기본 언어 구성 재정의",
"overrideSettings.defaultDescription": "언어에 대해 재정의할 편집기 설정을 구성합니다.",
"overrideSettings.errorMessage": "이 설정은 언어별 구성을 지원하지 않습니다."
@@ -1426,38 +2103,77 @@
"vs/platform/contextkey/browser/contextKeyService": {
"getContextKeyInfo": "컨텍스트 키에 대한 정보를 반환하는 명령"
},
+ "vs/platform/contextkey/common/contextkey": {
+ "contextkey.parser.error.closingParenthesis": "닫는 괄호 ')'",
+ "contextkey.parser.error.emptyString": "빈 컨텍스트 키 식",
+ "contextkey.parser.error.emptyString.hint": "식 쓰는 것을 잊으셨나요? 항상 'false' 또는 'true'를 넣어 각각 false 또는 true로 평가할 수도 있습니다.",
+ "contextkey.parser.error.expectedButGot": "예상: {0}\r\n수신됨: '{1}'.",
+ "contextkey.parser.error.noInAfterNot": "'not' 뒤에 'in'이 있습니다.",
+ "contextkey.parser.error.unexpectedEOF": "필요하지 않은 식의 끝",
+ "contextkey.parser.error.unexpectedEOF.hint": "컨텍스트 키를 입력하는 것을 잊으셨나요?",
+ "contextkey.parser.error.unexpectedToken": "예기치 않은 토큰",
+ "contextkey.parser.error.unexpectedToken.hint": "토큰 앞에 && 또는 ||를 입력하는 것을 잊으셨나요?",
+ "contextkey.scanner.errorForLinter": "예기치 않은 토큰입니다.",
+ "contextkey.scanner.errorForLinterWithHint": "예기치 않은 토큰입니다. 힌트: {0}"
+ },
"vs/platform/contextkey/common/contextkeys": {
"inputFocus": "키보드 포커스가 입력 상자 내에 있는지 여부",
"isIOS": "운영 체제가 iOS인지 여부",
"isLinux": "운영 체제가 Linux인지 여부",
"isMac": "운영 체제가 macOS인지 여부",
"isMacNative": "브라우저 기반이 아닌 플랫폼에서 운영 체제가 macOS인지 여부",
+ "isMobile": "플랫폼이 모바일 웹 브라우저인지 여부",
"isWeb": "플랫폼이 웹 브라우저인지 여부",
"isWindows": "운영 체제가 Windows인지 여부",
"productQualityType": "VS 코드의 품질 유형"
},
+ "vs/platform/contextkey/common/scanner": {
+ "contextkey.scanner.hint.didYouForgetToEscapeSlash": "'/'(슬래시) 문자를 이스케이프하는 것을 잊으셨나요? 이스케이프하려면 앞에 백슬라시 두 개(예: '\\\\/')를 넣습니다.",
+ "contextkey.scanner.hint.didYouForgetToOpenOrCloseQuote": "견적을 열거나 닫는 것을 잊으셨나요?",
+ "contextkey.scanner.hint.didYouMean1": "{0}을(를) 사용하시겠습니까?",
+ "contextkey.scanner.hint.didYouMean2": "{0} 또는 {1}을(를) 사용하시겠습니까?",
+ "contextkey.scanner.hint.didYouMean3": "{0}, {1} 또는 {2}을(를) 사용하시겠습니까?"
+ },
+ "vs/platform/dialogs/browser/dialog": {
+ "aboutDetail": "버전: {0}\r\n커밋: {1}\r\n날짜: {2}\r\n브라우저: {3}"
+ },
"vs/platform/dialogs/common/dialogs": {
+ "cancelButton": "취소",
"moreFile": "...1개의 추가 파일이 표시되지 않음",
- "moreFiles": "...{0}개의 추가 파일이 표시되지 않음"
+ "moreFiles": "...{0}개의 추가 파일이 표시되지 않음",
+ "okButton": "확인(&&O)",
+ "yesButton": "예(&&Y)"
+ },
+ "vs/platform/dialogs/electron-browser/dialog": {
+ "aboutDetail": "버전: {0}\r\n커밋: {1}\r\n날짜: {2}\r\nElectron: {3}\r\nElectronBuildId: {4}\r\nChromium: {5}\r\nNode.js: {6}\r\nV8: {7}\r\nOS: {8}"
},
"vs/platform/dialogs/electron-main/dialogMainService": {
"open": "열기",
"openFile": "파일 열기",
"openFolder": "폴더 열기",
"openWorkspace": "열기(&&O)",
- "openWorkspaceTitle": "파일에서 작업 영역 열기"
+ "openWorkspaceTitle": "파일에서 작업 영역 열기",
+ "selectFolder": "&폴더 선택(&S)"
},
"vs/platform/dnd/browser/dnd": {
"fileTooLarge": "파일이 너무 커서 제목 없는 편집기로 열 수 없습니다. 먼저 파일을 파일 탐색기에 업로드한 후 다시 시도하세요."
},
"vs/platform/environment/node/argv": {
"add": "마지막 활성 창에 폴더를 추가합니다.",
+ "addFile": "채팅 세션에 컨텍스트로 파일을 추가합니다.",
+ "addMcp": "사용자 프로필에 모델 컨텍스트 프로토콜 서버 정의를 추가합니다. '{\"name\":\"server-name\",\"command\":...}' 형식의 JSON 입력을 수락합니다.",
"category": "--list-extensions를 사용할 경우 설치된 확장을 제공된 범주를 기준으로 필터링합니다.",
+ "chatMaximize": "채팅 세션 보기를 최대화하세요.",
+ "chatMode": "채팅 세션에 사용할 모드입니다. 사용 가능한 옵션: 'ask', 'edit', 'agent' 또는 사용자 지정 모드의 식별자. 기본값은 'agent'입니다.",
+ "cliDataDir": "CLI 메타데이터를 저장해야 하는 디렉터리입니다.",
+ "cliPrompt": "프롬프트",
"deprecated.useInstead": "대신 {0}을(를) 사용하세요.",
"diff": "두 파일을 서로 비교합니다.",
- "disableExtension": "확장을 사용하지 않도록 설정합니다.",
- "disableExtensions": "설치된 모든 확장을 사용하지 않도록 설정합니다.",
+ "disableChromiumSandbox": "Linux에서 sudo 사용자로 애플리케이션을 시작해야 하는 요구 사항이 있거나, Windows의 applocker 환경에서 관리자 권한 사용자로 실행하는 경우에만 이 옵션을 사용합니다.",
+ "disableExtension": "제공된 확장을 사용하지 않도록 설정합니다. 이 옵션은 유지되지 않으며 명령을 통해 새 창을 여는 경우에만 유효합니다.",
+ "disableExtensions": "설치된 모든 확장을 사용하지 않도록 설정합니다. 이 옵션은 유지되지 않으며 명령을 통해 새 창을 여는 경우에만 유효합니다.",
"disableGPU": "GPU 하드웨어 가속을 사용하지 않도록 설정합니다.",
+ "disableLCDText": "LCD 글꼴 렌더링을 사용하지 않도록 설정합니다.",
"experimentalApis": "확장에 대해 제안된 API 기능을 사용하도록 설정합니다. 개별적으로 사용하도록 설정할 확장 ID를 하나 이상 수신할 수 있습니다.",
"extensionHomePath": "확장의 루트 경로를 설정합니다.",
"extensionsManagement": "확장 관리",
@@ -1469,25 +2185,33 @@
"installExtension": "확장을 설치하거나 업데이트합니다. 인수는 확장 ID 또는 VSIX에 대한 경로입니다. 확장 프로그램의 식별자는 '${publisher}.${name}'입니다. 최신 버전으로 업데이트하려면 '--force' 인수를 사용하세요. 특정 버전을 설치하려면 '@${version}'을(를) 제공하세요. 예: 'vscode.csharp@1.2.3'.",
"listExtensions": "설치된 확장을 나열합니다.",
"locale": "사용할 로캘(예: en-US 또는 zh-TW)입니다.",
- "log": "사용할 로그 수준이며 기본값은 'info'입니다. 허용되는 값은 'critical', 'error', 'warn', 'info', 'debug', 'trace', 'off'입니다.",
- "maxMemory": "윈도우에 대한 최대 메모리 크기 (단위 MB).",
+ "locateShellIntegrationPath": "터미널 셸 통합 스크립트의 경로를 인쇄합니다. 허용되는 값은 'bash', 'pwsh', 'zsh' 또는 'fish'입니다.",
+ "log": "사용할 로그 수준입니다. 기본값은 'info'입니다. 허용되는 값은 'critical', 'error', 'warn', 'info', 'debug', 'trace', 'off'입니다. 확장 id 및 로그 수준을 '${publisher}.${name}:${logLevel}' 형식으로 전달하여 확장의 로그 수준을 구성할 수도 있습니다(예: 'vscode.csharp:trace'). 이러한 항목을 하나 이상 수신할 수 있습니다.",
+ "mcp": "모델 컨텍스트 프로토콜",
"merge": "파일의 두 가지 수정된 버전, 즉 두 수정된 버전의 공통 원본 및 병합 결과를 저장하기 위한 출력 파일에 대한 경로를 제공하여 3방향 병합을 수행합니다.",
"newWindow": "새 창을 강제로 엽니다.",
+ "newWindowForChat": "채팅 세션을 위해 빈 창을 강제로 엽니다.",
"options": "옵션",
"optionsUpperCase": "옵션",
"paths": "경로",
"prof-startup": "시작하는 동안 CPU 프로파일러를 실행합니다.",
+ "profileName": "제공된 폴더 또는 작업 영역을 지정된 프로필과 함께 열고 프로필을 작업 영역과 연결합니다. 프로필이 없으면 비어 있는 새 프로필이 만들어집니다.",
+ "prompt": "채팅에 사용할 프롬프트입니다.",
+ "remove": "마지막 활성 창에서 폴더를 제거합니다.",
"reuseWindow": "이미 열려 있는 창에서 파일 또는 폴더를 강제로 엽니다.",
+ "reuseWindowForChat": "채팅 세션에 마지막으로 활성화된 창을 강제로 사용합니다.",
"showVersions": "--list-extensions를 사용할 경우 설치된 확장의 버전을 표시합니다.",
"status": "프로세스 사용 및 진단 정보를 인쇄합니다.",
- "stdinUnix": "stdin에서 읽어오려면, '-'를 추가하세요.(예. 'ps aux | grep code | {0} -')",
- "stdinWindows": "다른 프로그램의 출력을 읽으려면, '-'를 추가하세요. (예: 'echo Hello World | {0} -')",
+ "stdinUsage": "stdin에서 읽어오려면, '-'를 추가하세요(예: '{0}').",
+ "subcommands": "하위 명령",
"telemetry": "VS Code에서 수집하는 원격 분석 이벤트를 모두 표시합니다.",
+ "transient": "처음 실행하는 것처럼 임시 데이터와 확장 디렉터리로 실행합니다.",
"troubleshooting": "문제 해결",
"turn sync": "동기화를 켜거나 끕니다.",
"uninstallExtension": "확장을 제거합니다.",
"unknownCommit": "알 수 없는 커밋",
"unknownVersion": "알 수 없는 버전",
+ "updateExtensions": "설치된 확장을 업데이트합니다.",
"usage": "사용법",
"userDataDir": "사용자 데이터가 저장되는 디렉터리를 지정합니다. Code의 여러 고유 인스턴스를 여는 데 사용할 수 있습니다.",
"verbose": "자세한 정보 표시를 출력합니다(--wait를 의미).",
@@ -1499,33 +2223,62 @@
"emptyValue": "옵션 '{0}'에는 비어 있지 않은 값이 필요합니다. 옵션을 무시합니다.",
"gotoValidation": "`--goto` 모드에서 인수는 `FILE(:LINE(:CHARACTER))` 형식이어야 합니다.",
"multipleValues": "옵션 '{0}'이(가) 두 번 이상 정의되었습니다. 값 '{1}'을(를) 사용하세요.",
- "unknownOption": "경고: '{0}'은(는) 알려진 옵션 목록에 없지만 Electron/Chromium에 계속 전달됩니다."
+ "unknownOption": "경고: '{0}'은(는) 알려진 옵션 목록에 없지만 Electron/Chromium에 계속 전달됩니다.",
+ "unknownSubCommandOption": "경고: '{0}'은(는) 하위 명령 '{1}에 대한 알려진 옵션 목록에 없습니다."
},
"vs/platform/extensionManagement/common/abstractExtensionManagementService": {
"MarketPlaceDisabled": "Marketplace를 사용할 수 없습니다.",
- "Not a Marketplace extension": "마켓플레이스 확장만 다시 설치할 수 있습니다.",
"incompatible platform": "'{0}' 확장자는 {2}에 대해 {1}에서 사용할 수 없습니다.",
+ "incompatibleAPI": "'{0}' 확장을 설치할 수 없습니다. {1}",
+ "learn why": "이유 확인",
"malicious extension": "문제가 있다고 보고되었으므로 '{0}' 확장을 설치할 수 없습니다.",
"multipleDependentsError": "'{0}' 확장을 제거할 수 없습니다. '{1}', '{2}' 및 기타 확장이 이 확장에 종속됩니다.",
"multipleIndirectDependentsError": "'{0}' 확장을 제거할 수 없습니다. '{1}' 확장 제거를 포함하며 '{2}', '{3}' 및 기타 확장이 이 확장에 종속됩니다.",
+ "not allowed to install": "{0} 때문에 이 확장을 설치할 수 없습니다.",
"notFoundCompatibleDependency": "'{0}' 확장은 현재 버전의 {1}(버전 {2})와 호환되지 않기 때문에 설치할 수 없습니다.",
- "notFoundCompatiblePrereleaseDependency": "'{0}' 확장 시험판은 현재 버전의 {1}(버전 {2})와 호환되지 않기 때문에 설치할 수 없습니다.",
+ "notFoundDeprecatedReplacementExtension": "'{0}' 확장은 더 이상 사용되지 않으며 대체 확장 '{1}'을(를) 찾을 수 없기 때문에 설치할 수 없습니다.",
"notFoundReleaseExtension": "릴리스 버전이 없으므로 '{0}' 확장의 릴리스 버전을 설치할 수 없습니다.",
"singleDependentError": "'{0}' 확장을 제거할 수 없습니다. '{1}' 확장이 이 확장에 종속됩니다.",
"singleIndirectDependentError": "'{0}' 확장을 제거할 수 없습니다. '{1}' 확장 제거를 포함하며 '{2}' 확장이 이 확장에 종속됩니다.",
"twoDependentsError": "'{0}' 확장을 제거할 수 없습니다. '{1}' 및 '{2}' 확장이 이 확장에 종속됩니다.",
"twoIndirectDependentsError": "'{0}' 확장을 제거할 수 없습니다. '{1}' 확장 제거를 포함하며 '{2}' 및 '{3}' 확장이 이 확장에 종속됩니다."
},
+ "vs/platform/extensionManagement/common/allowedExtensionsService": {
+ "extension prerelease not allowed": "이 확장의 시험판 버전이 [allowed list]({0})에 없습니다.",
+ "prerelease versions from this publisher not allowed": "이 게시자의 시험판 버전이 [allowed list]({1})에 없습니다.",
+ "publisher not allowed": "이 게시자의 확장이 [allowed list]({1})에 없습니다.",
+ "specific extension not allowed": "[allowed list]({0})에 없습니다.",
+ "specific version of extension not allowed": "이 확장의 {0} 버전이 [allowed list]({1})에 없습니다."
+ },
"vs/platform/extensionManagement/common/extensionManagement": {
+ "extension.publisher.allow.description": "게시자의 모든 확장을 허용하거나 허용하지 않습니다.",
"extensions": "확장",
+ "extensions.allow.all.description": "모든 확장을 허용하거나 허용하지 않습니다.",
+ "extensions.allow.all.disable": "모든 확장을 허용하지 않습니다.",
+ "extensions.allow.all.enable": "모든 확장을 허용합니다.",
+ "extensions.allow.description": "확장을 허용하거나 허용하지 않습니다.",
+ "extensions.allow.version.description": "특정 버전의 확장을 허용하거나 허용하지 않습니다. 플랫폼별 버전을 지정하려면 'platform@1.2.3' 형식(예: 'win32-x64@1.2.3')을 사용합니다. 지원되는 플랫폼은 'win32-x64', 'win32-arm64', 'linux-x64', 'linux-arm64', 'linux-armhf', 'alpine-x64', 'alpine-arm64', 'darwin-x64', 'darwin-arm64'입니다.",
+ "extensions.allowed": "사용할 수 있는 확장 목록을 지정합니다. 이는 권한 없는 확장의 사용을 제한하여 안전하고 일관된 개발 환경을 유지하는 데 도움이 됩니다. 이 설정을 구성하는 방법에 대한 자세한 내용은 [허용된 확장 구성](https://code.visualstudio.com/docs/setup/enterprise#_configure-allowed-extensions) 섹션을 방문하세요.",
+ "extensions.allowed.all": "모든 확장이 허용됩니다.",
+ "extensions.allowed.disable.desc": "확장이 허용되지 않습니다.",
+ "extensions.allowed.disable.stable.desc": "안정적인 버전의 확장만 허용합니다.",
+ "extensions.allowed.enable.desc": "확장이 허용됩니다.",
+ "extensions.allowed.none": "확장이 허용되지 않습니다.",
+ "extensions.allowed.policy": "사용할 수 있는 확장 목록을 지정합니다. 이는 권한 없는 확장의 사용을 제한하여 안전하고 일관된 개발 환경을 유지하는 데 도움이 됩니다. 추가 정보: https://code.visualstudio.com/docs/setup/enterprise#_configure-allowed-extensions",
+ "extensions.publisher.allowed.disable.desc": "게시자의 모든 확장은 허용되지 않습니다.",
+ "extensions.publisher.allowed.disable.stable.desc": "게시자의 안정적인 확장 버전만 허용합니다.",
+ "extensions.publisher.allowed.enable.desc": "게시자의 모든 확장이 허용됩니다.",
+ "extensionsConfigurationTitle": "확장",
"preferences": "기본 설정"
},
- "vs/platform/extensionManagement/common/extensionManagementCLIService": {
+ "vs/platform/extensionManagement/common/extensionManagementCLI": {
"alreadyInstalled": "'{0}' 확장이 이미 설치되어 있습니다.",
"alreadyInstalled-checkAndUpdate": "확장 '{0}' v{1}이(가) 이미 설치되어 있습니다. '--force' 옵션을 사용하여 최신 버전으로 업데이트하거나 '@'을 제공하여 특정 버전을 설치합니다. 예: '{2}@1.2.3'",
"builtin": "'{0}' 확장은 기본 제공 확장이므로 제거할 수 없습니다.",
- "cancelInstall": "'{0}' 확장 설치를 취소했습니다.",
"cancelVsixInstall": "'{0}' 확장 설치를 취소했습니다.",
+ "error while installing extensions": "확장 프로그램 설치 중 오류: {0}",
+ "errorInstallingExtension": "확장 {0} 설치 중 오류: {1}",
+ "errorUpdatingExtension": "확장 {0}을(를) 업데이트하는 동안 오류가 발생했습니다. {1}",
"forceDowngrade": "'{0}' v{1} 확장의 최신 버전이 이미 설치되어 있습니다. '--force' 옵션을 사용하여 이전 버전으로 다운그레이드하세요.",
"forceUninstall": "사용자가 '{0}' 확장을 기본 제공 확장으로 표시했습니다. 제거하려면 '--force' 옵션을 사용하세요.",
"installation failed": "확장 설치 실패: {0}",
@@ -1542,49 +2295,51 @@
"successInstall": "'{0}' v{1} 확장이 설치되었습니다.",
"successUninstall": "'{0}' 확장이 성공적으로 제거되었습니다!",
"successUninstallFromLocation": "{1}에서 '{0}' 확장을 제거했습니다!",
+ "successUpdate": "'{0}' v{1} 확장이 업데이트 되었습니다.",
"successVsixInstall": "'{0}' 확장이 설치되었습니다.",
"uninstalling": "{0}을(를) 제거하는 중...",
+ "updateExtensionsNewVersionsAvailable": "확장 업데이트 중: {0}",
+ "updateExtensionsNoExtensions": "업데이트할 확장 없음",
+ "updateExtensionsQuery": "{0} 확장의 최신 버전을 가져오는 중",
"updateMessage": "'{0}' 확장을 버전 {1}(으)로 업데이트하는 중",
"useId": "게시자를 포함하여 전체 확장 ID를 사용하세요(예: {0})."
},
+ "vs/platform/extensionManagement/common/extensionNls": {
+ "missingNLSKey": "키 {0}에 대한 메시지를 찾을 수 없습니다."
+ },
"vs/platform/extensionManagement/common/extensionsScannerService": {
"fileReadFail": "파일 {0}을(를) 읽을 수 없음: {1}.",
"jsonInvalidFormat": "형식 {0}이(가) 잘못됨: JSON 개체가 필요합니다.",
"jsonParseFail": "{0}을(를) 구문 분석하지 못했습니다. [{1}, {2}] {3}.",
"jsonParseInvalidType": "잘못된 매니페스트 파일 {0}: JSON 개체가 아닙니다.",
- "jsonsParseReportErrors": "{0}을(를) 구문 분석하지 못함: {1}.",
- "missingNLSKey": "키 {0}에 대한 메시지를 찾을 수 없습니다."
- },
- "vs/platform/extensionManagement/electron-sandbox/extensionTipsService": {
- "exeRecommended": "시스템에 {0}이(가) 설치되어 있습니다. 권장되는 확장을 설치하시겠습니까?"
+ "jsonsParseReportErrors": "{0}을(를) 구문 분석하지 못함: {1}."
},
"vs/platform/extensionManagement/node/extensionManagementService": {
"cannot read": "{0}에서 확장을 읽을 수 없음",
"errorDeleting": "'{1}' 확장을 설치하는 동안 기존 '{0}' 폴더를 삭제할 수 없습니다. 폴더를 수동으로 삭제하고 다시 시도하세요.",
- "exitCode": "확장을 설치할 수 없습니다. 다시 설치하기 전에 VS 코드를 종료한 후 다시 시작하십시오.",
"incompatible": "VS Code '{1}'과(와) 호환되지 않으므로 확장 '{0}'을(를) 설치할 수 없습니다.",
- "notInstalled": "'{0}' 확장이 설치되어 있지 않습니다.",
- "quitCode": "확장을 설치할 수 없습니다. 다시 설치하기 위해 VS Code를 종료하고 다시 시작하십시오.",
- "removeError": "확장을 제거하는 동안 오류가 발생했습니다. {0}. 다시 시도하기 전에 VS Code를 종료하고 다시 시작하세요.",
- "renameError": "이름을 {0}에서 {1}(으)로 변경하는 중 알 수 없는 오류 발생",
- "restartCode": "{0}을(를) 다시 설치하기 전에 VS Code를 다시 시작하세요."
+ "invalidManifest": "Marketplace와의 매니페스트 불일치로 인해 '{0}' 확장을 설치할 수 없음",
+ "notAllowed": "{0} 때문에 이 확장을 설치할 수 없습니다.",
+ "restartCode": "{0}을(를) 다시 설치하기 전에 VS Code를 다시 시작하세요.",
+ "signature verification failed": "'{0}' 오류로 서명 확인에 실패했습니다.",
+ "signature verification not executed": "서명 확인이 실행되지 않았습니다."
},
"vs/platform/extensionManagement/node/extensionManagementUtil": {
"invalidManifest": "잘못된 VSIX: package.json이 JSON 파일이 아닙니다."
},
"vs/platform/extensions/common/extensionValidator": {
+ "apiProposalMismatch1": "이 확장은 현재 버전의 VS Code 호환되지 않는 API 제안 '{0}'을 사용하고 있습니다.",
+ "apiProposalMismatch2": "이 확장은 현재 버전의 VS Code 호환되지 않는 API 제안 '{0}' 및 ‘{1}’을(를) 사용하고 있습니다.",
"extensionDescription.activationEvents1": "속성 `{0}`은(는) 생략할 수 있으며 `string[]` 형식이어야 합니다.",
- "extensionDescription.activationEvents2": "속성 `{0}` 및 `{1}`은(는) 둘 다 지정하거나 둘 다 생략해야 합니다.",
+ "extensionDescription.activationEvents2": "확장에 '{1}' 또는 '{2}' 속성이 없는 경우 '{0}' 속성을 생략해야 합니다.",
"extensionDescription.browser1": "속성 '{0}'은(는) 생략할 수 있으며 'string' 형식이어야 합니다.",
"extensionDescription.browser2": "확장의 폴더({1}) 내에 포함할 `browser`({0})가 필요합니다. 이로 인해 확장이 이식 불가능한 상태가 될 수 있습니다.",
- "extensionDescription.browser3": "속성 `{0}` 및 `{1}`은(는) 둘 다 지정하거나 둘 다 생략해야 합니다.",
"extensionDescription.engines": "속성 `{0}`은(는) 필수이며 `object` 형식이어야 합니다.",
"extensionDescription.engines.vscode": "속성 '{0}'은(는) 필수이며 'string' 형식이어야 합니다.",
"extensionDescription.extensionDependencies": "속성 `{0}`은(는) 생략할 수 있으며 `string[]` 형식이어야 합니다.",
"extensionDescription.extensionKind": "'main' 속성도 정의된 경우에만 '{0}' 속성을 정의할 수 있습니다.",
"extensionDescription.main1": "`{0}` 속성은 생략할 수 있거나 `string` 형식이어야 함",
"extensionDescription.main2": "확장의 폴더({1}) 내에 포함할 `main`({0})이 필요합니다. 이로 인해 확장이 이식 불가능한 상태가 될 수 있습니다.",
- "extensionDescription.main3": "속성 `{0}` 및 `{1}`은(는) 둘 다 지정하거나 둘 다 생략해야 합니다.",
"extensionDescription.name": "속성 '{0}'은(는) 필수이며 'string' 형식이어야 합니다.",
"extensionDescription.publisher": "속성 게시자 는 'string' 형식이어야 합니다.",
"extensionDescription.version": "속성 '{0}'은(는) 필수이며 'string' 형식이어야 합니다.",
@@ -1606,9 +2361,27 @@
"fileSystemNotAllowedError": "권한이 부족합니다. 작업을 다시 시도하고 허용하세요.",
"fileSystemRenameError": "이름 바꾸기는 파일에 대해서만 지원됩니다."
},
+ "vs/platform/files/browser/indexedDBFileSystemProvider": {
+ "dirIsNotEmpty": "디렉터리가 비어 있지 않음",
+ "fileExceedsStorageQuota": "파일이 사용 가능한 스토리지 할당량을 초과합니다.",
+ "fileIsDirectory": "파일이 디렉터리임",
+ "fileNotDirectory": "파일이 디렉터리가 아님",
+ "fileNotExists": "파일이 없음",
+ "internal": "IndexedDB 파일 시스템 공급자에서 내부 오류가 발생했습니다. ({0})"
+ },
+ "vs/platform/files/common/files": {
+ "sizeB": "{0}B",
+ "sizeGB": "{0}GB",
+ "sizeKB": "{0}KB",
+ "sizeMB": "{0}MB",
+ "sizeTB": "{0}TB",
+ "unknownError": "알 수 없는 오류"
+ },
"vs/platform/files/common/fileService": {
+ "deleteFailedAtomicUnsupported": "공급자가 '{0}' 파일을 지원하지 않으므로 이를 원자 단위로 삭제할 수 없습니다.",
"deleteFailedNonEmptyFolder": "비어 있지 않은 폴더 '{0}'을(를) 삭제할 수 없습니다.",
"deleteFailedNotFound": "존재하지 않는 파일 '{0}'을(를) 삭제할 수 없습니다.",
+ "deleteFailedTrashAndAtomicUnsupported": "휴지통을 사용할 수 있으므로 '{0}' 파일을 원자 단위로 삭제할 수 없습니다.",
"deleteFailedTrashUnsupported": "공급자가 지원하지 않기 때문에 휴지통을 통해 파일 '{0}'을(를) 삭제할 수 없습니다.",
"err.read": "파일 '{0}'({1})을(를) 읽을 수 없음",
"err.readonly": "읽기 전용 파일 '{0}'을(를) 수정할 수 없습니다.",
@@ -1622,53 +2395,50 @@
"fileTooLargeError": "너무 커서 열 수 없는 '{0}' 파일을 읽을 수 없습니다.",
"invalidPath": "상대 파일 경로 '{0}'(으)로 파일 시스템 공급자를 확인할 수 없습니다.",
"mkdirExistsError": "이미 존재하지만 디렉터리가 아닌 폴더 '{0}'을(를) 만들 수 없습니다.",
- "noProviderFound": "리소스 '{0}'에 대한 파일 시스템 공급자를 찾을 수 없습니다.",
+ "noProviderFound": "ENOPRO: 리소스 '{0}'에 대한 파일 시스템 공급자를 찾을 수 없습니다.",
"unableToMoveCopyError1": "대/소문자를 구분하지 않는 파일 시스템에서 소스 '{0}'이(가) 다른 경로 대/소문자의 대상 '{1}'과(와) 같으면 복사할 수 없습니다.",
"unableToMoveCopyError2": "소스 '{0}'이(가) 대상 '{1}'의 부모인 경우 이동/복사할 수 없습니다.",
"unableToMoveCopyError3": "대상 '{1}'이(가) 이미 목적지에 있으므로 '{0}'을(를) 이동/복사할 수 없습니다.",
"unableToMoveCopyError4": "파일이 포함된 폴더를 대체하므로 '{0}'을(를) '{1}'(으)로 이동/복사할 수 없습니다.",
+ "writeFailedAtomicUnlock": "원자성 쓰기를 사용하도록 설정했으므로 '{0}' 파일의 잠금을 해제할 수 없습니다.",
+ "writeFailedAtomicUnsupported1": "공급자가 지원하지 않으므로 '{0}' 파일을 원자 단위로 쓸 수 없습니다.",
+ "writeFailedAtomicUnsupported2": "공급자가 버퍼링되지 않은 쓰기를 지원하지 않으므로 '{0}' 파일을 원자 단위로 쓸 수 없습니다.",
"writeFailedUnlockUnsupported": "공급자가 지원하지 않기 때문에 '{0}' 파일의 잠금을 해제할 수 없습니다."
},
- "vs/platform/files/common/files": {
- "sizeB": "{0}B",
- "sizeGB": "{0}GB",
- "sizeKB": "{0}KB",
- "sizeMB": "{0}MB",
- "sizeTB": "{0}TB",
- "unknownError": "알 수 없는 오류"
- },
"vs/platform/files/common/io": {
- "fileTooLargeError": "파일이 너무 커서 열 수 없음",
- "fileTooLargeForHeapError": "이 크기의 파일을 열려면 다시 시작하여 더 많은 메모리를 사용하도록 허용해야 합니다"
+ "fileTooLargeError": "파일이 너무 커서 열 수 없음"
},
"vs/platform/files/electron-main/diskFileSystemProviderServer": {
- "binFailed": "'{0}'을(를) 휴지통으로 이동하지 못함",
- "trashFailed": "'{0}'을(를) 휴지통으로 이동하지 못함"
+ "binFailed": "'{0}'을(를) 휴지통으로 이동하지 못함({1})",
+ "trashFailed": "'{0}'을(를) 휴지통으로 이동하지 못함({1})"
},
"vs/platform/files/node/diskFileSystemProvider": {
"copyError": "'{0}'을(를) '{1}'({2})(으)로 복사할 수 없습니다.",
- "fileCopyErrorExists": "대상에 파일이 이미 있습니다.",
- "fileCopyErrorPathCase": "'파일은 다른 경로 대/소문자를 가진 동일한 경로로 복사할 수 없습니다.",
+ "fileCopyErrorPathCase": "파일은 다른 경로 대/소문자를 가진 동일한 경로로 복사할 수 없습니다.",
"fileExists": "파일이 이미 있습니다.",
+ "fileMoveCopyErrorExists": "대상에 파일이 이미 있으므로 덮어쓰기를 지정하지 않으면 이동/복사되지 않습니다.",
+ "fileMoveCopyErrorNotFound": "이동/복사할 파일이 없습니다.",
"fileNotExists": "파일이 없음",
"moveError": "'{0}'을 (를) '{1}'({2})(으)로 이동할 수 없습니다."
},
"vs/platform/history/browser/contextScopedHistoryWidget": {
"suggestWidgetVisible": "제안이 표시되는지 여부"
},
- "vs/platform/issue/electron-main/issueMainService": {
- "cancel": "취소(&&C)",
- "confirmCloseIssueReporter": "입력이 저장되지 않습니다. 이 창을 닫으시겠습니까?",
- "issueReporter": "문제 보고자",
- "issueReporterWriteToClipboard": "GitHub에 직접 보낼 데이터가 너무 많으므로 데이터가 클립보드에 복사됩니다. 열려 있는 GitHub 문제 페이지에 해당 데이터를 붙여넣으세요.",
- "local": "LOCAL",
- "ok": "확인(&&O)",
- "processExplorer": "프로세스 탐색기",
- "yes": "예(&&Y)"
+ "vs/platform/hover/browser/hoverWidget": {
+ "hoverhint": "{0} 키를 눌러 마우스를 위에 놓기"
+ },
+ "vs/platform/hover/browser/updatableHoverWidget": {
+ "iconLabel.loading": "로드 중..."
},
"vs/platform/keybinding/common/abstractKeybindingService": {
"first.chord": "({0})을(를) 눌렀습니다. 둘째 키는 잠시 기다렸다가 누르십시오...",
- "missing.chord": "키 조합({0}, {1})은 명령이 아닙니다."
+ "missing.chord": "키 조합({0}, {1})은 명령이 아닙니다.",
+ "next.chord": "({0})을(를) 눌렀습니다. 코드의 다음 키를 기다리는 중..."
+ },
+ "vs/platform/keyboardLayout/common/keyboardConfig": {
+ "dispatch": "`code`(권장) 또는 `keyCode`를 사용하는 키 누름에 대한 디스패치 논리를 제어합니다.",
+ "keyboardConfigurationTitle": "키보드",
+ "mapAltGrToCtrlAlt": "AltGraph+ 한정자를 Ctrl+Alt+로 처리해야 하는지를 제어합니다."
},
"vs/platform/languagePacks/common/languagePacks": {
"currentDisplayLanguage": " (현재)"
@@ -1681,6 +2451,9 @@
"vs/platform/list/browser/listService": {
"Fast Scroll Sensitivity": "'Alt' 키를 누를 때 스크롤 속도 승수입니다.",
"Mouse Wheel Scroll Sensitivity": "마우스 휠 스크롤 이벤트의 `deltaX` 및 `deltaY`에서 사용할 승수입니다.",
+ "defaultFindMatchTypeSettingKey": "워크벤치에서 목록 및 트리를 검색할 때 사용하는 일치 유형을 제어합니다.",
+ "defaultFindMatchTypeSettingKey.contiguous": "검색할 때 연속 일치를 사용합니다.",
+ "defaultFindMatchTypeSettingKey.fuzzy": "검색할 때 유사 항목 일치를 사용합니다.",
"defaultFindModeSettingKey": "워크벤치에서 목록 및 트리의 기본 찾기 모드를 제어합니다.",
"defaultFindModeSettingKey.filter": "검색할 때 요소를 필터링합니다.",
"defaultFindModeSettingKey.highlight": "검색할 때 요소를 강조 표시합니다. 추가 위아래 탐색은 강조 표시된 요소만 탐색합니다.",
@@ -1690,23 +2463,53 @@
"keyboardNavigationSettingKey.filter": "키보드 탐색 필터링에서는 키보드 입력과 일치하지 않는 요소를 모두 필터링하여 숨깁니다.",
"keyboardNavigationSettingKey.highlight": "키보드 탐색 강조 표시에서는 키보드 입력과 일치하는 요소를 강조 표시합니다. 이후로 탐색에서 위 및 아래로 이동하는 경우 강조 표시된 요소만 트래버스합니다.",
"keyboardNavigationSettingKey.simple": "간단한 키보드 탐색에서는 키보드 입력과 일치하는 요소에 집중합니다. 일치는 접두사에서만 수행됩니다.",
- "keyboardNavigationSettingKeyDeprecated": "대신 'workbench.list.defaultFindMode'를 사용하세요.",
+ "keyboardNavigationSettingKeyDeprecated": "대신 'workbench.list.defaultFindMode' 및 'workbench.list.typeNavigationMode'를 사용하세요.",
"list smoothScrolling setting": "목록과 트리에 부드러운 화면 이동 기능이 있는지를 제어합니다.",
+ "list.scrollByPage": "스크롤 막대 스크롤 페이지의 페이지별 클릭 여부를 제어합니다.",
"multiSelectModifier": "마우스로 트리와 목록의 항목을 다중 선택에 추가할 때 사용할 한정자입니다(예를 들어 탐색기에서 편집기와 SCM 보기를 여는 경우). '옆에서 열기' 마우스 제스처(지원되는 경우)는 다중 선택 한정자와 충돌하지 않도록 조정됩니다.",
"multiSelectModifier.alt": "Windows와 Linux의 'Alt'를 macOS의 'Option'으로 매핑합니다.",
"multiSelectModifier.ctrlCmd": "Windows와 Linux의 'Control'을 macOS의 'Command'로 매핑합니다.",
"openModeModifier": "트리와 목록에서 마우스를 사용하여 항목을 여는 방법을 제어합니다(지원되는 경우). 일부 트리와 목록에서는 이 설정을 적용할 수 없는 경우 무시하도록 선택할 수 있습니다.",
"render tree indent guides": "트리에서 들여쓰기 가이드를 렌더링할지 여부를 제어합니다.",
+ "sticky scroll": "트리에서 고정 스크롤을 사용할지 여부를 제어합니다.",
+ "sticky scroll maximum items": "{0}을(를) 사용하도록 설정한 경우 트리에 표시되는 고정 요소의 수를 제어합니다.",
"tree indent setting": "트리 들여쓰기를 픽셀 단위로 제어합니다.",
+ "typeNavigationMode2": "워크벤치의 목록 및 트리에서 형식 탐색이 작동하는 방식을 제어합니다. 'trigger'로 설정 시 'list.triggerTypeNavigation' 명령이 실행되면 형식 탐색이 시작됩니다.",
"workbenchConfigurationTitle": "워크벤치"
},
+ "vs/platform/log/common/log": {
+ "debug": "디버그",
+ "error": "오류",
+ "info": "정보",
+ "off": "끄기",
+ "trace": "추적",
+ "warn": "경고"
+ },
"vs/platform/markers/common/markers": {
"sev.error": "오류",
+ "sev.errors": "오류",
"sev.info": "정보",
- "sev.warning": "경고"
+ "sev.infos": "정보",
+ "sev.warning": "경고",
+ "sev.warnings": "경고"
+ },
+ "vs/platform/markers/common/markerService": {
+ "filtered": "\"{0}\" 때문에 문제가 일시 중지되었습니다.",
+ "filtered.network": "\"{0}\" 및 기타 {1} 때문에 문제가 일시 중지되었습니다."
+ },
+ "vs/platform/mcp/common/allowedMcpServersService": {
+ "mcp servers are not allowed": "편집기에서 모델 컨텍스트 프로토콜 서버를 사용할 수 없습니다. [설정]({0})을 확인하세요."
+ },
+ "vs/platform/mcp/common/mcpGalleryService": {
+ "noReadme": "사용 가능한 추가 정보가 없습니다.",
+ "readme.viewInBrowser": "이 서버에 대한 정보는 [여기]({0})에서 확인하실 수 있습니다."
+ },
+ "vs/platform/mcp/common/mcpManagementService": {
+ "not allowed to install": "이 MCP 서버는 {0} 때문에 설치할 수 없습니다."
},
"vs/platform/menubar/electron-main/menubar": {
- "cancel": "취소(&&C)",
+ "cancel": "취소",
+ "exit": "종료(&&E)",
"mAbout": "{0} 정보",
"mBringToFront": "모두 맨 앞으로 가져오기",
"mEdit": "편집(&&E)",
@@ -1741,42 +2544,125 @@
"miRestartToUpdate": "다시 시작 및 업데이트(&&U)",
"miSwitchWindow": "창 전환(&&W)...",
"quit": "종료(&&Q)",
- "quitMessage": "종료하시겠습니까?"
+ "quitMessage": "종료하시겠습니까?",
+ "quitMessageMac": "종료하시겠습니까?"
},
"vs/platform/native/electron-main/nativeHostMainService": {
- "cancel": "취소(&&C)",
+ "cancel": "취소",
"cantCreateBinFolder": "셸 명령 '{0}'을(를) 설치할 수 없습니다.",
"cantUninstall": "셸 명령 '{0}'을(를) 제거할 수 없습니다.",
+ "copyLink": "링크 복사(&&C)",
"ok": "확인(&&O)",
+ "openExternalErrorLinkMessage": "기본 브라우저에서 링크를 여는 동안 오류가 발생했습니다.",
+ "openExternalProgramErrorMessage": "외부 프로그램을 여는 동안 오류가 발생했습니다.",
"sourceMissing": "'{0}'에서 셸 스크립트를 찾을 수 없습니다.",
+ "trace.detail": "문제를 만들고 다음 파일을 수동으로 연결하세요.\r\n{0}",
+ "trace.message": "추적 파일을 만들었습니다.",
+ "trace.ok": "확인(&&O)",
"warnEscalation": "이제 {0}에서 'osascript'를 사용하여 관리자에게 셸 명령을 설치할 권한이 있는지를 묻습니다.",
"warnEscalationUninstall": "이제 {0}에서 'osascript'를 사용하여 셸 명령을 제거할 관리자 권한이 있는지를 묻습니다."
},
+ "vs/platform/notification/common/notification": {
+ "severityPrefix.error": "오류: {0}",
+ "severityPrefix.info": "정보: {0}",
+ "severityPrefix.warning": "경고: {0}"
+ },
+ "vs/platform/process/electron-main/processMainService": {
+ "local": "로컬"
+ },
"vs/platform/quickinput/browser/commandsQuickAccess": {
- "canNotRun": "명령 '{0}'에서 오류({1})가 발생했습니다.",
+ "canNotRun": "'{0}' 명령에서 오류가 발생했습니다.",
"commandPickAriaLabelWithKeybinding": "{0}, {1}",
+ "commonlyUsed": "일반적으로 사용됨",
"morecCommands": "기타 명령",
- "recentlyUsed": "최근에 사용한 항목"
+ "recentlyUsed": "최근에 사용한 항목",
+ "suggested": "유사한 명령"
},
"vs/platform/quickinput/browser/helpQuickAccess": {
"helpPickAriaLabel": "{0}, {1}"
},
+ "vs/platform/quickinput/browser/quickInput": {
+ "cursorAtEndOfQuickInputBox": "빠른 입력의 커서가 입력 상자의 끝에 있는지 여부",
+ "inQuickInput": "키보드 포커스가 빠른 입력 컨트롤 내에 있는지 여부",
+ "inputModeEntry": "입력을 확인하려면 'Enter' 키를 누르고, 취소하려면 'Esc' 키를 누르세요.",
+ "inputModeEntryDescription": "{0}(확인하려면 'Enter' 키를 누르고, 취소하려면 'Escape' 키를 누름)",
+ "ok": "확인",
+ "quickInput.back": "뒤로",
+ "quickInput.steps": "{0} / {1}",
+ "quickInputAlignment": "빠른 입력의 맞춤",
+ "quickInputBox.ariaLabel": "결과의 범위를 축소하려면 입력하세요.",
+ "quickInputType": "현재 표시되는 빠른 입력 형식임"
+ },
+ "vs/platform/quickinput/browser/quickInputActions": {
+ "nonQuickWidget": "일부 빠른 입력 컨텍스트에서 사용됩니다. 이 명령에 대한 하나의 키 바인딩을 변경하는 경우 이 명령의 다른 모든 키 바인딩(한정자 변형)도 변경해야 합니다.",
+ "quickInput": "빠른 입력 컨텍스트에서 사용됩니다. 이 명령에 대한 하나의 키 바인딩을 변경하는 경우 이 명령의 다른 모든 키 바인딩(한정자 변형)도 변경해야 합니다.",
+ "quickInput.nextSeparatorWithQuickAccessFallback": "빠른 액세스 모드에 있는 경우 다음 항목으로 이동합니다. 빠른 액세스 모드가 아닌 경우 다음 구분 기호로 이동합니다.",
+ "quickInput.previousSeparatorWithQuickAccessFallback": "빠른 액세스 모드인 경우 이전 항목으로 이동합니다. 빠른 액세스 모드가 아닌 경우 이전 구분 기호로 이동합니다.",
+ "quickPick": "빠른 선택 컨텍스트에서 사용됩니다. 이 명령에 대한 하나의 키 바인딩을 변경하는 경우 이 명령의 다른 모든 키 바인딩(한정자 변형)도 변경해야 합니다."
+ },
+ "vs/platform/quickinput/browser/quickInputController": {
+ "custom": "사용자 지정",
+ "ok": "확인",
+ "quickInput.back": "뒤로",
+ "quickInput.backWithKeybinding": "뒤로({0})",
+ "quickInput.checkAll": "모든 확인란 선택/해제",
+ "quickInput.countSelected": "{0} 선택됨",
+ "quickInput.visibleCount": "{0}개 결과"
+ },
+ "vs/platform/quickinput/browser/quickInputList": {
+ "quickInput": "빠른 입력"
+ },
+ "vs/platform/quickinput/browser/quickInputUtils": {
+ "executeCommand": "'{0}' 명령을 실행하려면 클릭"
+ },
+ "vs/platform/quickinput/browser/quickPickPin": {
+ "pinCommand": "Pin 명령",
+ "pinnedCommand": "고정된 명령",
+ "terminal.commands.pinned": "고정됨"
+ },
+ "vs/platform/quickinput/browser/tree/quickInputTreeAccessibilityProvider": {
+ "quickTree": "빠른 트리"
+ },
+ "vs/platform/quickinput/browser/tree/quickTree": {
+ "quickInputBox.ariaLabel": "결과의 범위를 축소하려면 입력하세요."
+ },
+ "vs/platform/remoteTunnel/common/remoteTunnel": {
+ "remoteTunnelLog": "원격 터널 서비스"
+ },
+ "vs/platform/remoteTunnel/node/remoteTunnelService": {
+ "remoteTunnelService.authorizing": "{0}({1})(으)로 연결하는 중",
+ "remoteTunnelService.building": "원본에서 CLI를 빌드하는 중",
+ "remoteTunnelService.openTunnel": "터널을 여는 중",
+ "remoteTunnelService.openTunnelWithName": "터널 {0}을(를) 여는 중",
+ "remoteTunnelService.serviceInstallFailed": "세션부터 터널을 서비스로 설치하지 못했습니다..."
+ },
"vs/platform/request/common/request": {
+ "electronFetch": "Node.js의 페치 구현 대신 Electron의 페치 구현을 사용할지 여부를 제어합니다. 모든 로컬 확장은 전역 페치 API에 대한 Electron의 페치 구현을 가져옵니다.",
+ "fetchAdditionalSupport": "추가 지원을 통해 Node.js 가져오기 구현을 확장할지 여부를 제어합니다. 해당 설정을 사용하도록 설정하면 현재 프록시 지원({1}) 및 시스템 인증서({2})가 추가됩니다. [remote development](https://aka.ms/vscode-remote) 동안 {0} 설정을 사용하지 않도록 설정하는 경우 로컬 및 원격 설정에서 별도로 이 설정을 구성할 수 있습니다.",
"httpConfigurationTitle": "HTTP",
- "proxy": "사용할 프록시 설정입니다. 설정하지 않으면 'http_proxy' 및 'https_proxy' 환경 변수에서 상속됩니다.",
- "proxyAuthorization": "모든 네트워크 요청의 'Proxy-Authorization' 헤더로 보낼 값입니다.",
- "proxySupport": "확장에 대해 프록시 지원을 사용합니다.",
+ "networkInterfaceCheckInterval": "프록시 캐시를 무효화하기 위해 네트워크 인터페이스 변경 내용을 확인하는 간격(초)을 제어합니다. 사용하지 않도록 설정하려면 -1로 설정합니다. [remote development](https://aka.ms/vscode-remote) 중에 {0} 설정이 비활성화되면, 이 설정을 로컬과 원격 설정에서 각각 구성할 수 있습니다.",
+ "noProxy": "HTTP/HTTPS 요청에 대해 프록시 설정을 무시해야 하는 도메인 이름을 지정합니다. [remote development](https://aka.ms/vscode-remote) 동안 {0} 설정을 사용하지 않도록 설정하는 경우 로컬 및 원격 설정에서 별도로 이 설정을 구성할 수 있습니다.",
+ "proxy": "사용할 프록시 설정입니다. 설정하지 않으면 'http_proxy' 및 'https_proxy' 환경 변수에서 상속됩니다. [remote development](https://aka.ms/vscode-remote) 동안 {0} 설정을 사용하지 않도록 설정하는 경우 로컬 및 원격 설정에서 별도로 이 설정을 구성할 수 있습니다.",
+ "proxyAuthorization": "모든 네트워크 요청에 대해 'Proxy-Authorization' 헤더로 보낼 값입니다. [remote development](https://aka.ms/vscode-remote) 동안 {0} 설정을 사용하지 않도록 설정하는 경우 로컬 및 원격 설정에서 별도로 이 설정을 구성할 수 있습니다.",
+ "proxyKerberosServicePrincipal": "Kerberos 인증에 대한 주 서비스 이름을 HTTP 프록시로 재정의합니다. 프록시 호스트 이름을 기반으로 하는 기본값은 설정되지 않은 경우에 사용됩니다. [remote development](https://aka.ms/vscode-remote) 동안 {0} 설정을 사용하지 않도록 설정하는 경우 로컬 및 원격 설정에서 별도로 이 설정을 구성할 수 있습니다.",
+ "proxySupport": "확장에 프록시 지원을 사용합니다. [remote development](https://aka.ms/vscode-remote) 동안 {0} 설정을 사용하지 않도록 설정하는 경우 로컬 및 원격 설정에서 별도로 이 설정을 구성할 수 있습니다.",
"proxySupportFallback": "프록시를 찾을 수 없는 경우 확장에 대한 프록시 지원을 사용하도록 설정하고 요청 옵션으로 대체합니다.",
"proxySupportOff": "확장에 대한 프록시 지원을 사용하지 않도록 설정합니다.",
"proxySupportOn": "확장에 대한 프록시 지원을 사용하도록 설정합니다.",
"proxySupportOverride": "확장에 대한 프록시 지원을 사용하지 않도록 설정하고 요청 옵션을 재정의합니다.",
- "strictSSL": "제공된 CA 목록에 대해 프록시 서버 인증서를 확인해야 하는지 여부를 제어합니다.",
- "systemCertificates": "OS에서 CA 인증서를 로드해야 하는지 여부를 제어합니다(Windows 및 macOS에서는 이 기능을 끈 후 창을 다시 로드해야 함)."
+ "strictSSL": "제공된 CA 목록에 대해 프록시 서버 인증서를 확인해야 하는지 여부를 제어합니다. [remote development](https://aka.ms/vscode-remote) 동안 {0} 설정을 사용하지 않도록 설정하는 경우 로컬 및 원격 설정에서 별도로 이 설정을 구성할 수 있습니다.",
+ "systemCertificates": "OS에서 CA 인증서를 로드해야 하는지 여부를 제어합니다. Windows 및 macOS에서는 이 기능을 끈 후 창을 다시 로드해야 합니다. [remote development](https://aka.ms/vscode-remote) 동안 {0} 설정을 사용하지 않도록 설정하는 경우 로컬 및 원격 설정에서 별도로 이 설정을 구성할 수 있습니다.",
+ "systemCertificatesNode": "Node.js 기본 제공 지원을 사용하여 시스템 인증서를 로드해야 하는지 여부를 제어합니다. 이 설정을 변경한 후 창을 다시 로드합니다. [remote development](https://aka.ms/vscode-remote) 중에 {0} 설정이 비활성화되면, 이 설정을 로컬과 원격 설정에서 각각 구성할 수 있습니다.",
+ "systemCertificatesV2": "OS에서 CA 인증서의 실험적 로드를 사용하도록 설정할지 여부를 제어합니다. 기본 구현보다 더 일반적인 방법을 사용합니다. [remote development](https://aka.ms/vscode-remote) 동안 {0} 설정을 사용하지 않도록 설정하는 경우 로컬 및 원격 설정에서 별도로 이 설정을 구성할 수 있습니다.",
+ "useLocalProxy": "원격 확장 호스트에서 로컬 프록시 구성을 사용할지 여부를 제어합니다. 이 설정은 [remote development](https://aka.ms/vscode-remote). 중에 원격 설정으로만 적용됩니다."
},
"vs/platform/shell/node/shellEnv": {
"resolveShellEnvError": "셸 환경 {0}을(를) 확인할 수 없습니다.",
"resolveShellEnvExitError": "생성된 셸의 예기치 않은 종료 코드(코드 {0}, 신호 {1})",
- "resolveShellEnvTimeout": "적절한 시간 내에 셸 환경을 해결할 수 없습니다. 셸 구성을 확인하세요."
+ "resolveShellEnvTimeout": "적절한 시간 내에 셸 환경을 확인할 수 없습니다. 셸 구성을 검토하고 다시 시작하세요."
+ },
+ "vs/platform/telemetry/common/telemetryLogAppender": {
+ "telemetryLog": "원격 분석{0}"
},
"vs/platform/telemetry/common/telemetryService": {
"enableTelemetryDeprecated": "이 설정이 false이면 새 설정 값에 관계없이 원격 분석이 전송되지 않습니다. {0} 설정으로 인해 더 이상 사용되지 않습니다.",
@@ -1786,49 +2672,39 @@
"telemetry.enableTelemetry": "수집할 진단 데이터를 사용하도록 설정합니다. 이는 {0}의 성능과 개선이 필요한 부분을 더 잘 이해하는 데 도움이 됩니다.",
"telemetry.enableTelemetryMd": "수집할 진단 데이터를 사용하도록 설정합니다. 이는 {0}의 수행 방식과 당사의 수집 항목 및 개인 정보 보호 정책에 대해 개선이 필요한 부분[자세히 알아보기]({1})을 더 잘 이해하는 데 도움이 됩니다.",
"telemetry.errors": "오류 원격 분석",
+ "telemetry.feedback.enabled": "문제 보고자, 설문 조사 및 기타 피드백 옵션과 같은 피드백 메커니즘을 활성화합니다.",
"telemetry.restart": "크래시 보고 변경 사항을 적용하려면 응용 프로그램을 완전히 다시 시작해야 합니다.",
"telemetry.telemetryLevel.crash": "OS 수준 크래시 보고서를 보냅니다.",
"telemetry.telemetryLevel.default": "사용 데이터, 오류 및 크래시 보고서를 보냅니다.",
"telemetry.telemetryLevel.deprecated": "****참고:*** 이 설정이 '꺼짐'이면 다른 원격 분석 설정에 관계없이 원격 분석이 전송되지 않습니다. 이 설정이 '해제'를 제외한 다른 것으로 설정되고 더 이상 사용되지 않는 설정으로 원격 분석이 비활성화된 경우 원격 분석이 전송되지 않습니다.*",
"telemetry.telemetryLevel.error": "일반 오류 원격 분석 및 크래시 보고서를 보냅니다.",
"telemetry.telemetryLevel.off": "모든 제품 원격 분석을 사용하지 않도록 설정합니다.",
+ "telemetry.telemetryLevel.policyDescription": "원격 분석 수준을 제어합니다.",
"telemetry.telemetryLevel.tableDescription": "다음 표에는 각 설정과 함께 전송되는 데이터가 요약되어 있습니다.",
- "telemetry.telemetryLevelMd": "{0} 원격 측정, 자사 확장 원격 측정 및 참여 타사 확장 원격 측정을 제어합니다. 일부 타사 확장은 이 설정을 따르지 않을 수 있습니다. 확인하려면 특정 확장의 설명서를 참조하세요. 원격 확장은 {0}의 성능, 개선이 필요한 부분 및 기능이 사용되는 방식을 더 잘 이해하는 데 도움이 됩니다.",
+ "telemetry.telemetryLevelMd": "{0} 원격 분석, 자사 확장 원격 분석 및 참여 타사 확장 원격 분석을 제어합니다. 일부 타사 확장은 이 설정을 따르지 않을 수 있습니다. 확인하려면 특정 확장의 설명서를 참조하세요. 원격 분석은 {0}의 성능, 개선이 필요한 부분 및 기능이 사용되는 방식을 더 잘 이해하는 데 도움이 됩니다.",
"telemetry.usage": "사용 데이터",
"telemetryConfigurationTitle": "원격 분석"
},
+ "vs/platform/telemetry/common/telemetryUtils": {
+ "telemetryLogName": "원격 분석"
+ },
+ "vs/platform/terminal/common/terminalLogService": {
+ "terminalLoggerName": "터미널"
+ },
"vs/platform/terminal/common/terminalPlatformConfiguration": {
- "terminal.integrated.automationProfile.linux": "작업 및 디버그와 같은 자동화 관련 터미널 사용을 위해 Linux에서 사용할 터미널 프로필입니다. 이 설정은 현재 {0}이(가) 설정된 경우 무시됩니다.",
- "terminal.integrated.automationProfile.osx": "작업 및 디버그와 같은 자동화 관련 터미널 사용을 위해 macOS에서 사용할 터미널 프로필입니다. 이 설정은 현재 {0}이(가) 설정된 경우 무시됩니다.",
- "terminal.integrated.automationProfile.windows": "작업 및 디버그와 같은 자동화 관련 터미널 사용을 위해 사용할 터미널 프로필입니다. 이 설정은 현재 {0}이(가) 설정된 경우 무시됩니다.",
- "terminal.integrated.automationShell.linux": "설정 시 작업 및 디버그와 같은 자동화 관련 터미널 사용의 {0}을(를) 재정의하고 {1} 값을 무시하는 경로입니다.",
- "terminal.integrated.automationShell.linux.deprecation": "더 이상 사용되지 않습니다. 자동화 셸을 구성하는 새로운 권장 방법은 {0}을(를) 사용하여 터미널 자동화 프로필을 만드는 것입니다. 이는 현재 새 자동화 프로필 설정보다 우선하지만 나중에 변경될 예정입니다.",
- "terminal.integrated.automationShell.osx": "설정 시 작업 및 디버그와 같은 자동화 관련 터미널 사용의 {0}을(를) 재정의하고 {1} 값을 무시하는 경로입니다.",
- "terminal.integrated.automationShell.osx.deprecation": "더 이상 사용되지 않습니다. 자동화 셸을 구성하는 새로운 권장 방법은 {0}을(를) 사용하여 터미널 자동화 프로필을 만드는 것입니다. 이는 현재 새 자동화 프로필 설정보다 우선하지만 나중에 변경될 예정입니다.",
- "terminal.integrated.automationShell.windows": "설정 시 작업 및 디버그와 같은 자동화 관련 터미널 사용의 {0}을(를) 재정의하고 {1} 값을 무시하는 경로입니다.",
- "terminal.integrated.automationShell.windows.deprecation": "더 이상 사용되지 않습니다. 자동화 셸을 구성하는 새로운 권장 방법은 {0}을(를) 사용하여 터미널 자동화 프로필을 만드는 것입니다. 이는 현재 새 자동화 프로필 설정보다 우선하지만 나중에 변경될 예정입니다.",
+ "terminal.integrated.automationProfile.linux": "작업 및 디버그와 같은 자동화 관련 터미널 사용을 위해 Linux에서 사용할 터미널 프로필입니다.",
+ "terminal.integrated.automationProfile.osx": "macOS에서 작업 및 디버그와 같은 자동화 관련 터미널 사용에 사용할 터미널 프로필입니다.",
+ "terminal.integrated.automationProfile.windows": "작업 및 디버그와 같은 자동화 관련 터미널 사용을 위해 사용할 터미널 프로필입니다. 이 설정은 현재 {0}(현재 사용되지 않음)이(가) 설정된 경우 무시됩니다.",
"terminal.integrated.confirmIgnoreProcesses": "{0} 설정을 사용할 때 무시할 프로세스 이름 집합입니다.",
- "terminal.integrated.defaultProfile.linux": "Linux에서 사용되는 기본 프로필입니다. 현재 {0} 또는 {1}(으)로 설정된 경우 이 설정은 무시됩니다.",
- "terminal.integrated.defaultProfile.osx": "macOS에서 사용되는 기본 프로필입니다. 현재 {0} 또는 {1}(으)로 설정된 경우 이 설정은 무시됩니다.",
- "terminal.integrated.defaultProfile.windows": "Windows에서 사용되는 기본 프로필입니다. 현재 {0} 또는 {1}(으)로 설정된 경우 이 설정은 무시됩니다.",
+ "terminal.integrated.defaultProfile.linux": "Linux의 기본 터미널 프로필입니다.",
+ "terminal.integrated.defaultProfile.osx": "macOS의 기본 터미널 프로필입니다.",
+ "terminal.integrated.defaultProfile.windows": "Windows의 기본 터미널 프로필입니다.",
"terminal.integrated.inheritEnv": "새 셸에서 $PATH 및 기타 개발 변수가 초기화되도록 로그인 셸을 제공할 수 있는 VS Code에서 환경을 상속해야 하는지 여부입니다. 이는 Windows에는 영향을 주지 않습니다.",
"terminal.integrated.persistentSessionScrollback": "영구 터미널 세션에 다시 연결할 때 복원될 최대 라인 수를 제어합니다. 이 값을 늘리면 더 많은 메모리를 사용하여 더 많은 스크롤백 라인을 복원하고 시작 시 터미널에 연결하는 데 걸리는 시간이 늘어납니다. 이 설정을 적용하려면 다시 시작해야 하며 `#terminal.integrated.scrollback#`보다 작거나 같은 값으로 설정해야 합니다.",
- "terminal.integrated.profile.linux": "터미널 드롭다운을 통해 새 터미널을 생성할 때 표시할 Linux 프로필입니다. 선택적 {1}을(를) 사용하여 {0} 속성을 수동으로 설정합니다.\r\n\r\n목록에서 프로필을 숨기려면 기존 프로필을 {2}(으)로 설정합니다(예: {3}).",
- "terminal.integrated.profile.osx": "터미널 드롭다운을 통해 새 터미널을 생성할 때 표시할 macOS 프로필입니다. 선택적 {1}을(를) 사용하여 {0} 속성을 수동으로 설정합니다.\r\n\r\n목록에서 프로필을 숨기려면 기존 프로필을 {2}(으)로 설정합니다(예: {3}).",
- "terminal.integrated.profiles.windows": "터미널 드롭다운을 통해 새 터미널을 만들 때 표시할 Windows 프로필입니다. {0} 속성을 사용하여 셸의 위치를 자동으로 감지합니다. 또는 선택적 {2}을(를) 사용하여 {1} 속성을 수동으로 설정합니다.\r\n\r\n목록에서 프로필을 숨기려면 기존 프로필을 {3}(으)로 설정합니다(예: {4}).",
- "terminal.integrated.shell.linux": "터미널이 Linux에서 사용하는 셸의 경로입니다. [셸 구성 방법을 자세히 알아보세요](https://code.visualstudio.com/docs/editor/integrated-terminal#_terminal-profiles).",
- "terminal.integrated.shell.linux.deprecation": "이 기능은 더 이상 사용되지 않습니다. 기본 셸을 구성하는 새로운 권장 방법은 {0}에서 터미널 프로필을 만들고 프로필 이름을 {1}에서 기본값으로 설정하는 것입니다. 이는 현재 새 프로필 설정보다 우선하지만, 나중에 변경될 예정입니다.",
- "terminal.integrated.shell.osx": "터미널이 macOS에서 사용하는 셸의 경로입니다. [셸 구성 방법을 자세히 알아보세요](https://code.visualstudio.com/docs/editor/integrated-terminal#_terminal-profiles).",
- "terminal.integrated.shell.osx.deprecation": "이 기능은 더 이상 사용되지 않습니다. 기본 셸을 구성하는 새로운 권장 방법은 {0}에서 터미널 프로필을 만들고 프로필 이름을 {1}에서 기본값으로 설정하는 것입니다. 이는 현재 새 프로필 설정보다 우선하지만, 나중에 변경될 예정입니다.",
- "terminal.integrated.shell.windows": "터미널이 Windows에서 사용하는 셸의 경로입니다. [셸 구성 방법을 자세히 알아보세요](https://code.visualstudio.com/docs/editor/integrated-terminal#_terminal-profiles).",
- "terminal.integrated.shell.windows.deprecation": "이 기능은 더 이상 사용되지 않습니다. 기본 셸을 구성하는 새로운 권장 방법은 {0}에서 터미널 프로필을 만들고 프로필 이름을 {1}에서 기본값으로 설정하는 것입니다. 이는 현재 새 프로필 설정보다 우선하지만, 나중에 변경될 예정입니다.",
- "terminal.integrated.shellArgs.linux": "Linux 터미널에 있을 때 사용할 명령줄 인수입니다. [셸 구성 방법을 자세히 알아보세요](https://code.visualstudio.com/docs/editor/integrated-terminal#terminal-profiles).",
- "terminal.integrated.shellArgs.osx": "macOS 터미널에 있을 때 사용할 명령줄 인수입니다. [셸 구성 방법을 자세히 알아보세요](https://code.visualstudio.com/docs/editor/integrated-terminal#terminal-profiles).",
- "terminal.integrated.shellArgs.windows": "Windows 터미널에 있을 때 사용할 명령줄 인수입니다. [셸 구성 방법을 자세히 알아보세요](https://code.visualstudio.com/docs/editor/integrated-terminal#_configuration).",
- "terminal.integrated.shellArgs.windows.string": "Windows 터미널에 있을 때 사용할 [명령줄 형식](https://msdn.microsoft.com/en-au/08dfcab2-eb6e-49a4-80eb-87d4076c98c6)의 명령줄 인수입니다. [셸 구성 방법을 자세히 알아보세요](https://code.visualstudio.com/docs/editor/integrated-terminal#_terminal-profiles).",
+ "terminal.integrated.profile": "터미널 시작 방법을 추가, 제거 또는 변경할 수 있도록 하는 {0}의 터미널 프로필 사용자 지정 집합입니다. 프로필은 필수 경로, 선택적 인수 및 기타 프레젠테이션 옵션으로 구성됩니다.\r\n\r\n기존 프로필을 재정의하려면 해당 프로필 이름을 키로 사용합니다. 예를 들면 다음과 같습니다.\r\n\r\n{1}\r\n\r\n{2}프로필 구성에 대해 자세히 알아보세요.{3}",
"terminal.integrated.showLinkHover": "터미널 출력의 링크에 대한 마우스를 표시할지 여부입니다.",
"terminal.integrated.useWslProfiles": "터미널 드롭다운에 WSL 배포판이 표시되는지를 제어합니다.",
- "terminalAutomationProfile.path": "셸 실행 파일에 대한 단일 경로입니다.",
+ "terminalAutomationProfile.path": "셸 실행 파일 경로입니다.",
"terminalIntegratedConfigurationTitle": "통합 터미널",
"terminalProfile.args": "셸 실행 파일을 실행하는 데 사용할 선택적 인수 세트입니다.",
"terminalProfile.color": "터미널 아이콘과 연결할 테마 색 ID입니다.",
@@ -1840,16 +2716,19 @@
"terminalProfile.osxExtensionId": "확장 터미널의 ID",
"terminalProfile.osxExtensionIdentifier": "이 프로필을 제공한 확장입니다.",
"terminalProfile.osxExtensionTitle": "확장 터미널의 이름",
- "terminalProfile.overrideName": "프로필 이름이 자동 검색된 이름을 재정의하는지 여부를 제어합니다.",
+ "terminalProfile.overrideName": "정적 프로필 이름으로 실행 중인 프로그램을 감지하는 동적 터미널 제목을 바꿀지 여부를 지정합니다.",
"terminalProfile.path": "셸 실행 파일에 대한 단일 경로 또는 하나의 경로가 실패할 경우 대체로 사용될 경로의 배열입니다.",
"terminalProfile.windowsExtensionId": "확장 터미널의 ID",
"terminalProfile.windowsExtensionIdentifier": "이 프로필을 제공한 확장입니다.",
"terminalProfile.windowsExtensionTitle": "확장 터미널의 이름",
- "terminalProfile.windowsSource": "셸에 대한 경로를 자동 검색할 프로필 소스입니다."
+ "terminalProfile.windowsSource": "셸 경로를 자동으로 감지하는 프로필 원본입니다. 비표준 실행 위치는 지원되지 않으며 새 프로필에서 수동으로 생성해야 합니다."
},
"vs/platform/terminal/common/terminalProfiles": {
"terminalAutomaticProfile": "자동으로 기본값 검색"
},
+ "vs/platform/terminal/node/ptyHostMain": {
+ "ptyHost": "Pty 호스트"
+ },
"vs/platform/terminal/node/ptyService": {
"terminal-history-restored": "복원된 기록"
},
@@ -1859,23 +2738,26 @@
"launchFail.executableDoesNotExist": "셸 실행 파일 \"{0}\"의 경로가 없습니다.",
"launchFail.executableIsNotFileOrSymlink": "셸 실행 파일 \"{0}\"의 경로는 파일이나 symlink가 아닙니다."
},
- "vs/platform/theme/common/colorRegistry": {
+ "vs/platform/theme/common/colors/baseColors": {
"activeContrastBorder": "더 뚜렷이 대비되도록 요소를 다른 요소와 구분하는 활성 요소 주위의 추가 테두리입니다.",
- "activeLinkForeground": "활성 링크의 색입니다.",
- "badgeBackground": "배지 배경색입니다. 배지는 검색 결과 수와 같은 소량의 정보 레이블입니다.",
- "badgeForeground": "배지 전경색입니다. 배지는 검색 결과 수와 같은 소량의 정보 레이블입니다.",
- "breadcrumbsBackground": "이동 경로 항목의 배경색입니다.",
- "breadcrumbsFocusForeground": "포커스가 있는 이동 경로 항목의 색입니다.",
- "breadcrumbsSelectedBackground": "이동 경로 항목 선택기의 배경색입니다.",
- "breadcrumbsSelectedForeground": "선택한 이동 경로 항목의 색입니다.",
- "buttonBackground": "단추 배경색입니다.",
- "buttonBorder": "버튼 테두리 색입니다.",
- "buttonForeground": "단추 기본 전경색입니다.",
- "buttonHoverBackground": "마우스로 가리킬 때 단추 배경색입니다.",
- "buttonSecondaryBackground": "보조 단추 배경색입니다.",
- "buttonSecondaryForeground": "보조 단추 전경색입니다.",
- "buttonSecondaryHoverBackground": "마우스로 가리킬 때 보조 단추 배경색입니다.",
- "buttonSeparator": "단추 구분 기호 색입니다.",
+ "contrastBorder": "더 뚜렷이 대비되도록 요소를 다른 요소와 구분하는 요소 주위의 추가 테두리입니다.",
+ "descriptionForeground": "레이블과 같이 추가 정보를 제공하는 설명 텍스트의 전경색입니다.",
+ "disabledForeground": "비활성화된 요소의 전체 전경입니다. 이 색은 구성 요소에서 재정의하지 않는 경우에만 사용됩니다.",
+ "errorForeground": "오류 메시지에 대한 전체 전경색입니다. 이 색은 구성 요소에서 재정의하지 않은 경우에만 사용됩니다.",
+ "focusBorder": "포커스가 있는 요소의 전체 테두리 색입니다. 이 색은 구성 요소에서 재정의하지 않은 경우에만 사용됩니다.",
+ "foreground": "전체 전경색입니다. 이 색은 구성 요소에서 재정의하지 않은 경우에만 사용됩니다.",
+ "iconForeground": "워크벤치 아이콘의 기본 색상입니다.",
+ "selectionBackground": "워크벤치의 텍스트 선택(예: 입력 필드 또는 텍스트 영역) 전경색입니다. 편집기 내의 선택에는 적용되지 않습니다.",
+ "textBlockQuoteBackground": "텍스트 내 블록 인용의 전경색입니다.",
+ "textBlockQuoteBorder": "텍스트 내 블록 인용의 테두리 색입니다.",
+ "textCodeBlockBackground": "텍스트 내 코드 블록의 전경색입니다.",
+ "textLinkActiveForeground": "클릭하고 마우스가 올라간 상태의 텍스트 내 링크의 전경색입니다.",
+ "textLinkForeground": "텍스트 내 링크의 전경색입니다.",
+ "textPreformatBackground": "미리 서식이 지정된 텍스트 세그먼트의 배경색입니다.",
+ "textPreformatForeground": "미리 서식이 지정된 텍스트 세그먼트의 전경색입니다.",
+ "textSeparatorForeground": "텍스트 구분자 색상입니다."
+ },
+ "vs/platform/theme/common/colors/chartsColors": {
"chartsBlue": "차트 시각화에 사용되는 파란색입니다.",
"chartsForeground": "차트에 사용된 전경색입니다.",
"chartsGreen": "차트 시각화에 사용되는 녹색입니다.",
@@ -1883,13 +2765,18 @@
"chartsOrange": "차트 시각화에 사용되는 주황색입니다.",
"chartsPurple": "차트 시각화에 사용되는 자주색입니다.",
"chartsRed": "차트 시각화에 사용되는 빨간색입니다.",
- "chartsYellow": "차트 시각화에 사용되는 노란색입니다.",
- "checkbox.background": "확인란 위젯의 배경색입니다.",
- "checkbox.border": "확인란 위젯의 테두리 색입니다.",
- "checkbox.foreground": "확인란 위젯의 전경색입니다.",
- "contrastBorder": "더 뚜렷이 대비되도록 요소를 다른 요소와 구분하는 요소 주위의 추가 테두리입니다.",
- "descriptionForeground": "레이블과 같이 추가 정보를 제공하는 설명 텍스트의 전경색입니다.",
+ "chartsYellow": "차트 시각화에 사용되는 노란색입니다."
+ },
+ "vs/platform/theme/common/colors/editorColors": {
+ "activeLinkForeground": "활성 링크의 색입니다.",
+ "breadcrumbsBackground": "이동 경로 항목의 배경색입니다.",
+ "breadcrumbsFocusForeground": "포커스가 있는 이동 경로 항목의 색입니다.",
+ "breadcrumbsSelectedBackground": "이동 경로 항목 선택기의 배경색입니다.",
+ "breadcrumbsSelectedForeground": "선택한 이동 경로 항목의 색입니다.",
"diffDiagonalFill": "diff 편집기의 대각선 채우기 색입니다. 대각선 채우기는 diff 나란히 보기에서 사용됩니다.",
+ "diffEditor.unchangedCodeBackground": "diff 편집기에서 변경되지 않은 코드의 배경색입니다.",
+ "diffEditor.unchangedRegionBackground": "diff 편집기에서 변경되지 않은 블록의 배경색입니다.",
+ "diffEditor.unchangedRegionForeground": "diff 편집기에서 변경되지 않은 블록의 전경색입니다.",
"diffEditorBorder": "두 텍스트 편집기 사이의 테두리 색입니다.",
"diffEditorInserted": "삽입된 텍스트의 배경색입니다. 기본 장식을 숨기지 않도록 색은 불투명하지 않아야 합니다.",
"diffEditorInsertedLineGutter": "줄이 삽입된 여백의 배경색입니다.",
@@ -1901,16 +2788,13 @@
"diffEditorRemovedLineGutter": "줄이 제거된 여백의 배경색입니다.",
"diffEditorRemovedLines": "제거된 줄의 배경색입니다. 색상은 기본 장식을 숨기지 않도록 불투명하지 않아야 합니다.",
"diffEditorRemovedOutline": "제거된 텍스트의 윤곽선 색입니다.",
- "disabledForeground": "비활성화된 요소의 전체 전경입니다. 이 색은 구성 요소에서 재정의하지 않는 경우에만 사용됩니다.",
- "dropdownBackground": "드롭다운 배경입니다.",
- "dropdownBorder": "드롭다운 테두리입니다.",
- "dropdownForeground": "드롭다운 전경입니다.",
- "dropdownListBackground": "드롭다운 목록 배경입니다.",
"editorBackground": "편집기 배경색입니다.",
+ "editorCompositionBorder": "IME 구성의 테두리 색입니다.",
"editorError.background": "편집기에서 오류 텍스트의 배경색입니다. 기본 장식을 숨기지 않도록 색은 불투명하지 않아야 합니다.",
"editorError.foreground": "편집기 내 오류 표시선의 전경색입니다.",
"editorFindMatch": "현재 검색 일치 항목의 색입니다.",
"editorFindMatchBorder": "현재 검색과 일치하는 테두리 색입니다.",
+ "editorFindMatchForeground": "현재 검색 일치 항목의 텍스트 색입니다.",
"editorForeground": "편집기 기본 전경색입니다.",
"editorHint.foreground": "편집기에서 힌트 표시선의 전경색입니다.",
"editorInactiveSelection": "비활성 편집기의 선택 항목 색입니다. 기본 장식을 숨기지 않도록 색은 불투명하지 않아야 합니다.",
@@ -1922,37 +2806,84 @@
"editorInlayHintForeground": "인라인 힌트의 전경색",
"editorInlayHintForegroundParameter": "매개 변수에 대한 인라인 힌트의 전경색",
"editorInlayHintForegroundTypes": "형식에 대한 인라인 힌트의 전경색",
+ "editorLightBulbAiForeground": "전구 AI 아이콘에 사용되는 색상입니다.",
"editorLightBulbAutoFixForeground": "전구 자동 수정 작업 아이콘에 사용되는 색상입니다.",
"editorLightBulbForeground": "전구 작업 아이콘에 사용되는 색상입니다.",
"editorSelectionBackground": "편집기 선택 영역의 색입니다.",
"editorSelectionForeground": "고대비를 위한 선택 텍스트의 색입니다.",
"editorSelectionHighlight": "선택 영역과 동일한 콘텐츠가 있는 영역의 색입니다. 기본 장식을 숨기지 않도록 색은 불투명하지 않아야 합니다.",
"editorSelectionHighlightBorder": "선택 영역과 동일한 콘텐츠가 있는 영역의 테두리 색입니다.",
- "editorStickyScrollBackground": "Sticky scroll background color for the editor",
- "editorStickyScrollHoverBackground": "Sticky scroll on hover background color for the editor",
+ "editorStickyScrollBackground": "편집기에서 고정 스크롤의 배경색",
+ "editorStickyScrollBorder": "편집기에서 고정 스크롤의 테두리 색",
+ "editorStickyScrollGutterBackground": "편집기에서 고정 스크롤의 여백 부분 배경색",
+ "editorStickyScrollHoverBackground": "편집기에서 마우스로 가리킬 때 고정 스크롤의 배경색",
+ "editorStickyScrollShadow": " 편집기에서 고정 스크롤의 그림자 색",
"editorWarning.background": "편집기에서 경고 텍스트의 배경색입니다. 기본 장식을 숨기지 않도록 색은 불투명하지 않아야 합니다.",
"editorWarning.foreground": "편집기 내 경고 표시선의 전경색입니다.",
"editorWidgetBackground": "찾기/바꾸기 같은 편집기 위젯의 배경색입니다.",
"editorWidgetBorder": "편집기 위젯의 테두리 색입니다. 위젯에 테두리가 있고 위젯이 색상을 무시하지 않을 때만 사용됩니다.",
"editorWidgetForeground": "찾기/바꾸기와 같은 편집기 위젯의 전경색입니다.",
"editorWidgetResizeBorder": "편집기 위젯 크기 조정 막대의 테두리 색입니다. 이 색은 위젯에서 크기 조정 막대를 표시하도록 선택하고 위젯에서 색을 재지정하지 않는 경우에만 사용됩니다.",
- "errorBorder": "편집기에서 오류 상자의 테두리 색입니다.",
- "errorForeground": "오류 메시지에 대한 전체 전경색입니다. 이 색은 구성 요소에서 재정의하지 않은 경우에만 사용됩니다.",
+ "errorBorder": "설정된 경우 편집기에서 오류를 나타내는 이중 밑줄의 색입니다.",
"findMatchHighlight": "기타 검색 일치 항목의 색입니다. 기본 장식을 숨기지 않도록 색은 불투명하지 않아야 합니다.",
"findMatchHighlightBorder": "다른 검색과 일치하는 테두리 색입니다.",
+ "findMatchHighlightForeground": "다른 검색 일치 항목의 전경색입니다.",
"findRangeHighlight": "검색을 제한하는 범위의 색입니다. 기본 장식을 숨기지 않도록 색은 불투명하지 않아야 합니다.",
"findRangeHighlightBorder": "검색을 제한하는 범위의 테두리 색입니다. 기본 장식을 숨기지 않도록 색은 불투명하지 않아야 합니다.",
- "focusBorder": "포커스가 있는 요소의 전체 테두리 색입니다. 이 색은 구성 요소에서 재정의하지 않은 경우에만 사용됩니다.",
- "foreground": "전체 전경색입니다. 이 색은 구성 요소에서 재정의하지 않은 경우에만 사용됩니다.",
- "highlight": "목록/트리 내에서 검색할 때 일치 항목 강조 표시의 목록/트리 전경색입니다.",
- "hintBorder": "편집기에서 힌트 상자의 테두리 색입니다.",
+ "hintBorder": "설정된 경우 편집기에서 힌트를 나타내는 이중 밑줄 색입니다.",
"hoverBackground": "편집기 호버의 배경색.",
"hoverBorder": "편집기 호버의 테두리 색입니다.",
"hoverForeground": "편집기 호버의 전경색입니다.",
"hoverHighlight": "호버가 표시된 단어 아래를 강조 표시합니다. 기본 장식을 숨기지 않도록 색은 불투명하지 않아야 합니다.",
- "iconForeground": "워크벤치 아이콘의 기본 색상입니다.",
- "infoBorder": "편집기에서 정보 상자의 테두리 색입니다.",
- "inputBoxActiveOptionBorder": "입력 필드에서 활성화된 옵션의 테두리 색입니다.",
+ "infoBorder": "설정된 경우 편집기에서 정보를 나타내는 이중 밑줄 색입니다.",
+ "mergeBorder": "인라인 병합 충돌에서 헤더 및 스플리터의 테두리 색입니다.",
+ "mergeCommonContentBackground": "인라인 병합 충돌의 공통 상위 콘텐츠 배경입니다. 기본 장식을 숨기지 않도록 색은 불투명하지 않아야 합니다.",
+ "mergeCommonHeaderBackground": "인라인 병합 충돌의 공통 상위 헤더 배경입니다. 기본 장식을 숨기지 않도록 색은 불투명하지 않아야 합니다.",
+ "mergeCurrentContentBackground": "인라인 병합 충돌의 현재 콘텐츠 배경입니다. 기본 장식을 숨기지 않도록 색은 불투명하지 않아야 합니다.",
+ "mergeCurrentHeaderBackground": "인라인 병합 충돌의 현재 헤더 배경입니다. 기본 장식을 숨기지 않도록 색은 불투명하지 않아야 합니다.",
+ "mergeIncomingContentBackground": "인라인 병합 충돌의 들어오는 콘텐츠 배경입니다. 기본 장식을 숨기지 않도록 색은 불투명하지 않아야 합니다.",
+ "mergeIncomingHeaderBackground": "인라인 병합 충돌의 들어오는 헤더 배경입니다. 기본 장식을 숨기지 않도록 색은 불투명하지 않아야 합니다.",
+ "overviewRulerCommonContentForeground": "인라인 병합 충돌에서 공통 과거 개요 눈금 전경색입니다.",
+ "overviewRulerCurrentContentForeground": "인라인 병합 충돌에서 현재 개요 눈금 전경색입니다.",
+ "overviewRulerFindMatchForeground": "일치 항목 찾기의 개요 눈금자 표식 색입니다. 기본 장식을 숨기지 않도록 색은 불투명하지 않아야 합니다.",
+ "overviewRulerIncomingContentForeground": "인라인 병합 충돌에서 수신 개요 눈금 전경색입니다.",
+ "overviewRulerSelectionHighlightForeground": "선택 항목의 개요 눈금자 표식 색이 강조 표시됩니다. 기본 장식을 숨기지 않도록 색은 불투명하지 않아야 합니다.",
+ "problemsErrorIconForeground": "문제 오류 아이콘에 사용되는 색입니다.",
+ "problemsInfoIconForeground": "문제 정보 아이콘에 사용되는 색입니다.",
+ "problemsWarningIconForeground": "문제 경고 아이콘에 사용되는 색입니다.",
+ "snippetFinalTabstopHighlightBackground": "코드 조각 마지막 탭 정지의 강조 표시 배경색입니다.",
+ "snippetFinalTabstopHighlightBorder": "코드 조각 마지막 탭 정지의 강조 표시 배경색입니다.",
+ "snippetTabstopHighlightBackground": "코드 조각 탭 정지의 강조 표시 배경색입니다.",
+ "snippetTabstopHighlightBorder": "코드 조각 탭 정지의 강조 표시 테두리 색입니다.",
+ "statusBarBackground": "편집기 호버 상태 표시줄의 배경색입니다.",
+ "toolbarActiveBackground": "작업 위에 마우스를 놓았을 때 도구 모음 배경",
+ "toolbarHoverBackground": "마우스를 사용하여 작업 위로 마우스를 가져가는 경우 도구 모음 배경",
+ "toolbarHoverOutline": "마우스를 사용하여 작업 위로 마우스를 가져가는 경우 도구 모음 윤곽선",
+ "warningBorder": "설정된 경우 편집기에서 경고를 나타내는 이중 밑줄의 색입니다.",
+ "widgetBorder": "편집기 내에서 찾기/바꾸기와 같은 위젯의 테두리 색입니다.",
+ "widgetShadow": "편집기 내에서 찾기/바꾸기 같은 위젯의 그림자 색입니다."
+ },
+ "vs/platform/theme/common/colors/inputColors": {
+ "buttonBackground": "단추 배경색입니다.",
+ "buttonBorder": "버튼 테두리 색입니다.",
+ "buttonForeground": "단추 기본 전경색입니다.",
+ "buttonHoverBackground": "마우스로 가리킬 때 단추 배경색입니다.",
+ "buttonSecondaryBackground": "보조 단추 배경색입니다.",
+ "buttonSecondaryForeground": "보조 단추 전경색입니다.",
+ "buttonSecondaryHoverBackground": "마우스로 가리킬 때 보조 단추 배경색입니다.",
+ "buttonSeparator": "단추 구분 기호 색입니다.",
+ "checkbox.background": "확인란 위젯의 배경색입니다.",
+ "checkbox.border": "확인란 위젯의 테두리 색입니다.",
+ "checkbox.disabled.background": "비활성화된 확인란의 배경입니다.",
+ "checkbox.disabled.foreground": "사용하지 않도록 설정된 확인란의 전경입니다.",
+ "checkbox.foreground": "확인란 위젯의 전경색입니다.",
+ "checkbox.select.background": "확인란 위젯이 포함된 요소가 선택된 경우의 확인란 위젯 배경색입니다.",
+ "checkbox.select.border": "확인란 위젯이 포함된 요소가 선택된 경우의 확인란 위젯 테두리 색입니다.",
+ "dropdownBackground": "드롭다운 배경입니다.",
+ "dropdownBorder": "드롭다운 테두리입니다.",
+ "dropdownForeground": "드롭다운 전경입니다.",
+ "dropdownListBackground": "드롭다운 목록 배경입니다.",
+ "inputBoxActiveOptionBorder": "입력 필드에서 활성화된 옵션의 테두리 색입니다.",
"inputBoxBackground": "입력 상자 배경입니다.",
"inputBoxBorder": "입력 상자 테두리입니다.",
"inputBoxForeground": "입력 상자 전경입니다.",
@@ -1969,23 +2900,38 @@
"inputValidationWarningBackground": "경고 심각도의 입력 유효성 검사 배경색입니다.",
"inputValidationWarningBorder": "경고 심각도의 입력 유효성 검사 테두리 색입니다.",
"inputValidationWarningForeground": "경고 심각도의 입력 유효성 검사 전경색입니다.",
- "invalidItemForeground": "잘못된 항목에 대한 목록/트리 전경 색(예: 탐색기의 확인할 수 없는 루트).",
"keybindingLabelBackground": "키 바인딩 레이블 배경색입니다. 키 바인딩 레이블은 바로 가기 키를 나타내는 데 사용됩니다.",
"keybindingLabelBorder": "키 바인딩 레이블 테두리 색입니다. 키 바인딩 레이블은 바로 가기 키를 나타내는 데 사용됩니다.",
"keybindingLabelBottomBorder": "키 바인딩 레이블 테두리 아래쪽 색입니다. 키 바인딩 레이블은 바로 가기 키를 나타내는 데 사용됩니다.",
"keybindingLabelForeground": "키 바인딩 레이블 전경색입니다. 키 바인딩 레이블은 바로 가기 키를 나타내는 데 사용됩니다.",
+ "radioActiveBorder": "활성 무선 송수신 장치 옵션의 테두리 색입니다.",
+ "radioActiveForeground": "활성 무선 송수신 장치 옵션의 전경색입니다.",
+ "radioBackground": "활성 무선 송수신 장치 옵션의 배경색입니다.",
+ "radioHoverBackground": "마우스로 가리킬 때 비활성 활성 무선 송수신 장치 옵션의 배경색입니다.",
+ "radioInactiveBackground": "비활성 무선 송수신 장치 옵션의 배경색입니다.",
+ "radioInactiveBorder": "비활성 무선 송수신 장치 옵션의 테두리 색입니다.",
+ "radioInactiveForeground": "비활성 무선 송수신 장치 옵션의 전경색입니다."
+ },
+ "vs/platform/theme/common/colors/listColors": {
+ "editorActionListBackground": "동작 목록 배경색입니다.",
+ "editorActionListFocusBackground": "포커스가 있는 항목의 동작 목록 배경색입니다.",
+ "editorActionListFocusForeground": "포커스가 있는 항목의 동작 목록 전경색입니다.",
+ "editorActionListForeground": "동작 목록 전경색입니다.",
+ "highlight": "목록/트리 내에서 검색할 때 일치 항목 강조 표시의 목록/트리 전경색입니다.",
+ "invalidItemForeground": "잘못된 항목에 대한 목록/트리 전경 색(예: 탐색기의 확인할 수 없는 루트).",
"listActiveSelectionBackground": "목록/트리가 활성 상태인 경우 선택한 항목의 목록/트리 배경색입니다. 목록/트리가 활성 상태이면 키보드 포커스를 가지며, 비활성 상태이면 포커스가 없습니다.",
"listActiveSelectionForeground": "목록/트리가 활성 상태인 경우 선택한 항목의 목록/트리 전경색입니다. 목록/트리가 활성 상태이면 키보드 포커스를 가지며, 비활성 상태이면 포커스가 없습니다.",
"listActiveSelectionIconForeground": "목록/트리가 활성 상태인 경우 선택한 항목의 목록/트리 아이콘 전경색입니다. 목록/트리가 활성 상태이면 키보드 포커스를 가지며, 비활성 상태이면 포커스가 없습니다.",
- "listDeemphasizedForeground": "강조되지 않은 항목의 목록/트리 전경색. ",
+ "listDeemphasizedForeground": "강조되지 않은 항목의 목록/트리 전경색.",
"listDropBackground": "마우스로 항목을 이동할 때 목록/트리 끌어서 놓기 배경입니다.",
+ "listDropBetweenBackground": "마우스를 사용할 때 항목 간에 항목을 이동할 때 목록/트리 끌어서 놓기 테두리 색입니다.",
"listErrorForeground": "오류를 포함하는 목록 항목의 전경색입니다.",
"listFilterMatchHighlight": "필터링된 일치 항목의 배경색입니다.",
"listFilterMatchHighlightBorder": "필터링된 일치 항목의 테두리 색입니다.",
"listFilterWidgetBackground": "목록 및 트리에서 형식 필터 위젯의 배경색입니다.",
"listFilterWidgetNoMatchesOutline": "일치하는 항목이 없을 때 목록 및 트리에서 표시되는 형식 필터 위젯의 윤곽선 색입니다.",
"listFilterWidgetOutline": "목록 및 트리에서 형식 필터 위젯의 윤곽선 색입니다.",
- "listFilterWidgetShadow": "목록 및 트리에 있는 유형 필터 위젯의 그림자 색상입니다.",
+ "listFilterWidgetShadow": "목록 및 트리에서 유형 필터 위젯의 그림자 색상입니다.",
"listFocusAndSelectionOutline": "목록/트리가 활성화되고 선택되었을 때 초점이 맞춰진 항목의 목록/트리 윤곽선 색상입니다. 활성 목록/트리에는 키보드 포커스가 있고 비활성에는 그렇지 않습니다.",
"listFocusBackground": "목록/트리가 활성 상태인 경우 포커스가 있는 항목의 목록/트리 배경색입니다. 목록/트리가 활성 상태이면 키보드 포커스를 가지며, 비활성 상태이면 포커스가 없습니다.",
"listFocusForeground": "목록/트리가 활성 상태인 경우 포커스가 있는 항목의 목록/트리 전경색입니다. 목록/트리가 활성 상태이면 키보드 포커스를 가지며, 비활성 상태이면 포커스가 없습니다.",
@@ -1999,82 +2945,77 @@
"listInactiveSelectionForeground": "목록/트리가 비활성 상태인 경우 선택한 항목의 목록/트리 전경색입니다. 목록/트리가 활성 상태이면 키보드 포커스를 가지며, 비활성 상태이면 포커스가 없습니다.",
"listInactiveSelectionIconForeground": "목록/트리가 비활성 상태인 경우 선택한 항목의 목록/트리 아이콘 전경색입니다. 목록/트리가 활성 상태이면 키보드 포커스를 가지며, 비활성 상태이면 포커스가 없습니다.",
"listWarningForeground": "경고를 포함하는 목록 항목의 전경색입니다.",
+ "tableColumnsBorder": "열 사이의 표 테두리 색입니다.",
+ "tableOddRowsBackgroundColor": "홀수 테이블 행의 배경색입니다.",
+ "treeInactiveIndentGuidesStroke": "활성 상태가 아닌 들여쓰기 안내선의 트리 스트로크 색입니다.",
+ "treeIndentGuidesStroke": "들여쓰기 가이드의 트리 스트로크 색입니다."
+ },
+ "vs/platform/theme/common/colors/menuColors": {
"menuBackground": "메뉴 항목 배경색입니다.",
"menuBorder": "메뉴 테두리 색입니다.",
"menuForeground": "메뉴 항목 전경색입니다.",
"menuSelectionBackground": "메뉴의 선택된 메뉴 항목 배경색입니다.",
"menuSelectionBorder": "메뉴의 선택된 메뉴 항목 테두리 색입니다.",
"menuSelectionForeground": "메뉴의 선택된 메뉴 항목 전경색입니다.",
- "menuSeparatorBackground": "메뉴에서 구분 기호 메뉴 항목의 색입니다.",
- "mergeBorder": "인라인 병합 충돌에서 헤더 및 스플리터의 테두리 색입니다.",
- "mergeCommonContentBackground": "인라인 병합 충돌의 공통 상위 콘텐츠 배경입니다. 기본 장식을 숨기지 않도록 색은 불투명하지 않아야 합니다.",
- "mergeCommonHeaderBackground": "인라인 병합 충돌의 공통 상위 헤더 배경입니다. 기본 장식을 숨기지 않도록 색은 불투명하지 않아야 합니다.",
- "mergeCurrentContentBackground": "인라인 병합 충돌의 현재 콘텐츠 배경입니다. 기본 장식을 숨기지 않도록 색은 불투명하지 않아야 합니다.",
- "mergeCurrentHeaderBackground": "인라인 병합 충돌의 현재 헤더 배경입니다. 기본 장식을 숨기지 않도록 색은 불투명하지 않아야 합니다.",
- "mergeIncomingContentBackground": "인라인 병합 충돌의 들어오는 콘텐츠 배경입니다. 기본 장식을 숨기지 않도록 색은 불투명하지 않아야 합니다.",
- "mergeIncomingHeaderBackground": "인라인 병합 충돌의 들어오는 헤더 배경입니다. 기본 장식을 숨기지 않도록 색은 불투명하지 않아야 합니다.",
+ "menuSeparatorBackground": "메뉴에서 구분 기호 메뉴 항목의 색입니다."
+ },
+ "vs/platform/theme/common/colors/minimapColors": {
"minimapBackground": "미니맵 배경색입니다.",
"minimapError": "오류에 대한 미니맵 마커 색상입니다.",
"minimapFindMatchHighlight": "일치하는 항목을 찾기 위한 미니맵 표식 색입니다.",
"minimapForegroundOpacity": "미니맵에서 렌더링된 전경 요소의 불투명도입니다. 예를 들어, \"#000000c0\"은 불투명도 75%로 요소를 렌더링합니다.",
+ "minimapInfo": "정보에 대한 미니맵 마커 색상입니다.",
"minimapSelectionHighlight": "편집기 선택 작업을 위한 미니맵 마커 색입니다.",
"minimapSelectionOccurrenceHighlight": "편집기 선택을 반복하기 위한 미니맵 표식 색입니다.",
"minimapSliderActiveBackground": "클릭했을 때 미니맵 슬라이더 배경색입니다.",
"minimapSliderBackground": "미니맵 슬라이더 배경색입니다.",
"minimapSliderHoverBackground": "마우스로 가리킬 때 미니맵 슬라이더 배경색입니다.",
- "overviewRuleWarning": "경고의 미니맵 마커 색상입니다.",
- "overviewRulerCommonContentForeground": "인라인 병합 충돌에서 공통 과거 개요 눈금 전경색입니다.",
- "overviewRulerCurrentContentForeground": "인라인 병합 충돌에서 현재 개요 눈금 전경색입니다.",
- "overviewRulerFindMatchForeground": "일치 항목 찾기의 개요 눈금자 표식 색입니다. 기본 장식을 숨기지 않도록 색은 불투명하지 않아야 합니다.",
- "overviewRulerIncomingContentForeground": "인라인 병합 충돌에서 수신 개요 눈금 전경색입니다.",
- "overviewRulerSelectionHighlightForeground": "선택 항목의 개요 눈금자 표식 색이 강조 표시됩니다. 기본 장식을 숨기지 않도록 색은 불투명하지 않아야 합니다.",
+ "overviewRuleWarning": "경고의 미니맵 마커 색상입니다."
+ },
+ "vs/platform/theme/common/colors/miscColors": {
+ "activityErrorBadge.background": "오류 활동 배지의 배경색",
+ "activityErrorBadge.foreground": "오류 활동 배지의 전경색",
+ "activityWarningBadge.background": "경고 활동 배지의 배경색",
+ "activityWarningBadge.foreground": "경고 활동 배지의 전경색",
+ "badgeBackground": "배지 배경색입니다. 배지는 검색 결과 수와 같은 소량의 정보 레이블입니다.",
+ "badgeForeground": "배지 전경색입니다. 배지는 검색 결과 수와 같은 소량의 정보 레이블입니다.",
+ "chartAxis": "차트의 축 색입니다.",
+ "chartGuide": "차트의 안내선입니다.",
+ "chartLine": "차트의 선 색입니다.",
+ "progressBarBackground": "장기 작업을 대상으로 표시될 수 있는 진행률 표시줄의 배경색입니다.",
+ "sashActiveBorder": "활성 섀시의 테두리 색입니다.",
+ "scrollbarBackground": "스크롤 막대 트랙 배경색입니다.",
+ "scrollbarShadow": "스크롤되는 보기를 나타내는 스크롤 막대 그림자입니다.",
+ "scrollbarSliderActiveBackground": "클릭된 상태일 때 스크롤 막대 슬라이더 배경색입니다.",
+ "scrollbarSliderBackground": "스크롤 막대 슬라이버 배경색입니다.",
+ "scrollbarSliderHoverBackground": "마우스로 가리킬 때 스크롤 막대 슬라이더 배경색입니다."
+ },
+ "vs/platform/theme/common/colors/quickpickColors": {
"pickerBackground": "빠른 선택기 배경색. 빠른 선택기 위젯은 명령 팔레트와 같은 선택기를 위한 컨테이너입니다.",
"pickerForeground": "빠른 선택기 전경색. 이 빠른 선택기 위젯은 명령 팔레트와 같은 선택기를 위한 컨테이너입니다.",
"pickerGroupBorder": "그룹화 테두리에 대한 빠른 선택기 색입니다.",
"pickerGroupForeground": "그룹화 레이블에 대한 빠른 선택기 색입니다.",
"pickerTitleBackground": "빠른 선택기 제목 배경색. 이 빠른 선택기 위젯은 명령 팔레트와 같은 선택기를 위한 컨테이너입니다.",
- "problemsErrorIconForeground": "문제 오류 아이콘에 사용되는 색입니다.",
- "problemsInfoIconForeground": "문제 정보 아이콘에 사용되는 색입니다.",
- "problemsWarningIconForeground": "문제 경고 아이콘에 사용되는 색입니다.",
- "progressBarBackground": "장기 작업을 대상으로 표시될 수 있는 진행률 표시줄의 배경색입니다.",
"quickInput.list.focusBackground deprecation": "대신 quickInputList.focusBackground를 사용하세요.",
"quickInput.listFocusBackground": "포커스가 있는 항목의 빠른 선택기 배경색입니다.",
"quickInput.listFocusForeground": "포커스가 있는 항목의 빠른 선택기 전경색입니다.",
- "quickInput.listFocusIconForeground": "포커스가 있는 항목의 빠른 선택기 아이콘 전경색입니다.",
- "sashActiveBorder": "활성 섀시의 테두리 색입니다.",
- "scrollbarShadow": "스크롤되는 보기를 나타내는 스크롤 막대 그림자입니다.",
- "scrollbarSliderActiveBackground": "클릭된 상태일 때 스크롤 막대 슬라이더 배경색입니다.",
- "scrollbarSliderBackground": "스크롤 막대 슬라이버 배경색입니다.",
- "scrollbarSliderHoverBackground": "마우스로 가리킬 때 스크롤 막대 슬라이더 배경색입니다.",
+ "quickInput.listFocusIconForeground": "포커스가 있는 항목의 빠른 선택기 아이콘 전경색입니다."
+ },
+ "vs/platform/theme/common/colors/searchColors": {
+ "search.resultsInfoForeground": "검색 뷰렛 완료 메시지의 텍스트 색입니다.",
"searchEditor.editorFindMatchBorder": "검색 편집기 쿼리의 테두리 색상이 일치합니다.",
- "searchEditor.queryMatch": "검색 편집기 쿼리의 색상이 일치합니다.",
- "selectionBackground": "워크벤치의 텍스트 선택(예: 입력 필드 또는 텍스트 영역) 전경색입니다. 편집기 내의 선택에는 적용되지 않습니다.",
- "snippetFinalTabstopHighlightBackground": "코드 조각 마지막 탭 정지의 강조 표시 배경색입니다.",
- "snippetFinalTabstopHighlightBorder": "코드 조각 마지막 탭 정지의 강조 표시 배경색입니다.",
- "snippetTabstopHighlightBackground": "코드 조각 탭 정지의 강조 표시 배경색입니다.",
- "snippetTabstopHighlightBorder": "코드 조각 탭 정지의 강조 표시 테두리 색입니다.",
- "statusBarBackground": "편집기 호버 상태 표시줄의 배경색입니다.",
- "tableColumnsBorder": "열 사이의 표 테두리 색입니다.",
- "tableOddRowsBackgroundColor": "홀수 테이블 행의 배경색입니다.",
- "textBlockQuoteBackground": "텍스트 내 블록 인용의 전경색입니다.",
- "textBlockQuoteBorder": "텍스트 내 블록 인용의 테두리 색입니다.",
- "textCodeBlockBackground": "텍스트 내 코드 블록의 전경색입니다.",
- "textLinkActiveForeground": "클릭하고 마우스가 올라간 상태의 텍스트 내 링크의 전경색입니다.",
- "textLinkForeground": "텍스트 내 링크의 전경색입니다.",
- "textPreformatForeground": "미리 서식이 지정된 텍스트 세그먼트의 전경색입니다.",
- "textSeparatorForeground": "텍스트 구분자 색상입니다.",
- "toolbarActiveBackground": "작업 위에 마우스를 놓았을 때 도구 모음 배경",
- "toolbarHoverBackground": "마우스를 사용하여 작업 위로 마우스를 가져가는 경우 도구 모음 배경",
- "toolbarHoverOutline": "마우스를 사용하여 작업 위로 마우스를 가져가는 경우 도구 모음 윤곽선",
- "treeIndentGuidesStroke": "들여쓰기 가이드의 트리 스트로크 색입니다.",
- "warningBorder": "편집기에서 경고 상자의 테두리 색입니다.",
- "widgetShadow": "편집기 내에서 찾기/바꾸기 같은 위젯의 그림자 색입니다."
+ "searchEditor.queryMatch": "검색 편집기 쿼리의 색상이 일치합니다."
+ },
+ "vs/platform/theme/common/colorUtils": {
+ "transparecyRequired": "이 색은 투명해야 합니다. 그렇지 않으면 콘텐츠가 가려집니다.",
+ "useDefault": "기본 색을 사용합니다."
},
"vs/platform/theme/common/iconRegistry": {
"iconDefinition.fontCharacter": "아이콘 정의와 연결된 글꼴 문자입니다.",
"iconDefinition.fontId": "사용할 글꼴의 ID입니다. 설정하지 않으면 첫 번째로 정의한 글꼴이 사용됩니다.",
"nextChangeIcon": "다음 편집기 위치로 이동 아이콘입니다.",
"previousChangeIcon": "이전 편집기 위치로 이동 아이콘입니다.",
+ "schema.fontId.formatError": "글꼴 ID는 문자, 숫자, 밑줄 및 대시만 포함해야 합니다.",
"widgetClose": "위젯에서 닫기 작업의 아이콘입니다."
},
"vs/platform/theme/common/tokenClassificationRegistry": {
@@ -2122,7 +3063,6 @@
"variable": "변수의 스타일입니다."
},
"vs/platform/undoRedo/common/undoRedoService": {
- "cancel": "취소",
"cannotResourceRedoDueToInProgressUndoRedo": "실행 취소 또는 다시 실행 작업이 이미 실행 중이므로 '{0}'을(를) 다시 실행할 수 없습니다.",
"cannotResourceUndoDueToInProgressUndoRedo": "실행 취소 또는 다시 실행 작업이 이미 실행 중이므로 '{0}'을(를) 실행 취소할 수 없습니다.",
"cannotWorkspaceRedo": "모든 파일에서 '{0}'을(를) 다시 실행할 수 없습니다. {1}",
@@ -2135,12 +3075,12 @@
"cannotWorkspaceUndoDueToInProgressUndoRedo": "{1}에서 실행 취소 또는 다시 실행 작업이 이미 실행 중이므로 모든 파일에서 '{0}'을(를) 실행 취소할 수 없습니다.",
"confirmDifferentSource": "'{0}'을(를) 실행 취소하시겠습니까?",
"confirmDifferentSource.no": "아니요",
- "confirmDifferentSource.yes": "예",
+ "confirmDifferentSource.yes": "예(&&Y)",
"confirmWorkspace": "모든 파일에서 '{0}'을(를) 실행 취소하시겠습니까?",
"externalRemoval": "{0} 파일이 닫히고 디스크에서 수정되었습니다.",
"noParallelUniverses": "{0} 파일은 호환되지 않는 방식으로 수정되었습니다.",
- "nok": "이 파일 실행 취소",
- "ok": "{0}개 파일에서 실행 취소"
+ "nok": "이 파일 실행 취소(&&F)",
+ "ok": "파일 {0}개에서 실행 취소(&&U)"
},
"vs/platform/update/common/update.config.contribution": {
"default": "자동 업데이트 확인을 사용하도록 설정합니다. Code에서 정기적으로 업데이트를 자동 확인합니다.",
@@ -2181,22 +3121,36 @@
"settingsSync.ignoredSettings": "동기화하는 동안 무시할 설정을 구성합니다.",
"settingsSync.keybindingsPerPlatform": "각 플랫폼에 대해 키 바인딩을 동기화합니다."
},
+ "vs/platform/userDataSync/common/userDataSyncLog": {
+ "userDataSyncLog": "설정 동기화"
+ },
"vs/platform/userDataSync/common/userDataSyncMachines": {
"error incompatible": "현재 버전이 호환되지 않아서 머신 데이터를 읽을 수 없습니다. {0}을(를) 업데이트하고 다시 시도하세요."
},
- "vs/platform/windows/electron-main/window": {
- "appCrashed": "창이 충돌했습니다.",
- "appCrashedDetail": "불편을 드려서 죄송합니다. 창을 다시 열면 중단된 위치에서 계속할 수 있습니다.",
- "appCrashedDetails": "창이 충돌했습니다(원인: '{0}', 코드: '{1}').",
+ "vs/platform/userDataSync/common/userDataSyncResourceProvider": {
+ "incompatible sync data": "현재 버전과 호환되지 않아 동기화 데이터를 구문 분석할 수 없습니다."
+ },
+ "vs/platform/windows/electron-main/windowImpl": {
+ "appGone": "창이 예기치 않게 종료되었습니다.",
+ "appGoneDetailEmptyWindow": "불편을 끼쳐 드려 죄송합니다. 새 빈 창을 열어 다시 시작할 수 있습니다.",
+ "appGoneDetailWorkspace": "불편을 드려서 죄송합니다. 창을 다시 열면 중단된 위치에서 계속할 수 있습니다.",
+ "appGoneDetails": "창이 예기치 않게 종료되었습니다(원인: '{0}', 코드: '{1}')",
"appStalled": "창이 응답하지 않습니다.",
"appStalledDetail": "창을 다시 열거나, 닫거나, 계속 기다릴 수 있습니다.",
"close": "닫기(&&C)",
"doNotRestoreEditors": "편집기를 복원하지 않음",
"hiddenMenuBar": " 키를 눌러 메뉴 모음에 계속 액세스할 수 있습니다.",
+ "newWindow": "새 창(&&N)",
"reopen": "다시 열기(&&R)",
"wait": "계속 대기(&&K)"
},
"vs/platform/windows/electron-main/windowsMainService": {
+ "allow": "허용(&&A)",
+ "cancel": "취소(&&C)",
+ "confirmOpenDetail": "'{0}' 경로가 허용되지 않는 호스트를 사용합니다. 호스트를 신뢰하지 않는 경우 '취소'를 눌러야 합니다.",
+ "confirmOpenMessage": "허용된 호스트 목록에서 '{0}' 호스트를 찾을 수 없습니다. 그래도 허용하시겠습니다?",
+ "doNotAskAgain": "'{0}' 호스트를 영구적으로 허용",
+ "learnMore": "자세히 알아보기(&&L)",
"ok": "확인(&&O)",
"pathNotExistDetail": "'{0}' 경로가 이 컴퓨터에 없습니다.",
"pathNotExistTitle": "경로가 없습니다.",
@@ -2206,11 +3160,11 @@
"vs/platform/workspace/common/workspace": {
"codeWorkspace": "코드 작업 영역"
},
- "vs/platform/workspace/common/workspaceTrust": {
- "trusted": "신뢰할 수 있음",
- "untrusted": "제한 모드"
- },
"vs/platform/workspaces/electron-main/workspacesHistoryMainService": {
+ "cancel": "취소(&&C)",
+ "clearButtonLabel": "지우기(&&C)",
+ "confirmClearDetail": "이 작업은 취소할 수 없습니다.",
+ "confirmClearRecentsMessage": "최근에 연 모든 파일 및 작업 영역을 지우시겠습니까?",
"newWindow": "새 창",
"newWindowDesc": "새 창을 엽니다.",
"recentFolders": "최근 폴더",
@@ -2223,6 +3177,28 @@
"workspaceOpenedDetail": "작업 영역이 이미 다른 창에 열렸습니다. 먼저 해당 창을 닫은 후 다시 시도하세요.",
"workspaceOpenedMessage": "'{0}' 작업 영역을 저장할 수 없음"
},
+ "vs/server/node/remoteExtensionHostAgentCli": {
+ "remotecli": "원격 CLI"
+ },
+ "vs/server/node/serverEnvironmentService": {
+ "acceptLicenseTerms": "설정하면 사용자가 서버 사용 조건에 동의하는 것으로 간주되며 사용자 프롬프트 없이 서버가 시작됩니다.",
+ "connection-token": "모든 요청에 포함해야 하는 암호입니다.",
+ "connection-token-file": "연결 토큰이 포함된 파일의 경로입니다.",
+ "default-folder": "브라우저 URL에 입력이 지정되지 않은 경우에 열 작업 영역 폴더입니다. 현재 작업 디렉터리에 대해 확인된 상대 경로 또는 절대 경로입니다.",
+ "default-workspace": "브라우저 URL에 입력이 지정되지 않은 경우에 열 작업 영역입니다. 현재 작업 디렉터리에 대해 확인된 상대 경로 또는 절대 경로입니다.",
+ "host": "서버가 수신 대기해야 하는 호스트 이름 또는 IP 주소입니다. 설정되지 않은 경우 기본값은 'localhost'입니다.",
+ "port": "서버가 수신 대기해야 하는 포트입니다. 0이 전달되면 임의의 사용 가능한 포트가 선택됩니다. '숫자-숫자' 형식의 범위가 전달되는 경우 해당 범위(끝 포함)에서 사용 가능한 포트가 선택됩니다.",
+ "reconnection-grace-time": "재연결 유예 기간 창을 초단위로 재정의합니다. 기본값은 10,800(3시간)입니다.",
+ "server-base-path": "웹 UI 및 코드 서버가 제공되는 경로입니다. 기본값은 '/'입니다.",
+ "serverDataDir": "서버 데이터가 보관되는 디렉터리를 지정합니다.",
+ "socket-path": "서버가 수신 대기할 소켓 파일의 경로입니다.",
+ "start-server": "확장을 설치하거나 제거할 때 서버를 시작합니다. 'install-extension', 'install-builtin-extension' 및 'uninstall-extension'과 함께 사용합니다.",
+ "telemetry-level": "초기 원격 분석 수준을 설정합니다. 유효한 수준은 'off', 'crash', 'error' 및 'all'입니다. 지정하지 않으면 서버에서 계속 원격 분석을 보내다가 클라이언트가 연결하면 그때 클라이언트 원격 분석 설정을 사용합니다. 이 항목을 'off'로 설정하는 것은 --disable-telemetry와 동일합니다.",
+ "without-connection-token": "연결 토큰 없이 실행합니다. 연결이 다른 수단으로 보호되는 경우에만 사용합니다."
+ },
+ "vs/server/node/serverServices": {
+ "remoteExtensionLog": "서버"
+ },
"win32/i18n/messages": {
"AddContextMenuFiles": "\"%1(으)로 열기\" 작업을 Windows 탐색기 파일의 상황에 맞는 메뉴에 추가",
"AddContextMenuFolders": "\"%1(으)로 열기\" 작업을 Windows 탐색기 디렉터리의 상황에 맞는 메뉴에 추가",
@@ -2236,369 +3212,67 @@
"OpenWithCodeContextMenu": "%1(으)로 열기(&I)",
"Other": "기타:",
"RunAfter": "설치 후 %1 실행",
- "SourceFile": "%1 원본 파일"
- },
- "readme.md": {
- "LanguagePackTitle": "언어 팩은 VS Code의 지역화된 UI 환경을 제공합니다.",
- "Usage": "사용법",
- "displayLanguage": "\"표시 언어 구성\" 명령을 사용하여 VS Code 표시 언어를 명시적으로 설정함으로써 기본 UI 언어를 재정의할 수 있습니다.",
- "Command Palette": "\"Ctrl+Shift+P\"를 눌러 \"명령 팔레트\"를 표시한 후 \"표시\"를 입력하기 시작하여 \"표시 언어 구성\" 명령을 필터링 및 표시합니다.",
- "ShowLocale": "\"Enter\" 키를 누르면 현재 로캘이 강조 표시된 상태로 로캘별로 설치된 언어의 목록이 표시됩니다.",
- "SwtichUI": "UI 언어를 전환하려면 다른 \"로캘\"을 선택합니다.",
- "DocLink": "자세한 내용은 \"Docs\"를 참조하세요.",
- "Contributing": "기여 중",
- "Feedback": "번역 개선 사항에 대한 피드백이 있는 경우 \"vscode-loc\" 리포지토리에서 이슈를 만드세요.",
- "LocPlatform": "번역 문자열은 Microsoft 지역화 플랫폼에서 유지 관리됩니다. Microsoft 지역화 플랫폼에서만 내용을 변경할 수 있으며, 변경한 후 vscode-loc 리포지토리로 내보낼 수 있습니다. 따라서 vscode-loc 리포지토리에서 끌어오기 요청은 허용되지 않습니다.",
- "LicenseTitle": "라이선스",
- "LicenseMessage": "소스 코드 및 문자열은 \"MIT\" 라이선스에 따라 라이선스가 허여됩니다.",
- "Credits": "크레딧",
- "Contributed": "이 언어 팩은 \"커뮤니티에 의한, 커뮤니티를 위한\" 커뮤니티 지역화 노력을 통해 기여받은 것입니다. 도움을 주신 커뮤니티 기여자분들께 진심으로 감사드립니다.",
- "TopContributors": "우수 기여자:",
- "Contributors": "기여자:",
- "EnjoyLanguagePack": "유용하게 사용하세요!"
- },
- "win32/i18n/Default": {
- "SetupAppTitle": "설치",
- "SetupWindowTitle": "설치 - %1",
- "UninstallAppTitle": "제거",
- "UninstallAppFullTitle": "%1 제거",
- "InformationTitle": "정보",
- "ConfirmTitle": "확인",
- "ErrorTitle": "오류",
- "SetupLdrStartupMessage": "그러면 %1이(가) 설치됩니다. 계속하시겠습니까?",
- "LdrCannotCreateTemp": "임시 파일을 만들 수 없습니다. 설치 프로그램이 중단되었습니다.",
- "LdrCannotExecTemp": "임시 디렉터리에서 파일을 실행할 수 없습니다. 설치 프로그램이 중단되었습니다.",
- "LastErrorMessage": "%1.%n%n오류 %2: %3",
- "SetupFileMissing": "파일 %1이(가) 설치 디렉터리에서 누락되었습니다. 문제를 해결하거나 프로그램을 새로 받으세요.",
- "SetupFileCorrupt": "설치 파일이 손상되었습니다. 프로그램을 새로 받으세요.",
- "SetupFileCorruptOrWrongVer": "설치 파일이 손상되었거나 이 버전의 설치 프로그램과 호환되지 않습니다. 문제를 해결하거나 프로그램을 새로 받으세요.",
- "InvalidParameter": "명령줄에 잘못된 매개 변수가 전달됨:%n%n%1",
- "SetupAlreadyRunning": "설치 프로그램이 이미 실행 중입니다.",
- "WindowsVersionNotSupported": "이 프로그램은 컴퓨터에서 실행 중인 버전의 Windows를 지원하지 않습니다.",
- "WindowsServicePackRequired": "이 프로그램을 설치하려면 %1 서비스 팩 %2 이상이 필요합니다.",
- "NotOnThisPlatform": "이 프로그램은 %1에서 실행되지 않습니다.",
- "OnlyOnThisPlatform": "이 프로그램은 %1에서 실행해야 합니다.",
- "OnlyOnTheseArchitectures": "이 프로그램은 프로세서 아키텍처 %n%n%1용으로 설계된 Windows 버전에서만 설치할 수 있습니다.",
- "MissingWOW64APIs": "실행 중인 Windows 버전에는 설치 프로그램에서 64비트를 설치하는 데 필요한 기능이 없습니다. 이 문제를 해결하려면 서비스 팩 %1을(를) 설치하세요.",
- "WinVersionTooLowError": "이 프로그램을 설치하려면 %1 버전 %2 이상이 필요합니다.",
- "WinVersionTooHighError": "이 프로그램은 %1 버전 %2 이상에서는 설치할 수 없습니다.",
- "AdminPrivilegesRequired": "이 프로그램을 설치할 때는 관리자로 로그인해야 합니다.",
- "PowerUserPrivilegesRequired": "이 프로그램을 설치할 때는 관리자나 고급 사용자 그룹의 구성원으로 로그인해야 합니다.",
- "SetupAppRunningError": "설치 프로그램에서 %1이(가) 현재 실행 중임을 감지했습니다.%n%n이 항목의 모든 인스턴스를 지금 닫고 계속하려면 [확인]을, 종료하려면 [취소]를 클릭하세요.",
- "UninstallAppRunningError": "제거 작업에서 %1이(가) 현재 실행 중임을 감지했습니다.%n%n이 항목의 모든 인스턴스를 지금 닫고 계속하려면 [확인]을, 종료하려면 [취소]를 클릭하세요.",
- "ErrorCreatingDir": "설치 프로그램에서 디렉터리 \"%1\"을(를) 만들 수 없습니다.",
- "ErrorTooManyFilesInDir": "디렉터리 \"%1\"에 파일이 너무 많으므로 이 디렉터리에 파일을 만들 수 없습니다.",
- "ExitSetupTitle": "설치 종료",
- "ExitSetupMessage": "설치가 완료되지 않았습니다. 지금 종료하면 프로그램이 설치되지 않습니다.%n%n나중에 설치 프로그램을 다시 실행하여 설치를 끝낼 수 있습니다.%n%n설치 프로그램을 종료하시겠습니까?",
- "AboutSetupMenuItem": "설치 프로그램 정보(&A)...",
- "AboutSetupTitle": "설치 프로그램 정보",
- "AboutSetupMessage": "%1 버전 %2%n%3%n%n%1 홈페이지:%n%4",
- "ButtonBack": "< 뒤로(&B)",
- "ButtonNext": "다음(&N) >",
- "ButtonInstall": "설치(&I)",
- "ButtonOK": "확인",
- "ButtonCancel": "취소",
- "ButtonYes": "예(&Y)",
- "ButtonYesToAll": "모두 예(&A)",
- "ButtonNo": "아니요(&N)",
- "ButtonNoToAll": "모두 아니요(&O)",
- "ButtonFinish": "마침(&F)",
- "ButtonBrowse": "찾아보기(&B)...",
- "ButtonWizardBrowse": "찾아보기(&R)...",
- "ButtonNewFolder": "새 폴더 만들기(&M)",
- "SelectLanguageTitle": "설치 언어 선택",
- "SelectLanguageLabel": "설치 중에 사용할 언어를 선택하세요:",
- "ClickNext": "계속하려면 [다음]을 클릭하고 설치 프로그램을 종료하려면 [취소]를 클릭하세요.",
- "BrowseDialogTitle": "폴더 찾아보기",
- "BrowseDialogLabel": "아래 목록에서 폴더를 선택한 다음 [확인]을 클릭하세요.",
- "NewFolderName": "새 폴더",
- "WelcomeLabel1": "[name] 설치 마법사 시작",
- "WelcomeLabel2": "이 마법사는 컴퓨터에 [name/ver]을(를) 설치합니다.%n%n계속하기 전에 다른 모든 애플리케이션을 닫는 것이 좋습니다.",
- "WizardPassword": "암호",
- "PasswordLabel1": "이 설치는 암호로 보호되고 있습니다.",
- "PasswordLabel3": "계속하려면 암호를 입력한 다음 [다음]을 클릭하세요. 암호는 대소문자를 구분합니다.",
- "PasswordEditLabel": "암호(&P):",
- "IncorrectPassword": "입력한 암호가 잘못되었습니다. 다시 시도하세요.",
- "WizardLicense": "사용권 계약",
- "LicenseLabel": "계속 진행하기 전에 다음 중요한 정보를 읽으세요.",
- "LicenseLabel3": "다음 사용권 계약을 읽어 주세요. 설치를 계속하려면 먼저 이 계약 조건에 동의해야 합니다.",
- "LicenseAccepted": "계약에 동의함(&A)",
- "LicenseNotAccepted": "계약에 동의 안 함(&D)",
- "WizardInfoBefore": "정보",
- "InfoBeforeLabel": "계속 진행하기 전에 다음 중요한 정보를 읽으세요.",
- "InfoBeforeClickLabel": "설치를 계속할 준비가 되면 [다음]을 클릭하세요.",
- "WizardInfoAfter": "정보",
- "InfoAfterLabel": "계속 진행하기 전에 다음 중요한 정보를 읽으세요.",
- "InfoAfterClickLabel": "설치를 계속할 준비가 되면 [다음]을 클릭하세요.",
- "WizardUserInfo": "사용자 정보",
- "UserInfoDesc": "정보를 입력하세요.",
- "UserInfoName": "사용자 이름(&U):",
- "UserInfoOrg": "조직(&O):",
- "UserInfoSerial": "일련 번호(&S):",
- "UserInfoNameRequired": "이름을 입력해야 합니다.",
- "WizardSelectDir": "대상 위치 선택",
- "SelectDirDesc": "[name]을(를) 어디에 설치하시겠습니까?",
- "SelectDirLabel3": "설치 프로그램에서 [name]을(를) 다음 폴더에 설치합니다.",
- "SelectDirBrowseLabel": "계속하려면 [다음]을 클릭하세요. 다른 폴더를 선택하려면 [찾아보기]를 클릭하세요.",
- "DiskSpaceMBLabel": "적어도 [mb]MB의 여유 디스크 공간이 필요합니다.",
- "CannotInstallToNetworkDrive": "설치 프로그램은 네트워크 드라이브에 설치할 수 없습니다.",
- "CannotInstallToUNCPath": "설치 프로그램은 UNC 경로에 설치할 수 없습니다.",
- "InvalidPath": "드라이브 문자와 함께 전체 경로를 입력해야 합니다. 예:%n%nC:\\APP%n%n또는 다음 형태의 UNC 경로:%n%n\\\\server\\share",
- "InvalidDrive": "선택한 드라이브나 UNC 공유가 없거나 이 두 항목에 액세스할 수 없습니다. 다른 드라이브나 UNC 공유를 선택하세요.",
- "DiskSpaceWarningTitle": "디스크 공간 부족",
- "DiskSpaceWarning": "설치 프로그램을 설치하려면 여유 설치 공간이 적어도 %1KB가 필요하지만 선택한 드라이브의 가용 공간은 %2KB밖에 없습니다.%n%n그래도 계속하시겠습니까?",
- "DirNameTooLong": "폴더 이름 또는 경로가 너무 깁니다.",
- "InvalidDirName": "폴더 이름이 잘못되었습니다.",
- "BadDirName32": "폴더 이름에는 %n%n%1 문자를 사용할 수 없습니다.",
- "DirExistsTitle": "폴더 있음",
- "DirExists": "폴더 %n%n%1%n%n이(가) 이미 있습니다. 그래도 해당 폴더에 설치하시겠습니까?",
- "DirDoesntExistTitle": "폴더 없음",
- "DirDoesntExist": "폴더 %n%n%1%n%n이(가) 없습니다. 폴더를 만드시겠습니까?",
- "WizardSelectComponents": "구성 요소 선택",
- "SelectComponentsDesc": "어떤 구성 요소를 설치하시겠습니까?",
- "SelectComponentsLabel2": "설치할 구성 요소는 선택하고 설치하지 않을 구성 요소는 지우세요. 계속 진행할 준비가 되면 [다음]을 클릭하세요.",
- "FullInstallation": "전체 설치",
- "CompactInstallation": "Compact 설치",
- "CustomInstallation": "사용자 지정 설치",
- "NoUninstallWarningTitle": "구성 요소가 있음",
- "NoUninstallWarning": "설치 프로그램에서 구성 요소 %n%n%1%n%n이(가) 컴퓨터에 이미 설치되어 있음을 감지했습니다. 이러한 구성 요소는 선택 취소해도 제거되지 않습니다.%n%n그래도 계속하시겠습니까?",
- "ComponentSize1": "%1KB",
- "ComponentSize2": "%1MB",
- "ComponentsDiskSpaceMBLabel": "현재 선택을 위해서는 적어도 [mb]MB의 디스크 공간이 필요합니다.",
- "WizardSelectTasks": "추가 작업 선택",
- "SelectTasksDesc": "어떤 작업을 추가로 수행하시겠습니까?",
- "SelectTasksLabel2": "설치 프로그램에서 [name]을(를) 설치하는 동안 수행할 추가 작업을 선택한 후 [다음]을 클릭하세요.",
- "WizardSelectProgramGroup": "시작 메뉴 폴더 선택",
- "SelectStartMenuFolderDesc": "설치 프로그램에서 프로그램의 바로 가기를 어디에 만들도록 하시겠습니까?",
- "SelectStartMenuFolderLabel3": "설치 프로그램에서 프로그램의 바로 가기를 다음 시작 메뉴 폴더에 만듭니다.",
- "SelectStartMenuFolderBrowseLabel": "계속하려면 [다음]을 클릭하세요. 다른 폴더를 선택하려면 [찾아보기]를 클릭하세요.",
- "MustEnterGroupName": "폴더 이름을 입력해야 합니다.",
- "GroupNameTooLong": "폴더 이름 또는 경로가 너무 깁니다.",
- "InvalidGroupName": "폴더 이름이 잘못되었습니다.",
- "BadGroupName": "폴더 이름에는 %n%n%1 문자를 사용할 수 없습니다.",
- "NoProgramGroupCheck2": "시작 메뉴 폴더를 만들지 않음(&D)",
- "WizardReady": "설치 준비됨",
- "ReadyLabel1": "이제 설치 프로그램이 컴퓨터에 [name] 설치를 시작할 준비가 되었습니다.",
- "ReadyLabel2a": "설치를 계속하려면 [설치]를 클릭하고, 설정을 검토하거나 변경하려면 [뒤로]를 클릭하세요.",
- "ReadyLabel2b": "설치를 계속하려면 [설치]를 클릭하세요.",
- "ReadyMemoUserInfo": "사용자 정보:",
- "ReadyMemoDir": "대상 위치:",
- "ReadyMemoType": "설치 유형:",
- "ReadyMemoComponents": "선택한 구성 요소:",
- "ReadyMemoGroup": "시작 메뉴 폴더:",
- "ReadyMemoTasks": "추가 작업:",
- "WizardPreparing": "설치 준비 중",
- "PreparingDesc": "설치 프로그램에서 컴퓨터에 [name] 설치를 준비하고 있습니다.",
- "PreviousInstallNotCompleted": "이전 프로그램의 설치/제거 작업이 완료되지 않았습니다. 해당 설치를 완료하려면 컴퓨터를 다시 시작해야 합니다.%n%n컴퓨터를 다시 시작한 후 [name] 설치를 완료하려면 설치 프로그램을 다시 실행하세요.",
- "CannotContinue": "설치 프로그램을 계속할 수 없습니다. 종료하려면 [취소]를 클릭하세요.",
- "ApplicationsFound": "설치 프로그램에서 업데이트해야 하는 파일이 다음 애플리케이션에 사용되고 있습니다. 설치 프로그램에서 이러한 애플리케이션을 자동으로 닫도록 허용하는 것이 좋습니다.",
- "ApplicationsFound2": "설치 프로그램에서 업데이트해야 하는 파일이 다음 애플리케이션에 사용되고 있습니다. 설치 프로그램에서 이러한 애플리케이션을 자동으로 닫도록 허용하는 것이 좋습니다. 설치가 완료되면 설치 프로그램에서 애플리케이션을 다시 시작하려고 시도합니다.",
- "CloseApplications": "애플리케이션 자동 닫기(&A)",
- "DontCloseApplications": "애플리케이션을 닫지 않음(&D)",
- "ErrorCloseApplications": "설치 프로그램에서 일부 애플리케이션을 자동으로 닫을 수 없습니다. 계속하기 전에 설치 프로그램에서 업데이트해야 하는 파일을 사용하는 애플리케이션을 모두 닫는 것이 좋습니다.",
- "WizardInstalling": "설치 중",
- "InstallingLabel": "설치 프로그램에서 컴퓨터에 [name]을(를) 설치하는 동안 기다려 주세요.",
- "FinishedHeadingLabel": "[name] 설정 마법사를 완료하는 중",
- "FinishedLabelNoIcons": "설치 프로그램에서 컴퓨터에 [name]을(를) 설치했습니다.",
- "FinishedLabel": "설치 프로그램에서 컴퓨터에 [name]을(를) 설치했습니다. 설치한 아이콘을 선택하여 해당 애플리케이션을 시작할 수 있습니다.",
- "ClickFinish": "설치를 끝내려면 [\\[]마침[\\]]을 클릭하십시오.",
- "FinishedRestartLabel": "[name] 설치를 완료하려면 설치 프로그램에서 컴퓨터를 다시 시작해야 합니다. 지금 다시 시작하시겠습니까?",
- "FinishedRestartMessage": "[name] 설치를 완료하려면 설치 프로그램에서 컴퓨터를 다시 시작해야 합니다.%n%n지금 다시 시작하시겠습니까?",
- "ShowReadmeCheck": "예, README 파일을 보겠습니다.",
- "YesRadio": "예, 컴퓨터를 지금 다시 시작하겠습니다(&Y).",
- "NoRadio": "아니요, 컴퓨터를 나중에 다시 시작하겠습니다(&N).",
- "RunEntryExec": "%1 실행",
- "RunEntryShellExec": "%1 보기",
- "ChangeDiskTitle": "설치 프로그램에서 다음 디스크가 필요함",
- "SelectDiskLabel2": "디스크 %1을(를) 삽입한 다음 [확인]을 클릭하세요.%n%n이 디스크의 파일이 아래 표시된 폴더가 아닌 다른 폴더에 있으면 올바른 경로를 입력하거나 [찾아보기]를 클릭하세요.",
- "PathLabel": "경로(&P):",
- "FileNotInDir2": "%2\"에서 파일 \"%1\"을(를) 찾을 수 없습니다. 올바른 디스크를 삽입하거나 다른 폴더를 선택하세요.",
- "SelectDirectoryLabel": "다음 디스크의 위치를 지정하세요.",
- "SetupAborted": "설치를 완료하지 못했습니다.%n%n문제를 해결한 다음 설치 프로그램을 다시 실행하세요.",
- "EntryAbortRetryIgnore": "다시 시도하려면 [다시 시도]를, 그래도 계속하려면 [무시]를, 설치를 취소하려면 [중단]을 클릭하세요.",
- "StatusClosingApplications": "애플리케이션을 닫는 중...",
- "StatusCreateDirs": "디렉터리를 만드는 중...",
- "StatusExtractFiles": "파일을 추출하는 중...",
- "StatusCreateIcons": "바로 가기를 만드는 중...",
- "StatusCreateIniEntries": "INI 항목을 만드는 중...",
- "StatusCreateRegistryEntries": "레지스트리 항목을 만드는 중...",
- "StatusRegisterFiles": "파일을 등록하는 중...",
- "StatusSavingUninstall": "제거 정보를 저장하는 중...",
- "StatusRunProgram": "설치를 완료하는 중...",
- "StatusRestartingApplications": "애플리케이션을 다시 시작하는 중...",
- "StatusRollback": "변경 사항을 롤백하는 중...",
- "ErrorInternal2": "내부 오류: %1",
- "ErrorFunctionFailedNoCode": "%1 실패",
- "ErrorFunctionFailed": "%1 실패, 코드 %2",
- "ErrorFunctionFailedWithMessage": "%1 실패, 코드 %2.%n%3",
- "ErrorExecutingProgram": "파일을 실행할 수 없음:%n%1",
- "ErrorRegOpenKey": "레지스트리 키를 여는 중 오류 발생:%n%1\\%2",
- "ErrorRegCreateKey": "레지스트리 키를 만드는 중 오류 발생:%n%1\\%2",
- "ErrorRegWriteKey": "레지스트리 키에 기록하는 중 오류 발생:%n%1\\%2",
- "ErrorIniEntry": "파일 \"%1\"에 INI 항목을 만드는 중에 오류가 발생했습니다.",
- "FileAbortRetryIgnore": "다시 시도하려면 [다시 시도]를, 이 파일을 건너뛰려면 [무시](권장되지 않음)를, 설치를 취소하려면 [중단]을 클릭하세요.",
- "FileAbortRetryIgnore2": "다시 시도하려면 [다시 시도]를, 그래도 계속하려면 [무시](권장되지 않음)를, 설치를 취소하려면 [중단]을 클릭하세요.",
- "SourceIsCorrupted": "원본 파일이 손상되었습니다.",
- "SourceDoesntExist": "원본 파일 \"%1\"이(가) 없습니다.",
- "ExistingFileReadOnly": "기존 파일이 읽기 전용으로 표시되어 있습니다.%n%n읽기 전용 특성을 제거하고 다시 시도하려면 [다시 시도]를, 이 파일을 건너뛰려면 [무시]를, 설치를 취소하려면 [중단]을 클릭하세요.",
- "ErrorReadingExistingDest": "기존 파일을 읽는 중 오류 발생:",
- "FileExists": "해당 파일이 이미 있습니다.%n%n설치 프로그램에서 이 파일을 덮어쓰도록 하시겠습니까?",
- "ExistingFileNewer": "기존 파일이 설치 프로그램에서 설치하려는 파일보다 최신입니다. 기존 파일을 유지할 것을 권장합니다.%n%n기존 파일을 유지하시겠습니까?",
- "ErrorChangingAttr": "기존 파일의 특성을 변경하는 중 오류 발생:",
- "ErrorCreatingTemp": "대상 디렉터리에 파일을 만드는 중 오류 발생:",
- "ErrorReadingSource": "원본 파일을 읽는 중 오류 발생:",
- "ErrorCopying": "파일을 복사하는 중 오류 발생:",
- "ErrorReplacingExistingFile": "기존 파일을 바꾸는 중 오류 발생:",
- "ErrorRestartReplace": "RestartReplace 실패:",
- "ErrorRenamingTemp": "대상 디렉터리에 있는 파일 이름을 바꾸는 중 오류 발생:",
- "ErrorRegisterServer": "DLL/OCX를 등록할 수 없음: %1",
- "ErrorRegSvr32Failed": "종료 코드 %1과(와) 함께 RegSvr32 실패",
- "ErrorRegisterTypeLib": "형식 라이브러리를 등록할 수 없음: %1",
- "ErrorOpeningReadme": "README 파일을 여는 중에 오류가 발생했습니다.",
- "ErrorRestartingComputer": "설치 프로그램에서 컴퓨터를 다시 시작할 수 없습니다. 수동으로 진행하세요.",
- "UninstallNotFound": "파일 \"%1\"이(가) 없습니다. 제거할 수 없습니다.",
- "UninstallOpenError": "파일 \"%1\"을(를) 열 수 없습니다. 제거할 수 없습니다.",
- "UninstallUnsupportedVer": "제거 로그 파일 \"%1\"이(가) 이 버전의 제거 프로그램에서 인식하지 못하는 형식입니다. 제거할 수 없습니다.",
- "UninstallUnknownEntry": "제거 로그에서 알 수 없는 항목(%1)이 발견되었습니다.",
- "ConfirmUninstall": "%1을(를) 완전히 제거하시겠습니까? 확장 및 설정은 제거되지 않습니다.",
- "UninstallOnlyOnWin64": "이 설치는 64비트 Windows에서만 제거할 수 있습니다.",
- "OnlyAdminCanUninstall": "이 설치는 관리자 권한이 있는 사용자만 제거할 수 있습니다.",
- "UninstallStatusLabel": "컴퓨터에서 %1을(를) 제거하는 동안 기다려 주세요.",
- "UninstalledAll": "컴퓨터에서 %1을(를) 제거했습니다.",
- "UninstalledMost": "%1 제거가 완료되었습니다.%n%n일부 요소는 제거할 수 없습니다. 이러한 항목은 수동으로 제거할 수 있습니다.",
- "UninstalledAndNeedsRestart": "%1 제거를 완료하려면 컴퓨터를 다시 시작해야 합니다.%n%n지금 다시 시작하시겠습니까?",
- "UninstallDataCorrupted": "\"%1\" 파일이 손상되었습니다. 제거할 수 없습니다.",
- "ConfirmDeleteSharedFileTitle": "공유 파일을 제거하시겠습니까?",
- "ConfirmDeleteSharedFile2": "시스템에서는 이제 다음 공유 파일을 사용하는 프로그램이 없는 것으로 표시됩니다. 제거 작업을 통해 이 공유 파일을 제거하시겠습니까?%n%n아직 이 파일을 사용하는 프로그램이 있는데 이 파일을 제거하면 해당 프로그램이 올바르게 작동하지 않을 수 있습니다. 잘 모르는 경우 [아니요]를 선택하세요. 시스템에 파일을 그대로 두어도 아무런 문제가 발생하지 않습니다.",
- "SharedFileNameLabel": "파일 이름:",
- "SharedFileLocationLabel": "위치:",
- "WizardUninstalling": "제거 상태",
- "StatusUninstalling": "%1을(를) 제거하는 중...",
- "ShutdownBlockReasonInstallingApp": "%1을(를) 설치하는 중입니다.",
- "ShutdownBlockReasonUninstallingApp": "%1을(를) 제거하는 중입니다.",
- "NameAndVersion": "%1 버전 %2",
- "AdditionalIcons": "추가 아이콘:",
- "CreateDesktopIcon": "바탕 화면 아이콘 만들기(&D)",
- "CreateQuickLaunchIcon": "빠른 실행 아이콘 만들기(&Q)",
- "ProgramOnTheWeb": "%1 웹 정보",
- "UninstallProgram": "%1 제거",
- "LaunchProgram": "%1 시작",
- "AssocFileExtension": "%1을(를) %2 파일 확장명과 연결(&A)",
- "AssocingFileExtension": "%1을(를) %2 파일 확장명과 연결 중...",
- "AutoStartProgramGroupDescription": "시작:",
- "AutoStartProgram": "%1 자동 시작",
- "AddonHostProgramNotFound": "선택한 폴더에서 %1을(를) 찾을 수 없습니다.%n%n그래도 계속하시겠습니까?"
- },
- "vscode/vscode/": {
- "FinishedLabel": "설치 프로그램에서 컴퓨터에 [name]을(를) 설치했습니다. 설치한 바로 가기를 선택하여 해당 애플리케이션을 시작할 수 있습니다.",
- "ConfirmUninstall": "%1 및 해당 구성 요소를 모두 제거하시겠습니까?",
- "AdditionalIcons": "추가 아이콘:",
- "CreateDesktopIcon": "바탕 화면 아이콘 만들기(&D)",
- "CreateQuickLaunchIcon": "빠른 실행 아이콘 만들기(&Q)",
- "AddContextMenuFiles": "\"%1(으)로 열기\" 작업을 Windows 탐색기 파일의 상황에 맞는 메뉴에 추가",
- "AddContextMenuFolders": "\"%1(으)로 열기\" 작업을 Windows 탐색기 디렉터리의 상황에 맞는 메뉴에 추가",
- "AssociateWithFiles": "%1을(를) 지원되는 파일 형식에 대한 편집기로 등록합니다.",
- "AddToPath": "PATH에 추가(셸을 다시 시작해야 함)",
- "RunAfter": "설치 후 %1 실행",
- "Other": "기타:",
"SourceFile": "%1 원본 파일",
- "OpenWithCodeContextMenu": "%1(으)로 열기(&I)"
+ "UpdatingVisualStudioCode": "Visual Studio Code 업데이트하는 중..."
},
"vs/code/electron-main/app": {
"cancel": "아니요(&&N)",
"confirmOpenDetail": "이 요청을 시작하지 않은 경우 시스템에 대한 공격 시도를 나타낼 수 있습니다. 이 요청을 시작하는 명시적 조치를 수행하지 않은 경우에는 '아니요'를 눌러야 합니다.",
- "confirmOpenMessage": "외부 애플리케이션에서 {1}의 '{0}'을(를) 열려고 합니다. 이 파일 또는 폴더를 여시겠습니까?",
- "open": "예(&&Y)",
- "trace.detail": "문제를 만들고 다음 파일을 수동으로 연결하세요.\r\n{0}",
- "trace.message": "추적을 만들었습니다.",
- "trace.ok": "확인(&&O)"
+ "confirmOpenMessageFileOrFolder": "외부 애플리케이션에서 {1}의 '{0}'을(를) 열려고 합니다. 이 파일 또는 폴더를 여시겠습니까?",
+ "confirmOpenMessageFolder": "외부 애플리케이션이 {1}에서 '{0}'을(를) 열려고 합니다. 이 파일을 여시겠습니까?",
+ "confirmOpenMessageWorkspace": "외부 애플리케이션이 {1}에서 '{0}'을(를) 열려고 합니다. 이 작업 영역 파일을 여시겠습니까?",
+ "doNotAskAgainLocal": "묻지 않고 로컬 경로 열기 허용",
+ "doNotAskAgainRemote": "묻지 않고 원격 경로 열기 허용",
+ "open": "예(&&Y)"
},
"vs/code/electron-main/main": {
"close": "닫기(&&C)",
- "secondInstanceAdmin": "{0}의 두 번째 인스턴스가 이미 관리자 권한으로 실행되고 있습니다.",
+ "mainLog": "기본",
+ "secondInstanceAdmin": "다른 {0} 인스턴스가 이미 관리자 권한으로 실행되고 있습니다.",
"secondInstanceAdminDetail": "다른 인스턴스를 닫고 다시 시도하세요.",
"secondInstanceNoResponse": "{0}의 다른 인스턴스가 실행 중이지만 응답하지 않음",
"secondInstanceNoResponseDetail": "다른 인스턴스를 모두 닫고 다시 시도하세요.",
"startupDataDirError": "프로그램 사용자 데이터를 쓸 수 없습니다.",
- "startupUserDataAndExtensionsDirErrorDetail": "{0}\r\n\r\n다음 디렉터리가 쓰기 가능한지 확인하세요.\r\n\r\n{1}"
- },
- "vs/code/electron-sandbox/issue/issueReporterMain": {
- "bugDescription": "문제를 안정적으로 재현시킬 수 있는 방법을 공유해주세요. 실제 결과와 예상 결과를 포함하세요. GitHub 버전의 Markdown을 지원합니다. GitHub에서 미리 볼 때 문제를 편집하고 스크린샷을 추가할 수 있습니다.",
- "bugReporter": "버그 보고",
- "closed": "종료됨",
- "createOnGitHub": "GitHub에서 만들기",
- "description": "설명",
- "disabledExtensions": "확장을 사용할 수 없음",
- "extension": "확장",
- "featureRequest": "기능 요청",
- "featureRequestDescription": "보고 싶어하는 기능을 설명해주세요. GitHub 버전의 Markdown을 지원합니다. GitHub에서 미리 볼 때 문제를 편집하고 스크린샷을 추가할 수 있습니다.",
- "hide": "숨기기",
- "loadingData": "데이터 로드 중...",
- "marketplace": "확장 Marketplace",
- "noCurrentExperiments": "현재 실험이 없습니다.",
- "noSimilarIssues": "검색된 유사한 문제 없음",
- "open": "열기",
- "pasteData": "너무 커서 보낼 수 없었기 때문에 필요한 데이터를 클립보드에 썼습니다. 붙여 넣으세요.",
- "performanceIssue": "성능 문제",
- "performanceIssueDesciption": "이 성능 문제가 언제 발생합니까? 시작할 때 발생합니까? 특정 작업을 진행한 이후에 발생합니까? GitHub 버전의 Markdown을 지원합니다. GitHub에서 미리 볼 때 문제를 편집하고 스크린샷을 추가할 수 있습니다.",
- "previewOnGitHub": "GitHub에서 미리 보기",
- "rateLimited": "GitHub 쿼리 제한이 초과되었습니다. 기다려 주세요.",
- "selectSource": "소스 선택",
- "show": "표시",
- "similarIssues": "유사한 문제",
- "stepsToReproduce": "재현할 단계",
- "unknown": "알 수 없음",
- "vscode": "Visual Studio Code"
+ "startupUserDataAndExtensionsDirErrorDetail": "{0}\r\n\r\n다음 디렉터리가 쓰기 가능한지 확인하세요.\r\n\r\n{1}",
+ "statusWarning": "경고: --status 인수는 {0}이(가) 이미 실행 중인 경우에만 사용할 수 있습니다. {0}이(가) 시작된 후 다시 실행하세요."
},
- "vs/code/electron-sandbox/issue/issueReporterPage": {
- "chooseExtension": "확장",
- "completeInEnglish": "양식을 영어로 작성해 주세요.",
- "descriptionEmptyValidation": "설명은 필수입니다.",
- "details": "세부 정보를 입력하세요.",
- "disableExtensions": "모든 확장을 사용하지 않도록 설정하고 창 다시 로드",
- "disableExtensionsLabelText": "{0} 후 문제를 재현해 보세요. 확장이 활성 상태인 경우에만 문제가 재현되면 확장과 관련된 문제일 수 있습니다.",
- "extensionWithNoBugsUrl": "이슈 보고자는 이슈 보고를 위한 URL이 지정되지 않았으므로 이 확장에 대한 이슈를 만들 수 없습니다. 이 확장의 Marketplace 페이지를 확인하여 다른 지침을 사용할 수 있는지 확인하세요.",
- "extensionWithNonstandardBugsUrl": "이슈 보고자는 이 확장에 대한 이슈를 만들 수 없습니다. 이슈를 보고하려면 {0}을(를) 방문하세요.",
- "issueSourceEmptyValidation": "문제 소스는 필수입니다.",
- "issueSourceLabel": "제출 대상",
- "issueTitleLabel": "제목",
- "issueTitleRequired": "제목을 입력하세요.",
- "issueTypeLabel": "이것은",
- "sendExperiments": "A/B 실험 정보 포함",
- "sendExtensions": "사용하도록 설정된 확장 포함",
- "sendProcessInfo": "현재 실행 중인 프로세스 포함",
- "sendSystemInfo": "내 시스템 정보 포함",
- "sendWorkspaceInfo": "내 작업 영역 메타데이터 포함",
- "show": "표시",
- "titleEmptyValidation": "제목은 필수입니다.",
- "titleLengthValidation": "제목이 너무 깁니다."
+ "vs/code/electron-utility/sharedProcess/sharedProcessMain": {
+ "networkk": "네트워크",
+ "sharedLog": "공유됨"
},
- "vs/code/electron-sandbox/processExplorer/processExplorerMain": {
- "copy": "복사",
- "copyAll": "모두 복사",
- "cpu": "CPU(%)",
- "debug": "디버그",
- "forceKillProcess": "프로세스 강제 종료",
- "killProcess": "프로세스 종료",
- "memory": "메모리(MB)",
- "name": "프로세스 이름",
- "pid": "PID"
+ "vs/code/node/cliProcessMain": {
+ "cli": "CLI"
},
"vs/workbench/api/browser/mainThreadAuthentication": {
- "accountLastUsedDate": "이 계정을 마지막으로 사용한 날짜: {0}",
- "allow": "허용",
+ "addClientRegistrationDetails": "클라이언트 등록 세부 정보 추가",
+ "allow": "허용(&&A)",
"cancel": "취소",
+ "clientIdPlaceholder": "OAuth 클라이언트 ID(azye39d...)",
+ "clientIdPrompt": "다음 리디렉션 URI에 등록된 기존 클라이언트 ID를 입력합니다. http://127.0.0.1:33418, https://vscode.dev/redirect",
+ "clientIdRequired": "클라이언트 ID가 필요합니다.",
+ "clientSecretPlaceholder": "OAuth 클라이언트 암호(wer32o50f...) 또는 비워 두기",
+ "clientSecretPrompt": "(선택 사항) 클라이언트 ID '{0}'과(와) 연결된 기존의 클라이언트 암호를 입력하거나 이 필드를 비워 둡니다.",
"confirmLogin": "확장 '{0}'은(는) {1}을(를) 사용하여 로그인하려고 합니다.",
"confirmRelogin": "'{0}' 확장은 {1}을(를) 사용하여 사용자가 다시 로그인하기를 원합니다.",
- "manageExtensions": "이 계정에 액세스할 수 있는 확장 선택",
- "manageTrustedExtensions": "신뢰할 수 있는 확장 관리",
- "manageTrustedExtensions.cancel": "취소",
- "noTrustedExtensions": "이 계정을 사용한 확장이 없습니다.",
- "notUsed": "이 계정을 사용하지 않음",
- "signOut": "로그아웃",
- "signOutMessage": "'{0}' 계정은 다음에서 사용되었습니다.\r\n\r\n{1}\r\n\r\n 해당 확장에서 로그아웃하시겠습니까?",
- "signOutMessageSimple": "'{0}'에서 로그아웃하시겠습니까?",
- "signedOut": "로그아웃했습니다."
+ "copyAndContinue": "복사 및 계속",
+ "dcrCopyUrlsAndProceed": "URI 복사 및 계속",
+ "dcrFailedToCopy": "리디렉션 URI를 클립보드에 복사하지 못했습니다.",
+ "dcrNotSupported": "동적 클라이언트 등록이 지원되지 않음",
+ "dcrNotSupportedDetail": "권한 부여 서버 '{0}'에서 자동 클라이언트 등록을 지원하지 않습니다. 클라이언트 등록(클라이언트 ID)을 수동으로 제공하여 계속하시겠습니까?\r\n\r\n참고: OAuth 애플리케이션을 등록할 때 다음 리디렉션 URI를 포함해야 합니다.\r\n{1}",
+ "deviceCodeDetail": "코드: {0}\r\n\r\n인증을 완료하려면 {1}(으)로 이동하여 위의 코드를 입력하세요.",
+ "deviceCodeTitle": "디바이스 코드 인증",
+ "failedToOpenUri": "{0}을(를) 열지 못했습니다.",
+ "incorrectAccount": "잘못된 계정이 검색됨",
+ "incorrectAccountDetail": "선택한 계정({0})이 요청한 계정({1})과 일치하지 않습니다.",
+ "keep": "{0} 유지",
+ "learnMore": "자세한 정보",
+ "loginWith": "{0}(으)로 로그인",
+ "no": "아니요",
+ "yes": "예"
+ },
+ "vs/workbench/api/browser/mainThreadChatSessions": {
+ "chatEditorContributionName": "{0}",
+ "interruptActiveResponse": "활성 세션을 중단하시겠습니까?"
},
"vs/workbench/api/browser/mainThreadCLICommands": {
"cannot be installed": "이 설치 프로그램에서 실행되지 않도록 선언되었기 때문에 '{0}' 확장을 설치할 수 없습니다."
@@ -2607,7 +3281,11 @@
"commentsViewIcon": "주석 보기의 뷰 아이콘입니다."
},
"vs/workbench/api/browser/mainThreadCustomEditors": {
- "defaultEditLabel": "편집"
+ "defaultEditLabel": "편집",
+ "vetoExtHostRestart": "'{0}' 대해 제공된 확장 편집기가 아직 열려 있으며, 그렇지 않으면 닫힙니다."
+ },
+ "vs/workbench/api/browser/mainThreadEditSessionIdentityParticipant": {
+ "timeout.onWillCreateEditSessionIdentity": "10000ms 이후 onWillCreateEditSessionIdentity-event 중단됨"
},
"vs/workbench/api/browser/mainThreadExtensionService": {
"disabledDep": "'{0}' 확장은 사용하지 않도록 설정된 '{1}' 확장에 따라 달라지기 때문에 활성화할 수 없습니다. 확장을 사용하도록 설정하고 창을 다시 로드하시겠습니까?",
@@ -2618,12 +3296,12 @@
"notSupportedInWorkspace": "현재 작업 영역에서 지원되지 않는 '{1}' 확장에 종속되어 있으므로 '{0}' 확장을 활성화할 수 없습니다.",
"reload": "창 다시 로드",
"reload window": "로드되지 않은 '{1}' 확장 프로그램에 의존하기 때문에 '{0}' 확장 프로그램을 활성화 할 수 없습니다. 확장 프로그램을 로드하기 위해 창을 다시 로드하시겠습니까?",
- "restrictedMode": "제한된 모드에서 지원되지 않는 '{1}' 확장에 종속되어 있으므로 '{0}' 확장을 활성화할 수 없습니다.",
- "uninstalledDep": "설치되지 않은 '{1}' 확장에 따라 달라지기 때문에 '{0}' 확장을 활성화할 수 없습니다. 확장을 설치하고 창을 다시 로드하시겠습니까?",
+ "restrictedMode": "제한 모드에서 지원되지 않는 '{1}' 확장에 종속되어 있으므로 '{0}' 확장을 활성화할 수 없습니다.",
+ "uninstalledDep": "설치되지 않은 '{2}'의 '{1}' 확장에 의존하므로 '{0}' 확장을 활성화할 수 없습니다. 확장을 설치하고 창을 다시 로드하시겠습니까?",
"unknownDep": "알 수 없는 '{1}' 확장에 의존하기 때문에 '{0}' 확장을 활성화할 수 없습니다."
},
"vs/workbench/api/browser/mainThreadFileSystemEventService": {
- "again": "다시 묻지 않음",
+ "again": "이 메시지를 다시 표시 안 함",
"ask.1.copy": "확장 '{0}'에서 이 파일 복사와 관련된 리팩터링 변경을 수행하려고 함",
"ask.1.create": "확장 '{0}'에서 이 파일 생성과 관련된 리팩터링 변경을 수행하려고 함",
"ask.1.delete": "확장 '{0}'에서 이 파일 삭제와 관련된 리팩터링 변경을 수행하려고 함",
@@ -2639,15 +3317,36 @@
"msg-delete": "'파일 삭제' 참가자 실행 중...",
"msg-rename": "'파일 이름 바꾸기' 참가자 실행 중...",
"msg-write": "'파일 쓰기' 참가자 실행 중...",
- "ok": "확인",
- "preview": "미리 보기 표시"
+ "ok": "확인(&&O)",
+ "preview": "미리 보기 표(&&P)"
+ },
+ "vs/workbench/api/browser/mainThreadLanguageModels": {
+ "confirmLanguageModelAccess": "'{0}' 확장이 {1}에서 제공된 언어 모델에 액세스하려고 합니다.",
+ "languageModelsAccountId": "언어 모델"
+ },
+ "vs/workbench/api/browser/mainThreadMcp": {
+ "allow": "허용(&A)",
+ "confirmLogin": "MCP 서버 정의 '{0}'에서 {1}을(를) 인증하려고 합니다.",
+ "confirmRelogin": "MCP 서버 정의 '{0}'에서 {1}을(를) 인증하려고 합니다.",
+ "incorrectAccount": "잘못된 계정이 검색됨",
+ "incorrectAccountDetail": "선택한 계정({0})이 요청한 계정({1})과 일치하지 않습니다.",
+ "keep": "{0} 유지",
+ "loginWith": "{0}(으)로 로그인",
+ "mcpAuthSessionRemoved": "{0}의 인증 세션이 제거되어 서버 중지"
},
"vs/workbench/api/browser/mainThreadMessageService": {
"cancel": "취소",
"defaultSource": "확장",
- "extensionSource": "{0}(확장)",
"manageExtension": "확장 관리",
- "ok": "확인"
+ "ok": "확인(&&O)"
+ },
+ "vs/workbench/api/browser/mainThreadNotebookSaveParticipant": {
+ "timeout.onWillSave": "1750ms 후에 onWillSaveNotebookDocument-event가 중단됨"
+ },
+ "vs/workbench/api/browser/mainThreadOutputService": {
+ "status.showOutput": "출력 표시",
+ "status.showOutputAria": "{0} 출력 채널 표시",
+ "status.showOutputTooltip": "{0} 출력 채널 표시"
},
"vs/workbench/api/browser/mainThreadProgress": {
"manageExtension": "확장 관리"
@@ -2676,7 +3375,22 @@
"folderStatusMessageRemoveMultipleFolders": "'{0}' 확장이 작업 영역에서 {1}개 폴더를 제거함",
"folderStatusMessageRemoveSingleFolder": "'{0}' 확장이 작업 영역에서 1개 폴더를 제거함"
},
+ "vs/workbench/api/browser/statusBarExtensionPoint": {
+ "accessibilityInformation": "상태 표시줄 항목에 포커스가 있을 때 사용할 역할 및 aria 레이블을 정의합니다.",
+ "accessibilityInformation.label": "상태 표시줄 항목의 aria 레이블입니다. 기본값은 항목의 텍스트입니다.",
+ "accessibilityInformation.role": "스크린 리더가 상호 작용하는 방식을 정의하는 상태 표시줄 항목의 역할입니다. aria 역할에 대한 자세한 내용은 https://w3c.github.io/aria/#widget_roles에서 확인할 수 있습니다.",
+ "alignment": "상태 표시줄 항목의 맞춤입니다.",
+ "command": "상태 표시줄 항목을 클릭할 때 실행할 명령입니다.",
+ "id": "상태 표시줄 항목의 식별자입니다. 확장 내에서 고유해야 합니다. `vscode.window.createStatusBarItem(id, ...)` API를 호출할 때 동일한 값을 사용해야 합니다.",
+ "invalid": "잘못된 상태 표시줄 항목이 제공됐습니다.",
+ "name": "'Python 언어 표시기', 'Git 상태' 등과 같은 항목의 이름입니다. 이름의 길이는 짧게 유지하되 사용자가 무엇을 위한 상태 표시줄 항목인지 이해할 수 있도록 설명적인 이름을 지정하세요.",
+ "priority": "상태 표시줄 항목의 우선 순위입니다. 값이 높으면 항목이 더 왼쪽에 표시됩니다.",
+ "text": "항목에 대해 표시할 텍스트입니다. 'Hello $(globe)!'와 같은 `$()` 구문을 활용하여 텍스트에 아이콘을 포함할 수 있습니다.",
+ "tooltip": "항목의 도구 설명 텍스트입니다.",
+ "vscode.extension.contributes.statusBarItems": "항목을 상태 표시줄에 적용합니다."
+ },
"vs/workbench/api/browser/viewsExtensionPoint": {
+ "RequiresChatSessionsProposedAPI": "뷰 컨테이너 '{0}'을(를) 사용하려면 'enabledApiProposals: [\"chatSessionsProvider\"]'가 필요합니다.",
"ViewContainerDoesnotExist": "뷰 컨테이너 '{0}'이(가) 없으므로 이 컨테이너에 등록된 모든 뷰가 '탐색기'에 추가됩니다.",
"ViewContainerRequiresProposedAPI": "보기 컨테이너 '{0}'을(를) '원격'에 추가하려면 'enabledApiProposals: [\"contribViewsRemote\"]'가 필요합니다.",
"duplicateView1": "동일한 ID `{0}`(으)로 여러 보기를 등록할 수 없습니다.",
@@ -2688,15 +3402,25 @@
"requirenonemptystring": "속성 '{0}'은(는) 필수이며 값이 비어 있지 않은 'string' 형식이어야 합니다.",
"requirestring": "`{0}` 속성은 필수이며 `string` 형식이어야 함",
"unknownViewType": "알 수 없는 보기 형식 '{0}'입니다.",
+ "view container id": "ID",
+ "view container location": "위치",
+ "view container title": "제목",
+ "view id": "ID",
+ "view name title": "이름",
"viewcontainer requirearray": "뷰 컨테이너는 배열이어야 합니다.",
+ "views": "보기",
+ "views.agentSessions": "뷰를 작업 막대의 에이전트 세션 컨테이너에 적용합니다. 이 컨테이너에 기여하려면 'chatSessionsProvider' API 제안을 사용하도록 설정해야 합니다.",
"views.container.activitybar": "뷰 컨테이너를 작업 막대에 기여",
"views.container.panel": "패널에 뷰 컨테이너 제공",
+ "views.container.secondarySidebar": "보조 사이드바에 뷰 컨테이너 기여하기",
"views.contributed": "뷰를 적용된 뷰 컨테이너에 적용합니다.",
"views.debug": "뷰를 작업 막대의 디버그 컨테이너에 기여합니다.",
"views.explorer": "뷰를 작업 막대의 탐색기 컨테이너에 기여합니다.",
- "views.remote": "활동 표시줄에서 원격 컨테이너에 보기를 적용합니다. 이 컨테이너에 적용하려면 enableProposedApi를 켜야 합니다.",
+ "views.remote": "뷰를 작업 막대의 원격 컨테이너에 적용합니다. 이 컨테이너에 기여하려면 'contribViewsRemote' API 제안을 사용하도록 설정해야 합니다.",
"views.scm": "뷰를 작업 막대의 SCM 컨테이너에 적용합니다.",
"views.test": "뷰를 작업 막대의 테스트 컨테이너에 적용합니다.",
+ "viewsContainers": "컨테이너 보기",
+ "vscode.extension.contributes.view.accessibilityHelpContent": "이 보기에서 접근성 도움말 대화 상자를 호출하면 이 콘텐츠가 사용자에게 markdown 문자열로 표시됩니다. 키 바인딩은 형식으로 제공되면 확인됩니다. 키 바인딩이 없으면 이 명령이 표시되고 이 명령은 간편한 구성을 위해 quickpick에 포함됩니다.",
"vscode.extension.contributes.view.contextualTitle": "보기가 원래 위치에서 이동된 경우 사람이 읽을 수 있는 컨텍스트입니다. 기본적으로 보기의 컨테이너 이름이 사용됩니다.",
"vscode.extension.contributes.view.group": "뷰렛의 중첩된 그룹",
"vscode.extension.contributes.view.icon": "보기 아이콘 경로입니다. 보기 아이콘은 보기 이름을 표시할 수 없을 때 표시됩니다. 모든 이미지 파일 형식을 사용할 수 있지만, SVG 형식의 아이콘을 사용하는 것이 좋습니다.",
@@ -2716,20 +3440,29 @@
"vscode.extension.contributes.views.containers.id": "'뷰' 기여 지점을 사용하여 뷰가 기여될 수 있는 컨테이너를 식별하는 데 사용되는 고유한 ID",
"vscode.extension.contributes.views.containers.title": "컨테이너를 렌더링하는 데 사용되는 사람이 읽을 수 있는 문자열",
"vscode.extension.contributes.viewsContainers": "뷰 컨테이너를 편집기에 기여합니다.",
- "vscode.extension.contributs.view.size": "보기의 크기입니다. 숫자를 사용하면 css 'flex' 속성처럼 동작하며 뷰가 처음 표시될 때 크기가 초기 크기를 설정합니다. 사이드바에서 보기의 높이입니다."
+ "vscode.extension.contributs.view.size": "뷰의 초기 크기입니다. 크기는 CSS 'flex' 속성처럼 작동하며 뷰가 처음 표시될 때 초기 크기를 설정합니다. 사이드바에서 이것은 뷰의 높이입니다. 이 값은 동일한 확장이 보기와 보기 컨테이너를 모두 소유하는 경우에만 적용됩니다."
},
"vs/workbench/api/common/configurationExtensionPoint": {
+ "accessibility": "접근성 설정",
+ "advanced": "고급 설정은 사용자가 고급 설정을 표시하도록 선택하지 않는 한 설정 편집기에서 기본적으로 숨겨집니다.",
"config.property.defaultConfiguration.warning": "'{0}'에 대한 구성 기본값을 등록할 수 없습니다. 기계 재정의 가능, 창, 자원 및 언어 재정의 가능 범위 설정에 대한 기본값만 지원됩니다.",
"config.property.duplicate": "'{0}'을(를) 등록할 수 없습니다. 이 속성은 이미 등록되어 있습니다.",
+ "config.property.preventDefaultConfiguration.warning": "'{0}'의 구성 기본값을 등록할 수 없습니다. 이 설정은 구성 기본값 기여를 허용하지 않습니다.",
+ "default": "기본값",
+ "description": "설명",
+ "experimental": "실험적 설정은 변경될 수 있으며, 이후 릴리스에서 제거될 수 있습니다.",
"invalid.allOf": "'configuration.allOf'는 사용되지 않으며 더 이상 사용해서는 안됩니다. 대신 여러 구성 섹션을 배열로 'configuration' 기여 지점에 전달하세요.",
"invalid.properties": "'configuration.properties'는 개체여야 합니다.",
"invalid.property": "configuration.properties 속성 '{0}'은(는) 개체여야 합니다.",
"invalid.title": "'configuration.title'은 문자열이어야 합니다.",
+ "preview": "미리 보기 설정을 사용하면 새 기능이 완성되기 전에 사용해 볼 수 있습니다.",
"scope.application.description": "사용자 설정에서만 구성할 수 있는 구성입니다.",
"scope.deprecationMessage": "설정하면 속성이 사용되지 않음으로 표시되고 지정된 메시지가 설명으로 표시됩니다.",
"scope.description": "구성이 적용되는 범위입니다. 사용 가능한 범위는 `application`, `machine`, `window`, `resource` 및 'machine-overridable`입니다.",
"scope.editPresentation": "지정한 경우 문자열 설정의 프레젠테이션 형식을 제어합니다.",
"scope.enumDescriptions": "열거형 값에 대한 설명",
+ "scope.enumItemLabels": "설정 편집기에 표시할 열거형 값의 레이블입니다. 지정하면 {0} 값이 레이블 뒤에 계속 표시되지만 덜 눈에 띄게 표시됩니다.",
+ "scope.ignoreSync": "사용하도록 설정하면 설정 동기화가 기본적으로 이 구성의 사용자 값을 동기화하지 않습니다.",
"scope.language-overridable.description": "언어별 설정에서 구성할 수 있는 리소스 구성입니다.",
"scope.machine-overridable.description": "작업 영역 또는 폴더 설정에서도 구성할 수 있는 컴퓨터 구성입니다.",
"scope.machine.description": "사용자 설정 또는 원격 설정에서만 구성할 수 있는 구성.",
@@ -2740,8 +3473,13 @@
"scope.order": "지정된 경우 동일한 범주 내의 다른 설정을 기준으로 이 설정의 순서를 지정합니다. 주문 속성이 있는 설정은 이 속성이 설정되지 않은 설정 앞에 배치됩니다.",
"scope.resource.description": "사용자, 원격, 작업 영역 또는 폴더 설정에서 구성할 수 있는 구성입니다.",
"scope.singlelineText.description": "값이 입력 상자에 표시됩니다.",
+ "scope.tags": "설정을 배치할 태그 목록입니다. 그런 다음 설정 편집기에서 태그를 검색할 수 있습니다. 예를 들어 'experimental' 태그를 지정하면 '@tag:experimental'을 검색하여 설정을 찾을 수 있습니다.",
"scope.window.description": "사용자, 원격 또는 작업 영역 설정에서 구성할 수 있는 구성입니다.",
+ "setting name": "ID",
+ "settings": "설정",
+ "telemetry": "원격 분석 설정",
"unknownWorkspaceProperty": "알 수 없는 작업 영역 구성 속성",
+ "usesOnlineServices": "온라인 서비스를 사용하는 설정",
"vscode.extension.contributes.configuration": "구성 설정을 적용합니다.",
"vscode.extension.contributes.configuration.order": "지정한 경우 다른 범주를 기준으로 이 범주의 설정 순서를 지정합니다.",
"vscode.extension.contributes.configuration.properties": "구성 속성에 대한 설명입니다.",
@@ -2751,6 +3489,7 @@
"workspaceConfig.extensions.description": "작업 영역 확장",
"workspaceConfig.folders.description": "작업 영역에 로드되는 폴더 목록입니다.",
"workspaceConfig.launch.description": "작업 영역 시작 구성",
+ "workspaceConfig.mcp.description": "모델 컨텍스트 프로토콜 서버 구성",
"workspaceConfig.name.description": "폴더에 대한 선택적 이름입니다.",
"workspaceConfig.path.description": "파일 경로입니다. 예: `/root/folderA` 또는 `./folderA`(작업 영역 파일의 위치를 기준으로 확인할 상대 경로인 경우)",
"workspaceConfig.remoteAuthority": "작업 영역이 있는 원격 서버입니다.",
@@ -2759,6 +3498,13 @@
"workspaceConfig.transient": "다시 시작하거나 다시 로드할 때 임시 작업 영역이 사라집니다.",
"workspaceConfig.uri.description": "폴더 URI"
},
+ "vs/workbench/api/common/extHostAuthentication": {
+ "authenticatingTo": "'{0}'에 인증",
+ "completeAuth": "열린 브라우저 창에서 인증을 완료합니다.",
+ "continueWith": "'{0}'에 대한 인증을 아직 완료하지 않았습니다. 다른 방법을 시도해 보시겠습니까? ({1})",
+ "url handler": "URL 처리기",
+ "userCanceledContinue": "'{0}'에 인증하는 데 문제가 있나요? 다른 방법을 시도해 보시겠습니까? ({1})"
+ },
"vs/workbench/api/common/extHostDiagnostics": {
"limitHit": "{0}개의 추가 오류 및 경고를 표시하지 않습니다."
},
@@ -2766,19 +3512,38 @@
"extensionTestError": "경로 {0}이(가) 유효한 확장 Test Runner를 가리키지 않습니다.",
"extensionTestError1": "Test Runner를 로드할 수 없습니다."
},
- "vs/workbench/api/common/extHostProgress": {
- "extensionSource": "{0}(확장)"
+ "vs/workbench/api/common/extHostLanguageFeatures": {
+ "defaultDropLabel": "'{0}' 확장을 사용하여 삭제",
+ "defaultPasteLabel": "'{0}' 확장을 사용하여 붙여넣기"
+ },
+ "vs/workbench/api/common/extHostLanguageModels": {
+ "chatAccessWithJustification": "근거: {1}"
+ },
+ "vs/workbench/api/common/extHostLogService": {
+ "local": "확장 호스트",
+ "remote": "확장 호스트(원격)",
+ "worker": "확장 호스트(작업자)"
+ },
+ "vs/workbench/api/common/extHostNotebook": {
+ "err.readonly": "읽기 전용 파일 '{0}'을(를) 수정할 수 없습니다.",
+ "fileModifiedError": "파일 수정됨"
},
"vs/workbench/api/common/extHostStatusBar": {
"extensionLabel": "{0}(확장)",
"status.extensionMessage": "확장 상태"
},
+ "vs/workbench/api/common/extHostTelemetry": {
+ "extensionTelemetryLog": "확장 원격 분석{0}"
+ },
"vs/workbench/api/common/extHostTerminalService": {
"launchFail.idMissingOnExtHost": "확장 호스트에서 ID가 {0}인 터미널을 찾을 수 없음"
},
"vs/workbench/api/common/extHostTreeViews": {
- "treeView.duplicateElement": "ID가 {0}인 요소가 이미 등록되어 있습니다.",
- "treeView.notRegistered": "ID가 '{0}'인 등록된 트리 뷰가 없습니다."
+ "treeView.duplicateElement": "ID가 {0}인 요소가 이미 등록되어 있습니다."
+ },
+ "vs/workbench/api/common/extHostTunnelService": {
+ "tunnelPrivacy.private": "프라이빗",
+ "tunnelPrivacy.public": "공용"
},
"vs/workbench/api/common/extHostWorkspace": {
"updateerror": "'{0}' 확장이 작업 영역 폴더를 업데이트하지 못했습니다. {1}"
@@ -2787,79 +3552,118 @@
"contributes.jsonValidation": "json 스키마 구성을 적용합니다.",
"contributes.jsonValidation.fileMatch": "일치하도록 연결할 파일 패턴 또는 패턴 배열(예: \"package.json\" 또는 \"*.launch\"). 제외 패턴은 '!' 기호로 시작합니다.",
"contributes.jsonValidation.url": "스키마 URL('http:', 'https:') 또는 확장 폴더에 대한 상대 경로('./')입니다.",
+ "fileMatch": "파일 일치",
"invalid.fileMatch": "'configuration.jsonValidation.fileMatch'는 문자열 또는 문자열의 배열로 정의되어야 합니다.",
"invalid.jsonValidation": "'configuration.jsonValidation'은 배열이어야 합니다.",
"invalid.path.1": "확장 폴더({2})에 포함할 'contributes.{0}.url'({1})이 필요합니다. 확장이 이식 불가능해질 수 있습니다.",
"invalid.url": "'configuration.jsonValidation.url'은 URL 또는 상대 경로여야 합니다.",
"invalid.url.fileschema": "'configuration.jsonValidation.url'이 잘못된 상대 URL입니다. {0}",
- "invalid.url.schema": "확장에 위치한 스키마를 참조하기 위해 'configuration.jsonValidation.url'은 절대 URL이거나 './'로 시작해야 합니다."
+ "invalid.url.schema": "확장에 위치한 스키마를 참조하기 위해 'configuration.jsonValidation.url'은 절대 URL이거나 './'로 시작해야 합니다.",
+ "jsonValidation": "JSON 유효성 검사",
+ "schema": "스키마"
+ },
+ "vs/workbench/api/node/extHostAuthentication": {
+ "completeAuth": "열린 브라우저 창에서 인증을 완료합니다.",
+ "device code": "장치 코드",
+ "loopback": "루프백 서버",
+ "waitingForAuth": "새 탭에서 [{0}]({0})을 열고 일회성 코드 {1}을(를) 붙여넣습니다."
},
"vs/workbench/api/node/extHostDebugService": {
"debug.terminal.title": "디버그 프로세스"
},
- "vs/workbench/api/node/extHostTunnelService": {
- "tunnelPrivacy.private": "프라이빗",
- "tunnelPrivacy.public": "공용"
+ "vs/workbench/api/test/browser/mainThreadTreeViews.test": {
+ "Test View 1": "테스트 뷰 1",
+ "test": "테스트"
},
"vs/workbench/browser/actions/developerActions": {
+ "global": "전역",
"inspect context keys": "컨텍스트 키 검사",
- "keyboardShortcutsFormat.command": "명령 제목입니다.",
- "keyboardShortcutsFormat.commandAndKeys": "명령 제목 및 키입니다.",
- "keyboardShortcutsFormat.commandWithGroup": "해당 그룹이 접두사로 붙는 명령 제목입니다.",
- "keyboardShortcutsFormat.commandWithGroupAndKeys": "명령 제목 및 키(해당 그룹이 접두사로 붙는 명령 포함)",
- "keyboardShortcutsFormat.keys": "키.",
+ "largeStorageItemDetail": "범위: {0}, 대상: {1}",
"logStorage": "로그 스토리지 데이터베이스 콘텐츠",
"logWorkingCopies": "작업 복사본 로깅",
+ "machine": "컴퓨터",
+ "policyDiagnostics": "정책 진단",
+ "profile": "프로필",
+ "removeLargeStorageDatabaseEntries": "대용량 스토리지 데이터베이스 항목 제거...",
+ "removeLargeStorageEntriesButtonLabel": "제거(&&R)",
+ "removeLargeStorageEntriesConfirmRemove": "선택한 스토리지 항목을 데이터베이스에서 제거하시겠습니까?",
+ "removeLargeStorageEntriesConfirmRemoveDetail": "{0}\r\n\r\n이 작업은 되돌릴 수 없으며 데이터가 손실될 수 있습니다!",
+ "removeLargeStorageEntriesPickerButton": "제거",
+ "removeLargeStorageEntriesPickerDescriptionNoEntries": "제거할 대용량 스토리지 항목이 없습니다.",
+ "removeLargeStorageEntriesPickerPlaceholder": "스토리지에서 제거할 큰 항목 선택",
"screencastMode.fontSize": "스크린캐스트 모드 키보드의 글꼴 크기(픽셀)를 제어합니다.",
+ "screencastMode.keyboardOptions.description": "스크린캐스트 모드에서 키보드 오버레이를 사용자 지정하는 옵션입니다.",
+ "screencastMode.keyboardOptions.showCommandGroups": "명령도 표시되면 명령 그룹 이름을 표시합니다.",
+ "screencastMode.keyboardOptions.showCommands": "명령 이름을 표시합니다.",
+ "screencastMode.keyboardOptions.showKeybindings": "바로 가기 키를 표시합니다.",
+ "screencastMode.keyboardOptions.showKeys": "원시 키를 표시합니다.",
+ "screencastMode.keyboardOptions.showSingleEditorCursorMoves": "단일 편집기 커서 이동 명령을 표시합니다.",
"screencastMode.keyboardOverlayTimeout": "스크린캐스트 모드에서 키보드 오버레이가 표시되는 시간(밀리초)을 제어합니다.",
- "screencastMode.keyboardShortcutsFormat": "바로 가기를 표시할 때 키보드 오버레이에 표시되는 항목을 제어합니다.",
"screencastMode.location.verticalPosition": "맨 아래에서 스크린캐스트 모드 오버레이의 수직 오프셋을 워크벤치 높이의 백분율로 제어합니다.",
"screencastMode.mouseIndicatorColor": "스크린캐스트 모드에서 마우스 표시기의 헥스(#RGB, #RGBA, #RRGGBB 또는 #RRGGBBAA) 색상을 제어합니다.",
"screencastMode.mouseIndicatorSize": "스크린캐스트 모드에서 마우스 표시기의 크기(픽셀)를 제어합니다.",
- "screencastMode.onlyKeyboardShortcuts": "스크린캐스트 모드에서 바로 가기 키만 표시합니다.",
"screencastModeConfigurationTitle": "스크린캐스트 모드",
- "toggle screencast mode": "스크린캐스트 모드 토글"
+ "snapshotTrackedDisposables": "스냅샷 추적된 삭제 가능 항목",
+ "startTrackDisposables": "삭제 가능한 항목 추적 시작",
+ "stopTrackDisposables": "삭제 가능한 항목 추적 중지",
+ "storageLogDialogDetails": "메뉴에서 개발자 도구를 열고 콘솔 탭을 선택합니다.",
+ "storageLogDialogMessage": "저장소 데이터베이스 콘텐츠를 개발자 도구에 기록했습니다.",
+ "toggle screencast mode": "스크린캐스트 모드 토글",
+ "user": "사용자",
+ "workspace": "작업 영역"
},
"vs/workbench/browser/actions/helpActions": {
+ "askVScode": "@vscode에 질문하기",
+ "getStartedWithAccessibilityFeatures": "접근성 기능 시작",
"keybindingsReference": "바로 가기 키 참조",
"miDocumentation": "설명서(&&D)",
"miKeyboardShortcuts": "바로 가기 키 참조(&&K)",
"miLicense": "라이선스 보기(&&L)",
"miPrivacyStatement": "개인정보처리방침(&&Y)",
"miTipsAndTricks": "팁과 요령(&&C)",
- "miTwitter": "Twitter에서 참여(&&J)",
"miUserVoice": "검색 기능 요청(&&S)",
"miVideoTutorials": "비디오 자습서(&&V)",
+ "miYouTube": "YouTube에서 참여(&&J)",
"newsletterSignup": "VS Code 뉴스레터 등록",
"openDocumentationUrl": "문서",
"openLicenseUrl": "라이센스 보기",
"openPrivacyStatement": "개인정보처리방침",
"openTipsAndTricksUrl": "팁과 요령",
- "openTwitterUrl": "Twitter에서 참여",
"openUserVoiceUrl": "기능 요청 검색",
- "openVideoTutorialsUrl": "비디오 자습서"
+ "openVideoTutorialsUrl": "비디오 자습서",
+ "openYouTubeUrl": "YouTube에서 참여"
},
"vs/workbench/browser/actions/layoutActions": {
"active": "활성",
"activityBar": "작업 표시줄",
"activityBarLeft": "왼쪽 위치의 활동 표시줄을 나타냅니다.",
"activityBarRight": "올바른 위치의 활동 표시줄을 나타냅니다.",
+ "alignQuickInputCenter": "빠른 입력 가운데 맞춤",
+ "alignQuickInputTop": "빠른 입력 위쪽 맞춤",
+ "center": "가운데 맞춤",
"centerLayoutIcon": "가운데 레이아웃 모드를 나타냅니다.",
"centerPanel": "가운데",
"centeredLayout": "가운데 맞춤 레이아웃",
"close": "닫기",
- "closeSidebar": "기본 사이드 바 닫기",
"cofigureLayoutIcon": "아이콘은 워크벤치 레이아웃 구성을 나타냅니다.",
"compositePart.hideSideBarLabel": "기본 사이드바 숨기기",
+ "configureEditors": "편집기 구성",
"configureLayout": "레이아웃 구성",
+ "configureTabs": "탭 구성",
"customizeLayout": "레이아웃 사용자 지정...",
"customizeLayoutQuickPickTitle": "레이아웃 사용자 지정",
"decreaseEditorHeight": "편집기 높이 줄이기",
"decreaseEditorWidth": "편집기 너비 줄이기",
"decreaseViewSize": "현재 뷰 크기 줄이기",
+ "editorActionsPosition": "편집기 작업 위치",
"fullScreenIcon": "전체 화면을 나타냅니다.",
"fullscreen": "전체 화면",
- "hidden": "숨김",
+ "hideEditorActons": "편집기 작업 숨기기",
+ "hideEditorActonsDescription": "탭 및 제목 표시줄에서 편집기 작업 숨기기",
+ "hideEditorTabs": "편집기 탭 숨기기",
+ "hideEditorTabsDescription": "탭 표시줄 숨기기",
+ "hideEditorTabsZenMode": "Zen 모드에서 편집기 탭 숨기기",
+ "hideEditorTabsZenModeDescription": "Zen 모드에서 탭 표시줄 숨기기",
"increaseEditorHeight": "편집기 높이 늘리기",
"increaseEditorWidth": "편집기 너비 늘리기",
"increaseViewSize": "현재 뷰 크기 늘리기",
@@ -2869,23 +3673,23 @@
"leftSideBar": "왼쪽",
"menuBar": "메뉴 모음",
"menuBarIcon": "메뉴 바를 나타냅니다.",
- "miActivityBar": "&&Activity Bar",
"miAppearance": "모양(&&A)",
- "miMenuBar": "Menu &&Bar",
- "miMenuBarNoMnemonic": "Menu Bar",
+ "miMenuBar": "메뉴 모음(&&B)",
+ "miMenuBarNoMnemonic": "메뉴 모음",
"miMoveSidebarLeft": "기본 사이드바를 왼쪽으로 이동(&&M)",
"miMoveSidebarRight": "기본 사이드 바 오른쪽으로 이동(&&M)",
"miShowEditorArea": "편집기 영역 표시(&&E)",
- "miShowSidebar": "&&Primary Side Bar",
- "miSidebarNoMnnemonic": "Primary Side Bar",
- "miStatusbar": "S&&tatus Bar",
+ "miStatusbar": "가로 막대(&&T)",
"miToggleCenteredLayout": "가운데 맞춤 레이아웃(&&C)",
"miToggleZenMode": "Zen 모드",
"move second sidebar left": "보조 사이드바를 왼쪽으로 이동",
"move second sidebar right": "보조 사이드바를 오른쪽으로 이동",
"move side bar right": "기본 사이드 바를 오른쪽으로 이동",
"move sidebar left": "기본 사이드 바를 왼쪽으로 이동",
- "move sidebar right": "기본 사이드 바를 오른쪽으로 이동",
+ "moveEditorActionsToTabBar": "편집기 작업을 탭 표시줄로 이동",
+ "moveEditorActionsToTabBarDescription": "제목 표시줄에서 탭 표시줄로 편집기 작업 이동",
+ "moveEditorActionsToTitleBar": "편집기 작업을 제목 표시줄로 이동",
+ "moveEditorActionsToTitleBarDescription": "탭 표시줄에서 제목 표시줄로 편집기 작업 이동",
"moveFocusedView": "포커스가 지정된 뷰 이동",
"moveFocusedView.error.noFocusedView": "현재 포커스가 지정된 뷰가 없습니다.",
"moveFocusedView.error.nonMovableView": "현재 포커스가 있는 뷰는 이동할 수 없습니다.",
@@ -2898,6 +3702,7 @@
"moveSidebarLeft": "기본 사이드 바를 왼쪽으로 이동",
"moveSidebarRight": "기본 사이드 바를 오른쪽으로 이동",
"moveView": "보기 이동",
+ "openAndCloseSidebar": "사이드바 열기/표시 및 닫기/숨기기",
"panel": "패널",
"panelAlignment": "패널 정렬",
"panelBottom": "하단 패널을 나타냅니다.",
@@ -2910,34 +3715,60 @@
"panelLeftOff": "왼쪽 위치의 사이드바가 꺼져 있음을 나타냅니다.",
"panelRight": "오른쪽 위치에 있는 사이드바를 나타냅니다.",
"panelRightOff": "오른쪽 위치의 사이드바가 꺼져 있음을 나타냅니다.",
+ "primary sidebar": "기본 사이드바",
+ "primary sidebar mnemonic": "기본 사이드바(&&P)",
+ "quickInputAlignmentCenter": "가운데에 설정된 빠른 입력 맞춤을 나타냅니다.",
+ "quickInputAlignmentTop": "위쪽에 설정된 빠른 입력 맞춤을 나타냅니다.",
+ "quickOpen": "빠른 입력 위치",
"resetFocusedView.error.noFocusedView": "현재 포커스가 지정된 뷰가 없습니다.",
"resetFocusedViewLocation": "포커스된 뷰 위치 다시 설정",
"resetViewLocations": "뷰 위치 다시 설정",
+ "restore defaults": "기본값 복원",
"rightPanel": "오른쪽",
"rightSideBar": "오른쪽",
"secondarySideBar": "보조 사이드바",
"secondarySideBarContainer": "보조 사이드바/{0}",
+ "selectToHide": "숨기려면 선택",
+ "selectToShow": "표시하려면 선택",
+ "showEditorActons": "편집기 작업 표시",
+ "showEditorActonsDescription": "편집기 작업을 표시합니다.",
+ "showMultipleEditorTabs": "여러 편집기 탭 표시",
+ "showMultipleEditorTabsDescription": "여러 탭이 있는 탭 표시줄 표시",
+ "showMultipleEditorTabsZenMode": "Zen 모드에서 여러 편집기 탭 표시",
+ "showMultipleEditorTabsZenModeDescription": "Zen 모드에서 탭 표시줄 표시",
+ "showSingleEditorTab": "단일 편집기 탭 표시",
+ "showSingleEditorTabDescription": "탭 하나를 사용하여 탭 표시줄 표시",
+ "showSingleEditorTabZenMode": "Zen 모드에서 단일 편집기 탭 표시",
+ "showSingleEditorTabZenModeDescription": "한 탭으로 Zen 모드에서 탭 표시줄 표시",
"sideBar": "기본 사이드바",
"sideBarPosition": "기본 사이드바 위치",
"sidebar": "사이드바",
"sidebarContainer": "사이드바 / {0}",
+ "sidebarHidden": "기본 사이드바 숨김",
+ "sidebarVisible": "기본 사이드바 표시",
"statusBar": "상태 표시줄",
"statusBarIcon": "상태 표시줄을 나타냅니다.",
- "toggleActivityBar": "작업 막대 표시 유형 전환",
+ "tabBar": "탭 표시줄",
"toggleCenteredLayout": "가운데 맞춤된 레이아웃 설정/해제",
"toggleEditor": "편집기 영역 가시성 전환",
"toggleMenuBar": "메뉴 모음 설정/해제",
+ "toggleSeparatePinnedEditorTabs": "고정된 편집기 탭 구분",
+ "toggleSeparatePinnedEditorTabsDescription": "고정되지 않은 탭 위의 별도 행에 고정된 편집기 탭이 표시되는지 여부를 전환합니다.",
"toggleSideBar": "기본 사이드바 설정/해제",
"toggleSidebar": "기본 사이드 바 가시성 전환",
"toggleSidebarPosition": "기본 사이드 바 위치 전환",
"toggleStatusbar": "상태 표시줄 표시 설정/해제",
- "toggleTabs": "탭 표시 설정/해제",
"toggleVisibility": "표시 여부",
"toggleZenMode": "Zen 모드 설정/해제",
- "visible": "표시",
+ "top": "상위",
"zenMode": "Zen 모드",
"zenModeIcon": "선 모드를 나타냅니다."
},
+ "vs/workbench/browser/actions/listCommands": {
+ "mitoggleTreeStickyScroll": "트리 고정 스크롤 설정/해제(&&T)",
+ "toggleTreeStickyScroll": "트리 고정 스크롤 설정/해제",
+ "toggleTreeStickyScrollDescription": "파일 탐색기 및 디버그 변수 뷰와 같은 트리 구조의 맨 위에 있는 고정 스크롤 위젯을 전환합니다."
+ },
"vs/workbench/browser/actions/navigationActions": {
"focusNextPart": "다음 부분에 포커스 설정",
"focusPreviousPart": "이전 부분에 포커스 설정",
@@ -2950,6 +3781,7 @@
"quickNavigateNext": "Quick Open에서 다음 탐색",
"quickNavigatePrevious": "Quick Open에서 이전 탐색",
"quickOpen": "파일로 이동...",
+ "quickOpenWithModes": "Quick Open",
"quickSelectNext": "Quick Open에서 다음 선택",
"quickSelectPrevious": "Quick Open에서 이전 선택"
},
@@ -2963,6 +3795,8 @@
},
"vs/workbench/browser/actions/windowActions": {
"about": "에 대한",
+ "activeOpenedRecentlyOpenedFolder": "활성 창에서 열린 폴더",
+ "activeOpenedRecentlyOpenedWorkspace": "활성 창에서 열린 작업 영역",
"blur": "포커스가 있는 요소에서 키보드 포커스 제거",
"dirtyFolder": "저장되지 않은 파일이 있는 폴더",
"dirtyFolderConfirm": "폴더를 열어 저장되지 않은 파일을 검토하시겠습니까?",
@@ -2972,7 +3806,6 @@
"dirtyWorkspace": "저장되지 않은 파일이 있는 작업 영역",
"dirtyWorkspaceConfirm": "작업 영역을 열어 저장되지 않은 파일을 검토하시겠습니까?",
"dirtyWorkspaceConfirmDetail": "저장되지 않은 파일이 있는 작업 영역은 모든 저장되지 않은 파일을 저장하거나 되돌릴 때까지 제거할 수 없습니다.",
- "file": "파일",
"files": "파일",
"folders": "폴더",
"miAbout": "정보(&&A)",
@@ -2985,6 +3818,8 @@
"openRecent": "최근 항목 열기...",
"openRecentPlaceholder": "선택하여 열기(새 창을 적용하려면 키를 누르고 같은 창을 사용하려면 키를 누름)",
"openRecentPlaceholderMac": "선택하여 열기(새 창에서 열려면 Cmd 키를 누르고 같은 창을 사용하려면 옵션 키를 누른 상태로 선택)",
+ "openedRecentlyOpenedFolder": "창에서 열린 폴더",
+ "openedRecentlyOpenedWorkspace": "창에서 열린 작업 영역",
"quickOpenRecent": "최근 항목 빠르게 열기...",
"recentDirtyFolderAriaLabel": "{0}, 저장되지 않은 변경 내용이 있는 폴더",
"recentDirtyWorkspaceAriaLabel": "{0}, 저장되지 않은 변경 내용이 있는 작업 영역",
@@ -2997,7 +3832,6 @@
"closeWorkspace": "작업 영역 닫기",
"duplicateWorkspace": "중복 작업 영역",
"duplicateWorkspaceInNewWindow": "새 창에 작업 영역으로 복제",
- "filesCategory": "파일",
"globalRemoveFolderFromWorkspace": "작업 영역에서 폴더 제거...",
"miAddFolderToWorkspace": "작업 영역에 폴더 추가(&&D)...",
"miCloseFolder": "폴더 닫기(&&F)",
@@ -3021,53 +3855,70 @@
"addFolderToWorkspaceTitle": "작업 영역에 폴더 추가",
"workspaceFolderPickerPlaceholder": "작업 영역 폴더 선택"
},
- "vs/workbench/browser/codeeditor": {
- "openWorkspace": "작업 영역 열기"
- },
"vs/workbench/browser/editor": {
"pinned": "{0}, 고정됨",
"preview": "{0}, 미리 보기"
},
- "vs/workbench/browser/parts/activitybar/activitybarActions": {
- "authProviderUnavailable": "현재 {0}을(를) 사용할 수 없습니다.",
- "focusActivityBar": "작업 막대에 포커스",
- "hideAccounts": "계정 숨기기",
- "manageTrustedExtensions": "신뢰할 수 있는 확장 관리",
- "nextSideBarView": "다음 기본 사이드 바 보기",
- "noAccounts": "계정에 로그인되어 있지 않습니다.",
- "previousSideBarView": "이전 기본 사이드 바 보기",
- "signOut": "로그아웃"
+ "vs/workbench/browser/labels": {
+ "notebookCellLabel": "{0} • 셀 {1}",
+ "notebookCellOutputLabel": "{0} • 셀 {1} • 출력 {2}",
+ "notebookCellOutputLabelSimple": "{0} • 셀 {1} • 출력"
},
"vs/workbench/browser/parts/activitybar/activitybarPart": {
- "accounts": "계정",
- "accounts visibility key": "활동 표시줄의 계정 항목 표시 유형 사용자 지정.",
- "accountsViewBarIcon": "보기 표시줄의 계정 아이콘입니다.",
- "hideActivitBar": "작업 막대 숨기기",
+ "activity bar position": "작업 표시줄 위치",
+ "bottom": "맨 아래",
+ "default": "기본값",
+ "focusActivityBar": "작업 막대에 포커스",
+ "hide": "숨겨짐",
+ "hideActivityBar": "작업 막대 숨기기",
"hideMenu": "메뉴 숨기기",
- "manage": "관리",
"menu": "메뉴",
- "pinned view containers": "활동 표시줄 항목 표시 유형 사용자 지정",
- "resetLocation": "위치 다시 설정",
- "settingsViewBarIcon": "보기 표시줄의 설정 아이콘입니다."
+ "miBottomActivityBar": "아래쪽(&B)",
+ "miDefaultActivityBar": "기본값(&D)",
+ "miHideActivityBar": "숨김(&&H)",
+ "miTopActivityBar": "위쪽(&&T)",
+ "nextSideBarView": "다음 기본 사이드 바 보기",
+ "positionActivituBar": "작업 표시줄 위치",
+ "positionActivityBarBottom": "작업 표시줄을 아래쪽으로 이동",
+ "positionActivityBarDefault": "작업 표시줄을 측면으로 이동",
+ "positionActivityBarTop": "작업 표시줄을 맨 위로 이동",
+ "previousSideBarView": "이전 기본 사이드 바 보기",
+ "top": "맨 위"
},
"vs/workbench/browser/parts/auxiliarybar/auxiliaryBarActions": {
+ "auxiliaryBarHidden": "보조 사이드바 숨김",
+ "auxiliaryBarVisible": "보조 사이드바 표시",
+ "closeIcon": "보조 사이드바를 닫는 아이콘입니다.",
+ "closeSecondarySideBar": "보조 사이드바 숨기기",
"focusAuxiliaryBar": "보조 사이드바에 포커스",
"hideAuxiliaryBar": "보조 사이드바 숨기기",
- "miAuxiliaryBar": "Secondary Si&&de Bar",
- "miAuxiliaryBarNoMnemonic": "Secondary Side Bar",
+ "maximizeAuxiliaryBar": "보조 사이드바 최대화",
+ "maximizeAuxiliaryBarTooltip": "보조 사이드바 크기 최대화",
+ "maximizeIcon": "보조 사이드바를 최대화하는 아이콘입니다.",
+ "miCloseSecondarySideBar": "보조 사이드바(&&S)",
+ "nextAuxiliaryBarView": "다음 보조 사이드바 보기",
+ "openAndCloseAuxiliaryBar": "보조 사이드바 열기/표시 및 닫기/숨기기",
+ "previousAuxiliaryBarView": "이전 보조 사이드바 보기",
+ "restoreAuxiliaryBar": "보조 사이드바 복원",
+ "restoreAuxiliaryBarTooltip": "보조 사이드바 크기 복원",
"toggleAuxiliaryBar": "보조 사이드바 표시 설정/해제",
- "toggleAuxiliaryIconLeft": "왼쪽 위치에서 보조 막대를 전환하는 아이콘입니다.",
- "toggleAuxiliaryIconLeftOn": "왼쪽 위치에서 보조 막대를 켜는 아이콘입니다.",
- "toggleAuxiliaryIconRight": "오른쪽 위치에서 보조 막대를 끄는 아이콘입니다.",
- "toggleAuxiliaryIconRightOn": "오른쪽 위치에서 보조 막대를 켜는 아이콘입니다.",
+ "toggleAuxiliaryIconLeft": "왼쪽 위치에서 보조 사이드바를 토글하는 아이콘입니다.",
+ "toggleAuxiliaryIconLeftOn": "왼쪽 위치에서 보조 사이드바를 켜는 아이콘입니다.",
+ "toggleAuxiliaryIconRight": "오른쪽 위치에서 보조 사이드바를 끄는 아이콘입니다.",
+ "toggleAuxiliaryIconRightOn": "오른쪽 위치에서 보조 사이드바를 켜는 아이콘입니다.",
+ "toggleMaximizedAuxiliaryBar": "최대화된 보조 사이드바 토글",
"toggleSecondarySideBar": "보조 사이드바 설정/해제"
},
"vs/workbench/browser/parts/auxiliarybar/auxiliaryBarPart": {
- "hideAuxiliaryBar": "보조 사이드바 숨기기",
+ "activity bar position": "작업 표시줄 위치",
+ "hide second side bar": "보조 사이드바 숨기기",
"move second side bar left": "보조 사이드바를 왼쪽으로 이동",
- "move second side bar right": "보조 사이드바를 오른쪽으로 이동"
+ "move second side bar right": "보조 사이드바를 오른쪽으로 이동",
+ "showIcons": "아이콘 표시",
+ "showLabels": "레이블 표시"
},
"vs/workbench/browser/parts/banner/bannerPart": {
+ "closeBanner": "배너 닫기",
"focusBanner": "포커스 배너"
},
"vs/workbench/browser/parts/compositeBar": {
@@ -3075,13 +3926,14 @@
},
"vs/workbench/browser/parts/compositeBarActions": {
"additionalViews": "추가 뷰",
- "badgeTitle": "{0} - {1}",
"hide": "'{0}' 숨기기",
+ "hideBadge": "배지 숨기기",
"keep": "'{0}' 유지",
- "manageExtension": "확장 관리",
"numberBadge": "{0}({1})",
+ "showBadge": "배지 표시",
"titleKeybinding": "{0}({1})",
- "toggle": "뷰 고정 전환"
+ "toggle": "뷰 고정 전환",
+ "toggleBadge": "배지 보기 설정/해제"
},
"vs/workbench/browser/parts/compositePart": {
"ariaCompositeToolbarLabel": "{0} 작업",
@@ -3089,18 +3941,20 @@
"viewsAndMoreActions": "보기 및 기타 작업..."
},
"vs/workbench/browser/parts/dialogs/dialogHandler": {
- "aboutDetail": "버전: {0}\r\n커밋: {1}\r\n날짜: {2}\r\n브라우저: {3}",
- "cancelButton": "취소",
- "copy": "복사",
- "ok": "확인",
- "yesButton": "예(&&Y)"
+ "copy": "복사(&&C)",
+ "ok": "확인"
+ },
+ "vs/workbench/browser/parts/editor/auxiliaryEditorPart": {
+ "disableCompactAuxiliaryWindow": "압축 모드 끄기",
+ "enableCompactAuxiliaryWindow": "압축 모드 켜기",
+ "toggleCompactAuxiliaryWindow": "창 컴팩트 모드 토글"
},
"vs/workbench/browser/parts/editor/binaryDiffEditor": {
"metadataDiff": "{0} ↔ {1}"
},
"vs/workbench/browser/parts/editor/binaryEditor": {
"binaryEditor": "이진 뷰어",
- "binaryError": "파일이 이진이거나 지원되지 않는 텍스트 인코딩을 사용하기 때문에 편집기에서 표시되지 않습니다.",
+ "binaryError": "파일이 이진이거나 지원되지 않는 텍스트 인코딩을 사용하므로 텍스트 편집기에서 표시되지 않습니다.",
"openAnyway": "계속 열기"
},
"vs/workbench/browser/parts/editor/breadcrumbs": {
@@ -3151,14 +4005,24 @@
"breadcrumbsPossible": "편집기에서 이동 경로를 표시할 수 있는지 여부",
"breadcrumbsVisible": "이동 경로가 현재 표시되는지 여부",
"cmd.focus": "이동 경로에 포커스",
+ "cmd.focusAndSelect": "포커스 및 이동 경로 선택",
"cmd.toggle": "이동 경로 설정/해제",
+ "cmd.toggle2": "이동 경로 설정/해제",
"empty": "요소 없음",
- "miBreadcrumbs": "&&Breadcrumbs",
+ "miBreadcrumbs2": "이동 경로(&&B)",
"separatorIcon": "이동 경로의 구분 기호 아이콘입니다."
},
"vs/workbench/browser/parts/editor/breadcrumbsPicker": {
"breadcrumbs": "이동 경로"
},
+ "vs/workbench/browser/parts/editor/diffEditorCommands": {
+ "compare": "비교",
+ "compare.nextChange": "다음 변경으로 이동",
+ "compare.openSide": "활성 Diff 측면 열기",
+ "compare.previousChange": "이전 변경 내용으로 이동",
+ "swapDiffSides": "편집기 방향 왼쪽과 오른쪽 바꾸기",
+ "toggleInlineView": "인라인 보기 토글"
+ },
"vs/workbench/browser/parts/editor/editor.contribution": {
"activeGroupEditorsByMostRecentlyUsedQuickAccess": "가장 최근에 사용한 항목별로 활성 그룹의 편집기 표시",
"allEditorsByAppearanceQuickAccess": "모양별로 열린 모든 편집기 표시",
@@ -3177,15 +4041,26 @@
"closeRight": "오른쪽에 있는 항목 닫기",
"closeRightEditors": "그룹에서 오른쪽에 있는 편집기 닫기",
"closeSavedEditors": "그룹에서 저장된 편집기 닫기",
+ "configureEditors": "편집기 구성",
+ "configureTabs": "탭 구성",
+ "copyEditorGroupToNewWindow": "새 창에 복사",
+ "copyEditorToNewWindow": "편집기를 새 창에 복사",
+ "copyToNewWindow": "새 창에 복사",
+ "editorActionsPosition": "편집기 작업 위치",
"editorQuickAccessPlaceholder": "열려는 편집기 이름을 입력합니다.",
- "file": "파일",
- "ignoreTrimWhitespace.label": "선행/후행 공백 차이 무시",
+ "hidden": "숨겨짐",
+ "hideTabs": "숨겨짐",
+ "ignoreTrimWhitespace.label": "선행/후행 공백 차이 표시",
"inlineView": "인라인 보기",
"joinInGroup": "그룹에 참가",
"keepEditor": "편집기 유지",
"keepOpen": "열린 상태 유지",
+ "lockEditorGroup": "그룹 잠금",
"lockGroup": "그룹 잠금",
- "miClearRecentOpen": "최근에 연 항목 지우기(&&C)",
+ "lockGroupAction": "그룹 잠금",
+ "maximizeGroup": "그룹 최대화",
+ "miClearRecentOpen": "최근 사용 항목 지우기(&&C)",
+ "miCopyEditorToNewWindow": "편집기를 새 창으로 복사(&&C)",
"miEditorLayout": "편집기 레이아웃(&&L)",
"miFirstSideEditor": "편집기의 첫 번째 측면(&&F)",
"miFocusAboveGroup": "위 그룹(&&A)",
@@ -3200,6 +4075,7 @@
"miJoinEditorInGroup": "그룹에 참가(&&G)",
"miJoinEditorInGroupWithoutMnemonic": "그룹에 참가",
"miLastEditLocation": "마지막 편집 위치(&&L)",
+ "miMoveEditorToNewWindow": "편집기를 새 창으로 이동(&&M)",
"miNextEditor": "다음 편집기(&&N)",
"miNextEditorInGroup": "그룹의 다음 편집기(&&N)",
"miNextGroup": "다음 그룹(&&N)",
@@ -3241,16 +4117,27 @@
"miTwoRowsEditorLayoutWithoutMnemonic": "두 개 행",
"miTwoRowsRightEditorLayout": "오른쪽 두 개 행(&&O)",
"miTwoRowsRightEditorLayoutWithoutMnemonic": "오른쪽 두 개 행",
+ "moveAbove": "위로 이동",
+ "moveBelow": "아래로 이동",
+ "moveEditorGroupToNewWindow": "새 창으로 이동",
+ "moveEditorToNewWindow": "편집기를 새 창으로 이동",
+ "moveLeft": "왼쪽으로 이동",
+ "moveRight": "오른쪽으로 이동",
+ "moveToNewWindow": "새 창으로 이동",
+ "multipleTabs": "여러 탭",
"navigate.next.label": "다음 변경 내용",
"navigate.prev.label": "이전 변경 내용",
+ "newWindow": "새 창",
"nextChangeIcon": "Diff 편집기에서 다음 변경 작업의 아이콘입니다.",
"pin": "고정",
"pinEditor": "편집기 고정",
"previousChangeIcon": "Diff 편집기에서 이전 변경 작업의 아이콘입니다.",
"reopenWith": "편집기 다시 열기...",
+ "share": "공유",
"showOpenedEditors": "열려 있는 편집기 표시",
- "showTrimWhitespace.label": "선행/후행 공백 차이 표시",
"sideBySideEditor": "병렬 편집기",
+ "singleTab": "단일 탭",
+ "splitAndMoveEditor": "분할 및 이동",
"splitDown": "아래로 분할",
"splitEditorDown": "편집기를 아래로 분할",
"splitEditorRight": "편집기를 오른쪽으로 분할",
@@ -3258,21 +4145,26 @@
"splitLeft": "왼쪽으로 분할",
"splitRight": "오른쪽으로 분할",
"splitUp": "위로 분할",
+ "swapDiffSides": "왼쪽과 오른쪽 바꾸기",
+ "tabBar": "탭 표시줄",
"textDiffEditor": "텍스트 Diff 편집기",
"textEditor": "텍스트 편집기",
+ "titleBar": "제목 표시줄",
"toggleLockGroup": "그룹 잠금",
"togglePreviewMode": "미리 보기 편집기 사용",
"toggleSplitEditorInGroupLayout": "레이아웃 설정/해제",
"toggleWhitespace": "Diff 편집기에서 공백 토글 작업의 아이콘입니다.",
"unlockEditorGroup": "그룹 잠금 해제",
"unlockGroupAction": "그룹 잠금 해제",
+ "unmaximizeGroup": "그룹 최대화 취소",
"unpin": "고정 해제",
"unpinEditor": "편집기 고정 해제"
},
"vs/workbench/browser/parts/editor/editorActions": {
"clearButtonLabel": "지우기(&&C)",
"clearEditorHistory": "편집기 기록 지우기",
- "clearRecentFiles": "최근 사용 항목 지우기",
+ "clearEditorHistoryWithoutConfirm": "확인 없이 편집기 기록 지우기",
+ "clearRecentFiles": "최근 사용 항목 지우기...",
"closeAllEditors": "모든 편집기 닫기",
"closeAllGroups": "모든 편집기 그룹 닫기",
"closeEditor": "편집기 닫기",
@@ -3283,6 +4175,8 @@
"confirmClearDetail": "이 작업은 취소할 수 없습니다.",
"confirmClearEditorHistoryMessage": "최근에 연 편집기의 기록을 지우시겠습니까?",
"confirmClearRecentsMessage": "최근에 연 모든 파일 및 작업 영역을 지우시겠습니까?",
+ "copyEditorGroupToNewWindow": "편집기 그룹을 새 창으로 복사",
+ "copyEditorToNewWindow": "편집기를 새 창에 복사",
"duplicateActiveGroupDown": "편집기 그룹을 아래에 복제",
"duplicateActiveGroupLeft": "편집기 그룹을 왼쪽에 복제",
"duplicateActiveGroupRight": "편집기 그룹을 오른쪽에 복제",
@@ -3309,14 +4203,22 @@
"joinAllGroups": "모든 편집기 그룹 조인",
"joinTwoGroups": "편집기 그룹을 다음 그룹에 조인",
"lastEditorInGroup": "그룹의 마지막 편집기 열기",
- "maximizeEditor": "편집기 그룹 최대화 및 사이드바 숨기기",
+ "maximizeEditorHideSidebar": "편집기 그룹 최대화 및 사이드바 숨기기",
"miBack": "뒤로(&&B)",
+ "miCopyEditorGroupToNewWindow": "편집기 그룹을 새 창으로 복사(&&C)",
+ "miCopyEditorToNewWindow": "편집기를 새 창으로 복사(&&C)",
"miForward": "앞으로(&&F)",
- "minimizeOtherEditorGroups": "편집기 그룹 최대화",
+ "miMoveEditorGroupToNewWindow": "편집기 그룹을 새 창으로 이동(&&M)",
+ "miMoveEditorToNewWindow": "편집기를 새 창으로 이동(&&M)",
+ "miNewEmptyEditorWindow": "&&빈 편집기 창 새로 만들기",
+ "miRestoreEditorsToMainWindow": "편집기를 주 창으로 복원(&&R)",
+ "minimizeOtherEditorGroups": "편집기 그룹 확장",
+ "minimizeOtherEditorGroupsHideSidebar": "편집기 그룹 확장 및 사이드바 숨기기",
"moveActiveGroupDown": "편집기 그룹을 아래로 이동",
"moveActiveGroupLeft": "편집기 그룹을 왼쪽으로 이동",
"moveActiveGroupRight": "편집기 그룹을 오른쪽으로 이동",
"moveActiveGroupUp": "편집기 그룹을 위로 이동",
+ "moveEditorGroupToNewWindow": "편집기 그룹을 새 창으로 이동",
"moveEditorLeft": "왼쪽으로 편집기 이동",
"moveEditorRight": "오른쪽으로 편집기 이동",
"moveEditorToAboveGroup": "편집기를 위의 그룹으로 이동",
@@ -3324,6 +4226,7 @@
"moveEditorToFirstGroup": "편집기를 첫 번째 그룹으로 이동",
"moveEditorToLastGroup": "편집기를 마지막 그룹으로 이동",
"moveEditorToLeftGroup": "편집기를 왼쪽 그룹으로 이동",
+ "moveEditorToNewWindow": "편집기를 새 창으로 이동",
"moveEditorToNextGroup": "편집기를 다음 그룹으로 이동",
"moveEditorToPreviousGroup": "편집기를 이전 그룹으로 이동",
"moveEditorToRightGroup": "편집기를 오른쪽 그룹으로 이동",
@@ -3340,10 +4243,11 @@
"navigatePreviousInNavigationLocations": "탐색 위치에서 이전으로 이동",
"navigateToLastEditLocation": "마지막 편집 위치로 이동",
"navigateToLastNavigationLocation": "마지막 탐색 위치로 이동",
- "newEditorAbove": "위쪽의 새 편집기 그룹",
- "newEditorBelow": "아래쪽의 새 편집기 그룹",
- "newEditorLeft": "왼쪽의 새 편집기 그룹",
- "newEditorRight": "오른쪽의 새 편집기 그룹",
+ "newEmptyEditorWindow": "빈 편집기 창 새로 만들기",
+ "newGroupAbove": "위쪽의 새 편집기 그룹",
+ "newGroupBelow": "아래쪽의 새 편집기 그룹",
+ "newGroupLeft": "왼쪽의 새 편집기 그룹",
+ "newGroupRight": "오른쪽의 새 편집기 그룹",
"nextEditorInGroup": "그룹에서 다음 편집기 열기",
"openNextEditor": "다음 편집기 열기",
"openNextRecentlyUsedEditor": "최근에 사용한 다음 편집기 열기",
@@ -3357,7 +4261,10 @@
"quickOpenPreviousRecentlyUsedEditor": "최근에 사용한 편집기 빨리 열기",
"quickOpenPreviousRecentlyUsedEditorInGroup": "그룹에서 최근에 사용한 편집기 빨리 열기",
"reopenClosedEditor": "닫힌 편집기 다시 열기",
+ "reopenTextEditor": "텍스트 편집기를 사용하여 편집기 다시 열기",
+ "restoreEditorsToMainWindow": "편집기를 주 창으로 복원",
"revertAndCloseActiveEditor": "편집기 되돌리기 및 닫기",
+ "reverting": "편집기를 되돌리는 중...",
"showAllEditors": "모양별로 모든 편집기 표시",
"showAllEditorsByMostRecentlyUsed": "가장 최근에 사용한 항목별로 모든 편집기 표시",
"showEditorsInActiveGroup": "가장 최근에 사용한 항목별로 활성 그룹의 편집기 표시",
@@ -3375,19 +4282,21 @@
"splitEditorToNextGroup": "편집기를 다음 그룹으로 분할",
"splitEditorToPreviousGroup": "편집기를 이전 그룹으로 분할",
"splitEditorToRightGroup": "편집기를 오른쪽 그룹으로 분할",
+ "toggleEditorType": "편집기 유형 설정/해제",
"toggleEditorWidths": "편집기 그룹 크기 전환",
- "unpinEditor": "편집기 고정 해제",
- "workbench.action.reopenTextEditor": "텍스트 편집기를 사용하여 편집기 다시 열기",
- "workbench.action.toggleEditorType": "편집기 유형 설정/해제"
+ "toggleMaximizeEditorGroup": "편집기 그룹 최대화 토글",
+ "unmaximizeGroup": "그룹 최대화 취소",
+ "unpinEditor": "편집기 고정 해제"
},
"vs/workbench/browser/parts/editor/editorCommands": {
- "compare": "비교",
"editorCommand.activeEditorCopy.arg.description": "인수 속성: \r\n\t* '대상(to)': 복사할 위치를 제공하는 문자열 값.\r\n\t* '값': 복사할 위치 또는 절대 위치를 제공하는 숫자 값입니다.",
"editorCommand.activeEditorCopy.arg.name": "활성 편집기 복사 인수",
"editorCommand.activeEditorCopy.description": "그룹별로 활성 편집기 복사",
"editorCommand.activeEditorMove.arg.description": "인수 속성:\r\n* 'to': 이동할 위치를 지정하는 문자열 값입니다.\r\n* 'by': 이동할 단위를 지정하는 문자열 값입니다.(탭 단위 또는 그룹 단위).\r\n* 'value': 이동할 위치 수 또는 절대 위치를 지정하는 숫자 값입니다.",
"editorCommand.activeEditorMove.arg.name": "활성 편집기 이동 인수",
"editorCommand.activeEditorMove.description": "활성 편집기를 탭 또는 그룹 단위로 이동",
+ "editorGroupLayout.horizontal": "가로",
+ "editorGroupLayout.vertical": "세로",
"focusLeftSideEditor": "활성 편집기에서 첫 번째 측면 포커스",
"focusOtherSideEditor": "활성 편집기에서 다른 측면 포커스",
"focusRightSideEditor": "활성 편집기에서 두 번째 측면 포커스",
@@ -3395,15 +4304,18 @@
"lockEditorGroup": "편집기 그룹 잠금",
"splitEditorInGroup": "편집기를 그룹으로 분할",
"toggleEditorGroupLock": "편집기 그룹 잠금 토글",
- "toggleInlineView": "인라인 보기 토글",
"toggleJoinEditorInGroup": "그룹에서 분할 편집기 설정/해제",
"toggleSplitEditorInGroupLayout": "그룹 내 분할 편집기 레이아웃 전환",
"unlockEditorGroup": "편집기 그룹 잠금 해제"
},
"vs/workbench/browser/parts/editor/editorConfiguration": {
- "editor.editorAssociations": "GLOB 패턴을 편집기로 구성합니다(예: '\"*.hex\": \"hexEditor.hexEdit\"'). 이러한 동작은 기본 동작보다 우선합니다.",
+ "editor.editorAssociations": "[GLOB 패턴](https://aka.ms/vscode-glob-patterns)을 편집기로 구성합니다(예: `\"*.hex\": \"hexEditor.hexedit\"`). 이러한 동작은 기본 동작보다 우선합니다.",
+ "editorLargeFileSizeConfirmation": "편집기에서 열 때 확인을 요청하기 전에 파일의 최소 크기(MB)를 제어합니다. 이 설정은 일부 편집기 유형 및 환경에는 적용되지 않을 수 있습니다.",
+ "interactiveWindow": "대화형 창",
+ "livePreview": "실시간 미리 보기",
"markdownPreview": "Markdown 미리 보기",
- "workbench.editor.autoLockGroups": "나열된 형식 중 하나와 일치하는 편집기가 편집기 그룹에서 첫 번째로 열리고, 둘 이상의 그룹이 열려 있으면 그룹이 자동으로 잠깁니다. 잠긴 그룹은 사용자 제스처(예: 끌어서 놓기)에 의해 명시적으로 선택된 경우에만 편집기를 여는 데 사용되지만 기본값으로 사용되지는 않습니다. 따라서 잠긴 그룹의 활성 편집기는 실수로 다른 편집기로 교체될 가능성이 적습니다.",
+ "simpleBrowser": "간단한 브라우저",
+ "workbench.editor.autoLockGroups": "나열된 형식 중 하나와 일치하는 편집기가 편집기 그룹에서 첫 번째로 열리고 둘 이상의 그룹이 열려 있으면, 그룹이 자동으로 잠깁니다. 잠긴 그룹은 사용자 제스처(예: 끌어서 놓기)에 의해 명시적으로 선택된 경우에만 편집기를 여는 데 사용되며 기본적으로는 사용되지 않습니다. 따라서 잠긴 그룹의 활성 편집기는 실수로 다른 편집기로 바뀔 가능성이 적습니다.",
"workbench.editor.defaultBinaryEditor": "이진 파일로 검색된 파일의 기본 편집기입니다. 정의되지 않은 경우 사용자에게 선택기가 표시됩니다."
},
"vs/workbench/browser/parts/editor/editorDropTarget": {
@@ -3413,22 +4325,43 @@
"ariaLabelGroupActions": "빈 편집기 그룹 작업",
"emptyEditorGroup": "{0}(비어 있음)",
"groupAriaLabel": "편집기 그룹 {0}",
- "groupLabel": "{0} 그룹"
- },
- "vs/workbench/browser/parts/editor/editorPanes": {
- "cancel": "취소",
- "editorOpenErrorDialog": "'{0}'을(를) 열 수 없음",
- "ok": "확인"
+ "groupAriaLabelLong": "{0}: 편집기 그룹 {1}",
+ "groupLabel": "{0} 그룹",
+ "groupLabelLong": "{0}: 그룹 {1}",
+ "moveErrorDetails": "먼저 편집기를 저장하거나 되돌린 후 다시 시도하세요."
},
- "vs/workbench/browser/parts/editor/editorPlaceholder": {
- "errorEditor": "오류 편집기",
- "manageTrust": "작업 영역 신뢰 관리",
- "requiresFolderTrustText": "폴더에 신뢰가 부여되지 않았으므로 파일이 편집기에 표시되지 않습니다.",
+ "vs/workbench/browser/parts/editor/editorGroupWatermark": {
+ "editorLineHighlight": "편집기 워터마크에 있는 레이블의 전경색입니다.",
+ "watermark.findInFiles": "파일에서 찾기",
+ "watermark.newUntitledFile": "제목 없는 새 텍스트 파일",
+ "watermark.openChat": "채팅 열기",
+ "watermark.openFile": "파일 열기",
+ "watermark.openFileFolder": "파일 또는 폴더 열기",
+ "watermark.openFolder": "폴더 열기",
+ "watermark.openRecent": "최근 파일 열기",
+ "watermark.openSettings": "설정 열기",
+ "watermark.quickAccess": "파일로 이동",
+ "watermark.showCommands": "모든 명령 표시",
+ "watermark.startDebugging": "디버깅 시작",
+ "watermark.toggleTerminal": "터미널 설정/해제"
+ },
+ "vs/workbench/browser/parts/editor/editorPanes": {
+ "editorOpenErrorDialog": "'{0}'을(를) 열 수 없음",
+ "ok": "확인(&&O)"
+ },
+ "vs/workbench/browser/parts/editor/editorParts": {
+ "groupLabel": "창 {0}"
+ },
+ "vs/workbench/browser/parts/editor/editorPlaceholder": {
+ "errorEditor": "오류 편집기",
+ "manageTrust": "작업 영역 신뢰 관리",
+ "requiresFolderTrustText": "폴더에 신뢰가 부여되지 않았으므로 파일이 편집기에 표시되지 않습니다.",
"requiresWorkspaceTrustText": "작업 영역에 신뢰가 부여되지 않았으므로 파일이 편집기에 표시되지 않습니다.",
"retry": "다시 시도",
+ "showLogs": "로그 표시",
"trustRequiredEditor": "작업 영역 신뢰 필요",
"unavailableResourceErrorEditorText": "파일을 찾을 수 없으므로 편집기를 열 수 없습니다.",
- "unknownErrorEditorTextWithError": "예기치 않은 오류 {0}(으)로 인해 편집기를 열 수 없습니다.",
+ "unknownErrorEditorTextWithError": "예기치 않은 오류로 인해 편집기를 열 수 없습니다. 자세한 내용은 로그를 참조하세요.",
"unknownErrorEditorTextWithoutError": "예기치 않은 오류로 인해 편집기를 열 수 없습니다."
},
"vs/workbench/browser/parts/editor/editorQuickAccess": {
@@ -3442,6 +4375,8 @@
"autoDetect": "자동 감지",
"changeEncoding": "파일 인코딩 변경",
"changeEndOfLine": "줄 시퀀스의 끝 변경",
+ "changeLanguageMode.arg.name": "변경할 언어 모드의 이름입니다.",
+ "changeLanguageMode.description": "활성 텍스트 편집기의 언어 모드를 변경합니다.",
"changeMode": "언어 모드 변경",
"columnSelectionModeEnabled": "열 선택",
"configureAssociationsExt": "'{0}'에 대한 파일 연결 구성...",
@@ -3457,6 +4392,7 @@
"guessedEncoding": "콘텐츠에서 추측함",
"indentConvert": "파일 변환",
"indentView": "보기 변경",
+ "inputModeOvertype": "OVR",
"languageDescription": "({0}) - 구성된 언어",
"languageDescriptionConfigured": "({0})",
"languagesPicks": "언어(식별자)",
@@ -3471,12 +4407,11 @@
"pickEndOfLine": "줄 시퀀스의 끝 선택",
"pickLanguage": "언어 모드 선택",
"pickLanguageToConfigure": "'{0}'과(와) 연결할 언어 모드 선택",
+ "reopen": "변경 내용 취소 후 다시 열기",
"reopenWithEncoding": "인코딩하여 다시 열기",
+ "reopenWithEncodingDetail": "이렇게 하면 저장되지 않은 변경 내용이 모두 삭제됩니다.",
+ "reopenWithEncodingWarning": "활성 텍스트 편집기를 되돌리고 다른 인코딩으로 다시 여시겠습니까?",
"saveWithEncoding": "인코딩하여 저장",
- "screenReaderDetected": "화면 읽기 프로그램이 최적화됨",
- "screenReaderDetectedExplanation.answerNo": "아니요",
- "screenReaderDetectedExplanation.answerYes": "예",
- "screenReaderDetectedExplanation.question": "화면 읽기 프로그램을 사용하여 VS Code를 작동하고 있습니까? (화면 읽기 프로그램을 사용할 경우 자동 줄 바꿈이 사용하지 않도록 설정됨)",
"selectEOL": "줄 시퀀스의 끝 선택",
"selectEncoding": "인코딩 선택",
"selectIndentation": "들여쓰기 선택",
@@ -3484,37 +4419,57 @@
"showLanguageExtensions": "'{0}'의 Marketplace 확장 검색...",
"singleSelection": "줄 {0}, 열 {1}",
"singleSelectionRange": "줄 {0}, 열 {1}({2} 선택됨)",
+ "spacesAndTabsSize": "공백: {0}(탭 크기: {1})",
"spacesSize": "공백: {0}",
"status.editor.columnSelectionMode": "열 선택 모드",
+ "status.editor.enableInsertMode": "삽입 모드 사용",
"status.editor.encoding": "편집기 인코딩",
"status.editor.eol": "편집기 줄의 끝",
"status.editor.indentation": "편집기 들여쓰기",
"status.editor.info": "파일 정보",
"status.editor.mode": "편집기 언어",
- "status.editor.screenReaderMode": "화면 읽기 프로그램 모드",
"status.editor.selection": "편집기 선택",
"status.editor.tabFocusMode": "접근성 모드",
"tabFocusModeEnabled": "Tab으로 포커스 이동",
"tabSize": "Tab 크기: {0}"
},
- "vs/workbench/browser/parts/editor/sideBySideEditor": {
- "sideBySideEditor": "병렬 편집기"
+ "vs/workbench/browser/parts/editor/editorTabsControl": {
+ "ariaLabelEditorActions": "편집기 작업",
+ "draggedEditorGroup": "{0}(+{1})"
},
- "vs/workbench/browser/parts/editor/tabsTitleControl": {
+ "vs/workbench/browser/parts/editor/multiEditorTabsControl": {
"ariaLabelTabActions": "탭 작업"
},
+ "vs/workbench/browser/parts/editor/sideBySideEditor": {
+ "sideBySideEditor": "병렬 편집기"
+ },
"vs/workbench/browser/parts/editor/textCodeEditor": {
"textEditor": "텍스트 편집기"
},
"vs/workbench/browser/parts/editor/textDiffEditor": {
+ "fileTooLargeForHeapErrorWithSize": "파일이 너무 커서 하나 이상의 파일이 텍스트 비교 편집기에 표시되지 않습니다({0}).",
+ "fileTooLargeForHeapErrorWithoutSize": "파일이 너무 커서 하나 이상의 파일이 텍스트 비교 편집기에 표시되지 않습니다.",
"textDiffEditor": "텍스트 Diff 편집기"
},
"vs/workbench/browser/parts/editor/textEditor": {
"editor": "편집기"
},
- "vs/workbench/browser/parts/editor/titleControl": {
- "ariaLabelEditorActions": "편집기 작업",
- "draggedEditorGroup": "{0}(+{1})"
+ "vs/workbench/browser/parts/globalCompositeBar": {
+ "accounts": "계정",
+ "accountsViewBarIcon": "보기 표시줄의 계정 아이콘입니다.",
+ "authProviderUnavailable": "현재 {0}을(를) 사용할 수 없습니다.",
+ "hideAccounts": "계정 숨기기",
+ "loading": "로드 중...",
+ "manage": "관리",
+ "manage profile": "{0} 관리(프로필)",
+ "manageDynamicAuthProviders": "동적 인증 공급자 관리...",
+ "manageTrustedExtensions": "신뢰할 수 있는 확장 관리",
+ "manageTrustedMCPServers": "신뢰할 수 있는 MCP 서버 관리",
+ "signOut": "로그아웃"
+ },
+ "vs/workbench/browser/parts/notifications/notificationAccessibleView": {
+ "clearNotification": "알림 지우기",
+ "notification.accessibleViewSrc": "{0} 원본: {1}"
},
"vs/workbench/browser/parts/notifications/notificationsActions": {
"clearAllIcon": "알림에서 모두 지우기 작업의 아이콘입니다.",
@@ -3523,15 +4478,17 @@
"clearNotifications": "모든 알림 지우기",
"collapseIcon": "알림에서 축소 작업의 아이콘입니다.",
"collapseNotification": "알림 축소",
+ "configureDoNotDisturbMode": "방해 금지 구성...",
"configureIcon": "알림에서 구성 작업의 아이콘입니다.",
- "configureNotification": "알림 구성",
+ "configureNotification": "기타 작업...",
"copyNotification": "텍스트 복사",
"doNotDisturbIcon": "알림의 모든 작업 음소거 아이콘입니다.",
"expandIcon": "알림에서 확장 작업의 아이콘입니다.",
"expandNotification": "알림 확장",
"hideIcon": "알림에서 숨기기 작업의 아이콘입니다.",
"hideNotificationsCenter": "알림 숨기기",
- "toggleDoNotDisturbMode": "방해 금지 모드 전환"
+ "toggleDoNotDisturbMode": "방해 금지 모드 전환",
+ "toggleDoNotDisturbModeBySource": "소스별 방해 금지 모드 설정/해제..."
},
"vs/workbench/browser/parts/notifications/notificationsAlerts": {
"alertErrorMessage": "오류: {0}",
@@ -3539,22 +4496,32 @@
"alertWarningMessage": "경고: {0}"
},
"vs/workbench/browser/parts/notifications/notificationsCenter": {
+ "moreSources": "더 보기…",
"notifications": "알림",
"notificationsCenterWidgetAriaLabel": "알림 센터",
"notificationsEmpty": "새 알림 없음",
- "notificationsToolbar": "알림 센터 작업"
+ "notificationsToolbar": "알림 센터 작업",
+ "turnOffNotifications": "방해 금지 모드 비활성화",
+ "turnOnNotifications": "방해 금지 모드 활성화"
},
"vs/workbench/browser/parts/notifications/notificationsCommands": {
+ "acceptNotificationPrimaryAction": "알림 기본 작업 수락",
"clearAllNotifications": "모든 알림 지우기",
"focusNotificationToasts": "포커스 알림 메시지",
"hideNotifications": "알림 숨기기",
"notifications": "알림",
+ "selectSources": "모든 알림을 활성화할 소스 선택",
"showNotifications": "알림 표시",
- "toggleDoNotDisturbMode": "방해 금지 모드 전환"
+ "toggleDoNotDisturbMode": "방해 금지 모드 전환",
+ "toggleDoNotDisturbModeBySource": "소스별 방해 금지 모드 설정/해제..."
},
"vs/workbench/browser/parts/notifications/notificationsList": {
+ "notificationAccessibleViewHint": "{0}을(를) 사용하여 접근성 보기에서 응답 검사",
+ "notificationAccessibleViewHintNoKb": "현재 키 바인딩을 통해 트리거할 수 없는 접근성 보기 열기 명령을 통해 접근성 보기에서 응답을 검사합니다.",
"notificationAriaLabel": "{0}, 알림",
+ "notificationAriaLabelHint": "{0}, 알림, {1}",
"notificationWithSourceAriaLabel": "{0}, 소스: {1}, 알림",
+ "notificationWithSourceAriaLabelHint": "{0}, 원본: {1}, 알림, {2}",
"notificationsList": "알림 목록"
},
"vs/workbench/browser/parts/notifications/notificationsStatus": {
@@ -3578,7 +4545,21 @@
"vs/workbench/browser/parts/notifications/notificationsViewer": {
"executeCommand": "'{0}' 명령을 실행하려면 클릭",
"notificationActions": "알림 작업",
- "notificationSource": "소스: {0}"
+ "notificationSource": "소스: {0}",
+ "turnOffNotifications": "'{0}'의 정보성 및 경고성 알림 끄기",
+ "turnOnNotifications": "'{0}'의 모든 알림 켜기"
+ },
+ "vs/workbench/browser/parts/paneCompositeBar": {
+ "auxiliarybar": "보조 사이드바",
+ "moveToMenu": "다음으로 이동",
+ "panel": "패널",
+ "resetLocation": "위치 다시 설정",
+ "sidebar": "기본 사이드바"
+ },
+ "vs/workbench/browser/parts/paneCompositePart": {
+ "moreActions": "기타 작업...",
+ "pane.emptyMessage": "보기를 표시하려면 여기로 끌어다 놓으세요.",
+ "views": "보기"
},
"vs/workbench/browser/parts/panel/panelActions": {
"alignPanel": "패널 맞춤",
@@ -3591,18 +4572,16 @@
"alignPanelRight": "패널 맞춤을 오른쪽으로 설정",
"alignPanelRightShort": "오른쪽",
"closeIcon": "패널을 닫는 아이콘입니다.",
- "closePanel": "패널 닫기",
- "closeSecondarySideBar": "보조 사이드바 닫기",
+ "closePanel": "패널 숨기기",
"focusPanel": "패널로 포커스 이동",
- "hidePanel": "패널 숨기기",
"maximizeIcon": "패널을 최대화하는 아이콘입니다.",
"maximizePanel": "패널 크기 최대화",
- "miPanel": "&&Panel",
- "miPanelNoMnemonic": "Panel",
+ "miTogglePanelMnemonic": "패널(&&P)",
"minimizePanel": "패널 크기 복원",
"movePanelToSecondarySideBar": "패널 보기를 보조 사이드바로 이동",
"moveSidePanelToPanel": "보조 사이드바 보기를 패널로 이동",
"nextPanelView": "다음 패널 보기",
+ "openAndClosePanel": "패널 열기/표시 및 닫기/숨기기",
"panelMaxNotSupported": "패널의 최대화는 가운데 맞춤된 경우에만 지원됩니다.",
"positionPanel": "패널 위치",
"positionPanelBottom": "패널을 아래쪽으로 이동",
@@ -3611,8 +4590,9 @@
"positionPanelLeftShort": "왼쪽",
"positionPanelRight": "오른쪽으로 패널 이동",
"positionPanelRightShort": "오른쪽",
+ "positionPanelTop": "패널을 맨 위로 이동",
+ "positionPanelTopShort": "맨 위",
"previousPanelView": "이전 패널 보기",
- "restoreIcon": "패널을 복원하는 아이콘입니다.",
"toggleMaximizedPanel": "최대화된 패널 설정/해제",
"togglePanel": "패널 설정/해제",
"togglePanelOffIcon": "패널이 켜져 있을 때 패널을 끄는 아이콘입니다.",
@@ -3620,37 +4600,34 @@
"togglePanelVisibility": "패널 표시 설정/해제"
},
"vs/workbench/browser/parts/panel/panelPart": {
+ "align panel": "패널 맞춤",
"hidePanel": "패널 숨기기",
- "moreActions": "기타 작업...",
- "panel.emptyMessage": "보기를 표시하려면 여기로 끌어다 놓으세요.",
- "pinned view containers": "패널 항목 표시 유형 사용자 지정",
- "resetLocation": "위치 다시 설정"
+ "panel position": "패널 위치",
+ "showIcons": "아이콘 표시",
+ "showLabels": "레이블 표시"
},
"vs/workbench/browser/parts/sidebar/sidebarActions": {
+ "closeSidebar": "기본 사이드 바 닫기",
"focusSideBar": "기본 사이드 바에 집중"
},
+ "vs/workbench/browser/parts/sidebar/sidebarPart": {
+ "toggleActivityBar": "작업 막대 표시 유형 전환"
+ },
"vs/workbench/browser/parts/statusbar/statusbarActions": {
"focusStatusBar": "포커스 상태 표시줄",
- "hide": "'{0}' 숨기기"
- },
- "vs/workbench/browser/parts/statusbar/statusbarModel": {
- "statusbar.hidden": "상태 표시줄 항목 표시 유형 사용자 지정"
+ "hide": "'{0}' 숨기기",
+ "manageExtension": "확장 관리"
},
"vs/workbench/browser/parts/statusbar/statusbarPart": {
"hideStatusBar": "상태 표시줄 숨기기"
},
"vs/workbench/browser/parts/titlebar/commandCenterControl": {
- "all": "검색 모드 표시...",
- "commandCenter-activeBackground": "명령 센터의 활성 배경색",
- "commandCenter-activeForeground": "명령 센터의 활성 전경색",
- "commandCenter-background": "명령 센터의 배경색",
- "commandCenter-border": "명령 센터의 테두리 색",
- "commandCenter-foreground": "명령 센터의 전경색",
"label.dfl": "검색",
"label1": "{0} {1}",
"label2": "{0} {1}",
"title": "검색 {0}({1}) —{2}",
- "title2": "검색 {0}—{1}"
+ "title2": "검색 {0}—{1}",
+ "title3": "명령 센터"
},
"vs/workbench/browser/parts/titlebar/menubarControl": {
"DownloadingUpdate": "업데이트를 다운로드하는 중...",
@@ -3669,19 +4646,39 @@
"mSelection": "선택 영역(&&S)",
"mTerminal": "터미널(&&T)",
"mView": "보기(&&V)",
- "menubar.customTitlebarAccessibilityNotification": "접근성 지원을 사용할 수 있습니다. 접근성이 가장 좋은 환경을 위해 사용자 지정 제목 표시줄 스타일을 사용하는 것이 좋습니다.",
+ "menubar.customTitlebarAccessibilityNotification": "접근성 지원을 사용할 수 있습니다. 접근성이 가장 좋은 환경을 위해 사용자 지정 메뉴 스타일을 사용하는 것이 좋습니다.",
"restartToUpdate": "다시 시작 및 업데이트(&&U)"
},
+ "vs/workbench/browser/parts/titlebar/titlebarActions": {
+ "accounts": "계정",
+ "hideCustomTitleBar": "사용자 지정 제목 표시줄 숨기기",
+ "hideCustomTitleBarInFullScreen": "전체 화면에서 사용자 지정 제목 표시줄 숨기기",
+ "manage": "관리",
+ "showCustomTitleBar": "사용자 지정 제목 표시줄 표시",
+ "toggle.commandCenter": "명령 센터",
+ "toggle.commandCenterDescription": "제목 표시줄에서 명령 센터의 표시 유형 설정/해제",
+ "toggle.customTitleBar": "사용자 지정 제목 표시줄",
+ "toggle.editorActions": "편집기 작업",
+ "toggle.hideCustomTitleBar": "사용자 지정 제목 표시줄 숨기기",
+ "toggle.hideCustomTitleBarInFullScreen": "전체 화면에서 사용자 지정 제목 표시줄 숨기기",
+ "toggle.layout": "레이아웃 컨트롤",
+ "toggle.layoutDescription": "제목 표시줄에서 레이아웃 컨트롤 표시 유형 설정/해제",
+ "toggle.navigation": "탐색 컨트롤",
+ "toggle.navigationDescription": "제목 표시줄에서 탐색 컨트롤의 표시 유형 토글"
+ },
"vs/workbench/browser/parts/titlebar/titlebarPart": {
- "focusTitleBar": "포커스 제목 표시줄",
- "toggle.commandCenter": "Command Center",
- "toggle.layout": "Layout Controls"
+ "ariaLabelTitleActions": "제목 작업",
+ "focusTitleBar": "포커스 제목 표시줄"
},
"vs/workbench/browser/parts/titlebar/windowTitle": {
"devExtensionWindowTitlePrefix": "[확장 개발 호스트]",
"userIsAdmin": "[관리자]",
"userIsSudo": "[슈퍼유저]"
},
+ "vs/workbench/browser/parts/views/checkbox": {
+ "checked": "선택한 상태",
+ "unchecked": "선택하지 않은 상태"
+ },
"vs/workbench/browser/parts/views/treeView": {
"collapseAll": "모두 축소",
"command-error": "오류 실행 명령 {1}: {0}. 이는 {1}을(를) 제공하는 확장으로 인해 발생할 수 있습니다.",
@@ -3691,7 +4688,11 @@
"treeView.enableRefresh": "ID가 {0}인 트리 뷰에서 새로 고침을 사용할 수 있는지 여부입니다.",
"treeView.toggleCollapseAll": "ID가 {0}인 트리 뷰에 대해 모두 축소가 토글되는지 여부입니다."
},
+ "vs/workbench/browser/parts/views/viewFilter": {
+ "more filters": "추가 필터..."
+ },
"vs/workbench/browser/parts/views/viewPane": {
+ "viewAccessibilityHelp": "접근성 도움말 Alt+F1 사용 {0}",
"viewPaneContainerCollapsedIcon": "축소된 보기 창 컨테이너의 아이콘입니다.",
"viewPaneContainerExpandedIcon": "확장된 보기 창 컨테이너의 아이콘입니다.",
"viewToolbarAriaLabel": "{0} 작업"
@@ -3704,55 +4705,84 @@
"views": "보기",
"viewsMove": "보기 이동"
},
- "vs/workbench/browser/parts/views/viewsService": {
- "focus view": "{0} 보기에 포커스",
- "resetViewLocation": "위치 다시 설정",
- "show view": "{0} 표시",
- "toggle view": "{0} 토글"
- },
"vs/workbench/browser/quickaccess": {
"inQuickOpen": "키보드 포커스가 Quick Open 컨트롤 내에 있는지 여부"
},
- "vs/workbench/browser/workbench": {
- "loaderErrorNative": "필요한 파일을 로드하지 못했습니다. 애플리케이션을 다시 시작하여 다시 시도하세요. 세부 정보: {0}"
+ "vs/workbench/browser/web.main": {
+ "reset": "사용자 데이터 초기화",
+ "reset user data message": "데이터(설정, 키 바인딩, 확장, 코드 조각 및 UI 상태)를 초기화한 후 다시 로드하시겠습니까?"
+ },
+ "vs/workbench/browser/window": {
+ "closeWindowButtonLabel": "창 닫기(&&C)",
+ "closeWindowMessage": "창을 닫으시겠습니까?",
+ "doNotAskAgain": "이 메시지를 다시 표시 안 함",
+ "exitButtonLabel": "종료(&&E)",
+ "openExternalDialogButtonInstall.v3": "설치(&&I)",
+ "openExternalDialogButtonRetry.v2": "다시 시도(&&T)",
+ "openExternalDialogDetail.v2": "컴퓨터에서 {0}을(를) 시작했습니다.\r\n\r\n{1}이(가) 시작되지 않은 경우 다시 시도하거나 아래에서 설치하세요.",
+ "openExternalDialogDetailNoInstall": "컴퓨터에서 {0}을(를) 시작했습니다.\r\n\r\n{1}이(가) 시작되지 않은 경우 아래에서 다시 시도하세요.",
+ "openExternalDialogTitle": "모두 완료되었습니다. 이제 이 탭을 닫아도 됩니다.",
+ "quitButtonLabel": "종료(&&Q)",
+ "quitMessage": "종료하시겠습니까?",
+ "quitMessageMac": "종료하시겠습니까?",
+ "reload": "다시 로드(&&R)",
+ "retry": "다시 시도(&R)",
+ "shutdownError": "예기치 않은 오류가 발생하여 이 페이지를 다시 로드해야 합니다.",
+ "shutdownErrorDetail": "실행하는 동안 워크벤치가 예기치 않게 삭제되었습니다.",
+ "unableToOpenExternal": "브라우저에서 새 탭 또는 창을 열지 못했습니다. '다시 시도'를 눌러 다시 시도하세요.",
+ "unableToOpenWindowDetail": "[브라우저 설정]({0})에서 이 웹사이트의 팝업을 허용하세요."
},
"vs/workbench/browser/workbench.contribution": {
"activeEditorLong": "`${activeEditorLong}`: 파일 전체 경로(예: /Users/Development/myFolder/myFileFolder/myFile.txt).",
"activeEditorMedium": "'${activeEditorMedium}: 작업 영역 폴더(예: myFolder/myFileFolder/myFile.txt)와 관련된 파일의 경로입니다.",
"activeEditorShort": "`${activeEditorShort}`: 파일 이름(예: myFile.txt).",
+ "activeEditorState": "'${activeEditorState}': 활성 편집기의 상태에 대한 정보(예: 수정됨)를 제공합니다. {0}(이)가 사용하도록 설정된 화면 읽기 프로그램 모드에서 기본적으로 추가됩니다.",
"activeFolderLong": "`${activeFolderLong}`: 파일이 포함된 폴더 전체 경로(예: /Users/Development/myFolder/myFileFolder).",
"activeFolderMedium": "`${activeFolderMedium}`: 파일이 포함된 관련된 작업 영역 폴더(예: myFolder/myFileFolder)에 포함된 폴더 경로.",
"activeFolderShort": "'${activeFolderShort}: 파일이 포함된 폴더 이름(예: myFileFolder)입니다.",
- "activityBarIconClickBehavior": "Workbench에서 작업 표시줄 아이콘을 클릭하는 동작을 제어합니다.",
- "activityBarVisibility": "워크벤치에서 작업 막대의 표시 유형을 제어합니다.",
+ "activeRepositoryBranchName": "'${activeRepositoryBranchName}': 활성 리포지토리(예: main)의 활성 분기 이름입니다.",
+ "activeRepositoryName": "'${activeRepositoryName}': 활성 리포지토리의 이름(예: vscode)",
+ "activityBarIconClickBehavior": "Workbench에서 작업 표시줄 아이콘을 클릭하는 동작을 제어합니다. 이 값은 {0}(이)가 {1}(으)로 설정되지 않은 경우 무시됩니다.",
+ "activityBarLocation": "기본 및 보조 사이드바를 기준으로 작업 표시줄의 위치를 제어합니다.",
+ "alwaysShowEditorActions": "편집기 그룹이 활성 상태가 아닌 경우에도 편집기 작업을 항상 표시할지를 제어합니다.",
"appName": "`${appName}`: 예: VS Code.",
+ "askChatLocation": "명령 팔레트에서 채팅 질문을 해야 하는 위치를 제어합니다.",
+ "askChatLocation.chatView": "채팅 보기에서 채팅 질문을 하세요.",
+ "askChatLocation.quickChat": "빠른 채팅에서 채팅 질문을 하세요.",
+ "browser": "외부에서 http 또는 https 링크를 여는 데 사용할 브라우저를 구성합니다. 이는 브라우저의 이름('edge', 'chrome', 'firefox') 또는 브라우저 실행 파일의 절대 경로일 수 있습니다. 설정하지 않으면 시스템 기본값을 사용합니다.",
"centeredLayoutAutoResize": "가운데 맞춤 레이아웃에서 둘 이상의 그룹을 열 때 최대 너비에 맞게 자동으로 크기를 조정할지 여부를 제어합니다. 하나의 그룹만 열면 원래 가운데 맞춤 너비로 되돌아옵니다.",
+ "centeredLayoutDynamicWidth": "창 크기가 조정될 때 가운데 맞춤 레이아웃이 상수 너비를 유지하려고 하는지 여부를 제어합니다.",
"closeEmptyGroups": "그룹의 마지막 탭을 닫을 때 빈 편집기 그룹의 동작을 제어합니다. 사용하도록 설정하면 그룹이 자동으로 닫히고 사용하지 않도록 설정하면 빈 그룹이 그리드의 일부로 남습니다.",
"closeOnFileDelete": "세션 동안 열린 파일을 표시하는 편집기가 다른 프로세스에서 삭제하거나 이름을 바꾸는 경우 자동으로 닫혀야 하는지 여부를 제어합니다. 이 기능을 사용하지 않으면 해당 이벤트에서 편집기가 계속 열려 있습니다. 애플리케이션 내에서 삭제하는 경우 항상 편집기를 닫으며 저장되지 않은 변경 내용이 있는 편집기는 데이터가 보존되도록 닫히지 않습니다.",
"closeOnFocusLost": "Quick Open이 포커스를 잃으면 해당 Quick Open을 자동으로 닫을지 여부를 제어합니다.",
"commandHistory": "명령 팔레트 기록을 유지하기 위해 최근 사용한 명령 개수를 제어합니다. 0으로 설정하면 명령 기록을 사용하지 않습니다.",
"confirmBeforeClose": "창을 닫거나 애플리케이션을 종료하기 전에 확인 대화 상자를 표시할지 여부를 제어합니다.",
"confirmBeforeCloseWeb": "브라우저 탭 또는 창을 닫기 전에 확인 대화 상자를 표시할지를 제어합니다. 사용하도록 설정된 경우에도 브라우저가 확인 없이 탭 또는 창을 닫으려고 할 수 있으며, 이 설정은 모든 경우에 제대로 작동하지 않을 수도 있는 힌트일 뿐입니다.",
+ "customEditorLabelDescriptionExample": "예: `\"**/static/**/*.html\": \"${filename} - ${dirname} (${extname})\"`은 `WORKSPACE_FOLDER/static/folder/file.html` 파일을 `file - folder (html)`로 렌더링합니다.",
"customMenuBarAltFocus": " 키를 눌러 메뉴 모음이 포커스되는지 여부를 제어합니다. 이 설정은 키로 메뉴 모음을 토글하는 데는 영향을 주지 않습니다.",
"decorations.badges": "편집기 파일 장식에 배지를 사용할지 여부를 제어합니다.",
"decorations.colors": "편집기 파일 장식에 색을 사용할지 여부를 제어합니다.",
"dirty": "`${dirty}`: 활성 편집기에 저장되지 않은 변경 내용이 있는 경우에 대한 표시기입니다.",
- "editorOpenPositioning": "편집기가 열리는 위치를 제어합니다. 현재 활성 편집기의 왼쪽 또는 오른쪽에서 편집기를 열려면 'left' 또는 'right'를 선택합니다. 현재 활성 편집기와 독립적으로 편집기를 열려면 'first' 또는 'last'를 선택합니다.",
- "editorTabCloseButton": "편집기의 탭 닫기 단추 위치를 제어하거나, 'off'로 설정된 경우 사용하지 않도록 설정합니다. `#workbench.editor.showTabs#`를 사용할 수 없는 경우 이 값은 무시됩니다.",
+ "doubleClickTabToToggleEditorGroupSizes": "탭을 두 번 클릭할 때 편집기 그룹의 크기를 조정하는 방법을 제어합니다. 이 값은 {0}(이)가 {1}(으)로 설정되지 않은 경우 무시됩니다.",
+ "dragToOpenWindow": "편집기를 창 밖으로 끌어서 새 창에서 열 수 있는지를 제어합니다. 이를 동적으로 전환하려면 끄는 동안 `Alt` 키를 길게 누르세요.",
+ "editorActionsLocation": "편집기 작업이 표시되는 위치를 제어합니다.",
+ "editorOpenPositioning": "편집기가 열리는 위치를 제어합니다. {0} 또는 {1}(을)를 선택하여 현재 활성화된 편집기의 왼쪽 또는 오른쪽에 있는 편집기를 엽니다. {2} 또는 {3}(을)를 선택하여 현재 활성화된 편집기에서 독립적으로 편집기를 엽니다.",
+ "enableDefaultVisibilityInOldWorkspace": "기본 표시 유형 지원을 받기 전에 이전 작업 영역에서 기본 보조 사이드바 표시 유형을 사용하도록 설정합니다.",
"enableMenuBarMnemonics": " 키 바로 가기를 통해 주 메뉴를 열 수 있는지 여부를 제어합니다. 대신 니모닉을 사용하지 않도록 설정하면 이러한 키 바로 가기를 편집기 명령에 바인딩할 수 있습니다.",
- "enablePreview": "열린 편집기가 미리 보기 편집기로 표시되는지 여부를 제어합니다. 미리 보기 편집기는 열린 상태로 유지되지 않고 명시적으로 열려 있도록 설정될 때까지 재사용되며(예: 더블 클릭 또는 편집을 통해) 파일 이름을 기울임꼴로 표시합니다.",
- "enablePreviewFromCodeNavigation": "편집기에서 코드 탐색이 시작될 때 편집기가 미리 보기에 남아 있는지 여부를 제어합니다. 미리 보기 편집기는 열린 상태로 유지되지 않으며 명시적으로 열린 상태로 유지되도록 설정할 때까지(예: 더블 클릭 또는 편집을 통해) 재사용됩니다. 이 값은 `#workbench.editor.enablePreview#`가 사용되지 않는 경우 무시됩니다.",
- "enablePreviewFromQuickOpen": "빠른 열기에서 연 편집기가 미리 보기 편집기로 표시되는지 여부를 제어합니다. 미리 보기 편집기는 열린 상태로 유지되지 않으며 명시적으로 열린 상태로 유지되도록 설정할 때까지(예: 더블 클릭 또는 편집을 통해) 재사용됩니다. 이 값은 `#workbench.editor.enablePreview#`가 사용되지 않는 경우 무시됩니다.",
- "exclude": "로컬 파일 기록에서 파일을 제외하도록 [glob 패턴](https://code.visualstudio.com/docs/editor/codebasics#_advanced-search-options)을 구성합니다. 이 설정을 변경해도 기존 로컬 파일 기록 항목에는 영향을 미치지 않습니다.",
- "focusRecentEditorAfterClose": "탭을 최근에 사용한 순서대로 닫을 것인지 왼쪽에서 오른쪽으로 닫을 것인지를 제어합니다.",
+ "enableNaturalLanguageSearch": "명령 팔레트에 유사한 명령을 포함할지 여부를 제어합니다. 자연어 지원을 제공하는 확장이 설치되어 있어야 합니다.",
+ "enablePreview": "편집기를 열 때 미리보기 모드를 사용할지 여부를 제어합니다. 편집기 그룹당 최대 하나의 미리 보기 모드 편집기가 있습니다. 이 편집기는 탭 또는 제목 레이블과 편집기 열기 보기에서 파일 이름을 기울임꼴로 표시합니다. 해당 콘텐츠는 미리보기 모드에서 열린 다음 편집기로 대체됩니다. 미리보기 모드 편집기에서 변경하면 레이블을 두 번 클릭하거나 레이블 컨텍스트 메뉴의 '열린 상태 유지' 옵션과 마찬가지로 변경 내용이 유지됩니다. 탐색기에서 파일을 두 번 클릭하여 열면 편집기가 즉시 유지됩니다.",
+ "enablePreviewFromCodeNavigation": "편집기에서 코드 탐색을 시작하는 경우 편집기가 미리 보기에 남아 있을지를 제어합니다. 미리 보기 편집기는 열린 상태로 유지되지 않으며 명시적으로 열린 상태로 유지되도록 설정할 때까지(더블 클릭 또는 편집을 통해) 재사용됩니다. 이 값은 {0}(이)가 {1}(으)로 설정되지 않은 경우 무시됩니다.",
+ "enablePreviewFromQuickOpen": "Quick Open에서 연 편집기를 미리 보기 편집기로 표시할지를 제어합니다. 미리 보기 편집기는 열린 상태로 유지되지 않으며 명시적으로 열린 상태로 유지되도록 설정할 때까지(더블 클릭 또는 편집을 통해) 재사용됩니다. 활성화된 경우 선택하기 전에 Ctrl 키를 눌러 편집기를 미리 보기가 아닌 상태로 엽니다. 이 값은 {0}(이)가 {1}(으)로 설정되지 않은 경우 무시됩니다.",
+ "exclude": "로컬 파일 기록에서 파일을 제외할 경로 또는 [GLOB 패턴](https://aka.ms/vscode-glob-patterns)을 구성합니다. GLOB 패턴은 절대 경로가 아닌 경우 작업 영역 폴더의 경로에 따라 항상 평가됩니다. 이 설정을 변경해도 기존 로컬 파일 기록 항목에는 영향을 주지 않습니다.",
+ "focusRecentEditorAfterClose": "편집기를 최근에 사용한 순서대로 닫을 것인지 왼쪽에서 오른쪽으로 닫을 것인지를 제어합니다.",
+ "focusedView": "`${focusedView}`: 현재 포커스가 맞춰져 있는 보기의 이름입니다.",
"folderName": "`${folderName}`: 파일이 포함된 작업 영역 폴더의 이름(예 : myFolder).",
"folderPath": "`${folderPath}`: 파일이 포함된 작업 영역 폴더의 파일 경도(예: /Users/Development/myFolder).",
"fontAliasing": "워크벤치에서 글꼴 앨리어싱 메서드를 제어합니다.",
- "highlightModifiedTabs": "저장되지 않은 변경 내용이 있는 편집기의 탭에 위쪽 테두리를 그릴지 여부를 제어합니다. '#workbench.editor.showTabs#'을(를) 사용하지 않도록 설정하면 이 값이 무시됩니다.",
- "layoutControlEnabled": "사용자 지정 제목 표시줄의 레이아웃 컨트롤이 {0}을(를) 통해 사용하도록 설정되었는지 여부를 제어합니다.",
- "layoutControlEnabledDeprecation": "이 설정은 더 이상 사용되지 않으며 대신 {0}이(가) 사용됩니다.",
+ "highlightModifiedTabs": "저장하지 않은 변경 내용이 있는 편집기의 탭에 위쪽 테두리를 그릴지 여부를 제어합니다. 이 값은 {0}(이)가 {1}(으)로 설정되지 않은 경우 무시됩니다.",
+ "layoutControlEnabled": "레이아웃 컨트롤을 사용자 지정 제목 표시줄에 표시할지 여부를 제어합니다. 이 설정은{0}이(가) {1}(으)로 설정되지 않은 경우에만 적용됩니다.",
+ "layoutControlEnabledWeb": "제목 표시줄에 레이아웃 컨트롤이 표시되는지 여부를 제어합니다.",
"layoutControlType": "사용자 지정 제목 표시줄의 레이아웃 컨트롤이 단일 메뉴 버튼으로 표시되는지 또는 여러 UI 토글과 함께 표시되는지 제어합니다.",
- "layoutControlTypeDeprecation": "이 설정은 더 이상 사용되지 않으며 대신 {0}이(가) 사용됩니다.",
"layoutcontrol.type.both": "드롭다운 및 토글 버튼을 모두 표시합니다.",
"layoutcontrol.type.menu": "레이아웃 옵션의 드롭다운이 있는 단일 버튼을 표시합니다.",
"layoutcontrol.type.toggles": "패널과 사이드 바의 표시 유형을 전환하기 위한 여러 버튼을 표시합니다.",
@@ -3766,44 +4796,60 @@
"menuBarVisibility.mac": "메뉴 모음의 표시 여부를 제어합니다. '토글' 설정은 메뉴 모음이 숨겨지고 `애플리케이션 메뉴에 포커스`를 실행하면 메뉴 모음이 표시됨을 의미합니다. '컴팩트' 설정은 메뉴를 사이드바로 이동시킵니다.",
"mergeWindow": "로컬 파일 기록의 마지막 항목이 추가되는 항목으로 대체되는 간격(초)을 구성합니다. 이렇게 하면 자동 저장이 활성화된 경우와 같이 추가되는 전체 항목 수를 줄이는 데 도움이 됩니다. 이 설정은 출처가 동일한 항목에만 적용됩니다. 이 설정을 변경해도 기존 로컬 파일 기록 항목에는 영향을 미치지 않습니다.",
"mouseBackForwardToNavigate": "'돌아가기' 및 '앞으로 이동' 명령에 마우스 단추 4와 5를 사용할 수 있습니다.",
+ "navigationControlEnabled": "탐색 컨트롤이 사용자 지정 제목 표시줄에 표시되는지 여부를 제어합니다. 이 설정은{0}이(가) {1}(으)로 설정되지 않은 경우에만 적용됩니다.",
+ "navigationControlEnabledWeb": "제목 표시줄에 탐색 컨트롤이 표시되는지 여부를 제어합니다.",
"navigationScope": "'돌아가기' 및 '앞으로 이동'과 같은 명령에 대해 편집기에서 기록 탐색 범위를 제어합니다.",
"openDefaultKeybindings": "키 바인딩 설정을 열면 모든 기본 키 바인딩 설정을 표시하는 편집기도 열리는지 여부를 제어합니다.",
"openDefaultSettings": "설정을 열면 모든 기본 설정을 표시하는 편집기도 열리는지 여부를 제어합니다.",
"openFilesInNewWindow": "명령줄이나 파일 대화 상자를 사용할 때 파일을 새 창에서 열어야 하는지 여부를 제어합니다.\r\n이 설정이 무시되는 경우가 여전히 있을 수 있습니다(예: `--new-window` 또는 `--reuse -window` 명령줄 옵션).",
"openFilesInNewWindowMac": "명령줄이나 파일 대화 상자를 사용할 때 파일을 새 창에서 열어야 하는지 여부를 제어합니다.\r\n이 설정이 무시되는 경우가 여전히 있을 수 있습니다(예: `--new-window` 또는 `--reuse -window` 명령줄 옵션).",
"openFoldersInNewWindow": "폴더를 새 창에서 열거나 마지막 활성 창을 바꿀지 여부를 제어합니다.\r\n이 설정이 무시되는 경우도 있을 수 있습니다(예: '--new-window' 또는 '--reuse-window' 명령줄 옵션을 사용할 경우).",
- "panelDefaultLocation": "새 작업 영역에서 패널의 기본 위치(터미널, 디버그 콘솔, 출력, 문제)를 제어합니다. 편집기 영역의 아래쪽, 오른쪽 또는 왼쪽에 표시될 수 있습니다.",
+ "panelDefaultLocation": "새 작업 영역에서 패널의 기본 위치(터미널, 디버그 콘솔, 출력, 문제)를 제어합니다. 편집기 영역의 아래쪽, 위쪽, 오른쪽 또는 왼쪽에 표시될 수 있습니다.",
"panelOpensMaximized": "패널이 최대화되어 열리는지 여부를 제어합니다. 항상 최대화되어 열리거나, 최대화되어 열리지 않거나, 닫기 전 상태였던 마지막 상태로 열 수 있습니다.",
+ "panelShowLabels": "패널 제목의 활동 항목이 레이블 또는 아이콘으로 표시되는지 여부를 제어합니다.",
"perEditorGroup": "열린 편집기의 최대 수 제한을 편집기 그룹별로 적용할지 또는 모든 편집기 그룹에 적용할지를 제어합니다.",
- "pinnedTabSizing": "고정된 편집기 탭의 크기 조정을 제어합니다. 고정된 탭은 모든 열린 탭의 시작 부분으로 정렬되며 일반적으로 고정 해제될 때까지 닫히지 않습니다. `#workbench.editor.showTabs#`를 사용할 수 없는 경우 이 값은 무시됩니다.",
+ "pinnedTabSizing": "고정된 편집기 탭의 크기를 제어합니다. 고정된 탭은 열려 있는 모든 탭의 시작 부분으로 정렬되며 일반적으로 고정 해제될 때까지 닫지 않습니다. 이 값은 {0}(이)가 {1}(으)로 설정되지 않은 경우 무시됩니다.",
"preserveInput": "다음에 열 때 마지막으로 명령 팔레트에 입력한 내용을 복원할지 여부를 제어합니다.",
+ "problems.visibility": "편집기 및 워크벤치 전체에서 문제를 표시할지 여부를 제어합니다.",
+ "profileName": "`${profileName}`: 작업 영역이 열리는 프로필의 이름입니다(예: 데이터 과학(프로필)). 기본 프로필을 사용하는 경우 무시됩니다.",
"remoteName": "`${remoteName}`: 예: SSH",
"restoreViewState": "편집기를 닫은 후 다시 열 때 마지막 편집기 보기 상태(예: 스크롤 위치)를 복원합니다. 편집기 보기 상태는 편집기 그룹별로 저장되며 그룹이 닫힐 때 삭제됩니다. 편집기 그룹에 대해 이전 보기 상태가 발견되지 않은 경우 모든 편집기 그룹에서 마지막으로 알려진 보기 상태를 사용하려면 {0} 설정을 사용하세요.",
- "revealIfOpen": "편집기를 여는 경우 보이는 그룹 중 하나에 표시할지 여부를 제어합니다. 사용하지 않도록 설정하면 편집기가 기본적으로 현재 활성 편집기 그룹에 열립니다. 사용하도록 설정하면 현재 활성 편집기 그룹에서 편집기가 다시 열리지 않고 이미 열린 편집기가 표시됩니다. 강제로 편집기가 특정 그룹에서 열리거나 현재 활성 그룹 옆에 열리도록 하는 등의 일부 경우에는 이 설정이 무시됩니다.",
- "rootName": "`${rootName}`: 열려 있는 작업 영역 또는 폴더의 이름입니다(예: myFolder 또는 myWorkspace).",
+ "revealIfOpen": "편집기를 여는 경우 보이는 그룹 중 하나에 표시할지를 제어합니다. 사용하지 않도록 설정하면 편집기가 기본적으로 현재 활성 편집기 그룹에 열립니다. 사용하도록 설정하면 현재 활성 편집기 그룹에서 편집기가 다시 열리지 않고 이미 열린 편집기가 표시됩니다. 강제로 편집기가 특정 그룹에서 열리거나 현재 활성 그룹 옆에 열리도록 하는 등의 일부 경우에는 이 설정이 무시됩니다.",
+ "rootName": "`${rootName}`: 해당되는 경우 선택적인 원격 이름 및 작업 영역 표시기가 있는 작업 영역의 이름(예: myFolder, myRemoteFolder [SSH] 또는 myWorkspace(Workspace)).",
+ "rootNameShort": "'${rootNameShort}': 접미사가 없는 작업 영역의 단축 이름입니다(예: myFolder, myRemoteFolder 또는 myWorkspace).",
"rootPath": "`${rootPath}`: 열려 있는 작업 영역 또는 폴더의 파일 경로입니다(예: /Users/Development/myWorkspace).",
- "scrollToSwitchTabs": "탭 스크롤 시 탭이 열리는지를 제어합니다. 기본적으로 탭을 스크롤하면 탭이 표시되기만 하고 열리지는 않습니다. 키를 길게 누른 채 스크롤하면 해당 기간에 한해 이 동작을 변경할 수 있습니다. '#workbench.editor.showTabs#'를 사용할 수 없는 경우 이 값은 무시됩니다.",
+ "scrollToSwitchTabs": "탭 위로 스크롤하여 열지 여부를 제어합니다. 기본적으로 탭은 스크롤할 때만 표시되지만 열리지는 않습니다. 스크롤하는 동안 Shift 키를 길게 눌러 해당 기간 동안 이 동작을 변경할 수 있습니다. 이 값은 {0}(이)가 {1}(으)로 설정되지 않은 경우 무시됩니다.",
+ "secondarySideBarDefaultVisibility": "처음으로 열리는 작업 영역 또는 빈 창에서 보조 사이드바의 기본 가시성을 제어합니다.",
+ "secondarySideBarShowLabels": "보조 사이드바 제목의 활동 항목이 레이블 또는 아이콘으로 표시되는지 여부를 제어합니다. 이 설정은 {0}이(가) {1}(으)로 설정되지 않은 경우에만 적용됩니다.",
"separator": "`${separator}`: 값 또는 정적 텍스트가 있는 변수로 둘러싸인 경우에만 표시되는 조건부 구분 기호 ( \"-\").",
"settings.editor.desc": "기본적으로 사용할 설정 편집기를 결정합니다.",
"settings.editor.json": "JSON 파일 편집기를 사용합니다.",
"settings.editor.ui": "설정 UI 편집기를 사용합니다.",
+ "settings.showAISearchToggle": "검색을 수행한 후 AI 검색 결과를 사용할 수 있게 되면 설정 편집기의 검색 창에 AI 검색 결과 토글을 표시할지 여부를 제어합니다.",
"sharedViewState": "모든 편집기 그룹에서 가장 최근의 편집기 보기 상태(예: 스크롤 위치)를 보존하고 편집기 그룹에 대한 특정 편집기 보기 상태가 없는 경우 복원합니다.",
- "showEditorTabs": "열려 있는 편집기를 탭에서 열지 여부를 제어합니다.",
+ "showAskInChat": "명령 팔레트 하단에 '채팅에서 물어보기' 옵션을 표시할지 여부를 제어합니다.",
+ "showEditorTabs": "열린 편집기가 개별 탭으로 표시되어야 하는지, 하나의 큰 탭으로 표시할지 또는 제목 영역을 표시하지 않아야 하는지를 제어합니다.",
"showIcons": "열린 편집기를 아이콘과 함께 표시할지 여부를 제어합니다. 이를 위해서는 파일 아이콘 테마도 사용하도록 설정해야 합니다.",
+ "showTabIndex": "사용하도록 설정하면 탭 인덱스가 표시됩니다. 이 값은 {0}(이)가 {1}(으)로 설정되지 않은 경우 무시됩니다.",
"sideBarLocation": "기본 사이드바 및 활동 표시줄의 위치를 제어합니다. 워크벤치의 왼쪽이나 오른쪽에 표시할 수 있습니다. 보조 사이드 바는 작업대의 반대쪽에 표시됩니다.",
- "sideBySideDirection": "탐색기 등에서 나란히 열리는 편집기의 기본 방향을 제어합니다. 기본적으로 편집기는 현재 활성 편집기 오른쪽에 열립니다. 'down'으로 변경하는 경우 편집기가 현재 활성 편집기 아래에 열립니다.",
+ "sideBySideDirection": "탐색기 등에서 나란히 열리는 편집기의 기본 방향을 제어합니다. 기본적으로 편집기는 현재 활성 편집기 오른쪽에 열립니다. 'down'으로 변경하는 경우 편집기가 현재 활성 편집기 아래에 열립니다. 이는 편집기 도구 모음의 분할 편집기 작업에도 영향을 줍니다.",
"splitInGroupLayout": "편집기가 편집기 그룹에서 세로 또는 가로로 분할될 때의 레이아웃을 제어합니다.",
"splitOnDragAndDrop": "편집기 영역의 가장자리에 편집기 또는 파일을 놓아 편집기 그룹을 끌어서 놓기 작업에서 분할할 수 있는지 여부를 제어합니다.",
- "splitSizing": "편집기 그룹을 분할하는 경우 편집기 그룹의 크기를 제어합니다.",
+ "splitSizing": "편집기 그룹 분할 시 편집기 그룹 크기를 제어합니다.",
"statusBarVisibility": "워크벤치 아래쪽에서 상태 표시줄의 표시 유형을 제어합니다.",
+ "suggestCommands": "명령 팔레트에 일반적으로 사용되는 명령 목록이 있어야 하는지 여부를 제어합니다.",
+ "swipeToNavigate": "세 손가락을 사용해 가로로 살짝 밀어 열려 있는 파일 간을 이동합니다. 시스템 기본 설정 > 트랙패드 > 추가 제스처를 '두 손가락 또는 세 손가락으로 살짝 밀기'로 설정해야 합니다.",
+ "tabActionLocation": "편집기 탭 실행 단추(닫기, 고정 해제)의 위치를 제어합니다. 이 값은 {0}(이)가 {1}(으)로 설정되지 않은 경우 무시됩니다.",
"tabDescription": "편집기 레이블의 형식을 제어합니다.",
"tabScrollbarHeight": "편집기 제목 영역에서 탭 및 이동 경로에 사용되는 스크롤 막대의 높이를 제어합니다.",
- "tabSizing": "편집기 탭의 크기 조정을 제어합니다. `#workbench.editor.showTabs#`를 사용할 수 없는 경우 이 값은 무시됩니다.",
- "untitledHint": "제목 없는 텍스트 힌트가 편집기에 표시되어야 하는지 여부를 제어합니다.",
+ "tabSizing": "편집기 탭의 크기를 제어합니다. 이 값은 {0}(이)가 {1}(으)로 설정되지 않은 경우 무시됩니다.",
+ "tips.enabled": "사용하도록 설정되면 편집기가 열리지 않았을 때 워터마크 팁이 표시됩니다.",
+ "titleScrollbarVisibility": "편집기 제목 영역에서 탭 및 이동 경로에 사용되는 스크롤 막대의 표시 유형을 제어합니다.",
"untitledLabelFormat": "제목 없는 편집기의 레이블 형식을 제어합니다.",
"useSplitJSON": "JSON으로 설정을 편집할 때 분할 JSON 편집기를 사용할지 여부를 제어합니다.",
"viewVisibility": "보기 머리글 작업의 표시 여부를 제어합니다. 보기 머리글 작업은 항상 표시할 수도 있고 보기에 포커스가 있거나 보기를 마우스로 가리킬 때만 표시할 수도 있습니다.",
- "window.commandCenter": "창 제목과 함께 명령 시작 관리자를 표시합니다. 이 설정은 {0}이(가) {1}(으)로 설정된 경우에만 적용됩니다.",
+ "window.commandCenter": "창 제목과 함께 명령 시작 관리자를 표시합니다. 이 설정은{0}이(가) {1}(으)로 설정되지 않은 경우에만 적용됩니다.",
+ "window.commandCenterWeb": "창 제목과 함께 명령 시작 관리자를 표시합니다.",
"window.confirmBeforeClose.always": "항상 확인을 요청합니다.",
"window.confirmBeforeClose.always.web": "항상 확인을 요청하세요. 브라우저가 계속 확인 없이 탭이나 창을 닫도록 결정할 수 있습니다.",
"window.confirmBeforeClose.keyboardOnly": "키 바인딩이 사용된 경우에만 확인을 요청합니다.",
@@ -3811,7 +4857,8 @@
"window.confirmBeforeClose.never": "확인을 명시적으로 요청하지 마세요.",
"window.confirmBeforeClose.never.web": "데이터 손실이 곧 발생하지 않는 이상 확인을 명시적으로 요청하지 않습니다.",
"window.menuBarVisibility.classic": "메뉴가 창 위쪽에 표시되고 전체 화면 모드에서만 숨겨집니다.",
- "window.menuBarVisibility.compact": "메뉴는 사이드바에 컴팩트 단추로 표시됩니다. {0}이(가) {1}인 경우 이 값은 무시됩니다.",
+ "window.menuBarVisibility.compact": "메뉴는 사이드바에 컴팩트 단추로 표시됩니다. 이 값은 {0}이(가) {1}이고 {2}이(가) {3} 또는 {4}인 경우 무시됩니다.",
+ "window.menuBarVisibility.compact.web": "메뉴는 사이드바에 컴팩트 단추로 표시됩니다.",
"window.menuBarVisibility.hidden": "메뉴가 항상 숨겨집니다.",
"window.menuBarVisibility.toggle": "메뉴가 숨겨지지만, 키를 통해 창 위쪽에 표시할 수 있습니다.",
"window.menuBarVisibility.toggle.mac": "메뉴가 숨겨지지만, `애플리케이션 메뉴에 포커스` 명령을 실행하여 창 위쪽에 표시할 수 있습니다.",
@@ -3824,11 +4871,29 @@
"window.openFoldersInNewWindow.off": "폴더가 마지막 활성 창을 바꿉니다.",
"window.openFoldersInNewWindow.on": "폴더가 새 창에서 열립니다.",
"window.titleSeparator": "{0}이(가) 사용하는 구분 기호입니다.",
- "windowConfigurationTitle": "창",
- "windowTitle": "활성 편집기를 기준으로 창 제목을 제어합니다. 변수는 컨텍스트를 기준으로 대체됩니다:",
- "workbench.activityBar.iconClickBehavior.focus": "클릭한 항목이 이미 표시된 경우 사이드바에 포커스를 둡니다.",
- "workbench.activityBar.iconClickBehavior.toggle": "클릭한 항목이 이미 표시된 경우 사이드바를 숨깁니다.",
+ "windowTitle": "열린 작업 영역 또는 활성 편집기 같은 현재 컨텍스트를 기반으로 창 제목을 제어합니다. 변수는 컨텍스트에 따라 대체됩니다.",
+ "workbench.activityBar.iconClickBehavior.focus": "클릭한 항목이 이미 표시된 경우 기본 사이드바에 초점을 맞춥니다.",
+ "workbench.activityBar.iconClickBehavior.toggle": "클릭한 항목이 이미 표시된 경우 기본 사이드바를 숨깁니다.",
+ "workbench.activityBar.location.bottom": "기본 및 보조 사이드바 아래쪽에 작업 막대를 표시합니다.",
+ "workbench.activityBar.location.default": "기본 사이드바의 측면과 보조 사이드바 위에 작업 막대를 표시합니다.",
+ "workbench.activityBar.location.hide": "기본 및 보조 사이드바에서 작업 표시줄을 숨깁니다.",
+ "workbench.activityBar.location.top": "기본 및 보조 사이드바 위에 작업 막대를 표시합니다.",
+ "workbench.editor.doubleClickTabToToggleEditorGroupSizes.expand": "편집기 그룹은 다른 모든 편집기 그룹을 가능한 한 작게 만들어 최대한 많은 공간을 차지합니다.",
+ "workbench.editor.doubleClickTabToToggleEditorGroupSizes.maximize": "다른 모든 편집기 그룹은 숨겨지고 현재 편집기 그룹은 전체 편집기 영역을 차지하도록 최대화됩니다.",
+ "workbench.editor.doubleClickTabToToggleEditorGroupSizes.off": "탭을 두 번 클릭하면 편집기 그룹의 크기가 조정되지 않습니다.",
+ "workbench.editor.editorActionsLocation.default": "{0}(이)가 {1}(으)로 설정된 경우 창 제목 표시줄에 편집기 작업을 표시합니다. 그렇지 않으면 편집기 탭 표시줄에 편집기 작업이 표시됩니다.",
+ "workbench.editor.editorActionsLocation.hidden": "편집기 작업이 표시되지 않습니다.",
+ "workbench.editor.editorActionsLocation.titleBar": "창 제목 표시줄에 편집기 작업을 표시합니다. {0}(이)가 {1}(으)로 설정되면 편집기 작업이 숨겨집니다.",
+ "workbench.editor.empty.hint": "비어 있는 편집기 텍스트 힌트가 편집기에 표시되어야 하는지 여부를 제어합니다.",
"workbench.editor.historyBasedLanguageDetection": "언어 감지에서 편집기 기록을 사용할 수 있습니다. 이것은 자동 언어 감지가 최근에 열린 언어를 선호하게 하고 자동 언어 감지가 더 작은 입력으로 작동하도록 합니다.",
+ "workbench.editor.label.dirname": "`${dirname}`: 파일이 있는 폴더의 이름입니다(예: `WORKSPACE_FOLDER/folder/file.txt -> folder`).",
+ "workbench.editor.label.enabled": "사용자 지정 워크벤치 편집기 레이블을 적용할지 여부를 제어합니다.",
+ "workbench.editor.label.extname": "`${extname}`: 파일 확장명입니다(예: `WORKSPACE_FOLDER/folder/file.txt -> txt`).",
+ "workbench.editor.label.filename": "`${filename}`: 파일 확장명을 제외한 파일의 이름입니다(예: `WORKSPACE_FOLDER/folder/file.txt -> file`).",
+ "workbench.editor.label.nthdirname": "`${dirname(N)}`: 파일이 있는 n번째 상위 폴더의 이름입니다(예: `N=2: WORKSPACE_FOLDER/static/folder/file.txt -> WORKSPACE_FOLDER`). 음수를 사용하여 경로의 시작 부분에서 폴더를 선택할 수 있습니다(예: `N=-1: WORKSPACE_FOLDER/folder/file.txt -> WORKSPACE_FOLDER`). __Item__이 절대 패턴 경로인 경우 첫 번째 폴더(`N=-1`)는 절대 경로의 첫 번째 폴더를 가리키고, 그렇지 않으면 작업 영역 폴더에 해당합니다.",
+ "workbench.editor.label.nthextname": "'${extname(N)}': '.'로 구분된 파일의 n번째 확장명입니다(예: 'N=2: WORKSPACE_FOLDER/folder/file.ext1.ext2.ext3 -> ext1'). 음수를 사용하여 확장명의 시작 부분에서 확장명을 선택할 수 있습니다(예: `N=-1: WORKSPACE_FOLDER/folder/file.ext1.ext2.ext3 -> ext2`).",
+ "workbench.editor.label.patterns": "편집기 레이블의 렌더링을 제어합니다. 각 __Item__은 파일 경로와 일치하는 패턴입니다. 상대 및 절대 파일 경로가 모두 지원됩니다. 상대 경로에는 WORKSPACE_FOLDER가 포함되어야 합니다(예: `WORKSPACE_FOLDER/src/**.tsx` or `*/src/**.tsx`). 절대 패턴은 `/`로 시작해야 합니다. 여러 패턴이 일치하는 경우 최대 길이 일치 경로가 선택됩니다. 각 __Value__는 __Item__이 일치할 때 렌더링된 편집기의 템플릿입니다. 변수는 컨텍스트에 따라 대체됩니다.",
+ "workbench.editor.label.template": "패턴이 일치할 때 렌더링해야 하는 템플릿입니다. ${dirname}, ${filename} 및 ${extname} 변수를 포함할 수 있습니다.",
"workbench.editor.labelFormat.default": "파일 이름을 표시합니다. 탭이 사용하도록 설정되어 있고 하나의 그룹에서 파일 2개의 이름이 동일하면, 각 파일 경로의 고유한 섹션이 추가됩니다. 탭이 사용하도록 설정되어 있지 않으면, 작업 영역 폴더에 대한 경로는 편집기가 활성 상태일 때 표시됩니다.",
"workbench.editor.labelFormat.long": "파일 이름과 절대 경로를 차례로 표시합니다.",
"workbench.editor.labelFormat.medium": "파일 이름과 작업 영역 폴더에 상대적인 파일 경로를 차례로 표시합니다.",
@@ -3840,18 +4905,37 @@
"workbench.editor.pinnedTabSizing.compact": "고정된 탭이 아이콘 또는 편집기 이름의 첫 문자만 있는 컴팩트 형식으로 표시됩니다.",
"workbench.editor.pinnedTabSizing.normal": "고정된 탭이 고정되지 않은 탭의 모양을 상속합니다.",
"workbench.editor.pinnedTabSizing.shrink": "고정된 탭이 편집기 이름의 일부를 표시하는 컴팩트 고정 크기로 축소됩니다.",
+ "workbench.editor.pinnedTabsOnSeparateRow": "사용하도록 설정하면 다른 모든 탭 위에 있는 별도의 행에 고정된 탭이 표시됩니다. 이 값은 {0}(이)가 {1}(으)로 설정되지 않은 경우 무시됩니다.",
"workbench.editor.preferBasedLanguageDetection": "활성화되면 편집기 기록을 고려하는 언어 감지 모델에 더 높은 우선 순위가 부여됩니다.",
- "workbench.editor.showLanguageDetectionHints": "활성화되면 편집기 언어가 감지된 콘텐츠 언어와 일치하지 않을 때 상태 표시줄 빠른 수정을 표시합니다.",
+ "workbench.editor.preventPinnedEditorClose": "키보드 또는 마우스 가운데 클릭을 사용하여 닫을 때 고정된 편집기를 닫을지 여부를 제어합니다.",
+ "workbench.editor.preventPinnedEditorClose.always": "마우스 가운데 클릭 또는 키보드를 사용할 때 항상 고정된 편집기를 닫지 않도록 합니다.",
+ "workbench.editor.preventPinnedEditorClose.never": "고정된 편집기를 절대 닫지 않습니다.",
+ "workbench.editor.preventPinnedEditorClose.onlyKeyboard": "키보드를 사용할 때 고정된 편집기를 닫지 않습니다.",
+ "workbench.editor.preventPinnedEditorClose.onlyMouse": "마우스 가운데 클릭을 사용할 때 고정된 편집기를 닫지 않습니다.",
+ "workbench.editor.showLanguageDetectionHints": "사용하도록 설정하면 편집기 언어가 감지된 콘텐츠 언어와 일치하지 않을 때 상태 표시줄 빠른 수정을 표시합니다.",
"workbench.editor.showLanguageDetectionHints.editors": "제목 없는 텍스트 편집기에 표시",
"workbench.editor.showLanguageDetectionHints.notebook": "Notebook 편집기에 표시",
+ "workbench.editor.showTabs.multiple": "각 편집기는 편집기 제목 영역에 탭으로 표시됩니다.",
+ "workbench.editor.showTabs.none": "편집기 제목 영역이 표시되지 않습니다.",
+ "workbench.editor.showTabs.single": "활성 편집기는 편집기 제목 영역에 하나의 큰 탭으로 표시됩니다.",
"workbench.editor.splitInGroupLayoutHorizontal": "편집기는 왼쪽에서 오른쪽으로 배치됩니다.",
"workbench.editor.splitInGroupLayoutVertical": "편집기는 위에서 아래로 배치됩니다.",
+ "workbench.editor.splitSizingAuto": "모든 편집기 그룹이 이미 동일한 부분에 있지 않는 한 활성 편집기 그룹을 동일한 부분으로 분할합니다. 이 경우 모든 편집기 그룹을 동일한 부분으로 분할합니다.",
"workbench.editor.splitSizingDistribute": "모든 편집기 그룹을 동일한 부분으로 분할합니다.",
"workbench.editor.splitSizingSplit": "활성 편집기 그룹을 동일한 부분으로 분할합니다.",
+ "workbench.editor.tabActionCloseVisibility": "탭 닫기 실행 단추의 표시 여부를 제어합니다.",
+ "workbench.editor.tabActionUnpinVisibility": "탭 고정 해제 실행 단추의 표시 여부를 제어합니다.",
+ "workbench.editor.tabHeight": "편집기 탭의 높이를 제어합니다. {0}(이)가 {1}(으)로 설정되지 않은 경우에도 제목 컨트롤 표시줄에 적용됩니다.",
"workbench.editor.tabSizing.fit": "항상 전체 편집기 레이블을 표시할 만큼 큰 탭을 유지합니다.",
+ "workbench.editor.tabSizing.fixed": "모든 탭을 같은 크기로 만듭니다. 사용 가능한 공간이 부족하여 모든 탭을 한 번에 표시할 수 없을 때는 탭의 크기를 작게 조정할 수 있습니다.",
"workbench.editor.tabSizing.shrink": "한 번에 모든 탭을 표시할 만큼 사용 가능한 공간이 없는 경우 탭을 작게 만들 수 있습니다.",
+ "workbench.editor.tabSizingFixedMaxWidth": "{0}이(가) {1}(으)로 설정된 경우 탭의 최대 너비를 제어합니다.",
+ "workbench.editor.tabSizingFixedMinWidth": "{0}이(가) {1}(으)로 설정된 경우 탭의 최소 너비를 제어합니다.",
"workbench.editor.titleScrollbarSizing.default": "기본 크기.",
"workbench.editor.titleScrollbarSizing.large": "마우스로 더 쉽게 잡을 수 있도록 크기를 늘립니다.",
+ "workbench.editor.titleScrollbarVisibility.auto": "가로 스크롤 막대는 필요한 경우에만 표시됩니다.",
+ "workbench.editor.titleScrollbarVisibility.hidden": "가로 스크롤 막대를 항상 숨깁니다.",
+ "workbench.editor.titleScrollbarVisibility.visible": "가로 스크롤 막대가 항상 표시됩니다.",
"workbench.editor.untitled.labelFormat.content": "제목 없는 파일의 이름은 연결된 파일 경로가 없는 경우 첫 번째 줄의 콘텐츠에서 파생됩니다. 줄이 비어 있거나 단어 문자가 없는 경우 해당 이름으로 대체됩니다.",
"workbench.editor.untitled.labelFormat.name": "제목 없는 파일의 이름은 파일 콘텐츠에서 파생되지 않습니다.",
"workbench.fontAliasing.antialiased": "서브 픽셀이 아닌 픽셀 수준에서 글꼴을 다듬습니다. 전반적으로 글꼴이 더 밝게 표시됩니다.",
@@ -3860,39 +4944,54 @@
"workbench.fontAliasing.none": "글꼴 다듬기를 사용하지 않습니다. 텍스트 가장자리가 각지게 표시됩니다.",
"workbench.hover.delay": "workbench 항목(예: 일부 확장에서 트리 뷰 항목을 제공함)에 호버가 표시된 후 지연 시간(밀리초)을 제어합니다. 이미 표시된 항목에 이 설정 변경 내용을 적용하려면 해당 항목을 새로 고쳐야 할 수 있습니다.",
"workbench.panel.opensMaximized.always": "패널을 열 때 항상 패널을 최대화합니다.",
- "workbench.panel.opensMaximized.never": "패널을 열 때 최대화하지 않습니다. 패널이 최대화되지 않은 상태로 열립니다.",
+ "workbench.panel.opensMaximized.never": "패널을 열 때 최대화하지 마세요.",
"workbench.panel.opensMaximized.preserve": "패널을 닫기 전 상태로 엽니다.",
+ "workbench.panel.output": "출력 보기",
"workbench.quickOpen.preserveInput": "다음에 열 때 마지막으로 Quick Open에 입력한 내용을 복원할지 여부를 제어합니다.",
"workbench.reduceMotion": "워크벤치가 더 적은 애니메이션으로 렌더링되어야 하는지 여부를 제어합니다.",
"workbench.reduceMotion.auto": "OS 구성에 따라 감소된 동작으로 렌더링합니다.",
"workbench.reduceMotion.off": "축소된 동작으로 렌더링 안 함",
"workbench.reduceMotion.on": "항상 감소된 동작으로 렌더링합니다.",
- "wrapTabs": "사용 가능한 공간을 초과할 때 탭을 여러 줄로 줄 바꿈할지 또는 스크롤 막대를 대신 표시할지 여부를 제어합니다. `#workbench.editor.showTabs#`를 사용할 수 없는 경우 이 값은 무시됩니다.",
+ "workbench.secondarySideBar.defaultVisibility.hidden": "보조 사이드바를 기본적으로 숨깁니다.",
+ "workbench.secondarySideBar.defaultVisibility.maximized": "보조 사이드바가 기본적으로 표시되고 최대화됩니다.",
+ "workbench.secondarySideBar.defaultVisibility.maximizedInWorkspace": "작업 영역을 열면 보조 사이드바가 기본적으로 표시되고 최대화됩니다.",
+ "workbench.secondarySideBar.defaultVisibility.visible": "보조 사이드바를 기본적으로 표시합니다.",
+ "workbench.secondarySideBar.defaultVisibility.visibleInWorkspace": "작업 영역을 열면 보조 사이드바가 기본적으로 표시됩니다.",
+ "workbench.view.showQuietly": "확장에서 숨겨진 보기를 표시하도록 요청하는 경우 클릭 가능한 상태 표시줄 표시기를 대신 표시합니다.",
+ "wrapTabs": "사용 가능한 공간을 초과할 때 탭을 여러 줄에 래핑할지 또는 스크롤 막대를 대신 표시할지 여부를 제어합니다. 이 값은 {0}(이)가 ‘{1}’로 설정되지 않은 경우 무시됩니다.",
"zenMode.centerLayout": "Zen 모드를 켜면 레이아웃도 가운데로 맞춰지는지 여부를 제어합니다.",
"zenMode.fullScreen": "Zen 모드를 켜면 워크벤치도 전체 화면 모드로 전환되는지 여부를 제어합니다.",
"zenMode.hideActivityBar": "Zen 모드를 켜면 워크벤치의 왼쪽 또는 오른쪽에 있는 작업 막대도 숨길지 여부를 제어합니다.",
"zenMode.hideLineNumbers": "Zen 모드를 설정하면 편집기 줄 번호도 숨길 것인지 여부를 제어합니다.",
"zenMode.hideStatusBar": "Zen 모드를 켜면 워크벤치 하단에서 상태 표시줄도 숨길지 여부를 제어합니다.",
- "zenMode.hideTabs": "Zen 모드를 켜면 워크벤치 탭도 숨길지 여부를 제어합니다.",
- "zenMode.restore": "창이 Zen 모드에서 종료된 경우 Zen 모드로 복원할지 여부를 제어합니다.",
- "zenMode.silentNotifications": "알림 방해 금지 모드가 zen 모드에 있는 동안 활성화되어야 하는지 여부를 제어합니다. true인 경우 오류 알림만 표시됩니다.",
+ "zenMode.restore": "창이 Zen 모드에서 종료된 경우 Zen 모드로 복원할지를 제어합니다.",
+ "zenMode.showTabs": "Zen 모드를 켜면 여러 편집기 탭, 단일 편집기 탭을 표시할지 아니면 편집기 제목 영역을 완전히 숨길지 여부를 제어합니다.",
+ "zenMode.showTabs.multiple": "각 편집기는 편집기 제목 영역에 탭으로 표시됩니다.",
+ "zenMode.showTabs.none": "편집기 제목 영역이 표시되지 않습니다.",
+ "zenMode.showTabs.single": "활성 편집기는 편집기 제목 영역에 하나의 큰 탭으로 표시됩니다.",
+ "zenMode.silentNotifications": "Zen 모드에 있는 동안 알림 방해 금지 모드를 활성화할지를 제어합니다. true인 경우 오류 알림만 표시합니다.",
"zenModeConfigurationTitle": "Zen 모드"
},
- "vs/workbench/common/actions": {
- "developer": "개발자",
- "help": "도움말",
- "preferences": "기본 설정",
- "test": "테스트",
- "view": "보기"
- },
"vs/workbench/common/configuration": {
+ "active window": "활성 창",
+ "applicationConfigurationTitle": "애플리케이션",
+ "newWindowProfile": "새 창을 열 때 사용할 프로필을 지정합니다. 프로필 이름이 제공되면 새 창에서 해당 프로필을 사용합니다. 프로필 이름이 제공되지 않으면 활성 창이 없는 경우 새 창에서 활성 창의 프로필 또는 기본 프로필을 사용합니다.",
+ "problemsConfigurationTitle": "문제",
+ "security.allowedUNCHosts": "사용자 확인 없이 허용할 UNC 호스트 이름 집합('192.168.0.1' 또는 'my-server'와 같이 백슬래시 앞이나 뒤에 붙지 않음)입니다. 이 설정을 통해 허용되지 않거나 사용자 확인을 통해 승인되지 않은 UNC 호스트에 액세스하는 경우 오류가 발생하며 작업이 중지됩니다. 이 설정을 변경하려면 다시 시작해야 합니다. https://aka.ms/vscode-windows-unc에서 이 설정에 대해 자세히 알아보세요.",
+ "security.allowedUNCHosts.patternErrorMessage": "UNC 호스트 이름에는 백슬래시를 포함할 수 없습니다.",
+ "security.restrictUNCAccess": "활성화된 경우 `#security.allowedUNCHosts#` 설정 또는 사용자 확인 후에 허용된 UNC 호스트 이름에 대한 액세스만 허용합니다. https://aka.ms/vscode-windows-unc에서 이 설정에 대해 자세히 알아보세요.",
+ "securityConfigurationTitle": "보안",
+ "windowConfigurationTitle": "창",
"workbenchConfigurationTitle": "워크벤치"
},
"vs/workbench/common/contextkeys": {
+ "SelectedEditorsInGroupFileOrUntitledResourceContextKey": "그룹에서 선택한 모든 편집기에서 파일 또는 제목 없는 리소스가 연결되어 있는지 여부",
"activeAuxiliary": "활성 보조 패널의 식별자입니다.",
+ "activeCompareEditorCanSwap": "활성 비교 편집기에서 측면을 바꿀 수 있는지 여부",
"activeEditor": "활성 편집기의 식별자",
"activeEditorAvailableEditorIds": "활성 편집기에 사용할 수 있는 사용 가능한 편집기 식별자",
"activeEditorCanRevert": "활성 편집기에서 되돌릴 수 있는지 여부",
+ "activeEditorCanToggleReadonly": "활성 편집기가 읽기 전용 또는 쓰기 가능 사이를 전환할 수 있는지 여부",
"activeEditorGroupEmpty": "활성 편집기 그룹이 비어 있는지 여부",
"activeEditorGroupIndex": "활성 편집기 그룹의 인덱스",
"activeEditorGroupLast": "활성 편집기 그룹이 마지막 그룹인지 여부",
@@ -3906,19 +5005,29 @@
"activePanel": "활성 패널의 식별자",
"activeViewlet": "활성 뷰렛의 식별자",
"auxiliaryBarFocus": "보조 막대에 키보드 포커스가 있는지 여부",
+ "auxiliaryBarMaximized": "보조 막대가 최대화되는지 여부",
"auxiliaryBarVisible": "보조 막대가 표시되는지 여부",
"bannerFocused": "배너에 키보드 포커스가 있는지 여부",
"dirtyWorkingCopies": "저장되지 않은 변경 내용이 있는 작업 복사본이 있는지 여부",
- "editorAreaVisible": "편집기 영역이 표시되는지 여부",
"editorIsOpen": "편집기가 열려 있는지 여부",
+ "editorPartEditorGroupMaximized": "편집기 파트에 최대화된 그룹이 있습니다.",
+ "editorPartMultipleEditorGroups": "편집기 파트에 여러 편집기 그룹이 열려 있는지 여부",
"editorTabsVisible": "편집기 탭이 표시되는지 여부",
+ "embedderIdentifier": "제품 서비스에 따라 정의된 경우 포함자의 식별자입니다.",
"focusedView": "키보드 포커스가 있는 뷰의 식별자",
"groupEditorsCount": "열려 있는 편집기 그룹 수",
+ "inAutomation": "VS Code가 자동화/스모크 테스트에서 실행 중인지 여부",
"inZenMode": "Zen 모드를 사용하도록 설정되어 있는지 여부",
- "isCenteredLayout": "가운데 맞춤 레이아웃을 사용하도록 설정되어 있는지 여부",
+ "isAuxiliaryWindow": "창은 보조 창입니다.",
+ "isAuxiliaryWindowFocusedContext": "보조 창에 포커스가 있는지 여부",
+ "isCompactTitleBar": "제목 표시줄이 컴팩트 모드입니다",
"isFileSystemResource": "파일 시스템 공급자에서 리소스를 지원하는지 여부",
- "isFullscreen": "창이 전체 화면 모드인지 여부",
+ "isFullscreen": "주 창이 전체 화면 모드인지 여부",
+ "isMainEditorCenteredLayout": "주 편집기에서 가운데 레이아웃을 사용할 수 있는지 여부",
+ "isWindowAlwaysOnTop": "창이 항상 위에 있는지 여부",
+ "mainEditorAreaVisible": "기본 창의 편집기 영역을 표시할지 여부",
"multipleEditorGroups": "여러 개의 편집기 그룹이 열려 있는지 여부",
+ "multipleEditorsSelectedInGroup": "편집기 그룹에서 여러 편집기를 선택했는지 여부",
"notificationCenterVisible": "알림 센터가 표시되는지 여부",
"notificationFocus": "알림에 키보드 포커스가 있는지 여부",
"notificationToastsVisible": "알림 메시지가 표시되는지 여부",
@@ -3941,14 +5050,20 @@
"sideBySideEditorActive": "병렬 편집기가 활성 상태인지 여부",
"splitEditorsVertically": "편집기가 세로로 분할되었는지 여부",
"statusBarFocused": "상태 표시줄에 키보드 포커스가 있는지 여부",
+ "temporaryWorkspace": "현재 작업 영역의 구성표는 임시 파일 시스템에서 가져온 것입니다.",
"textCompareEditorActive": "텍스트 비교 편집기가 활성 상태인지 여부",
"textCompareEditorVisible": "텍스트 비교 편집기가 표시되는지 여부",
- "virtualWorkspace": "가상 파일 시스템 또는 빈 문자열에서 가져온 경우 현재 작업 영역의 시스템입니다.",
+ "titleBarStyle": "창 제목 표시줄의 스타일",
+ "titleBarVisible": "제목 표시줄이 표시되는지 여부",
+ "twoEditorsSelectedInGroup": "편집기 그룹에서 정확히 두 개의 편집기를 선택했는지 여부",
+ "virtualWorkspace": "현재 작업 영역의 구성표는 가상 파일 시스템 또는 빈 문자열에서 가져옵니다.",
"workbenchState": "창에 열려 있는 작업 영역의 종류('비어 있음'(작업 영역 없음), '폴더'(단일 폴더) 또는 '작업 영역'(다중 루트 작업 영역))",
"workspaceFolderCount": "작업 영역의 루트 폴더 수"
},
"vs/workbench/common/editor": {
"builtinProviderDisplayName": "기본 제공",
+ "configureEditorLargeFileConfirmation": "한도 구성",
+ "openLargeFile": "계속 열기",
"promptOpenWith.defaultEditor.displayName": "텍스트 편집기"
},
"vs/workbench/common/editor/diffEditorInput": {
@@ -3971,9 +5086,23 @@
"activityBarDragAndDropBorder": "작업 막대 항목의 끌어서 놓기 피드백 색입니다. 작업 막대는 왼쪽 끝이나 오른쪽 끝에 표시되어 사이드바의 보기 간을 전환할 수 있습니다.",
"activityBarForeground": "작업 막대 항목이 활성 상태일 때 전경색입니다. 작업 막대는 맨 왼쪽이나 오른쪽에 표시되며 사이드바의 뷰 간을 전환하는 데 사용할 수 있습니다.",
"activityBarInActiveForeground": "작업 막대 항목이 비활성 상태일 때 전경색입니다. 작업 막대는 맨 왼쪽이나 오른쪽에 표시되며 사이드바의 뷰 간을 전환하는 데 사용할 수 있습니다.",
+ "activityBarTop": "작업 표시줄이 위쪽/아래쪽에 있을 때 항목의 활성 전경색입니다. 작업을 통해 사이드바 뷰 간에 전환할 수 있습니다.",
+ "activityBarTopActiveBackground": "활동 표시줄이 위쪽/아래쪽에 있을 때 활성 항목의 배경색입니다. 활동을 사용하면 사이드바의 보기 간에 전환할 수 있습니다.",
+ "activityBarTopActiveFocusBorder": "작업 표시줄이 위쪽/아래쪽에 있을 때 활성 항목의 포커스 테두리 색입니다. 작업을 통해 사이드바 뷰 간에 전환할 수 있습니다.",
+ "activityBarTopBackground": "위쪽/아래쪽으로 설정된 경우 활동 표시줄의 배경색입니다.",
+ "activityBarTopDragAndDropBorder": "작업 표시줄이 위쪽/아래쪽에 있을 때 항목의 끌어서 놓기 피드백 색입니다. 작업을 통해 사이드바 뷰 간에 전환할 수 있습니다.",
+ "activityBarTopInActiveForeground": "작업 표시줄이 위쪽/아래쪽에 있을 때 항목의 비활성 전경색입니다. 작업을 통해 사이드바 뷰 간에 전환할 수 있습니다.",
"banner.background": "배너 배경색입니다. 배너는 창의 제목 표시줄 아래에 표시됩니다.",
"banner.foreground": "배너 전경색입니다. 배너는 창의 제목 표시줄 아래에 표시됩니다.",
"banner.iconForeground": "배너 아이콘 색입니다. 배너는 창의 제목 표시줄 아래에 표시됩니다.",
+ "commandCenter-activeBackground": "명령 센터의 활성 배경색",
+ "commandCenter-activeBorder": "명령 센터의 활성 테두리 색",
+ "commandCenter-activeForeground": "명령 센터의 활성 전경색",
+ "commandCenter-background": "명령 센터의 배경색",
+ "commandCenter-border": "명령 센터의 테두리 색",
+ "commandCenter-foreground": "명령 센터의 전경색",
+ "commandCenter-inactiveBorder": "창이 비활성 상태인 경우 명령 센터의 테두리 색",
+ "commandCenter-inactiveForeground": "창이 비활성 상태인 경우 명령 센터의 전경색",
"editorDragAndDropBackground": "편집기를 끌 때 배경색입니다. 편집기 내용이 계속 비추어 보이도록 이 색은 투명해야 합니다.",
"editorDropIntoPromptBackground": "파일을 끌 때 편집기 위에 표시되는 텍스트의 배경색입니다. 이 텍스트는 편집기에 놓기 위해 교대 근무를 유지할 수 있음을 사용자에게 알릴 수 있습니다.",
"editorDropIntoPromptBorder": "파일을 끌 때 편집기 위에 표시되는 텍스트의 테두리 색상입니다. 이 텍스트는 Shift 키를 누르고 있으면 편집기로 이동할 수 있음을 사용자에게 알립니다.",
@@ -3981,7 +5110,7 @@
"editorGroupBorder": "여러 편집기 그룹을 서로 구분하기 위한 색입니다. 편집기 그룹은 편집기의 컨테이너입니다.",
"editorGroupEmptyBackground": "빈 편집기 그룹의 배경색입니다. 편집기 그룹은 편집기의 컨테이너입니다.",
"editorGroupFocusedEmptyBorder": "포커스가 있는 빈 편집기 그룹의 배경색입니다. 편집기 그룹은 편집기의 컨테이너입니다.",
- "editorGroupHeaderBackground": "탭을 사용하지 않도록 설정한 경우(`\"workbench.editor.showTabs\": false`) 편집기 그룹 제목 머리글의 배경색입니다. 편집기 그룹은 편집기의 컨테이너입니다.",
+ "editorGroupHeaderBackground": "편집기 그룹 제목 헤더의 배경색('\"workbench.editor.showTabs\": \"single\"'). 편집기 그룹은 편집기의 컨테이너입니다.",
"editorPaneBackground": "가운데 맞춤 편집기 레이아웃의 왼쪽과 오른쪽에 표시되는 편집기 창의 배경색입니다.",
"editorTitleContainerBorder": "편집기 그룹 제목 머리글의 테두리 색입니다. 편집기 그룹은 편집기 컨테이너입니다.",
"extensionBadge.remoteBackground": "확장 보기에서의 원격 배지 배경색입니다.",
@@ -4001,6 +5130,8 @@
"notificationsInfoIconForeground": "정보 알림 아이콘에 사용되는 색입니다. 알림은 창의 오른쪽 하단에 표시됩니다.",
"notificationsLink": "알림 링크 전경색입니다. 알림은 창 오른쪽 맨 아래에 표시됩니다.",
"notificationsWarningIconForeground": "경고 알림 아이콘에 사용되는 색입니다. 알림은 창의 오른쪽 하단에 표시됩니다.",
+ "outputViewBackground": "출력 뷰 배경색입니다.",
+ "outputViewStickyScrollBackground": "출력 뷰 고정 스크롤 배경색입니다.",
"panelActiveTitleBorder": "활성 패널 제목의 테두리 색입니다. 패널은 편집기 영역 아래에 표시되며 출력 및 통합 터미널 같은 보기가 포함됩니다.",
"panelActiveTitleForeground": "활성 패널의 제목 색입니다. 패널은 편집기 영역 아래에 표시되며 출력 및 통합 터미널 같은 보기가 포함됩니다.",
"panelBackground": "패널 배경색입니다. 패널은 편집기 영역 아래에 표시되며 출력 및 통합 터미널 같은 보기가 포함됩니다.",
@@ -4013,6 +5144,15 @@
"panelSectionHeaderBackground": "패널 섹션 헤더 배경색입니다. 패널은 편집기 영역 아래에 표시되며 출력과 통합 터미널 같은 보기를 포함합니다. 패널 섹션은 패널 내에 중첩된 보기입니다.",
"panelSectionHeaderBorder": "패널에서 여러 보기가 세로로 배치될 때 사용되는 패널 섹션 헤더 테두리 색입니다. 패널은 편집기 영역 아래에 표시되며 출력과 통합 터미널 같은 보기를 포함합니다. 패널 섹션은 패널 내에 중첩된 보기입니다.",
"panelSectionHeaderForeground": "패널 섹션 헤더 전경색입니다. 패널은 편집기 영역 아래에 표시되며 출력과 통합 터미널 같은 보기를 포함합니다. 패널 섹션은 패널 내에 중첩된 보기입니다.",
+ "panelStickyScrollBackground": "패널에서 고정 스크롤의 배경색입니다.",
+ "panelStickyScrollBorder": "패널에서 고정 스크롤의 테두리 색입니다.",
+ "panelStickyScrollShadow": "패널에서 고정 스크롤의 그림자 색입니다.",
+ "panelTitleBadgeBackground": "패널 제목 배지 배경색입니다. 패널은 편집기 영역 아래에 표시되며 출력 및 통합 터미널과 같은 뷰를 포함합니다.",
+ "panelTitleBadgeForeground": "패널 제목 배지 전경색입니다. 패널은 편집기 영역 아래에 표시되며 출력 및 통합 터미널과 같은 뷰를 포함합니다.",
+ "panelTitleBorder": "아래쪽의 패널 제목 테두리 색으로, 제목을 보기와 구분합니다. 패널은 편집기 영역 아래에 표시되며 출력 및 통합 터미널과 같은 뷰를 포함합니다.",
+ "profileBadgeBackground": "프로필 배지 배경색입니다. 프로필 배지는 작업 표시줄의 설정 톱니바퀴 아이콘 위에 표시됩니다.",
+ "profileBadgeForeground": "프로필 배지 전경색입니다. 프로필 배지는 작업 표시줄의 설정 톱니바퀴 아이콘 위에 표시됩니다.",
+ "sideBarActivityBarTopBorder": "위쪽/아래쪽의 작업 표시줄과 보기 사이의 테두리 색입니다.",
"sideBarBackground": "사이드바 배경색입니다. 사이드바는 탐색기 및 검색과 같은 뷰의 컨테이너입니다.",
"sideBarBorder": "편집기와 구분하는 측면의 사이드바 테두리 색입니다. 사이드바는 탐색기 및 검색과 같은 뷰의 컨테이너입니다.",
"sideBarDragAndDropBackground": "사이드바 섹션의 끌어서 놓기 피드백 색입니다. 이 색은 사이드바 섹션이 계속 비추어 보이도록 투명성이 있어야 합니다. 사이드바는 탐색기와 검색 같은 보기의 컨테이너입니다. 사이드바 섹션은 사이드바 내에 중첩된 보기입니다.",
@@ -4020,6 +5160,11 @@
"sideBarSectionHeaderBackground": "사이드바 섹션 헤더 배경색입니다. 사이드바는 탐색기와 검색 같은 보기의 컨테이너입니다. 사이드바 섹션은 사이드바 내에 중첩된 보기입니다.",
"sideBarSectionHeaderBorder": "사이드바 섹션 헤더 테두리 색입니다. 사이드바는 탐색기와 검색 같은 보기의 컨테이너입니다. 사이드바 섹션은 사이드바 내에 중첩된 보기입니다.",
"sideBarSectionHeaderForeground": "사이드바 섹션 헤더 전경색입니다. 사이드바는 탐색기와 검색 같은 보기의 컨테이너입니다. 사이드바 섹션은 사이드바 내에 중첩된 보기입니다.",
+ "sideBarStickyScrollBackground": "사이드바에서 고정 스크롤의 배경색입니다.",
+ "sideBarStickyScrollBorder": "사이드바에서 고정 스크롤의 테두리 색입니다.",
+ "sideBarStickyScrollShadow": "사이드바에서 고정 스크롤의 그림자 색입니다.",
+ "sideBarTitleBackground": "사이드바 제목 배경색입니다. 사이드바는 탐색기 및 검색과 같은 뷰의 컨테이너입니다.",
+ "sideBarTitleBorder": "아래쪽의 가로 막대 제목 테두리 색으로 제목을 보기와 구분합니다. 사이드바는 탐색기 및 검색과 같은 뷰의 컨테이너입니다.",
"sideBarTitleForeground": "사이드바 제목 전경색입니다. 사이드바는 탐색기 및 검색과 같은 뷰의 컨테이너입니다.",
"sideBySideEditor.horizontalBorder": "편집기 그룹에서 위쪽에서 아래쪽으로 나란히 표시되면 두 편집기를 서로 구분하는 색입니다.",
"sideBySideEditor.verticalBorder": "편집기 그룹에서 왼쪽에서 오른쪽으로 나란히 표시되면 두 편집기를 서로 구분하는 색입니다.",
@@ -4027,22 +5172,34 @@
"statusBarBorder": "사이드바 및 편집기와 구분하는 상태 표시줄 테두리 색입니다. 상태 표시줄은 창의 맨 아래에 표시됩니다.",
"statusBarErrorItemBackground": "상태 표시줄 오류 항목 배경색입니다. 오류 항목은 오류 상태를 나타내기 위해 다른 상태 표시줄 항목보다 눈에 띕니다. 창 아래쪽에 상태 표시줄이 표시됩니다.",
"statusBarErrorItemForeground": "상태 표시줄 오류 항목 전경색입니다. 오류 항목은 오류 상태를 나타내기 위해 다른 상태 표시줄 항목보다 눈에 띕니다. 창 아래쪽에 상태 표시줄이 표시됩니다.",
+ "statusBarErrorItemHoverBackground": "마우스로 가리킬 때 상태 표시줄 오류 항목 배경색입니다. 오류 항목은 오류 상태를 나타내기 위해 다른 상태 표시줄 항목보다 눈에 띕니다. 창 아래쪽에 상태 표시줄이 표시됩니다.",
+ "statusBarErrorItemHoverForeground": "마우스로 가리킬 때 상태 표시줄 오류 항목 전경색입니다. 오류 항목은 오류 상태를 나타내기 위해 다른 상태 표시줄 항목보다 눈에 띕니다. 창 아래쪽에 상태 표시줄이 표시됩니다.",
"statusBarFocusBorder": "키보드 탐색에 집중할 때 상태 표시줄 테두리 색상입니다. 상태 표시줄은 창 하단에 표시됩니다.",
"statusBarForeground": "작업 영역 또는 폴더가 열려 있을 때의 상태 표시줄 전경색입니다. 상태 표시줄은 창의 맨 아래에 표시됩니다.",
"statusBarItemActiveBackground": "클릭할 때의 상태 표시줄 항목 배경색입니다. 상태 표시줄은 창의 맨 아래에 표시됩니다.",
"statusBarItemCompactHoverBackground": "가리키기 두 개가 있는 항목을 마우스로 가리킬 때의 상태 표시줄 항목 배경색입니다. 상태 표시줄은 창의 맨 아래에 표시됩니다.",
"statusBarItemFocusBorder": "키보드 탐색에 포커스가 있을 때 상태 표시줄 항목 테두리 색입니다. 상태 표시줄은 창 아래쪽에 표시됩니다.",
- "statusBarItemHostBackground": "상태 표시줄에서 원격 표시기의 배경색입니다.",
- "statusBarItemHostForeground": "상태 표시줄에서 원격 표시기의 전경색입니다.",
"statusBarItemHoverBackground": "마우스로 가리킬 때의 상태 표시줄 항목 배경색입니다. 상태 표시줄은 창의 맨 아래에 표시됩니다.",
+ "statusBarItemHoverForeground": "마우스로 가리킬 때의 상태 표시줄 항목 전경색입니다. 상태 표시줄은 창의 맨 아래에 표시됩니다.",
+ "statusBarItemOfflineBackground": "워크벤치가 오프라인 상태일 때 상태 표시줄 항목 배경 색입니다.",
+ "statusBarItemOfflineForeground": "워크벤치가 오프라인 상태일 때 상태 표시줄 항목 전경색입니다.",
+ "statusBarItemRemoteBackground": "상태 표시줄에서 원격 표시기의 배경색입니다.",
+ "statusBarItemRemoteForeground": "상태 표시줄에서 원격 표시기의 전경색입니다.",
"statusBarNoFolderBackground": "폴더가 열리지 않았을 때의 상태 표시줄 배경색입니다. 상태 표시줄은 창의 맨 아래에 표시됩니다.",
"statusBarNoFolderBorder": "열린 폴더가 없을 때 사이드바 및 편집기와 구분하는 상태 표시줄 테두리 색입니다. 상태 표시줄은 창의 맨 아래에 표시됩니다.",
"statusBarNoFolderForeground": "폴더가 열리지 않았을 때의 상태 표시줄 전경색입니다. 상태 표시줄은 창의 맨 아래에 표시됩니다.",
- "statusBarProminentItemBackground": "상태 표시줄 주요 항목 배경 색. 주요 항목은 중요성을 알려주기 위해 다른 상태 표시줄 항목보다 눈에 띕니다. 예제를 보기 위해 명령 팔레트에서 '포커스 이동을 위해 탭 키 토글' 모드를 변경합니다. 창 아래쪽에 상태 표시줄이 나타납니다.",
- "statusBarProminentItemForeground": "상태 표시줄 주요 항목 전경색입니다. 중요도를 표시하기 위해 주요 항목은 다른 상태 표시줄 항목보다 눈에 잘 띕니다. 예제를 표시하려면 명령 팔레트에서 `Tab 키로 포커스 이동 설정/해제` 모드를 변경합니다. 상태 표시줄은 창 아래쪽에 표시됩니다.",
- "statusBarProminentItemHoverBackground": "마우스 커서를 올렸을 때 상태 표시줄 주요 항목 배경 색. 주요 항목은 중요성을 알려주기 위해 다른 상태 표시줄 항목보다 눈에 띕니다. 예제를 보기 위해 명령 팔레트에서 '포커스 이동을 위해 탭 키 토글' 모드를 변경합니다. 창 아래쪽에 상태 표시줄이 나타납니다.",
+ "statusBarOfflineItemHoverBackground": "워크벤치가 오프라인 상태일 때 상태 표시줄 항목 배경 가리키기 색입니다.",
+ "statusBarOfflineItemHoverForeground": "워크벤치가 오프라인 상태일 때 상태 표시줄 항목 전경 가리키기 색입니다.",
+ "statusBarProminentItemBackground": "상태 표시줄 눈에 띄는 항목 배경색입니다. 눈에 띄는 항목은 중요도를 나타내기 위해 다른 상태 표시줄 항목과 구별됩니다. 상태 표시줄은 창 아래쪽에 표시됩니다.",
+ "statusBarProminentItemForeground": "상태 표시줄 눈에 띄는 항목 전경색입니다. 눈에 띄는 항목은 중요도를 나타내기 위해 다른 상태 표시줄 항목과 구별됩니다. 상태 표시줄은 창 아래쪽에 표시됩니다.",
+ "statusBarProminentItemHoverBackground": "마우스로 가리킬 때 상태 표시줄 눈에 띄는 항목 배경색입니다. 눈에 띄는 항목은 중요도를 나타내기 위해 다른 상태 표시줄 항목과 구별됩니다. 상태 표시줄은 창 아래쪽에 표시됩니다.",
+ "statusBarProminentItemHoverForeground": "마우스로 가리킬 때 상태 표시줄 눈에 띄는 항목 전경색입니다. 눈에 띄는 항목은 중요도를 나타내기 위해 다른 상태 표시줄 항목과 구별됩니다. 상태 표시줄은 창 아래쪽에 표시됩니다.",
+ "statusBarRemoteItemHoverBackground": "마우스로 가리킬 때 상태 표시줄에서 원격 표시기의 배경색입니다.",
+ "statusBarRemoteItemHoverForeground": "마우스로 가리킬 때 상태 표시줄에서 원격 표시기의 전경색입니다.",
"statusBarWarningItemBackground": "상태 표시줄 경고 항목 배경색입니다. 경고 항목은 경고 조건을 표시하기 위해 다른 상태 표시줄 입력 내용에 비해 눈에 띕니다. 상태 표시줄은 창 하단에 표시됩니다.",
"statusBarWarningItemForeground": "상태 표시줄 경고 항목 전경색입니다. 경고 항목은 경고 조건을 표시하기 위해 다른 상태 표시줄 입력 내용에 비해 눈에 띕니다. 상태 표시줄은 창 하단에 표시됩니다.",
+ "statusBarWarningItemHoverBackground": "마우스로 가리킬 때 상태 표시줄 경고 항목 배경색입니다. 경고 항목은 경고 조건을 표시하기 위해 다른 상태 표시줄 입력 내용에 비해 눈에 띕니다. 상태 표시줄은 창 하단에 표시됩니다.",
+ "statusBarWarningItemHoverForeground": "마우스로 가리킬 때 상태 표시줄 경고 항목 전경색입니다. 경고 항목은 경고 조건을 표시하기 위해 다른 상태 표시줄 입력 내용에 비해 눈에 띕니다. 상태 표시줄은 창 하단에 표시됩니다.",
"tabActiveBackground": "활성 탭 배경색입니다. 탭은 편집기 영역에서 편집기의 컨테이너입니다. 한 편집기 그룹에서 여러 탭을 열 수 있습니다. 여러 편집기 그룹이 있을 수 있습니다.",
"tabActiveBorder": "활성 탭 맨 아래의 테두리입니다. 탭은 편집기 영역에서 편집기의 컨테이너입니다. 한 편집기 그룹에 여러 탭을 열 수 있습니다. 여러 편집기 그룹이 있을 수 있습니다.",
"tabActiveBorderTop": "활성 탭 맨 위의 위한 테두리입니다. 탭은 편집기 영역에서 편집기의 컨테이너입니다. 한 편집기 그룹에 여러 탭을 열 수 있습니다. 여러 편집기 그룹이 있을 수 있습니다.",
@@ -4051,12 +5208,16 @@
"tabActiveUnfocusedBorder": "포커스가 없는 그룹에서 활성 탭 맨 아래의 테두리입니다. 탭은 편집기 영역에서 편집기의 컨테이너입니다. 한 편집기 그룹에 여러 탭을 열 수 있습니다. 여러 편집기 그룹이 있을 수 있습니다.",
"tabActiveUnfocusedBorderTop": "포커스가 없는 그룹에서 활성 탭 맨 위의 테두리입니다. 탭은 편집기 영역에서 편집기의 컨테이너입니다. 한 편집기 그룹에 여러 탭을 열 수 있습니다. 여러 편집기 그룹이 있을 수 있습니다.",
"tabBorder": "탭을 서로 구분하기 위한 테두리입니다. 탭은 편집기 영역에서 편집기의 컨테이너입니다. 한 편집기 그룹에 여러 탭을 열 수 있습니다. 여러 편집기 그룹이 있을 수 있습니다.",
+ "tabDragAndDropBorder": "두 탭 사이에 탭을 삽입할 수 있음을 나타내는 탭 사이의 테두리입니다. 탭은 편집기 영역의 편집기를 위한 컨테이너입니다. 하나의 편집기 그룹에서 여러 탭을 열 수 있습니다. 여러 편집기 그룹이 있을 수 있습니다.",
"tabHoverBackground": "마우스 커서를 올려놓았을 때의 탭 배경색. 탭은 편집기 영역에서 편집기의 컨테이너입니다. 한 편집기 그룹에서 여러 탭을 열 수 있습니다. 편집기 그룹이 여러 개일 수 있습니다.",
"tabHoverBorder": "마우스 커서를 올려놓았을 때 활성 탭의 테두리. 탭은 편집기 영역에서 편집기의 컨테이너입니다. 한 편집기 그룹에서 여러 탭을 열 수 있습니다. 편집기 그룹이 여러 개일 수 있습니다.",
"tabHoverForeground": "마우스로 가리킬 때의 탭 전경색입니다. 탭은 편집기 영역의 편집기 컨테이너입니다. 하나의 편집기 그룹에서 여러 탭을 열 수 있습니다. 편집기 그룹이 여러 개 있을 수 있습니다.",
"tabInactiveBackground": "비활성 탭 배경색입니다. 탭은 편집기 영역에서 편집기의 컨테이너입니다. 한 편집기 그룹에서 여러 탭을 열 수 있습니다. 여러 편집기 그룹이 있을 수 있습니다.",
"tabInactiveForeground": "활성 그룹의 비활성 탭 전경색입니다. 탭은 편집기 영역에서 편집기의 컨테이너입니다. 한 편집기 그룹에서 여러 탭을 열 수 있습니다. 여러 편집기 그룹이 있을 수 있습니다.",
"tabInactiveModifiedBorder": "활성 그룹에서 수정된 비활성 탭 맨 위의 테두리입니다. 탭은 편집기 영역에서 편집기의 컨테이너입니다. 한 편집기 그룹에 여러 탭을 열 수 있습니다. 여러 편집기 그룹이 있을 수 있습니다.",
+ "tabSelectedBackground": "선택한 탭의 배경입니다. 탭은 편집기 영역에 있는 편집자를 위한 컨테이너입니다. 하나의 편집기 그룹에서 여러 탭을 열 수 있습니다. 여러 편집기 그룹이 있을 수 있습니다.",
+ "tabSelectedBorderTop": "선택한 탭의 위쪽 테두리입니다. 탭은 편집기 영역에 있는 편집자를 위한 컨테이너입니다. 하나의 편집기 그룹에서 여러 탭을 열 수 있습니다. 여러 편집기 그룹이 있을 수 있습니다.",
+ "tabSelectedForeground": "선택한 탭의 전경입니다. 탭은 편집기 영역에 있는 편집자를 위한 컨테이너입니다. 하나의 편집기 그룹에서 여러 탭을 열 수 있습니다. 여러 편집기 그룹이 있을 수 있습니다.",
"tabUnfocusedActiveBackground": "포커스가 없는 그룹의 활성 탭 배경색입니다. 탭은 편집기 영역에서 편집기의 컨테이너입니다. 한 편집기 그룹에서 여러 탭을 열 수 있습니다. 여러 편집기 그룹이 있을 수 있습니다.",
"tabUnfocusedActiveForeground": "포커스가 없는 그룹의 활성 탭 전경색입니다. 탭은 편집기 영역에서 편집기의 컨테이너입니다. 한 편집기 그룹에서 여러 탭을 열 수 있습니다. 여러 편집기 그룹이 있을 수 있습니다.",
"tabUnfocusedHoverBackground": "마우스 커서를 올려놓았을 때 포커스를 받지 못한 탭 배경색. 탭은 편집기 영역에서 편집기의 컨테이너입니다. 한 편집기 그룹에서 여러 탭을 열 수 있습니다. 편집기 그룹이 여러 개일 수 있습니다.",
@@ -4073,55 +5234,77 @@
"titleBarInactiveForeground": "창이 비활성화된 경우 제목 표시줄 전경입니다.",
"unfocusedActiveModifiedBorder": "포커스가 없는 그룹에서 수정된 활성 탭 맨 위의 테두리입니다. 탭은 편집기 영역에서 편집기의 컨테이너입니다. 한 편집기 그룹에 여러 탭을 열 수 있습니다. 여러 편집기 그룹이 있을 수 있습니다.",
"unfocusedINactiveModifiedBorder": "포커스가 없는 그룹에서 수정된 비활성 탭 맨 위의 테두리입니다. 탭은 편집기 영역에서 편집기의 컨테이너입니다. 한 편집기 그룹에 여러 탭을 열 수 있습니다. 여러 편집기 그룹이 있을 수 있습니다.",
- "windowActiveBorder": "창이 활성화되어 있을 때 창 테두리에 사용되는 색상입니다. 사용자 지정 제목 표시줄을 사용할 때만 데스크톱 클라이언트에서 지원됩니다.",
- "windowInactiveBorder": "비활성 상태일 때 창의 테두리에 사용되는 색상입니다. 사용자 지정 제목 표시줄을 사용할 때만 데스크톱 클라이언트에서 지원됩니다."
+ "windowActiveBorder": "macOS 또는 Linux에서 활성 상태일 때 창 테두리에 사용되는 색상입니다. Linux에서 사용자 지정 제목 표시줄 스타일 및 사용자 지정 또는 숨겨진 창 컨트롤이 필요합니다.",
+ "windowInactiveBorder": "macOS 또는 Linux에서 비활성 상태일 때 창 테두리에 사용되는 색상입니다. Linux에서 사용자 지정 제목 표시줄 스타일 및 사용자 지정 또는 숨겨진 창 컨트롤이 필요합니다."
},
"vs/workbench/common/views": {
"defaultViewIcon": "기본 뷰 아이콘입니다.",
- "duplicateId": "ID가 '{0}'인 뷰가 이미 등록되어 있습니다."
+ "duplicateId": "ID가 '{0}'인 뷰가 이미 등록되어 있습니다.",
+ "treeView.notRegistered": "ID가 '{0}'인 등록된 트리 뷰가 없습니다.",
+ "views log": "뷰"
},
- "vs/workbench/electron-sandbox/actions/developerActions": {
+ "vs/workbench/electron-browser/actions/developerActions": {
"configureRuntimeArguments": "런타임 인수 구성",
- "reloadWindowWithExtensionsDisabled": "확장을 사용하지 않도록 설정한 후 다시 로드",
- "toggleDevTools": "개발자 도구 설정/해제",
- "toggleSharedProcess": "공유 프로세스 설정/해제"
- },
- "vs/workbench/electron-sandbox/actions/installActions": {
+ "reloadWindowWithExtensionsDisabled": "확장을 사용하지 않도록 설정하고 다시 로드",
+ "revealUserDataFolder": "사용자 데이터 폴더 표시",
+ "showGPUInfo": "GPU 정보 표시",
+ "stopTracing": "추적 중지",
+ "stopTracing.button": "추적 다시 시작 및 사용(&&R)",
+ "stopTracing.detail": "완료하는 데 최대 1분이 걸릴 수 있습니다.",
+ "stopTracing.message": "추적을 실행하려면 '--trace' 인수를 사용해야 합니다.",
+ "stopTracing.title": "추적 파일을 만드는 중...",
+ "toggleDevTools": "개발자 도구 설정/해제"
+ },
+ "vs/workbench/electron-browser/actions/installActions": {
"install": "PATH에 '{0}' 명령 설치",
"shellCommand": "셸 명령",
"successFrom": "셸 명령 '{0}'이(가) PATH에서 제거되었습니다.",
"successIn": "셸 명령 '{0}'이(가) PATH에 설치되었습니다.",
"uninstall": "PATH에서 '{0}' 명령 제거"
},
- "vs/workbench/electron-sandbox/actions/windowActions": {
+ "vs/workbench/electron-browser/actions/windowActions": {
"close": "창 닫기",
+ "closeActive": "활성 창 닫기",
"closeWindow": "창 닫기",
"current": "현재 창",
+ "disableWindowAlwaysOnTop": "항상 위에 표시 끄기",
+ "enableWindowAlwaysOnTop": "항상 위에 표시 켜기",
"miCloseWindow": "창 닫기(&&E)",
"miZoomIn": "확대(&&Z)",
"miZoomOut": "축소(&&Z)",
"miZoomReset": "확대/축소 다시 설정(&&R)",
- "quickSwitchWindow": "빠른 창 전환...",
- "switchWindow": "창 전환...",
+ "quickSwitchWindow": "빠른 창 전환",
+ "switchWindow": "창 전환",
"switchWindowPlaceHolder": "전환할 창 선택",
+ "toggleWindowAlwaysOnTop": "창 항상 위 표시 토글",
"windowDirtyAriaLabel": "{0}, 저장되지 않은 변경 내용이 있는 창",
+ "windowGroup": "창 그룹",
"zoomIn": "확대",
"zoomOut": "축소",
"zoomReset": "확대/축소 다시 설정"
},
- "vs/workbench/electron-sandbox/desktop.contribution": {
+ "vs/workbench/electron-browser/desktop.contribution": {
+ "application.shellEnvironmentResolutionTimeout": "애플리케이션이 터미널에서 아직 시작되지 않은 경우 셸 환경 해결을 포기하기 전에 시간 제한을 초 단위로 제어합니다. 자세한 내용은 [설명서](https://go.microsoft.com/fwlink/?linkid=2149667)를 참조하세요.",
"argv.crashReporterId": "이 앱 인스턴스에서 보낸 크래시 보고서와 상관 관계에 사용되는 고유 ID입니다.",
+ "argv.disableChromiumSandbox": "Chromium 샌드박스를 비활성화합니다. Linux에서 관리자 권한으로 VS Code를 실행하고 Windows에서 Applocker로 실행할 때 유용합니다.",
"argv.disableHardwareAcceleration": "하드웨어 가속을 사용하지 않도록 설정합니다. 그래픽 문제가 발생한 경우에만 이 옵션을 변경하세요.",
+ "argv.disableLcdText": "LCD 글꼴 앤티앨리어싱을 비활성화합니다.",
"argv.enableCrashReporter": "크래시 보고를 사용하지 않도록 설정하고, 값이 변경되는 경우 앱을 다시 시작해야 합니다.",
+ "argv.enableRDPDisplayTracking": "RDP 다시 연결 중에 최대화된 창이 올바른 디스플레이로 복원되도록 보장합니다.",
"argv.enebleProposedApi": "확장 ID 목록에 대해 제안된 API를 사용합니다(예: `vscode.git`). 제안된 API는 불안정하며 언제든지 경고 없이 중단될 수 있습니다. 확장 개발 및 테스트 용도로만 설정해야 합니다.",
"argv.force-renderer-accessibility": "강제로 렌더러에 액세스할 수 있도록 합니다. Linux에서 화면 읽기 프로그램을 사용하는 경우에만 변경할 수 있습니다. 다른 플랫폼에서는 렌더러에 자동으로 액세스할 수 있습니다. 이 플래그는 editor.accessibilitySupport: on인 경우 자동으로 설정됩니다.",
"argv.forceColorProfile": "사용할 색 프로필을 재정의할 수 있습니다. 색이 잘못 표시되면 색 프로필을 'srgb'로 설정하고 다시 시작해 보세요.",
"argv.locale": "사용할 표시 언어입니다. 다른 언어를 선택하려면 연결된 언어 팩을 설치해야 합니다.",
- "argv.logLevel": "사용할 로그 수준이며 기본값은 'info'입니다. 허용되는 값은 'critical', 'error', 'warn', 'info', 'debug', 'trace', 'off'입니다.",
+ "argv.logLevel": "사용할 로그 수준이며 기본값은 'info'입니다. 허용되는 값은 'error', 'warn', 'info', 'debug', 'trace', 'off'입니다.",
+ "argv.passwordStore": "Linux에서 비밀을 저장하는 데 사용되는 백 엔드를 구성합니다. 이 인수는 Windows 및 macOS에서 무시됩니다.",
+ "argv.proxyBypassList": "주어진 세미콜론으로 구분된 호스트 목록에 대해 지정된 프록시를 무시합니다. 예제 값 \"